diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000000..57790a24a9 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,49 @@ +# Security Policy + +## Supported Versions + +Any version of MeshCentral 1.x.x is supported. + +| Version | Supported | +| ------- | ------------------ | +| 1.x.x | :white_check_mark: | +| < 1.0 | :x: | + +## Reporting a Vulnerability + +Please report any concerns or security issue to Ylian Saint-Hilaire (ylianst@gmail.com). If needed, use my PGP key below. + +``` +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: BCPG v1.56 + +mQMuBF2gC4sRCAClFNvMCCVW3ego3UHBQ6LhSenJfaZYhvn8gaGuemSQxqTI6bla +BTAv3aMtQnvqlSuadMMegb+FO6hnaQMlGvpVA1qpkSzgrPS5HrBD3H33J2Nj3i93 +ZpDPpxdI0ehCj6IJPnl0GxGbpKIN8YpJUFl44wv1lMRFI1lgyb+dCoO60irYdNQB +PV85BI+DwPfOBFHunwR78nqMvpvsk9HaeHjEP7oXr952/7EazUowZsMlEfkYnw5S ++tLfpCoY3QWkektpJP40nMJSKQdV2NEuED99doA0X+7P1vsvFFFyMH69dnU2uSay +XCHpkAbntBy0BGmtF1RnTcOMv2V/LPXnlMdvAQCbmLQzNra3r163tcdRY0jSs+pZ +1L3w5tHNj2dzhfpa7wf/SIuds6QTr2LCN6miLoSVCRMMpT7d771b16GwQqWEXzN2 ++h7dYqrssHPOa8FSUrPerz0+0eFcbMSm5/L/4KXWXoQthURv8aMP9E0iVoUYaaKB +7U+5vFEZbpoOZyZmTAjXQMSNZCft0azA82Q+G85euyicWtMv48yNVzUhkdh+M2ud +ohkXX2Aor1TqpBJoIeWke7j9D+Bo+lu61zPRx5ed9teUeLJCwqNEjlE+6gre5kxF +PoreAtn59QYcBIpzQEWVMbNFlDAR4jMyqIoKCGfBPiRw2V+kunbzqiGQEglIFfOt +6sTN/+CJh0ei976VDmE0Z1kMN+CNLgIjIw8fl02V9QgAnHcpqtVUxR4dbGOhVDq5 +lWv+K75QQlWyXC2k+KboXcaCvH0WZEBACYzO0CfrZ5hP9BSkbj5usSUVGGHwEFAJ +t+/04KVY71fW281Ej5kGNaIKxeKsx6+hMo+UXb5ZM+6fANNNxs1cK95sTH6PjkyB +tsKxLoa3CV2v9mSE5JiKKt74R9nXVo7PXf6DizwAU2l30Lb6y6y0OdXdCCPAG8Ij +FrMgPu5MtjgsO5DnkZfUqDPWHhOgEPyOh3Ho+pvDhNYh5cm2eLQ8g5orzs2FHwbZ +DpAHwCdqrlcpBlKJ4W/MZdf1fg2PjqaTWm7ZFiGr91P0F6kltTLWbVKTjLdS0T+D +L7QnWWxpYW4gU2FpbnQtSGlsYWlyZSA8eWxpYW5zdEBnbWFpbC5jb20+iF4EExEI +AAYFAl2gC4sACgkQg7j/r4DH+kD/3gD+MRedlM53VzOtNOpS6mqDAxj1aWP90HN0 +AqO6zuCTyGgBAJlunLFKH8IUetmQOhiohB8HVhdm/q4lKRDV7sHdplDyuMwEXaAL +ixACAJSU/sCV87he4oZUKzg2/IGl3QoDSbTCOd04dE1IjPjjHbi8t9M7Qau55aM8 +ypFEsc7zMslL8Fc78EejrKmM3zsB/RU9XWFyrbQwRbaK6OHeEHC2E3AFaG0p09c6 +d0kZloHuWyEsm5a/3PpbIM1eP9IESJXWCc+bQQt6DxLKHLmkKMwB/icWMg8uMJlx +aady8TEq7LH5oFVKsglnwuN1nIkecrf77TVkEqTjIxS6TiOup6zOnioFNKLYBAH0 +WUnJEYFvx4OIXgQYEQgABgUCXaALiwAKCRCDuP+vgMf6QGFTAQCUj2gGwsFlN0eR +Wowv4eLcc3FwQ+lBElUctKg8vNFb0gD/ZWVWsWwKerNgNnf7RGD9mt8G2CKvdgGG +oZ2hPP2gU9w= +=roW4 +-----END PGP PUBLIC KEY BLOCK----- +``` diff --git a/agents/meshagent_android.apk b/agents/meshagent_android.apk index 0663a1f003..0b525a3b20 100644 Binary files a/agents/meshagent_android.apk and b/agents/meshagent_android.apk differ diff --git a/agents/meshcore.js b/agents/meshcore.js index 96559aa268..a84300a34d 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -3438,6 +3438,24 @@ function onTunnelData(data) this.zip.on('progress', require('events').moderated(function (name, p) { this.xws.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: 'zippingFile', file: ((process.platform == 'win32') ? (name.split('/').join('\\')) : name), progress: p }))); }, 1000)); this.zip.pipe(out); break; + case 'unzip': + if (this.unzip != null) return; // Unzip operating is currently running, exit now. + this.unzip = require('zip-reader').read(cmd.input); + this.unzip._dest = cmd.dest; + this.unzip.xws = this; + this.unzip.then(function (zipped) { + this.xws.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: 'unzipping' }))); + zipped.xws = this.xws; + zipped.extractAll(this._dest).then(function () { // finished extracting + zipped.xws.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: null }))); + zipped.xws.write(Buffer.from(JSON.stringify({ action: 'refresh' }))); + delete zipped.xws.unzip; + }, function (e) { // error extracting + zipped.xws.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: 'unziperror', error: e }))); + delete zipped.xws.unzip; + }); + }, function (e) { this.xws.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: 'unziperror', error: e }))); delete this.xws.unzip }); + break; case 'cancel': // Cancel zip operation if present try { this.zipcancel = true; this.zip.cancel(function () { }); } catch (ex) { } @@ -4247,12 +4265,12 @@ function processConsoleCommand(cmd, args, rights, sessionid) { break; case 'unzip': if (args['_'].length == 0) { - response = "Proper usage: unzip input, destination"; // Display usage + response = "Proper usage: unzip input,destination"; // Display usage } else { var p = args['_'].join(' ').split(','); - if (p.length != 2) { response = "Proper usage: unzip input, destination"; break; } // Display usage - var prom = require('zip-reader').read(p[0]); - prom._dest = p[1]; + if (p.length != 2) { response = "Proper usage: unzip input,destination"; break; } // Display usage + var prom = require('zip-reader').read(p[0].trim()); + prom._dest = p[1].trim(); prom.self = this; prom.sessionid = sessionid; prom.then(function (zipped) { @@ -4733,8 +4751,11 @@ function processConsoleCommand(cmd, args, rights, sessionid) { } case 'sysinfo': { // Return system information getSystemInformation(function (results, err) { - if (results == null) { sendConsoleText(err, this.sessionid); } else { + if (results == null) { + sendConsoleText(err, this.sessionid); + } else { sendConsoleText(JSON.stringify(results, null, 1), this.sessionid); + mesh.SendCommand({ action: 'sysinfo', sessionid: this.sessionid, data: results }); } }); break; @@ -5723,9 +5744,11 @@ function cleanGetBitLockerVolumeInfo(volumes) { for (var i in volumes) { const v = volumes[i]; if (typeof v.size == 'string') { v.size = parseInt(v.size); } + if (typeof v.sizeremaining == 'string') { v.sizeremaining = parseInt(v.sizeremaining); } if (v.identifier == '') { delete v.identifier; } if (v.name == '') { delete v.name; } if (v.removable != true) { delete v.removable; } + if (v.cdrom != true) { delete v.cdrom; } if (v.protectionStatus == 'On') { v.protectionStatus = true; } else { delete v.protectionStatus; } if (v.volumeStatus == 'FullyDecrypted') { delete v.volumeStatus; } if (v.recoveryPassword == '') { delete v.recoveryPassword; } diff --git a/agents/modules_meshcore/computer-identifiers.js b/agents/modules_meshcore/computer-identifiers.js index f55cc2b07f..197bfa18de 100644 --- a/agents/modules_meshcore/computer-identifiers.js +++ b/agents/modules_meshcore/computer-identifiers.js @@ -390,7 +390,7 @@ function windows_volumes() p1.child = child; child.promise = p1; child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); }); - child.stdin.write('Get-Volume | Select-Object -Property DriveLetter,FileSystemLabel,FileSystemType,Size,DriveType | ConvertTo-Csv -NoTypeInformation\nexit\n'); + child.stdin.write('Get-Volume | Select-Object -Property DriveLetter,FileSystemLabel,FileSystemType,Size,SizeRemaining,DriveType | ConvertTo-Csv -NoTypeInformation\nexit\n'); child.on('exit', function (c) { var a, i, tokens, key; @@ -407,7 +407,9 @@ function windows_volumes() name: tokens[1].split('"')[1], type: tokens[2].split('"')[1], size: tokens[3].split('"')[1], - removable: tokens[4].split('"')[1] == 'Removable' + sizeremaining: tokens[4].split('"')[1], + removable: tokens[5].split('"')[1] == 'Removable', + cdrom: tokens[5].split('"')[1] == 'CD-ROM' }; } } @@ -447,12 +449,14 @@ function windows_volumes() var abc = lines[x].trim(); var englishidpass = (abc !== '' && abc.includes('Numerical Password:')); // English ID var germanidpass = (abc !== '' && abc.includes('Numerisches Kennwort:')); // German ID + var frenchidpass = (abc !== '' && abc.includes('Mot de passe num')); // French ID var englishpass = (abc !== '' && abc.includes('Password:') && !abc.includes('Numerical Password:')); // English Password var germanpass = (abc !== '' && abc.includes('Kennwort:') && !abc.includes('Numerisches Kennwort:')); // German Password - if (englishidpass || germanidpass || englishpass || germanpass) { + var frenchpass = (abc !== '' && abc.includes('Mot de passe :') && !abc.includes('Mot de passe num')); // French Password + if (englishidpass || germanidpass || frenchidpass|| englishpass || germanpass || frenchpass) { var nextline = lines[x + 1].trim(); - if (x + 1 < lines.length && (nextline !== '' && nextline.startsWith('ID:'))) { - identifier = nextline.replace('ID:','').trim(); + if (x + 1 < lines.length && (nextline !== '' && (nextline.startsWith('ID:') || nextline.startsWith('ID :')) )) { + identifier = nextline.replace('ID:','').replace('ID :', '').trim(); foundIDMarkedLine = true; }else if (x + 1 < lines.length && nextline !== '') { password = nextline; @@ -559,7 +563,7 @@ function windows_identifiers() } function macos_identifiers() { - var ret = { identifiers: {} }; + var ret = { identifiers: {}, darwin: {} }; var child; child = require('child_process').execFile('/bin/sh', ['sh']); @@ -598,6 +602,84 @@ function macos_identifiers() child.waitExit(); ret.identifiers.cpu_name = child.stdout.str.trim(); + child = require('child_process').execFile('/bin/sh', ['sh']); + child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); }); + child.stdin.write('system_profiler SPMemoryDataType\nexit\n'); + child.waitExit(); + var lines = child.stdout.str.trim().split('\n'); + if(lines.length > 0) { + const memorySlots = []; + if(lines[2].trim().includes('Memory Slots:')) { // OLD MACS WITH SLOTS + const Memory = []; + const bankMatches = child.stdout.str.trim().match(/BANK \d+\/DIMM\d+:[\s\S]*?(?=(BANK|$))/g); + bankMatches.forEach(function(match, index) { + const bankInfo = match.match(/BANK (\d+)\/DIMM(\d+):[\s\S]*?Size: (\d+ \w+)[\s\S]*?Type: (\w+)[\s\S]*?Speed: (\d+ \w+)[\s\S]*?Status: (\w+)[\s\S]*?Manufacturer: (0x[0-9A-Fa-f]+)[\s\S]*?Part Number: (0x[0-9A-Fa-f]+)[\s\S]*?Serial Number: (.+)/); + if (bankInfo) { + const bankIndex = bankInfo[1].trim(); + const dimmIndex = bankInfo[2].trim(); + const size = bankInfo[3].trim(); + const type = bankInfo[4].trim(); + const speed = bankInfo[5].trim(); + const status = bankInfo[6].trim(); + const manufacturer = bankInfo[7].trim(); + const partNumber = bankInfo[8].trim(); + const serialNumber = bankInfo[9].trim(); + Memory.push({ + DeviceLocator: "BANK " + bankIndex + "/DIMM" + dimmIndex, + Size: size, + Type: type, + Speed: speed, + Status: status, + Manufacturer: hexToAscii(manufacturer), + PartNumber: hexToAscii(partNumber), + SerialNumber: serialNumber, + }); + } + }); + memorySlots = Memory; + } else { // NEW MACS WITHOUT SLOTS + memorySlots.push({ DeviceLocator: "Onboard Memory", Size: lines[2].split(":")[1].trim(), PartNumber: lines[3].split(":")[1].trim(), Manufacturer: lines[4].split(":")[1].trim() }) + } + ret.darwin.memory = memorySlots; + } + + child = require('child_process').execFile('/bin/sh', ['sh']); + child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); }); + child.stdin.write('diskutil info -all\nexit\n'); + child.waitExit(); + var sections = child.stdout.str.split('**********\n'); + if(sections.length > 0){ + var devices = []; + for (var i = 0; i < sections.length; i++) { + var lines = sections[i].split('\n'); + var deviceInfo = {}; + var wholeYes = false; + var physicalYes = false; + var oldmac = false; + for (var j = 0; j < lines.length; j++) { + var keyValue = lines[j].split(':'); + var key = keyValue[0].trim(); + var value = keyValue[1] ? keyValue[1].trim() : ''; + if (key === 'Virtual') oldmac = true; + if (key === 'Whole' && value === 'Yes') wholeYes = true; + if (key === 'Virtual' && value === 'No') physicalYes = true; + if(value && key === 'Device / Media Name'){ + deviceInfo['Caption'] = value; + } + if(value && key === 'Disk Size'){ + deviceInfo['Size'] = value.split(' ')[0] + ' ' + value.split(' ')[1]; + } + } + if (wholeYes) { + if (oldmac) { + if (physicalYes) devices.push(deviceInfo); + } else { + devices.push(deviceInfo); + } + } + } + ret.identifiers.storage_devices = devices; + } trimIdentifiers(ret.identifiers); @@ -606,6 +688,17 @@ function macos_identifiers() return (ret); } +function hexToAscii(hexString) { + hexString = hexString.startsWith('0x') ? hexString.slice(2) : hexString; + var str = ''; + for (var i = 0; i < hexString.length; i += 2) { + var hexPair = hexString.substr(i, 2); + str += String.fromCharCode(parseInt(hexPair, 16)); + } + str = str.replace(/[\u007F-\uFFFF]/g, ''); // Remove characters from 0x0080 to 0xFFFF + return str.trim(); +} + function win_chassisType() { var child = require('child_process').execFile(process.env['windir'] + '\\System32\\wbem\\wmic.exe', ['wmic', 'SystemEnclosure', 'get', 'ChassisTypes']); diff --git a/meshctrl.js b/meshctrl.js index 21ab0675c3..494a126463 100644 --- a/meshctrl.js +++ b/meshctrl.js @@ -879,6 +879,7 @@ if (args['_'].length == 0) { console.log(winRemoveSingleQuotes(" MeshCtrl DeviceSharing --id 'deviceid' --add Guest --start " + localISOTime + " --duration 30")); console.log(winRemoveSingleQuotes(" MeshCtrl DeviceSharing --id 'deviceid' --add Guest --start " + localISOTime + " --duration 30 --daily")); console.log(winRemoveSingleQuotes(" MeshCtrl DeviceSharing --id 'deviceid' --add Guest --type desktop,terminal --consent prompt")); + console.log(winRemoveSingleQuotes(" MeshCtrl DeviceSharing --id 'deviceid' --add Guest --type http --port 80")); console.log("\r\nRequired arguments:\r\n"); if (process.platform == 'win32') { console.log(" --id [deviceid] - The device identifier."); @@ -886,16 +887,17 @@ if (args['_'].length == 0) { console.log(" --id '[deviceid]' - The device identifier."); } console.log("\r\nOptional arguments:\r\n"); - console.log(" --remove [shareid] - Remove a device sharing link."); - console.log(" --add [guestname] - Add a device sharing link."); - console.log(" --type [desktop,terminal,files] - Type of sharing to add, can be combined. default is desktop."); - console.log(" --viewonly - Make desktop sharing view only."); - console.log(" --consent [notify,prompt] - Consent flags, default is notify."); - console.log(" --start [yyyy-mm-ddThh:mm:ss] - Start time, default is now."); - console.log(" --end [yyyy-mm-ddThh:mm:ss] - End time."); - console.log(" --duration [minutes] - Duration of the share, default is 60 minutes."); - console.log(" --daily - Add recurring daily device share."); - console.log(" --weekly - Add recurring weekly device share."); + console.log(" --remove [shareid] - Remove a device sharing link."); + console.log(" --add [guestname] - Add a device sharing link."); + console.log(" --type [desktop,terminal,files,http,https] - Type of sharing to add, can be combined. default is desktop."); + console.log(" --viewonly - Make desktop sharing view only."); + console.log(" --consent [notify,prompt,none] - Consent flags, default is notify."); + console.log(" --start [yyyy-mm-ddThh:mm:ss] - Start time, default is now."); + console.log(" --end [yyyy-mm-ddThh:mm:ss] - End time."); + console.log(" --duration [minutes] - Duration of the share, default is 60 minutes."); + console.log(" --daily - Add recurring daily device share."); + console.log(" --weekly - Add recurring weekly device share."); + console.log(" --port [portnumber] - Set alternative port for http or https, default is 80 for http and 443 for https."); break; } case 'agentdownload': { @@ -1707,10 +1709,12 @@ function serverConnect() { var p = 0; if (args.type != null) { var shareTypes = args.type.toLowerCase().split(','); - for (var i in shareTypes) { if ((shareTypes[i] != 'terminal') && (shareTypes[i] != 'desktop') && (shareTypes[i] != 'files')) { console.log("Unknown sharing type: " + shareTypes[i]); process.exit(1); } } + for (var i in shareTypes) { if ((shareTypes[i] != 'terminal') && (shareTypes[i] != 'desktop') && (shareTypes[i] != 'files') && (shareTypes[i] != 'http') && (shareTypes[i] != 'https')) { console.log("Unknown sharing type: " + shareTypes[i]); process.exit(1); } } if (shareTypes.indexOf('terminal') >= 0) { p |= 1; } if (shareTypes.indexOf('desktop') >= 0) { p |= 2; } if (shareTypes.indexOf('files') >= 0) { p |= 4; } + if (shareTypes.indexOf('http') >= 0) { p |= 8; } + if (shareTypes.indexOf('https') >= 0) { p |= 16; } } if (p == 0) { p = 2; } // Desktop @@ -1745,6 +1749,19 @@ function serverConnect() { } } + var port = null; + // Set Port Number if http or https + if ((p & 8) || (p & 16)) { + if (typeof args.port == 'number') { + if ((args.port < 1) || (args.port > 65535)) { console.log("Port number must be between 1 and 65535."); process.exit(1); } + port = args.port; + } else if ((p & 8)) { + port = 80; + } else if ((p & 16)) { + port = 443; + } + } + // Start and end time var start = null, end = null; if (args.start) { start = Math.floor(Date.parse(args.start) / 1000); end = start + (60 * 60); } @@ -1761,14 +1778,14 @@ function serverConnect() { if ((typeof args.duration != 'number') || (args.duration < 1)) { console.log("Invalid duration value."); process.exit(1); return; } // Recurring sharing - ws.send(JSON.stringify({ action: 'createDeviceShareLink', nodeid: args.id, guestname: args.add, p: p, consent: consent, start: start, expire: args.duration, recurring: recurring, viewOnly: viewOnly, responseid: 'meshctrl' })); + ws.send(JSON.stringify({ action: 'createDeviceShareLink', nodeid: args.id, guestname: args.add, p: p, consent: consent, start: start, expire: args.duration, recurring: recurring, viewOnly: viewOnly, port: port, responseid: 'meshctrl' })); } else { if ((start == null) && (end == null)) { // Unlimited sharing - ws.send(JSON.stringify({ action: 'createDeviceShareLink', nodeid: args.id, guestname: args.add, p: p, consent: consent, expire: 0, viewOnly: viewOnly, responseid: 'meshctrl' })); + ws.send(JSON.stringify({ action: 'createDeviceShareLink', nodeid: args.id, guestname: args.add, p: p, consent: consent, expire: 0, viewOnly: viewOnly, port: port, responseid: 'meshctrl' })); } else { // Time limited sharing - ws.send(JSON.stringify({ action: 'createDeviceShareLink', nodeid: args.id, guestname: args.add, p: p, consent: consent, start: start, end: end, viewOnly: viewOnly, responseid: 'meshctrl' })); + ws.send(JSON.stringify({ action: 'createDeviceShareLink', nodeid: args.id, guestname: args.add, p: p, consent: consent, start: start, end: end, viewOnly: viewOnly, port: port, responseid: 'meshctrl' })); } } } else if (args.remove) { diff --git a/meshuser.js b/meshuser.js index 184a441f70..f31518c322 100644 --- a/meshuser.js +++ b/meshuser.js @@ -4304,7 +4304,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } // If we have view only remote desktop rights, force view-only on the guest share. - if ((rights != MESHRIGHT_ADMIN) && ((rights & MESHRIGHT_REMOTEVIEWONLY) != 0)) { command.viewOnly = true; command.p = (command.p & 1); } + if ((rights != MESHRIGHT_ADMIN) && ((rights & MESHRIGHT_REMOTEVIEWONLY) != 0)) { command.viewOnly = true; } // Create cookie var publicid = getRandomPassword(), startTime = null, expireTime = null, duration = null; diff --git a/package-lock.json b/package-lock.json index 7465caf373..5244380567 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "meshcentral", - "version": "1.1.20", + "version": "1.1.21", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "meshcentral", - "version": "1.1.20", + "version": "1.1.21", "license": "Apache-2.0", "dependencies": { "@yetzt/nedb": "1.8.0", diff --git a/public/styles/style.css b/public/styles/style.css index 06ae01e6a3..ae2b4c2e00 100644 --- a/public/styles/style.css +++ b/public/styles/style.css @@ -1311,6 +1311,10 @@ NoMeshesPanel img { width: 250px; } +#d2netinfo .dialogText { + padding-right: 10px; +} + #p12warning, #p12warning2, #p11warning, #p11warning2 { max-width: 100%; display: none; diff --git a/translate/translate.js b/translate/translate.js index 5ec0239a5a..68c7847180 100644 --- a/translate/translate.js +++ b/translate/translate.js @@ -8,6 +8,7 @@ const fs = require('fs'); const path = require('path'); +const os = require('os'); //const zlib = require('zlib'); var performCheck = false; var translationTable = null; @@ -563,13 +564,13 @@ function totext(source, target, lang) { if (splitOutputPtr == 1) { // Save the target back - fs.writeFileSync(target + '-' + lang + '.txt', output.join('\r\n'), { flag: 'w+' }); + fs.writeFileSync(target + '-' + lang + '.txt', output.join(os.EOL), { flag: 'w+' }); log('Done.'); } else { // Save the text in 1000 string bunches for (var i in splitOutput) { log('Writing ' + target + '-' + lang + '-' + i + '.txt...'); - fs.writeFileSync(target + '-' + lang + '-' + i + '.txt', splitOutput[i].join('\r\n'), { flag: 'w+' }); + fs.writeFileSync(target + '-' + lang + '-' + i + '.txt', splitOutput[i].join(os.EOL), { flag: 'w+' }); } log('Done.'); } @@ -585,7 +586,7 @@ function fromtext(source, target, lang) { // Read raw text var rawText = fs.readFileSync(target).toString('utf8'); - var rawTextArray = rawText.split('\r\n'); + var rawTextArray = rawText.split(/\r?\n/); var rawTextPtr = 0; log('Translation file: ' + sourceLangFileData.strings.length + ' string(s)'); @@ -733,7 +734,7 @@ function extract(langFile, sources) { function extractFromTxt(file) { log("Processing TXT: " + path.basename(file)); - var lines = fs.readFileSync(file).toString().split('\r\n'); + var lines = fs.readFileSync(file).toString().split(/\r?\n/); var name = path.basename(file); for (var i in lines) { var line = lines[i]; @@ -847,7 +848,7 @@ function getStringFromJavaScript(name, script) { function translateFromTxt(lang, file, createSubDir) { log("Translating TXT (" + lang + "): " + path.basename(file)); - var lines = fs.readFileSync(file).toString().split('\r\n'), outlines = []; + var lines = fs.readFileSync(file).toString().split(/\r?\n/), outlines = []; for (var i in lines) { var line = lines[i]; if ((line.length > 1) && (line[0] != '~')) { @@ -857,7 +858,7 @@ function translateFromTxt(lang, file, createSubDir) { } } - var outname = file, out = outlines.join('\r\n'); + var outname = file, out = outlines.join(os.EOL); if (createSubDir != null) { var outfolder = path.join(path.dirname(file), createSubDir); if (fs.existsSync(outfolder) == false) { fs.mkdirSync(outfolder); } diff --git a/translate/translate.json b/translate/translate.json index 61cf163487..7430ed560d 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -26,8 +26,9 @@ }, { "en": " (", + "nl": " (", "xloc": [ - "default.handlebars->47->1499" + "default.handlebars->47->1506" ] }, { @@ -54,8 +55,8 @@ "zh-cht": " + CIRA", "hu": " + CIRA", "xloc": [ - "default.handlebars->47->2118", - "default.handlebars->47->2120" + "default.handlebars->47->2146", + "default.handlebars->47->2148" ] }, { @@ -328,7 +329,7 @@ "zh-cht": " 可以使用密碼提示,但不建議使用。", "hu": "Jelszó tipp használható, de nem ajánlott.", "xloc": [ - "default.handlebars->47->1994" + "default.handlebars->47->2022" ] }, { @@ -355,8 +356,8 @@ "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "hu": " A felhasználóknak egyszer be kell jelentkezniük erre a kiszolgálóra, mielőtt hozzáadhatók lennének egy eszközcsoporthoz.", "xloc": [ - "default.handlebars->47->2242", - "default.handlebars->47->2814" + "default.handlebars->47->2270", + "default.handlebars->47->2842" ] }, { @@ -787,13 +788,10 @@ "zh-chs": "'", "hu": "'", "xloc": [ - "agentinvite.handlebars->3->16", - "agentinvite.handlebars->3->17" + "agentinvite.handlebars->3->17", + "agentinvite.handlebars->3->18" ] }, - { - "en": "')" - }, { "cs": "(", "da": "(", @@ -909,7 +907,7 @@ "hu": ")", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1", - "default.handlebars->47->1500" + "default.handlebars->47->1507" ] }, { @@ -936,7 +934,7 @@ "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。", "hu": "* 8 karakter, 1 nagybetű, 1 kisbetű , 1 szám, 1 speciális karakter.", "xloc": [ - "default.handlebars->47->2202", + "default.handlebars->47->2230", "default.handlebars->47->526" ] }, @@ -1037,15 +1035,15 @@ "zh-cht": ",", "hu": ", ", "xloc": [ - "default-mobile.handlebars->11->782", - "default-mobile.handlebars->11->784", - "default-mobile.handlebars->11->786", - "default-mobile.handlebars->11->943", - "default.handlebars->47->1596", - "default.handlebars->47->1598", - "default.handlebars->47->1600", - "default.handlebars->47->2318", - "default.handlebars->47->2594", + "default-mobile.handlebars->11->781", + "default-mobile.handlebars->11->783", + "default-mobile.handlebars->11->785", + "default-mobile.handlebars->11->971", + "default.handlebars->47->1606", + "default.handlebars->47->1608", + "default.handlebars->47->1610", + "default.handlebars->47->2346", + "default.handlebars->47->2622", "default.handlebars->47->981" ] }, @@ -1206,8 +1204,8 @@ "zh-cht": ",MQTT在線", "hu": ", MQTT online", "xloc": [ - "default-mobile.handlebars->11->846", - "default.handlebars->47->1672" + "default-mobile.handlebars->11->874", + "default.handlebars->47->1700" ] }, { @@ -1235,7 +1233,7 @@ "hu": ", Nincs hozzájárulás", "xloc": [ "default.handlebars->47->1076", - "default.handlebars->47->2160" + "default.handlebars->47->2188" ] }, { @@ -1263,7 +1261,7 @@ "hu": ", Hozzájárulás kérése a kapcsolódáshoz", "xloc": [ "default.handlebars->47->1077", - "default.handlebars->47->2161" + "default.handlebars->47->2189" ] }, { @@ -1290,7 +1288,7 @@ "zh-cht": ", RDP", "hu": ", RDP", "xloc": [ - "default.handlebars->47->1366" + "default.handlebars->47->1369" ] }, { @@ -1318,7 +1316,7 @@ "hu": ", naponta ismétlődően", "xloc": [ "default.handlebars->47->1073", - "default.handlebars->47->2157" + "default.handlebars->47->2185" ] }, { @@ -1346,7 +1344,7 @@ "hu": ", hetente ismétlődően", "xloc": [ "default.handlebars->47->1074", - "default.handlebars->47->2158" + "default.handlebars->47->2186" ] }, { @@ -1425,7 +1423,7 @@ "hu": ", SFTP", "xloc": [ "default-mobile.handlebars->11->679", - "default.handlebars->47->1487" + "default.handlebars->47->1490" ] }, { @@ -1452,7 +1450,7 @@ "zh-cht": ", SSH", "hu": ", SSH", "xloc": [ - "default.handlebars->47->1455" + "default.handlebars->47->1458" ] }, { @@ -1479,7 +1477,7 @@ "zh-cht": ",軟體KVM", "hu": ", Soft-KVM", "xloc": [ - "default.handlebars->47->1349", + "default.handlebars->47->1352", "sharing.handlebars->11->12" ] }, @@ -1508,7 +1506,7 @@ "hu": ", Tálca értesítés", "xloc": [ "default.handlebars->47->1078", - "default.handlebars->47->2162" + "default.handlebars->47->2190" ] }, { @@ -1560,7 +1558,7 @@ "hu": ", csak megtekintés", "xloc": [ "default.handlebars->47->1075", - "default.handlebars->47->2159" + "default.handlebars->47->2187" ] }, { @@ -1590,9 +1588,9 @@ "default-mobile.handlebars->11->620", "default-mobile.handlebars->11->657", "default-mobile.handlebars->11->680", - "default.handlebars->47->1365", - "default.handlebars->47->1456", - "default.handlebars->47->1488", + "default.handlebars->47->1368", + "default.handlebars->47->1459", + "default.handlebars->47->1491", "sharing.handlebars->11->19", "sharing.handlebars->11->27", "sharing.handlebars->11->44", @@ -1806,7 +1804,7 @@ "zh-cht": ",{0}觀看", "hu": ", {0} nézi", "xloc": [ - "default.handlebars->47->1360", + "default.handlebars->47->1363", "sharing.handlebars->11->13" ] }, @@ -1919,9 +1917,9 @@ "xloc": [ "default-mobile.handlebars->11->346", "default-mobile.handlebars->11->686", - "default.handlebars->47->1498", - "default.handlebars->47->2384", - "default.handlebars->47->3050", + "default.handlebars->47->1505", + "default.handlebars->47->2412", + "default.handlebars->47->3078", "sharing.handlebars->11->50" ] }, @@ -2099,7 +2097,7 @@ "zh-cht": "1個活躍時段", "hu": "1 aktív munkamenet", "xloc": [ - "default.handlebars->47->2908" + "default.handlebars->47->2936" ] }, { @@ -2126,9 +2124,9 @@ "zh-cht": "1個位元組", "hu": "1 byte", "xloc": [ + "default-mobile.handlebars->11->1015", "default-mobile.handlebars->11->356", - "default-mobile.handlebars->11->987", - "default.handlebars->47->2408", + "default.handlebars->47->2436", "download.handlebars->3->1", "download2.handlebars->5->1", "sharing.handlebars->11->96" @@ -2185,7 +2183,7 @@ "zh-cht": "1位聯絡文", "hu": "1 csatlakozás", "xloc": [ - "default.handlebars->47->1362", + "default.handlebars->47->1365", "sharing.handlebars->11->15" ] }, @@ -2242,7 +2240,7 @@ "zh-cht": "1群", "hu": "1 csoport", "xloc": [ - "default.handlebars->47->2864" + "default.handlebars->47->2892" ] }, { @@ -2298,8 +2296,8 @@ "zh-cht": "1分鐘", "hu": "1 perc", "xloc": [ - "default.handlebars->47->1184", - "default.handlebars->47->1959" + "default.handlebars->47->1185", + "default.handlebars->47->1987" ] }, { @@ -2382,7 +2380,7 @@ "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "hu": "1 további felhasználó nem jelenik meg, használja a keresőmezőt a felhasználók kereséséhez...", "xloc": [ - "default.handlebars->47->2626" + "default.handlebars->47->2654" ] }, { @@ -2485,7 +2483,7 @@ "hu": "1 másodperc", "xloc": [ "default-mobile.handlebars->11->570", - "default.handlebars->47->1221" + "default.handlebars->47->1223" ] }, { @@ -2600,7 +2598,7 @@ "default-mobile.handlebars->11->425", "default-mobile.handlebars->11->429", "default-mobile.handlebars->11->433", - "default.handlebars->47->2630", + "default.handlebars->47->2658", "default.handlebars->47->444", "default.handlebars->47->447", "default.handlebars->47->451", @@ -2802,8 +2800,8 @@ "zh-cht": "10分鐘", "hu": "10 perc", "xloc": [ - "default.handlebars->47->1186", - "default.handlebars->47->1961" + "default.handlebars->47->1187", + "default.handlebars->47->1989" ] }, { @@ -2831,7 +2829,7 @@ "hu": "10 másodperc", "xloc": [ "default-mobile.handlebars->11->572", - "default.handlebars->47->1223" + "default.handlebars->47->1225" ] }, { @@ -3023,8 +3021,8 @@ "zh-cht": "12小時", "hu": "12 óra", "xloc": [ - "default.handlebars->47->1194", - "default.handlebars->47->1969" + "default.handlebars->47->1195", + "default.handlebars->47->1997" ] }, { @@ -3212,8 +3210,8 @@ "zh-cht": "15分鐘", "hu": "15 perc", "xloc": [ - "default.handlebars->47->1187", - "default.handlebars->47->1962" + "default.handlebars->47->1188", + "default.handlebars->47->1990" ] }, { @@ -3240,8 +3238,8 @@ "zh-cht": "16小時", "hu": "12 óra", "xloc": [ - "default.handlebars->47->1195", - "default.handlebars->47->1970" + "default.handlebars->47->1196", + "default.handlebars->47->1998" ] }, { @@ -3457,8 +3455,8 @@ "zh-cht": "2天", "hu": "2 nap", "xloc": [ - "default.handlebars->47->1197", - "default.handlebars->47->1972" + "default.handlebars->47->1198", + "default.handlebars->47->2000" ] }, { @@ -3485,8 +3483,8 @@ "zh-cht": "2小時", "hu": "2 óra", "xloc": [ - "default.handlebars->47->1191", - "default.handlebars->47->1966" + "default.handlebars->47->1192", + "default.handlebars->47->1994" ] }, { @@ -3679,8 +3677,8 @@ "zh-cht": "24小時", "hu": "24 óra", "xloc": [ - "default.handlebars->47->1196", - "default.handlebars->47->1971" + "default.handlebars->47->1197", + "default.handlebars->47->1999" ] }, { @@ -3760,7 +3758,7 @@ "zh-cht": "2FA備份代碼已清除", "hu": "2FA biztonsági kódok törölve", "xloc": [ - "default.handlebars->47->2521" + "default.handlebars->47->2549" ] }, { @@ -3815,7 +3813,7 @@ "zh-cht": "第二個因素", "hu": "2. faktor", "xloc": [ - "default.handlebars->47->3087" + "default.handlebars->47->3115" ] }, { @@ -3842,8 +3840,8 @@ "zh-cht": "啟用第二因素身份驗證", "hu": "2. faktoros hitelesítés engedélyezve", "xloc": [ - "default.handlebars->47->2644", - "default.handlebars->47->2889" + "default.handlebars->47->2672", + "default.handlebars->47->2917" ] }, { @@ -4003,8 +4001,8 @@ "zh-cht": "30分鐘", "hu": "30 perc", "xloc": [ - "default.handlebars->47->1188", - "default.handlebars->47->1963" + "default.handlebars->47->1189", + "default.handlebars->47->1991" ] }, { @@ -4032,7 +4030,7 @@ "hu": "32-bit", "xloc": [ "default-mobile.handlebars->11->723", - "default.handlebars->47->1554" + "default.handlebars->47->1564" ] }, { @@ -4115,8 +4113,8 @@ "zh-cht": "4天", "hu": "4 nap", "xloc": [ - "default.handlebars->47->1198", - "default.handlebars->47->1973" + "default.handlebars->47->1199", + "default.handlebars->47->2001" ] }, { @@ -4143,8 +4141,8 @@ "zh-cht": "4個小時", "hu": "4 óra", "xloc": [ - "default.handlebars->47->1192", - "default.handlebars->47->1967" + "default.handlebars->47->1193", + "default.handlebars->47->1995" ] }, { @@ -4282,8 +4280,8 @@ "zh-cht": "45分鐘", "hu": "45 perc", "xloc": [ - "default.handlebars->47->1189", - "default.handlebars->47->1964" + "default.handlebars->47->1190", + "default.handlebars->47->1992" ] }, { @@ -4337,8 +4335,8 @@ "zh-cht": "5分鐘", "hu": "5 perc", "xloc": [ - "default.handlebars->47->1185", - "default.handlebars->47->1960" + "default.handlebars->47->1186", + "default.handlebars->47->1988" ] }, { @@ -4366,7 +4364,7 @@ "hu": "5 másodperc", "xloc": [ "default-mobile.handlebars->11->571", - "default.handlebars->47->1222" + "default.handlebars->47->1224" ] }, { @@ -4534,8 +4532,8 @@ "zh-cht": "60分鐘", "hu": "60 perc", "xloc": [ - "default.handlebars->47->1190", - "default.handlebars->47->1965" + "default.handlebars->47->1191", + "default.handlebars->47->1993" ] }, { @@ -4619,7 +4617,7 @@ "hu": "64-bit", "xloc": [ "default-mobile.handlebars->11->725", - "default.handlebars->47->1556" + "default.handlebars->47->1566" ] }, { @@ -4802,7 +4800,7 @@ "zh-cht": "7天電源狀態", "hu": "7 napos energiaellátás állapota", "xloc": [ - "default.handlebars->47->1262" + "default.handlebars->47->1264" ] }, { @@ -4829,7 +4827,7 @@ "zh-cht": "7天", "hu": "7 nap", "xloc": [ - "default.handlebars->47->1974" + "default.handlebars->47->2002" ] }, { @@ -4913,8 +4911,8 @@ "zh-cht": "8小時", "hu": "8 óra", "xloc": [ - "default.handlebars->47->1193", - "default.handlebars->47->1968", + "default.handlebars->47->1194", + "default.handlebars->47->1996", "default.handlebars->47->554", "default.handlebars->47->568" ] @@ -5222,14 +5220,16 @@ { "en": "DNS Servers", "nl": "DNS Servers", + "pl": "Serwery DNS", "xloc": [ - "default-mobile.handlebars->11->785", - "default.handlebars->47->1599" + "default-mobile.handlebars->11->784", + "default.handlebars->47->1609" ] }, { "en": "
Perform batch device notification
", "nl": "
Perform batch device notification
", + "pl": "
Wykonaj wsadowo powiadomienie na maszynach
", "xloc": [ "default.handlebars->47->741" ] @@ -5237,6 +5237,7 @@ { "en": "OK", "nl": "OK", + "pl": "OK", "xloc": [ "default.handlebars->47->418", "default.handlebars->47->420", @@ -5246,6 +5247,7 @@ { "en": "BAD", "nl": "FOUT", + "pl": "NIEPOPRAWNY", "xloc": [ "default.handlebars->47->419", "default.handlebars->47->421", @@ -5282,6 +5284,7 @@ { "en": "", "nl": "", + "pl": "", "xloc": [ "default.handlebars->47->631" ] @@ -5289,6 +5292,7 @@ { "en": "", "nl": "", + "pl": "", "xloc": [ "default.handlebars->47->632" ] @@ -5369,7 +5373,7 @@ "hu": "ACM", "xloc": [ "default-mobile.handlebars->11->504", - "default.handlebars->47->2138", + "default.handlebars->47->2166", "default.handlebars->47->432", "default.handlebars->47->890" ] @@ -5452,12 +5456,16 @@ }, { "en": "AMT Host", + "nl": "AMT Host", + "pl": "Host AMT", "xloc": [ "default.handlebars->47->380" ] }, { "en": "AMT State", + "nl": "AMT status", + "pl": "Stan AMT", "xloc": [ "default.handlebars->47->381" ] @@ -5486,7 +5494,7 @@ "zh-cht": "AMT操作系統", "hu": "AMT-OS", "xloc": [ - "default.handlebars->47->3232" + "default.handlebars->47->3260" ] }, { @@ -5513,7 +5521,7 @@ "zh-cht": "AMT-Redir", "hu": "AMT-Redir", "xloc": [ - "default.handlebars->47->3094" + "default.handlebars->47->3122" ] }, { @@ -5540,7 +5548,7 @@ "zh-cht": "AMT-WSMAN", "hu": "AMT-WSMAN", "xloc": [ - "default.handlebars->47->3093" + "default.handlebars->47->3121" ] }, { @@ -5553,14 +5561,16 @@ { "en": "APK version of the MeshAgent", "nl": "APK versie van de MeshAgent", + "pl": "Wersja APK MeshAgent", "xloc": [ - "default-mobile.handlebars->11->896", + "default-mobile.handlebars->11->924", "default.handlebars->47->635" ] }, { "en": "ARM 64bit version of the MeshAgent", "nl": "ARM 64bit versie van de MeshAgent", + "pl": "Meshagent wersja ARM 64bit", "de": "ARM 64bit Version des MeshAgents", "xloc": [ "default.handlebars->47->616" @@ -5760,8 +5770,8 @@ "zh-cht": "拒絕存取", "hu": "Hozzáférés megtagadva", "xloc": [ - "default-mobile.handlebars->11->847", - "default.handlebars->47->1673" + "default-mobile.handlebars->11->875", + "default.handlebars->47->1701" ] }, { @@ -5844,7 +5854,7 @@ "zh-cht": "存取伺服器檔案", "hu": "Hozzáférés a kiszolgálófájlokhoz", "xloc": [ - "default.handlebars->47->2820" + "default.handlebars->47->2848" ] }, { @@ -5961,9 +5971,9 @@ "default-mobile.handlebars->11->471", "default-mobile.handlebars->11->473", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->47->2003", - "default.handlebars->47->2005", - "default.handlebars->47->3286", + "default.handlebars->47->2031", + "default.handlebars->47->2033", + "default.handlebars->47->3314", "default.handlebars->47->850", "default.handlebars->47->852" ] @@ -5992,8 +6002,8 @@ "zh-cht": "帳號設定", "hu": "Fiókbeállítások", "xloc": [ - "default-mobile.handlebars->11->954", - "default.handlebars->47->3157" + "default-mobile.handlebars->11->982", + "default.handlebars->47->3185" ] }, { @@ -6059,7 +6069,7 @@ "fr": "Compte modifié pour se synchroniser avec les données LDAP.", "hu": "Fiók megváltozott: LDAP-adatokkal való szinkronizálás.", "xloc": [ - "default.handlebars->47->2582" + "default.handlebars->47->2610" ] }, { @@ -6086,7 +6096,7 @@ "zh-cht": "帳戶已更改:{0}", "hu": "Fiók megváltozott: {0}", "xloc": [ - "default.handlebars->47->2494" + "default.handlebars->47->2522" ] }, { @@ -6113,7 +6123,7 @@ "zh-cht": "創建帳戶,電子郵件為{0}", "hu": "Fiók létrehozva, az e-mail címe {0} ", "xloc": [ - "default.handlebars->47->2493" + "default.handlebars->47->2521" ] }, { @@ -6140,7 +6150,7 @@ "zh-cht": "已創建帳戶,名稱為 {0}。", "hu": "Fiók létrehozva, név: {0}. ", "xloc": [ - "default.handlebars->47->2556" + "default.handlebars->47->2584" ] }, { @@ -6167,7 +6177,7 @@ "zh-cht": "帳戶已創建,用戶名是{0}", "hu": "Fiók létrehozva, felhasználónév {0} ", "xloc": [ - "default.handlebars->47->2492" + "default.handlebars->47->2520" ] }, { @@ -6196,8 +6206,8 @@ "xloc": [ "default-mobile.handlebars->11->66", "default.handlebars->47->210", - "default.handlebars->47->2646", - "default.handlebars->47->2817" + "default.handlebars->47->2674", + "default.handlebars->47->2845" ] }, { @@ -6224,8 +6234,8 @@ "zh-cht": "達到帳戶限制。", "hu": "Elérte a fiókkorlátot.", "xloc": [ - "default-mobile.handlebars->11->966", - "default.handlebars->47->3169", + "default-mobile.handlebars->11->994", + "default.handlebars->47->3197", "login-mobile.handlebars->5->6", "login.handlebars->5->8", "login2.handlebars->7->207" @@ -6284,7 +6294,7 @@ "zh-cht": "帳號登錄", "hu": "Bejelentkezés a fiókba", "xloc": [ - "default.handlebars->47->2429" + "default.handlebars->47->2457" ] }, { @@ -6311,7 +6321,7 @@ "zh-cht": "從 {0}、{1}、{2} 登錄帳戶", "hu": "Bejelentkezés a fiókba innen: {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2535" + "default.handlebars->47->2563" ] }, { @@ -6322,7 +6332,7 @@ "fr": "Enregistrements des jetons de connexion au compte", "hu": "Fiók bejelentkezési token rekordok", "xloc": [ - "default.handlebars->47->3136" + "default.handlebars->47->3164" ] }, { @@ -6349,7 +6359,7 @@ "zh-cht": "帳戶登出", "hu": "Fiók kijelentkezés", "xloc": [ - "default.handlebars->47->2430" + "default.handlebars->47->2458" ] }, { @@ -6405,7 +6415,7 @@ "zh-cht": "帳戶密碼已更改:{0}", "hu": "Fiók jelszava megváltozott: {0}", "xloc": [ - "default.handlebars->47->2502" + "default.handlebars->47->2530" ] }, { @@ -6432,7 +6442,7 @@ "zh-cht": "帳戶已刪除", "hu": "Fiók eltávolítva", "xloc": [ - "default.handlebars->47->2491" + "default.handlebars->47->2519" ] }, { @@ -6486,8 +6496,8 @@ "zh-cht": "指令", "hu": "Művelet", "xloc": [ - "default-mobile.handlebars->11->853", - "default.handlebars->47->1679", + "default-mobile.handlebars->11->881", + "default.handlebars->47->1707", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -6515,8 +6525,8 @@ "zh-cht": "動作檔案", "hu": "Művelet fájl", "xloc": [ - "default.handlebars->47->1309", - "default.handlebars->47->1311" + "default.handlebars->47->1311", + "default.handlebars->47->1313" ] }, { @@ -6658,7 +6668,7 @@ "zh-cht": "如果ACM失敗,則激活到CCM", "hu": "Aktiválja a CCM-et, ha az ACM meghiúsul", "xloc": [ - "default.handlebars->47->2193" + "default.handlebars->47->2221" ] }, { @@ -6687,8 +6697,8 @@ "xloc": [ "default-mobile.handlebars->11->499", "default-mobile.handlebars->11->501", - "default-mobile.handlebars->11->792", - "default.handlebars->47->1606", + "default-mobile.handlebars->11->791", + "default.handlebars->47->1616", "default.handlebars->47->883", "default.handlebars->47->885" ] @@ -6745,7 +6755,7 @@ "hu": "Atív eszközmegosztás", "xloc": [ "default.handlebars->47->1058", - "default.handlebars->47->2142" + "default.handlebars->47->2170" ] }, { @@ -6772,7 +6782,7 @@ "zh-cht": "活動登錄令牌", "hu": "Aktív bejelentkezési tokenek", "xloc": [ - "default.handlebars->47->2034" + "default.handlebars->47->2062" ] }, { @@ -6878,8 +6888,8 @@ "hu": "Hozzáadás", "xloc": [ "default-mobile.handlebars->11->649", - "default.handlebars->47->1398", - "default.handlebars->47->1403" + "default.handlebars->47->1401", + "default.handlebars->47->1406" ] }, { @@ -6954,7 +6964,7 @@ "zh-cht": "新增代理", "hu": "Agent hozzáadása", "xloc": [ - "default.handlebars->47->2132", + "default.handlebars->47->2160", "default.handlebars->47->485" ] }, @@ -7006,9 +7016,9 @@ "zh-cht": "新增裝置", "hu": "Eszköz hozzáadása", "xloc": [ - "default.handlebars->47->2136", - "default.handlebars->47->2792", - "default.handlebars->47->2986", + "default.handlebars->47->2164", + "default.handlebars->47->2820", + "default.handlebars->47->3014", "default.handlebars->47->489" ] }, @@ -7063,9 +7073,9 @@ "zh-cht": "新增裝置群", "hu": "Eszközcsoport hozzáadása", "xloc": [ - "default.handlebars->47->2279", - "default.handlebars->47->2786", - "default.handlebars->47->2974", + "default.handlebars->47->2307", + "default.handlebars->47->2814", + "default.handlebars->47->3002", "default.handlebars->47->385" ] }, @@ -7093,7 +7103,7 @@ "zh-cht": "新增裝置群權限", "hu": "Eszközcsoport engedélyek hozzáadása", "xloc": [ - "default.handlebars->47->2276" + "default.handlebars->47->2304" ] }, { @@ -7120,8 +7130,8 @@ "zh-cht": "新增裝置權限", "hu": "Eszköz engedélyek hozzáadása", "xloc": [ - "default.handlebars->47->2281", - "default.handlebars->47->2283" + "default.handlebars->47->2309", + "default.handlebars->47->2311" ] }, { @@ -7277,7 +7287,7 @@ "zh-cht": "新增成員身份", "hu": "Hozzáadás Felhasználói Csoporthoz", "xloc": [ - "default.handlebars->47->3006" + "default.handlebars->47->3034" ] }, { @@ -7355,8 +7365,8 @@ "zh-cht": "新增安全密鑰", "hu": "Biztonsági kulcs hozzáadása", "xloc": [ - "default.handlebars->47->1749", - "default.handlebars->47->1750", + "default.handlebars->47->1777", + "default.handlebars->47->1778", "default.handlebars->47->241", "default.handlebars->47->243", "default.handlebars->47->246", @@ -7387,7 +7397,7 @@ "zh-cht": "新增用戶", "hu": "Felhasználó hozzáadása", "xloc": [ - "default-mobile.handlebars->11->878", + "default-mobile.handlebars->11->906", "default.handlebars->47->1050" ] }, @@ -7415,7 +7425,7 @@ "zh-cht": "新增用戶裝置權限", "hu": "Felhasználói eszköz engedélyek hozzáadása", "xloc": [ - "default.handlebars->47->2286" + "default.handlebars->47->2314" ] }, { @@ -7443,9 +7453,9 @@ "hu": "Felhasználói csoport hozzáadása", "xloc": [ "default.handlebars->47->1051", - "default.handlebars->47->2126", - "default.handlebars->47->2278", - "default.handlebars->47->2980" + "default.handlebars->47->2154", + "default.handlebars->47->2306", + "default.handlebars->47->3008" ] }, { @@ -7472,7 +7482,7 @@ "zh-cht": "新增用戶群裝置權限", "hu": "Felhasználói csoport eszköz engedélyek hozzáadása", "xloc": [ - "default.handlebars->47->2288" + "default.handlebars->47->2316" ] }, { @@ -7499,7 +7509,7 @@ "zh-cht": "將用戶新增到裝置群", "hu": "Felhasználó hozzáadása az eszköz csoporthoz", "xloc": [ - "default-mobile.handlebars->11->919" + "default-mobile.handlebars->11->947" ] }, { @@ -7550,8 +7560,8 @@ "zh-cht": "新增用戶", "hu": "Felhasználók hozzáadása", "xloc": [ - "default.handlebars->47->2125", - "default.handlebars->47->2781" + "default.handlebars->47->2153", + "default.handlebars->47->2809" ] }, { @@ -7578,7 +7588,7 @@ "zh-cht": "將用戶新增到裝置群", "hu": "Felhasználók hozzáadása az eszköz csoporthoz", "xloc": [ - "default.handlebars->47->2275" + "default.handlebars->47->2303" ] }, { @@ -7605,7 +7615,7 @@ "zh-cht": "將用戶新增到用戶群", "hu": "Felhasználók hozzáadása az felhasználó csoporthoz", "xloc": [ - "default.handlebars->47->2816" + "default.handlebars->47->2844" ] }, { @@ -7791,7 +7801,7 @@ "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。", "hu": "Adjon hozzá egy új számítógépet ehhez az eszközcsoporthoz a Mesh Agent telepítésével.", "xloc": [ - "default.handlebars->47->2131", + "default.handlebars->47->2159", "default.handlebars->47->484" ] }, @@ -7819,7 +7829,7 @@ "zh-cht": "添加位於本地網絡上的設備。", "hu": "Helyi hálózaton található eszköz hozzáadása.", "xloc": [ - "default.handlebars->47->2135", + "default.handlebars->47->2163", "default.handlebars->47->488" ] }, @@ -7928,7 +7938,7 @@ "zh-cht": "添加了身份驗證應用程序", "hu": "Hitelesítési alkalmazás hozzáadva", "xloc": [ - "default.handlebars->47->2518" + "default.handlebars->47->2546" ] }, { @@ -7955,7 +7965,7 @@ "zh-cht": "已將設備共享{0}從{1}添加到{2}", "hu": "{0} eszközmegosztás hozzáadva {1} és {2} között", "xloc": [ - "default.handlebars->47->2529" + "default.handlebars->47->2557" ] }, { @@ -7982,7 +7992,7 @@ "zh-cht": "添加了每天重複的設備共享 {0}。", "hu": "Naponta ismétlődő {0} eszközmegosztás hozzáadva.", "xloc": [ - "default.handlebars->47->2566" + "default.handlebars->47->2594" ] }, { @@ -8009,7 +8019,7 @@ "zh-cht": "添加了每週重複的設備共享 {0}。", "hu": "Hetente ismétlődő {0} eszközmegosztás hozzáadva.", "xloc": [ - "default.handlebars->47->2567" + "default.handlebars->47->2595" ] }, { @@ -8036,7 +8046,7 @@ "zh-cht": "添加了無限時間的設備共享 {0}。", "hu": "{0} eszközmegosztás hozzáadva korlátlan ideig.", "xloc": [ - "default.handlebars->47->2559" + "default.handlebars->47->2587" ] }, { @@ -8063,8 +8073,8 @@ "zh-cht": "已將設備{0}添加到設備組{1}", "hu": "A(z) {0} eszköz hozzáadva a(z) {1} eszközcsoporthoz", "xloc": [ - "default.handlebars->47->2485", - "default.handlebars->47->2512" + "default.handlebars->47->2513", + "default.handlebars->47->2540" ] }, { @@ -8091,7 +8101,7 @@ "zh-cht": "添加了登錄令牌", "hu": "Bejelentkezési token hozzáadva", "xloc": [ - "default.handlebars->47->2543" + "default.handlebars->47->2571" ] }, { @@ -8118,7 +8128,7 @@ "zh-cht": "增加推送通知認證設備", "hu": "Push értesítési hitelesítő eszköz hozzáadva", "xloc": [ - "default.handlebars->47->2541" + "default.handlebars->47->2569" ] }, { @@ -8145,7 +8155,7 @@ "zh-cht": "添加了安全密鑰", "hu": "Biztonsági kulcs hozzáadva", "xloc": [ - "default.handlebars->47->2523" + "default.handlebars->47->2551" ] }, { @@ -8172,7 +8182,7 @@ "zh-cht": "已將用戶組{0}添加到設備組{1}", "hu": "{0} felhasználói csoport hozzáadva a(z) {1} eszközcsoporthoz", "xloc": [ - "default.handlebars->47->2496" + "default.handlebars->47->2524" ] }, { @@ -8199,8 +8209,8 @@ "zh-cht": "已將用戶{0}添加到用戶組{1}", "hu": "{0} felhasználó hozzáadva a(z) {1} felhasználói csoporthoz", "xloc": [ - "default.handlebars->47->2499", - "default.handlebars->47->2508" + "default.handlebars->47->2527", + "default.handlebars->47->2536" ] }, { @@ -8281,8 +8291,8 @@ "zh-cht": "管理員控制模式(ACM)", "hu": "Admin Control Mode (ACM)", "xloc": [ - "default-mobile.handlebars->11->794", - "default.handlebars->47->1608" + "default-mobile.handlebars->11->793", + "default.handlebars->47->1618" ] }, { @@ -8309,8 +8319,8 @@ "zh-cht": "管理員憑證", "hu": "Adminisztrátor Hitelesítő adatok", "xloc": [ - "default-mobile.handlebars->11->800", - "default.handlebars->47->1614" + "default-mobile.handlebars->11->799", + "default.handlebars->47->1624" ] }, { @@ -8365,7 +8375,7 @@ "zh-cht": "管理領域", "hu": "Adminisztratív Realms", "xloc": [ - "default.handlebars->47->2868" + "default.handlebars->47->2896" ] }, { @@ -8420,7 +8430,7 @@ "zh-cht": "管理領域", "hu": "Adminisztratív Realms", "xloc": [ - "default.handlebars->47->2713" + "default.handlebars->47->2741" ] }, { @@ -8447,7 +8457,7 @@ "zh-cht": "管理員", "hu": "Adminisztrátor", "xloc": [ - "default.handlebars->47->2638" + "default.handlebars->47->2666" ] }, { @@ -8475,7 +8485,7 @@ "hu": "afrikai", "xloc": [ "default-mobile.handlebars->11->104", - "default.handlebars->47->1752", + "default.handlebars->47->1780", "login2.handlebars->7->1" ] }, @@ -8507,9 +8517,9 @@ "default-mobile.handlebars->11->463", "default-mobile.handlebars->11->520", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", - "default.handlebars->47->2359", - "default.handlebars->47->2372", - "default.handlebars->47->3230", + "default.handlebars->47->2387", + "default.handlebars->47->2400", + "default.handlebars->47->3258", "default.handlebars->47->405", "default.handlebars->47->693", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", @@ -8540,8 +8550,8 @@ "zh-cht": "代理+Intel® AMT", "hu": "Agent + Intel® AMT", "xloc": [ - "default.handlebars->47->2361", - "default.handlebars->47->2374" + "default.handlebars->47->2389", + "default.handlebars->47->2402" ] }, { @@ -8596,8 +8606,8 @@ "zh-cht": "代理控制台", "hu": "Agent konzol", "xloc": [ - "default-mobile.handlebars->11->925", - "default.handlebars->47->2296", + "default-mobile.handlebars->11->953", + "default.handlebars->47->2324", "default.handlebars->47->781" ] }, @@ -8625,7 +8635,7 @@ "zh-cht": "代理錯誤計數器", "hu": "Agrnt hiba számlálók", "xloc": [ - "default.handlebars->47->3199" + "default.handlebars->47->3227" ] }, { @@ -8814,7 +8824,7 @@ "hu": "Agent Ön-Megosztás", "xloc": [ "default.handlebars->47->1079", - "default.handlebars->47->2163" + "default.handlebars->47->2191" ] }, { @@ -8841,7 +8851,7 @@ "zh-cht": "代理時段", "hu": "Agent munkamenetek", "xloc": [ - "default.handlebars->47->3215" + "default.handlebars->47->3243" ] }, { @@ -8948,7 +8958,7 @@ "zh-cht": "代理類型", "hu": "Agent típusok", "xloc": [ - "default.handlebars->47->2370", + "default.handlebars->47->2398", "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1" ] }, @@ -9004,7 +9014,7 @@ "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}", "hu": "Az Agent lezárta a munkamenetet {0}%-os ügynök-szerver-tömörítéssel. Elküldve: {1}, tömörítve: {2}", "xloc": [ - "default.handlebars->47->2482" + "default.handlebars->47->2510" ] }, { @@ -9213,8 +9223,8 @@ "zh-cht": "代理離線", "hu": "Offline Agent", "xloc": [ - "default-mobile.handlebars->11->845", - "default.handlebars->47->1671" + "default-mobile.handlebars->11->873", + "default.handlebars->47->1699" ] }, { @@ -9241,8 +9251,8 @@ "zh-cht": "代理在線", "hu": "Online Agent", "xloc": [ - "default-mobile.handlebars->11->844", - "default.handlebars->47->1670" + "default-mobile.handlebars->11->872", + "default.handlebars->47->1698" ] }, { @@ -9464,8 +9474,8 @@ "zh-cht": "代理", "hu": "Agent-ek", "xloc": [ - "default.handlebars->47->2327", - "default.handlebars->47->3243", + "default.handlebars->47->2355", + "default.handlebars->47->3271", "default.handlebars->47->573" ] }, @@ -9494,15 +9504,16 @@ "hu": "albán", "xloc": [ "default-mobile.handlebars->11->105", - "default.handlebars->47->1753", + "default.handlebars->47->1781", "login2.handlebars->7->2" ] }, { "en": "Alert Box", "nl": "Alert Box", + "pl": "Okno Powiadomienia", "xloc": [ - "default.handlebars->47->1161", + "default.handlebars->47->1162", "default.handlebars->47->744" ] }, @@ -9533,7 +9544,7 @@ "default-mobile.handlebars->11->355", "default-mobile.handlebars->11->687", "default-mobile.handlebars->11->689", - "default.handlebars->47->3063", + "default.handlebars->47->3091", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1" ] }, @@ -9561,7 +9572,7 @@ "zh-cht": "全部可用", "hu": "Összes elérhető", "xloc": [ - "default.handlebars->47->2600" + "default.handlebars->47->2628" ] }, { @@ -9588,7 +9599,7 @@ "zh-cht": "所有可用的代理", "hu": "Az összes rendelkezésre álló Agent", "xloc": [ - "default.handlebars->47->2328", + "default.handlebars->47->2356", "default.handlebars->47->574" ] }, @@ -9616,7 +9627,7 @@ "zh-cht": "所有顯示", "hu": "Összes Kijelző", "xloc": [ - "default.handlebars->47->1448" + "default.handlebars->47->1451" ] }, { @@ -9643,7 +9654,7 @@ "zh-cht": "所有事件", "hu": "Összes Esemény", "xloc": [ - "default.handlebars->47->2598" + "default.handlebars->47->2626" ] }, { @@ -9670,9 +9681,9 @@ "zh-cht": "全部聚焦", "hu": "Teljes Focus mode", "xloc": [ - "default.handlebars->47->1367", - "default.handlebars->47->1369", - "default.handlebars->47->1370" + "default.handlebars->47->1370", + "default.handlebars->47->1372", + "default.handlebars->47->1373" ] }, { @@ -9726,8 +9737,8 @@ "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "hu": "Engedélyezi a felhasználók számára az eszközcsoport és a csoportba tartozó eszközök kezelését.", "xloc": [ - "default.handlebars->47->2240", - "default.handlebars->47->2813" + "default.handlebars->47->2268", + "default.handlebars->47->2841" ] }, { @@ -9754,7 +9765,7 @@ "zh-cht": "允許用戶管理此裝置。", "hu": "Engedélyezze a felhasználóknak, hogy kezeljék ezt az eszközt.", "xloc": [ - "default.handlebars->47->2241" + "default.handlebars->47->2269" ] }, { @@ -9862,8 +9873,8 @@ "xloc": [ "default-mobile.handlebars->11->642", "default-mobile.handlebars->11->646", - "default.handlebars->47->1391", - "default.handlebars->47->1395" + "default.handlebars->47->1394", + "default.handlebars->47->1398" ] }, { @@ -9890,7 +9901,7 @@ "zh-cht": "替代Shell", "hu": "Alternatív Shell", "xloc": [ - "default.handlebars->47->1357" + "default.handlebars->47->1360" ] }, { @@ -9973,7 +9984,7 @@ "zh-cht": "備用(F10 = ESC + 0)", "hu": "Alternatív (F10 = ESC+0)", "xloc": [ - "default.handlebars->47->1482", + "default.handlebars->47->1485", "sharing.handlebars->11->37" ] }, @@ -10056,9 +10067,9 @@ "zh-cht": "一直通知", "hu": "Minden kapcsolat értesítés", "xloc": [ - "default.handlebars->47->2102", - "default.handlebars->47->2772", - "default.handlebars->47->2877", + "default.handlebars->47->2130", + "default.handlebars->47->2800", + "default.handlebars->47->2905", "default.handlebars->47->945" ] }, @@ -10086,9 +10097,9 @@ "zh-cht": "一直提示", "hu": "Minden kapcsolat engedélykérés", "xloc": [ - "default.handlebars->47->2103", - "default.handlebars->47->2773", - "default.handlebars->47->2878", + "default.handlebars->47->2131", + "default.handlebars->47->2801", + "default.handlebars->47->2906", "default.handlebars->47->946" ] }, @@ -10179,7 +10190,7 @@ "hu": "Ismeretlen hiba történt.", "de": "Ein unbekannter Fehler ist aufgetreten.", "xloc": [ - "default.handlebars->47->3015" + "default.handlebars->47->3043" ] }, { @@ -10237,7 +10248,7 @@ "zh-cht": "Android APK", "hu": "Android APK", "xloc": [ - "default-mobile.handlebars->11->897", + "default-mobile.handlebars->11->925", "default.handlebars->47->634" ] }, @@ -10319,7 +10330,7 @@ "zh-cht": "安卓安裝", "hu": "Android Telepítés", "xloc": [ - "default-mobile.handlebars->11->899" + "default-mobile.handlebars->11->927" ] }, { @@ -10381,8 +10392,8 @@ "zh-cht": "殺毒軟件未激活", "hu": "A vírusirtó nem aktív", "xloc": [ - "default.handlebars->47->2363", - "default.handlebars->47->2377" + "default.handlebars->47->2391", + "default.handlebars->47->2405" ] }, { @@ -10751,7 +10762,7 @@ "hu": "arab (Algéria)", "xloc": [ "default-mobile.handlebars->11->107", - "default.handlebars->47->1755", + "default.handlebars->47->1783", "login2.handlebars->7->4" ] }, @@ -10780,7 +10791,7 @@ "hu": "arab (Bahrein)", "xloc": [ "default-mobile.handlebars->11->108", - "default.handlebars->47->1756", + "default.handlebars->47->1784", "login2.handlebars->7->5" ] }, @@ -10809,7 +10820,7 @@ "hu": "arab (Egyiptom)", "xloc": [ "default-mobile.handlebars->11->109", - "default.handlebars->47->1757", + "default.handlebars->47->1785", "login2.handlebars->7->6" ] }, @@ -10838,7 +10849,7 @@ "hu": "arab (Irak)", "xloc": [ "default-mobile.handlebars->11->110", - "default.handlebars->47->1758", + "default.handlebars->47->1786", "login2.handlebars->7->7" ] }, @@ -10867,7 +10878,7 @@ "hu": "arab (Jordánia)", "xloc": [ "default-mobile.handlebars->11->111", - "default.handlebars->47->1759", + "default.handlebars->47->1787", "login2.handlebars->7->8" ] }, @@ -10896,7 +10907,7 @@ "hu": "arab (Kuvait)", "xloc": [ "default-mobile.handlebars->11->112", - "default.handlebars->47->1760", + "default.handlebars->47->1788", "login2.handlebars->7->9" ] }, @@ -10925,7 +10936,7 @@ "hu": "arab (Libanon)", "xloc": [ "default-mobile.handlebars->11->113", - "default.handlebars->47->1761", + "default.handlebars->47->1789", "login2.handlebars->7->10" ] }, @@ -10954,7 +10965,7 @@ "hu": "arab (Líbia)", "xloc": [ "default-mobile.handlebars->11->114", - "default.handlebars->47->1762", + "default.handlebars->47->1790", "login2.handlebars->7->11" ] }, @@ -10983,7 +10994,7 @@ "hu": "arab (Marokkó)", "xloc": [ "default-mobile.handlebars->11->115", - "default.handlebars->47->1763", + "default.handlebars->47->1791", "login2.handlebars->7->12" ] }, @@ -11012,7 +11023,7 @@ "hu": "arab (Omán)", "xloc": [ "default-mobile.handlebars->11->116", - "default.handlebars->47->1764", + "default.handlebars->47->1792", "login2.handlebars->7->13" ] }, @@ -11041,7 +11052,7 @@ "hu": "arab (Katar)", "xloc": [ "default-mobile.handlebars->11->117", - "default.handlebars->47->1765", + "default.handlebars->47->1793", "login2.handlebars->7->14" ] }, @@ -11070,7 +11081,7 @@ "hu": "arab (Szaúd-Arábia)", "xloc": [ "default-mobile.handlebars->11->118", - "default.handlebars->47->1766", + "default.handlebars->47->1794", "login2.handlebars->7->15" ] }, @@ -11099,7 +11110,7 @@ "hu": "arab", "xloc": [ "default-mobile.handlebars->11->106", - "default.handlebars->47->1754", + "default.handlebars->47->1782", "login2.handlebars->7->3" ] }, @@ -11128,7 +11139,7 @@ "hu": "arab (Szíria)", "xloc": [ "default-mobile.handlebars->11->119", - "default.handlebars->47->1767", + "default.handlebars->47->1795", "login2.handlebars->7->16" ] }, @@ -11157,7 +11168,7 @@ "hu": "arab (Tunézia)", "xloc": [ "default-mobile.handlebars->11->120", - "default.handlebars->47->1768", + "default.handlebars->47->1796", "login2.handlebars->7->17" ] }, @@ -11186,7 +11197,7 @@ "hu": "arab (Egyesült Arab Emírségek)", "xloc": [ "default-mobile.handlebars->11->121", - "default.handlebars->47->1769", + "default.handlebars->47->1797", "login2.handlebars->7->18" ] }, @@ -11215,7 +11226,7 @@ "hu": "arab (Jemen)", "xloc": [ "default-mobile.handlebars->11->122", - "default.handlebars->47->1770", + "default.handlebars->47->1798", "login2.handlebars->7->19" ] }, @@ -11244,7 +11255,7 @@ "hu": "aragóniai", "xloc": [ "default-mobile.handlebars->11->123", - "default.handlebars->47->1771", + "default.handlebars->47->1799", "login2.handlebars->7->20" ] }, @@ -11275,9 +11286,9 @@ "default-mobile.handlebars->11->722", "default-mobile.handlebars->11->724", "default-mobile.handlebars->11->726", - "default.handlebars->47->1553", - "default.handlebars->47->1555", - "default.handlebars->47->1557" + "default.handlebars->47->1563", + "default.handlebars->47->1565", + "default.handlebars->47->1567" ] }, { @@ -11331,8 +11342,8 @@ "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。", "hu": "Biztos, hogy törölni szeretné a {0} csoportot? Az eszközcsoport törlése a csoportba tartozó eszközökre vonatkozó összes információt is törli.", "xloc": [ - "default-mobile.handlebars->11->885", - "default.handlebars->47->2207" + "default-mobile.handlebars->11->913", + "default.handlebars->47->2235" ] }, { @@ -11359,7 +11370,7 @@ "zh-cht": "你確定要刪除節點{0}嗎?", "hu": "Biztos, hogy törölni akarja a {0} node-ot?", "xloc": [ - "default.handlebars->47->1284" + "default.handlebars->47->1286" ] }, { @@ -11386,7 +11397,7 @@ "zh-cht": "你確定要卸載所選代理嗎?", "hu": "Biztos, hogy eltávolítja a kiválasztott Agentet?", "xloc": [ - "default.handlebars->47->1273" + "default.handlebars->47->1275" ] }, { @@ -11413,7 +11424,7 @@ "zh-cht": "你確定要卸載所選的{0}代理嗎?", "hu": "Biztos, hogy eltávolítja a(z) {0} Agentet?", "xloc": [ - "default.handlebars->47->1272" + "default.handlebars->47->1274" ] }, { @@ -11440,7 +11451,7 @@ "zh-cht": "你確定要{0}外掛嗎:{1}", "hu": "Biztosm, hogy {0} szeretné használni a következő beépülő modult: {1}", "xloc": [ - "default.handlebars->47->3295" + "default.handlebars->47->3323" ] }, { @@ -11496,7 +11507,7 @@ "hu": "örmény", "xloc": [ "default-mobile.handlebars->11->124", - "default.handlebars->47->1772", + "default.handlebars->47->1800", "login2.handlebars->7->21" ] }, @@ -11688,7 +11699,7 @@ "hu": "asszámi", "xloc": [ "default-mobile.handlebars->11->125", - "default.handlebars->47->1773", + "default.handlebars->47->1801", "login2.handlebars->7->22" ] }, @@ -11852,7 +11863,7 @@ "hu": "asztúriai", "xloc": [ "default-mobile.handlebars->11->126", - "default.handlebars->47->1774", + "default.handlebars->47->1802", "login2.handlebars->7->23" ] }, @@ -11880,7 +11891,7 @@ "zh-cht": "嘗試激活英特爾(R)AMT ACM模式", "hu": "Intel(R) AMT ACM üzemmód aktiválásának kísérlete", "xloc": [ - "default.handlebars->47->2451" + "default.handlebars->47->2479" ] }, { @@ -11934,9 +11945,9 @@ "default-mobile.handlebars->11->658", "default-mobile.handlebars->11->662", "default-mobile.handlebars->11->674", - "default.handlebars->47->1457", - "default.handlebars->47->1461", - "default.handlebars->47->1473", + "default.handlebars->47->1460", + "default.handlebars->47->1464", + "default.handlebars->47->1476", "ssh.handlebars->3->21", "ssh.handlebars->3->22", "ssh.handlebars->3->5", @@ -11967,7 +11978,7 @@ "zh-cht": "認證軟體", "hu": "Hitelesítő alkalmazás beállítva", "xloc": [ - "default.handlebars->47->2881" + "default.handlebars->47->2909" ] }, { @@ -11994,9 +12005,9 @@ "zh-cht": "認證設備", "hu": "Hitelesítési eszköz", "xloc": [ - "default.handlebars->47->1735", - "default.handlebars->47->1737", - "default.handlebars->47->1741" + "default.handlebars->47->1763", + "default.handlebars->47->1765", + "default.handlebars->47->1769" ] }, { @@ -12025,8 +12036,8 @@ "xloc": [ "default-mobile.handlebars->11->675", "default-mobile.handlebars->11->681", - "default.handlebars->47->1475", - "default.handlebars->47->1490" + "default.handlebars->47->1478", + "default.handlebars->47->1493" ] }, { @@ -12057,8 +12068,8 @@ "default-mobile.handlebars->11->311", "default-mobile.handlebars->11->70", "default-mobile.handlebars->11->73", - "default.handlebars->47->1731", - "default.handlebars->47->1733", + "default.handlebars->47->1759", + "default.handlebars->47->1761", "default.handlebars->47->216", "default.handlebars->47->221" ] @@ -12195,8 +12206,8 @@ "zh-cht": "自動刪除", "hu": "Automatikus eltávolítás", "xloc": [ - "default.handlebars->47->2087", - "default.handlebars->47->2591" + "default.handlebars->47->2115", + "default.handlebars->47->2619" ] }, { @@ -12254,7 +12265,7 @@ "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”", "hu": "Agent core dump fájl automatikus letöltése: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2532" + "default.handlebars->47->2560" ] }, { @@ -12360,7 +12371,7 @@ "zh-cht": "自動移除非活動設備", "hu": "Az inaktív eszközök automatikus eltávolítása", "xloc": [ - "default.handlebars->47->2235" + "default.handlebars->47->2263" ] }, { @@ -12387,7 +12398,7 @@ "zh-cht": "可用內存", "hu": "Elérhető memória", "xloc": [ - "default.handlebars->47->3224" + "default.handlebars->47->3252" ] }, { @@ -12415,7 +12426,7 @@ "hu": "azerbajdzsáni", "xloc": [ "default-mobile.handlebars->11->127", - "default.handlebars->47->1775", + "default.handlebars->47->1803", "login2.handlebars->7->24" ] }, @@ -12475,8 +12486,8 @@ "zh-cht": "的BIOS", "hu": "BIOS", "xloc": [ - "default-mobile.handlebars->11->809", - "default.handlebars->47->1623" + "default-mobile.handlebars->11->808", + "default.handlebars->47->1633" ] }, { @@ -12594,7 +12605,7 @@ "hu": "BackSpace", "xloc": [ "default-mobile.handlebars->11->623", - "default.handlebars->47->1373" + "default.handlebars->47->1376" ] }, { @@ -12621,7 +12632,7 @@ "zh-cht": "背景與互動", "hu": "Háttérben és interaktív módon", "xloc": [ - "agentinvite.handlebars->3->7", + "agentinvite.handlebars->3->8", "default.handlebars->47->597" ] }, @@ -12649,8 +12660,8 @@ "zh-cht": "背景與互動", "hu": "Háttérben és interaktív módon", "xloc": [ - "default.handlebars->47->2334", - "default.handlebars->47->2341", + "default.handlebars->47->2362", + "default.handlebars->47->2369", "default.handlebars->47->560", "default.handlebars->47->581" ] @@ -12679,9 +12690,9 @@ "zh-cht": "僅背景", "hu": "Csak háttérben", "xloc": [ - "agentinvite.handlebars->3->8", - "default.handlebars->47->2335", - "default.handlebars->47->2342", + "agentinvite.handlebars->3->9", + "default.handlebars->47->2363", + "default.handlebars->47->2370", "default.handlebars->47->561", "default.handlebars->47->582", "default.handlebars->47->598" @@ -12739,8 +12750,8 @@ "zh-cht": "備用碼", "hu": "Biztonsági kódok generálva", "xloc": [ - "default.handlebars->47->2884", - "default.handlebars->47->3111" + "default.handlebars->47->2912", + "default.handlebars->47->3139" ] }, { @@ -12822,7 +12833,7 @@ "zh-cht": "錯誤的簽名", "hu": "Rossz aláírás", "xloc": [ - "default.handlebars->47->3206" + "default.handlebars->47->3234" ] }, { @@ -12849,7 +12860,7 @@ "zh-cht": "錯誤的網絡憑證", "hu": "Rossz web tanúsítvány", "xloc": [ - "default.handlebars->47->3205" + "default.handlebars->47->3233" ] }, { @@ -12877,7 +12888,7 @@ "hu": "baszk", "xloc": [ "default-mobile.handlebars->11->128", - "default.handlebars->47->1776", + "default.handlebars->47->1804", "login2.handlebars->7->25" ] }, @@ -12959,7 +12970,7 @@ "zh-cht": "將{0}個文件批量上傳到文件夾{1}", "hu": "{0} fájl kötegelt feltöltése a(z) {1} mappába", "xloc": [ - "default.handlebars->47->2531" + "default.handlebars->47->2559" ] }, { @@ -12987,7 +12998,7 @@ "hu": "fehérorosz", "xloc": [ "default-mobile.handlebars->11->130", - "default.handlebars->47->1778", + "default.handlebars->47->1806", "login2.handlebars->7->27" ] }, @@ -13016,7 +13027,7 @@ "hu": "bengáli", "xloc": [ "default-mobile.handlebars->11->131", - "default.handlebars->47->1779", + "default.handlebars->47->1807", "login2.handlebars->7->28" ] }, @@ -13078,14 +13089,17 @@ "en": "BitLocker", "nl": "BitLocker", "xloc": [ - "default-mobile.handlebars->11->756", - "default.handlebars->47->1661" + "default-mobile.handlebars->11->864", + "default.handlebars->47->1689" ] }, { "en": "BitLocker Information", + "nl": "BitLocker informatie", + "pl": "Informacje o BitLocker", "xloc": [ - "default.handlebars->47->1668" + "default-mobile.handlebars->11->871", + "default.handlebars->47->1696" ] }, { @@ -13112,8 +13126,8 @@ "zh-cht": "引導加載程序", "hu": "Rendszerbetöltő", "xloc": [ - "default-mobile.handlebars->11->769", - "default.handlebars->47->1573" + "default-mobile.handlebars->11->768", + "default.handlebars->47->1583" ] }, { @@ -13141,7 +13155,7 @@ "hu": "bosznia", "xloc": [ "default-mobile.handlebars->11->132", - "default.handlebars->47->1780", + "default.handlebars->47->1808", "login2.handlebars->7->29" ] }, @@ -13170,7 +13184,7 @@ "hu": "breton", "xloc": [ "default-mobile.handlebars->11->133", - "default.handlebars->47->1781", + "default.handlebars->47->1809", "login2.handlebars->7->30" ] }, @@ -13198,7 +13212,7 @@ "zh-cht": "廣播", "hu": "Broadcast üzenet...", "xloc": [ - "default.handlebars->47->2779", + "default.handlebars->47->2807", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -13226,7 +13240,7 @@ "zh-cht": "廣播消息", "hu": "Broadcast üzenet", "xloc": [ - "default.handlebars->47->2695" + "default.handlebars->47->2723" ] }, { @@ -13253,7 +13267,7 @@ "zh-cht": "向所有連接的用戶廣播消息。", "hu": "Üzenet küldése az összes csatlakoztatott felhasználónak.", "xloc": [ - "default.handlebars->47->2690" + "default.handlebars->47->2718" ] }, { @@ -13280,7 +13294,7 @@ "zh-cht": "瀏覽器", "hu": "Böngésző", "xloc": [ - "default.handlebars->47->3085" + "default.handlebars->47->3113" ] }, { @@ -13363,7 +13377,7 @@ "hu": "bolgár", "xloc": [ "default-mobile.handlebars->11->129", - "default.handlebars->47->1777", + "default.handlebars->47->1805", "login2.handlebars->7->26" ] }, @@ -13392,7 +13406,7 @@ "hu": "burmai", "xloc": [ "default-mobile.handlebars->11->134", - "default.handlebars->47->1782", + "default.handlebars->47->1810", "login2.handlebars->7->31" ] }, @@ -13420,7 +13434,7 @@ "zh-cht": "默認情況下,非活動設備將在 1 天后移除。", "hu": "Alapértelmezés szerint az inaktív eszközök 1 nap után eltávolításra kerülnek.", "xloc": [ - "default.handlebars->47->2237" + "default.handlebars->47->2265" ] }, { @@ -13447,12 +13461,13 @@ "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。", "hu": "Alapértelmezés szerint az inaktív eszközök {0} nap után eltávolításra kerülnek.", "xloc": [ - "default.handlebars->47->2238" + "default.handlebars->47->2266" ] }, { "en": "Bytes", "nl": "Bytes", + "pl": "Bajty", "xloc": [ "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown", "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown->3" @@ -13482,7 +13497,7 @@ "zh-cht": "字節輸入", "hu": "Fogadott Byte-ok", "xloc": [ - "default.handlebars->47->3081" + "default.handlebars->47->3109" ] }, { @@ -13509,7 +13524,7 @@ "zh-cht": "字節輸出", "hu": "Küldött Byte-ok", "xloc": [ - "default.handlebars->47->3082" + "default.handlebars->47->3110" ] }, { @@ -13606,7 +13621,15 @@ "zh-cht": "CCM模式", "hu": "CCM mode", "xloc": [ - "default.handlebars->47->2190" + "default.handlebars->47->2218" + ] + }, + { + "en": "CD-ROM", + "nl": "CD-ROM", + "xloc": [ + "default-mobile.handlebars->11->857", + "default.handlebars->47->1682" ] }, { @@ -13634,7 +13657,7 @@ "hu": "CIRA", "xloc": [ "default-mobile.handlebars->11->464", - "default.handlebars->47->3231", + "default.handlebars->47->3259", "default.handlebars->47->407", "default.handlebars->47->695" ] @@ -13663,7 +13686,7 @@ "zh-cht": "CIRA伺服器", "hu": "CIRA Kiszolgáló", "xloc": [ - "default.handlebars->47->3279" + "default.handlebars->47->3307" ] }, { @@ -13690,7 +13713,7 @@ "zh-cht": "CIRA伺服器指令", "hu": "CIRA kiszolgáló parancsok", "xloc": [ - "default.handlebars->47->3280" + "default.handlebars->47->3308" ] }, { @@ -13744,7 +13767,7 @@ "zh-cht": "CIRA設置", "hu": "CIRA beállítás", "xloc": [ - "default.handlebars->47->2198" + "default.handlebars->47->2226" ] }, { @@ -13771,9 +13794,10 @@ "zh-cht": "CPU", "hu": "CPU", "xloc": [ - "default-mobile.handlebars->11->815", - "default.handlebars->47->1629", - "default.handlebars->47->3255", + "default-mobile.handlebars->11->814", + "default.handlebars->47->1559", + "default.handlebars->47->1639", + "default.handlebars->47->3283", "default.handlebars->container->column_l->p40->3->1->p40type->5" ] }, @@ -13801,7 +13825,7 @@ "zh-cht": "CPU負載", "hu": "CPU terhelés", "xloc": [ - "default.handlebars->47->3220" + "default.handlebars->47->3248" ] }, { @@ -13828,7 +13852,7 @@ "zh-cht": "最近15分鐘的CPU負載", "hu": "CPU terhelés az elmúlt 15 percben", "xloc": [ - "default.handlebars->47->3223" + "default.handlebars->47->3251" ] }, { @@ -13855,7 +13879,7 @@ "zh-cht": "最近5分鐘的CPU負載", "hu": "CPU terhelés az elmúlt 5 percben", "xloc": [ - "default.handlebars->47->3222" + "default.handlebars->47->3250" ] }, { @@ -13882,7 +13906,7 @@ "zh-cht": "最近一分鐘的CPU負載", "hu": "CPU terhelés az utolsó percben", "xloc": [ - "default.handlebars->47->3221" + "default.handlebars->47->3249" ] }, { @@ -13909,8 +13933,8 @@ "zh-cht": "CR+LF", "hu": "CR+LF", "xloc": [ - "default.handlebars->47->1453", - "default.handlebars->47->1484", + "default.handlebars->47->1456", + "default.handlebars->47->1487", "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons", "sharing.handlebars->11->25", "sharing.handlebars->11->39", @@ -13941,7 +13965,7 @@ "zh-cht": "CSV", "hu": "CSV", "xloc": [ - "default.handlebars->47->2608" + "default.handlebars->47->2636" ] }, { @@ -13968,8 +13992,8 @@ "zh-cht": "CSV格式", "hu": "CSV Formátum", "xloc": [ - "default.handlebars->47->2612", - "default.handlebars->47->2682", + "default.handlebars->47->2640", + "default.handlebars->47->2710", "default.handlebars->47->766" ] }, @@ -14021,7 +14045,7 @@ "zh-cht": "呼叫錯誤", "hu": "Hívás hiba", "xloc": [ - "default.handlebars->47->3296" + "default.handlebars->47->3324" ] }, { @@ -14031,8 +14055,8 @@ "nl": "CallMeBot", "pl": "CallMeBot", "xloc": [ - "default.handlebars->47->1704", - "default.handlebars->47->2919" + "default.handlebars->47->1732", + "default.handlebars->47->2947" ] }, { @@ -14089,8 +14113,8 @@ "agent-translations.json", "default-mobile.handlebars->11->320", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->47->2054", - "default.handlebars->47->3285", + "default.handlebars->47->2082", + "default.handlebars->47->3313", "default.handlebars->47->533", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -14201,15 +14225,18 @@ "zh-cht": "容量", "hu": "Kapacitás", "xloc": [ - "default-mobile.handlebars->11->827", - "default-mobile.handlebars->11->833", + "default-mobile.handlebars->11->832", "default-mobile.handlebars->11->838", - "default-mobile.handlebars->11->840", - "default.handlebars->47->1641", - "default.handlebars->47->1647", - "default.handlebars->47->1652", - "default.handlebars->47->1654", - "default.handlebars->47->1657" + "default-mobile.handlebars->11->844", + "default-mobile.handlebars->11->849", + "default-mobile.handlebars->11->851", + "default-mobile.handlebars->11->854", + "default.handlebars->47->1657", + "default.handlebars->47->1663", + "default.handlebars->47->1669", + "default.handlebars->47->1674", + "default.handlebars->47->1676", + "default.handlebars->47->1679" ] }, { @@ -14236,10 +14263,20 @@ "zh-cht": "容量/速度", "hu": "Kapacitás / Sebesség", "xloc": [ - "default-mobile.handlebars->11->825", - "default-mobile.handlebars->11->831", - "default.handlebars->47->1639", - "default.handlebars->47->1645" + "default-mobile.handlebars->11->830", + "default-mobile.handlebars->11->836", + "default-mobile.handlebars->11->842", + "default.handlebars->47->1655", + "default.handlebars->47->1661", + "default.handlebars->47->1667" + ] + }, + { + "en": "Capacity Remaining", + "nl": "Resterende capaciteit", + "xloc": [ + "default-mobile.handlebars->11->855", + "default.handlebars->47->1680" ] }, { @@ -14267,7 +14304,7 @@ "hu": "katalán", "xloc": [ "default-mobile.handlebars->11->135", - "default.handlebars->47->1783", + "default.handlebars->47->1811", "login2.handlebars->7->32" ] }, @@ -14376,7 +14413,7 @@ "hu": "chamorro", "xloc": [ "default-mobile.handlebars->11->136", - "default.handlebars->47->1784", + "default.handlebars->47->1812", "login2.handlebars->7->33" ] }, @@ -14433,7 +14470,7 @@ "zh-cht": "更改{0}的電郵", "hu": "{0} e-mail-címének módosítása", "xloc": [ - "default.handlebars->47->2961" + "default.handlebars->47->2989" ] }, { @@ -14461,8 +14498,8 @@ "hu": "Csoport módosítása", "xloc": [ "default.handlebars->47->1003", - "default.handlebars->47->1281", - "default.handlebars->47->1282" + "default.handlebars->47->1283", + "default.handlebars->47->1284" ] }, { @@ -14490,8 +14527,8 @@ "hu": "Jelszó módosítása", "xloc": [ "default-mobile.handlebars->11->328", - "default.handlebars->47->2000", - "default.handlebars->47->2905" + "default.handlebars->47->2028", + "default.handlebars->47->2933" ] }, { @@ -14518,7 +14555,7 @@ "zh-cht": "更改{0}的密碼", "hu": "Jelszó módosítása: {0}", "xloc": [ - "default.handlebars->47->2970" + "default.handlebars->47->2998" ] }, { @@ -14545,7 +14582,7 @@ "zh-cht": "更改{0}的真實名稱", "hu": "{0} felhasználó teljes nevének módosítása", "xloc": [ - "default.handlebars->47->2956" + "default.handlebars->47->2984" ] }, { @@ -14706,7 +14743,7 @@ "zh-cht": "更改該用戶的密碼", "hu": "A felhasználó jelszavának módosítása", "xloc": [ - "default.handlebars->47->2904" + "default.handlebars->47->2932" ] }, { @@ -14760,7 +14797,7 @@ "zh-cht": "在此處更改你的帳戶電郵地址。", "hu": "Itt módosíthatja fiókja e-mail címét.", "xloc": [ - "default.handlebars->47->1987" + "default.handlebars->47->2015" ] }, { @@ -14787,7 +14824,7 @@ "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "hu": "Módosítsa fiókja jelszavát a jelenlegi és az új jelszó kétszeri beírásával az alábbi mezőkbe.", "xloc": [ - "default.handlebars->47->1993" + "default.handlebars->47->2021" ] }, { @@ -14814,7 +14851,7 @@ "zh-cht": "帳戶憑證已更改", "hu": "A fiók hitelesítő adatai megváltoztak", "xloc": [ - "default.handlebars->47->2503" + "default.handlebars->47->2531" ] }, { @@ -14841,7 +14878,7 @@ "zh-cht": "將帳戶顯示名稱更改為 {0}。", "hu": "A fiók megjelenített neve {0}-re változott.", "xloc": [ - "default.handlebars->47->2555" + "default.handlebars->47->2583" ] }, { @@ -14868,8 +14905,8 @@ "zh-cht": "{1}組中的設備{0}已更改:{2}", "hu": "{0} eszközt a {1} csoportból áthelyezésre került {2} csoportba", "xloc": [ - "default.handlebars->47->2487", - "default.handlebars->47->2568" + "default.handlebars->47->2515", + "default.handlebars->47->2596" ] }, { @@ -14896,7 +14933,7 @@ "zh-cht": "語言從{1}更改為{2}", "hu": "A nyelv megváltozott. régi nyelv: {1}, új nyelv: {2}", "xloc": [ - "default.handlebars->47->2431" + "default.handlebars->47->2459" ] }, { @@ -14923,8 +14960,8 @@ "zh-cht": "已更改{0}的用戶設備權限", "hu": "Módosult a(z) {0} felhasználói eszközjogai", "xloc": [ - "default.handlebars->47->2489", - "default.handlebars->47->2510" + "default.handlebars->47->2517", + "default.handlebars->47->2538" ] }, { @@ -14976,7 +15013,7 @@ "hu": "A nyelv megváltoztatásához az oldal frissítése szükséges!", "xloc": [ "default-mobile.handlebars->11->303", - "default.handlebars->47->1951" + "default.handlebars->47->1979" ] }, { @@ -15005,9 +15042,9 @@ "xloc": [ "default.handlebars->47->1111", "default.handlebars->47->1136", - "default.handlebars->47->2629", - "default.handlebars->47->2900", - "default.handlebars->47->2901", + "default.handlebars->47->2657", + "default.handlebars->47->2928", + "default.handlebars->47->2929", "default.handlebars->47->992" ] }, @@ -15035,10 +15072,10 @@ "zh-cht": "聊天並通知", "hu": "Csevegés és Értesítés", "xloc": [ - "default-mobile.handlebars->11->915", - "default-mobile.handlebars->11->935", - "default.handlebars->47->2269", - "default.handlebars->47->2307" + "default-mobile.handlebars->11->943", + "default-mobile.handlebars->11->963", + "default.handlebars->47->2297", + "default.handlebars->47->2335" ] }, { @@ -15065,8 +15102,8 @@ "zh-cht": "聊天請求,點擊這裡接受。", "hu": "Csevegés kezdeményezés, kattintson ide az elfogadáshoz.", "xloc": [ - "default-mobile.handlebars->11->967", - "default.handlebars->47->3170" + "default-mobile.handlebars->11->995", + "default.handlebars->47->3198" ] }, { @@ -15121,7 +15158,7 @@ "hu": "csecsen", "xloc": [ "default-mobile.handlebars->11->137", - "default.handlebars->47->1785", + "default.handlebars->47->1813", "login2.handlebars->7->34" ] }, @@ -15269,8 +15306,8 @@ "zh-cht": "檢查...", "hu": "Ellenőrzés...", "xloc": [ - "default.handlebars->47->1751", - "default.handlebars->47->3290" + "default.handlebars->47->1779", + "default.handlebars->47->3318" ] }, { @@ -15298,7 +15335,7 @@ "hu": "kínai", "xloc": [ "default-mobile.handlebars->11->138", - "default.handlebars->47->1786", + "default.handlebars->47->1814", "login2.handlebars->7->35" ] }, @@ -15327,7 +15364,7 @@ "hu": "kínai (Hongkong)", "xloc": [ "default-mobile.handlebars->11->139", - "default.handlebars->47->1787", + "default.handlebars->47->1815", "login2.handlebars->7->36" ] }, @@ -15356,7 +15393,7 @@ "hu": "kínai (Kínai Népköztársaság)", "xloc": [ "default-mobile.handlebars->11->140", - "default.handlebars->47->1788", + "default.handlebars->47->1816", "login2.handlebars->7->37" ] }, @@ -15385,7 +15422,7 @@ "hu": "kínai (egyszerűsített)", "xloc": [ "default-mobile.handlebars->11->300", - "default.handlebars->47->1948", + "default.handlebars->47->1976", "login2.handlebars->7->197" ] }, @@ -15414,7 +15451,7 @@ "hu": "kínai (Szingapúr)", "xloc": [ "default-mobile.handlebars->11->141", - "default.handlebars->47->1789", + "default.handlebars->47->1817", "login2.handlebars->7->38" ] }, @@ -15443,7 +15480,7 @@ "hu": "kínai (Tajvan)", "xloc": [ "default-mobile.handlebars->11->142", - "default.handlebars->47->1790", + "default.handlebars->47->1818", "login2.handlebars->7->39" ] }, @@ -15472,7 +15509,7 @@ "hu": "kínai (hagyományos)", "xloc": [ "default-mobile.handlebars->11->301", - "default.handlebars->47->1949", + "default.handlebars->47->1977", "login2.handlebars->7->198" ] }, @@ -15529,7 +15566,7 @@ "hu": "csuvas", "xloc": [ "default-mobile.handlebars->11->143", - "default.handlebars->47->1791", + "default.handlebars->47->1819", "login2.handlebars->7->40" ] }, @@ -15588,11 +15625,11 @@ "default-mobile.handlebars->11->712", "default-mobile.handlebars->11->80", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5", - "default.handlebars->47->1527", - "default.handlebars->47->1529", - "default.handlebars->47->1531", - "default.handlebars->47->1533", - "default.handlebars->47->2425", + "default.handlebars->47->1535", + "default.handlebars->47->1537", + "default.handlebars->47->1539", + "default.handlebars->47->1541", + "default.handlebars->47->2453", "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", @@ -15627,7 +15664,7 @@ "hu": "RDP hitelesítő adatok törlése?", "xloc": [ "default-mobile.handlebars->11->608", - "default.handlebars->47->1327" + "default.handlebars->47->1329" ] }, { @@ -15655,7 +15692,7 @@ "hu": "SSH hitelesítő adatok törlése?", "xloc": [ "default-mobile.handlebars->11->606", - "default.handlebars->47->1325" + "default.handlebars->47->1327" ] }, { @@ -15764,8 +15801,8 @@ "zh-cht": "全部清除", "hu": "Összes törlése", "xloc": [ - "default-mobile.handlebars->11->950", - "default.handlebars->47->3153" + "default-mobile.handlebars->11->978", + "default.handlebars->47->3181" ] }, { @@ -15820,8 +15857,8 @@ "zh-cht": "清除核心", "hu": "Core törlése", "xloc": [ - "default-mobile.handlebars->11->855", - "default.handlebars->47->1681" + "default-mobile.handlebars->11->883", + "default.handlebars->47->1709" ] }, { @@ -15875,8 +15912,8 @@ "zh-cht": "清除此通知", "hu": "Törölje ezt az értesítést", "xloc": [ - "default-mobile.handlebars->11->949", - "default.handlebars->47->3152" + "default-mobile.handlebars->11->977", + "default.handlebars->47->3180" ] }, { @@ -15984,8 +16021,8 @@ "zh-cht": "單擊此處編輯裝置群名稱", "hu": "Kattintson ide az eszközcsoport nevének szerkesztéséhez", "xloc": [ - "default.handlebars->47->2068", - "default.handlebars->47->2368" + "default.handlebars->47->2096", + "default.handlebars->47->2396" ] }, { @@ -16039,7 +16076,7 @@ "zh-cht": "單擊此處編輯用戶群名稱", "hu": "Kattintson ide a felhasználói csoport nevének szerkesztéséhez", "xloc": [ - "default.handlebars->47->2752" + "default.handlebars->47->2780" ] }, { @@ -16174,7 +16211,7 @@ "hu": "Kattintson az OK gombra, ha megerősítő e-mailt szeretne küldeni a következő címre:", "xloc": [ "default-mobile.handlebars->11->313", - "default.handlebars->47->1984" + "default.handlebars->47->2012" ] }, { @@ -16280,8 +16317,8 @@ "zh-cht": "客戶端控制模式(CCM)", "hu": "Client Control Mode (CCM)", "xloc": [ - "default-mobile.handlebars->11->793", - "default.handlebars->47->1607" + "default-mobile.handlebars->11->792", + "default.handlebars->47->1617" ] }, { @@ -16308,7 +16345,7 @@ "zh-cht": "客戶編號", "hu": "Client ID", "xloc": [ - "default.handlebars->47->2047" + "default.handlebars->47->2075" ] }, { @@ -16335,7 +16372,7 @@ "zh-cht": "客戶端啟動的遠程訪問", "hu": "Ügyfél által kezdeményezett távoli elérés", "xloc": [ - "default.handlebars->47->2197" + "default.handlebars->47->2225" ] }, { @@ -16362,7 +16399,7 @@ "zh-cht": "客戶機密", "hu": "Client Secret", "xloc": [ - "default.handlebars->47->2048" + "default.handlebars->47->2076" ] }, { @@ -16419,11 +16456,11 @@ "xloc": [ "agent-translations.json", "default-mobile.handlebars->11->78", - "default.handlebars->47->1437", - "default.handlebars->47->1503", + "default.handlebars->47->1440", + "default.handlebars->47->1510", "default.handlebars->47->228", "default.handlebars->47->236", - "default.handlebars->47->3284", + "default.handlebars->47->3312", "sharing.handlebars->11->52" ] }, @@ -16451,7 +16488,7 @@ "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒", "hu": "Lezárt asztali multiplex munkamenet \\\"{0}\\\", {1} másodperc", "xloc": [ - "default.handlebars->47->2575" + "default.handlebars->47->2603" ] }, { @@ -16478,7 +16515,7 @@ "zh-cht": "封閉式桌面多路復用會話,{0}秒", "hu": "Lezárt asztali multiplex munkamenet, {0} másodperc", "xloc": [ - "default.handlebars->47->2436" + "default.handlebars->47->2464" ] }, { @@ -16613,7 +16650,7 @@ "zh-cht": "命令", "hu": "Parancs", "xloc": [ - "agentinvite.handlebars->3->14", + "agentinvite.handlebars->3->15", "default.handlebars->47->659" ] }, @@ -16668,10 +16705,10 @@ "zh-cht": "指令", "hu": "Parancsok", "xloc": [ - "default-mobile.handlebars->11->937", + "default-mobile.handlebars->11->965", "default.handlebars->47->1113", "default.handlebars->47->1138", - "default.handlebars->47->2309" + "default.handlebars->47->2337" ] }, { @@ -16737,8 +16774,8 @@ "zh-cht": "通用裝置群", "hu": "Eszközcsoport jogosultságok", "xloc": [ - "default.handlebars->47->2787", - "default.handlebars->47->2975" + "default.handlebars->47->2815", + "default.handlebars->47->3003" ] }, { @@ -16765,8 +16802,8 @@ "zh-cht": "通用裝置", "hu": "Eszköz jogosultságok", "xloc": [ - "default.handlebars->47->2793", - "default.handlebars->47->2987" + "default.handlebars->47->2821", + "default.handlebars->47->3015" ] }, { @@ -16793,8 +16830,8 @@ "zh-cht": "編譯時間", "hu": "Fordítás ideje", "xloc": [ - "default-mobile.handlebars->11->765", - "default.handlebars->47->1569" + "default-mobile.handlebars->11->764", + "default.handlebars->47->1579" ] }, { @@ -16845,7 +16882,7 @@ "zh-cht": "壓縮檔案...", "hu": "Fájlok tömörítése...", "xloc": [ - "default.handlebars->47->1495", + "default.handlebars->47->1498", "sharing.handlebars->11->47" ] }, @@ -16882,7 +16919,7 @@ "hu": "Konfigurációs fájl rekordok", "de": "Aufzeichnungen von Konfigurationsdatei", "xloc": [ - "default.handlebars->47->3129" + "default.handlebars->47->3157" ] }, { @@ -16910,14 +16947,14 @@ "hu": "Megerősít", "xloc": [ "default-mobile.handlebars->11->603", - "default-mobile.handlebars->11->886", - "default.handlebars->47->1276", - "default.handlebars->47->1285", - "default.handlebars->47->2208", - "default.handlebars->47->2659", - "default.handlebars->47->2742", - "default.handlebars->47->2809", - "default.handlebars->47->2973", + "default-mobile.handlebars->11->914", + "default.handlebars->47->1278", + "default.handlebars->47->1287", + "default.handlebars->47->2236", + "default.handlebars->47->2687", + "default.handlebars->47->2770", + "default.handlebars->47->2837", + "default.handlebars->47->3001", "default.handlebars->47->730" ] }, @@ -16970,7 +17007,7 @@ "hu": "Megerősíti 1 bejegyzés másolatát erre a helyre?", "xloc": [ "default-mobile.handlebars->11->701", - "default.handlebars->47->1522", + "default.handlebars->47->1530", "sharing.handlebars->11->70" ] }, @@ -16998,7 +17035,7 @@ "zh-cht": "確認{0}個條目的複製到此位置?", "hu": "Megerősíti a {0} bejegyzések másolását erre a helyre?", "xloc": [ - "default.handlebars->47->1521", + "default.handlebars->47->1529", "sharing.handlebars->11->69" ] }, @@ -17053,7 +17090,7 @@ "zh-cht": "確認刪除所選帳戶?", "hu": "Megerősíti a kiválasztott fiók(ok) törlését?", "xloc": [ - "default.handlebars->47->2658" + "default.handlebars->47->2686" ] }, { @@ -17104,7 +17141,7 @@ "zh-cht": "確認刪除所選用戶群?", "hu": "Megerősíti a kiválasztott felhasználói csoport(ok) törlését?", "xloc": [ - "default.handlebars->47->2741" + "default.handlebars->47->2769" ] }, { @@ -17131,7 +17168,7 @@ "zh-cht": "確認刪除用戶{0}?", "hu": "Megerősíti a(z) {0} felhasználó törlését?", "xloc": [ - "default.handlebars->47->2972" + "default.handlebars->47->3000" ] }, { @@ -17158,7 +17195,7 @@ "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "hu": "Megerősíti a \\\"{0}\\\" felhasználó tagságának eltávolítását?", "xloc": [ - "default.handlebars->47->2812" + "default.handlebars->47->2840" ] }, { @@ -17185,7 +17222,7 @@ "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport tagság eltávolítását?", "xloc": [ - "default.handlebars->47->3004" + "default.handlebars->47->3032" ] }, { @@ -17213,7 +17250,7 @@ "hu": "Megerősíti 1 bejegyzés áthelyezését erre a helyre?", "xloc": [ "default-mobile.handlebars->11->703", - "default.handlebars->47->1524", + "default.handlebars->47->1532", "sharing.handlebars->11->72" ] }, @@ -17241,7 +17278,7 @@ "zh-cht": "確認將{0}個條目移到該位置?", "hu": "Megerősíti {0} bejegyzés áthelyezését erre a helyre?", "xloc": [ - "default.handlebars->47->1523", + "default.handlebars->47->1531", "sharing.handlebars->11->71" ] }, @@ -17296,7 +17333,7 @@ "zh-cht": "確認覆蓋?", "hu": "Megerősíti a felülírást?", "xloc": [ - "default.handlebars->47->2417" + "default.handlebars->47->2445" ] }, { @@ -17323,8 +17360,8 @@ "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "hu": "Megerősíti a \\\"{0}\\\" eszköz hozzáférési jogainak eltávolítását?", "xloc": [ - "default.handlebars->47->2802", - "default.handlebars->47->2995" + "default.handlebars->47->2830", + "default.handlebars->47->3023" ] }, { @@ -17351,8 +17388,8 @@ "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "hu": "Megerősíti a \\\"{0}\\\" eszközcsoport hozzáférési jogainak eltávolítását?", "xloc": [ - "default.handlebars->47->2804", - "default.handlebars->47->3008" + "default.handlebars->47->2832", + "default.handlebars->47->3036" ] }, { @@ -17379,7 +17416,7 @@ "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "hu": "Megerősíti a \\\"{0}\\\" felhasználó hozzáférési jogainak eltávolítását?", "xloc": [ - "default.handlebars->47->2997" + "default.handlebars->47->3025" ] }, { @@ -17406,7 +17443,7 @@ "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport hozzáférési jogainak eltávolítását?", "xloc": [ - "default.handlebars->47->3000" + "default.handlebars->47->3028" ] }, { @@ -17433,8 +17470,8 @@ "zh-cht": "確認刪除訪問權限?", "hu": "Megerősíti a hozzáférési jogok eltávolítását?", "xloc": [ - "default.handlebars->47->2998", - "default.handlebars->47->3001" + "default.handlebars->47->3026", + "default.handlebars->47->3029" ] }, { @@ -17462,7 +17499,7 @@ "hu": "Megerősíti a hitelesítő alkalmazás, kétlépcsős bejelentkezés eltávolítását?", "xloc": [ "default-mobile.handlebars->11->312", - "default.handlebars->47->1734" + "default.handlebars->47->1762" ] }, { @@ -17513,7 +17550,7 @@ "zh-cht": "確認刪除設備共享“{0}”?", "hu": "Megerősíti a(z) \\\"{0}\\\" eszközmegosztás eltávolítását?", "xloc": [ - "default.handlebars->47->2993" + "default.handlebars->47->3021" ] }, { @@ -17588,7 +17625,7 @@ "zh-cht": "確認移除推送認證設備?", "hu": "Megerősíti a Push-hitelesítési eszköz eltávolítását?", "xloc": [ - "default.handlebars->47->1736" + "default.handlebars->47->1764" ] }, { @@ -17615,7 +17652,7 @@ "zh-cht": "確認刪除用戶“ {0} ”的權限?", "hu": "Megerősíti a \\\"{0}\\\" felhasználó jogainak eltávolítását?", "xloc": [ - "default.handlebars->47->2321" + "default.handlebars->47->2349" ] }, { @@ -17642,7 +17679,7 @@ "zh-cht": "確認刪除用戶群“ {0} ”的權限?", "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport jogainak eltávolítását?", "xloc": [ - "default.handlebars->47->2323" + "default.handlebars->47->2351" ] }, { @@ -17696,7 +17733,7 @@ "zh-cht": "確認刪除此登錄令牌?", "hu": "Megerősíti ennek a bejelentkezési tokennek az eltávolítását?", "xloc": [ - "default.handlebars->47->2040" + "default.handlebars->47->2068" ] }, { @@ -17747,7 +17784,7 @@ "zh-cht": "確認刪除用戶{0}?", "hu": "Megerősíti a(z) {0} felhasználó eltávolítását?", "xloc": [ - "default-mobile.handlebars->11->946" + "default-mobile.handlebars->11->974" ] }, { @@ -17802,7 +17839,7 @@ "hu": "Megerősíti {0} / {1} bejegyzés {2} erre a helyre?", "xloc": [ "default-mobile.handlebars->11->365", - "default.handlebars->47->2420" + "default.handlebars->47->2448" ] }, { @@ -17833,7 +17870,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span", - "default.handlebars->47->2106", + "default.handlebars->47->2134", "default.handlebars->47->949", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", @@ -17923,7 +17960,7 @@ "zh-cht": "連接到伺服器", "hu": "Csatlakozás a kiszolgálóhoz", "xloc": [ - "default.handlebars->47->2201" + "default.handlebars->47->2229" ] }, { @@ -18167,7 +18204,7 @@ "zh-cht": "已連接的Intel® AMT", "hu": "Csatlakozott Intel® AMT", "xloc": [ - "default.handlebars->47->3211" + "default.handlebars->47->3239" ] }, { @@ -18194,7 +18231,7 @@ "zh-cht": "已连接的用户", "hu": "Csatlakozott felhasználók", "xloc": [ - "default.handlebars->47->3216" + "default.handlebars->47->3244" ] }, { @@ -18249,8 +18286,8 @@ "zh-cht": "現在已連接", "hu": "Csatlakoztatva most", "xloc": [ - "default-mobile.handlebars->11->760", - "default.handlebars->47->1564" + "default-mobile.handlebars->11->759", + "default.handlebars->47->1574" ] }, { @@ -18382,7 +18419,7 @@ "default-mobile.handlebars->11->2", "default-mobile.handlebars->11->50", "default-mobile.handlebars->11->719", - "default.handlebars->47->1547", + "default.handlebars->47->1555", "default.handlebars->47->391", "default.handlebars->47->394", "default.handlebars->47->475", @@ -18441,7 +18478,7 @@ "zh-cht": "連接數量", "hu": "Kapcsolatok száma", "xloc": [ - "default.handlebars->47->3242" + "default.handlebars->47->3270" ] }, { @@ -18469,8 +18506,8 @@ "hu": "Kapcsolat Hiba", "xloc": [ "default-mobile.handlebars->11->682", - "default.handlebars->47->1474", - "default.handlebars->47->1491", + "default.handlebars->47->1477", + "default.handlebars->47->1494", "login2.handlebars->7->232" ] }, @@ -18498,7 +18535,7 @@ "zh-cht": "連接轉發器", "hu": "Kapccsolat Relay", "xloc": [ - "default.handlebars->47->3278" + "default.handlebars->47->3306" ] }, { @@ -18580,7 +18617,7 @@ "hu": "Kapcsolódás", "xloc": [ "default-mobile.handlebars->11->525", - "default.handlebars->47->2375", + "default.handlebars->47->2403", "default.handlebars->47->379", "default.handlebars->47->966", "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1" @@ -18610,7 +18647,7 @@ "zh-cht": "同意", "hu": "Hozzájárulás", "xloc": [ - "default.handlebars->47->2590" + "default.handlebars->47->2618" ] }, { @@ -18753,7 +18790,7 @@ "zh-cht": "Cookie編碼器", "hu": "Cookie kódoló", "xloc": [ - "default.handlebars->47->3261" + "default.handlebars->47->3289" ] }, { @@ -18820,6 +18857,7 @@ { "en": "Copy Secret to clipboard", "nl": "Kopieer geheim naar klembord", + "pl": "Kopiuj Tajny Klucz do schowka", "xloc": [ "default.handlebars->47->214" ] @@ -18904,6 +18942,7 @@ { "en": "Copy Windows ARM 64bit agent URL to clipboard", "nl": "Kopieer de URL van de Windows ARM 64-bits agent naar het klembord", + "pl": "Kopiuj URL agenta Windows ARM 64bit do schowka", "de": "Windows ARM 64bit Agent-URL in die Zwischenablage kopieren", "xloc": [ "default.handlebars->47->618" @@ -18912,6 +18951,7 @@ { "en": "Copy Windows x86 32bit agent URL to clipboard", "nl": "Kopieer de Windows x86 32-bits agent-URL naar het klembord", + "pl": "Kopiuj URL agenta Windows x86 32bit do schowka", "de": "Windows x86 32bit Agent-URL in die Zwischenablage kopieren", "xloc": [ "default.handlebars->47->610" @@ -18920,6 +18960,7 @@ { "en": "Copy Windows x86 64bit agent URL to clipboard", "nl": "Kopieer de Windows x86 64-bits agent-URL naar het klembord", + "pl": "Kopiuj URL agenta Windows x86 64bit do schowka", "de": "Windows x86 64bit Agent-URL in die Zwischenablage kopieren", "xloc": [ "default.handlebars->47->614" @@ -18987,8 +19028,8 @@ "zh-cht": "將代理URL複製到剪貼板", "hu": "Agent URL másolása a vágólapra", "xloc": [ - "agentinvite.handlebars->3->13", - "agentinvite.handlebars->3->15", + "agentinvite.handlebars->3->14", + "agentinvite.handlebars->3->16", "default.handlebars->47->658", "default.handlebars->47->660" ] @@ -19017,8 +19058,8 @@ "zh-cht": "複製連結到剪貼板", "hu": "Hivatkozás másolása a vágólapra.", "xloc": [ - "default.handlebars->47->2386", - "default.handlebars->47->2405", + "default.handlebars->47->2414", + "default.handlebars->47->2433", "default.handlebars->47->311", "default.handlebars->47->333", "default.handlebars->47->335", @@ -19160,7 +19201,7 @@ "zh-cht": "複製:“{0}”到“{1}”", "hu": "Másolás: \\\"{0}\\\" ide: \\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2479" + "default.handlebars->47->2507" ] }, { @@ -19355,7 +19396,7 @@ "zh-cht": "核心伺服器", "hu": "Core Server", "xloc": [ - "default.handlebars->47->3260" + "default.handlebars->47->3288" ] }, { @@ -19383,7 +19424,7 @@ "hu": "korzikai", "xloc": [ "default-mobile.handlebars->11->144", - "default.handlebars->47->1792", + "default.handlebars->47->1820", "login2.handlebars->7->41" ] }, @@ -19435,7 +19476,7 @@ "zh-cht": "創建帳號", "hu": "Fiók létrehozása", "xloc": [ - "default.handlebars->47->2709", + "default.handlebars->47->2737", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1", "login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1" @@ -19516,7 +19557,7 @@ "zh-cht": "創建登錄令牌", "hu": "Bejelentkezési token létrehozása", "xloc": [ - "default.handlebars->47->1977", + "default.handlebars->47->2005", "default.handlebars->47->336" ] }, @@ -19544,7 +19585,7 @@ "zh-cht": "創建用戶群", "hu": "Felhasználó csoport létrehozása", "xloc": [ - "default.handlebars->47->2749" + "default.handlebars->47->2777" ] }, { @@ -19598,7 +19639,7 @@ "zh-cht": "使用以下選項創建一個新的裝置群。", "hu": "Hozzon létre egy új eszközcsoportot az alábbi lehetőségek segítségével.", "xloc": [ - "default.handlebars->47->2007" + "default.handlebars->47->2035" ] }, { @@ -19652,7 +19693,7 @@ "zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。", "hu": "Hozzon létre egy ideiglenes felhasználónevet és jelszót, amelyet alternatív bejelentkezési lehetőségként használhat a fiókjához. Ez akkor hasznos, ha lehetővé teszi, hogy eszközök vagy más szolgáltatások hozzáférjenek a fiókjához.", "xloc": [ - "default.handlebars->47->1957" + "default.handlebars->47->1985" ] }, { @@ -19706,7 +19747,7 @@ "zh-cht": "創建文件夾:“{0}”", "hu": "Mappa létrehozása: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2472" + "default.handlebars->47->2500" ] }, { @@ -19772,7 +19813,7 @@ "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:", "hu": "Hozzon létre egyszerre több fiókot a következő formátumú JSON fájl importálásával:", "xloc": [ - "default.handlebars->47->2673" + "default.handlebars->47->2701" ] }, { @@ -19828,7 +19869,7 @@ "zh-cht": "創建的設備組:{0}", "hu": "Eszközcsoport létrehozva: {0}", "xloc": [ - "default.handlebars->47->2483" + "default.handlebars->47->2511" ] }, { @@ -19855,7 +19896,7 @@ "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。", "hu": "Létrehoz egy linket, amely lehetővé teszi egy fiók nélküli vendég számára, hogy korlátozott ideig távvezérléssel vezérelje ezt az eszközt.", "xloc": [ - "default.handlebars->47->1172" + "default.handlebars->47->1173" ] }, { @@ -19930,7 +19971,7 @@ "zh-cht": "創建", "hu": "Létrehozás", "xloc": [ - "default.handlebars->47->2857" + "default.handlebars->47->2885" ] }, { @@ -19957,7 +19998,7 @@ "zh-cht": "創作時間", "hu": "Létrehozás ideje", "xloc": [ - "default.handlebars->47->2086" + "default.handlebars->47->2114" ] }, { @@ -20013,8 +20054,8 @@ "zh-cht": "創作者", "hu": "Létrehozó", "xloc": [ - "default.handlebars->47->2084", - "default.handlebars->47->2085" + "default.handlebars->47->2112", + "default.handlebars->47->2113" ] }, { @@ -20042,8 +20083,8 @@ "hu": "Hitelesítő adatok", "xloc": [ "default-mobile.handlebars->11->537", - "default.handlebars->47->1350", - "default.handlebars->47->2045", + "default.handlebars->47->1353", + "default.handlebars->47->2073", "default.handlebars->47->978" ] }, @@ -20072,7 +20113,7 @@ "hu": "cree", "xloc": [ "default-mobile.handlebars->11->145", - "default.handlebars->47->1793", + "default.handlebars->47->1821", "login2.handlebars->7->42" ] }, @@ -20101,7 +20142,7 @@ "hu": "horvát", "xloc": [ "default-mobile.handlebars->11->146", - "default.handlebars->47->1794", + "default.handlebars->47->1822", "login2.handlebars->7->43" ] }, @@ -20187,8 +20228,8 @@ "xloc": [ "default-mobile.handlebars->11->643", "default-mobile.handlebars->11->647", - "default.handlebars->47->1392", - "default.handlebars->47->1396", + "default.handlebars->47->1395", + "default.handlebars->47->1399", "default.handlebars->47->62", "sharing.handlebars->11->24" ] @@ -20378,8 +20419,8 @@ "zh-cht": "當前密碼不正確。", "hu": "A jelenlegi jelszó nem megfelelő.", "xloc": [ - "default-mobile.handlebars->11->977", - "default.handlebars->47->3180" + "default-mobile.handlebars->11->1005", + "default.handlebars->47->3208" ] }, { @@ -20493,7 +20534,7 @@ "hu": "cseh", "xloc": [ "default-mobile.handlebars->11->147", - "default.handlebars->47->1795", + "default.handlebars->47->1823", "login2.handlebars->7->44" ] }, @@ -20576,7 +20617,7 @@ "hu": "dán", "xloc": [ "default-mobile.handlebars->11->148", - "default.handlebars->47->1796", + "default.handlebars->47->1824", "login2.handlebars->7->45" ] }, @@ -20632,7 +20673,7 @@ "zh-cht": "數據通道", "hu": "DataChannel", "xloc": [ - "default.handlebars->47->1348", + "default.handlebars->47->1351", "sharing.handlebars->11->11" ] }, @@ -20645,7 +20686,7 @@ "hu": "Adatbázis rekordok", "de": "Datenbankaufzeichnungen", "xloc": [ - "default.handlebars->47->3054" + "default.handlebars->47->3082" ] }, { @@ -20673,7 +20714,7 @@ "hu": "Dátum és idő", "xloc": [ "default-mobile.handlebars->11->306", - "default.handlebars->47->1954" + "default.handlebars->47->1982" ] }, { @@ -20701,9 +20742,9 @@ "hu": "Nap", "xloc": [ "default-mobile.handlebars->11->593", - "default.handlebars->47->1260", - "default.handlebars->47->3058", - "default.handlebars->47->3061" + "default.handlebars->47->1262", + "default.handlebars->47->3086", + "default.handlebars->47->3089" ] }, { @@ -20730,8 +20771,8 @@ "zh-cht": "停用", "hu": "Deaktiválás", "xloc": [ - "default.handlebars->47->2116", - "default.handlebars->47->2180" + "default.handlebars->47->2144", + "default.handlebars->47->2208" ] }, { @@ -20758,7 +20799,7 @@ "zh-cht": "如果設置停用CCM", "hu": "CCM kikapcsolása ha be van állítva", "xloc": [ - "default.handlebars->47->2192" + "default.handlebars->47->2220" ] }, { @@ -20837,10 +20878,10 @@ "zh-cht": "默認", "hu": "Alapértelmezett", "xloc": [ - "default.handlebars->47->2696", - "default.handlebars->47->2745", - "default.handlebars->47->2756", - "default.handlebars->47->2830" + "default.handlebars->47->2724", + "default.handlebars->47->2773", + "default.handlebars->47->2784", + "default.handlebars->47->2858" ] }, { @@ -20868,7 +20909,7 @@ "hu": "Del", "xloc": [ "default-mobile.handlebars->11->630", - "default.handlebars->47->1380" + "default.handlebars->47->1383" ] }, { @@ -20900,8 +20941,8 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", "default-mobile.handlebars->dialog->idx_dlgButtonBar->5", - "default.handlebars->47->1513", - "default.handlebars->47->2412", + "default.handlebars->47->1520", + "default.handlebars->47->2440", "default.handlebars->47->828", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -20940,7 +20981,7 @@ "hu": "Fiók törlése", "xloc": [ "default-mobile.handlebars->11->322", - "default.handlebars->47->1992" + "default.handlebars->47->2020" ] }, { @@ -20967,7 +21008,7 @@ "zh-cht": "刪除帳戶", "hu": "Fiókok törlése", "xloc": [ - "default.handlebars->47->2660" + "default.handlebars->47->2688" ] }, { @@ -21049,10 +21090,10 @@ "zh-cht": "刪除群組", "hu": "Csoport törlése", "xloc": [ - "default-mobile.handlebars->11->884", - "default-mobile.handlebars->11->887", - "default.handlebars->47->2168", - "default.handlebars->47->2209" + "default-mobile.handlebars->11->912", + "default-mobile.handlebars->11->915", + "default.handlebars->47->2196", + "default.handlebars->47->2237" ] }, { @@ -21080,7 +21121,7 @@ "hu": "Node törlése", "xloc": [ "default-mobile.handlebars->11->601", - "default.handlebars->47->1286" + "default.handlebars->47->1288" ] }, { @@ -21131,7 +21172,7 @@ "zh-cht": "刪除用戶", "hu": "Felhasználó törlése", "xloc": [ - "default.handlebars->47->2903" + "default.handlebars->47->2931" ] }, { @@ -21158,8 +21199,8 @@ "zh-cht": "刪除用戶群組", "hu": "Felhasználói csoport törlése", "xloc": [ - "default.handlebars->47->2798", - "default.handlebars->47->2810" + "default.handlebars->47->2826", + "default.handlebars->47->2838" ] }, { @@ -21186,7 +21227,7 @@ "zh-cht": "刪除用戶群組", "hu": "Felhasználói csoportok törlése", "xloc": [ - "default.handlebars->47->2743" + "default.handlebars->47->2771" ] }, { @@ -21213,7 +21254,7 @@ "zh-cht": "刪除用戶{0}", "hu": "Felhasználó törlése: {0}", "xloc": [ - "default.handlebars->47->2971" + "default.handlebars->47->2999" ] }, { @@ -21241,7 +21282,7 @@ "hu": "Fiók törlése", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->47->2656", + "default.handlebars->47->2684", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -21296,7 +21337,7 @@ "zh-cht": "刪除群組", "hu": "Csoport törlése", "xloc": [ - "default.handlebars->47->2739" + "default.handlebars->47->2767" ] }, { @@ -21350,7 +21391,7 @@ "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除", "hu": "Rekurzív törlés: \\\"{0}\\\", {1} eltávolított elem(ek)", "xloc": [ - "default.handlebars->47->2474" + "default.handlebars->47->2502" ] }, { @@ -21379,8 +21420,8 @@ "xloc": [ "default-mobile.handlebars->11->362", "default-mobile.handlebars->11->695", - "default.handlebars->47->1515", - "default.handlebars->47->2414", + "default.handlebars->47->1522", + "default.handlebars->47->2442", "sharing.handlebars->11->63" ] }, @@ -21408,7 +21449,7 @@ "zh-cht": "刪除用戶群組{0}?", "hu": "Törli a(z) {0} felhasználói csoportot?", "xloc": [ - "default.handlebars->47->2808" + "default.handlebars->47->2836" ] }, { @@ -21437,8 +21478,8 @@ "xloc": [ "default-mobile.handlebars->11->361", "default-mobile.handlebars->11->694", - "default.handlebars->47->1514", - "default.handlebars->47->2413", + "default.handlebars->47->1521", + "default.handlebars->47->2441", "sharing.handlebars->11->62" ] }, @@ -21493,7 +21534,7 @@ "zh-cht": "刪除:“{0}”", "hu": "Törlés: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2473" + "default.handlebars->47->2501" ] }, { @@ -21520,7 +21561,7 @@ "zh-cht": "刪除:“{0}”,已刪除{1}個元素", "hu": "Törlés: \\\"{0}\\\", {1} elem eltávolítva", "xloc": [ - "default.handlebars->47->2475" + "default.handlebars->47->2503" ] }, { @@ -21548,7 +21589,7 @@ "hu": "Elutasítva", "xloc": [ "default-mobile.handlebars->11->616", - "default.handlebars->47->1335", + "default.handlebars->47->1338", "sharing.handlebars->11->29", "sharing.handlebars->11->7" ] @@ -21562,7 +21603,7 @@ "hu": "Felhasználói bejelentkezés megtagadva: {0}, {1}, {2}", "de": "Login des Benutzers von {0}, {1}, {2} verweigert", "xloc": [ - "default.handlebars->47->2583" + "default.handlebars->47->2611" ] }, { @@ -21713,21 +21754,21 @@ "default-mobile.handlebars->11->485", "default-mobile.handlebars->11->486", "default-mobile.handlebars->11->611", - "default-mobile.handlebars->11->773", - "default-mobile.handlebars->11->870", - "default-mobile.handlebars->11->893", - "default.handlebars->47->1330", + "default-mobile.handlebars->11->772", + "default-mobile.handlebars->11->898", + "default-mobile.handlebars->11->921", + "default.handlebars->47->1332", "default.handlebars->47->157", - "default.handlebars->47->1577", "default.handlebars->47->1587", - "default.handlebars->47->2017", - "default.handlebars->47->2077", - "default.handlebars->47->2215", - "default.handlebars->47->2588", - "default.handlebars->47->2748", - "default.handlebars->47->2759", - "default.handlebars->47->2760", - "default.handlebars->47->2806", + "default.handlebars->47->1597", + "default.handlebars->47->2045", + "default.handlebars->47->2105", + "default.handlebars->47->2243", + "default.handlebars->47->2616", + "default.handlebars->47->2776", + "default.handlebars->47->2787", + "default.handlebars->47->2788", + "default.handlebars->47->2834", "default.handlebars->47->869", "default.handlebars->47->870", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" @@ -21783,14 +21824,14 @@ "xloc": [ "default-mobile.handlebars->11->561", "default.handlebars->47->1062", - "default.handlebars->47->1174", - "default.handlebars->47->1447", - "default.handlebars->47->2146", - "default.handlebars->47->2221", - "default.handlebars->47->3031", - "default.handlebars->47->3091", - "default.handlebars->47->3141", - "default.handlebars->47->3236", + "default.handlebars->47->1175", + "default.handlebars->47->1450", + "default.handlebars->47->2174", + "default.handlebars->47->2249", + "default.handlebars->47->3059", + "default.handlebars->47->3119", + "default.handlebars->47->3169", + "default.handlebars->47->3264", "default.handlebars->47->834", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop", @@ -21823,8 +21864,8 @@ "hu": "Asztal + Fájlok", "xloc": [ "default.handlebars->47->1066", - "default.handlebars->47->1177", - "default.handlebars->47->2150" + "default.handlebars->47->1178", + "default.handlebars->47->2178" ] }, { @@ -21852,7 +21893,7 @@ "hu": "Asztal + Terminál", "xloc": [ "default.handlebars->47->1063", - "default.handlebars->47->2147" + "default.handlebars->47->2175" ] }, { @@ -21880,8 +21921,8 @@ "hu": "Asztal + Terminál + Fájlok", "xloc": [ "default.handlebars->47->1067", - "default.handlebars->47->1179", - "default.handlebars->47->2151" + "default.handlebars->47->1180", + "default.handlebars->47->2179" ] }, { @@ -21935,7 +21976,7 @@ "zh-cht": "桌面多路復用", "hu": "Asztal Multiplex", "xloc": [ - "default.handlebars->47->3241" + "default.handlebars->47->3269" ] }, { @@ -21962,9 +22003,9 @@ "zh-cht": "桌面通知", "hu": "Asztal kapcsolat értesítés", "xloc": [ - "default.handlebars->47->2097", - "default.handlebars->47->2767", - "default.handlebars->47->2872", + "default.handlebars->47->2125", + "default.handlebars->47->2795", + "default.handlebars->47->2900", "default.handlebars->47->940" ] }, @@ -21992,9 +22033,9 @@ "zh-cht": "桌面提示", "hu": "Asztal kapcsolat engedélykérés", "xloc": [ - "default.handlebars->47->2096", - "default.handlebars->47->2766", - "default.handlebars->47->2871", + "default.handlebars->47->2124", + "default.handlebars->47->2794", + "default.handlebars->47->2899", "default.handlebars->47->939" ] }, @@ -22022,9 +22063,9 @@ "zh-cht": "桌面提示+工具欄", "hu": "Asztal kapcsolat engedélykérés és eszköztár", "xloc": [ - "default.handlebars->47->2094", - "default.handlebars->47->2764", - "default.handlebars->47->2869", + "default.handlebars->47->2122", + "default.handlebars->47->2792", + "default.handlebars->47->2897", "default.handlebars->47->937" ] }, @@ -22052,7 +22093,7 @@ "zh-cht": "桌面會話", "hu": "Asztal munkamenet", "xloc": [ - "default.handlebars->47->3024" + "default.handlebars->47->3052" ] }, { @@ -22159,9 +22200,9 @@ "zh-cht": "桌面工具欄", "hu": "Asztal kapcsolat eszköztár", "xloc": [ - "default.handlebars->47->2095", - "default.handlebars->47->2765", - "default.handlebars->47->2870", + "default.handlebars->47->2123", + "default.handlebars->47->2793", + "default.handlebars->47->2898", "default.handlebars->47->938" ] }, @@ -22189,7 +22230,7 @@ "zh-cht": "僅桌面視圖", "hu": "Asztal csak megtekintés", "xloc": [ - "default.handlebars->47->2845" + "default.handlebars->47->2873" ] }, { @@ -22216,7 +22257,7 @@ "zh-cht": "桌面,僅查看", "hu": "Asztal, csak megtekintés", "xloc": [ - "default.handlebars->47->1182" + "default.handlebars->47->1183" ] }, { @@ -22243,7 +22284,7 @@ "zh-cht": "桌面時段", "hu": "DesktopSession", "xloc": [ - "default.handlebars->47->1446" + "default.handlebars->47->1449" ] }, { @@ -22329,7 +22370,7 @@ "default-mobile.handlebars->11->564", "default.handlebars->47->1116", "default.handlebars->47->1141", - "default.handlebars->47->2312", + "default.handlebars->47->2340", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo", "default.handlebars->contextMenu->cxdetails" ] @@ -22385,14 +22426,14 @@ "zh-cht": "裝置", "hu": "Eszköz", "xloc": [ - "default-mobile.handlebars->11->768", - "default.handlebars->47->1572", - "default.handlebars->47->1740", - "default.handlebars->47->2249", + "default-mobile.handlebars->11->767", + "default.handlebars->47->1582", + "default.handlebars->47->1768", + "default.handlebars->47->2277", "default.handlebars->47->281", - "default.handlebars->47->2990", - "default.handlebars->47->3057", - "default.handlebars->47->3075", + "default.handlebars->47->3018", + "default.handlebars->47->3085", + "default.handlebars->47->3103", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -22446,7 +22487,7 @@ "xloc": [ "default-mobile.handlebars->11->582", "default-mobile.handlebars->11->591", - "default.handlebars->47->1239" + "default.handlebars->47->1241" ] }, { @@ -22528,7 +22569,7 @@ "zh-cht": "設備詳情", "hu": "Eszköz részéletek elérése", "xloc": [ - "default.handlebars->47->2273" + "default.handlebars->47->2301" ] }, { @@ -22583,18 +22624,18 @@ "hu": "Eszköz csoport", "xloc": [ "agent-translations.json", - "default-mobile.handlebars->11->955", - "default.handlebars->47->2244", - "default.handlebars->47->2247", - "default.handlebars->47->2248", - "default.handlebars->47->2605", - "default.handlebars->47->2790", - "default.handlebars->47->2796", - "default.handlebars->47->2978", - "default.handlebars->47->3040", - "default.handlebars->47->3064", - "default.handlebars->47->3078", - "default.handlebars->47->3158" + "default-mobile.handlebars->11->983", + "default.handlebars->47->2272", + "default.handlebars->47->2275", + "default.handlebars->47->2276", + "default.handlebars->47->2633", + "default.handlebars->47->2818", + "default.handlebars->47->2824", + "default.handlebars->47->3006", + "default.handlebars->47->3068", + "default.handlebars->47->3092", + "default.handlebars->47->3106", + "default.handlebars->47->3186" ] }, { @@ -22621,8 +22662,8 @@ "zh-cht": "裝置群用戶", "hu": "Eszköz Csoport Felhasználó", "xloc": [ - "default-mobile.handlebars->11->944", - "default.handlebars->47->2319" + "default-mobile.handlebars->11->972", + "default.handlebars->47->2347" ] }, { @@ -22650,11 +22691,11 @@ "hu": "Eszköz csoportok", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3", - "default.handlebars->47->2621", - "default.handlebars->47->2733", - "default.handlebars->47->2777", - "default.handlebars->47->2866", - "default.handlebars->47->3214", + "default.handlebars->47->2649", + "default.handlebars->47->2761", + "default.handlebars->47->2805", + "default.handlebars->47->2894", + "default.handlebars->47->3242", "default.handlebars->container->column_l->p2->p2info->9" ] }, @@ -22709,7 +22750,7 @@ "zh-cht": "裝置位置", "hu": "Eszköz helye", "xloc": [ - "default.handlebars->47->1287" + "default.handlebars->47->1289" ] }, { @@ -22726,7 +22767,7 @@ "ja": "デバイスメッセージ", "ko": "장치 메시지", "nl": "Apparaatbericht", - "pl": "Wiadomość Urządzenia", + "pl": "Wiadomość do Urządzenia", "pt": "Mensagem do Dispositivo", "pt-br": "Mensagem do Dispositivo", "ru": "Сообщение устройства", @@ -22736,7 +22777,7 @@ "zh-cht": "裝置訊息", "hu": "Üzenet küldése az eszközre", "xloc": [ - "default.handlebars->47->1154" + "default.handlebars->47->1155" ] }, { @@ -22764,8 +22805,8 @@ "hu": "Eszköz Neve", "xloc": [ "default-mobile.handlebars->11->609", - "default.handlebars->47->1328", - "default.handlebars->47->3039", + "default.handlebars->47->1330", + "default.handlebars->47->3067", "default.handlebars->47->491", "default.handlebars->47->500", "player.handlebars->3->25" @@ -22795,7 +22836,7 @@ "zh-cht": "裝置通知", "hu": "Eszköz értesítés", "xloc": [ - "default.handlebars->47->1168", + "default.handlebars->47->1169", "default.handlebars->47->751" ] }, @@ -22823,7 +22864,7 @@ "zh-cht": "設備配對鏈接", "hu": "Eszköz párosítás link", "xloc": [ - "default-mobile.handlebars->11->898" + "default-mobile.handlebars->11->926" ] }, { @@ -22850,7 +22891,7 @@ "zh-cht": "設備推送", "hu": "Device Push", "xloc": [ - "default.handlebars->47->2885" + "default.handlebars->47->2913" ] }, { @@ -22862,7 +22903,7 @@ "hu": "Eszköz push értesítés rekord", "de": "Aufzeichnungen zu Push-Benachrichtigungen des Geräts", "xloc": [ - "default.handlebars->47->3138" + "default.handlebars->47->3166" ] }, { @@ -22874,7 +22915,7 @@ "hu": "Eszköz SMBIOS rekord", "de": "SMBIOS Geräteaufzeichnungen", "xloc": [ - "default.handlebars->47->3137" + "default.handlebars->47->3165" ] }, { @@ -22950,7 +22991,7 @@ "hu": "Eszközmegosztási link", "xloc": [ "default.handlebars->47->1059", - "default.handlebars->47->2143" + "default.handlebars->47->2171" ] }, { @@ -23090,10 +23131,10 @@ "default.handlebars->47->1085", "default.handlebars->47->1089", "default.handlebars->47->1093", - "default.handlebars->47->1980", - "default.handlebars->47->2346", - "default.handlebars->47->2350", - "default.handlebars->47->2354" + "default.handlebars->47->2008", + "default.handlebars->47->2374", + "default.handlebars->47->2378", + "default.handlebars->47->2382" ] }, { @@ -23123,10 +23164,10 @@ "default.handlebars->47->1086", "default.handlebars->47->1090", "default.handlebars->47->1094", - "default.handlebars->47->1981", - "default.handlebars->47->2347", - "default.handlebars->47->2351", - "default.handlebars->47->2355" + "default.handlebars->47->2009", + "default.handlebars->47->2375", + "default.handlebars->47->2379", + "default.handlebars->47->2383" ] }, { @@ -23153,7 +23194,7 @@ "zh-cht": "設備組已創建:{0}", "hu": "Eszközcsoport létrehozva: {0}", "xloc": [ - "default.handlebars->47->2504" + "default.handlebars->47->2532" ] }, { @@ -23180,7 +23221,7 @@ "zh-cht": "設備組已刪除:{0}", "hu": "Eszközcsoport törölve: {0}", "xloc": [ - "default.handlebars->47->2505" + "default.handlebars->47->2533" ] }, { @@ -23207,7 +23248,7 @@ "zh-cht": "設備組成員身份已更改:{0}", "hu": "Eszközcsoport tagság megváltozott: {0}", "xloc": [ - "default.handlebars->47->2506" + "default.handlebars->47->2534" ] }, { @@ -23262,7 +23303,7 @@ "zh-cht": "設備組通知已更改", "hu": "Eszközcsoport értesítés megváltozott", "xloc": [ - "default.handlebars->47->2501" + "default.handlebars->47->2529" ] }, { @@ -23274,7 +23315,7 @@ "hu": "Eszközcsoport rekordok", "de": "Gerätegruppenaufzeichnungen", "xloc": [ - "default.handlebars->47->3123" + "default.handlebars->47->3151" ] }, { @@ -23301,7 +23342,7 @@ "zh-cht": "未刪除的設備組:{0}", "hu": "Eszközcsoport törlés visszavonva: {0}", "xloc": [ - "default.handlebars->47->2484" + "default.handlebars->47->2512" ] }, { @@ -23328,7 +23369,7 @@ "zh-cht": "設備組 {0} 已更改:{1}", "hu": "{0} eszközcsoport :{1} megváltozott", "xloc": [ - "default.handlebars->47->2570" + "default.handlebars->47->2598" ] }, { @@ -23367,7 +23408,7 @@ "hu": "Eszköz információs rekordok", "de": "Aufzeichnungen zu Geräteinformationen", "xloc": [ - "default.handlebars->47->3125" + "default.handlebars->47->3153" ] }, { @@ -23932,7 +23973,7 @@ "fr": "Enregistrement de l'état de l'alimentation de l'appareil", "hu": "Eszköz energiaellátás változás rekordok", "xloc": [ - "default.handlebars->47->3131" + "default.handlebars->47->3159" ] }, { @@ -23944,7 +23985,7 @@ "hu": "Eszköz rekordok", "de": "Geräteaufzeichnungen", "xloc": [ - "default.handlebars->47->3122" + "default.handlebars->47->3150" ] }, { @@ -23971,7 +24012,7 @@ "zh-cht": "設備請求 Intel(R) AMT ACM TLS 激活,FQDN:{0}", "hu": "Eszköz által kért Intel(R) AMT ACM TLS aktiválás, FQDN: {0}", "xloc": [ - "default.handlebars->47->2539" + "default.handlebars->47->2567" ] }, { @@ -23998,7 +24039,7 @@ "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}", "hu": "Eszköz által kért Intel(R) AMT ACM aktiválás, FQDN: {0}", "xloc": [ - "default.handlebars->47->2486" + "default.handlebars->47->2514" ] }, { @@ -24010,7 +24051,7 @@ "hu": "Eszközmegosztási rekordok", "de": "Aufzeichnungen zu Geräte-Teilen", "xloc": [ - "default.handlebars->47->3135" + "default.handlebars->47->3163" ] }, { @@ -24022,7 +24063,7 @@ "hu": "Eszköz, felhasználók, csoportok és egyéb rekordok", "de": "Aufzeichnungen zu Geräten, Benutzern und Weiteres", "xloc": [ - "default.handlebars->47->3139" + "default.handlebars->47->3167" ] }, { @@ -24073,9 +24114,9 @@ "zh-cht": "裝置", "hu": "Eszközök", "xloc": [ - "default.handlebars->47->2166", - "default.handlebars->47->2734", - "default.handlebars->47->2778" + "default.handlebars->47->2194", + "default.handlebars->47->2762", + "default.handlebars->47->2806" ] }, { @@ -24317,7 +24358,7 @@ "zh-cht": "禁用的電子郵件兩因素身份驗證", "hu": "Kétfaktoros e-mail hitelesítés kikapcsolása", "xloc": [ - "default.handlebars->47->2517" + "default.handlebars->47->2545" ] }, { @@ -24348,7 +24389,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span", - "default.handlebars->47->2107", + "default.handlebars->47->2135", "default.handlebars->47->950", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", @@ -24557,8 +24598,8 @@ "pl": "Discord", "de": "Discord", "xloc": [ - "default.handlebars->47->1702", - "default.handlebars->47->2917" + "default.handlebars->47->1730", + "default.handlebars->47->2945" ] }, { @@ -24615,6 +24656,13 @@ "default.handlebars->container->dialog->dialogBody->dialog7->d7rdpkvm->3->1" ] }, + { + "en": "Display a message box on the remote device", + "nl": "Geef een berichtvenster weer op het externe apparaat.", + "xloc": [ + "default.handlebars->47->1149" + ] + }, { "bs": "Prikažite okvir sa porukom na udaljenom uređaju.", "cs": "Zobrazte okno se zprávou na vzdáleném zařízení.", @@ -24624,12 +24672,12 @@ "es": "Mostrar un cuadro de mensaje en el dispositivo remoto.", "fi": "Näytä viestiruutu etälaitteessa.", "fr": "Afficher un message sur le poste distant", + "pl": "Wyświetl okno komunikatu na urządzeniu zdalnym.", "hi": "रिमोट डिवाइस पर एक संदेश बॉक्स प्रदर्शित करें।", "it": "Visualizza una finestra di messaggio sul dispositivo remoto.", "ja": "リモートデバイスにメッセージボックスを表示します。", "ko": "원격 장치에 메시지 상자를 표시합니다.", "nl": "Geef een berichtvenster weer op het externe apparaat.", - "pl": "Wyświetlić okno komunikatu na urządzeniu zdalnym.", "pt": "Exibe uma caixa de mensagem no dispositivo remoto.", "pt-br": "Exibe uma caixa de mensagem no dispositivo remoto.", "ru": "Показать окно с сообщением на удаленном устройстве.", @@ -24741,7 +24789,7 @@ "zh-cht": "顯示裝置群名稱", "hu": "Eszközcsoport nevének megjelenítése", "xloc": [ - "default.handlebars->47->1979" + "default.handlebars->47->2007" ] }, { @@ -24768,7 +24816,7 @@ "zh-cht": "顯示名稱", "hu": "Név megjelenítése", "xloc": [ - "default.handlebars->47->1418" + "default.handlebars->47->1421" ] }, { @@ -24795,7 +24843,7 @@ "zh-cht": "顯示公共鏈結", "hu": "Publikus link megjelenítése", "xloc": [ - "default.handlebars->47->2385" + "default.handlebars->47->2413" ] }, { @@ -24822,14 +24870,15 @@ "zh-cht": "顯示 {0}", "hu": "Kijelző {0}", "xloc": [ - "default.handlebars->47->1449" + "default.handlebars->47->1452" ] }, { "en": "Displaying alert box, title=\\\"{0}\\\", message=\\\"{1}\\\"", "nl": "Waarschuwingsvenster weergeven, title=\\\"{0}\\\", message=\\\"{1}\\\"", + "pl": "Wyświetl okno powiadomienia, tytuł=\\\"{0}\\\", wiadomość=\\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2586" + "default.handlebars->47->2614" ] }, { @@ -24856,7 +24905,7 @@ "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”", "hu": "Üzenetdoboz megjelenítése, cím=\\\"{0}\\\", üzenet=\\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2446" + "default.handlebars->47->2474" ] }, { @@ -24883,7 +24932,7 @@ "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”", "hu": "Alkalmazás üzenet megjelenítése, title=\\\"{0}\\\", message=\\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2454" + "default.handlebars->47->2482" ] }, { @@ -24910,8 +24959,8 @@ "zh-cht": "什麼都不做", "hu": "Ne csináljon semmit", "xloc": [ - "default.handlebars->47->2195", - "default.handlebars->47->2199" + "default.handlebars->47->2223", + "default.handlebars->47->2227" ] }, { @@ -24939,11 +24988,11 @@ "hu": "Domain", "xloc": [ "default.handlebars->47->126", - "default.handlebars->47->1353", - "default.handlebars->47->2697", - "default.handlebars->47->2746", - "default.handlebars->47->2755", - "default.handlebars->47->2829", + "default.handlebars->47->1356", + "default.handlebars->47->2725", + "default.handlebars->47->2774", + "default.handlebars->47->2783", + "default.handlebars->47->2857", "mstsc.handlebars->main->1->3->1->rowdomain->1->0", "mstsc.handlebars->main->1->3->1->rowdomain->3" ] @@ -24996,7 +25045,7 @@ "zh-cht": "請勿更改,如果設置請保留CCM", "hu": "Ne módosítsa, tartsa meg a CCM-et, ha beállítva van", "xloc": [ - "default.handlebars->47->2191" + "default.handlebars->47->2219" ] }, { @@ -25047,7 +25096,7 @@ "zh-cht": "不要連接到伺服器", "hu": "Ne csatlakozzon a kiszolgálóhoz", "xloc": [ - "default.handlebars->47->2200" + "default.handlebars->47->2228" ] }, { @@ -25176,7 +25225,7 @@ "hu": "Le", "xloc": [ "default-mobile.handlebars->11->639", - "default.handlebars->47->1388" + "default.handlebars->47->1391" ] }, { @@ -25290,7 +25339,7 @@ "hu": "Fájl letöltése", "xloc": [ "default-mobile.handlebars->11->714", - "default.handlebars->47->1534", + "default.handlebars->47->1542", "sharing.handlebars->11->82" ] }, @@ -25345,7 +25394,7 @@ "zh-cht": "下載MeshCmd", "hu": "Töltse le a MeshCmd-t", "xloc": [ - "default.handlebars->47->1313" + "default.handlebars->47->1315" ] }, { @@ -25426,7 +25475,7 @@ "zh-cht": "下載報告", "hu": "Jelentés letöltése", "xloc": [ - "default.handlebars->47->2610", + "default.handlebars->47->2638", "default.handlebars->container->column_l->p3->3->1->0->3", "default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv" ] @@ -25455,7 +25504,7 @@ "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。", "hu": "Töltse le a \\\"meshcmd\\\" fájlt egy műveletfájllal, hogy a forgalmat ezen a szerveren keresztül erre az eszközre irányítsa. Szerkessze a meshaction.txt fájlt, és adja hozzá fiókja jelszavát, vagy hajtsa végre a szükséges módosításokat.", "xloc": [ - "default.handlebars->47->1306" + "default.handlebars->47->1308" ] }, { @@ -25536,7 +25585,7 @@ "zh-cht": "下載設備列表", "hu": "Eszközlista letöltése", "xloc": [ - "default.handlebars->47->2164" + "default.handlebars->47->2192" ] }, { @@ -25590,7 +25639,7 @@ "zh-cht": "下載電源事件", "hu": "Tápellátás események letöltése", "xloc": [ - "default.handlebars->47->1261" + "default.handlebars->47->1263" ] }, { @@ -25752,7 +25801,7 @@ "zh-cht": "使用以下一種檔案格式下載事件列表。", "hu": "Töltse le az események listáját az alábbi fájlformátumokban.", "xloc": [ - "default.handlebars->47->2611" + "default.handlebars->47->2639" ] }, { @@ -25779,7 +25828,7 @@ "zh-cht": "使用以下一種檔案格式下載用戶列表。", "hu": "Töltse le a felhasználók listáját az alábbi fájlformátumok valamelyikével.", "xloc": [ - "default.handlebars->47->2681" + "default.handlebars->47->2709" ] }, { @@ -25888,7 +25937,7 @@ "zh-cht": "下載:“{0}”", "hu": "Letöltés: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2477" + "default.handlebars->47->2505" ] }, { @@ -25915,7 +25964,7 @@ "zh-cht": "下載:\\\"{0}\\\",大小:{1}", "hu": "Letöltés: \\\"{0}\\\", Méret: {1}", "xloc": [ - "default.handlebars->47->2534" + "default.handlebars->47->2562" ] }, { @@ -25969,7 +26018,7 @@ "zh-cht": "代理重複", "hu": "Duplikált Agent", "xloc": [ - "default.handlebars->47->3210" + "default.handlebars->47->3238" ] }, { @@ -26023,7 +26072,7 @@ "zh-cht": "複製用戶群", "hu": "Felhasználó csoport duplikálása", "xloc": [ - "default.handlebars->47->2750" + "default.handlebars->47->2778" ] }, { @@ -26074,11 +26123,11 @@ "zh-cht": "持續時間", "hu": "Időtartam", "xloc": [ - "default.handlebars->47->1210", + "default.handlebars->47->1211", "default.handlebars->47->287", "default.handlebars->47->289", - "default.handlebars->47->3019", - "default.handlebars->47->3045", + "default.handlebars->47->3047", + "default.handlebars->47->3073", "player.handlebars->3->18" ] }, @@ -26131,7 +26180,7 @@ "hu": "holland (Belga)", "xloc": [ "default-mobile.handlebars->11->150", - "default.handlebars->47->1798", + "default.handlebars->47->1826", "login2.handlebars->7->47" ] }, @@ -26160,7 +26209,7 @@ "hu": "holland", "xloc": [ "default-mobile.handlebars->11->149", - "default.handlebars->47->1797", + "default.handlebars->47->1825", "login2.handlebars->7->46" ] }, @@ -26577,9 +26626,9 @@ "default-mobile.handlebars->11->605", "default-mobile.handlebars->11->607", "default-mobile.handlebars->11->614", - "default.handlebars->47->1324", "default.handlebars->47->1326", - "default.handlebars->47->1333" + "default.handlebars->47->1328", + "default.handlebars->47->1335" ] }, { @@ -26606,17 +26655,17 @@ "zh-cht": "編輯裝置群", "hu": "Eszközcsoport szerkesztés", "xloc": [ - "default-mobile.handlebars->11->888", - "default-mobile.handlebars->11->891", - "default-mobile.handlebars->11->894", - "default-mobile.handlebars->11->901", - "default-mobile.handlebars->11->921", - "default.handlebars->47->2210", - "default.handlebars->47->2213", - "default.handlebars->47->2216", - "default.handlebars->47->2253", - "default.handlebars->47->2280", - "default.handlebars->47->2292" + "default-mobile.handlebars->11->916", + "default-mobile.handlebars->11->919", + "default-mobile.handlebars->11->922", + "default-mobile.handlebars->11->929", + "default-mobile.handlebars->11->949", + "default.handlebars->47->2238", + "default.handlebars->47->2241", + "default.handlebars->47->2244", + "default.handlebars->47->2281", + "default.handlebars->47->2308", + "default.handlebars->47->2320" ] }, { @@ -26643,7 +26692,7 @@ "zh-cht": "編輯裝置群功能", "hu": "Eszköz Csoport funkciók szerkesztése", "xloc": [ - "default.handlebars->47->2239" + "default.handlebars->47->2267" ] }, { @@ -26670,8 +26719,8 @@ "zh-cht": "編輯裝置群權限", "hu": "Eszközcsoport engedélyek szerkesztése", "xloc": [ - "default.handlebars->47->2277", - "default.handlebars->47->2289" + "default.handlebars->47->2305", + "default.handlebars->47->2317" ] }, { @@ -26698,7 +26747,7 @@ "zh-cht": "編輯裝置群用戶同意", "hu": "Eszközcsoport felhasználói hozzájárulások szerkesztése", "xloc": [ - "default.handlebars->47->2217" + "default.handlebars->47->2245" ] }, { @@ -26725,8 +26774,8 @@ "zh-cht": "編輯裝置筆記", "hu": "Eszköz jegyzetek szerkesztése", "xloc": [ - "default-mobile.handlebars->11->913", - "default.handlebars->47->2267" + "default-mobile.handlebars->11->941", + "default.handlebars->47->2295" ] }, { @@ -26753,8 +26802,8 @@ "zh-cht": "編輯裝置權限", "hu": "Eszköz engedélyek szerkesztése", "xloc": [ - "default.handlebars->47->2282", - "default.handlebars->47->2284" + "default.handlebars->47->2310", + "default.handlebars->47->2312" ] }, { @@ -26808,7 +26857,7 @@ "zh-cht": "編輯裝置用戶同意", "hu": "Felhasználói hozzájárulások szerkesztése", "xloc": [ - "default.handlebars->47->2219" + "default.handlebars->47->2247" ] }, { @@ -26866,7 +26915,7 @@ "default-mobile.handlebars->11->512", "default-mobile.handlebars->11->513", "default-mobile.handlebars->11->600", - "default.handlebars->47->1268", + "default.handlebars->47->1270", "default.handlebars->47->893", "default.handlebars->47->898", "default.handlebars->47->899" @@ -26896,8 +26945,8 @@ "zh-cht": "編輯筆記", "hu": "Jegyzetek szerkesztése", "xloc": [ - "default-mobile.handlebars->11->928", - "default.handlebars->47->2299" + "default-mobile.handlebars->11->956", + "default.handlebars->47->2327" ] }, { @@ -26924,7 +26973,7 @@ "zh-cht": "編輯用戶同意", "hu": "Felhasználói hozzájárulások szerkesztése", "xloc": [ - "default.handlebars->47->2218" + "default.handlebars->47->2246" ] }, { @@ -26951,7 +27000,7 @@ "zh-cht": "編輯用戶裝置群權限", "hu": "Felhasználói eszközcsoport engedélyek szerkesztése", "xloc": [ - "default.handlebars->47->2290" + "default.handlebars->47->2318" ] }, { @@ -26978,7 +27027,7 @@ "zh-cht": "編輯用戶裝置權限", "hu": "Felhasználói eszközengedélyek szerkesztése", "xloc": [ - "default.handlebars->47->2285" + "default.handlebars->47->2313" ] }, { @@ -27005,7 +27054,7 @@ "zh-cht": "編輯用戶特徵", "hu": "Felhasználói funkciók szerkesztése", "xloc": [ - "default.handlebars->47->2954" + "default.handlebars->47->2982" ] }, { @@ -27032,7 +27081,7 @@ "zh-cht": "編輯用戶群", "hu": "Felhasználói csoport szerkesztése", "xloc": [ - "default.handlebars->47->2807" + "default.handlebars->47->2835" ] }, { @@ -27059,7 +27108,7 @@ "zh-cht": "編輯用戶群裝置權限", "hu": "Felhasználói csoport eszköz engedélyeinek szerkesztése", "xloc": [ - "default.handlebars->47->2287" + "default.handlebars->47->2315" ] }, { @@ -27086,7 +27135,7 @@ "zh-cht": "編輯用戶組功能", "hu": "Felhasználói Csoportok funkciók szerkesztése", "xloc": [ - "default.handlebars->47->2800" + "default.handlebars->47->2828" ] }, { @@ -27113,7 +27162,7 @@ "zh-cht": "編輯用戶組用戶同意", "hu": "Felhasználói Csoport felhasználói hozzájárulások szerkesztése", "xloc": [ - "default.handlebars->47->2220" + "default.handlebars->47->2248" ] }, { @@ -27247,12 +27296,12 @@ "hu": "Email", "xloc": [ "default-mobile.handlebars->11->316", - "default.handlebars->47->2699", - "default.handlebars->47->2833", - "default.handlebars->47->2835", - "default.handlebars->47->2883", - "default.handlebars->47->2896", - "default.handlebars->47->2957", + "default.handlebars->47->2727", + "default.handlebars->47->2861", + "default.handlebars->47->2863", + "default.handlebars->47->2911", + "default.handlebars->47->2924", + "default.handlebars->47->2985", "default.handlebars->47->543", "login-mobile.handlebars->5->45", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -27275,7 +27324,7 @@ "pl": "Email ({0})", "de": "E-Mail ({0})", "xloc": [ - "default.handlebars->47->2109", + "default.handlebars->47->2137", "default.handlebars->47->952" ] }, @@ -27304,7 +27353,7 @@ "hu": "E-mail cím módosítása", "xloc": [ "default-mobile.handlebars->11->317", - "default.handlebars->47->1988" + "default.handlebars->47->2016" ] }, { @@ -27332,7 +27381,7 @@ "hu": "E-mail hitelesítés", "xloc": [ "default-mobile.handlebars->11->101", - "default.handlebars->47->1728" + "default.handlebars->47->1756" ] }, { @@ -27447,7 +27496,7 @@ "hu": "Email értesítés", "xloc": [ "default.handlebars->47->1088", - "default.handlebars->47->2349" + "default.handlebars->47->2377" ] }, { @@ -27499,7 +27548,7 @@ "hu": "Email megerősítés", "xloc": [ "default-mobile.handlebars->11->315", - "default.handlebars->47->1986" + "default.handlebars->47->2014" ] }, { @@ -27526,8 +27575,8 @@ "zh-cht": "不允許使用電子郵件域 \\\"{0}\\\"。只允許 ({1})", "hu": "A \\\"{0}\\\" e-mail domain nem engedélyezett. Csak ({1}) engedélyezett", "xloc": [ - "default-mobile.handlebars->11->986", - "default.handlebars->47->3189" + "default-mobile.handlebars->11->1014", + "default.handlebars->47->3217" ] }, { @@ -27581,7 +27630,7 @@ "zh-cht": "電郵未驗證", "hu": "Az e-mail cím nincs megerősítve.", "xloc": [ - "default.handlebars->47->2641" + "default.handlebars->47->2669" ] }, { @@ -27608,8 +27657,8 @@ "zh-cht": "電子郵件已驗證", "hu": "Az e-mail cím megerősítve.", "xloc": [ - "default.handlebars->47->2642", - "default.handlebars->47->2827" + "default.handlebars->47->2670", + "default.handlebars->47->2855" ] }, { @@ -27636,7 +27685,7 @@ "zh-cht": "電郵已驗證。", "hu": "Az e-mail cím megerősítve.", "xloc": [ - "default.handlebars->47->2705" + "default.handlebars->47->2733" ] }, { @@ -27663,7 +27712,7 @@ "zh-cht": "電郵未驗證", "hu": "Az e-mail cím nincs megerősítve.", "xloc": [ - "default.handlebars->47->2828" + "default.handlebars->47->2856" ] }, { @@ -27714,8 +27763,8 @@ "zh-cht": "電郵已發送。", "hu": "E-mail elküldve.", "xloc": [ - "default-mobile.handlebars->11->970", - "default.handlebars->47->3173", + "default-mobile.handlebars->11->998", + "default.handlebars->47->3201", "login-mobile.handlebars->5->2", "login.handlebars->5->2", "login2.handlebars->7->201" @@ -27798,7 +27847,7 @@ "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "hu": "E-mail megerősített és kötelező jelszó-visszaállítás szükséges.", "xloc": [ - "default.handlebars->47->2706" + "default.handlebars->47->2734" ] }, { @@ -27849,7 +27898,7 @@ "zh-cht": "電子郵件/短信/推送流量", "hu": "E-mail/SMS/Push forgalom", "xloc": [ - "default.handlebars->47->3269" + "default.handlebars->47->3297" ] }, { @@ -27963,7 +28012,7 @@ "zh-cht": "啟用邀請代碼", "hu": "Meghívókódok engedélyezése", "xloc": [ - "default.handlebars->47->2325" + "default.handlebars->47->2353" ] }, { @@ -28018,7 +28067,7 @@ "hu": "Kétfaktoros e-mail hitelesítés engedélyezése.", "xloc": [ "default-mobile.handlebars->11->103", - "default.handlebars->47->1730" + "default.handlebars->47->1758" ] }, { @@ -28072,9 +28121,10 @@ "zh-cht": "已啟用", "hu": "Engedélyezve", "xloc": [ + "default-mobile.handlebars->11->860", "default.handlebars->47->129", - "default.handlebars->47->1660", - "default.handlebars->47->3047" + "default.handlebars->47->1685", + "default.handlebars->47->3075" ] }, { @@ -28101,7 +28151,7 @@ "zh-cht": "啟用電子郵件兩因素身份驗證", "hu": "Kétfaktoros e-mail hitelesítés engedélyezve", "xloc": [ - "default.handlebars->47->2516" + "default.handlebars->47->2544" ] }, { @@ -28182,7 +28232,7 @@ "zh-cht": "編碼:RAW", "hu": "Kódolás: RAW", "xloc": [ - "default.handlebars->47->1541" + "default.handlebars->47->1549" ] }, { @@ -28209,7 +28259,15 @@ "zh-cht": "編碼:UTF8", "hu": "Kódolás: UTF8", "xloc": [ - "default.handlebars->47->1542" + "default.handlebars->47->1550" + ] + }, + { + "en": "Encryption In Progress", + "nl": "Versleuteling wordt uitgevoerd", + "xloc": [ + "default-mobile.handlebars->11->862", + "default.handlebars->47->1687" ] }, { @@ -28237,7 +28295,7 @@ "hu": "Vége", "xloc": [ "default-mobile.handlebars->11->632", - "default.handlebars->47->1382" + "default.handlebars->47->1385" ] }, { @@ -28264,7 +28322,7 @@ "zh-cht": "時間結束", "hu": "Befejezés ideje", "xloc": [ - "default.handlebars->47->3044" + "default.handlebars->47->3072" ] }, { @@ -28291,7 +28349,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”", "hu": "Befejezett asztali munkamenet \\\"{0}\\\", {1} és {2} között, {3} másodperc", "xloc": [ - "default.handlebars->47->2439" + "default.handlebars->47->2467" ] }, { @@ -28318,7 +28376,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”", "hu": "Befejezett fájl munkamenet \\\"{0}\\\" az {1}-től {2}-ig, {3} másodperc", "xloc": [ - "default.handlebars->47->2440" + "default.handlebars->47->2468" ] }, { @@ -28345,7 +28403,7 @@ "zh-cht": "已結束本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2},{3} 秒", "hu": "Befejezett helyi relay munkamenet \\\"{0}\\\" protokol {1} és {2} között, {3} másodperc", "xloc": [ - "default.handlebars->47->2549" + "default.handlebars->47->2577" ] }, { @@ -28372,7 +28430,7 @@ "zh-cht": "從 {1} 到 {2} 結束的 Messenger 會話 \\\"{0}\\\",{3} 秒", "hu": "Befejezett üzenetküldő munkamenet \\\"{0}\\\" {1} és {2} között, {3} másodperc", "xloc": [ - "default.handlebars->47->2540" + "default.handlebars->47->2568" ] }, { @@ -28399,7 +28457,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”", "hu": "Befejezett relay munkamenet \\\"{0}\\\" {1} és {2} között, {3} másodperc", "xloc": [ - "default.handlebars->47->2437" + "default.handlebars->47->2465" ] }, { @@ -28426,7 +28484,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”", "hu": "Befejezett terminál munkamenet \\\"{0}\\\" az {1}-től {2}-ig, {3} másodperc", "xloc": [ - "default.handlebars->47->2438" + "default.handlebars->47->2466" ] }, { @@ -28454,7 +28512,7 @@ "hu": "angol", "xloc": [ "default-mobile.handlebars->11->151", - "default.handlebars->47->1799", + "default.handlebars->47->1827", "login2.handlebars->7->48" ] }, @@ -28483,7 +28541,7 @@ "hu": "angol (Ausztrália)", "xloc": [ "default-mobile.handlebars->11->152", - "default.handlebars->47->1800", + "default.handlebars->47->1828", "login2.handlebars->7->49" ] }, @@ -28512,7 +28570,7 @@ "hu": "angol (Belize)", "xloc": [ "default-mobile.handlebars->11->153", - "default.handlebars->47->1801", + "default.handlebars->47->1829", "login2.handlebars->7->50" ] }, @@ -28541,7 +28599,7 @@ "hu": "angol (Kanada)", "xloc": [ "default-mobile.handlebars->11->154", - "default.handlebars->47->1802", + "default.handlebars->47->1830", "login2.handlebars->7->51" ] }, @@ -28570,7 +28628,7 @@ "hu": "angol (Írország)", "xloc": [ "default-mobile.handlebars->11->155", - "default.handlebars->47->1803", + "default.handlebars->47->1831", "login2.handlebars->7->52" ] }, @@ -28599,7 +28657,7 @@ "hu": "angol (Jamaika)", "xloc": [ "default-mobile.handlebars->11->156", - "default.handlebars->47->1804", + "default.handlebars->47->1832", "login2.handlebars->7->53" ] }, @@ -28628,7 +28686,7 @@ "hu": "angol (Új-Zéland)", "xloc": [ "default-mobile.handlebars->11->157", - "default.handlebars->47->1805", + "default.handlebars->47->1833", "login2.handlebars->7->54" ] }, @@ -28657,7 +28715,7 @@ "hu": "angol (Fülöp-szigetek)", "xloc": [ "default-mobile.handlebars->11->158", - "default.handlebars->47->1806", + "default.handlebars->47->1834", "login2.handlebars->7->55" ] }, @@ -28686,7 +28744,7 @@ "hu": "angol (Dél-Afrika)", "xloc": [ "default-mobile.handlebars->11->159", - "default.handlebars->47->1807", + "default.handlebars->47->1835", "login2.handlebars->7->56" ] }, @@ -28715,7 +28773,7 @@ "hu": "angol (Trinidad és Tobago)", "xloc": [ "default-mobile.handlebars->11->160", - "default.handlebars->47->1808", + "default.handlebars->47->1836", "login2.handlebars->7->57" ] }, @@ -28744,7 +28802,7 @@ "hu": "angol (Egyesült Királyság)", "xloc": [ "default-mobile.handlebars->11->161", - "default.handlebars->47->1809", + "default.handlebars->47->1837", "login2.handlebars->7->58" ] }, @@ -28773,7 +28831,7 @@ "hu": "angol (USA)", "xloc": [ "default-mobile.handlebars->11->162", - "default.handlebars->47->1810", + "default.handlebars->47->1838", "login2.handlebars->7->59" ] }, @@ -28802,7 +28860,7 @@ "hu": "angol (Zimbabwe)", "xloc": [ "default-mobile.handlebars->11->163", - "default.handlebars->47->1811", + "default.handlebars->47->1839", "login2.handlebars->7->60" ] }, @@ -28855,10 +28913,10 @@ "hu": "Enter", "xloc": [ "default-mobile.handlebars->11->625", - "default.handlebars->47->1375", - "default.handlebars->47->1506", - "default.handlebars->47->2025", - "default.handlebars->47->2026", + "default.handlebars->47->1378", + "default.handlebars->47->1513", + "default.handlebars->47->2053", + "default.handlebars->47->2054", "sharing.handlebars->11->55" ] }, @@ -28886,7 +28944,7 @@ "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "hu": "Adja meg az adminisztratív realm nevek vesszővel elválasztott listáját. (Ezek nem domain-ek)", "xloc": [ - "default.handlebars->47->2710" + "default.handlebars->47->2738" ] }, { @@ -28991,7 +29049,7 @@ "zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "hu": "Írja be a szöveget, majd kattintson az OK gombra a távoli beíráshoz. Győződjön meg arról, hogy a távoli kurzort a megfelelő pozícióba helyezte, mielőtt továbblép.", "xloc": [ - "default.handlebars->47->1406" + "default.handlebars->47->1409" ] }, { @@ -29122,7 +29180,7 @@ "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。", "hu": "Írja be az SMS fogadásra alkalmas telefonszámát. Az ellenőrzést követően a szám felhasználható bejelentkezés ellenőrzésére és egyéb értesítésekre.", "xloc": [ - "default.handlebars->47->1694" + "default.handlebars->47->1722" ] }, { @@ -29133,7 +29191,7 @@ "pl": "Wprowadź swoją usługę przesyłania wiadomości. Po weryfikacji, ten serwer może wysyłać weryfikację logowania i inne powiadomienia.", "de": "Geben Sie ihren Messengerdienst und Nutzernamen ein. Sobald Sie verifiziert sind, kann dieser Server Ihnen Loginverifikationen und andere Benachrichtigungen senden.", "xloc": [ - "default.handlebars->47->1700" + "default.handlebars->47->1728" ] }, { @@ -29287,8 +29345,8 @@ "zh-cht": "錯誤,邀請碼 \\\"{0}\\\" 已在使用中。", "hu": "Hiba, a \\\"{0}\\\" meghívókód már használatban van.", "xloc": [ - "default-mobile.handlebars->11->978", - "default.handlebars->47->3181" + "default-mobile.handlebars->11->1006", + "default.handlebars->47->3209" ] }, { @@ -29315,8 +29373,8 @@ "zh-cht": "錯誤,密碼未更改。", "hu": "Hiba, a jelszó nem módosult.", "xloc": [ - "default-mobile.handlebars->11->975", - "default.handlebars->47->3178" + "default-mobile.handlebars->11->1003", + "default.handlebars->47->3206" ] }, { @@ -29343,8 +29401,8 @@ "zh-cht": "錯誤,無法更改為常用密碼。", "hu": "Hiba, nem lehet átváltani a gyakran használt jelszóra.", "xloc": [ - "default-mobile.handlebars->11->974", - "default.handlebars->47->3177" + "default-mobile.handlebars->11->1002", + "default.handlebars->47->3205" ] }, { @@ -29371,8 +29429,8 @@ "zh-cht": "錯誤,無法更改為以前使用的密碼。", "hu": "Hiba, nem lehet átváltani a korábban használt jelszóra.", "xloc": [ - "default-mobile.handlebars->11->973", - "default.handlebars->47->3176" + "default-mobile.handlebars->11->1001", + "default.handlebars->47->3204" ] }, { @@ -29427,12 +29485,13 @@ "hu": "Escape", "xloc": [ "default-mobile.handlebars->11->626", - "default.handlebars->47->1376" + "default.handlebars->47->1379" ] }, { "en": "Espace", "nl": "Ruimte", + "pl": "Przestrzeń", "xloc": [ "default-mobile.handlebars->11->633" ] @@ -29462,7 +29521,7 @@ "hu": "eszperantó", "xloc": [ "default-mobile.handlebars->11->164", - "default.handlebars->47->1812", + "default.handlebars->47->1840", "login2.handlebars->7->61" ] }, @@ -29515,7 +29574,7 @@ "hu": "észt", "xloc": [ "default-mobile.handlebars->11->165", - "default.handlebars->47->1813", + "default.handlebars->47->1841", "login2.handlebars->7->62" ] }, @@ -29567,7 +29626,7 @@ "zh-cht": "事件詳情", "hu": "Az esemény részletei", "xloc": [ - "default.handlebars->47->1550" + "default.handlebars->47->1558" ] }, { @@ -29594,7 +29653,7 @@ "zh-cht": "事件列表輸出", "hu": "Eseménylista exportálás", "xloc": [ - "default.handlebars->47->2616" + "default.handlebars->47->2644" ] }, { @@ -29606,7 +29665,7 @@ "hu": "Esemény rekordok", "de": "Eventaufzeichnungen", "xloc": [ - "default.handlebars->47->3132" + "default.handlebars->47->3160" ] }, { @@ -29800,8 +29859,8 @@ "zh-cht": "到期時間", "hu": "Lejárati idő", "xloc": [ - "default.handlebars->47->1205", - "default.handlebars->47->1976", + "default.handlebars->47->1206", + "default.handlebars->47->2004", "default.handlebars->47->292" ] }, @@ -29856,7 +29915,7 @@ "zh-cht": "過期{0}", "hu": "Lejárat {0}", "xloc": [ - "default.handlebars->47->2039", + "default.handlebars->47->2067", "sharing.handlebars->11->95" ] }, @@ -29911,7 +29970,7 @@ "zh-cht": "擴充式ASCII", "hu": "Kiterjesztett ASCII", "xloc": [ - "default.handlebars->47->1479", + "default.handlebars->47->1482", "sharing.handlebars->11->34" ] }, @@ -29967,7 +30026,7 @@ "zh-cht": "外部", "hu": "Külső", "xloc": [ - "default.handlebars->47->3249" + "default.handlebars->47->3277" ] }, { @@ -29994,7 +30053,7 @@ "zh-cht": "FIDO 密鑰", "hu": "FIDO kulcs", "xloc": [ - "default.handlebars->47->3112" + "default.handlebars->47->3140" ] }, { @@ -30049,7 +30108,7 @@ "hu": "FYRO macedón", "xloc": [ "default-mobile.handlebars->11->215", - "default.handlebars->47->1863", + "default.handlebars->47->1891", "login2.handlebars->7->112" ] }, @@ -30061,8 +30120,8 @@ "pl": "Facebook", "de": "Facebook", "xloc": [ - "default.handlebars->47->1714", - "default.handlebars->47->2929" + "default.handlebars->47->1742", + "default.handlebars->47->2957" ] }, { @@ -30090,7 +30149,7 @@ "hu": "feröer-szigeteki", "xloc": [ "default-mobile.handlebars->11->166", - "default.handlebars->47->1814", + "default.handlebars->47->1842", "login2.handlebars->7->63" ] }, @@ -30145,8 +30204,8 @@ "zh-cht": "更改電子郵件地址失敗,另一個帳戶已在使用:{0}。", "hu": "Nem sikerült megváltoztatni az e-mail címet, mert egy másik fiók már használja: {0}.", "xloc": [ - "default-mobile.handlebars->11->969", - "default.handlebars->47->3172" + "default-mobile.handlebars->11->997", + "default.handlebars->47->3200" ] }, { @@ -30226,7 +30285,7 @@ "zh-cht": "本地用戶拒絕後無法啟動遠程桌面", "hu": "A helyi felhasználó elutasítása után nem sikerült elindítani a távoli asztalt", "xloc": [ - "default.handlebars->47->2462" + "default.handlebars->47->2490" ] }, { @@ -30277,7 +30336,7 @@ "zh-cht": "本地用戶拒絕後無法啟動遠程文件", "hu": "A helyi felhasználó elutasítása után nem sikerült elindítani a távoli fájl elérést", "xloc": [ - "default.handlebars->47->2469" + "default.handlebars->47->2497" ] }, { @@ -30329,7 +30388,7 @@ "hu": "Sikertelen távoli terminál munkamenet indítása, {0} ({1})", "xloc": [ "default-mobile.handlebars->11->617", - "default.handlebars->47->1336", + "default.handlebars->47->1339", "sharing.handlebars->11->30", "sharing.handlebars->11->8" ] @@ -30359,7 +30418,7 @@ "hu": "fárszi (perzsa)", "xloc": [ "default-mobile.handlebars->11->167", - "default.handlebars->47->1815", + "default.handlebars->47->1843", "login2.handlebars->7->64" ] }, @@ -30416,9 +30475,9 @@ "zh-cht": "功能", "hu": "Funkciók", "xloc": [ - "default.handlebars->47->2093", - "default.handlebars->47->2763", - "default.handlebars->47->2854" + "default.handlebars->47->2121", + "default.handlebars->47->2791", + "default.handlebars->47->2882" ] }, { @@ -30446,7 +30505,7 @@ "hu": "fidzsi", "xloc": [ "default-mobile.handlebars->11->168", - "default.handlebars->47->1816", + "default.handlebars->47->1844", "login2.handlebars->7->65" ] }, @@ -30502,8 +30561,8 @@ "hu": "Fájl szerkesztő", "xloc": [ "default-mobile.handlebars->11->698", - "default.handlebars->47->1518", - "default.handlebars->47->2418", + "default.handlebars->47->1525", + "default.handlebars->47->2446", "default.handlebars->47->826", "sharing.handlebars->11->66" ] @@ -30556,8 +30615,10 @@ "zh-cht": "檔案操作", "hu": "Fáj Művelet", "xloc": [ - "default.handlebars->47->1494", - "default.handlebars->47->1496", + "default.handlebars->47->1497", + "default.handlebars->47->1499", + "default.handlebars->47->1501", + "default.handlebars->47->1503", "sharing.handlebars->11->46", "sharing.handlebars->11->48" ] @@ -30591,8 +30652,11 @@ }, { "en": "File System", + "nl": "Bestandssysteem", + "pl": "System Plików", "xloc": [ - "default.handlebars->47->1658" + "default-mobile.handlebars->11->858", + "default.handlebars->47->1683" ] }, { @@ -30619,7 +30683,7 @@ "zh-cht": "文件傳輸", "hu": "Fálj átvitel", "xloc": [ - "default.handlebars->47->3025" + "default.handlebars->47->3053" ] }, { @@ -30646,7 +30710,7 @@ "zh-cht": "FileSystemDriver", "hu": "FileSystemDriver", "xloc": [ - "default.handlebars->47->1423" + "default.handlebars->47->1426" ] }, { @@ -30676,13 +30740,13 @@ "default-mobile.handlebars->11->423", "default-mobile.handlebars->11->563", "default.handlebars->47->1064", - "default.handlebars->47->1176", - "default.handlebars->47->2148", - "default.handlebars->47->2228", - "default.handlebars->47->3032", - "default.handlebars->47->3092", - "default.handlebars->47->3142", - "default.handlebars->47->3237", + "default.handlebars->47->1177", + "default.handlebars->47->2176", + "default.handlebars->47->2256", + "default.handlebars->47->3060", + "default.handlebars->47->3120", + "default.handlebars->47->3170", + "default.handlebars->47->3265", "default.handlebars->47->457", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles", @@ -30740,9 +30804,9 @@ "zh-cht": "檔案通知", "hu": "Fájl kapcsolat értesítés", "xloc": [ - "default.handlebars->47->2101", - "default.handlebars->47->2771", - "default.handlebars->47->2876", + "default.handlebars->47->2129", + "default.handlebars->47->2799", + "default.handlebars->47->2904", "default.handlebars->47->944" ] }, @@ -30770,9 +30834,9 @@ "zh-cht": "檔案提示", "hu": "Fájl kapcsolat engedélykérés", "xloc": [ - "default.handlebars->47->2100", - "default.handlebars->47->2770", - "default.handlebars->47->2875", + "default.handlebars->47->2128", + "default.handlebars->47->2798", + "default.handlebars->47->2903", "default.handlebars->47->943" ] }, @@ -30801,7 +30865,7 @@ "hu": "Szűrő", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1", - "default.handlebars->47->1502", + "default.handlebars->47->1509", "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", @@ -30887,7 +30951,7 @@ "zh-cht": "查找文件", "hu": "Fájlok keresése", "xloc": [ - "default.handlebars->47->1505", + "default.handlebars->47->1512", "sharing.handlebars->11->54" ] }, @@ -30915,7 +30979,7 @@ "zh-cht": "已完成錄製會話 \\\"{0}\\\",{1} 秒", "hu": "Felvétel kész, \\\"{0}\\\", {1} másodperc", "xloc": [ - "default.handlebars->47->2574" + "default.handlebars->47->2602" ] }, { @@ -30942,7 +31006,7 @@ "zh-cht": "錄製會話已完成,{0}秒", "hu": "Felvétel kész, {0} másodperc", "xloc": [ - "default.handlebars->47->2435" + "default.handlebars->47->2463" ] }, { @@ -30970,7 +31034,7 @@ "hu": "finn", "xloc": [ "default-mobile.handlebars->11->169", - "default.handlebars->47->1817", + "default.handlebars->47->1845", "login2.handlebars->7->66" ] }, @@ -31028,15 +31092,16 @@ "zh-cht": "防火牆未激活", "hu": "Tűzfal nincs bekapcsolva", "xloc": [ - "default.handlebars->47->2365", - "default.handlebars->47->2379" + "default.handlebars->47->2393", + "default.handlebars->47->2407" ] }, { "en": "First Failure", "nl": "Eerste fout", + "pl": "Pierwsza Awaria", "xloc": [ - "default.handlebars->47->1434" + "default.handlebars->47->1437" ] }, { @@ -31095,7 +31160,7 @@ "zh-cht": "標誌", "hu": "Jelzők", "xloc": [ - "default.handlebars->47->2589" + "default.handlebars->47->2617" ] }, { @@ -31123,7 +31188,7 @@ "hu": "Villog", "xloc": [ "default-mobile.handlebars->11->567", - "default.handlebars->47->1218" + "default.handlebars->47->1220" ] }, { @@ -31422,8 +31487,8 @@ "zh-cht": "下次登入時強制重置密碼。", "hu": "A következő bejelentkezéskor kötelező a jelszót megváltozgatni.", "xloc": [ - "default.handlebars->47->2704", - "default.handlebars->47->2968" + "default.handlebars->47->2732", + "default.handlebars->47->2996" ] }, { @@ -31450,7 +31515,7 @@ "zh-cht": "強行斷開用戶 {0} 的桌面會話", "hu": "A {0} felhasználó asztali munkamenetének erőszakos megszakítása", "xloc": [ - "default.handlebars->47->2562" + "default.handlebars->47->2590" ] }, { @@ -31477,7 +31542,7 @@ "zh-cht": "強制斷開用戶 {0} 的文件會話", "hu": "A {0} felhasználó fájlmunkamenetének erőszakos szétkapcsolása", "xloc": [ - "default.handlebars->47->2564" + "default.handlebars->47->2592" ] }, { @@ -31504,7 +31569,7 @@ "zh-cht": "強制斷開用戶 {0} 的路由會話", "hu": "A {0} felhasználó átjárómunkamenetének erőszakos szétkapcsolása", "xloc": [ - "default.handlebars->47->2565" + "default.handlebars->47->2593" ] }, { @@ -31531,7 +31596,7 @@ "zh-cht": "強制斷開用戶 {0} 的終端會話", "hu": "A {0} felhasználó terminál munkamenetének erőszakos szétkapcsolása", "xloc": [ - "default.handlebars->47->2563" + "default.handlebars->47->2591" ] }, { @@ -31642,7 +31707,7 @@ "zh-cht": "格式化", "hu": "Format", "xloc": [ - "default.handlebars->47->2607" + "default.handlebars->47->2635" ] }, { @@ -31722,8 +31787,8 @@ "zh-cht": "自由", "hu": "Free", "xloc": [ - "default.handlebars->47->3195", - "default.handlebars->47->3197" + "default.handlebars->47->3223", + "default.handlebars->47->3225" ] }, { @@ -31733,8 +31798,8 @@ "hu": "Ingyenes szolgáltatás az ntfy.sh oldalon", "pl": "Darmowa usługa z ntfy.sh", "xloc": [ - "default.handlebars->47->1717", - "default.handlebars->47->2932" + "default.handlebars->47->1745", + "default.handlebars->47->2960" ] }, { @@ -31790,7 +31855,7 @@ "hu": "francia (Belgium)", "xloc": [ "default-mobile.handlebars->11->171", - "default.handlebars->47->1819", + "default.handlebars->47->1847", "login2.handlebars->7->68" ] }, @@ -31819,7 +31884,7 @@ "hu": "francia (Kanada)", "xloc": [ "default-mobile.handlebars->11->172", - "default.handlebars->47->1820", + "default.handlebars->47->1848", "login2.handlebars->7->69" ] }, @@ -31848,7 +31913,7 @@ "hu": "francia (Franciaország)", "xloc": [ "default-mobile.handlebars->11->173", - "default.handlebars->47->1821", + "default.handlebars->47->1849", "login2.handlebars->7->70" ] }, @@ -31877,7 +31942,7 @@ "hu": "francia (Luxembourg)", "xloc": [ "default-mobile.handlebars->11->174", - "default.handlebars->47->1822", + "default.handlebars->47->1850", "login2.handlebars->7->71" ] }, @@ -31906,7 +31971,7 @@ "hu": "francia (Monaco)", "xloc": [ "default-mobile.handlebars->11->175", - "default.handlebars->47->1823", + "default.handlebars->47->1851", "login2.handlebars->7->72" ] }, @@ -31935,7 +32000,7 @@ "hu": "francia", "xloc": [ "default-mobile.handlebars->11->170", - "default.handlebars->47->1818", + "default.handlebars->47->1846", "login2.handlebars->7->67" ] }, @@ -31964,7 +32029,7 @@ "hu": "francia (Svájc)", "xloc": [ "default-mobile.handlebars->11->176", - "default.handlebars->47->1824", + "default.handlebars->47->1852", "login2.handlebars->7->73" ] }, @@ -31993,7 +32058,7 @@ "hu": "fríz", "xloc": [ "default-mobile.handlebars->11->177", - "default.handlebars->47->1825", + "default.handlebars->47->1853", "login2.handlebars->7->74" ] }, @@ -32022,7 +32087,7 @@ "hu": "friuli", "xloc": [ "default-mobile.handlebars->11->178", - "default.handlebars->47->1826", + "default.handlebars->47->1854", "login2.handlebars->7->75" ] }, @@ -32051,12 +32116,12 @@ "hu": "Teljes körű adminisztrátor", "xloc": [ "default-mobile.handlebars->11->343", - "default-mobile.handlebars->11->882", - "default-mobile.handlebars->11->900", - "default-mobile.handlebars->11->920", - "default.handlebars->47->2032", - "default.handlebars->47->2252", - "default.handlebars->47->2716" + "default-mobile.handlebars->11->910", + "default-mobile.handlebars->11->928", + "default-mobile.handlebars->11->948", + "default.handlebars->47->2060", + "default.handlebars->47->2280", + "default.handlebars->47->2744" ] }, { @@ -32083,7 +32148,7 @@ "zh-cht": "完整管理員(保留所有權利)", "hu": "Teljes jogú adminisztrátor (minden jog)", "xloc": [ - "default.handlebars->47->2291" + "default.handlebars->47->2319" ] }, { @@ -32245,7 +32310,7 @@ "zh-cht": "完整管理員", "hu": "Teljes körű adminisztrátor", "xloc": [ - "default.handlebars->47->2821" + "default.handlebars->47->2849" ] }, { @@ -32272,8 +32337,24 @@ "zh-cht": "全自動的", "hu": "Teljesen automatikus", "xloc": [ - "default.handlebars->47->2121", - "default.handlebars->47->2182" + "default.handlebars->47->2149", + "default.handlebars->47->2210" + ] + }, + { + "en": "Fully Decrypted", + "nl": "Volledig gedecodeerd", + "xloc": [ + "default-mobile.handlebars->11->861", + "default.handlebars->47->1686" + ] + }, + { + "en": "Fully Encrypted", + "nl": "Volledig gecodeerd", + "xloc": [ + "default-mobile.handlebars->11->863", + "default.handlebars->47->1688" ] }, { @@ -32327,8 +32408,8 @@ "zh-cht": "GPU", "hu": "GPU", "xloc": [ - "default-mobile.handlebars->11->816", - "default.handlebars->47->1630" + "default-mobile.handlebars->11->815", + "default.handlebars->47->1640" ] }, { @@ -32356,7 +32437,7 @@ "hu": "gael (Ír)", "xloc": [ "default-mobile.handlebars->11->180", - "default.handlebars->47->1828", + "default.handlebars->47->1856", "login2.handlebars->7->77" ] }, @@ -32385,7 +32466,7 @@ "hu": "gael (Skót)", "xloc": [ "default-mobile.handlebars->11->179", - "default.handlebars->47->1827", + "default.handlebars->47->1855", "login2.handlebars->7->76" ] }, @@ -32414,7 +32495,7 @@ "hu": "galíciai", "xloc": [ "default-mobile.handlebars->11->181", - "default.handlebars->47->1829", + "default.handlebars->47->1857", "login2.handlebars->7->78" ] }, @@ -32468,8 +32549,8 @@ "zh-cht": "網關:{0}", "hu": "Átjáró: {0}", "xloc": [ - "default-mobile.handlebars->11->780", - "default.handlebars->47->1594" + "default-mobile.handlebars->11->779", + "default.handlebars->47->1604" ] }, { @@ -32610,7 +32691,7 @@ "zh-cht": "生成報告", "hu": "Jelentés készítése", "xloc": [ - "default.handlebars->47->3073" + "default.handlebars->47->3101" ] }, { @@ -32665,7 +32746,7 @@ "hu": "grúz", "xloc": [ "default-mobile.handlebars->11->182", - "default.handlebars->47->1830", + "default.handlebars->47->1858", "login2.handlebars->7->79" ] }, @@ -32694,7 +32775,7 @@ "hu": "német (Ausztria)", "xloc": [ "default-mobile.handlebars->11->184", - "default.handlebars->47->1832", + "default.handlebars->47->1860", "login2.handlebars->7->81" ] }, @@ -32723,7 +32804,7 @@ "hu": "német (Németország)", "xloc": [ "default-mobile.handlebars->11->185", - "default.handlebars->47->1833", + "default.handlebars->47->1861", "login2.handlebars->7->82" ] }, @@ -32752,7 +32833,7 @@ "hu": "német (Liechtenstein)", "xloc": [ "default-mobile.handlebars->11->186", - "default.handlebars->47->1834", + "default.handlebars->47->1862", "login2.handlebars->7->83" ] }, @@ -32781,7 +32862,7 @@ "hu": "német (Luxemburg)", "xloc": [ "default-mobile.handlebars->11->187", - "default.handlebars->47->1835", + "default.handlebars->47->1863", "login2.handlebars->7->84" ] }, @@ -32810,7 +32891,7 @@ "hu": "német", "xloc": [ "default-mobile.handlebars->11->183", - "default.handlebars->47->1831", + "default.handlebars->47->1859", "login2.handlebars->7->80" ] }, @@ -32839,7 +32920,7 @@ "hu": "német (Svájc)", "xloc": [ "default-mobile.handlebars->11->188", - "default.handlebars->47->1836", + "default.handlebars->47->1864", "login2.handlebars->7->85" ] }, @@ -32867,7 +32948,7 @@ "zh-cht": "獲取剪貼板", "hu": "Vágólap lekérés", "xloc": [ - "default.handlebars->47->1408" + "default.handlebars->47->1411" ] }, { @@ -32949,12 +33030,13 @@ "zh-cht": "正在獲取剪貼板內容,{0}個字節", "hu": "A vágólap tartalmának lekérése, {0} bájt", "xloc": [ - "default.handlebars->47->2449" + "default.handlebars->47->2477" ] }, { "en": "Gigabyte", "nl": "Gigabyte", + "pl": "Gigabajty", "xloc": [ "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown->9" ] @@ -32962,8 +33044,9 @@ { "en": "Go To Folder", "nl": "Ga naar map", + "pl": "Przejdź do Folderu", "xloc": [ - "default.handlebars->47->1501" + "default.handlebars->47->1508" ] }, { @@ -33073,6 +33156,7 @@ { "en": "GoTo", "nl": "GoTo", + "pl": "IdźDo", "xloc": [ "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3" ] @@ -33101,7 +33185,7 @@ "zh-cht": "好", "hu": "megfelelő", "xloc": [ - "default.handlebars->47->2028" + "default.handlebars->47->2056" ] }, { @@ -33160,8 +33244,8 @@ "zh-cht": "Google雲端硬盤備份", "hu": "Google Drive Biztonsági mentés", "xloc": [ - "default.handlebars->47->2049", - "default.handlebars->47->2052", + "default.handlebars->47->2077", + "default.handlebars->47->2080", "default.handlebars->47->320" ] }, @@ -33189,7 +33273,7 @@ "zh-cht": "Google雲端硬盤控制台", "hu": "Google Drive Consol", "xloc": [ - "default.handlebars->47->2046" + "default.handlebars->47->2074" ] }, { @@ -33243,7 +33327,7 @@ "zh-cht": "Google雲端硬盤備份當前處於活動狀態。", "hu": "A Google Drive biztonsági mentése jelenleg aktív.", "xloc": [ - "default.handlebars->47->2050" + "default.handlebars->47->2078" ] }, { @@ -33295,7 +33379,7 @@ "hu": "görög", "xloc": [ "default-mobile.handlebars->11->189", - "default.handlebars->47->1837", + "default.handlebars->47->1865", "login2.handlebars->7->86" ] }, @@ -33324,7 +33408,7 @@ "hu": "Csoport", "xloc": [ "default-mobile.handlebars->11->478", - "default.handlebars->47->3089", + "default.handlebars->47->3117", "default.handlebars->47->861", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] @@ -33353,8 +33437,8 @@ "zh-cht": "集體指令", "hu": "Művelet a kijelölteken", "xloc": [ - "default.handlebars->47->2657", - "default.handlebars->47->2740", + "default.handlebars->47->2685", + "default.handlebars->47->2768", "default.handlebars->47->723", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -33385,7 +33469,7 @@ "zh-cht": "通過...分群", "hu": "Csoportosítás", "xloc": [ - "default.handlebars->47->2603" + "default.handlebars->47->2631" ] }, { @@ -33413,7 +33497,7 @@ "hu": "Csoport azonosító", "xloc": [ "agent-translations.json", - "default.handlebars->47->2757" + "default.handlebars->47->2785" ] }, { @@ -33440,7 +33524,7 @@ "zh-cht": "群組成員", "hu": "Csoporttagok", "xloc": [ - "default.handlebars->47->2782" + "default.handlebars->47->2810" ] }, { @@ -33479,7 +33563,7 @@ "hu": "Csoport típus", "de": "Gruppentyp", "xloc": [ - "default.handlebars->47->2758" + "default.handlebars->47->2786" ] }, { @@ -33506,8 +33590,8 @@ "zh-cht": "通過...分群", "hu": "Csoportosítás", "xloc": [ - "default.handlebars->47->3059", - "default.handlebars->47->3062" + "default.handlebars->47->3087", + "default.handlebars->47->3090" ] }, { @@ -33534,7 +33618,7 @@ "zh-cht": "團隊名字", "hu": "Csoport név", "xloc": [ - "default.handlebars->47->2587" + "default.handlebars->47->2615" ] }, { @@ -33561,7 +33645,7 @@ "zh-cht": "用戶{0}的群組權限。", "hu": "Csoportengedélyek a(z) {0} felhasználó számára.", "xloc": [ - "default.handlebars->47->2251" + "default.handlebars->47->2279" ] }, { @@ -33588,7 +33672,7 @@ "zh-cht": "{0}的群組權限。", "hu": "Csoportengedélyek a következőhöz: {0}.", "xloc": [ - "default.handlebars->47->2250" + "default.handlebars->47->2278" ] }, { @@ -33696,7 +33780,7 @@ "zh-cht": "來賓", "hu": "Vendég", "xloc": [ - "default.handlebars->47->3079" + "default.handlebars->47->3107" ] }, { @@ -33723,7 +33807,7 @@ "zh-cht": "來賓姓名", "hu": "Vendég neve", "xloc": [ - "default.handlebars->47->1173", + "default.handlebars->47->1174", "default.handlebars->47->282" ] }, @@ -33779,7 +33863,7 @@ "zh-cht": "嘉賓分享", "hu": "Vendégmegosztás", "xloc": [ - "default.handlebars->47->2259" + "default.handlebars->47->2287" ] }, { @@ -33807,7 +33891,7 @@ "hu": "gudzsaráti", "xloc": [ "default-mobile.handlebars->11->190", - "default.handlebars->47->1838", + "default.handlebars->47->1866", "login2.handlebars->7->87" ] }, @@ -33837,8 +33921,8 @@ "xloc": [ "default-mobile.handlebars->11->547", "default.handlebars->47->1014", - "default.handlebars->47->1180", - "default.handlebars->47->3233", + "default.handlebars->47->1181", + "default.handlebars->47->3261", "default.handlebars->47->434" ] }, @@ -33917,7 +34001,7 @@ "hu": "HTTP/", "xloc": [ "default.handlebars->47->1068", - "default.handlebars->47->2152" + "default.handlebars->47->2180" ] }, { @@ -33957,7 +34041,7 @@ "xloc": [ "default-mobile.handlebars->11->548", "default.handlebars->47->1015", - "default.handlebars->47->1181", + "default.handlebars->47->1182", "default.handlebars->47->435" ] }, @@ -34036,7 +34120,7 @@ "hu": "HTTPS/", "xloc": [ "default.handlebars->47->1069", - "default.handlebars->47->2153" + "default.handlebars->47->2181" ] }, { @@ -34119,7 +34203,7 @@ "hu": "haiti-szigeteki", "xloc": [ "default-mobile.handlebars->11->191", - "default.handlebars->47->1839", + "default.handlebars->47->1867", "login2.handlebars->7->88" ] }, @@ -34131,8 +34215,8 @@ "pl": "Obsługa", "de": "Nutzername", "xloc": [ - "default.handlebars->47->1710", - "default.handlebars->47->2925" + "default.handlebars->47->1738", + "default.handlebars->47->2953" ] }, { @@ -34213,8 +34297,8 @@ "zh-cht": "強行斷開代理", "hu": "Agent kényszerített lecsatlakoztatása", "xloc": [ - "default-mobile.handlebars->11->860", - "default.handlebars->47->1686" + "default-mobile.handlebars->11->888", + "default.handlebars->47->1714" ] }, { @@ -34241,7 +34325,7 @@ "zh-cht": "硬件一次性密碼", "hu": "Hardveres OTP", "xloc": [ - "default.handlebars->47->3114" + "default.handlebars->47->3142" ] }, { @@ -34268,7 +34352,7 @@ "zh-cht": "堆總數", "hu": "Teljes Heap", "xloc": [ - "default.handlebars->47->3251" + "default.handlebars->47->3279" ] }, { @@ -34295,7 +34379,7 @@ "zh-cht": "堆使用", "hu": "Használ Heap", "xloc": [ - "default.handlebars->47->3250" + "default.handlebars->47->3278" ] }, { @@ -34323,7 +34407,7 @@ "hu": "héber", "xloc": [ "default-mobile.handlebars->11->192", - "default.handlebars->47->1840", + "default.handlebars->47->1868", "login2.handlebars->7->89" ] }, @@ -34430,7 +34514,7 @@ "zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}", "hu": "Segítséget kért {0} felhasználó, részletek: {1}", "xloc": [ - "default.handlebars->47->2526" + "default.handlebars->47->2554" ] }, { @@ -34500,8 +34584,8 @@ "xloc": [ "default.handlebars->47->1091", "default.handlebars->47->1095", - "default.handlebars->47->2352", - "default.handlebars->47->2356" + "default.handlebars->47->2380", + "default.handlebars->47->2384" ] }, { @@ -34529,7 +34613,7 @@ "hu": "Segítsen a MeshCentral fordításában", "xloc": [ "default-mobile.handlebars->11->307", - "default.handlebars->47->1955" + "default.handlebars->47->1983" ] }, { @@ -34669,7 +34753,7 @@ "hu": "hindi", "xloc": [ "default-mobile.handlebars->11->193", - "default.handlebars->47->1841", + "default.handlebars->47->1869", "login2.handlebars->7->90" ] }, @@ -34722,7 +34806,7 @@ "hu": "1 bejegyzés megtartása másoláshoz", "xloc": [ "default-mobile.handlebars->11->707", - "default.handlebars->47->1528", + "default.handlebars->47->1536", "sharing.handlebars->11->76" ] }, @@ -34751,7 +34835,7 @@ "hu": "1 bejegyzés megtartása áthelyezéshez", "xloc": [ "default-mobile.handlebars->11->711", - "default.handlebars->47->1532", + "default.handlebars->47->1540", "sharing.handlebars->11->80" ] }, @@ -34780,7 +34864,7 @@ "hu": "{0} bejegyzés megtartása másoláshoz", "xloc": [ "default-mobile.handlebars->11->705", - "default.handlebars->47->1526", + "default.handlebars->47->1534", "sharing.handlebars->11->74" ] }, @@ -34809,7 +34893,7 @@ "hu": "{0} bejegyzés megtartása áthehyezéshez", "xloc": [ "default-mobile.handlebars->11->709", - "default.handlebars->47->1530", + "default.handlebars->47->1538", "sharing.handlebars->11->78" ] }, @@ -34838,7 +34922,7 @@ "hu": "{0} bejegyzés megtartása {1} {2}", "xloc": [ "default-mobile.handlebars->11->367", - "default.handlebars->47->2422" + "default.handlebars->47->2450" ] }, { @@ -34866,7 +34950,7 @@ "hu": "Home", "xloc": [ "default-mobile.handlebars->11->631", - "default.handlebars->47->1381" + "default.handlebars->47->1384" ] }, { @@ -34897,12 +34981,12 @@ "default-mobile.handlebars->11->481", "default-mobile.handlebars->11->483", "default-mobile.handlebars->11->610", - "default-mobile.handlebars->11->771", - "default-mobile.handlebars->11->875", - "default.handlebars->47->1329", - "default.handlebars->47->1575", - "default.handlebars->47->2021", - "default.handlebars->47->2082", + "default-mobile.handlebars->11->770", + "default-mobile.handlebars->11->903", + "default.handlebars->47->1331", + "default.handlebars->47->1585", + "default.handlebars->47->2049", + "default.handlebars->47->2110", "default.handlebars->47->492", "default.handlebars->47->501", "default.handlebars->47->866" @@ -34932,12 +35016,13 @@ "zh-cht": "主機名同步", "hu": "Gépnév szinkronizálás", "xloc": [ - "default.handlebars->47->2089" + "default.handlebars->47->2117" ] }, { "en": "Human Readable", "nl": "Human Readable", + "pl": "Czytelnie dla człowieka", "xloc": [ "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown->1" ] @@ -34967,7 +35052,7 @@ "hu": "magyar", "xloc": [ "default-mobile.handlebars->11->194", - "default.handlebars->47->1842", + "default.handlebars->47->1870", "login2.handlebars->7->91" ] }, @@ -34995,7 +35080,7 @@ "zh-cht": "服務器所需的混合", "hu": "Hibrid szükséges a szerverhez", "xloc": [ - "default.handlebars->47->1346" + "default.handlebars->47->1349" ] }, { @@ -35022,8 +35107,8 @@ "zh-cht": "IP地址", "hu": "IP Cím", "xloc": [ - "default.handlebars->47->3084", - "default.handlebars->47->3120" + "default.handlebars->47->3112", + "default.handlebars->47->3148" ] }, { @@ -35140,7 +35225,7 @@ "hu": "IP helyadatokat tartalmazó rekordok", "de": "Aufzeichnungen zu IP Lokationsinformationen", "xloc": [ - "default.handlebars->47->3126" + "default.handlebars->47->3154" ] }, { @@ -35198,7 +35283,7 @@ "zh-cht": "IP-KVM / 電源設備", "hu": "IP-KVM / Power eszköz", "xloc": [ - "default.handlebars->47->2011" + "default.handlebars->47->2039" ] }, { @@ -35225,7 +35310,7 @@ "zh-cht": "IP-KVM / 通過代理中繼的電源設備", "hu": "IP-KVM / Power eszköz Agenten keresztül", "xloc": [ - "default.handlebars->47->2012" + "default.handlebars->47->2040" ] }, { @@ -35252,8 +35337,8 @@ "zh-cht": "IP-KVM 設備", "hu": "IP-KVM eszköz", "xloc": [ - "default-mobile.handlebars->11->867", - "default.handlebars->47->2074" + "default-mobile.handlebars->11->895", + "default.handlebars->47->2102" ] }, { @@ -35280,8 +35365,8 @@ "zh-cht": "通過代理中繼的 IP-KVM 設備", "hu": "IP-KVM eszköz továbbítva ügynökön keresztül", "xloc": [ - "default-mobile.handlebars->11->868", - "default.handlebars->47->2075" + "default-mobile.handlebars->11->896", + "default.handlebars->47->2103" ] }, { @@ -35390,9 +35475,9 @@ "zh-cht": "IP:{0}", "hu": "IP: {0}", "xloc": [ - "default-mobile.handlebars->11->778", - "default.handlebars->47->1585", - "default.handlebars->47->1592" + "default-mobile.handlebars->11->777", + "default.handlebars->47->1595", + "default.handlebars->47->1602" ] }, { @@ -35419,7 +35504,7 @@ "zh-cht": "IP:{0},遮罩:{1},閘道:{2}", "hu": "IP: {0}, Hálózati maszk: {1}, Átjáró: {2}", "xloc": [ - "default.handlebars->47->1583" + "default.handlebars->47->1593" ] }, { @@ -35446,10 +35531,10 @@ "zh-cht": "IPv4層", "hu": "IPv4 réteg", "xloc": [ - "default-mobile.handlebars->11->781", - "default.handlebars->47->1582", - "default.handlebars->47->1584", - "default.handlebars->47->1595" + "default-mobile.handlebars->11->780", + "default.handlebars->47->1592", + "default.handlebars->47->1594", + "default.handlebars->47->1605" ] }, { @@ -35560,8 +35645,8 @@ "zh-cht": "IPv6層", "hu": "IPv6 réteg", "xloc": [ - "default-mobile.handlebars->11->783", - "default.handlebars->47->1597" + "default-mobile.handlebars->11->782", + "default.handlebars->47->1607" ] }, { @@ -35670,7 +35755,7 @@ "hu": "izlandi", "xloc": [ "default-mobile.handlebars->11->195", - "default.handlebars->47->1843", + "default.handlebars->47->1871", "login2.handlebars->7->92" ] }, @@ -35699,7 +35784,7 @@ "hu": "Ikon kiválasztás", "xloc": [ "default-mobile.handlebars->11->604", - "default.handlebars->47->1323" + "default.handlebars->47->1325" ] }, { @@ -35726,11 +35811,12 @@ "zh-cht": "識別符", "hu": "Azonosító", "xloc": [ - "default-mobile.handlebars->11->770", - "default-mobile.handlebars->11->814", - "default.handlebars->47->1574", - "default.handlebars->47->1628", - "default.handlebars->47->1664" + "default-mobile.handlebars->11->769", + "default-mobile.handlebars->11->813", + "default-mobile.handlebars->11->867", + "default.handlebars->47->1584", + "default.handlebars->47->1638", + "default.handlebars->47->1692" ] }, { @@ -35757,7 +35843,7 @@ "zh-cht": "如果在CCM中,請重新激活英特爾®AMT", "hu": "Ha CCM-ben van, aktiválja újra az Intel® AMT-t.", "xloc": [ - "default.handlebars->47->2196" + "default.handlebars->47->2224" ] }, { @@ -35934,7 +36020,7 @@ "hu": "Importálás", "de": "Import", "xloc": [ - "default.handlebars->47->2128" + "default.handlebars->47->2156" ] }, { @@ -35973,9 +36059,9 @@ "zh-cht": "導入英特爾® AMT 設備", "hu": "Intel® AMT Eszközök importálása", "xloc": [ - "default.handlebars->47->2170", - "default.handlebars->47->2171", - "default.handlebars->47->2175" + "default.handlebars->47->2198", + "default.handlebars->47->2199", + "default.handlebars->47->2203" ] }, { @@ -35987,7 +36073,7 @@ "hu": "Intel® AMT eszközök importálása.", "de": "Intel® AMT Geräte importieren", "xloc": [ - "default.handlebars->47->2127" + "default.handlebars->47->2155" ] }, { @@ -36014,7 +36100,7 @@ "zh-cht": "以 MeshCommander JSON 格式導入本地英特爾® AMT 設備列表。", "hu": "A helyi Intel® AMT eszközök listájának importálása MeshCommander JSON formátumban.", "xloc": [ - "default.handlebars->47->2169" + "default.handlebars->47->2197" ] }, { @@ -36041,11 +36127,13 @@ "zh-cht": "導入設備列表", "hu": "Eszköz lista importálás", "xloc": [ - "default.handlebars->47->2165" + "default.handlebars->47->2193" ] }, { "en": "In", + "nl": "In", + "pl": "W", "xloc": [ "default.handlebars->47->428" ] @@ -36074,7 +36162,7 @@ "zh-cht": "為了使用推送通知身份驗證,必須在您的帳戶中設置具有完全權限的移動設備。", "hu": "A push értesítések hitelesítésének használatához a fiókjában be kell állítani egy mobileszközt, amely teljes jogosultsággal rendelkezik.", "xloc": [ - "default.handlebars->47->1738" + "default.handlebars->47->1766" ] }, { @@ -36101,7 +36189,7 @@ "zh-cht": "停用天數直到移除", "hu": "inaktiv napok száma mielőtt eltávolításra kerül", "xloc": [ - "default.handlebars->47->2236" + "default.handlebars->47->2264" ] }, { @@ -36230,7 +36318,7 @@ "zh-cht": "不一致的標誌", "hu": "Inkonzisztens jelzők", "xloc": [ - "default.handlebars->47->1345" + "default.handlebars->47->1348" ] }, { @@ -36257,8 +36345,8 @@ "zh-cht": "第二個因素不正確", "hu": "Helytelen 2. faktor", "xloc": [ - "default.handlebars->47->3107", - "default.handlebars->47->3146" + "default.handlebars->47->3135", + "default.handlebars->47->3174" ] }, { @@ -36343,7 +36431,7 @@ "hu": "indonéz", "xloc": [ "default-mobile.handlebars->11->196", - "default.handlebars->47->1844", + "default.handlebars->47->1872", "login2.handlebars->7->93" ] }, @@ -36409,8 +36497,8 @@ "pl": "Informacje na Pushover.net", "de": "Informationen bei Pushover.net", "xloc": [ - "default.handlebars->47->1716", - "default.handlebars->47->2931" + "default.handlebars->47->1744", + "default.handlebars->47->2959" ] }, { @@ -36467,7 +36555,7 @@ "hu": "Beszúrás", "xloc": [ "default-mobile.handlebars->11->629", - "default.handlebars->47->1379" + "default.handlebars->47->1382" ] }, { @@ -36623,7 +36711,7 @@ "zh-cht": "在此設備上安裝", "hu": "Telepítés erre az eszközre", "xloc": [ - "default-mobile.handlebars->11->879" + "default-mobile.handlebars->11->907" ] }, { @@ -36650,7 +36738,7 @@ "zh-cht": "在您的 Android 設備上安裝 MeshCentral Agent。安裝後,單擊配對鏈接將您的設備連接到此服務器。", "hu": "Telepítse a MeshCentral Agent alkalmazást Android-eszközére. A telepítés után kattintson a párosítási linkre, hogy eszközét ehhez a kiszolgálóhoz csatlakoztassa.", "xloc": [ - "default-mobile.handlebars->11->895" + "default-mobile.handlebars->11->923" ] }, { @@ -36725,9 +36813,9 @@ "zh-cht": "安裝方式", "hu": "Telepítés típusa", "xloc": [ - "agentinvite.handlebars->3->6", - "default.handlebars->47->2333", - "default.handlebars->47->2340", + "agentinvite.handlebars->3->7", + "default.handlebars->47->2361", + "default.handlebars->47->2368", "default.handlebars->47->559", "default.handlebars->47->580", "default.handlebars->47->596", @@ -36737,15 +36825,17 @@ { "en": "Installed By", "nl": "Geïnstalleerd door", + "pl": "Zainstalowano Przez", "xloc": [ - "default.handlebars->47->1431" + "default.handlebars->47->1434" ] }, { "en": "Installed Date", "nl": "Installatie datum", + "pl": "Data Instalacji", "xloc": [ - "default.handlebars->47->1432" + "default.handlebars->47->1435" ] }, { @@ -36772,7 +36862,7 @@ "zh-cht": "Intel(F10 = ESC + [OM)", "hu": "Intel (F10 = ESC+[OM)", "xloc": [ - "default.handlebars->47->1481", + "default.handlebars->47->1484", "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons", "sharing.handlebars->11->36", "sharing.handlebars->p12->9->1->terminalSettingsButtons" @@ -36802,7 +36892,7 @@ "zh-cht": "英特爾AMT", "hu": "Intel AMT", "xloc": [ - "default.handlebars->47->3247" + "default.handlebars->47->3275" ] }, { @@ -36910,7 +37000,7 @@ "zh-cht": "英特爾 AMT 經理", "hu": "Intel AMT kezelő", "xloc": [ - "default.handlebars->47->3277" + "default.handlebars->47->3305" ] }, { @@ -36964,7 +37054,7 @@ "zh-cht": "Intel ASCII", "hu": "Intel ASCII", "xloc": [ - "default.handlebars->47->1480", + "default.handlebars->47->1483", "sharing.handlebars->11->35" ] }, @@ -36996,11 +37086,11 @@ "default-mobile.handlebars->11->515", "default-mobile.handlebars->11->522", "default.handlebars->47->1049", - "default.handlebars->47->2108", - "default.handlebars->47->2122", - "default.handlebars->47->2360", - "default.handlebars->47->2373", - "default.handlebars->47->3276", + "default.handlebars->47->2136", + "default.handlebars->47->2150", + "default.handlebars->47->2388", + "default.handlebars->47->2401", + "default.handlebars->47->3304", "default.handlebars->47->836", "default.handlebars->47->903", "default.handlebars->47->951", @@ -37261,8 +37351,8 @@ "zh-cht": "英特爾® AMT 一鍵恢復", "hu": "Intel® AMT One Click Recovery", "xloc": [ - "default.handlebars->47->1235", - "default.handlebars->47->1248" + "default.handlebars->47->1237", + "default.handlebars->47->1250" ] }, { @@ -37289,7 +37379,7 @@ "zh-cht": "Intel® AMT政策", "hu": "Intel® AMT Házirend", "xloc": [ - "default.handlebars->47->2183" + "default.handlebars->47->2211" ] }, { @@ -37319,11 +37409,11 @@ "default-mobile.handlebars->11->583", "default-mobile.handlebars->11->585", "default-mobile.handlebars->11->587", - "default.handlebars->47->1249", "default.handlebars->47->1251", "default.handlebars->47->1253", "default.handlebars->47->1255", - "default.handlebars->47->1257" + "default.handlebars->47->1257", + "default.handlebars->47->1259" ] }, { @@ -37351,7 +37441,7 @@ "hu": "Intel® AMT Kikapcsolás", "xloc": [ "default-mobile.handlebars->11->578", - "default.handlebars->47->1231" + "default.handlebars->47->1233" ] }, { @@ -37379,7 +37469,7 @@ "hu": "Intel® AMT Bekapcsolás", "xloc": [ "default-mobile.handlebars->11->579", - "default.handlebars->47->1234" + "default.handlebars->47->1236" ] }, { @@ -37391,7 +37481,7 @@ "hu": "Intel® AMT bekapcsolás és BIOS elérése", "de": "Intel® AMT Einschalten ins BIOS", "xloc": [ - "default.handlebars->47->1233" + "default.handlebars->47->1235" ] }, { @@ -37418,8 +37508,8 @@ "zh-cht": "Intel® AMT重定向", "hu": "Intel® AMT Átirányítás", "xloc": [ - "default.handlebars->47->3027", - "default.handlebars->47->3034", + "default.handlebars->47->3055", + "default.handlebars->47->3062", "player.handlebars->3->30" ] }, @@ -37448,7 +37538,7 @@ "hu": "Intel® AMT Reset", "xloc": [ "default-mobile.handlebars->11->577", - "default.handlebars->47->1230" + "default.handlebars->47->1232" ] }, { @@ -37460,7 +37550,7 @@ "hu": "Intel® AMT BIOS reset", "de": "Intel® AMT Reset ins BIOS", "xloc": [ - "default.handlebars->47->1232" + "default.handlebars->47->1234" ] }, { @@ -37514,8 +37604,8 @@ "zh-cht": "Intle® AMT WSMAN", "hu": "Intel® AMT WSMAN", "xloc": [ - "default.handlebars->47->3026", - "default.handlebars->47->3033", + "default.handlebars->47->3054", + "default.handlebars->47->3061", "player.handlebars->3->29" ] }, @@ -37597,8 +37687,8 @@ "hu": "Intel® AMT desktop és serial események", "xloc": [ "default.handlebars->47->1087", - "default.handlebars->47->1982", - "default.handlebars->47->2348" + "default.handlebars->47->2010", + "default.handlebars->47->2376" ] }, { @@ -37632,6 +37722,8 @@ }, { "en": "Intel® AMT hostname", + "nl": "Intel® AMT hostnaam", + "pl": "Nazwa hosta Intel® AMT", "xloc": [ "default.handlebars->47->350" ] @@ -37694,12 +37786,16 @@ }, { "en": "Intel® AMT is in activation mode", + "nl": "Intel® AMT is in activeringsmodus", + "pl": "Intel® AMT jest w trybie aktywacji", "xloc": [ "default.handlebars->47->427" ] }, { "en": "Intel® AMT is not activated", + "nl": "Intel® AMT is niet geactiveerd", + "pl": "Intel® AMT nie jest aktywowane", "xloc": [ "default.handlebars->47->425" ] @@ -37862,9 +37958,9 @@ "zh-cht": "僅限Intel® AMT,無代理", "hu": "Csak Intel® AMT, agent nélkül", "xloc": [ - "default-mobile.handlebars->11->863", - "default.handlebars->47->2015", - "default.handlebars->47->2070" + "default-mobile.handlebars->11->891", + "default.handlebars->47->2043", + "default.handlebars->47->2098" ] }, { @@ -37896,6 +37992,7 @@ }, { "en": "Intel® AMT state", + "nl": "Intel® AMT status", "xloc": [ "default.handlebars->47->351" ] @@ -37975,8 +38072,8 @@ "zh-cht": "Intel ® Active Management Technology(Intel® AMT)", "hu": "Intel® Active Management Technology (Intel® AMT)", "xloc": [ - "default-mobile.handlebars->11->804", - "default.handlebars->47->1618" + "default-mobile.handlebars->11->803", + "default.handlebars->47->1628" ] }, { @@ -38113,8 +38210,8 @@ "zh-cht": "英特爾® 標準可管理性(英特爾® SM)", "hu": "Intel® Standard Manageability (Intel® SM)", "xloc": [ - "default-mobile.handlebars->11->803", - "default.handlebars->47->1617" + "default-mobile.handlebars->11->802", + "default.handlebars->47->1627" ] }, { @@ -38195,7 +38292,7 @@ "zh-cht": "英特爾(r) AMT 政策變更", "hu": "Intel(r) AMT házirend beállítás", "xloc": [ - "default.handlebars->47->2569" + "default.handlebars->47->2597" ] }, { @@ -38429,7 +38526,7 @@ "zh-cht": "互動", "hu": "Internaktív", "xloc": [ - "default.handlebars->47->1424" + "default.handlebars->47->1427" ] }, { @@ -38456,9 +38553,9 @@ "zh-cht": "僅限互動", "hu": "Csak internaktív", "xloc": [ - "agentinvite.handlebars->3->9", - "default.handlebars->47->2336", - "default.handlebars->47->2343", + "agentinvite.handlebars->3->10", + "default.handlebars->47->2364", + "default.handlebars->47->2371", "default.handlebars->47->562", "default.handlebars->47->583", "default.handlebars->47->599" @@ -38543,7 +38640,7 @@ "hu": "inuktitut", "xloc": [ "default-mobile.handlebars->11->197", - "default.handlebars->47->1845", + "default.handlebars->47->1873", "login2.handlebars->7->94" ] }, @@ -38627,7 +38724,7 @@ "zh-cht": "無效的裝置群類型", "hu": "Érvénytelen eszközcsoport típus", "xloc": [ - "default.handlebars->47->3209" + "default.handlebars->47->3237" ] }, { @@ -38654,7 +38751,7 @@ "zh-cht": "無效的JSON", "hu": "Érvénytelen JSON", "xloc": [ - "default.handlebars->47->3203" + "default.handlebars->47->3231" ] }, { @@ -38681,9 +38778,9 @@ "zh-cht": "無效的JSON檔案格式。", "hu": "Érvénytelen JSON fájl formátum.", "xloc": [ - "default.handlebars->47->2176", - "default.handlebars->47->2678", - "default.handlebars->47->2680", + "default.handlebars->47->2204", + "default.handlebars->47->2706", + "default.handlebars->47->2708", "default.handlebars->47->516" ] }, @@ -38711,8 +38808,8 @@ "zh-cht": "無效的JSON檔案:{0}。", "hu": "Érvénytelen JSON-fájl: {0}.", "xloc": [ - "default.handlebars->47->2172", - "default.handlebars->47->2676", + "default.handlebars->47->2200", + "default.handlebars->47->2704", "default.handlebars->47->514" ] }, @@ -38848,7 +38945,7 @@ "zh-cht": "無效的PKCS簽名", "hu": "Érvénytelen PKCS aláírás", "xloc": [ - "default.handlebars->47->3201" + "default.handlebars->47->3229" ] }, { @@ -38875,7 +38972,7 @@ "zh-cht": "無效的RSA密碼", "hu": "Érvénytelen RSA aláírás", "xloc": [ - "default.handlebars->47->3202" + "default.handlebars->47->3230" ] }, { @@ -38902,8 +38999,8 @@ "zh-cht": "短信無效", "hu": "Érvénytelen SMS üzenet", "xloc": [ - "default-mobile.handlebars->11->981", - "default.handlebars->47->3184" + "default-mobile.handlebars->11->1009", + "default.handlebars->47->3212" ] }, { @@ -38986,8 +39083,8 @@ "zh-cht": "無效域", "hu": "Érvénytelen domain", "xloc": [ - "default-mobile.handlebars->11->961", - "default.handlebars->47->3164" + "default-mobile.handlebars->11->989", + "default.handlebars->47->3192" ] }, { @@ -39038,8 +39135,8 @@ "zh-cht": "不合規電郵", "hu": "Érvénytelen email", "xloc": [ - "default-mobile.handlebars->11->960", - "default.handlebars->47->3163" + "default-mobile.handlebars->11->988", + "default.handlebars->47->3191" ] }, { @@ -39150,8 +39247,8 @@ "zh-cht": "無效的登錄嘗試", "hu": "Érvénytelen bejelentkezési kísérlet", "xloc": [ - "default.handlebars->47->3109", - "default.handlebars->47->3148" + "default.handlebars->47->3137", + "default.handlebars->47->3176" ] }, { @@ -39162,11 +39259,13 @@ "pl": "Błędna wiadomość", "de": "Ungültige Nachricht", "xloc": [ - "default.handlebars->47->3190" + "default.handlebars->47->3218" ] }, { "en": "Invalid origin in HTTP request", + "nl": "Ongeldige herkomst in HTTP-verzoek", + "pl": "Nieprawidłowe źródło w żądaniu HTTP", "xloc": [ "default.handlebars->47->69" ] @@ -39196,8 +39295,8 @@ "hu": "Érvénytelen jelszó", "xloc": [ "default-mobile.handlebars->11->87", - "default-mobile.handlebars->11->959", - "default.handlebars->47->3162", + "default-mobile.handlebars->11->987", + "default.handlebars->47->3190", "default.handlebars->47->326" ] }, @@ -39239,8 +39338,8 @@ "zh-cht": "無效的網站權限", "hu": "Érvénytelen webhelyengedélyek", "xloc": [ - "default-mobile.handlebars->11->962", - "default.handlebars->47->3165" + "default-mobile.handlebars->11->990", + "default.handlebars->47->3193" ] }, { @@ -39296,7 +39395,7 @@ "zh-cht": "來自 {0}、{1}、{2} 的用戶登錄嘗試無效", "hu": "Érvénytelen felhasználói bejelentkezési kísérlet innen: {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2538" + "default.handlebars->47->2566" ] }, { @@ -39323,8 +39422,8 @@ "zh-cht": "無效的用戶名", "hu": "Érvénytelen felhasználónév", "xloc": [ - "default-mobile.handlebars->11->958", - "default.handlebars->47->3161" + "default-mobile.handlebars->11->986", + "default.handlebars->47->3189" ] }, { @@ -39375,7 +39474,7 @@ "zh-cht": "使電郵無效", "hu": "Email érvénytelenítés", "xloc": [ - "default.handlebars->47->2651" + "default.handlebars->47->2679" ] }, { @@ -39480,7 +39579,7 @@ "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "hu": "A meghívókódokat bárki használhatja, hogy eszközöket csatlakoztasson ehhez az eszközcsoporthoz a következő nyilvános link segítségével:", "xloc": [ - "default.handlebars->47->2338" + "default.handlebars->47->2366" ] }, { @@ -39534,7 +39633,7 @@ "zh-cht": "邀請", "hu": "Meghívó", "xloc": [ - "default.handlebars->47->2134", + "default.handlebars->47->2162", "default.handlebars->47->487", "default.handlebars->47->585" ] @@ -39563,13 +39662,13 @@ "zh-cht": "邀請碼", "hu": "Meghívó kódok", "xloc": [ - "default-mobile.handlebars->11->956", - "default.handlebars->47->2114", - "default.handlebars->47->2326", - "default.handlebars->47->2337", - "default.handlebars->47->2339", - "default.handlebars->47->2344", - "default.handlebars->47->3159" + "default-mobile.handlebars->11->984", + "default.handlebars->47->2142", + "default.handlebars->47->2354", + "default.handlebars->47->2365", + "default.handlebars->47->2367", + "default.handlebars->47->2372", + "default.handlebars->47->3187" ] }, { @@ -39596,7 +39695,7 @@ "zh-cht": "邀請代碼", "hu": "Meghívó kód", "xloc": [ - "default.handlebars->47->2592" + "default.handlebars->47->2620" ] }, { @@ -39650,7 +39749,7 @@ "zh-cht": "邀請某人在該裝置群上安裝mesh agent。", "hu": "Hívjon meg valakit, hogy telepítse a Mesh Agent-et és csatlakozzon ebbe az eszközcsoportra.", "xloc": [ - "default.handlebars->47->2133", + "default.handlebars->47->2161", "default.handlebars->47->486" ] }, @@ -39706,7 +39805,7 @@ "hu": "ír", "xloc": [ "default-mobile.handlebars->11->198", - "default.handlebars->47->1846", + "default.handlebars->47->1874", "login2.handlebars->7->95" ] }, @@ -39734,31 +39833,34 @@ "zh-cht": "是 \\\"{0}\\\" 的中繼。", "hu": "Relay a \\\"{0}\\\"-hez.", "xloc": [ - "default.handlebars->47->2581" + "default.handlebars->47->2609" ] }, { "en": "IsActivated", "nl": "IsActivated", + "pl": "Aktywny", "xloc": [ - "default-mobile.handlebars->11->821", - "default.handlebars->47->1635" + "default-mobile.handlebars->11->820", + "default.handlebars->47->1645" ] }, { "en": "IsEnabled", "nl": "IsEnabled", + "pl": "Włączony", "xloc": [ - "default-mobile.handlebars->11->822", - "default.handlebars->47->1636" + "default-mobile.handlebars->11->823", + "default.handlebars->47->1648" ] }, { "en": "IsOwned", "nl": "IsOwned", + "pl": "Jest Własnością", "xloc": [ - "default-mobile.handlebars->11->823", - "default.handlebars->47->1637" + "default-mobile.handlebars->11->826", + "default.handlebars->47->1651" ] }, { @@ -39786,7 +39888,7 @@ "hu": "olasz", "xloc": [ "default-mobile.handlebars->11->199", - "default.handlebars->47->1847", + "default.handlebars->47->1875", "login2.handlebars->7->96" ] }, @@ -39815,7 +39917,7 @@ "hu": "olasz (Svájc)", "xloc": [ "default-mobile.handlebars->11->200", - "default.handlebars->47->1848", + "default.handlebars->47->1876", "login2.handlebars->7->97" ] }, @@ -39867,7 +39969,7 @@ "zh-cht": "JSON", "hu": "JSON", "xloc": [ - "default.handlebars->47->2609" + "default.handlebars->47->2637" ] }, { @@ -39894,8 +39996,8 @@ "zh-cht": "JSON格式", "hu": "JSON Formátum", "xloc": [ - "default.handlebars->47->2614", - "default.handlebars->47->2684", + "default.handlebars->47->2642", + "default.handlebars->47->2712", "default.handlebars->47->768" ] }, @@ -39924,7 +40026,7 @@ "hu": "japán", "xloc": [ "default-mobile.handlebars->11->201", - "default.handlebars->47->1849", + "default.handlebars->47->1877", "login2.handlebars->7->98" ] }, @@ -39936,8 +40038,8 @@ "pl": "Dołącz do tego serwera Discord aby dostawac powiadomienia.", "de": "Treten Sie dem Discordserver bei um Benachrichtigungen zu erhalten.", "xloc": [ - "default.handlebars->47->1711", - "default.handlebars->47->2926" + "default.handlebars->47->1739", + "default.handlebars->47->2954" ] }, { @@ -39964,7 +40066,7 @@ "zh-cht": "已加入桌面Multiplex會話", "hu": "Csatlakozva multiplex asztali munkamenethez", "xloc": [ - "default.handlebars->47->2432" + "default.handlebars->47->2460" ] }, { @@ -39991,7 +40093,7 @@ "zh-cht": "已加入桌面多路復用會話 \\\"{0}\\\"", "hu": "Csatlakozva multiplex asztali munkamenethez \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2571" + "default.handlebars->47->2599" ] }, { @@ -40046,7 +40148,7 @@ "hu": "kannada", "xloc": [ "default-mobile.handlebars->11->202", - "default.handlebars->47->1850", + "default.handlebars->47->1878", "login2.handlebars->7->99" ] }, @@ -40075,7 +40177,7 @@ "hu": "kasmíri", "xloc": [ "default-mobile.handlebars->11->203", - "default.handlebars->47->1851", + "default.handlebars->47->1879", "login2.handlebars->7->100" ] }, @@ -40104,7 +40206,7 @@ "hu": "kazah", "xloc": [ "default-mobile.handlebars->11->204", - "default.handlebars->47->1852", + "default.handlebars->47->1880", "login2.handlebars->7->101" ] }, @@ -40132,7 +40234,7 @@ "zh-cht": "保留現有密碼", "hu": "Meglévő jelszó megtartása", "xloc": [ - "default.handlebars->47->2184" + "default.handlebars->47->2212" ] }, { @@ -40159,7 +40261,7 @@ "zh-cht": "內核驅動器", "hu": "KernelDriver", "xloc": [ - "default.handlebars->47->1425" + "default.handlebars->47->1428" ] }, { @@ -40187,7 +40289,7 @@ "hu": "Kulcs fájl", "xloc": [ "default-mobile.handlebars->11->668", - "default.handlebars->47->1467", + "default.handlebars->47->1470", "ssh.handlebars->3->15" ] }, @@ -40215,8 +40317,8 @@ "zh-cht": "鍵名", "hu": "Kulcs neve", "xloc": [ - "default.handlebars->47->1743", - "default.handlebars->47->1746" + "default.handlebars->47->1771", + "default.handlebars->47->1774" ] }, { @@ -40244,7 +40346,7 @@ "hu": "Kulcs jelszó", "xloc": [ "default-mobile.handlebars->11->670", - "default.handlebars->47->1469", + "default.handlebars->47->1472", "ssh.handlebars->3->17" ] }, @@ -40273,7 +40375,7 @@ "hu": "A kulcsfájlnak OpenSSH formátumúnak kell lennie.", "xloc": [ "default-mobile.handlebars->11->669", - "default.handlebars->47->1468", + "default.handlebars->47->1471", "ssh.handlebars->3->16" ] }, @@ -40326,7 +40428,7 @@ "hu": "Billentyű parancsok testreszabása", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->1->1", - "default.handlebars->47->1399" + "default.handlebars->47->1402" ] }, { @@ -40353,7 +40455,7 @@ "zh-cht": "鍵盤字符串自定義", "hu": "Billentyű karakterláncok testreszabása", "xloc": [ - "default.handlebars->47->1404" + "default.handlebars->47->1407" ] }, { @@ -40405,7 +40507,7 @@ "hu": "khmer", "xloc": [ "default-mobile.handlebars->11->205", - "default.handlebars->47->1853", + "default.handlebars->47->1881", "login2.handlebars->7->102" ] }, @@ -40433,12 +40535,13 @@ "zh-cht": "殺死進程{0}", "hu": "Folyamat leállítása {0}", "xloc": [ - "default.handlebars->47->2447" + "default.handlebars->47->2475" ] }, { "en": "Kilobytes", "nl": "Kilobytes", + "pl": "Kilobajty", "xloc": [ "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown->5" ] @@ -40468,7 +40571,7 @@ "hu": "kirgiz", "xloc": [ "default-mobile.handlebars->11->206", - "default.handlebars->47->1854", + "default.handlebars->47->1882", "login2.handlebars->7->103" ] }, @@ -40497,7 +40600,7 @@ "hu": "klingon", "xloc": [ "default-mobile.handlebars->11->207", - "default.handlebars->47->1855", + "default.handlebars->47->1883", "login2.handlebars->7->104" ] }, @@ -40525,8 +40628,8 @@ "zh-cht": "已知的", "hu": "Ismert", "xloc": [ - "default-mobile.handlebars->11->802", - "default.handlebars->47->1616" + "default-mobile.handlebars->11->801", + "default.handlebars->47->1626" ] }, { @@ -40554,7 +40657,7 @@ "hu": "koreai", "xloc": [ "default-mobile.handlebars->11->208", - "default.handlebars->47->1856", + "default.handlebars->47->1884", "login2.handlebars->7->105" ] }, @@ -40583,7 +40686,7 @@ "hu": "koreai (Észak-Korea)", "xloc": [ "default-mobile.handlebars->11->209", - "default.handlebars->47->1857", + "default.handlebars->47->1885", "login2.handlebars->7->106" ] }, @@ -40612,7 +40715,7 @@ "hu": "koreai (Dél-Korea)", "xloc": [ "default-mobile.handlebars->11->210", - "default.handlebars->47->1858", + "default.handlebars->47->1886", "login2.handlebars->7->107" ] }, @@ -40640,8 +40743,8 @@ "zh-cht": "如果", "hu": "LF", "xloc": [ - "default.handlebars->47->1454", - "default.handlebars->47->1485", + "default.handlebars->47->1457", + "default.handlebars->47->1488", "sharing.handlebars->11->26", "sharing.handlebars->11->40" ] @@ -40671,7 +40774,7 @@ "hu": "Nyelv", "xloc": [ "default-mobile.handlebars->11->305", - "default.handlebars->47->1953" + "default.handlebars->47->1981" ] }, { @@ -40749,7 +40852,7 @@ "zh-cht": "大焦點", "hu": "Nagy Focus mode", "xloc": [ - "default.handlebars->47->1372" + "default.handlebars->47->1375" ] }, { @@ -40919,7 +41022,7 @@ "zh-cht": "過去30天", "hu": "Elmúlt 30 napon", "xloc": [ - "default.handlebars->47->3067", + "default.handlebars->47->3095", "default.handlebars->container->column_l->p40->3->1->p40time->9" ] }, @@ -41006,7 +41109,7 @@ "zh-cht": "過去 7 天", "hu": "Utolsó 7 nap", "xloc": [ - "default.handlebars->47->3066" + "default.handlebars->47->3094" ] }, { @@ -41060,19 +41163,20 @@ "zh-cht": "最後訪問", "hu": "Utolsó hozzáférés", "xloc": [ - "default.handlebars->47->2622" + "default.handlebars->47->2650" ] }, { "en": "Last Boot Up Time", "nl": "Tijd van laatste opstart", + "pl": "Czas Ostatniego Uruchomienia", "xloc": [ "default-mobile.handlebars->11->727", "default-mobile.handlebars->11->728", "default-mobile.handlebars->11->729", - "default.handlebars->47->1558", - "default.handlebars->47->1559", - "default.handlebars->47->1560" + "default.handlebars->47->1568", + "default.handlebars->47->1569", + "default.handlebars->47->1570" ] }, { @@ -41099,7 +41203,7 @@ "zh-cht": "最後一天", "hu": "Utolsó napon", "xloc": [ - "default.handlebars->47->3065" + "default.handlebars->47->3093" ] }, { @@ -41126,7 +41230,7 @@ "zh-cht": "上次登入", "hu": "Utolsó bejelentkezés", "xloc": [ - "default.handlebars->47->2858" + "default.handlebars->47->2886" ] }, { @@ -41182,7 +41286,7 @@ "zh-cht": "上次訪問:{0}", "hu": "Utolsó hozzáférés: {0}", "xloc": [ - "default.handlebars->47->2632" + "default.handlebars->47->2660" ] }, { @@ -41209,15 +41313,15 @@ "zh-cht": "上次代理地址", "hu": "Utolsó Agent cím", "xloc": [ + "default-mobile.handlebars->11->761", "default-mobile.handlebars->11->762", "default-mobile.handlebars->11->763", - "default-mobile.handlebars->11->764", "default.handlebars->47->149", "default.handlebars->47->151", "default.handlebars->47->153", - "default.handlebars->47->1566", - "default.handlebars->47->1567", - "default.handlebars->47->1568" + "default.handlebars->47->1576", + "default.handlebars->47->1577", + "default.handlebars->47->1578" ] }, { @@ -41244,11 +41348,11 @@ "zh-cht": "上次代理連接", "hu": "Utolsó Agent kapcsolat", "xloc": [ - "default-mobile.handlebars->11->759", - "default-mobile.handlebars->11->761", + "default-mobile.handlebars->11->758", + "default-mobile.handlebars->11->760", "default.handlebars->47->148", - "default.handlebars->47->1563", - "default.handlebars->47->1565" + "default.handlebars->47->1573", + "default.handlebars->47->1575" ] }, { @@ -41275,7 +41379,7 @@ "zh-cht": "上次更改:{0}", "hu": "Utolsó módosítás: {0}", "xloc": [ - "default.handlebars->47->2862" + "default.handlebars->47->2890" ] }, { @@ -41287,7 +41391,7 @@ "hu": "Utolsó kapcsolódási idő rekordok", "de": "Aufzeichnungen über letzte Verbindungszeiten", "xloc": [ - "default.handlebars->47->3130" + "default.handlebars->47->3158" ] }, { @@ -41368,7 +41472,7 @@ "zh-cht": "上次登入:{0}", "hu": "Utolsó bejelentkezés: {0}", "xloc": [ - "default.handlebars->47->2633" + "default.handlebars->47->2661" ] }, { @@ -41529,7 +41633,7 @@ "hu": "latin", "xloc": [ "default-mobile.handlebars->11->211", - "default.handlebars->47->1859", + "default.handlebars->47->1887", "login2.handlebars->7->108" ] }, @@ -41558,7 +41662,7 @@ "hu": "lett", "xloc": [ "default-mobile.handlebars->11->212", - "default.handlebars->47->1860", + "default.handlebars->47->1888", "login2.handlebars->7->109" ] }, @@ -41586,7 +41690,7 @@ "zh-cht": "啟動MeshCentral路由器", "hu": "MeshCentral Router elindítása", "xloc": [ - "default.handlebars->47->1294" + "default.handlebars->47->1296" ] }, { @@ -41718,7 +41822,7 @@ "zh-cht": "如沒有請留空。", "hu": "Ha nincs, hagyja üresen.", "xloc": [ - "default.handlebars->47->2911" + "default.handlebars->47->2939" ] }, { @@ -41746,7 +41850,7 @@ "hu": "Bal", "xloc": [ "default-mobile.handlebars->11->636", - "default.handlebars->47->1385" + "default.handlebars->47->1388" ] }, { @@ -41773,7 +41877,7 @@ "zh-cht": "{0} 秒後離開 Web-RDP 會話 \\\"{1}\\\"。", "hu": "Elhagyta a Web-RDP munkamenetet\\\"{1}\\\" {0} másodperc után.", "xloc": [ - "default.handlebars->47->2553" + "default.handlebars->47->2581" ] }, { @@ -41824,7 +41928,7 @@ "zh-cht": "{0} 秒後離開 Web-SFTP 會話 \\\"{1}\\\"。", "hu": "Elhagyta a Web-SFTP munkamenetet \\\"{1}\\\" {0} másodperc után.", "xloc": [ - "default.handlebars->47->2552" + "default.handlebars->47->2580" ] }, { @@ -41875,7 +41979,7 @@ "zh-cht": "{0} 秒後離開 Web-SSH 會話 \\\"{1}\\\"。", "hu": "Elhagyta a Web-SSH munkamenetet \\\"{1}\\\" {0} másodperc után.", "xloc": [ - "default.handlebars->47->2551" + "default.handlebars->47->2579" ] }, { @@ -41926,7 +42030,7 @@ "zh-cht": "{0} 秒後離開 Web-VNC 會話。", "hu": "Elhagyta a Web-VNC munkamenetet {0} másodperc után.", "xloc": [ - "default.handlebars->47->2554" + "default.handlebars->47->2582" ] }, { @@ -41985,7 +42089,7 @@ "zh-cht": "離開桌面多路復用會話", "hu": "Elhagyta az asztali multiplex munkamenetet.", "xloc": [ - "default.handlebars->47->2433" + "default.handlebars->47->2461" ] }, { @@ -42012,7 +42116,7 @@ "zh-cht": "{1} 秒後離開桌面多路復用會話 \\\"{0}\\\"。", "hu": "Elhagyta a multiplex desktop munkamenetet\\\"{1}\\\" {0} másodperc után.", "xloc": [ - "default.handlebars->47->2572" + "default.handlebars->47->2600" ] }, { @@ -42039,7 +42143,7 @@ "zh-cht": "{0} 秒後離開桌面多路復用會話。", "hu": "Elhagyta az asztali multiplex munkamenetet {0} másodperc után.", "xloc": [ - "default.handlebars->47->2550" + "default.handlebars->47->2578" ] }, { @@ -42066,7 +42170,7 @@ "zh-cht": "長度", "hu": "Hossz", "xloc": [ - "default.handlebars->47->3080" + "default.handlebars->47->3108" ] }, { @@ -42201,10 +42305,10 @@ "zh-cht": "有限輸入", "hu": "Korlátozott bevitel", "xloc": [ - "default-mobile.handlebars->11->933", + "default-mobile.handlebars->11->961", "default.handlebars->47->1102", "default.handlebars->47->1127", - "default.handlebars->47->2305" + "default.handlebars->47->2333" ] }, { @@ -42231,8 +42335,8 @@ "zh-cht": "僅有限輸入", "hu": "Csak korlátozott bevitel", "xloc": [ - "default-mobile.handlebars->11->906", - "default.handlebars->47->2258" + "default-mobile.handlebars->11->934", + "default.handlebars->47->2286" ] }, { @@ -42369,7 +42473,6 @@ "zh-cht": "Linux", "hu": "Linux", "xloc": [ - "agentinvite.handlebars->container->column_l->5->1->tlinuxtab", "agentinvite.handlebars->container->column_l->5->linuxtab->1", "default-mobile.handlebars->11->492", "default.handlebars->47->58", @@ -42457,6 +42560,13 @@ "default.handlebars->47->593" ] }, + { + "en": "Linux / BSD / macOS Binary", + "nl": "Linux / BSD / macOS Binary", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->1->tlinuxbinarytab" + ] + }, { "bs": "Linux / BSD / macOS binarni instalacijski program", "cs": "Linux / BSD / macOS binární instalační program", @@ -42482,9 +42592,17 @@ "hu": "Linux / BSD / macOS Binary Telepítő", "xloc": [ "agentinvite.handlebars->3->4", + "agentinvite.handlebars->3->5", "default.handlebars->47->588" ] }, + { + "en": "Linux / BSD Scripts", + "nl": "Linux / BSD Scripts", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->1->tlinuxtab" + ] + }, { "bs": "Linux 32bit", "cs": "Linux 32bit", @@ -42621,7 +42739,7 @@ "zh-cht": "Linux ARM,Raspberry Pi(32位)", "hu": "Linux ARM, Raspberry Pi (32bit)", "xloc": [ - "default.handlebars->47->1303" + "default.handlebars->47->1305" ] }, { @@ -42648,15 +42766,13 @@ "zh-cht": "Linux ARM, Raspberry Pi (64位)", "hu": "Linux ARM, Raspberry Pi (64bit)", "xloc": [ - "default.handlebars->47->1304" + "default.handlebars->47->1306" ] }, { "en": "Linux Binary", "nl": "Linux Binary", - "xloc": [ - "agentinvite.handlebars->container->column_l->5->1->tlinuxbinarytab" - ] + "pl": "Plik Binrany Linux" }, { "bs": "Linux MeshAgent", @@ -42682,7 +42798,7 @@ "zh-cht": "Linux MeshAgent", "hu": "Linux MeshAgent", "xloc": [ - "default.handlebars->47->2330", + "default.handlebars->47->2358", "default.handlebars->47->576" ] }, @@ -42876,7 +42992,7 @@ "zh-cht": "Linux x86(32位)", "hu": "Linux x86 (32bit)", "xloc": [ - "default.handlebars->47->1300" + "default.handlebars->47->1302" ] }, { @@ -42903,7 +43019,7 @@ "zh-cht": "Linux x86(64位)", "hu": "Linux x86 (64bit)", "xloc": [ - "default.handlebars->47->1299" + "default.handlebars->47->1301" ] }, { @@ -42930,7 +43046,7 @@ "zh-cht": "Linux / BSD / macOS命令外殼", "hu": "Linux/BSD/macOS Parancs Shell", "xloc": [ - "default.handlebars->47->1243", + "default.handlebars->47->1245", "default.handlebars->47->780" ] }, @@ -43035,7 +43151,7 @@ "hu": "litván", "xloc": [ "default-mobile.handlebars->11->213", - "default.handlebars->47->1861", + "default.handlebars->47->1889", "login2.handlebars->7->110" ] }, @@ -43092,14 +43208,14 @@ "xloc": [ "default-mobile.handlebars->11->310", "default-mobile.handlebars->11->90", - "default.handlebars->47->1289", - "default.handlebars->47->1689", - "default.handlebars->47->1732", - "default.handlebars->47->2058", - "default.handlebars->47->2062", - "default.handlebars->47->2065", - "default.handlebars->47->2963", - "default.handlebars->47->3012" + "default.handlebars->47->1291", + "default.handlebars->47->1717", + "default.handlebars->47->1760", + "default.handlebars->47->2086", + "default.handlebars->47->2090", + "default.handlebars->47->2093", + "default.handlebars->47->2991", + "default.handlebars->47->3040" ] }, { @@ -43231,9 +43347,9 @@ "zh-cht": "本地設備,無代理", "hu": "Helyi eszközök, agent nélkül", "xloc": [ - "default-mobile.handlebars->11->865", - "default.handlebars->47->2009", - "default.handlebars->47->2072" + "default-mobile.handlebars->11->893", + "default.handlebars->47->2037", + "default.handlebars->47->2100" ] }, { @@ -43341,7 +43457,7 @@ "zh-cht": "本地用戶接受的遠程終端請求", "hu": "A helyi felhasználó elfogadta a távoli terminál kérését", "xloc": [ - "default.handlebars->47->2455" + "default.handlebars->47->2483" ] }, { @@ -43368,7 +43484,7 @@ "zh-cht": "本地用戶拒絕了遠程終端請求", "hu": "A helyi felhasználó elutasította a távoli terminál kérését", "xloc": [ - "default.handlebars->47->2456" + "default.handlebars->47->2484" ] }, { @@ -43397,7 +43513,7 @@ "xloc": [ "default-mobile.handlebars->11->308", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->3->5->0", - "default.handlebars->47->1956", + "default.handlebars->47->1984", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->9" ] }, @@ -43479,7 +43595,7 @@ "zh-cht": "鎖定賬戶", "hu": "Fiók zárolása", "xloc": [ - "default.handlebars->47->2724" + "default.handlebars->47->2752" ] }, { @@ -43506,7 +43622,7 @@ "zh-cht": "鎖定帳戶設置", "hu": "Fiókbeállítások zárolása", "xloc": [ - "default.handlebars->47->2728" + "default.handlebars->47->2756" ] }, { @@ -43533,7 +43649,7 @@ "zh-cht": "鎖定桌面", "hu": "Asztal zárolása", "xloc": [ - "default.handlebars->47->1170" + "default.handlebars->47->1171" ] }, { @@ -43560,7 +43676,7 @@ "zh-cht": "鎖定賬戶", "hu": "Fiók zárolása", "xloc": [ - "default.handlebars->47->2654" + "default.handlebars->47->2682" ] }, { @@ -43615,7 +43731,7 @@ "zh-cht": "鎖定遠程用戶的鼠標和鍵盤?", "hu": "Zárolja a távoli felhasználó egerét és billentyűzetét?", "xloc": [ - "default.handlebars->47->1157" + "default.handlebars->47->1158" ] }, { @@ -43669,7 +43785,7 @@ "zh-cht": "鎖定用戶桌面?", "hu": "Felhasználó Asztal zárolása?", "xloc": [ - "default.handlebars->47->1171" + "default.handlebars->47->1172" ] }, { @@ -43696,7 +43812,7 @@ "zh-cht": "已鎖定", "hu": "Zárolva", "xloc": [ - "default.handlebars->47->2634" + "default.handlebars->47->2662" ] }, { @@ -43724,9 +43840,9 @@ "hu": "Fiók zárolva", "xloc": [ "default-mobile.handlebars->11->86", - "default.handlebars->47->2818", - "default.handlebars->47->3108", - "default.handlebars->47->3147", + "default.handlebars->47->2846", + "default.handlebars->47->3136", + "default.handlebars->47->3175", "default.handlebars->47->325" ] }, @@ -43754,7 +43870,7 @@ "zh-cht": "將遠程用戶鎖定在桌面之外", "hu": "Távoli felhasználó kizárása az asztalról.", "xloc": [ - "default.handlebars->47->2481" + "default.handlebars->47->2509" ] }, { @@ -44006,7 +44122,7 @@ "zh-cht": "登錄令牌", "hu": "Bejelentkezési token", "xloc": [ - "default.handlebars->47->3119" + "default.handlebars->47->3147" ] }, { @@ -44178,7 +44294,7 @@ "hu": "luxemburgi", "xloc": [ "default-mobile.handlebars->11->214", - "default.handlebars->47->1862", + "default.handlebars->47->1890", "login2.handlebars->7->111" ] }, @@ -44206,12 +44322,12 @@ "zh-cht": "MAC層", "hu": "MAC réteg", "xloc": [ - "default-mobile.handlebars->11->774", - "default-mobile.handlebars->11->776", - "default.handlebars->47->1578", - "default.handlebars->47->1580", + "default-mobile.handlebars->11->773", + "default-mobile.handlebars->11->775", "default.handlebars->47->1588", - "default.handlebars->47->1590" + "default.handlebars->47->1590", + "default.handlebars->47->1598", + "default.handlebars->47->1600" ] }, { @@ -44266,9 +44382,9 @@ "zh-cht": "MAC:{0}", "hu": "MAC: {0}", "xloc": [ - "default-mobile.handlebars->11->777", - "default.handlebars->47->1581", - "default.handlebars->47->1591" + "default-mobile.handlebars->11->776", + "default.handlebars->47->1591", + "default.handlebars->47->1601" ] }, { @@ -44295,9 +44411,9 @@ "zh-cht": "MAC:{0},網關:{1}", "hu": "MAC: {0}, Átjáró: {1}", "xloc": [ - "default-mobile.handlebars->11->775", - "default.handlebars->47->1579", - "default.handlebars->47->1589" + "default-mobile.handlebars->11->774", + "default.handlebars->47->1589", + "default.handlebars->47->1599" ] }, { @@ -44461,11 +44577,11 @@ "xloc": [ "default-mobile.handlebars->11->467", "default-mobile.handlebars->11->524", - "default-mobile.handlebars->11->848", - "default-mobile.handlebars->11->850", + "default-mobile.handlebars->11->876", + "default-mobile.handlebars->11->878", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2", - "default.handlebars->47->1674", - "default.handlebars->47->1676", + "default.handlebars->47->1702", + "default.handlebars->47->1704", "default.handlebars->47->413", "default.handlebars->47->701", "default.handlebars->47->965", @@ -44791,7 +44907,7 @@ "zh-cht": "macOS 安裝程序", "hu": "MacOS Telepítő", "xloc": [ - "default.handlebars->47->1292" + "default.handlebars->47->1294" ] }, { @@ -44818,7 +44934,7 @@ "zh-cht": "MacOS MeshAgent", "hu": "MacOS MeshAgent", "xloc": [ - "default.handlebars->47->2331", + "default.handlebars->47->2359", "default.handlebars->47->577" ] }, @@ -44873,7 +44989,7 @@ "zh-cht": "主伺服器訊息", "hu": "Fő Kiszolgáló üzenetek", "xloc": [ - "default.handlebars->47->3263" + "default.handlebars->47->3291" ] }, { @@ -44901,7 +45017,7 @@ "hu": "maláj", "xloc": [ "default-mobile.handlebars->11->216", - "default.handlebars->47->1864", + "default.handlebars->47->1892", "login2.handlebars->7->113" ] }, @@ -44930,7 +45046,7 @@ "hu": "malajálam", "xloc": [ "default-mobile.handlebars->11->217", - "default.handlebars->47->1865", + "default.handlebars->47->1893", "login2.handlebars->7->114" ] }, @@ -44959,7 +45075,7 @@ "hu": "máltai", "xloc": [ "default-mobile.handlebars->11->218", - "default.handlebars->47->1866", + "default.handlebars->47->1894", "login2.handlebars->7->115" ] }, @@ -44988,7 +45104,7 @@ "hu": "A fiókhoz tartozó kép módosítása", "xloc": [ "default-mobile.handlebars->11->91", - "default.handlebars->47->1690" + "default.handlebars->47->1718" ] }, { @@ -45043,10 +45159,10 @@ "zh-cht": "管理裝置群電腦", "hu": "Eszközcsoport számítógépeinek kezelése", "xloc": [ - "default-mobile.handlebars->11->903", - "default-mobile.handlebars->11->923", - "default.handlebars->47->2255", - "default.handlebars->47->2294" + "default-mobile.handlebars->11->931", + "default-mobile.handlebars->11->951", + "default.handlebars->47->2283", + "default.handlebars->47->2322" ] }, { @@ -45073,10 +45189,10 @@ "zh-cht": "管理裝置群用戶", "hu": "Eszközcsoport felhasználók kezelése", "xloc": [ - "default-mobile.handlebars->11->902", - "default-mobile.handlebars->11->922", - "default.handlebars->47->2254", - "default.handlebars->47->2293" + "default-mobile.handlebars->11->930", + "default-mobile.handlebars->11->950", + "default.handlebars->47->2282", + "default.handlebars->47->2321" ] }, { @@ -45130,7 +45246,7 @@ "zh-cht": "管理錄音", "hu": "Felvételek kezelése", "xloc": [ - "default.handlebars->47->2722" + "default.handlebars->47->2750" ] }, { @@ -45184,7 +45300,7 @@ "zh-cht": "管理用戶群", "hu": "Felhaszálói csoportok kezelése", "xloc": [ - "default.handlebars->47->2721" + "default.handlebars->47->2749" ] }, { @@ -45212,7 +45328,7 @@ "hu": "Felhaszálók kezelése", "xloc": [ "default.handlebars->47->1121", - "default.handlebars->47->2720" + "default.handlebars->47->2748" ] }, { @@ -45420,7 +45536,7 @@ "zh-cht": "使用軟體代理進行管理", "hu": "Kezelés szoftver agent segítségével", "xloc": [ - "default.handlebars->47->2014" + "default.handlebars->47->2042" ] }, { @@ -45447,8 +45563,8 @@ "zh-cht": "使用軟體代理進行管理", "hu": "Szoftver agent segítségével kezelt", "xloc": [ - "default-mobile.handlebars->11->864", - "default.handlebars->47->2071" + "default-mobile.handlebars->11->892", + "default.handlebars->47->2099" ] }, { @@ -45475,7 +45591,7 @@ "zh-cht": "經理", "hu": "Menedzser", "xloc": [ - "default.handlebars->47->2639" + "default.handlebars->47->2667" ] }, { @@ -45529,17 +45645,19 @@ { "en": "ManufacturerId", "nl": "ManufacturerId", + "pl": "ID Producenta", "xloc": [ - "default-mobile.handlebars->11->819", - "default.handlebars->47->1633" + "default-mobile.handlebars->11->818", + "default.handlebars->47->1643" ] }, { "en": "ManufacturerVersion", "nl": "ManufacturerVersion", + "pl": "Wersja Wydania", "xloc": [ - "default-mobile.handlebars->11->820", - "default.handlebars->47->1634" + "default-mobile.handlebars->11->819", + "default.handlebars->47->1644" ] }, { @@ -45567,7 +45685,7 @@ "hu": "maori", "xloc": [ "default-mobile.handlebars->11->219", - "default.handlebars->47->1867", + "default.handlebars->47->1895", "login2.handlebars->7->116" ] }, @@ -45672,7 +45790,7 @@ "hu": "marathi", "xloc": [ "default-mobile.handlebars->11->220", - "default.handlebars->47->1868", + "default.handlebars->47->1896", "login2.handlebars->7->117" ] }, @@ -45699,8 +45817,8 @@ "zh-cht": "掩碼:{0}", "hu": "Hálózati maszk: {0}", "xloc": [ - "default-mobile.handlebars->11->779", - "default.handlebars->47->1593" + "default-mobile.handlebars->11->778", + "default.handlebars->47->1603" ] }, { @@ -45727,7 +45845,7 @@ "zh-cht": "達到連接數量上限", "hu": "Elérte a munkamenetek maximális számát", "xloc": [ - "default.handlebars->47->3207" + "default.handlebars->47->3235" ] }, { @@ -45840,8 +45958,8 @@ "zh-cht": "Megabyte", "hu": "Megabájt", "xloc": [ - "default.handlebars->47->3248", - "default.handlebars->47->3253", + "default.handlebars->47->3276", + "default.handlebars->47->3281", "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown->7" ] }, @@ -45869,11 +45987,14 @@ "zh-cht": "記憶體", "hu": "Memória", "xloc": [ - "default-mobile.handlebars->11->830", - "default-mobile.handlebars->11->836", - "default.handlebars->47->1644", - "default.handlebars->47->1650", - "default.handlebars->47->3227", + "default-mobile.handlebars->11->835", + "default-mobile.handlebars->11->841", + "default-mobile.handlebars->11->847", + "default.handlebars->47->1560", + "default.handlebars->47->1660", + "default.handlebars->47->1666", + "default.handlebars->47->1672", + "default.handlebars->47->3255", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -45901,13 +46022,13 @@ "zh-cht": "Mesh Agent", "hu": "Mesh Agent", "xloc": [ - "agentinvite.handlebars->3->11", + "agentinvite.handlebars->3->12", "default-mobile.handlebars->11->496", "default-mobile.handlebars->11->551", - "default-mobile.handlebars->11->758", - "default-mobile.handlebars->11->766", - "default.handlebars->47->1562", - "default.handlebars->47->1570", + "default-mobile.handlebars->11->757", + "default-mobile.handlebars->11->765", + "default.handlebars->47->1572", + "default.handlebars->47->1580", "default.handlebars->47->607", "default.handlebars->47->611", "default.handlebars->47->615", @@ -45943,8 +46064,8 @@ "zh-cht": "網格代理控制台", "hu": "Konzol", "xloc": [ - "default-mobile.handlebars->11->910", - "default.handlebars->47->2264" + "default-mobile.handlebars->11->938", + "default.handlebars->47->2292" ] }, { @@ -46104,8 +46225,8 @@ "zh-cht": "MeshAction(.txt)", "hu": "MeshAction (.txt)", "xloc": [ - "default.handlebars->47->1310", - "default.handlebars->47->1312" + "default.handlebars->47->1312", + "default.handlebars->47->1314" ] }, { @@ -46132,7 +46253,7 @@ "zh-cht": "MeshAgent流量", "hu": "MeshAgent forgalom", "xloc": [ - "default.handlebars->47->3265" + "default.handlebars->47->3293" ] }, { @@ -46159,7 +46280,7 @@ "zh-cht": "MeshAgent更新", "hu": "MeshAgent frissítés", "xloc": [ - "default.handlebars->47->3266" + "default.handlebars->47->3294" ] }, { @@ -46186,8 +46307,8 @@ "zh-cht": "網格中心", "hu": "MeshCentral", "xloc": [ - "default.handlebars->47->1155", - "default.handlebars->47->1169", + "default.handlebars->47->1156", + "default.handlebars->47->1170", "default.handlebars->47->764" ] }, @@ -46239,7 +46360,7 @@ "zh-cht": "MeshCentral 助手", "hu": "MeshCentral Assistant", "xloc": [ - "default.handlebars->47->2332", + "default.handlebars->47->2360", "default.handlebars->47->551", "default.handlebars->47->578", "default.handlebars->47->591" @@ -46426,7 +46547,7 @@ "zh-cht": "MeshCentral Router", "hu": "MeshCentral Router", "xloc": [ - "default.handlebars->47->1295" + "default.handlebars->47->1297" ] }, { @@ -46552,7 +46673,7 @@ "zh-cht": "MeshCentral Router是Windows工具,用於TCP介面映射。例如,你可以通過該伺服器將RDP放入遠程裝置。", "hu": "A MeshCentral Router egy Windows-eszköz a TCP-portok leképezéséhez. Ezen a kiszolgálón keresztül például RDP-t indíthat egy távoli eszközre.", "xloc": [ - "default.handlebars->47->1290" + "default.handlebars->47->1292" ] }, { @@ -46630,7 +46751,7 @@ "zh-cht": "MeshCentral伺服器同級化", "hu": "MeshCentral Server Peering", "xloc": [ - "default.handlebars->47->3264" + "default.handlebars->47->3292" ] }, { @@ -46686,7 +46807,7 @@ "xloc": [ "default.handlebars->47->195", "default.handlebars->47->197", - "default.handlebars->47->2057" + "default.handlebars->47->2085" ] }, { @@ -46714,7 +46835,7 @@ "hu": "MeshCmd", "xloc": [ "default.handlebars->47->1011", - "default.handlebars->47->1308", + "default.handlebars->47->1310", "default.handlebars->47->387" ] }, @@ -46742,7 +46863,7 @@ "zh-cht": "MeshCmd(Linux ARM,32位)", "hu": "MeshCmd (Linux ARM, 32bit)", "xloc": [ - "default.handlebars->47->1321" + "default.handlebars->47->1323" ] }, { @@ -46769,7 +46890,7 @@ "zh-cht": "MeshCmd(Linux ARM,64位)", "hu": "MeshCmd (Linux ARM, 64bit)", "xloc": [ - "default.handlebars->47->1322" + "default.handlebars->47->1324" ] }, { @@ -46796,7 +46917,7 @@ "zh-cht": "MeshCmd(Linux x86,32bit)", "hu": "MeshCmd (Linux x86, 32bit)", "xloc": [ - "default.handlebars->47->1317" + "default.handlebars->47->1319" ] }, { @@ -46823,31 +46944,34 @@ "zh-cht": "MeshCmd(Linux x86,64位)", "hu": "MeshCmd (Linux x86, 64bit)", "xloc": [ - "default.handlebars->47->1318" + "default.handlebars->47->1320" ] }, { "en": "MeshCmd (Win ARM-64 executable)", "nl": "MeshCmd (Win ARM-64 uitvoerbaar)", + "pl": "MeshCmd (plik wykonywalny Win ARM-64)", "de": "MeshCmd (Win ARM-64 ausführbare Datei)", "xloc": [ - "default.handlebars->47->1316" + "default.handlebars->47->1318" ] }, { "en": "MeshCmd (Win x86-32 executable)", "nl": "MeshCmd (Win x86-32 uitvoerbaar)", + "pl": "MeshCmd (plik wykonywalny Win x86-32)", "de": "MeshCmd (Win x86-32 ausführbare Datei)", "xloc": [ - "default.handlebars->47->1314" + "default.handlebars->47->1316" ] }, { "en": "MeshCmd (Win x86-64 executable)", "nl": "MeshCmd (Win x86-64 uitvoerbaar)", + "pl": "MeshCmd (plik wykonywalny Win x86-64)", "de": "MeshCmd (Win x86-64 ausführbare Datei)", "xloc": [ - "default.handlebars->47->1315" + "default.handlebars->47->1317" ] }, { @@ -46946,7 +47070,7 @@ "zh-cht": "MeshCmd(macOS,ARM-64位)", "hu": "MeshCmd (macOS, ARM-64bit)", "xloc": [ - "default.handlebars->47->1320" + "default.handlebars->47->1322" ] }, { @@ -46973,7 +47097,7 @@ "zh-cht": "MeshCmd(macOS,x86-ARM-64位)", "hu": "MeshCmd (macOS, x86-64bit)", "xloc": [ - "default.handlebars->47->1319" + "default.handlebars->47->1321" ] }, { @@ -47000,7 +47124,7 @@ "zh-cht": "MeshCmd是一個可以執行許多不同操作的命令行工具。可以選擇下載和編輯操作檔案以提供伺服器訊息和憑據。", "hu": "A MeshCmd egy parancssori eszköz, amely számos különböző műveletet végez. A műveletfájl opcionálisan letölthető és szerkeszthető a kiszolgáló adatainak és hitelesítő adatainak megadásához.", "xloc": [ - "default.handlebars->47->1305" + "default.handlebars->47->1307" ] }, { @@ -47102,9 +47226,9 @@ "zh-cht": "訊息", "hu": "Üzenet", "xloc": [ - "default.handlebars->47->1270", - "default.handlebars->47->2894", - "default.handlebars->47->3086", + "default.handlebars->47->1272", + "default.handlebars->47->2922", + "default.handlebars->47->3114", "default.handlebars->47->563", "default.handlebars->47->990" ] @@ -47133,7 +47257,7 @@ "zh-cht": "留言框", "hu": "Üzenet Doboz", "xloc": [ - "default.handlebars->47->1160", + "default.handlebars->47->1161", "default.handlebars->47->743" ] }, @@ -47161,7 +47285,7 @@ "zh-cht": "電郵調度器", "hu": "Üzenet Küldő", "xloc": [ - "default.handlebars->47->3262" + "default.handlebars->47->3290" ] }, { @@ -47173,7 +47297,7 @@ "de": "Fehler bei Nachricht", "es": "Error en el mensaje", "xloc": [ - "default.handlebars->47->3192" + "default.handlebars->47->3220" ] }, { @@ -47185,7 +47309,7 @@ "de": "Fehler bei Nachricht: {0}", "es": "Error en el mensaje: {0}", "xloc": [ - "default.handlebars->47->3193" + "default.handlebars->47->3221" ] }, { @@ -47210,7 +47334,7 @@ "de": "Nachricht erfolgreich gesendet.", "es": "Mensaje enviado correctamente.", "xloc": [ - "default.handlebars->47->3191" + "default.handlebars->47->3219" ] }, { @@ -47275,8 +47399,8 @@ "pl": "Wiadomości", "de": "Benachrichtigung", "xloc": [ - "default.handlebars->47->2839", - "default.handlebars->47->2887", + "default.handlebars->47->2867", + "default.handlebars->47->2915", "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3", "login2.handlebars->centralTable->1->0->logincell->tokenpanel->tokenpanelform->7->1->2farow->1->3" @@ -47290,7 +47414,7 @@ "pl": "Wiadomości ({0})", "de": "Benachrichtigung ({0})", "xloc": [ - "default.handlebars->47->2110", + "default.handlebars->47->2138", "default.handlebars->47->953" ] }, @@ -47302,11 +47426,11 @@ "pl": "Powiadomienia w Komunikatorze", "xloc": [ "default.handlebars->47->1092", - "default.handlebars->47->1699", - "default.handlebars->47->1719", - "default.handlebars->47->2353", + "default.handlebars->47->1727", + "default.handlebars->47->1747", + "default.handlebars->47->2381", "default.handlebars->47->255", - "default.handlebars->47->2934" + "default.handlebars->47->2962" ] }, { @@ -47317,7 +47441,7 @@ "pl": "Konto komunnikatora tego użytkownika.", "de": "Benachrichtigungsaccount für diesen Benutzer.", "xloc": [ - "default.handlebars->47->2914" + "default.handlebars->47->2942" ] }, { @@ -47328,7 +47452,7 @@ "pl": "Wiadomości włączone", "de": "Benachrichtigungen aktiviert", "xloc": [ - "default.handlebars->47->2840" + "default.handlebars->47->2868" ] }, { @@ -47355,8 +47479,8 @@ "zh-cht": "信使", "hu": "Messenger", "xloc": [ - "default.handlebars->47->3028", - "default.handlebars->47->3095" + "default.handlebars->47->3056", + "default.handlebars->47->3123" ] }, { @@ -47366,7 +47490,7 @@ "nl": "Berichten", "pl": "Wiadomości", "xloc": [ - "default.handlebars->47->3115" + "default.handlebars->47->3143" ] }, { @@ -47530,8 +47654,8 @@ "zh-cht": "移動設備", "hu": "Mobile Eszköz", "xloc": [ - "default-mobile.handlebars->11->772", - "default.handlebars->47->1576" + "default-mobile.handlebars->11->771", + "default.handlebars->47->1586" ] }, { @@ -47564,9 +47688,10 @@ { "en": "Mode", "nl": "Mode", + "pl": "Tryb", "xloc": [ - "default-mobile.handlebars->11->808", - "default.handlebars->47->1622" + "default-mobile.handlebars->11->807", + "default.handlebars->47->1632" ] }, { @@ -47593,11 +47718,11 @@ "zh-cht": "模型", "hu": "Model", "xloc": [ - "default-mobile.handlebars->11->767", - "default-mobile.handlebars->11->837", - "default.handlebars->47->1571", - "default.handlebars->47->1651", - "default.handlebars->47->2018" + "default-mobile.handlebars->11->766", + "default-mobile.handlebars->11->848", + "default.handlebars->47->1581", + "default.handlebars->47->1673", + "default.handlebars->47->2046" ] }, { @@ -47652,7 +47777,7 @@ "hu": "moldvai", "xloc": [ "default-mobile.handlebars->11->221", - "default.handlebars->47->1869", + "default.handlebars->47->1897", "login2.handlebars->7->118" ] }, @@ -47704,8 +47829,8 @@ "zh-cht": "母板", "hu": "Alaplap", "xloc": [ - "default-mobile.handlebars->11->817", - "default.handlebars->47->1631" + "default-mobile.handlebars->11->816", + "default.handlebars->47->1641" ] }, { @@ -47786,7 +47911,7 @@ "zh-cht": "移動:“{0}”到“{1}”", "hu": "Áthelyezés: \\\"{0}\\\" ide \\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2480" + "default.handlebars->47->2508" ] }, { @@ -47813,7 +47938,7 @@ "zh-cht": "將設備{0}移動到組{1}", "hu": "{0} eszköz áthelyezve az {1} csoportba", "xloc": [ - "default.handlebars->47->2513" + "default.handlebars->47->2541" ] }, { @@ -47867,8 +47992,8 @@ "zh-cht": "多個問題", "hu": "Többszörös Problémák", "xloc": [ - "default.handlebars->47->2366", - "default.handlebars->47->2380" + "default.handlebars->47->2394", + "default.handlebars->47->2408" ] }, { @@ -47919,7 +48044,7 @@ "zh-cht": "多工器", "hu": "Multiplexor", "xloc": [ - "default.handlebars->47->3046" + "default.handlebars->47->3074" ] }, { @@ -47946,7 +48071,7 @@ "zh-cht": "必須以用戶身份運行", "hu": "Futtatás felhasználóként", "xloc": [ - "default.handlebars->47->1246", + "default.handlebars->47->1248", "default.handlebars->47->784" ] }, @@ -48149,7 +48274,7 @@ "zh-cht": "我的伺服器控制台", "hu": "Kiszolgáló konzol", "xloc": [ - "default.handlebars->47->1669" + "default.handlebars->47->1697" ] }, { @@ -48367,8 +48492,8 @@ "zh-cht": "我的密鍵", "hu": "MyKey", "xloc": [ - "default.handlebars->47->1744", - "default.handlebars->47->1747" + "default.handlebars->47->1772", + "default.handlebars->47->1775" ] }, { @@ -48395,7 +48520,7 @@ "zh-cht": "不支持 NLA", "hu": "NLA nem támogatott", "xloc": [ - "default.handlebars->47->1341" + "default.handlebars->47->1344" ] }, { @@ -48533,26 +48658,26 @@ "default-mobile.handlebars->11->335", "default-mobile.handlebars->11->479", "default-mobile.handlebars->11->720", - "default-mobile.handlebars->11->811", - "default-mobile.handlebars->11->869", - "default-mobile.handlebars->11->892", - "default.handlebars->47->1401", - "default.handlebars->47->1417", - "default.handlebars->47->1551", + "default-mobile.handlebars->11->810", + "default-mobile.handlebars->11->897", + "default-mobile.handlebars->11->920", + "default.handlebars->47->1404", + "default.handlebars->47->1420", "default.handlebars->47->156", - "default.handlebars->47->1625", + "default.handlebars->47->1561", + "default.handlebars->47->1635", "default.handlebars->47->170", - "default.handlebars->47->2008", "default.handlebars->47->2036", - "default.handlebars->47->2041", - "default.handlebars->47->2076", - "default.handlebars->47->2214", - "default.handlebars->47->2620", - "default.handlebars->47->2731", - "default.handlebars->47->2747", - "default.handlebars->47->2754", - "default.handlebars->47->2805", - "default.handlebars->47->2824", + "default.handlebars->47->2064", + "default.handlebars->47->2069", + "default.handlebars->47->2104", + "default.handlebars->47->2242", + "default.handlebars->47->2648", + "default.handlebars->47->2759", + "default.handlebars->47->2775", + "default.handlebars->47->2782", + "default.handlebars->47->2833", + "default.handlebars->47->2852", "default.handlebars->47->330", "default.handlebars->47->859", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", @@ -48611,7 +48736,7 @@ "zh-cht": "名稱1,名稱2,名稱3", "hu": "Nev1.Nev2,Nev3", "xloc": [ - "default.handlebars->47->2712" + "default.handlebars->47->2740" ] }, { @@ -48639,7 +48764,7 @@ "hu": "navajo", "xloc": [ "default-mobile.handlebars->11->222", - "default.handlebars->47->1870", + "default.handlebars->47->1898", "login2.handlebars->7->119" ] }, @@ -48668,7 +48793,7 @@ "hu": "ndonga-oshindonga", "xloc": [ "default-mobile.handlebars->11->223", - "default.handlebars->47->1871", + "default.handlebars->47->1899", "login2.handlebars->7->120" ] }, @@ -48697,7 +48822,7 @@ "hu": "nepáli", "xloc": [ "default-mobile.handlebars->11->224", - "default.handlebars->47->1872", + "default.handlebars->47->1900", "login2.handlebars->7->121" ] }, @@ -48725,7 +48850,7 @@ "zh-cht": "網絡介面", "hu": "Hálózati interfészek", "xloc": [ - "default.handlebars->47->1288" + "default.handlebars->47->1290" ] }, { @@ -48761,7 +48886,7 @@ "hu": "Hálózati interfész információs rekordok", "de": "Aufzeichnungen über Informationen zu Netzwerkschnittstellen", "xloc": [ - "default.handlebars->47->3128" + "default.handlebars->47->3156" ] }, { @@ -48788,9 +48913,9 @@ "zh-cht": "網路", "hu": "Hálózat", "xloc": [ - "default-mobile.handlebars->11->787", - "default.handlebars->47->1586", - "default.handlebars->47->1601" + "default-mobile.handlebars->11->786", + "default.handlebars->47->1596", + "default.handlebars->47->1611" ] }, { @@ -48818,7 +48943,7 @@ "hu": "Új", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1->1", - "default.handlebars->47->2035", + "default.handlebars->47->2063", "default.handlebars->container->column_l->p2->p2info->p2createMeshLink1->1" ] }, @@ -48846,7 +48971,7 @@ "zh-cht": "生成新的2FA備份代碼", "hu": "Új 2FA biztonsági kódok generálása", "xloc": [ - "default.handlebars->47->2520" + "default.handlebars->47->2548" ] }, { @@ -48873,8 +48998,8 @@ "zh-cht": "新賬戶", "hu": "Új fiók", "xloc": [ - "default-mobile.handlebars->11->951", - "default.handlebars->47->3154" + "default-mobile.handlebars->11->979", + "default.handlebars->47->3182" ] }, { @@ -48953,9 +49078,9 @@ "hu": "Új eszközcsoport", "xloc": [ "default-mobile.handlebars->11->329", - "default.handlebars->47->1280", - "default.handlebars->47->2001", - "default.handlebars->47->2024" + "default.handlebars->47->1282", + "default.handlebars->47->2029", + "default.handlebars->47->2052" ] }, { @@ -48984,8 +49109,8 @@ "xloc": [ "default-mobile.handlebars->11->358", "default-mobile.handlebars->11->691", - "default.handlebars->47->1511", - "default.handlebars->47->2410", + "default.handlebars->47->1518", + "default.handlebars->47->2438", "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", @@ -49125,8 +49250,8 @@ "zh-cht": "新密碼*", "hu": "Új jelszó*", "xloc": [ - "default.handlebars->47->2188", - "default.handlebars->47->2189" + "default.handlebars->47->2216", + "default.handlebars->47->2217" ] }, { @@ -49155,8 +49280,8 @@ "xloc": [ "default-mobile.handlebars->11->324", "default-mobile.handlebars->11->325", - "default.handlebars->47->1996", - "default.handlebars->47->1997" + "default.handlebars->47->2024", + "default.handlebars->47->2025" ] }, { @@ -49211,6 +49336,18 @@ "default.handlebars->47->67" ] }, + { + "en": "No", + "nl": "Nee", + "xloc": [ + "default-mobile.handlebars->11->822", + "default-mobile.handlebars->11->825", + "default-mobile.handlebars->11->828", + "default.handlebars->47->1647", + "default.handlebars->47->1650", + "default.handlebars->47->1653" + ] + }, { "bs": "Nema AMT", "cs": "Žádné AMT", @@ -49315,7 +49452,13 @@ "zh-cht": "無代理控制台", "hu": "Nincs Agent konzol", "xloc": [ - "default.handlebars->47->2949" + "default.handlebars->47->2977" + ] + }, + { + "en": "No Consent", + "xloc": [ + "default.handlebars->47->1215" ] }, { @@ -49342,7 +49485,7 @@ "zh-cht": "沒有控制台", "hu": "Nincs Agent konzol", "xloc": [ - "default.handlebars->47->2848" + "default.handlebars->47->2876" ] }, { @@ -49401,8 +49544,8 @@ "xloc": [ "default.handlebars->47->1103", "default.handlebars->47->1128", - "default.handlebars->47->2301", - "default.handlebars->47->2844" + "default.handlebars->47->2329", + "default.handlebars->47->2872" ] }, { @@ -49429,8 +49572,8 @@ "zh-cht": "不能訪問桌面", "hu": "Nincs Asztal hozzáférés", "xloc": [ - "default.handlebars->47->2260", - "default.handlebars->47->2945" + "default.handlebars->47->2288", + "default.handlebars->47->2973" ] }, { @@ -49481,9 +49624,9 @@ "zh-cht": "找不到事件", "hu": "Nincsenek eseményeket", "xloc": [ - "default.handlebars->47->1549", - "default.handlebars->47->2596", - "default.handlebars->47->3011" + "default.handlebars->47->1557", + "default.handlebars->47->2624", + "default.handlebars->47->3039" ] }, { @@ -49510,9 +49653,9 @@ "zh-cht": "不能存取檔案", "hu": "Nincs Fájl hozzáférés", "xloc": [ - "default-mobile.handlebars->11->908", - "default.handlebars->47->2262", - "default.handlebars->47->2948" + "default-mobile.handlebars->11->936", + "default.handlebars->47->2290", + "default.handlebars->47->2976" ] }, { @@ -49539,11 +49682,11 @@ "zh-cht": "沒有檔案", "hu": "Nincs Fájlelérés", "xloc": [ - "default-mobile.handlebars->11->931", + "default-mobile.handlebars->11->959", "default.handlebars->47->1100", "default.handlebars->47->1125", - "default.handlebars->47->2303", - "default.handlebars->47->2847" + "default.handlebars->47->2331", + "default.handlebars->47->2875" ] }, { @@ -49598,10 +49741,10 @@ "zh-cht": "沒有Intel® AMT", "hu": "Nincs Intel® AMT", "xloc": [ - "default-mobile.handlebars->11->909", - "default-mobile.handlebars->11->932", - "default.handlebars->47->2263", - "default.handlebars->47->2304" + "default-mobile.handlebars->11->937", + "default-mobile.handlebars->11->960", + "default.handlebars->47->2291", + "default.handlebars->47->2332" ] }, { @@ -49733,7 +49876,7 @@ "zh-cht": "沒有成員", "hu": "Nincsenek tagok", "xloc": [ - "default.handlebars->47->2785" + "default.handlebars->47->2813" ] }, { @@ -49760,7 +49903,7 @@ "zh-cht": "沒有新的裝置群", "hu": "Új eszköz csoportok hozzáadásának tiltása", "xloc": [ - "default.handlebars->47->2725" + "default.handlebars->47->2753" ] }, { @@ -49787,7 +49930,7 @@ "zh-cht": "沒有新設備", "hu": "Új eszközök hozzáadásának tiltása", "xloc": [ - "default.handlebars->47->2726" + "default.handlebars->47->2754" ] }, { @@ -49814,8 +49957,8 @@ "zh-cht": "沒有政策", "hu": "Nincs házirend", "xloc": [ - "default.handlebars->47->2115", - "default.handlebars->47->2179" + "default.handlebars->47->2143", + "default.handlebars->47->2207" ] }, { @@ -49865,8 +50008,8 @@ "zh-cht": "沒有遙控器", "hu": "Nincs távoli parancs.", "xloc": [ - "default.handlebars->47->2850", - "default.handlebars->47->2951" + "default.handlebars->47->2878", + "default.handlebars->47->2979" ] }, { @@ -49893,8 +50036,8 @@ "zh-cht": "沒有遙控器", "hu": "Nincs távvezérlés", "xloc": [ - "default.handlebars->47->2843", - "default.handlebars->47->2944" + "default.handlebars->47->2871", + "default.handlebars->47->2972" ] }, { @@ -49921,8 +50064,8 @@ "zh-cht": "無重置/關閉", "hu": "Nincs Újraindítás / Kikapcsolás", "xloc": [ - "default.handlebars->47->2852", - "default.handlebars->47->2953" + "default.handlebars->47->2880", + "default.handlebars->47->2981" ] }, { @@ -49950,12 +50093,12 @@ "hu": "Nincsenek jogok", "xloc": [ "default-mobile.handlebars->11->344", - "default-mobile.handlebars->11->883", - "default-mobile.handlebars->11->939", + "default-mobile.handlebars->11->911", + "default-mobile.handlebars->11->967", "default.handlebars->47->1118", "default.handlebars->47->1143", - "default.handlebars->47->2033", - "default.handlebars->47->2314" + "default.handlebars->47->2061", + "default.handlebars->47->2342" ] }, { @@ -50007,7 +50150,7 @@ "hu": "Nincs TLS security", "xloc": [ "default-mobile.handlebars->11->598", - "default.handlebars->47->1266", + "default.handlebars->47->1268", "default.handlebars->47->507" ] }, @@ -50035,11 +50178,11 @@ "zh-cht": "沒有終端", "hu": "Nincs terminál", "xloc": [ - "default-mobile.handlebars->11->930", + "default-mobile.handlebars->11->958", "default.handlebars->47->1099", "default.handlebars->47->1124", - "default.handlebars->47->2302", - "default.handlebars->47->2846" + "default.handlebars->47->2330", + "default.handlebars->47->2874" ] }, { @@ -50066,9 +50209,9 @@ "zh-cht": "不能訪問終端", "hu": "Nincs Terminál hozzáférés", "xloc": [ - "default-mobile.handlebars->11->907", - "default.handlebars->47->2261", - "default.handlebars->47->2947" + "default-mobile.handlebars->11->935", + "default.handlebars->47->2289", + "default.handlebars->47->2975" ] }, { @@ -50095,7 +50238,7 @@ "zh-cht": "沒有工具(MeshCmd /路由器)", "hu": "MeshCmd/Router tiltása", "xloc": [ - "default.handlebars->47->2727" + "default.handlebars->47->2755" ] }, { @@ -50122,8 +50265,8 @@ "zh-cht": "無卸載", "hu": "Nincs Eltávolítás", "xloc": [ - "default.handlebars->47->2849", - "default.handlebars->47->2950" + "default.handlebars->47->2877", + "default.handlebars->47->2978" ] }, { @@ -50150,8 +50293,8 @@ "zh-cht": "沒有喚醒", "hu": "Nincs Ébresztés", "xloc": [ - "default.handlebars->47->2851", - "default.handlebars->47->2952" + "default.handlebars->47->2879", + "default.handlebars->47->2980" ] }, { @@ -50179,7 +50322,7 @@ "hu": "Jelenleg nem érhetők el műveletek ehhez az eszközhöz.", "xloc": [ "default-mobile.handlebars->11->581", - "default.handlebars->47->1238" + "default.handlebars->47->1240" ] }, { @@ -50230,9 +50373,9 @@ "zh-cht": "沒有代理設備通過代理中繼", "hu": "No agent devices relayed thru agent", "xloc": [ - "default-mobile.handlebars->11->866", - "default.handlebars->47->2010", - "default.handlebars->47->2073" + "default-mobile.handlebars->11->894", + "default.handlebars->47->2038", + "default.handlebars->47->2101" ] }, { @@ -50259,8 +50402,8 @@ "zh-cht": "沒有自動更新", "hu": "Nincs automatikus frissítés", "xloc": [ - "default.handlebars->47->2364", - "default.handlebars->47->2378" + "default.handlebars->47->2392", + "default.handlebars->47->2406" ] }, { @@ -50287,8 +50430,8 @@ "zh-cht": "沒有共同的裝置群", "hu": "Nincsenek hozzárendelt eszközcsoportok", "xloc": [ - "default.handlebars->47->2791", - "default.handlebars->47->2979" + "default.handlebars->47->2819", + "default.handlebars->47->3007" ] }, { @@ -50450,8 +50593,8 @@ "zh-cht": "沒有共同的裝置", "hu": "Nincsenek hozzárendelt eszközök", "xloc": [ - "default.handlebars->47->2797", - "default.handlebars->47->2991" + "default.handlebars->47->2825", + "default.handlebars->47->3019" ] }, { @@ -50506,7 +50649,7 @@ "zh-cht": "該裝置群中沒有裝置。", "hu": "Ebben az eszközcsoportban nincsenek eszközök.", "xloc": [ - "default.handlebars->47->2382" + "default.handlebars->47->2410" ] }, { @@ -50616,7 +50759,7 @@ "zh-cht": "找不到文件", "hu": "Nem találhatóak fájlok", "xloc": [ - "default.handlebars->47->1489", + "default.handlebars->47->1492", "sharing.handlebars->11->45" ] }, @@ -50644,7 +50787,7 @@ "zh-cht": "找不到群組。", "hu": "Nincsenek csoportok.", "xloc": [ - "default.handlebars->47->2730" + "default.handlebars->47->2758" ] }, { @@ -50671,8 +50814,8 @@ "zh-cht": "沒有此裝置的訊息。", "hu": "Nincs információ erről az eszközről.", "xloc": [ - "default-mobile.handlebars->11->843", - "default.handlebars->47->1663" + "default-mobile.handlebars->11->866", + "default.handlebars->47->1691" ] }, { @@ -50727,7 +50870,7 @@ "hu": "Nincsenek billentyű parancsok definiálva", "xloc": [ "default-mobile.handlebars->11->650", - "default.handlebars->47->1400" + "default.handlebars->47->1403" ] }, { @@ -50754,7 +50897,7 @@ "zh-cht": "未定義鍵盤字符串", "hu": "Nincsenek billentyű karakterláncok definiálva", "xloc": [ - "default.handlebars->47->1405" + "default.handlebars->47->1408" ] }, { @@ -50863,7 +51006,7 @@ "zh-cht": "不再是“{0}”的中繼。", "hu": "Már nem relay a \\\"{0}\\\" számára.", "xloc": [ - "default.handlebars->47->2580" + "default.handlebars->47->2608" ] }, { @@ -50917,7 +51060,7 @@ "zh-cht": "沒有其他相同類型的裝置群。", "hu": "Nincs másik hasonló típusú eszközcsoport.", "xloc": [ - "default.handlebars->47->1283" + "default.handlebars->47->1285" ] }, { @@ -50944,8 +51087,8 @@ "zh-cht": "沒有此用戶的電話號碼", "hu": "Ennek a felhasználónak nincs telefonszáma", "xloc": [ - "default-mobile.handlebars->11->982", - "default.handlebars->47->3185" + "default-mobile.handlebars->11->1010", + "default.handlebars->47->3213" ] }, { @@ -50999,7 +51142,7 @@ "zh-cht": "沒有錄音。", "hu": "Nincsenek felvételek.", "xloc": [ - "default.handlebars->47->3016" + "default.handlebars->47->3044" ] }, { @@ -51026,8 +51169,8 @@ "zh-cht": "沒有可用的中繼設備。", "hu": "Nem állnak rendelkezésre relay eszközök.", "xloc": [ - "default-mobile.handlebars->11->889", - "default.handlebars->47->2211" + "default-mobile.handlebars->11->917", + "default.handlebars->47->2239" ] }, { @@ -51078,7 +51221,7 @@ "zh-cht": "沒有伺服器權限", "hu": "Nincsenek kiszolgáló jogosultságok", "xloc": [ - "default.handlebars->47->2819" + "default.handlebars->47->2847" ] }, { @@ -51129,7 +51272,7 @@ "zh-cht": "沒有用戶群成員身份", "hu": "Nincs felhasználói csoport tagság", "xloc": [ - "default.handlebars->47->2985" + "default.handlebars->47->3013" ] }, { @@ -51156,8 +51299,8 @@ "zh-cht": "沒有用戶管理權限", "hu": "Nincs felhasználói kezelői jog", "xloc": [ - "default-mobile.handlebars->11->980", - "default.handlebars->47->3183" + "default-mobile.handlebars->11->1008", + "default.handlebars->47->3211" ] }, { @@ -51184,7 +51327,7 @@ "zh-cht": "未找到相應的用戶。", "hu": "Nem találhatóak felhasználók.", "xloc": [ - "default.handlebars->47->2628" + "default.handlebars->47->2656" ] }, { @@ -51329,33 +51472,33 @@ "default-mobile.handlebars->11->526", "default-mobile.handlebars->11->640", "default-mobile.handlebars->11->688", - "default-mobile.handlebars->11->871", - "default.handlebars->47->1389", - "default.handlebars->47->2067", - "default.handlebars->47->2078", - "default.handlebars->47->2092", - "default.handlebars->47->2104", - "default.handlebars->47->2111", - "default.handlebars->47->2113", - "default.handlebars->47->2167", - "default.handlebars->47->2367", - "default.handlebars->47->2392", - "default.handlebars->47->2397", - "default.handlebars->47->2604", + "default-mobile.handlebars->11->899", + "default.handlebars->47->1392", + "default.handlebars->47->2095", + "default.handlebars->47->2106", + "default.handlebars->47->2120", + "default.handlebars->47->2132", + "default.handlebars->47->2139", + "default.handlebars->47->2141", + "default.handlebars->47->2195", + "default.handlebars->47->2395", + "default.handlebars->47->2420", + "default.handlebars->47->2425", + "default.handlebars->47->2632", "default.handlebars->47->272", - "default.handlebars->47->2751", - "default.handlebars->47->2753", - "default.handlebars->47->2762", - "default.handlebars->47->2774", - "default.handlebars->47->2838", - "default.handlebars->47->2841", - "default.handlebars->47->2853", - "default.handlebars->47->2863", - "default.handlebars->47->2867", - "default.handlebars->47->2879", - "default.handlebars->47->2915", + "default.handlebars->47->2779", + "default.handlebars->47->2781", + "default.handlebars->47->2790", + "default.handlebars->47->2802", + "default.handlebars->47->2866", + "default.handlebars->47->2869", + "default.handlebars->47->2881", + "default.handlebars->47->2891", + "default.handlebars->47->2895", + "default.handlebars->47->2907", + "default.handlebars->47->2943", "default.handlebars->47->300", - "default.handlebars->47->3110", + "default.handlebars->47->3138", "default.handlebars->47->396", "default.handlebars->47->397", "default.handlebars->47->85", @@ -51444,7 +51587,7 @@ "hu": "norvég", "xloc": [ "default-mobile.handlebars->11->225", - "default.handlebars->47->1873", + "default.handlebars->47->1901", "login2.handlebars->7->122" ] }, @@ -51473,7 +51616,7 @@ "hu": "norvég (Bokmal)", "xloc": [ "default-mobile.handlebars->11->226", - "default.handlebars->47->1874", + "default.handlebars->47->1902", "login2.handlebars->7->123" ] }, @@ -51502,7 +51645,7 @@ "hu": "norvég (Nynorsk)", "xloc": [ "default-mobile.handlebars->11->227", - "default.handlebars->47->1875", + "default.handlebars->47->1903", "login2.handlebars->7->124" ] }, @@ -51530,7 +51673,7 @@ "zh-cht": "未激活", "hu": "Nincs aktiválva", "xloc": [ - "default.handlebars->47->1604" + "default.handlebars->47->1614" ] }, { @@ -51558,7 +51701,7 @@ "hu": "Not Activated (In)", "xloc": [ "default-mobile.handlebars->11->498", - "default-mobile.handlebars->11->791", + "default-mobile.handlebars->11->790", "default.handlebars->47->882" ] }, @@ -51587,7 +51730,7 @@ "hu": "Not Activated (Pre)", "xloc": [ "default-mobile.handlebars->11->497", - "default-mobile.handlebars->11->790", + "default-mobile.handlebars->11->789", "default.handlebars->47->881" ] }, @@ -51615,8 +51758,8 @@ "zh-cht": "未連接", "hu": "Nincs csatlakoztatva", "xloc": [ - "default.handlebars->47->2358", - "default.handlebars->47->2371" + "default.handlebars->47->2386", + "default.handlebars->47->2399" ] }, { @@ -51643,8 +51786,8 @@ "zh-cht": "未知", "hu": "Nem ismert", "xloc": [ - "default-mobile.handlebars->11->801", - "default.handlebars->47->1615" + "default-mobile.handlebars->11->800", + "default.handlebars->47->1625" ] }, { @@ -51698,7 +51841,7 @@ "zh-cht": "不在伺服器上", "hu": "Nincs a kiszolgálón", "xloc": [ - "default.handlebars->47->3038" + "default.handlebars->47->3066" ] }, { @@ -51725,8 +51868,8 @@ "zh-cht": "沒有設置", "hu": "Nincs beállítva", "xloc": [ - "default.handlebars->47->2825", - "default.handlebars->47->2826" + "default.handlebars->47->2853", + "default.handlebars->47->2854" ] }, { @@ -51753,7 +51896,7 @@ "zh-cht": "未經審核的", "hu": "Nincs megerősítve", "xloc": [ - "default.handlebars->47->2959" + "default.handlebars->47->2987" ] }, { @@ -51782,12 +51925,12 @@ "xloc": [ "default-mobile.handlebars->11->539", "default-mobile.handlebars->11->590", - "default-mobile.handlebars->11->877", + "default-mobile.handlebars->11->905", "default.handlebars->47->1109", "default.handlebars->47->1134", "default.handlebars->47->1147", - "default.handlebars->47->2123", - "default.handlebars->47->2890", + "default.handlebars->47->2151", + "default.handlebars->47->2918", "default.handlebars->47->984", "default.handlebars->container->column_l->p10->p10info->1->1->0->notesPanel->1->1->1->0" ] @@ -51844,8 +51987,8 @@ "hu": "Értesítési beállítások", "xloc": [ "default.handlebars->47->1096", - "default.handlebars->47->1983", - "default.handlebars->47->2357", + "default.handlebars->47->2011", + "default.handlebars->47->2385", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->12" ] }, @@ -51921,7 +52064,7 @@ "zh-cht": "通知音效", "hu": "Értesítési hangjelzés", "xloc": [ - "default.handlebars->47->1978" + "default.handlebars->47->2006" ] }, { @@ -51948,7 +52091,7 @@ "zh-cht": "通知", "hu": "Értesítések", "xloc": [ - "default.handlebars->47->2112", + "default.handlebars->47->2140", "default.handlebars->47->955" ] }, @@ -51976,7 +52119,7 @@ "zh-cht": "通知", "hu": "Értesítés küldése", "xloc": [ - "default.handlebars->47->2898", + "default.handlebars->47->2926", "default.handlebars->47->297" ] }, @@ -52031,9 +52174,9 @@ "zh-cht": "通知使用者", "hu": "Felhasználó értesítése", "xloc": [ - "default.handlebars->47->2222", - "default.handlebars->47->2226", - "default.handlebars->47->2229" + "default.handlebars->47->2250", + "default.handlebars->47->2254", + "default.handlebars->47->2257" ] }, { @@ -52060,7 +52203,7 @@ "zh-cht": "通知{0}", "hu": "Értesítés küldése {0}", "xloc": [ - "default.handlebars->47->2670" + "default.handlebars->47->2698" ] }, { @@ -52087,7 +52230,7 @@ "zh-cht": "無效的", "hu": "Null", "xloc": [ - "default.handlebars->47->3256" + "default.handlebars->47->3284" ] }, { @@ -52145,9 +52288,9 @@ "default-mobile.handlebars->11->754", "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->5", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->47->2055", - "default.handlebars->47->2362", - "default.handlebars->47->2376", + "default.handlebars->47->2083", + "default.handlebars->47->2390", + "default.handlebars->47->2404", "default.handlebars->47->910", "default.handlebars->47->914", "default.handlebars->47->918", @@ -52271,7 +52414,7 @@ "hu": "okcitán", "xloc": [ "default-mobile.handlebars->11->228", - "default.handlebars->47->1876", + "default.handlebars->47->1904", "login2.handlebars->7->125" ] }, @@ -52299,8 +52442,8 @@ "zh-cht": "發生在{0}", "hu": "Történt {0}", "xloc": [ - "default-mobile.handlebars->11->948", - "default.handlebars->47->3151" + "default-mobile.handlebars->11->976", + "default.handlebars->47->3179" ] }, { @@ -52387,7 +52530,7 @@ "zh-cht": "離線用戶", "hu": "Offline felhasználók", "xloc": [ - "default.handlebars->47->2625" + "default.handlebars->47->2653" ] }, { @@ -52442,12 +52585,13 @@ "hu": "Jelenlegi jelszó:", "xloc": [ "default-mobile.handlebars->11->323", - "default.handlebars->47->1995" + "default.handlebars->47->2023" ] }, { "en": "On", "nl": "Aan", + "pl": "Włącz", "xloc": [ "default-mobile.handlebars->11->744", "default-mobile.handlebars->11->748", @@ -52479,7 +52623,7 @@ "zh-cht": "一天", "hu": "Egy Nap", "xloc": [ - "default.handlebars->47->2601" + "default.handlebars->47->2629" ] }, { @@ -52534,7 +52678,7 @@ "zh-cht": "一次性密碼", "hu": "OTP Egyszer használatos jelszó", "xloc": [ - "default.handlebars->47->3117" + "default.handlebars->47->3145" ] }, { @@ -52590,7 +52734,7 @@ "zh-cht": "在線用戶", "hu": "Online felhasználók", "xloc": [ - "default.handlebars->47->2624" + "default.handlebars->47->2652" ] }, { @@ -52617,7 +52761,7 @@ "zh-cht": "僅顯示前 100 個用戶", "hu": "Csak az első 100 felhasználót jelenítse meg", "xloc": [ - "default.handlebars->47->2671" + "default.handlebars->47->2699" ] }, { @@ -52645,8 +52789,8 @@ "hu": "Csak 200k-nál kisebb fájlok szerkeszthetők.", "xloc": [ "default-mobile.handlebars->11->699", - "default.handlebars->47->1519", - "default.handlebars->47->2419", + "default.handlebars->47->1526", + "default.handlebars->47->2447", "default.handlebars->47->827", "sharing.handlebars->11->67" ] @@ -53019,7 +53163,7 @@ "zh-cht": "開場:{0}", "hu": "Nyitás: {0}", "xloc": [ - "default.handlebars->47->2448" + "default.handlebars->47->2476" ] }, { @@ -53046,10 +53190,10 @@ "zh-cht": "操作系統", "hu": "Operációs rendszer ", "xloc": [ - "default-mobile.handlebars->11->757", - "default.handlebars->47->1307", - "default.handlebars->47->1561", - "default.handlebars->47->3083", + "default-mobile.handlebars->11->756", + "default.handlebars->47->1309", + "default.handlebars->47->1571", + "default.handlebars->47->3111", "default.handlebars->47->340", "default.handlebars->47->545", "default.handlebars->47->594", @@ -53081,9 +53225,9 @@ "hu": "Művelet", "xloc": [ "default-mobile.handlebars->11->580", - "default.handlebars->47->1237", - "default.handlebars->47->2653", - "default.handlebars->47->2738", + "default.handlebars->47->1239", + "default.handlebars->47->2681", + "default.handlebars->47->2766", "default.handlebars->47->722", "default.handlebars->47->734" ] @@ -53164,7 +53308,7 @@ "hu": " orija", "xloc": [ "default-mobile.handlebars->11->229", - "default.handlebars->47->1877", + "default.handlebars->47->1905", "login2.handlebars->7->126" ] }, @@ -53193,7 +53337,7 @@ "hu": "oromó", "xloc": [ "default-mobile.handlebars->11->230", - "default.handlebars->47->1878", + "default.handlebars->47->1906", "login2.handlebars->7->127" ] }, @@ -53453,7 +53597,7 @@ "zh-cht": "自己的過程", "hu": "OwnProcess", "xloc": [ - "default.handlebars->47->1426" + "default.handlebars->47->1429" ] }, { @@ -53480,7 +53624,7 @@ "zh-cht": "PID", "hu": "PID", "xloc": [ - "default.handlebars->47->1422", + "default.handlebars->47->1425", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -53508,8 +53652,8 @@ "zh-cht": "推", "hu": "PUSH", "xloc": [ - "default-mobile.handlebars->11->849", - "default.handlebars->47->1675" + "default-mobile.handlebars->11->877", + "default.handlebars->47->1703" ] }, { @@ -53537,7 +53681,7 @@ "hu": "Page Down", "xloc": [ "default-mobile.handlebars->11->635", - "default.handlebars->47->1384" + "default.handlebars->47->1387" ] }, { @@ -53565,7 +53709,7 @@ "hu": "Page Up", "xloc": [ "default-mobile.handlebars->11->634", - "default.handlebars->47->1383" + "default.handlebars->47->1386" ] }, { @@ -53619,10 +53763,12 @@ "zh-cht": "零件號", "hu": "Cikkszám", "xloc": [ - "default-mobile.handlebars->11->829", - "default-mobile.handlebars->11->835", - "default.handlebars->47->1643", - "default.handlebars->47->1649" + "default-mobile.handlebars->11->834", + "default-mobile.handlebars->11->840", + "default-mobile.handlebars->11->846", + "default.handlebars->47->1659", + "default.handlebars->47->1665", + "default.handlebars->47->1671" ] }, { @@ -53649,7 +53795,7 @@ "zh-cht": "部分的", "hu": "Egyedi", "xloc": [ - "default.handlebars->47->2640" + "default.handlebars->47->2668" ] }, { @@ -53725,8 +53871,8 @@ "hu": "Részleges jogok", "xloc": [ "default-mobile.handlebars->11->342", - "default-mobile.handlebars->11->881", - "default.handlebars->47->2031" + "default-mobile.handlebars->11->909", + "default.handlebars->47->2059" ] }, { @@ -53753,7 +53899,7 @@ "zh-cht": "部分權限", "hu": "Részleges jogok", "xloc": [ - "default.handlebars->47->2822" + "default.handlebars->47->2850" ] }, { @@ -53810,18 +53956,18 @@ "default-mobile.handlebars->11->596", "default-mobile.handlebars->11->666", "default-mobile.handlebars->11->673", - "default.handlebars->47->1264", - "default.handlebars->47->1355", - "default.handlebars->47->1465", - "default.handlebars->47->1472", - "default.handlebars->47->2023", - "default.handlebars->47->2185", - "default.handlebars->47->2700", - "default.handlebars->47->2701", - "default.handlebars->47->2859", - "default.handlebars->47->2861", - "default.handlebars->47->2964", - "default.handlebars->47->2965", + "default.handlebars->47->1266", + "default.handlebars->47->1358", + "default.handlebars->47->1468", + "default.handlebars->47->1475", + "default.handlebars->47->2051", + "default.handlebars->47->2213", + "default.handlebars->47->2728", + "default.handlebars->47->2729", + "default.handlebars->47->2887", + "default.handlebars->47->2889", + "default.handlebars->47->2992", + "default.handlebars->47->2993", "default.handlebars->47->334", "default.handlebars->47->505", "login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->2->1", @@ -53980,8 +54126,8 @@ "zh-cht": "密碼已更改。", "hu": "A jelszó megváltozott.", "xloc": [ - "default-mobile.handlebars->11->976", - "default.handlebars->47->3179" + "default-mobile.handlebars->11->1004", + "default.handlebars->47->3207" ] }, { @@ -54036,7 +54182,7 @@ "zh-cht": "密碼提示", "hu": "Jelszó tipp", "xloc": [ - "default.handlebars->47->2966" + "default.handlebars->47->2994" ] }, { @@ -54064,7 +54210,7 @@ "hu": "Jelszó tipp:", "xloc": [ "default-mobile.handlebars->11->326", - "default.handlebars->47->1998" + "default.handlebars->47->2026" ] }, { @@ -54171,8 +54317,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->11->318", "default-mobile.handlebars->11->319", - "default.handlebars->47->1990", - "default.handlebars->47->1991", + "default.handlebars->47->2018", + "default.handlebars->47->2019", "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", @@ -54217,9 +54363,9 @@ "default-mobile.handlebars->11->704", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->47->1486", - "default.handlebars->47->1525", - "default.handlebars->47->2421", + "default.handlebars->47->1489", + "default.handlebars->47->1533", + "default.handlebars->47->2449", "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", @@ -54413,8 +54559,8 @@ "zh-cht": "執行代理指令", "hu": "Agent művelet végrehajtása", "xloc": [ - "default-mobile.handlebars->11->852", - "default.handlebars->47->1678" + "default-mobile.handlebars->11->880", + "default.handlebars->47->1706" ] }, { @@ -54489,7 +54635,7 @@ "zh-cht": "執行英特爾®AMT激活和配置。", "hu": "Végezze el az Intel® AMT aktiválását és konfigurálását.", "xloc": [ - "default.handlebars->47->2129", + "default.handlebars->47->2157", "default.handlebars->47->482" ] }, @@ -54616,9 +54762,10 @@ { "en": "Perform Intel® AMT power off?

NOTE: If there is an active AMT session, then power off command will be rejected, so you must disconnect from the AMT session first!", "nl": "Voer Intel® AMT uit?

LET OP: Als er een actieve AMT-sessie is, wordt het uitschakelcommando afgewezen, dus u moet eerst de verbinding met de AMT-sessie verbreken!", + "pl": "Wykonać wyłączenie poprzez Intel® AMT?

UWAGA: Jeśli istnieje aktywna sesja AMT, polecenie wyłączenia zasilania zostanie odrzucone, musisz więc wcześniej rozłączyć sesje AMT!", "xloc": [ "default-mobile.handlebars->11->586", - "default.handlebars->47->1252" + "default.handlebars->47->1254" ] }, { @@ -54630,7 +54777,7 @@ "hu": "Végrehajtja a indítást és Intel® AMT-n keresztül a BIOS elérését?", "de": "Intel® AMT Einschalten ins BIOS durchführen?", "xloc": [ - "default.handlebars->47->1256" + "default.handlebars->47->1258" ] }, { @@ -54658,7 +54805,7 @@ "hu": "Végrehajtja az Intel® AMT bekapcsolását?", "xloc": [ "default-mobile.handlebars->11->584", - "default.handlebars->47->1250" + "default.handlebars->47->1252" ] }, { @@ -54670,7 +54817,7 @@ "hu": "Végrehajtása az Intel® AMT BIOS reset-et?", "de": "Intel® AMT Reset ins BIOS durchführen?", "xloc": [ - "default.handlebars->47->1258" + "default.handlebars->47->1260" ] }, { @@ -54698,7 +54845,7 @@ "hu": "Végrehajtása az Intel® AMT reset-et?", "xloc": [ "default-mobile.handlebars->11->588", - "default.handlebars->47->1254" + "default.handlebars->47->1256" ] }, { @@ -54863,7 +55010,7 @@ "zh-cht": "執行電源操作= {0},強制執行= {1}", "hu": "Végrehajtott tápellárás művelet={0}, kényszerített={1}", "xloc": [ - "default.handlebars->47->2453" + "default.handlebars->47->2481" ] }, { @@ -54890,8 +55037,8 @@ "zh-cht": "沒有權限", "hu": "Hozzáférés megtagadva", "xloc": [ - "default-mobile.handlebars->11->957", - "default.handlebars->47->3160" + "default-mobile.handlebars->11->985", + "default.handlebars->47->3188" ] }, { @@ -54918,9 +55065,9 @@ "zh-cht": "權限", "hu": "Jogosultságok", "xloc": [ - "default-mobile.handlebars->11->942", - "default.handlebars->47->2317", - "default.handlebars->47->2623" + "default-mobile.handlebars->11->970", + "default.handlebars->47->2345", + "default.handlebars->47->2651" ] }, { @@ -54948,7 +55095,7 @@ "hu": "perzsa/irán", "xloc": [ "default-mobile.handlebars->11->231", - "default.handlebars->47->1879", + "default.handlebars->47->1907", "login2.handlebars->7->128" ] }, @@ -55033,10 +55180,10 @@ "default-mobile.handlebars->11->100", "default-mobile.handlebars->11->83", "default-mobile.handlebars->11->98", - "default.handlebars->47->1693", - "default.handlebars->47->1696", + "default.handlebars->47->1721", + "default.handlebars->47->1724", "default.handlebars->47->252", - "default.handlebars->47->2913" + "default.handlebars->47->2941" ] }, { @@ -55063,7 +55210,7 @@ "zh-cht": "電話號碼", "hu": "Telefonszám", "xloc": [ - "default.handlebars->47->2837" + "default.handlebars->47->2865" ] }, { @@ -55091,8 +55238,8 @@ "hu": "Telefonszám:", "xloc": [ "default-mobile.handlebars->11->99", - "default.handlebars->47->1695", - "default.handlebars->47->2912" + "default.handlebars->47->1723", + "default.handlebars->47->2940" ] }, { @@ -55307,7 +55454,7 @@ "hu": "Kérjük, várjon néhány percet, amíg megkapja az igazolást.", "xloc": [ "default-mobile.handlebars->11->314", - "default.handlebars->47->1985" + "default.handlebars->47->2013" ] }, { @@ -55335,7 +55482,7 @@ "hu": "Plugin Művelet", "xloc": [ "default.handlebars->47->315", - "default.handlebars->47->3294" + "default.handlebars->47->3322" ] }, { @@ -55528,7 +55675,7 @@ "hu": "Házirend", "xloc": [ "default-mobile.handlebars->11->341", - "default.handlebars->47->2030" + "default.handlebars->47->2058" ] }, { @@ -55556,7 +55703,7 @@ "hu": "lengyel", "xloc": [ "default-mobile.handlebars->11->232", - "default.handlebars->47->1880", + "default.handlebars->47->1908", "login2.handlebars->7->129" ] }, @@ -55569,8 +55716,8 @@ "hu": "Port", "de": "Port", "xloc": [ - "default.handlebars->47->1214", - "default.handlebars->47->1215" + "default.handlebars->47->1216", + "default.handlebars->47->1217" ] }, { @@ -55645,7 +55792,7 @@ "zh-cht": "端口名稱同步", "hu": "Port Név Szinkronizásás", "xloc": [ - "default.handlebars->47->2088" + "default.handlebars->47->2116" ] }, { @@ -55777,7 +55924,7 @@ "hu": "portugál", "xloc": [ "default-mobile.handlebars->11->233", - "default.handlebars->47->1881", + "default.handlebars->47->1909", "login2.handlebars->7->130" ] }, @@ -55806,7 +55953,7 @@ "hu": "portugál (Brazília)", "xloc": [ "default-mobile.handlebars->11->234", - "default.handlebars->47->1882", + "default.handlebars->47->1910", "login2.handlebars->7->131" ] }, @@ -55946,7 +56093,7 @@ "zh-cht": "電源狀態", "hu": "Energiaellátás Statisztika", "xloc": [ - "default.handlebars->47->2369", + "default.handlebars->47->2397", "default.handlebars->container->column_l->p21->p21main->1->1->meshPowerChartDiv->1" ] }, @@ -55976,7 +56123,7 @@ "xloc": [ "default-mobile.handlebars->11->442", "default-mobile.handlebars->11->576", - "default.handlebars->47->1228", + "default.handlebars->47->1230", "default.handlebars->47->6" ] }, @@ -56066,6 +56213,8 @@ }, { "en": "Pre", + "nl": "Pre", + "pl": "Przed", "xloc": [ "default.handlebars->47->426" ] @@ -56094,7 +56243,7 @@ "zh-cht": "預激活", "hu": "Pre-activation", "xloc": [ - "default.handlebars->47->1605" + "default.handlebars->47->1615" ] }, { @@ -56151,7 +56300,7 @@ "zh-cht": "存在於伺服器上", "hu": "Kiszolgálón tárolva", "xloc": [ - "default.handlebars->47->3037" + "default.handlebars->47->3065" ] }, { @@ -56291,9 +56440,9 @@ "xloc": [ "default-mobile.handlebars->11->88", "default-mobile.handlebars->11->89", - "default.handlebars->47->1688", - "default.handlebars->47->2907", - "default.handlebars->47->2962", + "default.handlebars->47->1716", + "default.handlebars->47->2935", + "default.handlebars->47->2990", "default.handlebars->47->327" ] }, @@ -56322,7 +56471,7 @@ "hu": "Print Screen", "xloc": [ "default-mobile.handlebars->11->628", - "default.handlebars->47->1378" + "default.handlebars->47->1381" ] }, { @@ -56508,7 +56657,7 @@ "zh-cht": "進程控制", "hu": "Foylamat Vezérés", "xloc": [ - "default.handlebars->47->1450" + "default.handlebars->47->1453" ] }, { @@ -56535,7 +56684,7 @@ "zh-cht": "流程詳情,#{0}", "hu": "Folyamat részletei, #{0}", "xloc": [ - "default.handlebars->47->1413" + "default.handlebars->47->1416" ] }, { @@ -56616,7 +56765,7 @@ "zh-cht": "處理控制台命令:“{0}”", "hu": "Konzolparancs feldolgozása: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2445" + "default.handlebars->47->2473" ] }, { @@ -56670,7 +56819,7 @@ "zh-cht": "用戶同意提示", "hu": "Hozzájárulás kérése kapcsolódáskor", "xloc": [ - "default.handlebars->47->1212" + "default.handlebars->47->1214" ] }, { @@ -56697,9 +56846,9 @@ "zh-cht": "用戶同意提示", "hu": "Felhasználói hozzájárulás kérése", "xloc": [ - "default.handlebars->47->2223", - "default.handlebars->47->2227", - "default.handlebars->47->2230" + "default.handlebars->47->2251", + "default.handlebars->47->2255", + "default.handlebars->47->2258" ] }, { @@ -56726,7 +56875,7 @@ "zh-cht": "協議", "hu": "Protokoll", "xloc": [ - "default.handlebars->47->3035", + "default.handlebars->47->3063", "player.handlebars->3->32" ] }, @@ -56754,7 +56903,7 @@ "zh-cht": "協議協商失敗 ({0})", "hu": "A protokoll egyeztetése sikertelen ({0})", "xloc": [ - "default.handlebars->47->1340" + "default.handlebars->47->1343" ] }, { @@ -56805,8 +56954,8 @@ "zh-cht": "配置狀態", "hu": "Telepítés (Provisioning) Állapot", "xloc": [ - "default-mobile.handlebars->11->795", - "default.handlebars->47->1609" + "default-mobile.handlebars->11->794", + "default.handlebars->47->1619" ] }, { @@ -56858,7 +57007,7 @@ "hu": "Puvlikus link", "xloc": [ "default-mobile.handlebars->11->353", - "default.handlebars->47->2404" + "default.handlebars->47->2432" ] }, { @@ -56910,7 +57059,7 @@ "hu": "pandzsábi", "xloc": [ "default-mobile.handlebars->11->235", - "default.handlebars->47->1883", + "default.handlebars->47->1911", "login2.handlebars->7->132" ] }, @@ -56939,7 +57088,7 @@ "hu": "pandzsábi (India)", "xloc": [ "default-mobile.handlebars->11->236", - "default.handlebars->47->1884", + "default.handlebars->47->1912", "login2.handlebars->7->133" ] }, @@ -56968,7 +57117,7 @@ "hu": "pandzsábi (Pakisztán)", "xloc": [ "default-mobile.handlebars->11->237", - "default.handlebars->47->1885", + "default.handlebars->47->1913", "login2.handlebars->7->134" ] }, @@ -57024,7 +57173,7 @@ "zh-cht": "推送通知", "hu": "Push Értesítés", "xloc": [ - "default.handlebars->47->3116" + "default.handlebars->47->3144" ] }, { @@ -57085,8 +57234,8 @@ "nl": "Pushover", "pl": "Pushover", "xloc": [ - "default.handlebars->47->1705", - "default.handlebars->47->2920" + "default.handlebars->47->1733", + "default.handlebars->47->2948" ] }, { @@ -57168,7 +57317,7 @@ "hu": "quechua", "xloc": [ "default-mobile.handlebars->11->238", - "default.handlebars->47->1886", + "default.handlebars->47->1914", "login2.handlebars->7->135" ] }, @@ -57301,7 +57450,7 @@ "ja": "RDP 연결", "ko": "RDP 연결", "nl": "RDP verbinden", - "pl": "Połącz (protokół RDP)", + "pl": "Połącz przez RDP", "pt": "Conexão RDP", "pt-br": "Conexão RDP", "ru": "Подключиться по RDP", @@ -57365,7 +57514,7 @@ "zh-cht": "RDP 憑證", "hu": "RDP hitelesítő adatok", "xloc": [ - "default.handlebars->47->1359" + "default.handlebars->47->1362" ] }, { @@ -57392,6 +57541,13 @@ "zh-cht": "RDP 端口", "hu": "RDP Port" }, + { + "en": "RDP Port {0}", + "nl": "RDP Poort {0}", + "xloc": [ + "default.handlebars->47->1336" + ] + }, { "bs": "RDP port za daljinsko povezivanje:", "cs": "Port vzdáleného připojení RDP:", @@ -57525,7 +57681,7 @@ "zh-cht": "RSS", "hu": "RSS", "xloc": [ - "default.handlebars->47->3252" + "default.handlebars->47->3280" ] }, { @@ -57579,7 +57735,7 @@ "zh-cht": "隨機密碼", "hu": "Véletlenszerű jelszó", "xloc": [ - "default.handlebars->47->2186" + "default.handlebars->47->2214" ] }, { @@ -57606,7 +57762,7 @@ "zh-cht": "隨機密碼。", "hu": "Véletlenszerű jelszó generálása", "xloc": [ - "default.handlebars->47->2702" + "default.handlebars->47->2730" ] }, { @@ -57633,7 +57789,7 @@ "zh-cht": "力登 Dominion KX III", "hu": "Raritan Dominion KX III", "xloc": [ - "default.handlebars->47->2019" + "default.handlebars->47->2047" ] }, { @@ -57738,14 +57894,15 @@ "zh-cht": "真正的名字", "hu": "Teljes Név", "xloc": [ - "default.handlebars->47->2834", - "default.handlebars->47->2836", - "default.handlebars->47->2955" + "default.handlebars->47->2862", + "default.handlebars->47->2864", + "default.handlebars->47->2983" ] }, { "en": "RealTimeProtection", "nl": "RealTimeProtection", + "pl": "Ochrona W Czasie Rzeczywistym", "xloc": [ "default-mobile.handlebars->11->743", "default-mobile.handlebars->11->745", @@ -57777,7 +57934,7 @@ "zh-cht": "境界", "hu": "Realms", "xloc": [ - "default.handlebars->47->2711" + "default.handlebars->47->2739" ] }, { @@ -57805,7 +57962,7 @@ "hu": "A fogadott hálózati adatok érvénytelenek", "xloc": [ "default-mobile.handlebars->11->619", - "default.handlebars->47->1338", + "default.handlebars->47->1341", "sharing.handlebars->11->10", "sharing.handlebars->11->32" ] @@ -57834,9 +57991,9 @@ "zh-cht": "記錄會議", "hu": "Munkamenetek rögzítése", "xloc": [ - "default.handlebars->47->2090", - "default.handlebars->47->2761", - "default.handlebars->47->2842" + "default.handlebars->47->2118", + "default.handlebars->47->2789", + "default.handlebars->47->2870" ] }, { @@ -57890,9 +58047,9 @@ "zh-cht": "記錄會議", "hu": "Munkamenetek rögzítése", "xloc": [ - "default.handlebars->47->2231", - "default.handlebars->47->2799", - "default.handlebars->47->2943" + "default.handlebars->47->2259", + "default.handlebars->47->2827", + "default.handlebars->47->2971" ] }, { @@ -57919,7 +58076,7 @@ "zh-cht": "記錄細節", "hu": "Felvétel részletek", "xloc": [ - "default.handlebars->47->3049" + "default.handlebars->47->3077" ] }, { @@ -57951,8 +58108,11 @@ }, { "en": "Recovery Password", + "nl": "Herstelwachtwoord", + "pl": "Hasło Odzyskiwania", "xloc": [ - "default.handlebars->47->1666" + "default-mobile.handlebars->11->869", + "default.handlebars->47->1694" ] }, { @@ -58007,7 +58167,7 @@ "zh-cht": "每天重複", "hu": "Napi rendszerességgel ismétlődő", "xloc": [ - "default.handlebars->47->1203" + "default.handlebars->47->1204" ] }, { @@ -58034,7 +58194,7 @@ "zh-cht": "每週重複", "hu": "Heti rendszerességgel ismétlődő", "xloc": [ - "default.handlebars->47->1204" + "default.handlebars->47->1205" ] }, { @@ -58087,8 +58247,8 @@ "xloc": [ "default-mobile.handlebars->11->359", "default-mobile.handlebars->11->692", - "default.handlebars->47->1512", - "default.handlebars->47->2411", + "default.handlebars->47->1519", + "default.handlebars->47->2439", "sharing.handlebars->11->60" ] }, @@ -58264,8 +58424,8 @@ "default-mobile.handlebars->11->466", "default.handlebars->47->1117", "default.handlebars->47->1142", - "default.handlebars->47->2313", - "default.handlebars->47->3234", + "default.handlebars->47->2341", + "default.handlebars->47->3262", "default.handlebars->47->411", "default.handlebars->47->415", "default.handlebars->47->699" @@ -58295,7 +58455,7 @@ "zh-cht": "中繼數量", "hu": "Relay Szám", "xloc": [ - "default.handlebars->47->3219" + "default.handlebars->47->3247" ] }, { @@ -58322,11 +58482,11 @@ "zh-cht": "繼電器裝置", "hu": "Relay Eszköz", "xloc": [ - "default-mobile.handlebars->11->874", - "default-mobile.handlebars->11->890", - "default.handlebars->47->2016", - "default.handlebars->47->2081", - "default.handlebars->47->2212" + "default-mobile.handlebars->11->902", + "default-mobile.handlebars->11->918", + "default.handlebars->47->2044", + "default.handlebars->47->2109", + "default.handlebars->47->2240" ] }, { @@ -58353,7 +58513,7 @@ "zh-cht": "中繼錯誤", "hu": "Relay Hibák", "xloc": [ - "default.handlebars->47->3212" + "default.handlebars->47->3240" ] }, { @@ -58404,8 +58564,8 @@ "zh-cht": "中繼連接", "hu": "Relay munkamenetek", "xloc": [ - "default.handlebars->47->3218", - "default.handlebars->47->3246" + "default.handlebars->47->3246", + "default.handlebars->47->3274" ] }, { @@ -58432,7 +58592,7 @@ "zh-cht": "繼電器裝置", "hu": "Relay eszköz", "xloc": [ - "default.handlebars->47->2593" + "default.handlebars->47->2621" ] }, { @@ -58510,7 +58670,7 @@ "zh-cht": "記住設備", "hu": "Emlékezzen az eszközre", "xloc": [ - "default.handlebars->47->3118" + "default.handlebars->47->3146" ] }, { @@ -58538,8 +58698,8 @@ "hu": "Hitelesítő adatok megjegyzése", "xloc": [ "default-mobile.handlebars->11->667", - "default.handlebars->47->1356", - "default.handlebars->47->1466", + "default.handlebars->47->1359", + "default.handlebars->47->1469", "mstsc.handlebars->main->1->3->1->rowremember->3->0", "ssh.handlebars->3->14" ] @@ -58569,7 +58729,7 @@ "hu": "Elmékezzej a jelszóra", "xloc": [ "default-mobile.handlebars->11->672", - "default.handlebars->47->1471", + "default.handlebars->47->1474", "ssh.handlebars->3->19" ] }, @@ -58676,7 +58836,7 @@ "hu": "Emlékezzen a felhaszálóra és kulcsra", "xloc": [ "default-mobile.handlebars->11->671", - "default.handlebars->47->1470", + "default.handlebars->47->1473", "ssh.handlebars->3->18" ] }, @@ -58810,7 +58970,7 @@ "zh-cht": "遠程剪貼板", "hu": "Távoli vágólap", "xloc": [ - "default.handlebars->47->1411" + "default.handlebars->47->1414" ] }, { @@ -58837,8 +58997,8 @@ "zh-cht": "遠程命令", "hu": "Távoli parancsok", "xloc": [ - "default-mobile.handlebars->11->917", - "default.handlebars->47->2271" + "default-mobile.handlebars->11->945", + "default.handlebars->47->2299" ] }, { @@ -58867,11 +59027,11 @@ "xloc": [ "default-mobile.handlebars->11->544", "default-mobile.handlebars->11->545", - "default-mobile.handlebars->11->904", - "default-mobile.handlebars->11->924", + "default-mobile.handlebars->11->932", + "default-mobile.handlebars->11->952", "default.handlebars->47->1000", "default.handlebars->47->1001", - "default.handlebars->47->2295" + "default.handlebars->47->2323" ] }, { @@ -58882,7 +59042,7 @@ "pl": "Zdalne Sterowanie i Przekierowanie", "de": "Entfernte Ausführung & Weiterleitung", "xloc": [ - "default.handlebars->47->2256" + "default.handlebars->47->2284" ] }, { @@ -59020,8 +59180,8 @@ "zh-cht": "遠程桌面連接欄已激活/更新", "hu": "Remote Desktop Connection Bar Activated/Updated", "xloc": [ - "default.handlebars->47->2459", - "default.handlebars->47->2465" + "default.handlebars->47->2487", + "default.handlebars->47->2493" ] }, { @@ -59048,7 +59208,7 @@ "zh-cht": "遠程桌面連接欄失敗或不受支持", "hu": "Remote Desktop Connection Bar Failed or Not Supported", "xloc": [ - "default.handlebars->47->2460" + "default.handlebars->47->2488" ] }, { @@ -59075,7 +59235,7 @@ "zh-cht": "遠程桌面連接欄失敗或不受支持", "hu": "Remote Desktop Connection Bar Failed or not Supported", "xloc": [ - "default.handlebars->47->2466" + "default.handlebars->47->2494" ] }, { @@ -59102,9 +59262,9 @@ "zh-cht": "本地用戶強行關閉了遠程桌面連接", "hu": "A távoli asztali kapcsolatot a helyi felhasználó erőszakkal lezárta", "xloc": [ - "default.handlebars->47->2457", - "default.handlebars->47->2461", - "default.handlebars->47->2467" + "default.handlebars->47->2485", + "default.handlebars->47->2489", + "default.handlebars->47->2495" ] }, { @@ -59183,7 +59343,7 @@ "hu": "Távoli Asztal beállítások", "xloc": [ "default-mobile.handlebars->11->621", - "default.handlebars->47->1368", + "default.handlebars->47->1371", "default.handlebars->47->477", "sharing.handlebars->11->20" ] @@ -59383,7 +59543,7 @@ "zh-cht": "遠程輸入鎖定", "hu": "Távoli bemeneti zár", "xloc": [ - "default.handlebars->47->1156" + "default.handlebars->47->1157" ] }, { @@ -59410,7 +59570,7 @@ "zh-cht": "遠程鍵盤輸入", "hu": "Távoli billentyűzet bevitel", "xloc": [ - "default.handlebars->47->1407", + "default.handlebars->47->1410", "sharing.handlebars->11->22" ] }, @@ -59438,7 +59598,7 @@ "zh-cht": "遠程網格用戶", "hu": "Távoli Mesh Felhasználó", "xloc": [ - "default-mobile.handlebars->11->945" + "default-mobile.handlebars->11->973" ] }, { @@ -59489,7 +59649,7 @@ "zh-cht": "遠程會話", "hu": "Távoli munkamenetek", "xloc": [ - "default.handlebars->47->3051" + "default.handlebars->47->3079" ] }, { @@ -59642,11 +59802,11 @@ "zh-cht": "僅遠程查看", "hu": "Csak távoli megtekintés", "xloc": [ - "default-mobile.handlebars->11->905", - "default-mobile.handlebars->11->929", - "default.handlebars->47->2257", - "default.handlebars->47->2300", - "default.handlebars->47->2946" + "default-mobile.handlebars->11->933", + "default-mobile.handlebars->11->957", + "default.handlebars->47->2285", + "default.handlebars->47->2328", + "default.handlebars->47->2974" ] }, { @@ -59673,7 +59833,7 @@ "zh-cht": "遠程剪貼板的有效期為60秒。", "hu": "A távoli vágólap 60 másodpercig érvényes.", "xloc": [ - "default.handlebars->47->1410" + "default.handlebars->47->1413" ] }, { @@ -59785,8 +59945,11 @@ }, { "en": "Removable", + "nl": "Verwijderbaar", + "pl": "Wyjmowane", "xloc": [ - "default.handlebars->47->1659" + "default-mobile.handlebars->11->856", + "default.handlebars->47->1681" ] }, { @@ -59864,7 +60027,7 @@ "zh-cht": "刪除配置", "hu": "Konfiguráció eltávolítása", "xloc": [ - "default.handlebars->47->2051" + "default.handlebars->47->2079" ] }, { @@ -59939,8 +60102,8 @@ "zh-cht": "刪除裝置群權限", "hu": "Eszközcsoport engedélyek eltávolítása", "xloc": [ - "default.handlebars->47->2803", - "default.handlebars->47->3007" + "default.handlebars->47->2831", + "default.handlebars->47->3035" ] }, { @@ -59967,8 +60130,8 @@ "zh-cht": "刪除裝置權限", "hu": "Eszközengedélyek eltávolítása", "xloc": [ - "default.handlebars->47->2801", - "default.handlebars->47->2994" + "default.handlebars->47->2829", + "default.handlebars->47->3022" ] }, { @@ -59995,7 +60158,7 @@ "zh-cht": "刪除設備共享", "hu": "Eszközmegosztás eltávolítása", "xloc": [ - "default.handlebars->47->2992" + "default.handlebars->47->3020" ] }, { @@ -60022,7 +60185,7 @@ "zh-cht": "刪除登錄令牌", "hu": "Bejelentkezési token eltávolítása", "xloc": [ - "default.handlebars->47->2043" + "default.handlebars->47->2071" ] }, { @@ -60073,7 +60236,7 @@ "zh-cht": "刪除用戶群成員身份", "hu": "Felhasználói csoporttagság eltávolítása", "xloc": [ - "default.handlebars->47->3003" + "default.handlebars->47->3031" ] }, { @@ -60100,8 +60263,8 @@ "zh-cht": "刪除用戶群權限", "hu": "Felhasználói csoport engedélyeinek eltávolítása", "xloc": [ - "default.handlebars->47->2322", - "default.handlebars->47->2999" + "default.handlebars->47->2350", + "default.handlebars->47->3027" ] }, { @@ -60128,7 +60291,7 @@ "zh-cht": "刪除用戶成員資格", "hu": "Felhasználói tagság eltávolítása", "xloc": [ - "default.handlebars->47->2811" + "default.handlebars->47->2839" ] }, { @@ -60155,8 +60318,8 @@ "zh-cht": "刪除用戶權限", "hu": "Felhasználói engedélyek eltávolítása", "xloc": [ - "default.handlebars->47->2320", - "default.handlebars->47->2996" + "default.handlebars->47->2348", + "default.handlebars->47->3024" ] }, { @@ -60183,7 +60346,7 @@ "zh-cht": "刪除所有二因子鑑別。", "hu": "Távolítson el minden 2. faktoros hitelesítést.", "xloc": [ - "default.handlebars->47->2969" + "default.handlebars->47->2997" ] }, { @@ -60210,7 +60373,7 @@ "zh-cht": "刪除此用戶標識的所有先前事件。", "hu": "A felhasználó összes korábbi eseményének eltávolítása. ", "xloc": [ - "default.handlebars->47->2703" + "default.handlebars->47->2731" ] }, { @@ -60237,7 +60400,7 @@ "zh-cht": "斷開連接後删除裝置", "hu": "Az eszköz eltávolítása lecsatlakozáskor", "xloc": [ - "default.handlebars->47->2234" + "default.handlebars->47->2262" ] }, { @@ -60265,7 +60428,7 @@ "hu": "Eszközmegosztás eltávolítása", "xloc": [ "default.handlebars->47->1060", - "default.handlebars->47->2144" + "default.handlebars->47->2172" ] }, { @@ -60292,7 +60455,7 @@ "zh-cht": "刪除非活動", "hu": "Inaktívak eltávolítása", "xloc": [ - "default.handlebars->47->2091" + "default.handlebars->47->2119" ] }, { @@ -60319,7 +60482,7 @@ "zh-cht": "刪除登錄令牌", "hu": "Bejelentkezési token eltávolítása", "xloc": [ - "default.handlebars->47->2038" + "default.handlebars->47->2066" ] }, { @@ -60330,7 +60493,7 @@ "pl": "Usuń obsługę komunikatora", "de": "Benachrichtigen entfernen", "xloc": [ - "default.handlebars->47->1698" + "default.handlebars->47->1726" ] }, { @@ -60385,7 +60548,7 @@ "hu": "Telefonszám eltávolítása", "xloc": [ "default-mobile.handlebars->11->97", - "default.handlebars->47->1692" + "default.handlebars->47->1720" ] }, { @@ -60466,7 +60629,7 @@ "zh-cht": "刪除此用戶", "hu": "Távolítsa el ezt a felhasználót", "xloc": [ - "default.handlebars->47->2902" + "default.handlebars->47->2930" ] }, { @@ -60493,7 +60656,7 @@ "zh-cht": "刪除用戶群成員身份", "hu": "Felhasználói csoporttagság eltávolítása", "xloc": [ - "default.handlebars->47->2983" + "default.handlebars->47->3011" ] }, { @@ -60520,7 +60683,7 @@ "zh-cht": "刪除此裝置的用戶群權限", "hu": "Felhasználói csoportjogok eltávolítása ehhez az eszközhöz", "xloc": [ - "default.handlebars->47->2795" + "default.handlebars->47->2823" ] }, { @@ -60548,7 +60711,7 @@ "hu": "Felhasználói csoportjogok eltávolítása ehhez az eszközcsoporthoz", "xloc": [ "default.handlebars->47->1053", - "default.handlebars->47->2789" + "default.handlebars->47->2817" ] }, { @@ -60576,10 +60739,10 @@ "hu": "Eszköz vagy eszközcsoport eltávolítása", "xloc": [ "default.handlebars->47->1054", - "default.handlebars->47->2140", - "default.handlebars->47->2783", - "default.handlebars->47->2977", - "default.handlebars->47->2989" + "default.handlebars->47->2168", + "default.handlebars->47->2811", + "default.handlebars->47->3005", + "default.handlebars->47->3017" ] }, { @@ -60630,7 +60793,7 @@ "zh-cht": "刪除了帳戶顯示名稱。", "hu": "Fiók megjelenített neve eltávolítva.", "xloc": [ - "default.handlebars->47->2557" + "default.handlebars->47->2585" ] }, { @@ -60657,7 +60820,7 @@ "zh-cht": "刪除身份驗證應用程序", "hu": "Hitelesítési alkalmazás eltávolítva", "xloc": [ - "default.handlebars->47->2519" + "default.handlebars->47->2547" ] }, { @@ -60684,7 +60847,7 @@ "zh-cht": "刪除的設備共享{0}", "hu": "{0} eszközmegosztás eltávolítva", "xloc": [ - "default.handlebars->47->2530" + "default.handlebars->47->2558" ] }, { @@ -60711,7 +60874,7 @@ "zh-cht": "從設備組{1}中刪除了設備{0}", "hu": "{0} eszköz eltávolítása az {1} eszközcsoportból", "xloc": [ - "default.handlebars->47->2515" + "default.handlebars->47->2543" ] }, { @@ -60738,7 +60901,7 @@ "zh-cht": "刪除了登錄令牌", "hu": "Bejelentkezési token eltávolítva", "xloc": [ - "default.handlebars->47->2544" + "default.handlebars->47->2572" ] }, { @@ -60749,7 +60912,7 @@ "pl": "Usunięto konto komunikatora użytkownika {0}", "de": "Benachrichtigen für den Benutzer {0} entfernt", "xloc": [ - "default.handlebars->47->2585" + "default.handlebars->47->2613" ] }, { @@ -60776,7 +60939,7 @@ "zh-cht": "已刪除用戶{0}的電話號碼", "hu": "{0} felhasználó telefonszáma eltávolítva", "xloc": [ - "default.handlebars->47->2525" + "default.handlebars->47->2553" ] }, { @@ -60803,7 +60966,7 @@ "zh-cht": "移除推送通知認證設備", "hu": "Push értesítési hitelesítő eszköz eltávolítva", "xloc": [ - "default.handlebars->47->2542" + "default.handlebars->47->2570" ] }, { @@ -60830,7 +60993,7 @@ "zh-cht": "移除安全密鑰", "hu": "Biztonsági kulcs eltávolítva", "xloc": [ - "default.handlebars->47->2522" + "default.handlebars->47->2550" ] }, { @@ -60857,9 +61020,9 @@ "zh-cht": "刪除了{0}的用戶設備權限", "hu": "Felhasználói eszközjogok eltávolítva {0}", "xloc": [ - "default.handlebars->47->2488", - "default.handlebars->47->2509", - "default.handlebars->47->2514" + "default.handlebars->47->2516", + "default.handlebars->47->2537", + "default.handlebars->47->2542" ] }, { @@ -60886,7 +61049,7 @@ "zh-cht": "從設備組{1}中刪除了用戶組{0}", "hu": "{0} felhasználói csoport eltávolítva a(z) {1} eszközcsoportból", "xloc": [ - "default.handlebars->47->2498" + "default.handlebars->47->2526" ] }, { @@ -60913,7 +61076,7 @@ "zh-cht": "已從設備組{1}中刪除用戶{0}", "hu": "{0} felhasználó eltávolítva a(z) {1} eszközcsoportból", "xloc": [ - "default.handlebars->47->2511" + "default.handlebars->47->2539" ] }, { @@ -60940,8 +61103,8 @@ "zh-cht": "從用戶組{1}中刪除了用戶{0}", "hu": "{0} felhasználó eltávolítva a(z) {1} felhasználócsoportból", "xloc": [ - "default.handlebars->47->2490", - "default.handlebars->47->2500" + "default.handlebars->47->2518", + "default.handlebars->47->2528" ] }, { @@ -60972,8 +61135,8 @@ "default-mobile.handlebars->11->696", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->47->1516", - "default.handlebars->47->2415", + "default.handlebars->47->1523", + "default.handlebars->47->2443", "default.handlebars->47->825", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -61030,7 +61193,7 @@ "zh-cht": "重命名:“{0}”為“{1}”", "hu": "Átnezezés: \\\"{0}\\\" to \\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2476" + "default.handlebars->47->2504" ] }, { @@ -61057,7 +61220,7 @@ "zh-cht": "報告日", "hu": "Jelentés Nap", "xloc": [ - "default.handlebars->47->2602" + "default.handlebars->47->2630" ] }, { @@ -61084,7 +61247,7 @@ "zh-cht": "報告類型", "hu": "Jelentés típusa", "xloc": [ - "default.handlebars->47->2597" + "default.handlebars->47->2625" ] }, { @@ -61111,7 +61274,7 @@ "zh-cht": "報告未返回任何內容。", "hu": "A jelentés nem tartalmaz bejegyzést.", "xloc": [ - "default.handlebars->47->3088" + "default.handlebars->47->3116" ] }, { @@ -61138,7 +61301,7 @@ "zh-cht": "報告.csv", "hu": "Report.csv", "xloc": [ - "default.handlebars->47->3149" + "default.handlebars->47->3177" ] }, { @@ -61297,15 +61460,17 @@ { "en": "Requesting Process Details...", "nl": "Procesdetails opvragen...", + "pl": "Pobieram Informacje o Procesie...", "xloc": [ - "default.handlebars->47->1414" + "default.handlebars->47->1417" ] }, { "en": "Requesting Service Details...", "nl": "Servicegegevens opvragen...", + "pl": "Pobieram Informacje o Usłudze...", "xloc": [ - "default.handlebars->47->1444" + "default.handlebars->47->1447" ] }, { @@ -61356,7 +61521,7 @@ "zh-cht": "要求:", "hu": "Követelmények: ", "xloc": [ - "default.handlebars->47->1999" + "default.handlebars->47->2027" ] }, { @@ -61384,8 +61549,8 @@ "hu": "Követelmények: {0}.", "xloc": [ "default-mobile.handlebars->11->327", - "default.handlebars->47->2708", - "default.handlebars->47->2967" + "default.handlebars->47->2736", + "default.handlebars->47->2995" ] }, { @@ -61498,7 +61663,7 @@ "hu": "Visszaállít", "xloc": [ "default-mobile.handlebars->11->575", - "default.handlebars->47->1227", + "default.handlebars->47->1229", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -61526,8 +61691,8 @@ "zh-cht": "重置/關閉電源", "hu": "Újraindítás / Kikapcsolás", "xloc": [ - "default-mobile.handlebars->11->918", - "default.handlebars->47->2272" + "default-mobile.handlebars->11->946", + "default.handlebars->47->2300" ] }, { @@ -61695,10 +61860,10 @@ "zh-cht": "重置/關閉", "hu": "Újraindítás / Kikapcsolás", "xloc": [ - "default-mobile.handlebars->11->938", + "default-mobile.handlebars->11->966", "default.handlebars->47->1114", "default.handlebars->47->1139", - "default.handlebars->47->2310" + "default.handlebars->47->2338" ] }, { @@ -61725,15 +61890,16 @@ "zh-cht": "重新啟動", "hu": "Újraindítás", "xloc": [ - "default.handlebars->47->1440", + "default.handlebars->47->1443", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, { "en": "Restart Fail Count After ", "nl": "Herstart foutteller na ", + "pl": "Restart licznika niepowodzeń po ", "xloc": [ - "default.handlebars->47->1433" + "default.handlebars->47->1436" ] }, { @@ -61760,7 +61926,7 @@ "zh-cht": "還原伺服器", "hu": "Kiszolgáló visszaállítása", "xloc": [ - "default.handlebars->47->2056" + "default.handlebars->47->2084" ] }, { @@ -61814,7 +61980,7 @@ "zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據。僅當你知道自己在做什麼時才這樣做。", "hu": "Kiszolgáló visszaállítása biztonsági mentésből, ez törli a meglévő kiszolgálói adatokat. Csak akkor tegye ezt, ha tudja, mit csinál!", "xloc": [ - "default.handlebars->47->2053" + "default.handlebars->47->2081" ] }, { @@ -61870,7 +62036,7 @@ "zh-cht": "限制條件", "hu": "Korlátozások", "xloc": [ - "default.handlebars->47->2823" + "default.handlebars->47->2851" ] }, { @@ -61926,7 +62092,7 @@ "hu": "rheto-román", "xloc": [ "default-mobile.handlebars->11->239", - "default.handlebars->47->1887", + "default.handlebars->47->1915", "login2.handlebars->7->136" ] }, @@ -61955,7 +62121,7 @@ "hu": "Jobb", "xloc": [ "default-mobile.handlebars->11->638", - "default.handlebars->47->1387" + "default.handlebars->47->1390" ] }, { @@ -61983,7 +62149,7 @@ "hu": "román", "xloc": [ "default-mobile.handlebars->11->240", - "default.handlebars->47->1888", + "default.handlebars->47->1916", "login2.handlebars->7->137" ] }, @@ -62012,7 +62178,7 @@ "hu": "román (Moldova)", "xloc": [ "default-mobile.handlebars->11->241", - "default.handlebars->47->1889", + "default.handlebars->47->1917", "login2.handlebars->7->138" ] }, @@ -62042,8 +62208,8 @@ "xloc": [ "default-mobile.handlebars->11->345", "default-mobile.handlebars->11->685", - "default.handlebars->47->1497", - "default.handlebars->47->2383", + "default.handlebars->47->1504", + "default.handlebars->47->2411", "sharing.handlebars->11->49" ] }, @@ -62291,8 +62457,8 @@ "zh-cht": "運行命令", "hu": "Parancsok futtatása", "xloc": [ - "default.handlebars->47->1225", - "default.handlebars->47->1247", + "default.handlebars->47->1227", + "default.handlebars->47->1249", "default.handlebars->47->788" ] }, @@ -62320,7 +62486,7 @@ "zh-cht": "運行MeshCentral Router,然後單擊“安裝”以使其可從瀏覽器啟動。", "hu": "Futtassa a MeshCentral Routert, és kattintson a \\\"Install\\\" gombra, hogy a böngészőből elindítható legyen a kapcsolat.", "xloc": [ - "default.handlebars->47->1293" + "default.handlebars->47->1295" ] }, { @@ -62360,7 +62526,7 @@ "zh-cht": "以代理身份運行", "hu": "Futtatás agent-ként", "xloc": [ - "default.handlebars->47->1244", + "default.handlebars->47->1246", "default.handlebars->47->782" ] }, @@ -62388,7 +62554,7 @@ "zh-cht": "以用戶身份運行,如果沒有用戶,則運行代理", "hu": "Futtatás felhasználóként, vagy mint agent, ha nincs felhasználó", "xloc": [ - "default.handlebars->47->1245", + "default.handlebars->47->1247", "default.handlebars->47->783" ] }, @@ -62443,7 +62609,7 @@ "zh-cht": "在所選裝置上運行命令。", "hu": "Parancs futtatása a kiválasztott eszközökön.", "xloc": [ - "default.handlebars->47->1240", + "default.handlebars->47->1242", "default.handlebars->47->732" ] }, @@ -62498,8 +62664,8 @@ "zh-cht": "跑步", "hu": "Futtatás", "xloc": [ - "default.handlebars->47->1416", - "default.handlebars->47->1420" + "default.handlebars->47->1419", + "default.handlebars->47->1423" ] }, { @@ -62526,7 +62692,7 @@ "zh-cht": "運行命令", "hu": "Parancsok futtatása", "xloc": [ - "default.handlebars->47->2452" + "default.handlebars->47->2480" ] }, { @@ -62553,7 +62719,7 @@ "zh-cht": "以用戶身份運行命令", "hu": "Parancsok futtatása felhasználóként", "xloc": [ - "default.handlebars->47->2527" + "default.handlebars->47->2555" ] }, { @@ -62580,7 +62746,7 @@ "zh-cht": "如果可能,以用戶身份運行命令", "hu": "Parancsok futtatása felhasználóként, ha lehetséges", "xloc": [ - "default.handlebars->47->2528" + "default.handlebars->47->2556" ] }, { @@ -62608,7 +62774,7 @@ "hu": "orosz", "xloc": [ "default-mobile.handlebars->11->242", - "default.handlebars->47->1890", + "default.handlebars->47->1918", "login2.handlebars->7->139" ] }, @@ -62637,7 +62803,7 @@ "hu": "orosz (Moldávia)", "xloc": [ "default-mobile.handlebars->11->243", - "default.handlebars->47->1891", + "default.handlebars->47->1919", "login2.handlebars->7->140" ] }, @@ -62796,8 +62962,8 @@ "zh-cht": "短信", "hu": "SMS", "xloc": [ - "default.handlebars->47->2886", - "default.handlebars->47->2892", + "default.handlebars->47->2914", + "default.handlebars->47->2920", "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", @@ -62830,7 +62996,7 @@ "zh-cht": "此用戶的短信功能電話號碼。", "hu": "SMS fogadásra alkalmas telefonszám ehhez a felhasználóhoz.", "xloc": [ - "default.handlebars->47->2910" + "default.handlebars->47->2938" ] }, { @@ -62857,8 +63023,8 @@ "zh-cht": "短信錯誤", "hu": "SMS hiba", "xloc": [ - "default-mobile.handlebars->11->984", - "default.handlebars->47->3187" + "default-mobile.handlebars->11->1012", + "default.handlebars->47->3215" ] }, { @@ -62885,8 +63051,8 @@ "zh-cht": "短信錯誤:{0}", "hu": "SMS hiba: {0}", "xloc": [ - "default-mobile.handlebars->11->985", - "default.handlebars->47->3188" + "default-mobile.handlebars->11->1013", + "default.handlebars->47->3216" ] }, { @@ -62940,8 +63106,8 @@ "zh-cht": "短信網關未啟用", "hu": "SMS átjáró nincs engedélyezve", "xloc": [ - "default-mobile.handlebars->11->979", - "default.handlebars->47->3182" + "default-mobile.handlebars->11->1007", + "default.handlebars->47->3210" ] }, { @@ -62968,7 +63134,7 @@ "zh-cht": "短信", "hu": "SMS üzenet", "xloc": [ - "default.handlebars->47->3113" + "default.handlebars->47->3141" ] }, { @@ -63032,7 +63198,7 @@ "pl": "Sukces wysyłania SMS.", "de": "SMS erfolgreich gesendet.", "xloc": [ - "default.handlebars->47->3186" + "default.handlebars->47->3214" ] }, { @@ -63059,7 +63225,7 @@ "zh-cht": "短信成功發送。", "hu": "SMS sikeresen elküldve.", "xloc": [ - "default-mobile.handlebars->11->983" + "default-mobile.handlebars->11->1011" ] }, { @@ -63199,8 +63365,8 @@ "xloc": [ "default-mobile.handlebars->11->654", "default-mobile.handlebars->11->690", - "default.handlebars->47->1452", - "default.handlebars->47->1510" + "default.handlebars->47->1455", + "default.handlebars->47->1517" ] }, { @@ -63393,7 +63559,7 @@ "zh-cht": "SSL 證書不在服務器上", "hu": "SSL-tanúsítvány nincs a kiszolgálón", "xloc": [ - "default.handlebars->47->1344" + "default.handlebars->47->1347" ] }, { @@ -63420,7 +63586,7 @@ "zh-cht": "服務器不允許 SSL", "hu": "SSL a kiszolgáló által nem engedélyezett", "xloc": [ - "default.handlebars->47->1343" + "default.handlebars->47->1346" ] }, { @@ -63447,7 +63613,7 @@ "zh-cht": "服務器需要 SSL", "hu": "SSL a kiszolgáló által megkövetelt", "xloc": [ - "default.handlebars->47->1342" + "default.handlebars->47->1345" ] }, { @@ -63474,7 +63640,7 @@ "zh-cht": "服務器需要具有用戶身份驗證的 SSL", "hu": "SSL felhasználói hitelesítéssel a kiszolgáló által megkövetelt", "xloc": [ - "default.handlebars->47->1347" + "default.handlebars->47->1350" ] }, { @@ -63530,7 +63696,7 @@ "hu": "sami (Lappföld)", "xloc": [ "default-mobile.handlebars->11->244", - "default.handlebars->47->1892", + "default.handlebars->47->1920", "login2.handlebars->7->141" ] }, @@ -63612,7 +63778,7 @@ "hu": "sango", "xloc": [ "default-mobile.handlebars->11->245", - "default.handlebars->47->1893", + "default.handlebars->47->1921", "login2.handlebars->7->142" ] }, @@ -63641,7 +63807,7 @@ "hu": "szanszkrit", "xloc": [ "default-mobile.handlebars->11->246", - "default.handlebars->47->1894", + "default.handlebars->47->1922", "login2.handlebars->7->143" ] }, @@ -63670,7 +63836,7 @@ "hu": "szardíniai", "xloc": [ "default-mobile.handlebars->11->247", - "default.handlebars->47->1895", + "default.handlebars->47->1923", "login2.handlebars->7->144" ] }, @@ -64056,6 +64222,7 @@ { "en": "Scroll To Top", "nl": "Scroll naar boven", + "pl": "Przewiń Do Góry", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar" @@ -64085,7 +64252,7 @@ "zh-cht": "搜尋", "hu": "Keresés", "xloc": [ - "default.handlebars->47->1504", + "default.handlebars->47->1511", "default.handlebars->47->845", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", "sharing.handlebars->11->53" @@ -64148,8 +64315,9 @@ { "en": "Second Failure", "nl": "Tweede fout", + "pl": "Druga Awaria", "xloc": [ - "default.handlebars->47->1435" + "default.handlebars->47->1438" ] }, { @@ -64234,8 +64402,8 @@ "zh-cht": "已使用TLS保安", "hu": "TLS használatával védett", "xloc": [ - "default-mobile.handlebars->11->798", - "default.handlebars->47->1612" + "default-mobile.handlebars->11->797", + "default.handlebars->47->1622" ] }, { @@ -64263,11 +64431,11 @@ "hu": "Biztonság", "xloc": [ "default-mobile.handlebars->11->597", - "default-mobile.handlebars->11->797", - "default.handlebars->47->1265", - "default.handlebars->47->1611", - "default.handlebars->47->2381", - "default.handlebars->47->2888", + "default-mobile.handlebars->11->796", + "default.handlebars->47->1267", + "default.handlebars->47->1621", + "default.handlebars->47->2409", + "default.handlebars->47->2916", "default.handlebars->47->506", "default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1" ] @@ -64310,7 +64478,7 @@ "zh-cht": "安全密鑰", "hu": "Biztonsági kulcs", "xloc": [ - "default.handlebars->47->2882" + "default.handlebars->47->2910" ] }, { @@ -64337,8 +64505,8 @@ "zh-cht": "安全警告", "hu": "Biztonsági figyelmeztetés", "xloc": [ - "default-mobile.handlebars->11->953", - "default.handlebars->47->3156" + "default-mobile.handlebars->11->981", + "default.handlebars->47->3184" ] }, { @@ -64430,11 +64598,11 @@ "zh-cht": "全選", "hu": "Összes kijelölése", "xloc": [ - "default.handlebars->47->1507", - "default.handlebars->47->1509", - "default.handlebars->47->2407", - "default.handlebars->47->2649", - "default.handlebars->47->2736", + "default.handlebars->47->1514", + "default.handlebars->47->1516", + "default.handlebars->47->2435", + "default.handlebars->47->2677", + "default.handlebars->47->2764", "default.handlebars->47->534", "default.handlebars->47->704", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", @@ -64472,9 +64640,9 @@ "zh-cht": "選擇日期和時間...", "hu": "Dátum és idő kiválasztása...", "xloc": [ - "default.handlebars->47->1207", - "default.handlebars->47->1209", - "default.handlebars->47->3071" + "default.handlebars->47->1208", + "default.handlebars->47->1210", + "default.handlebars->47->3099" ] }, { @@ -64501,10 +64669,10 @@ "zh-cht": "選擇無", "hu": "Semelyik", "xloc": [ - "default.handlebars->47->1508", - "default.handlebars->47->2406", - "default.handlebars->47->2648", - "default.handlebars->47->2735", + "default.handlebars->47->1515", + "default.handlebars->47->2434", + "default.handlebars->47->2676", + "default.handlebars->47->2763", "default.handlebars->47->703", "default.handlebars->meshContextMenu->cxselectnone", "sharing.handlebars->11->57" @@ -64534,7 +64702,7 @@ "zh-cht": "選擇要註冊推送通知身份驗證的設備。選擇後,設備將提示確認。", "hu": "Válassza ki a push-értesítés hitelesítéséhez regisztrálandó eszközt. A kiválasztás után az eszköz megerősítést kér.", "xloc": [ - "default.handlebars->47->1739" + "default.handlebars->47->1767" ] }, { @@ -64561,7 +64729,7 @@ "zh-cht": "為所選裝置選擇一個新群", "hu": "Új csoport kiválasztása a megadott eszköz(ök)höz", "xloc": [ - "default.handlebars->47->1279" + "default.handlebars->47->1281" ] }, { @@ -64588,7 +64756,7 @@ "zh-cht": "選擇此裝置的新群", "hu": "Új csoport kiválasztása ehhez az eszközhöz", "xloc": [ - "default.handlebars->47->1278" + "default.handlebars->47->1280" ] }, { @@ -64669,8 +64837,8 @@ "zh-cht": "選擇要對所有選定用戶執行的操作。", "hu": "A kiválasztottakon végrehajtandó művelet.", "xloc": [ - "default.handlebars->47->2652", - "default.handlebars->47->2737" + "default.handlebars->47->2680", + "default.handlebars->47->2765" ] }, { @@ -64698,7 +64866,7 @@ "hu": "Válassza ki az eszközön végrehajtandó műveletet.", "xloc": [ "default-mobile.handlebars->11->566", - "default.handlebars->47->1217" + "default.handlebars->47->1219" ] }, { @@ -64725,7 +64893,7 @@ "zh-cht": "選擇新密碼", "hu": "Új jelszó választása", "xloc": [ - "default.handlebars->47->2187" + "default.handlebars->47->2215" ] }, { @@ -64780,8 +64948,8 @@ "zh-cht": "僅自我事件", "hu": "Csak saját események", "xloc": [ - "default-mobile.handlebars->11->934", - "default.handlebars->47->2306" + "default-mobile.handlebars->11->962", + "default.handlebars->47->2334" ] }, { @@ -64863,7 +65031,7 @@ "zh-cht": "發電郵", "hu": "Email küldés", "xloc": [ - "default.handlebars->47->2664" + "default.handlebars->47->2692" ] }, { @@ -64890,7 +65058,7 @@ "zh-cht": "發送MQTT消息", "hu": "MQTT üzenet küldése", "xloc": [ - "default.handlebars->47->1229", + "default.handlebars->47->1231", "default.handlebars->47->705" ] }, @@ -64918,7 +65086,7 @@ "zh-cht": "發送MQTT消息", "hu": "MQTT üzenet küldése", "xloc": [ - "default.handlebars->47->1271" + "default.handlebars->47->1273" ] }, { @@ -64929,7 +65097,7 @@ "pl": "Wyślij Wiadomość", "de": "Nachricht senden", "xloc": [ - "default.handlebars->47->2662" + "default.handlebars->47->2690" ] }, { @@ -64956,7 +65124,7 @@ "zh-cht": "發送簡訊", "hu": "SMS küldés", "xloc": [ - "default.handlebars->47->2661" + "default.handlebars->47->2689" ] }, { @@ -64983,7 +65151,7 @@ "zh-cht": "發送短信給該用戶", "hu": "SMS-üzenet küldése ennek a felhasználónak", "xloc": [ - "default.handlebars->47->2893" + "default.handlebars->47->2921" ] }, { @@ -65010,7 +65178,7 @@ "zh-cht": "發送電郵給該用戶", "hu": "E-mail küldése ennek a felhasználónak", "xloc": [ - "default.handlebars->47->2897" + "default.handlebars->47->2925" ] }, { @@ -65022,7 +65190,7 @@ "de": "Eine Nachricht an diesen Benutzer senden", "es": "Enviar mensaje al usuario", "xloc": [ - "default.handlebars->47->2895" + "default.handlebars->47->2923" ] }, { @@ -65049,7 +65217,7 @@ "zh-cht": "向該群中的所有用戶發送通知。", "hu": "Értesítés küldése a csoport összes felhasználójának.", "xloc": [ - "default.handlebars->47->2780" + "default.handlebars->47->2808" ] }, { @@ -65076,7 +65244,7 @@ "zh-cht": "向該用戶發送文本通知。", "hu": "Értesítő üzenet küldése ennek a felhasználónak.", "xloc": [ - "default.handlebars->47->2665" + "default.handlebars->47->2693" ] }, { @@ -65103,7 +65271,7 @@ "zh-cht": "發送電郵給用戶", "hu": "E-mail küldése a felhasználónak", "xloc": [ - "default.handlebars->47->2643" + "default.handlebars->47->2671" ] }, { @@ -65157,7 +65325,7 @@ "zh-cht": "發送邀請電郵。", "hu": "Küldjön meghívót e-mailben.", "xloc": [ - "default.handlebars->47->2707" + "default.handlebars->47->2735" ] }, { @@ -65335,7 +65503,7 @@ "zh-cht": "發送用戶通知", "hu": "Felhasználói értesítés küldése", "xloc": [ - "default.handlebars->47->2899" + "default.handlebars->47->2927" ] }, { @@ -65445,7 +65613,7 @@ "hu": "szerb", "xloc": [ "default-mobile.handlebars->11->250", - "default.handlebars->47->1898", + "default.handlebars->47->1926", "login2.handlebars->7->147" ] }, @@ -65473,10 +65641,10 @@ "zh-cht": "序列號", "hu": "Sorozatszám", "xloc": [ - "default-mobile.handlebars->11->807", - "default-mobile.handlebars->11->812", - "default.handlebars->47->1621", - "default.handlebars->47->1626" + "default-mobile.handlebars->11->806", + "default-mobile.handlebars->11->811", + "default.handlebars->47->1631", + "default.handlebars->47->1636" ] }, { @@ -65527,7 +65695,7 @@ "zh-cht": "伺服器備份", "hu": "Kiszolgáló biztonsági mentés", "xloc": [ - "default.handlebars->47->2717" + "default.handlebars->47->2745" ] }, { @@ -65554,16 +65722,17 @@ "zh-cht": "伺服器憑證", "hu": "Kiszolgáló Tanusítvány", "xloc": [ - "default.handlebars->47->3267" + "default.handlebars->47->3295" ] }, { "en": "Server Configuration", "nl": "Server Configuratie", + "pl": "Konfiguracja Serwera", "xloc": [ "default.handlebars->47->203", "default.handlebars->47->205", - "default.handlebars->47->2064" + "default.handlebars->47->2092" ] }, { @@ -65617,14 +65786,16 @@ "zh-cht": "伺服器數據庫", "hu": "Kiszolgáló adatbázis", "xloc": [ - "default.handlebars->47->3268" + "default.handlebars->47->3296" ] }, { "en": "Server Errors", + "nl": "Server Fouten", + "pl": "Błędy Serwera", "xloc": [ "default.handlebars->47->198", - "default.handlebars->47->2061" + "default.handlebars->47->2089" ] }, { @@ -65651,13 +65822,13 @@ "zh-cht": "伺服器檔案", "hu": "Kiszolgáló fájlok", "xloc": [ - "default-mobile.handlebars->11->911", - "default-mobile.handlebars->11->926", + "default-mobile.handlebars->11->939", + "default-mobile.handlebars->11->954", "default.handlebars->47->1107", "default.handlebars->47->1132", - "default.handlebars->47->2265", - "default.handlebars->47->2297", - "default.handlebars->47->2714" + "default.handlebars->47->2293", + "default.handlebars->47->2325", + "default.handlebars->47->2742" ] }, { @@ -65711,8 +65882,8 @@ "zh-cht": "服務器限制", "hu": "Kiszolgáló Limit", "xloc": [ - "default-mobile.handlebars->11->952", - "default.handlebars->47->3155" + "default-mobile.handlebars->11->980", + "default.handlebars->47->3183" ] }, { @@ -65766,8 +65937,8 @@ "zh-cht": "伺服器權限", "hu": "Kiszolgálói engedélyek", "xloc": [ - "default.handlebars->47->2635", - "default.handlebars->47->2729" + "default.handlebars->47->2663", + "default.handlebars->47->2757" ] }, { @@ -65794,7 +65965,7 @@ "zh-cht": "伺服器配額", "hu": "Kiszolgálói kvóta", "xloc": [ - "default.handlebars->47->2856" + "default.handlebars->47->2884" ] }, { @@ -65821,7 +65992,7 @@ "zh-cht": "伺服器還原", "hu": "Kiszolgáló visszaállítása", "xloc": [ - "default.handlebars->47->2718" + "default.handlebars->47->2746" ] }, { @@ -65848,7 +66019,7 @@ "zh-cht": "伺服器權限", "hu": "Jogosultságok a kiszolgálón", "xloc": [ - "default.handlebars->47->2855" + "default.handlebars->47->2883" ] }, { @@ -65875,7 +66046,7 @@ "zh-cht": "伺服器狀態", "hu": "Kiszolgáló állapot", "xloc": [ - "default.handlebars->47->3198" + "default.handlebars->47->3226" ] }, { @@ -65929,7 +66100,7 @@ "zh-cht": "伺服器追蹤", "hu": "Kiszolgáló nyomkövetés", "xloc": [ - "default.handlebars->47->3281" + "default.handlebars->47->3309" ] }, { @@ -65956,7 +66127,7 @@ "zh-cht": "服務器跟踪事件", "hu": "Kiszolgáló nyomkövetési esemény", "xloc": [ - "default.handlebars->47->3259" + "default.handlebars->47->3287" ] }, { @@ -66038,7 +66209,7 @@ "zh-cht": "伺服器更新", "hu": "Kiszolgáló frissítések", "xloc": [ - "default.handlebars->47->2719" + "default.handlebars->47->2747" ] }, { @@ -66150,12 +66321,10 @@ "default.handlebars->container->dialog->dialogBody->dialog3->d3upload->d3uploadMode->3" ] }, - { - "en": "Server fouten" - }, { "en": "Server has no config file.", "nl": "Server heeft geen configuratiebestand.", + "pl": "Serwer nie ma pliku z konfiguracją.", "xloc": [ "default.handlebars->47->204" ] @@ -66253,7 +66422,7 @@ "hu": "A kiszolgáló nem tudja lekérni a felvételeket az adatbázisból.", "de": "Der Server konnte keine Aufzeichnungen aus der Datenbank laden.", "xloc": [ - "default.handlebars->47->3014" + "default.handlebars->47->3042" ] }, { @@ -66265,7 +66434,7 @@ "hu": "A kiszolgáló nem tud olvasni a felvételek mappából.", "de": "Der Server konnte keine Datei aus dem Aufzeichnungsordner laden.", "xloc": [ - "default.handlebars->47->3013" + "default.handlebars->47->3041" ] }, { @@ -66277,7 +66446,7 @@ "hu": "Kiszolgálói statisztikai rekordok", "de": "Aufzeichnungen zu Serverstatistiken", "xloc": [ - "default.handlebars->47->3133" + "default.handlebars->47->3161" ] }, { @@ -66357,7 +66526,7 @@ "zh-cht": "ServerStats.csv", "hu": "ServerStats.csv", "xloc": [ - "default.handlebars->47->3258" + "default.handlebars->47->3286" ] }, { @@ -66368,8 +66537,8 @@ "pl": "Usługa", "de": "Dienst", "xloc": [ - "default.handlebars->47->1709", - "default.handlebars->47->2924" + "default.handlebars->47->1737", + "default.handlebars->47->2952" ] }, { @@ -66396,8 +66565,8 @@ "zh-cht": "服務詳情", "hu": "Szolgáltatás részletek", "xloc": [ - "default.handlebars->47->1441", - "default.handlebars->47->1443" + "default.handlebars->47->1444", + "default.handlebars->47->1446" ] }, { @@ -66451,8 +66620,8 @@ "zh-cht": "節", "hu": "Munkamenet", "xloc": [ - "default.handlebars->47->3017", - "default.handlebars->47->3076", + "default.handlebars->47->3045", + "default.handlebars->47->3104", "ssh.handlebars->3->24", "ssh.handlebars->3->26" ] @@ -66508,7 +66677,7 @@ "zh-cht": "會議訊息", "hu": "Munkamenet információk", "xloc": [ - "default.handlebars->47->1364", + "default.handlebars->47->1367", "sharing.handlebars->11->18" ] }, @@ -66538,8 +66707,8 @@ "xloc": [ "default-mobile.handlebars->11->676", "default-mobile.handlebars->11->683", - "default.handlebars->47->1476", - "default.handlebars->47->1492" + "default.handlebars->47->1479", + "default.handlebars->47->1495" ] }, { @@ -66625,8 +66794,8 @@ "xloc": [ "default-mobile.handlebars->11->677", "default-mobile.handlebars->11->684", - "default.handlebars->47->1477", - "default.handlebars->47->1493" + "default.handlebars->47->1480", + "default.handlebars->47->1496" ] }, { @@ -66736,7 +66905,7 @@ "zh-cht": "設置剪貼板", "hu": "Vágólap beállítás", "xloc": [ - "default.handlebars->47->1409" + "default.handlebars->47->1412" ] }, { @@ -66841,7 +67010,7 @@ "zh-cht": "設置剪貼板內容,{0}個字節", "hu": "A vágólap tartalmának beállítása, {0} bájt", "xloc": [ - "default.handlebars->47->2450" + "default.handlebars->47->2478" ] }, { @@ -66952,7 +67121,7 @@ "hu": "Beállítás", "xloc": [ "agent-translations.json", - "default.handlebars->47->2130", + "default.handlebars->47->2158", "default.handlebars->47->483" ] }, @@ -67028,7 +67197,7 @@ "zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。", "hu": "Állítsa be ezt a szervert úgy, hogy automatikusan feltöltse a biztonsági mentéseket a Google Drive-ra. Kezdje azzal, hogy létrehoz és megad egy Google Drive-ügyfélazonosítót és ClientSecret-et a fiókjához.", "xloc": [ - "default.handlebars->47->2044" + "default.handlebars->47->2072" ] }, { @@ -67116,7 +67285,7 @@ "zh-cht": "共享裝置", "hu": "Eszköz megosztása", "xloc": [ - "default.handlebars->47->1216", + "default.handlebars->47->1218", "default.handlebars->47->312" ] }, @@ -67198,7 +67367,7 @@ "zh-cht": "共享過程", "hu": "SharedProcess", "xloc": [ - "default.handlebars->47->1427" + "default.handlebars->47->1430" ] }, { @@ -67227,7 +67396,7 @@ "xloc": [ "default.handlebars->47->1115", "default.handlebars->47->1140", - "default.handlebars->47->2311" + "default.handlebars->47->2339" ] }, { @@ -67339,8 +67508,8 @@ "xloc": [ "default-mobile.handlebars->11->641", "default-mobile.handlebars->11->645", - "default.handlebars->47->1390", - "default.handlebars->47->1394" + "default.handlebars->47->1393", + "default.handlebars->47->1397" ] }, { @@ -67681,8 +67850,8 @@ "zh-cht": "只顯示自己的事件", "hu": "Csak saját események megjelenítése", "xloc": [ - "default-mobile.handlebars->11->914", - "default.handlebars->47->2268" + "default-mobile.handlebars->11->942", + "default.handlebars->47->2296" ] }, { @@ -67733,7 +67902,7 @@ "zh-cht": "顯示流量", "hu": "Forgalom megjelenítése", "xloc": [ - "default.handlebars->47->3072" + "default.handlebars->47->3100" ] }, { @@ -67760,7 +67929,7 @@ "zh-cht": "顯示連接工具欄", "hu": "Kapcsolat eszköztár megjelenítése", "xloc": [ - "default.handlebars->47->2224" + "default.handlebars->47->2252" ] }, { @@ -67895,16 +68064,17 @@ "zh-cht": "顯示1分鐘", "hu": "Megjelenítés 1 percen keresztül", "xloc": [ - "default.handlebars->47->2668", - "default.handlebars->47->2693" + "default.handlebars->47->2696", + "default.handlebars->47->2721" ] }, { "en": "Show for 10 minutes", "nl": "Toon gedurende 10 minuten", + "pl": "Pokazuj przez 10 minut", "xloc": [ - "default.handlebars->47->1150", - "default.handlebars->47->1164", + "default.handlebars->47->1151", + "default.handlebars->47->1165", "default.handlebars->47->747" ] }, @@ -67932,25 +68102,27 @@ "zh-cht": "顯示10秒", "hu": "Megjelenítés 10 percen keresztül", "xloc": [ - "default.handlebars->47->2667", - "default.handlebars->47->2692" + "default.handlebars->47->2695", + "default.handlebars->47->2720" ] }, { "en": "Show for 2 Minutes (Default)", "nl": "Toon gedurende 2 Minuten (Standaard)", + "pl": "Pokazuj przez 2 minuty (Domyślnie)", "xloc": [ - "default.handlebars->47->1149", - "default.handlebars->47->1163", + "default.handlebars->47->1150", + "default.handlebars->47->1164", "default.handlebars->47->746" ] }, { "en": "Show for 30 minutes", "nl": "Toon gedurende 30 Minuten", + "pl": "Pokazuj przez 30 minut", "xloc": [ - "default.handlebars->47->1151", - "default.handlebars->47->1165", + "default.handlebars->47->1152", + "default.handlebars->47->1166", "default.handlebars->47->748" ] }, @@ -67978,15 +68150,17 @@ "zh-cht": "顯示5分鐘", "hu": "Megjelenítés 5 percen keresztül", "xloc": [ - "default.handlebars->47->2669", - "default.handlebars->47->2694" + "default.handlebars->47->2697", + "default.handlebars->47->2722" ] }, { "en": "Show for 60 minutes", + "nl": "Toon gedurende 60 minuten", + "pl": "Pokazuj przez 60 minut", "xloc": [ - "default.handlebars->47->1152", - "default.handlebars->47->1166", + "default.handlebars->47->1153", + "default.handlebars->47->1167", "default.handlebars->47->749" ] }, @@ -68014,10 +68188,10 @@ "zh-cht": "顯示消息,直到被用戶拒絕", "hu": "Üzenet megjelenítése amíg a felhasználó be nem zárja.", "xloc": [ - "default.handlebars->47->1153", - "default.handlebars->47->1167", - "default.handlebars->47->2666", - "default.handlebars->47->2691", + "default.handlebars->47->1154", + "default.handlebars->47->1168", + "default.handlebars->47->2694", + "default.handlebars->47->2719", "default.handlebars->47->750" ] }, @@ -68047,6 +68221,8 @@ }, { "en": "Show server configuration", + "nl": "Serverconfiguratie weergeven", + "pl": "Pokaż konfigurację serwera", "xloc": [ "default.handlebars->container->column_l->p6->p6info->p2ServerActions->3->p2ServerActionsConfig->1" ] @@ -68318,8 +68494,8 @@ "pl": "Signal", "de": "Signal", "xloc": [ - "default.handlebars->47->1712", - "default.handlebars->47->2927" + "default.handlebars->47->1740", + "default.handlebars->47->2955" ] }, { @@ -68353,8 +68529,8 @@ "zh-cht": "簡單管理員控制模式(ACM)", "hu": "Egyszerű Admin Control Mode (ACM)", "xloc": [ - "default.handlebars->47->2119", - "default.handlebars->47->2177" + "default.handlebars->47->2147", + "default.handlebars->47->2205" ] }, { @@ -68381,8 +68557,8 @@ "zh-cht": "簡單客戶端控制模式(CCM)", "hu": "Simple Client Control Mode (CCM)", "xloc": [ - "default.handlebars->47->2117", - "default.handlebars->47->2181" + "default.handlebars->47->2145", + "default.handlebars->47->2209" ] }, { @@ -68410,7 +68586,7 @@ "hu": "szindhi", "xloc": [ "default-mobile.handlebars->11->248", - "default.handlebars->47->1896", + "default.handlebars->47->1924", "login2.handlebars->7->145" ] }, @@ -68439,7 +68615,7 @@ "hu": "szingaléz", "xloc": [ "default-mobile.handlebars->11->249", - "default.handlebars->47->1897", + "default.handlebars->47->1925", "login2.handlebars->7->146" ] }, @@ -68496,7 +68672,7 @@ "zh-cht": "單點登錄", "hu": "Egyszeri bejelentkezés (SSO)", "xloc": [ - "default.handlebars->47->3121" + "default.handlebars->47->3149" ] }, { @@ -68547,8 +68723,8 @@ "zh-cht": "尺寸", "hu": "Méret", "xloc": [ - "default.handlebars->47->3020", - "default.handlebars->47->3041", + "default.handlebars->47->3048", + "default.handlebars->47->3069", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -68576,7 +68752,7 @@ "zh-cht": "縮放:100%", "hu": "Méret: 100%", "xloc": [ - "default.handlebars->47->1537", + "default.handlebars->47->1545", "sharing.handlebars->11->85" ] }, @@ -68604,7 +68780,7 @@ "zh-cht": "縮放:125%", "hu": "Méret: 125%", "xloc": [ - "default.handlebars->47->1538", + "default.handlebars->47->1546", "sharing.handlebars->11->86" ] }, @@ -68632,7 +68808,7 @@ "zh-cht": "縮放:150%", "hu": "Méret: 150%", "xloc": [ - "default.handlebars->47->1539", + "default.handlebars->47->1547", "sharing.handlebars->11->87" ] }, @@ -68660,22 +68836,26 @@ "zh-cht": "縮放:200%", "hu": "Méret: 200%", "xloc": [ - "default.handlebars->47->1540", + "default.handlebars->47->1548", "sharing.handlebars->11->88" ] }, { "en": "Slack", + "nl": "Slack", + "pl": "Slack", "xloc": [ - "default.handlebars->47->1708", - "default.handlebars->47->2923" + "default.handlebars->47->1736", + "default.handlebars->47->2951" ] }, { "en": "Slack Webhook Setup", + "nl": "Slack Webhook Setup", + "pl": "Instalacja Slack Webhook", "xloc": [ - "default.handlebars->47->1718", - "default.handlebars->47->2933" + "default.handlebars->47->1746", + "default.handlebars->47->2961" ] }, { @@ -68706,7 +68886,7 @@ "default-mobile.handlebars->11->439", "default-mobile.handlebars->11->440", "default-mobile.handlebars->11->574", - "default.handlebars->47->1226", + "default.handlebars->47->1228", "default.handlebars->47->2", "default.handlebars->47->3", "default.handlebars->47->4" @@ -68794,7 +68974,7 @@ "hu": "szlovák", "xloc": [ "default-mobile.handlebars->11->251", - "default.handlebars->47->1899", + "default.handlebars->47->1927", "login2.handlebars->7->148" ] }, @@ -68823,7 +69003,7 @@ "hu": "szlovén", "xloc": [ "default-mobile.handlebars->11->252", - "default.handlebars->47->1900", + "default.handlebars->47->1928", "login2.handlebars->7->149" ] }, @@ -68908,7 +69088,7 @@ "zh-cht": "小焦點", "hu": "Kicsi Focus mode", "xloc": [ - "default.handlebars->47->1371" + "default.handlebars->47->1374" ] }, { @@ -68935,8 +69115,8 @@ "zh-cht": "軟斷開代理", "hu": "Agent lecsatlakoztatása", "xloc": [ - "default-mobile.handlebars->11->859", - "default.handlebars->47->1685" + "default-mobile.handlebars->11->887", + "default.handlebars->47->1713" ] }, { @@ -69019,7 +69199,7 @@ "hu": "somani", "xloc": [ "default-mobile.handlebars->11->253", - "default.handlebars->47->1901", + "default.handlebars->47->1929", "login2.handlebars->7->150" ] }, @@ -69048,7 +69228,7 @@ "hu": "szorbiai", "xloc": [ "default-mobile.handlebars->11->254", - "default.handlebars->47->1902", + "default.handlebars->47->1930", "login2.handlebars->7->151" ] }, @@ -69278,9 +69458,11 @@ }, { "en": "Space", + "nl": "Spatie", + "pl": "Przestrzeń", "xloc": [ "default-mobile.handlebars->11->627", - "default.handlebars->47->1377" + "default.handlebars->47->1380" ] }, { @@ -69308,7 +69490,7 @@ "hu": "spanyol", "xloc": [ "default-mobile.handlebars->11->255", - "default.handlebars->47->1903", + "default.handlebars->47->1931", "login2.handlebars->7->152" ] }, @@ -69337,7 +69519,7 @@ "hu": "spanyol (Argentína)", "xloc": [ "default-mobile.handlebars->11->256", - "default.handlebars->47->1904", + "default.handlebars->47->1932", "login2.handlebars->7->153" ] }, @@ -69366,7 +69548,7 @@ "hu": "spanyol (Bolívia)", "xloc": [ "default-mobile.handlebars->11->257", - "default.handlebars->47->1905", + "default.handlebars->47->1933", "login2.handlebars->7->154" ] }, @@ -69395,7 +69577,7 @@ "hu": "spanyol (Chile)", "xloc": [ "default-mobile.handlebars->11->258", - "default.handlebars->47->1906", + "default.handlebars->47->1934", "login2.handlebars->7->155" ] }, @@ -69424,7 +69606,7 @@ "hu": "spanyol (Kolumbia)", "xloc": [ "default-mobile.handlebars->11->259", - "default.handlebars->47->1907", + "default.handlebars->47->1935", "login2.handlebars->7->156" ] }, @@ -69453,7 +69635,7 @@ "hu": "spanyol (Costa Rica)", "xloc": [ "default-mobile.handlebars->11->260", - "default.handlebars->47->1908", + "default.handlebars->47->1936", "login2.handlebars->7->157" ] }, @@ -69482,7 +69664,7 @@ "hu": "spanyol (Dominikai Köztársaság)", "xloc": [ "default-mobile.handlebars->11->261", - "default.handlebars->47->1909", + "default.handlebars->47->1937", "login2.handlebars->7->158" ] }, @@ -69511,7 +69693,7 @@ "hu": "spanyol (Ecuador)", "xloc": [ "default-mobile.handlebars->11->262", - "default.handlebars->47->1910", + "default.handlebars->47->1938", "login2.handlebars->7->159" ] }, @@ -69540,7 +69722,7 @@ "hu": "spanyol (El Salvador)", "xloc": [ "default-mobile.handlebars->11->263", - "default.handlebars->47->1911", + "default.handlebars->47->1939", "login2.handlebars->7->160" ] }, @@ -69569,7 +69751,7 @@ "hu": "spanyol (Guatemala)", "xloc": [ "default-mobile.handlebars->11->264", - "default.handlebars->47->1912", + "default.handlebars->47->1940", "login2.handlebars->7->161" ] }, @@ -69598,7 +69780,7 @@ "hu": "spanyol (Honduras)", "xloc": [ "default-mobile.handlebars->11->265", - "default.handlebars->47->1913", + "default.handlebars->47->1941", "login2.handlebars->7->162" ] }, @@ -69627,7 +69809,7 @@ "hu": "spanyol (Mexikó)", "xloc": [ "default-mobile.handlebars->11->266", - "default.handlebars->47->1914", + "default.handlebars->47->1942", "login2.handlebars->7->163" ] }, @@ -69656,7 +69838,7 @@ "hu": "spanyol (Nicaragua)", "xloc": [ "default-mobile.handlebars->11->267", - "default.handlebars->47->1915", + "default.handlebars->47->1943", "login2.handlebars->7->164" ] }, @@ -69685,7 +69867,7 @@ "hu": "spanyol (Panama)", "xloc": [ "default-mobile.handlebars->11->268", - "default.handlebars->47->1916", + "default.handlebars->47->1944", "login2.handlebars->7->165" ] }, @@ -69714,7 +69896,7 @@ "hu": "spanyol (Paraguay)", "xloc": [ "default-mobile.handlebars->11->269", - "default.handlebars->47->1917", + "default.handlebars->47->1945", "login2.handlebars->7->166" ] }, @@ -69743,7 +69925,7 @@ "hu": "spanyol (Peru)", "xloc": [ "default-mobile.handlebars->11->270", - "default.handlebars->47->1918", + "default.handlebars->47->1946", "login2.handlebars->7->167" ] }, @@ -69772,7 +69954,7 @@ "hu": "spanyol (Puerto Rico)", "xloc": [ "default-mobile.handlebars->11->271", - "default.handlebars->47->1919", + "default.handlebars->47->1947", "login2.handlebars->7->168" ] }, @@ -69801,7 +69983,7 @@ "hu": "spanyol (Spanyolország)", "xloc": [ "default-mobile.handlebars->11->272", - "default.handlebars->47->1920", + "default.handlebars->47->1948", "login2.handlebars->7->169" ] }, @@ -69830,7 +70012,7 @@ "hu": "spanyol (Uruguay)", "xloc": [ "default-mobile.handlebars->11->273", - "default.handlebars->47->1921", + "default.handlebars->47->1949", "login2.handlebars->7->170" ] }, @@ -69859,15 +70041,17 @@ "hu": "spanyol (Venezuela)", "xloc": [ "default-mobile.handlebars->11->274", - "default.handlebars->47->1922", + "default.handlebars->47->1950", "login2.handlebars->7->171" ] }, { "en": "SpecVersion", + "nl": "SpecVersion", + "pl": "Wersja", "xloc": [ - "default-mobile.handlebars->11->818", - "default.handlebars->47->1632" + "default-mobile.handlebars->11->817", + "default.handlebars->47->1642" ] }, { @@ -69975,7 +70159,7 @@ "zh-cht": "開始", "hu": "Indítás", "xloc": [ - "default.handlebars->47->1438" + "default.handlebars->47->1441" ] }, { @@ -70026,20 +70210,22 @@ "zh-cht": "開始時間", "hu": "Kezdés ideje", "xloc": [ - "default.handlebars->47->1208", + "default.handlebars->47->1209", "default.handlebars->47->127", - "default.handlebars->47->1361", + "default.handlebars->47->1364", "default.handlebars->47->286", "default.handlebars->47->291", - "default.handlebars->47->3018", - "default.handlebars->47->3043", + "default.handlebars->47->3046", + "default.handlebars->47->3071", "sharing.handlebars->11->14" ] }, { "en": "Start Type", + "nl": "Start Type", + "pl": "Typ Rozruchu", "xloc": [ - "default.handlebars->47->1429" + "default.handlebars->47->1432" ] }, { @@ -70120,7 +70306,7 @@ "zh-cht": "已啟動 Web-RDP 會話 \\\"{0}\\\"。", "hu": "Elindítva Web-RDP munkamenet \\\"{0}\\\".", "xloc": [ - "default.handlebars->47->2578" + "default.handlebars->47->2606" ] }, { @@ -70147,7 +70333,7 @@ "zh-cht": "已啟動 Web-SFTP 會話 \\\"{0}\\\"。", "hu": "Elindítva Web-SFTP munkamenet \\\"{0}\\\".", "xloc": [ - "default.handlebars->47->2577" + "default.handlebars->47->2605" ] }, { @@ -70174,7 +70360,7 @@ "zh-cht": "已啟動 Web-SSH 會話 \\\"{0}\\\"。", "hu": "Elindítva Web-SSH munkamenet \\\"{0}\\\".", "xloc": [ - "default.handlebars->47->2576" + "default.handlebars->47->2604" ] }, { @@ -70201,7 +70387,7 @@ "zh-cht": "已啟動 Web-VNC 會話 \\\"{0}\\\"。", "hu": "Elindítva Web-VNC munkamenet \\\"{0}\\\".", "xloc": [ - "default.handlebars->47->2579" + "default.handlebars->47->2607" ] }, { @@ -70228,7 +70414,7 @@ "zh-cht": "啟動桌面多路復用會話", "hu": "Elindított asztali multiplex munkamenet", "xloc": [ - "default.handlebars->47->2434" + "default.handlebars->47->2462" ] }, { @@ -70255,7 +70441,7 @@ "zh-cht": "已啟動桌面多路復用會話 \\\"{0}\\\"", "hu": "Elindított asztali multiplex munkamenet \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2573" + "default.handlebars->47->2601" ] }, { @@ -70282,7 +70468,7 @@ "zh-cht": "從{1}到{2}開始了桌面會話“{0}”", "hu": "Elindított asztali munkamenet \\\"{0}\\\" {1} és {2} között", "xloc": [ - "default.handlebars->47->2443" + "default.handlebars->47->2471" ] }, { @@ -70309,7 +70495,7 @@ "zh-cht": "從{1}到{2}開始文件管理會話“{0}”", "hu": "Elindított fájl munkamenet \\\"{0}\\\" {1} és {2} között", "xloc": [ - "default.handlebars->47->2444" + "default.handlebars->47->2472" ] }, { @@ -70336,7 +70522,7 @@ "zh-cht": "已啟動本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2}", "hu": "Elindított helyi relay munkamenet \\\"{0}\\\", protocol {1} és {2} között", "xloc": [ - "default.handlebars->47->2548" + "default.handlebars->47->2576" ] }, { @@ -70363,7 +70549,7 @@ "zh-cht": "從{1}到{2}開始中繼會話“{0}”", "hu": "Elindított relay munkamenet \\\"{0}\\\" {1} és {2} között", "xloc": [ - "default.handlebars->47->2441" + "default.handlebars->47->2469" ] }, { @@ -70390,7 +70576,7 @@ "zh-cht": "使用Toast通知啟動遠程桌面", "hu": "Távoli asztal indítása alkalmazásértesítéssel", "xloc": [ - "default.handlebars->47->2463" + "default.handlebars->47->2491" ] }, { @@ -70417,7 +70603,7 @@ "zh-cht": "啟動遠程桌面,而無需通知", "hu": "Távoli asztal indítása értesítés nélkül", "xloc": [ - "default.handlebars->47->2464" + "default.handlebars->47->2492" ] }, { @@ -70444,7 +70630,7 @@ "zh-cht": "啟動帶有Toast通知的遠程文件", "hu": "Távoli fájelérés indítása az alkalmazás értesítésével", "xloc": [ - "default.handlebars->47->2470" + "default.handlebars->47->2498" ] }, { @@ -70471,7 +70657,7 @@ "zh-cht": "已啟動的遠程文件,恕不另行通知", "hu": "Távoli fájelérés indítása az alkalmazás értesítés nélkül", "xloc": [ - "default.handlebars->47->2471" + "default.handlebars->47->2499" ] }, { @@ -70498,7 +70684,7 @@ "zh-cht": "從{1}到{2}開始了終端會話“{0}”", "hu": "Elindítva \\\"{0}\\\" terminál munkamenetet {1}-ről {2}-re", "xloc": [ - "default.handlebars->47->2442" + "default.handlebars->47->2470" ] }, { @@ -70525,7 +70711,7 @@ "zh-cht": "現在開始", "hu": "Mostantól kezdődően", "xloc": [ - "default.handlebars->47->1201" + "default.handlebars->47->1202" ] }, { @@ -70552,7 +70738,7 @@ "zh-cht": "接受本地用戶後啟動遠程桌面", "hu": "Távoli asztal indítása a helyi felhasználó elfogadása után", "xloc": [ - "default.handlebars->47->2458" + "default.handlebars->47->2486" ] }, { @@ -70579,7 +70765,7 @@ "zh-cht": "本地用戶接受後啟動遠程文件", "hu": "Távoli fájl elérés indítása a helyi felhasználó elfogadása után", "xloc": [ - "default.handlebars->47->2468" + "default.handlebars->47->2496" ] }, { @@ -70630,7 +70816,7 @@ "zh-cht": "狀態", "hu": "Állapot", "xloc": [ - "default.handlebars->47->1421", + "default.handlebars->47->1424", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -70709,10 +70895,10 @@ "zh-cht": "狀態", "hu": "Státusz", "xloc": [ - "default-mobile.handlebars->11->841", - "default.handlebars->47->1655", - "default.handlebars->47->2958", - "default.handlebars->47->3036", + "default-mobile.handlebars->11->852", + "default.handlebars->47->1677", + "default.handlebars->47->2986", + "default.handlebars->47->3064", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -70740,7 +70926,7 @@ "zh-cht": "停止", "hu": "Állj", "xloc": [ - "default.handlebars->47->1439" + "default.handlebars->47->1442" ] }, { @@ -70767,7 +70953,7 @@ "zh-cht": "停止進程", "hu": "Folyamat leállítás", "xloc": [ - "default.handlebars->47->1412" + "default.handlebars->47->1415" ] }, { @@ -70794,7 +70980,7 @@ "zh-cht": "停止進程 #{0} \\\"{1}\\\"?", "hu": "Leállítja a #{0} \\\"{1}\\\" folyamatot?", "xloc": [ - "default.handlebars->47->1451" + "default.handlebars->47->1454" ] }, { @@ -70845,8 +71031,8 @@ "zh-cht": "停止", "hu": "Megállt", "xloc": [ - "default.handlebars->47->1415", - "default.handlebars->47->1419" + "default.handlebars->47->1418", + "default.handlebars->47->1422" ] }, { @@ -70897,14 +71083,17 @@ "zh-cht": "儲存", "hu": "Háttértár", "xloc": [ - "default-mobile.handlebars->11->842", - "default.handlebars->47->1656" + "default-mobile.handlebars->11->853", + "default.handlebars->47->1678" ] }, { "en": "Storage Volumes", + "nl": "Opslagvolumes", + "pl": "Woluminy Pamięci", "xloc": [ - "default.handlebars->47->1662" + "default-mobile.handlebars->11->865", + "default.handlebars->47->1690" ] }, { @@ -70958,7 +71147,7 @@ "zh-cht": "超出儲存空間", "hu": "Tároló kapacitás limit túllépése", "xloc": [ - "default.handlebars->47->2387" + "default.handlebars->47->2415" ] }, { @@ -70986,7 +71175,7 @@ "hu": "Tárolt kulcs", "xloc": [ "default-mobile.handlebars->11->659", - "default.handlebars->47->1458", + "default.handlebars->47->1461", "ssh.handlebars->3->6" ] }, @@ -71014,7 +71203,7 @@ "zh-cht": "強", "hu": "erős jelszó", "xloc": [ - "default.handlebars->47->2027" + "default.handlebars->47->2055" ] }, { @@ -71073,7 +71262,7 @@ "zh-cht": "主題", "hu": "Tárgy", "xloc": [ - "default.handlebars->47->2663" + "default.handlebars->47->2691" ] }, { @@ -71105,8 +71294,10 @@ }, { "en": "Subsequent Failures", + "nl": "Vervolgfouten", + "pl": "Późniejsze Awarie", "xloc": [ - "default.handlebars->47->1436" + "default.handlebars->47->1439" ] }, { @@ -71133,8 +71324,8 @@ "zh-cht": "成功登錄", "hu": "Sikeres bejelentkezés", "xloc": [ - "default.handlebars->47->3106", - "default.handlebars->47->3145" + "default.handlebars->47->3134", + "default.handlebars->47->3173" ] }, { @@ -71243,7 +71434,7 @@ "hu": "sutu", "xloc": [ "default-mobile.handlebars->11->275", - "default.handlebars->47->1923", + "default.handlebars->47->1951", "login2.handlebars->7->172" ] }, @@ -71272,7 +71463,7 @@ "hu": "szuahéli", "xloc": [ "default-mobile.handlebars->11->276", - "default.handlebars->47->1924", + "default.handlebars->47->1952", "login2.handlebars->7->173" ] }, @@ -71330,7 +71521,7 @@ "hu": "svéd", "xloc": [ "default-mobile.handlebars->11->277", - "default.handlebars->47->1925", + "default.handlebars->47->1953", "login2.handlebars->7->174" ] }, @@ -71359,7 +71550,7 @@ "hu": "svéd (Finnország)", "xloc": [ "default-mobile.handlebars->11->278", - "default.handlebars->47->1926", + "default.handlebars->47->1954", "login2.handlebars->7->175" ] }, @@ -71388,7 +71579,7 @@ "hu": "svéd (Svédország)", "xloc": [ "default-mobile.handlebars->11->279", - "default.handlebars->47->1927", + "default.handlebars->47->1955", "login2.handlebars->7->176" ] }, @@ -71447,7 +71638,7 @@ "zh-cht": "將英特爾AMT切換到管理員控制模式(ACM)。", "hu": "Állítsa az Intel AMT-t Admin Control Mode (ACM) módba.", "xloc": [ - "default.handlebars->47->2137" + "default.handlebars->47->2165" ] }, { @@ -71529,7 +71720,7 @@ "zh-cht": "將伺服器裝置名稱同步到主機名稱", "hu": "Az eszköz nevének szinkronizálása kiszolgálón a hostnévvel", "xloc": [ - "default.handlebars->47->2233" + "default.handlebars->47->2261" ] }, { @@ -71556,7 +71747,7 @@ "zh-cht": "將服務器設備名稱同步到端口名稱", "hu": "Az eszköz nevének szinkronizálása kiszolgálón a portnévvel", "xloc": [ - "default.handlebars->47->2232" + "default.handlebars->47->2260" ] }, { @@ -71664,7 +71855,7 @@ "zh-cht": "系統類型", "hu": "Rendszer típusa", "xloc": [ - "agentinvite.handlebars->3->5", + "agentinvite.handlebars->3->6", "default.handlebars->47->595" ] }, @@ -71908,8 +72099,8 @@ "zh-cht": "未設置TLS", "hu": "TLS nincs beállítva", "xloc": [ - "default-mobile.handlebars->11->799", - "default.handlebars->47->1613" + "default-mobile.handlebars->11->798", + "default.handlebars->47->1623" ] }, { @@ -71937,15 +72128,16 @@ "hu": "TLS security szükséges", "xloc": [ "default-mobile.handlebars->11->599", - "default.handlebars->47->1267", + "default.handlebars->47->1269", "default.handlebars->47->508" ] }, { "en": "TPM", + "nl": "TPM", "xloc": [ - "default-mobile.handlebars->11->824", - "default.handlebars->47->1638" + "default-mobile.handlebars->11->829", + "default.handlebars->47->1654" ] }, { @@ -71974,7 +72166,7 @@ "xloc": [ "default-mobile.handlebars->11->624", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->3", - "default.handlebars->47->1374" + "default.handlebars->47->1377" ] }, { @@ -72001,7 +72193,7 @@ "zh-cht": "標籤1,標籤2,標籤3", "hu": "Címke1, Címke2, Címke3", "xloc": [ - "default.handlebars->47->1332", + "default.handlebars->47->1334", "default.handlebars->47->739" ] }, @@ -72059,7 +72251,7 @@ "default-mobile.handlebars->11->527", "default-mobile.handlebars->11->528", "default-mobile.handlebars->11->612", - "default.handlebars->47->1331", + "default.handlebars->47->1333", "default.handlebars->47->341", "default.handlebars->47->372", "default.handlebars->47->738", @@ -72120,12 +72312,14 @@ "hu": "tamil", "xloc": [ "default-mobile.handlebars->11->280", - "default.handlebars->47->1928", + "default.handlebars->47->1956", "login2.handlebars->7->177" ] }, { "en": "TamperProtection", + "nl": "Pauzeer bescherming", + "pl": "OchronaPrzedManipulacją", "xloc": [ "default-mobile.handlebars->11->747", "default-mobile.handlebars->11->749", @@ -72158,7 +72352,7 @@ "hu": "tatár", "xloc": [ "default-mobile.handlebars->11->281", - "default.handlebars->47->1929", + "default.handlebars->47->1957", "login2.handlebars->7->178" ] }, @@ -72170,10 +72364,10 @@ "pl": "Telegram", "de": "Telegram", "xloc": [ - "default.handlebars->47->1701", - "default.handlebars->47->1715", - "default.handlebars->47->2916", - "default.handlebars->47->2930" + "default.handlebars->47->1729", + "default.handlebars->47->1743", + "default.handlebars->47->2944", + "default.handlebars->47->2958" ] }, { @@ -72201,7 +72395,7 @@ "hu": "teluga", "xloc": [ "default-mobile.handlebars->11->282", - "default.handlebars->47->1930", + "default.handlebars->47->1958", "login2.handlebars->7->179" ] }, @@ -72232,13 +72426,13 @@ "default-mobile.handlebars->11->419", "default-mobile.handlebars->11->562", "default.handlebars->47->1061", - "default.handlebars->47->1175", - "default.handlebars->47->2145", - "default.handlebars->47->2225", - "default.handlebars->47->3030", - "default.handlebars->47->3090", - "default.handlebars->47->3140", - "default.handlebars->47->3235", + "default.handlebars->47->1176", + "default.handlebars->47->2173", + "default.handlebars->47->2253", + "default.handlebars->47->3058", + "default.handlebars->47->3118", + "default.handlebars->47->3168", + "default.handlebars->47->3263", "default.handlebars->47->453", "default.handlebars->47->835", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", @@ -72271,8 +72465,8 @@ "hu": "Terminál + Fájlok", "xloc": [ "default.handlebars->47->1065", - "default.handlebars->47->1178", - "default.handlebars->47->2149" + "default.handlebars->47->1179", + "default.handlebars->47->2177" ] }, { @@ -72326,9 +72520,9 @@ "zh-cht": "終端機通知", "hu": "Terminál kapcsolat értesítés", "xloc": [ - "default.handlebars->47->2099", - "default.handlebars->47->2769", - "default.handlebars->47->2874", + "default.handlebars->47->2127", + "default.handlebars->47->2797", + "default.handlebars->47->2902", "default.handlebars->47->942" ] }, @@ -72356,9 +72550,9 @@ "zh-cht": "終端機提示", "hu": "Terminál kapcsolat engedélykérés", "xloc": [ - "default.handlebars->47->2098", - "default.handlebars->47->2768", - "default.handlebars->47->2873", + "default.handlebars->47->2126", + "default.handlebars->47->2796", + "default.handlebars->47->2901", "default.handlebars->47->941" ] }, @@ -72386,7 +72580,7 @@ "zh-cht": "終端會話", "hu": "Terminál munkamenet", "xloc": [ - "default.handlebars->47->3023" + "default.handlebars->47->3051" ] }, { @@ -72515,7 +72709,7 @@ "hu": "Szöveges jegyzetek rekordok", "de": "Aufzeichnungen zu Textnotizen", "xloc": [ - "default.handlebars->47->3127" + "default.handlebars->47->3155" ] }, { @@ -72543,7 +72737,7 @@ "hu": "thai", "xloc": [ "default-mobile.handlebars->11->283", - "default.handlebars->47->1931", + "default.handlebars->47->1959", "login2.handlebars->7->180" ] }, @@ -72812,8 +73006,8 @@ "zh-cht": "目前沒有任何通知", "hu": "Jelenleg nincsenek értesítések", "xloc": [ - "default-mobile.handlebars->11->947", - "default.handlebars->47->3150" + "default-mobile.handlebars->11->975", + "default.handlebars->47->3178" ] }, { @@ -72840,8 +73034,8 @@ "zh-cht": "自上次登錄以來,此帳戶有 {0} 次登錄嘗試失敗。", "hu": "A legutóbbi bejelentkezés óta {0} sikertelen bejelentkezési kísérlet történt ebbe a fiókba.", "xloc": [ - "default-mobile.handlebars->11->968", - "default.handlebars->47->3171" + "default-mobile.handlebars->11->996", + "default.handlebars->47->3199" ] }, { @@ -72970,7 +73164,7 @@ "hu": "Ez a fiók nem jogosult új eszközcsoport létrehozására.", "xloc": [ "default-mobile.handlebars->11->330", - "default.handlebars->47->2002" + "default.handlebars->47->2030" ] }, { @@ -72997,7 +73191,7 @@ "zh-cht": "此代理具有過時的證書驗證機制,請考慮更新。", "hu": "Ennek az ügynöknek elavult tanúsítvány-érvényesítési mechanizmusa van, fontolja meg a frissítést.", "xloc": [ - "default.handlebars->47->2546" + "default.handlebars->47->2574" ] }, { @@ -73024,7 +73218,7 @@ "zh-cht": "此代理正在使用不安全的隧道,請考慮更新。", "hu": "Ez az Agent nem biztonságos alagutakat használ, fontolja meg a frissítést.", "xloc": [ - "default.handlebars->47->2547" + "default.handlebars->47->2575" ] }, { @@ -73051,7 +73245,7 @@ "zh-cht": "這是OS圖形用戶界面上的可執行檔案。你需要'chmod + x meshagent'並運行此檔案。", "hu": "Ez egy futtatható szoftver, grafikus felhasználói felülettel rendelkező operációs rendszerekhez. A 'chmod +x meshagent' paranccsal kell futtatni ezt a fájlt.", "xloc": [ - "agentinvite.handlebars->3->10", + "agentinvite.handlebars->3->11", "default.handlebars->47->655" ] }, @@ -73103,10 +73297,10 @@ "zh-cht": "這是一個嘉賓分享會", "hu": "Ez egy vendégmegosztás munkamenet", "xloc": [ - "default.handlebars->47->1548", - "default.handlebars->47->2595", - "default.handlebars->47->3009", - "default.handlebars->47->3010" + "default.handlebars->47->1556", + "default.handlebars->47->2623", + "default.handlebars->47->3037", + "default.handlebars->47->3038" ] }, { @@ -73160,7 +73354,7 @@ "zh-cht": "這是舊代理版本,請考慮更新。", "hu": "Ez egy régi Agent verzió, fontolja meg a frissítését.", "xloc": [ - "default.handlebars->47->2545" + "default.handlebars->47->2573" ] }, { @@ -73211,7 +73405,7 @@ "zh-cht": "這是推薦的策略。英特爾®AMT激活和管理是完全自動化的,服務器將嘗試最大程度地利用硬件管理。", "hu": "Ez az ajánlott házirend. Az Intel® AMT aktiválása és kezelése teljesen automatizált, és a kiszolgáló igyekszik a lehető legjobban kihasználni a hardverkezelést.", "xloc": [ - "default.handlebars->47->2206" + "default.handlebars->47->2234" ] }, { @@ -73266,7 +73460,7 @@ "zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。", "hu": "Ez a házirend nem érinti az Intel® AMT ACM módban működő eszközöket.", "xloc": [ - "default.handlebars->47->2203" + "default.handlebars->47->2231" ] }, { @@ -73452,7 +73646,7 @@ "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "hu": "Ez nem távolítja el az eszközöket a kiszolgálóról, de az eszközök többé nem tudnak csatlakozni a kiszolgálóhoz. Az eszközökhöz való távoli hozzáférés megszűnik. Az eszközöknek csatlakoztatva kell lenniük ahhoz, hogy ez a parancs működjön.", "xloc": [ - "default.handlebars->47->1274" + "default.handlebars->47->1276" ] }, { @@ -73479,7 +73673,7 @@ "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "hu": "Ez nem távolítja el az eszközt a kiszolgálóról, de az eszköz többé nem tud csatlakozni a kiszolgálóhoz. Az eszközhöz való távoli hozzáférés megszűnik. Az eszköznek kapcsolódnia kell ahhoz, hogy ez a parancs működjön.", "xloc": [ - "default.handlebars->47->1275" + "default.handlebars->47->1277" ] }, { @@ -73507,7 +73701,7 @@ "hu": "tigre", "xloc": [ "default-mobile.handlebars->11->284", - "default.handlebars->47->1932", + "default.handlebars->47->1960", "login2.handlebars->7->181" ] }, @@ -73536,9 +73730,9 @@ "hu": "Idő", "xloc": [ "default-mobile.handlebars->11->569", - "default.handlebars->47->1220", - "default.handlebars->47->3069", - "default.handlebars->47->3074", + "default.handlebars->47->1222", + "default.handlebars->47->3097", + "default.handlebars->47->3102", "player.handlebars->3->17" ] }, @@ -73566,8 +73760,8 @@ "zh-cht": "時間範圍", "hu": "Időintervallum", "xloc": [ - "default.handlebars->47->1206", - "default.handlebars->47->3070" + "default.handlebars->47->1207", + "default.handlebars->47->3098" ] }, { @@ -73594,7 +73788,7 @@ "zh-cht": "時間跨度", "hu": "Időtartam", "xloc": [ - "default.handlebars->47->2599" + "default.handlebars->47->2627" ] }, { @@ -73621,8 +73815,8 @@ "zh-cht": "時間範圍", "hu": "Időintervallum", "xloc": [ - "default.handlebars->47->1202", - "default.handlebars->47->3068" + "default.handlebars->47->1203", + "default.handlebars->47->3096" ] }, { @@ -73650,7 +73844,7 @@ "hu": "Időtúllépés", "xloc": [ "default-mobile.handlebars->11->618", - "default.handlebars->47->1337", + "default.handlebars->47->1340", "sharing.handlebars->11->31", "sharing.handlebars->11->9" ] @@ -73679,7 +73873,7 @@ "zh-cht": "標題", "hu": "Title", "xloc": [ - "default.handlebars->47->1162", + "default.handlebars->47->1163", "default.handlebars->47->745" ] }, @@ -73887,7 +74081,7 @@ "zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "hu": "A fiók törléséhez írja be a fiók jelszavát mindkét mezőbe, majd kattintson az OK gombra.", "xloc": [ - "default.handlebars->47->1989" + "default.handlebars->47->2017" ] }, { @@ -74157,7 +74351,7 @@ "zh-cht": "吐司通知", "hu": "Alkalmazásértesítés", "xloc": [ - "default.handlebars->47->1159", + "default.handlebars->47->1160", "default.handlebars->47->742" ] }, @@ -74599,7 +74793,7 @@ "zh-cht": "令牌名稱", "hu": "Token név", "xloc": [ - "default.handlebars->47->1975" + "default.handlebars->47->2003" ] }, { @@ -74712,9 +74906,9 @@ "zh-cht": "主題", "hu": "Téma", "xloc": [ - "default.handlebars->47->1269", - "default.handlebars->47->1724", - "default.handlebars->47->2939" + "default.handlebars->47->1271", + "default.handlebars->47->1752", + "default.handlebars->47->2967" ] }, { @@ -74980,7 +75174,7 @@ "hu": "tsonga", "xloc": [ "default-mobile.handlebars->11->285", - "default.handlebars->47->1933", + "default.handlebars->47->1961", "login2.handlebars->7->182" ] }, @@ -75009,7 +75203,7 @@ "hu": "tswana", "xloc": [ "default-mobile.handlebars->11->286", - "default.handlebars->47->1934", + "default.handlebars->47->1962", "login2.handlebars->7->183" ] }, @@ -75062,7 +75256,7 @@ "hu": "török", "xloc": [ "default-mobile.handlebars->11->287", - "default.handlebars->47->1935", + "default.handlebars->47->1963", "login2.handlebars->7->184" ] }, @@ -75091,7 +75285,7 @@ "hu": "türkmén", "xloc": [ "default-mobile.handlebars->11->288", - "default.handlebars->47->1936", + "default.handlebars->47->1964", "login2.handlebars->7->185" ] }, @@ -75149,7 +75343,7 @@ "zh-cht": "關掉。", "hu": "Kapcsolja ki.", "xloc": [ - "default.handlebars->47->2561" + "default.handlebars->47->2589" ] }, { @@ -75206,7 +75400,7 @@ "zh-cht": "打開。", "hu": "Kapcsolja be.", "xloc": [ - "default.handlebars->47->2560" + "default.handlebars->47->2588" ] }, { @@ -75285,13 +75479,13 @@ "hu": "Típus", "xloc": [ "default-mobile.handlebars->11->336", - "default-mobile.handlebars->11->872", - "default.handlebars->47->1183", - "default.handlebars->47->1428", - "default.handlebars->47->2013", - "default.handlebars->47->2079", - "default.handlebars->47->2178", - "default.handlebars->47->3055", + "default-mobile.handlebars->11->900", + "default.handlebars->47->1184", + "default.handlebars->47->1431", + "default.handlebars->47->2041", + "default.handlebars->47->2107", + "default.handlebars->47->2206", + "default.handlebars->47->3083", "default.handlebars->47->494", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->5", "sharing.handlebars->p11->deskarea0->deskarea4->3" @@ -75321,7 +75515,7 @@ "zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "hu": "Írja be a kulcs nevét, jelölje be az OTP mezőt, és nyomja meg a gombot a YubiKey™-en.", "xloc": [ - "default.handlebars->47->1745" + "default.handlebars->47->1773" ] }, { @@ -75348,7 +75542,7 @@ "zh-cht": "輸入要新增的密鑰的名稱。", "hu": "Írja be a hozzáadni kívánt kulcs nevét.", "xloc": [ - "default.handlebars->47->1742" + "default.handlebars->47->1770" ] }, { @@ -75451,7 +75645,7 @@ "zh-cht": "UTF8終端", "hu": "UTF8 Terminál", "xloc": [ - "default.handlebars->47->1478", + "default.handlebars->47->1481", "sharing.handlebars->11->33" ] }, @@ -75480,7 +75674,7 @@ "hu": "ukrán", "xloc": [ "default-mobile.handlebars->11->289", - "default.handlebars->47->1937", + "default.handlebars->47->1965", "login2.handlebars->7->186" ] }, @@ -75612,7 +75806,7 @@ "zh-cht": "在驗證電子郵件地址之前,無法訪問此功能。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "hu": "A funkció nem érhető el, amíg az e-mail cím nem kerül megerősítésre. Ez a jelszó helyreállításához szükséges. Menjen a \\\"Fiókom\\\" fülre az e-mail cím módosításához és ellenőrzéséhez", "xloc": [ - "default.handlebars->47->2004", + "default.handlebars->47->2032", "default.handlebars->47->851" ] }, @@ -75640,8 +75834,8 @@ "zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "hu": "Nem lehet hozzáférni ehhez a funkcióhoz, amíg a kétfaktoros hitelesítés nincs engedélyezve. Ez a fokozott biztonság érdekében szükséges. Lépjen a \\\"Fiókom\\\" fülre, és tekintse meg a \\\"Fiókbiztonság\\\" részt.", "xloc": [ - "default.handlebars->47->2006", - "default.handlebars->47->3287", + "default.handlebars->47->2034", + "default.handlebars->47->3315", "default.handlebars->47->853" ] }, @@ -75669,8 +75863,8 @@ "zh-cht": "此模式下無法添加用戶", "hu": "Ebben a módban nem lehet felhasználót hozzáadni", "xloc": [ - "default-mobile.handlebars->11->964", - "default.handlebars->47->3167" + "default-mobile.handlebars->11->992", + "default.handlebars->47->3195" ] }, { @@ -75748,7 +75942,7 @@ "zh-cht": "無法捕獲顯示", "hu": "Nem sikerült a képernyő rögzítés", "xloc": [ - "default.handlebars->47->1339" + "default.handlebars->47->1342" ] }, { @@ -75856,7 +76050,7 @@ "zh-cht": "無法導入任何設備。", "hu": "Egyetlen eszköz sem importálható.", "xloc": [ - "default.handlebars->47->2174" + "default.handlebars->47->2202" ] }, { @@ -76205,10 +76399,10 @@ "hu": "Eltávolítás", "xloc": [ "agent-translations.json", - "default-mobile.handlebars->11->936", + "default-mobile.handlebars->11->964", "default.handlebars->47->1112", "default.handlebars->47->1137", - "default.handlebars->47->2308" + "default.handlebars->47->2336" ] }, { @@ -76235,8 +76429,8 @@ "zh-cht": "卸載代理", "hu": "Agent eltávolítása", "xloc": [ - "default-mobile.handlebars->11->916", - "default.handlebars->47->1236", + "default-mobile.handlebars->11->944", + "default.handlebars->47->1238", "default.handlebars->47->708" ] }, @@ -76264,7 +76458,7 @@ "zh-cht": "卸載代理/刪除設備", "hu": "Agent eltávolítása / Eszköz törlése", "xloc": [ - "default.handlebars->47->2270" + "default.handlebars->47->2298" ] }, { @@ -76291,7 +76485,7 @@ "zh-cht": "卸載代理", "hu": "Agent eltávolítása", "xloc": [ - "default.handlebars->47->1277" + "default.handlebars->47->1279" ] }, { @@ -76323,31 +76517,35 @@ "default-mobile.handlebars->11->45", "default-mobile.handlebars->11->468", "default-mobile.handlebars->11->6", - "default-mobile.handlebars->11->789", - "default-mobile.handlebars->11->796", - "default-mobile.handlebars->11->873", + "default-mobile.handlebars->11->788", + "default-mobile.handlebars->11->795", + "default-mobile.handlebars->11->859", + "default-mobile.handlebars->11->868", + "default-mobile.handlebars->11->870", + "default-mobile.handlebars->11->901", "default.handlebars->47->13", - "default.handlebars->47->1603", - "default.handlebars->47->1610", - "default.handlebars->47->1665", - "default.handlebars->47->1667", + "default.handlebars->47->1613", + "default.handlebars->47->1620", + "default.handlebars->47->1684", + "default.handlebars->47->1693", + "default.handlebars->47->1695", "default.handlebars->47->187", "default.handlebars->47->188", "default.handlebars->47->189", "default.handlebars->47->191", "default.handlebars->47->193", - "default.handlebars->47->2059", - "default.handlebars->47->2060", - "default.handlebars->47->2080", - "default.handlebars->47->3002", - "default.handlebars->47->3022", - "default.handlebars->47->3029", - "default.handlebars->47->3100", - "default.handlebars->47->3101", - "default.handlebars->47->3102", - "default.handlebars->47->3103", - "default.handlebars->47->3104", - "default.handlebars->47->3143", + "default.handlebars->47->2087", + "default.handlebars->47->2088", + "default.handlebars->47->2108", + "default.handlebars->47->3030", + "default.handlebars->47->3050", + "default.handlebars->47->3057", + "default.handlebars->47->3128", + "default.handlebars->47->3129", + "default.handlebars->47->3130", + "default.handlebars->47->3131", + "default.handlebars->47->3132", + "default.handlebars->47->3171", "default.handlebars->47->44", "default.handlebars->47->51", "default.handlebars->47->52", @@ -76378,8 +76576,8 @@ "zh-cht": "未知#{0}", "hu": "Ismeretlen #{0}", "xloc": [ - "default-mobile.handlebars->11->862", - "default.handlebars->47->2069" + "default-mobile.handlebars->11->890", + "default.handlebars->47->2097" ] }, { @@ -76406,7 +76604,7 @@ "zh-cht": "未知動作", "hu": "Ismeretlen Művelet", "xloc": [ - "default.handlebars->47->3204" + "default.handlebars->47->3232" ] }, { @@ -76433,8 +76631,8 @@ "zh-cht": "未知裝置", "hu": "Ismeretlen Eszköz", "xloc": [ - "default.handlebars->47->2794", - "default.handlebars->47->2988" + "default.handlebars->47->2822", + "default.handlebars->47->3016" ] }, { @@ -76461,9 +76659,9 @@ "zh-cht": "未知裝置群", "hu": "Ismeretlen Eszköz Csoport", "xloc": [ - "default.handlebars->47->2788", - "default.handlebars->47->2976", - "default.handlebars->47->3208" + "default.handlebars->47->2816", + "default.handlebars->47->3004", + "default.handlebars->47->3236" ] }, { @@ -76490,7 +76688,7 @@ "zh-cht": "未知群組", "hu": "Ismeretlen Csoport", "xloc": [ - "default.handlebars->47->3200" + "default.handlebars->47->3228" ] }, { @@ -76545,8 +76743,8 @@ "zh-cht": "未知用戶", "hu": "Ismeretlen felhasználó", "xloc": [ - "default.handlebars->47->3105", - "default.handlebars->47->3144" + "default.handlebars->47->3133", + "default.handlebars->47->3172" ] }, { @@ -76573,7 +76771,7 @@ "zh-cht": "未知用戶群", "hu": "Ismeretlen felhasználói csoport", "xloc": [ - "default.handlebars->47->2982" + "default.handlebars->47->3010" ] }, { @@ -76628,7 +76826,7 @@ "zh-cht": "密碼未知", "hu": "Ismeretlen jelszó", "xloc": [ - "default.handlebars->47->2194" + "default.handlebars->47->2222" ] }, { @@ -76655,8 +76853,8 @@ "zh-cht": "無限", "hu": "Korlátlan", "xloc": [ - "default.handlebars->47->1199", - "default.handlebars->47->1958", + "default.handlebars->47->1200", + "default.handlebars->47->1986", "default.handlebars->47->279", "default.handlebars->47->558", "default.handlebars->47->572" @@ -76686,7 +76884,7 @@ "zh-cht": "解鎖帳戶", "hu": "Zárolt fiók feloldása", "xloc": [ - "default.handlebars->47->2655" + "default.handlebars->47->2683" ] }, { @@ -76713,7 +76911,7 @@ "zh-cht": "解鎖遠程用戶的鼠標和鍵盤?", "hu": "Feloldja a távoli felhasználó egerét és billentyűzetét?", "xloc": [ - "default.handlebars->47->1158" + "default.handlebars->47->1159" ] }, { @@ -76770,6 +76968,30 @@ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->17" ] }, + { + "en": "Unzip", + "xloc": [ + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3" + ] + }, + { + "en": "Unzip To Folder", + "xloc": [ + "default.handlebars->47->1527" + ] + }, + { + "en": "Unzipping Error", + "xloc": [ + "default.handlebars->47->1502" + ] + }, + { + "en": "Unzipping file...", + "xloc": [ + "default.handlebars->47->1500" + ] + }, { "bs": "Gore", "cs": "Nahoru", @@ -76797,7 +77019,7 @@ "default-mobile.handlebars->11->637", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->47->1386", + "default.handlebars->47->1389", "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", @@ -76828,7 +77050,7 @@ "zh-cht": "最新", "hu": "Naprakész", "xloc": [ - "default.handlebars->47->3292" + "default.handlebars->47->3320" ] }, { @@ -76946,11 +77168,11 @@ "default-mobile.handlebars->11->697", "default-mobile.handlebars->11->715", "default-mobile.handlebars->11->718", - "default.handlebars->47->1517", - "default.handlebars->47->1543", - "default.handlebars->47->1546", - "default.handlebars->47->2416", - "default.handlebars->47->2426", + "default.handlebars->47->1524", + "default.handlebars->47->1551", + "default.handlebars->47->1554", + "default.handlebars->47->2444", + "default.handlebars->47->2454", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1", "sharing.handlebars->11->65", "sharing.handlebars->11->89", @@ -76981,8 +77203,8 @@ "zh-cht": "上載mesh agent核心", "hu": "Mesh Agent Core feltöltése", "xloc": [ - "default-mobile.handlebars->11->861", - "default.handlebars->47->1687" + "default-mobile.handlebars->11->889", + "default.handlebars->47->1715" ] }, { @@ -77009,8 +77231,8 @@ "zh-cht": "上載核心檔案", "hu": "Core fájl feltöltése", "xloc": [ - "default-mobile.handlebars->11->858", - "default.handlebars->47->1684" + "default-mobile.handlebars->11->886", + "default.handlebars->47->1712" ] }, { @@ -77037,8 +77259,8 @@ "zh-cht": "上載默認伺服器核心", "hu": "Alapértelmezett server core feltöltése", "xloc": [ - "default-mobile.handlebars->11->854", - "default.handlebars->47->1680", + "default-mobile.handlebars->11->882", + "default.handlebars->47->1708", "default.handlebars->47->720", "default.handlebars->47->763" ] @@ -77148,8 +77370,8 @@ "zh-cht": "上傳恢復核心", "hu": "Recovery core feltöltése", "xloc": [ - "default-mobile.handlebars->11->856", - "default.handlebars->47->1682" + "default-mobile.handlebars->11->884", + "default.handlebars->47->1710" ] }, { @@ -77203,8 +77425,8 @@ "zh-cht": "上傳小核心", "hu": "Tiny core feltöltése", "xloc": [ - "default-mobile.handlebars->11->857", - "default.handlebars->47->1683" + "default-mobile.handlebars->11->885", + "default.handlebars->47->1711" ] }, { @@ -77232,8 +77454,8 @@ "hu": "A feltöltés 1 fájlt ír felül. Folytatja?", "xloc": [ "default-mobile.handlebars->11->716", - "default.handlebars->47->1544", - "default.handlebars->47->2427", + "default.handlebars->47->1552", + "default.handlebars->47->2455", "sharing.handlebars->11->90" ] }, @@ -77262,8 +77484,8 @@ "hu": "A feltöltés {0} fájlt felülír. Folytja?", "xloc": [ "default-mobile.handlebars->11->717", - "default.handlebars->47->1545", - "default.handlebars->47->2428", + "default.handlebars->47->1553", + "default.handlebars->47->2456", "sharing.handlebars->11->91" ] }, @@ -77315,7 +77537,7 @@ "zh-cht": "上傳:“{0}”", "hu": "Feltöltés: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2478" + "default.handlebars->47->2506" ] }, { @@ -77342,7 +77564,7 @@ "zh-cht": "上傳:\\\"{0}\\\",大小:{1}", "hu": "Feltöltés: \\\"{0}\\\", Méret: {1}", "xloc": [ - "default.handlebars->47->2533" + "default.handlebars->47->2561" ] }, { @@ -77370,7 +77592,7 @@ "hu": "felső-sorbiai", "xloc": [ "default-mobile.handlebars->11->290", - "default.handlebars->47->1938", + "default.handlebars->47->1966", "login2.handlebars->7->187" ] }, @@ -77399,7 +77621,7 @@ "hu": "urdu", "xloc": [ "default-mobile.handlebars->11->291", - "default.handlebars->47->1939", + "default.handlebars->47->1967", "login2.handlebars->7->188" ] }, @@ -77427,7 +77649,7 @@ "zh-cht": "用法", "hu": "Használat", "xloc": [ - "default.handlebars->47->3254" + "default.handlebars->47->3282" ] }, { @@ -77521,7 +77743,7 @@ "pl": "Używaj do Przekierowania", "de": "Als Relay benutzen", "xloc": [ - "default.handlebars->47->2274" + "default.handlebars->47->2302" ] }, { @@ -77575,7 +77797,7 @@ "zh-cht": "使用新憑據", "hu": "Használjon új hitelesítő adatokat", "xloc": [ - "default.handlebars->47->1352", + "default.handlebars->47->1355", "mstsc.handlebars->main->1->3->1->dropdowndomain->1->d3coreMode->1" ] }, @@ -77603,7 +77825,7 @@ "zh-cht": "使用服務器憑據", "hu": "Használja a kiszolgáló hitelesítő adatait", "xloc": [ - "default.handlebars->47->1351", + "default.handlebars->47->1354", "mstsc.handlebars->main->1->3->1->dropdowndomain->1->d3coreMode->0" ] }, @@ -77658,8 +77880,8 @@ "zh-cht": "用過的", "hu": "Használt", "xloc": [ - "default.handlebars->47->3194", - "default.handlebars->47->3196" + "default.handlebars->47->3222", + "default.handlebars->47->3224" ] }, { @@ -77688,15 +77910,15 @@ "xloc": [ "default.handlebars->47->1056", "default.handlebars->47->125", - "default.handlebars->47->1430", - "default.handlebars->47->2141", - "default.handlebars->47->2606", - "default.handlebars->47->2636", - "default.handlebars->47->2784", - "default.handlebars->47->3048", - "default.handlebars->47->3056", - "default.handlebars->47->3060", - "default.handlebars->47->3077", + "default.handlebars->47->1433", + "default.handlebars->47->2169", + "default.handlebars->47->2634", + "default.handlebars->47->2664", + "default.handlebars->47->2812", + "default.handlebars->47->3076", + "default.handlebars->47->3084", + "default.handlebars->47->3088", + "default.handlebars->47->3105", "default.handlebars->47->377" ] }, @@ -77724,7 +77946,7 @@ "zh-cht": "用戶+檔案", "hu": "Felhasználó + Fájlok", "xloc": [ - "default.handlebars->47->2637" + "default.handlebars->47->2665" ] }, { @@ -77751,11 +77973,11 @@ "zh-cht": "用戶帳戶導入", "hu": "Felhasználói fiókok importálása", "xloc": [ - "default.handlebars->47->2173", - "default.handlebars->47->2674", - "default.handlebars->47->2675", - "default.handlebars->47->2677", - "default.handlebars->47->2679" + "default.handlebars->47->2201", + "default.handlebars->47->2702", + "default.handlebars->47->2703", + "default.handlebars->47->2705", + "default.handlebars->47->2707" ] }, { @@ -77782,7 +78004,7 @@ "zh-cht": "用戶帳戶", "hu": "Felhasználói fiókok", "xloc": [ - "default.handlebars->47->3213" + "default.handlebars->47->3241" ] }, { @@ -77794,7 +78016,7 @@ "hu": "Felhasználó hitelesítési napló", "de": "Benutzerauthentifizierungs-Log", "xloc": [ - "default.handlebars->47->3275" + "default.handlebars->47->3303" ] }, { @@ -77821,9 +78043,9 @@ "zh-cht": "用戶授權", "hu": "Felhasználó és Csoport jogosultságok", "xloc": [ - "default-mobile.handlebars->11->880", + "default-mobile.handlebars->11->908", "default.handlebars->47->1052", - "default.handlebars->47->2139" + "default.handlebars->47->2167" ] }, { @@ -77850,10 +78072,10 @@ "zh-cht": "用戶同意", "hu": "Felhasználói hozzájárulás", "xloc": [ - "default.handlebars->47->1211", - "default.handlebars->47->2105", - "default.handlebars->47->2775", - "default.handlebars->47->2880", + "default.handlebars->47->1212", + "default.handlebars->47->2133", + "default.handlebars->47->2803", + "default.handlebars->47->2908", "default.handlebars->47->301", "default.handlebars->47->948" ] @@ -77883,11 +78105,11 @@ "hu": "Felhasználó csoport", "xloc": [ "default.handlebars->47->1055", - "default.handlebars->47->2245", - "default.handlebars->47->2246", - "default.handlebars->47->2744", - "default.handlebars->47->2984", - "default.handlebars->47->3005" + "default.handlebars->47->2273", + "default.handlebars->47->2274", + "default.handlebars->47->2772", + "default.handlebars->47->3012", + "default.handlebars->47->3033" ] }, { @@ -77941,7 +78163,7 @@ "zh-cht": "用戶群成員", "hu": "Felhasználói csoport tagságok", "xloc": [ - "default.handlebars->47->2981" + "default.handlebars->47->3009" ] }, { @@ -77968,7 +78190,7 @@ "zh-cht": "用戶識別碼", "hu": "User ID", "xloc": [ - "default-mobile.handlebars->11->941" + "default-mobile.handlebars->11->969" ] }, { @@ -77995,9 +78217,9 @@ "zh-cht": "用戶識別碼", "hu": "Felhasználó azonosító", "xloc": [ - "default.handlebars->47->2316", - "default.handlebars->47->2831", - "default.handlebars->47->2832" + "default.handlebars->47->2344", + "default.handlebars->47->2859", + "default.handlebars->47->2860" ] }, { @@ -78024,8 +78246,8 @@ "zh-cht": "用戶標識符", "hu": "Felhasználó azonosítók", "xloc": [ - "default.handlebars->47->2243", - "default.handlebars->47->2815" + "default.handlebars->47->2271", + "default.handlebars->47->2843" ] }, { @@ -78079,7 +78301,7 @@ "zh-cht": "用戶列表輸出", "hu": "Felhasználó lista exportálása", "xloc": [ - "default.handlebars->47->2686" + "default.handlebars->47->2714" ] }, { @@ -78106,7 +78328,7 @@ "zh-cht": "用戶登錄", "hu": "Felhasználói bejelentkezések", "xloc": [ - "default.handlebars->47->3053" + "default.handlebars->47->3081" ] }, { @@ -78133,8 +78355,8 @@ "zh-cht": "用戶名", "hu": "Felhasználó Név", "xloc": [ - "default-mobile.handlebars->11->940", - "default.handlebars->47->2315" + "default-mobile.handlebars->11->968", + "default.handlebars->47->2343" ] }, { @@ -78265,7 +78487,7 @@ "zh-cht": "用戶節", "hu": "Felhasználó munkamenetek", "xloc": [ - "default.handlebars->47->3245" + "default.handlebars->47->3273" ] }, { @@ -78323,7 +78545,7 @@ "zh-cht": "用戶流量使用", "hu": "Felhasználói forgalom", "xloc": [ - "default.handlebars->47->3052" + "default.handlebars->47->3080" ] }, { @@ -78431,8 +78653,8 @@ "zh-cht": "用戶已存在", "hu": "A felhasználó már létezik", "xloc": [ - "default-mobile.handlebars->11->963", - "default.handlebars->47->3166" + "default-mobile.handlebars->11->991", + "default.handlebars->47->3194" ] }, { @@ -78461,8 +78683,8 @@ "xloc": [ "default-mobile.handlebars->11->302", "default-mobile.handlebars->11->304", - "default.handlebars->47->1950", - "default.handlebars->47->1952" + "default.handlebars->47->1978", + "default.handlebars->47->1980" ] }, { @@ -78489,7 +78711,7 @@ "zh-cht": "用戶組已更改:{0}", "hu": "Fellhasználói csoport módosítva: {0}", "xloc": [ - "default.handlebars->47->2507" + "default.handlebars->47->2535" ] }, { @@ -78516,7 +78738,7 @@ "zh-cht": "已創建用戶組:{0}", "hu": "Fellhasználói csoport létrehozva: {0}", "xloc": [ - "default.handlebars->47->2497" + "default.handlebars->47->2525" ] }, { @@ -78543,7 +78765,7 @@ "zh-cht": "用戶組成員身份已更改:{0}", "hu": "Felhasználói csoport tagsága megváltozott: {0}", "xloc": [ - "default.handlebars->47->2495" + "default.handlebars->47->2523" ] }, { @@ -78555,7 +78777,7 @@ "hu": "Felhasználói csoport rekordok", "de": "Benutzergruppen-Log", "xloc": [ - "default.handlebars->47->3134" + "default.handlebars->47->3162" ] }, { @@ -78598,8 +78820,8 @@ "pl": "Klucz Użytkownika", "de": "Nutzerschlüssel", "xloc": [ - "default.handlebars->47->1723", - "default.handlebars->47->2938" + "default.handlebars->47->1751", + "default.handlebars->47->2966" ] }, { @@ -78626,7 +78848,7 @@ "zh-cht": "用戶從 {0}、{1}、{2} 嘗試登錄鎖定帳戶", "hu": "Felhasználó bejelentkezési kísérlet zárolt fiókhoz innen: {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2537" + "default.handlebars->47->2565" ] }, { @@ -78653,7 +78875,7 @@ "zh-cht": "使用來自 {0}、{1}、{2} 的錯誤第二因素的用戶登錄嘗試", "hu": "Helytelen 2 faktoros felhasználói bejelentkezési kisérlet innen: {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2536" + "default.handlebars->47->2564" ] }, { @@ -78680,7 +78902,7 @@ "zh-cht": "用戶通知已更改", "hu": "Felhasználói értesítések megváltoztak", "xloc": [ - "default.handlebars->47->2558" + "default.handlebars->47->2586" ] }, { @@ -78692,7 +78914,7 @@ "hu": "Felhasználói rekordok", "de": "Benutzeraufzeichnungen", "xloc": [ - "default.handlebars->47->3124" + "default.handlebars->47->3152" ] }, { @@ -78719,8 +78941,8 @@ "zh-cht": "未找到用戶 {0}。", "hu": "{0} felhasználó nem található.", "xloc": [ - "default-mobile.handlebars->11->971", - "default.handlebars->47->3174" + "default-mobile.handlebars->11->999", + "default.handlebars->47->3202" ] }, { @@ -78800,17 +79022,17 @@ "xloc": [ "default-mobile.handlebars->11->595", "default-mobile.handlebars->11->665", - "default-mobile.handlebars->11->876", - "default.handlebars->47->1263", - "default.handlebars->47->1354", - "default.handlebars->47->1464", - "default.handlebars->47->1727", - "default.handlebars->47->2022", - "default.handlebars->47->2037", - "default.handlebars->47->2042", - "default.handlebars->47->2083", - "default.handlebars->47->2698", - "default.handlebars->47->2942", + "default-mobile.handlebars->11->904", + "default.handlebars->47->1265", + "default.handlebars->47->1357", + "default.handlebars->47->1467", + "default.handlebars->47->1755", + "default.handlebars->47->2050", + "default.handlebars->47->2065", + "default.handlebars->47->2070", + "default.handlebars->47->2111", + "default.handlebars->47->2726", + "default.handlebars->47->2970", "default.handlebars->47->332", "default.handlebars->47->503", "login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->0->1", @@ -78847,8 +79069,8 @@ "xloc": [ "default-mobile.handlebars->11->660", "default-mobile.handlebars->11->663", - "default.handlebars->47->1459", "default.handlebars->47->1462", + "default.handlebars->47->1465", "ssh.handlebars->3->10", "ssh.handlebars->3->7" ] @@ -78908,8 +79130,8 @@ "xloc": [ "default-mobile.handlebars->11->661", "default-mobile.handlebars->11->664", - "default.handlebars->47->1460", "default.handlebars->47->1463", + "default.handlebars->47->1466", "ssh.handlebars->3->11", "ssh.handlebars->3->8" ] @@ -78954,8 +79176,8 @@ "pl": "Username:0000", "de": "Benutzername:0000", "xloc": [ - "default.handlebars->47->1720", - "default.handlebars->47->2935" + "default.handlebars->47->1748", + "default.handlebars->47->2963" ] }, { @@ -78982,9 +79204,9 @@ "zh-cht": "用戶", "hu": "Felhasználók", "xloc": [ - "default.handlebars->47->2732", - "default.handlebars->47->2776", - "default.handlebars->47->3244", + "default.handlebars->47->2760", + "default.handlebars->47->2804", + "default.handlebars->47->3272", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -79012,7 +79234,7 @@ "zh-cht": "用戶節", "hu": "Felhasználói munkamenetek", "xloc": [ - "default.handlebars->47->3217" + "default.handlebars->47->3245" ] }, { @@ -79039,7 +79261,7 @@ "zh-cht": "用戶視圖", "hu": "Felhasználók megtekintése", "xloc": [ - "default.handlebars->47->2672" + "default.handlebars->47->2700" ] }, { @@ -79066,8 +79288,8 @@ "zh-cht": "未找到用戶 {0}。", "hu": "{0} felhasználók nem találhatóak.", "xloc": [ - "default-mobile.handlebars->11->972", - "default.handlebars->47->3175" + "default-mobile.handlebars->11->1000", + "default.handlebars->47->3203" ] }, { @@ -79148,7 +79370,7 @@ "zh-cht": "VT100 +(F10 = ESC + [OY)", "hu": "VT100+ (F10 = ESC+[OY)", "xloc": [ - "default.handlebars->47->1483", + "default.handlebars->47->1486", "sharing.handlebars->11->38" ] }, @@ -79204,7 +79426,7 @@ "zh-cht": "驗證電郵", "hu": "Email Érvényesít", "xloc": [ - "default.handlebars->47->2650" + "default.handlebars->47->2678" ] }, { @@ -79231,8 +79453,8 @@ "zh-cht": "驗證異常", "hu": "Érvényesítési kivétel", "xloc": [ - "default-mobile.handlebars->11->965", - "default.handlebars->47->3168" + "default-mobile.handlebars->11->993", + "default.handlebars->47->3196" ] }, { @@ -79259,7 +79481,7 @@ "zh-cht": "有效期", "hu": "Érvényesség", "xloc": [ - "default.handlebars->47->1200" + "default.handlebars->47->1201" ] }, { @@ -79286,7 +79508,7 @@ "zh-cht": "價值", "hu": "Érték", "xloc": [ - "default.handlebars->47->1402" + "default.handlebars->47->1405" ] }, { @@ -79314,7 +79536,7 @@ "hu": "venda", "xloc": [ "default-mobile.handlebars->11->292", - "default.handlebars->47->1940", + "default.handlebars->47->1968", "login2.handlebars->7->189" ] }, @@ -79342,10 +79564,10 @@ "zh-cht": "供應商", "hu": "Forgalmazó", "xloc": [ - "default-mobile.handlebars->11->805", - "default-mobile.handlebars->11->810", - "default.handlebars->47->1619", - "default.handlebars->47->1624" + "default-mobile.handlebars->11->804", + "default-mobile.handlebars->11->809", + "default.handlebars->47->1629", + "default.handlebars->47->1634" ] }, { @@ -79401,7 +79623,7 @@ "zh-cht": "已驗證", "hu": "Megerősítve", "xloc": [ - "default.handlebars->47->2960" + "default.handlebars->47->2988" ] }, { @@ -79440,7 +79662,7 @@ "pl": "Zweryfikowano logowanie", "de": "Verifizierte Nutzerkennung", "xloc": [ - "default.handlebars->47->1697" + "default.handlebars->47->1725" ] }, { @@ -79451,7 +79673,7 @@ "pl": "Zweryfikowano konto komunikatora", "de": "Verifizierter Benachrichtigungsaccount", "xloc": [ - "default.handlebars->47->2647" + "default.handlebars->47->2675" ] }, { @@ -79462,7 +79684,7 @@ "pl": "Zweryfikowano konto komunikatora użytkownika {0}", "de": "Verifizierter Benachrichtigungsaccount des Benutzers {0}", "xloc": [ - "default.handlebars->47->2584" + "default.handlebars->47->2612" ] }, { @@ -79490,8 +79712,8 @@ "hu": "Megerősített telefonszám ", "xloc": [ "default-mobile.handlebars->11->96", - "default.handlebars->47->1691", - "default.handlebars->47->2645" + "default.handlebars->47->1719", + "default.handlebars->47->2673" ] }, { @@ -79518,7 +79740,7 @@ "zh-cht": "用戶{0}的已驗證電話號碼", "hu": "Megerősített telefonszám {0} felhasználóhoz", "xloc": [ - "default.handlebars->47->2524" + "default.handlebars->47->2552" ] }, { @@ -79601,13 +79823,13 @@ "hu": "Verzió", "xloc": [ "default-mobile.handlebars->11->721", - "default-mobile.handlebars->11->788", - "default-mobile.handlebars->11->806", - "default-mobile.handlebars->11->813", - "default.handlebars->47->1552", - "default.handlebars->47->1602", - "default.handlebars->47->1620", - "default.handlebars->47->1627", + "default-mobile.handlebars->11->787", + "default-mobile.handlebars->11->805", + "default-mobile.handlebars->11->812", + "default.handlebars->47->1562", + "default.handlebars->47->1612", + "default.handlebars->47->1630", + "default.handlebars->47->1637", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -79635,7 +79857,7 @@ "zh-cht": "版本不兼容,請先升級你的MeshCentral", "hu": "Nem kompatibilis verzió, kérjük, először frissítse a MeshCentral telepítését.", "xloc": [ - "default.handlebars->47->3288" + "default.handlebars->47->3316" ] }, { @@ -79716,7 +79938,7 @@ "hu": "Rezgés", "xloc": [ "default-mobile.handlebars->11->568", - "default.handlebars->47->1219" + "default.handlebars->47->1221" ] }, { @@ -79744,7 +79966,7 @@ "hu": "vietnámi", "xloc": [ "default-mobile.handlebars->11->293", - "default.handlebars->47->1941", + "default.handlebars->47->1969", "login2.handlebars->7->190" ] }, @@ -79799,7 +80021,7 @@ "zh-cht": "查看所有事件", "hu": "Minden esemény megtekintése", "xloc": [ - "default.handlebars->47->2723" + "default.handlebars->47->2751" ] }, { @@ -79850,8 +80072,8 @@ "zh-cht": "查看變更日誌", "hu": "Változásnapló megtekintése", "xloc": [ - "default.handlebars->47->3291", - "default.handlebars->47->3293" + "default.handlebars->47->3319", + "default.handlebars->47->3321" ] }, { @@ -79905,7 +80127,7 @@ "zh-cht": "查看有關此裝置群的註釋", "hu": "Az eszközcsoporttal kapcsolatos megjegyzések megtekintése", "xloc": [ - "default.handlebars->47->2124" + "default.handlebars->47->2152" ] }, { @@ -79932,7 +80154,7 @@ "zh-cht": "查看有關此用戶的註釋", "hu": "A felhasználóval kapcsolatos megjegyzések megtekintése", "xloc": [ - "default.handlebars->47->2891" + "default.handlebars->47->2919" ] }, { @@ -79949,7 +80171,7 @@ "ja": "以前のログインを表示する", "ko": "이전 로그인보기", "nl": "Bekijk eerdere aanmeldingen", - "pl": "Wyświetlanie poprzednie logowania", + "pl": "Wyświetl poprzednie logowania", "pt": "Ver logins anteriores", "pt-br": "Ver logins anteriores", "ru": "Посмотреть предыдущие входы в систему ", @@ -79987,7 +80209,7 @@ "zh-cht": "查看此用戶以前的登錄信息", "hu": "A felhasználó korábbi bejelentkezéseinek megtekintése", "xloc": [ - "default.handlebars->47->2906" + "default.handlebars->47->2934" ] }, { @@ -80042,7 +80264,7 @@ "hu": "volapuk", "xloc": [ "default-mobile.handlebars->11->294", - "default.handlebars->47->1942", + "default.handlebars->47->1970", "login2.handlebars->7->191" ] }, @@ -80271,7 +80493,7 @@ "hu": "Várjuk, hogy a felhasználó engedélyezze a hozzáférést...", "xloc": [ "default-mobile.handlebars->11->615", - "default.handlebars->47->1334", + "default.handlebars->47->1337", "sharing.handlebars->11->28", "sharing.handlebars->11->6" ] @@ -80328,10 +80550,10 @@ "zh-cht": "喚醒裝置", "hu": "Eszközök felébresztése", "xloc": [ - "default-mobile.handlebars->11->912", - "default-mobile.handlebars->11->927", - "default.handlebars->47->2266", - "default.handlebars->47->2298" + "default-mobile.handlebars->11->940", + "default-mobile.handlebars->11->955", + "default.handlebars->47->2294", + "default.handlebars->47->2326" ] }, { @@ -80359,7 +80581,7 @@ "hu": "Felébresztés", "xloc": [ "default-mobile.handlebars->11->573", - "default.handlebars->47->1224" + "default.handlebars->47->1226" ] }, { @@ -80414,7 +80636,7 @@ "hu": "walloon", "xloc": [ "default-mobile.handlebars->11->295", - "default.handlebars->47->1943", + "default.handlebars->47->1971", "login2.handlebars->7->192" ] }, @@ -80442,7 +80664,7 @@ "zh-cht": "弱", "hu": "gyenge", "xloc": [ - "default.handlebars->47->2029" + "default.handlebars->47->2057" ] }, { @@ -80502,7 +80724,7 @@ "hu": "Weboldal értesítések", "xloc": [ "default.handlebars->47->1084", - "default.handlebars->47->2345" + "default.handlebars->47->2373" ] }, { @@ -80529,7 +80751,7 @@ "zh-cht": "網頁電源開關 7", "hu": "Web Power Switch 7", "xloc": [ - "default.handlebars->47->2020" + "default.handlebars->47->2048" ] }, { @@ -80556,8 +80778,8 @@ "zh-cht": "網絡伺服器", "hu": "WEB Kiszolgáló", "xloc": [ - "default.handlebars->47->3270", - "default.handlebars->47->3271" + "default.handlebars->47->3298", + "default.handlebars->47->3299" ] }, { @@ -80584,7 +80806,7 @@ "zh-cht": "Web 服務器 HTTP 標頭", "hu": "WEB Kiszolgáló HTTP fejlécek", "xloc": [ - "default.handlebars->47->3274" + "default.handlebars->47->3302" ] }, { @@ -80611,7 +80833,7 @@ "zh-cht": "Web伺服器請求", "hu": "WEB kiszolgáló kérések", "xloc": [ - "default.handlebars->47->3272" + "default.handlebars->47->3300" ] }, { @@ -80638,7 +80860,7 @@ "zh-cht": "Web插座中繼", "hu": "Web Socket Relay", "xloc": [ - "default.handlebars->47->3273" + "default.handlebars->47->3301" ] }, { @@ -80666,7 +80888,7 @@ "hu": "Web-RDP", "xloc": [ "default.handlebars->47->1026", - "default.handlebars->47->3096", + "default.handlebars->47->3124", "default.handlebars->contextMenu->cxwebrdp" ] }, @@ -80694,7 +80916,7 @@ "zh-cht": "網絡SFTP", "hu": "Web-SFTP", "xloc": [ - "default.handlebars->47->3098" + "default.handlebars->47->3126" ] }, { @@ -80722,7 +80944,7 @@ "hu": "Web-SSH", "xloc": [ "default.handlebars->47->1028", - "default.handlebars->47->3097", + "default.handlebars->47->3125", "default.handlebars->contextMenu->cxwebssh" ] }, @@ -80751,7 +80973,7 @@ "hu": "Web-VNC", "xloc": [ "default.handlebars->47->1024", - "default.handlebars->47->3099", + "default.handlebars->47->3127", "default.handlebars->contextMenu->cxwebvnc" ] }, @@ -80779,7 +81001,7 @@ "zh-cht": "WebRDP", "hu": "WebRDP", "xloc": [ - "default.handlebars->47->3238" + "default.handlebars->47->3266" ] }, { @@ -80806,7 +81028,7 @@ "zh-cht": "網絡SSH", "hu": "WebSSH", "xloc": [ - "default.handlebars->47->3239" + "default.handlebars->47->3267" ] }, { @@ -80860,7 +81082,7 @@ "zh-cht": "網絡VNC", "hu": "WebVNC", "xloc": [ - "default.handlebars->47->3240" + "default.handlebars->47->3268" ] }, { @@ -80971,7 +81193,7 @@ "hu": "walesi", "xloc": [ "default-mobile.handlebars->11->296", - "default.handlebars->47->1944", + "default.handlebars->47->1972", "login2.handlebars->7->193" ] }, @@ -80983,8 +81205,8 @@ "pl": "Whatsapp", "de": "WhatsApp", "xloc": [ - "default.handlebars->47->1713", - "default.handlebars->47->2928" + "default.handlebars->47->1741", + "default.handlebars->47->2956" ] }, { @@ -81011,7 +81233,7 @@ "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "hu": "Ha engedélyezve van, a meghívókódokat bárki használhatja, hogy eszközöket csatlakoztasson ehhez az eszközcsoporthoz a következő nyilvános link segítségével:", "xloc": [ - "default.handlebars->47->2324" + "default.handlebars->47->2352" ] }, { @@ -81039,7 +81261,7 @@ "hu": "Ha engedélyezi, lehetőséget kap, hogy bejelentkezéskor a nagyobb biztonság érdekében 2 faktoros bejelentkezési jelszót kérjen az e-mail fiókjába.", "xloc": [ "default-mobile.handlebars->11->102", - "default.handlebars->47->1729" + "default.handlebars->47->1757" ] }, { @@ -81066,7 +81288,7 @@ "zh-cht": "選擇此策略時,此服務器不管理英特爾®AMT。 仍然可以通過手動激活和配置Intel AMT來使用它。", "hu": "Ha ezt a házirendet választja, az Intel® AMT-t ez a kiszolgáló nem kezeli. Az Intel AMT továbbra is használható manuális aktiválással és konfigurálással.", "xloc": [ - "default.handlebars->47->2204" + "default.handlebars->47->2232" ] }, { @@ -81117,7 +81339,7 @@ "zh-cht": "選擇此策略後,將禁用處於客戶端控制模式(CCM)的所有英特爾®AMT。 其他設備將清除CIRA,並且仍然可以手動進行管理。", "hu": "Ha ezt a házirendet választja, minden Intel® AMT in Client Control Mode (CCM) deaktiválva lesz. Más eszközökön a CIRA törlődik, és továbbra is manuálisan kezelhetők.", "xloc": [ - "default.handlebars->47->2205" + "default.handlebars->47->2233" ] }, { @@ -81144,7 +81366,7 @@ "zh-cht": "下次登入時將更改。", "hu": "A következő bejelentkezéskor módosul.", "xloc": [ - "default.handlebars->47->2860" + "default.handlebars->47->2888" ] }, { @@ -81174,8 +81396,8 @@ "default-mobile.handlebars->11->644", "default-mobile.handlebars->11->648", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->5", - "default.handlebars->47->1393", - "default.handlebars->47->1397", + "default.handlebars->47->1396", + "default.handlebars->47->1400", "sharing.handlebars->p11->deskarea0->deskarea4->3->deskkeys->3" ] }, @@ -81397,7 +81619,7 @@ "zh-cht": "Win32可執行檔案", "hu": "Win32 futtatható", "xloc": [ - "default.handlebars->47->1291" + "default.handlebars->47->1293" ] }, { @@ -81803,14 +82025,16 @@ { "en": "Windows ARM (64bit)", "nl": "Windows ARM (64bit)", + "pl": "Windows ARM (64bit)", "de": "Windows ARM (64bit)", "xloc": [ - "default.handlebars->47->1298" + "default.handlebars->47->1300" ] }, { "en": "Windows ARM 64bit console", "nl": "Windows ARM 64bit console", + "pl": "Konsola Windows ARM 64bit", "de": "Windows ARM (64bit) Konsole", "xloc": [ "default-mobile.handlebars->11->48", @@ -81820,6 +82044,7 @@ { "en": "Windows ARM 64bit service", "nl": "Windows ARM 64bit service", + "pl": "Usługa Windows ARM 64bit", "de": "Windows ARM (64bit) Dienst", "xloc": [ "default-mobile.handlebars->11->49", @@ -81829,6 +82054,7 @@ { "en": "Windows ARM-64 (.exe)", "nl": "Windows ARM-64 (.exe)", + "pl": "Windows ARM-64 (.exe)", "de": "Windows ARM (64bit) .exe", "xloc": [ "default.handlebars->47->617" @@ -81836,6 +82062,8 @@ }, { "en": "Windows AV", + "nl": "Windows AV", + "pl": "Windows AV", "xloc": [ "default.handlebars->47->342", "default.handlebars->47->373" @@ -81865,12 +82093,13 @@ "zh-cht": "Windows命令提示", "hu": "Windows parancssor (CMD)", "xloc": [ - "default.handlebars->47->1241", + "default.handlebars->47->1243", "default.handlebars->47->778" ] }, { "en": "Windows Defender", + "nl": "Windows Defender", "xloc": [ "default-mobile.handlebars->11->751", "default.handlebars->47->930" @@ -81878,6 +82107,7 @@ }, { "en": "Windows Firewall", + "nl": "Windows Firewall", "xloc": [ "default.handlebars->47->344", "default.handlebars->47->375" @@ -81907,7 +82137,7 @@ "zh-cht": "Windows MeshAgent", "hu": "Windows MeshAgent", "xloc": [ - "default.handlebars->47->2329", + "default.handlebars->47->2357", "default.handlebars->47->575" ] }, @@ -82018,7 +82248,7 @@ "zh-cht": "Windows PowerShell", "hu": "Windows PowerShell", "xloc": [ - "default.handlebars->47->1242", + "default.handlebars->47->1244", "default.handlebars->47->779" ] }, @@ -82052,6 +82282,7 @@ }, { "en": "Windows Update", + "nl": "Windows Update", "xloc": [ "default.handlebars->47->343", "default.handlebars->47->374" @@ -82116,7 +82347,7 @@ "nl": "Windows x86 (32bit)", "de": "Windows x86 (32bit)", "xloc": [ - "default.handlebars->47->1297" + "default.handlebars->47->1299" ] }, { @@ -82124,7 +82355,7 @@ "nl": "Windows x86 (64bit)", "de": "Windows x86 (64bit)", "xloc": [ - "default.handlebars->47->1296" + "default.handlebars->47->1298" ] }, { @@ -82167,7 +82398,7 @@ "zh-cht": "工作目錄", "hu": "Munkakönyvtár", "xloc": [ - "default.handlebars->47->1358" + "default.handlebars->47->1361" ] }, { @@ -82248,7 +82479,7 @@ "zh-cht": "换行:關", "hu": "Sortörés: KI", "xloc": [ - "default.handlebars->47->1536", + "default.handlebars->47->1544", "sharing.handlebars->11->84" ] }, @@ -82276,7 +82507,7 @@ "zh-cht": "换行:開", "hu": "Sortörés: BE", "xloc": [ - "default.handlebars->47->1535", + "default.handlebars->47->1543", "sharing.handlebars->11->83" ] }, @@ -82385,8 +82616,8 @@ "zh-cht": "XMPP", "hu": "XMPP", "xloc": [ - "default.handlebars->47->1703", - "default.handlebars->47->2918" + "default.handlebars->47->1731", + "default.handlebars->47->2946" ] }, { @@ -82441,10 +82672,22 @@ "hu": "xhosa", "xloc": [ "default-mobile.handlebars->11->297", - "default.handlebars->47->1945", + "default.handlebars->47->1973", "login2.handlebars->7->194" ] }, + { + "en": "Yes", + "nl": "Ja", + "xloc": [ + "default-mobile.handlebars->11->821", + "default-mobile.handlebars->11->824", + "default-mobile.handlebars->11->827", + "default.handlebars->47->1646", + "default.handlebars->47->1649", + "default.handlebars->47->1652" + ] + }, { "bs": "jidiš", "cs": "jidiš", @@ -82470,7 +82713,7 @@ "hu": "jiddis", "xloc": [ "default-mobile.handlebars->11->298", - "default.handlebars->47->1946", + "default.handlebars->47->1974", "login2.handlebars->7->195" ] }, @@ -82658,7 +82901,7 @@ "zh-cht": "YubiKey™OTP", "hu": "YubiKey™ OTP", "xloc": [ - "default.handlebars->47->1748" + "default.handlebars->47->1776" ] }, { @@ -82713,7 +82956,7 @@ "zh-cht": "郵編檔案名", "hu": "Zip fájlnév", "xloc": [ - "default.handlebars->47->1520", + "default.handlebars->47->1528", "sharing.handlebars->11->68" ] }, @@ -82807,8 +83050,8 @@ "nl": "Zulip", "pl": "Zulip", "xloc": [ - "default.handlebars->47->1707", - "default.handlebars->47->2922" + "default.handlebars->47->1735", + "default.handlebars->47->2950" ] }, { @@ -82836,7 +83079,7 @@ "hu": "zulu", "xloc": [ "default-mobile.handlebars->11->299", - "default.handlebars->47->1947", + "default.handlebars->47->1975", "login2.handlebars->7->196" ] }, @@ -83416,7 +83659,7 @@ "zh-cht": "\\\\'", "hu": "\\\\'", "xloc": [ - "default.handlebars->47->3289" + "default.handlebars->47->3317" ] }, { @@ -83688,7 +83931,7 @@ "ja": "バイト", "ko": "B", "nl": "bytes", - "pl": "bajtów", + "pl": "Bajty", "pt": "bytes", "pt-br": "bytes", "ru": "байт", @@ -83920,7 +84163,7 @@ "zh-cht": "config.json", "hu": "config.json", "xloc": [ - "default.handlebars->47->2066" + "default.handlebars->47->2094" ] }, { @@ -83947,8 +84190,8 @@ "zh-cht": "console.txt", "hu": "console.txt", "xloc": [ - "default-mobile.handlebars->11->851", - "default.handlebars->47->1677" + "default-mobile.handlebars->11->879", + "default.handlebars->47->1705" ] }, { @@ -83976,7 +84219,7 @@ "hu": "másolás", "xloc": [ "default-mobile.handlebars->11->368", - "default.handlebars->47->2423" + "default.handlebars->47->2451" ] }, { @@ -84219,8 +84462,8 @@ "zh-cht": "eventslist.csv", "hu": "eventslist.csv", "xloc": [ - "default.handlebars->47->2613", - "default.handlebars->47->2618" + "default.handlebars->47->2641", + "default.handlebars->47->2646" ] }, { @@ -84247,8 +84490,8 @@ "zh-cht": "eventslist.json", "hu": "eventslist.json", "xloc": [ - "default.handlebars->47->2615", - "default.handlebars->47->2619" + "default.handlebars->47->2643", + "default.handlebars->47->2647" ] }, { @@ -84330,8 +84573,8 @@ "zh-cht": "免費", "hu": "szabad", "xloc": [ - "default.handlebars->47->3225", - "default.handlebars->47->3228" + "default.handlebars->47->3253", + "default.handlebars->47->3256" ] }, { @@ -84543,8 +84786,8 @@ "hu": "https://api.callmebot.com/...", "pl": "https://api.callmebot.com/...", "xloc": [ - "default.handlebars->47->1722", - "default.handlebars->47->2937" + "default.handlebars->47->1750", + "default.handlebars->47->2965" ] }, { @@ -84607,8 +84850,8 @@ "en": "https://hooks.slack.com/...", "nl": "https://hooks.slack.com/...", "xloc": [ - "default.handlebars->47->1726", - "default.handlebars->47->2941" + "default.handlebars->47->1754", + "default.handlebars->47->2969" ] }, { @@ -84659,7 +84902,7 @@ "zh-cht": "ID、姓名、電子郵件、創建、lastlogin、組、authfactors、siteadmin、useradmin、鎖定", "hu": "id, name, email, creation, lastlogin, groups, authfactors, siteadmin, useradmin, locked", "xloc": [ - "default.handlebars->47->2687" + "default.handlebars->47->2715" ] }, { @@ -84900,7 +85143,7 @@ "zh-cht": "k max,默認為空白", "hu": " k max, alapértelmezetten üres", "xloc": [ - "default.handlebars->47->2715" + "default.handlebars->47->2743" ] }, { @@ -85133,7 +85376,7 @@ "zh-cht": "macOS ARM (64位)", "hu": "macOS ARM (64bit)", "xloc": [ - "default.handlebars->47->1302" + "default.handlebars->47->1304" ] }, { @@ -85160,7 +85403,7 @@ "zh-cht": "macOS x86 (64位)", "hu": "macOS x86 (64bit)", "xloc": [ - "default.handlebars->47->1301" + "default.handlebars->47->1303" ] }, { @@ -85243,7 +85486,7 @@ "zh-cht": "MeshAgent", "hu": "MeshAgent", "xloc": [ - "agentinvite.handlebars->3->12", + "agentinvite.handlebars->3->13", "default.handlebars->47->657" ] }, @@ -85272,7 +85515,7 @@ "hu": "mozgat", "xloc": [ "default-mobile.handlebars->11->369", - "default.handlebars->47->2424" + "default.handlebars->47->2452" ] }, { @@ -85354,8 +85597,8 @@ "hu": "ntfy", "pl": "ntfy", "xloc": [ - "default.handlebars->47->1706", - "default.handlebars->47->2921" + "default.handlebars->47->1734", + "default.handlebars->47->2949" ] }, { @@ -85520,9 +85763,6 @@ "player.handlebars->3->15" ] }, - { - "en": "p10showBitlockerKey('" - }, { "bs": "safari", "cs": "safari", @@ -85602,7 +85842,7 @@ "zh-cht": "servererrors.txt", "hu": "servererrors.txt", "xloc": [ - "default.handlebars->47->2063" + "default.handlebars->47->2091" ] }, { @@ -85629,15 +85869,15 @@ "zh-cht": "servertrace.csv", "hu": "servertrace.csv", "xloc": [ - "default.handlebars->47->3283" + "default.handlebars->47->3311" ] }, { "en": "service_", "nl": "service_", "xloc": [ - "default.handlebars->47->1442", - "default.handlebars->47->1445" + "default.handlebars->47->1445", + "default.handlebars->47->1448" ] }, { @@ -85748,7 +85988,7 @@ "zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "hu": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "xloc": [ - "default.handlebars->47->3257" + "default.handlebars->47->3285" ] }, { @@ -85775,7 +86015,7 @@ "zh-cht": "時間,來源,訊息", "hu": "time, source, message", "xloc": [ - "default.handlebars->47->3282" + "default.handlebars->47->3310" ] }, { @@ -85838,8 +86078,8 @@ "zh-cht": "總", "hu": "összesen", "xloc": [ - "default.handlebars->47->3226", - "default.handlebars->47->3229" + "default.handlebars->47->3254", + "default.handlebars->47->3257" ] }, { @@ -85977,8 +86217,8 @@ "zh-cht": "userlist.csv", "hu": "userlist.csv", "xloc": [ - "default.handlebars->47->2683", - "default.handlebars->47->2688" + "default.handlebars->47->2711", + "default.handlebars->47->2716" ] }, { @@ -86005,8 +86245,8 @@ "zh-cht": "userlist.json", "hu": "userlist.json", "xloc": [ - "default.handlebars->47->2685", - "default.handlebars->47->2689" + "default.handlebars->47->2713", + "default.handlebars->47->2717" ] }, { @@ -86017,8 +86257,8 @@ "pl": "nazwauzytkownika@domena.pl", "de": "benutzername@beispiel.de", "xloc": [ - "default.handlebars->47->1725", - "default.handlebars->47->2940" + "default.handlebars->47->1753", + "default.handlebars->47->2968" ] }, { @@ -86029,8 +86269,8 @@ "pl": "nazwauzytkownika@serwer.pl", "de": "benutzername@server.de", "xloc": [ - "default.handlebars->47->1721", - "default.handlebars->47->2936" + "default.handlebars->47->1749", + "default.handlebars->47->2964" ] }, { @@ -86057,7 +86297,7 @@ "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息", "hu": "utc, time, type, action, user, device, message", "xloc": [ - "default.handlebars->47->2617" + "default.handlebars->47->2645" ] }, { @@ -86130,6 +86370,7 @@ { "en": "x86 32bit version of the MeshAgent", "nl": "x86 32bit versie van de MeshAgent", + "pl": "MeshAgent wersja x86 32bit", "de": "x86 32bit Version des MeshAgent", "xloc": [ "default.handlebars->47->608" @@ -86138,6 +86379,7 @@ { "en": "x86 64bit version of the MeshAgent", "nl": "x86 64bit versie van de MeshAgent", + "pl": "MeshAgent wersja x86 64bit", "de": "x86 64bit Version des MeshAgent", "xloc": [ "default.handlebars->47->612" @@ -86167,8 +86409,10 @@ "zh-cht": "{0}", "hu": "{0}", "xloc": [ - "default-mobile.handlebars->11->834", - "default.handlebars->47->1648" + "default-mobile.handlebars->11->839", + "default-mobile.handlebars->11->845", + "default.handlebars->47->1664", + "default.handlebars->47->1670" ] }, { @@ -86318,8 +86562,8 @@ "zh-cht": "{0} Gb", "hu": "{0} Gb", "xloc": [ - "default.handlebars->47->2396", - "default.handlebars->47->2401" + "default.handlebars->47->2424", + "default.handlebars->47->2429" ] }, { @@ -86370,9 +86614,9 @@ "zh-cht": "{0} Kb", "hu": "{0} Kb", "xloc": [ - "default.handlebars->47->2394", - "default.handlebars->47->2399", - "default.handlebars->47->3021" + "default.handlebars->47->2422", + "default.handlebars->47->2427", + "default.handlebars->47->3049" ] }, { @@ -86423,12 +86667,12 @@ "zh-cht": "{0} Mb", "hu": "{0} Mb", "xloc": [ - "default-mobile.handlebars->11->828", - "default-mobile.handlebars->11->839", - "default.handlebars->47->1642", - "default.handlebars->47->1653", - "default.handlebars->47->2395", - "default.handlebars->47->2400" + "default-mobile.handlebars->11->833", + "default-mobile.handlebars->11->850", + "default.handlebars->47->1658", + "default.handlebars->47->1675", + "default.handlebars->47->2423", + "default.handlebars->47->2428" ] }, { @@ -86455,8 +86699,8 @@ "zh-cht": "{0} Mb,{1} Mhz", "hu": "{0} Mb, {1} Mhz", "xloc": [ - "default-mobile.handlebars->11->826", - "default.handlebars->47->1640" + "default-mobile.handlebars->11->831", + "default.handlebars->47->1656" ] }, { @@ -86507,7 +86751,7 @@ "zh-cht": "{0}個活躍節", "hu": "{0} actív munkamenet", "xloc": [ - "default.handlebars->47->2909" + "default.handlebars->47->2937" ] }, { @@ -86534,8 +86778,8 @@ "zh-cht": "{0} b", "hu": "{0} b", "xloc": [ - "default.handlebars->47->2393", - "default.handlebars->47->2398" + "default.handlebars->47->2421", + "default.handlebars->47->2426" ] }, { @@ -86563,8 +86807,8 @@ "hu": "{0} bytes", "xloc": [ "default-mobile.handlebars->11->357", - "default.handlebars->47->2409", - "default.handlebars->47->3042", + "default.handlebars->47->2437", + "default.handlebars->47->3070", "download.handlebars->3->2", "download2.handlebars->5->2", "sharing.handlebars->11->97" @@ -86594,7 +86838,7 @@ "zh-cht": "剩餘{0}個字節", "hu": "{0} byte maradt", "xloc": [ - "default.handlebars->47->2388" + "default.handlebars->47->2416" ] }, { @@ -86645,7 +86889,7 @@ "zh-cht": "{0}個連接", "hu": "{0} kapcsolat", "xloc": [ - "default.handlebars->47->1363", + "default.handlebars->47->1366", "sharing.handlebars->11->16" ] }, @@ -86673,7 +86917,7 @@ "zh-cht": "{0} 從 {1} 到 {2}。", "hu": "{0} {1} és {2} között.", "xloc": [ - "default.handlebars->47->1259" + "default.handlebars->47->1261" ] }, { @@ -86700,7 +86944,7 @@ "zh-cht": "剩餘{0} GB", "hu": "{0} gigabyte maradt", "xloc": [ - "default.handlebars->47->2391" + "default.handlebars->47->2419" ] }, { @@ -86727,7 +86971,7 @@ "zh-cht": "{0}個群組", "hu": "{0} csoport", "xloc": [ - "default.handlebars->47->2865" + "default.handlebars->47->2893" ] }, { @@ -86805,7 +87049,7 @@ "zh-cht": "剩餘{0}千字節", "hu": "{0} kilobyte maradt", "xloc": [ - "default.handlebars->47->2389" + "default.handlebars->47->2417" ] }, { @@ -86861,7 +87105,7 @@ "zh-cht": "剩餘{0}兆字節", "hu": "{0} megabyte maradt", "xloc": [ - "default.handlebars->47->2390" + "default.handlebars->47->2418" ] }, { @@ -86993,7 +87237,7 @@ "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "hu": "{0} további felhasználó nem jelenik meg, használja a keresőmezőt a felhasználók kereséséhez...", "xloc": [ - "default.handlebars->47->2627" + "default.handlebars->47->2655" ] }, { @@ -87450,7 +87694,7 @@ "default-mobile.handlebars->11->426", "default-mobile.handlebars->11->430", "default-mobile.handlebars->11->434", - "default.handlebars->47->2631", + "default.handlebars->47->2659", "default.handlebars->47->445", "default.handlebars->47->448", "default.handlebars->47->452", @@ -87723,8 +87967,10 @@ "zh-cht": "{0}, {1}", "hu": "{0}, {1}", "xloc": [ - "default-mobile.handlebars->11->832", - "default.handlebars->47->1646" + "default-mobile.handlebars->11->837", + "default-mobile.handlebars->11->843", + "default.handlebars->47->1662", + "default.handlebars->47->1668" ] }, { @@ -87752,7 +87998,7 @@ "hu": "{0}, {1} kezdve {2} perc", "xloc": [ "default.handlebars->47->1071", - "default.handlebars->47->2155" + "default.handlebars->47->2183" ] }, { @@ -87780,7 +88026,7 @@ "hu": "{0}, {1} kezdve {2} perc", "xloc": [ "default.handlebars->47->1072", - "default.handlebars->47->2156" + "default.handlebars->47->2184" ] }, { @@ -87808,7 +88054,7 @@ "hu": "{0}, {1} - {2}", "xloc": [ "default.handlebars->47->1070", - "default.handlebars->47->2154" + "default.handlebars->47->2182" ] }, { @@ -87889,7 +88135,7 @@ "zh-cht": "{0}k在1檔案內。最多{1}k", "hu": "{0}k 1 fájlban. {1}k maximum", "xloc": [ - "default.handlebars->47->2403" + "default.handlebars->47->2431" ] }, { @@ -87916,7 +88162,7 @@ "zh-cht": "{1}k在{0}個檔案中。最多{2}k", "hu": "{0}k {1} fájlban. maximum {2}k", "xloc": [ - "default.handlebars->47->2402" + "default.handlebars->47->2430" ] }, { diff --git a/views/agentinvite.handlebars b/views/agentinvite.handlebars index 7a0fb1513c..f3b2568af5 100644 --- a/views/agentinvite.handlebars +++ b/views/agentinvite.handlebars @@ -81,8 +81,8 @@
- - + + @@ -253,7 +253,7 @@ } function linuxBinarySetup() { - var x = '

Linux Binary

', moreoptions = ''; + var x = '

' + "Linux / BSD / macOS Binary Installer" + '

', moreoptions = ''; var opts = ''; @@ -261,8 +261,8 @@ var servername = window.location.hostname; if ((servername.indexOf('.') == -1)) { servername = window.location.hostname; } // If the server name is not set or it's in LAN-only mode, use the URL hostname as server name. var portStr = (serverPort == 443) ? '' : (':' + serverPort); - var binaryInstallAgentsOrder = [ 6, 5, 10005, 25, 26, 28, 30, 32, 36, 37, 40, 41 ]; - var binaryInstallAgents = { 5 : 'Linux x86-32', 6 : 'Linux x86-64', 10005 : 'Apple OSX Universal', 25 : 'Linux ARM-HF, Rasberry Pi', 26 : 'Linux ARM64-HF', 28: 'Linux MIPS24KC (OpenWRT)', 30 : 'FreeBSD x86-64', 32: 'Linux ARM 64 bit (glibc/2.24 NOKVM)', 36: 'OpenWRT x86-64', 37: 'OpenBSD x86-64', 40: 'Linux MIPSEL24KC (OpenWRT)', 41: 'ARMADA/CORTEX-A53/MUSL (OpenWRT)' }; + var binaryInstallAgentsOrder = [ 6, 5, 10005, 25, 26, 28, 30, 32, 36, 37, 40, 41, 16, 29 ]; + var binaryInstallAgents = { 6 : 'Linux x86-64', 5 : 'Linux x86-32', 10005 : 'Apple OSX Universal', 25 : 'Linux ARM-HF, Rasberry Pi', 26 : 'Linux ARM64-HF', 28: 'Linux MIPS24KC (OpenWRT)', 30 : 'FreeBSD x86-64', 32: 'Linux ARM 64 bit (glibc/2.24 NOKVM)', 36: 'OpenWRT x86-64', 37: 'OpenBSD x86-64', 40: 'Linux MIPSEL24KC (OpenWRT)', 41: 'ARMADA/CORTEX-A53/MUSL (OpenWRT)', 16: 'Apple macOS x86-64', 29: 'Apple macOS ARM-64' }; for (var i in binaryInstallAgentsOrder) { moreoptions += '' } x += '
'; x += addHtmlValue("System Type", ''); diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars index 976ddd21cc..916366bd8f 100644 --- a/views/default-mobile.handlebars +++ b/views/default-mobile.handlebars @@ -5917,21 +5917,6 @@ x += addDetailItem("Antivirus", y.join('
')); } - // Volumes and Bitlocker - if (node.volumes){ - var bitlocker = []; - for (var i in node.volumes) { - if (typeof node.volumes[i].protectionStatus !== 'undefined' && node.volumes[i].protectionStatus == 'On'){ - bitlocker.push(i + ' - ' + node.volumes[i].volumeStatus + ''); - }else if (typeof node.volumes[i].protectionStatus !== 'undefined'){ - bitlocker.push(i + ' - ' + node.volumes[i].volumeStatus + ''); - } - } - if(bitlocker.length > 0){ - x += addDetailItem("BitLocker", bitlocker.join('
')); - } - } - if (x != '') { sections.push({ name: "Operating System", html: x, img: 'software' }); } } @@ -6073,9 +6058,9 @@ if (tpm.SpecVersion) { x += addDetailItem("SpecVersion", parseFloat(EscapeHtml(tpm.SpecVersion)).toFixed(1), s); } if (tpm.ManufacturerId) { x += addDetailItem("ManufacturerId", EscapeHtml(tpm.ManufacturerId), s); } if (tpm.ManufacturerVersion) { x += addDetailItem("ManufacturerVersion", EscapeHtml(tpm.ManufacturerVersion), s); } - if (tpm.IsActivated != null) { x += addDetailItem("IsActivated", EscapeHtml(tpm.IsActivated), s); } - if (tpm.IsEnabled != null) { x += addDetailItem("IsEnabled", EscapeHtml(tpm.IsEnabled), s); } - if (tpm.IsOwned != null) { x += addDetailItem("IsOwned", EscapeHtml(tpm.IsOwned), s); } + if (tpm.IsActivated != null) { x += addDetailItem("IsActivated", (tpm.IsActivated ? "Yes" : "No"), s); } + if (tpm.IsEnabled != null) { x += addDetailItem("IsEnabled", (tpm.IsEnabled ? "Yes" : "No"), s); } + if (tpm.IsOwned != null) { x += addDetailItem("IsOwned", (tpm.IsOwned ? "Yes" : "No"), s); } if (x != '') { sections.push({ name: "TPM", html: x, img: 'tpm'}); } } @@ -6124,6 +6109,26 @@ } } + if (hardware.darwin) { + if (hardware.darwin.memory && (hardware.darwin.memory.length > 0)) { + var x = ''; + x += ''; + for (var i in hardware.darwin.memory) { + var m = hardware.darwin.memory[i]; + if(m.Size && (m.Size == 'No Module Installed')) continue; + x += '
'; + x += '
' + EscapeHtml((m.DeviceLocator ? m.DeviceLocator : 'Unknown')) + '
'; + if (m.Size && m.Speed) { x += addDetailItem("Capacity / Speed", format("{0}, {1}", m.Size, m.Speed), s); } + else if (m.Size) { x += addDetailItem("Capacity", format("{0}", (m.Size)), s); } + console.log(m.Manufacturer); + if (m.PartNumber) { x += addDetailItem("Part Number", EscapeHtml((m.Manufacturer && m.Manufacturer != '')?(m.Manufacturer + ', '):'') + EscapeHtml(m.PartNumber), s); } + x += '
'; + } + x += '
'; + if (x != '') { sections.push({ name: "Memory", html: x, img: 'ram'}); } + } + } + // Storage if (hardware.identifiers && ident.storage_devices) { var x = ''; @@ -6154,6 +6159,45 @@ if (x != '') { sections.push({ name: "Storage", html: x, img: 'storage' }); } } + // Volumes and Bitlocker + if (hardware.windows && hardware.windows.volumes) { + var x = ''; + for (var i in hardware.windows.volumes) { + var m = hardware.windows.volumes[i]; + x += '
'; + x += '
' + i + ':' + (((m.name == null) || (m.name == '')) ? '' : (' - ' + EscapeHtml(m.name))) + '
'; + if (m.size) { + var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB']; + var j = parseInt(Math.floor(Math.log(Math.abs(m.size)) / Math.log(1024)), 10); + var fsize = (j === 0 ? `${m.size} ${sizes[j]}` : `${(m.size / (1024 ** j)).toFixed(2)} ${sizes[j]}`); + x += addDetailItem("Capacity", EscapeHtml(fsize), s); + } + if (m.sizeremaining) { + var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB']; + var j = parseInt(Math.floor(Math.log(Math.abs(m.sizeremaining)) / Math.log(1024)), 10); + var fsize = (j === 0 ? `${m.sizeremaining} ${sizes[j]}` : `${(m.sizeremaining / (1024 ** j)).toFixed(2)} ${sizes[j]}`); + x += addDetailItem("Capacity Remaining", EscapeHtml(fsize), s); + } + if (m.type) { + var type = (m.removable == true ? "Removable" : (m.cdrom == true ? "CD-ROM" : '')); + x += addDetailItem("File System", (type != '' ? (type + ' / ') : '') + (m.type == 'Unknown' ? "Unknown" : EscapeHtml(m.type)), s); + } + + if (m.protectionStatus || m.volumeStatus) { + var bitlockerState = []; + if (m.protectionStatus) bitlockerState.push("Enabled"); + if (m.volumeStatus && m.volumeStatus == 'FullyDecrypted') bitlockerState.push("Fully Decrypted"); + if (m.volumeStatus && m.volumeStatus == 'EncryptionInProgress') bitlockerState.push("Encryption In Progress"); + if (m.volumeStatus && m.volumeStatus == 'FullyEncrypted') bitlockerState.push("Fully Encrypted"); + bitlockerState = bitlockerState.join(' - '); + if (m.recoveryPassword) { bitlockerState += addKeyLink('', 'deviceDetailsShowBitlockerInfo(\"' + encodeURIComponentEx(i) + '\",\"' + encodeURIComponentEx(m.identifier) + '\",\"' + encodeURIComponentEx(m.recoveryPassword) + '\")'); } + x += addDetailItem("BitLocker", bitlockerState, s); + } + x += '
'; + } + if (x != '') { sections.push({ name: "Storage Volumes", html: '' + x + '
', img: 'storage'}); } + } + // Render the sections var x = ''; for (var i in sections) { @@ -6174,6 +6218,13 @@ } } + function deviceDetailsShowBitlockerInfo(drive, identifier, password) { + if (xxdialogMode) return false; + var x = '

' + "Identifier" + '

' + (identifier ? decodeURIComponent(identifier) : "Unknown") + '

'; + x += '

' + "Recovery Password" + '

' + (password ? decodeURIComponent(password) : "Unknown") + '

'; + setDialogMode(2, decodeURIComponent(drive) + ': ' + "BitLocker Information", 1, null, x, ''); + } + // // CONSOLE @@ -7116,6 +7167,8 @@ function addHtmlValue4(t, v) { return '
' + t + '' + v + '
'; } function addLink(x, f) { return '♦ ' + x + ''; } function addLinkConditional(x, f, c) { if (c) return addLink(x, f); return x; } + function addKeyLink(x, f) { return '' + x + ' '; } + function addKeyLinkConditional(x, f, c) { if (c) return addKeyLink(x, f); return x; } function passwordcheck(p) { var re = /(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&*()]).{8,}/; return re.test(p); } function getFileSizeStr(size) { if (typeof size != 'number') { size = 0; } if (size == 1) return "1 byte"; return format('{0} bytes', size); } function joinPaths() { var x = []; for (var i in arguments) { var w = arguments[i]; if ((w != null) && (w != '')) { while (w.endsWith('/') || w.endsWith('\\')) { w = w.substring(0, w.length - 1); } while (w.startsWith('/') || w.startsWith('\\')) { w = w.substring(1); } x.push(w); } } return x.join('/'); } diff --git a/views/default.handlebars b/views/default.handlebars index c9492a66b9..22b8286418 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -684,6 +684,7 @@ +
@@ -868,6 +869,7 @@ + @@ -2329,7 +2331,23 @@ function setSessionActivity() { sessionActivity = Date.now(); QH('idleTimeoutNotify', ''); } function checkIdleSessionTimeout() { var delta = (Date.now() - sessionActivity); - if (delta > serverinfo.timeout) { window.location.href = 'logout'; } else { + if (delta > serverinfo.timeout) { + if (desktop != null) { // Disconnect remote desktop + desktop.Stop(); + webRtcDesktopReset(); + desktopNode = desktop = null; + if (pluginHandler != null) { pluginHandler.callHook('onDesktopDisconnect'); } + } + if (terminal != null) { // Disconnect terminal + terminal.Stop(); + terminal = null; + } + if (files != null) { // Disconnect files + files.Stop(); + files = null; + } + window.location.href = 'logout'; + } else { var ds = Math.round((serverinfo.timeout - delta) / 1000); if (ds <= 60) { QH('idleTimeoutNotify', '
' + format((ds == 1)?"1 second until disconnect":"{0} seconds until disconnect", ds)); @@ -5435,8 +5453,8 @@ if (serverinfo.https == true) { portStr = (serverinfo.port == 443)?'':(':' + serverinfo.port); } else { portStr = (serverinfo.port == 80) ? '' : (':' + serverinfo.port); } // Add Linux/macOS binary installer option - var binaryInstallAgentsOrder = [ 6, 5, 10005, 25, 26, 28, 30, 32, 36, 37, 40, 41 ]; - var binaryInstallAgents = { 5 : 'Linux x86-32', 6 : 'Linux x86-64', 10005 : 'Apple OSX Universal', 25 : 'Linux ARM-HF, Rasberry Pi', 26 : 'Linux ARM64-HF', 28: 'Linux MIPS24KC (OpenWRT)', 30 : 'FreeBSD x86-64', 32: 'Linux ARM 64 bit (glibc/2.24 NOKVM)', 36: 'OpenWRT x86-64', 37: 'OpenBSD x86-64', 40: 'Linux MIPSEL24KC (OpenWRT)', 41: 'ARMADA/CORTEX-A53/MUSL (OpenWRT)' }; + var binaryInstallAgentsOrder = [ 6, 5, 10005, 25, 26, 28, 30, 32, 36, 37, 40, 41, 16, 29 ]; + var binaryInstallAgents = { 6 : 'Linux x86-64', 5 : 'Linux x86-32', 10005 : 'Apple OSX Universal', 25 : 'Linux ARM-HF, Rasberry Pi', 26 : 'Linux ARM64-HF', 28: 'Linux MIPS24KC (OpenWRT)', 30 : 'FreeBSD x86-64', 32: 'Linux ARM 64 bit (glibc/2.24 NOKVM)', 36: 'OpenWRT x86-64', 37: 'OpenBSD x86-64', 40: 'Linux MIPSEL24KC (OpenWRT)', 41: 'ARMADA/CORTEX-A53/MUSL (OpenWRT)', 16: 'Apple macOS x86-64', 29: 'Apple macOS ARM-64' }; for (var i in binaryInstallAgentsOrder) { moreoptions += '' } x += '
'; x += addHtmlValue("System Type", ''); @@ -7538,9 +7556,9 @@ x += ''; if ((node.mtype == 2) && (connectivity & 1) && ((meshrights & 131072) != 0)) { x += ''; } if (node.mtype != 4) { - if ((meshrights & 8) && ((connectivity & 1) || ((node.pmt == 1) && ((features2 & 2) != 0)))) { x += ''; } + if ((meshrights & 8) && (connectivity & 1) && ((meshrights & 16384) != 0) || ((node.pmt == 1) && ((features2 & 2) != 0))) { x += ''; } //if ((connectivity & 1) && (meshrights & 8) && (node.agent.id < 5)) { x += ''; } - if ((meshrights & 8) && (connectivity & 1) || ((node.pmt == 1) && ((features2 & 2) != 0))) { x += ''; } + if ((meshrights & 8) && (connectivity & 1) && ((meshrights & 16384) != 0) || ((node.pmt == 1) && ((features2 & 2) != 0))) { x += ''; } if ((serverinfo != null) && (serverinfo.altmessenging != null) && (meshrights & 8) && (connectivity & 1)) { for (var i in serverinfo.altmessenging) { var am = serverinfo.altmessenging[i]; @@ -8110,7 +8128,7 @@ function deviceMessageFunction() { if (xxdialogMode) return; - var x = '
Display a message box on the remote device.
'; + var x = '
' + "Display a message box on the remote device" + '
'; x += ''; x += ''); x += addHtmlValue("Duration", ''); x += '
'; - if (currentNode.agent.caps & 1) { x += '
' + addHtmlValue("User Consent", '') + '
'; } + if (currentNode.agent.caps & 1) { x += '
' + addHtmlValue("User Consent", '') + '
'; } x += '
' + addHtmlValue("Port", '') + '
'; x += '
' + addHtmlValue("Port", '') + '
'; setDialogMode(2, "Share Device", 3, showShareDeviceEx, x); @@ -8291,14 +8309,17 @@ if (q & 1) { consent |= 0x0002; // Terminal notify if ((currentNode.agent.caps & 1) && (Q('d2userConsent').value == 1)) { consent |= 0x0010; } // Terminal prompt for user consent + if ((currentNode.agent.caps & 1) && (Q('d2userConsent').value == 2)) { consent = 0; } // Terminal with no user consent } if (q & 2) { consent |= 0x0041; // Desktop connection toolbar + Desktop notify if ((currentNode.agent.caps & 1) && (Q('d2userConsent').value == 1)) { consent |= 0x0008; } // Desktop prompt for user consent + if ((currentNode.agent.caps & 1) && (Q('d2userConsent').value == 2)) { consent = 0; } // Desktop with no user consent } if (q & 4) { consent |= 0x0004; // Files notify if ((currentNode.agent.caps & 1) && (Q('d2userConsent').value == 1)) { consent |= 0x0020; } // Files prompt for user consent + if ((currentNode.agent.caps & 1) && (Q('d2userConsent').value == 2)) { consent = 0; } // Files prompt for user consent } if (Q('d2timeRange').value == 0) { @@ -8989,7 +9010,11 @@ var online = ((currentNode.conn & 1) != 0); // If Agent (1) connected, enable remote desktop QE('connectbutton1', online); QE('connectbutton1r', online || (currentNode.mtype == 3)); - Q('connectbutton1r').value = 'RDP Connect' + ((currentNode.rdpport && currentNode.rdpport != 3389) ? ' ('+currentNode.rdpport + ')' : ''); + if (currentNode.rdpport && currentNode.rdpport != 3389) { + QH('desktopCustomUpperRight', '' + format("RDP Port {0}", (currentNode.rdpport?currentNode.rdpport:3389)) + ''); + } else { + QH('desktopCustomUpperRight', ''); + } var hwonline = ((currentNode.conn & 6) != 0); // If CIRA (2) or AMT (4) connected, enable hardware terminal QE('connectbutton1h', hwonline); QV('deskFocusBtn', (desktop != null) && (desktop.contype == 2) && (deskState != 0) && (desktopsettings.showfocus)); @@ -9024,9 +9049,9 @@ QV('DeskRunButton', ((rights & 131072) != 0) && online); QV('DeskSaveImageButton', (deskState == 3) && (Q('Desk')['toBlob'] != null) && ((features2 & 0x400) == 0)); QV('DeskRecordButton', (deskState == 3) && (Q('Desk')['toBlob'] != null) && (desktop.m.StartRecording != null) && ((features2 & 0x400) == 0)); - QV('DeskChatButton', ((rights & 16384) != 0) && (browserfullscreen == false) && (inputAllowed) && (currentNode.agent) && online); - QV('DeskNotifyButton', ((rights & 16384) != 0) && (browserfullscreen == false) && (currentNode.agent) && (currentNode.agent.id < 5) && (inputAllowed) && (currentNode.agent) && online); - QV('DeskLockButton', ((rights & 16384) != 0) && (browserfullscreen == false) && (currentNode.agent) && (currentNode.agent.id < 5) && (inputAllowed) && (currentNode.agent) && (deskState == 3)); + QV('DeskChatButton', ((rights & 16384) != 0) && (browserfullscreen == false) && (currentNode.agent) && online); + QV('DeskNotifyButton', ((rights & 16384) != 0) && (browserfullscreen == false) && (currentNode.agent) && online); + QV('DeskLockButton', ((rights & 16384) != 0) && (browserfullscreen == false) && (currentNode.agent) && (currentNode.agent.id < 5) && (inputAllowed) && (deskState == 3)); QV('DeskToolsButton', (currentNode.agent) && online); QE('DeskToolsButton', inputAllowed); QV('DeskOpenWebButton', (browserfullscreen == false) && (inputAllowed) && (currentNode.agent) && online); @@ -10938,10 +10963,16 @@ setDialogMode(0); // Close the dialog box } else if ((data.msg == 'zipping') && ((!xxdialogMode) || (xxdialogTag == 'fileMsgDialog'))) { // Show the dialog box message - setDialogMode(2, "File Operation", 10, p13fileOperationDialogEx, '
' + "Compressing files..." + '
', 'fileMsgDialog'); + setDialogMode(2, "File Operation", 10, p13fileOperationDialogEx, '
' + "Compressing files..." + '
', 'fileMsgDialog'); + } else if ((data.msg == 'unzipping') && ((!xxdialogMode) || (xxdialogTag == 'fileMsgDialog'))) { + // Show the dialog box message + setDialogMode(2, "File Operation", 10, null, '
' + "Unzipping file..." + '
', 'fileMsgDialog'); + } else if ((data.msg == 'unziperror') && ((!xxdialogMode) || (xxdialogTag == 'fileMsgDialog'))) { + // Show the dialog box message + setDialogMode(2, "File Operation", 10, null, '
' + "Unzipping Error" + '

' + EscapeHtml(data.error), 'fileMsgDialog'); } else if ((data.msg == 'zippingFile') && ((!xxdialogMode) || (xxdialogTag == 'fileMsgDialog'))) { // Show the dialog box message - setDialogMode(2, "File Operation", 10, p13fileOperationDialogEx, '
' + EscapeHtml(data.file) + '

', 'fileMsgDialog'); + setDialogMode(2, "File Operation", 10, p13fileOperationDialogEx, '
' + EscapeHtml(data.file) + '

', 'fileMsgDialog'); } return; } @@ -11181,6 +11212,7 @@ QE('p13CutButton', false); QE('p13CopyButton', false); QE('p13ZipButton', false); + QE('p13UnZipButton', false); QE('p13PasteButton', false); QE('p13GoToFolderButton', false); QE('p13DownloadButton', false); @@ -11199,6 +11231,7 @@ QE('p13CutButton', advancedFeatures && (cc > 0) && (cc == sfc) && ((p13filetreelocation.length > 0) || (winAgent == false))); QE('p13CopyButton', advancedFeatures && (cc > 0) && (cc == sfc) && ((p13filetreelocation.length > 0) || (winAgent == false))); QE('p13ZipButton', advancedFeatures && (cc > 0) && ((p13filetreelocation.length > 0) || (winAgent == false))); + QE('p13UnzipButton', advancedFeatures && (cc == 1) && (sfc == 1) && ((p13filetreelocation.length > 0) || (winAgent == false)) && p13getFileSelAllowedExt('.zip')); QE('p13PasteButton', advancedFeatures && ((p13filetreelocation.length > 0) || (winAgent == false)) && ((p13clipboard != null) && (p13clipboard.length > 0))); QE('p13GoToFolderButton', true); QE('p13DownloadButton', advancedFeatures && (cc > 0) && (cc == sfc) && ((p13filetreelocation.length > 0) || (winAgent == false))); @@ -11214,12 +11247,14 @@ QV('p13CutButton', filesNode.mtype != 3); QV('p13CopyButton', filesNode.mtype != 3); QV('p13ZipButton', filesNode.mtype != 3); + QV('p13UnzipButton', filesNode.mtype != 3); QV('p13PasteButton', filesNode.mtype != 3); } function p13getFileSelCount(includeDirs) { var cc = 0; var checkboxes = document.getElementsByName('fd'); for (var i = 0; i < checkboxes.length; i++) { if ((checkboxes[i].checked) && ((includeDirs != false) || (checkboxes[i].attributes.file.value == '3'))) cc++; } return cc; } function p13getFileSelDirCount() { var cc = 0, checkboxes = document.getElementsByName('fd'); for (var i = 0; i < checkboxes.length; i++) { if ((checkboxes[i].checked) && (checkboxes[i].attributes.file.value == '999')) cc++; } return cc; } function p13getFileCount() { var cc = 0; var checkboxes = document.getElementsByName('fd'); return checkboxes.length; } + function p13getFileSelAllowedExt(ext) { var checkboxes = document.getElementsByName('fd'); for (var i = 0; i < checkboxes.length; i++) { if ((checkboxes[i].checked) && (!p13filetree.dir[checkboxes[i].value].n.endsWith(ext))) return false; } return true; } function p13selectallfile() { var nv = (p13getFileSelCount() == 0), checkboxes = document.getElementsByName('fd'); for (var i = 0; i < checkboxes.length; i++) { checkboxes[i].checked = nv; } p13setActions(); } function p13createfolder() { setDialogMode(2, "New Folder", 3, p13createfolderEx, ''); focusTextBox('p13renameinput'); p13fileNameCheck(); } function p13createfolderEx() { files.sendText({ action: 'mkdir', reqid: 1, path: p13filetreelocation.join('/') + '/' + Q('p13renameinput').value }); p13folderup(999); } @@ -11243,6 +11278,24 @@ } } + function p13unzipFile() { + var dest, input, checkboxes = document.getElementsByName('fd'); + for (var i = 0; i < checkboxes.length; i++) { + if (checkboxes[i].checked) { + var slash = isWindowsNode(currentNode) ? '\\' : '/'; + dest = (isWindowsNode(currentNode) ? '' : '/') + p13filetreelocation.join(slash) + slash + p13filetree.dir[checkboxes[i].value].n.split('.zip')[0] + slash; + input = (isWindowsNode(currentNode) ? '' : '/') + p13filetreelocation.join(slash) + slash + p13filetree.dir[checkboxes[i].value].n; + } + } + setDialogMode(2, "Unzip To Folder", 3, p13unzipFileEx, '', { action: 'unzip', input: input }); + focusTextBox('p13unzipfolderinput'); + } + + function p13unzipFileEx(a, tag) { + tag.dest = Q('p13unzipfolderinput').value; + files.sendText(tag); + } + function p13zipFiles() { var inputFiles = [], checkboxes = document.getElementsByName('fd'); for (var i = 0; i < checkboxes.length; i++) { if (checkboxes[i].checked) { inputFiles.push(p13filetree.dir[checkboxes[i].value].n); } } @@ -11698,8 +11751,8 @@ data: { labels: [], datasets: [ - { label: 'CPU', backgroundColor: 'rgba(134, 16, 158, .5)', borderColor: 'rgb(134, 16, 158)', data: [], fill: true }, - { label: 'Memory', backgroundColor: 'rgba(255, 99, 132, .5)', borderColor: 'rgb(255, 99, 132)', data: [], fill: true } + { label: "CPU", backgroundColor: 'rgba(134, 16, 158, .5)', borderColor: 'rgb(134, 16, 158)', data: [], fill: true }, + { label: "Memory", backgroundColor: 'rgba(255, 99, 132, .5)', borderColor: 'rgb(255, 99, 132)', data: [], fill: true } ] }, options: { events: ['click'], @@ -12019,9 +12072,9 @@ if (tpm.SpecVersion) { x += addDetailItem("SpecVersion", parseFloat(EscapeHtml(tpm.SpecVersion)).toFixed(1), s); } if (tpm.ManufacturerId) { x += addDetailItem("ManufacturerId", EscapeHtml(tpm.ManufacturerId), s); } if (tpm.ManufacturerVersion) { x += addDetailItem("ManufacturerVersion", EscapeHtml(tpm.ManufacturerVersion), s); } - if (tpm.IsActivated != null) { x += addDetailItem("IsActivated", EscapeHtml(tpm.IsActivated), s); } - if (tpm.IsEnabled != null) { x += addDetailItem("IsEnabled", EscapeHtml(tpm.IsEnabled), s); } - if (tpm.IsOwned != null) { x += addDetailItem("IsOwned", EscapeHtml(tpm.IsOwned), s); } + if (tpm.IsActivated != null) { x += addDetailItem("IsActivated", (tpm.IsActivated ? "Yes" : "No"), s); } + if (tpm.IsEnabled != null) { x += addDetailItem("IsEnabled", (tpm.IsEnabled ? "Yes" : "No"), s); } + if (tpm.IsOwned != null) { x += addDetailItem("IsOwned", (tpm.IsOwned ? "Yes" : "No"), s); } if (x != '') { sections.push({ name: "TPM", html: x, img: 'tpm64.png'}); } } @@ -12070,6 +12123,25 @@ } } + if (hardware.darwin) { + if (hardware.darwin.memory && (hardware.darwin.memory.length > 0)) { + var x = ''; + x += ''; + for (var i in hardware.darwin.memory) { + var m = hardware.darwin.memory[i]; + if(m.Size && (m.Size == 'No Module Installed')) continue; + x += '
'; + x += '
' + EscapeHtml((m.DeviceLocator ? m.DeviceLocator : 'Unknown')) + '
'; + if (m.Size && m.Speed) { x += addDetailItem("Capacity / Speed", format("{0}, {1}", m.Size, m.Speed), s); } + else if (m.Size) { x += addDetailItem("Capacity", format("{0}", (m.Size)), s); } + if (m.PartNumber) { x += addDetailItem("Part Number", EscapeHtml((m.Manufacturer && m.Manufacturer != '')?(m.Manufacturer + ', '):'') + EscapeHtml(m.PartNumber), s); } + x += '
'; + } + x += '
'; + if (x != '') { sections.push({ name: "Memory", html: x, img: 'ram64.png'}); } + } + } + // Storage if (hardware.identifiers && hardware.identifiers.storage_devices) { var x = ''; @@ -12113,12 +12185,23 @@ var fsize = (j === 0 ? `${m.size} ${sizes[j]}` : `${(m.size / (1024 ** j)).toFixed(2)} ${sizes[j]}`); x += addDetailItem("Capacity", EscapeHtml(fsize), s); } - if (m.type) { x += addDetailItem("File System", (m.removable == true ? ("Removable" + ' / ') : '') + EscapeHtml(m.type), s); } + if (m.sizeremaining) { + var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB']; + var j = parseInt(Math.floor(Math.log(Math.abs(m.sizeremaining)) / Math.log(1024)), 10); + var fsize = (j === 0 ? `${m.sizeremaining} ${sizes[j]}` : `${(m.sizeremaining / (1024 ** j)).toFixed(2)} ${sizes[j]}`); + x += addDetailItem("Capacity Remaining", EscapeHtml(fsize), s); + } + if (m.type) { + var type = (m.removable == true ? "Removable" : (m.cdrom == true ? "CD-ROM" : '')); + x += addDetailItem("File System", (type != '' ? (type + ' / ') : '') + (m.type == 'Unknown' ? "Unknown" : EscapeHtml(m.type)), s); + } if (m.protectionStatus || m.volumeStatus) { var bitlockerState = []; if (m.protectionStatus) bitlockerState.push("Enabled"); - if (m.volumeStatus) bitlockerState.push(EscapeHtml(m.volumeStatus)); + if (m.volumeStatus && m.volumeStatus == 'FullyDecrypted') bitlockerState.push("Fully Decrypted"); + if (m.volumeStatus && m.volumeStatus == 'EncryptionInProgress') bitlockerState.push("Encryption In Progress"); + if (m.volumeStatus && m.volumeStatus == 'FullyEncrypted') bitlockerState.push("Fully Encrypted"); bitlockerState = bitlockerState.join(' - '); if (m.recoveryPassword) { bitlockerState += addKeyLink('', 'deviceDetailsShowBitlockerInfo(\"' + encodeURIComponentEx(i) + '\",\"' + encodeURIComponentEx(m.identifier) + '\",\"' + encodeURIComponentEx(m.recoveryPassword) + '\")'); } x += addDetailItem("BitLocker", bitlockerState, s); diff --git a/webserver.js b/webserver.js index 3f1d8df822..d99d082b5c 100644 --- a/webserver.js +++ b/webserver.js @@ -2815,7 +2815,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF obj.authenticate(req.query.user, req.query.pass, domain, function (err, userid, passhint, loginOptions) { // 2FA is not supported in URL authentication method. If user has 2FA enabled, this login method fails. var user = obj.users[userid]; - if (checkUserOneTimePasswordRequired(domain, user, req, loginOptions) == true) { + if ((err == null) && checkUserOneTimePasswordRequired(domain, user, req, loginOptions) == true) { handleRootRequestEx(req, res, domain, direct); } else if ((userid != null) && (err == null)) { // Login success