diff --git a/meshcentral.js b/meshcentral.js index c3c5b724..d2da0091 100644 --- a/meshcentral.js +++ b/meshcentral.js @@ -727,7 +727,7 @@ function CreateMeshCentralServer(config, args) { } // Check top level configuration for any unreconized values - if (config) { for (var i in config) { if ((typeof i == 'string') && (i.length > 0) && (i[0] != '_') && (['settings', 'domaindefaults', 'domains', 'configfiles', 'smtp', 'letsencrypt', 'peers', 'sms', 'sendgrid', 'firebase', 'firebaserelay', '$schema'].indexOf(i) == -1)) { addServerWarning('Unrecognized configuration option \"' + i + '\".'); } } } + if (config) { for (var i in config) { if ((typeof i == 'string') && (i.length > 0) && (i[0] != '_') && (['settings', 'domaindefaults', 'domains', 'configfiles', 'smtp', 'letsencrypt', 'peers', 'sms', 'sendgrid', 'firebase', 'firebaserelay', '$schema'].indexOf(i) == -1)) { addServerWarning('Unrecognized configuration option \"' + i + '\".', 3, [ i ]); } } } if (typeof obj.args.userallowedip == 'string') { if (obj.args.userallowedip == '') { config.settings.userallowedip = obj.args.userallowedip = null; } else { config.settings.userallowedip = obj.args.userallowedip = obj.args.userallowedip.split(','); } } if (typeof obj.args.userblockedip == 'string') { if (obj.args.userblockedip == '') { config.settings.userblockedip = obj.args.userblockedip = null; } else { config.settings.userblockedip = obj.args.userblockedip = obj.args.userblockedip.split(','); } } @@ -742,7 +742,7 @@ function CreateMeshCentralServer(config, args) { const verSplit = process.version.substring(1).split('.'); var ver = parseInt(verSplit[0]) + (parseInt(verSplit[1]) / 100); if (((ver >= 11.11) && (ver <= 12.15)) || (ver == 13.2)) { - if ((obj.args.wscompression === true) || (obj.args.agentwscompression === true)) { addServerWarning('WebSocket compression is disabled, this feature is broken in NodeJS v11.11 to v12.15 and v13.2'); } + if ((obj.args.wscompression === true) || (obj.args.agentwscompression === true)) { addServerWarning('WebSocket compression is disabled, this feature is broken in NodeJS v11.11 to v12.15 and v13.2', 4); } obj.args.wscompression = obj.args.agentwscompression = false; obj.config.settings.wscompression = obj.config.settings.agentwscompression = false; } @@ -1284,9 +1284,9 @@ function CreateMeshCentralServer(config, args) { obj.config.domains[i].amtmanager.tlsrootcert2 = obj.certificateOperations.loadGenericCertAndKey(obj.config.domains[i].amtmanager.tlsrootcert); if (obj.config.domains[i].amtmanager.tlsrootcert2 == null) { // Show an error message if needed if (i == '') { - addServerWarning("Unable to load Intel AMT TLS root certificate for default domain."); + addServerWarning("Unable to load Intel AMT TLS root certificate for default domain.", 5); } else { - addServerWarning("Unable to load Intel AMT TLS root certificate for domain " + i + "."); + addServerWarning("Unable to load Intel AMT TLS root certificate for domain " + i + ".", 6, [ i ]); } } } @@ -1298,9 +1298,9 @@ function CreateMeshCentralServer(config, args) { // Look at passed in arguments if ((obj.args.user != null) && (typeof obj.args.user != 'string')) { delete obj.args.user; } - if ((obj.args.ciralocalfqdn != null) && ((obj.args.lanonly == true) || (obj.args.wanonly == true))) { addServerWarning("CIRA local FQDN's ignored when server in LAN-only or WAN-only mode."); } - if ((obj.args.ciralocalfqdn != null) && (obj.args.ciralocalfqdn.split(',').length > 4)) { addServerWarning("Can't have more than 4 CIRA local FQDN's. Ignoring value."); obj.args.ciralocalfqdn = null; } - if (obj.args.ignoreagenthashcheck === true) { addServerWarning("Agent hash checking is being skipped, this is unsafe."); } + if ((obj.args.ciralocalfqdn != null) && ((obj.args.lanonly == true) || (obj.args.wanonly == true))) { addServerWarning("CIRA local FQDN's ignored when server in LAN-only or WAN-only mode.", 7); } + if ((obj.args.ciralocalfqdn != null) && (obj.args.ciralocalfqdn.split(',').length > 4)) { addServerWarning("Can't have more than 4 CIRA local FQDN's. Ignoring value.", 8); obj.args.ciralocalfqdn = null; } + if (obj.args.ignoreagenthashcheck === true) { addServerWarning("Agent hash checking is being skipped, this is unsafe.", 9); } if (obj.args.port == null || typeof obj.args.port != 'number') { obj.args.port = 443; } if (obj.args.aliasport != null && (typeof obj.args.aliasport != 'number')) obj.args.aliasport = null; if (obj.args.mpsport == null || typeof obj.args.mpsport != 'number') obj.args.mpsport = 4433; @@ -1418,15 +1418,15 @@ function CreateMeshCentralServer(config, args) { // Check Let's Encrypt settings var leok = true; if ((typeof obj.config.letsencrypt.names != 'string') && (typeof obj.config.settings.cert == 'string')) { obj.config.letsencrypt.names = obj.config.settings.cert; } - if (typeof obj.config.letsencrypt.email != 'string') { leok = false; addServerWarning("Missing Let's Encrypt email address."); } - else if (typeof obj.config.letsencrypt.names != 'string') { leok = false; addServerWarning("Invalid Let's Encrypt host names."); } - else if (obj.config.letsencrypt.names.indexOf('*') >= 0) { leok = false; addServerWarning("Invalid Let's Encrypt names, can't contain a *."); } - else if (obj.config.letsencrypt.email.split('@').length != 2) { leok = false; addServerWarning("Invalid Let's Encrypt email address."); } - else if (obj.config.letsencrypt.email.trim() !== obj.config.letsencrypt.email) { leok = false; addServerWarning("Invalid Let's Encrypt email address."); } + if (typeof obj.config.letsencrypt.email != 'string') { leok = false; addServerWarning("Missing Let's Encrypt email address.", 10); } + else if (typeof obj.config.letsencrypt.names != 'string') { leok = false; addServerWarning("Invalid Let's Encrypt host names.", 11); } + else if (obj.config.letsencrypt.names.indexOf('*') >= 0) { leok = false; addServerWarning("Invalid Let's Encrypt names, can't contain a *.", 12); } + else if (obj.config.letsencrypt.email.split('@').length != 2) { leok = false; addServerWarning("Invalid Let's Encrypt email address.", 10); } + else if (obj.config.letsencrypt.email.trim() !== obj.config.letsencrypt.email) { leok = false; addServerWarning("Invalid Let's Encrypt email address.", 10); } else { var le = require('./letsencrypt.js'); try { obj.letsencrypt = le.CreateLetsEncrypt(obj); } catch (ex) { console.log(ex); } - if (obj.letsencrypt == null) { addServerWarning("Unable to setup Let's Encrypt module."); leok = false; } + if (obj.letsencrypt == null) { addServerWarning("Unable to setup Let's Encrypt module.", 13); leok = false; } } if (leok == true) { // Check that the email address domain MX resolves. @@ -1437,12 +1437,12 @@ function CreateMeshCentralServer(config, args) { if (err == null) { obj.letsencrypt.getCertificate(certs, obj.StartEx3); // Use Let's Encrypt } else { - for (var i in err) { addServerWarning("Invalid Let's Encrypt names, unable to resolve: " + err[i]); } + for (var i in err) { addServerWarning("Invalid Let's Encrypt names, unable to resolve: " + err[i], 14, [err[i]]); } obj.StartEx3(certs); // Let's Encrypt did not load, just use the configured certificates } }); } else { - addServerWarning("Invalid Let's Encrypt email address, unable to resolve: " + obj.config.letsencrypt.email.split('@')[1]); + addServerWarning("Invalid Let's Encrypt email address, unable to resolve: " + obj.config.letsencrypt.email.split('@')[1], 15, [obj.config.letsencrypt.email.split('@')[1]]); obj.StartEx3(certs); // Let's Encrypt did not load, just use the configured certificates } }); @@ -1487,12 +1487,12 @@ function CreateMeshCentralServer(config, args) { for (var i in ipranges) { if (ipranges[i] != '') { obj.args.trustedproxy.push(ipranges[i]); } } obj.config.settings.trustedproxy = obj.args.trustedproxy; } else { - addServerWarning("Unable to load CloudFlare trusted proxy IPv6 address list."); + addServerWarning("Unable to load CloudFlare trusted proxy IPv6 address list.", 16); } obj.StartEx4(); // Keep going }); } else { - addServerWarning("Unable to load CloudFlare trusted proxy IPv4 address list."); + addServerWarning("Unable to load CloudFlare trusted proxy IPv4 address list.", 16); obj.StartEx4(); // Keep going } }); @@ -1592,12 +1592,12 @@ function CreateMeshCentralServer(config, args) { // Sendgrid server obj.mailserver = require('./meshmail.js').CreateMeshMail(obj); obj.mailserver.verify(); - if (obj.args.lanonly == true) { addServerWarning("SendGrid server has limited use in LAN mode."); } + if (obj.args.lanonly == true) { addServerWarning("SendGrid server has limited use in LAN mode.", 17); } } else if ((obj.config.smtp != null) && (obj.config.smtp.host != null) && (obj.config.smtp.from != null)) { // SMTP server obj.mailserver = require('./meshmail.js').CreateMeshMail(obj); obj.mailserver.verify(); - if (obj.args.lanonly == true) { addServerWarning("SMTP server has limited use in LAN mode."); } + if (obj.args.lanonly == true) { addServerWarning("SMTP server has limited use in LAN mode.", 18); } } // Setup the email server for each domain @@ -1606,12 +1606,12 @@ function CreateMeshCentralServer(config, args) { // Sendgrid server obj.config.domains[i].mailserver = require('./meshmail.js').CreateMeshMail(obj, obj.config.domains[i]); obj.config.domains[i].mailserver.verify(); - if (obj.args.lanonly == true) { addServerWarning("SendGrid server has limited use in LAN mode."); } + if (obj.args.lanonly == true) { addServerWarning("SendGrid server has limited use in LAN mode.", 17); } } else if ((obj.config.domains[i].smtp != null) && (obj.config.domains[i].smtp.host != null) && (obj.config.domains[i].smtp.from != null)) { // SMTP server obj.config.domains[i].mailserver = require('./meshmail.js').CreateMeshMail(obj, obj.config.domains[i]); obj.config.domains[i].mailserver.verify(); - if (obj.args.lanonly == true) { addServerWarning("SMTP server has limited use in LAN mode."); } + if (obj.args.lanonly == true) { addServerWarning("SMTP server has limited use in LAN mode.", 18); } } else { // Setup the parent mail server for this domain if (obj.mailserver != null) { obj.config.domains[i].mailserver = obj.mailserver; } @@ -1621,7 +1621,7 @@ function CreateMeshCentralServer(config, args) { // Setup SMS gateway if (config.sms != null) { obj.smsserver = require('./meshsms.js').CreateMeshSMS(obj); - if ((obj.smsserver != null) && (obj.args.lanonly == true)) { addServerWarning("SMS gateway has limited use in LAN mode."); } + if ((obj.smsserver != null) && (obj.args.lanonly == true)) { addServerWarning("SMS gateway has limited use in LAN mode.", 19); } } // Setup web based push notifications @@ -1663,7 +1663,7 @@ function CreateMeshCentralServer(config, args) { if ((obj.config) && (obj.config.settings) && (typeof obj.config.settings.logincookieencryptionkey == 'string')) { // We have a string, hash it and use that as a key try { obj.loginCookieEncryptionKey = Buffer.from(obj.config.settings.logincookieencryptionkey, 'hex'); } catch (ex) { } - if ((obj.loginCookieEncryptionKey == null) || (obj.loginCookieEncryptionKey.length != 80)) { addServerWarning("Invalid \"LoginCookieEncryptionKey\" in config.json."); obj.loginCookieEncryptionKey = null; } + if ((obj.loginCookieEncryptionKey == null) || (obj.loginCookieEncryptionKey.length != 80)) { addServerWarning("Invalid \"LoginCookieEncryptionKey\" in config.json.", 20); obj.loginCookieEncryptionKey = null; } } // Login cookie encryption key not set, use one from the database @@ -2996,7 +2996,7 @@ function CreateMeshCentralServer(config, args) { function logWarnEvent(msg) { if (obj.servicelog != null) { obj.servicelog.warn(msg); } console.log(msg); } function logErrorEvent(msg) { if (obj.servicelog != null) { obj.servicelog.error(msg); } console.error(msg); } obj.getServerWarnings = function () { return serverWarnings; } - obj.addServerWarning = function(msg, print) { serverWarnings.push(msg); if (print !== false) { console.log("WARNING: " + msg); } } + obj.addServerWarning = function (msg, id, args, print) { serverWarnings.push({ msg: msg, id: id, args: args }); if (print !== false) { console.log("WARNING: " + msg); } } // auth.log functions obj.authLog = function (server, msg) { @@ -3139,7 +3139,32 @@ process.on('SIGINT', function () { if (meshserver != null) { meshserver.Stop(); // Add a server warning, warnings will be shown to the administrator on the web application var serverWarnings = []; -function addServerWarning(msg, print) { serverWarnings.push(msg); if (print !== false) { console.log("WARNING: " + msg); } } +function addServerWarning(msg, id, args, print) { serverWarnings.push({ msg: msg, id: id, args: args }); if (print !== false) { console.log("WARNING: " + msg); } } + +/* +var ServerWarnings = { + 1: "MeshCentral SSH support requires NodeJS 11 or higher.", + 2: "Missing WebDAV parameters.", + 3: "Unrecognized configuration option \"{0}\".", + 4: "WebSocket compression is disabled, this feature is broken in NodeJS v11.11 to v12.15 and v13.2", + 5: "Unable to load Intel AMT TLS root certificate for default domain.", + 6: "Unable to load Intel AMT TLS root certificate for domain {0}.", + 7: "CIRA local FQDN's ignored when server in LAN-only or WAN-only mode.", + 8: "Can't have more than 4 CIRA local FQDN's. Ignoring value.", + 9: "Agent hash checking is being skipped, this is unsafe.", + 10: "Missing Let's Encrypt email address.", + 11: "Invalid Let's Encrypt host names.", + 12: "Invalid Let's Encrypt names, can't contain a *.", + 13: "Unable to setup Let's Encrypt module.", + 14: "Invalid Let's Encrypt names, unable to resolve: {0}", + 15: "Invalid Let's Encrypt email address, unable to resolve: {0}", + 16: "Unable to load CloudFlare trusted proxy IPv6 address list.", + 17: "SendGrid server has limited use in LAN mode.", + 18: "SMTP server has limited use in LAN mode.", + 19: "SMS gateway has limited use in LAN mode.", + 20: "Invalid \"LoginCookieEncryptionKey\" in config.json." +}; +*/ // Load the really basic modules var npmpath = 'npm'; @@ -3225,7 +3250,7 @@ function mainStart() { if (require('os').platform() == 'win32') { modules.push('node-windows'); modules.push('loadavg-windows'); if (sspi == true) { modules.push('node-sspi'); } } // Add Windows modules if (ldap == true) { modules.push('ldapauth-fork'); } if (mstsc == true) { modules.push('node-rdpjs-2'); } - if (ssh == true) { if (nodeVersion < 11) { addServerWarning('MeshCentral SSH support requires NodeJS 11 or higher.'); } else { modules.push('ssh2'); } } + if (ssh == true) { if (nodeVersion < 11) { addServerWarning('MeshCentral SSH support requires NodeJS 11 or higher.', 1); } else { modules.push('ssh2'); } } if (passport != null) { modules.push(...passport); } if (sessionRecording == true) { modules.push('image-size'); } // Need to get the remote desktop JPEG sizes to index the recodring file. if (config.letsencrypt != null) { modules.push('acme-client'); } // Add acme-client module @@ -3249,7 +3274,7 @@ function mainStart() { if (typeof config.settings.autobackup.googledrive == 'object') { modules.push('googleapis'); } // Enable WebDAV Support if (typeof config.settings.autobackup.webdav == 'object') { - if ((typeof config.settings.autobackup.webdav.url != 'string') || (typeof config.settings.autobackup.webdav.username != 'string') || (typeof config.settings.autobackup.webdav.password != 'string')) { addServerWarning("Missing WebDAV parameters.", !args.launch); } else { modules.push('webdav'); } + if ((typeof config.settings.autobackup.webdav.url != 'string') || (typeof config.settings.autobackup.webdav.username != 'string') || (typeof config.settings.autobackup.webdav.password != 'string')) { addServerWarning("Missing WebDAV parameters.", 2, null, !args.launch); } else { modules.push('webdav'); } } } diff --git a/translate/translate.json b/translate/translate.json index d8313e8e..4c933fd6 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -44,8 +44,8 @@ "zh-chs": " + CIRA", "zh-cht": " + CIRA", "xloc": [ - "default.handlebars->35->1719", - "default.handlebars->35->1721" + "default.handlebars->37->1751", + "default.handlebars->37->1753" ] }, { @@ -70,7 +70,7 @@ "zh-cht": " - 1天后重設。", "xloc": [ "default-mobile.handlebars->11->57", - "default.handlebars->35->72" + "default.handlebars->37->72" ] }, { @@ -95,7 +95,7 @@ "zh-cht": " - 1小時後重設。", "xloc": [ "default-mobile.handlebars->11->55", - "default.handlebars->35->70" + "default.handlebars->37->70" ] }, { @@ -120,7 +120,7 @@ "zh-cht": " - 1分鐘後重設。", "xloc": [ "default-mobile.handlebars->11->53", - "default.handlebars->35->68" + "default.handlebars->37->68" ] }, { @@ -145,7 +145,7 @@ "zh-cht": " - 在{0}天內重置。", "xloc": [ "default-mobile.handlebars->11->58", - "default.handlebars->35->73" + "default.handlebars->37->73" ] }, { @@ -170,7 +170,7 @@ "zh-cht": " - 在{0}小時內重置。", "xloc": [ "default-mobile.handlebars->11->56", - "default.handlebars->35->71" + "default.handlebars->37->71" ] }, { @@ -195,7 +195,7 @@ "zh-cht": " - 在{0}分鐘內重置。", "xloc": [ "default-mobile.handlebars->11->54", - "default.handlebars->35->69" + "default.handlebars->37->69" ] }, { @@ -221,8 +221,8 @@ "xloc": [ "default-mobile.handlebars->11->51", "default-mobile.handlebars->11->52", - "default.handlebars->35->66", - "default.handlebars->35->67" + "default.handlebars->37->66", + "default.handlebars->37->67" ] }, { @@ -287,7 +287,7 @@ "zh-chs": " 可以使用密码提示,但不建议使用。", "zh-cht": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->35->1619" + "default.handlebars->37->1651" ] }, { @@ -311,8 +311,8 @@ "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。", "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "xloc": [ - "default.handlebars->35->1813", - "default.handlebars->35->2312" + "default.handlebars->37->1845", + "default.handlebars->37->2344" ] }, { @@ -426,7 +426,7 @@ "zh-chs": " TLS。", "zh-cht": " TLS。", "xloc": [ - "default.handlebars->35->218" + "default.handlebars->37->240" ] }, { @@ -450,7 +450,7 @@ "zh-chs": " 没有TLS。", "zh-cht": " 沒有TLS。", "xloc": [ - "default.handlebars->35->219" + "default.handlebars->37->241" ] }, { @@ -667,9 +667,9 @@ "nl": "'", "pl": "'", "pt": "'", + "pt-br": "'", "ru": "'", "zh-chs": "'", - "pt-br": "'", "xloc": [ "agentinvite.handlebars->3->4", "agentinvite.handlebars->3->5" @@ -688,8 +688,8 @@ "nl": "(", "pl": "(", "pt": "(", - "ru": "(", "pt-br": "(", + "ru": "(", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1" ] @@ -755,7 +755,7 @@ "zh-chs": "(可选的)", "zh-cht": "(可選的)", "xloc": [ - "default.handlebars->35->445" + "default.handlebars->37->470" ] }, { @@ -771,8 +771,8 @@ "nl": ")", "pl": ")", "pt": ")", - "ru": ")", "pt-br": ")", + "ru": ")", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1" ] @@ -798,8 +798,8 @@ "zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。", "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。", "xloc": [ - "default.handlebars->35->1778", - "default.handlebars->35->411" + "default.handlebars->37->1810", + "default.handlebars->37->433" ] }, { @@ -823,7 +823,7 @@ "zh-chs": "*对于BSD,首先运行“ pkg install wget sudo bash ”。", "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。", "xloc": [ - "default.handlebars->35->492" + "default.handlebars->37->517" ] }, { @@ -860,8 +860,8 @@ "nl": ",", "pl": ",", "pt": ",", - "ru": ",", "pt-br": ",", + "ru": ",", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message", "default.handlebars->container->column_l->p0->p0message" @@ -889,7 +889,7 @@ "zh-cht": ",", "xloc": [ "default-mobile.handlebars->11->651", - "default.handlebars->35->1887" + "default.handlebars->37->1919" ] }, { @@ -934,7 +934,7 @@ "zh-cht": ",只適用於Intel®AMT", "xloc": [ "default-mobile.handlebars->11->179", - "default.handlebars->35->286" + "default.handlebars->37->308" ] }, { @@ -957,7 +957,7 @@ "tr": ", Yerel Cihazlar", "zh-chs": ", 本地设备", "xloc": [ - "default.handlebars->35->287" + "default.handlebars->37->309" ] }, { @@ -982,7 +982,7 @@ "zh-cht": ",MQTT在線", "xloc": [ "default-mobile.handlebars->11->568", - "default.handlebars->35->1329" + "default.handlebars->37->1361" ] }, { @@ -1005,7 +1005,7 @@ "tr": ", İzin Yok", "zh-chs": ", 不同意", "xloc": [ - "default.handlebars->35->868" + "default.handlebars->37->894" ] }, { @@ -1029,7 +1029,7 @@ "zh-chs": ",提示同意", "zh-cht": ",提示同意", "xloc": [ - "default.handlebars->35->869" + "default.handlebars->37->895" ] }, { @@ -1073,7 +1073,7 @@ "zh-chs": ",软体KVM", "zh-cht": ",軟體KVM", "xloc": [ - "default.handlebars->35->1076", + "default.handlebars->37->1102", "sharing.handlebars->11->12" ] }, @@ -1097,7 +1097,7 @@ "tr": ", Araç Çubuğu", "zh-chs": ", 工具栏", "xloc": [ - "default.handlebars->35->870" + "default.handlebars->37->896" ] }, { @@ -1120,7 +1120,7 @@ "tr": ", Sadece Görüntüle", "zh-chs": ", 只读", "xloc": [ - "default.handlebars->35->867" + "default.handlebars->37->893" ] }, { @@ -1147,9 +1147,9 @@ "default-mobile.handlebars->11->371", "default-mobile.handlebars->11->406", "default-mobile.handlebars->11->423", - "default.handlebars->35->1082", - "default.handlebars->35->1147", - "default.handlebars->35->1173", + "default.handlebars->37->1108", + "default.handlebars->37->1179", + "default.handlebars->37->1205", "sharing.handlebars->11->19", "sharing.handlebars->11->27", "sharing.handlebars->11->44", @@ -1337,7 +1337,7 @@ "zh-chs": ",{0}观看", "zh-cht": ",{0}觀看", "xloc": [ - "default.handlebars->35->1077", + "default.handlebars->37->1103", "sharing.handlebars->11->13" ] }, @@ -1354,8 +1354,8 @@ "nl": "-", "pl": "-", "pt": "-", - "ru": "-", "pt-br": "-", + "ru": "-", "xloc": [ "default.handlebars->container->column_l->p2->p2info->p2createMeshLink1", "ssh.handlebars->p11->deskarea0->deskarea1->3", @@ -1397,11 +1397,11 @@ "nl": ".", "pl": ".", "pt": ".", + "pt-br": ".", "ru": ".", "sv": ".", "zh-chs": ".", "zh-cht": ".", - "pt-br": ".", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message", "default.handlebars->container->column_l->p0->p0message", @@ -1439,9 +1439,9 @@ "xloc": [ "default-mobile.handlebars->11->132", "default-mobile.handlebars->11->439", - "default.handlebars->35->1192", - "default.handlebars->35->1939", - "default.handlebars->35->2510", + "default.handlebars->37->1224", + "default.handlebars->37->1971", + "default.handlebars->37->2542", "sharing.handlebars->11->50" ] }, @@ -1479,12 +1479,12 @@ "nl": "0", "pl": "0", "pt": "0", + "pt-br": "0", "ru": "0", "sv": "0", "tr": "0", "zh-chs": "0", "zh-cht": "0", - "pt-br": "0", "xloc": [ "default-mobile.handlebars->container->masthead->notificationCount->notificationCount2", "default.handlebars->container->masthead->7->notificationCount" @@ -1596,7 +1596,7 @@ "zh-chs": "1个活跃时段", "zh-cht": "1個活躍時段", "xloc": [ - "default.handlebars->35->2400" + "default.handlebars->37->2432" ] }, { @@ -1622,7 +1622,7 @@ "xloc": [ "default-mobile.handlebars->11->142", "default-mobile.handlebars->11->694", - "default.handlebars->35->1963", + "default.handlebars->37->1995", "download.handlebars->3->1", "download2.handlebars->5->1", "sharing.handlebars->11->96" @@ -1649,7 +1649,7 @@ "zh-chs": "1条连接", "zh-cht": "1位聯絡文", "xloc": [ - "default.handlebars->35->1079", + "default.handlebars->37->1105", "sharing.handlebars->11->15" ] }, @@ -1674,9 +1674,9 @@ "zh-chs": "1天", "zh-cht": "1天", "xloc": [ - "default.handlebars->35->226", - "default.handlebars->35->436", - "default.handlebars->35->450" + "default.handlebars->37->248", + "default.handlebars->37->461", + "default.handlebars->37->475" ] }, { @@ -1700,7 +1700,7 @@ "zh-chs": "1组", "zh-cht": "1群", "xloc": [ - "default.handlebars->35->2359" + "default.handlebars->37->2391" ] }, { @@ -1724,9 +1724,9 @@ "zh-chs": "1小时", "zh-cht": "1小時", "xloc": [ - "default.handlebars->35->224", - "default.handlebars->35->434", - "default.handlebars->35->448" + "default.handlebars->37->246", + "default.handlebars->37->459", + "default.handlebars->37->473" ] }, { @@ -1750,8 +1750,8 @@ "zh-chs": "1分钟", "zh-cht": "1分鐘", "xloc": [ - "default.handlebars->35->1585", - "default.handlebars->35->935" + "default.handlebars->37->1617", + "default.handlebars->37->961" ] }, { @@ -1775,7 +1775,7 @@ "zh-chs": "1分钟之后断开连接", "zh-cht": "1分鐘之後離線", "xloc": [ - "default.handlebars->35->76" + "default.handlebars->37->76" ] }, { @@ -1799,9 +1799,9 @@ "zh-chs": "1个月", "zh-cht": "1個月", "xloc": [ - "default.handlebars->35->228", - "default.handlebars->35->438", - "default.handlebars->35->452" + "default.handlebars->37->250", + "default.handlebars->37->463", + "default.handlebars->37->477" ] }, { @@ -1825,7 +1825,7 @@ "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...", "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "xloc": [ - "default.handlebars->35->2134" + "default.handlebars->37->2166" ] }, { @@ -1849,7 +1849,7 @@ "zh-chs": "1个节点", "zh-cht": "1個節點", "xloc": [ - "default.handlebars->35->523" + "default.handlebars->37->549" ] }, { @@ -1913,7 +1913,7 @@ "zh-chs": "1秒", "xloc": [ "default-mobile.handlebars->11->321", - "default.handlebars->35->964" + "default.handlebars->37->990" ] }, { @@ -1937,7 +1937,7 @@ "zh-chs": "1秒之后断开连接", "zh-cht": "1秒之後離線", "xloc": [ - "default.handlebars->35->74" + "default.handlebars->37->74" ] }, { @@ -1960,7 +1960,7 @@ "tr": "1 seçili cihaz çevrimdışı.", "zh-chs": "1 个选定的设备处于离线状态。", "xloc": [ - "default.handlebars->35->582" + "default.handlebars->37->608" ] }, { @@ -1983,7 +1983,7 @@ "tr": "1 seçili cihaz çevrimiçi.", "zh-chs": "1 个选定的设备在线。", "xloc": [ - "default.handlebars->35->580" + "default.handlebars->37->606" ] }, { @@ -2013,13 +2013,13 @@ "default-mobile.handlebars->11->204", "default-mobile.handlebars->11->207", "default-mobile.handlebars->11->210", - "default.handlebars->35->2138", - "default.handlebars->35->344", - "default.handlebars->35->347", - "default.handlebars->35->350", - "default.handlebars->35->353", - "default.handlebars->35->356", - "default.handlebars->35->359" + "default.handlebars->37->2170", + "default.handlebars->37->366", + "default.handlebars->37->369", + "default.handlebars->37->372", + "default.handlebars->37->375", + "default.handlebars->37->378", + "default.handlebars->37->381" ] }, { @@ -2043,9 +2043,9 @@ "zh-chs": "1周", "zh-cht": "1週", "xloc": [ - "default.handlebars->35->227", - "default.handlebars->35->437", - "default.handlebars->35->451" + "default.handlebars->37->249", + "default.handlebars->37->462", + "default.handlebars->37->476" ] }, { @@ -2192,8 +2192,8 @@ "zh-chs": "10分钟", "zh-cht": "10分鐘", "xloc": [ - "default.handlebars->35->1587", - "default.handlebars->35->937" + "default.handlebars->37->1619", + "default.handlebars->37->963" ] }, { @@ -2217,7 +2217,7 @@ "zh-chs": "10 秒", "xloc": [ "default-mobile.handlebars->11->323", - "default.handlebars->35->966" + "default.handlebars->37->992" ] }, { @@ -2340,8 +2340,8 @@ "zh-chs": "12小时", "zh-cht": "12小時", "xloc": [ - "default.handlebars->35->1595", - "default.handlebars->35->945" + "default.handlebars->37->1627", + "default.handlebars->37->971" ] }, { @@ -2411,8 +2411,8 @@ "zh-chs": "15分钟", "zh-cht": "15分鐘", "xloc": [ - "default.handlebars->35->1588", - "default.handlebars->35->938" + "default.handlebars->37->1620", + "default.handlebars->37->964" ] }, { @@ -2436,8 +2436,8 @@ "zh-chs": "16小时", "zh-cht": "16小時", "xloc": [ - "default.handlebars->35->1596", - "default.handlebars->35->946" + "default.handlebars->37->1628", + "default.handlebars->37->972" ] }, { @@ -2461,8 +2461,8 @@ "zh-chs": "2天", "zh-cht": "2天", "xloc": [ - "default.handlebars->35->1598", - "default.handlebars->35->948" + "default.handlebars->37->1630", + "default.handlebars->37->974" ] }, { @@ -2486,8 +2486,8 @@ "zh-chs": "2小时", "zh-cht": "2小時", "xloc": [ - "default.handlebars->35->1592", - "default.handlebars->35->942" + "default.handlebars->37->1624", + "default.handlebars->37->968" ] }, { @@ -2511,7 +2511,7 @@ "zh-chs": "两步登录激活失败。", "zh-cht": "兩步登入啟用失敗。", "xloc": [ - "default.handlebars->35->173" + "default.handlebars->37->195" ] }, { @@ -2535,7 +2535,7 @@ "zh-chs": "两步登录激活删除失败。", "zh-cht": "兩步登入啟用刪除失敗。", "xloc": [ - "default.handlebars->35->178" + "default.handlebars->37->200" ] }, { @@ -2658,8 +2658,8 @@ "zh-chs": "24小时", "zh-cht": "24小時", "xloc": [ - "default.handlebars->35->1597", - "default.handlebars->35->947" + "default.handlebars->37->1629", + "default.handlebars->37->973" ] }, { @@ -2733,7 +2733,7 @@ "zh-chs": "2FA备份代码已清除", "zh-cht": "2FA備份代碼已清除", "xloc": [ - "default.handlebars->35->2074" + "default.handlebars->37->2106" ] }, { @@ -2757,8 +2757,8 @@ "zh-chs": "启用第二因素身份验证", "zh-cht": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->35->2151", - "default.handlebars->35->2383" + "default.handlebars->37->2183", + "default.handlebars->37->2415" ] }, { @@ -2798,8 +2798,8 @@ "nl": "3", "pl": "3", "pt": "3", - "ru": "3", "pt-br": "3", + "ru": "3", "xloc": [ "default-mobile.handlebars->11->466" ] @@ -2900,8 +2900,8 @@ "zh-chs": "30分钟", "zh-cht": "30分鐘", "xloc": [ - "default.handlebars->35->1589", - "default.handlebars->35->939" + "default.handlebars->37->1621", + "default.handlebars->37->965" ] }, { @@ -2925,7 +2925,7 @@ "zh-chs": "32 位", "xloc": [ "default-mobile.handlebars->11->476", - "default.handlebars->35->1243" + "default.handlebars->37->1275" ] }, { @@ -2949,8 +2949,8 @@ "zh-chs": "MeshAgent的32位版本", "zh-cht": "MeshAgent的32位版本", "xloc": [ - "default.handlebars->35->482", - "default.handlebars->35->509" + "default.handlebars->37->507", + "default.handlebars->37->535" ] }, { @@ -3000,8 +3000,8 @@ "zh-chs": "4天", "zh-cht": "4天", "xloc": [ - "default.handlebars->35->1599", - "default.handlebars->35->949" + "default.handlebars->37->1631", + "default.handlebars->37->975" ] }, { @@ -3025,8 +3025,8 @@ "zh-chs": "4个小时", "zh-cht": "4個小時", "xloc": [ - "default.handlebars->35->1593", - "default.handlebars->35->943" + "default.handlebars->37->1625", + "default.handlebars->37->969" ] }, { @@ -3149,8 +3149,8 @@ "zh-chs": "45分钟", "zh-cht": "45分鐘", "xloc": [ - "default.handlebars->35->1590", - "default.handlebars->35->940" + "default.handlebars->37->1622", + "default.handlebars->37->966" ] }, { @@ -3198,8 +3198,8 @@ "zh-chs": "5分钟", "zh-cht": "5分鐘", "xloc": [ - "default.handlebars->35->1586", - "default.handlebars->35->936" + "default.handlebars->37->1618", + "default.handlebars->37->962" ] }, { @@ -3223,7 +3223,7 @@ "zh-chs": "5秒", "xloc": [ "default-mobile.handlebars->11->322", - "default.handlebars->35->965" + "default.handlebars->37->991" ] }, { @@ -3373,8 +3373,8 @@ "zh-chs": "60分钟", "zh-cht": "60分鐘", "xloc": [ - "default.handlebars->35->1591", - "default.handlebars->35->941" + "default.handlebars->37->1623", + "default.handlebars->37->967" ] }, { @@ -3448,7 +3448,7 @@ "zh-chs": "64 位", "xloc": [ "default-mobile.handlebars->11->478", - "default.handlebars->35->1245" + "default.handlebars->37->1277" ] }, { @@ -3472,7 +3472,7 @@ "zh-chs": "64位版本的macOS Mesh Agent", "zh-cht": "64位版本的macOS Mesh Agent", "xloc": [ - "default.handlebars->35->496" + "default.handlebars->37->522" ] }, { @@ -3496,8 +3496,8 @@ "zh-chs": "MeshAgent的64位版本", "zh-cht": "MeshAgent的64位版本", "xloc": [ - "default.handlebars->35->486", - "default.handlebars->35->512" + "default.handlebars->37->511", + "default.handlebars->37->538" ] }, { @@ -3566,7 +3566,7 @@ "zh-chs": "7天电源状态", "zh-cht": "7天電源狀態", "xloc": [ - "default.handlebars->35->999" + "default.handlebars->37->1025" ] }, { @@ -3641,10 +3641,10 @@ "zh-chs": "8小時", "zh-cht": "8小時", "xloc": [ - "default.handlebars->35->1594", - "default.handlebars->35->435", - "default.handlebars->35->449", - "default.handlebars->35->944" + "default.handlebars->37->1626", + "default.handlebars->37->460", + "default.handlebars->37->474", + "default.handlebars->37->970" ] }, { @@ -3791,7 +3791,7 @@ "zh-chs": "硬件密钥用作辅助登录身份验证。", "zh-cht": "硬件密鑰用作輔助登入身份驗證。", "xloc": [ - "default.handlebars->35->187" + "default.handlebars->37->209" ] }, { @@ -3956,8 +3956,8 @@ "zh-cht": "ACM", "xloc": [ "default-mobile.handlebars->11->274", - "default.handlebars->35->1735", - "default.handlebars->35->727" + "default.handlebars->37->1767", + "default.handlebars->37->753" ] }, { @@ -4023,8 +4023,8 @@ "zh-chs": "AMT", "zh-cht": "AMT", "xloc": [ - "default.handlebars->35->330", - "default.handlebars->35->551" + "default.handlebars->37->352", + "default.handlebars->37->577" ] }, { @@ -4047,7 +4047,7 @@ "tr": "AMT-OS", "zh-chs": "操作系统", "xloc": [ - "default.handlebars->35->2588" + "default.handlebars->37->2620" ] }, { @@ -4072,7 +4072,7 @@ "zh-cht": "ARM-Linaro", "xloc": [ "default-mobile.handlebars->11->30", - "default.handlebars->35->37" + "default.handlebars->37->37" ] }, { @@ -4097,7 +4097,7 @@ "zh-cht": "ARMADA/CORTEX-A53/MUSL (OpenWRT)", "xloc": [ "default-mobile.handlebars->11->47", - "default.handlebars->35->54" + "default.handlebars->37->54" ] }, { @@ -4122,7 +4122,7 @@ "zh-cht": "ARMv6l / ARMv7l", "xloc": [ "default-mobile.handlebars->11->31", - "default.handlebars->35->38" + "default.handlebars->37->38" ] }, { @@ -4147,7 +4147,7 @@ "zh-cht": "ARMv6l / ARMv7l / NoKVM", "xloc": [ "default-mobile.handlebars->11->33", - "default.handlebars->35->40" + "default.handlebars->37->40" ] }, { @@ -4172,7 +4172,7 @@ "zh-cht": "ARMv8 64位", "xloc": [ "default-mobile.handlebars->11->32", - "default.handlebars->35->39" + "default.handlebars->37->39" ] }, { @@ -4197,8 +4197,8 @@ "xloc": [ "default-mobile.handlebars->11->480", "default-mobile.handlebars->11->482", - "default.handlebars->35->746", - "default.handlebars->35->748" + "default.handlebars->37->772", + "default.handlebars->37->774" ] }, { @@ -4223,7 +4223,7 @@ "zh-cht": "拒絕存取", "xloc": [ "default-mobile.handlebars->11->569", - "default.handlebars->35->1330" + "default.handlebars->37->1362" ] }, { @@ -4296,7 +4296,7 @@ "zh-chs": "访问服务器档案", "zh-cht": "存取伺服器檔案", "xloc": [ - "default.handlebars->35->2318" + "default.handlebars->37->2350" ] }, { @@ -4401,11 +4401,11 @@ "default-mobile.handlebars->11->243", "default-mobile.handlebars->11->245", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->35->1628", - "default.handlebars->35->1630", - "default.handlebars->35->2641", - "default.handlebars->35->689", - "default.handlebars->35->691" + "default.handlebars->37->1660", + "default.handlebars->37->1662", + "default.handlebars->37->2673", + "default.handlebars->37->715", + "default.handlebars->37->717" ] }, { @@ -4429,7 +4429,7 @@ "zh-chs": "帐号设定", "xloc": [ "default-mobile.handlebars->11->662", - "default.handlebars->35->2518" + "default.handlebars->37->2550" ] }, { @@ -4502,7 +4502,7 @@ "zh-chs": "帐户已更改:{0}", "zh-cht": "帳戶已更改:{0}", "xloc": [ - "default.handlebars->35->2047" + "default.handlebars->37->2079" ] }, { @@ -4526,7 +4526,7 @@ "zh-chs": "创建帐户,电子邮件为{0}", "zh-cht": "創建帳戶,電子郵件為{0}", "xloc": [ - "default.handlebars->35->2046" + "default.handlebars->37->2078" ] }, { @@ -4550,7 +4550,7 @@ "zh-chs": "创建帐户,用户名是{0}", "zh-cht": "帳戶已創建,用戶名是{0}", "xloc": [ - "default.handlebars->35->2045" + "default.handlebars->37->2077" ] }, { @@ -4574,8 +4574,8 @@ "zh-chs": "帐户已被锁定", "zh-cht": "帳戶已被鎖定", "xloc": [ - "default.handlebars->35->2153", - "default.handlebars->35->2315" + "default.handlebars->37->2185", + "default.handlebars->37->2347" ] }, { @@ -4600,7 +4600,7 @@ "zh-cht": "達到帳戶限制。", "xloc": [ "default-mobile.handlebars->11->674", - "default.handlebars->35->2530", + "default.handlebars->37->2562", "login-mobile.handlebars->5->6", "login.handlebars->5->6", "login2.handlebars->7->8" @@ -4653,7 +4653,7 @@ "zh-chs": "帐号登录", "zh-cht": "帳號登錄", "xloc": [ - "default.handlebars->35->1982" + "default.handlebars->37->2014" ] }, { @@ -4676,7 +4676,7 @@ "tr": "{0}, {1}, {2} adresinden hesap girişi", "zh-chs": "来自 {0}、{1}、{2} 的帐户登录", "xloc": [ - "default.handlebars->35->2088" + "default.handlebars->37->2120" ] }, { @@ -4700,7 +4700,7 @@ "zh-chs": "帐户登出", "zh-cht": "帳戶登出", "xloc": [ - "default.handlebars->35->1983" + "default.handlebars->37->2015" ] }, { @@ -4750,7 +4750,7 @@ "zh-chs": "帐户密码已更改:{0}", "zh-cht": "帳戶密碼已更改:{0}", "xloc": [ - "default.handlebars->35->2055" + "default.handlebars->37->2087" ] }, { @@ -4774,7 +4774,7 @@ "zh-chs": "帐户已删除", "zh-cht": "帳戶已刪除", "xloc": [ - "default.handlebars->35->2044" + "default.handlebars->37->2076" ] }, { @@ -4823,7 +4823,7 @@ "zh-cht": "指令", "xloc": [ "default-mobile.handlebars->11->575", - "default.handlebars->35->1336", + "default.handlebars->37->1368", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -4848,8 +4848,8 @@ "zh-chs": "动作档案", "zh-cht": "動作檔案", "xloc": [ - "default.handlebars->35->1045", - "default.handlebars->35->1047" + "default.handlebars->37->1071", + "default.handlebars->37->1073" ] }, { @@ -4877,7 +4877,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3", - "default.handlebars->35->798", + "default.handlebars->37->824", "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" @@ -4904,7 +4904,7 @@ "zh-chs": "使用FAT格式的USB密钥在管理控制模式(ACM)中激活英特尔®AMT。将setup.bin放在其上,然后使用此键引导一台或多台计算机。", "zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾®AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。", "xloc": [ - "default.handlebars->35->405" + "default.handlebars->37->427" ] }, { @@ -4976,7 +4976,7 @@ "zh-chs": "如果ACM失败,则激活到CCM", "zh-cht": "如果ACM失敗,則激活到CCM", "xloc": [ - "default.handlebars->35->1769" + "default.handlebars->37->1801" ] }, { @@ -5003,9 +5003,9 @@ "default-mobile.handlebars->11->269", "default-mobile.handlebars->11->271", "default-mobile.handlebars->11->531", - "default.handlebars->35->1291", - "default.handlebars->35->720", - "default.handlebars->35->722" + "default.handlebars->37->1323", + "default.handlebars->37->746", + "default.handlebars->37->748" ] }, { @@ -5029,7 +5029,7 @@ "zh-chs": "激活", "zh-cht": "啟動", "xloc": [ - "default.handlebars->35->257" + "default.handlebars->37->279" ] }, { @@ -5053,7 +5053,7 @@ "zh-chs": "主动设备共享", "zh-cht": "主動設備共享", "xloc": [ - "default.handlebars->35->856" + "default.handlebars->37->882" ] }, { @@ -5076,21 +5076,23 @@ "tr": "Aktif Giriş Jetonları", "zh-chs": "活动登录令牌", "xloc": [ - "default.handlebars->35->1649" + "default.handlebars->37->1681" ] }, { "en": "Active User", + "pl": "Aktywny użytkownik", "pt-br": "Usuario activo", "xloc": [ - "default.handlebars->35->764" + "default.handlebars->37->790" ] }, { "en": "Active Users", + "pl": "Aktywni użytkownicy", "pt-br": "Usuarios activos", "xloc": [ - "default.handlebars->35->763" + "default.handlebars->37->789" ] }, { @@ -5135,7 +5137,7 @@ "zh-chs": "添加", "xloc": [ "default-mobile.handlebars->11->398", - "default.handlebars->35->1113" + "default.handlebars->37->1139" ] }, { @@ -5199,8 +5201,8 @@ "zh-chs": "添加代理", "zh-cht": "新增代理", "xloc": [ - "default.handlebars->35->1731", - "default.handlebars->35->377" + "default.handlebars->37->1763", + "default.handlebars->37->399" ] }, { @@ -5245,9 +5247,9 @@ "zh-chs": "添加设备", "zh-cht": "新增裝置", "xloc": [ - "default.handlebars->35->2292", - "default.handlebars->35->2449", - "default.handlebars->35->381" + "default.handlebars->37->2324", + "default.handlebars->37->2481", + "default.handlebars->37->403" ] }, { @@ -5271,7 +5273,7 @@ "zh-chs": "添加设备日志", "zh-cht": "新增裝置日誌", "xloc": [ - "default.handlebars->35->912" + "default.handlebars->37->938" ] }, { @@ -5295,10 +5297,10 @@ "zh-chs": "添加设备组", "zh-cht": "新增裝置群", "xloc": [ - "default.handlebars->35->1849", - "default.handlebars->35->2286", - "default.handlebars->35->2437", - "default.handlebars->35->310" + "default.handlebars->37->1881", + "default.handlebars->37->2318", + "default.handlebars->37->2469", + "default.handlebars->37->332" ] }, { @@ -5322,7 +5324,7 @@ "zh-chs": "添加设备组权限", "zh-cht": "新增裝置群權限", "xloc": [ - "default.handlebars->35->1846" + "default.handlebars->37->1878" ] }, { @@ -5346,8 +5348,8 @@ "zh-chs": "添加设备权限", "zh-cht": "新增裝置權限", "xloc": [ - "default.handlebars->35->1851", - "default.handlebars->35->1853" + "default.handlebars->37->1883", + "default.handlebars->37->1885" ] }, { @@ -5392,7 +5394,7 @@ "zh-chs": "添加英特尔®AMT设备", "zh-cht": "新增Intel® AMT裝置", "xloc": [ - "default.handlebars->35->401" + "default.handlebars->37->423" ] }, { @@ -5416,7 +5418,7 @@ "zh-chs": "新增密钥", "zh-cht": "新增密鑰", "xloc": [ - "default.handlebars->35->191" + "default.handlebars->37->213" ] }, { @@ -5440,7 +5442,7 @@ "zh-chs": "添加本地", "zh-cht": "新增本地", "xloc": [ - "default.handlebars->35->371" + "default.handlebars->37->393" ] }, { @@ -5484,7 +5486,7 @@ "zh-chs": "添加成员身份", "zh-cht": "新增成員身份", "xloc": [ - "default.handlebars->35->2469" + "default.handlebars->37->2501" ] }, { @@ -5508,7 +5510,7 @@ "zh-chs": "添加 Mesh Agent", "zh-cht": "新增 Mesh Agent", "xloc": [ - "default.handlebars->35->522" + "default.handlebars->37->548" ] }, { @@ -5552,12 +5554,12 @@ "zh-chs": "添加安全密钥", "zh-cht": "新增安全密鑰", "xloc": [ - "default.handlebars->35->1375", - "default.handlebars->35->1376", - "default.handlebars->35->194", - "default.handlebars->35->196", - "default.handlebars->35->199", - "default.handlebars->35->200" + "default.handlebars->37->1407", + "default.handlebars->37->1408", + "default.handlebars->37->216", + "default.handlebars->37->218", + "default.handlebars->37->221", + "default.handlebars->37->222" ] }, { @@ -5582,7 +5584,7 @@ "zh-cht": "新增用戶", "xloc": [ "default-mobile.handlebars->11->591", - "default.handlebars->35->848" + "default.handlebars->37->874" ] }, { @@ -5606,7 +5608,7 @@ "zh-chs": "添加用户设备权限", "zh-cht": "新增用戶裝置權限", "xloc": [ - "default.handlebars->35->1856" + "default.handlebars->37->1888" ] }, { @@ -5630,10 +5632,10 @@ "zh-chs": "添加用户组", "zh-cht": "新增用戶群", "xloc": [ - "default.handlebars->35->1727", - "default.handlebars->35->1848", - "default.handlebars->35->2443", - "default.handlebars->35->849" + "default.handlebars->37->1759", + "default.handlebars->37->1880", + "default.handlebars->37->2475", + "default.handlebars->37->875" ] }, { @@ -5657,7 +5659,7 @@ "zh-chs": "添加用户组设备权限", "zh-cht": "新增用戶群裝置權限", "xloc": [ - "default.handlebars->35->1858" + "default.handlebars->37->1890" ] }, { @@ -5726,8 +5728,8 @@ "zh-chs": "添加用户", "zh-cht": "新增用戶", "xloc": [ - "default.handlebars->35->1726", - "default.handlebars->35->2281" + "default.handlebars->37->1758", + "default.handlebars->37->2313" ] }, { @@ -5751,7 +5753,7 @@ "zh-chs": "将用户添加到设备组", "zh-cht": "將用戶新增到裝置群", "xloc": [ - "default.handlebars->35->1845" + "default.handlebars->37->1877" ] }, { @@ -5775,7 +5777,7 @@ "zh-chs": "将用户添加到用户组", "zh-cht": "將用戶新增到用戶群", "xloc": [ - "default.handlebars->35->2314" + "default.handlebars->37->2346" ] }, { @@ -5799,7 +5801,7 @@ "zh-chs": "添加YubiKey®OTP", "zh-cht": "新增YubiKey®OTP", "xloc": [ - "default.handlebars->35->192" + "default.handlebars->37->214" ] }, { @@ -5822,7 +5824,7 @@ "tr": "\\\"{0}\\\" cihaz grubuna yerel bir cihaz ekleyin.", "zh-chs": "将本地设备添加到设备组 \\\"{0}\\\"。", "xloc": [ - "default.handlebars->35->382" + "default.handlebars->37->404" ] }, { @@ -5846,7 +5848,7 @@ "zh-chs": "通过扫描本地网络添加新的英特尔®AMT计算机。", "zh-cht": "通過掃描本地網絡新增新的Intel® AMT電腦。", "xloc": [ - "default.handlebars->35->372" + "default.handlebars->37->394" ] }, { @@ -5891,7 +5893,7 @@ "zh-chs": "添加位于本地网络上的新英特尔®AMT计算机。", "zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。", "xloc": [ - "default.handlebars->35->370" + "default.handlebars->37->392" ] }, { @@ -5915,7 +5917,7 @@ "zh-chs": "将新的英特尔®AMT设备添加到设备组“{0}”。", "zh-cht": "將新的Intel® AMT裝置新增到裝置群“{0}”。", "xloc": [ - "default.handlebars->35->391" + "default.handlebars->37->413" ] }, { @@ -5939,8 +5941,8 @@ "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。", "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。", "xloc": [ - "default.handlebars->35->1730", - "default.handlebars->35->376" + "default.handlebars->37->1762", + "default.handlebars->37->398" ] }, { @@ -5963,7 +5965,7 @@ "tr": "Yerel ağda bulunan cihazı ekleyin.", "zh-chs": "添加位于本地网络上的设备。", "xloc": [ - "default.handlebars->35->380" + "default.handlebars->37->402" ] }, { @@ -5986,7 +5988,7 @@ "tr": "Yerel cihaz ekle", "zh-chs": "添加本地设备", "xloc": [ - "default.handlebars->35->390" + "default.handlebars->37->412" ] }, { @@ -6010,7 +6012,7 @@ "zh-chs": "添加标签", "zh-cht": "新增標籤", "xloc": [ - "default.handlebars->35->596" + "default.handlebars->37->622" ] }, { @@ -6034,7 +6036,7 @@ "zh-chs": "通过定期在远程设备上以管理员身份运行MeshCmd,添加,激活和配置Intel®AMT以将“{0}”分组。", "zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel®AMT以將“{0}”分組。", "xloc": [ - "default.handlebars->35->402" + "default.handlebars->37->424" ] }, { @@ -6058,7 +6060,7 @@ "zh-chs": "添加了身份验证应用程序", "zh-cht": "添加了身份驗證應用程序", "xloc": [ - "default.handlebars->35->2071" + "default.handlebars->37->2103" ] }, { @@ -6082,7 +6084,7 @@ "zh-chs": "已将设备共享{0}从{1}添加到{2}", "zh-cht": "已將設備共享{0}從{1}添加到{2}", "xloc": [ - "default.handlebars->35->2082" + "default.handlebars->37->2114" ] }, { @@ -6106,8 +6108,8 @@ "zh-chs": "已将设备{0}添加到设备组{1}", "zh-cht": "已將設備{0}添加到設備組{1}", "xloc": [ - "default.handlebars->35->2038", - "default.handlebars->35->2065" + "default.handlebars->37->2070", + "default.handlebars->37->2097" ] }, { @@ -6130,7 +6132,7 @@ "tr": "Giriş belirteci eklendi", "zh-chs": "添加登录令牌", "xloc": [ - "default.handlebars->35->2096" + "default.handlebars->37->2128" ] }, { @@ -6153,7 +6155,7 @@ "tr": "Anında iletme bildirimi kimlik doğrulama cihazı eklendi", "zh-chs": "新增推送通知认证装置", "xloc": [ - "default.handlebars->35->2094" + "default.handlebars->37->2126" ] }, { @@ -6177,7 +6179,7 @@ "zh-chs": "添加了安全密钥", "zh-cht": "添加了安全密鑰", "xloc": [ - "default.handlebars->35->2076" + "default.handlebars->37->2108" ] }, { @@ -6201,7 +6203,7 @@ "zh-chs": "已将用户组{0}添加到设备组{1}", "zh-cht": "已將用戶組{0}添加到設備組{1}", "xloc": [ - "default.handlebars->35->2049" + "default.handlebars->37->2081" ] }, { @@ -6225,8 +6227,8 @@ "zh-chs": "已将用户{0}添加到用户组{1}", "zh-cht": "已將用戶{0}添加到用戶組{1}", "xloc": [ - "default.handlebars->35->2052", - "default.handlebars->35->2061" + "default.handlebars->37->2084", + "default.handlebars->37->2093" ] }, { @@ -6250,7 +6252,7 @@ "zh-chs": "地址", "zh-cht": "地址", "xloc": [ - "default.handlebars->35->305" + "default.handlebars->37->327" ] }, { @@ -6299,7 +6301,7 @@ "zh-cht": "管理員控制模式(ACM)", "xloc": [ "default-mobile.handlebars->11->533", - "default.handlebars->35->1293" + "default.handlebars->37->1325" ] }, { @@ -6324,7 +6326,7 @@ "zh-cht": "管理員憑證", "xloc": [ "default-mobile.handlebars->11->539", - "default.handlebars->35->1299" + "default.handlebars->37->1331" ] }, { @@ -6373,7 +6375,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->35->2363" + "default.handlebars->37->2395" ] }, { @@ -6422,7 +6424,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->35->2218" + "default.handlebars->37->2250" ] }, { @@ -6446,7 +6448,7 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->35->2145" + "default.handlebars->37->2177" ] }, { @@ -6470,7 +6472,7 @@ "zh-chs": "南非文", "zh-cht": "南非文", "xloc": [ - "default.handlebars->35->1378" + "default.handlebars->37->1410" ] }, { @@ -6498,11 +6500,11 @@ "default-mobile.handlebars->11->235", "default-mobile.handlebars->11->288", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", - "default.handlebars->35->1914", - "default.handlebars->35->1927", - "default.handlebars->35->2586", - "default.handlebars->35->326", - "default.handlebars->35->547", + "default.handlebars->37->1946", + "default.handlebars->37->1959", + "default.handlebars->37->2618", + "default.handlebars->37->348", + "default.handlebars->37->573", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1" ] }, @@ -6527,8 +6529,8 @@ "zh-chs": "代理+英特尔AMT", "zh-cht": "代理+Intel® AMT", "xloc": [ - "default.handlebars->35->1916", - "default.handlebars->35->1929" + "default.handlebars->37->1948", + "default.handlebars->37->1961" ] }, { @@ -6578,7 +6580,7 @@ "zh-cht": "代理控制台", "xloc": [ "default-mobile.handlebars->11->633", - "default.handlebars->35->1866" + "default.handlebars->37->1898" ] }, { @@ -6602,7 +6604,7 @@ "zh-chs": "代理错误计数器", "zh-cht": "代理錯誤計數器", "xloc": [ - "default.handlebars->35->2555" + "default.handlebars->37->2587" ] }, { @@ -6625,7 +6627,7 @@ "tr": "Aracı IP adresi", "zh-chs": "代理IP地址", "xloc": [ - "default.handlebars->35->282" + "default.handlebars->37->304" ] }, { @@ -6674,7 +6676,7 @@ "zh-cht": "代理訊息", "xloc": [ "default-mobile.handlebars->11->213", - "default.handlebars->35->362" + "default.handlebars->37->384" ] }, { @@ -6768,7 +6770,7 @@ "zh-chs": "代理时段", "zh-cht": "代理時段", "xloc": [ - "default.handlebars->35->2571" + "default.handlebars->37->2603" ] }, { @@ -6813,7 +6815,7 @@ "zh-cht": "代理標籤", "xloc": [ "default-mobile.handlebars->11->287", - "default.handlebars->35->743" + "default.handlebars->37->769" ] }, { @@ -6836,8 +6838,8 @@ "tr": "Temsilci Türü", "zh-chs": "代理类型", "xloc": [ - "default.handlebars->35->276", - "default.handlebars->35->300" + "default.handlebars->37->298", + "default.handlebars->37->322" ] }, { @@ -6861,7 +6863,7 @@ "zh-chs": "代理类型", "zh-cht": "代理類型", "xloc": [ - "default.handlebars->35->1925", + "default.handlebars->37->1957", "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1" ] }, @@ -6885,8 +6887,8 @@ "tr": "Aracı Sürümü", "zh-chs": "代理版本", "xloc": [ - "default.handlebars->35->277", - "default.handlebars->35->301" + "default.handlebars->37->299", + "default.handlebars->37->323" ] }, { @@ -6910,7 +6912,7 @@ "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}", "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}", "xloc": [ - "default.handlebars->35->2035" + "default.handlebars->37->2067" ] }, { @@ -6934,9 +6936,9 @@ "zh-chs": "代理已连接", "zh-cht": "代理已連接", "xloc": [ - "default.handlebars->35->208", - "default.handlebars->35->839", - "default.handlebars->35->840" + "default.handlebars->37->230", + "default.handlebars->37->865", + "default.handlebars->37->866" ] }, { @@ -6960,7 +6962,14 @@ "zh-chs": "代理已断开连接", "zh-cht": "代理已斷開連接", "xloc": [ - "default.handlebars->35->212" + "default.handlebars->37->234" + ] + }, + { + "en": "Agent hash checking is being skipped, this is unsafe.", + "pl": "Sprawdzanie skrótu agenta jest pomijane, jest to niebezpieczne.", + "xloc": [ + "default.handlebars->37->87" ] }, { @@ -7045,7 +7054,7 @@ "zh-cht": "代理離線", "xloc": [ "default-mobile.handlebars->11->567", - "default.handlebars->35->1328" + "default.handlebars->37->1360" ] }, { @@ -7070,7 +7079,7 @@ "zh-cht": "代理在線", "xloc": [ "default-mobile.handlebars->11->566", - "default.handlebars->35->1327" + "default.handlebars->37->1359" ] }, { @@ -7154,8 +7163,8 @@ "zh-chs": "代理在特权降低的远程设备上运行。", "zh-cht": "代理在特權降低的遠程設備上運行。", "xloc": [ - "default.handlebars->35->206", - "default.handlebars->35->837" + "default.handlebars->37->228", + "default.handlebars->37->863" ] }, { @@ -7259,7 +7268,7 @@ "zh-chs": "代理", "zh-cht": "代理", "xloc": [ - "default.handlebars->35->2599" + "default.handlebars->37->2631" ] }, { @@ -7283,7 +7292,7 @@ "zh-chs": "阿尔巴尼亚文", "zh-cht": "阿爾巴尼亞文", "xloc": [ - "default.handlebars->35->1379" + "default.handlebars->37->1411" ] }, { @@ -7334,7 +7343,7 @@ "zh-chs": "全部可用", "zh-cht": "全部可用", "xloc": [ - "default.handlebars->35->2108" + "default.handlebars->37->2140" ] }, { @@ -7358,7 +7367,7 @@ "zh-chs": "所有显示", "zh-cht": "所有顯示", "xloc": [ - "default.handlebars->35->1140" + "default.handlebars->37->1172" ] }, { @@ -7382,7 +7391,7 @@ "zh-chs": "所有事件", "zh-cht": "所有事件", "xloc": [ - "default.handlebars->35->2106" + "default.handlebars->37->2138" ] }, { @@ -7406,9 +7415,9 @@ "zh-chs": "全部聚焦", "zh-cht": "全部聚焦", "xloc": [ - "default.handlebars->35->1083", - "default.handlebars->35->1085", - "default.handlebars->35->1086" + "default.handlebars->37->1109", + "default.handlebars->37->1111", + "default.handlebars->37->1112" ] }, { @@ -7452,8 +7461,8 @@ "zh-chs": "允许用户管理此设备组和该组中的设备。", "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "xloc": [ - "default.handlebars->35->1811", - "default.handlebars->35->2311" + "default.handlebars->37->1843", + "default.handlebars->37->2343" ] }, { @@ -7477,7 +7486,7 @@ "zh-chs": "允许用户管理此设备。", "zh-cht": "允許用戶管理此裝置。", "xloc": [ - "default.handlebars->35->1812" + "default.handlebars->37->1844" ] }, { @@ -7500,7 +7509,7 @@ "tr": "İzin verilmiş", "zh-chs": "允许", "xloc": [ - "default.handlebars->35->235" + "default.handlebars->37->257" ] }, { @@ -7545,7 +7554,7 @@ "zh-cht": "Alpine Linux x86 64 Bit (MUSL)", "xloc": [ "default-mobile.handlebars->11->39", - "default.handlebars->35->46" + "default.handlebars->37->46" ] }, { @@ -7570,8 +7579,8 @@ "xloc": [ "default-mobile.handlebars->11->391", "default-mobile.handlebars->11->395", - "default.handlebars->35->1106", - "default.handlebars->35->1110" + "default.handlebars->37->1132", + "default.handlebars->37->1136" ] }, { @@ -7645,7 +7654,7 @@ "zh-chs": "备用(F10 = ESC + 0)", "zh-cht": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->35->1166", + "default.handlebars->37->1198", "sharing.handlebars->11->37" ] }, @@ -7716,10 +7725,10 @@ "zh-chs": "一直通知", "zh-cht": "一直通知", "xloc": [ - "default.handlebars->35->1706", - "default.handlebars->35->2272", - "default.handlebars->35->2372", - "default.handlebars->35->773" + "default.handlebars->37->1738", + "default.handlebars->37->2304", + "default.handlebars->37->2404", + "default.handlebars->37->799" ] }, { @@ -7743,10 +7752,10 @@ "zh-chs": "一直提示", "zh-cht": "一直提示", "xloc": [ - "default.handlebars->35->1707", - "default.handlebars->35->2273", - "default.handlebars->35->2373", - "default.handlebars->35->774" + "default.handlebars->37->1739", + "default.handlebars->37->2305", + "default.handlebars->37->2405", + "default.handlebars->37->800" ] }, { @@ -7841,8 +7850,8 @@ "agentinvite.handlebars->container->column_l->5->1->tandrotab", "agentinvite.handlebars->container->column_l->5->androtab->1", "default-mobile.handlebars->11->20", - "default.handlebars->35->22", - "default.handlebars->35->27" + "default.handlebars->37->22", + "default.handlebars->37->27" ] }, { @@ -7958,7 +7967,7 @@ "zh-cht": "安卓x86", "xloc": [ "default-mobile.handlebars->11->18", - "default.handlebars->35->25" + "default.handlebars->37->25" ] }, { @@ -7981,8 +7990,8 @@ "tr": "Anti-virüs etkin değil", "zh-chs": "杀毒软件未激活", "xloc": [ - "default.handlebars->35->1918", - "default.handlebars->35->1932" + "default.handlebars->37->1950", + "default.handlebars->37->1964" ] }, { @@ -8007,7 +8016,7 @@ "zh-cht": "防毒軟體", "xloc": [ "default-mobile.handlebars->11->496", - "default.handlebars->35->762" + "default.handlebars->37->788" ] }, { @@ -8031,7 +8040,7 @@ "zh-chs": "任何可支持的", "zh-cht": "任何可支持的", "xloc": [ - "default.handlebars->35->429" + "default.handlebars->37->454" ] }, { @@ -8056,7 +8065,7 @@ "zh-cht": "蘋果矽", "xloc": [ "default-mobile.handlebars->11->35", - "default.handlebars->35->42" + "default.handlebars->37->42" ] }, { @@ -8080,7 +8089,7 @@ "zh-chs": "苹果macOS", "zh-cht": "蘋果macOS", "xloc": [ - "default.handlebars->35->463" + "default.handlebars->37->488" ] }, { @@ -8104,7 +8113,7 @@ "zh-chs": "仅限Apple macOS", "zh-cht": "僅限Apple macOS", "xloc": [ - "default.handlebars->35->431" + "default.handlebars->37->456" ] }, { @@ -8231,7 +8240,7 @@ "tr": "Uygulama, Her zaman bağlı", "zh-chs": "应用程序,始终连接", "xloc": [ - "default.handlebars->35->476" + "default.handlebars->37->501" ] }, { @@ -8254,7 +8263,7 @@ "tr": "Uygulama, Kullanıcı isteği üzerine bağlanın", "zh-chs": "应用程序,根据用户请求连接", "xloc": [ - "default.handlebars->35->475" + "default.handlebars->37->500" ] }, { @@ -8278,7 +8287,7 @@ "zh-chs": "阿拉伯文(阿尔及利亚)", "zh-cht": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->35->1381" + "default.handlebars->37->1413" ] }, { @@ -8302,7 +8311,7 @@ "zh-chs": "阿拉伯文(巴林)", "zh-cht": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->35->1382" + "default.handlebars->37->1414" ] }, { @@ -8326,7 +8335,7 @@ "zh-chs": "阿拉伯文(埃及)", "zh-cht": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->35->1383" + "default.handlebars->37->1415" ] }, { @@ -8350,7 +8359,7 @@ "zh-chs": "阿拉伯文(伊拉克)", "zh-cht": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->35->1384" + "default.handlebars->37->1416" ] }, { @@ -8374,7 +8383,7 @@ "zh-chs": "阿拉伯文(约旦)", "zh-cht": "阿拉伯文(約旦)", "xloc": [ - "default.handlebars->35->1385" + "default.handlebars->37->1417" ] }, { @@ -8398,7 +8407,7 @@ "zh-chs": "阿拉伯文(科威特)", "zh-cht": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->35->1386" + "default.handlebars->37->1418" ] }, { @@ -8422,7 +8431,7 @@ "zh-chs": "阿拉伯文(黎巴嫩)", "zh-cht": "阿拉伯文(黎巴嫩)", "xloc": [ - "default.handlebars->35->1387" + "default.handlebars->37->1419" ] }, { @@ -8446,7 +8455,7 @@ "zh-chs": "阿拉伯文(利比亚)", "zh-cht": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->35->1388" + "default.handlebars->37->1420" ] }, { @@ -8470,7 +8479,7 @@ "zh-chs": "阿拉伯文(摩洛哥)", "zh-cht": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->35->1389" + "default.handlebars->37->1421" ] }, { @@ -8494,7 +8503,7 @@ "zh-chs": "阿拉伯文(阿曼)", "zh-cht": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->35->1390" + "default.handlebars->37->1422" ] }, { @@ -8518,7 +8527,7 @@ "zh-chs": "阿拉伯文(卡塔尔)", "zh-cht": "阿拉伯文(卡塔爾)", "xloc": [ - "default.handlebars->35->1391" + "default.handlebars->37->1423" ] }, { @@ -8542,7 +8551,7 @@ "zh-chs": "阿拉伯文(沙特阿拉伯)", "zh-cht": "阿拉伯文(沙特阿拉伯)", "xloc": [ - "default.handlebars->35->1392" + "default.handlebars->37->1424" ] }, { @@ -8566,7 +8575,7 @@ "zh-chs": "阿拉伯文(标准)", "zh-cht": "阿拉伯文(標準)", "xloc": [ - "default.handlebars->35->1380" + "default.handlebars->37->1412" ] }, { @@ -8590,7 +8599,7 @@ "zh-chs": "阿拉伯文(叙利亚)", "zh-cht": "阿拉伯文(敘利亞)", "xloc": [ - "default.handlebars->35->1393" + "default.handlebars->37->1425" ] }, { @@ -8614,7 +8623,7 @@ "zh-chs": "阿拉伯文(突尼斯)", "zh-cht": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->35->1394" + "default.handlebars->37->1426" ] }, { @@ -8638,7 +8647,7 @@ "zh-chs": "阿拉伯文(阿联酋)", "zh-cht": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->35->1395" + "default.handlebars->37->1427" ] }, { @@ -8662,7 +8671,7 @@ "zh-chs": "阿拉伯文(也门)", "zh-cht": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->35->1396" + "default.handlebars->37->1428" ] }, { @@ -8686,7 +8695,7 @@ "zh-chs": "阿拉贡文", "zh-cht": "阿拉貢文", "xloc": [ - "default.handlebars->35->1397" + "default.handlebars->37->1429" ] }, { @@ -8713,9 +8722,9 @@ "default-mobile.handlebars->11->475", "default-mobile.handlebars->11->477", "default-mobile.handlebars->11->479", - "default.handlebars->35->1242", - "default.handlebars->35->1244", - "default.handlebars->35->1246" + "default.handlebars->37->1274", + "default.handlebars->37->1276", + "default.handlebars->37->1278" ] }, { @@ -8739,7 +8748,7 @@ "zh-chs": "您确定要连接到{0}设备吗?", "zh-cht": "你確定要連接到{0}裝置嗎?", "xloc": [ - "default.handlebars->35->365" + "default.handlebars->37->387" ] }, { @@ -8764,7 +8773,7 @@ "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。", "xloc": [ "default-mobile.handlebars->11->598", - "default.handlebars->35->1783" + "default.handlebars->37->1815" ] }, { @@ -8788,7 +8797,7 @@ "zh-chs": "您确定要删除节点{0}吗?", "zh-cht": "你確定要刪除節點{0}嗎?", "xloc": [ - "default.handlebars->35->1021" + "default.handlebars->37->1047" ] }, { @@ -8812,7 +8821,7 @@ "zh-chs": "您确定要卸载所选代理吗?", "zh-cht": "你確定要卸載所選代理嗎?", "xloc": [ - "default.handlebars->35->1010" + "default.handlebars->37->1036" ] }, { @@ -8836,7 +8845,7 @@ "zh-chs": "您确定要卸载所选的{0}代理吗?", "zh-cht": "你確定要卸載所選的{0}代理嗎?", "xloc": [ - "default.handlebars->35->1009" + "default.handlebars->37->1035" ] }, { @@ -8860,7 +8869,7 @@ "zh-chs": "您确定要{0}插件吗:{1}", "zh-cht": "你確定要{0}外掛嗎:{1}", "xloc": [ - "default.handlebars->35->2650" + "default.handlebars->37->2682" ] }, { @@ -8884,7 +8893,7 @@ "zh-chs": "Armada370 - ARM32/HF (libc/2.26)", "xloc": [ "default-mobile.handlebars->11->41", - "default.handlebars->35->48" + "default.handlebars->37->48" ] }, { @@ -8908,7 +8917,7 @@ "zh-chs": "亚美尼亚文", "zh-cht": "亞美尼亞文", "xloc": [ - "default.handlebars->35->1398" + "default.handlebars->37->1430" ] }, { @@ -8980,7 +8989,7 @@ "zh-chs": "阿萨姆文", "zh-cht": "阿薩姆文", "xloc": [ - "default.handlebars->35->1399" + "default.handlebars->37->1431" ] }, { @@ -9028,7 +9037,7 @@ "zh-chs": "助手 (Windows)", "xloc": [ "default-mobile.handlebars->11->40", - "default.handlebars->35->47" + "default.handlebars->37->47" ] }, { @@ -9071,8 +9080,8 @@ "tr": "Windows Yardımcısı (.exe)", "zh-chs": "Windows 助手 (.exe)", "xloc": [ - "default.handlebars->35->501", - "default.handlebars->35->505" + "default.handlebars->37->527", + "default.handlebars->37->531" ] }, { @@ -9119,7 +9128,7 @@ "zh-chs": "阿斯图里亚斯文", "zh-cht": "阿斯圖里亞斯文", "xloc": [ - "default.handlebars->35->1400" + "default.handlebars->37->1432" ] }, { @@ -9143,7 +9152,7 @@ "zh-chs": "尝试激活英特尔(R)AMT ACM模式", "zh-cht": "嘗試激活英特爾(R)AMT ACM模式", "xloc": [ - "default.handlebars->35->2004" + "default.handlebars->37->2036" ] }, { @@ -9190,10 +9199,10 @@ "default-mobile.handlebars->11->416", "default-mobile.handlebars->11->424", "default-mobile.handlebars->11->433", - "default.handlebars->35->1148", - "default.handlebars->35->1157", - "default.handlebars->35->1175", - "default.handlebars->35->1183", + "default.handlebars->37->1180", + "default.handlebars->37->1189", + "default.handlebars->37->1207", + "default.handlebars->37->1215", "ssh.handlebars->3->7", "ssh.handlebars->3->8" ] @@ -9219,7 +9228,7 @@ "zh-chs": "认证软件", "zh-cht": "認證軟體", "xloc": [ - "default.handlebars->35->2376" + "default.handlebars->37->2408" ] }, { @@ -9242,9 +9251,9 @@ "tr": "Kimlik Doğrulama Cihazı", "zh-chs": "认证设备", "xloc": [ - "default.handlebars->35->1361", - "default.handlebars->35->1363", - "default.handlebars->35->1367" + "default.handlebars->37->1393", + "default.handlebars->37->1395", + "default.handlebars->37->1399" ] }, { @@ -9269,8 +9278,8 @@ "xloc": [ "default-mobile.handlebars->11->417", "default-mobile.handlebars->11->434", - "default.handlebars->35->1159", - "default.handlebars->35->1184" + "default.handlebars->37->1191", + "default.handlebars->37->1216" ] }, { @@ -9298,10 +9307,10 @@ "default-mobile.handlebars->11->64", "default-mobile.handlebars->11->95", "default-mobile.handlebars->11->97", - "default.handlebars->35->1357", - "default.handlebars->35->1359", - "default.handlebars->35->170", - "default.handlebars->35->175" + "default.handlebars->37->1389", + "default.handlebars->37->1391", + "default.handlebars->37->192", + "default.handlebars->37->197" ] }, { @@ -9325,7 +9334,7 @@ "zh-chs": "认证软件激活成功。", "zh-cht": "認證軟體啟動成功。", "xloc": [ - "default.handlebars->35->171" + "default.handlebars->37->193" ] }, { @@ -9349,7 +9358,7 @@ "zh-chs": "认证软件已删除。", "zh-cht": "認證軟體已刪除。", "xloc": [ - "default.handlebars->35->176" + "default.handlebars->37->198" ] }, { @@ -9397,7 +9406,7 @@ "zh-chs": "自动删除", "zh-cht": "自動刪除", "xloc": [ - "default.handlebars->35->1692" + "default.handlebars->37->1724" ] }, { @@ -9449,7 +9458,7 @@ "zh-chs": "自动下载代理程序核心转储文件:“{0}”", "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”", "xloc": [ - "default.handlebars->35->2085" + "default.handlebars->37->2117" ] }, { @@ -9539,7 +9548,7 @@ "tr": "Etkin olmayan cihazları otomatik olarak kaldırın", "zh-chs": "自动移除非活动设备", "xloc": [ - "default.handlebars->35->1806" + "default.handlebars->37->1838" ] }, { @@ -9563,7 +9572,7 @@ "zh-chs": "可用內存", "zh-cht": "可用內存", "xloc": [ - "default.handlebars->35->2580" + "default.handlebars->37->2612" ] }, { @@ -9587,7 +9596,7 @@ "zh-chs": "阿塞拜疆文", "zh-cht": "阿塞拜疆文", "xloc": [ - "default.handlebars->35->1401" + "default.handlebars->37->1433" ] }, { @@ -9613,9 +9622,9 @@ "default-mobile.handlebars->11->483", "default-mobile.handlebars->11->487", "default-mobile.handlebars->11->491", - "default.handlebars->35->749", - "default.handlebars->35->753", - "default.handlebars->35->757" + "default.handlebars->37->775", + "default.handlebars->37->779", + "default.handlebars->37->783" ] }, { @@ -9640,7 +9649,7 @@ "zh-cht": "的BIOS", "xloc": [ "default-mobile.handlebars->11->545", - "default.handlebars->35->1305" + "default.handlebars->37->1337" ] }, { @@ -9748,7 +9757,7 @@ "zh-chs": "退格", "xloc": [ "default-mobile.handlebars->11->374", - "default.handlebars->35->1089" + "default.handlebars->37->1115" ] }, { @@ -9772,7 +9781,7 @@ "zh-chs": "背景与互动", "zh-cht": "背景與互動", "xloc": [ - "default.handlebars->35->471" + "default.handlebars->37->496" ] }, { @@ -9796,10 +9805,10 @@ "zh-chs": "背景与互动", "zh-cht": "背景與互動", "xloc": [ - "default.handlebars->35->1897", - "default.handlebars->35->1904", - "default.handlebars->35->441", - "default.handlebars->35->455" + "default.handlebars->37->1929", + "default.handlebars->37->1936", + "default.handlebars->37->466", + "default.handlebars->37->480" ] }, { @@ -9823,11 +9832,11 @@ "zh-chs": "仅背景", "zh-cht": "僅背景", "xloc": [ - "default.handlebars->35->1898", - "default.handlebars->35->1905", - "default.handlebars->35->442", - "default.handlebars->35->456", - "default.handlebars->35->472" + "default.handlebars->37->1930", + "default.handlebars->37->1937", + "default.handlebars->37->467", + "default.handlebars->37->481", + "default.handlebars->37->497" ] }, { @@ -9876,7 +9885,7 @@ "zh-chs": "备用码", "zh-cht": "備用碼", "xloc": [ - "default.handlebars->35->2379" + "default.handlebars->37->2411" ] }, { @@ -9900,7 +9909,7 @@ "zh-chs": "错误的签名", "zh-cht": "錯誤的簽名", "xloc": [ - "default.handlebars->35->2562" + "default.handlebars->37->2594" ] }, { @@ -9924,7 +9933,7 @@ "zh-chs": "错误的网络证书", "zh-cht": "錯誤的網絡憑證", "xloc": [ - "default.handlebars->35->2561" + "default.handlebars->37->2593" ] }, { @@ -9948,7 +9957,7 @@ "zh-chs": "巴斯克", "zh-cht": "巴斯克", "xloc": [ - "default.handlebars->35->1402" + "default.handlebars->37->1434" ] }, { @@ -9972,7 +9981,7 @@ "zh-chs": "批处理文件上传", "zh-cht": "批處理文件上傳", "xloc": [ - "default.handlebars->35->612" + "default.handlebars->37->638" ] }, { @@ -10020,7 +10029,7 @@ "zh-chs": "将{0}个文件批量上传到文件夹{1}", "zh-cht": "將{0}個文件批量上傳到文件夾{1}", "xloc": [ - "default.handlebars->35->2084" + "default.handlebars->37->2116" ] }, { @@ -10044,7 +10053,7 @@ "zh-chs": "白俄罗斯文", "zh-cht": "白俄羅斯文", "xloc": [ - "default.handlebars->35->1404" + "default.handlebars->37->1436" ] }, { @@ -10068,7 +10077,7 @@ "zh-chs": "孟加拉", "zh-cht": "孟加拉", "xloc": [ - "default.handlebars->35->1405" + "default.handlebars->37->1437" ] }, { @@ -10139,7 +10148,7 @@ "zh-chs": "引导加载程序", "xloc": [ "default-mobile.handlebars->11->509", - "default.handlebars->35->1259" + "default.handlebars->37->1291" ] }, { @@ -10163,7 +10172,7 @@ "zh-chs": "波斯尼亚文", "zh-cht": "波斯尼亞文", "xloc": [ - "default.handlebars->35->1406" + "default.handlebars->37->1438" ] }, { @@ -10187,7 +10196,7 @@ "zh-chs": "布列塔尼", "zh-cht": "布列塔尼", "xloc": [ - "default.handlebars->35->1407" + "default.handlebars->37->1439" ] }, { @@ -10211,7 +10220,7 @@ "zh-chs": "广播", "zh-cht": "廣播", "xloc": [ - "default.handlebars->35->2279", + "default.handlebars->37->2311", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -10236,7 +10245,7 @@ "zh-chs": "广播消息", "zh-cht": "廣播消息", "xloc": [ - "default.handlebars->35->2200" + "default.handlebars->37->2232" ] }, { @@ -10260,7 +10269,7 @@ "zh-chs": "向所有连接的用户广播消息。", "zh-cht": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->35->2195" + "default.handlebars->37->2227" ] }, { @@ -10284,7 +10293,7 @@ "zh-chs": "浏览器默认", "xloc": [ "default-mobile.handlebars->11->83", - "default.handlebars->35->58" + "default.handlebars->37->58" ] }, { @@ -10308,7 +10317,7 @@ "zh-chs": "保加利亚文", "zh-cht": "保加利亞文", "xloc": [ - "default.handlebars->35->1403" + "default.handlebars->37->1435" ] }, { @@ -10332,7 +10341,7 @@ "zh-chs": "缅甸文", "zh-cht": "緬甸文", "xloc": [ - "default.handlebars->35->1408" + "default.handlebars->37->1440" ] }, { @@ -10355,7 +10364,7 @@ "tr": "Varsayılan olarak, etkin olmayan cihazlar 1 gün sonra kaldırılacaktır.", "zh-chs": "默认情况下,不活动的设备将在 1 天后移除。", "xloc": [ - "default.handlebars->35->1808" + "default.handlebars->37->1840" ] }, { @@ -10378,7 +10387,7 @@ "tr": "Varsayılan olarak, etkin olmayan cihazlar {0} gün sonra kaldırılacaktır.", "zh-chs": "默认情况下,非活动设备将在 {0} 天后移除。", "xloc": [ - "default.handlebars->35->1809" + "default.handlebars->37->1841" ] }, { @@ -10403,7 +10412,7 @@ "zh-cht": "CCM", "xloc": [ "default-mobile.handlebars->11->273", - "default.handlebars->35->725" + "default.handlebars->37->751" ] }, { @@ -10427,7 +10436,7 @@ "zh-chs": "CCM模式", "zh-cht": "CCM模式", "xloc": [ - "default.handlebars->35->1766" + "default.handlebars->37->1798" ] }, { @@ -10452,9 +10461,9 @@ "zh-cht": "CIRA", "xloc": [ "default-mobile.handlebars->11->236", - "default.handlebars->35->2587", - "default.handlebars->35->328", - "default.handlebars->35->549" + "default.handlebars->37->2619", + "default.handlebars->37->350", + "default.handlebars->37->575" ] }, { @@ -10478,7 +10487,7 @@ "zh-chs": "CIRA服务器", "zh-cht": "CIRA伺服器", "xloc": [ - "default.handlebars->35->2634" + "default.handlebars->37->2666" ] }, { @@ -10502,7 +10511,14 @@ "zh-chs": "CIRA服务器命令", "zh-cht": "CIRA伺服器指令", "xloc": [ - "default.handlebars->35->2635" + "default.handlebars->37->2667" + ] + }, + { + "en": "CIRA local FQDN's ignored when server in LAN-only or WAN-only mode.", + "pl": "Lokalna nazwa FQDN CIRA jest ignorowana, gdy serwer działa w trybie tylko LAN lub tylko WAN.", + "xloc": [ + "default.handlebars->37->85" ] }, { @@ -10526,7 +10542,7 @@ "zh-chs": "CIRA设置", "zh-cht": "CIRA設置", "xloc": [ - "default.handlebars->35->1774" + "default.handlebars->37->1806" ] }, { @@ -10551,8 +10567,8 @@ "zh-cht": "CPU", "xloc": [ "default-mobile.handlebars->11->551", - "default.handlebars->35->1311", - "default.handlebars->35->2611", + "default.handlebars->37->1343", + "default.handlebars->37->2643", "default.handlebars->container->column_l->p40->3->1->p40type->5" ] }, @@ -10577,7 +10593,7 @@ "zh-chs": "CPU负载", "zh-cht": "CPU負載", "xloc": [ - "default.handlebars->35->2576" + "default.handlebars->37->2608" ] }, { @@ -10601,7 +10617,7 @@ "zh-chs": "最近15分钟的CPU负载", "zh-cht": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->35->2579" + "default.handlebars->37->2611" ] }, { @@ -10625,7 +10641,7 @@ "zh-chs": "最近5分钟的CPU负载", "zh-cht": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->35->2578" + "default.handlebars->37->2610" ] }, { @@ -10649,7 +10665,7 @@ "zh-chs": "最近一分钟的CPU负载", "zh-cht": "最近一分鐘的CPU負載", "xloc": [ - "default.handlebars->35->2577" + "default.handlebars->37->2609" ] }, { @@ -10673,8 +10689,8 @@ "zh-chs": "CR+LF", "zh-cht": "CR+LF", "xloc": [ - "default.handlebars->35->1145", - "default.handlebars->35->1168", + "default.handlebars->37->1177", + "default.handlebars->37->1200", "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons", "sharing.handlebars->11->25", "sharing.handlebars->11->39", @@ -10702,7 +10718,7 @@ "zh-chs": "CSV", "zh-cht": "CSV", "xloc": [ - "default.handlebars->35->2116" + "default.handlebars->37->2148" ] }, { @@ -10726,9 +10742,9 @@ "zh-chs": "CSV格式", "zh-cht": "CSV格式", "xloc": [ - "default.handlebars->35->2120", - "default.handlebars->35->2187", - "default.handlebars->35->620" + "default.handlebars->37->2152", + "default.handlebars->37->2219", + "default.handlebars->37->646" ] }, { @@ -10773,7 +10789,14 @@ "zh-chs": "呼叫错误", "zh-cht": "呼叫錯誤", "xloc": [ - "default.handlebars->35->2651" + "default.handlebars->37->2683" + ] + }, + { + "en": "Can't have more than 4 CIRA local FQDN's. Ignoring value.", + "pl": "Nie może mieć więcej niż 4 lokalnych FQDN CIRA. Ignorowanie wartości.", + "xloc": [ + "default.handlebars->37->86" ] }, { @@ -10800,8 +10823,9 @@ "agent-translations.json", "default-mobile.handlebars->11->106", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->35->1669", - "default.handlebars->35->2640", + "default.handlebars->37->1701", + "default.handlebars->37->2672", + "default.handlebars->37->440", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -10876,9 +10900,9 @@ "default-mobile.handlebars->11->556", "default-mobile.handlebars->11->561", "default-mobile.handlebars->11->563", - "default.handlebars->35->1316", - "default.handlebars->35->1321", - "default.handlebars->35->1323" + "default.handlebars->37->1348", + "default.handlebars->37->1353", + "default.handlebars->37->1355" ] }, { @@ -10903,7 +10927,7 @@ "zh-cht": "容量/速度", "xloc": [ "default-mobile.handlebars->11->554", - "default.handlebars->35->1314" + "default.handlebars->37->1346" ] }, { @@ -10927,7 +10951,7 @@ "zh-chs": "加泰罗尼亚文", "zh-cht": "加泰羅尼亞文", "xloc": [ - "default.handlebars->35->1409" + "default.handlebars->37->1441" ] }, { @@ -10951,7 +10975,7 @@ "zh-chs": "在这里为中心显示地图", "zh-cht": "在這裡為中心顯示地圖", "xloc": [ - "default.handlebars->35->680" + "default.handlebars->37->706" ] }, { @@ -10995,8 +11019,8 @@ "zh-chs": "证书将在 {0} 天后到期", "xloc": [ "default-mobile.handlebars->11->59", - "default.handlebars->35->81", - "default.handlebars->35->82" + "default.handlebars->37->102", + "default.handlebars->37->103" ] }, { @@ -11020,7 +11044,7 @@ "zh-chs": "查莫罗", "zh-cht": "查莫羅", "xloc": [ - "default.handlebars->35->1410" + "default.handlebars->37->1442" ] }, { @@ -11070,7 +11094,7 @@ "zh-chs": "更改{0}的电邮", "zh-cht": "更改{0}的電郵", "xloc": [ - "default.handlebars->35->2424" + "default.handlebars->37->2456" ] }, { @@ -11094,9 +11118,9 @@ "zh-chs": "更改组", "zh-cht": "更改群", "xloc": [ - "default.handlebars->35->1018", - "default.handlebars->35->1019", - "default.handlebars->35->811" + "default.handlebars->37->1044", + "default.handlebars->37->1045", + "default.handlebars->37->837" ] }, { @@ -11121,8 +11145,8 @@ "zh-cht": "更改密碼", "xloc": [ "default-mobile.handlebars->11->114", - "default.handlebars->35->1625", - "default.handlebars->35->2397" + "default.handlebars->37->1657", + "default.handlebars->37->2429" ] }, { @@ -11146,7 +11170,7 @@ "zh-chs": "更改{0}的密码", "zh-cht": "更改{0}的密碼", "xloc": [ - "default.handlebars->35->2433" + "default.handlebars->37->2465" ] }, { @@ -11170,7 +11194,7 @@ "zh-chs": "更改{0}的真实名称", "zh-cht": "更改{0}的真實名稱", "xloc": [ - "default.handlebars->35->2419" + "default.handlebars->37->2451" ] }, { @@ -11311,7 +11335,7 @@ "zh-chs": "更改该用户的密码", "zh-cht": "更改該用戶的密碼", "xloc": [ - "default.handlebars->35->2396" + "default.handlebars->37->2428" ] }, { @@ -11359,7 +11383,7 @@ "zh-chs": "在此处更改您的帐户电邮地址。", "zh-cht": "在此處更改你的帳戶電郵地址。", "xloc": [ - "default.handlebars->35->1612" + "default.handlebars->37->1644" ] }, { @@ -11383,7 +11407,7 @@ "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。", "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->35->1618" + "default.handlebars->37->1650" ] }, { @@ -11407,7 +11431,7 @@ "zh-chs": "更改帐户凭据", "zh-cht": "帳戶憑證已更改", "xloc": [ - "default.handlebars->35->2056" + "default.handlebars->37->2088" ] }, { @@ -11431,7 +11455,7 @@ "zh-chs": "{1}组中的设备{0}已更改:{2}", "zh-cht": "{1}組中的設備{0}已更改:{2}", "xloc": [ - "default.handlebars->35->2040" + "default.handlebars->37->2072" ] }, { @@ -11455,7 +11479,7 @@ "zh-chs": "语言从{1}更改为{2}", "zh-cht": "語言從{1}更改為{2}", "xloc": [ - "default.handlebars->35->1984" + "default.handlebars->37->2016" ] }, { @@ -11479,8 +11503,8 @@ "zh-chs": "已更改{0}的用户设备权限", "zh-cht": "已更改{0}的用戶設備權限", "xloc": [ - "default.handlebars->35->2042", - "default.handlebars->35->2063" + "default.handlebars->37->2074", + "default.handlebars->37->2095" ] }, { @@ -11524,7 +11548,7 @@ "zh-chs": "更改语言将需要刷新页面。", "zh-cht": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->35->1577" + "default.handlebars->37->1609" ] }, { @@ -11548,12 +11572,12 @@ "zh-chs": "聊天", "zh-cht": "聊天", "xloc": [ - "default.handlebars->35->2137", - "default.handlebars->35->2392", - "default.handlebars->35->2393", - "default.handlebars->35->806", - "default.handlebars->35->885", - "default.handlebars->35->907" + "default.handlebars->37->2169", + "default.handlebars->37->2424", + "default.handlebars->37->2425", + "default.handlebars->37->832", + "default.handlebars->37->911", + "default.handlebars->37->933" ] }, { @@ -11579,8 +11603,8 @@ "xloc": [ "default-mobile.handlebars->11->623", "default-mobile.handlebars->11->643", - "default.handlebars->35->1840", - "default.handlebars->35->1877" + "default.handlebars->37->1872", + "default.handlebars->37->1909" ] }, { @@ -11604,7 +11628,7 @@ "zh-chs": "聊天请求,点击这里接受。", "xloc": [ "default-mobile.handlebars->11->675", - "default.handlebars->35->2531" + "default.handlebars->37->2563" ] }, { @@ -11652,7 +11676,7 @@ "zh-chs": "车臣", "zh-cht": "車臣", "xloc": [ - "default.handlebars->35->1411" + "default.handlebars->37->1443" ] }, { @@ -11676,7 +11700,7 @@ "zh-chs": "检查并单击确定以清除错误日志。", "zh-cht": "檢查並單擊確定以清除錯誤日誌。", "xloc": [ - "default.handlebars->35->166" + "default.handlebars->37->187" ] }, { @@ -11700,7 +11724,7 @@ "zh-chs": "检查并单击确定以开始服务器自我更新。", "zh-cht": "檢查並單擊確定以開始伺服器自我更新。", "xloc": [ - "default.handlebars->35->161" + "default.handlebars->37->182" ] }, { @@ -11748,7 +11772,7 @@ "zh-chs": "检查您的手机并输入验证码。", "zh-cht": "檢查你的電話並輸入驗證碼。", "xloc": [ - "default.handlebars->35->202" + "default.handlebars->37->224" ] }, { @@ -11772,8 +11796,8 @@ "zh-chs": "检查...", "zh-cht": "檢查...", "xloc": [ - "default.handlebars->35->1377", - "default.handlebars->35->2645" + "default.handlebars->37->1409", + "default.handlebars->37->2677" ] }, { @@ -11797,7 +11821,7 @@ "zh-chs": "中文", "zh-cht": "中文", "xloc": [ - "default.handlebars->35->1412" + "default.handlebars->37->1444" ] }, { @@ -11821,7 +11845,7 @@ "zh-chs": "中文(香港)", "zh-cht": "中文(香港)", "xloc": [ - "default.handlebars->35->1413" + "default.handlebars->37->1445" ] }, { @@ -11845,7 +11869,7 @@ "zh-chs": "中文(中国)", "zh-cht": "中文(中國)", "xloc": [ - "default.handlebars->35->1414" + "default.handlebars->37->1446" ] }, { @@ -11869,7 +11893,7 @@ "zh-chs": "简体中文", "zh-cht": "簡體中文", "xloc": [ - "default.handlebars->35->1574" + "default.handlebars->37->1606" ] }, { @@ -11893,7 +11917,7 @@ "zh-chs": "中文(新加坡)", "zh-cht": "中文(新加坡)", "xloc": [ - "default.handlebars->35->1415" + "default.handlebars->37->1447" ] }, { @@ -11917,7 +11941,7 @@ "zh-chs": "中文(台湾)", "zh-cht": "中文(台灣)", "xloc": [ - "default.handlebars->35->1416" + "default.handlebars->37->1448" ] }, { @@ -11941,7 +11965,7 @@ "zh-chs": "繁体中文", "zh-cht": "繁體中文", "xloc": [ - "default.handlebars->35->1575" + "default.handlebars->37->1607" ] }, { @@ -11966,7 +11990,7 @@ "zh-cht": "ChromeOS", "xloc": [ "default-mobile.handlebars->11->23", - "default.handlebars->35->30" + "default.handlebars->37->30" ] }, { @@ -11990,7 +12014,7 @@ "zh-chs": "楚瓦什", "zh-cht": "楚瓦什", "xloc": [ - "default.handlebars->35->1417" + "default.handlebars->37->1449" ] }, { @@ -12042,11 +12066,11 @@ "default-mobile.handlebars->11->465", "default-mobile.handlebars->11->71", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5", - "default.handlebars->35->1218", - "default.handlebars->35->1220", - "default.handlebars->35->1222", - "default.handlebars->35->1224", - "default.handlebars->35->1978", + "default.handlebars->37->1250", + "default.handlebars->37->1252", + "default.handlebars->37->1254", + "default.handlebars->37->1256", + "default.handlebars->37->2010", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default.handlebars->container->column_l->p41->3->1", "messenger.handlebars->xbottom->1->1->0->5", @@ -12077,7 +12101,7 @@ "zh-chs": "清除 RDP 凭据?", "xloc": [ "default-mobile.handlebars->11->359", - "default.handlebars->35->1062" + "default.handlebars->37->1088" ] }, { @@ -12101,7 +12125,7 @@ "zh-chs": "清除 SSH 凭据?", "xloc": [ "default-mobile.handlebars->11->357", - "default.handlebars->35->1060" + "default.handlebars->37->1086" ] }, { @@ -12125,7 +12149,7 @@ "zh-chs": "清除保安编码", "zh-cht": "清除保安編碼", "xloc": [ - "default.handlebars->35->184" + "default.handlebars->37->206" ] }, { @@ -12148,8 +12172,8 @@ "tr": "Temsilci çekirdeğini temizle", "zh-chs": "清除代理核心", "xloc": [ - "default.handlebars->35->572", - "default.handlebars->35->616" + "default.handlebars->37->598", + "default.handlebars->37->642" ] }, { @@ -12172,7 +12196,7 @@ "tr": "Seçilen cihazlarda temsilci çekirdeği temizlensin mi?", "zh-chs": "清除选定设备上的代理核心?", "xloc": [ - "default.handlebars->35->615" + "default.handlebars->37->641" ] }, { @@ -12197,7 +12221,7 @@ "zh-cht": "全部清除", "xloc": [ "default-mobile.handlebars->11->658", - "default.handlebars->35->2514" + "default.handlebars->37->2546" ] }, { @@ -12222,7 +12246,7 @@ "zh-cht": "清除搜索過濾器", "xloc": [ "default-mobile.handlebars->11->186", - "default.handlebars->35->293" + "default.handlebars->37->315" ] }, { @@ -12247,7 +12271,7 @@ "zh-cht": "清除核心", "xloc": [ "default-mobile.handlebars->11->577", - "default.handlebars->35->1338" + "default.handlebars->37->1370" ] }, { @@ -12271,7 +12295,7 @@ "zh-chs": "从应用程序中清除机密,然后重试。您只有几分钟的时间来输入正确的代码。", "zh-cht": "從應用程序中清除秘密,然後重試。你只有幾分鐘的時間來輸入正確的代碼。", "xloc": [ - "default.handlebars->35->174" + "default.handlebars->37->196" ] }, { @@ -12296,7 +12320,7 @@ "zh-cht": "清除此通知", "xloc": [ "default-mobile.handlebars->11->657", - "default.handlebars->35->2513" + "default.handlebars->37->2545" ] }, { @@ -12368,8 +12392,8 @@ "zh-chs": "单击此处编辑设备组名称", "zh-cht": "單擊此處編輯裝置群名稱", "xloc": [ - "default.handlebars->35->1680", - "default.handlebars->35->1923" + "default.handlebars->37->1712", + "default.handlebars->37->1955" ] }, { @@ -12393,7 +12417,7 @@ "zh-chs": "单击此处编辑服务器端设备名称", "zh-cht": "單擊此處編輯伺服器端裝置名稱", "xloc": [ - "default.handlebars->35->696" + "default.handlebars->37->722" ] }, { @@ -12417,7 +12441,7 @@ "zh-chs": "单击此处编辑用户组名称", "zh-cht": "單擊此處編輯用戶群名稱", "xloc": [ - "default.handlebars->35->2256" + "default.handlebars->37->2288" ] }, { @@ -12535,7 +12559,7 @@ "zh-cht": "單擊確定將驗證電郵發送到:", "xloc": [ "default-mobile.handlebars->11->99", - "default.handlebars->35->1609" + "default.handlebars->37->1641" ] }, { @@ -12609,7 +12633,7 @@ "zh-cht": "客戶端控制模式(CCM)", "xloc": [ "default-mobile.handlebars->11->532", - "default.handlebars->35->1292" + "default.handlebars->37->1324" ] }, { @@ -12633,7 +12657,7 @@ "zh-chs": "客户编号", "zh-cht": "客戶編號", "xloc": [ - "default.handlebars->35->1662" + "default.handlebars->37->1694" ] }, { @@ -12657,7 +12681,7 @@ "zh-chs": "客户端启动的远程访问", "zh-cht": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->35->1773" + "default.handlebars->37->1805" ] }, { @@ -12681,7 +12705,7 @@ "zh-chs": "客户机密", "zh-cht": "客戶機密", "xloc": [ - "default.handlebars->35->1663" + "default.handlebars->37->1695" ] }, { @@ -12731,11 +12755,11 @@ "zh-cht": "關", "xloc": [ "default-mobile.handlebars->11->69", - "default.handlebars->35->1133", - "default.handlebars->35->1194", - "default.handlebars->35->182", - "default.handlebars->35->190", - "default.handlebars->35->2639", + "default.handlebars->37->1165", + "default.handlebars->37->1226", + "default.handlebars->37->204", + "default.handlebars->37->212", + "default.handlebars->37->2671", "sharing.handlebars->11->52" ] }, @@ -12760,7 +12784,7 @@ "zh-chs": "封闭式桌面多路复用会话,{0}秒", "zh-cht": "封閉式桌面多路復用會話,{0}秒", "xloc": [ - "default.handlebars->35->1989" + "default.handlebars->37->2021" ] }, { @@ -12784,7 +12808,7 @@ "zh-chs": "码", "zh-cht": "碼", "xloc": [ - "default.handlebars->35->258" + "default.handlebars->37->280" ] }, { @@ -12884,7 +12908,7 @@ "zh-chs": "命令", "zh-cht": "命令", "xloc": [ - "default.handlebars->35->520" + "default.handlebars->37->546" ] }, { @@ -12907,7 +12931,7 @@ "tr": "Komut satırı", "zh-chs": "命令行", "xloc": [ - "default.handlebars->35->88" + "default.handlebars->37->109" ] }, { @@ -12932,9 +12956,9 @@ "zh-cht": "指令", "xloc": [ "default-mobile.handlebars->11->645", - "default.handlebars->35->1879", - "default.handlebars->35->887", - "default.handlebars->35->909" + "default.handlebars->37->1911", + "default.handlebars->37->913", + "default.handlebars->37->935" ] }, { @@ -12958,8 +12982,8 @@ "zh-chs": "通用设备组", "zh-cht": "通用裝置群", "xloc": [ - "default.handlebars->35->2287", - "default.handlebars->35->2438" + "default.handlebars->37->2319", + "default.handlebars->37->2470" ] }, { @@ -12983,8 +13007,8 @@ "zh-chs": "通用设备", "zh-cht": "通用裝置", "xloc": [ - "default.handlebars->35->2293", - "default.handlebars->35->2450" + "default.handlebars->37->2325", + "default.handlebars->37->2482" ] }, { @@ -13008,7 +13032,7 @@ "zh-chs": "编译时间", "xloc": [ "default-mobile.handlebars->11->505", - "default.handlebars->35->1255" + "default.handlebars->37->1287" ] }, { @@ -13052,7 +13076,7 @@ "zh-chs": "压缩档案...", "zh-cht": "壓縮檔案...", "xloc": [ - "default.handlebars->35->1189", + "default.handlebars->37->1221", "sharing.handlebars->11->47" ] }, @@ -13099,14 +13123,14 @@ "xloc": [ "default-mobile.handlebars->11->354", "default-mobile.handlebars->11->599", - "default.handlebars->35->1013", - "default.handlebars->35->1022", - "default.handlebars->35->1784", - "default.handlebars->35->2165", - "default.handlebars->35->2246", - "default.handlebars->35->2307", - "default.handlebars->35->2436", - "default.handlebars->35->584" + "default.handlebars->37->1039", + "default.handlebars->37->1048", + "default.handlebars->37->1816", + "default.handlebars->37->2197", + "default.handlebars->37->2278", + "default.handlebars->37->2339", + "default.handlebars->37->2468", + "default.handlebars->37->610" ] }, { @@ -13151,7 +13175,7 @@ "zh-cht": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->11->454", - "default.handlebars->35->1213", + "default.handlebars->37->1245", "sharing.handlebars->11->70" ] }, @@ -13176,7 +13200,7 @@ "zh-chs": "确认{0}个条目的复制到此位置?", "zh-cht": "確認{0}個條目的複製到此位置?", "xloc": [ - "default.handlebars->35->1212", + "default.handlebars->37->1244", "sharing.handlebars->11->69" ] }, @@ -13225,7 +13249,7 @@ "zh-chs": "确认删除选定的帐户?", "zh-cht": "確認刪除所選帳戶?", "xloc": [ - "default.handlebars->35->2164" + "default.handlebars->37->2196" ] }, { @@ -13270,7 +13294,7 @@ "zh-chs": "确认删除选定的用户组?", "zh-cht": "確認刪除所選用戶群?", "xloc": [ - "default.handlebars->35->2245" + "default.handlebars->37->2277" ] }, { @@ -13294,7 +13318,7 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->35->2435" + "default.handlebars->37->2467" ] }, { @@ -13318,7 +13342,7 @@ "zh-chs": "确认删除用户“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->35->2310" + "default.handlebars->37->2342" ] }, { @@ -13342,7 +13366,7 @@ "zh-chs": "确认删除用户组“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->35->2467" + "default.handlebars->37->2499" ] }, { @@ -13367,7 +13391,7 @@ "zh-cht": "確認將1個條目移動到此位置?", "xloc": [ "default-mobile.handlebars->11->456", - "default.handlebars->35->1215", + "default.handlebars->37->1247", "sharing.handlebars->11->72" ] }, @@ -13392,7 +13416,7 @@ "zh-chs": "确认将{0}个条目移到此位置?", "zh-cht": "確認將{0}個條目移到該位置?", "xloc": [ - "default.handlebars->35->1214", + "default.handlebars->37->1246", "sharing.handlebars->11->71" ] }, @@ -13441,7 +13465,7 @@ "zh-chs": "确认覆盖?", "zh-cht": "確認覆蓋?", "xloc": [ - "default.handlebars->35->1972" + "default.handlebars->37->2004" ] }, { @@ -13465,8 +13489,8 @@ "zh-chs": "确认删除设备“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->35->2300", - "default.handlebars->35->2458" + "default.handlebars->37->2332", + "default.handlebars->37->2490" ] }, { @@ -13490,8 +13514,8 @@ "zh-chs": "确认删除设备组“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->35->2302", - "default.handlebars->35->2471" + "default.handlebars->37->2334", + "default.handlebars->37->2503" ] }, { @@ -13515,7 +13539,7 @@ "zh-chs": "确认删除用户“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->35->2460" + "default.handlebars->37->2492" ] }, { @@ -13539,7 +13563,7 @@ "zh-chs": "确认删除用户组“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->35->2463" + "default.handlebars->37->2495" ] }, { @@ -13563,8 +13587,8 @@ "zh-chs": "确认删除访问权限?", "zh-cht": "確認刪除訪問權限?", "xloc": [ - "default.handlebars->35->2461", - "default.handlebars->35->2464" + "default.handlebars->37->2493", + "default.handlebars->37->2496" ] }, { @@ -13589,7 +13613,7 @@ "zh-cht": "確認刪除身份驗證軟體兩步登入?", "xloc": [ "default-mobile.handlebars->11->98", - "default.handlebars->35->1360" + "default.handlebars->37->1392" ] }, { @@ -13634,7 +13658,7 @@ "zh-chs": "确认删除设备共享“{0}”?", "zh-cht": "確認刪除設備共享“{0}”?", "xloc": [ - "default.handlebars->35->2456" + "default.handlebars->37->2488" ] }, { @@ -13699,7 +13723,7 @@ "tr": "Push kimlik doğrulama cihazının kaldırılması onaylansın mı?", "zh-chs": "确认移除推送认证设备?", "xloc": [ - "default.handlebars->35->1362" + "default.handlebars->37->1394" ] }, { @@ -13723,7 +13747,7 @@ "zh-chs": "确认删除用户“ {0} ”的权限?", "zh-cht": "確認刪除用戶“ {0} ”的權限?", "xloc": [ - "default.handlebars->35->1890" + "default.handlebars->37->1922" ] }, { @@ -13747,7 +13771,7 @@ "zh-chs": "确认删除用户组“ {0} ”的权限?", "zh-cht": "確認刪除用戶群“ {0} ”的權限?", "xloc": [ - "default.handlebars->35->1892" + "default.handlebars->37->1924" ] }, { @@ -13770,7 +13794,7 @@ "tr": "Seçili aygıtın kaldırılması onaylansın mı?", "zh-chs": "确认移除所选设备?", "xloc": [ - "default.handlebars->35->578" + "default.handlebars->37->604" ] }, { @@ -13793,7 +13817,7 @@ "tr": "Bu giriş belirtecinin kaldırılması onaylansın mı?", "zh-chs": "确认删除此登录令牌?", "xloc": [ - "default.handlebars->35->1655" + "default.handlebars->37->1687" ] }, { @@ -13861,7 +13885,7 @@ "tr": "Seçilen {0} cihazın kaldırılması onaylansın mı?", "zh-chs": "确认移除 {0} 个选定的设备?", "xloc": [ - "default.handlebars->35->579" + "default.handlebars->37->605" ] }, { @@ -13886,7 +13910,7 @@ "zh-cht": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->11->151", - "default.handlebars->35->1973" + "default.handlebars->37->2005" ] }, { @@ -13915,8 +13939,8 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span", - "default.handlebars->35->1171", - "default.handlebars->35->1710", + "default.handlebars->37->1203", + "default.handlebars->37->1742", "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", @@ -13950,7 +13974,7 @@ "zh-chs": "全部连接", "zh-cht": "全部連接", "xloc": [ - "default.handlebars->35->364", + "default.handlebars->37->386", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar" ] }, @@ -13995,7 +14019,7 @@ "zh-chs": "连接到服务器", "zh-cht": "連接到伺服器", "xloc": [ - "default.handlebars->35->1777" + "default.handlebars->37->1809" ] }, { @@ -14114,8 +14138,8 @@ "zh-cht": "已連接", "xloc": [ "default-mobile.handlebars->11->4", - "default.handlebars->35->11", - "default.handlebars->35->335", + "default.handlebars->37->11", + "default.handlebars->37->357", "sharing.handlebars->11->4", "ssh.handlebars->3->4", "xterm.handlebars->9->4" @@ -14142,7 +14166,7 @@ "zh-chs": "已连接的英特尔®AMT", "zh-cht": "已連接的Intel® AMT", "xloc": [ - "default.handlebars->35->2567" + "default.handlebars->37->2599" ] }, { @@ -14166,7 +14190,7 @@ "zh-chs": "已连接的用户", "zh-cht": "已连接的用户", "xloc": [ - "default.handlebars->35->2572" + "default.handlebars->37->2604" ] }, { @@ -14191,7 +14215,7 @@ "zh-cht": "現在已連接", "xloc": [ "default-mobile.handlebars->11->500", - "default.handlebars->35->1250" + "default.handlebars->37->1282" ] }, { @@ -14282,11 +14306,11 @@ "default-mobile.handlebars->11->2", "default-mobile.handlebars->11->472", "default-mobile.handlebars->11->48", - "default.handlebars->35->1236", - "default.handlebars->35->316", - "default.handlebars->35->319", - "default.handlebars->35->367", - "default.handlebars->35->9", + "default.handlebars->37->1268", + "default.handlebars->37->338", + "default.handlebars->37->341", + "default.handlebars->37->389", + "default.handlebars->37->9", "sharing.handlebars->11->2", "sharing.handlebars->11->93", "ssh.handlebars->3->2", @@ -14334,7 +14358,7 @@ "zh-chs": "连接数量", "zh-cht": "連接數量", "xloc": [ - "default.handlebars->35->2598" + "default.handlebars->37->2630" ] }, { @@ -14358,8 +14382,8 @@ "zh-chs": "连接错误", "xloc": [ "default-mobile.handlebars->11->435", - "default.handlebars->35->1158", - "default.handlebars->35->1185", + "default.handlebars->37->1190", + "default.handlebars->37->1217", "login2.handlebars->7->32" ] }, @@ -14384,7 +14408,7 @@ "zh-chs": "连接转发器", "zh-cht": "連接轉發器", "xloc": [ - "default.handlebars->35->2633" + "default.handlebars->37->2665" ] }, { @@ -14457,9 +14481,9 @@ "zh-cht": "連接性", "xloc": [ "default-mobile.handlebars->11->293", - "default.handlebars->35->1930", - "default.handlebars->35->306", - "default.handlebars->35->787", + "default.handlebars->37->1962", + "default.handlebars->37->328", + "default.handlebars->37->813", "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1" ] }, @@ -14485,8 +14509,8 @@ "zh-cht": "控制台", "xloc": [ "default-mobile.handlebars->11->316", - "default.handlebars->35->880", - "default.handlebars->35->902", + "default.handlebars->37->906", + "default.handlebars->37->928", "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" @@ -14513,7 +14537,7 @@ "zh-chs": "控制台 -", "zh-cht": "控制台 -", "xloc": [ - "default.handlebars->35->697" + "default.handlebars->37->723" ] }, { @@ -14537,8 +14561,8 @@ "zh-chs": "控制", "zh-cht": "控制", "xloc": [ - "default.handlebars->35->879", - "default.handlebars->35->901", + "default.handlebars->37->905", + "default.handlebars->37->927", "messenger.handlebars->remoteImage->3->2" ] }, @@ -14587,7 +14611,7 @@ "zh-chs": "Cookie编码器", "zh-cht": "Cookie編碼器", "xloc": [ - "default.handlebars->35->2617" + "default.handlebars->37->2649" ] }, { @@ -14613,6 +14637,7 @@ "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", + "default.handlebars->37->519", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "sharing.handlebars->p13->p13toolbar->fileArea2->3" @@ -14639,9 +14664,9 @@ "zh-chs": "将MAC地址复制到剪贴板", "zh-cht": "將MAC地址複製到剪貼板", "xloc": [ - "default.handlebars->35->126", - "default.handlebars->35->134", - "default.handlebars->35->137" + "default.handlebars->37->147", + "default.handlebars->37->155", + "default.handlebars->37->158" ] }, { @@ -14664,8 +14689,8 @@ "tr": "URL'yi panoya kopyala", "zh-chs": "将 URL 复制到剪贴板", "xloc": [ - "default.handlebars->35->502", - "default.handlebars->35->506" + "default.handlebars->37->528", + "default.handlebars->37->532" ] }, { @@ -14689,7 +14714,7 @@ "zh-chs": "将Windows 32位代理URL复制到剪贴板", "zh-cht": "將Windows 32位代理URL複製到剪貼板", "xloc": [ - "default.handlebars->35->484" + "default.handlebars->37->509" ] }, { @@ -14713,7 +14738,7 @@ "zh-chs": "将Windows 64位代理URL复制到剪贴板", "zh-cht": "將Windows 64位代理URL複製到剪貼板", "xloc": [ - "default.handlebars->35->488" + "default.handlebars->37->513" ] }, { @@ -14737,18 +14762,18 @@ "zh-chs": "将地址复制到剪贴板", "zh-cht": "將地址複製到剪貼板", "xloc": [ - "default.handlebars->35->115", - "default.handlebars->35->117", - "default.handlebars->35->119", - "default.handlebars->35->128", - "default.handlebars->35->130", - "default.handlebars->35->132", - "default.handlebars->35->140", - "default.handlebars->35->142", - "default.handlebars->35->144", - "default.handlebars->35->146", - "default.handlebars->35->148", - "default.handlebars->35->150" + "default.handlebars->37->136", + "default.handlebars->37->138", + "default.handlebars->37->140", + "default.handlebars->37->149", + "default.handlebars->37->151", + "default.handlebars->37->153", + "default.handlebars->37->161", + "default.handlebars->37->163", + "default.handlebars->37->165", + "default.handlebars->37->167", + "default.handlebars->37->169", + "default.handlebars->37->171" ] }, { @@ -14772,8 +14797,8 @@ "zh-chs": "将代理URL复制到剪贴板", "zh-cht": "將代理URL複製到剪貼板", "xloc": [ - "default.handlebars->35->519", - "default.handlebars->35->521" + "default.handlebars->37->545", + "default.handlebars->37->547" ] }, { @@ -14797,12 +14822,12 @@ "zh-chs": "复制连结到剪贴板", "zh-cht": "複製連結到剪貼板", "xloc": [ - "default.handlebars->35->1941", - "default.handlebars->35->1960", - "default.handlebars->35->250", - "default.handlebars->35->272", - "default.handlebars->35->274", - "default.handlebars->35->458" + "default.handlebars->37->1973", + "default.handlebars->37->1992", + "default.handlebars->37->272", + "default.handlebars->37->294", + "default.handlebars->37->296", + "default.handlebars->37->483" ] }, { @@ -14826,7 +14851,7 @@ "zh-chs": "将macOS代理URL复制到剪贴板", "zh-cht": "將macOS代理URL複製到剪貼板", "xloc": [ - "default.handlebars->35->497" + "default.handlebars->37->523" ] }, { @@ -14850,7 +14875,7 @@ "zh-chs": "将名称复制到剪贴板", "zh-cht": "將名稱複製到剪貼板", "xloc": [ - "default.handlebars->35->124" + "default.handlebars->37->145" ] }, { @@ -14876,8 +14901,8 @@ "xloc": [ "agentinvite.handlebars->container->column_l->5->linuxtab", "agentinvite.handlebars->container->column_l->5->linuxtab", - "default.handlebars->35->493", - "default.handlebars->35->515" + "default.handlebars->37->518", + "default.handlebars->37->541" ] }, { @@ -14901,7 +14926,7 @@ "zh-chs": "将有效代码复制到剪贴板", "zh-cht": "將有效代碼複製到剪貼板", "xloc": [ - "default.handlebars->35->185" + "default.handlebars->37->207" ] }, { @@ -14925,7 +14950,7 @@ "zh-chs": "复制:“{0}”到“{1}”", "zh-cht": "複製:“{0}”到“{1}”", "xloc": [ - "default.handlebars->35->2032" + "default.handlebars->37->2064" ] }, { @@ -15099,7 +15124,7 @@ "zh-chs": "核心服务器", "zh-cht": "核心伺服器", "xloc": [ - "default.handlebars->35->2616" + "default.handlebars->37->2648" ] }, { @@ -15123,7 +15148,7 @@ "zh-chs": "科西嘉文", "zh-cht": "科西嘉文", "xloc": [ - "default.handlebars->35->1418" + "default.handlebars->37->1450" ] }, { @@ -15167,7 +15192,7 @@ "zh-chs": "创建帐号", "zh-cht": "創建帳號", "xloc": [ - "default.handlebars->35->2214", + "default.handlebars->37->2246", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1", "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1" @@ -15237,8 +15262,8 @@ "tr": "Giriş Simgesi Oluştur", "zh-chs": "创建登录令牌", "xloc": [ - "default.handlebars->35->1602", - "default.handlebars->35->275" + "default.handlebars->37->1634", + "default.handlebars->37->297" ] }, { @@ -15262,7 +15287,7 @@ "zh-chs": "创建用户组", "zh-cht": "創建用戶群", "xloc": [ - "default.handlebars->35->2253" + "default.handlebars->37->2285" ] }, { @@ -15286,7 +15311,7 @@ "zh-chs": "创建连结以与访客共享此设备", "zh-cht": "創建鏈結以與訪客共享此裝置", "xloc": [ - "default.handlebars->35->809" + "default.handlebars->37->835" ] }, { @@ -15310,7 +15335,7 @@ "zh-chs": "使用以下选项创建一个新的设备组。", "zh-cht": "使用以下選項創建一個新的裝置群。", "xloc": [ - "default.handlebars->35->1632" + "default.handlebars->37->1664" ] }, { @@ -15334,7 +15359,7 @@ "zh-chs": "创建一个新的设备组。", "zh-cht": "創建一個新的裝置群。", "xloc": [ - "default.handlebars->35->309" + "default.handlebars->37->331" ] }, { @@ -15357,7 +15382,7 @@ "tr": "Hesabınıza alternatif giriş olarak kullanılabilecek geçici bir kullanıcı adı ve şifre oluşturun. Bu, araçların veya diğer hizmetlerin hesabınıza erişmesine izin vermek için kullanışlıdır.", "zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。", "xloc": [ - "default.handlebars->35->1583" + "default.handlebars->37->1615" ] }, { @@ -15381,7 +15406,7 @@ "zh-chs": "创建文件夹(如果不存在)?", "zh-cht": "創建文件夾(如果不存在)?", "xloc": [ - "default.handlebars->35->610" + "default.handlebars->37->636" ] }, { @@ -15405,7 +15430,7 @@ "zh-chs": "创建文件夹:“{0}”", "zh-cht": "創建文件夾:“{0}”", "xloc": [ - "default.handlebars->35->2025" + "default.handlebars->37->2057" ] }, { @@ -15452,7 +15477,7 @@ "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:", "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:", "xloc": [ - "default.handlebars->35->2178" + "default.handlebars->37->2210" ] }, { @@ -15502,7 +15527,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "創建的設備組:{0}", "xloc": [ - "default.handlebars->35->2036" + "default.handlebars->37->2068" ] }, { @@ -15526,7 +15551,7 @@ "zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。", "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。", "xloc": [ - "default.handlebars->35->925" + "default.handlebars->37->951" ] }, { @@ -15592,7 +15617,7 @@ "zh-chs": "创建", "zh-cht": "創建", "xloc": [ - "default.handlebars->35->2352" + "default.handlebars->37->2384" ] }, { @@ -15616,7 +15641,7 @@ "zh-chs": "创建时间", "zh-cht": "創作時間", "xloc": [ - "default.handlebars->35->1691" + "default.handlebars->37->1723" ] }, { @@ -15666,8 +15691,8 @@ "zh-chs": "创建者", "zh-cht": "創作者", "xloc": [ - "default.handlebars->35->1689", - "default.handlebars->35->1690" + "default.handlebars->37->1721", + "default.handlebars->37->1722" ] }, { @@ -15692,8 +15717,8 @@ "zh-cht": "證書", "xloc": [ "default-mobile.handlebars->11->303", - "default.handlebars->35->1660", - "default.handlebars->35->797" + "default.handlebars->37->1692", + "default.handlebars->37->823" ] }, { @@ -15717,7 +15742,7 @@ "zh-chs": "克里语", "zh-cht": "克里語", "xloc": [ - "default.handlebars->35->1419" + "default.handlebars->37->1451" ] }, { @@ -15741,7 +15766,7 @@ "zh-chs": "克罗地亚文", "zh-cht": "克羅地亞文", "xloc": [ - "default.handlebars->35->1420" + "default.handlebars->37->1452" ] }, { @@ -15817,9 +15842,9 @@ "xloc": [ "default-mobile.handlebars->11->392", "default-mobile.handlebars->11->396", - "default.handlebars->35->1107", - "default.handlebars->35->1111", - "default.handlebars->35->57", + "default.handlebars->37->1133", + "default.handlebars->37->1137", + "default.handlebars->37->57", "sharing.handlebars->11->24" ] }, @@ -15962,7 +15987,7 @@ "zh-chs": "当前版本", "zh-cht": "當前版本", "xloc": [ - "default.handlebars->35->155" + "default.handlebars->37->176" ] }, { @@ -15986,7 +16011,7 @@ "zh-chs": "当前密码不正确。", "xloc": [ "default-mobile.handlebars->11->685", - "default.handlebars->35->2541" + "default.handlebars->37->2573" ] }, { @@ -16084,7 +16109,7 @@ "zh-chs": "捷克文", "zh-cht": "捷克文", "xloc": [ - "default.handlebars->35->1421" + "default.handlebars->37->1453" ] }, { @@ -16108,7 +16133,7 @@ "zh-chs": "DNS suffix", "zh-cht": "DNS suffix", "xloc": [ - "default.handlebars->35->123" + "default.handlebars->37->144" ] }, { @@ -16132,7 +16157,7 @@ "zh-chs": "丹麦文", "zh-cht": "丹麥文", "xloc": [ - "default.handlebars->35->1422" + "default.handlebars->37->1454" ] }, { @@ -16156,7 +16181,7 @@ "zh-chs": "黑暗模式", "xloc": [ "default-mobile.handlebars->11->85", - "default.handlebars->35->60" + "default.handlebars->37->60" ] }, { @@ -16180,7 +16205,7 @@ "zh-chs": "数据通道", "zh-cht": "數據通道", "xloc": [ - "default.handlebars->35->1075", + "default.handlebars->37->1101", "sharing.handlebars->11->11" ] }, @@ -16205,7 +16230,7 @@ "zh-chs": "日期和时间", "zh-cht": "日期和時間", "xloc": [ - "default.handlebars->35->1580" + "default.handlebars->37->1612" ] }, { @@ -16230,7 +16255,7 @@ "zh-cht": "天", "xloc": [ "default-mobile.handlebars->11->344", - "default.handlebars->35->997" + "default.handlebars->37->1023" ] }, { @@ -16254,7 +16279,7 @@ "zh-chs": "停用", "zh-cht": "停用", "xloc": [ - "default.handlebars->35->1756" + "default.handlebars->37->1788" ] }, { @@ -16278,7 +16303,7 @@ "zh-chs": "如果设置停用CCM", "zh-cht": "如果設置停用CCM", "xloc": [ - "default.handlebars->35->1768" + "default.handlebars->37->1800" ] }, { @@ -16324,7 +16349,7 @@ "zh-cht": "沉睡", "xloc": [ "default-mobile.handlebars->11->224", - "default.handlebars->35->532" + "default.handlebars->37->558" ] }, { @@ -16348,10 +16373,10 @@ "zh-chs": "默认", "zh-cht": "默認", "xloc": [ - "default.handlebars->35->2201", - "default.handlebars->35->2249", - "default.handlebars->35->2260", - "default.handlebars->35->2328" + "default.handlebars->37->2233", + "default.handlebars->37->2281", + "default.handlebars->37->2292", + "default.handlebars->37->2360" ] }, { @@ -16375,7 +16400,7 @@ "zh-chs": "德尔", "xloc": [ "default-mobile.handlebars->11->380", - "default.handlebars->35->1095" + "default.handlebars->37->1121" ] }, { @@ -16404,9 +16429,9 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", "default-mobile.handlebars->dialog->idx_dlgButtonBar->5", - "default.handlebars->35->1204", - "default.handlebars->35->1967", - "default.handlebars->35->667", + "default.handlebars->37->1236", + "default.handlebars->37->1999", + "default.handlebars->37->693", "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", @@ -16441,7 +16466,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->11->108", - "default.handlebars->35->1617" + "default.handlebars->37->1649" ] }, { @@ -16465,7 +16490,7 @@ "zh-chs": "删除帐户", "zh-cht": "刪除帳戶", "xloc": [ - "default.handlebars->35->2166" + "default.handlebars->37->2198" ] }, { @@ -16490,7 +16515,7 @@ "zh-cht": "刪除裝置", "xloc": [ "default-mobile.handlebars->11->305", - "default.handlebars->35->813" + "default.handlebars->37->839" ] }, { @@ -16513,7 +16538,7 @@ "tr": "Cihazları Sil", "zh-chs": "删除设备", "xloc": [ - "default.handlebars->35->585" + "default.handlebars->37->611" ] }, { @@ -16539,9 +16564,9 @@ "xloc": [ "default-mobile.handlebars->11->597", "default-mobile.handlebars->11->600", - "default.handlebars->35->1743", - "default.handlebars->35->1744", - "default.handlebars->35->1785" + "default.handlebars->37->1775", + "default.handlebars->37->1776", + "default.handlebars->37->1817" ] }, { @@ -16566,7 +16591,7 @@ "zh-cht": "刪除節點", "xloc": [ "default-mobile.handlebars->11->352", - "default.handlebars->35->1023" + "default.handlebars->37->1049" ] }, { @@ -16611,7 +16636,7 @@ "zh-chs": "删除用户", "zh-cht": "刪除用戶", "xloc": [ - "default.handlebars->35->2395" + "default.handlebars->37->2427" ] }, { @@ -16635,8 +16660,8 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->35->2298", - "default.handlebars->35->2308" + "default.handlebars->37->2330", + "default.handlebars->37->2340" ] }, { @@ -16660,7 +16685,7 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->35->2247" + "default.handlebars->37->2279" ] }, { @@ -16684,7 +16709,7 @@ "zh-chs": "删除用户{0}", "zh-cht": "刪除用戶{0}", "xloc": [ - "default.handlebars->35->2434" + "default.handlebars->37->2466" ] }, { @@ -16709,7 +16734,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->35->2162", + "default.handlebars->37->2194", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -16734,7 +16759,7 @@ "zh-chs": "删除设备", "zh-cht": "刪除裝置", "xloc": [ - "default.handlebars->35->570" + "default.handlebars->37->596" ] }, { @@ -16758,7 +16783,7 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default.handlebars->35->2243" + "default.handlebars->37->2275" ] }, { @@ -16782,7 +16807,7 @@ "zh-chs": "删除项目?", "zh-cht": "刪除項目?", "xloc": [ - "default.handlebars->35->668" + "default.handlebars->37->694" ] }, { @@ -16806,7 +16831,7 @@ "zh-chs": "递归删除:“{0}”,{1}个元素已删除", "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除", "xloc": [ - "default.handlebars->35->2027" + "default.handlebars->37->2059" ] }, { @@ -16832,8 +16857,8 @@ "xloc": [ "default-mobile.handlebars->11->148", "default-mobile.handlebars->11->448", - "default.handlebars->35->1206", - "default.handlebars->35->1969", + "default.handlebars->37->1238", + "default.handlebars->37->2001", "sharing.handlebars->11->63" ] }, @@ -16858,7 +16883,7 @@ "zh-chs": "删除用户群组{0}?", "zh-cht": "刪除用戶群組{0}?", "xloc": [ - "default.handlebars->35->2306" + "default.handlebars->37->2338" ] }, { @@ -16884,8 +16909,8 @@ "xloc": [ "default-mobile.handlebars->11->147", "default-mobile.handlebars->11->447", - "default.handlebars->35->1205", - "default.handlebars->35->1968", + "default.handlebars->37->1237", + "default.handlebars->37->2000", "sharing.handlebars->11->62" ] }, @@ -16934,7 +16959,7 @@ "zh-chs": "删除:“{0}”", "zh-cht": "刪除:“{0}”", "xloc": [ - "default.handlebars->35->2026" + "default.handlebars->37->2058" ] }, { @@ -16958,7 +16983,7 @@ "zh-chs": "删除:“{0}”,{1}个元素已删除", "zh-cht": "刪除:“{0}”,已刪除{1}個元素", "xloc": [ - "default.handlebars->35->2028" + "default.handlebars->37->2060" ] }, { @@ -16983,7 +17008,7 @@ "zh-cht": "被拒絕", "xloc": [ "default-mobile.handlebars->11->367", - "default.handlebars->35->1070", + "default.handlebars->37->1096", "sharing.handlebars->11->29", "sharing.handlebars->11->7" ] @@ -17120,19 +17145,19 @@ "default-mobile.handlebars->11->513", "default-mobile.handlebars->11->588", "default-mobile.handlebars->11->602", - "default.handlebars->35->1065", - "default.handlebars->35->122", - "default.handlebars->35->1263", - "default.handlebars->35->1273", - "default.handlebars->35->1638", - "default.handlebars->35->1686", - "default.handlebars->35->1787", - "default.handlebars->35->2252", - "default.handlebars->35->2262", - "default.handlebars->35->2263", - "default.handlebars->35->2304", - "default.handlebars->35->708", - "default.handlebars->35->709", + "default.handlebars->37->1091", + "default.handlebars->37->1295", + "default.handlebars->37->1305", + "default.handlebars->37->143", + "default.handlebars->37->1670", + "default.handlebars->37->1718", + "default.handlebars->37->1819", + "default.handlebars->37->2284", + "default.handlebars->37->2294", + "default.handlebars->37->2295", + "default.handlebars->37->2336", + "default.handlebars->37->734", + "default.handlebars->37->735", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] }, @@ -17179,13 +17204,13 @@ "zh-cht": "桌面", "xloc": [ "default-mobile.handlebars->11->312", - "default.handlebars->35->1139", - "default.handlebars->35->1793", - "default.handlebars->35->2491", - "default.handlebars->35->2592", - "default.handlebars->35->673", - "default.handlebars->35->860", - "default.handlebars->35->927", + "default.handlebars->37->1171", + "default.handlebars->37->1825", + "default.handlebars->37->2523", + "default.handlebars->37->2624", + "default.handlebars->37->699", + "default.handlebars->37->886", + "default.handlebars->37->953", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop", "sharing.handlebars->11->23", @@ -17212,8 +17237,8 @@ "tr": "Masaüstü + Dosyalar", "zh-chs": "桌面 + 文件", "xloc": [ - "default.handlebars->35->864", - "default.handlebars->35->930" + "default.handlebars->37->890", + "default.handlebars->37->956" ] }, { @@ -17236,7 +17261,7 @@ "tr": "Masaüstü + Terminal", "zh-chs": "桌面 + 终端", "xloc": [ - "default.handlebars->35->861" + "default.handlebars->37->887" ] }, { @@ -17259,8 +17284,8 @@ "tr": "Masaüstü + Terminal + Dosyalar", "zh-chs": "桌面 + 终端 + 文件", "xloc": [ - "default.handlebars->35->865", - "default.handlebars->35->932" + "default.handlebars->37->891", + "default.handlebars->37->958" ] }, { @@ -17307,7 +17332,7 @@ "tr": "Masaüstü Multiplex", "zh-chs": "桌面复用", "xloc": [ - "default.handlebars->35->2597" + "default.handlebars->37->2629" ] }, { @@ -17331,10 +17356,10 @@ "zh-chs": "桌面通知", "zh-cht": "桌面通知", "xloc": [ - "default.handlebars->35->1701", - "default.handlebars->35->2267", - "default.handlebars->35->2367", - "default.handlebars->35->768" + "default.handlebars->37->1733", + "default.handlebars->37->2299", + "default.handlebars->37->2399", + "default.handlebars->37->794" ] }, { @@ -17358,10 +17383,10 @@ "zh-chs": "桌面提示", "zh-cht": "桌面提示", "xloc": [ - "default.handlebars->35->1700", - "default.handlebars->35->2266", - "default.handlebars->35->2366", - "default.handlebars->35->767" + "default.handlebars->37->1732", + "default.handlebars->37->2298", + "default.handlebars->37->2398", + "default.handlebars->37->793" ] }, { @@ -17385,10 +17410,10 @@ "zh-chs": "桌面提示+工具栏", "zh-cht": "桌面提示+工具欄", "xloc": [ - "default.handlebars->35->1698", - "default.handlebars->35->2264", - "default.handlebars->35->2364", - "default.handlebars->35->765" + "default.handlebars->37->1730", + "default.handlebars->37->2296", + "default.handlebars->37->2396", + "default.handlebars->37->791" ] }, { @@ -17411,7 +17436,7 @@ "tr": "Masaüstü Oturumu", "zh-chs": "桌面会话", "xloc": [ - "default.handlebars->35->2484" + "default.handlebars->37->2516" ] }, { @@ -17505,10 +17530,10 @@ "zh-chs": "桌面工具栏", "zh-cht": "桌面工具欄", "xloc": [ - "default.handlebars->35->1699", - "default.handlebars->35->2265", - "default.handlebars->35->2365", - "default.handlebars->35->766" + "default.handlebars->37->1731", + "default.handlebars->37->2297", + "default.handlebars->37->2397", + "default.handlebars->37->792" ] }, { @@ -17531,7 +17556,7 @@ "tr": "Yalnızca Masaüstü Görünümü", "zh-chs": "仅桌面视图", "xloc": [ - "default.handlebars->35->2340" + "default.handlebars->37->2372" ] }, { @@ -17554,7 +17579,7 @@ "tr": "Masaüstü, Yalnızca görüntüleme", "zh-chs": "桌面,仅查看", "xloc": [ - "default.handlebars->35->933" + "default.handlebars->37->959" ] }, { @@ -17578,7 +17603,7 @@ "zh-chs": "桌面时段", "zh-cht": "桌面時段", "xloc": [ - "default.handlebars->35->1138" + "default.handlebars->37->1170" ] }, { @@ -17652,7 +17677,7 @@ "zh-cht": "細節", "xloc": [ "default-mobile.handlebars->11->315", - "default.handlebars->35->1882", + "default.handlebars->37->1914", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo", "default.handlebars->contextMenu->cxdetails" ] @@ -17703,11 +17728,11 @@ "zh-cht": "裝置", "xloc": [ "default-mobile.handlebars->11->508", - "default.handlebars->35->1258", - "default.handlebars->35->1366", - "default.handlebars->35->1820", - "default.handlebars->35->231", - "default.handlebars->35->2453", + "default.handlebars->37->1290", + "default.handlebars->37->1398", + "default.handlebars->37->1852", + "default.handlebars->37->2485", + "default.handlebars->37->253", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -17734,7 +17759,7 @@ "xloc": [ "default-mobile.handlebars->11->333", "default-mobile.handlebars->11->342", - "default.handlebars->35->980" + "default.handlebars->37->1006" ] }, { @@ -17781,7 +17806,7 @@ "tr": "Cihaz Açıklaması", "zh-chs": "设备描述", "xloc": [ - "default.handlebars->35->278" + "default.handlebars->37->300" ] }, { @@ -17804,7 +17829,7 @@ "tr": "Cihaz Ayrıntıları", "zh-chs": "设备详情", "xloc": [ - "default.handlebars->35->1844" + "default.handlebars->37->1876" ] }, { @@ -17854,15 +17879,15 @@ "xloc": [ "agent-translations.json", "default-mobile.handlebars->11->663", - "default.handlebars->35->1815", - "default.handlebars->35->1818", - "default.handlebars->35->1819", - "default.handlebars->35->2113", - "default.handlebars->35->2290", - "default.handlebars->35->2296", - "default.handlebars->35->2441", - "default.handlebars->35->2500", - "default.handlebars->35->2519" + "default.handlebars->37->1847", + "default.handlebars->37->1850", + "default.handlebars->37->1851", + "default.handlebars->37->2145", + "default.handlebars->37->2322", + "default.handlebars->37->2328", + "default.handlebars->37->2473", + "default.handlebars->37->2532", + "default.handlebars->37->2551" ] }, { @@ -17887,7 +17912,7 @@ "zh-cht": "裝置群用戶", "xloc": [ "default-mobile.handlebars->11->652", - "default.handlebars->35->1888" + "default.handlebars->37->1920" ] }, { @@ -17912,11 +17937,11 @@ "zh-cht": "裝置群", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3", - "default.handlebars->35->2129", - "default.handlebars->35->2237", - "default.handlebars->35->2277", - "default.handlebars->35->2361", - "default.handlebars->35->2570", + "default.handlebars->37->2161", + "default.handlebars->37->2269", + "default.handlebars->37->2309", + "default.handlebars->37->2393", + "default.handlebars->37->2602", "default.handlebars->container->column_l->p2->p2info->9" ] }, @@ -17941,7 +17966,7 @@ "zh-chs": "设备信息导出", "zh-cht": "裝置訊息輸出", "xloc": [ - "default.handlebars->35->627" + "default.handlebars->37->653" ] }, { @@ -17965,7 +17990,7 @@ "zh-chs": "设备位置", "zh-cht": "裝置位置", "xloc": [ - "default.handlebars->35->1024" + "default.handlebars->37->1050" ] }, { @@ -17989,7 +18014,7 @@ "zh-chs": "设备消息", "zh-cht": "裝置訊息", "xloc": [ - "default.handlebars->35->917" + "default.handlebars->37->943" ] }, { @@ -18014,10 +18039,10 @@ "zh-cht": "裝置名稱", "xloc": [ "default-mobile.handlebars->11->360", - "default.handlebars->35->1063", - "default.handlebars->35->2499", - "default.handlebars->35->383", - "default.handlebars->35->392", + "default.handlebars->37->1089", + "default.handlebars->37->2531", + "default.handlebars->37->405", + "default.handlebars->37->414", "player.handlebars->3->24" ] }, @@ -18042,8 +18067,8 @@ "zh-chs": "设备通知", "zh-cht": "裝置通知", "xloc": [ - "default.handlebars->35->606", - "default.handlebars->35->922" + "default.handlebars->37->632", + "default.handlebars->37->948" ] }, { @@ -18089,7 +18114,7 @@ "tr": "Cihaz İtme", "zh-chs": "设备推送", "xloc": [ - "default.handlebars->35->2380" + "default.handlebars->37->2412" ] }, { @@ -18154,7 +18179,7 @@ "zh-chs": "设备共享链接", "zh-cht": "設備共享鏈接", "xloc": [ - "default.handlebars->35->857" + "default.handlebars->37->883" ] }, { @@ -18224,9 +18249,9 @@ "default-mobile.handlebars->11->259", "default-mobile.handlebars->11->261", "default-mobile.handlebars->11->263", - "default.handlebars->35->710", - "default.handlebars->35->712", - "default.handlebars->35->714" + "default.handlebars->37->736", + "default.handlebars->37->738", + "default.handlebars->37->740" ] }, { @@ -18249,7 +18274,7 @@ "tr": "Cihaz Görünümü Sütunları", "zh-chs": "设备视图列", "xloc": [ - "default.handlebars->35->285" + "default.handlebars->37->307" ] }, { @@ -18273,8 +18298,8 @@ "zh-chs": "设备连接。", "zh-cht": "裝置連接。", "xloc": [ - "default.handlebars->35->1605", - "default.handlebars->35->1909" + "default.handlebars->37->1637", + "default.handlebars->37->1941" ] }, { @@ -18298,8 +18323,8 @@ "zh-chs": "设备断开连接。", "zh-cht": "裝置斷開連接。", "xloc": [ - "default.handlebars->35->1606", - "default.handlebars->35->1910" + "default.handlebars->37->1638", + "default.handlebars->37->1942" ] }, { @@ -18323,7 +18348,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "設備組已創建:{0}", "xloc": [ - "default.handlebars->35->2057" + "default.handlebars->37->2089" ] }, { @@ -18347,7 +18372,7 @@ "zh-chs": "设备组已删除:{0}", "zh-cht": "設備組已刪除:{0}", "xloc": [ - "default.handlebars->35->2058" + "default.handlebars->37->2090" ] }, { @@ -18371,7 +18396,7 @@ "zh-chs": "设备组成员身份已更改:{0}", "zh-cht": "設備組成員身份已更改:{0}", "xloc": [ - "default.handlebars->35->2059" + "default.handlebars->37->2091" ] }, { @@ -18396,7 +18421,7 @@ "zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。", "xloc": [ "default-mobile.handlebars->11->340", - "default.handlebars->35->914" + "default.handlebars->37->940" ] }, { @@ -18420,7 +18445,7 @@ "zh-chs": "设备组通知已更改", "zh-cht": "設備組通知已更改", "xloc": [ - "default.handlebars->35->2054" + "default.handlebars->37->2086" ] }, { @@ -18444,7 +18469,7 @@ "zh-chs": "未删除的设备组:{0}", "zh-cht": "未刪除的設備組:{0}", "xloc": [ - "default.handlebars->35->2037" + "default.handlebars->37->2069" ] }, { @@ -18470,8 +18495,8 @@ "xloc": [ "default-mobile.handlebars->11->192", "default-mobile.handlebars->11->248", - "default.handlebars->35->324", - "default.handlebars->35->694" + "default.handlebars->37->346", + "default.handlebars->37->720" ] }, { @@ -18495,7 +18520,7 @@ "zh-chs": "检测到设备,但无法获得电源状态。", "zh-cht": "檢測到裝置,但無法獲得電源狀態。", "xloc": [ - "default.handlebars->35->537" + "default.handlebars->37->563" ] }, { @@ -18520,7 +18545,7 @@ "zh-cht": "裝置正在休眠(S4)", "xloc": [ "default-mobile.handlebars->11->232", - "default.handlebars->35->543" + "default.handlebars->37->569" ] }, { @@ -18545,7 +18570,7 @@ "zh-cht": "裝置處於深度睡眠狀態(S3)", "xloc": [ "default-mobile.handlebars->11->231", - "default.handlebars->35->542" + "default.handlebars->37->568" ] }, { @@ -18569,7 +18594,7 @@ "zh-chs": "设备处于深度睡眠状态(S3)。", "zh-cht": "裝置處於深度睡眠狀態(S3)。", "xloc": [ - "default.handlebars->35->531" + "default.handlebars->37->557" ] }, { @@ -18593,7 +18618,7 @@ "zh-chs": "设备处于休眠状态(S4)。", "zh-cht": "裝置處於休眠狀態(S4)。", "xloc": [ - "default.handlebars->35->533" + "default.handlebars->37->559" ] }, { @@ -18617,7 +18642,7 @@ "zh-chs": "设备处于关机状态(S5)。", "zh-cht": "裝置處於關機狀態(S5)。", "xloc": [ - "default.handlebars->35->535" + "default.handlebars->37->561" ] }, { @@ -18642,7 +18667,7 @@ "zh-cht": "裝置處於睡眠狀態(S1)", "xloc": [ "default-mobile.handlebars->11->229", - "default.handlebars->35->540" + "default.handlebars->37->566" ] }, { @@ -18666,7 +18691,7 @@ "zh-chs": "设备处于睡眠状态(S1)。", "zh-cht": "裝置處於睡眠狀態(S1)。", "xloc": [ - "default.handlebars->35->527" + "default.handlebars->37->553" ] }, { @@ -18691,7 +18716,7 @@ "zh-cht": "裝置處於睡眠狀態(S2)", "xloc": [ "default-mobile.handlebars->11->230", - "default.handlebars->35->541" + "default.handlebars->37->567" ] }, { @@ -18715,7 +18740,7 @@ "zh-chs": "设备处于睡眠状态(S2)。", "zh-cht": "裝置處於睡眠狀態(S2)。", "xloc": [ - "default.handlebars->35->529" + "default.handlebars->37->555" ] }, { @@ -18740,7 +18765,7 @@ "zh-cht": "裝置處於軟關機狀態(S5)", "xloc": [ "default-mobile.handlebars->11->233", - "default.handlebars->35->544" + "default.handlebars->37->570" ] }, { @@ -18766,8 +18791,8 @@ "xloc": [ "default-mobile.handlebars->11->191", "default-mobile.handlebars->11->247", - "default.handlebars->35->323", - "default.handlebars->35->693" + "default.handlebars->37->345", + "default.handlebars->37->719" ] }, { @@ -18792,7 +18817,7 @@ "zh-cht": "裝置已連接電源", "xloc": [ "default-mobile.handlebars->11->228", - "default.handlebars->35->539" + "default.handlebars->37->565" ] }, { @@ -18816,7 +18841,7 @@ "zh-chs": "设备已连接电源。", "zh-cht": "裝置已連接電源。", "xloc": [ - "default.handlebars->35->525" + "default.handlebars->37->551" ] }, { @@ -18841,7 +18866,7 @@ "zh-cht": "裝置存在,但無法確定電源狀態", "xloc": [ "default-mobile.handlebars->11->234", - "default.handlebars->35->545" + "default.handlebars->37->571" ] }, { @@ -18865,7 +18890,7 @@ "zh-chs": "设备名称", "zh-cht": "裝置名稱", "xloc": [ - "default.handlebars->35->685" + "default.handlebars->37->711" ] }, { @@ -18889,7 +18914,7 @@ "zh-chs": "设备通知", "zh-cht": "設備通知", "xloc": [ - "default.handlebars->35->567" + "default.handlebars->37->593" ] }, { @@ -18912,7 +18937,7 @@ "tr": "Cihaz, Intel(R) AMT ACM TLS etkinleştirmesini istedi, FQDN: {0}", "zh-chs": "设备请求 Intel(R) AMT ACM TLS 激活,FQDN:{0}", "xloc": [ - "default.handlebars->35->2092" + "default.handlebars->37->2124" ] }, { @@ -18936,7 +18961,7 @@ "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}", "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}", "xloc": [ - "default.handlebars->35->2039" + "default.handlebars->37->2071" ] }, { @@ -18981,9 +19006,9 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->35->1741", - "default.handlebars->35->2238", - "default.handlebars->35->2278" + "default.handlebars->37->1773", + "default.handlebars->37->2270", + "default.handlebars->37->2310" ] }, { @@ -19028,8 +19053,8 @@ "zh-cht": "已禁用", "xloc": [ "default-mobile.handlebars->11->493", - "default.handlebars->35->759", - "default.handlebars->35->95" + "default.handlebars->37->116", + "default.handlebars->37->785" ] }, { @@ -19053,7 +19078,7 @@ "zh-chs": "禁用的电子邮件两因素身份验证", "zh-cht": "禁用的電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->35->2070" + "default.handlebars->37->2102" ] }, { @@ -19081,10 +19106,11 @@ "default-mobile.handlebars->11->422", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span", - "default.handlebars->35->1172", - "default.handlebars->35->1711", + "default.handlebars->37->1204", + "default.handlebars->37->1743", "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->deskDisconnectContextMenu->3", "sharing.handlebars->11->43", "sharing.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span", "sharing.handlebars->p12->5->3->disconnectbutton2span", @@ -19116,6 +19142,13 @@ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar" ] }, + { + "en": "Disconnect and Lock", + "pl": "Odłącz i zablokuj", + "xloc": [ + "default.handlebars->deskDisconnectContextMenu->1" + ] + }, { "cs": "Odpojit od serveru a zavřít?", "de": "Serververbindung trennen und beenden?", @@ -19161,11 +19194,11 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->termstatus", - "default.handlebars->35->315", - "default.handlebars->35->318", - "default.handlebars->35->336", - "default.handlebars->35->366", - "default.handlebars->35->8", + "default.handlebars->37->337", + "default.handlebars->37->340", + "default.handlebars->37->358", + "default.handlebars->37->388", + "default.handlebars->37->8", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3->p13Status", @@ -19198,7 +19231,7 @@ "zh-chs": "解雇", "zh-cht": "解僱", "xloc": [ - "default.handlebars->35->340" + "default.handlebars->37->362" ] }, { @@ -19222,7 +19255,7 @@ "zh-chs": "在远程设备上显示一个消息框。", "zh-cht": "在遠程裝置上顯示一個訊息框。", "xloc": [ - "default.handlebars->35->918" + "default.handlebars->37->944" ] }, { @@ -19270,7 +19303,7 @@ "zh-chs": "在远程设备上显示短信", "zh-cht": "在遠程裝置上顯示短信", "xloc": [ - "default.handlebars->35->805" + "default.handlebars->37->831" ] }, { @@ -19314,7 +19347,7 @@ "zh-chs": "显示设备组名称", "zh-cht": "顯示裝置群名稱", "xloc": [ - "default.handlebars->35->1604" + "default.handlebars->37->1636" ] }, { @@ -19338,7 +19371,7 @@ "zh-chs": "显示名称", "zh-cht": "顯示名稱", "xloc": [ - "default.handlebars->35->1124" + "default.handlebars->37->1154" ] }, { @@ -19362,7 +19395,7 @@ "zh-chs": "显示公共连结", "zh-cht": "顯示公共鏈結", "xloc": [ - "default.handlebars->35->1940" + "default.handlebars->37->1972" ] }, { @@ -19385,7 +19418,7 @@ "tr": "{0} göster", "zh-chs": "显示{0}", "xloc": [ - "default.handlebars->35->1141" + "default.handlebars->37->1173" ] }, { @@ -19409,7 +19442,7 @@ "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->35->1999" + "default.handlebars->37->2031" ] }, { @@ -19433,7 +19466,7 @@ "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->35->2007" + "default.handlebars->37->2039" ] }, { @@ -19457,8 +19490,8 @@ "zh-chs": "什么都不做", "zh-cht": "什麼都不做", "xloc": [ - "default.handlebars->35->1771", - "default.handlebars->35->1775" + "default.handlebars->37->1803", + "default.handlebars->37->1807" ] }, { @@ -19482,11 +19515,11 @@ "zh-chs": "域", "zh-cht": "域", "xloc": [ - "default.handlebars->35->2202", - "default.handlebars->35->2250", - "default.handlebars->35->2259", - "default.handlebars->35->2327", - "default.handlebars->35->91", + "default.handlebars->37->112", + "default.handlebars->37->2234", + "default.handlebars->37->2282", + "default.handlebars->37->2291", + "default.handlebars->37->2359", "mstsc.handlebars->main->1->3->1->rowdomain->1->0", "mstsc.handlebars->main->1->3->1->rowdomain->3" ] @@ -19532,7 +19565,7 @@ "zh-chs": "请勿更改,如果设置请保留CCM", "zh-cht": "請勿更改,如果設置請保留CCM", "xloc": [ - "default.handlebars->35->1767" + "default.handlebars->37->1799" ] }, { @@ -19577,7 +19610,7 @@ "zh-chs": "不要连接到服务器", "zh-cht": "不要連接到伺服器", "xloc": [ - "default.handlebars->35->1776" + "default.handlebars->37->1808" ] }, { @@ -19689,7 +19722,7 @@ "zh-chs": "下", "xloc": [ "default-mobile.handlebars->11->388", - "default.handlebars->35->1103" + "default.handlebars->37->1129" ] }, { @@ -19788,7 +19821,7 @@ "zh-cht": "下載檔案", "xloc": [ "default-mobile.handlebars->11->467", - "default.handlebars->35->1225", + "default.handlebars->37->1257", "sharing.handlebars->11->82" ] }, @@ -19813,7 +19846,7 @@ "zh-chs": "下载MeshCentral Router,一个TCP端口映射工具。", "zh-cht": "下載MeshCentral Router,一個TCP端口映射工具。", "xloc": [ - "default.handlebars->35->313" + "default.handlebars->37->335" ] }, { @@ -19837,7 +19870,7 @@ "zh-chs": "下载MeshCmd", "zh-cht": "下載MeshCmd", "xloc": [ - "default.handlebars->35->1049" + "default.handlebars->37->1075" ] }, { @@ -19861,7 +19894,7 @@ "zh-chs": "下载MeshCmd,这是一个多功能的指令执行工具。", "zh-cht": "下載MeshCmd,這是一個多功能的指令執行工具。", "xloc": [ - "default.handlebars->35->311" + "default.handlebars->37->333" ] }, { @@ -19909,7 +19942,7 @@ "zh-chs": "下载报告", "zh-cht": "下載報告", "xloc": [ - "default.handlebars->35->2118", + "default.handlebars->37->2150", "default.handlebars->container->column_l->p3->3->1->0->3" ] }, @@ -19934,7 +19967,7 @@ "zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。", "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。", "xloc": [ - "default.handlebars->35->1042" + "default.handlebars->37->1068" ] }, { @@ -20005,7 +20038,7 @@ "tr": "Cihaz listesini indir", "zh-chs": "下载设备列表", "xloc": [ - "default.handlebars->35->1739" + "default.handlebars->37->1771" ] }, { @@ -20029,7 +20062,7 @@ "zh-chs": "下载错误日志", "zh-cht": "下載錯誤日誌", "xloc": [ - "default.handlebars->35->165" + "default.handlebars->37->186" ] }, { @@ -20053,7 +20086,7 @@ "zh-chs": "下载电源事件", "zh-cht": "下載電源事件", "xloc": [ - "default.handlebars->35->998" + "default.handlebars->37->1024" ] }, { @@ -20172,7 +20205,7 @@ "zh-chs": "使用以下一种档案格式下载设备列表。", "zh-cht": "使用以下一種檔案格式下載裝置列表。", "xloc": [ - "default.handlebars->35->619" + "default.handlebars->37->645" ] }, { @@ -20196,7 +20229,7 @@ "zh-chs": "使用以下一种档案格式下载事件列表。", "zh-cht": "使用以下一種檔案格式下載事件列表。", "xloc": [ - "default.handlebars->35->2119" + "default.handlebars->37->2151" ] }, { @@ -20220,7 +20253,7 @@ "zh-chs": "使用以下一种档案格式下载用户列表。", "zh-cht": "使用以下一種檔案格式下載用戶列表。", "xloc": [ - "default.handlebars->35->2186" + "default.handlebars->37->2218" ] }, { @@ -20317,7 +20350,7 @@ "zh-chs": "下载:“{0}”", "zh-cht": "下載:“{0}”", "xloc": [ - "default.handlebars->35->2030" + "default.handlebars->37->2062" ] }, { @@ -20340,7 +20373,7 @@ "tr": "İndirme: \\\"{0}\\\", Boyut: {1}", "zh-chs": "下载:\\\"{0}\\\",大小:{1}", "xloc": [ - "default.handlebars->35->2087" + "default.handlebars->37->2119" ] }, { @@ -20388,7 +20421,7 @@ "zh-chs": "代理重复", "zh-cht": "代理重複", "xloc": [ - "default.handlebars->35->2566" + "default.handlebars->37->2598" ] }, { @@ -20436,7 +20469,7 @@ "zh-chs": "复制用户组", "zh-cht": "複製用戶群", "xloc": [ - "default.handlebars->35->2254" + "default.handlebars->37->2286" ] }, { @@ -20481,8 +20514,8 @@ "zh-chs": "持续时间", "zh-cht": "持續時間", "xloc": [ - "default.handlebars->35->2479", - "default.handlebars->35->2505", + "default.handlebars->37->2511", + "default.handlebars->37->2537", "player.handlebars->3->17" ] }, @@ -20528,7 +20561,7 @@ "zh-chs": "荷兰文(比利时)", "zh-cht": "荷蘭文(比利時)", "xloc": [ - "default.handlebars->35->1424" + "default.handlebars->37->1456" ] }, { @@ -20552,7 +20585,7 @@ "zh-chs": "荷兰文(标准)", "zh-cht": "荷蘭文(標準)", "xloc": [ - "default.handlebars->35->1423" + "default.handlebars->37->1455" ] }, { @@ -20692,7 +20725,7 @@ "zh-chs": "错误:", "zh-cht": "錯誤:", "xloc": [ - "default.handlebars->35->201" + "default.handlebars->37->223" ] }, { @@ -20841,7 +20874,7 @@ "zh-chs": "错误:无法添加密钥。", "zh-cht": "錯誤:無法新增密鑰。", "xloc": [ - "default.handlebars->35->197" + "default.handlebars->37->219" ] }, { @@ -20920,9 +20953,9 @@ "default-mobile.handlebars->11->356", "default-mobile.handlebars->11->358", "default-mobile.handlebars->11->365", - "default.handlebars->35->1059", - "default.handlebars->35->1061", - "default.handlebars->35->1068" + "default.handlebars->37->1085", + "default.handlebars->37->1087", + "default.handlebars->37->1094" ] }, { @@ -20949,10 +20982,10 @@ "default-mobile.handlebars->11->603", "default-mobile.handlebars->11->609", "default-mobile.handlebars->11->629", - "default.handlebars->35->1788", - "default.handlebars->35->1824", - "default.handlebars->35->1850", - "default.handlebars->35->1862" + "default.handlebars->37->1820", + "default.handlebars->37->1856", + "default.handlebars->37->1882", + "default.handlebars->37->1894" ] }, { @@ -20976,7 +21009,7 @@ "zh-chs": "编辑设备组功能", "zh-cht": "編輯裝置群功能", "xloc": [ - "default.handlebars->35->1810" + "default.handlebars->37->1842" ] }, { @@ -21000,8 +21033,8 @@ "zh-chs": "编辑设备组权限", "zh-cht": "編輯裝置群權限", "xloc": [ - "default.handlebars->35->1847", - "default.handlebars->35->1859" + "default.handlebars->37->1879", + "default.handlebars->37->1891" ] }, { @@ -21025,7 +21058,7 @@ "zh-chs": "编辑设备组用户同意", "zh-cht": "編輯裝置群用戶同意", "xloc": [ - "default.handlebars->35->1789" + "default.handlebars->37->1821" ] }, { @@ -21050,7 +21083,7 @@ "zh-cht": "編輯裝置筆記", "xloc": [ "default-mobile.handlebars->11->621", - "default.handlebars->35->1838" + "default.handlebars->37->1870" ] }, { @@ -21074,8 +21107,8 @@ "zh-chs": "编辑设备权限", "zh-cht": "編輯裝置權限", "xloc": [ - "default.handlebars->35->1852", - "default.handlebars->35->1854" + "default.handlebars->37->1884", + "default.handlebars->37->1886" ] }, { @@ -21099,7 +21132,7 @@ "zh-chs": "编辑设备标签", "zh-cht": "編輯裝置標籤", "xloc": [ - "default.handlebars->35->601" + "default.handlebars->37->627" ] }, { @@ -21123,7 +21156,7 @@ "zh-chs": "编辑设备用户同意", "zh-cht": "編輯裝置用戶同意", "xloc": [ - "default.handlebars->35->1791" + "default.handlebars->37->1823" ] }, { @@ -21147,7 +21180,7 @@ "zh-chs": "编辑群组", "zh-cht": "編輯群組", "xloc": [ - "default.handlebars->35->891" + "default.handlebars->37->917" ] }, { @@ -21175,10 +21208,10 @@ "default-mobile.handlebars->11->282", "default-mobile.handlebars->11->283", "default-mobile.handlebars->11->351", - "default.handlebars->35->1005", - "default.handlebars->35->730", - "default.handlebars->35->735", - "default.handlebars->35->736" + "default.handlebars->37->1031", + "default.handlebars->37->756", + "default.handlebars->37->761", + "default.handlebars->37->762" ] }, { @@ -21203,7 +21236,7 @@ "zh-cht": "編輯筆記", "xloc": [ "default-mobile.handlebars->11->636", - "default.handlebars->35->1869" + "default.handlebars->37->1901" ] }, { @@ -21227,7 +21260,7 @@ "zh-chs": "编辑用户同意", "zh-cht": "編輯用戶同意", "xloc": [ - "default.handlebars->35->1790" + "default.handlebars->37->1822" ] }, { @@ -21251,7 +21284,7 @@ "zh-chs": "编辑用户设备组权限", "zh-cht": "編輯用戶裝置群權限", "xloc": [ - "default.handlebars->35->1860" + "default.handlebars->37->1892" ] }, { @@ -21275,7 +21308,7 @@ "zh-chs": "编辑用户设备权限", "zh-cht": "編輯用戶裝置權限", "xloc": [ - "default.handlebars->35->1855" + "default.handlebars->37->1887" ] }, { @@ -21298,7 +21331,7 @@ "tr": "Kullanıcı Özelliklerini Düzenle", "zh-chs": "编辑用户特征", "xloc": [ - "default.handlebars->35->2417" + "default.handlebars->37->2449" ] }, { @@ -21322,7 +21355,7 @@ "zh-chs": "编辑用户组", "zh-cht": "編輯用戶群", "xloc": [ - "default.handlebars->35->2305" + "default.handlebars->37->2337" ] }, { @@ -21346,7 +21379,7 @@ "zh-chs": "编辑用户组设备权限", "zh-cht": "編輯用戶群裝置權限", "xloc": [ - "default.handlebars->35->1857" + "default.handlebars->37->1889" ] }, { @@ -21370,7 +21403,7 @@ "zh-chs": "编辑用户组用户同意", "zh-cht": "編輯用戶組用戶同意", "xloc": [ - "default.handlebars->35->1792" + "default.handlebars->37->1824" ] }, { @@ -21419,7 +21452,7 @@ "zh-chs": "编辑标签", "zh-cht": "編輯標籤", "xloc": [ - "default.handlebars->35->568" + "default.handlebars->37->594" ] }, { @@ -21468,13 +21501,13 @@ "zh-cht": "電郵", "xloc": [ "default-mobile.handlebars->11->102", - "default.handlebars->35->2204", - "default.handlebars->35->2331", - "default.handlebars->35->2333", - "default.handlebars->35->2378", - "default.handlebars->35->2388", - "default.handlebars->35->2420", - "default.handlebars->35->425", + "default.handlebars->37->2236", + "default.handlebars->37->2363", + "default.handlebars->37->2365", + "default.handlebars->37->2410", + "default.handlebars->37->2420", + "default.handlebars->37->2452", + "default.handlebars->37->450", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", "login.handlebars->5->44", @@ -21510,7 +21543,7 @@ "zh-cht": "電郵地址變更", "xloc": [ "default-mobile.handlebars->11->103", - "default.handlebars->35->1613" + "default.handlebars->37->1645" ] }, { @@ -21535,7 +21568,7 @@ "zh-cht": "電郵認證", "xloc": [ "default-mobile.handlebars->11->92", - "default.handlebars->35->1354" + "default.handlebars->37->1386" ] }, { @@ -21607,7 +21640,7 @@ "zh-cht": "電郵驗證", "xloc": [ "default-mobile.handlebars->11->101", - "default.handlebars->35->1611" + "default.handlebars->37->1643" ] }, { @@ -21631,7 +21664,7 @@ "zh-chs": "电邮邀请", "zh-cht": "電郵邀請", "xloc": [ - "default.handlebars->35->422" + "default.handlebars->37->447" ] }, { @@ -21655,7 +21688,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->35->2148" + "default.handlebars->37->2180" ] }, { @@ -21679,8 +21712,8 @@ "zh-chs": "电子邮件已验证", "zh-cht": "電子郵件已驗證", "xloc": [ - "default.handlebars->35->2149", - "default.handlebars->35->2325" + "default.handlebars->37->2181", + "default.handlebars->37->2357" ] }, { @@ -21704,7 +21737,7 @@ "zh-chs": "电邮已验证。", "zh-cht": "電郵已驗證。", "xloc": [ - "default.handlebars->35->2210" + "default.handlebars->37->2242" ] }, { @@ -21728,7 +21761,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->35->2326" + "default.handlebars->37->2358" ] }, { @@ -21773,7 +21806,7 @@ "zh-cht": "電郵已發送。", "xloc": [ "default-mobile.handlebars->11->678", - "default.handlebars->35->2534", + "default.handlebars->37->2566", "login-mobile.handlebars->5->2", "login.handlebars->5->2", "login2.handlebars->7->3" @@ -21846,7 +21879,7 @@ "zh-chs": "已通过电邮验证,并且需要重置密码。", "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "xloc": [ - "default.handlebars->35->2211" + "default.handlebars->37->2243" ] }, { @@ -21890,7 +21923,7 @@ "tr": "E-posta/SMS/Push Trafiği", "zh-chs": "电子邮件/短信/推送流量", "xloc": [ - "default.handlebars->35->2625" + "default.handlebars->37->2657" ] }, { @@ -21944,7 +21977,7 @@ "zh-chs": "启用邀请代码", "zh-cht": "啟用邀請代碼", "xloc": [ - "default.handlebars->35->1894" + "default.handlebars->37->1926" ] }, { @@ -21993,7 +22026,7 @@ "zh-cht": "啟用電郵二因子鑑別。", "xloc": [ "default-mobile.handlebars->11->94", - "default.handlebars->35->1356" + "default.handlebars->37->1388" ] }, { @@ -22041,8 +22074,8 @@ "zh-chs": "已启用", "zh-cht": "已啟用", "xloc": [ - "default.handlebars->35->2507", - "default.handlebars->35->94" + "default.handlebars->37->115", + "default.handlebars->37->2539" ] }, { @@ -22066,7 +22099,7 @@ "zh-chs": "启用电子邮件两因素身份验证", "zh-cht": "啟用電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->35->2069" + "default.handlebars->37->2101" ] }, { @@ -22114,7 +22147,7 @@ "zh-chs": "结尾", "xloc": [ "default-mobile.handlebars->11->382", - "default.handlebars->35->1097" + "default.handlebars->37->1123" ] }, { @@ -22138,7 +22171,7 @@ "zh-chs": "时间结束", "zh-cht": "時間結束", "xloc": [ - "default.handlebars->35->2504" + "default.handlebars->37->2536" ] }, { @@ -22162,7 +22195,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”", "xloc": [ - "default.handlebars->35->1992" + "default.handlebars->37->2024" ] }, { @@ -22186,7 +22219,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”", "xloc": [ - "default.handlebars->35->1993" + "default.handlebars->37->2025" ] }, { @@ -22209,7 +22242,7 @@ "tr": "Yerel geçiş oturumu \\\"{0}\\\", {1} - {2} protokolü, {3} saniye sona erdi", "zh-chs": "结束本地中继会话\\\"{0}\\\",协议 {1} 到 {2},{3} 秒", "xloc": [ - "default.handlebars->35->2102" + "default.handlebars->37->2134" ] }, { @@ -22232,7 +22265,7 @@ "tr": "{1} ile {2} arasında \\\"{0}\\\" mesajlaşma oturumu sona erdi, {3} saniye", "zh-chs": "从 {1} 到 {2},{3} 秒结束了 Messenger 会话 \\\"{0}\\\"", "xloc": [ - "default.handlebars->35->2093" + "default.handlebars->37->2125" ] }, { @@ -22256,7 +22289,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”", "xloc": [ - "default.handlebars->35->1990" + "default.handlebars->37->2022" ] }, { @@ -22280,7 +22313,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”", "xloc": [ - "default.handlebars->35->1991" + "default.handlebars->37->2023" ] }, { @@ -22304,7 +22337,7 @@ "zh-chs": "英文", "zh-cht": "英文", "xloc": [ - "default.handlebars->35->1425" + "default.handlebars->37->1457" ] }, { @@ -22328,7 +22361,7 @@ "zh-chs": "英文(澳洲)", "zh-cht": "英文(澳洲)", "xloc": [ - "default.handlebars->35->1426" + "default.handlebars->37->1458" ] }, { @@ -22352,7 +22385,7 @@ "zh-chs": "英文(伯利茲)", "zh-cht": "英文(伯利茲)", "xloc": [ - "default.handlebars->35->1427" + "default.handlebars->37->1459" ] }, { @@ -22376,7 +22409,7 @@ "zh-chs": "英文(加拿大)", "zh-cht": "英文(加拿大)", "xloc": [ - "default.handlebars->35->1428" + "default.handlebars->37->1460" ] }, { @@ -22400,7 +22433,7 @@ "zh-chs": "英文(爱尔兰)", "zh-cht": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->35->1429" + "default.handlebars->37->1461" ] }, { @@ -22424,7 +22457,7 @@ "zh-chs": "英文(牙买加)", "zh-cht": "英文(牙買加)", "xloc": [ - "default.handlebars->35->1430" + "default.handlebars->37->1462" ] }, { @@ -22448,7 +22481,7 @@ "zh-chs": "英文(纽西兰)", "zh-cht": "英文(紐西蘭)", "xloc": [ - "default.handlebars->35->1431" + "default.handlebars->37->1463" ] }, { @@ -22472,7 +22505,7 @@ "zh-chs": "英文(菲律宾)", "zh-cht": "英文(菲律賓)", "xloc": [ - "default.handlebars->35->1432" + "default.handlebars->37->1464" ] }, { @@ -22496,7 +22529,7 @@ "zh-chs": "英语(南非)", "zh-cht": "英語(南非)", "xloc": [ - "default.handlebars->35->1433" + "default.handlebars->37->1465" ] }, { @@ -22520,7 +22553,7 @@ "zh-chs": "英文(特立尼达和多巴哥)", "zh-cht": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->35->1434" + "default.handlebars->37->1466" ] }, { @@ -22544,7 +22577,7 @@ "zh-chs": "英文(英国)", "zh-cht": "英文(英國)", "xloc": [ - "default.handlebars->35->1435" + "default.handlebars->37->1467" ] }, { @@ -22568,7 +22601,7 @@ "zh-chs": "美国英文", "zh-cht": "美國英語", "xloc": [ - "default.handlebars->35->1436" + "default.handlebars->37->1468" ] }, { @@ -22592,7 +22625,7 @@ "zh-chs": "英文(津巴布韦)", "zh-cht": "英文(津巴布韋)", "xloc": [ - "default.handlebars->35->1437" + "default.handlebars->37->1469" ] }, { @@ -22637,10 +22670,10 @@ "zh-cht": "輸入", "xloc": [ "default-mobile.handlebars->11->376", - "default.handlebars->35->1091", - "default.handlebars->35->1197", - "default.handlebars->35->1640", - "default.handlebars->35->1641", + "default.handlebars->37->1117", + "default.handlebars->37->1229", + "default.handlebars->37->1672", + "default.handlebars->37->1673", "sharing.handlebars->11->55" ] }, @@ -22665,7 +22698,7 @@ "zh-chs": "输入管理领域名称的逗号分隔列表。", "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->35->2215" + "default.handlebars->37->2247" ] }, { @@ -22689,7 +22722,7 @@ "zh-chs": "输入IP地址范围以扫描英特尔AMT设备。", "zh-cht": "輸入IP地址範圍以掃描Intel® AMT裝置。", "xloc": [ - "default.handlebars->35->413" + "default.handlebars->37->435" ] }, { @@ -22757,7 +22790,7 @@ "zh-chs": "输入文本,然后单击确定以远程键入它。在继续操作之前,请确保将远程光标放置在正确的位置。", "zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->35->1116" + "default.handlebars->37->1142" ] }, { @@ -22847,7 +22880,7 @@ "zh-chs": "在此处输入保安编码以进行两步登录:", "zh-cht": "在此處輸入保安編碼以進行兩步登入:", "xloc": [ - "default.handlebars->35->169" + "default.handlebars->37->191" ] }, { @@ -22871,7 +22904,7 @@ "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。", "xloc": [ - "default.handlebars->35->1351" + "default.handlebars->37->1383" ] }, { @@ -22955,7 +22988,7 @@ "zh-chs": "错误,无法添加密钥。", "zh-cht": "錯誤,無法新增密鑰。", "xloc": [ - "default.handlebars->35->195" + "default.handlebars->37->217" ] }, { @@ -22979,7 +23012,7 @@ "zh-chs": "错误,邀请码 \\\"{0}\\\" 已被使用。", "xloc": [ "default-mobile.handlebars->11->686", - "default.handlebars->35->2542" + "default.handlebars->37->2574" ] }, { @@ -23003,7 +23036,7 @@ "zh-chs": "错误,密码未更改。", "xloc": [ "default-mobile.handlebars->11->683", - "default.handlebars->35->2539" + "default.handlebars->37->2571" ] }, { @@ -23027,7 +23060,7 @@ "zh-chs": "错误,无法更改为常用密码。", "xloc": [ "default-mobile.handlebars->11->682", - "default.handlebars->35->2538" + "default.handlebars->37->2570" ] }, { @@ -23051,7 +23084,7 @@ "zh-chs": "错误,无法更改为以前使用的密码。", "xloc": [ "default-mobile.handlebars->11->681", - "default.handlebars->35->2537" + "default.handlebars->37->2569" ] }, { @@ -23099,7 +23132,7 @@ "zh-chs": "逃脱", "xloc": [ "default-mobile.handlebars->11->377", - "default.handlebars->35->1092" + "default.handlebars->37->1118" ] }, { @@ -23123,7 +23156,7 @@ "zh-chs": "世界文", "zh-cht": "世界語", "xloc": [ - "default.handlebars->35->1438" + "default.handlebars->37->1470" ] }, { @@ -23167,7 +23200,7 @@ "zh-chs": "爱沙尼亚文", "zh-cht": "愛沙尼亞語", "xloc": [ - "default.handlebars->35->1439" + "default.handlebars->37->1471" ] }, { @@ -23211,7 +23244,7 @@ "zh-chs": "事件详情", "zh-cht": "事件詳情", "xloc": [ - "default.handlebars->35->1239" + "default.handlebars->37->1271" ] }, { @@ -23235,7 +23268,7 @@ "zh-chs": "事件列表输出", "zh-cht": "事件列表輸出", "xloc": [ - "default.handlebars->35->2124" + "default.handlebars->37->2156" ] }, { @@ -23381,7 +23414,7 @@ "tr": "sona erme", "zh-chs": "到期", "xloc": [ - "default.handlebars->35->270" + "default.handlebars->37->292" ] }, { @@ -23405,9 +23438,9 @@ "zh-chs": "到期时间", "zh-cht": "到期時間", "xloc": [ - "default.handlebars->35->1601", - "default.handlebars->35->237", - "default.handlebars->35->954" + "default.handlebars->37->1633", + "default.handlebars->37->259", + "default.handlebars->37->980" ] }, { @@ -23455,7 +23488,7 @@ "zh-chs": "过期{0}", "zh-cht": "過期{0}", "xloc": [ - "default.handlebars->35->1654", + "default.handlebars->37->1686", "sharing.handlebars->11->95" ] }, @@ -23480,7 +23513,7 @@ "zh-chs": "输出设备信息", "zh-cht": "輸出裝置訊息", "xloc": [ - "default.handlebars->35->576" + "default.handlebars->37->602" ] }, { @@ -23504,7 +23537,7 @@ "zh-chs": "扩充式ASCII", "zh-cht": "擴充式ASCII", "xloc": [ - "default.handlebars->35->1163", + "default.handlebars->37->1195", "sharing.handlebars->11->34" ] }, @@ -23554,7 +23587,7 @@ "zh-chs": "外部", "zh-cht": "外部", "xloc": [ - "default.handlebars->35->2605" + "default.handlebars->37->2637" ] }, { @@ -23578,7 +23611,7 @@ "zh-chs": "完整网域名称", "zh-cht": "完整網域名稱", "xloc": [ - "default.handlebars->35->138" + "default.handlebars->37->159" ] }, { @@ -23602,7 +23635,7 @@ "zh-chs": "FYRO马其顿语", "zh-cht": "FYRO馬其頓語", "xloc": [ - "default.handlebars->35->1489" + "default.handlebars->37->1521" ] }, { @@ -23626,7 +23659,7 @@ "zh-chs": "法罗语", "zh-cht": "法羅語", "xloc": [ - "default.handlebars->35->1440" + "default.handlebars->37->1472" ] }, { @@ -23650,7 +23683,7 @@ "zh-chs": "失败", "zh-cht": "失敗", "xloc": [ - "default.handlebars->35->85" + "default.handlebars->37->106" ] }, { @@ -23674,7 +23707,7 @@ "zh-chs": "无法更改电子邮件地址,另一个帐户已在使用:{0}。", "xloc": [ "default-mobile.handlebars->11->677", - "default.handlebars->35->2533" + "default.handlebars->37->2565" ] }, { @@ -23721,7 +23754,7 @@ "zh-chs": "本地用户拒绝后无法启动远程桌面", "zh-cht": "本地用戶拒絕後無法啟動遠程桌面", "xloc": [ - "default.handlebars->35->2015" + "default.handlebars->37->2047" ] }, { @@ -23765,7 +23798,7 @@ "zh-chs": "本地用户拒绝后无法启动远程文件", "zh-cht": "本地用戶拒絕後無法啟動遠程文件", "xloc": [ - "default.handlebars->35->2022" + "default.handlebars->37->2054" ] }, { @@ -23810,7 +23843,7 @@ "zh-cht": "無法啟動遠程終端接合{0}({1})", "xloc": [ "default-mobile.handlebars->11->368", - "default.handlebars->35->1071", + "default.handlebars->37->1097", "sharing.handlebars->11->30", "sharing.handlebars->11->8" ] @@ -23836,7 +23869,7 @@ "zh-chs": "波斯文(波斯文)", "zh-cht": "波斯語(波斯語)", "xloc": [ - "default.handlebars->35->1441" + "default.handlebars->37->1473" ] }, { @@ -23886,8 +23919,8 @@ "zh-chs": "功能", "zh-cht": "功能", "xloc": [ - "default.handlebars->35->1697", - "default.handlebars->35->2349" + "default.handlebars->37->1729", + "default.handlebars->37->2381" ] }, { @@ -23911,7 +23944,7 @@ "zh-chs": "斐济", "zh-cht": "斐濟", "xloc": [ - "default.handlebars->35->1442" + "default.handlebars->37->1474" ] }, { @@ -23960,8 +23993,8 @@ "zh-cht": "檔案編輯器", "xloc": [ "default-mobile.handlebars->11->451", - "default.handlebars->35->1209", - "default.handlebars->35->665", + "default.handlebars->37->1241", + "default.handlebars->37->691", "sharing.handlebars->11->66" ] }, @@ -24007,8 +24040,8 @@ "zh-chs": "档案操作", "zh-cht": "檔案操作", "xloc": [ - "default.handlebars->35->1188", - "default.handlebars->35->1190", + "default.handlebars->37->1220", + "default.handlebars->37->1222", "sharing.handlebars->11->46", "sharing.handlebars->11->48" ] @@ -24057,7 +24090,7 @@ "tr": "Dosya transferi", "zh-chs": "文件传输", "xloc": [ - "default.handlebars->35->2485" + "default.handlebars->37->2517" ] }, { @@ -24081,7 +24114,7 @@ "zh-chs": "文件系统驱动", "zh-cht": "FileSystemDriver", "xloc": [ - "default.handlebars->35->1127" + "default.handlebars->37->1159" ] }, { @@ -24107,12 +24140,12 @@ "xloc": [ "default-mobile.handlebars->11->203", "default-mobile.handlebars->11->314", - "default.handlebars->35->1800", - "default.handlebars->35->2492", - "default.handlebars->35->2593", - "default.handlebars->35->352", - "default.handlebars->35->862", - "default.handlebars->35->929", + "default.handlebars->37->1832", + "default.handlebars->37->2524", + "default.handlebars->37->2625", + "default.handlebars->37->374", + "default.handlebars->37->888", + "default.handlebars->37->955", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles", "sharing.handlebars->LeftSideToolBar" @@ -24163,10 +24196,10 @@ "zh-chs": "档案通知", "zh-cht": "檔案通知", "xloc": [ - "default.handlebars->35->1705", - "default.handlebars->35->2271", - "default.handlebars->35->2371", - "default.handlebars->35->772" + "default.handlebars->37->1737", + "default.handlebars->37->2303", + "default.handlebars->37->2403", + "default.handlebars->37->798" ] }, { @@ -24190,10 +24223,10 @@ "zh-chs": "档案提示", "zh-cht": "檔案提示", "xloc": [ - "default.handlebars->35->1704", - "default.handlebars->35->2270", - "default.handlebars->35->2370", - "default.handlebars->35->771" + "default.handlebars->37->1736", + "default.handlebars->37->2302", + "default.handlebars->37->2402", + "default.handlebars->37->797" ] }, { @@ -24218,7 +24251,7 @@ "zh-cht": "過濾", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1", - "default.handlebars->35->1193", + "default.handlebars->37->1225", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -24271,7 +24304,7 @@ "zh-chs": "查找文件", "zh-cht": "查找文件", "xloc": [ - "default.handlebars->35->1196", + "default.handlebars->37->1228", "sharing.handlebars->11->54" ] }, @@ -24296,7 +24329,7 @@ "zh-chs": "录制会话已完成,{0}秒", "zh-cht": "錄製會話已完成,{0}秒", "xloc": [ - "default.handlebars->35->1988" + "default.handlebars->37->2020" ] }, { @@ -24320,7 +24353,7 @@ "zh-chs": "芬兰", "zh-cht": "芬蘭", "xloc": [ - "default.handlebars->35->1443" + "default.handlebars->37->1475" ] }, { @@ -24345,8 +24378,8 @@ "xloc": [ "default-mobile.handlebars->11->488", "default-mobile.handlebars->11->490", - "default.handlebars->35->754", - "default.handlebars->35->756" + "default.handlebars->37->780", + "default.handlebars->37->782" ] }, { @@ -24369,8 +24402,8 @@ "tr": "Güvenlik duvarı etkin değil", "zh-chs": "防火墙未激活", "xloc": [ - "default.handlebars->35->1920", - "default.handlebars->35->1934" + "default.handlebars->37->1952", + "default.handlebars->37->1966" ] }, { @@ -24423,7 +24456,7 @@ "zh-chs": "闪光", "xloc": [ "default-mobile.handlebars->11->318", - "default.handlebars->35->961" + "default.handlebars->37->987" ] }, { @@ -24496,7 +24529,7 @@ "zh-chs": "对于ACM激活,需要将英特尔®AMT设置为以下受信任的FQDN:", "zh-cht": "對於ACM激活,需要將英特爾®AMT設置為以下受信任的FQDN:", "xloc": [ - "default.handlebars->35->403" + "default.handlebars->37->425" ] }, { @@ -24592,7 +24625,7 @@ "tr": "Aracı güncellemesi için", "zh-chs": "代理更新", "xloc": [ - "default.handlebars->35->614" + "default.handlebars->37->640" ] }, { @@ -24615,7 +24648,7 @@ "tr": "Aracı güncellemesini zorla", "zh-chs": "强制代理更新", "xloc": [ - "default.handlebars->35->571" + "default.handlebars->37->597" ] }, { @@ -24638,7 +24671,7 @@ "tr": "Seçilen cihazlarda aracı güncellemesi zorunlu kılınsın mı?", "zh-chs": "在选定的设备上强制更新代理?", "xloc": [ - "default.handlebars->35->613" + "default.handlebars->37->639" ] }, { @@ -24662,8 +24695,8 @@ "zh-chs": "下次登录时强制重置密码。", "zh-cht": "下次登入時強制重置密碼。", "xloc": [ - "default.handlebars->35->2209", - "default.handlebars->35->2431" + "default.handlebars->37->2241", + "default.handlebars->37->2463" ] }, { @@ -24762,7 +24795,7 @@ "zh-chs": "格式化", "zh-cht": "格式化", "xloc": [ - "default.handlebars->35->2115" + "default.handlebars->37->2147" ] }, { @@ -24832,8 +24865,8 @@ "zh-chs": "自由", "zh-cht": "自由", "xloc": [ - "default.handlebars->35->2551", - "default.handlebars->35->2553" + "default.handlebars->37->2583", + "default.handlebars->37->2585" ] }, { @@ -24858,7 +24891,7 @@ "zh-cht": "FreeBSD x86-64", "xloc": [ "default-mobile.handlebars->11->36", - "default.handlebars->35->43" + "default.handlebars->37->43" ] }, { @@ -24882,7 +24915,7 @@ "zh-chs": "法文(比利时)", "zh-cht": "法語(比利時)", "xloc": [ - "default.handlebars->35->1445" + "default.handlebars->37->1477" ] }, { @@ -24906,7 +24939,7 @@ "zh-chs": "法文(加拿大)", "zh-cht": "法語(加拿大)", "xloc": [ - "default.handlebars->35->1446" + "default.handlebars->37->1478" ] }, { @@ -24930,7 +24963,7 @@ "zh-chs": "法文(法国)", "zh-cht": "法語(法國)", "xloc": [ - "default.handlebars->35->1447" + "default.handlebars->37->1479" ] }, { @@ -24954,7 +24987,7 @@ "zh-chs": "法文(卢森堡)", "zh-cht": "法語(盧森堡)", "xloc": [ - "default.handlebars->35->1448" + "default.handlebars->37->1480" ] }, { @@ -24978,7 +25011,7 @@ "zh-chs": "法文(摩纳哥)", "zh-cht": "法語(摩納哥)", "xloc": [ - "default.handlebars->35->1449" + "default.handlebars->37->1481" ] }, { @@ -25002,7 +25035,7 @@ "zh-chs": "法文(标准)", "zh-cht": "法語(標準)", "xloc": [ - "default.handlebars->35->1444" + "default.handlebars->37->1476" ] }, { @@ -25026,7 +25059,7 @@ "zh-chs": "法文(瑞士)", "zh-cht": "法語(瑞士)", "xloc": [ - "default.handlebars->35->1450" + "default.handlebars->37->1482" ] }, { @@ -25050,7 +25083,7 @@ "zh-chs": "弗里斯兰文", "zh-cht": "弗里斯蘭語", "xloc": [ - "default.handlebars->35->1451" + "default.handlebars->37->1483" ] }, { @@ -25074,7 +25107,7 @@ "zh-chs": "弗留利", "zh-cht": "弗留利", "xloc": [ - "default.handlebars->35->1452" + "default.handlebars->37->1484" ] }, { @@ -25102,9 +25135,9 @@ "default-mobile.handlebars->11->595", "default-mobile.handlebars->11->608", "default-mobile.handlebars->11->628", - "default.handlebars->35->1647", - "default.handlebars->35->1823", - "default.handlebars->35->2221" + "default.handlebars->37->1679", + "default.handlebars->37->1855", + "default.handlebars->37->2253" ] }, { @@ -25128,7 +25161,7 @@ "zh-chs": "完整管理员(保留所有权利)", "zh-cht": "完整管理員(保留所有權利)", "xloc": [ - "default.handlebars->35->1861" + "default.handlebars->37->1893" ] }, { @@ -25173,7 +25206,7 @@ "zh-chs": "完整设备权限", "zh-cht": "完整裝置權限", "xloc": [ - "default.handlebars->35->871" + "default.handlebars->37->897" ] }, { @@ -25197,7 +25230,7 @@ "zh-chs": "全部权限", "zh-cht": "全部權限", "xloc": [ - "default.handlebars->35->890" + "default.handlebars->37->916" ] }, { @@ -25272,7 +25305,7 @@ "zh-chs": "完整管理员", "zh-cht": "完整管理員", "xloc": [ - "default.handlebars->35->2319" + "default.handlebars->37->2351" ] }, { @@ -25296,8 +25329,8 @@ "zh-chs": "全自动的", "zh-cht": "全自動的", "xloc": [ - "default.handlebars->35->1722", - "default.handlebars->35->1758" + "default.handlebars->37->1754", + "default.handlebars->37->1790" ] }, { @@ -25322,7 +25355,7 @@ "zh-cht": "GPU", "xloc": [ "default-mobile.handlebars->11->552", - "default.handlebars->35->1312" + "default.handlebars->37->1344" ] }, { @@ -25346,7 +25379,7 @@ "zh-chs": "盖尔文(爱尔兰)", "zh-cht": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->35->1454" + "default.handlebars->37->1486" ] }, { @@ -25370,7 +25403,7 @@ "zh-chs": "盖尔文(苏格兰文)", "zh-cht": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->35->1453" + "default.handlebars->37->1485" ] }, { @@ -25394,7 +25427,7 @@ "zh-chs": "加拉契文", "zh-cht": "加拉契語", "xloc": [ - "default.handlebars->35->1455" + "default.handlebars->37->1487" ] }, { @@ -25418,7 +25451,7 @@ "zh-chs": "网关MAC", "zh-cht": "閘道MAC", "xloc": [ - "default.handlebars->35->133" + "default.handlebars->37->154" ] }, { @@ -25496,7 +25529,7 @@ "zh-chs": "一般信息", "zh-cht": "一般訊息", "xloc": [ - "default.handlebars->35->672" + "default.handlebars->37->698" ] }, { @@ -25520,7 +25553,7 @@ "zh-chs": "生成新保安编码", "zh-cht": "產生新保安編碼", "xloc": [ - "default.handlebars->35->183" + "default.handlebars->37->205" ] }, { @@ -25544,7 +25577,7 @@ "zh-chs": "格鲁吉亚文", "zh-cht": "格魯吉亞文", "xloc": [ - "default.handlebars->35->1456" + "default.handlebars->37->1488" ] }, { @@ -25568,7 +25601,7 @@ "zh-chs": "德文(奥地利)", "zh-cht": "德語(奧地利)", "xloc": [ - "default.handlebars->35->1458" + "default.handlebars->37->1490" ] }, { @@ -25592,7 +25625,7 @@ "zh-chs": "德文(德国)", "zh-cht": "德文(德國)", "xloc": [ - "default.handlebars->35->1459" + "default.handlebars->37->1491" ] }, { @@ -25616,7 +25649,7 @@ "zh-chs": "德文(列支敦士登)", "zh-cht": "德文(列支敦士登)", "xloc": [ - "default.handlebars->35->1460" + "default.handlebars->37->1492" ] }, { @@ -25640,7 +25673,7 @@ "zh-chs": "德文(卢森堡)", "zh-cht": "德語(盧森堡)", "xloc": [ - "default.handlebars->35->1461" + "default.handlebars->37->1493" ] }, { @@ -25664,7 +25697,7 @@ "zh-chs": "德文(标准)", "zh-cht": "德語(標準)", "xloc": [ - "default.handlebars->35->1457" + "default.handlebars->37->1489" ] }, { @@ -25688,7 +25721,14 @@ "zh-chs": "德文(瑞士)", "zh-cht": "德文(瑞士)", "xloc": [ - "default.handlebars->35->1462" + "default.handlebars->37->1494" + ] + }, + { + "en": "Get Clipboard", + "pl": "Pobierz schowek", + "xloc": [ + "default.handlebars->37->1144" ] }, { @@ -25712,7 +25752,7 @@ "zh-chs": "获取此设备的MQTT登录凭证。", "zh-cht": "獲取此裝置的MQTT登入憑證。", "xloc": [ - "default.handlebars->35->835" + "default.handlebars->37->861" ] }, { @@ -25761,7 +25801,7 @@ "zh-chs": "正在获取剪贴板内容,{0}个字节", "zh-cht": "正在獲取剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->35->2002" + "default.handlebars->37->2034" ] }, { @@ -25835,7 +25875,7 @@ "zh-chs": "好", "zh-cht": "好", "xloc": [ - "default.handlebars->35->1643" + "default.handlebars->37->1675" ] }, { @@ -25888,9 +25928,9 @@ "zh-chs": "Google云端硬盘备份", "zh-cht": "Google雲端硬盤備份", "xloc": [ - "default.handlebars->35->1664", - "default.handlebars->35->1667", - "default.handlebars->35->259" + "default.handlebars->37->1696", + "default.handlebars->37->1699", + "default.handlebars->37->281" ] }, { @@ -25914,7 +25954,7 @@ "zh-chs": "Google云端硬盘控制台", "zh-cht": "Google雲端硬盤控制台", "xloc": [ - "default.handlebars->35->1661" + "default.handlebars->37->1693" ] }, { @@ -25962,7 +26002,7 @@ "zh-chs": "Google云端硬盘备份当前处于活动状态。", "zh-cht": "Google雲端硬盤備份當前處於活動狀態。", "xloc": [ - "default.handlebars->35->1665" + "default.handlebars->37->1697" ] }, { @@ -26009,7 +26049,7 @@ "zh-chs": "希腊文", "zh-cht": "希臘文", "xloc": [ - "default.handlebars->35->1463" + "default.handlebars->37->1495" ] }, { @@ -26034,7 +26074,7 @@ "zh-cht": "群", "xloc": [ "default-mobile.handlebars->11->250", - "default.handlebars->35->700", + "default.handlebars->37->726", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, @@ -26059,9 +26099,9 @@ "zh-chs": "集体指令", "zh-cht": "集體指令", "xloc": [ - "default.handlebars->35->2163", - "default.handlebars->35->2244", - "default.handlebars->35->577", + "default.handlebars->37->2195", + "default.handlebars->37->2276", + "default.handlebars->37->603", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", "default.handlebars->container->column_l->p50->3->1->0->3->3" @@ -26088,7 +26128,7 @@ "zh-chs": "通过...分组", "zh-cht": "通過...分群", "xloc": [ - "default.handlebars->35->2111" + "default.handlebars->37->2143" ] }, { @@ -26112,7 +26152,7 @@ "zh-chs": "组标识符", "zh-cht": "群標識符", "xloc": [ - "default.handlebars->35->2261" + "default.handlebars->37->2293" ] }, { @@ -26136,7 +26176,7 @@ "zh-chs": "群组成员", "zh-cht": "群組成員", "xloc": [ - "default.handlebars->35->2282" + "default.handlebars->37->2314" ] }, { @@ -26160,7 +26200,7 @@ "zh-chs": "用户{0}的群组权限。", "zh-cht": "用戶{0}的群組權限。", "xloc": [ - "default.handlebars->35->1822" + "default.handlebars->37->1854" ] }, { @@ -26184,7 +26224,7 @@ "zh-chs": "{0}的群组权限。", "zh-cht": "{0}的群組權限。", "xloc": [ - "default.handlebars->35->1821" + "default.handlebars->37->1853" ] }, { @@ -26280,8 +26320,8 @@ "zh-chs": "访客姓名", "zh-cht": "來賓姓名", "xloc": [ - "default.handlebars->35->232", - "default.handlebars->35->926" + "default.handlebars->37->254", + "default.handlebars->37->952" ] }, { @@ -26304,8 +26344,8 @@ "tr": "Misafir Paylaşımı", "zh-chs": "嘉宾分享", "xloc": [ - "default.handlebars->35->878", - "default.handlebars->35->900" + "default.handlebars->37->904", + "default.handlebars->37->926" ] }, { @@ -26328,7 +26368,7 @@ "tr": "Misafir Paylaşımı", "zh-chs": "嘉宾分享", "xloc": [ - "default.handlebars->35->1830" + "default.handlebars->37->1862" ] }, { @@ -26352,7 +26392,7 @@ "zh-chs": "古久拉提", "zh-cht": "古久拉提", "xloc": [ - "default.handlebars->35->1464" + "default.handlebars->37->1496" ] }, { @@ -26375,7 +26415,7 @@ "tr": "HTTP", "zh-chs": "HTTP", "xloc": [ - "default.handlebars->35->2589" + "default.handlebars->37->2621" ] }, { @@ -26446,7 +26486,7 @@ "zh-chs": "海地文", "zh-cht": "海地文", "xloc": [ - "default.handlebars->35->1465" + "default.handlebars->37->1497" ] }, { @@ -26469,7 +26509,7 @@ "tr": "Tutamaç Sayısı", "zh-chs": "处理计数", "xloc": [ - "default.handlebars->35->97" + "default.handlebars->37->118" ] }, { @@ -26518,7 +26558,7 @@ "zh-cht": "強行斷開代理", "xloc": [ "default-mobile.handlebars->11->582", - "default.handlebars->35->1343" + "default.handlebars->37->1375" ] }, { @@ -26542,7 +26582,7 @@ "zh-chs": "堆总数", "zh-cht": "堆總數", "xloc": [ - "default.handlebars->35->2607" + "default.handlebars->37->2639" ] }, { @@ -26566,7 +26606,7 @@ "zh-chs": "堆使用", "zh-cht": "堆使用", "xloc": [ - "default.handlebars->35->2606" + "default.handlebars->37->2638" ] }, { @@ -26590,7 +26630,7 @@ "zh-chs": "希伯来文", "zh-cht": "希伯來文", "xloc": [ - "default.handlebars->35->1466" + "default.handlebars->37->1498" ] }, { @@ -26683,7 +26723,7 @@ "zh-chs": "已请求帮助,用户:{0},详细信息:{1}", "zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}", "xloc": [ - "default.handlebars->35->2079" + "default.handlebars->37->2111" ] }, { @@ -26708,7 +26748,7 @@ "zh-cht": "幫助請求", "xloc": [ "default-mobile.handlebars->11->193", - "default.handlebars->35->341" + "default.handlebars->37->363" ] }, { @@ -26732,7 +26772,7 @@ "zh-chs": "从{0}请求的帮助:{1}", "zh-cht": "從{0}請求的幫助:{1}", "xloc": [ - "default.handlebars->35->205" + "default.handlebars->37->227" ] }, { @@ -26756,7 +26796,7 @@ "zh-chs": "帮助翻译MeshCentral", "zh-cht": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->35->1581" + "default.handlebars->37->1613" ] }, { @@ -26855,8 +26895,8 @@ "xloc": [ "default-mobile.handlebars->11->218", "default-mobile.handlebars->11->225", - "default.handlebars->35->5", - "default.handlebars->35->534" + "default.handlebars->37->5", + "default.handlebars->37->560" ] }, { @@ -26880,7 +26920,7 @@ "zh-chs": "印地文", "zh-cht": "印地文", "xloc": [ - "default.handlebars->35->1467" + "default.handlebars->37->1499" ] }, { @@ -26926,7 +26966,7 @@ "zh-cht": "保存1個項目進行複製", "xloc": [ "default-mobile.handlebars->11->460", - "default.handlebars->35->1219", + "default.handlebars->37->1251", "sharing.handlebars->11->76" ] }, @@ -26952,7 +26992,7 @@ "zh-cht": "保存1個項目進行移動", "xloc": [ "default-mobile.handlebars->11->464", - "default.handlebars->35->1223", + "default.handlebars->37->1255", "sharing.handlebars->11->80" ] }, @@ -26978,7 +27018,7 @@ "zh-cht": "保留{0}個項目進行複製", "xloc": [ "default-mobile.handlebars->11->458", - "default.handlebars->35->1217", + "default.handlebars->37->1249", "sharing.handlebars->11->74" ] }, @@ -27004,7 +27044,7 @@ "zh-cht": "保存{0}個項目以進行移動", "xloc": [ "default-mobile.handlebars->11->462", - "default.handlebars->35->1221", + "default.handlebars->37->1253", "sharing.handlebars->11->78" ] }, @@ -27030,7 +27070,7 @@ "zh-cht": "保存{0}項目{1}給{2}", "xloc": [ "default-mobile.handlebars->11->153", - "default.handlebars->35->1975" + "default.handlebars->37->2007" ] }, { @@ -27054,7 +27094,7 @@ "zh-chs": "家", "xloc": [ "default-mobile.handlebars->11->381", - "default.handlebars->35->1096" + "default.handlebars->37->1122" ] }, { @@ -27083,11 +27123,11 @@ "default-mobile.handlebars->11->255", "default-mobile.handlebars->11->361", "default-mobile.handlebars->11->511", - "default.handlebars->35->1064", - "default.handlebars->35->1261", - "default.handlebars->35->384", - "default.handlebars->35->393", - "default.handlebars->35->705" + "default.handlebars->37->1090", + "default.handlebars->37->1293", + "default.handlebars->37->406", + "default.handlebars->37->415", + "default.handlebars->37->731" ] }, { @@ -27111,7 +27151,7 @@ "zh-chs": "主机名同步", "zh-cht": "主機名同步", "xloc": [ - "default.handlebars->35->1693" + "default.handlebars->37->1725" ] }, { @@ -27135,7 +27175,7 @@ "zh-chs": "匈牙利文", "zh-cht": "匈牙利文", "xloc": [ - "default.handlebars->35->1468" + "default.handlebars->37->1500" ] }, { @@ -27159,8 +27199,8 @@ "zh-chs": "IP范围", "zh-cht": "IP範圍", "xloc": [ - "default.handlebars->35->414", - "default.handlebars->35->416" + "default.handlebars->37->436", + "default.handlebars->37->438" ] }, { @@ -27210,9 +27250,9 @@ "zh-chs": "IP:{0}", "zh-cht": "IP:{0}", "xloc": [ - "default.handlebars->35->1271", - "default.handlebars->35->1281", - "default.handlebars->35->1285" + "default.handlebars->37->1303", + "default.handlebars->37->1313", + "default.handlebars->37->1317" ] }, { @@ -27236,9 +27276,9 @@ "zh-chs": "IP:{0},掩码:{1},网关:{2}", "zh-cht": "IP:{0},遮罩:{1},閘道:{2}", "xloc": [ - "default.handlebars->35->1269", - "default.handlebars->35->1279", - "default.handlebars->35->1283" + "default.handlebars->37->1301", + "default.handlebars->37->1311", + "default.handlebars->37->1315" ] }, { @@ -27264,10 +27304,10 @@ "xloc": [ "default-mobile.handlebars->11->518", "default-mobile.handlebars->11->520", - "default.handlebars->35->1268", - "default.handlebars->35->1270", - "default.handlebars->35->1278", - "default.handlebars->35->1280" + "default.handlebars->37->1300", + "default.handlebars->37->1302", + "default.handlebars->37->1310", + "default.handlebars->37->1312" ] }, { @@ -27291,8 +27331,8 @@ "zh-chs": "IPv4地址", "zh-cht": "IPv4地址", "xloc": [ - "default.handlebars->35->127", - "default.handlebars->35->145" + "default.handlebars->37->148", + "default.handlebars->37->166" ] }, { @@ -27316,8 +27356,8 @@ "zh-chs": "IPv4网关", "zh-cht": "IPv4閘道", "xloc": [ - "default.handlebars->35->131", - "default.handlebars->35->149" + "default.handlebars->37->152", + "default.handlebars->37->170" ] }, { @@ -27341,8 +27381,8 @@ "zh-chs": "IPv4掩码", "zh-cht": "IPv4遮罩", "xloc": [ - "default.handlebars->35->129", - "default.handlebars->35->147" + "default.handlebars->37->150", + "default.handlebars->37->168" ] }, { @@ -27368,8 +27408,8 @@ "xloc": [ "default-mobile.handlebars->11->522", "default-mobile.handlebars->11->524", - "default.handlebars->35->1282", - "default.handlebars->35->1284" + "default.handlebars->37->1314", + "default.handlebars->37->1316" ] }, { @@ -27393,7 +27433,7 @@ "zh-chs": "IPv6地址", "zh-cht": "IPv6地址", "xloc": [ - "default.handlebars->35->139" + "default.handlebars->37->160" ] }, { @@ -27417,7 +27457,7 @@ "zh-chs": "IPv6网关", "zh-cht": "IPv6閘道", "xloc": [ - "default.handlebars->35->143" + "default.handlebars->37->164" ] }, { @@ -27441,7 +27481,7 @@ "zh-chs": "IPv6掩码", "zh-cht": "IPv6遮罩", "xloc": [ - "default.handlebars->35->141" + "default.handlebars->37->162" ] }, { @@ -27465,7 +27505,7 @@ "zh-chs": "冰岛文", "zh-cht": "冰島文", "xloc": [ - "default.handlebars->35->1469" + "default.handlebars->37->1501" ] }, { @@ -27490,7 +27530,7 @@ "zh-cht": "圖符選擇", "xloc": [ "default-mobile.handlebars->11->355", - "default.handlebars->35->1058" + "default.handlebars->37->1084" ] }, { @@ -27516,8 +27556,8 @@ "xloc": [ "default-mobile.handlebars->11->510", "default-mobile.handlebars->11->550", - "default.handlebars->35->1260", - "default.handlebars->35->1310" + "default.handlebars->37->1292", + "default.handlebars->37->1342" ] }, { @@ -27541,7 +27581,7 @@ "zh-chs": "如果在CCM中,请重新激活英特尔®AMT", "zh-cht": "如果在CCM中,請重新激活英特爾®AMT", "xloc": [ - "default.handlebars->35->1772" + "default.handlebars->37->1804" ] }, { @@ -27710,9 +27750,9 @@ "tr": "Intel® AMT Cihazlarını İçe Aktarın", "zh-chs": "导入英特尔® AMT 设备", "xloc": [ - "default.handlebars->35->1746", - "default.handlebars->35->1747", - "default.handlebars->35->1751" + "default.handlebars->37->1778", + "default.handlebars->37->1779", + "default.handlebars->37->1783" ] }, { @@ -27735,7 +27775,7 @@ "tr": "MeshCommander JSON formatında yerel Intel® AMT cihazlarının bir listesini içe aktarın.", "zh-chs": "以 MeshCommander JSON 格式导入本地英特尔® AMT 设备列表。", "xloc": [ - "default.handlebars->35->1745" + "default.handlebars->37->1777" ] }, { @@ -27758,7 +27798,7 @@ "tr": "Cihaz listesini içe aktar", "zh-chs": "导入设备列表", "xloc": [ - "default.handlebars->35->1740" + "default.handlebars->37->1772" ] }, { @@ -27781,7 +27821,7 @@ "tr": "Anında bildirim kimlik doğrulamasını kullanmak için, hesabınızda tam haklara sahip bir mobil cihaz kurulmalıdır.", "zh-chs": "为了使用推送通知身份验证,必须在您的帐户中设置具有完全权限的移动设备。", "xloc": [ - "default.handlebars->35->1364" + "default.handlebars->37->1396" ] }, { @@ -27804,7 +27844,7 @@ "tr": "Kaldırılana kadar günleri devre dışı bırak", "zh-chs": "停用天数直到移除", "xloc": [ - "default.handlebars->35->1807" + "default.handlebars->37->1839" ] }, { @@ -27850,7 +27890,7 @@ "tr": "Cihaz ayrıntılarını dahil et", "zh-chs": "包括设备详细信息", "xloc": [ - "default.handlebars->35->626" + "default.handlebars->37->652" ] }, { @@ -27939,9 +27979,9 @@ "zh-cht": "個別裝置", "xloc": [ "default-mobile.handlebars->11->180", - "default.handlebars->35->288", - "default.handlebars->35->289", - "default.handlebars->35->290" + "default.handlebars->37->310", + "default.handlebars->37->311", + "default.handlebars->37->312" ] }, { @@ -27965,7 +28005,7 @@ "zh-chs": "印度尼西亚文", "zh-cht": "印度尼西亞文", "xloc": [ - "default.handlebars->35->1470" + "default.handlebars->37->1502" ] }, { @@ -28063,7 +28103,7 @@ "zh-chs": "插", "xloc": [ "default-mobile.handlebars->11->379", - "default.handlebars->35->1094" + "default.handlebars->37->1120" ] }, { @@ -28111,7 +28151,7 @@ "zh-chs": "安装 Google Authenticator或兼容的应用软件并扫描条码,使用此连结或输入密码。然后,在下面输入当前的6位数保安编码以激活两步登录。", "zh-cht": "安裝 Google Authenticator或兼容的應用軟體並掃描條碼,使用此鏈結或輸入密碼。然後,在下面輸入當前的6位數保安編碼以啟動兩步登入。", "xloc": [ - "default.handlebars->35->168" + "default.handlebars->37->189" ] }, { @@ -28287,12 +28327,12 @@ "zh-chs": "安装类型", "zh-cht": "安裝方式", "xloc": [ - "default.handlebars->35->1896", - "default.handlebars->35->1903", - "default.handlebars->35->440", - "default.handlebars->35->454", - "default.handlebars->35->470", - "default.handlebars->35->474" + "default.handlebars->37->1928", + "default.handlebars->37->1935", + "default.handlebars->37->465", + "default.handlebars->37->479", + "default.handlebars->37->495", + "default.handlebars->37->499" ] }, { @@ -28316,7 +28356,7 @@ "zh-chs": "英特尔(F10 = ESC + [OM)", "zh-cht": "Intel(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->35->1165", + "default.handlebars->37->1197", "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons", "sharing.handlebars->11->36", "sharing.handlebars->p12->9->1->terminalSettingsButtons" @@ -28343,7 +28383,7 @@ "zh-chs": "英特尔AMT", "zh-cht": "英特爾AMT", "xloc": [ - "default.handlebars->35->2603" + "default.handlebars->37->2635" ] }, { @@ -28366,7 +28406,7 @@ "tr": "Intel AMT yöneticisi", "zh-chs": "英特尔 AMT 经理", "xloc": [ - "default.handlebars->35->2632" + "default.handlebars->37->2664" ] }, { @@ -28390,7 +28430,7 @@ "zh-chs": "英特尔ASCII", "zh-cht": "Intel ASCII", "xloc": [ - "default.handlebars->35->1164", + "default.handlebars->37->1196", "sharing.handlebars->11->35" ] }, @@ -28418,14 +28458,14 @@ "default-mobile.handlebars->11->237", "default-mobile.handlebars->11->285", "default-mobile.handlebars->11->290", - "default.handlebars->35->1712", - "default.handlebars->35->1723", - "default.handlebars->35->1915", - "default.handlebars->35->1928", - "default.handlebars->35->2631", - "default.handlebars->35->675", - "default.handlebars->35->740", - "default.handlebars->35->782" + "default.handlebars->37->1744", + "default.handlebars->37->1755", + "default.handlebars->37->1947", + "default.handlebars->37->1960", + "default.handlebars->37->2663", + "default.handlebars->37->701", + "default.handlebars->37->766", + "default.handlebars->37->808" ] }, { @@ -28449,7 +28489,7 @@ "zh-chs": "英特尔®AMT ACM", "zh-cht": "英特爾®AMT ACM", "xloc": [ - "default.handlebars->35->412" + "default.handlebars->37->434" ] }, { @@ -28474,7 +28514,7 @@ "zh-cht": "Intel® AMT CIRA", "xloc": [ "default-mobile.handlebars->11->289", - "default.handlebars->35->780" + "default.handlebars->37->806" ] }, { @@ -28498,7 +28538,7 @@ "zh-chs": "英特尔AMT CIRA已连接", "zh-cht": "Intel® AMT CIRA已連接", "xloc": [ - "default.handlebars->35->210" + "default.handlebars->37->232" ] }, { @@ -28522,7 +28562,7 @@ "zh-chs": "英特尔AMT CIRA已断开连接", "zh-cht": "Intel® AMT CIRA已斷開連接", "xloc": [ - "default.handlebars->35->214" + "default.handlebars->37->236" ] }, { @@ -28546,9 +28586,9 @@ "zh-chs": "英特尔®AMT CIRA已连接并可以使用。", "zh-cht": "Intel® AMT CIRA已連接並可以使用。", "xloc": [ - "default.handlebars->35->327", - "default.handlebars->35->548", - "default.handlebars->35->779" + "default.handlebars->37->349", + "default.handlebars->37->574", + "default.handlebars->37->805" ] }, { @@ -28573,7 +28613,7 @@ "zh-cht": "Intel® AMT已連接", "xloc": [ "default-mobile.handlebars->11->5", - "default.handlebars->35->12", + "default.handlebars->37->12", "sharing.handlebars->11->5", "xterm.handlebars->9->5" ] @@ -28598,7 +28638,7 @@ "tr": "Intel® AMT JSON", "zh-chs": "英特尔® AMT JSON", "xloc": [ - "default.handlebars->35->624" + "default.handlebars->37->650" ] }, { @@ -28645,8 +28685,8 @@ "tr": "Intel® AMT Tek Tıkla Kurtarma", "zh-chs": "英特尔® AMT 一键恢复", "xloc": [ - "default.handlebars->35->976", - "default.handlebars->35->989" + "default.handlebars->37->1002", + "default.handlebars->37->1015" ] }, { @@ -28670,7 +28710,7 @@ "zh-chs": "英特尔®AMT政策", "zh-cht": "Intel® AMT政策", "xloc": [ - "default.handlebars->35->1759" + "default.handlebars->37->1791" ] }, { @@ -28696,9 +28736,9 @@ "default-mobile.handlebars->11->334", "default-mobile.handlebars->11->336", "default-mobile.handlebars->11->338", - "default.handlebars->35->990", - "default.handlebars->35->992", - "default.handlebars->35->994" + "default.handlebars->37->1016", + "default.handlebars->37->1018", + "default.handlebars->37->1020" ] }, { @@ -28722,7 +28762,7 @@ "zh-chs": "英特尔® AMT 关机", "xloc": [ "default-mobile.handlebars->11->330", - "default.handlebars->35->975" + "default.handlebars->37->1001" ] }, { @@ -28746,7 +28786,7 @@ "zh-chs": "英特尔® AMT 开机", "xloc": [ "default-mobile.handlebars->11->329", - "default.handlebars->35->974" + "default.handlebars->37->1000" ] }, { @@ -28770,8 +28810,8 @@ "zh-chs": "英特尔®AMT重定向", "zh-cht": "Intel® AMT重定向", "xloc": [ - "default.handlebars->35->2487", - "default.handlebars->35->2494", + "default.handlebars->37->2519", + "default.handlebars->37->2526", "player.handlebars->3->29" ] }, @@ -28796,7 +28836,7 @@ "zh-chs": "英特尔® AMT 重置", "xloc": [ "default-mobile.handlebars->11->328", - "default.handlebars->35->973" + "default.handlebars->37->999" ] }, { @@ -28820,7 +28860,7 @@ "zh-chs": "英特尔®AMT标签", "zh-cht": "Intel® AMT標籤", "xloc": [ - "default.handlebars->35->744" + "default.handlebars->37->770" ] }, { @@ -28844,8 +28884,8 @@ "zh-chs": "英特尔®AMT WSMAN", "zh-cht": "Intle® AMT WSMAN", "xloc": [ - "default.handlebars->35->2486", - "default.handlebars->35->2493", + "default.handlebars->37->2518", + "default.handlebars->37->2525", "player.handlebars->3->28" ] }, @@ -28892,8 +28932,8 @@ "zh-cht": "Intel ®AMT已連接", "xloc": [ "default-mobile.handlebars->11->307", - "default.handlebars->35->841", - "default.handlebars->35->842" + "default.handlebars->37->867", + "default.handlebars->37->868" ] }, { @@ -28917,8 +28957,8 @@ "zh-chs": "英特尔®AMT桌面和串行事件。", "zh-cht": "Intel® AMT桌面和串行事件。", "xloc": [ - "default.handlebars->35->1607", - "default.handlebars->35->1911" + "default.handlebars->37->1639", + "default.handlebars->37->1943" ] }, { @@ -28943,9 +28983,9 @@ "zh-cht": "檢測到Intel® AMT", "xloc": [ "default-mobile.handlebars->11->308", - "default.handlebars->35->209", - "default.handlebars->35->843", - "default.handlebars->35->844" + "default.handlebars->37->231", + "default.handlebars->37->869", + "default.handlebars->37->870" ] }, { @@ -28969,7 +29009,7 @@ "zh-chs": "在Intel® AMT尔AMT", "zh-cht": "在管理控制模式下啟動了Intel® AMT", "xloc": [ - "default.handlebars->35->726" + "default.handlebars->37->752" ] }, { @@ -28993,7 +29033,7 @@ "zh-chs": "英特尔AMT在客户端控制模式下被激活", "zh-cht": "Intel® AMT在客户端控制模式下被启动", "xloc": [ - "default.handlebars->35->724" + "default.handlebars->37->750" ] }, { @@ -29017,7 +29057,7 @@ "zh-chs": "英特尔®AMT可路由并可以使用。", "zh-cht": "Intel® AMT可路由並可以使用。", "xloc": [ - "default.handlebars->35->781" + "default.handlebars->37->807" ] }, { @@ -29041,8 +29081,8 @@ "zh-chs": "英特尔®AMT是可路由的。", "zh-cht": "Intel® AMT是可路由的。", "xloc": [ - "default.handlebars->35->329", - "default.handlebars->35->550" + "default.handlebars->37->351", + "default.handlebars->37->576" ] }, { @@ -29067,7 +29107,7 @@ "zh-cht": "Intel® AMT已設置TLS網絡安全性", "xloc": [ "default-mobile.handlebars->11->275", - "default.handlebars->35->728" + "default.handlebars->37->754" ] }, { @@ -29091,7 +29131,7 @@ "zh-chs": "未检测到英特尔AMT", "zh-cht": "未檢測到Intel® AMT", "xloc": [ - "default.handlebars->35->213" + "default.handlebars->37->235" ] }, { @@ -29140,8 +29180,8 @@ "zh-cht": "僅限Intel® AMT,無代理", "xloc": [ "default-mobile.handlebars->11->585", - "default.handlebars->35->1637", - "default.handlebars->35->1682" + "default.handlebars->37->1669", + "default.handlebars->37->1714" ] }, { @@ -29165,7 +29205,7 @@ "zh-chs": "英特尔®AMT设置", "zh-cht": "英特爾®AMT設置", "xloc": [ - "default.handlebars->35->404" + "default.handlebars->37->426" ] }, { @@ -29210,7 +29250,7 @@ "zh-chs": "英特尔®主动管理技术", "zh-cht": "Intel® Active Management Technology", "xloc": [ - "default.handlebars->35->739" + "default.handlebars->37->765" ] }, { @@ -29235,7 +29275,7 @@ "zh-cht": "Intel ® Active Management Technology(Intel® AMT)", "xloc": [ "default-mobile.handlebars->11->542", - "default.handlebars->35->1302" + "default.handlebars->37->1334" ] }, { @@ -29260,7 +29300,7 @@ "zh-cht": "Intel® ME", "xloc": [ "default-mobile.handlebars->11->284", - "default.handlebars->35->738" + "default.handlebars->37->764" ] }, { @@ -29284,7 +29324,7 @@ "zh-chs": "英特尔®可管理性引擎", "zh-cht": "Intel® Management Engine", "xloc": [ - "default.handlebars->35->737" + "default.handlebars->37->763" ] }, { @@ -29309,7 +29349,7 @@ "zh-cht": "Intel® M", "xloc": [ "default-mobile.handlebars->11->286", - "default.handlebars->35->742" + "default.handlebars->37->768" ] }, { @@ -29333,7 +29373,7 @@ "zh-chs": "英特尔®标准可管理性", "zh-cht": "Intel® Standard Manageability", "xloc": [ - "default.handlebars->35->741" + "default.handlebars->37->767" ] }, { @@ -29541,7 +29581,7 @@ "zh-chs": "互动", "zh-cht": "互動", "xloc": [ - "default.handlebars->35->1128" + "default.handlebars->37->1160" ] }, { @@ -29565,11 +29605,11 @@ "zh-chs": "仅限互动", "zh-cht": "僅限互動", "xloc": [ - "default.handlebars->35->1899", - "default.handlebars->35->1906", - "default.handlebars->35->443", - "default.handlebars->35->457", - "default.handlebars->35->473" + "default.handlebars->37->1931", + "default.handlebars->37->1938", + "default.handlebars->37->468", + "default.handlebars->37->482", + "default.handlebars->37->498" ] }, { @@ -29593,7 +29633,7 @@ "zh-chs": "介面", "zh-cht": "介面", "xloc": [ - "default.handlebars->35->815" + "default.handlebars->37->841" ] }, { @@ -29640,7 +29680,7 @@ "zh-chs": "因纽特文", "zh-cht": "因紐特文", "xloc": [ - "default.handlebars->35->1471" + "default.handlebars->37->1503" ] }, { @@ -29664,7 +29704,7 @@ "zh-chs": "无效的 2FA", "xloc": [ "default-mobile.handlebars->11->76", - "default.handlebars->35->263" + "default.handlebars->37->285" ] }, { @@ -29689,7 +29729,7 @@ "zh-cht": "無效證件", "xloc": [ "default-mobile.handlebars->11->280", - "default.handlebars->35->733" + "default.handlebars->37->759" ] }, { @@ -29713,7 +29753,7 @@ "zh-chs": "无效的设备组类型", "zh-cht": "無效的裝置群類型", "xloc": [ - "default.handlebars->35->2565" + "default.handlebars->37->2597" ] }, { @@ -29737,7 +29777,7 @@ "zh-chs": "无效的JSON", "zh-cht": "無效的JSON", "xloc": [ - "default.handlebars->35->2559" + "default.handlebars->37->2591" ] }, { @@ -29761,9 +29801,9 @@ "zh-chs": "无效的JSON档案格式。", "zh-cht": "無效的JSON檔案格式。", "xloc": [ - "default.handlebars->35->1752", - "default.handlebars->35->2183", - "default.handlebars->35->2185" + "default.handlebars->37->1784", + "default.handlebars->37->2215", + "default.handlebars->37->2217" ] }, { @@ -29787,8 +29827,36 @@ "zh-chs": "无效的JSON档案:{0}。", "zh-cht": "無效的JSON檔案:{0}。", "xloc": [ - "default.handlebars->35->1748", - "default.handlebars->35->2181" + "default.handlebars->37->1780", + "default.handlebars->37->2213" + ] + }, + { + "en": "Invalid Let's Encrypt email address, unable to resolve: {0}", + "pl": "Nieprawidłowy adres e-mail Let's Encrypt, nie można go rozwiązać: {0}", + "xloc": [ + "default.handlebars->37->93" + ] + }, + { + "en": "Invalid Let's Encrypt host names.", + "pl": "Nieprawidłowe nazwy hostów Let's Encrypt.", + "xloc": [ + "default.handlebars->37->89" + ] + }, + { + "en": "Invalid Let's Encrypt names, can't contain a *.", + "pl": "Nieprawidłowe nazwy Let's Encrypt, nie mogą zawierać *.", + "xloc": [ + "default.handlebars->37->90" + ] + }, + { + "en": "Invalid Let's Encrypt names, unable to resolve: {0}", + "pl": "Nieprawidłowe nazwy Let's Encrypt, niemożliwe do rozwiązania: {0}", + "xloc": [ + "default.handlebars->37->92" ] }, { @@ -29812,7 +29880,7 @@ "zh-chs": "无效的PKCS签名", "zh-cht": "無效的PKCS簽名", "xloc": [ - "default.handlebars->35->2557" + "default.handlebars->37->2589" ] }, { @@ -29836,7 +29904,7 @@ "zh-chs": "無效的RSA密碼", "zh-cht": "無效的RSA密碼", "xloc": [ - "default.handlebars->35->2558" + "default.handlebars->37->2590" ] }, { @@ -29860,7 +29928,14 @@ "zh-chs": "无效的短信", "xloc": [ "default-mobile.handlebars->11->689", - "default.handlebars->35->2545" + "default.handlebars->37->2577" + ] + }, + { + "en": "Invalid \\\"LoginCookieEncryptionKey\\\" in config.json.", + "pl": "Nieprawidłowy \\\"LoginCookieEncryptionKey\\\" w config.json.", + "xloc": [ + "default.handlebars->37->98" ] }, { @@ -29910,7 +29985,7 @@ "zh-chs": "无效域", "xloc": [ "default-mobile.handlebars->11->669", - "default.handlebars->35->2525" + "default.handlebars->37->2557" ] }, { @@ -29954,7 +30029,7 @@ "zh-chs": "不合规电邮", "xloc": [ "default-mobile.handlebars->11->668", - "default.handlebars->35->2524" + "default.handlebars->37->2556" ] }, { @@ -30054,8 +30129,8 @@ "xloc": [ "default-mobile.handlebars->11->667", "default-mobile.handlebars->11->78", - "default.handlebars->35->2523", - "default.handlebars->35->265" + "default.handlebars->37->2555", + "default.handlebars->37->287" ] }, { @@ -30079,7 +30154,7 @@ "zh-chs": "网站权限无效", "xloc": [ "default-mobile.handlebars->11->670", - "default.handlebars->35->2526" + "default.handlebars->37->2558" ] }, { @@ -30128,7 +30203,7 @@ "tr": "{0}, {1}, {2}'den geçersiz kullanıcı giriş denemesi", "zh-chs": "来自 {0}、{1}、{2} 的无效用户登录尝试", "xloc": [ - "default.handlebars->35->2091" + "default.handlebars->37->2123" ] }, { @@ -30152,7 +30227,7 @@ "zh-chs": "无效的用户名", "xloc": [ "default-mobile.handlebars->11->666", - "default.handlebars->35->2522" + "default.handlebars->37->2554" ] }, { @@ -30196,7 +30271,7 @@ "zh-chs": "使电邮无效", "zh-cht": "使電郵無效", "xloc": [ - "default.handlebars->35->2157" + "default.handlebars->37->2189" ] }, { @@ -30241,7 +30316,7 @@ "zh-chs": "邀请连接({0})", "zh-cht": "邀請鏈結({0})", "xloc": [ - "default.handlebars->35->230" + "default.handlebars->37->252" ] }, { @@ -30265,7 +30340,7 @@ "zh-chs": "邀请类型", "zh-cht": "邀請類型", "xloc": [ - "default.handlebars->35->420" + "default.handlebars->37->445" ] }, { @@ -30289,7 +30364,7 @@ "zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:", "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->35->1901" + "default.handlebars->37->1933" ] }, { @@ -30337,9 +30412,9 @@ "zh-chs": "邀请", "zh-cht": "邀請", "xloc": [ - "default.handlebars->35->1733", - "default.handlebars->35->379", - "default.handlebars->35->459" + "default.handlebars->37->1765", + "default.handlebars->37->401", + "default.handlebars->37->484" ] }, { @@ -30364,12 +30439,12 @@ "zh-cht": "邀請碼", "xloc": [ "default-mobile.handlebars->11->664", - "default.handlebars->35->1716", - "default.handlebars->35->1895", - "default.handlebars->35->1900", - "default.handlebars->35->1902", - "default.handlebars->35->1907", - "default.handlebars->35->2520" + "default.handlebars->37->1748", + "default.handlebars->37->1927", + "default.handlebars->37->1932", + "default.handlebars->37->1934", + "default.handlebars->37->1939", + "default.handlebars->37->2552" ] }, { @@ -30393,7 +30468,7 @@ "zh-chs": "通过共享邀请连结来邀请某人安装网格代理。该连结为用户提供“ {0} ”设备组的安装说明。该连结是公用的,不需要这服务器的帐户。", "zh-cht": "通過共享邀請鏈結來邀請某人安裝mesh agent。該鏈結將用戶指向“ {0} ”裝置群的安裝說明。該鏈結是公用的,不需要這伺服器的帳戶。", "xloc": [ - "default.handlebars->35->446" + "default.handlebars->37->471" ] }, { @@ -30417,8 +30492,8 @@ "zh-chs": "邀请某人在该设备组上安装网格代理。", "zh-cht": "邀請某人在該裝置群上安裝mesh agent。", "xloc": [ - "default.handlebars->35->1732", - "default.handlebars->35->378" + "default.handlebars->37->1764", + "default.handlebars->37->400" ] }, { @@ -30442,7 +30517,7 @@ "zh-chs": "邀请某人安装网状代理。将发送一封电邮,其中包含指向“ {0} ”设备组的网状代理安装的连结。", "zh-cht": "邀請某人安裝mesh agent。將發送一封電郵,其中包含指向“ {0} ”裝置群的mesh agent安裝的鏈結。", "xloc": [ - "default.handlebars->35->423" + "default.handlebars->37->448" ] }, { @@ -30466,7 +30541,7 @@ "zh-chs": "爱尔兰文", "zh-cht": "愛爾蘭文", "xloc": [ - "default.handlebars->35->1472" + "default.handlebars->37->1504" ] }, { @@ -30490,7 +30565,7 @@ "zh-chs": "意大利文(标准)", "zh-cht": "意大利文(標準)", "xloc": [ - "default.handlebars->35->1473" + "default.handlebars->37->1505" ] }, { @@ -30514,7 +30589,7 @@ "zh-chs": "意大利文(瑞士)", "zh-cht": "義大利文(瑞士)", "xloc": [ - "default.handlebars->35->1474" + "default.handlebars->37->1506" ] }, { @@ -30558,7 +30633,7 @@ "zh-chs": "JSON", "zh-cht": "JSON", "xloc": [ - "default.handlebars->35->2117" + "default.handlebars->37->2149" ] }, { @@ -30582,9 +30657,9 @@ "zh-chs": "JSON格式", "zh-cht": "JSON格式", "xloc": [ - "default.handlebars->35->2122", - "default.handlebars->35->2189", - "default.handlebars->35->622" + "default.handlebars->37->2154", + "default.handlebars->37->2221", + "default.handlebars->37->648" ] }, { @@ -30608,7 +30683,7 @@ "zh-chs": "日文", "zh-cht": "日文", "xloc": [ - "default.handlebars->35->1475" + "default.handlebars->37->1507" ] }, { @@ -30632,7 +30707,7 @@ "zh-chs": "已加入桌面Multiplex会话", "zh-cht": "已加入桌面Multiplex會話", "xloc": [ - "default.handlebars->35->1985" + "default.handlebars->37->2017" ] }, { @@ -30656,7 +30731,7 @@ "zh-chs": "卡纳达文", "zh-cht": "卡納達文", "xloc": [ - "default.handlebars->35->1476" + "default.handlebars->37->1508" ] }, { @@ -30680,7 +30755,7 @@ "zh-chs": "克什米尔文", "zh-cht": "克什米爾文", "xloc": [ - "default.handlebars->35->1477" + "default.handlebars->37->1509" ] }, { @@ -30704,7 +30779,7 @@ "zh-chs": "哈萨克文", "zh-cht": "哈薩克文", "xloc": [ - "default.handlebars->35->1478" + "default.handlebars->37->1510" ] }, { @@ -30728,7 +30803,7 @@ "zh-chs": "保留现有密码", "zh-cht": "保留現有密碼", "xloc": [ - "default.handlebars->35->1760" + "default.handlebars->37->1792" ] }, { @@ -30752,7 +30827,7 @@ "zh-chs": "内核驱动器", "zh-cht": "內核驅動器", "xloc": [ - "default.handlebars->35->1129" + "default.handlebars->37->1161" ] }, { @@ -30777,8 +30852,8 @@ "xloc": [ "default-mobile.handlebars->11->412", "default-mobile.handlebars->11->429", - "default.handlebars->35->1153", - "default.handlebars->35->1180" + "default.handlebars->37->1185", + "default.handlebars->37->1212" ] }, { @@ -30802,8 +30877,8 @@ "zh-chs": "键名", "zh-cht": "鍵名", "xloc": [ - "default.handlebars->35->1369", - "default.handlebars->35->1372" + "default.handlebars->37->1401", + "default.handlebars->37->1404" ] }, { @@ -30828,8 +30903,8 @@ "xloc": [ "default-mobile.handlebars->11->413", "default-mobile.handlebars->11->430", - "default.handlebars->35->1155", - "default.handlebars->35->1181" + "default.handlebars->37->1187", + "default.handlebars->37->1213" ] }, { @@ -30854,7 +30929,7 @@ "xloc": [ "default-mobile.handlebars->11->415", "default-mobile.handlebars->11->432", - "default.handlebars->35->1154" + "default.handlebars->37->1186" ] }, { @@ -30899,7 +30974,7 @@ "zh-chs": "键盘快捷键自定义", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->1->1", - "default.handlebars->35->1114" + "default.handlebars->37->1140" ] }, { @@ -30944,7 +31019,7 @@ "zh-chs": "高棉文", "zh-cht": "高棉文", "xloc": [ - "default.handlebars->35->1479" + "default.handlebars->37->1511" ] }, { @@ -30968,7 +31043,7 @@ "zh-chs": "杀死进程{0}", "zh-cht": "殺死進程{0}", "xloc": [ - "default.handlebars->35->2000" + "default.handlebars->37->2032" ] }, { @@ -30992,7 +31067,7 @@ "zh-chs": "吉尔吉斯", "zh-cht": "吉爾吉斯", "xloc": [ - "default.handlebars->35->1480" + "default.handlebars->37->1512" ] }, { @@ -31016,7 +31091,7 @@ "zh-chs": "克林贡", "zh-cht": "克林貢", "xloc": [ - "default.handlebars->35->1481" + "default.handlebars->37->1513" ] }, { @@ -31041,7 +31116,7 @@ "zh-cht": "已知的", "xloc": [ "default-mobile.handlebars->11->541", - "default.handlebars->35->1301" + "default.handlebars->37->1333" ] }, { @@ -31065,7 +31140,7 @@ "zh-chs": "韩文", "zh-cht": "韓文", "xloc": [ - "default.handlebars->35->1482" + "default.handlebars->37->1514" ] }, { @@ -31089,7 +31164,7 @@ "zh-chs": "韩文(朝鲜)", "zh-cht": "韓文(朝鮮)", "xloc": [ - "default.handlebars->35->1483" + "default.handlebars->37->1515" ] }, { @@ -31113,7 +31188,7 @@ "zh-chs": "韩文(韩国)", "zh-cht": "韓文(韓國)", "xloc": [ - "default.handlebars->35->1484" + "default.handlebars->37->1516" ] }, { @@ -31137,8 +31212,8 @@ "zh-chs": "如果", "zh-cht": "如果", "xloc": [ - "default.handlebars->35->1146", - "default.handlebars->35->1169", + "default.handlebars->37->1178", + "default.handlebars->37->1201", "sharing.handlebars->11->26", "sharing.handlebars->11->40" ] @@ -31164,7 +31239,7 @@ "zh-chs": "语言", "zh-cht": "語言", "xloc": [ - "default.handlebars->35->1579" + "default.handlebars->37->1611" ] }, { @@ -31232,7 +31307,7 @@ "zh-chs": "大焦点", "zh-cht": "大焦點", "xloc": [ - "default.handlebars->35->1088" + "default.handlebars->37->1114" ] }, { @@ -31485,7 +31560,7 @@ "zh-chs": "最后访问", "zh-cht": "最後訪問", "xloc": [ - "default.handlebars->35->2130" + "default.handlebars->37->2162" ] }, { @@ -31509,7 +31584,7 @@ "zh-chs": "上次登录", "zh-cht": "上次登入", "xloc": [ - "default.handlebars->35->2353" + "default.handlebars->37->2385" ] }, { @@ -31532,8 +31607,8 @@ "tr": "Son görülen", "zh-chs": "最后一次露面", "xloc": [ - "default.handlebars->35->284", - "default.handlebars->35->307", + "default.handlebars->37->306", + "default.handlebars->37->329", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->11" ] }, @@ -31561,12 +31636,12 @@ "default-mobile.handlebars->11->502", "default-mobile.handlebars->11->503", "default-mobile.handlebars->11->504", - "default.handlebars->35->114", - "default.handlebars->35->116", - "default.handlebars->35->118", - "default.handlebars->35->1252", - "default.handlebars->35->1253", - "default.handlebars->35->1254" + "default.handlebars->37->1284", + "default.handlebars->37->1285", + "default.handlebars->37->1286", + "default.handlebars->37->135", + "default.handlebars->37->137", + "default.handlebars->37->139" ] }, { @@ -31592,9 +31667,9 @@ "xloc": [ "default-mobile.handlebars->11->499", "default-mobile.handlebars->11->501", - "default.handlebars->35->113", - "default.handlebars->35->1249", - "default.handlebars->35->1251" + "default.handlebars->37->1281", + "default.handlebars->37->1283", + "default.handlebars->37->134" ] }, { @@ -31618,7 +31693,7 @@ "zh-chs": "上次更改:{0}", "zh-cht": "上次更改:{0}", "xloc": [ - "default.handlebars->35->2357" + "default.handlebars->37->2389" ] }, { @@ -31666,7 +31741,7 @@ "zh-chs": "最后接口更新", "zh-cht": "最後介面更新", "xloc": [ - "default.handlebars->35->120" + "default.handlebars->37->141" ] }, { @@ -31690,7 +31765,7 @@ "zh-chs": "上次登录:{0}", "zh-cht": "上次登入:{0}", "xloc": [ - "default.handlebars->35->2140" + "default.handlebars->37->2172" ] }, { @@ -31714,8 +31789,8 @@ "zh-chs": "最后一次发现:", "zh-cht": "最後一次發現:", "xloc": [ - "default.handlebars->35->83", - "default.handlebars->35->847" + "default.handlebars->37->104", + "default.handlebars->37->873" ] }, { @@ -31807,7 +31882,7 @@ "zh-chs": "最新版本", "zh-cht": "最新版本", "xloc": [ - "default.handlebars->35->159" + "default.handlebars->37->180" ] }, { @@ -31831,7 +31906,7 @@ "zh-chs": "拉丁文", "zh-cht": "拉丁文", "xloc": [ - "default.handlebars->35->1485" + "default.handlebars->37->1517" ] }, { @@ -31855,7 +31930,7 @@ "zh-chs": "拉脱维亚文", "zh-cht": "拉脫維亞文", "xloc": [ - "default.handlebars->35->1486" + "default.handlebars->37->1518" ] }, { @@ -31879,7 +31954,7 @@ "zh-chs": "启动MeshCentral路由器", "zh-cht": "啟動MeshCentral路由器", "xloc": [ - "default.handlebars->35->1031" + "default.handlebars->37->1057" ] }, { @@ -31924,7 +31999,7 @@ "zh-chs": "启动基于Web的RDP连接到此设备", "zh-cht": "啟動基於Web的RDP連接到此裝置", "xloc": [ - "default.handlebars->35->831" + "default.handlebars->37->857" ] }, { @@ -31947,7 +32022,7 @@ "tr": "Bu cihaza web tabanlı SSH oturumu başlat", "zh-chs": "启动与此设备的基于 Web 的 SSH 会话", "xloc": [ - "default.handlebars->35->833" + "default.handlebars->37->859" ] }, { @@ -31970,7 +32045,7 @@ "tr": "Bu cihaza web tabanlı VNC oturumu başlat", "zh-chs": "启动与此设备的基于 Web 的 VNC 会话", "xloc": [ - "default.handlebars->35->829" + "default.handlebars->37->855" ] }, { @@ -31994,7 +32069,7 @@ "zh-chs": "如没有请留空。", "zh-cht": "如沒有請留空。", "xloc": [ - "default.handlebars->35->2403" + "default.handlebars->37->2435" ] }, { @@ -32018,7 +32093,7 @@ "zh-chs": "剩下", "xloc": [ "default-mobile.handlebars->11->385", - "default.handlebars->35->1100" + "default.handlebars->37->1126" ] }, { @@ -32071,7 +32146,7 @@ "zh-chs": "离开桌面多路复用会话", "zh-cht": "離開桌面多路復用會話", "xloc": [ - "default.handlebars->35->1986" + "default.handlebars->37->2018" ] }, { @@ -32095,7 +32170,7 @@ "zh-chs": "减", "zh-cht": "減", "xloc": [ - "default.handlebars->35->2653" + "default.handlebars->37->2685" ] }, { @@ -32119,7 +32194,7 @@ "zh-chs": "灯光模式", "xloc": [ "default-mobile.handlebars->11->84", - "default.handlebars->35->59" + "default.handlebars->37->59" ] }, { @@ -32143,8 +32218,8 @@ "zh-chs": "限制事件", "zh-cht": "限制事件", "xloc": [ - "default.handlebars->35->884", - "default.handlebars->35->906" + "default.handlebars->37->910", + "default.handlebars->37->932" ] }, { @@ -32194,9 +32269,9 @@ "zh-cht": "有限輸入", "xloc": [ "default-mobile.handlebars->11->641", - "default.handlebars->35->1875", - "default.handlebars->35->876", - "default.handlebars->35->898" + "default.handlebars->37->1907", + "default.handlebars->37->902", + "default.handlebars->37->924" ] }, { @@ -32221,7 +32296,7 @@ "zh-cht": "僅有限輸入", "xloc": [ "default-mobile.handlebars->11->614", - "default.handlebars->35->1829" + "default.handlebars->37->1861" ] }, { @@ -32270,8 +32345,8 @@ "zh-chs": "连结过期", "zh-cht": "鏈結過期", "xloc": [ - "default.handlebars->35->433", - "default.handlebars->35->447" + "default.handlebars->37->458", + "default.handlebars->37->472" ] }, { @@ -32295,7 +32370,7 @@ "zh-chs": "连结邀请", "zh-cht": "鏈結邀請", "xloc": [ - "default.handlebars->35->421" + "default.handlebars->37->446" ] }, { @@ -32318,7 +32393,7 @@ "tr": "Bağlantılar", "zh-chs": "链接", "xloc": [ - "default.handlebars->35->303" + "default.handlebars->37->325" ] }, { @@ -32345,7 +32420,7 @@ "agentinvite.handlebars->container->column_l->5->1->tlinuxtab", "agentinvite.handlebars->container->column_l->5->linuxtab->1", "default-mobile.handlebars->11->262", - "default.handlebars->35->713" + "default.handlebars->37->739" ] }, { @@ -32368,7 +32443,7 @@ "tr": "Linux (SSH/SCP/VNC)", "zh-chs": "Linux (SSH/SCP/VNC)", "xloc": [ - "default.handlebars->35->388" + "default.handlebars->37->410" ] }, { @@ -32392,7 +32467,7 @@ "zh-chs": "Linux / BSD", "zh-cht": "Linux / BSD", "xloc": [ - "default.handlebars->35->461" + "default.handlebars->37->486" ] }, { @@ -32416,7 +32491,7 @@ "zh-chs": "Linux / BSD(卸载)", "zh-cht": "Linux / BSD(解除安裝)", "xloc": [ - "default.handlebars->35->467" + "default.handlebars->37->492" ] }, { @@ -32440,7 +32515,7 @@ "zh-chs": "Linux / BSD / macOS二进制安装程序", "zh-cht": "Linux / BSD / macOS二進制安裝軟體", "xloc": [ - "default.handlebars->35->462" + "default.handlebars->37->487" ] }, { @@ -32465,7 +32540,7 @@ "zh-cht": "Linux 32位", "xloc": [ "default-mobile.handlebars->11->11", - "default.handlebars->35->18" + "default.handlebars->37->18" ] }, { @@ -32490,7 +32565,7 @@ "zh-cht": "Linux 64位", "xloc": [ "default-mobile.handlebars->11->12", - "default.handlebars->35->19" + "default.handlebars->37->19" ] }, { @@ -32515,7 +32590,7 @@ "zh-cht": "Linux ARM", "xloc": [ "default-mobile.handlebars->11->16", - "default.handlebars->35->23" + "default.handlebars->37->23" ] }, { @@ -32540,7 +32615,7 @@ "zh-cht": "Linux ARM 64 bit (glibc/2.24 NOKVM)", "xloc": [ "default-mobile.handlebars->11->38", - "default.handlebars->35->45" + "default.handlebars->37->45" ] }, { @@ -32564,7 +32639,7 @@ "zh-chs": "Linux ARM,Raspberry Pi(32位)", "zh-cht": "Linux ARM,Raspberry Pi(32位)", "xloc": [ - "default.handlebars->35->1039" + "default.handlebars->37->1065" ] }, { @@ -32588,7 +32663,7 @@ "zh-chs": "Linux ARM, Raspberry Pi (64位)", "zh-cht": "Linux ARM, Raspberry Pi (64位)", "xloc": [ - "default.handlebars->35->1040" + "default.handlebars->37->1066" ] }, { @@ -32613,7 +32688,7 @@ "zh-cht": "Linux NoKVM x86-32位", "xloc": [ "default-mobile.handlebars->11->25", - "default.handlebars->35->32" + "default.handlebars->37->32" ] }, { @@ -32638,7 +32713,7 @@ "zh-cht": "Linux NoKVM x86-64位", "xloc": [ "default-mobile.handlebars->11->26", - "default.handlebars->35->33" + "default.handlebars->37->33" ] }, { @@ -32662,7 +32737,7 @@ "zh-chs": "Linux路径", "zh-cht": "Linux路徑", "xloc": [ - "default.handlebars->35->609" + "default.handlebars->37->635" ] }, { @@ -32687,7 +32762,7 @@ "zh-cht": "Linux Poky x86-32位", "xloc": [ "default-mobile.handlebars->11->21", - "default.handlebars->35->28" + "default.handlebars->37->28" ] }, { @@ -32712,7 +32787,7 @@ "zh-cht": "Linux Poky x86-64位", "xloc": [ "default-mobile.handlebars->11->24", - "default.handlebars->35->31" + "default.handlebars->37->31" ] }, { @@ -32736,7 +32811,7 @@ "zh-chs": "只限Linux", "zh-cht": "只限Linux", "xloc": [ - "default.handlebars->35->432" + "default.handlebars->37->457" ] }, { @@ -32760,7 +32835,7 @@ "zh-chs": "Linux x86(32位)", "zh-cht": "Linux x86(32位)", "xloc": [ - "default.handlebars->35->1036" + "default.handlebars->37->1062" ] }, { @@ -32784,7 +32859,7 @@ "zh-chs": "Linux x86(64位)", "zh-cht": "Linux x86(64位)", "xloc": [ - "default.handlebars->35->1035" + "default.handlebars->37->1061" ] }, { @@ -32808,8 +32883,8 @@ "zh-chs": "Linux / BSD / macOS命令外壳", "zh-cht": "Linux / BSD / macOS命令外殼", "xloc": [ - "default.handlebars->35->589", - "default.handlebars->35->984" + "default.handlebars->37->1010", + "default.handlebars->37->615" ] }, { @@ -32899,7 +32974,7 @@ "zh-chs": "立陶宛文", "zh-cht": "立陶宛文", "xloc": [ - "default.handlebars->35->1487" + "default.handlebars->37->1519" ] }, { @@ -32949,13 +33024,13 @@ "xloc": [ "default-mobile.handlebars->11->81", "default-mobile.handlebars->11->96", - "default.handlebars->35->1026", - "default.handlebars->35->1346", - "default.handlebars->35->1358", - "default.handlebars->35->1673", - "default.handlebars->35->1677", - "default.handlebars->35->2426", - "default.handlebars->35->2475" + "default.handlebars->37->1052", + "default.handlebars->37->1378", + "default.handlebars->37->1390", + "default.handlebars->37->1705", + "default.handlebars->37->1709", + "default.handlebars->37->2458", + "default.handlebars->37->2507" ] }, { @@ -33068,8 +33143,8 @@ "tr": "Yerel cihazlar, aracı yok", "zh-chs": "本地设备,无代理", "xloc": [ - "default.handlebars->35->1634", - "default.handlebars->35->1684" + "default.handlebars->37->1666", + "default.handlebars->37->1716" ] }, { @@ -33117,7 +33192,7 @@ "zh-chs": "本地用户接受的远程终端请求", "zh-cht": "本地用戶接受的遠程終端請求", "xloc": [ - "default.handlebars->35->2008" + "default.handlebars->37->2040" ] }, { @@ -33141,7 +33216,7 @@ "zh-chs": "本地用户拒绝了远程终端请求", "zh-cht": "本地用戶拒絕了遠程終端請求", "xloc": [ - "default.handlebars->35->2009" + "default.handlebars->37->2041" ] }, { @@ -33165,7 +33240,7 @@ "zh-chs": "本地化设置", "zh-cht": "本地化設置", "xloc": [ - "default.handlebars->35->1582", + "default.handlebars->37->1614", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -33190,7 +33265,7 @@ "zh-chs": "位置", "zh-cht": "位置", "xloc": [ - "default.handlebars->35->817" + "default.handlebars->37->843" ] }, { @@ -33238,7 +33313,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->35->2229" + "default.handlebars->37->2261" ] }, { @@ -33262,7 +33337,7 @@ "zh-chs": "锁定帐户设置", "zh-cht": "鎖定帳戶設置", "xloc": [ - "default.handlebars->35->2232" + "default.handlebars->37->2264" ] }, { @@ -33285,7 +33360,7 @@ "tr": "Masaüstünü Kilitle", "zh-chs": "锁定桌面", "xloc": [ - "default.handlebars->35->923" + "default.handlebars->37->949" ] }, { @@ -33309,11 +33384,12 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->35->2160" + "default.handlebars->37->2192" ] }, { "en": "Lock on Disconnect", + "pl": "Zablokuj na Odłącz", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->3->1->6->3->d7deskAutoLockLabel", "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->d7desktopOtherSettings->d7otherset2->d7deskAutoLockLabel" @@ -33339,7 +33415,7 @@ "tr": "Uzak kullanıcının faresi ve klavyesi kilitlensin mi?", "zh-chs": "锁定远程用户的鼠标和键盘?", "xloc": [ - "default.handlebars->35->920" + "default.handlebars->37->946" ] }, { @@ -33385,7 +33461,7 @@ "tr": "Kullanıcı masaüstü kilitlensin mi?", "zh-chs": "锁定用户桌面?", "xloc": [ - "default.handlebars->35->924" + "default.handlebars->37->950" ] }, { @@ -33409,7 +33485,7 @@ "zh-chs": "已锁定", "zh-cht": "已鎖定", "xloc": [ - "default.handlebars->35->2141" + "default.handlebars->37->2173" ] }, { @@ -33434,8 +33510,8 @@ "zh-cht": "被鎖定賬戶", "xloc": [ "default-mobile.handlebars->11->77", - "default.handlebars->35->2316", - "default.handlebars->35->264" + "default.handlebars->37->2348", + "default.handlebars->37->286" ] }, { @@ -33459,7 +33535,7 @@ "zh-chs": "将远程用户锁定在桌面之外", "zh-cht": "將遠程用戶鎖定在桌面之外", "xloc": [ - "default.handlebars->35->2034" + "default.handlebars->37->2066" ] }, { @@ -33483,7 +33559,7 @@ "zh-chs": "记录事件", "zh-cht": "記錄事件", "xloc": [ - "default.handlebars->35->802" + "default.handlebars->37->828" ] }, { @@ -33606,7 +33682,7 @@ "tr": "Oturum açmış kullanıcılar", "zh-chs": "已登录用户", "xloc": [ - "default.handlebars->35->281" + "default.handlebars->37->303" ] }, { @@ -33761,7 +33837,7 @@ "zh-cht": "登出", "xloc": [ "default-mobile.handlebars->topMenu->logoutMenuOption->0->0", - "default.handlebars->35->56", + "default.handlebars->37->56", "terms.handlebars->3->2" ] }, @@ -33786,7 +33862,7 @@ "zh-chs": "卢森堡文", "zh-cht": "盧森堡文", "xloc": [ - "default.handlebars->35->1488" + "default.handlebars->37->1520" ] }, { @@ -33812,10 +33888,10 @@ "xloc": [ "default-mobile.handlebars->11->514", "default-mobile.handlebars->11->516", - "default.handlebars->35->1264", - "default.handlebars->35->1266", - "default.handlebars->35->1274", - "default.handlebars->35->1276" + "default.handlebars->37->1296", + "default.handlebars->37->1298", + "default.handlebars->37->1306", + "default.handlebars->37->1308" ] }, { @@ -33839,8 +33915,8 @@ "zh-chs": "MAC地址", "zh-cht": "MAC地址", "xloc": [ - "default.handlebars->35->125", - "default.handlebars->35->136" + "default.handlebars->37->146", + "default.handlebars->37->157" ] }, { @@ -33865,8 +33941,8 @@ "zh-cht": "MAC:{0}", "xloc": [ "default-mobile.handlebars->11->517", - "default.handlebars->35->1267", - "default.handlebars->35->1277" + "default.handlebars->37->1299", + "default.handlebars->37->1309" ] }, { @@ -33891,8 +33967,8 @@ "zh-cht": "MAC:{0},網關:{1}", "xloc": [ "default-mobile.handlebars->11->515", - "default.handlebars->35->1265", - "default.handlebars->35->1275" + "default.handlebars->37->1297", + "default.handlebars->37->1307" ] }, { @@ -33917,7 +33993,7 @@ "zh-cht": "MIPS", "xloc": [ "default-mobile.handlebars->11->13", - "default.handlebars->35->20" + "default.handlebars->37->20" ] }, { @@ -33942,7 +34018,7 @@ "zh-cht": "MIPS24KC(OpenWRT)", "xloc": [ "default-mobile.handlebars->11->34", - "default.handlebars->35->41" + "default.handlebars->37->41" ] }, { @@ -33966,7 +34042,7 @@ "zh-chs": "MIPSEL24KC (OpenWRT)", "xloc": [ "default-mobile.handlebars->11->46", - "default.handlebars->35->53" + "default.handlebars->37->53" ] }, { @@ -34016,11 +34092,11 @@ "default-mobile.handlebars->11->570", "default-mobile.handlebars->11->572", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2", - "default.handlebars->35->1331", - "default.handlebars->35->1333", - "default.handlebars->35->334", - "default.handlebars->35->555", - "default.handlebars->35->786", + "default.handlebars->37->1363", + "default.handlebars->37->1365", + "default.handlebars->37->356", + "default.handlebars->37->581", + "default.handlebars->37->812", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2" ] }, @@ -34045,7 +34121,7 @@ "zh-chs": "MQTT凭证", "zh-cht": "MQTT憑證", "xloc": [ - "default.handlebars->35->253" + "default.handlebars->37->275" ] }, { @@ -34069,7 +34145,7 @@ "zh-chs": "MQTT登录", "zh-cht": "MQTT登入", "xloc": [ - "default.handlebars->35->836" + "default.handlebars->37->862" ] }, { @@ -34094,7 +34170,7 @@ "zh-cht": "MQTT通道已連接", "xloc": [ "default-mobile.handlebars->11->309", - "default.handlebars->35->846" + "default.handlebars->37->872" ] }, { @@ -34118,8 +34194,8 @@ "zh-chs": "MQTT已连接", "zh-cht": "MQTT已連接", "xloc": [ - "default.handlebars->35->211", - "default.handlebars->35->845" + "default.handlebars->37->233", + "default.handlebars->37->871" ] }, { @@ -34143,9 +34219,9 @@ "zh-chs": "与设备的MQTT连接已激活。", "zh-cht": "與裝置的MQTT連接已啟動。", "xloc": [ - "default.handlebars->35->333", - "default.handlebars->35->554", - "default.handlebars->35->785" + "default.handlebars->37->355", + "default.handlebars->37->580", + "default.handlebars->37->811" ] }, { @@ -34169,7 +34245,7 @@ "zh-chs": "MQTT已断开连接", "zh-cht": "MQTT已斷開連接", "xloc": [ - "default.handlebars->35->215" + "default.handlebars->37->237" ] }, { @@ -34304,7 +34380,7 @@ "tr": "MacOS Yükleyici", "zh-chs": "MacOS 安装程序", "xloc": [ - "default.handlebars->35->1029" + "default.handlebars->37->1055" ] }, { @@ -34327,7 +34403,7 @@ "tr": "Makine adı", "zh-chs": "机器名称", "xloc": [ - "default.handlebars->35->87" + "default.handlebars->37->108" ] }, { @@ -34351,7 +34427,7 @@ "zh-chs": "主服务器信息", "zh-cht": "主伺服器訊息", "xloc": [ - "default.handlebars->35->2619" + "default.handlebars->37->2651" ] }, { @@ -34375,7 +34451,7 @@ "zh-chs": "马来文", "zh-cht": "馬來文", "xloc": [ - "default.handlebars->35->1490" + "default.handlebars->37->1522" ] }, { @@ -34399,7 +34475,7 @@ "zh-chs": "玛拉雅拉姆文", "zh-cht": "馬拉雅拉姆文", "xloc": [ - "default.handlebars->35->1491" + "default.handlebars->37->1523" ] }, { @@ -34423,7 +34499,7 @@ "zh-chs": "马耳他文", "zh-cht": "馬耳他文", "xloc": [ - "default.handlebars->35->1492" + "default.handlebars->37->1524" ] }, { @@ -34447,7 +34523,7 @@ "zh-chs": "管理帐户图片", "xloc": [ "default-mobile.handlebars->11->82", - "default.handlebars->35->1347" + "default.handlebars->37->1379" ] }, { @@ -34472,7 +34548,7 @@ "zh-cht": "管理備用碼", "xloc": [ "default-mobile.handlebars->11->72", - "default.handlebars->35->186" + "default.handlebars->37->208" ] }, { @@ -34498,8 +34574,8 @@ "xloc": [ "default-mobile.handlebars->11->611", "default-mobile.handlebars->11->631", - "default.handlebars->35->1826", - "default.handlebars->35->1864" + "default.handlebars->37->1858", + "default.handlebars->37->1896" ] }, { @@ -34525,8 +34601,8 @@ "xloc": [ "default-mobile.handlebars->11->610", "default-mobile.handlebars->11->630", - "default.handlebars->35->1825", - "default.handlebars->35->1863" + "default.handlebars->37->1857", + "default.handlebars->37->1895" ] }, { @@ -34550,7 +34626,7 @@ "zh-chs": "管理设备", "zh-cht": "管理裝置", "xloc": [ - "default.handlebars->35->893" + "default.handlebars->37->919" ] }, { @@ -34574,7 +34650,7 @@ "zh-chs": "管理录音", "zh-cht": "管理錄音", "xloc": [ - "default.handlebars->35->2227" + "default.handlebars->37->2259" ] }, { @@ -34598,7 +34674,7 @@ "zh-chs": "管理安全密钥", "zh-cht": "管理安全密鑰", "xloc": [ - "default.handlebars->35->193" + "default.handlebars->37->215" ] }, { @@ -34622,7 +34698,7 @@ "zh-chs": "管理用户组", "zh-cht": "管理用戶群", "xloc": [ - "default.handlebars->35->2226" + "default.handlebars->37->2258" ] }, { @@ -34646,8 +34722,8 @@ "zh-chs": "管理用户", "zh-cht": "管理用戶", "xloc": [ - "default.handlebars->35->2225", - "default.handlebars->35->892" + "default.handlebars->37->2257", + "default.handlebars->37->918" ] }, { @@ -34820,7 +34896,7 @@ "zh-chs": "使用软件代理进行管理", "zh-cht": "使用軟體代理進行管理", "xloc": [ - "default.handlebars->35->1636" + "default.handlebars->37->1668" ] }, { @@ -34845,7 +34921,7 @@ "zh-cht": "使用軟體代理進行管理", "xloc": [ "default-mobile.handlebars->11->586", - "default.handlebars->35->1683" + "default.handlebars->37->1715" ] }, { @@ -34869,7 +34945,7 @@ "zh-chs": "经理", "zh-cht": "經理", "xloc": [ - "default.handlebars->35->2146" + "default.handlebars->37->2178" ] }, { @@ -34935,7 +35011,7 @@ "zh-chs": "毛利文", "zh-cht": "毛利文", "xloc": [ - "default.handlebars->35->1493" + "default.handlebars->37->1525" ] }, { @@ -35024,7 +35100,7 @@ "zh-chs": "马拉地文", "zh-cht": "馬拉地文", "xloc": [ - "default.handlebars->35->1494" + "default.handlebars->37->1526" ] }, { @@ -35048,7 +35124,7 @@ "zh-chs": "达到连接数量上限", "zh-cht": "達到連接數量上限", "xloc": [ - "default.handlebars->35->2563" + "default.handlebars->37->2595" ] }, { @@ -35125,8 +35201,8 @@ "zh-chs": "Megabyte", "zh-cht": "Megabyte", "xloc": [ - "default.handlebars->35->2604", - "default.handlebars->35->2609" + "default.handlebars->37->2636", + "default.handlebars->37->2641" ] }, { @@ -35151,8 +35227,8 @@ "zh-cht": "記憶體", "xloc": [ "default-mobile.handlebars->11->559", - "default.handlebars->35->1319", - "default.handlebars->35->2583", + "default.handlebars->37->1351", + "default.handlebars->37->2615", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -35181,16 +35257,16 @@ "default-mobile.handlebars->11->306", "default-mobile.handlebars->11->498", "default-mobile.handlebars->11->506", - "default.handlebars->35->1248", - "default.handlebars->35->1256", - "default.handlebars->35->481", - "default.handlebars->35->485", - "default.handlebars->35->495", - "default.handlebars->35->508", - "default.handlebars->35->511", - "default.handlebars->35->517", - "default.handlebars->35->717", - "default.handlebars->35->778" + "default.handlebars->37->1280", + "default.handlebars->37->1288", + "default.handlebars->37->506", + "default.handlebars->37->510", + "default.handlebars->37->521", + "default.handlebars->37->534", + "default.handlebars->37->537", + "default.handlebars->37->543", + "default.handlebars->37->743", + "default.handlebars->37->804" ] }, { @@ -35215,7 +35291,7 @@ "zh-cht": "網格代理控制台", "xloc": [ "default-mobile.handlebars->11->618", - "default.handlebars->35->1835" + "default.handlebars->37->1867" ] }, { @@ -35287,7 +35363,7 @@ "zh-chs": "网格中继", "zh-cht": "Mesh Relay", "xloc": [ - "default.handlebars->35->784" + "default.handlebars->37->810" ] }, { @@ -35311,9 +35387,9 @@ "zh-chs": "已连接网状代理并准备使用。", "zh-cht": "已連接Mesh Agent並準備使用。", "xloc": [ - "default.handlebars->35->325", - "default.handlebars->35->546", - "default.handlebars->35->777" + "default.handlebars->37->347", + "default.handlebars->37->572", + "default.handlebars->37->803" ] }, { @@ -35337,9 +35413,9 @@ "zh-chs": "网格代理可以经过其他代理作为中继访问得到。", "zh-cht": "Mesh Agent可以經過其他代理作為中繼訪問得到。", "xloc": [ - "default.handlebars->35->331", - "default.handlebars->35->552", - "default.handlebars->35->783" + "default.handlebars->37->353", + "default.handlebars->37->578", + "default.handlebars->37->809" ] }, { @@ -35363,8 +35439,8 @@ "zh-chs": "MeshAction(.txt)", "zh-cht": "MeshAction(.txt)", "xloc": [ - "default.handlebars->35->1046", - "default.handlebars->35->1048" + "default.handlebars->37->1072", + "default.handlebars->37->1074" ] }, { @@ -35388,7 +35464,7 @@ "zh-chs": "MeshAgent流量", "zh-cht": "MeshAgent流量", "xloc": [ - "default.handlebars->35->2621" + "default.handlebars->37->2653" ] }, { @@ -35412,7 +35488,7 @@ "zh-chs": "MeshAgent更新", "zh-cht": "MeshAgent更新", "xloc": [ - "default.handlebars->35->2622" + "default.handlebars->37->2654" ] }, { @@ -35478,7 +35554,7 @@ "tr": "MeshCentral Yardımcısı", "zh-chs": "MeshCentral 助手", "xloc": [ - "default.handlebars->35->465" + "default.handlebars->37->490" ] }, { @@ -35501,8 +35577,8 @@ "tr": "Windows için MeshCentral Yardımcısı", "zh-chs": "适用于 Windows 的 MeshCentral 助手", "xloc": [ - "default.handlebars->35->500", - "default.handlebars->35->504" + "default.handlebars->37->526", + "default.handlebars->37->530" ] }, { @@ -35545,7 +35621,7 @@ "tr": "MeshCentral Assistant, kullanıcıların yardım istemek için kullanabilecekleri bir Windows aracıdır. \\\"{0}\\\" cihaz grubuna bağlanacak bir sürümü indirmek için aşağıdaki bağlantıyı kullanın.", "zh-chs": "MeshCentral Assistant 是一个 Windows 工具,用户可以使用它来寻求帮助。使用下面的链接下载将连接到设备组 \\\"{0}\\\" 的版本。", "xloc": [ - "default.handlebars->35->499" + "default.handlebars->37->525" ] }, { @@ -35568,7 +35644,7 @@ "tr": "MeshCentral Assistant, kullanıcıların yardım istemek için kullanabilecekleri bir Windows aracıdır. Arka plan aracısını izleyecek bir sürümü indirmek için aşağıdaki bağlantıyı kullanın.", "zh-chs": "MeshCentral Assistant 是一个 Windows 工具,用户可以使用它来寻求帮助。使用下面的链接下载将监控后台代理的版本。", "xloc": [ - "default.handlebars->35->503" + "default.handlebars->37->529" ] }, { @@ -35616,7 +35692,7 @@ "zh-chs": "MeshCentral错误", "zh-cht": "MeshCentral錯誤", "xloc": [ - "default.handlebars->35->1676" + "default.handlebars->37->1708" ] }, { @@ -35640,7 +35716,7 @@ "zh-chs": "MeshCentral路由器", "zh-cht": "MeshCentral Router", "xloc": [ - "default.handlebars->35->1032" + "default.handlebars->37->1058" ] }, { @@ -35683,7 +35759,7 @@ "tr": "MeshCentral Yönlendirici Bağlantıları", "zh-chs": "MeshCentral 路由器链接", "xloc": [ - "default.handlebars->35->280" + "default.handlebars->37->302" ] }, { @@ -35747,7 +35823,14 @@ "zh-chs": "MeshCentral 路由器是Windows工具,用于TCP端口映射。例如,您可以通过该服务器将RDP放入远程设备。", "zh-cht": "MeshCentral Router是Windows工具,用於TCP介面映射。例如,你可以通過該伺服器將RDP放入遠程裝置。", "xloc": [ - "default.handlebars->35->1027" + "default.handlebars->37->1053" + ] + }, + { + "en": "MeshCentral SSH support requires NodeJS 11 or higher.", + "pl": "Obsługa MeshCentral SSH wymaga NodeJS 11 lub nowszego.", + "xloc": [ + "default.handlebars->37->79" ] }, { @@ -35771,8 +35854,8 @@ "zh-chs": "MeshCentral服务器错误", "zh-cht": "MeshCentral伺服器錯誤", "xloc": [ - "default.handlebars->35->163", - "default.handlebars->35->167" + "default.handlebars->37->184", + "default.handlebars->37->188" ] }, { @@ -35796,7 +35879,7 @@ "zh-chs": "MeshCentral服务器同级化", "zh-cht": "MeshCentral伺服器同級化", "xloc": [ - "default.handlebars->35->2620" + "default.handlebars->37->2652" ] }, { @@ -35844,9 +35927,9 @@ "zh-chs": "MeshCentral版本", "zh-cht": "MeshCentral版本", "xloc": [ - "default.handlebars->35->160", - "default.handlebars->35->162", - "default.handlebars->35->1672" + "default.handlebars->37->1704", + "default.handlebars->37->181", + "default.handlebars->37->183" ] }, { @@ -35870,9 +35953,9 @@ "zh-chs": "MeshCmd", "zh-cht": "MeshCmd", "xloc": [ - "default.handlebars->35->1044", - "default.handlebars->35->312", - "default.handlebars->35->819" + "default.handlebars->37->1070", + "default.handlebars->37->334", + "default.handlebars->37->845" ] }, { @@ -35896,7 +35979,7 @@ "zh-chs": "MeshCmd(Linux ARM,32位)", "zh-cht": "MeshCmd(Linux ARM,32位)", "xloc": [ - "default.handlebars->35->1056" + "default.handlebars->37->1082" ] }, { @@ -35920,7 +36003,7 @@ "zh-chs": "MeshCmd(Linux ARM,64位)", "zh-cht": "MeshCmd(Linux ARM,64位)", "xloc": [ - "default.handlebars->35->1057" + "default.handlebars->37->1083" ] }, { @@ -35944,7 +36027,7 @@ "zh-chs": "MeshCmd(Linux x86,32bit)", "zh-cht": "MeshCmd(Linux x86,32bit)", "xloc": [ - "default.handlebars->35->1052" + "default.handlebars->37->1078" ] }, { @@ -35968,7 +36051,7 @@ "zh-chs": "MeshCmd(Linux x86,64位)", "zh-cht": "MeshCmd(Linux x86,64位)", "xloc": [ - "default.handlebars->35->1053" + "default.handlebars->37->1079" ] }, { @@ -35992,7 +36075,7 @@ "zh-chs": "MeshCmd(Win32可执行档案)", "zh-cht": "MeshCmd(Win32可執行檔案)", "xloc": [ - "default.handlebars->35->1050" + "default.handlebars->37->1076" ] }, { @@ -36016,7 +36099,7 @@ "zh-chs": "MeshCmd(Win64可执行档案)", "zh-cht": "MeshCmd(Win64可執行檔案)", "xloc": [ - "default.handlebars->35->1051" + "default.handlebars->37->1077" ] }, { @@ -36061,7 +36144,7 @@ "zh-chs": "MeshCmd(macOS,ARM-64位)", "zh-cht": "MeshCmd(macOS,ARM-64位)", "xloc": [ - "default.handlebars->35->1055" + "default.handlebars->37->1081" ] }, { @@ -36085,7 +36168,7 @@ "zh-chs": "MeshCmd(macOS,x86-ARM-64位)", "zh-cht": "MeshCmd(macOS,x86-ARM-64位)", "xloc": [ - "default.handlebars->35->1054" + "default.handlebars->37->1080" ] }, { @@ -36109,7 +36192,7 @@ "zh-chs": "MeshCmd是一个可以执行许多不同操作的命令行工具。可以选择下载和编辑操作档案以提供服务器信息和凭据。", "zh-cht": "MeshCmd是一個可以執行許多不同操作的命令行工具。可以選擇下載和編輯操作檔案以提供伺服器訊息和憑據。", "xloc": [ - "default.handlebars->35->1041" + "default.handlebars->37->1067" ] }, { @@ -36199,9 +36282,9 @@ "zh-chs": "消息", "zh-cht": "訊息", "xloc": [ - "default.handlebars->35->1007", - "default.handlebars->35->444", - "default.handlebars->35->804" + "default.handlebars->37->1033", + "default.handlebars->37->469", + "default.handlebars->37->830" ] }, { @@ -36225,7 +36308,7 @@ "zh-chs": "留言框", "zh-cht": "留言框", "xloc": [ - "default.handlebars->35->604" + "default.handlebars->37->630" ] }, { @@ -36249,7 +36332,7 @@ "zh-chs": "消息调度器", "zh-cht": "電郵調度器", "xloc": [ - "default.handlebars->35->2618" + "default.handlebars->37->2650" ] }, { @@ -36320,7 +36403,7 @@ "tr": "haberci", "zh-chs": "信使", "xloc": [ - "default.handlebars->35->2488" + "default.handlebars->37->2520" ] }, { @@ -36397,6 +36480,20 @@ "login2.handlebars->7->46" ] }, + { + "en": "Missing Let's Encrypt email address.", + "pl": "Brak adresu e-mail Let's Encrypt.", + "xloc": [ + "default.handlebars->37->88" + ] + }, + { + "en": "Missing WebDAV parameters.", + "pl": "Brak parametrów WebDAV.", + "xloc": [ + "default.handlebars->37->80" + ] + }, { "cs": "Mobilní zařízení", "de": "Mobiles Gerät", @@ -36418,7 +36515,7 @@ "zh-chs": "移动设备", "xloc": [ "default-mobile.handlebars->11->512", - "default.handlebars->35->1262" + "default.handlebars->37->1294" ] }, { @@ -36441,7 +36538,7 @@ "tr": "Mobil cihaz", "zh-chs": "移动设备", "xloc": [ - "default.handlebars->35->464" + "default.handlebars->37->489" ] }, { @@ -36467,8 +36564,8 @@ "xloc": [ "default-mobile.handlebars->11->507", "default-mobile.handlebars->11->560", - "default.handlebars->35->1257", - "default.handlebars->35->1320" + "default.handlebars->37->1289", + "default.handlebars->37->1352" ] }, { @@ -36492,7 +36589,7 @@ "zh-chs": "修改节点位置", "zh-cht": "修改節點位置", "xloc": [ - "default.handlebars->35->669" + "default.handlebars->37->695" ] }, { @@ -36516,7 +36613,7 @@ "zh-chs": "摩尔达维亚文", "zh-cht": "摩爾達維亞文", "xloc": [ - "default.handlebars->35->1495" + "default.handlebars->37->1527" ] }, { @@ -36540,7 +36637,7 @@ "zh-chs": "更多", "zh-cht": "更多", "xloc": [ - "default.handlebars->35->2652" + "default.handlebars->37->2684" ] }, { @@ -36565,7 +36662,7 @@ "zh-cht": "母板", "xloc": [ "default-mobile.handlebars->11->553", - "default.handlebars->35->1313" + "default.handlebars->37->1345" ] }, { @@ -36589,7 +36686,7 @@ "zh-chs": "将此设备移到其他设备组", "zh-cht": "將此裝置移至其他裝置群", "xloc": [ - "default.handlebars->35->810" + "default.handlebars->37->836" ] }, { @@ -36613,7 +36710,7 @@ "zh-chs": "移至设备组", "zh-cht": "移至裝置群", "xloc": [ - "default.handlebars->35->560" + "default.handlebars->37->586" ] }, { @@ -36637,7 +36734,7 @@ "zh-chs": "移动:“{0}”到“{1}”", "zh-cht": "移動:“{0}”到“{1}”", "xloc": [ - "default.handlebars->35->2033" + "default.handlebars->37->2065" ] }, { @@ -36661,7 +36758,7 @@ "zh-chs": "将设备{0}移动到组{1}", "zh-cht": "將設備{0}移動到組{1}", "xloc": [ - "default.handlebars->35->2066" + "default.handlebars->37->2098" ] }, { @@ -36708,8 +36805,8 @@ "tr": "Birden Çok Sorun", "zh-chs": "多个问题", "xloc": [ - "default.handlebars->35->1921", - "default.handlebars->35->1935" + "default.handlebars->37->1953", + "default.handlebars->37->1967" ] }, { @@ -36753,7 +36850,7 @@ "zh-chs": "多路复用器", "zh-cht": "多工器", "xloc": [ - "default.handlebars->35->2506" + "default.handlebars->37->2538" ] }, { @@ -36777,8 +36874,8 @@ "zh-chs": "必须以用户身份运行", "zh-cht": "必須以用戶身份運行", "xloc": [ - "default.handlebars->35->592", - "default.handlebars->35->987" + "default.handlebars->37->1013", + "default.handlebars->37->618" ] }, { @@ -36935,7 +37032,7 @@ "zh-chs": "我的服务器控制台", "zh-cht": "我的伺服器控制台", "xloc": [ - "default.handlebars->35->1326" + "default.handlebars->37->1358" ] }, { @@ -37129,8 +37226,8 @@ "zh-chs": "我的密钥", "zh-cht": "我的密鍵", "xloc": [ - "default.handlebars->35->1370", - "default.handlebars->35->1373" + "default.handlebars->37->1402", + "default.handlebars->37->1405" ] }, { @@ -37202,7 +37299,7 @@ "zh-chs": "导航到下面的URL,授予访问权限并将令牌代码复制回去。", "zh-cht": "導航到下面的URL,授予訪問權限並將令牌代碼複製回去。", "xloc": [ - "default.handlebars->35->256" + "default.handlebars->37->278" ] }, { @@ -37232,24 +37329,24 @@ "default-mobile.handlebars->11->547", "default-mobile.handlebars->11->587", "default-mobile.handlebars->11->601", - "default.handlebars->35->1123", - "default.handlebars->35->121", - "default.handlebars->35->1240", - "default.handlebars->35->1307", - "default.handlebars->35->135", - "default.handlebars->35->1633", - "default.handlebars->35->1651", - "default.handlebars->35->1656", - "default.handlebars->35->1685", - "default.handlebars->35->1786", - "default.handlebars->35->2128", - "default.handlebars->35->2235", - "default.handlebars->35->2251", - "default.handlebars->35->2258", - "default.handlebars->35->2303", - "default.handlebars->35->2322", - "default.handlebars->35->269", - "default.handlebars->35->698", + "default.handlebars->37->1153", + "default.handlebars->37->1272", + "default.handlebars->37->1339", + "default.handlebars->37->142", + "default.handlebars->37->156", + "default.handlebars->37->1665", + "default.handlebars->37->1683", + "default.handlebars->37->1688", + "default.handlebars->37->1717", + "default.handlebars->37->1818", + "default.handlebars->37->2160", + "default.handlebars->37->2267", + "default.handlebars->37->2283", + "default.handlebars->37->2290", + "default.handlebars->37->2335", + "default.handlebars->37->2354", + "default.handlebars->37->291", + "default.handlebars->37->724", "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" @@ -37276,7 +37373,7 @@ "zh-chs": "名称(可选)", "zh-cht": "名稱(可選)", "xloc": [ - "default.handlebars->35->424" + "default.handlebars->37->449" ] }, { @@ -37300,7 +37397,7 @@ "zh-chs": "名称1,名称2,名称3", "zh-cht": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->35->2217" + "default.handlebars->37->2249" ] }, { @@ -37324,7 +37421,7 @@ "zh-chs": "纳瓦霍文", "zh-cht": "納瓦霍文", "xloc": [ - "default.handlebars->35->1496" + "default.handlebars->37->1528" ] }, { @@ -37348,7 +37445,7 @@ "zh-chs": "恩东加", "zh-cht": "恩東加", "xloc": [ - "default.handlebars->35->1497" + "default.handlebars->37->1529" ] }, { @@ -37372,7 +37469,7 @@ "zh-chs": "尼泊尔文", "zh-cht": "尼泊爾文", "xloc": [ - "default.handlebars->35->1498" + "default.handlebars->37->1530" ] }, { @@ -37396,7 +37493,7 @@ "zh-chs": "网络接口", "zh-cht": "網絡介面", "xloc": [ - "default.handlebars->35->1025" + "default.handlebars->37->1051" ] }, { @@ -37442,8 +37539,8 @@ "zh-cht": "網路", "xloc": [ "default-mobile.handlebars->11->526", - "default.handlebars->35->1272", - "default.handlebars->35->1286" + "default.handlebars->37->1304", + "default.handlebars->37->1318" ] }, { @@ -37468,7 +37565,7 @@ "zh-cht": "新", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1->1", - "default.handlebars->35->1650", + "default.handlebars->37->1682", "default.handlebars->container->column_l->p2->p2info->p2createMeshLink1->1" ] }, @@ -37493,7 +37590,7 @@ "zh-chs": "生成新的2FA备份代码", "zh-cht": "生成新的2FA備份代碼", "xloc": [ - "default.handlebars->35->2073" + "default.handlebars->37->2105" ] }, { @@ -37517,7 +37614,7 @@ "zh-chs": "新账户", "xloc": [ "default-mobile.handlebars->11->659", - "default.handlebars->35->2515" + "default.handlebars->37->2547" ] }, { @@ -37590,9 +37687,9 @@ "zh-cht": "新裝置群", "xloc": [ "default-mobile.handlebars->11->115", - "default.handlebars->35->1017", - "default.handlebars->35->1626", - "default.handlebars->35->1639" + "default.handlebars->37->1043", + "default.handlebars->37->1658", + "default.handlebars->37->1671" ] }, { @@ -37618,8 +37715,8 @@ "xloc": [ "default-mobile.handlebars->11->144", "default-mobile.handlebars->11->444", - "default.handlebars->35->1202", - "default.handlebars->35->1965", + "default.handlebars->37->1234", + "default.handlebars->37->1997", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "sharing.handlebars->11->59", @@ -37671,8 +37768,8 @@ "zh-chs": "新密码*", "zh-cht": "新密碼*", "xloc": [ - "default.handlebars->35->408", - "default.handlebars->35->409" + "default.handlebars->37->430", + "default.handlebars->37->431" ] }, { @@ -37720,8 +37817,8 @@ "zh-chs": "新密码*", "zh-cht": "新密碼*", "xloc": [ - "default.handlebars->35->1764", - "default.handlebars->35->1765" + "default.handlebars->37->1796", + "default.handlebars->37->1797" ] }, { @@ -37747,8 +37844,8 @@ "xloc": [ "default-mobile.handlebars->11->110", "default-mobile.handlebars->11->111", - "default.handlebars->35->1621", - "default.handlebars->35->1622" + "default.handlebars->37->1653", + "default.handlebars->37->1654" ] }, { @@ -37792,7 +37889,7 @@ "zh-chs": "夜间模式", "xloc": [ "default-mobile.handlebars->11->86", - "default.handlebars->35->61" + "default.handlebars->37->61" ] }, { @@ -37816,8 +37913,8 @@ "zh-chs": "没有AMT", "zh-cht": "沒有AMT", "xloc": [ - "default.handlebars->35->875", - "default.handlebars->35->897" + "default.handlebars->37->901", + "default.handlebars->37->923" ] }, { @@ -37842,7 +37939,7 @@ "zh-cht": "沒有有效保安編碼", "xloc": [ "default-mobile.handlebars->11->68", - "default.handlebars->35->181" + "default.handlebars->37->203" ] }, { @@ -37886,7 +37983,7 @@ "tr": "Aracı Konsolu Yok", "zh-chs": "无座席控制台", "xloc": [ - "default.handlebars->35->2412" + "default.handlebars->37->2444" ] }, { @@ -37909,7 +38006,7 @@ "tr": "Konsol Yok", "zh-chs": "没有控制台", "xloc": [ - "default.handlebars->35->2343" + "default.handlebars->37->2375" ] }, { @@ -37935,8 +38032,8 @@ "xloc": [ "default-mobile.handlebars->11->278", "default-mobile.handlebars->11->279", - "default.handlebars->35->731", - "default.handlebars->35->732" + "default.handlebars->37->757", + "default.handlebars->37->758" ] }, { @@ -37960,10 +38057,10 @@ "zh-chs": "没有桌面", "zh-cht": "沒有桌面", "xloc": [ - "default.handlebars->35->1871", - "default.handlebars->35->2339", - "default.handlebars->35->877", - "default.handlebars->35->899" + "default.handlebars->37->1903", + "default.handlebars->37->2371", + "default.handlebars->37->903", + "default.handlebars->37->925" ] }, { @@ -37987,8 +38084,8 @@ "zh-chs": "不能访问桌面", "zh-cht": "不能訪問桌面", "xloc": [ - "default.handlebars->35->1831", - "default.handlebars->35->2408" + "default.handlebars->37->1863", + "default.handlebars->37->2440" ] }, { @@ -38032,9 +38129,9 @@ "zh-chs": "找不到事件", "zh-cht": "找不到事件", "xloc": [ - "default.handlebars->35->1238", - "default.handlebars->35->2104", - "default.handlebars->35->2474" + "default.handlebars->37->1270", + "default.handlebars->37->2136", + "default.handlebars->37->2506" ] }, { @@ -38059,8 +38156,8 @@ "zh-cht": "不能存取檔案", "xloc": [ "default-mobile.handlebars->11->616", - "default.handlebars->35->1833", - "default.handlebars->35->2411" + "default.handlebars->37->1865", + "default.handlebars->37->2443" ] }, { @@ -38085,10 +38182,10 @@ "zh-cht": "沒有檔案", "xloc": [ "default-mobile.handlebars->11->639", - "default.handlebars->35->1873", - "default.handlebars->35->2342", - "default.handlebars->35->874", - "default.handlebars->35->896" + "default.handlebars->37->1905", + "default.handlebars->37->2374", + "default.handlebars->37->900", + "default.handlebars->37->922" ] }, { @@ -38112,8 +38209,8 @@ "zh-chs": "无输入", "zh-cht": "無輸入", "xloc": [ - "default.handlebars->35->872", - "default.handlebars->35->894" + "default.handlebars->37->898", + "default.handlebars->37->920" ] }, { @@ -38139,8 +38236,8 @@ "xloc": [ "default-mobile.handlebars->11->617", "default-mobile.handlebars->11->640", - "default.handlebars->35->1834", - "default.handlebars->35->1874" + "default.handlebars->37->1866", + "default.handlebars->37->1906" ] }, { @@ -38163,7 +38260,7 @@ "tr": "Bu aygıt grubunda Intel® AMT aygıtı yok", "zh-chs": "此设备组中没有英特尔® AMT 设备", "xloc": [ - "default.handlebars->35->294" + "default.handlebars->37->316" ] }, { @@ -38232,7 +38329,7 @@ "zh-chs": "未配置任何键", "zh-cht": "未配置任何鍵", "xloc": [ - "default.handlebars->35->189" + "default.handlebars->37->211" ] }, { @@ -38256,7 +38353,7 @@ "zh-chs": "没有成员", "zh-cht": "沒有成員", "xloc": [ - "default.handlebars->35->2285" + "default.handlebars->37->2317" ] }, { @@ -38280,7 +38377,7 @@ "zh-chs": "没有新的设备组", "zh-cht": "沒有新的裝置群", "xloc": [ - "default.handlebars->35->2230" + "default.handlebars->37->2262" ] }, { @@ -38304,8 +38401,8 @@ "zh-chs": "没有政策", "zh-cht": "沒有政策", "xloc": [ - "default.handlebars->35->1717", - "default.handlebars->35->1755" + "default.handlebars->37->1749", + "default.handlebars->37->1787" ] }, { @@ -38330,26 +38427,29 @@ }, { "en": "No Remote Command", + "pl": "Brak zdalnego polecenia", "pt-br": "Sem Comando Remoto", "xloc": [ - "default.handlebars->35->2345", - "default.handlebars->35->2414" + "default.handlebars->37->2377", + "default.handlebars->37->2446" ] }, { "en": "No Remote Control", + "pl": "Brak pilota zdalnego sterowania", "pt-br": "Sem Controle Remoto", "xloc": [ - "default.handlebars->35->2338", - "default.handlebars->35->2407" + "default.handlebars->37->2370", + "default.handlebars->37->2439" ] }, { "en": "No Reset/Off", + "pl": "Brak resetowania/wyłączania", "pt-br": "Sem Resetar/Desligar", "xloc": [ - "default.handlebars->35->2347", - "default.handlebars->35->2416" + "default.handlebars->37->2379", + "default.handlebars->37->2448" ] }, { @@ -38376,10 +38476,10 @@ "default-mobile.handlebars->11->130", "default-mobile.handlebars->11->596", "default-mobile.handlebars->11->647", - "default.handlebars->35->1648", - "default.handlebars->35->1883", - "default.handlebars->35->889", - "default.handlebars->35->911" + "default.handlebars->37->1680", + "default.handlebars->37->1915", + "default.handlebars->37->915", + "default.handlebars->37->937" ] }, { @@ -38424,8 +38524,8 @@ "zh-cht": "沒有TLS加密", "xloc": [ "default-mobile.handlebars->11->349", - "default.handlebars->35->1003", - "default.handlebars->35->399" + "default.handlebars->37->1029", + "default.handlebars->37->421" ] }, { @@ -38450,10 +38550,10 @@ "zh-cht": "沒有終端", "xloc": [ "default-mobile.handlebars->11->638", - "default.handlebars->35->1872", - "default.handlebars->35->2341", - "default.handlebars->35->873", - "default.handlebars->35->895" + "default.handlebars->37->1904", + "default.handlebars->37->2373", + "default.handlebars->37->899", + "default.handlebars->37->921" ] }, { @@ -38478,8 +38578,8 @@ "zh-cht": "不能訪問終端", "xloc": [ "default-mobile.handlebars->11->615", - "default.handlebars->35->1832", - "default.handlebars->35->2410" + "default.handlebars->37->1864", + "default.handlebars->37->2442" ] }, { @@ -38503,23 +38603,25 @@ "zh-chs": "没有工具(MeshCmd /路由器)", "zh-cht": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->35->2231" + "default.handlebars->37->2263" ] }, { "en": "No Uninstall", + "pl": "Bez odinstalowywania", "pt-br": "Não desinstalar", "xloc": [ - "default.handlebars->35->2344", - "default.handlebars->35->2413" + "default.handlebars->37->2376", + "default.handlebars->37->2445" ] }, { "en": "No Wake", + "pl": "Bez budzenia", "pt-br": "Não acordar", "xloc": [ - "default.handlebars->35->2346", - "default.handlebars->35->2415" + "default.handlebars->37->2378", + "default.handlebars->37->2447" ] }, { @@ -38544,7 +38646,7 @@ "zh-cht": "該設備當前無可用操作。", "xloc": [ "default-mobile.handlebars->11->332", - "default.handlebars->35->979" + "default.handlebars->37->1005" ] }, { @@ -38587,8 +38689,8 @@ "tr": "Otomatik güncelleme yok", "zh-chs": "没有自动更新", "xloc": [ - "default.handlebars->35->1919", - "default.handlebars->35->1933" + "default.handlebars->37->1951", + "default.handlebars->37->1965" ] }, { @@ -38612,8 +38714,8 @@ "zh-chs": "没有共同的设备组", "zh-cht": "沒有共同的裝置群", "xloc": [ - "default.handlebars->35->2291", - "default.handlebars->35->2442" + "default.handlebars->37->2323", + "default.handlebars->37->2474" ] }, { @@ -38688,7 +38790,7 @@ "zh-chs": "没有一个设备被加入任何一组,请单击一个设备的“组”以添加到一个组中。", "zh-cht": "沒有一個裝置被加入任何一群,請單擊一個裝置的“群”以新增到一個群中。", "xloc": [ - "default.handlebars->35->291" + "default.handlebars->37->313" ] }, { @@ -38733,7 +38835,7 @@ "zh-chs": "找不到设备。", "zh-cht": "找不到裝置。", "xloc": [ - "default.handlebars->35->686" + "default.handlebars->37->712" ] }, { @@ -38757,8 +38859,8 @@ "zh-chs": "没有共同的设备", "zh-cht": "沒有共同的裝置", "xloc": [ - "default.handlebars->35->2297", - "default.handlebars->35->2454" + "default.handlebars->37->2329", + "default.handlebars->37->2486" ] }, { @@ -38781,7 +38883,7 @@ "tr": "Bu cihaz grubunda cihaz yok", "zh-chs": "此设备组中没有设备", "xloc": [ - "default.handlebars->35->296" + "default.handlebars->37->318" ] }, { @@ -38805,7 +38907,7 @@ "zh-chs": "该设备组中没有设备。", "zh-cht": "該裝置群中沒有裝置。", "xloc": [ - "default.handlebars->35->1937" + "default.handlebars->37->1969" ] }, { @@ -38855,7 +38957,7 @@ "xloc": [ "default-mobile.handlebars->11->181", "default-mobile.handlebars->11->185", - "default.handlebars->35->292" + "default.handlebars->37->314" ] }, { @@ -38879,7 +38981,7 @@ "zh-chs": "找不到带有标签的设备。", "zh-cht": "找不到帶有標籤的裝置。", "xloc": [ - "default.handlebars->35->308" + "default.handlebars->37->330" ] }, { @@ -38903,7 +39005,7 @@ "zh-chs": "找不到文件", "zh-cht": "找不到文件", "xloc": [ - "default.handlebars->35->1174", + "default.handlebars->37->1206", "sharing.handlebars->11->45" ] }, @@ -38928,7 +39030,7 @@ "zh-chs": "找不到群组。", "zh-cht": "找不到群組。", "xloc": [ - "default.handlebars->35->2234" + "default.handlebars->37->2266" ] }, { @@ -38953,7 +39055,7 @@ "zh-cht": "沒有此裝置的訊息。", "xloc": [ "default-mobile.handlebars->11->565", - "default.handlebars->35->1325" + "default.handlebars->37->1357" ] }, { @@ -38976,7 +39078,7 @@ "tr": "bilgi verilmedi", "zh-chs": "未提供信息", "xloc": [ - "default.handlebars->35->112" + "default.handlebars->37->133" ] }, { @@ -39000,7 +39102,7 @@ "zh-chs": "未定义键盘快捷键", "xloc": [ "default-mobile.handlebars->11->399", - "default.handlebars->35->1115" + "default.handlebars->37->1141" ] }, { @@ -39047,7 +39149,7 @@ "tr": "Bu cihaz grubunda yerel cihaz yok", "zh-chs": "此设备组中没有本地设备", "xloc": [ - "default.handlebars->35->298" + "default.handlebars->37->320" ] }, { @@ -39071,7 +39173,7 @@ "zh-chs": "找不到位置。", "zh-cht": "找不到位置。", "xloc": [ - "default.handlebars->35->688" + "default.handlebars->37->714" ] }, { @@ -39095,7 +39197,7 @@ "zh-chs": "没有适用于此设备的网络接口讯息。", "zh-cht": "沒有適用於此裝置的網絡介面訊息。", "xloc": [ - "default.handlebars->35->151" + "default.handlebars->37->172" ] }, { @@ -39119,7 +39221,7 @@ "zh-chs": "没有其他相同类型的设备组。", "zh-cht": "沒有其他相同類型的裝置群。", "xloc": [ - "default.handlebars->35->1020" + "default.handlebars->37->1046" ] }, { @@ -39143,7 +39245,7 @@ "zh-chs": "此用户没有电话号码", "xloc": [ "default-mobile.handlebars->11->690", - "default.handlebars->35->2546" + "default.handlebars->37->2578" ] }, { @@ -39191,7 +39293,7 @@ "zh-chs": "没有录音。", "zh-cht": "沒有錄音。", "xloc": [ - "default.handlebars->35->2476" + "default.handlebars->37->2508" ] }, { @@ -39235,7 +39337,7 @@ "zh-chs": "没有服务器权限", "zh-cht": "沒有伺服器權限", "xloc": [ - "default.handlebars->35->2317" + "default.handlebars->37->2349" ] }, { @@ -39279,7 +39381,7 @@ "zh-chs": "没有用户组成员身份", "zh-cht": "沒有用戶群成員身份", "xloc": [ - "default.handlebars->35->2448" + "default.handlebars->37->2480" ] }, { @@ -39303,7 +39405,7 @@ "zh-chs": "无用户管理权限", "xloc": [ "default-mobile.handlebars->11->688", - "default.handlebars->35->2544" + "default.handlebars->37->2576" ] }, { @@ -39327,7 +39429,7 @@ "zh-chs": "未找到相应的用户。", "zh-cht": "未找到相應的用戶。", "xloc": [ - "default.handlebars->35->2136" + "default.handlebars->37->2168" ] }, { @@ -39351,7 +39453,7 @@ "zh-chs": "没有拥有特殊设备权限的用户", "zh-cht": "沒有擁有特殊裝置權限的用戶", "xloc": [ - "default.handlebars->35->855" + "default.handlebars->37->881" ] }, { @@ -39400,7 +39502,7 @@ "zh-cht": "NodeJS", "xloc": [ "default-mobile.handlebars->11->29", - "default.handlebars->35->36" + "default.handlebars->37->36" ] }, { @@ -39423,7 +39525,7 @@ "tr": "Disk belleği olmayan bellek", "zh-chs": "非分页内存", "xloc": [ - "default.handlebars->35->104" + "default.handlebars->37->125" ] }, { @@ -39457,35 +39559,35 @@ "default-mobile.handlebars->11->389", "default-mobile.handlebars->11->441", "default-mobile.handlebars->11->589", - "default.handlebars->35->1104", - "default.handlebars->35->1679", - "default.handlebars->35->1687", - "default.handlebars->35->1696", - "default.handlebars->35->1708", - "default.handlebars->35->1713", - "default.handlebars->35->1715", - "default.handlebars->35->1922", - "default.handlebars->35->1947", - "default.handlebars->35->1952", - "default.handlebars->35->2112", - "default.handlebars->35->222", - "default.handlebars->35->2255", - "default.handlebars->35->2257", - "default.handlebars->35->2274", - "default.handlebars->35->2336", - "default.handlebars->35->2348", - "default.handlebars->35->2358", - "default.handlebars->35->2362", - "default.handlebars->35->2374", - "default.handlebars->35->241", - "default.handlebars->35->321", - "default.handlebars->35->322", - "default.handlebars->35->695", - "default.handlebars->35->706", - "default.handlebars->35->707", - "default.handlebars->35->775", - "default.handlebars->35->78", - "default.handlebars->35->788", + "default.handlebars->37->1130", + "default.handlebars->37->1711", + "default.handlebars->37->1719", + "default.handlebars->37->1728", + "default.handlebars->37->1740", + "default.handlebars->37->1745", + "default.handlebars->37->1747", + "default.handlebars->37->1954", + "default.handlebars->37->1979", + "default.handlebars->37->1984", + "default.handlebars->37->2144", + "default.handlebars->37->2287", + "default.handlebars->37->2289", + "default.handlebars->37->2306", + "default.handlebars->37->2368", + "default.handlebars->37->2380", + "default.handlebars->37->2390", + "default.handlebars->37->2394", + "default.handlebars->37->2406", + "default.handlebars->37->244", + "default.handlebars->37->263", + "default.handlebars->37->343", + "default.handlebars->37->344", + "default.handlebars->37->721", + "default.handlebars->37->732", + "default.handlebars->37->733", + "default.handlebars->37->78", + "default.handlebars->37->801", + "default.handlebars->37->814", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] }, @@ -39509,7 +39611,7 @@ "tr": "Hiçbiri", "zh-chs": "没有任何", "xloc": [ - "default.handlebars->35->1742" + "default.handlebars->37->1774" ] }, { @@ -39557,7 +39659,7 @@ "zh-chs": "挪威文", "zh-cht": "挪威文", "xloc": [ - "default.handlebars->35->1499" + "default.handlebars->37->1531" ] }, { @@ -39581,7 +39683,7 @@ "zh-chs": "挪威文(Bokmal)", "zh-cht": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->35->1500" + "default.handlebars->37->1532" ] }, { @@ -39605,7 +39707,7 @@ "zh-chs": "挪威文(尼诺斯克)", "zh-cht": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->35->1501" + "default.handlebars->37->1533" ] }, { @@ -39629,7 +39731,7 @@ "zh-chs": "未激活", "zh-cht": "未激活", "xloc": [ - "default.handlebars->35->1289" + "default.handlebars->37->1321" ] }, { @@ -39655,7 +39757,7 @@ "xloc": [ "default-mobile.handlebars->11->268", "default-mobile.handlebars->11->530", - "default.handlebars->35->719" + "default.handlebars->37->745" ] }, { @@ -39681,7 +39783,7 @@ "xloc": [ "default-mobile.handlebars->11->267", "default-mobile.handlebars->11->529", - "default.handlebars->35->718" + "default.handlebars->37->744" ] }, { @@ -39705,8 +39807,8 @@ "zh-chs": "未连接", "zh-cht": "未連接", "xloc": [ - "default.handlebars->35->1913", - "default.handlebars->35->1926" + "default.handlebars->37->1945", + "default.handlebars->37->1958" ] }, { @@ -39731,7 +39833,7 @@ "zh-cht": "未知", "xloc": [ "default-mobile.handlebars->11->540", - "default.handlebars->35->1300" + "default.handlebars->37->1332" ] }, { @@ -39754,7 +39856,7 @@ "tr": "İzin verilmez, yalnızca görüntüleme", "zh-chs": "不允许,只能查看", "xloc": [ - "default.handlebars->35->234" + "default.handlebars->37->256" ] }, { @@ -39778,7 +39880,7 @@ "zh-chs": "不在服务器上", "zh-cht": "不在伺服器上", "xloc": [ - "default.handlebars->35->2498" + "default.handlebars->37->2530" ] }, { @@ -39802,8 +39904,8 @@ "zh-chs": "没有设置", "zh-cht": "沒有設置", "xloc": [ - "default.handlebars->35->2323", - "default.handlebars->35->2324" + "default.handlebars->37->2355", + "default.handlebars->37->2356" ] }, { @@ -39827,7 +39929,7 @@ "zh-chs": "未经审核的", "zh-cht": "未經審核的", "xloc": [ - "default.handlebars->35->2422" + "default.handlebars->37->2454" ] }, { @@ -39852,12 +39954,12 @@ "zh-cht": "筆記", "xloc": [ "default-mobile.handlebars->11->341", - "default.handlebars->35->1724", - "default.handlebars->35->2384", - "default.handlebars->35->800", - "default.handlebars->35->883", - "default.handlebars->35->905", - "default.handlebars->35->915" + "default.handlebars->37->1756", + "default.handlebars->37->2416", + "default.handlebars->37->826", + "default.handlebars->37->909", + "default.handlebars->37->931", + "default.handlebars->37->941" ] }, { @@ -39905,8 +40007,8 @@ "zh-chs": "通知设置", "zh-cht": "通知設定", "xloc": [ - "default.handlebars->35->1608", - "default.handlebars->35->1912", + "default.handlebars->37->1640", + "default.handlebars->37->1944", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -39951,7 +40053,7 @@ "zh-chs": "通知设置还必须在帐户设置中启用。", "zh-cht": "通知設定還必須在帳戶設定中啟用。", "xloc": [ - "default.handlebars->35->1908" + "default.handlebars->37->1940" ] }, { @@ -39975,7 +40077,7 @@ "zh-chs": "通知音效。", "zh-cht": "通知音效。", "xloc": [ - "default.handlebars->35->1603" + "default.handlebars->37->1635" ] }, { @@ -39999,7 +40101,7 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->35->1714" + "default.handlebars->37->1746" ] }, { @@ -40023,8 +40125,8 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->35->238", - "default.handlebars->35->2390" + "default.handlebars->37->2422", + "default.handlebars->37->260" ] }, { @@ -40048,7 +40150,7 @@ "zh-chs": "仅通知", "zh-cht": "只通知", "xloc": [ - "default.handlebars->35->958" + "default.handlebars->37->984" ] }, { @@ -40072,9 +40174,9 @@ "zh-chs": "通知使用者", "zh-cht": "通知使用者", "xloc": [ - "default.handlebars->35->1794", - "default.handlebars->35->1798", - "default.handlebars->35->1801" + "default.handlebars->37->1826", + "default.handlebars->37->1830", + "default.handlebars->37->1833" ] }, { @@ -40098,7 +40200,7 @@ "zh-chs": "通知{0}", "zh-cht": "通知{0}", "xloc": [ - "default.handlebars->35->2175" + "default.handlebars->37->2207" ] }, { @@ -40121,7 +40223,7 @@ "tr": "Boş", "zh-chs": "空值", "xloc": [ - "default.handlebars->35->2612" + "default.handlebars->37->2644" ] }, { @@ -40172,13 +40274,13 @@ "default-mobile.handlebars->11->495", "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->5", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->35->1670", - "default.handlebars->35->1917", - "default.handlebars->35->1931", - "default.handlebars->35->747", - "default.handlebars->35->751", - "default.handlebars->35->755", - "default.handlebars->35->761", + "default.handlebars->37->1702", + "default.handlebars->37->1949", + "default.handlebars->37->1963", + "default.handlebars->37->773", + "default.handlebars->37->777", + "default.handlebars->37->781", + "default.handlebars->37->787", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -40209,7 +40311,7 @@ "tr": "işletim sistemi", "zh-chs": "操作系统", "xloc": [ - "default.handlebars->35->302" + "default.handlebars->37->324" ] }, { @@ -40234,7 +40336,7 @@ "zh-cht": "操作系統名稱", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1->5", - "default.handlebars->35->703", + "default.handlebars->37->729", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->15->1" ] }, @@ -40259,7 +40361,7 @@ "zh-chs": "欧舒丹", "zh-cht": "歐舒丹", "xloc": [ - "default.handlebars->35->1502" + "default.handlebars->37->1534" ] }, { @@ -40284,7 +40386,7 @@ "zh-cht": "發生在{0}", "xloc": [ "default-mobile.handlebars->11->656", - "default.handlebars->35->2512" + "default.handlebars->37->2544" ] }, { @@ -40332,7 +40434,7 @@ "zh-chs": "离线用户", "zh-cht": "離線用戶", "xloc": [ - "default.handlebars->35->2133" + "default.handlebars->37->2165" ] }, { @@ -40356,7 +40458,7 @@ "zh-chs": "旧密码", "zh-cht": "舊密碼", "xloc": [ - "default.handlebars->35->407" + "default.handlebars->37->429" ] }, { @@ -40381,7 +40483,7 @@ "zh-cht": "舊密碼:", "xloc": [ "default-mobile.handlebars->11->109", - "default.handlebars->35->1620" + "default.handlebars->37->1652" ] }, { @@ -40405,7 +40507,7 @@ "zh-chs": "一天", "zh-cht": "一天", "xloc": [ - "default.handlebars->35->2109" + "default.handlebars->37->2141" ] }, { @@ -40430,7 +40532,7 @@ "zh-cht": "一次性保安編碼可以用作輔助身份驗證。生成一群,打印並保存在安全的地方。", "xloc": [ "default-mobile.handlebars->11->67", - "default.handlebars->35->180" + "default.handlebars->37->202" ] }, { @@ -40480,7 +40582,7 @@ "zh-chs": "在线用户", "zh-cht": "在線用戶", "xloc": [ - "default.handlebars->35->2132" + "default.handlebars->37->2164" ] }, { @@ -40503,7 +40605,7 @@ "tr": "Yalnızca ilk 100 kullanıcıyı göster", "zh-chs": "只显示前 100 个用户", "xloc": [ - "default.handlebars->35->2176" + "default.handlebars->37->2208" ] }, { @@ -40528,8 +40630,8 @@ "zh-cht": "只能編輯小於200k的檔案。", "xloc": [ "default-mobile.handlebars->11->452", - "default.handlebars->35->1210", - "default.handlebars->35->666", + "default.handlebars->37->1242", + "default.handlebars->37->692", "sharing.handlebars->11->67" ] }, @@ -40603,7 +40705,7 @@ "zh-chs": "在设备上打开页面", "zh-cht": "在裝置上打開頁面", "xloc": [ - "default.handlebars->35->916" + "default.handlebars->37->942" ] }, { @@ -40692,7 +40794,7 @@ "zh-chs": "打开XTerm终端", "zh-cht": "打開XTerm終端", "xloc": [ - "default.handlebars->35->820" + "default.handlebars->37->846" ] }, { @@ -40740,7 +40842,7 @@ "zh-chs": "打开此计算机的聊天窗口", "zh-cht": "打開此電腦的聊天窗口", "xloc": [ - "default.handlebars->35->807", + "default.handlebars->37->833", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" ] }, @@ -40766,10 +40868,11 @@ }, { "en": "OpenBSD x86-64", + "pl": "OpenBSD x86-64", "pt-br": "OpenBSD x86-64", "xloc": [ "default-mobile.handlebars->11->43", - "default.handlebars->35->50" + "default.handlebars->37->50" ] }, { @@ -40794,10 +40897,11 @@ }, { "en": "OpenWRT x86-64", + "pl": "OpenWRT x86-64", "pt-br": "OpenWRT x86-64", "xloc": [ "default-mobile.handlebars->11->42", - "default.handlebars->35->49" + "default.handlebars->37->49" ] }, { @@ -40821,7 +40925,7 @@ "zh-chs": "开头:{0}", "zh-cht": "開場:{0}", "xloc": [ - "default.handlebars->35->2001" + "default.handlebars->37->2033" ] }, { @@ -40846,12 +40950,12 @@ "zh-cht": "操作系統", "xloc": [ "default-mobile.handlebars->11->497", - "default.handlebars->35->1043", - "default.handlebars->35->1247", - "default.handlebars->35->279", - "default.handlebars->35->427", - "default.handlebars->35->468", - "default.handlebars->35->745" + "default.handlebars->37->1069", + "default.handlebars->37->1279", + "default.handlebars->37->301", + "default.handlebars->37->452", + "default.handlebars->37->493", + "default.handlebars->37->771" ] }, { @@ -40876,11 +40980,11 @@ "zh-cht": "操作", "xloc": [ "default-mobile.handlebars->11->331", - "default.handlebars->35->2159", - "default.handlebars->35->2242", - "default.handlebars->35->575", - "default.handlebars->35->595", - "default.handlebars->35->978" + "default.handlebars->37->1004", + "default.handlebars->37->2191", + "default.handlebars->37->2274", + "default.handlebars->37->601", + "default.handlebars->37->621" ] }, { @@ -40925,7 +41029,7 @@ "zh-chs": "奥里亚", "zh-cht": "奧里亞", "xloc": [ - "default.handlebars->35->1503" + "default.handlebars->37->1535" ] }, { @@ -40949,7 +41053,7 @@ "zh-chs": "奥罗莫", "zh-cht": "奧羅莫", "xloc": [ - "default.handlebars->35->1504" + "default.handlebars->37->1536" ] }, { @@ -41022,7 +41126,7 @@ "zh-cht": "過時的", "xloc": [ "default-mobile.handlebars->11->494", - "default.handlebars->35->760" + "default.handlebars->37->786" ] }, { @@ -41129,7 +41233,7 @@ "zh-chs": "是否覆盖文件存在?", "zh-cht": "是否覆蓋文件存在?", "xloc": [ - "default.handlebars->35->611" + "default.handlebars->37->637" ] }, { @@ -41173,7 +41277,7 @@ "zh-chs": "自己的过程", "zh-cht": "自己的過程", "xloc": [ - "default.handlebars->35->1130" + "default.handlebars->37->1162" ] }, { @@ -41197,7 +41301,7 @@ "zh-chs": "PID", "zh-cht": "PID", "xloc": [ - "default.handlebars->35->1126", + "default.handlebars->37->1158", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -41222,7 +41326,7 @@ "zh-chs": "推", "xloc": [ "default-mobile.handlebars->11->571", - "default.handlebars->35->1332" + "default.handlebars->37->1364" ] }, { @@ -41246,7 +41350,7 @@ "zh-chs": "向下翻页", "xloc": [ "default-mobile.handlebars->11->384", - "default.handlebars->35->1099" + "default.handlebars->37->1125" ] }, { @@ -41270,7 +41374,7 @@ "zh-chs": "向上翻页", "xloc": [ "default-mobile.handlebars->11->383", - "default.handlebars->35->1098" + "default.handlebars->37->1124" ] }, { @@ -41293,7 +41397,7 @@ "tr": "Sayfalı Bellek", "zh-chs": "分页内存", "xloc": [ - "default.handlebars->35->105" + "default.handlebars->37->126" ] }, { @@ -41318,7 +41422,7 @@ "zh-cht": "零件號", "xloc": [ "default-mobile.handlebars->11->558", - "default.handlebars->35->1318" + "default.handlebars->37->1350" ] }, { @@ -41342,7 +41446,7 @@ "zh-chs": "部分的", "zh-cht": "部分的", "xloc": [ - "default.handlebars->35->2147" + "default.handlebars->37->2179" ] }, { @@ -41410,7 +41514,7 @@ "xloc": [ "default-mobile.handlebars->11->128", "default-mobile.handlebars->11->594", - "default.handlebars->35->1646" + "default.handlebars->37->1678" ] }, { @@ -41434,7 +41538,7 @@ "zh-chs": "部分权限", "zh-cht": "部分權限", "xloc": [ - "default.handlebars->35->2320" + "default.handlebars->37->2352" ] }, { @@ -41485,18 +41589,18 @@ "default-mobile.handlebars->11->347", "default-mobile.handlebars->11->411", "default-mobile.handlebars->11->428", - "default.handlebars->35->1001", - "default.handlebars->35->1152", - "default.handlebars->35->1179", - "default.handlebars->35->1761", - "default.handlebars->35->2205", - "default.handlebars->35->2206", - "default.handlebars->35->2354", - "default.handlebars->35->2356", - "default.handlebars->35->2427", - "default.handlebars->35->2428", - "default.handlebars->35->273", - "default.handlebars->35->397", + "default.handlebars->37->1027", + "default.handlebars->37->1184", + "default.handlebars->37->1211", + "default.handlebars->37->1793", + "default.handlebars->37->2237", + "default.handlebars->37->2238", + "default.handlebars->37->2386", + "default.handlebars->37->2388", + "default.handlebars->37->2459", + "default.handlebars->37->2460", + "default.handlebars->37->295", + "default.handlebars->37->419", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1", "mstsc.handlebars->main->1->3->1->rowpassword->1->0", @@ -41637,7 +41741,7 @@ "zh-chs": "密码已更改。", "xloc": [ "default-mobile.handlebars->11->684", - "default.handlebars->35->2540" + "default.handlebars->37->2572" ] }, { @@ -41686,7 +41790,7 @@ "zh-chs": "密码提示", "zh-cht": "密碼提示", "xloc": [ - "default.handlebars->35->2429" + "default.handlebars->37->2461" ] }, { @@ -41711,7 +41815,7 @@ "zh-cht": "密碼提示:", "xloc": [ "default-mobile.handlebars->11->112", - "default.handlebars->35->1623" + "default.handlebars->37->1655" ] }, { @@ -41806,8 +41910,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->11->104", "default-mobile.handlebars->11->105", - "default.handlebars->35->1615", - "default.handlebars->35->1616", + "default.handlebars->37->1647", + "default.handlebars->37->1648", "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", @@ -41849,9 +41953,9 @@ "default-mobile.handlebars->11->457", "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->35->1170", - "default.handlebars->35->1216", - "default.handlebars->35->1974", + "default.handlebars->37->1202", + "default.handlebars->37->1248", + "default.handlebars->37->2006", "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", @@ -41950,7 +42054,7 @@ "tr": "En Yüksek Sayfalı Bellek", "zh-chs": "峰值分页内存", "xloc": [ - "default.handlebars->35->110" + "default.handlebars->37->131" ] }, { @@ -41973,7 +42077,7 @@ "tr": "En Yüksek Sanal Bellek", "zh-chs": "峰值虚拟内存", "xloc": [ - "default.handlebars->35->111" + "default.handlebars->37->132" ] }, { @@ -41996,7 +42100,7 @@ "tr": "Tepe Çalışma Seti", "zh-chs": "峰值工作集", "xloc": [ - "default.handlebars->35->109" + "default.handlebars->37->130" ] }, { @@ -42021,7 +42125,7 @@ "zh-cht": "執行代理指令", "xloc": [ "default-mobile.handlebars->11->574", - "default.handlebars->35->1335" + "default.handlebars->37->1367" ] }, { @@ -42087,8 +42191,8 @@ "zh-chs": "执行英特尔®AMT激活和配置。", "zh-cht": "執行英特爾®AMT激活和配置。", "xloc": [ - "default.handlebars->35->1728", - "default.handlebars->35->374" + "default.handlebars->37->1760", + "default.handlebars->37->396" ] }, { @@ -42196,7 +42300,7 @@ "zh-chs": "执行英特尔® AMT 关机?", "xloc": [ "default-mobile.handlebars->11->337", - "default.handlebars->35->993" + "default.handlebars->37->1019" ] }, { @@ -42220,7 +42324,7 @@ "zh-chs": "执行英特尔® AMT 电源?", "xloc": [ "default-mobile.handlebars->11->335", - "default.handlebars->35->991" + "default.handlebars->37->1017" ] }, { @@ -42244,7 +42348,7 @@ "zh-chs": "执行英特尔® AMT 重置?", "xloc": [ "default-mobile.handlebars->11->339", - "default.handlebars->35->995" + "default.handlebars->37->1021" ] }, { @@ -42268,7 +42372,7 @@ "zh-chs": "执行批量设备通知", "zh-cht": "執行批量設備通知", "xloc": [ - "default.handlebars->35->602" + "default.handlebars->37->628" ] }, { @@ -42292,7 +42396,7 @@ "zh-chs": "执行批量设备标签操作", "zh-cht": "執行批次裝置標籤操作", "xloc": [ - "default.handlebars->35->594" + "default.handlebars->37->620" ] }, { @@ -42317,7 +42421,7 @@ "zh-cht": "在裝置上執行電源操作", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3", - "default.handlebars->35->799", + "default.handlebars->37->825", "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" @@ -42344,7 +42448,7 @@ "zh-chs": "执行电源操作= {0},强制执行= {1}", "zh-cht": "執行電源操作= {0},強制執行= {1}", "xloc": [ - "default.handlebars->35->2006" + "default.handlebars->37->2038" ] }, { @@ -42368,7 +42472,7 @@ "zh-chs": "没有权限", "xloc": [ "default-mobile.handlebars->11->665", - "default.handlebars->35->2521" + "default.handlebars->37->2553" ] }, { @@ -42393,8 +42497,8 @@ "zh-cht": "權限", "xloc": [ "default-mobile.handlebars->11->650", - "default.handlebars->35->1886", - "default.handlebars->35->2131" + "default.handlebars->37->1918", + "default.handlebars->37->2163" ] }, { @@ -42418,7 +42522,7 @@ "zh-chs": "波斯/伊朗", "zh-cht": "波斯/伊朗", "xloc": [ - "default.handlebars->35->1505" + "default.handlebars->37->1537" ] }, { @@ -42491,10 +42595,10 @@ "default-mobile.handlebars->11->74", "default-mobile.handlebars->11->89", "default-mobile.handlebars->11->91", - "default.handlebars->35->1350", - "default.handlebars->35->1353", - "default.handlebars->35->204", - "default.handlebars->35->2405" + "default.handlebars->37->1382", + "default.handlebars->37->1385", + "default.handlebars->37->226", + "default.handlebars->37->2437" ] }, { @@ -42518,7 +42622,7 @@ "zh-chs": "电话号码", "zh-cht": "電話號碼", "xloc": [ - "default.handlebars->35->2335" + "default.handlebars->37->2367" ] }, { @@ -42543,8 +42647,8 @@ "zh-cht": "電話號碼:", "xloc": [ "default-mobile.handlebars->11->90", - "default.handlebars->35->1352", - "default.handlebars->35->2404" + "default.handlebars->37->1384", + "default.handlebars->37->2436" ] }, { @@ -42589,7 +42693,7 @@ "zh-chs": "将节点放在这里", "zh-cht": "將節點放在這裡", "xloc": [ - "default.handlebars->35->681" + "default.handlebars->37->707" ] }, { @@ -42637,7 +42741,7 @@ "zh-chs": "请添加两因素认证的备用验证码。如果丢失了当前因素,则无法恢复该帐户。", "zh-cht": "請新增二因子鑑別的備用鑑別碼。如果丟失了當前因子,則無法恢復該帳戶。", "xloc": [ - "default.handlebars->35->64" + "default.handlebars->37->64" ] }, { @@ -42661,7 +42765,7 @@ "zh-chs": "请注意,不建议降级。请仅在最近的升级后发生问题时才这样做。", "zh-cht": "請注意,不建議降級。請僅在最近的升級後發生問題時才這樣做。", "xloc": [ - "default.handlebars->35->255" + "default.handlebars->37->277" ] }, { @@ -42735,7 +42839,7 @@ "zh-cht": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->11->100", - "default.handlebars->35->1610" + "default.handlebars->37->1642" ] }, { @@ -42759,8 +42863,8 @@ "zh-chs": "插件指令", "zh-cht": "外掛指令", "xloc": [ - "default.handlebars->35->254", - "default.handlebars->35->2649" + "default.handlebars->37->2681", + "default.handlebars->37->276" ] }, { @@ -42784,7 +42888,7 @@ "zh-chs": "插件错误", "zh-cht": "外掛錯誤", "xloc": [ - "default.handlebars->35->260" + "default.handlebars->37->282" ] }, { @@ -42808,7 +42912,7 @@ "zh-chs": "PluginHandler无法事件消息:", "zh-cht": "PluginHandler無法事件消息:", "xloc": [ - "default.handlebars->35->223" + "default.handlebars->37->245" ] }, { @@ -42907,7 +43011,7 @@ "zh-cht": "PogoPlug ARM", "xloc": [ "default-mobile.handlebars->11->19", - "default.handlebars->35->26" + "default.handlebars->37->26" ] }, { @@ -42932,7 +43036,7 @@ "zh-cht": "政策", "xloc": [ "default-mobile.handlebars->11->127", - "default.handlebars->35->1645" + "default.handlebars->37->1677" ] }, { @@ -42956,7 +43060,7 @@ "zh-chs": "波兰文", "zh-cht": "波蘭文", "xloc": [ - "default.handlebars->35->1506" + "default.handlebars->37->1538" ] }, { @@ -43060,7 +43164,7 @@ "zh-chs": "葡萄牙文", "zh-cht": "葡萄牙文", "xloc": [ - "default.handlebars->35->1507" + "default.handlebars->37->1539" ] }, { @@ -43084,7 +43188,7 @@ "zh-chs": "葡萄牙文(巴西)", "zh-cht": "葡萄牙文(巴西)", "xloc": [ - "default.handlebars->35->1508" + "default.handlebars->37->1540" ] }, { @@ -43181,7 +43285,7 @@ "zh-chs": "电源状态", "zh-cht": "電源狀態", "xloc": [ - "default.handlebars->35->1924", + "default.handlebars->37->1956", "default.handlebars->container->column_l->p21->p21main->1->1->meshPowerChartDiv->1" ] }, @@ -43208,8 +43312,8 @@ "xloc": [ "default-mobile.handlebars->11->219", "default-mobile.handlebars->11->327", - "default.handlebars->35->6", - "default.handlebars->35->971" + "default.handlebars->37->6", + "default.handlebars->37->997" ] }, { @@ -43233,7 +43337,7 @@ "zh-chs": "关闭设备", "zh-cht": "關閉裝置", "xloc": [ - "default.handlebars->35->565" + "default.handlebars->37->591" ] }, { @@ -43259,8 +43363,8 @@ "xloc": [ "default-mobile.handlebars->11->214", "default-mobile.handlebars->11->221", - "default.handlebars->35->1", - "default.handlebars->35->526" + "default.handlebars->37->1", + "default.handlebars->37->552" ] }, { @@ -43284,7 +43388,7 @@ "zh-chs": "预激活", "zh-cht": "預激活", "xloc": [ - "default.handlebars->35->1290" + "default.handlebars->37->1322" ] }, { @@ -43310,8 +43414,8 @@ "xloc": [ "default-mobile.handlebars->11->220", "default-mobile.handlebars->11->227", - "default.handlebars->35->538", - "default.handlebars->35->7" + "default.handlebars->37->564", + "default.handlebars->37->7" ] }, { @@ -43335,7 +43439,7 @@ "zh-chs": "存在于服务器上", "zh-cht": "存在於伺服器上", "xloc": [ - "default.handlebars->35->2497" + "default.handlebars->37->2529" ] }, { @@ -43434,7 +43538,7 @@ "zh-chs": "现在按下按键。", "zh-cht": "現在按下按鍵。", "xloc": [ - "default.handlebars->35->198" + "default.handlebars->37->220" ] }, { @@ -43459,10 +43563,10 @@ "xloc": [ "default-mobile.handlebars->11->79", "default-mobile.handlebars->11->80", - "default.handlebars->35->1345", - "default.handlebars->35->2399", - "default.handlebars->35->2425", - "default.handlebars->35->266" + "default.handlebars->37->1377", + "default.handlebars->37->2431", + "default.handlebars->37->2457", + "default.handlebars->37->288" ] }, { @@ -43486,7 +43590,7 @@ "zh-chs": "打印屏幕", "xloc": [ "default-mobile.handlebars->11->378", - "default.handlebars->35->1093" + "default.handlebars->37->1119" ] }, { @@ -43509,7 +43613,7 @@ "tr": "Öncelik Artışı", "zh-chs": "优先提升", "xloc": [ - "default.handlebars->35->93" + "default.handlebars->37->114" ] }, { @@ -43557,7 +43661,7 @@ "zh-chs": "隐私栏", "zh-cht": "隱私欄", "xloc": [ - "default.handlebars->35->240" + "default.handlebars->37->262" ] }, { @@ -43600,7 +43704,7 @@ "tr": "Özel Bellek", "zh-chs": "私人内存", "xloc": [ - "default.handlebars->35->106" + "default.handlebars->37->127" ] }, { @@ -43623,7 +43727,7 @@ "tr": "Ayrıcalıklı İşlemci Süresi", "zh-chs": "特权处理器时间", "xloc": [ - "default.handlebars->35->98" + "default.handlebars->37->119" ] }, { @@ -43647,7 +43751,7 @@ "zh-chs": "进程控制", "zh-cht": "進程控制", "xloc": [ - "default.handlebars->35->1142" + "default.handlebars->37->1174" ] }, { @@ -43670,7 +43774,7 @@ "tr": "İşlem Ayrıntıları, #{0}", "zh-chs": "流程详情,#{0}", "xloc": [ - "default.handlebars->35->1121" + "default.handlebars->37->1149" ] }, { @@ -43693,7 +43797,7 @@ "tr": "İşlem adı", "zh-chs": "进程名称", "xloc": [ - "default.handlebars->35->86" + "default.handlebars->37->107" ] }, { @@ -43741,7 +43845,7 @@ "zh-chs": "处理控制台命令:“{0}”", "zh-cht": "處理控制台命令:“{0}”", "xloc": [ - "default.handlebars->35->1998" + "default.handlebars->37->2030" ] }, { @@ -43765,7 +43869,7 @@ "zh-chs": "提示", "zh-cht": "提示", "xloc": [ - "default.handlebars->35->239" + "default.handlebars->37->261" ] }, { @@ -43789,7 +43893,7 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->35->957" + "default.handlebars->37->983" ] }, { @@ -43813,9 +43917,9 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->35->1795", - "default.handlebars->35->1799", - "default.handlebars->35->1802" + "default.handlebars->37->1827", + "default.handlebars->37->1831", + "default.handlebars->37->1834" ] }, { @@ -43839,7 +43943,7 @@ "zh-chs": "协议", "zh-cht": "協議", "xloc": [ - "default.handlebars->35->2495", + "default.handlebars->37->2527", "player.handlebars->3->31" ] }, @@ -43886,7 +43990,7 @@ "zh-cht": "配置狀態", "xloc": [ "default-mobile.handlebars->11->534", - "default.handlebars->35->1294" + "default.handlebars->37->1326" ] }, { @@ -43931,7 +44035,7 @@ "zh-cht": "公開鏈結", "xloc": [ "default-mobile.handlebars->11->139", - "default.handlebars->35->1959" + "default.handlebars->37->1991" ] }, { @@ -43975,7 +44079,7 @@ "zh-chs": "旁遮普文", "zh-cht": "旁遮普文", "xloc": [ - "default.handlebars->35->1509" + "default.handlebars->37->1541" ] }, { @@ -43999,7 +44103,7 @@ "zh-chs": "旁遮普(印度)", "zh-cht": "旁遮普(印度)", "xloc": [ - "default.handlebars->35->1510" + "default.handlebars->37->1542" ] }, { @@ -44023,7 +44127,7 @@ "zh-chs": "旁遮普(巴基斯坦)", "zh-cht": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->35->1511" + "default.handlebars->37->1543" ] }, { @@ -44162,7 +44266,7 @@ "zh-chs": "盖丘亚族", "zh-cht": "蓋丘亞族", "xloc": [ - "default.handlebars->35->1512" + "default.handlebars->37->1544" ] }, { @@ -44260,10 +44364,10 @@ "xloc": [ "default-mobile.handlebars->11->299", "default-mobile.handlebars->11->302", - "default.handlebars->35->337", - "default.handlebars->35->793", - "default.handlebars->35->796", - "default.handlebars->35->823" + "default.handlebars->37->359", + "default.handlebars->37->819", + "default.handlebars->37->822", + "default.handlebars->37->849" ] }, { @@ -44287,7 +44391,7 @@ "zh-chs": "RDP连接", "zh-cht": "RDP連接", "xloc": [ - "default.handlebars->35->659" + "default.handlebars->37->685" ] }, { @@ -44331,7 +44435,7 @@ "zh-chs": "RDP远程连接端口:", "zh-cht": "RDP遠程連接介面:", "xloc": [ - "default.handlebars->35->658" + "default.handlebars->37->684" ] }, { @@ -44428,7 +44532,7 @@ "zh-chs": "RSS", "zh-cht": "RSS", "xloc": [ - "default.handlebars->35->2608" + "default.handlebars->37->2640" ] }, { @@ -44476,7 +44580,7 @@ "zh-chs": "随机密码", "zh-cht": "隨機密碼", "xloc": [ - "default.handlebars->35->1762" + "default.handlebars->37->1794" ] }, { @@ -44500,7 +44604,7 @@ "zh-chs": "随机密码。", "zh-cht": "隨機密碼。", "xloc": [ - "default.handlebars->35->2207" + "default.handlebars->37->2239" ] }, { @@ -44569,9 +44673,9 @@ "zh-chs": "真正的名字", "zh-cht": "真正的名字", "xloc": [ - "default.handlebars->35->2332", - "default.handlebars->35->2334", - "default.handlebars->35->2418" + "default.handlebars->37->2364", + "default.handlebars->37->2366", + "default.handlebars->37->2450" ] }, { @@ -44595,7 +44699,7 @@ "zh-chs": "境界", "zh-cht": "境界", "xloc": [ - "default.handlebars->35->2216" + "default.handlebars->37->2248" ] }, { @@ -44620,7 +44724,7 @@ "zh-cht": "收到無效的網絡數據", "xloc": [ "default-mobile.handlebars->11->370", - "default.handlebars->35->1073", + "default.handlebars->37->1099", "sharing.handlebars->11->10", "sharing.handlebars->11->32" ] @@ -44646,8 +44750,8 @@ "zh-chs": "记录会议", "zh-cht": "記錄會議", "xloc": [ - "default.handlebars->35->1694", - "default.handlebars->35->2337" + "default.handlebars->37->1726", + "default.handlebars->37->2369" ] }, { @@ -44695,8 +44799,8 @@ "zh-chs": "记录会议", "zh-cht": "記錄會議", "xloc": [ - "default.handlebars->35->1803", - "default.handlebars->35->2406" + "default.handlebars->37->1835", + "default.handlebars->37->2438" ] }, { @@ -44720,7 +44824,7 @@ "zh-chs": "记录细节", "zh-cht": "記錄細節", "xloc": [ - "default.handlebars->35->2509" + "default.handlebars->37->2541" ] }, { @@ -44790,8 +44894,8 @@ "xloc": [ "default-mobile.handlebars->11->145", "default-mobile.handlebars->11->445", - "default.handlebars->35->1203", - "default.handlebars->35->1966", + "default.handlebars->37->1235", + "default.handlebars->37->1998", "sharing.handlebars->11->60" ] }, @@ -44845,7 +44949,7 @@ "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->35->678", + "default.handlebars->37->704", "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", @@ -44923,9 +45027,9 @@ "zh-cht": "中繼", "xloc": [ "default-mobile.handlebars->11->238", - "default.handlebars->35->2590", - "default.handlebars->35->332", - "default.handlebars->35->553" + "default.handlebars->37->2622", + "default.handlebars->37->354", + "default.handlebars->37->579" ] }, { @@ -44949,7 +45053,7 @@ "zh-chs": "中继数量", "zh-cht": "中繼數量", "xloc": [ - "default.handlebars->35->2575" + "default.handlebars->37->2607" ] }, { @@ -44993,7 +45097,7 @@ "zh-chs": "中继错误", "zh-cht": "中繼錯誤", "xloc": [ - "default.handlebars->35->2568" + "default.handlebars->37->2600" ] }, { @@ -45037,8 +45141,8 @@ "zh-chs": "中继连接", "zh-cht": "中繼連接", "xloc": [ - "default.handlebars->35->2574", - "default.handlebars->35->2602" + "default.handlebars->37->2606", + "default.handlebars->37->2634" ] }, { @@ -45084,8 +45188,8 @@ "xloc": [ "default-mobile.handlebars->11->414", "default-mobile.handlebars->11->431", - "default.handlebars->35->1156", - "default.handlebars->35->1182", + "default.handlebars->37->1188", + "default.handlebars->37->1214", "mstsc.handlebars->main->1->3->1->rowremember->3->0" ] }, @@ -45271,7 +45375,7 @@ "zh-chs": "远程剪贴板", "zh-cht": "遠程剪貼板", "xloc": [ - "default.handlebars->35->1119" + "default.handlebars->37->1147" ] }, { @@ -45296,7 +45400,7 @@ "zh-cht": "遠程命令", "xloc": [ "default-mobile.handlebars->11->625", - "default.handlebars->35->1842" + "default.handlebars->37->1874" ] }, { @@ -45322,8 +45426,8 @@ "xloc": [ "default-mobile.handlebars->11->612", "default-mobile.handlebars->11->632", - "default.handlebars->35->1827", - "default.handlebars->35->1865" + "default.handlebars->37->1859", + "default.handlebars->37->1897" ] }, { @@ -45349,8 +45453,8 @@ "xloc": [ "default-mobile.handlebars->11->194", "default-mobile.handlebars->11->197", - "default.handlebars->35->343", - "default.handlebars->35->346" + "default.handlebars->37->365", + "default.handlebars->37->368" ] }, { @@ -45373,7 +45477,7 @@ "tr": "Uzak Masaüstü + Dosya Bağlantısı", "zh-chs": "远程桌面 + 文件链接", "xloc": [ - "default.handlebars->35->248" + "default.handlebars->37->270" ] }, { @@ -45396,7 +45500,7 @@ "tr": "Uzak Masaüstü + Terminal + Dosya Bağlantısı", "zh-chs": "远程桌面 + 终端 + 文件链接", "xloc": [ - "default.handlebars->35->249" + "default.handlebars->37->271" ] }, { @@ -45419,7 +45523,7 @@ "tr": "Uzak Masaüstü + Terminal Bağlantısı", "zh-chs": "远程桌面+终端链接", "xloc": [ - "default.handlebars->35->245" + "default.handlebars->37->267" ] }, { @@ -45443,8 +45547,8 @@ "zh-chs": "远程桌面连接栏已激活/更新", "zh-cht": "遠程桌面連接欄已激活/更新", "xloc": [ - "default.handlebars->35->2012", - "default.handlebars->35->2018" + "default.handlebars->37->2044", + "default.handlebars->37->2050" ] }, { @@ -45468,7 +45572,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->35->2013" + "default.handlebars->37->2045" ] }, { @@ -45492,7 +45596,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->35->2019" + "default.handlebars->37->2051" ] }, { @@ -45516,9 +45620,9 @@ "zh-chs": "本地用户强行关闭了远程桌面连接", "zh-cht": "本地用戶強行關閉了遠程桌面連接", "xloc": [ - "default.handlebars->35->2010", - "default.handlebars->35->2014", - "default.handlebars->35->2020" + "default.handlebars->37->2042", + "default.handlebars->37->2046", + "default.handlebars->37->2052" ] }, { @@ -45562,7 +45666,7 @@ "zh-chs": "远程桌面连结", "zh-cht": "遠程桌面鏈結", "xloc": [ - "default.handlebars->35->244" + "default.handlebars->37->266" ] }, { @@ -45587,8 +45691,8 @@ "zh-cht": "遠程桌面設置", "xloc": [ "default-mobile.handlebars->11->372", - "default.handlebars->35->1084", - "default.handlebars->35->369", + "default.handlebars->37->1110", + "default.handlebars->37->391", "sharing.handlebars->11->20" ] }, @@ -45692,7 +45796,7 @@ "tr": "Uzak Dosya Bağlantısı", "zh-chs": "远程文件链接", "xloc": [ - "default.handlebars->35->246" + "default.handlebars->37->268" ] }, { @@ -45755,7 +45859,7 @@ "tr": "Uzaktan Giriş Kilidi", "zh-chs": "远程输入锁定", "xloc": [ - "default.handlebars->35->919" + "default.handlebars->37->945" ] }, { @@ -45779,7 +45883,7 @@ "zh-chs": "远程键盘输入", "zh-cht": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->35->1117", + "default.handlebars->37->1143", "sharing.handlebars->11->22" ] }, @@ -45907,7 +46011,7 @@ "tr": "Uzak Terminal + Dosya Bağlantısı", "zh-chs": "远程终端 + 文件链接", "xloc": [ - "default.handlebars->35->247" + "default.handlebars->37->269" ] }, { @@ -45931,7 +46035,7 @@ "zh-chs": "远程终端链接", "zh-cht": "遠程終端鏈接", "xloc": [ - "default.handlebars->35->243" + "default.handlebars->37->265" ] }, { @@ -45978,9 +46082,9 @@ "xloc": [ "default-mobile.handlebars->11->613", "default-mobile.handlebars->11->637", - "default.handlebars->35->1828", - "default.handlebars->35->1870", - "default.handlebars->35->2409" + "default.handlebars->37->1860", + "default.handlebars->37->1902", + "default.handlebars->37->2441" ] }, { @@ -46004,7 +46108,7 @@ "zh-chs": "远程剪贴板的有效期为60秒。", "zh-cht": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->35->1118" + "default.handlebars->37->1146" ] }, { @@ -46120,7 +46224,7 @@ "zh-chs": "删除", "zh-cht": "删除", "xloc": [ - "default.handlebars->35->188" + "default.handlebars->37->210" ] }, { @@ -46164,7 +46268,7 @@ "zh-chs": "删除配置", "zh-cht": "刪除配置", "xloc": [ - "default.handlebars->35->1666" + "default.handlebars->37->1698" ] }, { @@ -46230,8 +46334,8 @@ "zh-chs": "删除设备组权限", "zh-cht": "刪除裝置群權限", "xloc": [ - "default.handlebars->35->2301", - "default.handlebars->35->2470" + "default.handlebars->37->2333", + "default.handlebars->37->2502" ] }, { @@ -46255,8 +46359,8 @@ "zh-chs": "删除设备权限", "zh-cht": "刪除裝置權限", "xloc": [ - "default.handlebars->35->2299", - "default.handlebars->35->2457" + "default.handlebars->37->2331", + "default.handlebars->37->2489" ] }, { @@ -46280,7 +46384,7 @@ "zh-chs": "删除设备共享", "zh-cht": "刪除設備共享", "xloc": [ - "default.handlebars->35->2455" + "default.handlebars->37->2487" ] }, { @@ -46303,7 +46407,7 @@ "tr": "Giriş Simgesini Kaldır", "zh-chs": "删除登录令牌", "xloc": [ - "default.handlebars->35->1658" + "default.handlebars->37->1690" ] }, { @@ -46348,7 +46452,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->35->2466" + "default.handlebars->37->2498" ] }, { @@ -46372,8 +46476,8 @@ "zh-chs": "删除用户组权限", "zh-cht": "刪除用戶群權限", "xloc": [ - "default.handlebars->35->1891", - "default.handlebars->35->2462" + "default.handlebars->37->1923", + "default.handlebars->37->2494" ] }, { @@ -46397,7 +46501,7 @@ "zh-chs": "删除用户成员资格", "zh-cht": "刪除用戶成員資格", "xloc": [ - "default.handlebars->35->2309" + "default.handlebars->37->2341" ] }, { @@ -46421,8 +46525,8 @@ "zh-chs": "删除用户权限", "zh-cht": "刪除用戶權限", "xloc": [ - "default.handlebars->35->1889", - "default.handlebars->35->2459" + "default.handlebars->37->1921", + "default.handlebars->37->2491" ] }, { @@ -46446,7 +46550,7 @@ "zh-chs": "删除所有两因素认证。", "zh-cht": "刪除所有二因子鑑別。", "xloc": [ - "default.handlebars->35->2432" + "default.handlebars->37->2464" ] }, { @@ -46470,7 +46574,7 @@ "zh-chs": "删除此用户标识的所有先前事件。", "zh-cht": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->35->2208" + "default.handlebars->37->2240" ] }, { @@ -46494,7 +46598,7 @@ "zh-chs": "断开连接后移除设备", "zh-cht": "斷開連接後删除裝置", "xloc": [ - "default.handlebars->35->1805" + "default.handlebars->37->1837" ] }, { @@ -46518,7 +46622,7 @@ "zh-chs": "删除设备共享", "zh-cht": "刪除設備共享", "xloc": [ - "default.handlebars->35->858" + "default.handlebars->37->884" ] }, { @@ -46541,7 +46645,7 @@ "tr": "Etkin olmayanı kaldır", "zh-chs": "移除不活跃", "xloc": [ - "default.handlebars->35->1695" + "default.handlebars->37->1727" ] }, { @@ -46564,7 +46668,7 @@ "tr": "Giriş jetonunu kaldır", "zh-chs": "删除登录令牌", "xloc": [ - "default.handlebars->35->1653" + "default.handlebars->37->1685" ] }, { @@ -46588,7 +46692,7 @@ "zh-chs": "删除节点位置", "zh-cht": "刪除節點位置", "xloc": [ - "default.handlebars->35->670" + "default.handlebars->37->696" ] }, { @@ -46613,7 +46717,7 @@ "zh-cht": "刪除電話號碼", "xloc": [ "default-mobile.handlebars->11->88", - "default.handlebars->35->1349" + "default.handlebars->37->1381" ] }, { @@ -46637,7 +46741,7 @@ "zh-chs": "移除标签", "zh-cht": "删除標籤", "xloc": [ - "default.handlebars->35->598" + "default.handlebars->37->624" ] }, { @@ -46661,7 +46765,7 @@ "zh-chs": "删除此设备", "zh-cht": "刪除此裝置", "xloc": [ - "default.handlebars->35->812" + "default.handlebars->37->838" ] }, { @@ -46685,7 +46789,7 @@ "zh-chs": "删除此用户", "zh-cht": "刪除此用戶", "xloc": [ - "default.handlebars->35->2394" + "default.handlebars->37->2426" ] }, { @@ -46709,7 +46813,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->35->2446" + "default.handlebars->37->2478" ] }, { @@ -46733,7 +46837,7 @@ "zh-chs": "删除此设备的用户组权限", "zh-cht": "刪除此裝置的用戶群權限", "xloc": [ - "default.handlebars->35->2295" + "default.handlebars->37->2327" ] }, { @@ -46757,8 +46861,8 @@ "zh-chs": "删除此设备组的用户组权限", "zh-cht": "刪除此裝置群的用戶群權限", "xloc": [ - "default.handlebars->35->2289", - "default.handlebars->35->851" + "default.handlebars->37->2321", + "default.handlebars->37->877" ] }, { @@ -46782,11 +46886,11 @@ "zh-chs": "删除此设备组的用户权限", "zh-cht": "刪除此裝置群的用戶權限", "xloc": [ - "default.handlebars->35->1737", - "default.handlebars->35->2283", - "default.handlebars->35->2440", - "default.handlebars->35->2452", - "default.handlebars->35->852" + "default.handlebars->37->1769", + "default.handlebars->37->2315", + "default.handlebars->37->2472", + "default.handlebars->37->2484", + "default.handlebars->37->878" ] }, { @@ -46830,7 +46934,7 @@ "zh-chs": "删除身份验证应用程序", "zh-cht": "刪除身份驗證應用程序", "xloc": [ - "default.handlebars->35->2072" + "default.handlebars->37->2104" ] }, { @@ -46854,7 +46958,7 @@ "zh-chs": "删除的设备共享{0}", "zh-cht": "刪除的設備共享{0}", "xloc": [ - "default.handlebars->35->2083" + "default.handlebars->37->2115" ] }, { @@ -46878,7 +46982,7 @@ "zh-chs": "从设备组{1}中删除了设备{0}", "zh-cht": "從設備組{1}中刪除了設備{0}", "xloc": [ - "default.handlebars->35->2068" + "default.handlebars->37->2100" ] }, { @@ -46901,7 +47005,7 @@ "tr": "Kaldırılan giriş belirteci", "zh-chs": "删除了登录令牌", "xloc": [ - "default.handlebars->35->2097" + "default.handlebars->37->2129" ] }, { @@ -46925,7 +47029,7 @@ "zh-chs": "已删除用户{0}的电话号码", "zh-cht": "已刪除用戶{0}的電話號碼", "xloc": [ - "default.handlebars->35->2078" + "default.handlebars->37->2110" ] }, { @@ -46948,7 +47052,7 @@ "tr": "Anında iletme bildirimi kimlik doğrulama cihazı kaldırıldı", "zh-chs": "删除了推送通知身份验证设备", "xloc": [ - "default.handlebars->35->2095" + "default.handlebars->37->2127" ] }, { @@ -46972,7 +47076,7 @@ "zh-chs": "移除安全密钥", "zh-cht": "移除安全密鑰", "xloc": [ - "default.handlebars->35->2075" + "default.handlebars->37->2107" ] }, { @@ -46996,9 +47100,9 @@ "zh-chs": "删除了{0}的用户设备权限", "zh-cht": "刪除了{0}的用戶設備權限", "xloc": [ - "default.handlebars->35->2041", - "default.handlebars->35->2062", - "default.handlebars->35->2067" + "default.handlebars->37->2073", + "default.handlebars->37->2094", + "default.handlebars->37->2099" ] }, { @@ -47022,7 +47126,7 @@ "zh-chs": "从设备组{1}中删除了用户组{0}", "zh-cht": "從設備組{1}中刪除了用戶組{0}", "xloc": [ - "default.handlebars->35->2051" + "default.handlebars->37->2083" ] }, { @@ -47046,7 +47150,7 @@ "zh-chs": "从设备组{1}中删除了用户{0}", "zh-cht": "已從設備組{1}中刪除用戶{0}", "xloc": [ - "default.handlebars->35->2064" + "default.handlebars->37->2096" ] }, { @@ -47070,8 +47174,8 @@ "zh-chs": "从用户组{1}中删除了用户{0}", "zh-cht": "從用戶組{1}中刪除了用戶{0}", "xloc": [ - "default.handlebars->35->2043", - "default.handlebars->35->2053" + "default.handlebars->37->2075", + "default.handlebars->37->2085" ] }, { @@ -47099,9 +47203,9 @@ "default-mobile.handlebars->11->449", "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->35->1207", - "default.handlebars->35->1970", - "default.handlebars->35->664", + "default.handlebars->37->1239", + "default.handlebars->37->2002", + "default.handlebars->37->690", "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", @@ -47150,7 +47254,7 @@ "zh-chs": "重命名:“{0}”为“{1}”", "zh-cht": "重命名:“{0}”為“{1}”", "xloc": [ - "default.handlebars->35->2029" + "default.handlebars->37->2061" ] }, { @@ -47174,7 +47278,7 @@ "zh-chs": "报告日", "zh-cht": "報告日", "xloc": [ - "default.handlebars->35->2110" + "default.handlebars->37->2142" ] }, { @@ -47198,7 +47302,7 @@ "zh-chs": "报告类型", "zh-cht": "報告類型", "xloc": [ - "default.handlebars->35->2105" + "default.handlebars->37->2137" ] }, { @@ -47307,7 +47411,7 @@ "tr": "Ayrıntılar isteniyor...", "zh-chs": "查询详情...", "xloc": [ - "default.handlebars->35->1122" + "default.handlebars->37->1150" ] }, { @@ -47331,7 +47435,7 @@ "zh-chs": "要求:", "zh-cht": "要求:", "xloc": [ - "default.handlebars->35->1624" + "default.handlebars->37->1656" ] }, { @@ -47356,8 +47460,8 @@ "zh-cht": "要求:{0}。", "xloc": [ "default-mobile.handlebars->11->113", - "default.handlebars->35->2213", - "default.handlebars->35->2430" + "default.handlebars->37->2245", + "default.handlebars->37->2462" ] }, { @@ -47381,7 +47485,7 @@ "zh-chs": "需要安装MeshCentral路由器", "zh-cht": "需要安裝MeshCentral路由器", "xloc": [ - "default.handlebars->35->822" + "default.handlebars->37->848" ] }, { @@ -47405,9 +47509,9 @@ "zh-chs": "需要安装MeshCentral Router。", "zh-cht": "需要安裝MeshCentral Router。", "xloc": [ - "default.handlebars->35->824", - "default.handlebars->35->826", - "default.handlebars->35->828" + "default.handlebars->37->850", + "default.handlebars->37->852", + "default.handlebars->37->854" ] }, { @@ -47458,7 +47562,7 @@ "zh-cht": "重設", "xloc": [ "default-mobile.handlebars->11->326", - "default.handlebars->35->970", + "default.handlebars->37->996", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -47484,7 +47588,7 @@ "zh-cht": "重置/關閉電源", "xloc": [ "default-mobile.handlebars->11->626", - "default.handlebars->35->1843" + "default.handlebars->37->1875" ] }, { @@ -47586,7 +47690,7 @@ "zh-chs": "重置设备", "zh-cht": "重置裝置", "xloc": [ - "default.handlebars->35->564" + "default.handlebars->37->590" ] }, { @@ -47635,9 +47739,9 @@ "zh-cht": "重置/關閉", "xloc": [ "default-mobile.handlebars->11->646", - "default.handlebars->35->1880", - "default.handlebars->35->888", - "default.handlebars->35->910" + "default.handlebars->37->1912", + "default.handlebars->37->914", + "default.handlebars->37->936" ] }, { @@ -47661,7 +47765,7 @@ "zh-chs": "重新启动", "zh-cht": "重新啟動", "xloc": [ - "default.handlebars->35->1136", + "default.handlebars->37->1168", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -47686,7 +47790,7 @@ "zh-chs": "还原服务器", "zh-cht": "還原伺服器", "xloc": [ - "default.handlebars->35->1671" + "default.handlebars->37->1703" ] }, { @@ -47734,7 +47838,7 @@ "zh-chs": "使用备份还原服务器,这将删除现有服务器数据。仅当您知道自己在做什么时才这样做。", "zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據。僅當你知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->35->1668" + "default.handlebars->37->1700" ] }, { @@ -47759,9 +47863,9 @@ "zh-cht": "受限制的", "xloc": [ "default-mobile.handlebars->11->265", - "default.handlebars->35->207", - "default.handlebars->35->716", - "default.handlebars->35->838" + "default.handlebars->37->229", + "default.handlebars->37->742", + "default.handlebars->37->864" ] }, { @@ -47785,7 +47889,7 @@ "zh-chs": "限制条件", "zh-cht": "限制條件", "xloc": [ - "default.handlebars->35->2321" + "default.handlebars->37->2353" ] }, { @@ -47809,7 +47913,7 @@ "zh-chs": "雷托-罗曼语", "zh-cht": "雷托-羅曼語", "xloc": [ - "default.handlebars->35->1513" + "default.handlebars->37->1545" ] }, { @@ -47833,7 +47937,7 @@ "zh-chs": "正确的", "xloc": [ "default-mobile.handlebars->11->387", - "default.handlebars->35->1102" + "default.handlebars->37->1128" ] }, { @@ -47857,7 +47961,7 @@ "zh-chs": "罗马尼亚文", "zh-cht": "羅馬尼亞文", "xloc": [ - "default.handlebars->35->1514" + "default.handlebars->37->1546" ] }, { @@ -47881,7 +47985,7 @@ "zh-chs": "罗马尼亚文(摩尔达维亚)", "zh-cht": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->35->1515" + "default.handlebars->37->1547" ] }, { @@ -47907,8 +48011,8 @@ "xloc": [ "default-mobile.handlebars->11->131", "default-mobile.handlebars->11->438", - "default.handlebars->35->1191", - "default.handlebars->35->1938", + "default.handlebars->37->1223", + "default.handlebars->37->1970", "sharing.handlebars->11->49" ] }, @@ -48050,7 +48154,7 @@ "zh-chs": "路由器", "zh-cht": "路由器", "xloc": [ - "default.handlebars->35->314" + "default.handlebars->37->336" ] }, { @@ -48114,9 +48218,9 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->35->593", - "default.handlebars->35->968", - "default.handlebars->35->988" + "default.handlebars->37->1014", + "default.handlebars->37->619", + "default.handlebars->37->994" ] }, { @@ -48140,7 +48244,7 @@ "zh-chs": "运行MeshCentral Router,然后单击“安装”以使其可从浏览器启动。", "zh-cht": "運行MeshCentral Router,然後單擊“安裝”以使其可從瀏覽器啟動。", "xloc": [ - "default.handlebars->35->1030" + "default.handlebars->37->1056" ] }, { @@ -48164,8 +48268,8 @@ "zh-chs": "以代理身份运行", "zh-cht": "以代理身份運行", "xloc": [ - "default.handlebars->35->590", - "default.handlebars->35->985" + "default.handlebars->37->1011", + "default.handlebars->37->616" ] }, { @@ -48189,8 +48293,8 @@ "zh-chs": "以用户身份运行,如果没有用户,则运行代理", "zh-cht": "以用戶身份運行,如果沒有用戶,則運行代理", "xloc": [ - "default.handlebars->35->591", - "default.handlebars->35->986" + "default.handlebars->37->1012", + "default.handlebars->37->617" ] }, { @@ -48214,7 +48318,7 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->35->566" + "default.handlebars->37->592" ] }, { @@ -48238,8 +48342,8 @@ "zh-chs": "在所选设备上运行命令。", "zh-cht": "在所選裝置上運行命令。", "xloc": [ - "default.handlebars->35->586", - "default.handlebars->35->981" + "default.handlebars->37->1007", + "default.handlebars->37->612" ] }, { @@ -48263,6 +48367,14 @@ "zh-chs": "在此设备上运行命令。", "zh-cht": "在此裝置上運行命令。" }, + { + "en": "Running", + "pl": "Bieganie", + "xloc": [ + "default.handlebars->37->1152", + "default.handlebars->37->1156" + ] + }, { "cs": "Spouštění příkazů", "de": "Befehle ausführen", @@ -48284,7 +48396,7 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->35->2005" + "default.handlebars->37->2037" ] }, { @@ -48308,7 +48420,7 @@ "zh-chs": "以用户身份运行命令", "zh-cht": "以用戶身份運行命令", "xloc": [ - "default.handlebars->35->2080" + "default.handlebars->37->2112" ] }, { @@ -48332,7 +48444,7 @@ "zh-chs": "如果可能,以用户身份运行命令", "zh-cht": "如果可能,以用戶身份運行命令", "xloc": [ - "default.handlebars->35->2081" + "default.handlebars->37->2113" ] }, { @@ -48356,7 +48468,7 @@ "zh-chs": "俄文", "zh-cht": "俄文", "xloc": [ - "default.handlebars->35->1516" + "default.handlebars->37->1548" ] }, { @@ -48380,7 +48492,7 @@ "zh-chs": "俄文(摩尔达维亚)", "zh-cht": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->35->1517" + "default.handlebars->37->1549" ] }, { @@ -48443,8 +48555,8 @@ "tr": "SCP", "zh-chs": "SCP", "xloc": [ - "default.handlebars->35->339", - "default.handlebars->35->827" + "default.handlebars->37->361", + "default.handlebars->37->853" ] }, { @@ -48468,8 +48580,8 @@ "zh-chs": "短信", "zh-cht": "短信", "xloc": [ - "default.handlebars->35->2381", - "default.handlebars->35->2386", + "default.handlebars->37->2413", + "default.handlebars->37->2418", "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", @@ -48498,7 +48610,7 @@ "zh-chs": "此用户的短信功能电话号码。", "zh-cht": "此用戶的短信功能電話號碼。", "xloc": [ - "default.handlebars->35->2402" + "default.handlebars->37->2434" ] }, { @@ -48522,7 +48634,7 @@ "zh-chs": "短信错误", "xloc": [ "default-mobile.handlebars->11->692", - "default.handlebars->35->2548" + "default.handlebars->37->2580" ] }, { @@ -48546,7 +48658,14 @@ "zh-chs": "短信错误:{0}", "xloc": [ "default-mobile.handlebars->11->693", - "default.handlebars->35->2549" + "default.handlebars->37->2581" + ] + }, + { + "en": "SMS gateway has limited use in LAN mode.", + "pl": "Bramka SMS ma ograniczone zastosowanie w trybie LAN.", + "xloc": [ + "default.handlebars->37->97" ] }, { @@ -48570,7 +48689,7 @@ "zh-chs": "短信网关未启用", "xloc": [ "default-mobile.handlebars->11->687", - "default.handlebars->35->2543" + "default.handlebars->37->2575" ] }, { @@ -48640,7 +48759,14 @@ "zh-chs": "短信发送成功。", "xloc": [ "default-mobile.handlebars->11->691", - "default.handlebars->35->2547" + "default.handlebars->37->2579" + ] + }, + { + "en": "SMTP server has limited use in LAN mode.", + "pl": "Serwer SMTP ma ograniczone wykorzystanie w trybie LAN.", + "xloc": [ + "default.handlebars->37->96" ] }, { @@ -48665,10 +48791,10 @@ "xloc": [ "default-mobile.handlebars->11->298", "default-mobile.handlebars->11->301", - "default.handlebars->35->338", - "default.handlebars->35->792", - "default.handlebars->35->795", - "default.handlebars->35->825" + "default.handlebars->37->360", + "default.handlebars->37->818", + "default.handlebars->37->821", + "default.handlebars->37->851" ] }, { @@ -48692,7 +48818,7 @@ "zh-chs": "SSH 连接", "xloc": [ "default-mobile.handlebars->11->405", - "default.handlebars->35->661" + "default.handlebars->37->687" ] }, { @@ -48717,8 +48843,8 @@ "xloc": [ "default-mobile.handlebars->11->403", "default-mobile.handlebars->11->443", - "default.handlebars->35->1144", - "default.handlebars->35->1201" + "default.handlebars->37->1176", + "default.handlebars->37->1233" ] }, { @@ -48762,7 +48888,7 @@ "zh-chs": "SSH远程连接端口:", "xloc": [ "default-mobile.handlebars->11->404", - "default.handlebars->35->660" + "default.handlebars->37->686" ] }, { @@ -48787,8 +48913,8 @@ "xloc": [ "default-mobile.handlebars->11->297", "default-mobile.handlebars->11->300", - "default.handlebars->35->791", - "default.handlebars->35->794" + "default.handlebars->37->817", + "default.handlebars->37->820" ] }, { @@ -48812,8 +48938,8 @@ "zh-chs": "与设备名称相同", "zh-cht": "與裝置名稱相同", "xloc": [ - "default.handlebars->35->385", - "default.handlebars->35->394" + "default.handlebars->37->407", + "default.handlebars->37->416" ] }, { @@ -48837,7 +48963,7 @@ "zh-chs": "萨米(拉普兰)", "zh-cht": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->35->1518" + "default.handlebars->37->1550" ] }, { @@ -48861,8 +48987,9 @@ "zh-chs": "IP范围值样本", "zh-cht": "IP範圍值樣本", "xloc": [ - "default.handlebars->35->217", - "default.handlebars->35->221" + "default.handlebars->37->239", + "default.handlebars->37->243", + "default.handlebars->37->443" ] }, { @@ -48907,7 +49034,7 @@ "zh-chs": "三乡", "zh-cht": "三鄉", "xloc": [ - "default.handlebars->35->1519" + "default.handlebars->37->1551" ] }, { @@ -48931,7 +49058,7 @@ "zh-chs": "梵文", "zh-cht": "梵文", "xloc": [ - "default.handlebars->35->1520" + "default.handlebars->37->1552" ] }, { @@ -48955,7 +49082,7 @@ "zh-chs": "撒丁岛", "zh-cht": "撒丁島", "xloc": [ - "default.handlebars->35->1521" + "default.handlebars->37->1553" ] }, { @@ -49028,7 +49155,7 @@ "zh-chs": "保存节点位置", "zh-cht": "保存節點位置", "xloc": [ - "default.handlebars->35->671" + "default.handlebars->37->697" ] }, { @@ -49099,8 +49226,8 @@ "zh-chs": "扫瞄", "zh-cht": "掃瞄", "xloc": [ - "default.handlebars->35->415", - "default.handlebars->35->417" + "default.handlebars->37->437", + "default.handlebars->37->439" ] }, { @@ -49124,7 +49251,7 @@ "zh-chs": "扫描网络", "zh-cht": "掃描網絡", "xloc": [ - "default.handlebars->35->373" + "default.handlebars->37->395" ] }, { @@ -49148,7 +49275,7 @@ "zh-chs": "扫描英特尔®AMT设备", "zh-cht": "掃描Intel® AMT裝置", "xloc": [ - "default.handlebars->35->418" + "default.handlebars->37->442" ] }, { @@ -49172,7 +49299,7 @@ "zh-chs": "扫描未有任何结果。", "zh-cht": "掃描未有任何結果。", "xloc": [ - "default.handlebars->35->220" + "default.handlebars->37->242" ] }, { @@ -49196,7 +49323,7 @@ "zh-chs": "扫描...", "zh-cht": "掃描...", "xloc": [ - "default.handlebars->35->419" + "default.handlebars->37->444" ] }, { @@ -49292,8 +49419,8 @@ "zh-chs": "搜寻", "zh-cht": "搜尋", "xloc": [ - "default.handlebars->35->1195", - "default.handlebars->35->684", + "default.handlebars->37->1227", + "default.handlebars->37->710", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", "sharing.handlebars->11->53" ] @@ -49346,6 +49473,13 @@ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, + { + "en": "Secret", + "pl": "Sekret", + "xloc": [ + "default.handlebars->37->190" + ] + }, { "cs": "Zabezpečené přihlášení", "de": "Sicherheits Login", @@ -49397,7 +49531,7 @@ "zh-cht": "已使用TLS保安", "xloc": [ "default-mobile.handlebars->11->537", - "default.handlebars->35->1297" + "default.handlebars->37->1329" ] }, { @@ -49423,11 +49557,11 @@ "xloc": [ "default-mobile.handlebars->11->348", "default-mobile.handlebars->11->536", - "default.handlebars->35->1002", - "default.handlebars->35->1296", - "default.handlebars->35->1936", - "default.handlebars->35->2382", - "default.handlebars->35->398", + "default.handlebars->37->1028", + "default.handlebars->37->1328", + "default.handlebars->37->1968", + "default.handlebars->37->2414", + "default.handlebars->37->420", "default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1" ] }, @@ -49452,7 +49586,7 @@ "zh-chs": "安全密钥", "zh-cht": "安全密鑰", "xloc": [ - "default.handlebars->35->2377" + "default.handlebars->37->2409" ] }, { @@ -49476,7 +49610,7 @@ "zh-chs": "安全警告", "xloc": [ "default-mobile.handlebars->11->661", - "default.handlebars->35->2517" + "default.handlebars->37->2549" ] }, { @@ -49544,12 +49678,13 @@ "zh-chs": "全选", "zh-cht": "全選", "xloc": [ - "default.handlebars->35->1198", - "default.handlebars->35->1200", - "default.handlebars->35->1962", - "default.handlebars->35->2155", - "default.handlebars->35->2240", - "default.handlebars->35->558", + "default.handlebars->37->1230", + "default.handlebars->37->1232", + "default.handlebars->37->1994", + "default.handlebars->37->2187", + "default.handlebars->37->2272", + "default.handlebars->37->441", + "default.handlebars->37->584", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -49582,11 +49717,11 @@ "zh-chs": "选择无", "zh-cht": "選擇無", "xloc": [ - "default.handlebars->35->1199", - "default.handlebars->35->1961", - "default.handlebars->35->2154", - "default.handlebars->35->2239", - "default.handlebars->35->557", + "default.handlebars->37->1231", + "default.handlebars->37->1993", + "default.handlebars->37->2186", + "default.handlebars->37->2271", + "default.handlebars->37->583", "default.handlebars->meshContextMenu->cxselectnone", "sharing.handlebars->11->57" ] @@ -49611,7 +49746,7 @@ "tr": "Anında iletme bildirimi kimlik doğrulaması için kaydedilecek bir cihaz seçin. Seçildikten sonra, cihaz onay isteyecektir.", "zh-chs": "选择要注册推送通知身份验证的设备。选择后,设备将提示确认。", "xloc": [ - "default.handlebars->35->1365" + "default.handlebars->37->1397" ] }, { @@ -49635,7 +49770,7 @@ "zh-chs": "为所选设备选择一个新组", "zh-cht": "為所選裝置選擇一個新群", "xloc": [ - "default.handlebars->35->1016" + "default.handlebars->37->1042" ] }, { @@ -49659,7 +49794,7 @@ "zh-chs": "选择此设备的新组", "zh-cht": "選擇此裝置的新群", "xloc": [ - "default.handlebars->35->1015" + "default.handlebars->37->1041" ] }, { @@ -49683,7 +49818,7 @@ "zh-chs": "选择要放置的节点", "zh-cht": "選擇要放置的節點", "xloc": [ - "default.handlebars->35->687" + "default.handlebars->37->713" ] }, { @@ -49707,7 +49842,7 @@ "zh-chs": "选择要在所有选定设备上执行的操作。仅在拥有适当权限的情况下才能执行操作。", "zh-cht": "選擇要在所有選定裝置上執行的操作。僅在擁有適當權限的情況下才能執行操作。", "xloc": [ - "default.handlebars->35->574" + "default.handlebars->37->600" ] }, { @@ -49731,8 +49866,8 @@ "zh-chs": "选择要对所有选定用户执行的操作。", "zh-cht": "選擇要對所有選定用戶執行的操作。", "xloc": [ - "default.handlebars->35->2158", - "default.handlebars->35->2241" + "default.handlebars->37->2190", + "default.handlebars->37->2273" ] }, { @@ -49757,7 +49892,7 @@ "zh-cht": "選擇要在此裝置上執行的操作。", "xloc": [ "default-mobile.handlebars->11->317", - "default.handlebars->35->960" + "default.handlebars->37->986" ] }, { @@ -49781,7 +49916,7 @@ "zh-chs": "选择新密码", "zh-cht": "選擇新密碼", "xloc": [ - "default.handlebars->35->1763" + "default.handlebars->37->1795" ] }, { @@ -49831,7 +49966,7 @@ "zh-cht": "僅自我事件", "xloc": [ "default-mobile.handlebars->11->642", - "default.handlebars->35->1876" + "default.handlebars->37->1908" ] }, { @@ -49903,7 +50038,7 @@ "zh-chs": "发电邮", "zh-cht": "發電郵", "xloc": [ - "default.handlebars->35->2169" + "default.handlebars->37->2201" ] }, { @@ -49927,8 +50062,8 @@ "zh-chs": "发送MQTT消息", "zh-cht": "發送MQTT消息", "xloc": [ - "default.handlebars->35->559", - "default.handlebars->35->972" + "default.handlebars->37->585", + "default.handlebars->37->998" ] }, { @@ -49952,7 +50087,7 @@ "zh-chs": "发送MQTT消息", "zh-cht": "發送MQTT消息", "xloc": [ - "default.handlebars->35->1008" + "default.handlebars->37->1034" ] }, { @@ -49976,7 +50111,7 @@ "zh-chs": "发送短信", "zh-cht": "發送簡訊", "xloc": [ - "default.handlebars->35->2167" + "default.handlebars->37->2199" ] }, { @@ -50000,7 +50135,7 @@ "zh-chs": "发送短信给该用户", "zh-cht": "發送短信給該用戶", "xloc": [ - "default.handlebars->35->2387" + "default.handlebars->37->2419" ] }, { @@ -50024,7 +50159,7 @@ "zh-chs": "发送电邮给该用户", "zh-cht": "發送電郵給該用戶", "xloc": [ - "default.handlebars->35->2389" + "default.handlebars->37->2421" ] }, { @@ -50048,7 +50183,7 @@ "zh-chs": "向该组中的所有用户发送通知。", "zh-cht": "向該群中的所有用戶發送通知。", "xloc": [ - "default.handlebars->35->2280" + "default.handlebars->37->2312" ] }, { @@ -50072,7 +50207,7 @@ "zh-chs": "向该用户发送文本通知。", "zh-cht": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->35->2170" + "default.handlebars->37->2202" ] }, { @@ -50096,7 +50231,7 @@ "zh-chs": "发送电邮给用户", "zh-cht": "發送電郵給用戶", "xloc": [ - "default.handlebars->35->2150" + "default.handlebars->37->2182" ] }, { @@ -50120,7 +50255,7 @@ "zh-chs": "发送安装连结", "zh-cht": "發送安裝鏈結", "xloc": [ - "default.handlebars->35->428" + "default.handlebars->37->453" ] }, { @@ -50144,7 +50279,7 @@ "zh-chs": "发送邀请电邮。", "zh-cht": "發送邀請電郵。", "xloc": [ - "default.handlebars->35->2212" + "default.handlebars->37->2244" ] }, { @@ -50291,7 +50426,14 @@ "zh-chs": "发送用户通知", "zh-cht": "發送用戶通知", "xloc": [ - "default.handlebars->35->2391" + "default.handlebars->37->2423" + ] + }, + { + "en": "SendGrid server has limited use in LAN mode.", + "pl": "Serwer SendGrid ma ograniczone zastosowanie w trybie LAN.", + "xloc": [ + "default.handlebars->37->95" ] }, { @@ -50361,7 +50503,7 @@ "zh-chs": "塞尔维亚", "zh-cht": "塞爾維亞", "xloc": [ - "default.handlebars->35->1524" + "default.handlebars->37->1556" ] }, { @@ -50386,7 +50528,7 @@ "zh-cht": "序列號", "xloc": [ "default-mobile.handlebars->11->548", - "default.handlebars->35->1308" + "default.handlebars->37->1340" ] }, { @@ -50430,7 +50572,7 @@ "zh-chs": "服务器备份", "zh-cht": "伺服器備份", "xloc": [ - "default.handlebars->35->2222" + "default.handlebars->37->2254" ] }, { @@ -50454,7 +50596,7 @@ "zh-chs": "服务器证书", "zh-cht": "伺服器憑證", "xloc": [ - "default.handlebars->35->2623" + "default.handlebars->37->2655" ] }, { @@ -50477,7 +50619,7 @@ "tr": "Sunucu Bağlantısı", "zh-chs": "服务器连接", "xloc": [ - "default.handlebars->35->283" + "default.handlebars->37->305" ] }, { @@ -50501,7 +50643,7 @@ "zh-chs": "服务器数据库", "zh-cht": "伺服器數據庫", "xloc": [ - "default.handlebars->35->2624" + "default.handlebars->37->2656" ] }, { @@ -50527,11 +50669,11 @@ "xloc": [ "default-mobile.handlebars->11->619", "default-mobile.handlebars->11->634", - "default.handlebars->35->1836", - "default.handlebars->35->1867", - "default.handlebars->35->2219", - "default.handlebars->35->881", - "default.handlebars->35->903" + "default.handlebars->37->1868", + "default.handlebars->37->1899", + "default.handlebars->37->2251", + "default.handlebars->37->907", + "default.handlebars->37->929" ] }, { @@ -50579,7 +50721,7 @@ "zh-chs": "服务器限制", "xloc": [ "default-mobile.handlebars->11->660", - "default.handlebars->35->2516" + "default.handlebars->37->2548" ] }, { @@ -50626,8 +50768,8 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->35->2142", - "default.handlebars->35->2233" + "default.handlebars->37->2174", + "default.handlebars->37->2265" ] }, { @@ -50651,7 +50793,7 @@ "zh-chs": "服务器配额", "zh-cht": "伺服器配額", "xloc": [ - "default.handlebars->35->2351" + "default.handlebars->37->2383" ] }, { @@ -50675,7 +50817,7 @@ "zh-chs": "服务器还原", "zh-cht": "伺服器還原", "xloc": [ - "default.handlebars->35->2223" + "default.handlebars->37->2255" ] }, { @@ -50699,7 +50841,7 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->35->2350" + "default.handlebars->37->2382" ] }, { @@ -50723,7 +50865,7 @@ "zh-chs": "服务器状态", "zh-cht": "伺服器狀態", "xloc": [ - "default.handlebars->35->2554" + "default.handlebars->37->2586" ] }, { @@ -50771,7 +50913,7 @@ "zh-chs": "服务器跟踪", "zh-cht": "伺服器追蹤", "xloc": [ - "default.handlebars->35->2636" + "default.handlebars->37->2668" ] }, { @@ -50794,7 +50936,7 @@ "tr": "Sunucu İzleme Etkinliği", "zh-chs": "服务器跟踪事件", "xloc": [ - "default.handlebars->35->2615" + "default.handlebars->37->2647" ] }, { @@ -50867,7 +51009,7 @@ "zh-chs": "服务器更新", "zh-cht": "伺服器更新", "xloc": [ - "default.handlebars->35->2224" + "default.handlebars->37->2256" ] }, { @@ -50988,7 +51130,7 @@ "zh-chs": "服务器没有错误日志。", "zh-cht": "伺服器沒有錯誤日誌。", "xloc": [ - "default.handlebars->35->164" + "default.handlebars->37->185" ] }, { @@ -51106,7 +51248,7 @@ "zh-chs": "ServerStats.csv", "zh-cht": "ServerStats.csv", "xloc": [ - "default.handlebars->35->2614" + "default.handlebars->37->2646" ] }, { @@ -51130,7 +51272,7 @@ "zh-chs": "服务详情", "zh-cht": "服務詳情", "xloc": [ - "default.handlebars->35->1137" + "default.handlebars->37->1169" ] }, { @@ -51178,7 +51320,7 @@ "zh-chs": "会话", "zh-cht": "節", "xloc": [ - "default.handlebars->35->2477", + "default.handlebars->37->2509", "ssh.handlebars->3->10" ] }, @@ -51202,7 +51344,7 @@ "tr": "Oturum kimliği", "zh-chs": "会话 ID", "xloc": [ - "default.handlebars->35->96" + "default.handlebars->37->117" ] }, { @@ -51226,7 +51368,7 @@ "zh-chs": "会话信息", "zh-cht": "會議訊息", "xloc": [ - "default.handlebars->35->1081", + "default.handlebars->37->1107", "sharing.handlebars->11->18" ] }, @@ -51252,8 +51394,8 @@ "xloc": [ "default-mobile.handlebars->11->418", "default-mobile.handlebars->11->436", - "default.handlebars->35->1160", - "default.handlebars->35->1186" + "default.handlebars->37->1192", + "default.handlebars->37->1218" ] }, { @@ -51328,8 +51470,8 @@ "xloc": [ "default-mobile.handlebars->11->419", "default-mobile.handlebars->11->437", - "default.handlebars->35->1161", - "default.handlebars->35->1187" + "default.handlebars->37->1193", + "default.handlebars->37->1219" ] }, { @@ -51378,10 +51520,17 @@ "zh-cht": "節", "xloc": [ "default-mobile.handlebars->11->212", - "default.handlebars->35->361", + "default.handlebars->37->383", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->7" ] }, + { + "en": "Set Clipboard", + "pl": "Ustaw schowek", + "xloc": [ + "default.handlebars->37->1145" + ] + }, { "cs": "Nastavit port RDP ...", "de": "RDP-Port einstellen...", @@ -51446,7 +51595,7 @@ "zh-chs": "设置标签", "zh-cht": "設置標籤", "xloc": [ - "default.handlebars->35->597" + "default.handlebars->37->623" ] }, { @@ -51470,7 +51619,7 @@ "zh-chs": "设置剪贴板内容,{0}个字节", "zh-cht": "設置剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->35->2003" + "default.handlebars->37->2035" ] }, { @@ -51519,7 +51668,7 @@ "zh-chs": "设定档案", "zh-cht": "設定檔案", "xloc": [ - "default.handlebars->35->489" + "default.handlebars->37->514" ] }, { @@ -51569,8 +51718,8 @@ "zh-cht": "設定", "xloc": [ "agent-translations.json", - "default.handlebars->35->1729", - "default.handlebars->35->375" + "default.handlebars->37->1761", + "default.handlebars->37->397" ] }, { @@ -51636,7 +51785,7 @@ "zh-chs": "将此服务器设置为自动将备份上传到Google云端硬盘。首先为您的帐户创建并输入Google Drive ClientID和ClientSecret。", "zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。", "xloc": [ - "default.handlebars->35->1659" + "default.handlebars->37->1691" ] }, { @@ -51661,10 +51810,10 @@ "zh-cht": "設定...", "xloc": [ "default-mobile.handlebars->11->3", - "default.handlebars->35->10", - "default.handlebars->35->317", - "default.handlebars->35->320", - "default.handlebars->35->368", + "default.handlebars->37->10", + "default.handlebars->37->339", + "default.handlebars->37->342", + "default.handlebars->37->390", "sharing.handlebars->11->3", "ssh.handlebars->3->3", "xterm.handlebars->9->3" @@ -51691,7 +51840,7 @@ "zh-chs": "共享", "zh-cht": "共享", "xloc": [ - "default.handlebars->35->808" + "default.handlebars->37->834" ] }, { @@ -51715,8 +51864,8 @@ "zh-chs": "共享设备", "zh-cht": "共享裝置", "xloc": [ - "default.handlebars->35->251", - "default.handlebars->35->959" + "default.handlebars->37->273", + "default.handlebars->37->985" ] }, { @@ -51764,7 +51913,7 @@ "zh-chs": "共享过程", "zh-cht": "共享過程", "xloc": [ - "default.handlebars->35->1131" + "default.handlebars->37->1163" ] }, { @@ -51787,7 +51936,7 @@ "tr": "Paylaşım", "zh-chs": "分享", "xloc": [ - "default.handlebars->35->1881" + "default.handlebars->37->1913" ] }, { @@ -51862,8 +52011,8 @@ "xloc": [ "default-mobile.handlebars->11->390", "default-mobile.handlebars->11->394", - "default.handlebars->35->1105", - "default.handlebars->35->1109" + "default.handlebars->37->1131", + "default.handlebars->37->1135" ] }, { @@ -52142,7 +52291,7 @@ "zh-cht": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->11->622", - "default.handlebars->35->1839" + "default.handlebars->37->1871" ] }, { @@ -52186,7 +52335,7 @@ "zh-chs": "显示连接工具栏", "zh-cht": "顯示連接工具欄", "xloc": [ - "default.handlebars->35->1796" + "default.handlebars->37->1828" ] }, { @@ -52234,7 +52383,7 @@ "zh-chs": "显示设备位置信息", "zh-cht": "顯示裝置位置訊息", "xloc": [ - "default.handlebars->35->816" + "default.handlebars->37->842" ] }, { @@ -52258,7 +52407,7 @@ "zh-chs": "显示设备网络接口信息", "zh-cht": "顯示裝置網絡介面訊息", "xloc": [ - "default.handlebars->35->814" + "default.handlebars->37->840" ] }, { @@ -52306,8 +52455,8 @@ "zh-chs": "显示1分钟", "zh-cht": "顯示1分鐘", "xloc": [ - "default.handlebars->35->2173", - "default.handlebars->35->2198" + "default.handlebars->37->2205", + "default.handlebars->37->2230" ] }, { @@ -52331,8 +52480,8 @@ "zh-chs": "显示10秒", "zh-cht": "顯示10秒", "xloc": [ - "default.handlebars->35->2172", - "default.handlebars->35->2197" + "default.handlebars->37->2204", + "default.handlebars->37->2229" ] }, { @@ -52356,8 +52505,8 @@ "zh-chs": "显示5分钟", "zh-cht": "顯示5分鐘", "xloc": [ - "default.handlebars->35->2174", - "default.handlebars->35->2199" + "default.handlebars->37->2206", + "default.handlebars->37->2231" ] }, { @@ -52381,8 +52530,8 @@ "zh-chs": "显示消息,直到被用户拒绝", "zh-cht": "顯示消息,直到被用戶拒絕", "xloc": [ - "default.handlebars->35->2171", - "default.handlebars->35->2196" + "default.handlebars->37->2203", + "default.handlebars->37->2228" ] }, { @@ -52632,8 +52781,8 @@ "zh-chs": "简单管理员控制模式(ACM)", "zh-cht": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->35->1720", - "default.handlebars->35->1753" + "default.handlebars->37->1752", + "default.handlebars->37->1785" ] }, { @@ -52657,8 +52806,8 @@ "zh-chs": "简单客户端控制模式(CCM)", "zh-cht": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->35->1718", - "default.handlebars->35->1757" + "default.handlebars->37->1750", + "default.handlebars->37->1789" ] }, { @@ -52682,7 +52831,7 @@ "zh-chs": "信地", "zh-cht": "信地", "xloc": [ - "default.handlebars->35->1522" + "default.handlebars->37->1554" ] }, { @@ -52706,7 +52855,7 @@ "zh-chs": "僧伽罗文", "zh-cht": "僧伽羅文", "xloc": [ - "default.handlebars->35->1523" + "default.handlebars->37->1555" ] }, { @@ -52776,8 +52925,8 @@ "zh-chs": "尺寸", "zh-cht": "尺寸", "xloc": [ - "default.handlebars->35->2480", - "default.handlebars->35->2501", + "default.handlebars->37->2512", + "default.handlebars->37->2533", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -52802,7 +52951,7 @@ "zh-chs": "缩放:100%", "zh-cht": "縮放:100%", "xloc": [ - "default.handlebars->35->1228", + "default.handlebars->37->1260", "sharing.handlebars->11->85" ] }, @@ -52827,7 +52976,7 @@ "zh-chs": "缩放:125%", "zh-cht": "縮放:125%", "xloc": [ - "default.handlebars->35->1229", + "default.handlebars->37->1261", "sharing.handlebars->11->86" ] }, @@ -52852,7 +53001,7 @@ "zh-chs": "缩放:150%", "zh-cht": "縮放:150%", "xloc": [ - "default.handlebars->35->1230", + "default.handlebars->37->1262", "sharing.handlebars->11->87" ] }, @@ -52877,7 +53026,7 @@ "zh-chs": "缩放:200%", "zh-cht": "縮放:200%", "xloc": [ - "default.handlebars->35->1231", + "default.handlebars->37->1263", "sharing.handlebars->11->88" ] }, @@ -52906,10 +53055,10 @@ "default-mobile.handlebars->11->216", "default-mobile.handlebars->11->217", "default-mobile.handlebars->11->325", - "default.handlebars->35->2", - "default.handlebars->35->3", - "default.handlebars->35->4", - "default.handlebars->35->969" + "default.handlebars->37->2", + "default.handlebars->37->3", + "default.handlebars->37->4", + "default.handlebars->37->995" ] }, { @@ -52933,7 +53082,7 @@ "zh-chs": "把装置休眠", "zh-cht": "把裝置休眠", "xloc": [ - "default.handlebars->35->563" + "default.handlebars->37->589" ] }, { @@ -52959,8 +53108,8 @@ "xloc": [ "default-mobile.handlebars->11->222", "default-mobile.handlebars->11->223", - "default.handlebars->35->528", - "default.handlebars->35->530" + "default.handlebars->37->554", + "default.handlebars->37->556" ] }, { @@ -52984,7 +53133,7 @@ "zh-chs": "斯洛伐克文", "zh-cht": "斯洛伐克文", "xloc": [ - "default.handlebars->35->1525" + "default.handlebars->37->1557" ] }, { @@ -53008,7 +53157,7 @@ "zh-chs": "斯洛文尼亞文", "zh-cht": "斯洛文尼亞文", "xloc": [ - "default.handlebars->35->1526" + "default.handlebars->37->1558" ] }, { @@ -53083,7 +53232,7 @@ "zh-chs": "小焦点", "zh-cht": "小焦點", "xloc": [ - "default.handlebars->35->1087" + "default.handlebars->37->1113" ] }, { @@ -53108,7 +53257,7 @@ "zh-cht": "軟斷開代理", "xloc": [ "default-mobile.handlebars->11->581", - "default.handlebars->35->1342" + "default.handlebars->37->1374" ] }, { @@ -53133,7 +53282,7 @@ "zh-cht": "軟關機", "xloc": [ "default-mobile.handlebars->11->226", - "default.handlebars->35->536" + "default.handlebars->37->562" ] }, { @@ -53181,7 +53330,7 @@ "zh-chs": "索马尼", "zh-cht": "索馬尼", "xloc": [ - "default.handlebars->35->1527" + "default.handlebars->37->1559" ] }, { @@ -53205,7 +53354,7 @@ "zh-chs": "索比亚文", "zh-cht": "索比亞文", "xloc": [ - "default.handlebars->35->1528" + "default.handlebars->37->1560" ] }, { @@ -53427,7 +53576,7 @@ "zh-chs": "西班牙文", "zh-cht": "西班牙文", "xloc": [ - "default.handlebars->35->1529" + "default.handlebars->37->1561" ] }, { @@ -53451,7 +53600,7 @@ "zh-chs": "西班牙文(阿根廷)", "zh-cht": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->35->1530" + "default.handlebars->37->1562" ] }, { @@ -53475,7 +53624,7 @@ "zh-chs": "西班牙文(玻利维亚)", "zh-cht": "西班牙文(玻利維亞)", "xloc": [ - "default.handlebars->35->1531" + "default.handlebars->37->1563" ] }, { @@ -53499,7 +53648,7 @@ "zh-chs": "西班牙文(智利)", "zh-cht": "西班牙文(智利)", "xloc": [ - "default.handlebars->35->1532" + "default.handlebars->37->1564" ] }, { @@ -53523,7 +53672,7 @@ "zh-chs": "西班牙文(哥伦比亚)", "zh-cht": "西班牙文(哥倫比亞)", "xloc": [ - "default.handlebars->35->1533" + "default.handlebars->37->1565" ] }, { @@ -53547,7 +53696,7 @@ "zh-chs": "西班牙文(哥斯达黎加)", "zh-cht": "西班牙文(哥斯達黎加)", "xloc": [ - "default.handlebars->35->1534" + "default.handlebars->37->1566" ] }, { @@ -53571,7 +53720,7 @@ "zh-chs": "西班牙文(多米尼加共和国)", "zh-cht": "西班牙文(多米尼加共和國)", "xloc": [ - "default.handlebars->35->1535" + "default.handlebars->37->1567" ] }, { @@ -53595,7 +53744,7 @@ "zh-chs": "西班牙文(厄瓜多尔)", "zh-cht": "西班牙文(厄瓜多爾)", "xloc": [ - "default.handlebars->35->1536" + "default.handlebars->37->1568" ] }, { @@ -53619,7 +53768,7 @@ "zh-chs": "西班牙文(萨尔瓦多)", "zh-cht": "西班牙文(薩爾瓦多)", "xloc": [ - "default.handlebars->35->1537" + "default.handlebars->37->1569" ] }, { @@ -53643,7 +53792,7 @@ "zh-chs": "西班牙文(危地马拉)", "zh-cht": "西班牙文(危地馬拉)", "xloc": [ - "default.handlebars->35->1538" + "default.handlebars->37->1570" ] }, { @@ -53667,7 +53816,7 @@ "zh-chs": "西班牙文(洪都拉斯)", "zh-cht": "西班牙文(洪都拉斯)", "xloc": [ - "default.handlebars->35->1539" + "default.handlebars->37->1571" ] }, { @@ -53691,7 +53840,7 @@ "zh-chs": "西班牙文(墨西哥)", "zh-cht": "西班牙文(墨西哥)", "xloc": [ - "default.handlebars->35->1540" + "default.handlebars->37->1572" ] }, { @@ -53715,7 +53864,7 @@ "zh-chs": "西班牙文(尼加拉瓜)", "zh-cht": "西班牙文(尼加拉瓜)", "xloc": [ - "default.handlebars->35->1541" + "default.handlebars->37->1573" ] }, { @@ -53739,7 +53888,7 @@ "zh-chs": "西班牙文(巴拿马)", "zh-cht": "西班牙文(巴拿馬)", "xloc": [ - "default.handlebars->35->1542" + "default.handlebars->37->1574" ] }, { @@ -53763,7 +53912,7 @@ "zh-chs": "西班牙文(巴拉圭)", "zh-cht": "西班牙文(巴拉圭)", "xloc": [ - "default.handlebars->35->1543" + "default.handlebars->37->1575" ] }, { @@ -53787,7 +53936,7 @@ "zh-chs": "西班牙文(秘鲁)", "zh-cht": "西班牙文(秘魯)", "xloc": [ - "default.handlebars->35->1544" + "default.handlebars->37->1576" ] }, { @@ -53811,7 +53960,7 @@ "zh-chs": "西班牙文(波多黎各)", "zh-cht": "西班牙文(波多黎各)", "xloc": [ - "default.handlebars->35->1545" + "default.handlebars->37->1577" ] }, { @@ -53835,7 +53984,7 @@ "zh-chs": "西班牙文(西班牙)", "zh-cht": "西班牙文(西班牙)", "xloc": [ - "default.handlebars->35->1546" + "default.handlebars->37->1578" ] }, { @@ -53859,7 +54008,7 @@ "zh-chs": "西班牙文(乌拉圭)", "zh-cht": "西班牙文(烏拉圭)", "xloc": [ - "default.handlebars->35->1547" + "default.handlebars->37->1579" ] }, { @@ -53883,7 +54032,7 @@ "zh-chs": "西班牙文(委内瑞拉)", "zh-cht": "西班牙文(委內瑞拉)", "xloc": [ - "default.handlebars->35->1548" + "default.handlebars->37->1580" ] }, { @@ -53931,7 +54080,7 @@ "zh-chs": "稳定版", "zh-cht": "穩定版", "xloc": [ - "default.handlebars->35->157" + "default.handlebars->37->178" ] }, { @@ -53979,7 +54128,7 @@ "zh-chs": "开始", "zh-cht": "開始", "xloc": [ - "default.handlebars->35->1134" + "default.handlebars->37->1166" ] }, { @@ -54024,11 +54173,11 @@ "zh-chs": "开始时间", "zh-cht": "開始時間", "xloc": [ - "default.handlebars->35->1078", - "default.handlebars->35->236", - "default.handlebars->35->2478", - "default.handlebars->35->2503", - "default.handlebars->35->92", + "default.handlebars->37->1104", + "default.handlebars->37->113", + "default.handlebars->37->2510", + "default.handlebars->37->2535", + "default.handlebars->37->258", "sharing.handlebars->11->14" ] }, @@ -54053,7 +54202,7 @@ "zh-chs": "首先输入新旧MBEx密码。", "zh-cht": "首先輸入新舊MBEx密碼。", "xloc": [ - "default.handlebars->35->406" + "default.handlebars->37->428" ] }, { @@ -54100,7 +54249,7 @@ "zh-chs": "开始桌面多重会话", "zh-cht": "啟動桌面多路復用會話", "xloc": [ - "default.handlebars->35->1987" + "default.handlebars->37->2019" ] }, { @@ -54124,7 +54273,7 @@ "zh-chs": "从{1}到{2}开始了桌面会话“{0}”", "zh-cht": "從{1}到{2}開始了桌面會話“{0}”", "xloc": [ - "default.handlebars->35->1996" + "default.handlebars->37->2028" ] }, { @@ -54148,7 +54297,7 @@ "zh-chs": "从{1}到{2}开始文件管理会话“{0}”", "zh-cht": "從{1}到{2}開始文件管理會話“{0}”", "xloc": [ - "default.handlebars->35->1997" + "default.handlebars->37->2029" ] }, { @@ -54171,7 +54320,7 @@ "tr": "Yerel geçiş oturumu \\\"{0}\\\", {1} - {2} protokolü başlatıldı", "zh-chs": "已启动本地中继会话 \\\"{0}\\\",协议 {1} 到 {2}", "xloc": [ - "default.handlebars->35->2101" + "default.handlebars->37->2133" ] }, { @@ -54195,7 +54344,7 @@ "zh-chs": "从{1}到{2}开始中继会话“{0}”", "zh-cht": "從{1}到{2}開始中繼會話“{0}”", "xloc": [ - "default.handlebars->35->1994" + "default.handlebars->37->2026" ] }, { @@ -54219,7 +54368,7 @@ "zh-chs": "使用Toast通知启动远程桌面", "zh-cht": "使用Toast通知啟動遠程桌面", "xloc": [ - "default.handlebars->35->2016" + "default.handlebars->37->2048" ] }, { @@ -54243,7 +54392,7 @@ "zh-chs": "启动远程桌面,而无需通知", "zh-cht": "啟動遠程桌面,而無需通知", "xloc": [ - "default.handlebars->35->2017" + "default.handlebars->37->2049" ] }, { @@ -54267,7 +54416,7 @@ "zh-chs": "启动带有Toast通知的远程文件", "zh-cht": "啟動帶有Toast通知的遠程文件", "xloc": [ - "default.handlebars->35->2023" + "default.handlebars->37->2055" ] }, { @@ -54291,7 +54440,7 @@ "zh-chs": "已启动的远程文件,恕不另行通知", "zh-cht": "已啟動的遠程文件,恕不另行通知", "xloc": [ - "default.handlebars->35->2024" + "default.handlebars->37->2056" ] }, { @@ -54315,7 +54464,7 @@ "zh-chs": "从{1}到{2}开始了终端会话“{0}”", "zh-cht": "從{1}到{2}開始了終端會話“{0}”", "xloc": [ - "default.handlebars->35->1995" + "default.handlebars->37->2027" ] }, { @@ -54339,7 +54488,7 @@ "zh-chs": "现在开始", "zh-cht": "現在開始", "xloc": [ - "default.handlebars->35->952" + "default.handlebars->37->978" ] }, { @@ -54363,7 +54512,7 @@ "zh-chs": "接受本地用户后启动远程桌面", "zh-cht": "接受本地用戶後啟動遠程桌面", "xloc": [ - "default.handlebars->35->2011" + "default.handlebars->37->2043" ] }, { @@ -54387,7 +54536,7 @@ "zh-chs": "本地用户接受后启动远程文件", "zh-cht": "本地用戶接受後啟動遠程文件", "xloc": [ - "default.handlebars->35->2021" + "default.handlebars->37->2053" ] }, { @@ -54431,7 +54580,7 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->35->1125", + "default.handlebars->37->1157", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -54500,8 +54649,8 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->35->2421", - "default.handlebars->35->2496", + "default.handlebars->37->2453", + "default.handlebars->37->2528", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -54526,7 +54675,7 @@ "zh-chs": "停止", "zh-cht": "停止", "xloc": [ - "default.handlebars->35->1135" + "default.handlebars->37->1167" ] }, { @@ -54550,7 +54699,7 @@ "zh-chs": "停止进程", "zh-cht": "停止進程", "xloc": [ - "default.handlebars->35->1120" + "default.handlebars->37->1148" ] }, { @@ -54573,7 +54722,7 @@ "tr": "#{0} \\\"{1}\\\" işlemi durdurulsun mu?", "zh-chs": "停止进程 #{0} \\\"{1}\\\"?", "xloc": [ - "default.handlebars->35->1143" + "default.handlebars->37->1175" ] }, { @@ -54615,7 +54764,11 @@ "ru": "Остановлен", "sv": "Stannade", "tr": "durduruldu", - "zh-chs": "停止" + "zh-chs": "停止", + "xloc": [ + "default.handlebars->37->1151", + "default.handlebars->37->1155" + ] }, { "cs": "Zastavil.", @@ -54659,7 +54812,7 @@ "zh-cht": "儲存", "xloc": [ "default-mobile.handlebars->11->564", - "default.handlebars->35->1324" + "default.handlebars->37->1356" ] }, { @@ -54707,7 +54860,7 @@ "zh-chs": "超出储存空间", "zh-cht": "超出儲存空間", "xloc": [ - "default.handlebars->35->1942" + "default.handlebars->37->1974" ] }, { @@ -54731,7 +54884,7 @@ "zh-chs": "强", "zh-cht": "強", "xloc": [ - "default.handlebars->35->1642" + "default.handlebars->37->1674" ] }, { @@ -54784,7 +54937,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->35->2168" + "default.handlebars->37->2200" ] }, { @@ -54832,7 +54985,7 @@ "zh-chs": "成功", "zh-cht": "成功", "xloc": [ - "default.handlebars->35->84" + "default.handlebars->37->105" ] }, { @@ -54904,7 +55057,7 @@ "zh-chs": "苏图", "zh-cht": "蘇圖", "xloc": [ - "default.handlebars->35->1549" + "default.handlebars->37->1581" ] }, { @@ -54928,7 +55081,7 @@ "zh-chs": "斯瓦希里文", "zh-cht": "斯瓦希里文", "xloc": [ - "default.handlebars->35->1550" + "default.handlebars->37->1582" ] }, { @@ -54977,7 +55130,7 @@ "zh-chs": "瑞典文", "zh-cht": "瑞典文", "xloc": [ - "default.handlebars->35->1551" + "default.handlebars->37->1583" ] }, { @@ -55001,7 +55154,7 @@ "zh-chs": "瑞典文(芬兰)", "zh-cht": "瑞典文(芬蘭)", "xloc": [ - "default.handlebars->35->1552" + "default.handlebars->37->1584" ] }, { @@ -55025,7 +55178,7 @@ "zh-chs": "瑞典文(瑞典)", "zh-cht": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->35->1553" + "default.handlebars->37->1585" ] }, { @@ -55049,7 +55202,7 @@ "zh-chs": "将英特尔AMT切换到管理员控制模式(ACM)。", "zh-cht": "將英特爾AMT切換到管理員控制模式(ACM)。", "xloc": [ - "default.handlebars->35->1734" + "default.handlebars->37->1766" ] }, { @@ -55073,7 +55226,7 @@ "zh-chs": "将服务器设备名称同步到主机名称", "zh-cht": "將伺服器裝置名稱同步到主機名稱", "xloc": [ - "default.handlebars->35->1804" + "default.handlebars->37->1836" ] }, { @@ -55096,7 +55249,7 @@ "tr": "Sistem Tepsisi, Her zaman bağlı", "zh-chs": "系统托盘,始终连接", "xloc": [ - "default.handlebars->35->478" + "default.handlebars->37->503" ] }, { @@ -55119,7 +55272,7 @@ "tr": "Sistem Tepsisi, Kullanıcı isteği üzerine bağlanın", "zh-chs": "系统托盘,根据用户要求连接", "xloc": [ - "default.handlebars->35->477" + "default.handlebars->37->502" ] }, { @@ -55142,7 +55295,7 @@ "tr": "Sistem Tepsisi, Yalnızca Monitör", "zh-chs": "系统托盘,仅显示器", "xloc": [ - "default.handlebars->35->479" + "default.handlebars->37->504" ] }, { @@ -55166,7 +55319,7 @@ "zh-chs": "系统类型", "zh-cht": "系統類型", "xloc": [ - "default.handlebars->35->469" + "default.handlebars->37->494" ] }, { @@ -55232,7 +55385,7 @@ "zh-cht": "TCP路由", "xloc": [ "default-mobile.handlebars->11->206", - "default.handlebars->35->355" + "default.handlebars->37->377" ] }, { @@ -55356,7 +55509,7 @@ "zh-cht": "TLS", "xloc": [ "default-mobile.handlebars->11->276", - "default.handlebars->35->729" + "default.handlebars->37->755" ] }, { @@ -55381,7 +55534,7 @@ "zh-cht": "未設置TLS", "xloc": [ "default-mobile.handlebars->11->538", - "default.handlebars->35->1298" + "default.handlebars->37->1330" ] }, { @@ -55406,8 +55559,8 @@ "zh-cht": "需要TLS加密", "xloc": [ "default-mobile.handlebars->11->350", - "default.handlebars->35->1004", - "default.handlebars->35->400" + "default.handlebars->37->1030", + "default.handlebars->37->422" ] }, { @@ -55433,7 +55586,7 @@ "xloc": [ "default-mobile.handlebars->11->375", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->3", - "default.handlebars->35->1090" + "default.handlebars->37->1116" ] }, { @@ -55457,8 +55610,8 @@ "zh-chs": "标签1,标签2,标签3", "zh-cht": "標籤1,標籤2,標籤3", "xloc": [ - "default.handlebars->35->1067", - "default.handlebars->35->600" + "default.handlebars->37->1093", + "default.handlebars->37->626" ] }, { @@ -55509,10 +55662,10 @@ "default-mobile.handlebars->11->295", "default-mobile.handlebars->11->296", "default-mobile.handlebars->11->363", - "default.handlebars->35->1066", - "default.handlebars->35->599", - "default.handlebars->35->789", - "default.handlebars->35->790", + "default.handlebars->37->1092", + "default.handlebars->37->625", + "default.handlebars->37->815", + "default.handlebars->37->816", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -55536,7 +55689,7 @@ "tr": "Bu kullanıcı adı ve şifreyi not alın, şifre tekrar gösterilemez.", "zh-chs": "记下这个用户名和密码,密码不能再次显示。", "xloc": [ - "default.handlebars->35->268" + "default.handlebars->37->290" ] }, { @@ -55560,7 +55713,7 @@ "zh-chs": "泰米尔文", "zh-cht": "泰米爾文", "xloc": [ - "default.handlebars->35->1554" + "default.handlebars->37->1586" ] }, { @@ -55584,7 +55737,7 @@ "zh-chs": "塔塔尔族", "zh-cht": "塔塔爾族", "xloc": [ - "default.handlebars->35->1555" + "default.handlebars->37->1587" ] }, { @@ -55608,7 +55761,7 @@ "zh-chs": "泰卢加", "zh-cht": "泰盧加", "xloc": [ - "default.handlebars->35->1556" + "default.handlebars->37->1588" ] }, { @@ -55634,13 +55787,13 @@ "xloc": [ "default-mobile.handlebars->11->200", "default-mobile.handlebars->11->313", - "default.handlebars->35->1797", - "default.handlebars->35->2490", - "default.handlebars->35->2591", - "default.handlebars->35->349", - "default.handlebars->35->674", - "default.handlebars->35->859", - "default.handlebars->35->928", + "default.handlebars->37->1829", + "default.handlebars->37->2522", + "default.handlebars->37->2623", + "default.handlebars->37->371", + "default.handlebars->37->700", + "default.handlebars->37->885", + "default.handlebars->37->954", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal", "sharing.handlebars->LeftSideToolBar" @@ -55666,8 +55819,8 @@ "tr": "Terminal + Dosyalar", "zh-chs": "终端 + 文件", "xloc": [ - "default.handlebars->35->863", - "default.handlebars->35->931" + "default.handlebars->37->889", + "default.handlebars->37->957" ] }, { @@ -55715,10 +55868,10 @@ "zh-chs": "终端通知", "zh-cht": "終端機通知", "xloc": [ - "default.handlebars->35->1703", - "default.handlebars->35->2269", - "default.handlebars->35->2369", - "default.handlebars->35->770" + "default.handlebars->37->1735", + "default.handlebars->37->2301", + "default.handlebars->37->2401", + "default.handlebars->37->796" ] }, { @@ -55742,10 +55895,10 @@ "zh-chs": "终端提示", "zh-cht": "終端機提示", "xloc": [ - "default.handlebars->35->1702", - "default.handlebars->35->2268", - "default.handlebars->35->2368", - "default.handlebars->35->769" + "default.handlebars->37->1734", + "default.handlebars->37->2300", + "default.handlebars->37->2400", + "default.handlebars->37->795" ] }, { @@ -55768,7 +55921,7 @@ "tr": "Terminal Oturumu", "zh-chs": "终端会话", "xloc": [ - "default.handlebars->35->2483" + "default.handlebars->37->2515" ] }, { @@ -55897,7 +56050,7 @@ "zh-chs": "泰国", "zh-cht": "泰國", "xloc": [ - "default.handlebars->35->1557" + "default.handlebars->37->1589" ] }, { @@ -55991,7 +56144,7 @@ "zh-chs": "此计算机所属的设备组的名称", "zh-cht": "此電腦所屬的裝置群的名稱", "xloc": [ - "default.handlebars->35->701" + "default.handlebars->37->727" ] }, { @@ -56015,7 +56168,7 @@ "zh-chs": "此计算机所属的设备组的名称。", "zh-cht": "此電腦所屬的裝置群的名稱。", "xloc": [ - "default.handlebars->35->699" + "default.handlebars->37->725" ] }, { @@ -56039,8 +56192,8 @@ "zh-chs": "此计算机的在操作系统中已设置的名称", "zh-cht": "此電腦在操作系統中已設置的的名稱", "xloc": [ - "default.handlebars->35->702", - "default.handlebars->35->704" + "default.handlebars->37->728", + "default.handlebars->37->730" ] }, { @@ -56065,7 +56218,7 @@ "zh-cht": "目前沒有任何通知", "xloc": [ "default-mobile.handlebars->11->655", - "default.handlebars->35->2511" + "default.handlebars->37->2543" ] }, { @@ -56089,7 +56242,7 @@ "zh-chs": "自上次登录以来,此帐户已有 {0} 次登录尝试失败。", "xloc": [ "default-mobile.handlebars->11->676", - "default.handlebars->35->2532" + "default.handlebars->37->2564" ] }, { @@ -56137,7 +56290,7 @@ "zh-chs": "这些设置可用于连接该设备的MQTT。", "zh-cht": "這些設置可用於連接該裝置的MQTT。", "xloc": [ - "default.handlebars->35->252" + "default.handlebars->37->274" ] }, { @@ -56182,7 +56335,7 @@ "zh-cht": "此帳戶無權建立新的裝置群。", "xloc": [ "default-mobile.handlebars->11->116", - "default.handlebars->35->1627" + "default.handlebars->37->1659" ] }, { @@ -56205,7 +56358,7 @@ "tr": "Bu aracının eski bir sertifika doğrulama mekanizması var, güncellemeyi düşünün.", "zh-chs": "此代理具有过时的证书验证机制,请考虑更新。", "xloc": [ - "default.handlebars->35->2099" + "default.handlebars->37->2131" ] }, { @@ -56228,7 +56381,7 @@ "tr": "Bu aracı güvenli olmayan tüneller kullanıyor, güncellemeyi düşünün.", "zh-chs": "此代理正在使用不安全的隧道,请考虑更新。", "xloc": [ - "default.handlebars->35->2100" + "default.handlebars->37->2132" ] }, { @@ -56252,7 +56405,7 @@ "zh-chs": "这是OS图形用户界面上的可执行档案。您需要'chmod + x meshagent'并运行此档案。", "zh-cht": "這是OS圖形用戶界面上的可執行檔案。你需要'chmod + x meshagent'並運行此檔案。", "xloc": [ - "default.handlebars->35->516" + "default.handlebars->37->542" ] }, { @@ -56296,10 +56449,10 @@ "tr": "Bu bir misafir paylaşım oturumu", "zh-chs": "这是嘉宾分享环节", "xloc": [ - "default.handlebars->35->1237", - "default.handlebars->35->2103", - "default.handlebars->35->2472", - "default.handlebars->35->2473" + "default.handlebars->37->1269", + "default.handlebars->37->2135", + "default.handlebars->37->2504", + "default.handlebars->37->2505" ] }, { @@ -56346,7 +56499,7 @@ "tr": "Bu eski bir aracı sürümüdür, güncellemeyi düşünün.", "zh-chs": "这是一个旧的代理版本,考虑更新。", "xloc": [ - "default.handlebars->35->2098" + "default.handlebars->37->2130" ] }, { @@ -56391,7 +56544,7 @@ "zh-chs": "这是推荐的策略。英特尔®AMT激活和管理是完全自动化的,服务器将尝试最大程度地利用硬件管理。", "zh-cht": "這是推薦的策略。英特爾®AMT激活和管理是完全自動化的,服務器將嘗試最大程度地利用硬件管理。", "xloc": [ - "default.handlebars->35->1782" + "default.handlebars->37->1814" ] }, { @@ -56440,7 +56593,7 @@ "zh-chs": "此政策不会影响采用ACM模式的英特尔®AMT的设备。", "zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。", "xloc": [ - "default.handlebars->35->1779" + "default.handlebars->37->1811" ] }, { @@ -56559,7 +56712,7 @@ "zh-chs": "这会在此设备的事件日志中添加一个条目。", "zh-cht": "這會在此裝置的事件日誌中增加一個記錄。", "xloc": [ - "default.handlebars->35->913" + "default.handlebars->37->939" ] }, { @@ -56604,7 +56757,7 @@ "zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。", "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "xloc": [ - "default.handlebars->35->1011" + "default.handlebars->37->1037" ] }, { @@ -56628,7 +56781,7 @@ "zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。", "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "xloc": [ - "default.handlebars->35->1012" + "default.handlebars->37->1038" ] }, { @@ -56652,7 +56805,7 @@ "zh-chs": "蒂格雷", "zh-cht": "蒂格雷", "xloc": [ - "default.handlebars->35->1558" + "default.handlebars->37->1590" ] }, { @@ -56677,7 +56830,7 @@ "zh-cht": "時間", "xloc": [ "default-mobile.handlebars->11->320", - "default.handlebars->35->963", + "default.handlebars->37->989", "player.handlebars->3->16" ] }, @@ -56702,7 +56855,7 @@ "zh-chs": "时间范围", "zh-cht": "時間範圍", "xloc": [ - "default.handlebars->35->955" + "default.handlebars->37->981" ] }, { @@ -56726,7 +56879,7 @@ "zh-chs": "时间跨度", "zh-cht": "時間跨度", "xloc": [ - "default.handlebars->35->2107" + "default.handlebars->37->2139" ] }, { @@ -56750,7 +56903,7 @@ "zh-chs": "时间范围", "zh-cht": "時間範圍", "xloc": [ - "default.handlebars->35->953" + "default.handlebars->37->979" ] }, { @@ -56775,7 +56928,7 @@ "zh-cht": "超時", "xloc": [ "default-mobile.handlebars->11->369", - "default.handlebars->35->1072", + "default.handlebars->37->1098", "sharing.handlebars->11->31", "sharing.handlebars->11->9" ] @@ -56801,7 +56954,7 @@ "zh-chs": "标题", "zh-cht": "標題", "xloc": [ - "default.handlebars->35->605" + "default.handlebars->37->631" ] }, { @@ -56825,7 +56978,7 @@ "zh-chs": "要将计算机添加到\\\"{0}\\\",请运行以下命令。命令需要root凭证。", "zh-cht": "要將電腦新增到\\\"{0}\\\",請運行以下命令。命令需要root憑據。", "xloc": [ - "default.handlebars->35->491" + "default.handlebars->37->516" ] }, { @@ -56848,7 +57001,7 @@ "tr": "\\\"{0}\\\" grubuna bir mobil cihaz eklemek için MeshAgent uygulamasını indirin ve bu QR kodunu tarayın.", "zh-chs": "要将移动设备添加到组“{0}”,请下载 MeshAgent 应用程序并扫描此二维码。", "xloc": [ - "default.handlebars->35->498" + "default.handlebars->37->524" ] }, { @@ -56935,7 +57088,7 @@ "zh-chs": "要将新计算机添加到设备组“ {0} ”,请下载网状代理并安装该计算机以进行管理。这代理中已嵌入了服务器和设备组信息。", "zh-cht": "要將新電腦新增到裝置群“ {0} ”,請下載mesh agent並安裝該電腦以進行管理。這agent中已嵌入了伺服器和裝置群訊息。", "xloc": [ - "default.handlebars->35->480" + "default.handlebars->37->505" ] }, { @@ -56959,7 +57112,7 @@ "zh-chs": "要将新计算机添加到设备组“ {0} ”,请下载网状代理并安装该计算机以进行管理。该代理安装程序中已嵌入了服务器和设备组讯息。", "zh-cht": "要將新電腦新增到裝置群“ {0} ”,請下載mesh agent並安裝該電腦以進行管理。該代理安裝程序中已嵌入了伺服器和裝置群訊息。", "xloc": [ - "default.handlebars->35->494" + "default.handlebars->37->520" ] }, { @@ -56983,7 +57136,7 @@ "zh-chs": "要删除此帐户,请在下面的两个框中键入帐户密码,然后单击确定。", "zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->35->1614" + "default.handlebars->37->1646" ] }, { @@ -57103,7 +57256,7 @@ "zh-chs": "要删除网格代理,请下载以下档案,运行并单击“卸载”。", "zh-cht": "要刪除mash agent,請下載以下檔案,運行該檔案,然後單擊“卸載”。", "xloc": [ - "default.handlebars->35->507" + "default.handlebars->37->533" ] }, { @@ -57127,7 +57280,7 @@ "zh-chs": "要删除网格代理,请运行以下命令。需要根凭证。", "zh-cht": "要刪除網格代理,請運行以下命令。需要root憑據。", "xloc": [ - "default.handlebars->35->514" + "default.handlebars->37->540" ] }, { @@ -57175,7 +57328,7 @@ "zh-chs": "吐司通知", "zh-cht": "吐司通知", "xloc": [ - "default.handlebars->35->603" + "default.handlebars->37->629" ] }, { @@ -57540,7 +57693,7 @@ "tr": "Jeton Adı", "zh-chs": "代币名称", "xloc": [ - "default.handlebars->35->1600" + "default.handlebars->37->1632" ] }, { @@ -57563,7 +57716,7 @@ "tr": "Simge: {0}", "zh-chs": "令牌:{0}", "xloc": [ - "default.handlebars->35->262" + "default.handlebars->37->284" ] }, { @@ -57640,7 +57793,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->35->1006" + "default.handlebars->37->1032" ] }, { @@ -57663,7 +57816,7 @@ "tr": "Toplam İşlemci Süresi", "zh-chs": "总处理器时间", "xloc": [ - "default.handlebars->35->100" + "default.handlebars->37->121" ] }, { @@ -57735,7 +57888,7 @@ "zh-chs": "用于通过此服务器连接到设备的流量路由器", "zh-cht": "用於通過此伺服器連接到裝置的流量路由器", "xloc": [ - "default.handlebars->35->818" + "default.handlebars->37->844" ] }, { @@ -57799,7 +57952,7 @@ "zh-chs": "再试一次。", "zh-cht": "再試一次。", "xloc": [ - "default.handlebars->35->179" + "default.handlebars->37->201" ] }, { @@ -57847,7 +58000,7 @@ "zh-chs": "尝试凭据", "xloc": [ "default-mobile.handlebars->11->281", - "default.handlebars->35->734" + "default.handlebars->37->760" ] }, { @@ -57871,7 +58024,7 @@ "zh-chs": "特松加", "zh-cht": "特松加", "xloc": [ - "default.handlebars->35->1559" + "default.handlebars->37->1591" ] }, { @@ -57895,7 +58048,7 @@ "zh-chs": "茨瓦纳", "zh-cht": "茨瓦納", "xloc": [ - "default.handlebars->35->1560" + "default.handlebars->37->1592" ] }, { @@ -57939,7 +58092,7 @@ "zh-chs": "土耳其", "zh-cht": "土耳其", "xloc": [ - "default.handlebars->35->1561" + "default.handlebars->37->1593" ] }, { @@ -57963,7 +58116,7 @@ "zh-chs": "土库曼文", "zh-cht": "土庫曼文", "xloc": [ - "default.handlebars->35->1562" + "default.handlebars->37->1594" ] }, { @@ -57987,7 +58140,7 @@ "zh-chs": "两因素身份验证", "zh-cht": "二因子身份驗證", "xloc": [ - "default.handlebars->35->65" + "default.handlebars->37->65" ] }, { @@ -58033,12 +58186,12 @@ "xloc": [ "default-mobile.handlebars->11->122", "default-mobile.handlebars->11->590", - "default.handlebars->35->1132", - "default.handlebars->35->1635", - "default.handlebars->35->1688", - "default.handlebars->35->1754", - "default.handlebars->35->386", - "default.handlebars->35->934", + "default.handlebars->37->1164", + "default.handlebars->37->1667", + "default.handlebars->37->1720", + "default.handlebars->37->1786", + "default.handlebars->37->408", + "default.handlebars->37->960", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3", "sharing.handlebars->p11->deskarea0->deskarea4->3" ] @@ -58064,7 +58217,7 @@ "zh-chs": "输入密钥名称,选择OTP框,然后按YubiKey™上的按钮。", "zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->35->1371" + "default.handlebars->37->1403" ] }, { @@ -58088,7 +58241,7 @@ "zh-chs": "输入要添加的密钥的名称。", "zh-cht": "輸入要新增的密鑰的名稱。", "xloc": [ - "default.handlebars->35->1368" + "default.handlebars->37->1400" ] }, { @@ -58133,7 +58286,7 @@ "zh-cht": "UDP路由", "xloc": [ "default-mobile.handlebars->11->209", - "default.handlebars->35->358" + "default.handlebars->37->380" ] }, { @@ -58177,7 +58330,7 @@ "zh-chs": "UTF8终端", "zh-cht": "UTF8終端", "xloc": [ - "default.handlebars->35->1162", + "default.handlebars->37->1194", "sharing.handlebars->11->33" ] }, @@ -58202,7 +58355,7 @@ "zh-chs": "乌克兰", "zh-cht": "烏克蘭", "xloc": [ - "default.handlebars->35->1563" + "default.handlebars->37->1595" ] }, { @@ -58318,8 +58471,8 @@ "zh-chs": "在验证电子邮件地址之前,无法访问此功能。这是密码恢复所必需的。转到“我的帐户”标签以更改和验证电子邮件地址。", "zh-cht": "在驗證電子郵件地址之前,無法訪問此功能。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "xloc": [ - "default.handlebars->35->1629", - "default.handlebars->35->690" + "default.handlebars->37->1661", + "default.handlebars->37->716" ] }, { @@ -58343,9 +58496,9 @@ "zh-chs": "在启用两因素身份验证之前,无法访问此功能。这是额外的安全性所必需的。转到“我的帐户”标签,然后查看“帐户安全性”部分。", "zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->35->1631", - "default.handlebars->35->2642", - "default.handlebars->35->692" + "default.handlebars->37->1663", + "default.handlebars->37->2674", + "default.handlebars->37->718" ] }, { @@ -58369,7 +58522,7 @@ "zh-chs": "无法在此模式下添加用户", "xloc": [ "default-mobile.handlebars->11->672", - "default.handlebars->35->2528" + "default.handlebars->37->2560" ] }, { @@ -58435,7 +58588,7 @@ "tr": "Ekran yakalanamadı", "zh-chs": "无法捕捉显示", "xloc": [ - "default.handlebars->35->1074" + "default.handlebars->37->1100" ] }, { @@ -58480,7 +58633,7 @@ "zh-cht": "無法連接網絡插座", "xloc": [ "default-mobile.handlebars->11->50", - "default.handlebars->35->63" + "default.handlebars->37->63" ] }, { @@ -58529,7 +58682,28 @@ "tr": "Herhangi bir cihaz içe aktarılamıyor.", "zh-chs": "无法导入任何设备。", "xloc": [ - "default.handlebars->35->1750" + "default.handlebars->37->1782" + ] + }, + { + "en": "Unable to load CloudFlare trusted proxy IPv6 address list.", + "pl": "Nie można załadować listy adresów IPv6 zaufanego serwera proxy CloudFlare.", + "xloc": [ + "default.handlebars->37->94" + ] + }, + { + "en": "Unable to load Intel AMT TLS root certificate for default domain.", + "pl": "Nie można załadować certyfikatu głównego Intel AMT TLS dla domeny domyślnej.", + "xloc": [ + "default.handlebars->37->83" + ] + }, + { + "en": "Unable to load Intel AMT TLS root certificate for domain {0}.", + "pl": "Nie można załadować certyfikatu głównego Intel AMT TLS dla domeny {0}.", + "xloc": [ + "default.handlebars->37->84" ] }, { @@ -58574,7 +58748,7 @@ "zh-cht": "無法執行身份驗證", "xloc": [ "default-mobile.handlebars->11->49", - "default.handlebars->35->62" + "default.handlebars->37->62" ] }, { @@ -58598,7 +58772,7 @@ "zh-chs": "无法扫描该地址范围。", "zh-cht": "無法掃描該地址範圍。", "xloc": [ - "default.handlebars->35->216" + "default.handlebars->37->238" ] }, { @@ -58650,6 +58824,13 @@ "login2.handlebars->7->16" ] }, + { + "en": "Unable to setup Let's Encrypt module.", + "pl": "Nie można skonfigurować modułu Let's Encrypt.", + "xloc": [ + "default.handlebars->37->91" + ] + }, { "cs": "Nelze zapsat soubor: {0}", "de": "Datei kann nicht geschrieben werden: {0}", @@ -58693,9 +58874,9 @@ "xloc": [ "agent-translations.json", "default-mobile.handlebars->11->644", - "default.handlebars->35->1878", - "default.handlebars->35->886", - "default.handlebars->35->908" + "default.handlebars->37->1910", + "default.handlebars->37->912", + "default.handlebars->37->934" ] }, { @@ -58720,8 +58901,8 @@ "zh-cht": "卸載代理", "xloc": [ "default-mobile.handlebars->11->624", - "default.handlebars->35->561", - "default.handlebars->35->977" + "default.handlebars->37->1003", + "default.handlebars->37->587" ] }, { @@ -58745,7 +58926,7 @@ "zh-chs": "卸载代理/删除设备", "zh-cht": "卸載代理/刪除設備", "xloc": [ - "default.handlebars->35->1841" + "default.handlebars->37->1873" ] }, { @@ -58769,7 +58950,7 @@ "zh-chs": "卸载代理", "zh-cht": "卸載代理", "xloc": [ - "default.handlebars->35->1014" + "default.handlebars->37->1040" ] }, { @@ -58800,23 +58981,23 @@ "default-mobile.handlebars->11->528", "default-mobile.handlebars->11->535", "default-mobile.handlebars->11->6", - "default.handlebars->35->1288", - "default.handlebars->35->1295", - "default.handlebars->35->13", - "default.handlebars->35->152", - "default.handlebars->35->153", - "default.handlebars->35->154", - "default.handlebars->35->156", - "default.handlebars->35->158", - "default.handlebars->35->1674", - "default.handlebars->35->1675", - "default.handlebars->35->2465", - "default.handlebars->35->2482", - "default.handlebars->35->2489", - "default.handlebars->35->44", - "default.handlebars->35->51", - "default.handlebars->35->52", - "default.handlebars->35->556" + "default.handlebars->37->13", + "default.handlebars->37->1320", + "default.handlebars->37->1327", + "default.handlebars->37->1706", + "default.handlebars->37->1707", + "default.handlebars->37->173", + "default.handlebars->37->174", + "default.handlebars->37->175", + "default.handlebars->37->177", + "default.handlebars->37->179", + "default.handlebars->37->2497", + "default.handlebars->37->2514", + "default.handlebars->37->2521", + "default.handlebars->37->44", + "default.handlebars->37->51", + "default.handlebars->37->52", + "default.handlebars->37->582" ] }, { @@ -58841,7 +59022,7 @@ "zh-cht": "未知#{0}", "xloc": [ "default-mobile.handlebars->11->584", - "default.handlebars->35->1681" + "default.handlebars->37->1713" ] }, { @@ -58865,7 +59046,7 @@ "zh-chs": "未知动作", "zh-cht": "未知動作", "xloc": [ - "default.handlebars->35->2560" + "default.handlebars->37->2592" ] }, { @@ -58889,8 +59070,8 @@ "zh-chs": "未知设备", "zh-cht": "未知裝置", "xloc": [ - "default.handlebars->35->2294", - "default.handlebars->35->2451" + "default.handlebars->37->2326", + "default.handlebars->37->2483" ] }, { @@ -58914,9 +59095,9 @@ "zh-chs": "未知设备组", "zh-cht": "未知裝置群", "xloc": [ - "default.handlebars->35->2288", - "default.handlebars->35->2439", - "default.handlebars->35->2564" + "default.handlebars->37->2320", + "default.handlebars->37->2471", + "default.handlebars->37->2596" ] }, { @@ -58940,7 +59121,7 @@ "zh-chs": "未知群组", "zh-cht": "未知群組", "xloc": [ - "default.handlebars->35->2556" + "default.handlebars->37->2588" ] }, { @@ -58965,7 +59146,7 @@ "zh-cht": "未知狀態", "xloc": [ "default-mobile.handlebars->11->270", - "default.handlebars->35->721" + "default.handlebars->37->747" ] }, { @@ -58989,7 +59170,7 @@ "zh-chs": "未知用户组", "zh-cht": "未知用戶群", "xloc": [ - "default.handlebars->35->2445" + "default.handlebars->37->2477" ] }, { @@ -59014,7 +59195,7 @@ "zh-cht": "未知版本和狀態", "xloc": [ "default-mobile.handlebars->11->272", - "default.handlebars->35->723" + "default.handlebars->37->749" ] }, { @@ -59038,7 +59219,7 @@ "zh-chs": "密码未知", "zh-cht": "密碼未知", "xloc": [ - "default.handlebars->35->1770" + "default.handlebars->37->1802" ] }, { @@ -59062,11 +59243,11 @@ "zh-chs": "无限制", "zh-cht": "無限", "xloc": [ - "default.handlebars->35->1584", - "default.handlebars->35->229", - "default.handlebars->35->439", - "default.handlebars->35->453", - "default.handlebars->35->950" + "default.handlebars->37->1616", + "default.handlebars->37->251", + "default.handlebars->37->464", + "default.handlebars->37->478", + "default.handlebars->37->976" ] }, { @@ -59090,7 +59271,7 @@ "zh-chs": "解锁帐户", "zh-cht": "解鎖帳戶", "xloc": [ - "default.handlebars->35->2161" + "default.handlebars->37->2193" ] }, { @@ -59113,7 +59294,14 @@ "tr": "Uzak kullanıcının fare ve klavyesinin kilidi açılsın mı?", "zh-chs": "解锁远程用户的鼠标和键盘?", "xloc": [ - "default.handlebars->35->921" + "default.handlebars->37->947" + ] + }, + { + "en": "Unrecognized configuration option \\\"{0}\\\".", + "pl": "Nierozpoznana opcja konfiguracji \\\"{0}\\\".", + "xloc": [ + "default.handlebars->37->81" ] }, { @@ -59164,7 +59352,7 @@ "default-mobile.handlebars->11->386", "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->35->1101", + "default.handlebars->37->1127", "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", @@ -59192,7 +59380,7 @@ "zh-chs": "最新", "zh-cht": "最新", "xloc": [ - "default.handlebars->35->2647" + "default.handlebars->37->2679" ] }, { @@ -59219,8 +59407,8 @@ "agent-translations.json", "default-mobile.handlebars->11->484", "default-mobile.handlebars->11->486", - "default.handlebars->35->750", - "default.handlebars->35->752" + "default.handlebars->37->776", + "default.handlebars->37->778" ] }, { @@ -59297,11 +59485,11 @@ "default-mobile.handlebars->11->450", "default-mobile.handlebars->11->468", "default-mobile.handlebars->11->471", - "default.handlebars->35->1208", - "default.handlebars->35->1232", - "default.handlebars->35->1235", - "default.handlebars->35->1971", - "default.handlebars->35->1979", + "default.handlebars->37->1240", + "default.handlebars->37->1264", + "default.handlebars->37->1267", + "default.handlebars->37->2003", + "default.handlebars->37->2011", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1", "sharing.handlebars->11->65", "sharing.handlebars->11->89", @@ -59330,7 +59518,7 @@ "zh-cht": "上載mesh agent核心", "xloc": [ "default-mobile.handlebars->11->583", - "default.handlebars->35->1344" + "default.handlebars->37->1376" ] }, { @@ -59355,7 +59543,7 @@ "zh-cht": "上載核心檔案", "xloc": [ "default-mobile.handlebars->11->580", - "default.handlebars->35->1341" + "default.handlebars->37->1373" ] }, { @@ -59380,9 +59568,9 @@ "zh-cht": "上載默認伺服器核心", "xloc": [ "default-mobile.handlebars->11->576", - "default.handlebars->35->1337", - "default.handlebars->35->573", - "default.handlebars->35->618" + "default.handlebars->37->1369", + "default.handlebars->37->599", + "default.handlebars->37->644" ] }, { @@ -59405,7 +59593,7 @@ "tr": "Seçili cihazlara varsayılan sunucu çekirdeği yüklensin mi?", "zh-chs": "在所选设备上上传默认服务器核心?", "xloc": [ - "default.handlebars->35->617" + "default.handlebars->37->643" ] }, { @@ -59429,7 +59617,7 @@ "zh-chs": "上传文件", "zh-cht": "上傳文件", "xloc": [ - "default.handlebars->35->569" + "default.handlebars->37->595" ] }, { @@ -59478,7 +59666,7 @@ "zh-cht": "上傳恢復核心", "xloc": [ "default-mobile.handlebars->11->578", - "default.handlebars->35->1339" + "default.handlebars->37->1371" ] }, { @@ -59502,7 +59690,7 @@ "zh-chs": "将所选文件上传到所有所选设备", "zh-cht": "將所選文件上傳到所有所選設備", "xloc": [ - "default.handlebars->35->607" + "default.handlebars->37->633" ] }, { @@ -59526,7 +59714,7 @@ "zh-chs": "上传小核", "xloc": [ "default-mobile.handlebars->11->579", - "default.handlebars->35->1340" + "default.handlebars->37->1372" ] }, { @@ -59551,8 +59739,8 @@ "zh-cht": "上傳將覆蓋1個檔案。繼續?", "xloc": [ "default-mobile.handlebars->11->469", - "default.handlebars->35->1233", - "default.handlebars->35->1980", + "default.handlebars->37->1265", + "default.handlebars->37->2012", "sharing.handlebars->11->90" ] }, @@ -59578,8 +59766,8 @@ "zh-cht": "上傳將覆蓋{0}個檔案。繼續?", "xloc": [ "default-mobile.handlebars->11->470", - "default.handlebars->35->1234", - "default.handlebars->35->1981", + "default.handlebars->37->1266", + "default.handlebars->37->2013", "sharing.handlebars->11->91" ] }, @@ -59625,7 +59813,7 @@ "zh-chs": "上传:“{0}”", "zh-cht": "上傳:“{0}”", "xloc": [ - "default.handlebars->35->2031" + "default.handlebars->37->2063" ] }, { @@ -59648,7 +59836,7 @@ "tr": "Yükleme: \\\"{0}\\\", Boyut: {1}", "zh-chs": "上传:\\\"{0}\\\",大小:{1}", "xloc": [ - "default.handlebars->35->2086" + "default.handlebars->37->2118" ] }, { @@ -59672,7 +59860,7 @@ "zh-chs": "上索布族", "zh-cht": "上索布族", "xloc": [ - "default.handlebars->35->1564" + "default.handlebars->37->1596" ] }, { @@ -59696,7 +59884,7 @@ "zh-chs": "乌尔都文", "zh-cht": "烏爾都文", "xloc": [ - "default.handlebars->35->1565" + "default.handlebars->37->1597" ] }, { @@ -59719,7 +59907,7 @@ "tr": "kullanım", "zh-chs": "用法", "xloc": [ - "default.handlebars->35->2610" + "default.handlebars->37->2642" ] }, { @@ -59815,7 +60003,7 @@ "tr": "Çıplak metal LAN aktivasyonu için kullanın.", "zh-chs": "用于裸机 LAN 激活。", "xloc": [ - "default.handlebars->35->410" + "default.handlebars->37->432" ] }, { @@ -59909,8 +60097,8 @@ "zh-chs": "用过的", "zh-cht": "用過的", "xloc": [ - "default.handlebars->35->2550", - "default.handlebars->35->2552" + "default.handlebars->37->2582", + "default.handlebars->37->2584" ] }, { @@ -59934,14 +60122,14 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->35->1738", - "default.handlebars->35->2114", - "default.handlebars->35->2143", - "default.handlebars->35->2284", - "default.handlebars->35->2508", - "default.handlebars->35->304", - "default.handlebars->35->854", - "default.handlebars->35->90" + "default.handlebars->37->111", + "default.handlebars->37->1770", + "default.handlebars->37->2146", + "default.handlebars->37->2175", + "default.handlebars->37->2316", + "default.handlebars->37->2540", + "default.handlebars->37->326", + "default.handlebars->37->880" ] }, { @@ -59965,7 +60153,7 @@ "zh-chs": "用户+档案", "zh-cht": "用戶+檔案", "xloc": [ - "default.handlebars->35->2144" + "default.handlebars->37->2176" ] }, { @@ -59989,11 +60177,11 @@ "zh-chs": "用户帐户导入", "zh-cht": "用戶帳戶導入", "xloc": [ - "default.handlebars->35->1749", - "default.handlebars->35->2179", - "default.handlebars->35->2180", - "default.handlebars->35->2182", - "default.handlebars->35->2184" + "default.handlebars->37->1781", + "default.handlebars->37->2211", + "default.handlebars->37->2212", + "default.handlebars->37->2214", + "default.handlebars->37->2216" ] }, { @@ -60017,7 +60205,7 @@ "zh-chs": "用户帐户", "zh-cht": "用戶帳戶", "xloc": [ - "default.handlebars->35->2569" + "default.handlebars->37->2601" ] }, { @@ -60042,8 +60230,8 @@ "zh-cht": "用戶授權", "xloc": [ "default-mobile.handlebars->11->593", - "default.handlebars->35->1736", - "default.handlebars->35->850" + "default.handlebars->37->1768", + "default.handlebars->37->876" ] }, { @@ -60067,12 +60255,12 @@ "zh-chs": "用户同意", "zh-cht": "用戶同意", "xloc": [ - "default.handlebars->35->1709", - "default.handlebars->35->2275", - "default.handlebars->35->2375", - "default.handlebars->35->242", - "default.handlebars->35->776", - "default.handlebars->35->956" + "default.handlebars->37->1741", + "default.handlebars->37->2307", + "default.handlebars->37->2407", + "default.handlebars->37->264", + "default.handlebars->37->802", + "default.handlebars->37->982" ] }, { @@ -60096,12 +60284,12 @@ "zh-chs": "用户组", "zh-cht": "用戶群", "xloc": [ - "default.handlebars->35->1816", - "default.handlebars->35->1817", - "default.handlebars->35->2248", - "default.handlebars->35->2447", - "default.handlebars->35->2468", - "default.handlebars->35->853" + "default.handlebars->37->1848", + "default.handlebars->37->1849", + "default.handlebars->37->2280", + "default.handlebars->37->2479", + "default.handlebars->37->2500", + "default.handlebars->37->879" ] }, { @@ -60149,7 +60337,7 @@ "zh-chs": "用户组成员", "zh-cht": "用戶群成員", "xloc": [ - "default.handlebars->35->2444" + "default.handlebars->37->2476" ] }, { @@ -60197,9 +60385,9 @@ "zh-chs": "用户识别码", "zh-cht": "用戶識別碼", "xloc": [ - "default.handlebars->35->1885", - "default.handlebars->35->2329", - "default.handlebars->35->2330" + "default.handlebars->37->1917", + "default.handlebars->37->2361", + "default.handlebars->37->2362" ] }, { @@ -60223,8 +60411,8 @@ "zh-chs": "用户标识符", "zh-cht": "用戶標識符", "xloc": [ - "default.handlebars->35->1814", - "default.handlebars->35->2313" + "default.handlebars->37->1846", + "default.handlebars->37->2345" ] }, { @@ -60247,7 +60435,7 @@ "tr": "Kullanıcı Girişi", "zh-chs": "用户输入", "xloc": [ - "default.handlebars->35->233" + "default.handlebars->37->255" ] }, { @@ -60271,7 +60459,7 @@ "zh-chs": "用户列表输出", "zh-cht": "用戶列表輸出", "xloc": [ - "default.handlebars->35->2191" + "default.handlebars->37->2223" ] }, { @@ -60296,7 +60484,7 @@ "zh-cht": "用戶名", "xloc": [ "default-mobile.handlebars->11->648", - "default.handlebars->35->1884" + "default.handlebars->37->1916" ] }, { @@ -60387,7 +60575,7 @@ "tr": "Kullanıcı İşlemci Süresi", "zh-chs": "用户处理器时间", "xloc": [ - "default.handlebars->35->102" + "default.handlebars->37->123" ] }, { @@ -60411,7 +60599,7 @@ "zh-chs": "用户节", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->35->2601" + "default.handlebars->37->2633" ] }, { @@ -60535,7 +60723,7 @@ "zh-chs": "用户已存在", "xloc": [ "default-mobile.handlebars->11->671", - "default.handlebars->35->2527" + "default.handlebars->37->2559" ] }, { @@ -60559,8 +60747,8 @@ "zh-chs": "用户浏览器值", "zh-cht": "用戶瀏覽器值", "xloc": [ - "default.handlebars->35->1576", - "default.handlebars->35->1578" + "default.handlebars->37->1608", + "default.handlebars->37->1610" ] }, { @@ -60584,7 +60772,7 @@ "zh-chs": "用户组已更改:{0}", "zh-cht": "用戶組已更改:{0}", "xloc": [ - "default.handlebars->35->2060" + "default.handlebars->37->2092" ] }, { @@ -60608,7 +60796,7 @@ "zh-chs": "已创建用户组:{0}", "zh-cht": "已創建用戶組:{0}", "xloc": [ - "default.handlebars->35->2050" + "default.handlebars->37->2082" ] }, { @@ -60632,7 +60820,7 @@ "zh-chs": "用户组成员身份已更改:{0}", "zh-cht": "用戶組成員身份已更改:{0}", "xloc": [ - "default.handlebars->35->2048" + "default.handlebars->37->2080" ] }, { @@ -60684,7 +60872,7 @@ "tr": "{0}, {1}, {2}'den kilitli hesapta kullanıcı oturum açma girişimi", "zh-chs": "来自 {0}、{1}、{2} 的锁定帐户的用户登录尝试", "xloc": [ - "default.handlebars->35->2090" + "default.handlebars->37->2122" ] }, { @@ -60707,7 +60895,7 @@ "tr": "{0}, {1}, {2}'den yanlış 2. faktörle kullanıcı oturum açma girişimi", "zh-chs": "来自 {0}、{1}、{2} 的第二个因素不正确的用户登录尝试", "xloc": [ - "default.handlebars->35->2089" + "default.handlebars->37->2121" ] }, { @@ -60731,7 +60919,7 @@ "zh-chs": "未找到用户 {0}。", "xloc": [ "default-mobile.handlebars->11->679", - "default.handlebars->35->2535" + "default.handlebars->37->2567" ] }, { @@ -60782,14 +60970,14 @@ "default-mobile.handlebars->11->346", "default-mobile.handlebars->11->410", "default-mobile.handlebars->11->427", - "default.handlebars->35->1000", - "default.handlebars->35->1151", - "default.handlebars->35->1178", - "default.handlebars->35->1652", - "default.handlebars->35->1657", - "default.handlebars->35->2203", - "default.handlebars->35->271", - "default.handlebars->35->395", + "default.handlebars->37->1026", + "default.handlebars->37->1183", + "default.handlebars->37->1210", + "default.handlebars->37->1684", + "default.handlebars->37->1689", + "default.handlebars->37->2235", + "default.handlebars->37->293", + "default.handlebars->37->417", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1", "mstsc.handlebars->main->1->3->1->rowusername->1->0", @@ -60820,8 +61008,8 @@ "xloc": [ "default-mobile.handlebars->11->408", "default-mobile.handlebars->11->425", - "default.handlebars->35->1149", - "default.handlebars->35->1176" + "default.handlebars->37->1181", + "default.handlebars->37->1208" ] }, { @@ -60872,8 +61060,8 @@ "xloc": [ "default-mobile.handlebars->11->409", "default-mobile.handlebars->11->426", - "default.handlebars->35->1150", - "default.handlebars->35->1177" + "default.handlebars->37->1182", + "default.handlebars->37->1209" ] }, { @@ -60926,9 +61114,9 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->35->2236", - "default.handlebars->35->2276", - "default.handlebars->35->2600", + "default.handlebars->37->2268", + "default.handlebars->37->2308", + "default.handlebars->37->2632", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -60953,7 +61141,7 @@ "zh-chs": "用户会话", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->35->2573" + "default.handlebars->37->2605" ] }, { @@ -60976,7 +61164,7 @@ "tr": "Kullanıcılar Görünümü", "zh-chs": "用户视图", "xloc": [ - "default.handlebars->35->2177" + "default.handlebars->37->2209" ] }, { @@ -61000,7 +61188,7 @@ "zh-chs": "未找到用户 {0}。", "xloc": [ "default-mobile.handlebars->11->680", - "default.handlebars->35->2536" + "default.handlebars->37->2568" ] }, { @@ -61023,7 +61211,7 @@ "tr": "VNC Bağlantısı", "zh-chs": "VNC 连接", "xloc": [ - "default.handlebars->35->663" + "default.handlebars->37->689" ] }, { @@ -61046,7 +61234,7 @@ "tr": "VNC uzak bağlantı noktası:", "zh-chs": "VNC远程连接端口:", "xloc": [ - "default.handlebars->35->662" + "default.handlebars->37->688" ] }, { @@ -61070,7 +61258,7 @@ "zh-chs": "VT100 +(F10 = ESC + [OY)", "zh-cht": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->35->1167", + "default.handlebars->37->1199", "sharing.handlebars->11->38" ] }, @@ -61095,7 +61283,7 @@ "zh-chs": "有效登录", "xloc": [ "default-mobile.handlebars->11->75", - "default.handlebars->35->261" + "default.handlebars->37->283" ] }, { @@ -61119,7 +61307,7 @@ "zh-chs": "验证电邮", "zh-cht": "驗證電郵", "xloc": [ - "default.handlebars->35->2156" + "default.handlebars->37->2188" ] }, { @@ -61143,7 +61331,7 @@ "zh-chs": "验证异常", "xloc": [ "default-mobile.handlebars->11->673", - "default.handlebars->35->2529" + "default.handlebars->37->2561" ] }, { @@ -61167,7 +61355,7 @@ "zh-chs": "有效期", "zh-cht": "有效期", "xloc": [ - "default.handlebars->35->951" + "default.handlebars->37->977" ] }, { @@ -61211,7 +61399,7 @@ "zh-chs": "文达", "zh-cht": "文達", "xloc": [ - "default.handlebars->35->1566" + "default.handlebars->37->1598" ] }, { @@ -61237,8 +61425,8 @@ "xloc": [ "default-mobile.handlebars->11->543", "default-mobile.handlebars->11->546", - "default.handlebars->35->1303", - "default.handlebars->35->1306" + "default.handlebars->37->1335", + "default.handlebars->37->1338" ] }, { @@ -61263,7 +61451,7 @@ "zh-cht": "驗證碼:", "xloc": [ "default-mobile.handlebars->11->73", - "default.handlebars->35->203" + "default.handlebars->37->225" ] }, { @@ -61287,7 +61475,7 @@ "zh-chs": "已验证", "zh-cht": "已驗證", "xloc": [ - "default.handlebars->35->2423" + "default.handlebars->37->2455" ] }, { @@ -61337,8 +61525,8 @@ "zh-cht": "驗證電話號碼", "xloc": [ "default-mobile.handlebars->11->87", - "default.handlebars->35->1348", - "default.handlebars->35->2152" + "default.handlebars->37->1380", + "default.handlebars->37->2184" ] }, { @@ -61362,7 +61550,7 @@ "zh-chs": "用户{0}的已验证电话号码", "zh-cht": "用戶{0}的已驗證電話號碼", "xloc": [ - "default.handlebars->35->2077" + "default.handlebars->37->2109" ] }, { @@ -61439,10 +61627,10 @@ "default-mobile.handlebars->11->527", "default-mobile.handlebars->11->544", "default-mobile.handlebars->11->549", - "default.handlebars->35->1241", - "default.handlebars->35->1287", - "default.handlebars->35->1304", - "default.handlebars->35->1309", + "default.handlebars->37->1273", + "default.handlebars->37->1319", + "default.handlebars->37->1336", + "default.handlebars->37->1341", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -61467,7 +61655,7 @@ "zh-chs": "版本不兼容,请先升级您的MeshCentral", "zh-cht": "版本不兼容,請先升級你的MeshCentral", "xloc": [ - "default.handlebars->35->2643" + "default.handlebars->37->2675" ] }, { @@ -61537,7 +61725,7 @@ "zh-chs": "颤动", "xloc": [ "default-mobile.handlebars->11->319", - "default.handlebars->35->962" + "default.handlebars->37->988" ] }, { @@ -61561,7 +61749,7 @@ "zh-chs": "越南文", "zh-cht": "越南文", "xloc": [ - "default.handlebars->35->1567" + "default.handlebars->37->1599" ] }, { @@ -61609,7 +61797,7 @@ "zh-chs": "查看所有事件", "zh-cht": "查看所有事件", "xloc": [ - "default.handlebars->35->2228" + "default.handlebars->37->2260" ] }, { @@ -61653,8 +61841,8 @@ "zh-chs": "查看变更日志", "zh-cht": "查看變更日誌", "xloc": [ - "default.handlebars->35->2646", - "default.handlebars->35->2648" + "default.handlebars->37->2678", + "default.handlebars->37->2680" ] }, { @@ -61678,7 +61866,7 @@ "zh-chs": "查看有关此设备的注释", "zh-cht": "查看有關此裝置的註釋", "xloc": [ - "default.handlebars->35->801" + "default.handlebars->37->827" ] }, { @@ -61702,7 +61890,7 @@ "zh-chs": "查看有关此设备组的注释", "zh-cht": "查看有關此裝置群的註釋", "xloc": [ - "default.handlebars->35->1725" + "default.handlebars->37->1757" ] }, { @@ -61726,7 +61914,7 @@ "zh-chs": "查看有关此用户的注释", "zh-cht": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->35->2385" + "default.handlebars->37->2417" ] }, { @@ -61773,7 +61961,7 @@ "tr": "Bu kullanıcı için önceki girişleri görüntüle", "zh-chs": "查看此用户以前的登录", "xloc": [ - "default.handlebars->35->2398" + "default.handlebars->37->2430" ] }, { @@ -61796,7 +61984,7 @@ "tr": "Sanal bellek", "zh-chs": "虚拟内存", "xloc": [ - "default.handlebars->35->107" + "default.handlebars->37->128" ] }, { @@ -61820,7 +62008,7 @@ "zh-chs": "沃拉普克", "zh-cht": "沃拉普克", "xloc": [ - "default.handlebars->35->1568" + "default.handlebars->37->1600" ] }, { @@ -61864,8 +62052,9 @@ "zh-chs": "警告: ", "zh-cht": "警告: ", "xloc": [ - "default.handlebars->35->79", - "default.handlebars->35->80" + "default.handlebars->37->100", + "default.handlebars->37->101", + "default.handlebars->37->99" ] }, { @@ -62019,7 +62208,7 @@ "zh-cht": "正在等待用戶授予訪問權限...", "xloc": [ "default-mobile.handlebars->11->366", - "default.handlebars->35->1069", + "default.handlebars->37->1095", "sharing.handlebars->11->28", "sharing.handlebars->11->6" ] @@ -62045,8 +62234,8 @@ "zh-chs": "唤醒", "zh-cht": "喚醒", "xloc": [ - "default.handlebars->35->882", - "default.handlebars->35->904" + "default.handlebars->37->908", + "default.handlebars->37->930" ] }, { @@ -62072,8 +62261,8 @@ "xloc": [ "default-mobile.handlebars->11->620", "default-mobile.handlebars->11->635", - "default.handlebars->35->1837", - "default.handlebars->35->1868" + "default.handlebars->37->1869", + "default.handlebars->37->1900" ] }, { @@ -62098,7 +62287,7 @@ "zh-cht": "喚醒", "xloc": [ "default-mobile.handlebars->11->324", - "default.handlebars->35->967" + "default.handlebars->37->993" ] }, { @@ -62122,7 +62311,7 @@ "zh-chs": "唤醒设备", "zh-cht": "喚醒裝置", "xloc": [ - "default.handlebars->35->562" + "default.handlebars->37->588" ] }, { @@ -62146,7 +62335,7 @@ "zh-chs": "瓦隆", "zh-cht": "瓦隆", "xloc": [ - "default.handlebars->35->1569" + "default.handlebars->37->1601" ] }, { @@ -62170,7 +62359,7 @@ "zh-chs": "弱", "zh-cht": "弱", "xloc": [ - "default.handlebars->35->1644" + "default.handlebars->37->1676" ] }, { @@ -62223,8 +62412,8 @@ "zh-chs": "网络服务器", "zh-cht": "網絡伺服器", "xloc": [ - "default.handlebars->35->2626", - "default.handlebars->35->2627" + "default.handlebars->37->2658", + "default.handlebars->37->2659" ] }, { @@ -62247,7 +62436,7 @@ "tr": "Web Sunucusu HTTP Başlıkları", "zh-chs": "Web 服务器 HTTP 标头", "xloc": [ - "default.handlebars->35->2630" + "default.handlebars->37->2662" ] }, { @@ -62271,7 +62460,7 @@ "zh-chs": "Web服务器请求", "zh-cht": "Web伺服器請求", "xloc": [ - "default.handlebars->35->2628" + "default.handlebars->37->2660" ] }, { @@ -62295,7 +62484,7 @@ "zh-chs": "Web套接字中继", "zh-cht": "Web插座中繼", "xloc": [ - "default.handlebars->35->2629" + "default.handlebars->37->2661" ] }, { @@ -62319,7 +62508,7 @@ "zh-chs": "网络RDP", "zh-cht": "網絡RDP", "xloc": [ - "default.handlebars->35->832" + "default.handlebars->37->858" ] }, { @@ -62342,7 +62531,7 @@ "tr": "Web-SSH", "zh-chs": "网络SSH", "xloc": [ - "default.handlebars->35->834" + "default.handlebars->37->860" ] }, { @@ -62365,7 +62554,7 @@ "tr": "Web-VNC", "zh-chs": "网络VNC", "xloc": [ - "default.handlebars->35->830" + "default.handlebars->37->856" ] }, { @@ -62388,7 +62577,7 @@ "tr": "WebRDP", "zh-chs": "网络RDP", "xloc": [ - "default.handlebars->35->2594" + "default.handlebars->37->2626" ] }, { @@ -62411,7 +62600,14 @@ "tr": "WebSSH", "zh-chs": "网络SSH", "xloc": [ - "default.handlebars->35->2595" + "default.handlebars->37->2627" + ] + }, + { + "en": "WebSocket compression is disabled, this feature is broken in NodeJS v11.11 to v12.15 and v13.2", + "pl": "Kompresja WebSocket jest wyłączona, ta funkcja nie działa w NodeJS v11.11 do v12.15 i v13.2", + "xloc": [ + "default.handlebars->37->82" ] }, { @@ -62434,7 +62630,7 @@ "tr": "WebVNC", "zh-chs": "网络VNC", "xloc": [ - "default.handlebars->35->2596" + "default.handlebars->37->2628" ] }, { @@ -62483,7 +62679,7 @@ "zh-chs": "欢迎{0}。", "zh-cht": "歡迎{0}。", "xloc": [ - "default.handlebars->35->55", + "default.handlebars->37->55", "terms.handlebars->3->1" ] }, @@ -62508,7 +62704,7 @@ "zh-chs": "威尔士文", "zh-cht": "威爾士文", "xloc": [ - "default.handlebars->35->1570" + "default.handlebars->37->1602" ] }, { @@ -62532,7 +62728,7 @@ "zh-chs": "启用后,任何人都可以使用邀请代码通过以下公共连结将设备加入该设备组:", "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->35->1893" + "default.handlebars->37->1925" ] }, { @@ -62557,7 +62753,7 @@ "zh-cht": "啟用後,每次登入時,你都可以選擇向電郵帳戶接收登入保安編碼,以提高安全性。", "xloc": [ "default-mobile.handlebars->11->93", - "default.handlebars->35->1355" + "default.handlebars->37->1387" ] }, { @@ -62581,7 +62777,7 @@ "zh-chs": "选择此策略时,此服务器不管理英特尔®AMT。 仍然可以通过手动激活和配置Intel AMT来使用它。", "zh-cht": "選擇此策略時,此服務器不管理英特爾®AMT。 仍然可以通過手動激活和配置Intel AMT來使用它。", "xloc": [ - "default.handlebars->35->1780" + "default.handlebars->37->1812" ] }, { @@ -62626,7 +62822,7 @@ "zh-chs": "选择此策略后,将禁用处于客户端控制模式(CCM)的所有英特尔®AMT。 其他设备将清除CIRA,并且仍然可以手动进行管理。", "zh-cht": "選擇此策略後,將禁用處於客戶端控制模式(CCM)的所有英特爾®AMT。 其他設備將清除CIRA,並且仍然可以手動進行管理。", "xloc": [ - "default.handlebars->35->1781" + "default.handlebars->37->1813" ] }, { @@ -62650,7 +62846,7 @@ "zh-chs": "下次登录时将更改。", "zh-cht": "下次登入時將更改。", "xloc": [ - "default.handlebars->35->2355" + "default.handlebars->37->2387" ] }, { @@ -62677,8 +62873,8 @@ "default-mobile.handlebars->11->393", "default-mobile.handlebars->11->397", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->5", - "default.handlebars->35->1108", - "default.handlebars->35->1112", + "default.handlebars->37->1134", + "default.handlebars->37->1138", "sharing.handlebars->p11->deskarea0->deskarea4->3->deskkeys->3" ] }, @@ -62876,7 +63072,7 @@ "zh-chs": "Win32可执行档案", "zh-cht": "Win32可執行檔案", "xloc": [ - "default.handlebars->35->1028" + "default.handlebars->37->1054" ] }, { @@ -62940,7 +63136,7 @@ "tr": "Pencere Başlığı", "zh-chs": "窗口标题", "xloc": [ - "default.handlebars->35->89" + "default.handlebars->37->110" ] }, { @@ -62965,8 +63161,8 @@ "zh-cht": "視窗", "xloc": [ "default-mobile.handlebars->11->260", - "default.handlebars->35->460", - "default.handlebars->35->711" + "default.handlebars->37->485", + "default.handlebars->37->737" ] }, { @@ -62990,8 +63186,8 @@ "zh-chs": "Windows(.exe)", "zh-cht": "Windows(.exe)", "xloc": [ - "default.handlebars->35->483", - "default.handlebars->35->510" + "default.handlebars->37->508", + "default.handlebars->37->536" ] }, { @@ -63015,7 +63211,7 @@ "zh-chs": "Windows(32位)", "zh-cht": "Windows(32位)", "xloc": [ - "default.handlebars->35->1034" + "default.handlebars->37->1060" ] }, { @@ -63039,7 +63235,7 @@ "zh-chs": "Windows(64位)", "zh-cht": "Windows(64位)", "xloc": [ - "default.handlebars->35->1033" + "default.handlebars->37->1059" ] }, { @@ -63062,7 +63258,7 @@ "tr": "Windows (RDP)", "zh-chs": "视窗 (RDP)", "xloc": [ - "default.handlebars->35->387" + "default.handlebars->37->409" ] }, { @@ -63086,7 +63282,7 @@ "zh-chs": "Windows(卸载)", "zh-cht": "Windows(卸載)", "xloc": [ - "default.handlebars->35->466" + "default.handlebars->37->491" ] }, { @@ -63135,7 +63331,7 @@ "zh-cht": "Windows 32位控制台", "xloc": [ "default-mobile.handlebars->11->7", - "default.handlebars->35->14" + "default.handlebars->37->14" ] }, { @@ -63160,7 +63356,7 @@ "zh-cht": "Windows 32位服務", "xloc": [ "default-mobile.handlebars->11->9", - "default.handlebars->35->16" + "default.handlebars->37->16" ] }, { @@ -63209,7 +63405,7 @@ "zh-cht": "Windows 64位控制台", "xloc": [ "default-mobile.handlebars->11->8", - "default.handlebars->35->15" + "default.handlebars->37->15" ] }, { @@ -63234,7 +63430,7 @@ "zh-cht": "Windows 64位服務", "xloc": [ "default-mobile.handlebars->11->10", - "default.handlebars->35->17" + "default.handlebars->37->17" ] }, { @@ -63258,8 +63454,8 @@ "zh-chs": "Windows命令提示", "zh-cht": "Windows命令提示", "xloc": [ - "default.handlebars->35->587", - "default.handlebars->35->982" + "default.handlebars->37->1008", + "default.handlebars->37->613" ] }, { @@ -63284,7 +63480,7 @@ "zh-cht": "Windows MinCore控制台", "xloc": [ "default-mobile.handlebars->11->27", - "default.handlebars->35->34" + "default.handlebars->37->34" ] }, { @@ -63309,7 +63505,7 @@ "zh-cht": "Windows MinCore服務", "xloc": [ "default-mobile.handlebars->11->28", - "default.handlebars->35->35" + "default.handlebars->37->35" ] }, { @@ -63333,7 +63529,7 @@ "zh-chs": "Windows路径", "zh-cht": "Windows路徑", "xloc": [ - "default.handlebars->35->608" + "default.handlebars->37->634" ] }, { @@ -63357,8 +63553,8 @@ "zh-chs": "Windows PowerShell", "zh-cht": "Windows PowerShell", "xloc": [ - "default.handlebars->35->588", - "default.handlebars->35->983" + "default.handlebars->37->1009", + "default.handlebars->37->614" ] }, { @@ -63382,7 +63578,7 @@ "zh-chs": "视窗安全", "xloc": [ "default-mobile.handlebars->11->492", - "default.handlebars->35->758" + "default.handlebars->37->784" ] }, { @@ -63406,7 +63602,7 @@ "zh-chs": "仅Windows", "zh-cht": "僅Windows", "xloc": [ - "default.handlebars->35->430" + "default.handlebars->37->455" ] }, { @@ -63430,8 +63626,8 @@ "zh-chs": "Windows x64(.exe)", "zh-cht": "Windows x64(.exe)", "xloc": [ - "default.handlebars->35->487", - "default.handlebars->35->513" + "default.handlebars->37->512", + "default.handlebars->37->539" ] }, { @@ -63454,7 +63650,7 @@ "tr": "Çalışma seti", "zh-chs": "工作集", "xloc": [ - "default.handlebars->35->108" + "default.handlebars->37->129" ] }, { @@ -63502,7 +63698,7 @@ "zh-chs": "换行:关", "zh-cht": "换行:關", "xloc": [ - "default.handlebars->35->1227", + "default.handlebars->37->1259", "sharing.handlebars->11->84" ] }, @@ -63527,7 +63723,7 @@ "zh-chs": "换行:开", "zh-cht": "换行:開", "xloc": [ - "default.handlebars->35->1226", + "default.handlebars->37->1258", "sharing.handlebars->11->83" ] }, @@ -63552,7 +63748,7 @@ "zh-chs": "为此设备写一个事件", "zh-cht": "為此裝置寫一個事件", "xloc": [ - "default.handlebars->35->803" + "default.handlebars->37->829" ] }, { @@ -63565,10 +63761,10 @@ "ja": "バツ", "ko": "X", "nl": "X", - "pt": "X", - "ru": "X", - "pt-br": "X", "pl": "X", + "pt": "X", + "pt-br": "X", + "ru": "X", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1->1->0", "default-mobile.handlebars->dialog->1->id_dialogclose->0", @@ -63600,7 +63796,7 @@ "zh-cht": "XENx86", "xloc": [ "default-mobile.handlebars->11->14", - "default.handlebars->35->21" + "default.handlebars->37->21" ] }, { @@ -63624,7 +63820,7 @@ "zh-chs": "XTerm", "zh-cht": "XTerm", "xloc": [ - "default.handlebars->35->821" + "default.handlebars->37->847" ] }, { @@ -63648,7 +63844,7 @@ "zh-chs": "科萨", "zh-cht": "科薩", "xloc": [ - "default.handlebars->35->1571" + "default.handlebars->37->1603" ] }, { @@ -63672,7 +63868,7 @@ "zh-chs": "意第绪文", "zh-cht": "意第緒文", "xloc": [ - "default.handlebars->35->1572" + "default.handlebars->37->1604" ] }, { @@ -63696,7 +63892,7 @@ "zh-chs": "您可以随时重新激活此功能。", "zh-cht": "你可以隨時重新啟動此功能。", "xloc": [ - "default.handlebars->35->177" + "default.handlebars->37->199" ] }, { @@ -63789,7 +63985,7 @@ "zh-chs": "您现在需要一个有效的保安编码才能再次登录。", "zh-cht": "你現在需要一個有效的保安編碼才能再次登入。", "xloc": [ - "default.handlebars->35->172" + "default.handlebars->37->194" ] }, { @@ -63838,7 +64034,7 @@ "zh-chs": "YubiKey™ OTP", "zh-cht": "YubiKey™OTP", "xloc": [ - "default.handlebars->35->1374" + "default.handlebars->37->1406" ] }, { @@ -63887,7 +64083,7 @@ "zh-chs": "邮编档案名", "zh-cht": "郵編檔案名", "xloc": [ - "default.handlebars->35->1211", + "default.handlebars->37->1243", "sharing.handlebars->11->68" ] }, @@ -63912,7 +64108,7 @@ "zh-chs": "缩放至适合范围", "zh-cht": "縮放至適合範圍", "xloc": [ - "default.handlebars->35->679" + "default.handlebars->37->705" ] }, { @@ -63936,8 +64132,8 @@ "zh-chs": "放大到一定程度", "zh-cht": "放大到一定程度", "xloc": [ - "default.handlebars->35->676", - "default.handlebars->35->682" + "default.handlebars->37->702", + "default.handlebars->37->708" ] }, { @@ -63961,8 +64157,8 @@ "zh-chs": "缩小到一定程度", "zh-cht": "縮小到一定程度", "xloc": [ - "default.handlebars->35->677", - "default.handlebars->35->683" + "default.handlebars->37->703", + "default.handlebars->37->709" ] }, { @@ -63986,7 +64182,7 @@ "zh-chs": "祖鲁族", "zh-cht": "祖魯族", "xloc": [ - "default.handlebars->35->1573" + "default.handlebars->37->1605" ] }, { @@ -64306,7 +64502,7 @@ "zh-chs": "\\\\'", "zh-cht": "\\\\'", "xloc": [ - "default.handlebars->35->2644" + "default.handlebars->37->2676" ] }, { @@ -64332,8 +64528,8 @@ "xloc": [ "default-mobile.handlebars->11->173", "default-mobile.handlebars->11->174", - "default.handlebars->35->650", - "default.handlebars->35->651" + "default.handlebars->37->676", + "default.handlebars->37->677" ] }, { @@ -64357,9 +64553,9 @@ "zh-chs": "加一", "zh-cht": "加一", "xloc": [ - "default.handlebars->35->295", - "default.handlebars->35->297", - "default.handlebars->35->299" + "default.handlebars->37->317", + "default.handlebars->37->319", + "default.handlebars->37->321" ] }, { @@ -64383,7 +64579,7 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->35->396" + "default.handlebars->37->418" ] }, { @@ -64408,8 +64604,8 @@ "xloc": [ "default-mobile.handlebars->11->177", "default-mobile.handlebars->11->178", - "default.handlebars->35->654", - "default.handlebars->35->655" + "default.handlebars->37->680", + "default.handlebars->37->681" ] }, { @@ -64432,7 +64628,7 @@ "tr": "ve", "zh-chs": "和", "xloc": [ - "default.handlebars->35->632" + "default.handlebars->37->658" ] }, { @@ -64507,8 +64703,8 @@ "xloc": [ "default-mobile.handlebars->11->171", "default-mobile.handlebars->11->172", - "default.handlebars->35->648", - "default.handlebars->35->649" + "default.handlebars->37->674", + "default.handlebars->37->675" ] }, { @@ -64557,7 +64753,7 @@ "zh-chs": "取消帮助", "zh-cht": "取消幫助", "xloc": [ - "default.handlebars->35->342" + "default.handlebars->37->364" ] }, { @@ -64678,8 +64874,8 @@ "tr": "bilgisayar listesi.json", "zh-chs": "计算机列表.json", "xloc": [ - "default.handlebars->35->625", - "default.handlebars->35->630" + "default.handlebars->37->651", + "default.handlebars->37->656" ] }, { @@ -64704,7 +64900,7 @@ "zh-cht": "console.txt", "xloc": [ "default-mobile.handlebars->11->573", - "default.handlebars->35->1334" + "default.handlebars->37->1366" ] }, { @@ -64729,7 +64925,7 @@ "zh-cht": "複製", "xloc": [ "default-mobile.handlebars->11->154", - "default.handlebars->35->1976" + "default.handlebars->37->2008" ] }, { @@ -64776,8 +64972,8 @@ "tr": "açıklama:", "zh-chs": "描述:", "xloc": [ - "default.handlebars->35->656", - "default.handlebars->35->657" + "default.handlebars->37->682", + "default.handlebars->37->683" ] }, { @@ -64800,7 +64996,7 @@ "tr": "aygıt listesi", "zh-chs": "设备列表", "xloc": [ - "default.handlebars->35->267" + "default.handlebars->37->289" ] }, { @@ -64824,8 +65020,8 @@ "zh-chs": "devicelist.csv", "zh-cht": "devicelist.csv", "xloc": [ - "default.handlebars->35->621", - "default.handlebars->35->629" + "default.handlebars->37->647", + "default.handlebars->37->655" ] }, { @@ -64849,8 +65045,8 @@ "zh-chs": "devicelist.json", "zh-cht": "devicelist.json", "xloc": [ - "default.handlebars->35->623", - "default.handlebars->35->631" + "default.handlebars->37->649", + "default.handlebars->37->657" ] }, { @@ -64941,8 +65137,8 @@ "zh-chs": "eventslist.csv", "zh-cht": "eventslist.csv", "xloc": [ - "default.handlebars->35->2121", - "default.handlebars->35->2126" + "default.handlebars->37->2153", + "default.handlebars->37->2158" ] }, { @@ -64966,8 +65162,8 @@ "zh-chs": "eventslist.json", "zh-cht": "eventslist.json", "xloc": [ - "default.handlebars->35->2123", - "default.handlebars->35->2127" + "default.handlebars->37->2155", + "default.handlebars->37->2159" ] }, { @@ -64991,7 +65187,7 @@ "zh-chs": "example@email.com", "zh-cht": "example@email.com", "xloc": [ - "default.handlebars->35->426" + "default.handlebars->37->451" ] }, { @@ -65039,8 +65235,8 @@ "zh-chs": "免费", "zh-cht": "免費", "xloc": [ - "default.handlebars->35->2581", - "default.handlebars->35->2584" + "default.handlebars->37->2613", + "default.handlebars->37->2616" ] }, { @@ -65066,8 +65262,8 @@ "xloc": [ "default-mobile.handlebars->11->165", "default-mobile.handlebars->11->166", - "default.handlebars->35->642", - "default.handlebars->35->643" + "default.handlebars->37->668", + "default.handlebars->37->669" ] }, { @@ -65093,8 +65289,8 @@ "xloc": [ "default-mobile.handlebars->11->163", "default-mobile.handlebars->11->164", - "default.handlebars->35->640", - "default.handlebars->35->641" + "default.handlebars->37->666", + "default.handlebars->37->667" ] }, { @@ -65295,7 +65491,7 @@ "zh-chs": "id, name, email, creation, lastlogin, groups, authfactors", "zh-cht": "id, name, email, creation, lastlogin, groups, authfactors", "xloc": [ - "default.handlebars->35->2192" + "default.handlebars->37->2224" ] }, { @@ -65359,7 +65555,7 @@ "tr": "id, ad, rname, ana bilgisayar, simge, ip, osdesc, durum, grup adı, bağlantı, pwr, av, güncelleme, güvenlik duvarı, avdetails", "zh-chs": "id、名称、rname、主机、图标、ip、osdesc、状态、组名、conn、pwr、av、更新、防火墙、avdetails", "xloc": [ - "default.handlebars->35->628" + "default.handlebars->37->654" ] }, { @@ -65405,8 +65601,8 @@ "xloc": [ "default-mobile.handlebars->11->161", "default-mobile.handlebars->11->162", - "default.handlebars->35->638", - "default.handlebars->35->639" + "default.handlebars->37->664", + "default.handlebars->37->665" ] }, { @@ -65502,7 +65698,7 @@ "zh-chs": "k max,默认为空白", "zh-cht": "k max,默認為空白", "xloc": [ - "default.handlebars->35->2220" + "default.handlebars->37->2252" ] }, { @@ -65596,7 +65792,7 @@ "zh-cht": "macOS", "xloc": [ "default-mobile.handlebars->11->264", - "default.handlebars->35->715" + "default.handlebars->37->741" ] }, { @@ -65640,7 +65836,7 @@ "tr": "macOS (SSH/SCP/VNC)", "zh-chs": "macOS (SSH/SCP/VNC)", "xloc": [ - "default.handlebars->35->389" + "default.handlebars->37->411" ] }, { @@ -65706,7 +65902,7 @@ "zh-chs": "macOS ARM (64位)", "zh-cht": "macOS ARM (64位)", "xloc": [ - "default.handlebars->35->1038" + "default.handlebars->37->1064" ] }, { @@ -65730,7 +65926,7 @@ "zh-chs": "macOS x86 (64位)", "zh-cht": "macOS x86 (64位)", "xloc": [ - "default.handlebars->35->1037" + "default.handlebars->37->1063" ] }, { @@ -65755,7 +65951,7 @@ "zh-cht": "macOS x86-32位", "xloc": [ "default-mobile.handlebars->11->17", - "default.handlebars->35->24" + "default.handlebars->37->24" ] }, { @@ -65780,7 +65976,7 @@ "zh-cht": "macOS x86-64位", "xloc": [ "default-mobile.handlebars->11->22", - "default.handlebars->35->29" + "default.handlebars->37->29" ] }, { @@ -65804,7 +66000,7 @@ "zh-chs": "MeshAgent", "zh-cht": "MeshAgent", "xloc": [ - "default.handlebars->35->518" + "default.handlebars->37->544" ] }, { @@ -65829,7 +66025,7 @@ "zh-cht": "移動", "xloc": [ "default-mobile.handlebars->11->155", - "default.handlebars->35->1977" + "default.handlebars->37->2009" ] }, { @@ -65982,7 +66178,7 @@ "tr": "veya", "zh-chs": "或者", "xloc": [ - "default.handlebars->35->633" + "default.handlebars->37->659" ] }, { @@ -66007,8 +66203,8 @@ "xloc": [ "default-mobile.handlebars->11->175", "default-mobile.handlebars->11->176", - "default.handlebars->35->652", - "default.handlebars->35->653" + "default.handlebars->37->678", + "default.handlebars->37->679" ] }, { @@ -66079,7 +66275,7 @@ "zh-chs": "servererrors.txt", "zh-cht": "servererrors.txt", "xloc": [ - "default.handlebars->35->1678" + "default.handlebars->37->1710" ] }, { @@ -66103,7 +66299,7 @@ "zh-chs": "servertrace.csv", "zh-cht": "servertrace.csv", "xloc": [ - "default.handlebars->35->2638" + "default.handlebars->37->2670" ] }, { @@ -66149,8 +66345,8 @@ "xloc": [ "default-mobile.handlebars->11->169", "default-mobile.handlebars->11->170", - "default.handlebars->35->646", - "default.handlebars->35->647" + "default.handlebars->37->672", + "default.handlebars->37->673" ] }, { @@ -66176,8 +66372,8 @@ "xloc": [ "default-mobile.handlebars->11->167", "default-mobile.handlebars->11->168", - "default.handlebars->35->644", - "default.handlebars->35->645" + "default.handlebars->37->670", + "default.handlebars->37->671" ] }, { @@ -66201,7 +66397,7 @@ "zh-chs": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "xloc": [ - "default.handlebars->35->2613" + "default.handlebars->37->2645" ] }, { @@ -66225,7 +66421,7 @@ "zh-chs": "时间,来源,信息", "zh-cht": "時間,來源,訊息", "xloc": [ - "default.handlebars->35->2637" + "default.handlebars->37->2669" ] }, { @@ -66270,8 +66466,8 @@ "zh-chs": "总计", "zh-cht": "總", "xloc": [ - "default.handlebars->35->2582", - "default.handlebars->35->2585" + "default.handlebars->37->2614", + "default.handlebars->37->2617" ] }, { @@ -66320,8 +66516,8 @@ "xloc": [ "default-mobile.handlebars->11->159", "default-mobile.handlebars->11->160", - "default.handlebars->35->636", - "default.handlebars->35->637" + "default.handlebars->37->662", + "default.handlebars->37->663" ] }, { @@ -66368,8 +66564,8 @@ "xloc": [ "default-mobile.handlebars->11->157", "default-mobile.handlebars->11->158", - "default.handlebars->35->634", - "default.handlebars->35->635" + "default.handlebars->37->660", + "default.handlebars->37->661" ] }, { @@ -66393,8 +66589,8 @@ "zh-chs": "userlist.csv", "zh-cht": "userlist.csv", "xloc": [ - "default.handlebars->35->2188", - "default.handlebars->35->2193" + "default.handlebars->37->2220", + "default.handlebars->37->2225" ] }, { @@ -66418,8 +66614,8 @@ "zh-chs": "userlist.json", "zh-cht": "userlist.json", "xloc": [ - "default.handlebars->35->2190", - "default.handlebars->35->2194" + "default.handlebars->37->2222", + "default.handlebars->37->2226" ] }, { @@ -66443,7 +66639,7 @@ "zh-chs": "utc,时间,类型,指令,用户,设备,消息", "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息", "xloc": [ - "default.handlebars->35->2125" + "default.handlebars->37->2157" ] }, { @@ -66629,8 +66825,8 @@ "zh-chs": "{0} Gb", "zh-cht": "{0} Gb", "xloc": [ - "default.handlebars->35->1951", - "default.handlebars->35->1956" + "default.handlebars->37->1983", + "default.handlebars->37->1988" ] }, { @@ -66674,9 +66870,9 @@ "zh-chs": "{0} Kb", "zh-cht": "{0} Kb", "xloc": [ - "default.handlebars->35->1949", - "default.handlebars->35->1954", - "default.handlebars->35->2481" + "default.handlebars->37->1981", + "default.handlebars->37->1986", + "default.handlebars->37->2513" ] }, { @@ -66722,10 +66918,10 @@ "xloc": [ "default-mobile.handlebars->11->557", "default-mobile.handlebars->11->562", - "default.handlebars->35->1317", - "default.handlebars->35->1322", - "default.handlebars->35->1950", - "default.handlebars->35->1955" + "default.handlebars->37->1349", + "default.handlebars->37->1354", + "default.handlebars->37->1982", + "default.handlebars->37->1987" ] }, { @@ -66750,7 +66946,7 @@ "zh-cht": "{0} Mb,{1} Mhz", "xloc": [ "default-mobile.handlebars->11->555", - "default.handlebars->35->1315" + "default.handlebars->37->1347" ] }, { @@ -66794,7 +66990,7 @@ "zh-chs": "{0}个活跃会话", "zh-cht": "{0}個活躍節", "xloc": [ - "default.handlebars->35->2401" + "default.handlebars->37->2433" ] }, { @@ -66818,8 +67014,8 @@ "zh-chs": "{0} b", "zh-cht": "{0} b", "xloc": [ - "default.handlebars->35->1948", - "default.handlebars->35->1953" + "default.handlebars->37->1980", + "default.handlebars->37->1985" ] }, { @@ -66844,8 +67040,8 @@ "zh-cht": "{0}個字節", "xloc": [ "default-mobile.handlebars->11->143", - "default.handlebars->35->1964", - "default.handlebars->35->2502", + "default.handlebars->37->1996", + "default.handlebars->37->2534", "download.handlebars->3->2", "download2.handlebars->5->2", "sharing.handlebars->11->97" @@ -66872,7 +67068,7 @@ "zh-chs": "剩余{0}个字节", "zh-cht": "剩餘{0}個字節", "xloc": [ - "default.handlebars->35->1943" + "default.handlebars->37->1975" ] }, { @@ -66916,7 +67112,7 @@ "zh-chs": "{0}个连接", "zh-cht": "{0}個連接", "xloc": [ - "default.handlebars->35->1080", + "default.handlebars->37->1106", "sharing.handlebars->11->16" ] }, @@ -66940,7 +67136,7 @@ "tr": "{1} ile {2} arasında {0}.", "zh-chs": "{0} 从 {1} 到 {2}。", "xloc": [ - "default.handlebars->35->996" + "default.handlebars->37->1022" ] }, { @@ -66964,7 +67160,7 @@ "zh-chs": "剩余{0} GB", "zh-cht": "剩餘{0} GB", "xloc": [ - "default.handlebars->35->1946" + "default.handlebars->37->1978" ] }, { @@ -66988,7 +67184,7 @@ "zh-chs": "{0}个群组", "zh-cht": "{0}個群組", "xloc": [ - "default.handlebars->35->2360" + "default.handlebars->37->2392" ] }, { @@ -67012,7 +67208,7 @@ "zh-chs": "{0}小時", "zh-cht": "{0}小時", "xloc": [ - "default.handlebars->35->225" + "default.handlebars->37->247" ] }, { @@ -67057,7 +67253,7 @@ "zh-chs": "剩余{0}千字节", "zh-cht": "剩餘{0}千字節", "xloc": [ - "default.handlebars->35->1944" + "default.handlebars->37->1976" ] }, { @@ -67107,7 +67303,7 @@ "zh-chs": "剩余{0}兆字节", "zh-cht": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->35->1945" + "default.handlebars->37->1977" ] }, { @@ -67151,7 +67347,7 @@ "zh-chs": "{0}分钟直到断开连接", "zh-cht": "{0}分鐘直到斷開連接", "xloc": [ - "default.handlebars->35->77" + "default.handlebars->37->77" ] }, { @@ -67175,7 +67371,7 @@ "zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...", "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->35->2135" + "default.handlebars->37->2167" ] }, { @@ -67199,7 +67395,7 @@ "zh-chs": "{0}个节点", "zh-cht": "{0}個節點", "xloc": [ - "default.handlebars->35->524" + "default.handlebars->37->550" ] }, { @@ -67335,9 +67531,9 @@ "tr": "{0} saniye", "zh-chs": "{0} 秒", "xloc": [ - "default.handlebars->35->101", - "default.handlebars->35->103", - "default.handlebars->35->99" + "default.handlebars->37->120", + "default.handlebars->37->122", + "default.handlebars->37->124" ] }, { @@ -67381,7 +67577,7 @@ "zh-chs": "{0}秒后断开连接", "zh-cht": "{0}秒後斷開連接", "xloc": [ - "default.handlebars->35->75" + "default.handlebars->37->75" ] }, { @@ -67449,7 +67645,7 @@ "tr": "{0} seçili cihaz çevrimdışı.", "zh-chs": "{0} 个选定的设备处于离线状态。", "xloc": [ - "default.handlebars->35->583" + "default.handlebars->37->609" ] }, { @@ -67472,7 +67668,7 @@ "tr": "{0} seçili cihaz çevrimiçi.", "zh-chs": "{0} 个选定的设备在线。", "xloc": [ - "default.handlebars->35->581" + "default.handlebars->37->607" ] }, { @@ -67502,13 +67698,13 @@ "default-mobile.handlebars->11->205", "default-mobile.handlebars->11->208", "default-mobile.handlebars->11->211", - "default.handlebars->35->2139", - "default.handlebars->35->345", - "default.handlebars->35->348", - "default.handlebars->35->351", - "default.handlebars->35->354", - "default.handlebars->35->357", - "default.handlebars->35->360" + "default.handlebars->37->2171", + "default.handlebars->37->367", + "default.handlebars->37->370", + "default.handlebars->37->373", + "default.handlebars->37->376", + "default.handlebars->37->379", + "default.handlebars->37->382" ] }, { @@ -67532,7 +67728,7 @@ "zh-chs": "{0}设置(.msh)", "zh-cht": "{0}设置(.msh)", "xloc": [ - "default.handlebars->35->490" + "default.handlebars->37->515" ] }, { @@ -67606,7 +67802,7 @@ "zh-chs": "{0}个用户", "zh-cht": "{0}個用戶", "xloc": [ - "default.handlebars->35->363" + "default.handlebars->37->385" ] }, { @@ -67674,7 +67870,7 @@ "zh-chs": "{0},{1}至{2}", "zh-cht": "{0},{1}至{2}", "xloc": [ - "default.handlebars->35->866" + "default.handlebars->37->892" ] }, { @@ -67746,7 +67942,7 @@ "zh-chs": "{0}k在1档案内。最多{1}k", "zh-cht": "{0}k在1檔案內。最多{1}k", "xloc": [ - "default.handlebars->35->1958" + "default.handlebars->37->1990" ] }, { @@ -67770,7 +67966,7 @@ "zh-chs": "{1}k在{0}个档案中。最多{2}k", "zh-cht": "{1}k在{0}個檔案中。最多{2}k", "xloc": [ - "default.handlebars->35->1957" + "default.handlebars->37->1989" ] }, { @@ -67833,8 +68029,8 @@ "ko": "↺", "nl": "↺", "pt": "↺", - "ru": "↺", "pt-br": "↺", + "ru": "↺", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1->5", "sharing.handlebars->p11->deskarea0->deskarea1->1->5" @@ -67852,8 +68048,8 @@ "ko": "↻", "nl": "↻", "pt": "↻", - "ru": "↻", "pt-br": "↻", + "ru": "↻", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1->7", "sharing.handlebars->p11->deskarea0->deskarea1->1->7" @@ -67871,8 +68067,8 @@ "ko": "⇲", "nl": "⇲", "pt": "⇲", - "ru": "⇲", "pt-br": "⇲", + "ru": "⇲", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1->3", "player.handlebars->p11->deskarea0->deskarea1->1->1", @@ -67890,8 +68086,8 @@ "ja": "≡", "nl": "≡", "pt": "≡", - "ru": "≡", - "pt-br": "≡" + "pt-br": "≡", + "ru": "≡" }, { "cs": "◀", @@ -67905,8 +68101,8 @@ "ko": "◀", "nl": "◀", "pt": "◀", - "ru": "◀", "pt-br": "◀", + "ru": "◀", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10deskTopTable->1->0->1->3", "default-mobile.handlebars->container->page_content->column_l->p20->1->1->0->1->3", @@ -67926,8 +68122,8 @@ "ko": "♦", "nl": "♦", "pt": "♦", - "ru": "♦", "pt-br": "♦", + "ru": "♦", "xloc": [ "agentinvite.handlebars->container->topbar->uiMenuButton", "default.handlebars->container->topbar->1->1->uiMenuButton", @@ -67949,8 +68145,8 @@ "ko": "✓", "nl": "✓", "pt": "✓", - "ru": "✓", "pt-br": "✓", + "ru": "✓", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->3->manageAuthApp->authAppSetupCheck->0", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->3->manageEmail2FA->authEmailSetupCheck->0", @@ -67987,8 +68183,8 @@ "ko": "✖", "nl": "✖", "pt": "✖", - "ru": "✖", "pt-br": "✖", + "ru": "✖", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->idx_deskFullBtn2", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->idx_termFullBtn2", @@ -68012,8 +68208,8 @@ "ko": "✗", "nl": "✗", "pt": "✗", - "ru": "✗", "pt-br": "✗", + "ru": "✗", "xloc": [ "default.handlebars->container->column_l->p13->p13filetable->p13bigfail->0", "default.handlebars->container->column_l->p5->p5filetable->bigfail->0", diff --git a/views/default.handlebars b/views/default.handlebars index b7cf9491..8befbbc5 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -83,6 +83,10 @@
Ask Consent
Privacy Bar
+ @@ -610,7 +614,7 @@ - + Disconnected @@ -2162,8 +2166,39 @@ } case 'serverwarnings': { if ((message.warnings != null) && (message.warnings.length > 0)) { + var ServerWarnings = { + 1: "MeshCentral SSH support requires NodeJS 11 or higher.", + 2: "Missing WebDAV parameters.", + 3: "Unrecognized configuration option \"{0}\".", + 4: "WebSocket compression is disabled, this feature is broken in NodeJS v11.11 to v12.15 and v13.2", + 5: "Unable to load Intel AMT TLS root certificate for default domain.", + 6: "Unable to load Intel AMT TLS root certificate for domain {0}.", + 7: "CIRA local FQDN's ignored when server in LAN-only or WAN-only mode.", + 8: "Can't have more than 4 CIRA local FQDN's. Ignoring value.", + 9: "Agent hash checking is being skipped, this is unsafe.", + 10: "Missing Let's Encrypt email address.", + 11: "Invalid Let's Encrypt host names.", + 12: "Invalid Let's Encrypt names, can't contain a *.", + 13: "Unable to setup Let's Encrypt module.", + 14: "Invalid Let's Encrypt names, unable to resolve: {0}", + 15: "Invalid Let's Encrypt email address, unable to resolve: {0}", + 16: "Unable to load CloudFlare trusted proxy IPv6 address list.", + 17: "SendGrid server has limited use in LAN mode.", + 18: "SMTP server has limited use in LAN mode.", + 19: "SMS gateway has limited use in LAN mode.", + 20: "Invalid \"LoginCookieEncryptionKey\" in config.json." + }; var x = ''; - for (var i in message.warnings) { x += '
' + "WARNING: " + message.warnings[i] + '
'; } + for (var i in message.warnings) { + var y = message.warnings[i]; + if (typeof y == 'string') { + x += '
' + "WARNING: " + y + '
'; + } else { + var z = ServerWarnings[y.id]; + if (z == null) { z = y.msg; } else { z = format(z, y.args); } + x += '
' + "WARNING: " + z + '
'; + } + } QH('serverWarnings', x); QV('serverWarningsDiv', true); } @@ -2593,7 +2628,7 @@ var secret = message.secret; if (secret.length == 52) { secret = secret.split(/(.............)/).filter(Boolean).join(' '); } else if (secret.length == 32) { secret = secret.split(/(....)/).filter(Boolean).join(' '); secret = secret.substring(0, 20) + '
' + secret.substring(20) } - QH('d2optinfo', '
' + format("Install Google Authenticator or a compatible application and scan the barcode, use this link or enter the secret. Then, enter the current 6 digit token below to activate 2-Step login.", message.url) + '

Secret
' + secret + '


' + "Enter the token here for 2-step login:" + '
'); + QH('d2optinfo', '
' + format("Install Google Authenticator or a compatible application and scan the barcode, use this link or enter the secret. Then, enter the current 6 digit token below to activate 2-Step login.", message.url) + '

' + "Secret" + '
' + secret + '


' + "Enter the token here for 2-step login:" + '
'); new QRCode(Q('qrcode'), { text: message.url, width: 128, height: 128, colorDark: '#000000', colorLight: '#EEE', correctLevel: QRCode.CorrectLevel.H }); QV('idx_dlgOkButton', true); QE('idx_dlgOkButton', false); @@ -4682,22 +4717,22 @@ function addAmtScanToMesh(meshid) { if (xxdialogMode) return false; var x = "Enter a range of IP addresses to scan for Intel® AMT devices." + '

'; - var amtscanoptions = decodeURIComponent('{{{amtscanoptions}}}').split(','); + var amtscanoptions = '';//decodeURIComponent('{{{amtscanoptions}}}').split(','); if (amtscanoptions != '') { x += ''; for (var i in amtscanoptions) { x += ''; } x += ''; - x += addHtmlValue("IP Range", ''); + x += addHtmlValue("IP Range", '
'); } else { - x += addHtmlValue("IP Range", ''); + x += addHtmlValue("IP Range", '
'); } x += '
'; x += ''; - x += '
'; + x += '
'; setDialogMode(2, "Scan for Intel® AMT devices", 0, addAmtScanToMeshEx, x, meshid); QE('idx_dlgOkButton2', false); QE('d2scanSelectButton', false); - QH('dp1results', '
Sample IP range values
192.168.0.100
192.168.1.0/24
192.167.0.1-192.168.0.100
'); + QH('dp1results', '
' + "Sample IP range values" + '
192.168.0.100
192.168.1.0/24
192.167.0.1-192.168.0.100
'); focusTextBox('dp1range'); addAmtScanToMeshKeyUp(); return false; @@ -4856,7 +4891,7 @@ // Linux agent install x += ''; + x += '
' + "* For BSD, run \"pkg install wget sudo bash\" first." + '
' + "Copy" + ''; // macOS agent install x += '