More module install improvements, NodeJS minimum version is now 11 due to express-handlebar.

Ylian Saint-Hilaire committed Oct 21, 2023 at 01:00 UTC b4e0dbcd80f1b9a89f0fc2e9032738e68a600b8e
5 files changed +3098 -3097
meshcentral.js
+8 -8
@@ -139,7 +139,7 @@ function CreateMeshCentralServer(config, args) {
139 try { require('./pass').hash('test', function () { }, 0); } catch (ex) { console.log('Old version of node, must upgrade.'); return; } // TODO: Not sure if this test works or not.
140
141 // Check for invalid arguments
142 - const validArguments = ['_', 'user', 'port', 'aliasport', 'mpsport', 'mpsaliasport', 'redirport', 'rediraliasport', 'cert', 'mpscert', 'deletedomain', 'deletedefaultdomain', 'showall', 'showusers', 'showitem', 'listuserids', 'showusergroups', 'shownodes', 'showallmeshes', 'showmeshes', 'showevents', 'showsmbios', 'showpower', 'clearpower', 'showiplocations', 'help', 'exactports', 'xinstall', 'xuninstall', 'install', 'uninstall', 'start', 'stop', 'restart', 'debug', 'filespath', 'datapath', 'noagentupdate', 'launch', 'noserverbackup', 'mongodb', 'mongodbcol', 'wanonly', 'lanonly', 'nousers', 'mpspass', 'ciralocalfqdn', 'dbexport', 'dbexportmin', 'dbimport', 'dbmerge', 'dbfix', 'dbencryptkey', 'selfupdate', 'tlsoffload', 'userallowedip', 'userblockedip', 'swarmallowedip', 'agentallowedip', 'agentblockedip', 'fastcert', 'swarmport', 'logintoken', 'logintokenkey', 'logintokengen', 'mailtokengen', 'admin', 'unadmin', 'sessionkey', 'sessiontime', 'minify', 'minifycore', 'dblistconfigfiles', 'dbshowconfigfile', 'dbpushconfigfiles', 'dbpullconfigfiles', 'dbdeleteconfigfiles', 'vaultpushconfigfiles', 'vaultpullconfigfiles', 'vaultdeleteconfigfiles', 'configkey', 'loadconfigfromdb', 'npmpath', 'serverid', 'recordencryptionrecode', 'vault', 'token', 'unsealkey', 'name', 'log', 'dbstats', 'translate', 'createaccount', 'setuptelegram', 'resetaccount', 'pass', 'removesubdomain', 'adminaccount', 'domain', 'email', 'configfile', 'maintenancemode', 'nedbtodb', 'removetestagents', 'agentupdatetest', 'hashpassword', 'hashpass', 'indexmcrec', 'mpsdebug', 'dumpcores'];
142 + const validArguments = ['_', 'user', 'port', 'aliasport', 'mpsport', 'mpsaliasport', 'redirport', 'rediraliasport', 'cert', 'mpscert', 'deletedomain', 'deletedefaultdomain', 'showall', 'showusers', 'showitem', 'listuserids', 'showusergroups', 'shownodes', 'showallmeshes', 'showmeshes', 'showevents', 'showsmbios', 'showpower', 'clearpower', 'showiplocations', 'help', 'exactports', 'xinstall', 'xuninstall', 'install', 'uninstall', 'start', 'stop', 'restart', 'debug', 'filespath', 'datapath', 'noagentupdate', 'launch', 'noserverbackup', 'mongodb', 'mongodbcol', 'wanonly', 'lanonly', 'nousers', 'mpspass', 'ciralocalfqdn', 'dbexport', 'dbexportmin', 'dbimport', 'dbmerge', 'dbfix', 'dbencryptkey', 'selfupdate', 'tlsoffload', 'userallowedip', 'userblockedip', 'swarmallowedip', 'agentallowedip', 'agentblockedip', 'fastcert', 'swarmport', 'logintoken', 'logintokenkey', 'logintokengen', 'mailtokengen', 'admin', 'unadmin', 'sessionkey', 'sessiontime', 'minify', 'minifycore', 'dblistconfigfiles', 'dbshowconfigfile', 'dbpushconfigfiles', 'dbpullconfigfiles', 'dbdeleteconfigfiles', 'vaultpushconfigfiles', 'vaultpullconfigfiles', 'vaultdeleteconfigfiles', 'configkey', 'loadconfigfromdb', 'npmpath', 'serverid', 'recordencryptionrecode', 'vault', 'token', 'unsealkey', 'name', 'log', 'dbstats', 'translate', 'createaccount', 'setuptelegram', 'resetaccount', 'pass', 'removesubdomain', 'adminaccount', 'domain', 'email', 'configfile', 'maintenancemode', 'nedbtodb', 'removetestagents', 'agentupdatetest', 'hashpassword', 'hashpass', 'indexmcrec', 'mpsdebug', 'dumpcores', 'dev'];
143 for (var arg in obj.args) { obj.args[arg.toLocaleLowerCase()] = obj.args[arg]; if (validArguments.indexOf(arg.toLocaleLowerCase()) == -1) { console.log('Invalid argument "' + arg + '", use --help.'); return; } }
144 if (obj.args.mongodb == true) { console.log('Must specify: --mongodb [connectionstring] \r\nSee https://docs.mongodb.com/manual/reference/connection-string/ for MongoDB connection string.'); return; }
145 for (i in obj.config.settings) { obj.args[i] = obj.config.settings[i]; } // Place all settings into arguments, arguments have already been placed into settings so arguments take precedence.
@@ -3869,7 +3869,7 @@ function InstallModuleEx(modulenames, args, func) {
3869 var parentpath = __dirname;
3870 function getCurrentVersion() { try { return JSON.parse(require('fs').readFileSync(require('path').join(__dirname, 'package.json'), 'utf8')).version; } catch (ex) { } return null; } // Fetch server version
3871 const meshCentralVersion = getCurrentVersion();
3872 - if (meshCentralVersion != null) { names = 'meshcentral@' + getCurrentVersion() + ' ' + names; }
3872 + if ((meshCentralVersion != null) && (args.dev == null)) { names = 'meshcentral@' + getCurrentVersion() + ' ' + names; }
3873
3874 // Get the working directory
3875 if ((__dirname.endsWith('/node_modules/meshcentral')) || (__dirname.endsWith('\\node_modules\\meshcentral')) || (__dirname.endsWith('/node_modules/meshcentral/')) || (__dirname.endsWith('\\node_modules\\meshcentral\\'))) { parentpath = require('path').join(__dirname, '../..'); }
@@ -3880,7 +3880,7 @@ function InstallModuleEx(modulenames, args, func) {
3880 if ((error != null) && (error != '')) {
3881 var mcpath = __dirname;
3882 if (mcpath.endsWith('\\node_modules\\meshcentral') || mcpath.endsWith('/node_modules/meshcentral')) { mcpath = require('path').join(mcpath, '..', '..'); }
3883 - console.log('ERROR: Unable to install required modules. MeshCentral may not have access to npm, or npm may not have suffisent rights to load the new module. To manualy install this module try:\r\n\r\n cd "' + mcpath + '"\r\n npm install ' + names + '\r\n node node_modules' + ((require('os').platform() == 'win32') ? '\\' : '/') + 'meshcentral');
3883 + console.log('ERROR: Unable to install required modules. MeshCentral may not have access to npm, or npm may not have suffisent rights to load the new module. To manualy install this module try:\r\n\r\n cd "' + mcpath + '"\r\n npm install --no-audit --no-package-lock --no-optional --omit=optional --no-save ' + names + '\r\n node node_modules' + ((require('os').platform() == 'win32') ? '\\' : '/') + 'meshcentral');
3884 process.exit();
3885 return;
3886 }
@@ -3898,7 +3898,7 @@ function addServerWarning(msg, id, args, print) { serverWarnings.push({ msg: msg
3898
3899 /*
3900 var ServerWarnings = {
3901 - 1: "MeshCentral SSH support requires NodeJS 11 or higher.",
3901 + 1: "",
3902 2: "Missing WebDAV parameters.",
3903 3: "Unrecognized configuration option \"{0}\".",
3904 4: "WebSocket compression is disabled, this feature is broken in NodeJS v11.11 to v12.15 and v13.2",
@@ -3934,7 +3934,7 @@ var childProcess = null;
3934 var previouslyInstalledModules = {};
3935 function mainStart() {
3936 // Check the NodeJS is version 10 or better.
3937 - if (Number(process.version.match(/^v(\d+\.\d+)/)[1]) < 10) { console.log("MeshCentral requires Node v10 or above, current version is " + process.version + "."); return; }
3937 + if (Number(process.version.match(/^v(\d+\.\d+)/)[1]) < 11) { console.log("MeshCentral requires Node v11 or above, current version is " + process.version + "."); return; }
3938
3939 // If running within the node_modules folder, move working directory to the parent of the node_modules folder.
3940 if (__dirname.endsWith('\\node_modules\\meshcentral') || __dirname.endsWith('/node_modules/meshcentral')) { process.chdir(require('path').join(__dirname, '..', '..')); }
@@ -3996,7 +3996,7 @@ function mainStart() {
3996 if (config.domains[i].yubikey != null) { yubikey = true; }
3997 if (config.domains[i].auth == 'ldap') { ldap = true; }
3998 if (mstsc == false) { config.domains[i].mstsc = false; }
3999 - if (config.domains[i].ssh == true) { if (nodeVersion < 11) { config.domains[i].ssh = false; } ssh = true; }
3999 + if (config.domains[i].ssh == true) { ssh = true; }
4000 if ((typeof config.domains[i].authstrategies == 'object')) {
4001 if (passport == null) { passport = ['passport']; } // Passport v0.6.0 requires a patch, see https://github.com/jaredhanson/passport/issues/904
4002 if ((typeof config.domains[i].authstrategies.twitter == 'object') && (typeof config.domains[i].authstrategies.twitter.clientid == 'string') && (typeof config.domains[i].authstrategies.twitter.clientsecret == 'string') && (passport.indexOf('passport-twitter') == -1)) { passport.push('passport-twitter'); }
@@ -4018,7 +4018,7 @@ function mainStart() {
4018 var modules = ['archiver@5.3.2','body-parser@1.20.2','cbor@5.2.0','compression@1.7.4','cookie-session@2.0.0','express@4.18.2','express-handlebars@5.3.5','express-ws@4.0.0','ipcheck@0.1.0','minimist@1.2.8','multiparty@4.2.3','@yetzt/nedb','node-forge@1.3.1','ua-parser-js@1.0.36','ws@8.14.2','yauzl@2.10.0'];
4019 if (require('os').platform() == 'win32') { modules.push('node-windows@0.1.14'); modules.push('loadavg-windows@1.1.1'); if (sspi == true) { modules.push('node-sspi@0.2.10'); } } // Add Windows modules
4020 if (ldap == true) { modules.push('ldapauth-fork@5.0.5'); }
4021 - if (ssh == true) { if (nodeVersion < 11) { addServerWarning('MeshCentral SSH support requires NodeJS 11 or higher.', 1); } else { modules.push('ssh2@1.14.0'); } }
4021 + if (ssh == true) { modules.push('ssh2@1.14.0'); }
4022 if (passport != null) { modules.push(...passport); }
4023 if (captcha == true) { modules.push('svg-captcha@1.4.0'); }
4024
@@ -4038,7 +4038,7 @@ function mainStart() {
4038 else if (config.settings.xmongodb != null) { modules.push('mongojs@3.1.0'); } // Add MongoJS, old driver.
4039 if (nodemailer || ((config.smtp != null) && (config.smtp.name != 'console')) || (config.sendmail != null)) { modules.push('nodemailer@6.9.6'); } // Add SMTP support
4040 if (sendgrid || (config.sendgrid != null)) { modules.push('@sendgrid/mail'); } // Add SendGrid support
4041 - if (args.translate) { modules.push('jsdom@22.1.0'); modules.push('esprima@4.0.1'); modules.push('minify-js@0.0.4'); modules.push('html-minifier@4.0.0'); } // Translation support
4041 + if ((args.translate || args.dev) && (Number(process.version.match(/^v(\d+\.\d+)/)[1]) >= 16)) { modules.push('jsdom@22.1.0'); modules.push('esprima@4.0.1'); modules.push('minify-js@0.0.4'); modules.push('html-minifier@4.0.0'); } // Translation support
4042 if (typeof config.settings.crowdsec == 'object') { modules.push('@crowdsec/express-bouncer@0.1.0'); } // Add CrowdSec bounser module (https://www.npmjs.com/package/@crowdsec/express-bouncer)
4043
4044 if (typeof config.settings.autobackup == 'object') {
package.json
+1 -1
@@ -55,7 +55,7 @@
55 "yauzl": "2.10.0"
56 },
57 "engines": {
58 - "node": ">=10.0.0"
58 + "node": ">=11.0.0"
59 },
60 "repository": {
61 "type": "git",
translate/translate.js
+6 -2
@@ -1083,13 +1083,17 @@ function InstallModules(modules, func) {
1083 var missingModules = [];
1084 if (modules.length > 0) {
1085 for (var i in modules) {
1086 + var moduleName = modules[i].split('@')[0];
1087 try {
1087 - var xxmodule = require(modules[i]);
1088 + var xxmodule = require(moduleName);
1089 } catch (e) {
1090 missingModules.push(modules[i]);
1091 }
1092 }
1092 - if (missingModules.length > 0) { InstallModuleEx(modules, func); } else { func(); }
1093 + if (missingModules.length > 0) {
1094 + console.log('Missing modules: ' + missingModules.join(', ') + '.');
1095 + InstallModuleEx(modules, func);
1096 + } else { func(); }
1097 }
1098 }
1099
translate/translate.json
+3082 -3085
@@ -48,8 +48,8 @@
48 "zh-cht": " + CIRA",
49 "hu": " + CIRA",
50 "xloc": [
51 - "default.handlebars->47->2022",
52 - "default.handlebars->47->2024"
51 + "default.handlebars->47->2021",
52 + "default.handlebars->47->2023"
53 ]
54 },
55 {
@@ -322,7 +322,7 @@
322 "zh-cht": " 可以使用密碼提示,但不建議使用。",
323 "hu": "Jelszó tipp használható, de nem ajánlott.",
324 "xloc": [
325 - "default.handlebars->47->1898"
325 + "default.handlebars->47->1897"
326 ]
327 },
328 {
@@ -349,8 +349,8 @@
349 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
350 "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.",
351 "xloc": [
352 - "default.handlebars->47->2146",
353 - "default.handlebars->47->2717"
352 + "default.handlebars->47->2145",
353 + "default.handlebars->47->2716"
354 ]
355 },
356 {
@@ -479,7 +479,7 @@
479 "zh-cht": " TLS。",
480 "hu": "TLS-sel.",
481 "xloc": [
482 - "default.handlebars->47->266"
482 + "default.handlebars->47->265"
483 ]
484 },
485 {
@@ -506,7 +506,7 @@
506 "zh-cht": " 沒有TLS。",
507 "hu": " TLS nélkül.",
508 "xloc": [
509 - "default.handlebars->47->267"
509 + "default.handlebars->47->266"
510 ]
511 },
512 {
@@ -878,7 +878,7 @@
878 "zh-cht": "(可選的)",
879 "hu": "(opcionális)",
880 "xloc": [
881 - "default.handlebars->47->538"
881 + "default.handlebars->47->537"
882 ]
883 },
884 {
@@ -926,8 +926,8 @@
926 "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
927 "hu": "* 8 karakter, 1 nagybetű, 1 kisbetű , 1 szám, 1 speciális karakter.",
928 "xloc": [
929 - "default.handlebars->47->2106",
930 - "default.handlebars->47->500"
929 + "default.handlebars->47->2105",
930 + "default.handlebars->47->499"
931 ]
932 },
933 {
@@ -954,7 +954,7 @@
954 "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
955 "hu": "* BSD esetén először futtassa a \\\"pkg install wget sudo bash\\\" parancsot.",
956 "xloc": [
957 - "default.handlebars->47->596"
957 + "default.handlebars->47->595"
958 ]
959 },
960 {
@@ -1030,11 +1030,11 @@
1030 "default-mobile.handlebars->11->770",
1031 "default-mobile.handlebars->11->772",
1032 "default-mobile.handlebars->11->920",
1033 - "default.handlebars->47->1525",
1034 - "default.handlebars->47->1527",
1035 - "default.handlebars->47->2222",
1036 - "default.handlebars->47->2497",
1037 - "default.handlebars->47->941"
1033 + "default.handlebars->47->1524",
1034 + "default.handlebars->47->1526",
1035 + "default.handlebars->47->2221",
1036 + "default.handlebars->47->2496",
1037 + "default.handlebars->47->940"
1038 ]
1039 },
1040 {
@@ -1140,7 +1140,7 @@
1140 "hu": ", csak Intel® AMT",
1141 "xloc": [
1142 "default-mobile.handlebars->11->393",
1143 - "default.handlebars->47->346"
1143 + "default.handlebars->47->345"
1144 ]
1145 },
1146 {
@@ -1167,7 +1167,7 @@
1167 "zh-cht": ", 本地設備",
1168 "hu": ", Helyi eszközök",
1169 "xloc": [
1170 - "default.handlebars->47->348"
1170 + "default.handlebars->47->347"
1171 ]
1172 },
1173 {
@@ -1195,7 +1195,7 @@
1195 "hu": ", MQTT online",
1196 "xloc": [
1197 "default-mobile.handlebars->11->824",
1198 - "default.handlebars->47->1580"
1198 + "default.handlebars->47->1579"
1199 ]
1200 },
1201 {
@@ -1222,8 +1222,8 @@
1222 "zh-cht": ", 不同意",
1223 "hu": ", Nincs hozzájárulás",
1224 "xloc": [
1225 - "default.handlebars->47->1036",
1226 - "default.handlebars->47->2064"
1225 + "default.handlebars->47->1035",
1226 + "default.handlebars->47->2063"
1227 ]
1228 },
1229 {
@@ -1250,8 +1250,8 @@
1250 "zh-cht": ",提示同意",
1251 "hu": ", Hozzájárulás kérése a kapcsolódáshoz",
1252 "xloc": [
1253 - "default.handlebars->47->1037",
1254 - "default.handlebars->47->2065"
1253 + "default.handlebars->47->1036",
1254 + "default.handlebars->47->2064"
1255 ]
1256 },
1257 {
@@ -1278,7 +1278,7 @@
1278 "zh-cht": ", RDP",
1279 "hu": ", RDP",
1280 "xloc": [
1281 - "default.handlebars->47->1312"
1281 + "default.handlebars->47->1311"
1282 ]
1283 },
1284 {
@@ -1305,8 +1305,8 @@
1305 "zh-cht": ", 每天重複",
1306 "hu": ", naponta ismétlődően",
1307 "xloc": [
1308 - "default.handlebars->47->1033",
1309 - "default.handlebars->47->2061"
1308 + "default.handlebars->47->1032",
1309 + "default.handlebars->47->2060"
1310 ]
1311 },
1312 {
@@ -1333,8 +1333,8 @@
1333 "zh-cht": ", 每週重複一次",
1334 "hu": ", hetente ismétlődően",
1335 "xloc": [
1336 - "default.handlebars->47->1034",
1337 - "default.handlebars->47->2062"
1336 + "default.handlebars->47->1033",
1337 + "default.handlebars->47->2061"
1338 ]
1339 },
1340 {
@@ -1385,7 +1385,7 @@
1385 "zh-cht": ", 中繼設備",
1386 "hu": ", Relayed Devices",
1387 "xloc": [
1388 - "default.handlebars->47->347"
1388 + "default.handlebars->47->346"
1389 ]
1390 },
1391 {
@@ -1413,7 +1413,7 @@
1413 "hu": ", SFTP",
1414 "xloc": [
1415 "default-mobile.handlebars->11->679",
1416 - "default.handlebars->47->1421"
1416 + "default.handlebars->47->1420"
1417 ]
1418 },
1419 {
@@ -1440,7 +1440,7 @@
1440 "zh-cht": ", SSH",
1441 "hu": ", SSH",
1442 "xloc": [
1443 - "default.handlebars->47->1389"
1443 + "default.handlebars->47->1388"
1444 ]
1445 },
1446 {
@@ -1467,7 +1467,7 @@
1467 "zh-cht": ",軟體KVM",
1468 "hu": ", Soft-KVM",
1469 "xloc": [
1470 - "default.handlebars->47->1295",
1470 + "default.handlebars->47->1294",
1471 "sharing.handlebars->11->12"
1472 ]
1473 },
@@ -1495,8 +1495,8 @@
1495 "zh-cht": ", 工具欄",
1496 "hu": ", Tálca értesítés",
1497 "xloc": [
1498 - "default.handlebars->47->1038",
1499 - "default.handlebars->47->2066"
1498 + "default.handlebars->47->1037",
1499 + "default.handlebars->47->2065"
1500 ]
1501 },
1502 {
@@ -1547,8 +1547,8 @@
1547 "zh-cht": ", 僅查看桌面",
1548 "hu": ", csak megtekintés",
1549 "xloc": [
1550 - "default.handlebars->47->1035",
1551 - "default.handlebars->47->2063"
1550 + "default.handlebars->47->1034",
1551 + "default.handlebars->47->2062"
1552 ]
1553 },
1554 {
@@ -1578,9 +1578,9 @@
1578 "default-mobile.handlebars->11->620",
1579 "default-mobile.handlebars->11->657",
1580 "default-mobile.handlebars->11->680",
1581 - "default.handlebars->47->1311",
1582 - "default.handlebars->47->1390",
1583 - "default.handlebars->47->1422",
1581 + "default.handlebars->47->1310",
1582 + "default.handlebars->47->1389",
1583 + "default.handlebars->47->1421",
1584 "sharing.handlebars->11->19",
1585 "sharing.handlebars->11->27",
1586 "sharing.handlebars->11->44",
@@ -1794,7 +1794,7 @@
1794 "zh-cht": ",{0}觀看",
1795 "hu": ", {0} nézi",
1796 "xloc": [
1797 - "default.handlebars->47->1306",
1797 + "default.handlebars->47->1305",
1798 "sharing.handlebars->11->13"
1799 ]
1800 },
@@ -1907,9 +1907,9 @@
1907 "xloc": [
1908 "default-mobile.handlebars->11->346",
1909 "default-mobile.handlebars->11->686",
1910 - "default.handlebars->47->1432",
1911 - "default.handlebars->47->2288",
1912 - "default.handlebars->47->2949",
1910 + "default.handlebars->47->1431",
1911 + "default.handlebars->47->2287",
1912 + "default.handlebars->47->2948",
1913 "sharing.handlebars->11->50"
1914 ]
1915 },
@@ -2087,7 +2087,7 @@
2087 "zh-cht": "1個活躍時段",
2088 "hu": "1 aktív munkamenet",
2089 "xloc": [
2090 - "default.handlebars->47->2811"
2090 + "default.handlebars->47->2810"
2091 ]
2092 },
2093 {
@@ -2116,7 +2116,7 @@
2116 "xloc": [
2117 "default-mobile.handlebars->11->356",
2118 "default-mobile.handlebars->11->964",
2119 - "default.handlebars->47->2312",
2119 + "default.handlebars->47->2311",
2120 "download.handlebars->3->1",
2121 "download2.handlebars->5->1",
2122 "sharing.handlebars->11->96"
@@ -2173,7 +2173,7 @@
2173 "zh-cht": "1位聯絡文",
2174 "hu": "1 csatlakozás",
2175 "xloc": [
2176 - "default.handlebars->47->1308",
2176 + "default.handlebars->47->1307",
2177 "sharing.handlebars->11->15"
2178 ]
2179 },
@@ -2201,9 +2201,9 @@
2201 "zh-cht": "1天",
2202 "hu": "1 nap",
2203 "xloc": [
2204 - "default.handlebars->47->274",
2205 - "default.handlebars->47->529",
2206 - "default.handlebars->47->543"
2204 + "default.handlebars->47->273",
2205 + "default.handlebars->47->528",
2206 + "default.handlebars->47->542"
2207 ]
2208 },
2209 {
@@ -2230,7 +2230,7 @@
2230 "zh-cht": "1群",
2231 "hu": "1 csoport",
2232 "xloc": [
2233 - "default.handlebars->47->2767"
2233 + "default.handlebars->47->2766"
2234 ]
2235 },
2236 {
@@ -2257,9 +2257,9 @@
2257 "zh-cht": "1小時",
2258 "hu": "1 óra",
2259 "xloc": [
2260 - "default.handlebars->47->272",
2261 - "default.handlebars->47->527",
2262 - "default.handlebars->47->541"
2260 + "default.handlebars->47->271",
2261 + "default.handlebars->47->526",
2262 + "default.handlebars->47->540"
2263 ]
2264 },
2265 {
@@ -2286,8 +2286,8 @@
2286 "zh-cht": "1分鐘",
2287 "hu": "1 perc",
2288 "xloc": [
2289 - "default.handlebars->47->1130",
2290 - "default.handlebars->47->1863"
2289 + "default.handlebars->47->1129",
2290 + "default.handlebars->47->1862"
2291 ]
2292 },
2293 {
@@ -2341,9 +2341,9 @@
2341 "zh-cht": "1個月",
2342 "hu": "1 hónap",
2343 "xloc": [
2344 - "default.handlebars->47->276",
2345 - "default.handlebars->47->531",
2346 - "default.handlebars->47->545"
2344 + "default.handlebars->47->275",
2345 + "default.handlebars->47->530",
2346 + "default.handlebars->47->544"
2347 ]
2348 },
2349 {
@@ -2370,7 +2370,7 @@
2370 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2371 "hu": "1 további felhasználó nem jelenik meg, használja a keresőmezőt a felhasználók kereséséhez...",
2372 "xloc": [
2373 - "default.handlebars->47->2529"
2373 + "default.handlebars->47->2528"
2374 ]
2375 },
2376 {
@@ -2397,7 +2397,7 @@
2397 "zh-cht": "1個節點",
2398 "hu": "1 node",
2399 "xloc": [
2400 - "default.handlebars->47->636"
2400 + "default.handlebars->47->635"
2401 ]
2402 },
2403 {
@@ -2473,7 +2473,7 @@
2473 "hu": "1 másodperc",
2474 "xloc": [
2475 "default-mobile.handlebars->11->570",
2476 - "default.handlebars->47->1167"
2476 + "default.handlebars->47->1166"
2477 ]
2478 },
2479 {
@@ -2527,7 +2527,7 @@
2527 "zh-cht": "1 個選定的設備處於離線狀態。",
2528 "hu": "1 kiválasztott eszköz offline.",
2529 "xloc": [
2530 - "default.handlebars->47->702"
2530 + "default.handlebars->47->701"
2531 ]
2532 },
2533 {
@@ -2554,7 +2554,7 @@
2554 "zh-cht": "1 個選定的設備在線。",
2555 "hu": "1 kiválasztott eszköz online.",
2556 "xloc": [
2557 - "default.handlebars->47->700"
2557 + "default.handlebars->47->699"
2558 ]
2559 },
2560 {
@@ -2588,14 +2588,14 @@
2588 "default-mobile.handlebars->11->425",
2589 "default-mobile.handlebars->11->429",
2590 "default-mobile.handlebars->11->433",
2591 - "default.handlebars->47->2533",
2592 - "default.handlebars->47->418",
2593 - "default.handlebars->47->421",
2594 - "default.handlebars->47->425",
2595 - "default.handlebars->47->429",
2596 - "default.handlebars->47->433",
2597 - "default.handlebars->47->437",
2598 - "default.handlebars->47->441"
2591 + "default.handlebars->47->2532",
2592 + "default.handlebars->47->417",
2593 + "default.handlebars->47->420",
2594 + "default.handlebars->47->424",
2595 + "default.handlebars->47->428",
2596 + "default.handlebars->47->432",
2597 + "default.handlebars->47->436",
2598 + "default.handlebars->47->440"
2599 ]
2600 },
2601 {
@@ -2622,9 +2622,9 @@
2622 "zh-cht": "1週",
2623 "hu": "1 hét",
2624 "xloc": [
2625 - "default.handlebars->47->275",
2626 - "default.handlebars->47->530",
2627 - "default.handlebars->47->544"
2625 + "default.handlebars->47->274",
2626 + "default.handlebars->47->529",
2627 + "default.handlebars->47->543"
2628 ]
2629 },
2630 {
@@ -2790,8 +2790,8 @@
2790 "zh-cht": "10分鐘",
2791 "hu": "10 perc",
2792 "xloc": [
2793 - "default.handlebars->47->1132",
2794 - "default.handlebars->47->1865"
2793 + "default.handlebars->47->1131",
2794 + "default.handlebars->47->1864"
2795 ]
2796 },
2797 {
@@ -2819,7 +2819,7 @@
2819 "hu": "10 másodperc",
2820 "xloc": [
2821 "default-mobile.handlebars->11->572",
2822 - "default.handlebars->47->1169"
2822 + "default.handlebars->47->1168"
2823 ]
2824 },
2825 {
@@ -3011,8 +3011,8 @@
3011 "zh-cht": "12小時",
3012 "hu": "12 óra",
3013 "xloc": [
3014 - "default.handlebars->47->1140",
3015 - "default.handlebars->47->1873"
3014 + "default.handlebars->47->1139",
3015 + "default.handlebars->47->1872"
3016 ]
3017 },
3018 {
@@ -3200,8 +3200,8 @@
3200 "zh-cht": "15分鐘",
3201 "hu": "15 perc",
3202 "xloc": [
3203 - "default.handlebars->47->1133",
3204 - "default.handlebars->47->1866"
3203 + "default.handlebars->47->1132",
3204 + "default.handlebars->47->1865"
3205 ]
3206 },
3207 {
@@ -3228,8 +3228,8 @@
3228 "zh-cht": "16小時",
3229 "hu": "12 óra",
3230 "xloc": [
3231 - "default.handlebars->47->1141",
3232 - "default.handlebars->47->1874"
3231 + "default.handlebars->47->1140",
3232 + "default.handlebars->47->1873"
3233 ]
3234 },
3235 {
@@ -3445,8 +3445,8 @@
3445 "zh-cht": "2天",
3446 "hu": "2 nap",
3447 "xloc": [
3448 - "default.handlebars->47->1143",
3449 - "default.handlebars->47->1876"
3448 + "default.handlebars->47->1142",
3449 + "default.handlebars->47->1875"
3450 ]
3451 },
3452 {
@@ -3473,8 +3473,8 @@
3473 "zh-cht": "2小時",
3474 "hu": "2 óra",
3475 "xloc": [
3476 - "default.handlebars->47->1137",
3477 - "default.handlebars->47->1870"
3476 + "default.handlebars->47->1136",
3477 + "default.handlebars->47->1869"
3478 ]
3479 },
3480 {
@@ -3501,7 +3501,7 @@
3501 "zh-cht": "兩步登入啟用失敗。",
3502 "hu": "A kétlépcsős bejelentkezés aktiválása nem sikerült.",
3503 "xloc": [
3504 - "default.handlebars->47->217"
3504 + "default.handlebars->47->216"
3505 ]
3506 },
3507 {
@@ -3528,7 +3528,7 @@
3528 "zh-cht": "兩步登入啟用刪除失敗。",
3529 "hu": "Nem sikerült eltávolítani a 2 faktoros hitelesítést.",
3530 "xloc": [
3531 - "default.handlebars->47->222"
3531 + "default.handlebars->47->221"
3532 ]
3533 },
3534 {
@@ -3667,8 +3667,8 @@
3667 "zh-cht": "24小時",
3668 "hu": "24 óra",
3669 "xloc": [
3670 - "default.handlebars->47->1142",
3671 - "default.handlebars->47->1875"
3670 + "default.handlebars->47->1141",
3671 + "default.handlebars->47->1874"
3672 ]
3673 },
3674 {
@@ -3748,7 +3748,7 @@
3748 "zh-cht": "2FA備份代碼已清除",
3749 "hu": "2FA biztonsági kódok törölve",
3750 "xloc": [
3751 - "default.handlebars->47->2425"
3751 + "default.handlebars->47->2424"
3752 ]
3753 },
3754 {
@@ -3776,7 +3776,7 @@
3776 "hu": "2FA zárolva van",
3777 "xloc": [
3778 "default-mobile.handlebars->11->62",
3779 - "default.handlebars->47->204"
3779 + "default.handlebars->47->203"
3780 ]
3781 },
3782 {
@@ -3803,7 +3803,7 @@
3803 "zh-cht": "第二個因素",
3804 "hu": "2. faktor",
3805 "xloc": [
3806 - "default.handlebars->47->2986"
3806 + "default.handlebars->47->2985"
3807 ]
3808 },
3809 {
@@ -3830,8 +3830,8 @@
3830 "zh-cht": "啟用第二因素身份驗證",
3831 "hu": "2. faktoros hitelesítés engedélyezve",
3832 "xloc": [
3833 - "default.handlebars->47->2547",
3834 - "default.handlebars->47->2792"
3833 + "default.handlebars->47->2546",
3834 + "default.handlebars->47->2791"
3835 ]
3836 },
3837 {
@@ -3991,8 +3991,8 @@
3991 "zh-cht": "30分鐘",
3992 "hu": "30 perc",
3993 "xloc": [
3994 - "default.handlebars->47->1134",
3995 - "default.handlebars->47->1867"
3994 + "default.handlebars->47->1133",
3995 + "default.handlebars->47->1866"
3996 ]
3997 },
3998 {
@@ -4020,7 +4020,7 @@
4020 "hu": "32-bit",
4021 "xloc": [
4022 "default-mobile.handlebars->11->723",
4023 - "default.handlebars->47->1486"
4023 + "default.handlebars->47->1485"
4024 ]
4025 },
4026 {
@@ -4047,7 +4047,7 @@
4047 "zh-cht": "MeshAgent的32位版本",
4048 "hu": "MeshAgent 32 bites verziója",
4049 "xloc": [
4050 - "default.handlebars->47->622"
4050 + "default.handlebars->47->621"
4051 ]
4052 },
4053 {
@@ -4103,8 +4103,8 @@
4103 "zh-cht": "4天",
4104 "hu": "4 nap",
4105 "xloc": [
4106 - "default.handlebars->47->1144",
4107 - "default.handlebars->47->1877"
4106 + "default.handlebars->47->1143",
4107 + "default.handlebars->47->1876"
4108 ]
4109 },
4110 {
@@ -4131,8 +4131,8 @@
4131 "zh-cht": "4個小時",
4132 "hu": "4 óra",
4133 "xloc": [
4134 - "default.handlebars->47->1138",
4135 - "default.handlebars->47->1871"
4134 + "default.handlebars->47->1137",
4135 + "default.handlebars->47->1870"
4136 ]
4137 },
4138 {
@@ -4270,8 +4270,8 @@
4270 "zh-cht": "45分鐘",
4271 "hu": "45 perc",
4272 "xloc": [
4273 - "default.handlebars->47->1135",
4274 - "default.handlebars->47->1868"
4273 + "default.handlebars->47->1134",
4274 + "default.handlebars->47->1867"
4275 ]
4276 },
4277 {
@@ -4325,8 +4325,8 @@
4325 "zh-cht": "5分鐘",
4326 "hu": "5 perc",
4327 "xloc": [
4328 - "default.handlebars->47->1131",
4329 - "default.handlebars->47->1864"
4328 + "default.handlebars->47->1130",
4329 + "default.handlebars->47->1863"
4330 ]
4331 },
4332 {
@@ -4354,7 +4354,7 @@
4354 "hu": "5 másodperc",
4355 "xloc": [
4356 "default-mobile.handlebars->11->571",
4357 - "default.handlebars->47->1168"
4357 + "default.handlebars->47->1167"
4358 ]
4359 },
4360 {
@@ -4522,8 +4522,8 @@
4522 "zh-cht": "60分鐘",
4523 "hu": "60 perc",
4524 "xloc": [
4525 - "default.handlebars->47->1136",
4526 - "default.handlebars->47->1869"
4525 + "default.handlebars->47->1135",
4526 + "default.handlebars->47->1868"
4527 ]
4528 },
4529 {
@@ -4607,7 +4607,7 @@
4607 "hu": "64-bit",
4608 "xloc": [
4609 "default-mobile.handlebars->11->725",
4610 - "default.handlebars->47->1488"
4610 + "default.handlebars->47->1487"
4611 ]
4612 },
4613 {
@@ -4688,7 +4688,7 @@
4688 "zh-cht": "64位版本的macOS Mesh Agent",
4689 "hu": "Mesh Agent macOS 64 bites verziója",
4690 "xloc": [
4691 - "default.handlebars->47->601"
4691 + "default.handlebars->47->600"
4692 ]
4693 },
4694 {
@@ -4715,7 +4715,7 @@
4715 "zh-cht": "MeshAgent的64位版本",
4716 "hu": "MeshAgent 64 bites verziója",
4717 "xloc": [
4718 - "default.handlebars->47->625"
4718 + "default.handlebars->47->624"
4719 ]
4720 },
4721 {
@@ -4790,7 +4790,7 @@
4790 "zh-cht": "7天電源狀態",
4791 "hu": "7 napos energiaellátás állapota",
4792 "xloc": [
4793 - "default.handlebars->47->1208"
4793 + "default.handlebars->47->1207"
4794 ]
4795 },
4796 {
@@ -4817,7 +4817,7 @@
4817 "zh-cht": "7天",
4818 "hu": "7 nap",
4819 "xloc": [
4820 - "default.handlebars->47->1878"
4820 + "default.handlebars->47->1877"
4821 ]
4822 },
4823 {
@@ -4901,10 +4901,10 @@
4901 "zh-cht": "8小時",
4902 "hu": "8 óra",
4903 "xloc": [
4904 - "default.handlebars->47->1139",
4905 - "default.handlebars->47->1872",
4906 - "default.handlebars->47->528",
4907 - "default.handlebars->47->542"
4904 + "default.handlebars->47->1138",
4905 + "default.handlebars->47->1871",
4906 + "default.handlebars->47->527",
4907 + "default.handlebars->47->541"
4908 ]
4909 },
4910 {
@@ -5021,7 +5021,7 @@
5021 {
5022 "en": "</table>",
5023 "xloc": [
5024 - "default.handlebars->47->607"
5024 + "default.handlebars->47->606"
5025 ]
5026 },
5027 {
@@ -5075,7 +5075,7 @@
5075 "zh-cht": "<a href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\">硬件密鑰</a>用作輔助登入身份驗證。",
5076 "hu": "A <a href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\">hardware kulcsok</a> másodlagos bejelentkezési hitelesítésre szolgálnak.",
5077 "xloc": [
5078 - "default.handlebars->47->231"
5078 + "default.handlebars->47->230"
5079 ]
5080 },
5081 {
@@ -5189,19 +5189,19 @@
5189 {
5190 "en": "<table style=width:180px>",
5191 "xloc": [
5192 - "default.handlebars->47->604"
5192 + "default.handlebars->47->603"
5193 ]
5194 },
5195 {
5196 "en": "<tr><td style=text-align:center><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://play.google.com/store/apps/details?id=com.meshcentral.agent2\\\"><img style=cursor:pointer src=\\\"images/google-play-140.png\\\" width=140 srcset=\\\"images/google-play-280.png 2x\\\" /></a></td></tr>",
5197 "xloc": [
5198 - "default.handlebars->47->605"
5198 + "default.handlebars->47->604"
5199 ]
5200 },
5201 {
5202 "en": "<tr><td style=text-align:center><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://www.amazon.co.uk/gp/product/B097Z4Q7SK/\\\"><img style=cursor:pointer src=\\\"images/amazon-appstore-140.png\\\" width=140 srcset=\\\"images/amazon-appstore-280.png 2x\\\" /></a></td></tr>",
5203 "xloc": [
5204 - "default.handlebars->47->606"
5204 + "default.handlebars->47->605"
5205 ]
5206 },
5207 {
@@ -5280,8 +5280,8 @@
5280 "hu": "ACM",
5281 "xloc": [
5282 "default-mobile.handlebars->11->504",
5283 - "default.handlebars->47->2042",
5284 - "default.handlebars->47->858"
5283 + "default.handlebars->47->2041",
5284 + "default.handlebars->47->857"
5285 ]
5286 },
5287 {
@@ -5356,8 +5356,8 @@
5356 "zh-cht": "AMT",
5357 "hu": "AMT",
5358 "xloc": [
5359 - "default.handlebars->47->397",
5360 - "default.handlebars->47->671"
5359 + "default.handlebars->47->396",
5360 + "default.handlebars->47->670"
5361 ]
5362 },
5363 {
@@ -5384,7 +5384,7 @@
5384 "zh-cht": "AMT操作系統",
5385 "hu": "AMT-OS",
5386 "xloc": [
5387 - "default.handlebars->47->3131"
5387 + "default.handlebars->47->3130"
5388 ]
5389 },
5390 {
@@ -5411,7 +5411,7 @@
5411 "zh-cht": "AMT-Redir",
5412 "hu": "AMT-Redir",
5413 "xloc": [
5414 - "default.handlebars->47->2993"
5414 + "default.handlebars->47->2992"
5415 ]
5416 },
5417 {
@@ -5438,19 +5438,19 @@
5438 "zh-cht": "AMT-WSMAN",
5439 "hu": "AMT-WSMAN",
5440 "xloc": [
5441 - "default.handlebars->47->2992"
5441 + "default.handlebars->47->2991"
5442 ]
5443 },
5444 {
5445 "en": "APK",
5446 "xloc": [
5447 - "default.handlebars->47->610"
5447 + "default.handlebars->47->609"
5448 ]
5449 },
5450 {
5451 "en": "APK version of the MeshAgent",
5452 "xloc": [
5453 - "default.handlebars->47->609"
5453 + "default.handlebars->47->608"
5454 ]
5455 },
5456 {
@@ -5458,7 +5458,7 @@
5458 "nl": "ARM 64bit versie van de MeshAgent",
5459 "de": "ARM 64bit Version des MeshAgents",
5460 "xloc": [
5461 - "default.handlebars->47->590"
5461 + "default.handlebars->47->589"
5462 ]
5463 },
5464 {
@@ -5627,8 +5627,8 @@
5627 "xloc": [
5628 "default-mobile.handlebars->11->727",
5629 "default-mobile.handlebars->11->729",
5630 - "default.handlebars->47->877",
5631 - "default.handlebars->47->879"
5630 + "default.handlebars->47->876",
5631 + "default.handlebars->47->878"
5632 ]
5633 },
5634 {
@@ -5656,7 +5656,7 @@
5656 "hu": "Hozzáférés megtagadva",
5657 "xloc": [
5658 "default-mobile.handlebars->11->825",
5659 - "default.handlebars->47->1581"
5659 + "default.handlebars->47->1580"
5660 ]
5661 },
5662 {
@@ -5739,7 +5739,7 @@
5739 "zh-cht": "存取伺服器檔案",
5740 "hu": "Hozzáférés a kiszolgálófájlokhoz",
5741 "xloc": [
5742 - "default.handlebars->47->2723"
5742 + "default.handlebars->47->2722"
5743 ]
5744 },
5745 {
@@ -5856,11 +5856,11 @@
5856 "default-mobile.handlebars->11->471",
5857 "default-mobile.handlebars->11->473",
5858 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
5859 - "default.handlebars->47->1907",
5860 - "default.handlebars->47->1909",
5861 - "default.handlebars->47->3185",
5862 - "default.handlebars->47->818",
5863 - "default.handlebars->47->820"
5859 + "default.handlebars->47->1906",
5860 + "default.handlebars->47->1908",
5861 + "default.handlebars->47->3184",
5862 + "default.handlebars->47->817",
5863 + "default.handlebars->47->819"
5864 ]
5865 },
5866 {
@@ -5888,7 +5888,7 @@
5888 "hu": "Fiókbeállítások",
5889 "xloc": [
5890 "default-mobile.handlebars->11->931",
5891 - "default.handlebars->47->3056"
5891 + "default.handlebars->47->3055"
5892 ]
5893 },
5894 {
@@ -5954,7 +5954,7 @@
5954 "fr": "Compte modifié pour se synchroniser avec les données LDAP.",
5955 "hu": "Fiók megváltozott: LDAP-adatokkal való szinkronizálás.",
5956 "xloc": [
5957 - "default.handlebars->47->2486"
5957 + "default.handlebars->47->2485"
5958 ]
5959 },
5960 {
@@ -5981,7 +5981,7 @@
5981 "zh-cht": "帳戶已更改:{0}",
5982 "hu": "Fiók megváltozott: {0}",
5983 "xloc": [
5984 - "default.handlebars->47->2398"
5984 + "default.handlebars->47->2397"
5985 ]
5986 },
5987 {
@@ -6008,7 +6008,7 @@
6008 "zh-cht": "創建帳戶,電子郵件為{0}",
6009 "hu": "Fiók létrehozva, az e-mail címe {0} ",
6010 "xloc": [
6011 - "default.handlebars->47->2397"
6011 + "default.handlebars->47->2396"
6012 ]
6013 },
6014 {
@@ -6035,7 +6035,7 @@
6035 "zh-cht": "已創建帳戶,名稱為 {0}。",
6036 "hu": "Fiók létrehozva, név: {0}. ",
6037 "xloc": [
6038 - "default.handlebars->47->2460"
6038 + "default.handlebars->47->2459"
6039 ]
6040 },
6041 {
@@ -6062,7 +6062,7 @@
6062 "zh-cht": "帳戶已創建,用戶名是{0}",
6063 "hu": "Fiók létrehozva, felhasználónév {0} ",
6064 "xloc": [
6065 - "default.handlebars->47->2396"
6065 + "default.handlebars->47->2395"
6066 ]
6067 },
6068 {
@@ -6090,9 +6090,9 @@
6090 "hu": "Fiók zárolva",
6091 "xloc": [
6092 "default-mobile.handlebars->11->66",
6093 - "default.handlebars->47->208",
6094 - "default.handlebars->47->2549",
6095 - "default.handlebars->47->2720"
6093 + "default.handlebars->47->207",
6094 + "default.handlebars->47->2548",
6095 + "default.handlebars->47->2719"
6096 ]
6097 },
6098 {
@@ -6120,7 +6120,7 @@
6120 "hu": "Elérte a fiókkorlátot.",
6121 "xloc": [
6122 "default-mobile.handlebars->11->943",
6123 - "default.handlebars->47->3068",
6123 + "default.handlebars->47->3067",
6124 "login-mobile.handlebars->5->6",
6125 "login.handlebars->5->8",
6126 "login2.handlebars->7->9"
@@ -6179,7 +6179,7 @@
6179 "zh-cht": "帳號登錄",
6180 "hu": "Bejelentkezés a fiókba",
6181 "xloc": [
6182 - "default.handlebars->47->2333"
6182 + "default.handlebars->47->2332"
6183 ]
6184 },
6185 {
@@ -6206,7 +6206,7 @@
6206 "zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
6207 "hu": "Bejelentkezés a fiókba innen: {0}, {1}, {2}",
6208 "xloc": [
6209 - "default.handlebars->47->2439"
6209 + "default.handlebars->47->2438"
6210 ]
6211 },
6212 {
@@ -6217,7 +6217,7 @@
6217 "fr": "Enregistrements des jetons de connexion au compte",
6218 "hu": "Fiók bejelentkezési token rekordok",
6219 "xloc": [
6220 - "default.handlebars->47->3035"
6220 + "default.handlebars->47->3034"
6221 ]
6222 },
6223 {
@@ -6244,7 +6244,7 @@
6244 "zh-cht": "帳戶登出",
6245 "hu": "Fiók kijelentkezés",
6246 "xloc": [
6247 - "default.handlebars->47->2334"
6247 + "default.handlebars->47->2333"
6248 ]
6249 },
6250 {
@@ -6300,7 +6300,7 @@
6300 "zh-cht": "帳戶密碼已更改:{0}",
6301 "hu": "Fiók jelszava megváltozott: {0}",
6302 "xloc": [
6303 - "default.handlebars->47->2406"
6303 + "default.handlebars->47->2405"
6304 ]
6305 },
6306 {
@@ -6327,7 +6327,7 @@
6327 "zh-cht": "帳戶已刪除",
6328 "hu": "Fiók eltávolítva",
6329 "xloc": [
6330 - "default.handlebars->47->2395"
6330 + "default.handlebars->47->2394"
6331 ]
6332 },
6333 {
@@ -6382,7 +6382,7 @@
6382 "hu": "Művelet",
6383 "xloc": [
6384 "default-mobile.handlebars->11->831",
6385 - "default.handlebars->47->1587",
6385 + "default.handlebars->47->1586",
6386 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
6387 ]
6388 },
@@ -6410,8 +6410,8 @@
6410 "zh-cht": "動作檔案",
6411 "hu": "Művelet fájl",
6412 "xloc": [
6413 - "default.handlebars->47->1255",
6414 - "default.handlebars->47->1257"
6413 + "default.handlebars->47->1254",
6414 + "default.handlebars->47->1256"
6415 ]
6416 },
6417 {
@@ -6442,7 +6442,7 @@
6442 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
6443 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
6444 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
6445 - "default.handlebars->47->942",
6445 + "default.handlebars->47->941",
6446 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
6447 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
6448 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -6472,7 +6472,7 @@
6472 "zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾&reg;AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
6473 "hu": "Aktiválja az Intel® AMT-t Admin Control Mode (ACM) üzemmódban egy FAT formátumú USB pendrive segítségével. Helyezze rá a setup.bin fájlt, és indítson el egy vagy több számítógépet ezzel az USB pendrive-val.",
6474 "xloc": [
6475 - "default.handlebars->47->494"
6475 + "default.handlebars->47->493"
6476 ]
6477 },
6478 {
@@ -6553,7 +6553,7 @@
6553 "zh-cht": "如果ACM失敗,則激活到CCM",
6554 "hu": "Aktiválja a CCM-et, ha az ACM meghiúsul",
6555 "xloc": [
6556 - "default.handlebars->47->2097"
6556 + "default.handlebars->47->2096"
6557 ]
6558 },
6559 {
@@ -6583,9 +6583,9 @@
6583 "default-mobile.handlebars->11->499",
6584 "default-mobile.handlebars->11->501",
6585 "default-mobile.handlebars->11->778",
6586 - "default.handlebars->47->1533",
6587 - "default.handlebars->47->851",
6588 - "default.handlebars->47->853"
6586 + "default.handlebars->47->1532",
6587 + "default.handlebars->47->850",
6588 + "default.handlebars->47->852"
6589 ]
6590 },
6591 {
@@ -6612,7 +6612,7 @@
6612 "zh-cht": "啟動",
6613 "hu": "Aktiválás",
6614 "xloc": [
6615 - "default.handlebars->47->316"
6615 + "default.handlebars->47->315"
6616 ]
6617 },
6618 {
@@ -6639,8 +6639,8 @@
6639 "zh-cht": "主動設備共享",
6640 "hu": "Atív eszközmegosztás",
6641 "xloc": [
6642 - "default.handlebars->47->1018",
6643 - "default.handlebars->47->2046"
6642 + "default.handlebars->47->1017",
6643 + "default.handlebars->47->2045"
6644 ]
6645 },
6646 {
@@ -6667,7 +6667,7 @@
6667 "zh-cht": "活動登錄令牌",
6668 "hu": "Aktív bejelentkezési tokenek",
6669 "xloc": [
6670 - "default.handlebars->47->1938"
6670 + "default.handlebars->47->1937"
6671 ]
6672 },
6673 {
@@ -6694,7 +6694,7 @@
6694 "zh-cht": "活躍用戶",
6695 "hu": "Aktív felhasználó",
6696 "xloc": [
6697 - "default.handlebars->47->896"
6697 + "default.handlebars->47->895"
6698 ]
6699 },
6700 {
@@ -6721,7 +6721,7 @@
6721 "zh-cht": "活躍用戶",
6722 "hu": "Aktív felhasználók",
6723 "xloc": [
6724 - "default.handlebars->47->895"
6724 + "default.handlebars->47->894"
6725 ]
6726 },
6727 {
@@ -6773,8 +6773,8 @@
6773 "hu": "Hozzáadás",
6774 "xloc": [
6775 "default-mobile.handlebars->11->649",
6776 - "default.handlebars->47->1344",
6777 - "default.handlebars->47->1349"
6776 + "default.handlebars->47->1343",
6777 + "default.handlebars->47->1348"
6778 ]
6779 },
6780 {
@@ -6849,8 +6849,8 @@
6849 "zh-cht": "新增代理",
6850 "hu": "Agent hozzáadása",
6851 "xloc": [
6852 - "default.handlebars->47->2036",
6853 - "default.handlebars->47->459"
6852 + "default.handlebars->47->2035",
6853 + "default.handlebars->47->458"
6854 ]
6855 },
6856 {
@@ -6901,10 +6901,10 @@
6901 "zh-cht": "新增裝置",
6902 "hu": "Eszköz hozzáadása",
6903 "xloc": [
6904 - "default.handlebars->47->2040",
6905 - "default.handlebars->47->2695",
6906 - "default.handlebars->47->2885",
6907 - "default.handlebars->47->463"
6904 + "default.handlebars->47->2039",
6905 + "default.handlebars->47->2694",
6906 + "default.handlebars->47->2884",
6907 + "default.handlebars->47->462"
6908 ]
6909 },
6910 {
@@ -6931,7 +6931,7 @@
6931 "zh-cht": "新增裝置日誌",
6932 "hu": "Eszköz esemény hozzáadása",
6933 "xloc": [
6934 - "default.handlebars->47->1104"
6934 + "default.handlebars->47->1103"
6935 ]
6936 },
6937 {
@@ -6958,10 +6958,10 @@
6958 "zh-cht": "新增裝置群",
6959 "hu": "Eszközcsoport hozzáadása",
6960 "xloc": [
6961 - "default.handlebars->47->2183",
6962 - "default.handlebars->47->2689",
6963 - "default.handlebars->47->2873",
6964 - "default.handlebars->47->373"
6961 + "default.handlebars->47->2182",
6962 + "default.handlebars->47->2688",
6963 + "default.handlebars->47->2872",
6964 + "default.handlebars->47->372"
6965 ]
6966 },
6967 {
@@ -6988,7 +6988,7 @@
6988 "zh-cht": "新增裝置群權限",
6989 "hu": "Eszközcsoport engedélyek hozzáadása",
6990 "xloc": [
6991 - "default.handlebars->47->2180"
6991 + "default.handlebars->47->2179"
6992 ]
6993 },
6994 {
@@ -7015,8 +7015,8 @@
7015 "zh-cht": "新增裝置權限",
7016 "hu": "Eszköz engedélyek hozzáadása",
7017 "xloc": [
7018 - "default.handlebars->47->2185",
7019 - "default.handlebars->47->2187"
7018 + "default.handlebars->47->2184",
7019 + "default.handlebars->47->2186"
7020 ]
7021 },
7022 {
@@ -7067,7 +7067,7 @@
7067 "zh-cht": "新增Intel&reg; AMT裝置",
7068 "hu": "Intel&reg; AMT eszköz hozzáadása",
7069 "xloc": [
7070 - "default.handlebars->47->483"
7070 + "default.handlebars->47->482"
7071 ]
7072 },
7073 {
@@ -7094,7 +7094,7 @@
7094 "zh-cht": "新增密鑰",
7095 "hu": "Kulcs hozzáadása",
7096 "xloc": [
7097 - "default.handlebars->47->235"
7097 + "default.handlebars->47->234"
7098 ]
7099 },
7100 {
@@ -7121,7 +7121,7 @@
7121 "zh-cht": "新增本地",
7122 "hu": "Helyi hozzáadása",
7123 "xloc": [
7124 - "default.handlebars->47->453"
7124 + "default.handlebars->47->452"
7125 ]
7126 },
7127 {
@@ -7172,7 +7172,7 @@
7172 "zh-cht": "新增成員身份",
7173 "hu": "Hozzáadás Felhasználói Csoporthoz",
7174 "xloc": [
7175 - "default.handlebars->47->2905"
7175 + "default.handlebars->47->2904"
7176 ]
7177 },
7178 {
@@ -7199,7 +7199,7 @@
7199 "zh-cht": "新增 Mesh Agent",
7200 "hu": "Mesh Agent hozzáadása",
7201 "xloc": [
7202 - "default.handlebars->47->635"
7202 + "default.handlebars->47->634"
7203 ]
7204 },
7205 {
@@ -7250,12 +7250,12 @@
7250 "zh-cht": "新增安全密鑰",
7251 "hu": "Biztonsági kulcs hozzáadása",
7252 "xloc": [
7253 + "default.handlebars->47->1652",
7254 "default.handlebars->47->1653",
7254 - "default.handlebars->47->1654",
7255 - "default.handlebars->47->239",
7256 - "default.handlebars->47->241",
7257 - "default.handlebars->47->244",
7258 - "default.handlebars->47->246"
7255 + "default.handlebars->47->238",
7256 + "default.handlebars->47->240",
7257 + "default.handlebars->47->243",
7258 + "default.handlebars->47->245"
7259 ]
7260 },
7261 {
@@ -7283,7 +7283,7 @@
7283 "hu": "Felhasználó hozzáadása",
7284 "xloc": [
7285 "default-mobile.handlebars->11->856",
7286 - "default.handlebars->47->1010"
7286 + "default.handlebars->47->1009"
7287 ]
7288 },
7289 {
@@ -7310,7 +7310,7 @@
7310 "zh-cht": "新增用戶裝置權限",
7311 "hu": "Felhasználói eszköz engedélyek hozzáadása",
7312 "xloc": [
7313 - "default.handlebars->47->2190"
7313 + "default.handlebars->47->2189"
7314 ]
7315 },
7316 {
@@ -7337,10 +7337,10 @@
7337 "zh-cht": "新增用戶群",
7338 "hu": "Felhasználói csoport hozzáadása",
7339 "xloc": [
7340 - "default.handlebars->47->1011",
7341 - "default.handlebars->47->2030",
7342 - "default.handlebars->47->2182",
7343 - "default.handlebars->47->2879"
7340 + "default.handlebars->47->1010",
7341 + "default.handlebars->47->2029",
7342 + "default.handlebars->47->2181",
7343 + "default.handlebars->47->2878"
7344 ]
7345 },
7346 {
@@ -7367,7 +7367,7 @@
7367 "zh-cht": "新增用戶群裝置權限",
7368 "hu": "Felhasználói csoport eszköz engedélyek hozzáadása",
7369 "xloc": [
7370 - "default.handlebars->47->2192"
7370 + "default.handlebars->47->2191"
7371 ]
7372 },
7373 {
@@ -7445,8 +7445,8 @@
7445 "zh-cht": "新增用戶",
7446 "hu": "Felhasználók hozzáadása",
7447 "xloc": [
7448 - "default.handlebars->47->2029",
7449 - "default.handlebars->47->2684"
7448 + "default.handlebars->47->2028",
7449 + "default.handlebars->47->2683"
7450 ]
7451 },
7452 {
@@ -7473,7 +7473,7 @@
7473 "zh-cht": "將用戶新增到裝置群",
7474 "hu": "Felhasználók hozzáadása az eszköz csoporthoz",
7475 "xloc": [
7476 - "default.handlebars->47->2179"
7476 + "default.handlebars->47->2178"
7477 ]
7478 },
7479 {
@@ -7500,7 +7500,7 @@
7500 "zh-cht": "將用戶新增到用戶群",
7501 "hu": "Felhasználók hozzáadása az felhasználó csoporthoz",
7502 "xloc": [
7503 - "default.handlebars->47->2719"
7503 + "default.handlebars->47->2718"
7504 ]
7505 },
7506 {
@@ -7527,7 +7527,7 @@
7527 "zh-cht": "新增YubiKey&reg;OTP",
7528 "hu": "YubiKey® OTP hozzáadása",
7529 "xloc": [
7530 - "default.handlebars->47->236"
7530 + "default.handlebars->47->235"
7531 ]
7532 },
7533 {
@@ -7554,7 +7554,7 @@
7554 "zh-cht": "將本地設備添加到設備組 \\\"{0}\\\"。",
7555 "hu": "Helyi eszköz hozzáadása a \\\"{0}\\\" eszközcsoporthoz.",
7556 "xloc": [
7557 - "default.handlebars->47->464"
7557 + "default.handlebars->47->463"
7558 ]
7559 },
7560 {
@@ -7581,7 +7581,7 @@
7581 "zh-cht": "通過掃描本地網絡新增新的Intel&reg; AMT電腦。",
7582 "hu": "Adjon hozzá egy új Intel® AMT számítógépet a helyi hálózat átvizsgálásával.",
7583 "xloc": [
7584 - "default.handlebars->47->454"
7584 + "default.handlebars->47->453"
7585 ]
7586 },
7587 {
@@ -7632,7 +7632,7 @@
7632 "zh-cht": "新增位於本地網絡上的新Intel&reg; AMT電腦。",
7633 "hu": "Adjon hozzá egy új Intel® AMT számítógépet, amely a helyi hálózaton található.",
7634 "xloc": [
7635 - "default.handlebars->47->452"
7635 + "default.handlebars->47->451"
7636 ]
7637 },
7638 {
@@ -7659,7 +7659,7 @@
7659 "zh-cht": "將新的Intel&reg; AMT裝置新增到裝置群“{0}”。",
7660 "hu": "Új Intel® AMT eszköz hozzáadása a \\\"{0}\\\" eszközcsoporthoz.",
7661 "xloc": [
7662 - "default.handlebars->47->473"
7662 + "default.handlebars->47->472"
7663 ]
7664 },
7665 {
@@ -7686,8 +7686,8 @@
7686 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
7687 "hu": "Adjon hozzá egy új számítógépet ehhez az eszközcsoporthoz a Mesh Agent telepítésével.",
7688 "xloc": [
7689 - "default.handlebars->47->2035",
7690 - "default.handlebars->47->458"
7689 + "default.handlebars->47->2034",
7690 + "default.handlebars->47->457"
7691 ]
7692 },
7693 {
@@ -7714,8 +7714,8 @@
7714 "zh-cht": "添加位於本地網絡上的設備。",
7715 "hu": "Helyi hálózaton található eszköz hozzáadása.",
7716 "xloc": [
7717 - "default.handlebars->47->2039",
7718 - "default.handlebars->47->462"
7717 + "default.handlebars->47->2038",
7718 + "default.handlebars->47->461"
7719 ]
7720 },
7721 {
@@ -7742,7 +7742,7 @@
7742 "zh-cht": "添加本地設備",
7743 "hu": "Helyi eszköz hozzáadása",
7744 "xloc": [
7745 - "default.handlebars->47->472"
7745 + "default.handlebars->47->471"
7746 ]
7747 },
7748 {
@@ -7769,7 +7769,7 @@
7769 "zh-cht": "新增標籤",
7770 "hu": "Cimkék hozzáadása",
7771 "xloc": [
7772 - "default.handlebars->47->709"
7772 + "default.handlebars->47->708"
7773 ]
7774 },
7775 {
@@ -7796,7 +7796,7 @@
7796 "zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel&reg;AMT以將“{0}”分組。",
7797 "hu": "Adja hozzá, aktiválja és konfigurálja az Intel® AMT-t a \\\"{0}\\\" csoporthoz úgy, hogy rendszeres időközönként rendszergazdaként futtatja a MeshCmd-t a távoli eszközön.",
7798 "xloc": [
7799 - "default.handlebars->47->491"
7799 + "default.handlebars->47->490"
7800 ]
7801 },
7802 {
@@ -7823,7 +7823,7 @@
7823 "zh-cht": "添加了身份驗證應用程序",
7824 "hu": "Hitelesítési alkalmazás hozzáadva",
7825 "xloc": [
7826 - "default.handlebars->47->2422"
7826 + "default.handlebars->47->2421"
7827 ]
7828 },
7829 {
@@ -7850,7 +7850,7 @@
7850 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
7851 "hu": "{0} eszközmegosztás hozzáadva {1} és {2} között",
7852 "xloc": [
7853 - "default.handlebars->47->2433"
7853 + "default.handlebars->47->2432"
7854 ]
7855 },
7856 {
@@ -7877,7 +7877,7 @@
7877 "zh-cht": "添加了每天重複的設備共享 {0}。",
7878 "hu": "Naponta ismétlődő {0} eszközmegosztás hozzáadva.",
7879 "xloc": [
7880 - "default.handlebars->47->2470"
7880 + "default.handlebars->47->2469"
7881 ]
7882 },
7883 {
@@ -7904,7 +7904,7 @@
7904 "zh-cht": "添加了每週重複的設備共享 {0}。",
7905 "hu": "Hetente ismétlődő {0} eszközmegosztás hozzáadva.",
7906 "xloc": [
7907 - "default.handlebars->47->2471"
7907 + "default.handlebars->47->2470"
7908 ]
7909 },
7910 {
@@ -7931,7 +7931,7 @@
7931 "zh-cht": "添加了無限時間的設備共享 {0}。",
7932 "hu": "{0} eszközmegosztás hozzáadva korlátlan ideig.",
7933 "xloc": [
7934 - "default.handlebars->47->2463"
7934 + "default.handlebars->47->2462"
7935 ]
7936 },
7937 {
@@ -7958,8 +7958,8 @@
7958 "zh-cht": "已將設備{0}添加到設備組{1}",
7959 "hu": "A(z) {0} eszköz hozzáadva a(z) {1} eszközcsoporthoz",
7960 "xloc": [
7961 - "default.handlebars->47->2389",
7962 - "default.handlebars->47->2416"
7961 + "default.handlebars->47->2388",
7962 + "default.handlebars->47->2415"
7963 ]
7964 },
7965 {
@@ -7986,7 +7986,7 @@
7986 "zh-cht": "添加了登錄令牌",
7987 "hu": "Bejelentkezési token hozzáadva",
7988 "xloc": [
7989 - "default.handlebars->47->2447"
7989 + "default.handlebars->47->2446"
7990 ]
7991 },
7992 {
@@ -8013,7 +8013,7 @@
8013 "zh-cht": "增加推送通知認證設備",
8014 "hu": "Push értesítési hitelesítő eszköz hozzáadva",
8015 "xloc": [
8016 - "default.handlebars->47->2445"
8016 + "default.handlebars->47->2444"
8017 ]
8018 },
8019 {
@@ -8040,7 +8040,7 @@
8040 "zh-cht": "添加了安全密鑰",
8041 "hu": "Biztonsági kulcs hozzáadva",
8042 "xloc": [
8043 - "default.handlebars->47->2427"
8043 + "default.handlebars->47->2426"
8044 ]
8045 },
8046 {
@@ -8067,7 +8067,7 @@
8067 "zh-cht": "已將用戶組{0}添加到設備組{1}",
8068 "hu": "{0} felhasználói csoport hozzáadva a(z) {1} eszközcsoporthoz",
8069 "xloc": [
8070 - "default.handlebars->47->2400"
8070 + "default.handlebars->47->2399"
8071 ]
8072 },
8073 {
@@ -8094,8 +8094,8 @@
8094 "zh-cht": "已將用戶{0}添加到用戶組{1}",
8095 "hu": "{0} felhasználó hozzáadva a(z) {1} felhasználói csoporthoz",
8096 "xloc": [
8097 - "default.handlebars->47->2403",
8098 - "default.handlebars->47->2412"
8097 + "default.handlebars->47->2402",
8098 + "default.handlebars->47->2411"
8099 ]
8100 },
8101 {
@@ -8122,7 +8122,7 @@
8122 "zh-cht": "地址",
8123 "hu": "Cím",
8124 "xloc": [
8125 - "default.handlebars->47->368"
8125 + "default.handlebars->47->367"
8126 ]
8127 },
8128 {
@@ -8177,7 +8177,7 @@
8177 "hu": "Admin Control Mode (ACM)",
8178 "xloc": [
8179 "default-mobile.handlebars->11->780",
8180 - "default.handlebars->47->1535"
8180 + "default.handlebars->47->1534"
8181 ]
8182 },
8183 {
@@ -8205,7 +8205,7 @@
8205 "hu": "Adminisztrátor Hitelesítő adatok",
8206 "xloc": [
8207 "default-mobile.handlebars->11->786",
8208 - "default.handlebars->47->1541"
8208 + "default.handlebars->47->1540"
8209 ]
8210 },
8211 {
@@ -8260,7 +8260,7 @@
8260 "zh-cht": "管理領域",
8261 "hu": "Adminisztratív Realms",
8262 "xloc": [
8263 - "default.handlebars->47->2771"
8263 + "default.handlebars->47->2770"
8264 ]
8265 },
8266 {
@@ -8315,7 +8315,7 @@
8315 "zh-cht": "管理領域",
8316 "hu": "Adminisztratív Realms",
8317 "xloc": [
8318 - "default.handlebars->47->2616"
8318 + "default.handlebars->47->2615"
8319 ]
8320 },
8321 {
@@ -8342,7 +8342,7 @@
8342 "zh-cht": "管理員",
8343 "hu": "Adminisztrátor",
8344 "xloc": [
8345 - "default.handlebars->47->2541"
8345 + "default.handlebars->47->2540"
8346 ]
8347 },
8348 {
@@ -8370,7 +8370,7 @@
8370 "hu": "afrikai",
8371 "xloc": [
8372 "default-mobile.handlebars->11->104",
8373 - "default.handlebars->47->1656"
8373 + "default.handlebars->47->1655"
8374 ]
8375 },
8376 {
@@ -8401,11 +8401,11 @@
8401 "default-mobile.handlebars->11->463",
8402 "default-mobile.handlebars->11->520",
8403 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8404 - "default.handlebars->47->2263",
8405 - "default.handlebars->47->2276",
8406 - "default.handlebars->47->3129",
8407 - "default.handlebars->47->393",
8408 - "default.handlebars->47->667",
8404 + "default.handlebars->47->2262",
8405 + "default.handlebars->47->2275",
8406 + "default.handlebars->47->3128",
8407 + "default.handlebars->47->392",
8408 + "default.handlebars->47->666",
8409 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8410 "default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm"
8411 ]
@@ -8434,8 +8434,8 @@
8434 "zh-cht": "代理+Intel&reg; AMT",
8435 "hu": "Agent + Intel® AMT",
8436 "xloc": [
8437 - "default.handlebars->47->2265",
8438 - "default.handlebars->47->2278"
8437 + "default.handlebars->47->2264",
8438 + "default.handlebars->47->2277"
8439 ]
8440 },
8441 {
@@ -8491,8 +8491,8 @@
8491 "hu": "Agent konzol",
8492 "xloc": [
8493 "default-mobile.handlebars->11->902",
8494 - "default.handlebars->47->2200",
8495 - "default.handlebars->47->749"
8494 + "default.handlebars->47->2199",
8495 + "default.handlebars->47->748"
8496 ]
8497 },
8498 {
@@ -8519,7 +8519,7 @@
8519 "zh-cht": "代理錯誤計數器",
8520 "hu": "Agrnt hiba számlálók",
8521 "xloc": [
8522 - "default.handlebars->47->3098"
8522 + "default.handlebars->47->3097"
8523 ]
8524 },
8525 {
@@ -8546,7 +8546,7 @@
8546 "zh-cht": "代理 IP 地址",
8547 "hu": "Agent IP cím",
8548 "xloc": [
8549 - "default.handlebars->47->342"
8549 + "default.handlebars->47->341"
8550 ]
8551 },
8552 {
@@ -8601,7 +8601,7 @@
8601 "hu": "Agent üzenetek",
8602 "xloc": [
8603 "default-mobile.handlebars->11->436",
8604 - "default.handlebars->47->444"
8604 + "default.handlebars->47->443"
8605 ]
8606 },
8607 {
@@ -8707,8 +8707,8 @@
8707 "zh-cht": "代理自行共享",
8708 "hu": "Agent Ön-Megosztás",
8709 "xloc": [
8710 - "default.handlebars->47->1039",
8711 - "default.handlebars->47->2067"
8710 + "default.handlebars->47->1038",
8711 + "default.handlebars->47->2066"
8712 ]
8713 },
8714 {
@@ -8735,7 +8735,7 @@
8735 "zh-cht": "代理時段",
8736 "hu": "Agent munkamenetek",
8737 "xloc": [
8738 - "default.handlebars->47->3114"
8738 + "default.handlebars->47->3113"
8739 ]
8740 },
8741 {
@@ -8787,7 +8787,7 @@
8787 "hu": "Agent Cimke",
8788 "xloc": [
8789 "default-mobile.handlebars->11->517",
8790 - "default.handlebars->47->874"
8790 + "default.handlebars->47->873"
8791 ]
8792 },
8793 {
@@ -8814,8 +8814,8 @@
8814 "zh-cht": "代理類型",
8815 "hu": "Agent típus",
8816 "xloc": [
8817 - "default.handlebars->47->335",
8818 - "default.handlebars->47->362"
8817 + "default.handlebars->47->334",
8818 + "default.handlebars->47->361"
8819 ]
8820 },
8821 {
@@ -8842,7 +8842,7 @@
8842 "zh-cht": "代理類型",
8843 "hu": "Agent típusok",
8844 "xloc": [
8845 - "default.handlebars->47->2274",
8845 + "default.handlebars->47->2273",
8846 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
8847 ]
8848 },
@@ -8870,8 +8870,8 @@
8870 "zh-cht": "代理版本",
8871 "hu": "Agent verzió",
8872 "xloc": [
8873 - "default.handlebars->47->336",
8874 - "default.handlebars->47->363"
8873 + "default.handlebars->47->335",
8874 + "default.handlebars->47->362"
8875 ]
8876 },
8877 {
@@ -8898,7 +8898,7 @@
8898 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
8899 "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}",
8900 "xloc": [
8901 - "default.handlebars->47->2386"
8901 + "default.handlebars->47->2385"
8902 ]
8903 },
8904 {
@@ -8925,9 +8925,9 @@
8925 "zh-cht": "代理已連接",
8926 "hu": "Agent csatlakozott",
8927 "xloc": [
8928 - "default.handlebars->47->255",
8929 - "default.handlebars->47->997",
8930 - "default.handlebars->47->998"
8928 + "default.handlebars->47->254",
8929 + "default.handlebars->47->996",
8930 + "default.handlebars->47->997"
8931 ]
8932 },
8933 {
@@ -8954,7 +8954,7 @@
8954 "zh-cht": "與有限特權相關的代理",
8955 "hu": "Agent csatlakozott, korlátozott jogosultságokkal",
8956 "xloc": [
8957 - "default.handlebars->47->256"
8957 + "default.handlebars->47->255"
8958 ]
8959 },
8960 {
@@ -8981,7 +8981,7 @@
8981 "zh-cht": "代理已斷開連接",
8982 "hu": "Agent lecsatlakozott",
8983 "xloc": [
8984 - "default.handlebars->47->260"
8984 + "default.handlebars->47->259"
8985 ]
8986 },
8987 {
@@ -9008,7 +9008,7 @@
9008 "zh-cht": "正在跳過代理哈希檢查,這是不安全的。",
9009 "hu": "Az Agent hash ellenőrzése kihagyásra kerül, ami nem biztonságos.",
9010 "xloc": [
9011 - "default.handlebars->47->93"
9011 + "default.handlebars->47->92"
9012 ]
9013 },
9014 {
@@ -9108,7 +9108,7 @@
9108 "hu": "Offline Agent",
9109 "xloc": [
9110 "default-mobile.handlebars->11->823",
9111 - "default.handlebars->47->1579"
9111 + "default.handlebars->47->1578"
9112 ]
9113 },
9114 {
@@ -9136,7 +9136,7 @@
9136 "hu": "Online Agent",
9137 "xloc": [
9138 "default-mobile.handlebars->11->822",
9139 - "default.handlebars->47->1578"
9139 + "default.handlebars->47->1577"
9140 ]
9141 },
9142 {
@@ -9235,7 +9235,7 @@
9235 "zh-cht": "代理在特權降低的遠程設備上運行。",
9236 "hu": "Az Agent csökkentett jogosultságokkal fut a távoli eszközön.",
9237 "xloc": [
9238 - "default.handlebars->47->991"
9238 + "default.handlebars->47->990"
9239 ]
9240 },
9241 {
@@ -9358,9 +9358,9 @@
9358 "zh-cht": "代理",
9359 "hu": "Agent-ek",
9360 "xloc": [
9361 - "default.handlebars->47->2231",
9362 - "default.handlebars->47->3142",
9363 - "default.handlebars->47->547"
9361 + "default.handlebars->47->2230",
9362 + "default.handlebars->47->3141",
9363 + "default.handlebars->47->546"
9364 ]
9365 },
9366 {
@@ -9388,7 +9388,7 @@
9388 "hu": "albán",
9389 "xloc": [
9390 "default-mobile.handlebars->11->105",
9391 - "default.handlebars->47->1657"
9391 + "default.handlebars->47->1656"
9392 ]
9393 },
9394 {
@@ -9418,7 +9418,7 @@
9418 "default-mobile.handlebars->11->355",
9419 "default-mobile.handlebars->11->687",
9420 "default-mobile.handlebars->11->689",
9421 - "default.handlebars->47->2962",
9421 + "default.handlebars->47->2961",
9422 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
9423 ]
9424 },
@@ -9446,7 +9446,7 @@
9446 "zh-cht": "全部可用",
9447 "hu": "Összes elérhető",
9448 "xloc": [
9449 - "default.handlebars->47->2503"
9449 + "default.handlebars->47->2502"
9450 ]
9451 },
9452 {
@@ -9473,8 +9473,8 @@
9473 "zh-cht": "所有可用的代理",
9474 "hu": "Az összes rendelkezésre álló Agent",
9475 "xloc": [
9476 - "default.handlebars->47->2232",
9477 - "default.handlebars->47->548"
9476 + "default.handlebars->47->2231",
9477 + "default.handlebars->47->547"
9478 ]
9479 },
9480 {
@@ -9501,7 +9501,7 @@
9501 "zh-cht": "所有顯示",
9502 "hu": "Összes Kijelző",
9503 "xloc": [
9504 - "default.handlebars->47->1382"
9504 + "default.handlebars->47->1381"
9505 ]
9506 },
9507 {
@@ -9528,7 +9528,7 @@
9528 "zh-cht": "所有事件",
9529 "hu": "Összes Esemény",
9530 "xloc": [
9531 - "default.handlebars->47->2501"
9531 + "default.handlebars->47->2500"
9532 ]
9533 },
9534 {
@@ -9555,9 +9555,9 @@
9555 "zh-cht": "全部聚焦",
9556 "hu": "Teljes Focus mode",
9557 "xloc": [
9558 - "default.handlebars->47->1313",
9559 - "default.handlebars->47->1315",
9560 - "default.handlebars->47->1316"
9558 + "default.handlebars->47->1312",
9559 + "default.handlebars->47->1314",
9560 + "default.handlebars->47->1315"
9561 ]
9562 },
9563 {
@@ -9611,8 +9611,8 @@
9611 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
9612 "hu": "Engedélyezi a felhasználók számára az eszközcsoport és a csoportba tartozó eszközök kezelését.",
9613 "xloc": [
9614 - "default.handlebars->47->2144",
9615 - "default.handlebars->47->2716"
9614 + "default.handlebars->47->2143",
9615 + "default.handlebars->47->2715"
9616 ]
9617 },
9618 {
@@ -9639,7 +9639,7 @@
9639 "zh-cht": "允許用戶管理此裝置。",
9640 "hu": "Engedélyezze a felhasználóknak, hogy kezeljék ezt az eszközt.",
9641 "xloc": [
9642 - "default.handlebars->47->2145"
9642 + "default.handlebars->47->2144"
9643 ]
9644 },
9645 {
@@ -9666,7 +9666,7 @@
9666 "zh-cht": "允許",
9667 "hu": "Engedélyezve",
9668 "xloc": [
9669 - "default.handlebars->47->283"
9669 + "default.handlebars->47->282"
9670 ]
9671 },
9672 {
@@ -9747,8 +9747,8 @@
9747 "xloc": [
9748 "default-mobile.handlebars->11->642",
9749 "default-mobile.handlebars->11->646",
9750 - "default.handlebars->47->1337",
9751 - "default.handlebars->47->1341"
9750 + "default.handlebars->47->1336",
9751 + "default.handlebars->47->1340"
9752 ]
9753 },
9754 {
@@ -9775,7 +9775,7 @@
9775 "zh-cht": "替代Shell",
9776 "hu": "Alternatív Shell",
9777 "xloc": [
9778 - "default.handlebars->47->1303"
9778 + "default.handlebars->47->1302"
9779 ]
9780 },
9781 {
@@ -9858,7 +9858,7 @@
9858 "zh-cht": "備用(F10 = ESC + 0)",
9859 "hu": "Alternatív (F10 = ESC+0)",
9860 "xloc": [
9861 - "default.handlebars->47->1416",
9861 + "default.handlebars->47->1415",
9862 "sharing.handlebars->11->37"
9863 ]
9864 },
@@ -9941,10 +9941,10 @@
9941 "zh-cht": "一直通知",
9942 "hu": "Minden kapcsolat értesítés",
9943 "xloc": [
9944 - "default.handlebars->47->2006",
9945 - "default.handlebars->47->2675",
9946 - "default.handlebars->47->2780",
9947 - "default.handlebars->47->905"
9944 + "default.handlebars->47->2005",
9945 + "default.handlebars->47->2674",
9946 + "default.handlebars->47->2779",
9947 + "default.handlebars->47->904"
9948 ]
9949 },
9950 {
@@ -9971,10 +9971,10 @@
9971 "zh-cht": "一直提示",
9972 "hu": "Minden kapcsolat engedélykérés",
9973 "xloc": [
9974 - "default.handlebars->47->2007",
9975 - "default.handlebars->47->2676",
9976 - "default.handlebars->47->2781",
9977 - "default.handlebars->47->906"
9974 + "default.handlebars->47->2006",
9975 + "default.handlebars->47->2675",
9976 + "default.handlebars->47->2780",
9977 + "default.handlebars->47->905"
9978 ]
9979 },
9980 {
@@ -10064,7 +10064,7 @@
10064 "hu": "Ismeretlen hiba történt.",
10065 "de": "Ein unbekannter Fehler ist aufgetreten.",
10066 "xloc": [
10067 - "default.handlebars->47->2914"
10067 + "default.handlebars->47->2913"
10068 ]
10069 },
10070 {
@@ -10122,7 +10122,7 @@
10122 "zh-cht": "Android APK",
10123 "hu": "Android APK",
10124 "xloc": [
10125 - "default.handlebars->47->608"
10125 + "default.handlebars->47->607"
10126 ]
10127 },
10128 {
@@ -10209,7 +10209,7 @@
10209 {
10210 "en": "Android MeshAgent",
10211 "xloc": [
10212 - "default.handlebars->47->553"
10212 + "default.handlebars->47->552"
10213 ]
10214 },
10215 {
@@ -10264,8 +10264,8 @@
10264 "zh-cht": "殺毒軟件未激活",
10265 "hu": "A vírusirtó nem aktív",
10266 "xloc": [
10267 - "default.handlebars->47->2267",
10268 - "default.handlebars->47->2281"
10267 + "default.handlebars->47->2266",
10268 + "default.handlebars->47->2280"
10269 ]
10270 },
10271 {
@@ -10293,7 +10293,7 @@
10293 "hu": "Antivírus",
10294 "xloc": [
10295 "default-mobile.handlebars->11->743",
10296 - "default.handlebars->47->893"
10296 + "default.handlebars->47->892"
10297 ]
10298 },
10299 {
@@ -10320,7 +10320,7 @@
10320 "zh-cht": "任何可支持的",
10321 "hu": "Bármilyen támogatott",
10322 "xloc": [
10323 - "default.handlebars->47->521"
10323 + "default.handlebars->47->520"
10324 ]
10325 },
10326 {
@@ -10402,7 +10402,7 @@
10402 "zh-cht": "蘋果macOS",
10403 "hu": "Apple macOS",
10404 "xloc": [
10405 - "default.handlebars->47->563"
10405 + "default.handlebars->47->562"
10406 ]
10407 },
10408 {
@@ -10429,7 +10429,7 @@
10429 "zh-cht": "僅限Apple macOS",
10430 "hu": "csak Apple macOS",
10431 "xloc": [
10432 - "default.handlebars->47->523"
10432 + "default.handlebars->47->522"
10433 ]
10434 },
10435 {
@@ -10579,7 +10579,7 @@
10579 "zh-cht": "應用程序,始終連接",
10580 "hu": "Alkalmazás, állandó csatlakozás",
10581 "xloc": [
10582 - "default.handlebars->47->576"
10582 + "default.handlebars->47->575"
10583 ]
10584 },
10585 {
@@ -10606,7 +10606,7 @@
10606 "zh-cht": "應用程序,根據用戶請求連接",
10607 "hu": "Alkalmazás, csatlakozás a felhasználó kérésére",
10608 "xloc": [
10609 - "default.handlebars->47->575"
10609 + "default.handlebars->47->574"
10610 ]
10611 },
10612 {
@@ -10634,7 +10634,7 @@
10634 "hu": "arab (Algéria)",
10635 "xloc": [
10636 "default-mobile.handlebars->11->107",
10637 - "default.handlebars->47->1659"
10637 + "default.handlebars->47->1658"
10638 ]
10639 },
10640 {
@@ -10662,7 +10662,7 @@
10662 "hu": "arab (Bahrein)",
10663 "xloc": [
10664 "default-mobile.handlebars->11->108",
10665 - "default.handlebars->47->1660"
10665 + "default.handlebars->47->1659"
10666 ]
10667 },
10668 {
@@ -10690,7 +10690,7 @@
10690 "hu": "arab (Egyiptom)",
10691 "xloc": [
10692 "default-mobile.handlebars->11->109",
10693 - "default.handlebars->47->1661"
10693 + "default.handlebars->47->1660"
10694 ]
10695 },
10696 {
@@ -10718,7 +10718,7 @@
10718 "hu": "arab (Irak)",
10719 "xloc": [
10720 "default-mobile.handlebars->11->110",
10721 - "default.handlebars->47->1662"
10721 + "default.handlebars->47->1661"
10722 ]
10723 },
10724 {
@@ -10746,7 +10746,7 @@
10746 "hu": "arab (Jordánia)",
10747 "xloc": [
10748 "default-mobile.handlebars->11->111",
10749 - "default.handlebars->47->1663"
10749 + "default.handlebars->47->1662"
10750 ]
10751 },
10752 {
@@ -10774,7 +10774,7 @@
10774 "hu": "arab (Kuvait)",
10775 "xloc": [
10776 "default-mobile.handlebars->11->112",
10777 - "default.handlebars->47->1664"
10777 + "default.handlebars->47->1663"
10778 ]
10779 },
10780 {
@@ -10802,7 +10802,7 @@
10802 "hu": "arab (Libanon)",
10803 "xloc": [
10804 "default-mobile.handlebars->11->113",
10805 - "default.handlebars->47->1665"
10805 + "default.handlebars->47->1664"
10806 ]
10807 },
10808 {
@@ -10830,7 +10830,7 @@
10830 "hu": "arab (Líbia)",
10831 "xloc": [
10832 "default-mobile.handlebars->11->114",
10833 - "default.handlebars->47->1666"
10833 + "default.handlebars->47->1665"
10834 ]
10835 },
10836 {
@@ -10858,7 +10858,7 @@
10858 "hu": "arab (Marokkó)",
10859 "xloc": [
10860 "default-mobile.handlebars->11->115",
10861 - "default.handlebars->47->1667"
10861 + "default.handlebars->47->1666"
10862 ]
10863 },
10864 {
@@ -10886,7 +10886,7 @@
10886 "hu": "arab (Omán)",
10887 "xloc": [
10888 "default-mobile.handlebars->11->116",
10889 - "default.handlebars->47->1668"
10889 + "default.handlebars->47->1667"
10890 ]
10891 },
10892 {
@@ -10914,7 +10914,7 @@
10914 "hu": "arab (Katar)",
10915 "xloc": [
10916 "default-mobile.handlebars->11->117",
10917 - "default.handlebars->47->1669"
10917 + "default.handlebars->47->1668"
10918 ]
10919 },
10920 {
@@ -10942,7 +10942,7 @@
10942 "hu": "arab (Szaúd-Arábia)",
10943 "xloc": [
10944 "default-mobile.handlebars->11->118",
10945 - "default.handlebars->47->1670"
10945 + "default.handlebars->47->1669"
10946 ]
10947 },
10948 {
@@ -10970,7 +10970,7 @@
10970 "hu": "arab",
10971 "xloc": [
10972 "default-mobile.handlebars->11->106",
10973 - "default.handlebars->47->1658"
10973 + "default.handlebars->47->1657"
10974 ]
10975 },
10976 {
@@ -10998,7 +10998,7 @@
10998 "hu": "arab (Szíria)",
10999 "xloc": [
11000 "default-mobile.handlebars->11->119",
11001 - "default.handlebars->47->1671"
11001 + "default.handlebars->47->1670"
11002 ]
11003 },
11004 {
@@ -11026,7 +11026,7 @@
11026 "hu": "arab (Tunézia)",
11027 "xloc": [
11028 "default-mobile.handlebars->11->120",
11029 - "default.handlebars->47->1672"
11029 + "default.handlebars->47->1671"
11030 ]
11031 },
11032 {
@@ -11054,7 +11054,7 @@
11054 "hu": "arab (Egyesült Arab Emírségek)",
11055 "xloc": [
11056 "default-mobile.handlebars->11->121",
11057 - "default.handlebars->47->1673"
11057 + "default.handlebars->47->1672"
11058 ]
11059 },
11060 {
@@ -11082,7 +11082,7 @@
11082 "hu": "arab (Jemen)",
11083 "xloc": [
11084 "default-mobile.handlebars->11->122",
11085 - "default.handlebars->47->1674"
11085 + "default.handlebars->47->1673"
11086 ]
11087 },
11088 {
@@ -11110,7 +11110,7 @@
11110 "hu": "aragóniai",
11111 "xloc": [
11112 "default-mobile.handlebars->11->123",
11113 - "default.handlebars->47->1675"
11113 + "default.handlebars->47->1674"
11114 ]
11115 },
11116 {
@@ -11140,9 +11140,9 @@
11140 "default-mobile.handlebars->11->722",
11141 "default-mobile.handlebars->11->724",
11142 "default-mobile.handlebars->11->726",
11143 - "default.handlebars->47->1485",
11144 - "default.handlebars->47->1487",
11145 - "default.handlebars->47->1489"
11143 + "default.handlebars->47->1484",
11144 + "default.handlebars->47->1486",
11145 + "default.handlebars->47->1488"
11146 ]
11147 },
11148 {
@@ -11169,7 +11169,7 @@
11169 "zh-cht": "你確定要連接到{0}裝置嗎?",
11170 "hu": "Biztos, hogy {0} eszközökhöz szeretne csatlakozni?",
11171 "xloc": [
11172 - "default.handlebars->47->447"
11172 + "default.handlebars->47->446"
11173 ]
11174 },
11175 {
@@ -11197,7 +11197,7 @@
11197 "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.",
11198 "xloc": [
11199 "default-mobile.handlebars->11->863",
11200 - "default.handlebars->47->2111"
11200 + "default.handlebars->47->2110"
11201 ]
11202 },
11203 {
@@ -11224,7 +11224,7 @@
11224 "zh-cht": "你確定要刪除節點{0}嗎?",
11225 "hu": "Biztos, hogy törölni akarja a {0} node-ot?",
11226 "xloc": [
11227 - "default.handlebars->47->1230"
11227 + "default.handlebars->47->1229"
11228 ]
11229 },
11230 {
@@ -11251,7 +11251,7 @@
11251 "zh-cht": "你確定要卸載所選代理嗎?",
11252 "hu": "Biztos, hogy eltávolítja a kiválasztott Agentet?",
11253 "xloc": [
11254 - "default.handlebars->47->1219"
11254 + "default.handlebars->47->1218"
11255 ]
11256 },
11257 {
@@ -11278,7 +11278,7 @@
11278 "zh-cht": "你確定要卸載所選的{0}代理嗎?",
11279 "hu": "Biztos, hogy eltávolítja a(z) {0} Agentet?",
11280 "xloc": [
11281 - "default.handlebars->47->1218"
11281 + "default.handlebars->47->1217"
11282 ]
11283 },
11284 {
@@ -11305,7 +11305,7 @@
11305 "zh-cht": "你確定要{0}外掛嗎:{1}",
11306 "hu": "Biztosm, hogy {0} szeretné használni a következő beépülő modult: {1}",
11307 "xloc": [
11308 - "default.handlebars->47->3194"
11308 + "default.handlebars->47->3193"
11309 ]
11310 },
11311 {
@@ -11361,7 +11361,7 @@
11361 "hu": "örmény",
11362 "xloc": [
11363 "default-mobile.handlebars->11->124",
11364 - "default.handlebars->47->1676"
11364 + "default.handlebars->47->1675"
11365 ]
11366 },
11367 {
@@ -11552,7 +11552,7 @@
11552 "hu": "asszámi",
11553 "xloc": [
11554 "default-mobile.handlebars->11->125",
11555 - "default.handlebars->47->1677"
11555 + "default.handlebars->47->1676"
11556 ]
11557 },
11558 {
@@ -11659,8 +11659,8 @@
11659 "zh-cht": "Windows 助手 (.exe)",
11660 "hu": "Assistant Windows rendszerhez (.exe)",
11661 "xloc": [
11662 - "default.handlebars->47->614",
11663 - "default.handlebars->47->618"
11662 + "default.handlebars->47->613",
11663 + "default.handlebars->47->617"
11664 ]
11665 },
11666 {
@@ -11715,7 +11715,7 @@
11715 "hu": "asztúriai",
11716 "xloc": [
11717 "default-mobile.handlebars->11->126",
11718 - "default.handlebars->47->1678"
11718 + "default.handlebars->47->1677"
11719 ]
11720 },
11721 {
@@ -11742,7 +11742,7 @@
11742 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
11743 "hu": "Intel(R) AMT ACM üzemmód aktiválásának kísérlete",
11744 "xloc": [
11745 - "default.handlebars->47->2355"
11745 + "default.handlebars->47->2354"
11746 ]
11747 },
11748 {
@@ -11796,9 +11796,9 @@
11796 "default-mobile.handlebars->11->658",
11797 "default-mobile.handlebars->11->662",
11798 "default-mobile.handlebars->11->674",
11799 - "default.handlebars->47->1391",
11800 - "default.handlebars->47->1395",
11801 - "default.handlebars->47->1407",
11799 + "default.handlebars->47->1390",
11800 + "default.handlebars->47->1394",
11801 + "default.handlebars->47->1406",
11802 "ssh.handlebars->3->21",
11803 "ssh.handlebars->3->22",
11804 "ssh.handlebars->3->5",
@@ -11829,7 +11829,7 @@
11829 "zh-cht": "認證軟體",
11830 "hu": "Hitelesítő alkalmazás beállítva",
11831 "xloc": [
11832 - "default.handlebars->47->2784"
11832 + "default.handlebars->47->2783"
11833 ]
11834 },
11835 {
@@ -11856,9 +11856,9 @@
11856 "zh-cht": "認證設備",
11857 "hu": "Hitelesítési eszköz",
11858 "xloc": [
11859 - "default.handlebars->47->1639",
11860 - "default.handlebars->47->1641",
11861 - "default.handlebars->47->1645"
11859 + "default.handlebars->47->1638",
11860 + "default.handlebars->47->1640",
11861 + "default.handlebars->47->1644"
11862 ]
11863 },
11864 {
@@ -11887,8 +11887,8 @@
11887 "xloc": [
11888 "default-mobile.handlebars->11->675",
11889 "default-mobile.handlebars->11->681",
11890 - "default.handlebars->47->1409",
11891 - "default.handlebars->47->1424"
11890 + "default.handlebars->47->1408",
11891 + "default.handlebars->47->1423"
11892 ]
11893 },
11894 {
@@ -11919,10 +11919,10 @@
11919 "default-mobile.handlebars->11->311",
11920 "default-mobile.handlebars->11->70",
11921 "default-mobile.handlebars->11->73",
11922 - "default.handlebars->47->1635",
11923 - "default.handlebars->47->1637",
11924 - "default.handlebars->47->214",
11925 - "default.handlebars->47->219"
11922 + "default.handlebars->47->1634",
11923 + "default.handlebars->47->1636",
11924 + "default.handlebars->47->213",
11925 + "default.handlebars->47->218"
11926 ]
11927 },
11928 {
@@ -11949,7 +11949,7 @@
11949 "zh-cht": "認證軟體啟動成功。",
11950 "hu": "Hitelesítő alkalmazás aktiválása sikeres.",
11951 "xloc": [
11952 - "default.handlebars->47->215"
11952 + "default.handlebars->47->214"
11953 ]
11954 },
11955 {
@@ -11976,7 +11976,7 @@
11976 "zh-cht": "認證軟體已刪除。",
11977 "hu": "Hitelesítő alkalmazás eltávolítva.",
11978 "xloc": [
11979 - "default.handlebars->47->220"
11979 + "default.handlebars->47->219"
11980 ]
11981 },
11982 {
@@ -12057,8 +12057,8 @@
12057 "zh-cht": "自動刪除",
12058 "hu": "Automatikus eltávolítás",
12059 "xloc": [
12060 - "default.handlebars->47->1991",
12061 - "default.handlebars->47->2494"
12060 + "default.handlebars->47->1990",
12061 + "default.handlebars->47->2493"
12062 ]
12063 },
12064 {
@@ -12116,7 +12116,7 @@
12116 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
12117 "hu": "Agent core dump fájl automatikus letöltése: \\\"{0}\\\"",
12118 "xloc": [
12119 - "default.handlebars->47->2436"
12119 + "default.handlebars->47->2435"
12120 ]
12121 },
12122 {
@@ -12222,7 +12222,7 @@
12222 "zh-cht": "自動移除非活動設備",
12223 "hu": "Az inaktív eszközök automatikus eltávolítása",
12224 "xloc": [
12225 - "default.handlebars->47->2139"
12225 + "default.handlebars->47->2138"
12226 ]
12227 },
12228 {
@@ -12249,7 +12249,7 @@
12249 "zh-cht": "可用內存",
12250 "hu": "Elérhető memória",
12251 "xloc": [
12252 - "default.handlebars->47->3123"
12252 + "default.handlebars->47->3122"
12253 ]
12254 },
12255 {
@@ -12277,7 +12277,7 @@
12277 "hu": "azerbajdzsáni",
12278 "xloc": [
12279 "default-mobile.handlebars->11->127",
12280 - "default.handlebars->47->1679"
12280 + "default.handlebars->47->1678"
12281 ]
12282 },
12283 {
@@ -12307,9 +12307,9 @@
12307 "default-mobile.handlebars->11->730",
12308 "default-mobile.handlebars->11->734",
12309 "default-mobile.handlebars->11->738",
12310 - "default.handlebars->47->880",
12311 - "default.handlebars->47->884",
12312 - "default.handlebars->47->888"
12310 + "default.handlebars->47->879",
12311 + "default.handlebars->47->883",
12312 + "default.handlebars->47->887"
12313 ]
12314 },
12315 {
@@ -12337,7 +12337,7 @@
12337 "hu": "BIOS",
12338 "xloc": [
12339 "default-mobile.handlebars->11->795",
12340 - "default.handlebars->47->1550"
12340 + "default.handlebars->47->1549"
12341 ]
12342 },
12343 {
@@ -12455,7 +12455,7 @@
12455 "hu": "BackSpace",
12456 "xloc": [
12457 "default-mobile.handlebars->11->623",
12458 - "default.handlebars->47->1319"
12458 + "default.handlebars->47->1318"
12459 ]
12460 },
12461 {
@@ -12482,7 +12482,7 @@
12482 "zh-cht": "背景與互動",
12483 "hu": "Háttérben és interaktív módon",
12484 "xloc": [
12485 - "default.handlebars->47->571"
12485 + "default.handlebars->47->570"
12486 ]
12487 },
12488 {
@@ -12509,10 +12509,10 @@
12509 "zh-cht": "背景與互動",
12510 "hu": "Háttérben és interaktív módon",
12511 "xloc": [
12512 - "default.handlebars->47->2238",
12513 - "default.handlebars->47->2245",
12514 - "default.handlebars->47->534",
12515 - "default.handlebars->47->555"
12512 + "default.handlebars->47->2237",
12513 + "default.handlebars->47->2244",
12514 + "default.handlebars->47->533",
12515 + "default.handlebars->47->554"
12516 ]
12517 },
12518 {
@@ -12539,11 +12539,11 @@
12539 "zh-cht": "僅背景",
12540 "hu": "Csak háttérben",
12541 "xloc": [
12542 - "default.handlebars->47->2239",
12543 - "default.handlebars->47->2246",
12544 - "default.handlebars->47->535",
12545 - "default.handlebars->47->556",
12546 - "default.handlebars->47->572"
12542 + "default.handlebars->47->2238",
12543 + "default.handlebars->47->2245",
12544 + "default.handlebars->47->534",
12545 + "default.handlebars->47->555",
12546 + "default.handlebars->47->571"
12547 ]
12548 },
12549 {
@@ -12598,8 +12598,8 @@
12598 "zh-cht": "備用碼",
12599 "hu": "Biztonsági kódok generálva",
12600 "xloc": [
12601 - "default.handlebars->47->2787",
12602 - "default.handlebars->47->3010"
12601 + "default.handlebars->47->2786",
12602 + "default.handlebars->47->3009"
12603 ]
12604 },
12605 {
@@ -12627,7 +12627,7 @@
12627 "hu": "A biztonsági kódok zároltak",
12628 "xloc": [
12629 "default-mobile.handlebars->11->63",
12630 - "default.handlebars->47->205"
12630 + "default.handlebars->47->204"
12631 ]
12632 },
12633 {
@@ -12654,7 +12654,7 @@
12654 "zh-cht": "備份路徑不能在 meshcentral-data 文件夾中設置,備份設置被忽略。",
12655 "hu": "A biztonsági mentés elérési útja nem állítható be a meshcentral-data mappában. A biztonsági mentés beállításai figyelmen kívül maradtak.",
12656 "xloc": [
12657 - "default.handlebars->47->105"
12657 + "default.handlebars->47->104"
12658 ]
12659 },
12660 {
@@ -12681,7 +12681,7 @@
12681 "zh-cht": "錯誤的簽名",
12682 "hu": "Rossz aláírás",
12683 "xloc": [
12684 - "default.handlebars->47->3105"
12684 + "default.handlebars->47->3104"
12685 ]
12686 },
12687 {
@@ -12708,7 +12708,7 @@
12708 "zh-cht": "錯誤的網絡憑證",
12709 "hu": "Rossz web tanúsítvány",
12710 "xloc": [
12711 - "default.handlebars->47->3104"
12711 + "default.handlebars->47->3103"
12712 ]
12713 },
12714 {
@@ -12736,7 +12736,7 @@
12736 "hu": "baszk",
12737 "xloc": [
12738 "default-mobile.handlebars->11->128",
12739 - "default.handlebars->47->1680"
12739 + "default.handlebars->47->1679"
12740 ]
12741 },
12742 {
@@ -12763,7 +12763,7 @@
12763 "zh-cht": "批處理文件上傳",
12764 "hu": "Kötegelt fájl feltölés",
12765 "xloc": [
12766 - "default.handlebars->47->725"
12766 + "default.handlebars->47->724"
12767 ]
12768 },
12769 {
@@ -12817,7 +12817,7 @@
12817 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
12818 "hu": "{0} fájl kötegelt feltöltése a(z) {1} mappába",
12819 "xloc": [
12820 - "default.handlebars->47->2435"
12820 + "default.handlebars->47->2434"
12821 ]
12822 },
12823 {
@@ -12845,7 +12845,7 @@
12845 "hu": "fehérorosz",
12846 "xloc": [
12847 "default-mobile.handlebars->11->130",
12848 - "default.handlebars->47->1682"
12848 + "default.handlebars->47->1681"
12849 ]
12850 },
12851 {
@@ -12873,7 +12873,7 @@
12873 "hu": "bengáli",
12874 "xloc": [
12875 "default-mobile.handlebars->11->131",
12876 - "default.handlebars->47->1683"
12876 + "default.handlebars->47->1682"
12877 ]
12878 },
12879 {
@@ -12934,7 +12934,7 @@
12934 "en": "BitLocker",
12935 "xloc": [
12936 "default-mobile.handlebars->11->744",
12937 - "default.handlebars->47->894"
12937 + "default.handlebars->47->893"
12938 ]
12939 },
12940 {
@@ -12962,7 +12962,7 @@
12962 "hu": "Rendszerbetöltő",
12963 "xloc": [
12964 "default-mobile.handlebars->11->757",
12965 - "default.handlebars->47->1502"
12965 + "default.handlebars->47->1501"
12966 ]
12967 },
12968 {
@@ -12990,7 +12990,7 @@
12990 "hu": "bosznia",
12991 "xloc": [
12992 "default-mobile.handlebars->11->132",
12993 - "default.handlebars->47->1684"
12993 + "default.handlebars->47->1683"
12994 ]
12995 },
12996 {
@@ -13018,7 +13018,7 @@
13018 "hu": "breton",
13019 "xloc": [
13020 "default-mobile.handlebars->11->133",
13021 - "default.handlebars->47->1685"
13021 + "default.handlebars->47->1684"
13022 ]
13023 },
13024 {
@@ -13045,7 +13045,7 @@
13045 "zh-cht": "廣播",
13046 "hu": "Broadcast üzenet...",
13047 "xloc": [
13048 - "default.handlebars->47->2682",
13048 + "default.handlebars->47->2681",
13049 "default.handlebars->container->column_l->p4->3->1->0->3->1"
13050 ]
13051 },
@@ -13073,7 +13073,7 @@
13073 "zh-cht": "廣播消息",
13074 "hu": "Broadcast üzenet",
13075 "xloc": [
13076 - "default.handlebars->47->2598"
13076 + "default.handlebars->47->2597"
13077 ]
13078 },
13079 {
@@ -13100,7 +13100,7 @@
13100 "zh-cht": "向所有連接的用戶廣播消息。",
13101 "hu": "Üzenet küldése az összes csatlakoztatott felhasználónak.",
13102 "xloc": [
13103 - "default.handlebars->47->2593"
13103 + "default.handlebars->47->2592"
13104 ]
13105 },
13106 {
@@ -13127,7 +13127,7 @@
13127 "zh-cht": "瀏覽器",
13128 "hu": "Böngésző",
13129 "xloc": [
13130 - "default.handlebars->47->2984"
13130 + "default.handlebars->47->2983"
13131 ]
13132 },
13133 {
@@ -13210,7 +13210,7 @@
13210 "hu": "bolgár",
13211 "xloc": [
13212 "default-mobile.handlebars->11->129",
13213 - "default.handlebars->47->1681"
13213 + "default.handlebars->47->1680"
13214 ]
13215 },
13216 {
@@ -13238,7 +13238,7 @@
13238 "hu": "burmai",
13239 "xloc": [
13240 "default-mobile.handlebars->11->134",
13241 - "default.handlebars->47->1686"
13241 + "default.handlebars->47->1685"
13242 ]
13243 },
13244 {
@@ -13265,7 +13265,7 @@
13265 "zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
13266 "hu": "Alapértelmezés szerint az inaktív eszközök 1 nap után eltávolításra kerülnek.",
13267 "xloc": [
13268 - "default.handlebars->47->2141"
13268 + "default.handlebars->47->2140"
13269 ]
13270 },
13271 {
@@ -13292,7 +13292,7 @@
13292 "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
13293 "hu": "Alapértelmezés szerint az inaktív eszközök {0} nap után eltávolításra kerülnek.",
13294 "xloc": [
13295 - "default.handlebars->47->2142"
13295 + "default.handlebars->47->2141"
13296 ]
13297 },
13298 {
@@ -13326,7 +13326,7 @@
13326 "zh-cht": "字節輸入",
13327 "hu": "Fogadott Byte-ok",
13328 "xloc": [
13329 - "default.handlebars->47->2980"
13329 + "default.handlebars->47->2979"
13330 ]
13331 },
13332 {
@@ -13353,7 +13353,7 @@
13353 "zh-cht": "字節輸出",
13354 "hu": "Küldött Byte-ok",
13355 "xloc": [
13356 - "default.handlebars->47->2981"
13356 + "default.handlebars->47->2980"
13357 ]
13358 },
13359 {
@@ -13422,7 +13422,7 @@
13422 "hu": "CCM",
13423 "xloc": [
13424 "default-mobile.handlebars->11->503",
13425 - "default.handlebars->47->856"
13425 + "default.handlebars->47->855"
13426 ]
13427 },
13428 {
@@ -13449,7 +13449,7 @@
13449 "zh-cht": "CCM模式",
13450 "hu": "CCM mode",
13451 "xloc": [
13452 - "default.handlebars->47->2094"
13452 + "default.handlebars->47->2093"
13453 ]
13454 },
13455 {
@@ -13477,9 +13477,9 @@
13477 "hu": "CIRA",
13478 "xloc": [
13479 "default-mobile.handlebars->11->464",
13480 - "default.handlebars->47->3130",
13481 - "default.handlebars->47->395",
13482 - "default.handlebars->47->669"
13480 + "default.handlebars->47->3129",
13481 + "default.handlebars->47->394",
13482 + "default.handlebars->47->668"
13483 ]
13484 },
13485 {
@@ -13506,7 +13506,7 @@
13506 "zh-cht": "CIRA伺服器",
13507 "hu": "CIRA Kiszolgáló",
13508 "xloc": [
13509 - "default.handlebars->47->3178"
13509 + "default.handlebars->47->3177"
13510 ]
13511 },
13512 {
@@ -13533,7 +13533,7 @@
13533 "zh-cht": "CIRA伺服器指令",
13534 "hu": "CIRA kiszolgáló parancsok",
13535 "xloc": [
13536 - "default.handlebars->47->3179"
13536 + "default.handlebars->47->3178"
13537 ]
13538 },
13539 {
@@ -13560,7 +13560,7 @@
13560 "zh-cht": "當服務器處於僅 LAN 或僅 WAN 模式時,CIRA 本地 FQDN 將被忽略。",
13561 "hu": "A CIRA helyi FQDN-eket figyelmen kívül hagyja, ha a kiszolgáló csak LAN vagy csak WAN üzemmódban van.",
13562 "xloc": [
13563 - "default.handlebars->47->91"
13563 + "default.handlebars->47->90"
13564 ]
13565 },
13566 {
@@ -13587,7 +13587,7 @@
13587 "zh-cht": "CIRA設置",
13588 "hu": "CIRA beállítás",
13589 "xloc": [
13590 - "default.handlebars->47->2102"
13590 + "default.handlebars->47->2101"
13591 ]
13592 },
13593 {
@@ -13615,8 +13615,8 @@
13615 "hu": "CPU",
13616 "xloc": [
13617 "default-mobile.handlebars->11->801",
13618 - "default.handlebars->47->1556",
13619 - "default.handlebars->47->3154",
13618 + "default.handlebars->47->1555",
13619 + "default.handlebars->47->3153",
13620 "default.handlebars->container->column_l->p40->3->1->p40type->5"
13621 ]
13622 },
@@ -13644,7 +13644,7 @@
13644 "zh-cht": "CPU負載",
13645 "hu": "CPU terhelés",
13646 "xloc": [
13647 - "default.handlebars->47->3119"
13647 + "default.handlebars->47->3118"
13648 ]
13649 },
13650 {
@@ -13671,7 +13671,7 @@
13671 "zh-cht": "最近15分鐘的CPU負載",
13672 "hu": "CPU terhelés az elmúlt 15 percben",
13673 "xloc": [
13674 - "default.handlebars->47->3122"
13674 + "default.handlebars->47->3121"
13675 ]
13676 },
13677 {
@@ -13698,7 +13698,7 @@
13698 "zh-cht": "最近5分鐘的CPU負載",
13699 "hu": "CPU terhelés az elmúlt 5 percben",
13700 "xloc": [
13701 - "default.handlebars->47->3121"
13701 + "default.handlebars->47->3120"
13702 ]
13703 },
13704 {
@@ -13725,7 +13725,7 @@
13725 "zh-cht": "最近一分鐘的CPU負載",
13726 "hu": "CPU terhelés az utolsó percben",
13727 "xloc": [
13728 - "default.handlebars->47->3120"
13728 + "default.handlebars->47->3119"
13729 ]
13730 },
13731 {
@@ -13752,8 +13752,8 @@
13752 "zh-cht": "CR+LF",
13753 "hu": "CR+LF",
13754 "xloc": [
13755 - "default.handlebars->47->1387",
13756 - "default.handlebars->47->1418",
13755 + "default.handlebars->47->1386",
13756 + "default.handlebars->47->1417",
13757 "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
13758 "sharing.handlebars->11->25",
13759 "sharing.handlebars->11->39",
@@ -13784,7 +13784,7 @@
13784 "zh-cht": "CSV",
13785 "hu": "CSV",
13786 "xloc": [
13787 - "default.handlebars->47->2511"
13787 + "default.handlebars->47->2510"
13788 ]
13789 },
13790 {
@@ -13811,9 +13811,9 @@
13811 "zh-cht": "CSV格式",
13812 "hu": "CSV Formátum",
13813 "xloc": [
13814 - "default.handlebars->47->2515",
13815 - "default.handlebars->47->2585",
13816 - "default.handlebars->47->734"
13814 + "default.handlebars->47->2514",
13815 + "default.handlebars->47->2584",
13816 + "default.handlebars->47->733"
13817 ]
13818 },
13819 {
@@ -13864,7 +13864,7 @@
13864 "zh-cht": "呼叫錯誤",
13865 "hu": "Hívás hiba",
13866 "xloc": [
13867 - "default.handlebars->47->3195"
13867 + "default.handlebars->47->3194"
13868 ]
13869 },
13870 {
@@ -13874,8 +13874,8 @@
13874 "nl": "CallMeBot",
13875 "pl": "CallMeBot",
13876 "xloc": [
13877 - "default.handlebars->47->1612",
13878 - "default.handlebars->47->2822"
13877 + "default.handlebars->47->1611",
13878 + "default.handlebars->47->2821"
13879 ]
13880 },
13881 {
@@ -13902,7 +13902,7 @@
13902 "zh-cht": "不能有超過 4 個 CIRA 本地 FQDN。忽略價值。",
13903 "hu": "Nem lehet több mint 4 CIRA helyi FQDN. Érték figyelmen kívül hagyása.",
13904 "xloc": [
13905 - "default.handlebars->47->92"
13905 + "default.handlebars->47->91"
13906 ]
13907 },
13908 {
@@ -13932,9 +13932,9 @@
13932 "agent-translations.json",
13933 "default-mobile.handlebars->11->320",
13934 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
13935 - "default.handlebars->47->1958",
13936 - "default.handlebars->47->3184",
13937 - "default.handlebars->47->507",
13935 + "default.handlebars->47->1957",
13936 + "default.handlebars->47->3183",
13937 + "default.handlebars->47->506",
13938 "default.handlebars->container->dialog->idx_dlgButtonBar",
13939 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
13940 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -14048,10 +14048,10 @@
14048 "default-mobile.handlebars->11->812",
14049 "default-mobile.handlebars->11->817",
14050 "default-mobile.handlebars->11->819",
14051 - "default.handlebars->47->1561",
14052 - "default.handlebars->47->1567",
14053 - "default.handlebars->47->1572",
14054 - "default.handlebars->47->1574"
14051 + "default.handlebars->47->1560",
14052 + "default.handlebars->47->1566",
14053 + "default.handlebars->47->1571",
14054 + "default.handlebars->47->1573"
14055 ]
14056 },
14057 {
@@ -14080,8 +14080,8 @@
14080 "xloc": [
14081 "default-mobile.handlebars->11->804",
14082 "default-mobile.handlebars->11->810",
14083 - "default.handlebars->47->1559",
14084 - "default.handlebars->47->1565"
14083 + "default.handlebars->47->1558",
14084 + "default.handlebars->47->1564"
14085 ]
14086 },
14087 {
@@ -14109,7 +14109,7 @@
14109 "hu": "katalán",
14110 "xloc": [
14111 "default-mobile.handlebars->11->135",
14112 - "default.handlebars->47->1687"
14112 + "default.handlebars->47->1686"
14113 ]
14114 },
14115 {
@@ -14136,7 +14136,7 @@
14136 "zh-cht": "在這裡為中心顯示地圖",
14137 "hu": "Térkép középpont",
14138 "xloc": [
14139 - "default.handlebars->47->809"
14139 + "default.handlebars->47->808"
14140 ]
14141 },
14142 {
@@ -14188,8 +14188,8 @@
14188 "hu": "A tanúsítvány {0} napon belül lejár",
14189 "xloc": [
14190 "default-mobile.handlebars->11->61",
14191 - "default.handlebars->47->114",
14192 - "default.handlebars->47->115"
14191 + "default.handlebars->47->113",
14192 + "default.handlebars->47->114"
14193 ]
14194 },
14195 {
@@ -14217,7 +14217,7 @@
14217 "hu": "chamorro",
14218 "xloc": [
14219 "default-mobile.handlebars->11->136",
14220 - "default.handlebars->47->1688"
14220 + "default.handlebars->47->1687"
14221 ]
14222 },
14223 {
@@ -14273,7 +14273,7 @@
14273 "zh-cht": "更改{0}的電郵",
14274 "hu": "{0} e-mail-címének módosítása",
14275 "xloc": [
14276 - "default.handlebars->47->2860"
14276 + "default.handlebars->47->2859"
14277 ]
14278 },
14279 {
@@ -14300,9 +14300,9 @@
14300 "zh-cht": "更改群",
14301 "hu": "Csoport módosítása",
14302 "xloc": [
14303 + "default.handlebars->47->1226",
14304 "default.handlebars->47->1227",
14304 - "default.handlebars->47->1228",
14305 - "default.handlebars->47->963"
14305 + "default.handlebars->47->962"
14306 ]
14307 },
14308 {
@@ -14330,8 +14330,8 @@
14330 "hu": "Jelszó módosítása",
14331 "xloc": [
14332 "default-mobile.handlebars->11->328",
14333 - "default.handlebars->47->1904",
14334 - "default.handlebars->47->2808"
14333 + "default.handlebars->47->1903",
14334 + "default.handlebars->47->2807"
14335 ]
14336 },
14337 {
@@ -14358,7 +14358,7 @@
14358 "zh-cht": "更改{0}的密碼",
14359 "hu": "Jelszó módosítása: {0}",
14360 "xloc": [
14361 - "default.handlebars->47->2869"
14361 + "default.handlebars->47->2868"
14362 ]
14363 },
14364 {
@@ -14385,7 +14385,7 @@
14385 "zh-cht": "更改{0}的真實名稱",
14386 "hu": "{0} felhasználó teljes nevének módosítása",
14387 "xloc": [
14388 - "default.handlebars->47->2855"
14388 + "default.handlebars->47->2854"
14389 ]
14390 },
14391 {
@@ -14546,7 +14546,7 @@
14546 "zh-cht": "更改該用戶的密碼",
14547 "hu": "A felhasználó jelszavának módosítása",
14548 "xloc": [
14549 - "default.handlebars->47->2807"
14549 + "default.handlebars->47->2806"
14550 ]
14551 },
14552 {
@@ -14600,7 +14600,7 @@
14600 "zh-cht": "在此處更改你的帳戶電郵地址。",
14601 "hu": "Itt módosíthatja fiókja e-mail címét.",
14602 "xloc": [
14603 - "default.handlebars->47->1891"
14603 + "default.handlebars->47->1890"
14604 ]
14605 },
14606 {
@@ -14627,7 +14627,7 @@
14627 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
14628 "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.",
14629 "xloc": [
14630 - "default.handlebars->47->1897"
14630 + "default.handlebars->47->1896"
14631 ]
14632 },
14633 {
@@ -14654,7 +14654,7 @@
14654 "zh-cht": "帳戶憑證已更改",
14655 "hu": "A fiók hitelesítő adatai megváltoztak",
14656 "xloc": [
14657 - "default.handlebars->47->2407"
14657 + "default.handlebars->47->2406"
14658 ]
14659 },
14660 {
@@ -14681,7 +14681,7 @@
14681 "zh-cht": "將帳戶顯示名稱更改為 {0}。",
14682 "hu": "A fiók megjelenített neve {0}-re változott.",
14683 "xloc": [
14684 - "default.handlebars->47->2459"
14684 + "default.handlebars->47->2458"
14685 ]
14686 },
14687 {
@@ -14708,8 +14708,8 @@
14708 "zh-cht": "{1}組中的設備{0}已更改:{2}",
14709 "hu": "{0} eszközt a {1} csoportból áthelyezésre került {2} csoportba",
14710 "xloc": [
14711 - "default.handlebars->47->2391",
14712 - "default.handlebars->47->2472"
14711 + "default.handlebars->47->2390",
14712 + "default.handlebars->47->2471"
14713 ]
14714 },
14715 {
@@ -14736,7 +14736,7 @@
14736 "zh-cht": "語言從{1}更改為{2}",
14737 "hu": "A nyelv megváltozott. régi nyelv: {1}, új nyelv: {2}",
14738 "xloc": [
14739 - "default.handlebars->47->2335"
14739 + "default.handlebars->47->2334"
14740 ]
14741 },
14742 {
@@ -14763,8 +14763,8 @@
14763 "zh-cht": "已更改{0}的用戶設備權限",
14764 "hu": "Módosult a(z) {0} felhasználói eszközjogai",
14765 "xloc": [
14766 - "default.handlebars->47->2393",
14767 - "default.handlebars->47->2414"
14766 + "default.handlebars->47->2392",
14767 + "default.handlebars->47->2413"
14768 ]
14769 },
14770 {
@@ -14816,7 +14816,7 @@
14816 "hu": "A nyelv megváltoztatásához az oldal frissítése szükséges!",
14817 "xloc": [
14818 "default-mobile.handlebars->11->303",
14819 - "default.handlebars->47->1855"
14819 + "default.handlebars->47->1854"
14820 ]
14821 },
14822 {
@@ -14843,12 +14843,12 @@
14843 "zh-cht": "聊天",
14844 "hu": "Csevegés",
14845 "xloc": [
14846 - "default.handlebars->47->1071",
14847 - "default.handlebars->47->1096",
14848 - "default.handlebars->47->2532",
14846 + "default.handlebars->47->1070",
14847 + "default.handlebars->47->1095",
14848 + "default.handlebars->47->2531",
14849 + "default.handlebars->47->2802",
14850 "default.handlebars->47->2803",
14850 - "default.handlebars->47->2804",
14851 - "default.handlebars->47->952"
14851 + "default.handlebars->47->951"
14852 ]
14853 },
14854 {
@@ -14877,8 +14877,8 @@
14877 "xloc": [
14878 "default-mobile.handlebars->11->892",
14879 "default-mobile.handlebars->11->912",
14880 - "default.handlebars->47->2173",
14881 - "default.handlebars->47->2211"
14880 + "default.handlebars->47->2172",
14881 + "default.handlebars->47->2210"
14882 ]
14883 },
14884 {
@@ -14906,7 +14906,7 @@
14906 "hu": "Csevegés kezdeményezés, kattintson ide az elfogadáshoz.",
14907 "xloc": [
14908 "default-mobile.handlebars->11->944",
14909 - "default.handlebars->47->3069"
14909 + "default.handlebars->47->3068"
14910 ]
14911 },
14912 {
@@ -14961,7 +14961,7 @@
14961 "hu": "csecsen",
14962 "xloc": [
14963 "default-mobile.handlebars->11->137",
14964 - "default.handlebars->47->1689"
14964 + "default.handlebars->47->1688"
14965 ]
14966 },
14967 {
@@ -14988,7 +14988,7 @@
14988 "zh-cht": "檢查並單擊確定以清除錯誤日誌。",
14989 "hu": "Jelölje be, és kattintson az OK gombra a hibanapló törléséhez.",
14990 "xloc": [
14991 - "default.handlebars->47->199"
14991 + "default.handlebars->47->198"
14992 ]
14993 },
14994 {
@@ -15015,7 +15015,7 @@
15015 "zh-cht": "檢查並單擊確定以開始伺服器自我更新。",
15016 "hu": "Ellenőrizze le és kattintson az OK gombra a kiszolgáló önfrissítésének elindításához.",
15017 "xloc": [
15018 - "default.handlebars->47->194"
15018 + "default.handlebars->47->193"
15019 ]
15020 },
15021 {
@@ -15053,7 +15053,7 @@
15053 "pl": "Sprawdź swoją aplikacje wiadomości i wprowadź kod weryfikacyjny.",
15054 "de": "Prüfen Sie Ihre Messenger-App und geben Sie den Verifikationscode ein.",
15055 "xloc": [
15056 - "default.handlebars->47->251"
15056 + "default.handlebars->47->250"
15057 ]
15058 },
15059 {
@@ -15080,7 +15080,7 @@
15080 "zh-cht": "檢查你的電話並輸入驗證碼。",
15081 "hu": "Ellenőrizze telefonját, és írja be az megerősítő kódot.",
15082 "xloc": [
15083 - "default.handlebars->47->248"
15083 + "default.handlebars->47->247"
15084 ]
15085 },
15086 {
@@ -15107,8 +15107,8 @@
15107 "zh-cht": "檢查...",
15108 "hu": "Ellenőrzés...",
15109 "xloc": [
15110 - "default.handlebars->47->1655",
15111 - "default.handlebars->47->3189"
15110 + "default.handlebars->47->1654",
15111 + "default.handlebars->47->3188"
15112 ]
15113 },
15114 {
@@ -15136,7 +15136,7 @@
15136 "hu": "kínai",
15137 "xloc": [
15138 "default-mobile.handlebars->11->138",
15139 - "default.handlebars->47->1690"
15139 + "default.handlebars->47->1689"
15140 ]
15141 },
15142 {
@@ -15164,7 +15164,7 @@
15164 "hu": "kínai (Hongkong)",
15165 "xloc": [
15166 "default-mobile.handlebars->11->139",
15167 - "default.handlebars->47->1691"
15167 + "default.handlebars->47->1690"
15168 ]
15169 },
15170 {
@@ -15192,7 +15192,7 @@
15192 "hu": "kínai (Kínai Népköztársaság)",
15193 "xloc": [
15194 "default-mobile.handlebars->11->140",
15195 - "default.handlebars->47->1692"
15195 + "default.handlebars->47->1691"
15196 ]
15197 },
15198 {
@@ -15220,7 +15220,7 @@
15220 "hu": "kínai (egyszerűsített)",
15221 "xloc": [
15222 "default-mobile.handlebars->11->300",
15223 - "default.handlebars->47->1852"
15223 + "default.handlebars->47->1851"
15224 ]
15225 },
15226 {
@@ -15248,7 +15248,7 @@
15248 "hu": "kínai (Szingapúr)",
15249 "xloc": [
15250 "default-mobile.handlebars->11->141",
15251 - "default.handlebars->47->1693"
15251 + "default.handlebars->47->1692"
15252 ]
15253 },
15254 {
@@ -15276,7 +15276,7 @@
15276 "hu": "kínai (Tajvan)",
15277 "xloc": [
15278 "default-mobile.handlebars->11->142",
15279 - "default.handlebars->47->1694"
15279 + "default.handlebars->47->1693"
15280 ]
15281 },
15282 {
@@ -15304,7 +15304,7 @@
15304 "hu": "kínai (hagyományos)",
15305 "xloc": [
15306 "default-mobile.handlebars->11->301",
15307 - "default.handlebars->47->1853"
15307 + "default.handlebars->47->1852"
15308 ]
15309 },
15310 {
@@ -15360,7 +15360,7 @@
15360 "hu": "csuvas",
15361 "xloc": [
15362 "default-mobile.handlebars->11->143",
15363 - "default.handlebars->47->1695"
15363 + "default.handlebars->47->1694"
15364 ]
15365 },
15366 {
@@ -15418,11 +15418,11 @@
15418 "default-mobile.handlebars->11->712",
15419 "default-mobile.handlebars->11->80",
15420 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
15421 - "default.handlebars->47->1459",
15422 - "default.handlebars->47->1461",
15423 - "default.handlebars->47->1463",
15424 - "default.handlebars->47->1465",
15425 - "default.handlebars->47->2329",
15421 + "default.handlebars->47->1458",
15422 + "default.handlebars->47->1460",
15423 + "default.handlebars->47->1462",
15424 + "default.handlebars->47->1464",
15425 + "default.handlebars->47->2328",
15426 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
15427 "default.handlebars->container->column_l->p41->3->1",
15428 "messenger.handlebars->xbottom->1->1->0->5",
@@ -15457,7 +15457,7 @@
15457 "hu": "RDP hitelesítő adatok törlése?",
15458 "xloc": [
15459 "default-mobile.handlebars->11->608",
15460 - "default.handlebars->47->1273"
15460 + "default.handlebars->47->1272"
15461 ]
15462 },
15463 {
@@ -15485,7 +15485,7 @@
15485 "hu": "SSH hitelesítő adatok törlése?",
15486 "xloc": [
15487 "default-mobile.handlebars->11->606",
15488 - "default.handlebars->47->1271"
15488 + "default.handlebars->47->1270"
15489 ]
15490 },
15491 {
@@ -15512,7 +15512,7 @@
15512 "zh-cht": "清除保安編碼",
15513 "hu": "Tokenek törlése",
15514 "xloc": [
15515 - "default.handlebars->47->228"
15515 + "default.handlebars->47->227"
15516 ]
15517 },
15518 {
@@ -15539,8 +15539,8 @@
15539 "zh-cht": "清除代理核心",
15540 "hu": "Agent Core törlése",
15541 "xloc": [
15542 - "default.handlebars->47->693",
15543 - "default.handlebars->47->729"
15542 + "default.handlebars->47->692",
15543 + "default.handlebars->47->728"
15544 ]
15545 },
15546 {
@@ -15567,7 +15567,7 @@
15567 "zh-cht": "清除所選設備上的代理核心?",
15568 "hu": "Agent Core törlése a kijelölt eszköz(ök)ön?",
15569 "xloc": [
15570 - "default.handlebars->47->728"
15570 + "default.handlebars->47->727"
15571 ]
15572 },
15573 {
@@ -15595,7 +15595,7 @@
15595 "hu": "Összes törlése",
15596 "xloc": [
15597 "default-mobile.handlebars->11->927",
15598 - "default.handlebars->47->3052"
15598 + "default.handlebars->47->3051"
15599 ]
15600 },
15601 {
@@ -15623,7 +15623,7 @@
15623 "hu": "Szűrő törlése",
15624 "xloc": [
15625 "default-mobile.handlebars->11->400",
15626 - "default.handlebars->47->354"
15626 + "default.handlebars->47->353"
15627 ]
15628 },
15629 {
@@ -15651,7 +15651,7 @@
15651 "hu": "Core törlése",
15652 "xloc": [
15653 "default-mobile.handlebars->11->833",
15654 - "default.handlebars->47->1589"
15654 + "default.handlebars->47->1588"
15655 ]
15656 },
15657 {
@@ -15678,7 +15678,7 @@
15678 "zh-cht": "從應用程序中清除秘密,然後重試。你只有幾分鐘的時間來輸入正確的代碼。",
15679 "hu": "Törölje ki a titkos kulcsot az alkalmazásból, és próbálja újra. Csak néhány perce van a megfelelő kód megadására.",
15680 "xloc": [
15681 - "default.handlebars->47->218"
15681 + "default.handlebars->47->217"
15682 ]
15683 },
15684 {
@@ -15706,7 +15706,7 @@
15706 "hu": "Törölje ezt az értesítést",
15707 "xloc": [
15708 "default-mobile.handlebars->11->926",
15709 - "default.handlebars->47->3051"
15709 + "default.handlebars->47->3050"
15710 ]
15711 },
15712 {
@@ -15814,8 +15814,8 @@
15814 "zh-cht": "單擊此處編輯裝置群名稱",
15815 "hu": "Kattintson ide az eszközcsoport nevének szerkesztéséhez",
15816 "xloc": [
15817 - "default.handlebars->47->1972",
15818 - "default.handlebars->47->2272"
15817 + "default.handlebars->47->1971",
15818 + "default.handlebars->47->2271"
15819 ]
15820 },
15821 {
@@ -15842,7 +15842,7 @@
15842 "zh-cht": "單擊此處編輯伺服器端裝置名稱",
15843 "hu": "Kattintson ide a kiszolgáló-oldali eszköznév szerkesztéséhez",
15844 "xloc": [
15845 - "default.handlebars->47->825"
15845 + "default.handlebars->47->824"
15846 ]
15847 },
15848 {
@@ -15869,7 +15869,7 @@
15869 "zh-cht": "單擊此處編輯用戶群名稱",
15870 "hu": "Kattintson ide a felhasználói csoport nevének szerkesztéséhez",
15871 "xloc": [
15872 - "default.handlebars->47->2655"
15872 + "default.handlebars->47->2654"
15873 ]
15874 },
15875 {
@@ -16004,7 +16004,7 @@
16004 "hu": "Kattintson az OK gombra, ha megerősítő e-mailt szeretne küldeni a következő címre:",
16005 "xloc": [
16006 "default-mobile.handlebars->11->313",
16007 - "default.handlebars->47->1888"
16007 + "default.handlebars->47->1887"
16008 ]
16009 },
16010 {
@@ -16111,7 +16111,7 @@
16111 "hu": "Client Control Mode (CCM)",
16112 "xloc": [
16113 "default-mobile.handlebars->11->779",
16114 - "default.handlebars->47->1534"
16114 + "default.handlebars->47->1533"
16115 ]
16116 },
16117 {
@@ -16138,7 +16138,7 @@
16138 "zh-cht": "客戶編號",
16139 "hu": "Client ID",
16140 "xloc": [
16141 - "default.handlebars->47->1951"
16141 + "default.handlebars->47->1950"
16142 ]
16143 },
16144 {
@@ -16165,7 +16165,7 @@
16165 "zh-cht": "客戶端啟動的遠程訪問",
16166 "hu": "Ügyfél által kezdeményezett távoli elérés",
16167 "xloc": [
16168 - "default.handlebars->47->2101"
16168 + "default.handlebars->47->2100"
16169 ]
16170 },
16171 {
@@ -16192,7 +16192,7 @@
16192 "zh-cht": "客戶機密",
16193 "hu": "Client Secret",
16194 "xloc": [
16195 - "default.handlebars->47->1952"
16195 + "default.handlebars->47->1951"
16196 ]
16197 },
16198 {
@@ -16249,11 +16249,11 @@
16249 "xloc": [
16250 "agent-translations.json",
16251 "default-mobile.handlebars->11->78",
16252 - "default.handlebars->47->1375",
16253 - "default.handlebars->47->1435",
16254 - "default.handlebars->47->226",
16255 - "default.handlebars->47->234",
16256 - "default.handlebars->47->3183",
16252 + "default.handlebars->47->1374",
16253 + "default.handlebars->47->1434",
16254 + "default.handlebars->47->225",
16255 + "default.handlebars->47->233",
16256 + "default.handlebars->47->3182",
16257 "sharing.handlebars->11->52"
16258 ]
16259 },
@@ -16281,7 +16281,7 @@
16281 "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
16282 "hu": "Lezárt asztali multiplex munkamenet \\\"{0}\\\", {1} másodperc",
16283 "xloc": [
16284 - "default.handlebars->47->2479"
16284 + "default.handlebars->47->2478"
16285 ]
16286 },
16287 {
@@ -16308,7 +16308,7 @@
16308 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
16309 "hu": "Lezárt asztali multiplex munkamenet, {0} másodperc",
16310 "xloc": [
16311 - "default.handlebars->47->2340"
16311 + "default.handlebars->47->2339"
16312 ]
16313 },
16314 {
@@ -16335,7 +16335,7 @@
16335 "zh-cht": "碼",
16336 "hu": "Code",
16337 "xloc": [
16338 - "default.handlebars->47->317"
16338 + "default.handlebars->47->316"
16339 ]
16340 },
16341 {
@@ -16443,7 +16443,7 @@
16443 "zh-cht": "命令",
16444 "hu": "Parancs",
16445 "xloc": [
16446 - "default.handlebars->47->633"
16446 + "default.handlebars->47->632"
16447 ]
16448 },
16449 {
@@ -16470,7 +16470,7 @@
16470 "zh-cht": "命令行",
16471 "hu": "Parancssor",
16472 "xloc": [
16473 - "default.handlebars->47->121"
16473 + "default.handlebars->47->120"
16474 ]
16475 },
16476 {
@@ -16498,9 +16498,9 @@
16498 "hu": "Parancsok",
16499 "xloc": [
16500 "default-mobile.handlebars->11->914",
16501 - "default.handlebars->47->1073",
16502 - "default.handlebars->47->1098",
16503 - "default.handlebars->47->2213"
16501 + "default.handlebars->47->1072",
16502 + "default.handlebars->47->1097",
16503 + "default.handlebars->47->2212"
16504 ]
16505 },
16506 {
@@ -16513,7 +16513,7 @@
16513 "hu": "Parancsok fájlból",
16514 "de": "Befehle aus Datei",
16515 "xloc": [
16516 - "default.handlebars->47->754"
16516 + "default.handlebars->47->753"
16517 ]
16518 },
16519 {
@@ -16526,7 +16526,7 @@
16526 "hu": "Parancsok a kiszolgálón lévő fájlból",
16527 "de": "Befehle aus Datei vom Server",
16528 "xloc": [
16529 - "default.handlebars->47->755"
16529 + "default.handlebars->47->754"
16530 ]
16531 },
16532 {
@@ -16539,7 +16539,7 @@
16539 "hu": "Parancsok a szövegdobozból",
16540 "de": "Befehle aus Textfeld",
16541 "xloc": [
16542 - "default.handlebars->47->753"
16542 + "default.handlebars->47->752"
16543 ]
16544 },
16545 {
@@ -16566,8 +16566,8 @@
16566 "zh-cht": "通用裝置群",
16567 "hu": "Eszközcsoport jogosultságok",
16568 "xloc": [
16569 - "default.handlebars->47->2690",
16570 - "default.handlebars->47->2874"
16569 + "default.handlebars->47->2689",
16570 + "default.handlebars->47->2873"
16571 ]
16572 },
16573 {
@@ -16594,8 +16594,8 @@
16594 "zh-cht": "通用裝置",
16595 "hu": "Eszköz jogosultságok",
16596 "xloc": [
16597 - "default.handlebars->47->2696",
16598 - "default.handlebars->47->2886"
16597 + "default.handlebars->47->2695",
16598 + "default.handlebars->47->2885"
16599 ]
16600 },
16601 {
@@ -16623,7 +16623,7 @@
16623 "hu": "Fordítás ideje",
16624 "xloc": [
16625 "default-mobile.handlebars->11->753",
16626 - "default.handlebars->47->1498"
16626 + "default.handlebars->47->1497"
16627 ]
16628 },
16629 {
@@ -16674,7 +16674,7 @@
16674 "zh-cht": "壓縮檔案...",
16675 "hu": "Fájlok tömörítése...",
16676 "xloc": [
16677 - "default.handlebars->47->1429",
16677 + "default.handlebars->47->1428",
16678 "sharing.handlebars->11->47"
16679 ]
16680 },
@@ -16711,7 +16711,7 @@
16711 "hu": "Konfigurációs fájl rekordok",
16712 "de": "Aufzeichnungen von Konfigurationsdatei",
16713 "xloc": [
16714 - "default.handlebars->47->3028"
16714 + "default.handlebars->47->3027"
16715 ]
16716 },
16717 {
@@ -16740,14 +16740,14 @@
16740 "xloc": [
16741 "default-mobile.handlebars->11->603",
16742 "default-mobile.handlebars->11->864",
16743 - "default.handlebars->47->1222",
16744 - "default.handlebars->47->1231",
16745 - "default.handlebars->47->2112",
16746 - "default.handlebars->47->2562",
16747 - "default.handlebars->47->2645",
16748 - "default.handlebars->47->2712",
16749 - "default.handlebars->47->2872",
16750 - "default.handlebars->47->704"
16743 + "default.handlebars->47->1221",
16744 + "default.handlebars->47->1230",
16745 + "default.handlebars->47->2111",
16746 + "default.handlebars->47->2561",
16747 + "default.handlebars->47->2644",
16748 + "default.handlebars->47->2711",
16749 + "default.handlebars->47->2871",
16750 + "default.handlebars->47->703"
16751 ]
16752 },
16753 {
@@ -16799,7 +16799,7 @@
16799 "hu": "Megerősíti 1 bejegyzés másolatát erre a helyre?",
16800 "xloc": [
16801 "default-mobile.handlebars->11->701",
16802 - "default.handlebars->47->1454",
16802 + "default.handlebars->47->1453",
16803 "sharing.handlebars->11->70"
16804 ]
16805 },
@@ -16827,7 +16827,7 @@
16827 "zh-cht": "確認{0}個條目的複製到此位置?",
16828 "hu": "Megerősíti a {0} bejegyzések másolását erre a helyre?",
16829 "xloc": [
16830 - "default.handlebars->47->1453",
16830 + "default.handlebars->47->1452",
16831 "sharing.handlebars->11->69"
16832 ]
16833 },
@@ -16882,7 +16882,7 @@
16882 "zh-cht": "確認刪除所選帳戶?",
16883 "hu": "Megerősíti a kiválasztott fiók(ok) törlését?",
16884 "xloc": [
16885 - "default.handlebars->47->2561"
16885 + "default.handlebars->47->2560"
16886 ]
16887 },
16888 {
@@ -16933,7 +16933,7 @@
16933 "zh-cht": "確認刪除所選用戶群?",
16934 "hu": "Megerősíti a kiválasztott felhasználói csoport(ok) törlését?",
16935 "xloc": [
16936 - "default.handlebars->47->2644"
16936 + "default.handlebars->47->2643"
16937 ]
16938 },
16939 {
@@ -16960,7 +16960,7 @@
16960 "zh-cht": "確認刪除用戶{0}?",
16961 "hu": "Megerősíti a(z) {0} felhasználó törlését?",
16962 "xloc": [
16963 - "default.handlebars->47->2871"
16963 + "default.handlebars->47->2870"
16964 ]
16965 },
16966 {
@@ -16987,7 +16987,7 @@
16987 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
16988 "hu": "Megerősíti a \\\"{0}\\\" felhasználó tagságának eltávolítását?",
16989 "xloc": [
16990 - "default.handlebars->47->2715"
16990 + "default.handlebars->47->2714"
16991 ]
16992 },
16993 {
@@ -17014,7 +17014,7 @@
17014 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
17015 "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport tagság eltávolítását?",
17016 "xloc": [
17017 - "default.handlebars->47->2903"
17017 + "default.handlebars->47->2902"
17018 ]
17019 },
17020 {
@@ -17042,7 +17042,7 @@
17042 "hu": "Megerősíti 1 bejegyzés áthelyezését erre a helyre?",
17043 "xloc": [
17044 "default-mobile.handlebars->11->703",
17045 - "default.handlebars->47->1456",
17045 + "default.handlebars->47->1455",
17046 "sharing.handlebars->11->72"
17047 ]
17048 },
@@ -17070,7 +17070,7 @@
17070 "zh-cht": "確認將{0}個條目移到該位置?",
17071 "hu": "Megerősíti {0} bejegyzés áthelyezését erre a helyre?",
17072 "xloc": [
17073 - "default.handlebars->47->1455",
17073 + "default.handlebars->47->1454",
17074 "sharing.handlebars->11->71"
17075 ]
17076 },
@@ -17125,7 +17125,7 @@
17125 "zh-cht": "確認覆蓋?",
17126 "hu": "Megerősíti a felülírást?",
17127 "xloc": [
17128 - "default.handlebars->47->2321"
17128 + "default.handlebars->47->2320"
17129 ]
17130 },
17131 {
@@ -17152,8 +17152,8 @@
17152 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
17153 "hu": "Megerősíti a \\\"{0}\\\" eszköz hozzáférési jogainak eltávolítását?",
17154 "xloc": [
17155 - "default.handlebars->47->2705",
17156 - "default.handlebars->47->2894"
17155 + "default.handlebars->47->2704",
17156 + "default.handlebars->47->2893"
17157 ]
17158 },
17159 {
@@ -17180,8 +17180,8 @@
17180 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
17181 "hu": "Megerősíti a \\\"{0}\\\" eszközcsoport hozzáférési jogainak eltávolítását?",
17182 "xloc": [
17183 - "default.handlebars->47->2707",
17184 - "default.handlebars->47->2907"
17183 + "default.handlebars->47->2706",
17184 + "default.handlebars->47->2906"
17185 ]
17186 },
17187 {
@@ -17208,7 +17208,7 @@
17208 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
17209 "hu": "Megerősíti a \\\"{0}\\\" felhasználó hozzáférési jogainak eltávolítását?",
17210 "xloc": [
17211 - "default.handlebars->47->2896"
17211 + "default.handlebars->47->2895"
17212 ]
17213 },
17214 {
@@ -17235,7 +17235,7 @@
17235 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
17236 "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport hozzáférési jogainak eltávolítását?",
17237 "xloc": [
17238 - "default.handlebars->47->2899"
17238 + "default.handlebars->47->2898"
17239 ]
17240 },
17241 {
@@ -17262,8 +17262,8 @@
17262 "zh-cht": "確認刪除訪問權限?",
17263 "hu": "Megerősíti a hozzáférési jogok eltávolítását?",
17264 "xloc": [
17265 - "default.handlebars->47->2897",
17266 - "default.handlebars->47->2900"
17265 + "default.handlebars->47->2896",
17266 + "default.handlebars->47->2899"
17267 ]
17268 },
17269 {
@@ -17291,7 +17291,7 @@
17291 "hu": "Megerősíti a hitelesítő alkalmazás, kétlépcsős bejelentkezés eltávolítását?",
17292 "xloc": [
17293 "default-mobile.handlebars->11->312",
17294 - "default.handlebars->47->1638"
17294 + "default.handlebars->47->1637"
17295 ]
17296 },
17297 {
@@ -17342,7 +17342,7 @@
17342 "zh-cht": "確認刪除設備共享“{0}”?",
17343 "hu": "Megerősíti a(z) \\\"{0}\\\" eszközmegosztás eltávolítását?",
17344 "xloc": [
17345 - "default.handlebars->47->2892"
17345 + "default.handlebars->47->2891"
17346 ]
17347 },
17348 {
@@ -17417,7 +17417,7 @@
17417 "zh-cht": "確認移除推送認證設備?",
17418 "hu": "Megerősíti a Push-hitelesítési eszköz eltávolítását?",
17419 "xloc": [
17420 - "default.handlebars->47->1640"
17420 + "default.handlebars->47->1639"
17421 ]
17422 },
17423 {
@@ -17444,7 +17444,7 @@
17444 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
17445 "hu": "Megerősíti a \\\"{0}\\\" felhasználó jogainak eltávolítását?",
17446 "xloc": [
17447 - "default.handlebars->47->2225"
17447 + "default.handlebars->47->2224"
17448 ]
17449 },
17450 {
@@ -17471,7 +17471,7 @@
17471 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
17472 "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport jogainak eltávolítását?",
17473 "xloc": [
17474 - "default.handlebars->47->2227"
17474 + "default.handlebars->47->2226"
17475 ]
17476 },
17477 {
@@ -17498,7 +17498,7 @@
17498 "zh-cht": "確認刪除所選設備?",
17499 "hu": "Megerősíti a kiválasztott eszköz eltávolítását?",
17500 "xloc": [
17501 - "default.handlebars->47->698"
17501 + "default.handlebars->47->697"
17502 ]
17503 },
17504 {
@@ -17525,7 +17525,7 @@
17525 "zh-cht": "確認刪除此登錄令牌?",
17526 "hu": "Megerősíti ennek a bejelentkezési tokennek az eltávolítását?",
17527 "xloc": [
17528 - "default.handlebars->47->1944"
17528 + "default.handlebars->47->1943"
17529 ]
17530 },
17531 {
@@ -17603,7 +17603,7 @@
17603 "zh-cht": "確認刪除 {0} 個選定的設備?",
17604 "hu": "Megerősíti {0} kiválasztott eszköz eltávolítását?",
17605 "xloc": [
17606 - "default.handlebars->47->699"
17606 + "default.handlebars->47->698"
17607 ]
17608 },
17609 {
@@ -17631,7 +17631,7 @@
17631 "hu": "Megerősíti {0} / {1} bejegyzés {2} erre a helyre?",
17632 "xloc": [
17633 "default-mobile.handlebars->11->365",
17634 - "default.handlebars->47->2324"
17634 + "default.handlebars->47->2323"
17635 ]
17636 },
17637 {
@@ -17662,8 +17662,8 @@
17662 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
17663 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
17664 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
17665 - "default.handlebars->47->2010",
17666 - "default.handlebars->47->909",
17665 + "default.handlebars->47->2009",
17666 + "default.handlebars->47->908",
17667 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
17668 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
17669 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -17700,7 +17700,7 @@
17700 "zh-cht": "全部連接",
17701 "hu": "Összes csatlakoztatása",
17702 "xloc": [
17703 - "default.handlebars->47->446",
17703 + "default.handlebars->47->445",
17704 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
17705 ]
17706 },
@@ -17752,7 +17752,7 @@
17752 "zh-cht": "連接到伺服器",
17753 "hu": "Csatlakozás a kiszolgálóhoz",
17754 "xloc": [
17755 - "default.handlebars->47->2105"
17755 + "default.handlebars->47->2104"
17756 ]
17757 },
17758 {
@@ -17966,7 +17966,7 @@
17966 "xloc": [
17967 "default-mobile.handlebars->11->4",
17968 "default.handlebars->47->11",
17969 - "default.handlebars->47->406",
17969 + "default.handlebars->47->405",
17970 "sharing.handlebars->11->4",
17971 "ssh.handlebars->3->4",
17972 "xterm.handlebars->9->4"
@@ -17996,7 +17996,7 @@
17996 "zh-cht": "已連接的Intel&reg; AMT",
17997 "hu": "Csatlakozott Intel&reg; AMT",
17998 "xloc": [
17999 - "default.handlebars->47->3110"
17999 + "default.handlebars->47->3109"
18000 ]
18001 },
18002 {
@@ -18023,7 +18023,7 @@
18023 "zh-cht": "已连接的用户",
18024 "hu": "Csatlakozott felhasználók",
18025 "xloc": [
18026 - "default.handlebars->47->3115"
18026 + "default.handlebars->47->3114"
18027 ]
18028 },
18029 {
@@ -18079,7 +18079,7 @@
18079 "hu": "Csatlakoztatva most",
18080 "xloc": [
18081 "default-mobile.handlebars->11->748",
18082 - "default.handlebars->47->1493"
18082 + "default.handlebars->47->1492"
18083 ]
18084 },
18085 {
@@ -18211,10 +18211,10 @@
18211 "default-mobile.handlebars->11->2",
18212 "default-mobile.handlebars->11->50",
18213 "default-mobile.handlebars->11->719",
18214 - "default.handlebars->47->1479",
18215 - "default.handlebars->47->379",
18216 - "default.handlebars->47->382",
18217 - "default.handlebars->47->449",
18214 + "default.handlebars->47->1478",
18215 + "default.handlebars->47->378",
18216 + "default.handlebars->47->381",
18217 + "default.handlebars->47->448",
18218 "default.handlebars->47->9",
18219 "sharing.handlebars->11->2",
18220 "sharing.handlebars->11->93",
@@ -18270,7 +18270,7 @@
18270 "zh-cht": "連接數量",
18271 "hu": "Kapcsolatok száma",
18272 "xloc": [
18273 - "default.handlebars->47->3141"
18273 + "default.handlebars->47->3140"
18274 ]
18275 },
18276 {
@@ -18298,8 +18298,8 @@
18298 "hu": "Kapcsolat Hiba",
18299 "xloc": [
18300 "default-mobile.handlebars->11->682",
18301 - "default.handlebars->47->1408",
18302 - "default.handlebars->47->1425",
18301 + "default.handlebars->47->1407",
18302 + "default.handlebars->47->1424",
18303 "login2.handlebars->7->34"
18304 ]
18305 },
@@ -18327,7 +18327,7 @@
18327 "zh-cht": "連接轉發器",
18328 "hu": "Kapccsolat Relay",
18329 "xloc": [
18330 - "default.handlebars->47->3177"
18330 + "default.handlebars->47->3176"
18331 ]
18332 },
18333 {
@@ -18409,9 +18409,9 @@
18409 "hu": "Kapcsolódás",
18410 "xloc": [
18411 "default-mobile.handlebars->11->525",
18412 - "default.handlebars->47->2279",
18413 - "default.handlebars->47->369",
18414 - "default.handlebars->47->926",
18412 + "default.handlebars->47->2278",
18413 + "default.handlebars->47->368",
18414 + "default.handlebars->47->925",
18415 "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
18416 ]
18417 },
@@ -18439,7 +18439,7 @@
18439 "zh-cht": "同意",
18440 "hu": "Hozzájárulás",
18441 "xloc": [
18442 - "default.handlebars->47->2493"
18442 + "default.handlebars->47->2492"
18443 ]
18444 },
18445 {
@@ -18467,8 +18467,8 @@
18467 "hu": "Mesh Agent konzol",
18468 "xloc": [
18469 "default-mobile.handlebars->11->565",
18470 - "default.handlebars->47->1066",
18471 - "default.handlebars->47->1091",
18470 + "default.handlebars->47->1065",
18471 + "default.handlebars->47->1090",
18472 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
18473 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
18474 "default.handlebars->contextMenu->cxconsole"
@@ -18498,7 +18498,7 @@
18498 "zh-cht": "控制台 -",
18499 "hu": "Konzol -",
18500 "xloc": [
18501 - "default.handlebars->47->826"
18501 + "default.handlebars->47->825"
18502 ]
18503 },
18504 {
@@ -18525,8 +18525,8 @@
18525 "zh-cht": "控制",
18526 "hu": "Felügyelet ",
18527 "xloc": [
18528 - "default.handlebars->47->1065",
18529 - "default.handlebars->47->1090",
18528 + "default.handlebars->47->1064",
18529 + "default.handlebars->47->1089",
18530 "messenger.handlebars->remoteImage->3->2"
18531 ]
18532 },
@@ -18582,7 +18582,7 @@
18582 "zh-cht": "Cookie編碼器",
18583 "hu": "Cookie kódoló",
18584 "xloc": [
18585 - "default.handlebars->47->3160"
18585 + "default.handlebars->47->3159"
18586 ]
18587 },
18588 {
@@ -18611,7 +18611,7 @@
18611 "xloc": [
18612 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
18613 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
18614 - "default.handlebars->47->598",
18614 + "default.handlebars->47->597",
18615 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
18616 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
18617 "sharing.handlebars->p13->p13toolbar->fileArea2->3"
@@ -18641,15 +18641,15 @@
18641 "zh-cht": "將MAC地址複製到剪貼板",
18642 "hu": "MAC-cím másolása a vágólapra",
18643 "xloc": [
18644 - "default.handlebars->47->159",
18645 - "default.handlebars->47->167",
18646 - "default.handlebars->47->170"
18644 + "default.handlebars->47->158",
18645 + "default.handlebars->47->166",
18646 + "default.handlebars->47->169"
18647 ]
18648 },
18649 {
18650 "en": "Copy Secret to clipboard",
18651 "xloc": [
18652 - "default.handlebars->47->212"
18652 + "default.handlebars->47->211"
18653 ]
18654 },
18655 {
@@ -18676,9 +18676,9 @@
18676 "zh-cht": "將 URL 複製到剪貼板",
18677 "hu": "URL másolása a vágólapra",
18678 "xloc": [
18679 - "default.handlebars->47->611",
18680 - "default.handlebars->47->615",
18681 - "default.handlebars->47->619"
18679 + "default.handlebars->47->610",
18680 + "default.handlebars->47->614",
18681 + "default.handlebars->47->618"
18682 ]
18683 },
18684 {
@@ -18734,7 +18734,7 @@
18734 "nl": "Kopieer de URL van de Windows ARM 64-bits agent naar het klembord",
18735 "de": "Windows ARM 64bit Agent-URL in die Zwischenablage kopieren",
18736 "xloc": [
18737 - "default.handlebars->47->592"
18737 + "default.handlebars->47->591"
18738 ]
18739 },
18740 {
@@ -18742,7 +18742,7 @@
18742 "nl": "Kopieer de Windows x86 32-bits agent-URL naar het klembord",
18743 "de": "Windows x86 32bit Agent-URL in die Zwischenablage kopieren",
18744 "xloc": [
18745 - "default.handlebars->47->584"
18745 + "default.handlebars->47->583"
18746 ]
18747 },
18748 {
@@ -18750,7 +18750,7 @@
18750 "nl": "Kopieer de Windows x86 64-bits agent-URL naar het klembord",
18751 "de": "Windows x86 64bit Agent-URL in die Zwischenablage kopieren",
18752 "xloc": [
18753 - "default.handlebars->47->588"
18753 + "default.handlebars->47->587"
18754 ]
18755 },
18756 {
@@ -18777,18 +18777,18 @@
18777 "zh-cht": "將地址複製到剪貼板",
18778 "hu": "IP-cím másolása a vágólapra",
18779 "xloc": [
18780 - "default.handlebars->47->148",
18781 - "default.handlebars->47->150",
18782 - "default.handlebars->47->152",
18783 - "default.handlebars->47->161",
18784 - "default.handlebars->47->163",
18785 - "default.handlebars->47->165",
18786 - "default.handlebars->47->173",
18787 - "default.handlebars->47->175",
18788 - "default.handlebars->47->177",
18789 - "default.handlebars->47->179",
18790 - "default.handlebars->47->181",
18791 - "default.handlebars->47->183"
18780 + "default.handlebars->47->147",
18781 + "default.handlebars->47->149",
18782 + "default.handlebars->47->151",
18783 + "default.handlebars->47->160",
18784 + "default.handlebars->47->162",
18785 + "default.handlebars->47->164",
18786 + "default.handlebars->47->172",
18787 + "default.handlebars->47->174",
18788 + "default.handlebars->47->176",
18789 + "default.handlebars->47->178",
18790 + "default.handlebars->47->180",
18791 + "default.handlebars->47->182"
18792 ]
18793 },
18794 {
@@ -18815,8 +18815,8 @@
18815 "zh-cht": "將代理URL複製到剪貼板",
18816 "hu": "Agent URL másolása a vágólapra",
18817 "xloc": [
18818 - "default.handlebars->47->632",
18819 - "default.handlebars->47->634"
18818 + "default.handlebars->47->631",
18819 + "default.handlebars->47->633"
18820 ]
18821 },
18822 {
@@ -18843,12 +18843,12 @@
18843 "zh-cht": "複製連結到剪貼板",
18844 "hu": "Hivatkozás másolása a vágólapra.",
18845 "xloc": [
18846 - "default.handlebars->47->2290",
18847 - "default.handlebars->47->2309",
18848 - "default.handlebars->47->309",
18849 - "default.handlebars->47->331",
18850 - "default.handlebars->47->333",
18851 - "default.handlebars->47->558"
18846 + "default.handlebars->47->2289",
18847 + "default.handlebars->47->2308",
18848 + "default.handlebars->47->308",
18849 + "default.handlebars->47->330",
18850 + "default.handlebars->47->332",
18851 + "default.handlebars->47->557"
18852 ]
18853 },
18854 {
@@ -18875,7 +18875,7 @@
18875 "zh-cht": "將macOS代理URL複製到剪貼板",
18876 "hu": "macOS Agent URL másolása a vágólapra",
18877 "xloc": [
18878 - "default.handlebars->47->602"
18878 + "default.handlebars->47->601"
18879 ]
18880 },
18881 {
@@ -18902,7 +18902,7 @@
18902 "zh-cht": "將名稱複製到剪貼板",
18903 "hu": "Név másolása vágólapra",
18904 "xloc": [
18905 - "default.handlebars->47->157"
18905 + "default.handlebars->47->156"
18906 ]
18907 },
18908 {
@@ -18931,8 +18931,8 @@
18931 "xloc": [
18932 "agentinvite.handlebars->container->column_l->5->linuxtab",
18933 "agentinvite.handlebars->container->column_l->5->linuxtab",
18934 - "default.handlebars->47->597",
18935 - "default.handlebars->47->628"
18934 + "default.handlebars->47->596",
18935 + "default.handlebars->47->627"
18936 ]
18937 },
18938 {
@@ -18959,7 +18959,7 @@
18959 "zh-cht": "將有效代碼複製到剪貼板",
18960 "hu": "Érvényes kódok másolása a vágólapra",
18961 "xloc": [
18962 - "default.handlebars->47->229"
18962 + "default.handlebars->47->228"
18963 ]
18964 },
18965 {
@@ -18986,7 +18986,7 @@
18986 "zh-cht": "複製:“{0}”到“{1}”",
18987 "hu": "Másolás: \\\"{0}\\\" ide: \\\"{1}\\\"",
18988 "xloc": [
18989 - "default.handlebars->47->2383"
18989 + "default.handlebars->47->2382"
18990 ]
18991 },
18992 {
@@ -19181,7 +19181,7 @@
19181 "zh-cht": "核心伺服器",
19182 "hu": "Core Server",
19183 "xloc": [
19184 - "default.handlebars->47->3159"
19184 + "default.handlebars->47->3158"
19185 ]
19186 },
19187 {
@@ -19209,7 +19209,7 @@
19209 "hu": "korzikai",
19210 "xloc": [
19211 "default-mobile.handlebars->11->144",
19212 - "default.handlebars->47->1696"
19212 + "default.handlebars->47->1695"
19213 ]
19214 },
19215 {
@@ -19260,7 +19260,7 @@
19260 "zh-cht": "創建帳號",
19261 "hu": "Fiók létrehozása",
19262 "xloc": [
19263 - "default.handlebars->47->2612",
19263 + "default.handlebars->47->2611",
19264 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
19265 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
19266 "login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -19341,8 +19341,8 @@
19341 "zh-cht": "創建登錄令牌",
19342 "hu": "Bejelentkezési token létrehozása",
19343 "xloc": [
19344 - "default.handlebars->47->1881",
19345 - "default.handlebars->47->334"
19344 + "default.handlebars->47->1880",
19345 + "default.handlebars->47->333"
19346 ]
19347 },
19348 {
@@ -19369,7 +19369,7 @@
19369 "zh-cht": "創建用戶群",
19370 "hu": "Felhasználó csoport létrehozása",
19371 "xloc": [
19372 - "default.handlebars->47->2652"
19372 + "default.handlebars->47->2651"
19373 ]
19374 },
19375 {
@@ -19396,7 +19396,7 @@
19396 "zh-cht": "創建鏈結以與訪客共享此裝置",
19397 "hu": "Link létrehozása az eszköz vendégekkel való megosztásához",
19398 "xloc": [
19399 - "default.handlebars->47->955"
19399 + "default.handlebars->47->954"
19400 ]
19401 },
19402 {
@@ -19423,7 +19423,7 @@
19423 "zh-cht": "使用以下選項創建一個新的裝置群。",
19424 "hu": "Hozzon létre egy új eszközcsoportot az alábbi lehetőségek segítségével.",
19425 "xloc": [
19426 - "default.handlebars->47->1911"
19426 + "default.handlebars->47->1910"
19427 ]
19428 },
19429 {
@@ -19450,7 +19450,7 @@
19450 "zh-cht": "創建一個新的裝置群。",
19451 "hu": "Hozzon létre egy új eszközcsoportot.",
19452 "xloc": [
19453 - "default.handlebars->47->372"
19453 + "default.handlebars->47->371"
19454 ]
19455 },
19456 {
@@ -19477,7 +19477,7 @@
19477 "zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
19478 "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.",
19479 "xloc": [
19480 - "default.handlebars->47->1861"
19480 + "default.handlebars->47->1860"
19481 ]
19482 },
19483 {
@@ -19504,7 +19504,7 @@
19504 "zh-cht": "創建文件夾(如果不存在)?",
19505 "hu": "Mappa létrehozása, ha nem létezik?",
19506 "xloc": [
19507 - "default.handlebars->47->723"
19507 + "default.handlebars->47->722"
19508 ]
19509 },
19510 {
@@ -19531,7 +19531,7 @@
19531 "zh-cht": "創建文件夾:“{0}”",
19532 "hu": "Mappa létrehozása: \\\"{0}\\\"",
19533 "xloc": [
19534 - "default.handlebars->47->2376"
19534 + "default.handlebars->47->2375"
19535 ]
19536 },
19537 {
@@ -19570,7 +19570,7 @@
19570 "hu": "Hozzon létre egyszerre több Intel® AMT eszközt a következő formátumú JSON-fájl importálásával:",
19571 "de": "Erstellen Sie mehrere Intel® AMT Geräte gleichzeitig durch Import einer JSON Datei mit dem folgenden Format:",
19572 "xloc": [
19573 - "default.handlebars->47->485"
19573 + "default.handlebars->47->484"
19574 ]
19575 },
19576 {
@@ -19597,7 +19597,7 @@
19597 "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
19598 "hu": "Hozzon létre egyszerre több fiókot a következő formátumú JSON fájl importálásával:",
19599 "xloc": [
19600 - "default.handlebars->47->2576"
19600 + "default.handlebars->47->2575"
19601 ]
19602 },
19603 {
@@ -19653,7 +19653,7 @@
19653 "zh-cht": "創建的設備組:{0}",
19654 "hu": "Eszközcsoport létrehozva: {0}",
19655 "xloc": [
19656 - "default.handlebars->47->2387"
19656 + "default.handlebars->47->2386"
19657 ]
19658 },
19659 {
@@ -19680,7 +19680,7 @@
19680 "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
19681 "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.",
19682 "xloc": [
19683 - "default.handlebars->47->1118"
19683 + "default.handlebars->47->1117"
19684 ]
19685 },
19686 {
@@ -19755,7 +19755,7 @@
19755 "zh-cht": "創建",
19756 "hu": "Létrehozás",
19757 "xloc": [
19758 - "default.handlebars->47->2760"
19758 + "default.handlebars->47->2759"
19759 ]
19760 },
19761 {
@@ -19782,7 +19782,7 @@
19782 "zh-cht": "創作時間",
19783 "hu": "Létrehozás ideje",
19784 "xloc": [
19785 - "default.handlebars->47->1990"
19785 + "default.handlebars->47->1989"
19786 ]
19787 },
19788 {
@@ -19838,8 +19838,8 @@
19838 "zh-cht": "創作者",
19839 "hu": "Létrehozó",
19840 "xloc": [
19841 - "default.handlebars->47->1988",
19842 - "default.handlebars->47->1989"
19841 + "default.handlebars->47->1987",
19842 + "default.handlebars->47->1988"
19843 ]
19844 },
19845 {
@@ -19867,9 +19867,9 @@
19867 "hu": "Hitelesítő adatok",
19868 "xloc": [
19869 "default-mobile.handlebars->11->537",
19870 - "default.handlebars->47->1296",
19871 - "default.handlebars->47->1949",
19872 - "default.handlebars->47->938"
19870 + "default.handlebars->47->1295",
19871 + "default.handlebars->47->1948",
19872 + "default.handlebars->47->937"
19873 ]
19874 },
19875 {
@@ -19897,7 +19897,7 @@
19897 "hu": "cree",
19898 "xloc": [
19899 "default-mobile.handlebars->11->145",
19900 - "default.handlebars->47->1697"
19900 + "default.handlebars->47->1696"
19901 ]
19902 },
19903 {
@@ -19925,7 +19925,7 @@
19925 "hu": "horvát",
19926 "xloc": [
19927 "default-mobile.handlebars->11->146",
19928 - "default.handlebars->47->1698"
19928 + "default.handlebars->47->1697"
19929 ]
19930 },
19931 {
@@ -20010,8 +20010,8 @@
20010 "xloc": [
20011 "default-mobile.handlebars->11->643",
20012 "default-mobile.handlebars->11->647",
20013 - "default.handlebars->47->1338",
20014 - "default.handlebars->47->1342",
20013 + "default.handlebars->47->1337",
20014 + "default.handlebars->47->1341",
20015 "default.handlebars->47->62",
20016 "sharing.handlebars->11->24"
20017 ]
@@ -20174,7 +20174,7 @@
20174 "zh-cht": "當前版本",
20175 "hu": "Aktuális verzió",
20176 "xloc": [
20177 - "default.handlebars->47->188"
20177 + "default.handlebars->47->187"
20178 ]
20179 },
20180 {
@@ -20202,7 +20202,7 @@
20202 "hu": "A jelenlegi jelszó nem megfelelő.",
20203 "xloc": [
20204 "default-mobile.handlebars->11->954",
20205 - "default.handlebars->47->3079"
20205 + "default.handlebars->47->3078"
20206 ]
20207 },
20208 {
@@ -20316,7 +20316,7 @@
20316 "hu": "cseh",
20317 "xloc": [
20318 "default-mobile.handlebars->11->147",
20319 - "default.handlebars->47->1699"
20319 + "default.handlebars->47->1698"
20320 ]
20321 },
20322 {
@@ -20343,7 +20343,7 @@
20343 "zh-cht": "DNS suffix",
20344 "hu": "DNS utótag",
20345 "xloc": [
20346 - "default.handlebars->47->156"
20346 + "default.handlebars->47->155"
20347 ]
20348 },
20349 {
@@ -20370,7 +20370,7 @@
20370 "zh-cht": "日常的",
20371 "hu": "Napi",
20372 "xloc": [
20373 - "default.handlebars->47->292"
20373 + "default.handlebars->47->291"
20374 ]
20375 },
20376 {
@@ -20398,7 +20398,7 @@
20398 "hu": "dán",
20399 "xloc": [
20400 "default-mobile.handlebars->11->148",
20401 - "default.handlebars->47->1700"
20401 + "default.handlebars->47->1699"
20402 ]
20403 },
20404 {
@@ -20453,7 +20453,7 @@
20453 "zh-cht": "數據通道",
20454 "hu": "DataChannel",
20455 "xloc": [
20456 - "default.handlebars->47->1294",
20456 + "default.handlebars->47->1293",
20457 "sharing.handlebars->11->11"
20458 ]
20459 },
@@ -20466,7 +20466,7 @@
20466 "hu": "Adatbázis rekordok",
20467 "de": "Datenbankaufzeichnungen",
20468 "xloc": [
20469 - "default.handlebars->47->2953"
20469 + "default.handlebars->47->2952"
20470 ]
20471 },
20472 {
@@ -20494,7 +20494,7 @@
20494 "hu": "Dátum és idő",
20495 "xloc": [
20496 "default-mobile.handlebars->11->306",
20497 - "default.handlebars->47->1858"
20497 + "default.handlebars->47->1857"
20498 ]
20499 },
20500 {
@@ -20522,9 +20522,9 @@
20522 "hu": "Nap",
20523 "xloc": [
20524 "default-mobile.handlebars->11->593",
20525 - "default.handlebars->47->1206",
20526 - "default.handlebars->47->2957",
20527 - "default.handlebars->47->2960"
20525 + "default.handlebars->47->1205",
20526 + "default.handlebars->47->2956",
20527 + "default.handlebars->47->2959"
20528 ]
20529 },
20530 {
@@ -20551,8 +20551,8 @@
20551 "zh-cht": "停用",
20552 "hu": "Deaktiválás",
20553 "xloc": [
20554 - "default.handlebars->47->2020",
20555 - "default.handlebars->47->2084"
20554 + "default.handlebars->47->2019",
20555 + "default.handlebars->47->2083"
20556 ]
20557 },
20558 {
@@ -20579,7 +20579,7 @@
20579 "zh-cht": "如果設置停用CCM",
20580 "hu": "CCM kikapcsolása ha be van állítva",
20581 "xloc": [
20582 - "default.handlebars->47->2096"
20582 + "default.handlebars->47->2095"
20583 ]
20584 },
20585 {
@@ -20631,7 +20631,7 @@
20631 "hu": "Mély alvás",
20632 "xloc": [
20633 "default-mobile.handlebars->11->448",
20634 - "default.handlebars->47->645"
20634 + "default.handlebars->47->644"
20635 ]
20636 },
20637 {
@@ -20658,10 +20658,10 @@
20658 "zh-cht": "默認",
20659 "hu": "Alapértelmezett",
20660 "xloc": [
20661 - "default.handlebars->47->2599",
20662 - "default.handlebars->47->2648",
20663 - "default.handlebars->47->2659",
20664 - "default.handlebars->47->2733"
20661 + "default.handlebars->47->2598",
20662 + "default.handlebars->47->2647",
20663 + "default.handlebars->47->2658",
20664 + "default.handlebars->47->2732"
20665 ]
20666 },
20667 {
@@ -20689,7 +20689,7 @@
20689 "hu": "Del",
20690 "xloc": [
20691 "default-mobile.handlebars->11->630",
20692 - "default.handlebars->47->1326"
20692 + "default.handlebars->47->1325"
20693 ]
20694 },
20695 {
@@ -20721,9 +20721,9 @@
20721 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
20722 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
20723 "default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
20724 - "default.handlebars->47->1445",
20725 - "default.handlebars->47->2316",
20726 - "default.handlebars->47->796",
20724 + "default.handlebars->47->1444",
20725 + "default.handlebars->47->2315",
20726 + "default.handlebars->47->795",
20727 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
20728 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
20729 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -20761,7 +20761,7 @@
20761 "hu": "Fiók törlése",
20762 "xloc": [
20763 "default-mobile.handlebars->11->322",
20764 - "default.handlebars->47->1896"
20764 + "default.handlebars->47->1895"
20765 ]
20766 },
20767 {
@@ -20788,7 +20788,7 @@
20788 "zh-cht": "刪除帳戶",
20789 "hu": "Fiókok törlése",
20790 "xloc": [
20791 - "default.handlebars->47->2563"
20791 + "default.handlebars->47->2562"
20792 ]
20793 },
20794 {
@@ -20816,7 +20816,7 @@
20816 "hu": "Eszköz törlése",
20817 "xloc": [
20818 "default-mobile.handlebars->11->546",
20819 - "default.handlebars->47->965"
20819 + "default.handlebars->47->964"
20820 ]
20821 },
20822 {
@@ -20843,7 +20843,7 @@
20843 "zh-cht": "刪除設備",
20844 "hu": "Eszközök törlése",
20845 "xloc": [
20846 - "default.handlebars->47->705"
20846 + "default.handlebars->47->704"
20847 ]
20848 },
20849 {
@@ -20872,8 +20872,8 @@
20872 "xloc": [
20873 "default-mobile.handlebars->11->862",
20874 "default-mobile.handlebars->11->865",
20875 - "default.handlebars->47->2072",
20876 - "default.handlebars->47->2113"
20875 + "default.handlebars->47->2071",
20876 + "default.handlebars->47->2112"
20877 ]
20878 },
20879 {
@@ -20901,7 +20901,7 @@
20901 "hu": "Node törlése",
20902 "xloc": [
20903 "default-mobile.handlebars->11->601",
20904 - "default.handlebars->47->1232"
20904 + "default.handlebars->47->1231"
20905 ]
20906 },
20907 {
@@ -20952,7 +20952,7 @@
20952 "zh-cht": "刪除用戶",
20953 "hu": "Felhasználó törlése",
20954 "xloc": [
20955 - "default.handlebars->47->2806"
20955 + "default.handlebars->47->2805"
20956 ]
20957 },
20958 {
@@ -20979,8 +20979,8 @@
20979 "zh-cht": "刪除用戶群組",
20980 "hu": "Felhasználói csoport törlése",
20981 "xloc": [
20982 - "default.handlebars->47->2701",
20983 - "default.handlebars->47->2713"
20982 + "default.handlebars->47->2700",
20983 + "default.handlebars->47->2712"
20984 ]
20985 },
20986 {
@@ -21007,7 +21007,7 @@
21007 "zh-cht": "刪除用戶群組",
21008 "hu": "Felhasználói csoportok törlése",
21009 "xloc": [
21010 - "default.handlebars->47->2646"
21010 + "default.handlebars->47->2645"
21011 ]
21012 },
21013 {
@@ -21034,7 +21034,7 @@
21034 "zh-cht": "刪除用戶{0}",
21035 "hu": "Felhasználó törlése: {0}",
21036 "xloc": [
21037 - "default.handlebars->47->2870"
21037 + "default.handlebars->47->2869"
21038 ]
21039 },
21040 {
@@ -21062,7 +21062,7 @@
21062 "hu": "Fiók törlése",
21063 "xloc": [
21064 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
21065 - "default.handlebars->47->2559",
21065 + "default.handlebars->47->2558",
21066 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
21067 ]
21068 },
@@ -21090,7 +21090,7 @@
21090 "zh-cht": "刪除裝置",
21091 "hu": "Eszközök törlése",
21092 "xloc": [
21093 - "default.handlebars->47->691"
21093 + "default.handlebars->47->690"
21094 ]
21095 },
21096 {
@@ -21117,7 +21117,7 @@
21117 "zh-cht": "刪除群組",
21118 "hu": "Csoport törlése",
21119 "xloc": [
21120 - "default.handlebars->47->2642"
21120 + "default.handlebars->47->2641"
21121 ]
21122 },
21123 {
@@ -21144,7 +21144,7 @@
21144 "zh-cht": "刪除項目?",
21145 "hu": "Elem törlése?",
21146 "xloc": [
21147 - "default.handlebars->47->797"
21147 + "default.handlebars->47->796"
21148 ]
21149 },
21150 {
@@ -21171,7 +21171,7 @@
21171 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
21172 "hu": "Rekurzív törlés: \\\"{0}\\\", {1} eltávolított elem(ek)",
21173 "xloc": [
21174 - "default.handlebars->47->2378"
21174 + "default.handlebars->47->2377"
21175 ]
21176 },
21177 {
@@ -21200,8 +21200,8 @@
21200 "xloc": [
21201 "default-mobile.handlebars->11->362",
21202 "default-mobile.handlebars->11->695",
21203 - "default.handlebars->47->1447",
21204 - "default.handlebars->47->2318",
21203 + "default.handlebars->47->1446",
21204 + "default.handlebars->47->2317",
21205 "sharing.handlebars->11->63"
21206 ]
21207 },
@@ -21229,7 +21229,7 @@
21229 "zh-cht": "刪除用戶群組{0}?",
21230 "hu": "Törli a(z) {0} felhasználói csoportot?",
21231 "xloc": [
21232 - "default.handlebars->47->2711"
21232 + "default.handlebars->47->2710"
21233 ]
21234 },
21235 {
@@ -21258,8 +21258,8 @@
21258 "xloc": [
21259 "default-mobile.handlebars->11->361",
21260 "default-mobile.handlebars->11->694",
21261 - "default.handlebars->47->1446",
21262 - "default.handlebars->47->2317",
21261 + "default.handlebars->47->1445",
21262 + "default.handlebars->47->2316",
21263 "sharing.handlebars->11->62"
21264 ]
21265 },
@@ -21314,7 +21314,7 @@
21314 "zh-cht": "刪除:“{0}”",
21315 "hu": "Törlés: \\\"{0}\\\"",
21316 "xloc": [
21317 - "default.handlebars->47->2377"
21317 + "default.handlebars->47->2376"
21318 ]
21319 },
21320 {
@@ -21341,7 +21341,7 @@
21341 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
21342 "hu": "Törlés: \\\"{0}\\\", {1} elem eltávolítva",
21343 "xloc": [
21344 - "default.handlebars->47->2379"
21344 + "default.handlebars->47->2378"
21345 ]
21346 },
21347 {
@@ -21369,7 +21369,7 @@
21369 "hu": "Elutasítva",
21370 "xloc": [
21371 "default-mobile.handlebars->11->616",
21372 - "default.handlebars->47->1281",
21372 + "default.handlebars->47->1280",
21373 "sharing.handlebars->11->29",
21374 "sharing.handlebars->11->7"
21375 ]
@@ -21383,7 +21383,7 @@
21383 "hu": "Felhasználói bejelentkezés megtagadva: {0}, {1}, {2}",
21384 "de": "Login des Benutzers von {0}, {1}, {2} verweigert",
21385 "xloc": [
21386 - "default.handlebars->47->2487"
21386 + "default.handlebars->47->2486"
21387 ]
21388 },
21389 {
@@ -21537,20 +21537,20 @@
21537 "default-mobile.handlebars->11->761",
21538 "default-mobile.handlebars->11->848",
21539 "default-mobile.handlebars->11->871",
21540 - "default.handlebars->47->1276",
21541 - "default.handlebars->47->1506",
21542 - "default.handlebars->47->1516",
21543 - "default.handlebars->47->155",
21544 - "default.handlebars->47->1921",
21545 - "default.handlebars->47->1981",
21546 - "default.handlebars->47->2119",
21547 - "default.handlebars->47->2491",
21548 - "default.handlebars->47->2651",
21540 + "default.handlebars->47->1275",
21541 + "default.handlebars->47->1505",
21542 + "default.handlebars->47->1515",
21543 + "default.handlebars->47->154",
21544 + "default.handlebars->47->1920",
21545 + "default.handlebars->47->1980",
21546 + "default.handlebars->47->2118",
21547 + "default.handlebars->47->2490",
21548 + "default.handlebars->47->2650",
21549 + "default.handlebars->47->2661",
21550 "default.handlebars->47->2662",
21550 - "default.handlebars->47->2663",
21551 - "default.handlebars->47->2709",
21551 + "default.handlebars->47->2708",
21552 + "default.handlebars->47->836",
21553 "default.handlebars->47->837",
21553 - "default.handlebars->47->838",
21554 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
21555 ]
21556 },
@@ -21603,16 +21603,16 @@
21603 "hu": "Asztal",
21604 "xloc": [
21605 "default-mobile.handlebars->11->561",
21606 - "default.handlebars->47->1022",
21607 - "default.handlebars->47->1120",
21608 - "default.handlebars->47->1381",
21609 - "default.handlebars->47->2050",
21610 - "default.handlebars->47->2125",
21611 - "default.handlebars->47->2930",
21612 - "default.handlebars->47->2990",
21613 - "default.handlebars->47->3040",
21614 - "default.handlebars->47->3135",
21615 - "default.handlebars->47->802",
21606 + "default.handlebars->47->1021",
21607 + "default.handlebars->47->1119",
21608 + "default.handlebars->47->1380",
21609 + "default.handlebars->47->2049",
21610 + "default.handlebars->47->2124",
21611 + "default.handlebars->47->2929",
21612 + "default.handlebars->47->2989",
21613 + "default.handlebars->47->3039",
21614 + "default.handlebars->47->3134",
21615 + "default.handlebars->47->801",
21616 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
21617 "default.handlebars->contextMenu->cxdesktop",
21618 "sharing.handlebars->11->23",
@@ -21643,9 +21643,9 @@
21643 "zh-cht": "桌面 + 文件",
21644 "hu": "Asztal + Fájlok",
21645 "xloc": [
21646 - "default.handlebars->47->1026",
21647 - "default.handlebars->47->1123",
21648 - "default.handlebars->47->2054"
21646 + "default.handlebars->47->1025",
21647 + "default.handlebars->47->1122",
21648 + "default.handlebars->47->2053"
21649 ]
21650 },
21651 {
@@ -21672,8 +21672,8 @@
21672 "zh-cht": "桌面+終端",
21673 "hu": "Asztal + Terminál",
21674 "xloc": [
21675 - "default.handlebars->47->1023",
21676 - "default.handlebars->47->2051"
21675 + "default.handlebars->47->1022",
21676 + "default.handlebars->47->2050"
21677 ]
21678 },
21679 {
@@ -21700,9 +21700,9 @@
21700 "zh-cht": "桌面+終端+文件",
21701 "hu": "Asztal + Terminál + Fájlok",
21702 "xloc": [
21703 - "default.handlebars->47->1027",
21704 - "default.handlebars->47->1125",
21705 - "default.handlebars->47->2055"
21703 + "default.handlebars->47->1026",
21704 + "default.handlebars->47->1124",
21705 + "default.handlebars->47->2054"
21706 ]
21707 },
21708 {
@@ -21756,7 +21756,7 @@
21756 "zh-cht": "桌面多路復用",
21757 "hu": "Asztal Multiplex",
21758 "xloc": [
21759 - "default.handlebars->47->3140"
21759 + "default.handlebars->47->3139"
21760 ]
21761 },
21762 {
@@ -21783,10 +21783,10 @@
21783 "zh-cht": "桌面通知",
21784 "hu": "Asztal kapcsolat értesítés",
21785 "xloc": [
21786 - "default.handlebars->47->2001",
21787 - "default.handlebars->47->2670",
21788 - "default.handlebars->47->2775",
21789 - "default.handlebars->47->900"
21786 + "default.handlebars->47->2000",
21787 + "default.handlebars->47->2669",
21788 + "default.handlebars->47->2774",
21789 + "default.handlebars->47->899"
21790 ]
21791 },
21792 {
@@ -21813,10 +21813,10 @@
21813 "zh-cht": "桌面提示",
21814 "hu": "Asztal kapcsolat engedélykérés",
21815 "xloc": [
21816 - "default.handlebars->47->2000",
21817 - "default.handlebars->47->2669",
21818 - "default.handlebars->47->2774",
21819 - "default.handlebars->47->899"
21816 + "default.handlebars->47->1999",
21817 + "default.handlebars->47->2668",
21818 + "default.handlebars->47->2773",
21819 + "default.handlebars->47->898"
21820 ]
21821 },
21822 {
@@ -21843,10 +21843,10 @@
21843 "zh-cht": "桌面提示+工具欄",
21844 "hu": "Asztal kapcsolat engedélykérés és eszköztár",
21845 "xloc": [
21846 - "default.handlebars->47->1998",
21847 - "default.handlebars->47->2667",
21848 - "default.handlebars->47->2772",
21849 - "default.handlebars->47->897"
21846 + "default.handlebars->47->1997",
21847 + "default.handlebars->47->2666",
21848 + "default.handlebars->47->2771",
21849 + "default.handlebars->47->896"
21850 ]
21851 },
21852 {
@@ -21873,7 +21873,7 @@
21873 "zh-cht": "桌面會話",
21874 "hu": "Asztal munkamenet",
21875 "xloc": [
21876 - "default.handlebars->47->2923"
21876 + "default.handlebars->47->2922"
21877 ]
21878 },
21879 {
@@ -21980,10 +21980,10 @@
21980 "zh-cht": "桌面工具欄",
21981 "hu": "Asztal kapcsolat eszköztár",
21982 "xloc": [
21983 - "default.handlebars->47->1999",
21984 - "default.handlebars->47->2668",
21985 - "default.handlebars->47->2773",
21986 - "default.handlebars->47->898"
21983 + "default.handlebars->47->1998",
21984 + "default.handlebars->47->2667",
21985 + "default.handlebars->47->2772",
21986 + "default.handlebars->47->897"
21987 ]
21988 },
21989 {
@@ -22010,7 +22010,7 @@
22010 "zh-cht": "僅桌面視圖",
22011 "hu": "Asztal csak megtekintés",
22012 "xloc": [
22013 - "default.handlebars->47->2748"
22013 + "default.handlebars->47->2747"
22014 ]
22015 },
22016 {
@@ -22037,7 +22037,7 @@
22037 "zh-cht": "桌面,僅查看",
22038 "hu": "Asztal, csak megtekintés",
22039 "xloc": [

This file is too large to show in full.

views/default.handlebars
+1 -1
@@ -2349,7 +2349,7 @@
2349 case 'serverwarnings': {
2350 if ((message.warnings != null) && (message.warnings.length > 0)) {
2351 var ServerWarnings = {
2352 - 1: "MeshCentral SSH support requires NodeJS 11 or higher.",
2352 + 1: "",
2353 2: "Missing WebDAV parameters.",
2354 3: "Unrecognized configuration option \"{0}\".",
2355 4: "WebSocket compression is disabled, this feature is broken in NodeJS v11.11 to v12.15 and v13.2",