add lastbootuptime to columns and device powered on event (#5999)

Signed-off-by: si458 <simonsmith5521@gmail.com>

Simon Smith committed Apr 7, 2024 at 19:12 UTC 548edd13d6e5bcb2e193543352a6fc1a39e44ed2
5 files changed +3074 -3069
agents/meshcore.js
+37 -74
@@ -1883,86 +1883,49 @@ function getSystemInformation(func) {
1883 if (results.hardware.windows.osinfo) { delete results.hardware.windows.osinfo.Node; }
1884 if (results.hardware.windows.partitions) { for (var i in results.hardware.windows.partitions) { delete results.hardware.windows.partitions[i].Node; } }
1885 } catch (ex) { }
1886 - if (!results.hardware.identifiers['bios_serial']) {
1887 - try {
1888 - var values = require('win-wmi').query('ROOT\\CIMV2', "SELECT * FROM Win32_Bios", ['SerialNumber']);
1889 - results.hardware.identifiers['bios_serial'] = values[0]['SerialNumber'];
1890 - } catch (ex) { }
1891 - }
1892 - if (!results.hardware.identifiers['bios_mode']) {
1893 - try {
1894 - results.hardware.identifiers['bios_mode'] = 'Legacy';
1895 - for (var i in results.hardware.windows.partitions) {
1896 - if (results.hardware.windows.partitions[i].Description=='GPT: System') {
1897 - results.hardware.identifiers['bios_mode'] = 'UEFI';
1898 - }
1899 - }
1900 - } catch (ex) { results.hardware.identifiers['bios_mode'] = 'Legacy'; }
1901 - }
1902 - if (!results.hardware.tpm) {
1903 - IntToStr = function (v) { return String.fromCharCode((v >> 24) & 0xFF, (v >> 16) & 0xFF, (v >> 8) & 0xFF, v & 0xFF); };
1904 - try {
1905 - var values = require('win-wmi').query('ROOT\\CIMV2\\Security\\MicrosoftTpm', "SELECT * FROM Win32_Tpm", ['IsActivated_InitialValue','IsEnabled_InitialValue','IsOwned_InitialValue','ManufacturerId','ManufacturerVersion','SpecVersion']);
1906 - if(values[0]) {
1907 - results.hardware.tpm = {
1908 - SpecVersion: values[0].SpecVersion.split(",")[0],
1909 - ManufacturerId: IntToStr(values[0].ManufacturerId).replace(/[^\x00-\x7F]/g, ""),
1910 - ManufacturerVersion: values[0].ManufacturerVersion,
1911 - IsActivated: values[0].IsActivated_InitialValue,
1912 - IsEnabled: values[0].IsEnabled_InitialValue,
1913 - IsOwned: values[0].IsOwned_InitialValue,
1914 - }
1915 - }
1916 - } catch (ex) { }
1886 + if (x.LastBootUpTime) { // detect windows uptime
1887 + var thedate = {
1888 + year: parseInt(x.LastBootUpTime.substring(0, 4)),
1889 + month: parseInt(x.LastBootUpTime.substring(4, 6)) - 1, // Months are 0-based in JavaScript (0 - January, 11 - December)
1890 + day: parseInt(x.LastBootUpTime.substring(6, 8)),
1891 + hours: parseInt(x.LastBootUpTime.substring(8, 10)),
1892 + minutes: parseInt(x.LastBootUpTime.substring(10, 12)),
1893 + seconds: parseInt(x.LastBootUpTime.substring(12, 14)),
1894 + };
1895 + var thelastbootuptime = new Date(thedate.year, thedate.month, thedate.day, thedate.hours, thedate.minutes, thedate.seconds);
1896 + meshCoreObj.lastbootuptime = thelastbootuptime.getTime(); // store the last boot up time in coreinfo for columns
1897 + meshCoreObjChanged();
1898 + var nowtime = new Date();
1899 + var differenceInMilliseconds = Math.abs(thelastbootuptime - nowtime);
1900 + if (differenceInMilliseconds < 300000) { // computer uptime less than 5 minutes
1901 + MeshServerLogEx(159, [thelastbootuptime.toString()], "Device Powered On", null);
1902 + }
1903 }
1904 }
1905 if(results.hardware && results.hardware.linux) {
1920 - if (!results.hardware.identifiers['bios_serial']) {
1921 - try {
1922 - if (require('fs').statSync('/sys/class/dmi/id/product_serial').isFile()){
1923 - results.hardware.identifiers['bios_serial'] = require('fs').readFileSync('/sys/class/dmi/id/product_serial').toString().trim();
1924 - }
1925 - } catch (ex) { }
1926 - }
1927 - if (!results.hardware.identifiers['bios_mode']) {
1928 - try {
1929 - results.hardware.identifiers['bios_mode'] = (require('fs').statSync('/sys/firmware/efi').isDirectory() ? 'UEFI': 'Legacy');
1930 - } catch (ex) { results.hardware.identifiers['bios_mode'] = 'Legacy'; }
1931 - }
1932 - if (!results.hardware.tpm) {
1933 - IntToStr = function (v) { return String.fromCharCode((v >> 24) & 0xFF, (v >> 16) & 0xFF, (v >> 8) & 0xFF, v & 0xFF); };
1934 - try {
1935 - if (require('fs').statSync('/sys/class/tpm/tpm0').isDirectory()){
1936 - results.hardware.tpm = {
1937 - SpecVersion: require('fs').readFileSync('/sys/class/tpm/tpm0/tpm_version_major').toString().trim()
1938 - }
1939 - }
1940 - } catch (ex) { }
1941 - }
1942 - if(!results.hardware.linux.LastBootUpTime) {
1943 - try {
1944 - var child = require('child_process').execFile('/usr/bin/uptime', ['', '-s']); // must include blank value at begining for some reason?
1945 - child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); });
1946 - child.stderr.on('data', function () { });
1947 - child.waitExit();
1948 - results.hardware.linux.LastBootUpTime = child.stdout.str.trim();
1949 - } catch (ex) { }
1906 + if(results.hardware.linux.LastBootUpTime) {
1907 + var thelastbootuptime = new Date(results.hardware.linux.LastBootUpTime);
1908 + meshCoreObj.lastbootuptime = thelastbootuptime.getTime(); // store the last boot up time in coreinfo for columns
1909 + meshCoreObjChanged();
1910 + var nowtime = new Date();
1911 + var differenceInMilliseconds = Math.abs(thelastbootuptime - nowtime);
1912 + if (differenceInMilliseconds < 300000) { // computer uptime less than 5 minutes
1913 + MeshServerLogEx(159, [thelastbootuptime.toString()], "Device Powered On", null);
1914 + }
1915 }
1916 }
1952 - if(process.platform=='darwin'){
1953 - try {
1954 - var child = require('child_process').execFile('/usr/sbin/sysctl', ['', 'kern.boottime']); // must include blank value at begining for some reason?
1955 - child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); });
1956 - child.stderr.on('data', function () { });
1957 - child.waitExit();
1958 - const timestampMatch = /\{ sec = (\d+), usec = \d+ \}/.exec(child.stdout.str.trim());
1959 - if(!results.hardware.darwin){
1960 - results.hardware.darwin = { LastBootUpTime: parseInt(timestampMatch[1]) };
1961 - }else{
1962 - results.hardware.darwin.LastBootUpTime = parseInt(timestampMatch[1]);
1917 + if(results.hardware && results.hardware.darwin){
1918 + if(results.hardware.darwin.LastBootUpTime) {
1919 + var thelastbootuptime = new Date(results.hardware.darwin.LastBootUpTime * 1000); // must times by 1000 even tho timestamp is correct?
1920 + meshCoreObj.lastbootuptime = thelastbootuptime.getTime(); // store the last boot up time in coreinfo for columns
1921 + meshCoreObjChanged();
1922 + var nowtime = new Date();
1923 + var differenceInMilliseconds = Math.abs(thelastbootuptime - nowtime);
1924 + if (differenceInMilliseconds < 300000) { // computer uptime less than 5 minutes
1925 + MeshServerLogEx(159, [thelastbootuptime.toString()], "Device Powered On", null);
1926 }
1964 - } catch (ex) { }
1965 - }
1927 + }
1928 + }
1929 results.hardware.agentvers = process.versions;
1930 results.hardware.network = { dns: require('os').dns() };
1931 replaceSpacesWithUnderscoresRec(results);
agents/modules_meshcore/computer-identifiers.js
+60 -15
@@ -70,31 +70,25 @@ function linux_identifiers()
70 var values = {};
71
72 if (!require('fs').existsSync('/sys/class/dmi/id')) {
73 - if(require('fs').existsSync('/sys/firmware/devicetree/base/model')){
74 - if(require('fs').readFileSync('/sys/firmware/devicetree/base/model').toString().trim().startsWith('Raspberry')){
73 + if (require('fs').existsSync('/sys/firmware/devicetree/base/model')) {
74 + if (require('fs').readFileSync('/sys/firmware/devicetree/base/model').toString().trim().startsWith('Raspberry')) {
75 identifiers['board_vendor'] = 'Raspberry Pi';
76 identifiers['board_name'] = require('fs').readFileSync('/sys/firmware/devicetree/base/model').toString().trim();
77 identifiers['board_serial'] = require('fs').readFileSync('/sys/firmware/devicetree/base/serial-number').toString().trim();
78 - }else{
78 + } else {
79 throw('Unknown board');
80 }
81 - }else {
81 + } else {
82 throw ('this platform does not have DMI statistics');
83 }
84 } else {
85 var entries = require('fs').readdirSync('/sys/class/dmi/id');
86 - for(var i in entries)
87 - {
88 - if (require('fs').statSync('/sys/class/dmi/id/' + entries[i]).isFile())
89 - {
90 - try
91 - {
86 + for (var i in entries) {
87 + if (require('fs').statSync('/sys/class/dmi/id/' + entries[i]).isFile()) {
88 + try {
89 ret[entries[i]] = require('fs').readFileSync('/sys/class/dmi/id/' + entries[i]).toString().trim();
93 - }
94 - catch(z)
95 - {
96 - }
97 - if (ret[entries[i]] == 'None') { delete ret[entries[i]];}
90 + } catch(z) { }
91 + if (ret[entries[i]] == 'None') { delete ret[entries[i]]; }
92 }
93 }
94 entries = null;
@@ -343,6 +337,25 @@ function linux_identifiers()
337 child = null;
338 }
339
340 + // Linux Last Boot Up Time
341 + try {
342 + child = require('child_process').execFile('/usr/bin/uptime', ['', '-s']); // must include blank value at begining for some reason?
343 + child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); });
344 + child.stderr.on('data', function () { });
345 + child.waitExit();
346 + values.linux.LastBootUpTime = child.stdout.str.trim();
347 + child = null;
348 + } catch (ex) { }
349 +
350 + // Linux TPM
351 + try {
352 + if (require('fs').statSync('/sys/class/tpm/tpm0').isDirectory()){
353 + values.tpm = {
354 + SpecVersion: require('fs').readFileSync('/sys/class/tpm/tpm0/tpm_version_major').toString().trim()
355 + }
356 + }
357 + } catch (ex) { }
358 +
359 return (values);
360 }
361
@@ -559,6 +572,23 @@ function windows_identifiers()
572 }
573
574 try { ret.identifiers.cpu_name = ret.windows.cpu[0].Name; } catch (x) { }
575 +
576 + // Windows TPM
577 + IntToStr = function (v) { return String.fromCharCode((v >> 24) & 0xFF, (v >> 16) & 0xFF, (v >> 8) & 0xFF, v & 0xFF); };
578 + try {
579 + values = require('win-wmi').query('ROOT\\CIMV2\\Security\\MicrosoftTpm', "SELECT * FROM Win32_Tpm", ['IsActivated_InitialValue','IsEnabled_InitialValue','IsOwned_InitialValue','ManufacturerId','ManufacturerVersion','SpecVersion']);
580 + if(values[0]) {
581 + ret.tpm = {
582 + SpecVersion: values[0].SpecVersion.split(",")[0],
583 + ManufacturerId: IntToStr(values[0].ManufacturerId).replace(/[^\x00-\x7F]/g, ""),
584 + ManufacturerVersion: values[0].ManufacturerVersion,
585 + IsActivated: values[0].IsActivated_InitialValue,
586 + IsEnabled: values[0].IsEnabled_InitialValue,
587 + IsOwned: values[0].IsOwned_InitialValue,
588 + }
589 + }
590 + } catch (ex) { }
591 +
592 return (ret);
593 }
594 function macos_identifiers()
@@ -674,6 +704,21 @@ function macos_identifiers()
704 ret.identifiers.storage_devices = devices;
705 }
706
707 + // MacOS Last Boot Up Time
708 + try {
709 + child = require('child_process').execFile('/usr/sbin/sysctl', ['', 'kern.boottime']); // must include blank value at begining for some reason?
710 + child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); });
711 + child.stderr.on('data', function () { });
712 + child.waitExit();
713 + const timestampMatch = /\{ sec = (\d+), usec = \d+ \}/.exec(child.stdout.str.trim());
714 + if (!ret.darwin) {
715 + ret.darwin = { LastBootUpTime: parseInt(timestampMatch[1]) };
716 + } else {
717 + ret.darwin.LastBootUpTime = parseInt(timestampMatch[1]);
718 + }
719 + child = null;
720 + } catch (ex) { }
721 +
722 trimIdentifiers(ret.identifiers);
723
724 child = null;
meshagent.js
+4
@@ -1924,6 +1924,10 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
1924 if (!device.defender) { device.defender = {}; }
1925 if (JSON.stringify(device.defender) != JSON.stringify(command.defender)) { /*changes.push('Defender status');*/ device.defender = command.defender; change = 1; log = 1; }
1926 }
1927 + if (command.lastbootuptime != null) { // Last Boot Up Time
1928 + if (!device.lastbootuptime) { device.lastbootuptime = ""; }
1929 + if (device.lastbootuptime != command.lastbootuptime) { /*changes.push('Last Boot Up Time');*/ device.lastbootuptime = command.lastbootuptime; change = 1; log = 1; }
1930 + }
1931
1932 // Push Messaging Token
1933 if ((command.pmt != null) && (typeof command.pmt == 'string') && (device.pmt != command.pmt)) {
translate/translate.json
+2962 -2960
@@ -31,7 +31,7 @@
31 "en": " (",
32 "nl": " (",
33 "xloc": [
34 - "default.handlebars->47->1519"
34 + "default.handlebars->47->1521"
35 ]
36 },
37 {
@@ -58,8 +58,8 @@
58 "zh-cht": " + CIRA",
59 "hu": " + CIRA",
60 "xloc": [
61 - "default.handlebars->47->2161",
62 - "default.handlebars->47->2163"
61 + "default.handlebars->47->2163",
62 + "default.handlebars->47->2165"
63 ]
64 },
65 {
@@ -332,7 +332,7 @@
332 "zh-cht": " 可以使用密碼提示,但不建議使用。",
333 "hu": "Jelszó tipp használható, de nem ajánlott.",
334 "xloc": [
335 - "default.handlebars->47->2037"
335 + "default.handlebars->47->2039"
336 ]
337 },
338 {
@@ -359,8 +359,8 @@
359 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
360 "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.",
361 "xloc": [
362 - "default.handlebars->47->2285",
363 - "default.handlebars->47->2865"
362 + "default.handlebars->47->2287",
363 + "default.handlebars->47->2867"
364 ]
365 },
366 {
@@ -889,7 +889,7 @@
889 "zh-cht": "(可選的)",
890 "hu": "(opcionális)",
891 "xloc": [
892 - "default.handlebars->47->564"
892 + "default.handlebars->47->566"
893 ]
894 },
895 {
@@ -911,7 +911,7 @@
911 "hu": ")",
912 "xloc": [
913 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1",
914 - "default.handlebars->47->1520"
914 + "default.handlebars->47->1522"
915 ]
916 },
917 {
@@ -938,8 +938,8 @@
938 "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
939 "hu": "* 8 karakter, 1 nagybetű, 1 kisbetű , 1 szám, 1 speciális karakter.",
940 "xloc": [
941 - "default.handlebars->47->2245",
942 - "default.handlebars->47->526"
941 + "default.handlebars->47->2247",
942 + "default.handlebars->47->528"
943 ]
944 },
945 {
@@ -966,7 +966,7 @@
966 "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
967 "hu": "* BSD esetén először futtassa a \\\"pkg install wget sudo bash\\\" parancsot.",
968 "xloc": [
969 - "default.handlebars->47->623"
969 + "default.handlebars->47->625"
970 ]
971 },
972 {
@@ -1043,12 +1043,12 @@
1043 "default-mobile.handlebars->11->784",
1044 "default-mobile.handlebars->11->786",
1045 "default-mobile.handlebars->11->972",
1046 - "default.handlebars->47->1621",
1046 "default.handlebars->47->1623",
1047 "default.handlebars->47->1625",
1049 - "default.handlebars->47->2361",
1050 - "default.handlebars->47->2638",
1051 - "default.handlebars->47->994"
1048 + "default.handlebars->47->1627",
1049 + "default.handlebars->47->2363",
1050 + "default.handlebars->47->2640",
1051 + "default.handlebars->47->996"
1052 ]
1053 },
1054 {
@@ -1154,7 +1154,7 @@
1154 "hu": ", csak Intel® AMT",
1155 "xloc": [
1156 "default-mobile.handlebars->11->393",
1157 - "default.handlebars->47->353"
1157 + "default.handlebars->47->354"
1158 ]
1159 },
1160 {
@@ -1181,7 +1181,7 @@
1181 "zh-cht": ", 本地設備",
1182 "hu": ", Helyi eszközök",
1183 "xloc": [
1184 - "default.handlebars->47->355"
1184 + "default.handlebars->47->356"
1185 ]
1186 },
1187 {
@@ -1209,7 +1209,7 @@
1209 "hu": ", MQTT online",
1210 "xloc": [
1211 "default-mobile.handlebars->11->875",
1212 - "default.handlebars->47->1715"
1212 + "default.handlebars->47->1717"
1213 ]
1214 },
1215 {
@@ -1236,8 +1236,8 @@
1236 "zh-cht": ", 不同意",
1237 "hu": ", Nincs hozzájárulás",
1238 "xloc": [
1239 - "default.handlebars->47->1089",
1240 - "default.handlebars->47->2203"
1239 + "default.handlebars->47->1091",
1240 + "default.handlebars->47->2205"
1241 ]
1242 },
1243 {
@@ -1264,8 +1264,8 @@
1264 "zh-cht": ",提示同意",
1265 "hu": ", Hozzájárulás kérése a kapcsolódáshoz",
1266 "xloc": [
1267 - "default.handlebars->47->1090",
1268 - "default.handlebars->47->2204"
1267 + "default.handlebars->47->1092",
1268 + "default.handlebars->47->2206"
1269 ]
1270 },
1271 {
@@ -1292,7 +1292,7 @@
1292 "zh-cht": ", RDP",
1293 "hu": ", RDP",
1294 "xloc": [
1295 - "default.handlebars->47->1382"
1295 + "default.handlebars->47->1384"
1296 ]
1297 },
1298 {
@@ -1319,8 +1319,8 @@
1319 "zh-cht": ", 每天重複",
1320 "hu": ", naponta ismétlődően",
1321 "xloc": [
1322 - "default.handlebars->47->1086",
1323 - "default.handlebars->47->2200"
1322 + "default.handlebars->47->1088",
1323 + "default.handlebars->47->2202"
1324 ]
1325 },
1326 {
@@ -1347,8 +1347,8 @@
1347 "zh-cht": ", 每週重複一次",
1348 "hu": ", hetente ismétlődően",
1349 "xloc": [
1350 - "default.handlebars->47->1087",
1351 - "default.handlebars->47->2201"
1350 + "default.handlebars->47->1089",
1351 + "default.handlebars->47->2203"
1352 ]
1353 },
1354 {
@@ -1399,7 +1399,7 @@
1399 "zh-cht": ", 中繼設備",
1400 "hu": ", Relayed Devices",
1401 "xloc": [
1402 - "default.handlebars->47->354"
1402 + "default.handlebars->47->355"
1403 ]
1404 },
1405 {
@@ -1427,7 +1427,7 @@
1427 "hu": ", SFTP",
1428 "xloc": [
1429 "default-mobile.handlebars->11->680",
1430 - "default.handlebars->47->1503"
1430 + "default.handlebars->47->1505"
1431 ]
1432 },
1433 {
@@ -1454,7 +1454,7 @@
1454 "zh-cht": ", SSH",
1455 "hu": ", SSH",
1456 "xloc": [
1457 - "default.handlebars->47->1471"
1457 + "default.handlebars->47->1473"
1458 ]
1459 },
1460 {
@@ -1481,7 +1481,7 @@
1481 "zh-cht": ",軟體KVM",
1482 "hu": ", Soft-KVM",
1483 "xloc": [
1484 - "default.handlebars->47->1365",
1484 + "default.handlebars->47->1367",
1485 "sharing.handlebars->11->12"
1486 ]
1487 },
@@ -1509,8 +1509,8 @@
1509 "zh-cht": ", 工具欄",
1510 "hu": ", Tálca értesítés",
1511 "xloc": [
1512 - "default.handlebars->47->1091",
1513 - "default.handlebars->47->2205"
1512 + "default.handlebars->47->1093",
1513 + "default.handlebars->47->2207"
1514 ]
1515 },
1516 {
@@ -1561,8 +1561,8 @@
1561 "zh-cht": ", 僅查看桌面",
1562 "hu": ", csak megtekintés",
1563 "xloc": [
1564 - "default.handlebars->47->1088",
1565 - "default.handlebars->47->2202"
1564 + "default.handlebars->47->1090",
1565 + "default.handlebars->47->2204"
1566 ]
1567 },
1568 {
@@ -1592,9 +1592,9 @@
1592 "default-mobile.handlebars->11->621",
1593 "default-mobile.handlebars->11->658",
1594 "default-mobile.handlebars->11->681",
1595 - "default.handlebars->47->1381",
1596 - "default.handlebars->47->1472",
1597 - "default.handlebars->47->1504",
1595 + "default.handlebars->47->1383",
1596 + "default.handlebars->47->1474",
1597 + "default.handlebars->47->1506",
1598 "sharing.handlebars->11->19",
1599 "sharing.handlebars->11->27",
1600 "sharing.handlebars->11->44",
@@ -1809,7 +1809,7 @@
1809 "zh-cht": ",{0}觀看",
1810 "hu": ", {0} nézi",
1811 "xloc": [
1812 - "default.handlebars->47->1376",
1812 + "default.handlebars->47->1378",
1813 "sharing.handlebars->11->13"
1814 ]
1815 },
@@ -1922,9 +1922,9 @@
1922 "xloc": [
1923 "default-mobile.handlebars->11->346",
1924 "default-mobile.handlebars->11->687",
1925 - "default.handlebars->47->1518",
1926 - "default.handlebars->47->2427",
1927 - "default.handlebars->47->3101",
1925 + "default.handlebars->47->1520",
1926 + "default.handlebars->47->2429",
1927 + "default.handlebars->47->3103",
1928 "sharing.handlebars->11->50"
1929 ]
1930 },
@@ -2102,7 +2102,7 @@
2102 "zh-cht": "1個活躍時段",
2103 "hu": "1 aktív munkamenet",
2104 "xloc": [
2105 - "default.handlebars->47->2959"
2105 + "default.handlebars->47->2961"
2106 ]
2107 },
2108 {
@@ -2131,7 +2131,7 @@
2131 "xloc": [
2132 "default-mobile.handlebars->11->1016",
2133 "default-mobile.handlebars->11->356",
2134 - "default.handlebars->47->2451",
2134 + "default.handlebars->47->2453",
2135 "download.handlebars->3->1",
2136 "download2.handlebars->5->1",
2137 "sharing.handlebars->11->96"
@@ -2188,7 +2188,7 @@
2188 "zh-cht": "1位聯絡文",
2189 "hu": "1 csatlakozás",
2190 "xloc": [
2191 - "default.handlebars->47->1378",
2191 + "default.handlebars->47->1380",
2192 "sharing.handlebars->11->15"
2193 ]
2194 },
@@ -2217,8 +2217,8 @@
2217 "hu": "1 nap",
2218 "xloc": [
2219 "default.handlebars->47->276",
2220 - "default.handlebars->47->555",
2221 - "default.handlebars->47->569"
2220 + "default.handlebars->47->557",
2221 + "default.handlebars->47->571"
2222 ]
2223 },
2224 {
@@ -2245,7 +2245,7 @@
2245 "zh-cht": "1群",
2246 "hu": "1 csoport",
2247 "xloc": [
2248 - "default.handlebars->47->2915"
2248 + "default.handlebars->47->2917"
2249 ]
2250 },
2251 {
@@ -2273,8 +2273,8 @@
2273 "hu": "1 óra",
2274 "xloc": [
2275 "default.handlebars->47->274",
2276 - "default.handlebars->47->553",
2277 - "default.handlebars->47->567"
2276 + "default.handlebars->47->555",
2277 + "default.handlebars->47->569"
2278 ]
2279 },
2280 {
@@ -2301,8 +2301,8 @@
2301 "zh-cht": "1分鐘",
2302 "hu": "1 perc",
2303 "xloc": [
2304 - "default.handlebars->47->1198",
2305 - "default.handlebars->47->2002"
2304 + "default.handlebars->47->1200",
2305 + "default.handlebars->47->2004"
2306 ]
2307 },
2308 {
@@ -2357,8 +2357,8 @@
2357 "hu": "1 hónap",
2358 "xloc": [
2359 "default.handlebars->47->278",
2360 - "default.handlebars->47->557",
2361 - "default.handlebars->47->571"
2360 + "default.handlebars->47->559",
2361 + "default.handlebars->47->573"
2362 ]
2363 },
2364 {
@@ -2385,7 +2385,7 @@
2385 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2386 "hu": "1 további felhasználó nem jelenik meg, használja a keresőmezőt a felhasználók kereséséhez...",
2387 "xloc": [
2388 - "default.handlebars->47->2670"
2388 + "default.handlebars->47->2672"
2389 ]
2390 },
2391 {
@@ -2412,7 +2412,7 @@
2412 "zh-cht": "1個節點",
2413 "hu": "1 node",
2414 "xloc": [
2415 - "default.handlebars->47->675"
2415 + "default.handlebars->47->677"
2416 ]
2417 },
2418 {
@@ -2488,7 +2488,7 @@
2488 "hu": "1 másodperc",
2489 "xloc": [
2490 "default-mobile.handlebars->11->570",
2491 - "default.handlebars->47->1236"
2491 + "default.handlebars->47->1238"
2492 ]
2493 },
2494 {
@@ -2542,7 +2542,7 @@
2542 "zh-cht": "1 個選定的設備處於離線狀態。",
2543 "hu": "1 kiválasztott eszköz offline.",
2544 "xloc": [
2545 - "default.handlebars->47->741"
2545 + "default.handlebars->47->743"
2546 ]
2547 },
2548 {
@@ -2569,7 +2569,7 @@
2569 "zh-cht": "1 個選定的設備在線。",
2570 "hu": "1 kiválasztott eszköz online.",
2571 "xloc": [
2572 - "default.handlebars->47->739"
2572 + "default.handlebars->47->741"
2573 ]
2574 },
2575 {
@@ -2603,14 +2603,14 @@
2603 "default-mobile.handlebars->11->425",
2604 "default-mobile.handlebars->11->429",
2605 "default-mobile.handlebars->11->433",
2606 - "default.handlebars->47->2674",
2607 - "default.handlebars->47->444",
2608 - "default.handlebars->47->447",
2609 - "default.handlebars->47->451",
2610 - "default.handlebars->47->455",
2611 - "default.handlebars->47->459",
2612 - "default.handlebars->47->463",
2613 - "default.handlebars->47->467"
2606 + "default.handlebars->47->2676",
2607 + "default.handlebars->47->446",
2608 + "default.handlebars->47->449",
2609 + "default.handlebars->47->453",
2610 + "default.handlebars->47->457",
2611 + "default.handlebars->47->461",
2612 + "default.handlebars->47->465",
2613 + "default.handlebars->47->469"
2614 ]
2615 },
2616 {
@@ -2638,8 +2638,8 @@
2638 "hu": "1 hét",
2639 "xloc": [
2640 "default.handlebars->47->277",
2641 - "default.handlebars->47->556",
2642 - "default.handlebars->47->570"
2641 + "default.handlebars->47->558",
2642 + "default.handlebars->47->572"
2643 ]
2644 },
2645 {
@@ -2805,8 +2805,8 @@
2805 "zh-cht": "10分鐘",
2806 "hu": "10 perc",
2807 "xloc": [
2808 - "default.handlebars->47->1200",
2809 - "default.handlebars->47->2004"
2808 + "default.handlebars->47->1202",
2809 + "default.handlebars->47->2006"
2810 ]
2811 },
2812 {
@@ -2834,7 +2834,7 @@
2834 "hu": "10 másodperc",
2835 "xloc": [
2836 "default-mobile.handlebars->11->572",
2837 - "default.handlebars->47->1238"
2837 + "default.handlebars->47->1240"
2838 ]
2839 },
2840 {
@@ -3026,8 +3026,8 @@
3026 "zh-cht": "12小時",
3027 "hu": "12 óra",
3028 "xloc": [
3029 - "default.handlebars->47->1208",
3030 - "default.handlebars->47->2012"
3029 + "default.handlebars->47->1210",
3030 + "default.handlebars->47->2014"
3031 ]
3032 },
3033 {
@@ -3215,8 +3215,8 @@
3215 "zh-cht": "15分鐘",
3216 "hu": "15 perc",
3217 "xloc": [
3218 - "default.handlebars->47->1201",
3219 - "default.handlebars->47->2005"
3218 + "default.handlebars->47->1203",
3219 + "default.handlebars->47->2007"
3220 ]
3221 },
3222 {
@@ -3243,8 +3243,8 @@
3243 "zh-cht": "16小時",
3244 "hu": "12 óra",
3245 "xloc": [
3246 - "default.handlebars->47->1209",
3247 - "default.handlebars->47->2013"
3246 + "default.handlebars->47->1211",
3247 + "default.handlebars->47->2015"
3248 ]
3249 },
3250 {
@@ -3460,8 +3460,8 @@
3460 "zh-cht": "2天",
3461 "hu": "2 nap",
3462 "xloc": [
3463 - "default.handlebars->47->1211",
3464 - "default.handlebars->47->2015"
3463 + "default.handlebars->47->1213",
3464 + "default.handlebars->47->2017"
3465 ]
3466 },
3467 {
@@ -3488,8 +3488,8 @@
3488 "zh-cht": "2小時",
3489 "hu": "2 óra",
3490 "xloc": [
3491 - "default.handlebars->47->1205",
3492 - "default.handlebars->47->2009"
3491 + "default.handlebars->47->1207",
3492 + "default.handlebars->47->2011"
3493 ]
3494 },
3495 {
@@ -3682,8 +3682,8 @@
3682 "zh-cht": "24小時",
3683 "hu": "24 óra",
3684 "xloc": [
3685 - "default.handlebars->47->1210",
3686 - "default.handlebars->47->2014"
3685 + "default.handlebars->47->1212",
3686 + "default.handlebars->47->2016"
3687 ]
3688 },
3689 {
@@ -3763,7 +3763,7 @@
3763 "zh-cht": "2FA備份代碼已清除",
3764 "hu": "2FA biztonsági kódok törölve",
3765 "xloc": [
3766 - "default.handlebars->47->2564"
3766 + "default.handlebars->47->2566"
3767 ]
3768 },
3769 {
@@ -3818,7 +3818,7 @@
3818 "zh-cht": "第二個因素",
3819 "hu": "2. faktor",
3820 "xloc": [
3821 - "default.handlebars->47->3138"
3821 + "default.handlebars->47->3140"
3822 ]
3823 },
3824 {
@@ -3845,8 +3845,8 @@
3845 "zh-cht": "啟用第二因素身份驗證",
3846 "hu": "2. faktoros hitelesítés engedélyezve",
3847 "xloc": [
3848 - "default.handlebars->47->2688",
3849 - "default.handlebars->47->2940"
3848 + "default.handlebars->47->2690",
3849 + "default.handlebars->47->2942"
3850 ]
3851 },
3852 {
@@ -4006,8 +4006,8 @@
4006 "zh-cht": "30分鐘",
4007 "hu": "30 perc",
4008 "xloc": [
4009 - "default.handlebars->47->1202",
4010 - "default.handlebars->47->2006"
4009 + "default.handlebars->47->1204",
4010 + "default.handlebars->47->2008"
4011 ]
4012 },
4013 {
@@ -4035,7 +4035,7 @@
4035 "hu": "32-bit",
4036 "xloc": [
4037 "default-mobile.handlebars->11->724",
4038 - "default.handlebars->47->1579"
4038 + "default.handlebars->47->1581"
4039 ]
4040 },
4041 {
@@ -4115,8 +4115,8 @@
4115 "zh-cht": "4天",
4116 "hu": "4 nap",
4117 "xloc": [
4118 - "default.handlebars->47->1212",
4119 - "default.handlebars->47->2016"
4118 + "default.handlebars->47->1214",
4119 + "default.handlebars->47->2018"
4120 ]
4121 },
4122 {
@@ -4143,8 +4143,8 @@
4143 "zh-cht": "4個小時",
4144 "hu": "4 óra",
4145 "xloc": [
4146 - "default.handlebars->47->1206",
4147 - "default.handlebars->47->2010"
4146 + "default.handlebars->47->1208",
4147 + "default.handlebars->47->2012"
4148 ]
4149 },
4150 {
@@ -4282,8 +4282,8 @@
4282 "zh-cht": "45分鐘",
4283 "hu": "45 perc",
4284 "xloc": [
4285 - "default.handlebars->47->1203",
4286 - "default.handlebars->47->2007"
4285 + "default.handlebars->47->1205",
4286 + "default.handlebars->47->2009"
4287 ]
4288 },
4289 {
@@ -4337,8 +4337,8 @@
4337 "zh-cht": "5分鐘",
4338 "hu": "5 perc",
4339 "xloc": [
4340 - "default.handlebars->47->1199",
4341 - "default.handlebars->47->2003"
4340 + "default.handlebars->47->1201",
4341 + "default.handlebars->47->2005"
4342 ]
4343 },
4344 {
@@ -4366,7 +4366,7 @@
4366 "hu": "5 másodperc",
4367 "xloc": [
4368 "default-mobile.handlebars->11->571",
4369 - "default.handlebars->47->1237"
4369 + "default.handlebars->47->1239"
4370 ]
4371 },
4372 {
@@ -4534,8 +4534,8 @@
4534 "zh-cht": "60分鐘",
4535 "hu": "60 perc",
4536 "xloc": [
4537 - "default.handlebars->47->1204",
4538 - "default.handlebars->47->2008"
4537 + "default.handlebars->47->1206",
4538 + "default.handlebars->47->2010"
4539 ]
4540 },
4541 {
@@ -4619,7 +4619,7 @@
4619 "hu": "64-bit",
4620 "xloc": [
4621 "default-mobile.handlebars->11->726",
4622 - "default.handlebars->47->1581"
4622 + "default.handlebars->47->1583"
4623 ]
4624 },
4625 {
@@ -4796,7 +4796,7 @@
4796 "zh-cht": "7天電源狀態",
4797 "hu": "7 napos energiaellátás állapota",
4798 "xloc": [
4799 - "default.handlebars->47->1277"
4799 + "default.handlebars->47->1279"
4800 ]
4801 },
4802 {
@@ -4823,7 +4823,7 @@
4823 "zh-cht": "7天",
4824 "hu": "7 nap",
4825 "xloc": [
4826 - "default.handlebars->47->2017"
4826 + "default.handlebars->47->2019"
4827 ]
4828 },
4829 {
@@ -4907,10 +4907,10 @@
4907 "zh-cht": "8小時",
4908 "hu": "8 óra",
4909 "xloc": [
4910 - "default.handlebars->47->1207",
4911 - "default.handlebars->47->2011",
4912 - "default.handlebars->47->554",
4913 - "default.handlebars->47->568"
4910 + "default.handlebars->47->1209",
4911 + "default.handlebars->47->2013",
4912 + "default.handlebars->47->556",
4913 + "default.handlebars->47->570"
4914 ]
4915 },
4916 {
@@ -5048,7 +5048,7 @@
5048 "zh-cht": "</table>",
5049 "hu": "<<",
5050 "xloc": [
5051 - "default.handlebars->47->634"
5051 + "default.handlebars->47->636"
5052 ]
5053 },
5054 {
@@ -5219,7 +5219,7 @@
5219 "pl": "<b>Serwery DNS</b>",
5220 "xloc": [
5221 "default-mobile.handlebars->11->785",
5222 - "default.handlebars->47->1624"
5222 + "default.handlebars->47->1626"
5223 ]
5224 },
5225 {
@@ -5227,7 +5227,7 @@
5227 "nl": "<div style=margin-bottom:4px>Perform batch device notification</div>",
5228 "pl": "<div style=margin-bottom:4px>Wykonaj wsadowo powiadomienie na maszynach</div>",
5229 "xloc": [
5230 - "default.handlebars->47->754"
5230 + "default.handlebars->47->756"
5231 ]
5232 },
5233 {
@@ -5235,9 +5235,9 @@
5235 "nl": "<span style=color:green>OK</span>",
5236 "pl": "<span style=color:green>OK</span>",
5237 "xloc": [
5238 - "default.handlebars->47->418",
5238 "default.handlebars->47->420",
5240 - "default.handlebars->47->422"
5239 + "default.handlebars->47->422",
5240 + "default.handlebars->47->424"
5241 ]
5242 },
5243 {
@@ -5245,9 +5245,9 @@
5245 "nl": "<span style=color:red>FOUT</span>",
5246 "pl": "<span style=color:red>NIEPOPRAWNY</span>",
5247 "xloc": [
5248 - "default.handlebars->47->419",
5248 "default.handlebars->47->421",
5250 - "default.handlebars->47->423"
5249 + "default.handlebars->47->423",
5250 + "default.handlebars->47->425"
5251 ]
5252 },
5253 {
@@ -5274,7 +5274,7 @@
5274 "zh-cht": "<table style=width:180px>",
5275 "hu": "<table style=width:180px>",
5276 "xloc": [
5277 - "default.handlebars->47->631"
5277 + "default.handlebars->47->633"
5278 ]
5279 },
5280 {
@@ -5282,7 +5282,7 @@
5282 "nl": "<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>",
5283 "pl": "<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>",
5284 "xloc": [
5285 - "default.handlebars->47->632"
5285 + "default.handlebars->47->634"
5286 ]
5287 },
5288 {
@@ -5290,7 +5290,7 @@
5290 "nl": "<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>",
5291 "pl": "<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>",
5292 "xloc": [
5293 - "default.handlebars->47->633"
5293 + "default.handlebars->47->635"
5294 ]
5295 },
5296 {
@@ -5369,9 +5369,9 @@
5369 "hu": "ACM",
5370 "xloc": [
5371 "default-mobile.handlebars->11->504",
5372 - "default.handlebars->47->2181",
5373 - "default.handlebars->47->432",
5374 - "default.handlebars->47->903"
5372 + "default.handlebars->47->2183",
5373 + "default.handlebars->47->434",
5374 + "default.handlebars->47->905"
5375 ]
5376 },
5377 {
@@ -5446,8 +5446,8 @@
5446 "zh-cht": "AMT",
5447 "hu": "AMT",
5448 "xloc": [
5449 - "default.handlebars->47->409",
5450 - "default.handlebars->47->710"
5449 + "default.handlebars->47->411",
5450 + "default.handlebars->47->712"
5451 ]
5452 },
5453 {
@@ -5455,7 +5455,7 @@
5455 "nl": "AMT Host",
5456 "pl": "Host AMT",
5457 "xloc": [
5458 - "default.handlebars->47->380"
5458 + "default.handlebars->47->382"
5459 ]
5460 },
5461 {
@@ -5463,7 +5463,7 @@
5463 "nl": "AMT status",
5464 "pl": "Stan AMT",
5465 "xloc": [
5466 - "default.handlebars->47->381"
5466 + "default.handlebars->47->383"
5467 ]
5468 },
5469 {
@@ -5490,7 +5490,7 @@
5490 "zh-cht": "AMT操作系統",
5491 "hu": "AMT-OS",
5492 "xloc": [
5493 - "default.handlebars->47->3283"
5493 + "default.handlebars->47->3285"
5494 ]
5495 },
5496 {
@@ -5517,7 +5517,7 @@
5517 "zh-cht": "AMT-Redir",
5518 "hu": "AMT-Redir",
5519 "xloc": [
5520 - "default.handlebars->47->3145"
5520 + "default.handlebars->47->3147"
5521 ]
5522 },
5523 {
@@ -5544,14 +5544,14 @@
5544 "zh-cht": "AMT-WSMAN",
5545 "hu": "AMT-WSMAN",
5546 "xloc": [
5547 - "default.handlebars->47->3144"
5547 + "default.handlebars->47->3146"
5548 ]
5549 },
5550 {
5551 "en": "APK",
5552 "nl": "APK",
5553 "xloc": [
5554 - "default.handlebars->47->637"
5554 + "default.handlebars->47->639"
5555 ]
5556 },
5557 {
@@ -5560,7 +5560,7 @@
5560 "pl": "Wersja APK MeshAgent",
5561 "xloc": [
5562 "default-mobile.handlebars->11->925",
5563 - "default.handlebars->47->636"
5563 + "default.handlebars->47->638"
5564 ]
5565 },
5566 {
@@ -5570,8 +5570,8 @@
5570 "de": "ARM 64bit Version des MeshAgents",
5571 "es": "Version ARM 64bit de el MeshAgent",
5572 "xloc": [
5573 - "default.handlebars->47->617",
5574 - "default.handlebars->47->657"
5573 + "default.handlebars->47->619",
5574 + "default.handlebars->47->659"
5575 ]
5576 },
5577 {
@@ -5740,8 +5740,8 @@
5740 "xloc": [
5741 "default-mobile.handlebars->11->731",
5742 "default-mobile.handlebars->11->733",
5743 - "default.handlebars->47->922",
5744 - "default.handlebars->47->924"
5743 + "default.handlebars->47->924",
5744 + "default.handlebars->47->926"
5745 ]
5746 },
5747 {
@@ -5769,7 +5769,7 @@
5769 "hu": "Hozzáférés megtagadva",
5770 "xloc": [
5771 "default-mobile.handlebars->11->876",
5772 - "default.handlebars->47->1716"
5772 + "default.handlebars->47->1718"
5773 ]
5774 },
5775 {
@@ -5852,7 +5852,7 @@
5852 "zh-cht": "存取伺服器檔案",
5853 "hu": "Hozzáférés a kiszolgálófájlokhoz",
5854 "xloc": [
5855 - "default.handlebars->47->2871"
5855 + "default.handlebars->47->2873"
5856 ]
5857 },
5858 {
@@ -5969,11 +5969,11 @@
5969 "default-mobile.handlebars->11->471",
5970 "default-mobile.handlebars->11->473",
5971 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
5972 - "default.handlebars->47->2046",
5972 "default.handlebars->47->2048",
5974 - "default.handlebars->47->3337",
5975 - "default.handlebars->47->863",
5976 - "default.handlebars->47->865"
5973 + "default.handlebars->47->2050",
5974 + "default.handlebars->47->3339",
5975 + "default.handlebars->47->865",
5976 + "default.handlebars->47->867"
5977 ]
5978 },
5979 {
@@ -6001,7 +6001,7 @@
6001 "hu": "Fiókbeállítások",
6002 "xloc": [
6003 "default-mobile.handlebars->11->983",
6004 - "default.handlebars->47->3208"
6004 + "default.handlebars->47->3210"
6005 ]
6006 },
6007 {
@@ -6068,7 +6068,7 @@
6068 "hu": "Fiók megváltozott: LDAP-adatokkal való szinkronizálás.",
6069 "es": "La cuenta cambio a ser actualizada con los datos de LDAP.",
6070 "xloc": [
6071 - "default.handlebars->47->2625"
6071 + "default.handlebars->47->2627"
6072 ]
6073 },
6074 {
@@ -6095,7 +6095,7 @@
6095 "zh-cht": "帳戶已更改:{0}",
6096 "hu": "Fiók megváltozott: {0}",
6097 "xloc": [
6098 - "default.handlebars->47->2537"
6098 + "default.handlebars->47->2539"
6099 ]
6100 },
6101 {
@@ -6122,7 +6122,7 @@
6122 "zh-cht": "創建帳戶,電子郵件為{0}",
6123 "hu": "Fiók létrehozva, az e-mail címe {0} ",
6124 "xloc": [
6125 - "default.handlebars->47->2536"
6125 + "default.handlebars->47->2538"
6126 ]
6127 },
6128 {
@@ -6149,7 +6149,7 @@
6149 "zh-cht": "已創建帳戶,名稱為 {0}。",
6150 "hu": "Fiók létrehozva, név: {0}. ",
6151 "xloc": [
6152 - "default.handlebars->47->2599"
6152 + "default.handlebars->47->2601"
6153 ]
6154 },
6155 {
@@ -6176,7 +6176,7 @@
6176 "zh-cht": "帳戶已創建,用戶名是{0}",
6177 "hu": "Fiók létrehozva, felhasználónév {0} ",
6178 "xloc": [
6179 - "default.handlebars->47->2535"
6179 + "default.handlebars->47->2537"
6180 ]
6181 },
6182 {
@@ -6205,8 +6205,8 @@
6205 "xloc": [
6206 "default-mobile.handlebars->11->66",
6207 "default.handlebars->47->210",
6208 - "default.handlebars->47->2690",
6209 - "default.handlebars->47->2868"
6208 + "default.handlebars->47->2692",
6209 + "default.handlebars->47->2870"
6210 ]
6211 },
6212 {
@@ -6234,7 +6234,7 @@
6234 "hu": "Elérte a fiókkorlátot.",
6235 "xloc": [
6236 "default-mobile.handlebars->11->995",
6237 - "default.handlebars->47->3220",
6237 + "default.handlebars->47->3222",
6238 "login-mobile.handlebars->5->6",
6239 "login.handlebars->5->8",
6240 "login2.handlebars->7->207"
@@ -6293,7 +6293,7 @@
6293 "zh-cht": "帳號登錄",
6294 "hu": "Bejelentkezés a fiókba",
6295 "xloc": [
6296 - "default.handlebars->47->2472"
6296 + "default.handlebars->47->2474"
6297 ]
6298 },
6299 {
@@ -6320,7 +6320,7 @@
6320 "zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
6321 "hu": "Bejelentkezés a fiókba innen: {0}, {1}, {2}",
6322 "xloc": [
6323 - "default.handlebars->47->2578"
6323 + "default.handlebars->47->2580"
6324 ]
6325 },
6326 {
@@ -6332,7 +6332,7 @@
6332 "hu": "Fiók bejelentkezési token rekordok",
6333 "es": "Registro de Tokens de inicio de sesion",
6334 "xloc": [
6335 - "default.handlebars->47->3187"
6335 + "default.handlebars->47->3189"
6336 ]
6337 },
6338 {
@@ -6359,7 +6359,7 @@
6359 "zh-cht": "帳戶登出",
6360 "hu": "Fiók kijelentkezés",
6361 "xloc": [
6362 - "default.handlebars->47->2473"
6362 + "default.handlebars->47->2475"
6363 ]
6364 },
6365 {
@@ -6415,7 +6415,7 @@
6415 "zh-cht": "帳戶密碼已更改:{0}",
6416 "hu": "Fiók jelszava megváltozott: {0}",
6417 "xloc": [
6418 - "default.handlebars->47->2545"
6418 + "default.handlebars->47->2547"
6419 ]
6420 },
6421 {
@@ -6442,7 +6442,7 @@
6442 "zh-cht": "帳戶已刪除",
6443 "hu": "Fiók eltávolítva",
6444 "xloc": [
6445 - "default.handlebars->47->2534"
6445 + "default.handlebars->47->2536"
6446 ]
6447 },
6448 {
@@ -6497,7 +6497,7 @@
6497 "hu": "Művelet",
6498 "xloc": [
6499 "default-mobile.handlebars->11->882",
6500 - "default.handlebars->47->1722",
6500 + "default.handlebars->47->1724",
6501 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
6502 ]
6503 },
@@ -6525,8 +6525,8 @@
6525 "zh-cht": "動作檔案",
6526 "hu": "Művelet fájl",
6527 "xloc": [
6528 - "default.handlebars->47->1324",
6529 - "default.handlebars->47->1326"
6528 + "default.handlebars->47->1326",
6529 + "default.handlebars->47->1328"
6530 ]
6531 },
6532 {
@@ -6557,7 +6557,7 @@
6557 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
6558 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
6559 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
6560 - "default.handlebars->47->995",
6560 + "default.handlebars->47->997",
6561 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
6562 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
6563 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -6587,7 +6587,7 @@
6587 "zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾&reg;AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
6588 "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.",
6589 "xloc": [
6590 - "default.handlebars->47->520"
6590 + "default.handlebars->47->522"
6591 ]
6592 },
6593 {
@@ -6668,7 +6668,7 @@
6668 "zh-cht": "如果ACM失敗,則激活到CCM",
6669 "hu": "Aktiválja a CCM-et, ha az ACM meghiúsul",
6670 "xloc": [
6671 - "default.handlebars->47->2236"
6671 + "default.handlebars->47->2238"
6672 ]
6673 },
6674 {
@@ -6698,9 +6698,9 @@
6698 "default-mobile.handlebars->11->499",
6699 "default-mobile.handlebars->11->501",
6700 "default-mobile.handlebars->11->792",
6701 - "default.handlebars->47->1631",
6702 - "default.handlebars->47->896",
6703 - "default.handlebars->47->898"
6701 + "default.handlebars->47->1633",
6702 + "default.handlebars->47->898",
6703 + "default.handlebars->47->900"
6704 ]
6705 },
6706 {
@@ -6754,8 +6754,8 @@
6754 "zh-cht": "主動設備共享",
6755 "hu": "Atív eszközmegosztás",
6756 "xloc": [
6757 - "default.handlebars->47->1071",
6758 - "default.handlebars->47->2185"
6757 + "default.handlebars->47->1073",
6758 + "default.handlebars->47->2187"
6759 ]
6760 },
6761 {
@@ -6782,7 +6782,7 @@
6782 "zh-cht": "活動登錄令牌",
6783 "hu": "Aktív bejelentkezési tokenek",
6784 "xloc": [
6785 - "default.handlebars->47->2077"
6785 + "default.handlebars->47->2079"
6786 ]
6787 },
6788 {
@@ -6809,7 +6809,7 @@
6809 "zh-cht": "活躍用戶",
6810 "hu": "Aktív felhasználó",
6811 "xloc": [
6812 - "default.handlebars->47->949"
6812 + "default.handlebars->47->951"
6813 ]
6814 },
6815 {
@@ -6836,7 +6836,7 @@
6836 "zh-cht": "活躍用戶",
6837 "hu": "Aktív felhasználók",
6838 "xloc": [
6839 - "default.handlebars->47->948"
6839 + "default.handlebars->47->950"
6840 ]
6841 },
6842 {
@@ -6888,8 +6888,8 @@
6888 "hu": "Hozzáadás",
6889 "xloc": [
6890 "default-mobile.handlebars->11->650",
6891 - "default.handlebars->47->1414",
6892 - "default.handlebars->47->1419"
6891 + "default.handlebars->47->1416",
6892 + "default.handlebars->47->1421"
6893 ]
6894 },
6895 {
@@ -6964,8 +6964,8 @@
6964 "zh-cht": "新增代理",
6965 "hu": "Agent hozzáadása",
6966 "xloc": [
6967 - "default.handlebars->47->2175",
6968 - "default.handlebars->47->485"
6967 + "default.handlebars->47->2177",
6968 + "default.handlebars->47->487"
6969 ]
6970 },
6971 {
@@ -7016,10 +7016,10 @@
7016 "zh-cht": "新增裝置",
7017 "hu": "Eszköz hozzáadása",
7018 "xloc": [
7019 - "default.handlebars->47->2179",
7020 - "default.handlebars->47->2843",
7021 - "default.handlebars->47->3037",
7022 - "default.handlebars->47->489"
7019 + "default.handlebars->47->2181",
7020 + "default.handlebars->47->2845",
7021 + "default.handlebars->47->3039",
7022 + "default.handlebars->47->491"
7023 ]
7024 },
7025 {
@@ -7046,7 +7046,7 @@
7046 "zh-cht": "新增裝置日誌",
7047 "hu": "Eszköz esemény hozzáadása",
7048 "xloc": [
7049 - "default.handlebars->47->1157"
7049 + "default.handlebars->47->1159"
7050 ]
7051 },
7052 {
@@ -7073,10 +7073,10 @@
7073 "zh-cht": "新增裝置群",
7074 "hu": "Eszközcsoport hozzáadása",
7075 "xloc": [
7076 - "default.handlebars->47->2322",
7077 - "default.handlebars->47->2837",
7078 - "default.handlebars->47->3025",
7079 - "default.handlebars->47->385"
7076 + "default.handlebars->47->2324",
7077 + "default.handlebars->47->2839",
7078 + "default.handlebars->47->3027",
7079 + "default.handlebars->47->387"
7080 ]
7081 },
7082 {
@@ -7103,7 +7103,7 @@
7103 "zh-cht": "新增裝置群權限",
7104 "hu": "Eszközcsoport engedélyek hozzáadása",
7105 "xloc": [
7106 - "default.handlebars->47->2319"
7106 + "default.handlebars->47->2321"
7107 ]
7108 },
7109 {
@@ -7130,8 +7130,8 @@
7130 "zh-cht": "新增裝置權限",
7131 "hu": "Eszköz engedélyek hozzáadása",
7132 "xloc": [
7133 - "default.handlebars->47->2324",
7134 - "default.handlebars->47->2326"
7133 + "default.handlebars->47->2326",
7134 + "default.handlebars->47->2328"
7135 ]
7136 },
7137 {
@@ -7182,7 +7182,7 @@
7182 "zh-cht": "新增Intel&reg; AMT裝置",
7183 "hu": "Intel&reg; AMT eszköz hozzáadása",
7184 "xloc": [
7185 - "default.handlebars->47->509"
7185 + "default.handlebars->47->511"
7186 ]
7187 },
7188 {
@@ -7236,7 +7236,7 @@
7236 "zh-cht": "新增本地",
7237 "hu": "Helyi hozzáadása",
7238 "xloc": [
7239 - "default.handlebars->47->479"
7239 + "default.handlebars->47->481"
7240 ]
7241 },
7242 {
@@ -7287,7 +7287,7 @@
7287 "zh-cht": "新增成員身份",
7288 "hu": "Hozzáadás Felhasználói Csoporthoz",
7289 "xloc": [
7290 - "default.handlebars->47->3057"
7290 + "default.handlebars->47->3059"
7291 ]
7292 },
7293 {
@@ -7314,7 +7314,7 @@
7314 "zh-cht": "新增 Mesh Agent",
7315 "hu": "Mesh Agent hozzáadása",
7316 "xloc": [
7317 - "default.handlebars->47->674"
7317 + "default.handlebars->47->676"
7318 ]
7319 },
7320 {
@@ -7365,8 +7365,8 @@
7365 "zh-cht": "新增安全密鑰",
7366 "hu": "Biztonsági kulcs hozzáadása",
7367 "xloc": [
7368 - "default.handlebars->47->1792",
7369 - "default.handlebars->47->1793",
7368 + "default.handlebars->47->1794",
7369 + "default.handlebars->47->1795",
7370 "default.handlebars->47->241",
7371 "default.handlebars->47->243",
7372 "default.handlebars->47->246",
@@ -7398,7 +7398,7 @@
7398 "hu": "Felhasználó hozzáadása",
7399 "xloc": [
7400 "default-mobile.handlebars->11->907",
7401 - "default.handlebars->47->1063"
7401 + "default.handlebars->47->1065"
7402 ]
7403 },
7404 {
@@ -7425,7 +7425,7 @@
7425 "zh-cht": "新增用戶裝置權限",
7426 "hu": "Felhasználói eszköz engedélyek hozzáadása",
7427 "xloc": [
7428 - "default.handlebars->47->2329"
7428 + "default.handlebars->47->2331"
7429 ]
7430 },
7431 {
@@ -7452,10 +7452,10 @@
7452 "zh-cht": "新增用戶群",
7453 "hu": "Felhasználói csoport hozzáadása",
7454 "xloc": [
7455 - "default.handlebars->47->1064",
7456 - "default.handlebars->47->2169",
7457 - "default.handlebars->47->2321",
7458 - "default.handlebars->47->3031"
7455 + "default.handlebars->47->1066",
7456 + "default.handlebars->47->2171",
7457 + "default.handlebars->47->2323",
7458 + "default.handlebars->47->3033"
7459 ]
7460 },
7461 {
@@ -7482,7 +7482,7 @@
7482 "zh-cht": "新增用戶群裝置權限",
7483 "hu": "Felhasználói csoport eszköz engedélyek hozzáadása",
7484 "xloc": [
7485 - "default.handlebars->47->2331"
7485 + "default.handlebars->47->2333"
7486 ]
7487 },
7488 {
@@ -7560,8 +7560,8 @@
7560 "zh-cht": "新增用戶",
7561 "hu": "Felhasználók hozzáadása",
7562 "xloc": [
7563 - "default.handlebars->47->2168",
7564 - "default.handlebars->47->2832"
7563 + "default.handlebars->47->2170",
7564 + "default.handlebars->47->2834"
7565 ]
7566 },
7567 {
@@ -7588,7 +7588,7 @@
7588 "zh-cht": "將用戶新增到裝置群",
7589 "hu": "Felhasználók hozzáadása az eszköz csoporthoz",
7590 "xloc": [
7591 - "default.handlebars->47->2318"
7591 + "default.handlebars->47->2320"
7592 ]
7593 },
7594 {
@@ -7615,7 +7615,7 @@
7615 "zh-cht": "將用戶新增到用戶群",
7616 "hu": "Felhasználók hozzáadása az felhasználó csoporthoz",
7617 "xloc": [
7618 - "default.handlebars->47->2867"
7618 + "default.handlebars->47->2869"
7619 ]
7620 },
7621 {
@@ -7669,7 +7669,7 @@
7669 "zh-cht": "將本地設備添加到設備組 \\\"{0}\\\"。",
7670 "hu": "Helyi eszköz hozzáadása a \\\"{0}\\\" eszközcsoporthoz.",
7671 "xloc": [
7672 - "default.handlebars->47->490"
7672 + "default.handlebars->47->492"
7673 ]
7674 },
7675 {
@@ -7696,7 +7696,7 @@
7696 "zh-cht": "通過掃描本地網絡新增新的Intel&reg; AMT電腦。",
7697 "hu": "Adjon hozzá egy új Intel® AMT számítógépet a helyi hálózat átvizsgálásával.",
7698 "xloc": [
7699 - "default.handlebars->47->480"
7699 + "default.handlebars->47->482"
7700 ]
7701 },
7702 {
@@ -7747,7 +7747,7 @@
7747 "zh-cht": "新增位於本地網絡上的新Intel&reg; AMT電腦。",
7748 "hu": "Adjon hozzá egy új Intel® AMT számítógépet, amely a helyi hálózaton található.",
7749 "xloc": [
7750 - "default.handlebars->47->478"
7750 + "default.handlebars->47->480"
7751 ]
7752 },
7753 {
@@ -7774,7 +7774,7 @@
7774 "zh-cht": "將新的Intel&reg; AMT裝置新增到裝置群“{0}”。",
7775 "hu": "Új Intel® AMT eszköz hozzáadása a \\\"{0}\\\" eszközcsoporthoz.",
7776 "xloc": [
7777 - "default.handlebars->47->499"
7777 + "default.handlebars->47->501"
7778 ]
7779 },
7780 {
@@ -7801,8 +7801,8 @@
7801 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
7802 "hu": "Adjon hozzá egy új számítógépet ehhez az eszközcsoporthoz a Mesh Agent telepítésével.",
7803 "xloc": [
7804 - "default.handlebars->47->2174",
7805 - "default.handlebars->47->484"
7804 + "default.handlebars->47->2176",
7805 + "default.handlebars->47->486"
7806 ]
7807 },
7808 {
@@ -7829,8 +7829,8 @@
7829 "zh-cht": "添加位於本地網絡上的設備。",
7830 "hu": "Helyi hálózaton található eszköz hozzáadása.",
7831 "xloc": [
7832 - "default.handlebars->47->2178",
7833 - "default.handlebars->47->488"
7832 + "default.handlebars->47->2180",
7833 + "default.handlebars->47->490"
7834 ]
7835 },
7836 {
@@ -7857,7 +7857,7 @@
7857 "zh-cht": "添加本地設備",
7858 "hu": "Helyi eszköz hozzáadása",
7859 "xloc": [
7860 - "default.handlebars->47->498"
7860 + "default.handlebars->47->500"
7861 ]
7862 },
7863 {
@@ -7884,7 +7884,7 @@
7884 "zh-cht": "新增標籤",
7885 "hu": "Cimkék hozzáadása",
7886 "xloc": [
7887 - "default.handlebars->47->748"
7887 + "default.handlebars->47->750"
7888 ]
7889 },
7890 {
@@ -7911,7 +7911,7 @@
7911 "zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel&reg;AMT以將“{0}”分組。",
7912 "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.",
7913 "xloc": [
7914 - "default.handlebars->47->517"
7914 + "default.handlebars->47->519"
7915 ]
7916 },
7917 {
@@ -7938,7 +7938,7 @@
7938 "zh-cht": "添加了身份驗證應用程序",
7939 "hu": "Hitelesítési alkalmazás hozzáadva",
7940 "xloc": [
7941 - "default.handlebars->47->2561"
7941 + "default.handlebars->47->2563"
7942 ]
7943 },
7944 {
@@ -7965,7 +7965,7 @@
7965 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
7966 "hu": "{0} eszközmegosztás hozzáadva {1} és {2} között",
7967 "xloc": [
7968 - "default.handlebars->47->2572"
7968 + "default.handlebars->47->2574"
7969 ]
7970 },
7971 {
@@ -7992,7 +7992,7 @@
7992 "zh-cht": "添加了每天重複的設備共享 {0}。",
7993 "hu": "Naponta ismétlődő {0} eszközmegosztás hozzáadva.",
7994 "xloc": [
7995 - "default.handlebars->47->2609"
7995 + "default.handlebars->47->2611"
7996 ]
7997 },
7998 {
@@ -8019,7 +8019,7 @@
8019 "zh-cht": "添加了每週重複的設備共享 {0}。",
8020 "hu": "Hetente ismétlődő {0} eszközmegosztás hozzáadva.",
8021 "xloc": [
8022 - "default.handlebars->47->2610"
8022 + "default.handlebars->47->2612"
8023 ]
8024 },
8025 {
@@ -8046,7 +8046,7 @@
8046 "zh-cht": "添加了無限時間的設備共享 {0}。",
8047 "hu": "{0} eszközmegosztás hozzáadva korlátlan ideig.",
8048 "xloc": [
8049 - "default.handlebars->47->2602"
8049 + "default.handlebars->47->2604"
8050 ]
8051 },
8052 {
@@ -8073,8 +8073,8 @@
8073 "zh-cht": "已將設備{0}添加到設備組{1}",
8074 "hu": "A(z) {0} eszköz hozzáadva a(z) {1} eszközcsoporthoz",
8075 "xloc": [
8076 - "default.handlebars->47->2528",
8077 - "default.handlebars->47->2555"
8076 + "default.handlebars->47->2530",
8077 + "default.handlebars->47->2557"
8078 ]
8079 },
8080 {
@@ -8101,7 +8101,7 @@
8101 "zh-cht": "添加了登錄令牌",
8102 "hu": "Bejelentkezési token hozzáadva",
8103 "xloc": [
8104 - "default.handlebars->47->2586"
8104 + "default.handlebars->47->2588"
8105 ]
8106 },
8107 {
@@ -8128,7 +8128,7 @@
8128 "zh-cht": "增加推送通知認證設備",
8129 "hu": "Push értesítési hitelesítő eszköz hozzáadva",
8130 "xloc": [
8131 - "default.handlebars->47->2584"
8131 + "default.handlebars->47->2586"
8132 ]
8133 },
8134 {
@@ -8155,7 +8155,7 @@
8155 "zh-cht": "添加了安全密鑰",
8156 "hu": "Biztonsági kulcs hozzáadva",
8157 "xloc": [
8158 - "default.handlebars->47->2566"
8158 + "default.handlebars->47->2568"
8159 ]
8160 },
8161 {
@@ -8182,7 +8182,7 @@
8182 "zh-cht": "已將用戶組{0}添加到設備組{1}",
8183 "hu": "{0} felhasználói csoport hozzáadva a(z) {1} eszközcsoporthoz",
8184 "xloc": [
8185 - "default.handlebars->47->2539"
8185 + "default.handlebars->47->2541"
8186 ]
8187 },
8188 {
@@ -8209,8 +8209,8 @@
8209 "zh-cht": "已將用戶{0}添加到用戶組{1}",
8210 "hu": "{0} felhasználó hozzáadva a(z) {1} felhasználói csoporthoz",
8211 "xloc": [
8212 - "default.handlebars->47->2542",
8213 - "default.handlebars->47->2551"
8212 + "default.handlebars->47->2544",
8213 + "default.handlebars->47->2553"
8214 ]
8215 },
8216 {
@@ -8237,7 +8237,7 @@
8237 "zh-cht": "地址",
8238 "hu": "Cím",
8239 "xloc": [
8240 - "default.handlebars->47->378"
8240 + "default.handlebars->47->380"
8241 ]
8242 },
8243 {
@@ -8292,7 +8292,7 @@
8292 "hu": "Admin Control Mode (ACM)",
8293 "xloc": [
8294 "default-mobile.handlebars->11->794",
8295 - "default.handlebars->47->1633"
8295 + "default.handlebars->47->1635"
8296 ]
8297 },
8298 {
@@ -8320,7 +8320,7 @@
8320 "hu": "Adminisztrátor Hitelesítő adatok",
8321 "xloc": [
8322 "default-mobile.handlebars->11->800",
8323 - "default.handlebars->47->1639"
8323 + "default.handlebars->47->1641"
8324 ]
8325 },
8326 {
@@ -8375,7 +8375,7 @@
8375 "zh-cht": "管理領域",
8376 "hu": "Adminisztratív Realms",
8377 "xloc": [
8378 - "default.handlebars->47->2919"
8378 + "default.handlebars->47->2921"
8379 ]
8380 },
8381 {
@@ -8430,7 +8430,7 @@
8430 "zh-cht": "管理領域",
8431 "hu": "Adminisztratív Realms",
8432 "xloc": [
8433 - "default.handlebars->47->2764"
8433 + "default.handlebars->47->2766"
8434 ]
8435 },
8436 {
@@ -8457,7 +8457,7 @@
8457 "zh-cht": "管理員",
8458 "hu": "Adminisztrátor",
8459 "xloc": [
8460 - "default.handlebars->47->2682"
8460 + "default.handlebars->47->2684"
8461 ]
8462 },
8463 {
@@ -8485,7 +8485,7 @@
8485 "hu": "afrikai",
8486 "xloc": [
8487 "default-mobile.handlebars->11->104",
8488 - "default.handlebars->47->1795",
8488 + "default.handlebars->47->1797",
8489 "login2.handlebars->7->1"
8490 ]
8491 },
@@ -8517,11 +8517,11 @@
8517 "default-mobile.handlebars->11->463",
8518 "default-mobile.handlebars->11->520",
8519 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8520 - "default.handlebars->47->2402",
8521 - "default.handlebars->47->2415",
8522 - "default.handlebars->47->3281",
8523 - "default.handlebars->47->405",
8524 - "default.handlebars->47->706",
8520 + "default.handlebars->47->2404",
8521 + "default.handlebars->47->2417",
8522 + "default.handlebars->47->3283",
8523 + "default.handlebars->47->407",
8524 + "default.handlebars->47->708",
8525 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8526 "default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm"
8527 ]
@@ -8550,8 +8550,8 @@
8550 "zh-cht": "代理+Intel&reg; AMT",
8551 "hu": "Agent + Intel® AMT",
8552 "xloc": [
8553 - "default.handlebars->47->2404",
8554 - "default.handlebars->47->2417"
8553 + "default.handlebars->47->2406",
8554 + "default.handlebars->47->2419"
8555 ]
8556 },
8557 {
@@ -8607,8 +8607,8 @@
8607 "hu": "Agent konzol",
8608 "xloc": [
8609 "default-mobile.handlebars->11->954",
8610 - "default.handlebars->47->2339",
8611 - "default.handlebars->47->794"
8610 + "default.handlebars->47->2341",
8611 + "default.handlebars->47->796"
8612 ]
8613 },
8614 {
@@ -8635,7 +8635,7 @@
8635 "zh-cht": "代理錯誤計數器",
8636 "hu": "Agrnt hiba számlálók",
8637 "xloc": [
8638 - "default.handlebars->47->3250"
8638 + "default.handlebars->47->3252"
8639 ]
8640 },
8641 {
@@ -8662,7 +8662,7 @@
8662 "zh-cht": "代理 IP 地址",
8663 "hu": "Agent IP cím",
8664 "xloc": [
8665 - "default.handlebars->47->347"
8665 + "default.handlebars->47->348"
8666 ]
8667 },
8668 {
@@ -8725,7 +8725,7 @@
8725 "hu": "Agent üzenetek",
8726 "xloc": [
8727 "default-mobile.handlebars->11->436",
8728 - "default.handlebars->47->470"
8728 + "default.handlebars->47->472"
8729 ]
8730 },
8731 {
@@ -8831,8 +8831,8 @@
8831 "zh-cht": "代理自行共享",
8832 "hu": "Agent Ön-Megosztás",
8833 "xloc": [
8834 - "default.handlebars->47->1092",
8835 - "default.handlebars->47->2206"
8834 + "default.handlebars->47->1094",
8835 + "default.handlebars->47->2208"
8836 ]
8837 },
8838 {
@@ -8859,7 +8859,7 @@
8859 "zh-cht": "代理時段",
8860 "hu": "Agent munkamenetek",
8861 "xloc": [
8862 - "default.handlebars->47->3266"
8862 + "default.handlebars->47->3268"
8863 ]
8864 },
8865 {
@@ -8911,7 +8911,7 @@
8911 "hu": "Agent Cimke",
8912 "xloc": [
8913 "default-mobile.handlebars->11->517",
8914 - "default.handlebars->47->919"
8914 + "default.handlebars->47->921"
8915 ]
8916 },
8917 {
@@ -8939,7 +8939,7 @@
8939 "hu": "Agent típus",
8940 "xloc": [
8941 "default.handlebars->47->337",
8942 - "default.handlebars->47->369"
8942 + "default.handlebars->47->370"
8943 ]
8944 },
8945 {
@@ -8966,7 +8966,7 @@
8966 "zh-cht": "代理類型",
8967 "hu": "Agent típusok",
8968 "xloc": [
8969 - "default.handlebars->47->2413",
8969 + "default.handlebars->47->2415",
8970 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
8971 ]
8972 },
@@ -8995,7 +8995,7 @@
8995 "hu": "Agent verzió",
8996 "xloc": [
8997 "default.handlebars->47->338",
8998 - "default.handlebars->47->370"
8998 + "default.handlebars->47->371"
8999 ]
9000 },
9001 {
@@ -9022,7 +9022,7 @@
9022 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
9023 "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}",
9024 "xloc": [
9025 - "default.handlebars->47->2525"
9025 + "default.handlebars->47->2527"
9026 ]
9027 },
9028 {
@@ -9049,8 +9049,8 @@
9049 "zh-cht": "代理已連接",
9050 "hu": "Agent csatlakozott",
9051 "xloc": [
9052 - "default.handlebars->47->1050",
9053 - "default.handlebars->47->1051",
9052 + "default.handlebars->47->1052",
9053 + "default.handlebars->47->1053",
9054 "default.handlebars->47->257"
9055 ]
9056 },
@@ -9232,7 +9232,7 @@
9232 "hu": "Offline Agent",
9233 "xloc": [
9234 "default-mobile.handlebars->11->874",
9235 - "default.handlebars->47->1714"
9235 + "default.handlebars->47->1716"
9236 ]
9237 },
9238 {
@@ -9260,7 +9260,7 @@
9260 "hu": "Online Agent",
9261 "xloc": [
9262 "default-mobile.handlebars->11->873",
9263 - "default.handlebars->47->1713"
9263 + "default.handlebars->47->1715"
9264 ]
9265 },
9266 {
@@ -9359,7 +9359,7 @@
9359 "zh-cht": "代理在特權降低的遠程設備上運行。",
9360 "hu": "Az Agent csökkentett jogosultságokkal fut a távoli eszközön.",
9361 "xloc": [
9362 - "default.handlebars->47->1044"
9362 + "default.handlebars->47->1046"
9363 ]
9364 },
9365 {
@@ -9482,9 +9482,9 @@
9482 "zh-cht": "代理",
9483 "hu": "Agent-ek",
9484 "xloc": [
9485 - "default.handlebars->47->2370",
9486 - "default.handlebars->47->3294",
9487 - "default.handlebars->47->573"
9485 + "default.handlebars->47->2372",
9486 + "default.handlebars->47->3296",
9487 + "default.handlebars->47->575"
9488 ]
9489 },
9490 {
@@ -9512,7 +9512,7 @@
9512 "hu": "albán",
9513 "xloc": [
9514 "default-mobile.handlebars->11->105",
9515 - "default.handlebars->47->1796",
9515 + "default.handlebars->47->1798",
9516 "login2.handlebars->7->2"
9517 ]
9518 },
@@ -9521,8 +9521,8 @@
9521 "nl": "Alert Box",
9522 "pl": "Okno Powiadomienia",
9523 "xloc": [
9524 - "default.handlebars->47->1175",
9525 - "default.handlebars->47->757"
9524 + "default.handlebars->47->1177",
9525 + "default.handlebars->47->759"
9526 ]
9527 },
9528 {
@@ -9552,7 +9552,7 @@
9552 "default-mobile.handlebars->11->355",
9553 "default-mobile.handlebars->11->688",
9554 "default-mobile.handlebars->11->690",
9555 - "default.handlebars->47->3114",
9555 + "default.handlebars->47->3116",
9556 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
9557 ]
9558 },
@@ -9580,7 +9580,7 @@
9580 "zh-cht": "全部可用",
9581 "hu": "Összes elérhető",
9582 "xloc": [
9583 - "default.handlebars->47->2644"
9583 + "default.handlebars->47->2646"
9584 ]
9585 },
9586 {
@@ -9607,8 +9607,8 @@
9607 "zh-cht": "所有可用的代理",
9608 "hu": "Az összes rendelkezésre álló Agent",
9609 "xloc": [
9610 - "default.handlebars->47->2371",
9611 - "default.handlebars->47->574"
9610 + "default.handlebars->47->2373",
9611 + "default.handlebars->47->576"
9612 ]
9613 },
9614 {
@@ -9635,7 +9635,7 @@
9635 "zh-cht": "所有顯示",
9636 "hu": "Összes Kijelző",
9637 "xloc": [
9638 - "default.handlebars->47->1464"
9638 + "default.handlebars->47->1466"
9639 ]
9640 },
9641 {
@@ -9662,7 +9662,7 @@
9662 "zh-cht": "所有事件",
9663 "hu": "Összes Esemény",
9664 "xloc": [
9665 - "default.handlebars->47->2642"
9665 + "default.handlebars->47->2644"
9666 ]
9667 },
9668 {
@@ -9689,9 +9689,9 @@
9689 "zh-cht": "全部聚焦",
9690 "hu": "Teljes Focus mode",
9691 "xloc": [
9692 - "default.handlebars->47->1383",
9692 "default.handlebars->47->1385",
9694 - "default.handlebars->47->1386"
9693 + "default.handlebars->47->1387",
9694 + "default.handlebars->47->1388"
9695 ]
9696 },
9697 {
@@ -9753,8 +9753,8 @@
9753 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
9754 "hu": "Engedélyezi a felhasználók számára az eszközcsoport és a csoportba tartozó eszközök kezelését.",
9755 "xloc": [
9756 - "default.handlebars->47->2283",
9757 - "default.handlebars->47->2864"
9756 + "default.handlebars->47->2285",
9757 + "default.handlebars->47->2866"
9758 ]
9759 },
9760 {
@@ -9781,7 +9781,7 @@
9781 "zh-cht": "允許用戶管理此裝置。",
9782 "hu": "Engedélyezze a felhasználóknak, hogy kezeljék ezt az eszközt.",
9783 "xloc": [
9784 - "default.handlebars->47->2284"
9784 + "default.handlebars->47->2286"
9785 ]
9786 },
9787 {
@@ -9889,8 +9889,8 @@
9889 "xloc": [
9890 "default-mobile.handlebars->11->643",
9891 "default-mobile.handlebars->11->647",
9892 - "default.handlebars->47->1407",
9893 - "default.handlebars->47->1411"
9892 + "default.handlebars->47->1409",
9893 + "default.handlebars->47->1413"
9894 ]
9895 },
9896 {
@@ -9917,7 +9917,7 @@
9917 "zh-cht": "替代Shell",
9918 "hu": "Alternatív Shell",
9919 "xloc": [
9920 - "default.handlebars->47->1373"
9920 + "default.handlebars->47->1375"
9921 ]
9922 },
9923 {
@@ -10000,7 +10000,7 @@
10000 "zh-cht": "備用(F10 = ESC + 0)",
10001 "hu": "Alternatív (F10 = ESC+0)",
10002 "xloc": [
10003 - "default.handlebars->47->1498",
10003 + "default.handlebars->47->1500",
10004 "sharing.handlebars->11->37"
10005 ]
10006 },
@@ -10083,10 +10083,10 @@
10083 "zh-cht": "一直通知",
10084 "hu": "Minden kapcsolat értesítés",
10085 "xloc": [
10086 - "default.handlebars->47->2145",
10087 - "default.handlebars->47->2823",
10088 - "default.handlebars->47->2928",
10089 - "default.handlebars->47->958"
10086 + "default.handlebars->47->2147",
10087 + "default.handlebars->47->2825",
10088 + "default.handlebars->47->2930",
10089 + "default.handlebars->47->960"
10090 ]
10091 },
10092 {
@@ -10113,10 +10113,10 @@
10113 "zh-cht": "一直提示",
10114 "hu": "Minden kapcsolat engedélykérés",
10115 "xloc": [
10116 - "default.handlebars->47->2146",
10117 - "default.handlebars->47->2824",
10118 - "default.handlebars->47->2929",
10119 - "default.handlebars->47->959"
10116 + "default.handlebars->47->2148",
10117 + "default.handlebars->47->2826",
10118 + "default.handlebars->47->2931",
10119 + "default.handlebars->47->961"
10120 ]
10121 },
10122 {
@@ -10207,7 +10207,7 @@
10207 "de": "Ein unbekannter Fehler ist aufgetreten.",
10208 "es": "Ha ocurrido un error desconcido.",
10209 "xloc": [
10210 - "default.handlebars->47->3066"
10210 + "default.handlebars->47->3068"
10211 ]
10212 },
10213 {
@@ -10266,7 +10266,7 @@
10266 "hu": "Android APK",
10267 "xloc": [
10268 "default-mobile.handlebars->11->926",
10269 - "default.handlebars->47->635"
10269 + "default.handlebars->47->637"
10270 ]
10271 },
10272 {
@@ -10354,7 +10354,7 @@
10354 "en": "Android MeshAgent",
10355 "nl": "Android MeshAgent",
10356 "xloc": [
10357 - "default.handlebars->47->579"
10357 + "default.handlebars->47->581"
10358 ]
10359 },
10360 {
@@ -10409,8 +10409,8 @@
10409 "zh-cht": "殺毒軟件未激活",
10410 "hu": "A vírusirtó nem aktív",
10411 "xloc": [
10412 - "default.handlebars->47->2406",
10413 - "default.handlebars->47->2420"
10412 + "default.handlebars->47->2408",
10413 + "default.handlebars->47->2422"
10414 ]
10415 },
10416 {
@@ -10438,7 +10438,7 @@
10438 "hu": "Antivírus",
10439 "xloc": [
10440 "default-mobile.handlebars->11->756",
10441 - "default.handlebars->47->947"
10441 + "default.handlebars->47->949"
10442 ]
10443 },
10444 {
@@ -10465,7 +10465,7 @@
10465 "zh-cht": "任何可支持的",
10466 "hu": "Bármilyen támogatott",
10467 "xloc": [
10468 - "default.handlebars->47->547"
10468 + "default.handlebars->47->549"
10469 ]
10470 },
10471 {
@@ -10547,13 +10547,13 @@
10547 "zh-cht": "蘋果macOS",
10548 "hu": "Apple macOS",
10549 "xloc": [
10550 - "default.handlebars->47->589"
10550 + "default.handlebars->47->591"
10551 ]
10552 },
10553 {
10554 "en": "Apple macOS (UnInstall)",
10555 "xloc": [
10556 - "default.handlebars->47->594"
10556 + "default.handlebars->47->596"
10557 ]
10558 },
10559 {
@@ -10561,7 +10561,7 @@
10561 "nl": "Apple macOS uitvoerbare bestanden moeten uit quarantaine worden verwijderd om 'xattr -r -d com.apple.quarantine meshagent' te kunnen starten",
10562 "xloc": [
10563 "agentinvite.handlebars->3->12",
10564 - "default.handlebars->47->667"
10564 + "default.handlebars->47->669"
10565 ]
10566 },
10567 {
@@ -10588,7 +10588,7 @@
10588 "zh-cht": "僅限Apple macOS",
10589 "hu": "csak Apple macOS",
10590 "xloc": [
10591 - "default.handlebars->47->549"
10591 + "default.handlebars->47->551"
10592 ]
10593 },
10594 {
@@ -10738,7 +10738,7 @@
10738 "zh-cht": "應用程序,始終連接",
10739 "hu": "Alkalmazás, állandó csatlakozás",
10740 "xloc": [
10741 - "default.handlebars->47->603"
10741 + "default.handlebars->47->605"
10742 ]
10743 },
10744 {
@@ -10765,7 +10765,7 @@
10765 "zh-cht": "應用程序,根據用戶請求連接",
10766 "hu": "Alkalmazás, csatlakozás a felhasználó kérésére",
10767 "xloc": [
10768 - "default.handlebars->47->602"
10768 + "default.handlebars->47->604"
10769 ]
10770 },
10771 {
@@ -10793,7 +10793,7 @@
10793 "hu": "arab (Algéria)",
10794 "xloc": [
10795 "default-mobile.handlebars->11->107",
10796 - "default.handlebars->47->1798",
10796 + "default.handlebars->47->1800",
10797 "login2.handlebars->7->4"
10798 ]
10799 },
@@ -10822,7 +10822,7 @@
10822 "hu": "arab (Bahrein)",
10823 "xloc": [
10824 "default-mobile.handlebars->11->108",
10825 - "default.handlebars->47->1799",
10825 + "default.handlebars->47->1801",
10826 "login2.handlebars->7->5"
10827 ]
10828 },
@@ -10851,7 +10851,7 @@
10851 "hu": "arab (Egyiptom)",
10852 "xloc": [
10853 "default-mobile.handlebars->11->109",
10854 - "default.handlebars->47->1800",
10854 + "default.handlebars->47->1802",
10855 "login2.handlebars->7->6"
10856 ]
10857 },
@@ -10880,7 +10880,7 @@
10880 "hu": "arab (Irak)",
10881 "xloc": [
10882 "default-mobile.handlebars->11->110",
10883 - "default.handlebars->47->1801",
10883 + "default.handlebars->47->1803",
10884 "login2.handlebars->7->7"
10885 ]
10886 },
@@ -10909,7 +10909,7 @@
10909 "hu": "arab (Jordánia)",
10910 "xloc": [
10911 "default-mobile.handlebars->11->111",
10912 - "default.handlebars->47->1802",
10912 + "default.handlebars->47->1804",
10913 "login2.handlebars->7->8"
10914 ]
10915 },
@@ -10938,7 +10938,7 @@
10938 "hu": "arab (Kuvait)",
10939 "xloc": [
10940 "default-mobile.handlebars->11->112",
10941 - "default.handlebars->47->1803",
10941 + "default.handlebars->47->1805",
10942 "login2.handlebars->7->9"
10943 ]
10944 },
@@ -10967,7 +10967,7 @@
10967 "hu": "arab (Libanon)",
10968 "xloc": [
10969 "default-mobile.handlebars->11->113",
10970 - "default.handlebars->47->1804",
10970 + "default.handlebars->47->1806",
10971 "login2.handlebars->7->10"
10972 ]
10973 },
@@ -10996,7 +10996,7 @@
10996 "hu": "arab (Líbia)",
10997 "xloc": [
10998 "default-mobile.handlebars->11->114",
10999 - "default.handlebars->47->1805",
10999 + "default.handlebars->47->1807",
11000 "login2.handlebars->7->11"
11001 ]
11002 },
@@ -11025,7 +11025,7 @@
11025 "hu": "arab (Marokkó)",
11026 "xloc": [
11027 "default-mobile.handlebars->11->115",
11028 - "default.handlebars->47->1806",
11028 + "default.handlebars->47->1808",
11029 "login2.handlebars->7->12"
11030 ]
11031 },
@@ -11054,7 +11054,7 @@
11054 "hu": "arab (Omán)",
11055 "xloc": [
11056 "default-mobile.handlebars->11->116",
11057 - "default.handlebars->47->1807",
11057 + "default.handlebars->47->1809",
11058 "login2.handlebars->7->13"
11059 ]
11060 },
@@ -11083,7 +11083,7 @@
11083 "hu": "arab (Katar)",
11084 "xloc": [
11085 "default-mobile.handlebars->11->117",
11086 - "default.handlebars->47->1808",
11086 + "default.handlebars->47->1810",
11087 "login2.handlebars->7->14"
11088 ]
11089 },
@@ -11112,7 +11112,7 @@
11112 "hu": "arab (Szaúd-Arábia)",
11113 "xloc": [
11114 "default-mobile.handlebars->11->118",
11115 - "default.handlebars->47->1809",
11115 + "default.handlebars->47->1811",
11116 "login2.handlebars->7->15"
11117 ]
11118 },
@@ -11141,7 +11141,7 @@
11141 "hu": "arab",
11142 "xloc": [
11143 "default-mobile.handlebars->11->106",
11144 - "default.handlebars->47->1797",
11144 + "default.handlebars->47->1799",
11145 "login2.handlebars->7->3"
11146 ]
11147 },
@@ -11170,7 +11170,7 @@
11170 "hu": "arab (Szíria)",
11171 "xloc": [
11172 "default-mobile.handlebars->11->119",
11173 - "default.handlebars->47->1810",
11173 + "default.handlebars->47->1812",
11174 "login2.handlebars->7->16"
11175 ]
11176 },
@@ -11199,7 +11199,7 @@
11199 "hu": "arab (Tunézia)",
11200 "xloc": [
11201 "default-mobile.handlebars->11->120",
11202 - "default.handlebars->47->1811",
11202 + "default.handlebars->47->1813",
11203 "login2.handlebars->7->17"
11204 ]
11205 },
@@ -11228,7 +11228,7 @@
11228 "hu": "arab (Egyesült Arab Emírségek)",
11229 "xloc": [
11230 "default-mobile.handlebars->11->121",
11231 - "default.handlebars->47->1812",
11231 + "default.handlebars->47->1814",
11232 "login2.handlebars->7->18"
11233 ]
11234 },
@@ -11257,7 +11257,7 @@
11257 "hu": "arab (Jemen)",
11258 "xloc": [
11259 "default-mobile.handlebars->11->122",
11260 - "default.handlebars->47->1813",
11260 + "default.handlebars->47->1815",
11261 "login2.handlebars->7->19"
11262 ]
11263 },
@@ -11286,7 +11286,7 @@
11286 "hu": "aragóniai",
11287 "xloc": [
11288 "default-mobile.handlebars->11->123",
11289 - "default.handlebars->47->1814",
11289 + "default.handlebars->47->1816",
11290 "login2.handlebars->7->20"
11291 ]
11292 },
@@ -11317,9 +11317,9 @@
11317 "default-mobile.handlebars->11->723",
11318 "default-mobile.handlebars->11->725",
11319 "default-mobile.handlebars->11->727",
11320 - "default.handlebars->47->1578",
11320 "default.handlebars->47->1580",
11322 - "default.handlebars->47->1582"
11321 + "default.handlebars->47->1582",
11322 + "default.handlebars->47->1584"
11323 ]
11324 },
11325 {
@@ -11346,7 +11346,7 @@
11346 "zh-cht": "你確定要連接到{0}裝置嗎?",
11347 "hu": "Biztos, hogy {0} eszközökhöz szeretne csatlakozni?",
11348 "xloc": [
11349 - "default.handlebars->47->473"
11349 + "default.handlebars->47->475"
11350 ]
11351 },
11352 {
@@ -11374,7 +11374,7 @@
11374 "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.",
11375 "xloc": [
11376 "default-mobile.handlebars->11->914",
11377 - "default.handlebars->47->2250"
11377 + "default.handlebars->47->2252"
11378 ]
11379 },
11380 {
@@ -11401,13 +11401,13 @@
11401 "zh-cht": "你確定要刪除節點{0}嗎?",
11402 "hu": "Biztos, hogy törölni akarja a {0} node-ot?",
11403 "xloc": [
11404 - "default.handlebars->47->1299"
11404 + "default.handlebars->47->1301"
11405 ]
11406 },
11407 {
11408 "en": "Are you sure you want to open this file/folder on the remote devices desktop ?",
11409 "xloc": [
11410 - "default.handlebars->47->1522"
11410 + "default.handlebars->47->1524"
11411 ]
11412 },
11413 {
@@ -11434,7 +11434,7 @@
11434 "zh-cht": "你確定要卸載所選代理嗎?",
11435 "hu": "Biztos, hogy eltávolítja a kiválasztott Agentet?",
11436 "xloc": [
11437 - "default.handlebars->47->1288"
11437 + "default.handlebars->47->1290"
11438 ]
11439 },
11440 {
@@ -11461,7 +11461,7 @@
11461 "zh-cht": "你確定要卸載所選的{0}代理嗎?",
11462 "hu": "Biztos, hogy eltávolítja a(z) {0} Agentet?",
11463 "xloc": [
11464 - "default.handlebars->47->1287"
11464 + "default.handlebars->47->1289"
11465 ]
11466 },
11467 {
@@ -11488,7 +11488,7 @@
11488 "zh-cht": "你確定要{0}外掛嗎:{1}",
11489 "hu": "Biztosm, hogy {0} szeretné használni a következő beépülő modult: {1}",
11490 "xloc": [
11491 - "default.handlebars->47->3346"
11491 + "default.handlebars->47->3348"
11492 ]
11493 },
11494 {
@@ -11544,7 +11544,7 @@
11544 "hu": "örmény",
11545 "xloc": [
11546 "default-mobile.handlebars->11->124",
11547 - "default.handlebars->47->1815",
11547 + "default.handlebars->47->1817",
11548 "login2.handlebars->7->21"
11549 ]
11550 },
@@ -11736,7 +11736,7 @@
11736 "hu": "asszámi",
11737 "xloc": [
11738 "default-mobile.handlebars->11->125",
11739 - "default.handlebars->47->1816",
11739 + "default.handlebars->47->1818",
11740 "login2.handlebars->7->22"
11741 ]
11742 },
@@ -11844,8 +11844,8 @@
11844 "zh-cht": "Windows 助手 (.exe)",
11845 "hu": "Assistant Windows rendszerhez (.exe)",
11846 "xloc": [
11847 - "default.handlebars->47->641",
11848 - "default.handlebars->47->645"
11847 + "default.handlebars->47->643",
11848 + "default.handlebars->47->647"
11849 ]
11850 },
11851 {
@@ -11900,7 +11900,7 @@
11900 "hu": "asztúriai",
11901 "xloc": [
11902 "default-mobile.handlebars->11->126",
11903 - "default.handlebars->47->1817",
11903 + "default.handlebars->47->1819",
11904 "login2.handlebars->7->23"
11905 ]
11906 },
@@ -11928,7 +11928,7 @@
11928 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
11929 "hu": "Intel(R) AMT ACM üzemmód aktiválásának kísérlete",
11930 "xloc": [
11931 - "default.handlebars->47->2494"
11931 + "default.handlebars->47->2496"
11932 ]
11933 },
11934 {
@@ -11982,9 +11982,9 @@
11982 "default-mobile.handlebars->11->659",
11983 "default-mobile.handlebars->11->663",
11984 "default-mobile.handlebars->11->675",
11985 - "default.handlebars->47->1473",
11986 - "default.handlebars->47->1477",
11987 - "default.handlebars->47->1489",
11985 + "default.handlebars->47->1475",
11986 + "default.handlebars->47->1479",
11987 + "default.handlebars->47->1491",
11988 "ssh.handlebars->3->21",
11989 "ssh.handlebars->3->22",
11990 "ssh.handlebars->3->5",
@@ -12015,7 +12015,7 @@
12015 "zh-cht": "認證軟體",
12016 "hu": "Hitelesítő alkalmazás beállítva",
12017 "xloc": [
12018 - "default.handlebars->47->2932"
12018 + "default.handlebars->47->2934"
12019 ]
12020 },
12021 {
@@ -12042,9 +12042,9 @@
12042 "zh-cht": "認證設備",
12043 "hu": "Hitelesítési eszköz",
12044 "xloc": [
12045 - "default.handlebars->47->1778",
12045 "default.handlebars->47->1780",
12047 - "default.handlebars->47->1784"
12046 + "default.handlebars->47->1782",
12047 + "default.handlebars->47->1786"
12048 ]
12049 },
12050 {
@@ -12073,8 +12073,8 @@
12073 "xloc": [
12074 "default-mobile.handlebars->11->676",
12075 "default-mobile.handlebars->11->682",
12076 - "default.handlebars->47->1491",
12077 - "default.handlebars->47->1506"
12076 + "default.handlebars->47->1493",
12077 + "default.handlebars->47->1508"
12078 ]
12079 },
12080 {
@@ -12105,8 +12105,8 @@
12105 "default-mobile.handlebars->11->311",
12106 "default-mobile.handlebars->11->70",
12107 "default-mobile.handlebars->11->73",
12108 - "default.handlebars->47->1774",
12108 "default.handlebars->47->1776",
12109 + "default.handlebars->47->1778",
12110 "default.handlebars->47->216",
12111 "default.handlebars->47->221"
12112 ]
@@ -12243,8 +12243,8 @@
12243 "zh-cht": "自動刪除",
12244 "hu": "Automatikus eltávolítás",
12245 "xloc": [
12246 - "default.handlebars->47->2130",
12247 - "default.handlebars->47->2635"
12246 + "default.handlebars->47->2132",
12247 + "default.handlebars->47->2637"
12248 ]
12249 },
12250 {
@@ -12302,7 +12302,7 @@
12302 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
12303 "hu": "Agent core dump fájl automatikus letöltése: \\\"{0}\\\"",
12304 "xloc": [
12305 - "default.handlebars->47->2575"
12305 + "default.handlebars->47->2577"
12306 ]
12307 },
12308 {
@@ -12408,7 +12408,7 @@
12408 "zh-cht": "自動移除非活動設備",
12409 "hu": "Az inaktív eszközök automatikus eltávolítása",
12410 "xloc": [
12411 - "default.handlebars->47->2278"
12411 + "default.handlebars->47->2280"
12412 ]
12413 },
12414 {
@@ -12435,7 +12435,7 @@
12435 "zh-cht": "可用內存",
12436 "hu": "Elérhető memória",
12437 "xloc": [
12438 - "default.handlebars->47->3275"
12438 + "default.handlebars->47->3277"
12439 ]
12440 },
12441 {
@@ -12463,7 +12463,7 @@
12463 "hu": "azerbajdzsáni",
12464 "xloc": [
12465 "default-mobile.handlebars->11->127",
12466 - "default.handlebars->47->1818",
12466 + "default.handlebars->47->1820",
12467 "login2.handlebars->7->24"
12468 ]
12469 },
@@ -12494,9 +12494,9 @@
12494 "default-mobile.handlebars->11->734",
12495 "default-mobile.handlebars->11->738",
12496 "default-mobile.handlebars->11->742",
12497 - "default.handlebars->47->925",
12498 - "default.handlebars->47->929",
12499 - "default.handlebars->47->933"
12497 + "default.handlebars->47->927",
12498 + "default.handlebars->47->931",
12499 + "default.handlebars->47->935"
12500 ]
12501 },
12502 {
@@ -12524,7 +12524,7 @@
12524 "hu": "BIOS",
12525 "xloc": [
12526 "default-mobile.handlebars->11->809",
12527 - "default.handlebars->47->1648"
12527 + "default.handlebars->47->1650"
12528 ]
12529 },
12530 {
@@ -12642,7 +12642,7 @@
12642 "hu": "BackSpace",
12643 "xloc": [
12644 "default-mobile.handlebars->11->624",
12645 - "default.handlebars->47->1389"
12645 + "default.handlebars->47->1391"
12646 ]
12647 },
12648 {
@@ -12670,7 +12670,7 @@
12670 "hu": "Háttérben és interaktív módon",
12671 "xloc": [
12672 "agentinvite.handlebars->3->8",
12673 - "default.handlebars->47->598"
12673 + "default.handlebars->47->600"
12674 ]
12675 },
12676 {
@@ -12697,10 +12697,10 @@
12697 "zh-cht": "背景與互動",
12698 "hu": "Háttérben és interaktív módon",
12699 "xloc": [
12700 - "default.handlebars->47->2377",
12701 - "default.handlebars->47->2384",
12702 - "default.handlebars->47->560",
12703 - "default.handlebars->47->581"
12700 + "default.handlebars->47->2379",
12701 + "default.handlebars->47->2386",
12702 + "default.handlebars->47->562",
12703 + "default.handlebars->47->583"
12704 ]
12705 },
12706 {
@@ -12728,11 +12728,11 @@
12728 "hu": "Csak háttérben",
12729 "xloc": [
12730 "agentinvite.handlebars->3->9",
12731 - "default.handlebars->47->2378",
12732 - "default.handlebars->47->2385",
12733 - "default.handlebars->47->561",
12734 - "default.handlebars->47->582",
12735 - "default.handlebars->47->599"
12731 + "default.handlebars->47->2380",
12732 + "default.handlebars->47->2387",
12733 + "default.handlebars->47->563",
12734 + "default.handlebars->47->584",
12735 + "default.handlebars->47->601"
12736 ]
12737 },
12738 {
@@ -12787,8 +12787,8 @@
12787 "zh-cht": "備用碼",
12788 "hu": "Biztonsági kódok generálva",
12789 "xloc": [
12790 - "default.handlebars->47->2935",
12791 - "default.handlebars->47->3162"
12790 + "default.handlebars->47->2937",
12791 + "default.handlebars->47->3164"
12792 ]
12793 },
12794 {
@@ -12870,7 +12870,7 @@
12870 "zh-cht": "錯誤的簽名",
12871 "hu": "Rossz aláírás",
12872 "xloc": [
12873 - "default.handlebars->47->3257"
12873 + "default.handlebars->47->3259"
12874 ]
12875 },
12876 {
@@ -12897,7 +12897,7 @@
12897 "zh-cht": "錯誤的網絡憑證",
12898 "hu": "Rossz web tanúsítvány",
12899 "xloc": [
12900 - "default.handlebars->47->3256"
12900 + "default.handlebars->47->3258"
12901 ]
12902 },
12903 {
@@ -12925,7 +12925,7 @@
12925 "hu": "baszk",
12926 "xloc": [
12927 "default-mobile.handlebars->11->128",
12928 - "default.handlebars->47->1819",
12928 + "default.handlebars->47->1821",
12929 "login2.handlebars->7->25"
12930 ]
12931 },
@@ -12953,7 +12953,7 @@
12953 "zh-cht": "批處理文件上傳",
12954 "hu": "Kötegelt fájl feltölés",
12955 "xloc": [
12956 - "default.handlebars->47->770"
12956 + "default.handlebars->47->772"
12957 ]
12958 },
12959 {
@@ -13015,7 +13015,7 @@
13015 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
13016 "hu": "{0} fájl kötegelt feltöltése a(z) {1} mappába",
13017 "xloc": [
13018 - "default.handlebars->47->2574"
13018 + "default.handlebars->47->2576"
13019 ]
13020 },
13021 {
@@ -13043,7 +13043,7 @@
13043 "hu": "fehérorosz",
13044 "xloc": [
13045 "default-mobile.handlebars->11->130",
13046 - "default.handlebars->47->1821",
13046 + "default.handlebars->47->1823",
13047 "login2.handlebars->7->27"
13048 ]
13049 },
@@ -13072,7 +13072,7 @@
13072 "hu": "bengáli",
13073 "xloc": [
13074 "default-mobile.handlebars->11->131",
13075 - "default.handlebars->47->1822",
13075 + "default.handlebars->47->1824",
13076 "login2.handlebars->7->28"
13077 ]
13078 },
@@ -13135,7 +13135,7 @@
13135 "nl": "BitLocker",
13136 "xloc": [
13137 "default-mobile.handlebars->11->865",
13138 - "default.handlebars->47->1704"
13138 + "default.handlebars->47->1706"
13139 ]
13140 },
13141 {
@@ -13144,7 +13144,7 @@
13144 "pl": "Informacje o BitLocker",
13145 "xloc": [
13146 "default-mobile.handlebars->11->872",
13147 - "default.handlebars->47->1711"
13147 + "default.handlebars->47->1713"
13148 ]
13149 },
13150 {
@@ -13172,7 +13172,7 @@
13172 "hu": "Rendszerbetöltő",
13173 "xloc": [
13174 "default-mobile.handlebars->11->769",
13175 - "default.handlebars->47->1598"
13175 + "default.handlebars->47->1600"
13176 ]
13177 },
13178 {
@@ -13200,7 +13200,7 @@
13200 "hu": "bosznia",
13201 "xloc": [
13202 "default-mobile.handlebars->11->132",
13203 - "default.handlebars->47->1823",
13203 + "default.handlebars->47->1825",
13204 "login2.handlebars->7->29"
13205 ]
13206 },
@@ -13229,7 +13229,7 @@
13229 "hu": "breton",
13230 "xloc": [
13231 "default-mobile.handlebars->11->133",
13232 - "default.handlebars->47->1824",
13232 + "default.handlebars->47->1826",
13233 "login2.handlebars->7->30"
13234 ]
13235 },
@@ -13257,7 +13257,7 @@
13257 "zh-cht": "廣播",
13258 "hu": "Broadcast üzenet...",
13259 "xloc": [
13260 - "default.handlebars->47->2830",
13260 + "default.handlebars->47->2832",
13261 "default.handlebars->container->column_l->p4->3->1->0->3->1"
13262 ]
13263 },
@@ -13285,7 +13285,7 @@
13285 "zh-cht": "廣播消息",
13286 "hu": "Broadcast üzenet",
13287 "xloc": [
13288 - "default.handlebars->47->2746"
13288 + "default.handlebars->47->2748"
13289 ]
13290 },
13291 {
@@ -13312,7 +13312,7 @@
13312 "zh-cht": "向所有連接的用戶廣播消息。",
13313 "hu": "Üzenet küldése az összes csatlakoztatott felhasználónak.",
13314 "xloc": [
13315 - "default.handlebars->47->2741"
13315 + "default.handlebars->47->2743"
13316 ]
13317 },
13318 {
@@ -13339,7 +13339,7 @@
13339 "zh-cht": "瀏覽器",
13340 "hu": "Böngésző",
13341 "xloc": [
13342 - "default.handlebars->47->3136"
13342 + "default.handlebars->47->3138"
13343 ]
13344 },
13345 {
@@ -13422,7 +13422,7 @@
13422 "hu": "bolgár",
13423 "xloc": [
13424 "default-mobile.handlebars->11->129",
13425 - "default.handlebars->47->1820",
13425 + "default.handlebars->47->1822",
13426 "login2.handlebars->7->26"
13427 ]
13428 },
@@ -13451,7 +13451,7 @@
13451 "hu": "burmai",
13452 "xloc": [
13453 "default-mobile.handlebars->11->134",
13454 - "default.handlebars->47->1825",
13454 + "default.handlebars->47->1827",
13455 "login2.handlebars->7->31"
13456 ]
13457 },
@@ -13479,7 +13479,7 @@
13479 "zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
13480 "hu": "Alapértelmezés szerint az inaktív eszközök 1 nap után eltávolításra kerülnek.",
13481 "xloc": [
13482 - "default.handlebars->47->2280"
13482 + "default.handlebars->47->2282"
13483 ]
13484 },
13485 {
@@ -13506,7 +13506,7 @@
13506 "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
13507 "hu": "Alapértelmezés szerint az inaktív eszközök {0} nap után eltávolításra kerülnek.",
13508 "xloc": [
13509 - "default.handlebars->47->2281"
13509 + "default.handlebars->47->2283"
13510 ]
13511 },
13512 {
@@ -13542,7 +13542,7 @@
13542 "zh-cht": "字節輸入",
13543 "hu": "Fogadott Byte-ok",
13544 "xloc": [
13545 - "default.handlebars->47->3132"
13545 + "default.handlebars->47->3134"
13546 ]
13547 },
13548 {
@@ -13569,7 +13569,7 @@
13569 "zh-cht": "字節輸出",
13570 "hu": "Küldött Byte-ok",
13571 "xloc": [
13572 - "default.handlebars->47->3133"
13572 + "default.handlebars->47->3135"
13573 ]
13574 },
13575 {
@@ -13639,8 +13639,8 @@
13639 "hu": "CCM",
13640 "xloc": [
13641 "default-mobile.handlebars->11->503",
13642 - "default.handlebars->47->430",
13643 - "default.handlebars->47->901"
13642 + "default.handlebars->47->432",
13643 + "default.handlebars->47->903"
13644 ]
13645 },
13646 {
@@ -13667,7 +13667,7 @@
13667 "zh-cht": "CCM模式",
13668 "hu": "CCM mode",
13669 "xloc": [
13670 - "default.handlebars->47->2233"
13670 + "default.handlebars->47->2235"
13671 ]
13672 },
13673 {
@@ -13675,7 +13675,7 @@
13675 "nl": "CD-ROM",
13676 "xloc": [
13677 "default-mobile.handlebars->11->858",
13678 - "default.handlebars->47->1697"
13678 + "default.handlebars->47->1699"
13679 ]
13680 },
13681 {
@@ -13703,9 +13703,9 @@
13703 "hu": "CIRA",
13704 "xloc": [
13705 "default-mobile.handlebars->11->464",
13706 - "default.handlebars->47->3282",
13707 - "default.handlebars->47->407",
13708 - "default.handlebars->47->708"
13706 + "default.handlebars->47->3284",
13707 + "default.handlebars->47->409",
13708 + "default.handlebars->47->710"
13709 ]
13710 },
13711 {
@@ -13732,7 +13732,7 @@
13732 "zh-cht": "CIRA伺服器",
13733 "hu": "CIRA Kiszolgáló",
13734 "xloc": [
13735 - "default.handlebars->47->3330"
13735 + "default.handlebars->47->3332"
13736 ]
13737 },
13738 {
@@ -13759,7 +13759,7 @@
13759 "zh-cht": "CIRA伺服器指令",
13760 "hu": "CIRA kiszolgáló parancsok",
13761 "xloc": [
13762 - "default.handlebars->47->3331"
13762 + "default.handlebars->47->3333"
13763 ]
13764 },
13765 {
@@ -13813,7 +13813,7 @@
13813 "zh-cht": "CIRA設置",
13814 "hu": "CIRA beállítás",
13815 "xloc": [
13816 - "default.handlebars->47->2241"
13816 + "default.handlebars->47->2243"
13817 ]
13818 },
13819 {
@@ -13841,9 +13841,9 @@
13841 "hu": "CPU",
13842 "xloc": [
13843 "default-mobile.handlebars->11->815",
13844 - "default.handlebars->47->1574",
13845 - "default.handlebars->47->1654",
13846 - "default.handlebars->47->3306",
13844 + "default.handlebars->47->1576",
13845 + "default.handlebars->47->1656",
13846 + "default.handlebars->47->3308",
13847 "default.handlebars->container->column_l->p40->3->1->p40type->5"
13848 ]
13849 },
@@ -13871,7 +13871,7 @@
13871 "zh-cht": "CPU負載",
13872 "hu": "CPU terhelés",
13873 "xloc": [
13874 - "default.handlebars->47->3271"
13874 + "default.handlebars->47->3273"
13875 ]
13876 },
13877 {
@@ -13898,7 +13898,7 @@
13898 "zh-cht": "最近15分鐘的CPU負載",
13899 "hu": "CPU terhelés az elmúlt 15 percben",
13900 "xloc": [
13901 - "default.handlebars->47->3274"
13901 + "default.handlebars->47->3276"
13902 ]
13903 },
13904 {
@@ -13925,7 +13925,7 @@
13925 "zh-cht": "最近5分鐘的CPU負載",
13926 "hu": "CPU terhelés az elmúlt 5 percben",
13927 "xloc": [
13928 - "default.handlebars->47->3273"
13928 + "default.handlebars->47->3275"
13929 ]
13930 },
13931 {
@@ -13952,7 +13952,7 @@
13952 "zh-cht": "最近一分鐘的CPU負載",
13953 "hu": "CPU terhelés az utolsó percben",
13954 "xloc": [
13955 - "default.handlebars->47->3272"
13955 + "default.handlebars->47->3274"
13956 ]
13957 },
13958 {
@@ -13979,8 +13979,8 @@
13979 "zh-cht": "CR+LF",
13980 "hu": "CR+LF",
13981 "xloc": [
13982 - "default.handlebars->47->1469",
13983 - "default.handlebars->47->1500",
13982 + "default.handlebars->47->1471",
13983 + "default.handlebars->47->1502",
13984 "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
13985 "sharing.handlebars->11->25",
13986 "sharing.handlebars->11->39",
@@ -14011,7 +14011,7 @@
14011 "zh-cht": "CSV",
14012 "hu": "CSV",
14013 "xloc": [
14014 - "default.handlebars->47->2652"
14014 + "default.handlebars->47->2654"
14015 ]
14016 },
14017 {
@@ -14038,15 +14038,15 @@
14038 "zh-cht": "CSV格式",
14039 "hu": "CSV Formátum",
14040 "xloc": [
14041 - "default.handlebars->47->2656",
14042 - "default.handlebars->47->2733",
14043 - "default.handlebars->47->779"
14041 + "default.handlebars->47->2658",
14042 + "default.handlebars->47->2735",
14043 + "default.handlebars->47->781"
14044 ]
14045 },
14046 {
14047 "en": "CSV file format is as follows:",
14048 "xloc": [
14049 - "default.handlebars->47->2719"
14049 + "default.handlebars->47->2721"
14050 ]
14051 },
14052 {
@@ -14097,7 +14097,7 @@
14097 "zh-cht": "呼叫錯誤",
14098 "hu": "Hívás hiba",
14099 "xloc": [
14100 - "default.handlebars->47->3347"
14100 + "default.handlebars->47->3349"
14101 ]
14102 },
14103 {
@@ -14108,8 +14108,8 @@
14108 "pl": "CallMeBot",
14109 "es": "CallMeBot",
14110 "xloc": [
14111 - "default.handlebars->47->1747",
14112 - "default.handlebars->47->2970"
14111 + "default.handlebars->47->1749",
14112 + "default.handlebars->47->2972"
14113 ]
14114 },
14115 {
@@ -14166,9 +14166,9 @@
14166 "agent-translations.json",
14167 "default-mobile.handlebars->11->320",
14168 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
14169 - "default.handlebars->47->2097",
14170 - "default.handlebars->47->3336",
14171 - "default.handlebars->47->533",
14169 + "default.handlebars->47->2099",
14170 + "default.handlebars->47->3338",
14171 + "default.handlebars->47->535",
14172 "default.handlebars->container->dialog->idx_dlgButtonBar",
14173 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
14174 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -14284,12 +14284,12 @@
14284 "default-mobile.handlebars->11->850",
14285 "default-mobile.handlebars->11->852",
14286 "default-mobile.handlebars->11->855",
14287 - "default.handlebars->47->1672",
14288 - "default.handlebars->47->1678",
14289 - "default.handlebars->47->1684",
14290 - "default.handlebars->47->1689",
14287 + "default.handlebars->47->1674",
14288 + "default.handlebars->47->1680",
14289 + "default.handlebars->47->1686",
14290 "default.handlebars->47->1691",
14292 - "default.handlebars->47->1694"
14291 + "default.handlebars->47->1693",
14292 + "default.handlebars->47->1696"
14293 ]
14294 },
14295 {
@@ -14319,9 +14319,9 @@
14319 "default-mobile.handlebars->11->831",
14320 "default-mobile.handlebars->11->837",
14321 "default-mobile.handlebars->11->843",
14322 - "default.handlebars->47->1670",
14323 - "default.handlebars->47->1676",
14324 - "default.handlebars->47->1682"
14322 + "default.handlebars->47->1672",
14323 + "default.handlebars->47->1678",
14324 + "default.handlebars->47->1684"
14325 ]
14326 },
14327 {
@@ -14329,7 +14329,7 @@
14329 "nl": "Resterende capaciteit",
14330 "xloc": [
14331 "default-mobile.handlebars->11->856",
14332 - "default.handlebars->47->1695"
14332 + "default.handlebars->47->1697"
14333 ]
14334 },
14335 {
@@ -14357,7 +14357,7 @@
14357 "hu": "katalán",
14358 "xloc": [
14359 "default-mobile.handlebars->11->135",
14360 - "default.handlebars->47->1826",
14360 + "default.handlebars->47->1828",
14361 "login2.handlebars->7->32"
14362 ]
14363 },
@@ -14385,7 +14385,7 @@
14385 "zh-cht": "在這裡為中心顯示地圖",
14386 "hu": "Térkép középpont",
14387 "xloc": [
14388 - "default.handlebars->47->854"
14388 + "default.handlebars->47->856"
14389 ]
14390 },
14391 {
@@ -14466,7 +14466,7 @@
14466 "hu": "chamorro",
14467 "xloc": [
14468 "default-mobile.handlebars->11->136",
14469 - "default.handlebars->47->1827",
14469 + "default.handlebars->47->1829",
14470 "login2.handlebars->7->33"
14471 ]
14472 },
@@ -14523,7 +14523,7 @@
14523 "zh-cht": "更改{0}的電郵",
14524 "hu": "{0} e-mail-címének módosítása",
14525 "xloc": [
14526 - "default.handlebars->47->3012"
14526 + "default.handlebars->47->3014"
14527 ]
14528 },
14529 {
@@ -14550,9 +14550,9 @@
14550 "zh-cht": "更改群",
14551 "hu": "Csoport módosítása",
14552 "xloc": [
14553 - "default.handlebars->47->1016",
14554 - "default.handlebars->47->1296",
14555 - "default.handlebars->47->1297"
14553 + "default.handlebars->47->1018",
14554 + "default.handlebars->47->1298",
14555 + "default.handlebars->47->1299"
14556 ]
14557 },
14558 {
@@ -14588,8 +14588,8 @@
14588 "hu": "Jelszó módosítása",
14589 "xloc": [
14590 "default-mobile.handlebars->11->328",
14591 - "default.handlebars->47->2043",
14592 - "default.handlebars->47->2956"
14591 + "default.handlebars->47->2045",
14592 + "default.handlebars->47->2958"
14593 ]
14594 },
14595 {
@@ -14616,7 +14616,7 @@
14616 "zh-cht": "更改{0}的密碼",
14617 "hu": "Jelszó módosítása: {0}",
14618 "xloc": [
14619 - "default.handlebars->47->3021"
14619 + "default.handlebars->47->3023"
14620 ]
14621 },
14622 {
@@ -14643,7 +14643,7 @@
14643 "zh-cht": "更改{0}的真實名稱",
14644 "hu": "{0} felhasználó teljes nevének módosítása",
14645 "xloc": [
14646 - "default.handlebars->47->3007"
14646 + "default.handlebars->47->3009"
14647 ]
14648 },
14649 {
@@ -14804,7 +14804,7 @@
14804 "zh-cht": "更改該用戶的密碼",
14805 "hu": "A felhasználó jelszavának módosítása",
14806 "xloc": [
14807 - "default.handlebars->47->2955"
14807 + "default.handlebars->47->2957"
14808 ]
14809 },
14810 {
@@ -14858,7 +14858,7 @@
14858 "zh-cht": "在此處更改你的帳戶電郵地址。",
14859 "hu": "Itt módosíthatja fiókja e-mail címét.",
14860 "xloc": [
14861 - "default.handlebars->47->2030"
14861 + "default.handlebars->47->2032"
14862 ]
14863 },
14864 {
@@ -14885,7 +14885,7 @@
14885 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
14886 "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.",
14887 "xloc": [
14888 - "default.handlebars->47->2036"
14888 + "default.handlebars->47->2038"
14889 ]
14890 },
14891 {
@@ -14912,7 +14912,7 @@
14912 "zh-cht": "帳戶憑證已更改",
14913 "hu": "A fiók hitelesítő adatai megváltoztak",
14914 "xloc": [
14915 - "default.handlebars->47->2546"
14915 + "default.handlebars->47->2548"
14916 ]
14917 },
14918 {
@@ -14939,7 +14939,7 @@
14939 "zh-cht": "將帳戶顯示名稱更改為 {0}。",
14940 "hu": "A fiók megjelenített neve {0}-re változott.",
14941 "xloc": [
14942 - "default.handlebars->47->2598"
14942 + "default.handlebars->47->2600"
14943 ]
14944 },
14945 {
@@ -14966,8 +14966,8 @@
14966 "zh-cht": "{1}組中的設備{0}已更改:{2}",
14967 "hu": "{0} eszközt a {1} csoportból áthelyezésre került {2} csoportba",
14968 "xloc": [
14969 - "default.handlebars->47->2530",
14970 - "default.handlebars->47->2611"
14969 + "default.handlebars->47->2532",
14970 + "default.handlebars->47->2613"
14971 ]
14972 },
14973 {
@@ -14994,7 +14994,7 @@
14994 "zh-cht": "語言從{1}更改為{2}",
14995 "hu": "A nyelv megváltozott. régi nyelv: {1}, új nyelv: {2}",
14996 "xloc": [
14997 - "default.handlebars->47->2474"
14997 + "default.handlebars->47->2476"
14998 ]
14999 },
15000 {
@@ -15021,8 +15021,8 @@
15021 "zh-cht": "已更改{0}的用戶設備權限",
15022 "hu": "Módosult a(z) {0} felhasználói eszközjogai",
15023 "xloc": [
15024 - "default.handlebars->47->2532",
15025 - "default.handlebars->47->2553"
15024 + "default.handlebars->47->2534",
15025 + "default.handlebars->47->2555"
15026 ]
15027 },
15028 {
@@ -15074,7 +15074,7 @@
15074 "hu": "A nyelv megváltoztatásához az oldal frissítése szükséges!",
15075 "xloc": [
15076 "default-mobile.handlebars->11->303",
15077 - "default.handlebars->47->1994"
15077 + "default.handlebars->47->1996"
15078 ]
15079 },
15080 {
@@ -15101,12 +15101,12 @@
15101 "zh-cht": "聊天",
15102 "hu": "Csevegés",
15103 "xloc": [
15104 - "default.handlebars->47->1005",
15105 - "default.handlebars->47->1124",
15106 - "default.handlebars->47->1149",
15107 - "default.handlebars->47->2673",
15108 - "default.handlebars->47->2951",
15109 - "default.handlebars->47->2952"
15104 + "default.handlebars->47->1007",
15105 + "default.handlebars->47->1126",
15106 + "default.handlebars->47->1151",
15107 + "default.handlebars->47->2675",
15108 + "default.handlebars->47->2953",
15109 + "default.handlebars->47->2954"
15110 ]
15111 },
15112 {
@@ -15135,8 +15135,8 @@
15135 "xloc": [
15136 "default-mobile.handlebars->11->944",
15137 "default-mobile.handlebars->11->964",
15138 - "default.handlebars->47->2312",
15139 - "default.handlebars->47->2350"
15138 + "default.handlebars->47->2314",
15139 + "default.handlebars->47->2352"
15140 ]
15141 },
15142 {
@@ -15164,7 +15164,7 @@
15164 "hu": "Csevegés kezdeményezés, kattintson ide az elfogadáshoz.",
15165 "xloc": [
15166 "default-mobile.handlebars->11->996",
15167 - "default.handlebars->47->3221"
15167 + "default.handlebars->47->3223"
15168 ]
15169 },
15170 {
@@ -15219,7 +15219,7 @@
15219 "hu": "csecsen",
15220 "xloc": [
15221 "default-mobile.handlebars->11->137",
15222 - "default.handlebars->47->1828",
15222 + "default.handlebars->47->1830",
15223 "login2.handlebars->7->34"
15224 ]
15225 },
@@ -15367,8 +15367,8 @@
15367 "zh-cht": "檢查...",
15368 "hu": "Ellenőrzés...",
15369 "xloc": [
15370 - "default.handlebars->47->1794",
15371 - "default.handlebars->47->3341"
15370 + "default.handlebars->47->1796",
15371 + "default.handlebars->47->3343"
15372 ]
15373 },
15374 {
@@ -15396,7 +15396,7 @@
15396 "hu": "kínai",
15397 "xloc": [
15398 "default-mobile.handlebars->11->138",
15399 - "default.handlebars->47->1829",
15399 + "default.handlebars->47->1831",
15400 "login2.handlebars->7->35"
15401 ]
15402 },
@@ -15425,7 +15425,7 @@
15425 "hu": "kínai (Hongkong)",
15426 "xloc": [
15427 "default-mobile.handlebars->11->139",
15428 - "default.handlebars->47->1830",
15428 + "default.handlebars->47->1832",
15429 "login2.handlebars->7->36"
15430 ]
15431 },
@@ -15454,7 +15454,7 @@
15454 "hu": "kínai (Kínai Népköztársaság)",
15455 "xloc": [
15456 "default-mobile.handlebars->11->140",
15457 - "default.handlebars->47->1831",
15457 + "default.handlebars->47->1833",
15458 "login2.handlebars->7->37"
15459 ]
15460 },
@@ -15483,7 +15483,7 @@
15483 "hu": "kínai (egyszerűsített)",
15484 "xloc": [
15485 "default-mobile.handlebars->11->300",
15486 - "default.handlebars->47->1991",
15486 + "default.handlebars->47->1993",
15487 "login2.handlebars->7->197"
15488 ]
15489 },
@@ -15512,7 +15512,7 @@
15512 "hu": "kínai (Szingapúr)",
15513 "xloc": [
15514 "default-mobile.handlebars->11->141",
15515 - "default.handlebars->47->1832",
15515 + "default.handlebars->47->1834",
15516 "login2.handlebars->7->38"
15517 ]
15518 },
@@ -15541,7 +15541,7 @@
15541 "hu": "kínai (Tajvan)",
15542 "xloc": [
15543 "default-mobile.handlebars->11->142",
15544 - "default.handlebars->47->1833",
15544 + "default.handlebars->47->1835",
15545 "login2.handlebars->7->39"
15546 ]
15547 },
@@ -15570,7 +15570,7 @@
15570 "hu": "kínai (hagyományos)",
15571 "xloc": [
15572 "default-mobile.handlebars->11->301",
15573 - "default.handlebars->47->1992",
15573 + "default.handlebars->47->1994",
15574 "login2.handlebars->7->198"
15575 ]
15576 },
@@ -15627,7 +15627,7 @@
15627 "hu": "csuvas",
15628 "xloc": [
15629 "default-mobile.handlebars->11->143",
15630 - "default.handlebars->47->1834",
15630 + "default.handlebars->47->1836",
15631 "login2.handlebars->7->40"
15632 ]
15633 },
@@ -15686,11 +15686,11 @@
15686 "default-mobile.handlebars->11->713",
15687 "default-mobile.handlebars->11->80",
15688 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
15689 - "default.handlebars->47->1550",
15689 "default.handlebars->47->1552",
15690 "default.handlebars->47->1554",
15691 "default.handlebars->47->1556",
15693 - "default.handlebars->47->2468",
15692 + "default.handlebars->47->1558",
15693 + "default.handlebars->47->2470",
15694 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
15695 "default.handlebars->container->column_l->p41->3->1",
15696 "messenger.handlebars->xbottom->1->1->0->5",
@@ -15725,7 +15725,7 @@
15725 "hu": "RDP hitelesítő adatok törlése?",
15726 "xloc": [
15727 "default-mobile.handlebars->11->609",
15728 - "default.handlebars->47->1342"
15728 + "default.handlebars->47->1344"
15729 ]
15730 },
15731 {
@@ -15753,7 +15753,7 @@
15753 "hu": "SSH hitelesítő adatok törlése?",
15754 "xloc": [
15755 "default-mobile.handlebars->11->607",
15756 - "default.handlebars->47->1340"
15756 + "default.handlebars->47->1342"
15757 ]
15758 },
15759 {
@@ -15807,8 +15807,8 @@
15807 "zh-cht": "清除代理核心",
15808 "hu": "Agent Core törlése",
15809 "xloc": [
15810 - "default.handlebars->47->732",
15811 - "default.handlebars->47->774"
15810 + "default.handlebars->47->734",
15811 + "default.handlebars->47->776"
15812 ]
15813 },
15814 {
@@ -15835,7 +15835,7 @@
15835 "zh-cht": "清除所選設備上的代理核心?",
15836 "hu": "Agent Core törlése a kijelölt eszköz(ök)ön?",
15837 "xloc": [
15838 - "default.handlebars->47->773"
15838 + "default.handlebars->47->775"
15839 ]
15840 },
15841 {
@@ -15863,7 +15863,7 @@
15863 "hu": "Összes törlése",
15864 "xloc": [
15865 "default-mobile.handlebars->11->979",
15866 - "default.handlebars->47->3204"
15866 + "default.handlebars->47->3206"
15867 ]
15868 },
15869 {
@@ -15891,7 +15891,7 @@
15891 "hu": "Szűrő törlése",
15892 "xloc": [
15893 "default-mobile.handlebars->11->400",
15894 - "default.handlebars->47->361"
15894 + "default.handlebars->47->362"
15895 ]
15896 },
15897 {
@@ -15919,7 +15919,7 @@
15919 "hu": "Core törlése",
15920 "xloc": [
15921 "default-mobile.handlebars->11->884",
15922 - "default.handlebars->47->1724"
15922 + "default.handlebars->47->1726"
15923 ]
15924 },
15925 {
@@ -15974,7 +15974,7 @@
15974 "hu": "Törölje ezt az értesítést",
15975 "xloc": [
15976 "default-mobile.handlebars->11->978",
15977 - "default.handlebars->47->3203"
15977 + "default.handlebars->47->3205"
15978 ]
15979 },
15980 {
@@ -16082,8 +16082,8 @@
16082 "zh-cht": "單擊此處編輯裝置群名稱",
16083 "hu": "Kattintson ide az eszközcsoport nevének szerkesztéséhez",
16084 "xloc": [
16085 - "default.handlebars->47->2111",
16086 - "default.handlebars->47->2411"
16085 + "default.handlebars->47->2113",
16086 + "default.handlebars->47->2413"
16087 ]
16088 },
16089 {
@@ -16110,7 +16110,7 @@
16110 "zh-cht": "單擊此處編輯伺服器端裝置名稱",
16111 "hu": "Kattintson ide a kiszolgáló-oldali eszköznév szerkesztéséhez",
16112 "xloc": [
16113 - "default.handlebars->47->870"
16113 + "default.handlebars->47->872"
16114 ]
16115 },
16116 {
@@ -16137,7 +16137,7 @@
16137 "zh-cht": "單擊此處編輯用戶群名稱",
16138 "hu": "Kattintson ide a felhasználói csoport nevének szerkesztéséhez",
16139 "xloc": [
16140 - "default.handlebars->47->2803"
16140 + "default.handlebars->47->2805"
16141 ]
16142 },
16143 {
@@ -16272,7 +16272,7 @@
16272 "hu": "Kattintson az OK gombra, ha megerősítő e-mailt szeretne küldeni a következő címre:",
16273 "xloc": [
16274 "default-mobile.handlebars->11->313",
16275 - "default.handlebars->47->2027"
16275 + "default.handlebars->47->2029"
16276 ]
16277 },
16278 {
@@ -16379,7 +16379,7 @@
16379 "hu": "Client Control Mode (CCM)",
16380 "xloc": [
16381 "default-mobile.handlebars->11->793",
16382 - "default.handlebars->47->1632"
16382 + "default.handlebars->47->1634"
16383 ]
16384 },
16385 {
@@ -16406,7 +16406,7 @@
16406 "zh-cht": "客戶編號",
16407 "hu": "Client ID",
16408 "xloc": [
16409 - "default.handlebars->47->2090"
16409 + "default.handlebars->47->2092"
16410 ]
16411 },
16412 {
@@ -16433,7 +16433,7 @@
16433 "zh-cht": "客戶端啟動的遠程訪問",
16434 "hu": "Ügyfél által kezdeményezett távoli elérés",
16435 "xloc": [
16436 - "default.handlebars->47->2240"
16436 + "default.handlebars->47->2242"
16437 ]
16438 },
16439 {
@@ -16460,7 +16460,7 @@
16460 "zh-cht": "客戶機密",
16461 "hu": "Client Secret",
16462 "xloc": [
16463 - "default.handlebars->47->2091"
16463 + "default.handlebars->47->2093"
16464 ]
16465 },
16466 {
@@ -16517,11 +16517,11 @@
16517 "xloc": [
16518 "agent-translations.json",
16519 "default-mobile.handlebars->11->78",
16520 - "default.handlebars->47->1453",
16521 - "default.handlebars->47->1525",
16520 + "default.handlebars->47->1455",
16521 + "default.handlebars->47->1527",
16522 "default.handlebars->47->228",
16523 "default.handlebars->47->236",
16524 - "default.handlebars->47->3335",
16524 + "default.handlebars->47->3337",
16525 "sharing.handlebars->11->52"
16526 ]
16527 },
@@ -16549,7 +16549,7 @@
16549 "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
16550 "hu": "Lezárt asztali multiplex munkamenet \\\"{0}\\\", {1} másodperc",
16551 "xloc": [
16552 - "default.handlebars->47->2618"
16552 + "default.handlebars->47->2620"
16553 ]
16554 },
16555 {
@@ -16576,7 +16576,7 @@
16576 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
16577 "hu": "Lezárt asztali multiplex munkamenet, {0} másodperc",
16578 "xloc": [
16579 - "default.handlebars->47->2479"
16579 + "default.handlebars->47->2481"
16580 ]
16581 },
16582 {
@@ -16712,7 +16712,7 @@
16712 "hu": "Parancs",
16713 "xloc": [
16714 "agentinvite.handlebars->3->17",
16715 - "default.handlebars->47->672"
16715 + "default.handlebars->47->674"
16716 ]
16717 },
16718 {
@@ -16767,9 +16767,9 @@
16767 "hu": "Parancsok",
16768 "xloc": [
16769 "default-mobile.handlebars->11->966",
16770 - "default.handlebars->47->1126",
16771 - "default.handlebars->47->1151",
16772 - "default.handlebars->47->2352"
16770 + "default.handlebars->47->1128",
16771 + "default.handlebars->47->1153",
16772 + "default.handlebars->47->2354"
16773 ]
16774 },
16775 {
@@ -16783,7 +16783,7 @@
16783 "de": "Befehle aus Datei",
16784 "es": "Comandos desde un archivo",
16785 "xloc": [
16786 - "default.handlebars->47->799"
16786 + "default.handlebars->47->801"
16787 ]
16788 },
16789 {
@@ -16797,7 +16797,7 @@
16797 "de": "Befehle aus Datei vom Server",
16798 "es": "Comandos desde un archivo en el servidor",
16799 "xloc": [
16800 - "default.handlebars->47->800"
16800 + "default.handlebars->47->802"
16801 ]
16802 },
16803 {
@@ -16811,7 +16811,7 @@
16811 "de": "Befehle aus Textfeld",
16812 "es": "Comandos desde caja de texto",
16813 "xloc": [
16814 - "default.handlebars->47->798"
16814 + "default.handlebars->47->800"
16815 ]
16816 },
16817 {
@@ -16838,8 +16838,8 @@
16838 "zh-cht": "通用裝置群",
16839 "hu": "Eszközcsoport jogosultságok",
16840 "xloc": [
16841 - "default.handlebars->47->2838",
16842 - "default.handlebars->47->3026"
16841 + "default.handlebars->47->2840",
16842 + "default.handlebars->47->3028"
16843 ]
16844 },
16845 {
@@ -16866,8 +16866,8 @@
16866 "zh-cht": "通用裝置",
16867 "hu": "Eszköz jogosultságok",
16868 "xloc": [
16869 - "default.handlebars->47->2844",
16870 - "default.handlebars->47->3038"
16869 + "default.handlebars->47->2846",
16870 + "default.handlebars->47->3040"
16871 ]
16872 },
16873 {
@@ -16895,7 +16895,7 @@
16895 "hu": "Fordítás ideje",
16896 "xloc": [
16897 "default-mobile.handlebars->11->765",
16898 - "default.handlebars->47->1594"
16898 + "default.handlebars->47->1596"
16899 ]
16900 },
16901 {
@@ -16946,7 +16946,7 @@
16946 "zh-cht": "壓縮檔案...",
16947 "hu": "Fájlok tömörítése...",
16948 "xloc": [
16949 - "default.handlebars->47->1511",
16949 + "default.handlebars->47->1513",
16950 "sharing.handlebars->11->47"
16951 ]
16952 },
@@ -16984,7 +16984,7 @@
16984 "de": "Aufzeichnungen von Konfigurationsdatei",
16985 "es": "Registro de archivos de configuracion",
16986 "xloc": [
16987 - "default.handlebars->47->3180"
16987 + "default.handlebars->47->3182"
16988 ]
16989 },
16990 {
@@ -17013,14 +17013,14 @@
17013 "xloc": [
17014 "default-mobile.handlebars->11->604",
17015 "default-mobile.handlebars->11->915",
17016 - "default.handlebars->47->1291",
17017 - "default.handlebars->47->1300",
17018 - "default.handlebars->47->2251",
17019 - "default.handlebars->47->2703",
17020 - "default.handlebars->47->2793",
17021 - "default.handlebars->47->2860",
17022 - "default.handlebars->47->3024",
17023 - "default.handlebars->47->743"
17016 + "default.handlebars->47->1293",
17017 + "default.handlebars->47->1302",
17018 + "default.handlebars->47->2253",
17019 + "default.handlebars->47->2705",
17020 + "default.handlebars->47->2795",
17021 + "default.handlebars->47->2862",
17022 + "default.handlebars->47->3026",
17023 + "default.handlebars->47->745"
17024 ]
17025 },
17026 {
@@ -17072,7 +17072,7 @@
17072 "hu": "Megerősíti 1 bejegyzés másolatát erre a helyre?",
17073 "xloc": [
17074 "default-mobile.handlebars->11->702",
17075 - "default.handlebars->47->1545",
17075 + "default.handlebars->47->1547",
17076 "sharing.handlebars->11->70"
17077 ]
17078 },
@@ -17100,7 +17100,7 @@
17100 "zh-cht": "確認{0}個條目的複製到此位置?",
17101 "hu": "Megerősíti a {0} bejegyzések másolását erre a helyre?",
17102 "xloc": [
17103 - "default.handlebars->47->1544",
17103 + "default.handlebars->47->1546",
17104 "sharing.handlebars->11->69"
17105 ]
17106 },
@@ -17155,7 +17155,7 @@
17155 "zh-cht": "確認刪除所選帳戶?",
17156 "hu": "Megerősíti a kiválasztott fiók(ok) törlését?",
17157 "xloc": [
17158 - "default.handlebars->47->2702"
17158 + "default.handlebars->47->2704"
17159 ]
17160 },
17161 {
@@ -17206,7 +17206,7 @@
17206 "zh-cht": "確認刪除所選用戶群?",
17207 "hu": "Megerősíti a kiválasztott felhasználói csoport(ok) törlését?",
17208 "xloc": [
17209 - "default.handlebars->47->2792"
17209 + "default.handlebars->47->2794"
17210 ]
17211 },
17212 {
@@ -17233,7 +17233,7 @@
17233 "zh-cht": "確認刪除用戶{0}?",
17234 "hu": "Megerősíti a(z) {0} felhasználó törlését?",
17235 "xloc": [
17236 - "default.handlebars->47->3023"
17236 + "default.handlebars->47->3025"
17237 ]
17238 },
17239 {
@@ -17260,7 +17260,7 @@
17260 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
17261 "hu": "Megerősíti a \\\"{0}\\\" felhasználó tagságának eltávolítását?",
17262 "xloc": [
17263 - "default.handlebars->47->2863"
17263 + "default.handlebars->47->2865"
17264 ]
17265 },
17266 {
@@ -17287,7 +17287,7 @@
17287 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
17288 "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport tagság eltávolítását?",
17289 "xloc": [
17290 - "default.handlebars->47->3055"
17290 + "default.handlebars->47->3057"
17291 ]
17292 },
17293 {
@@ -17315,7 +17315,7 @@
17315 "hu": "Megerősíti 1 bejegyzés áthelyezését erre a helyre?",
17316 "xloc": [
17317 "default-mobile.handlebars->11->704",
17318 - "default.handlebars->47->1547",
17318 + "default.handlebars->47->1549",
17319 "sharing.handlebars->11->72"
17320 ]
17321 },
@@ -17343,7 +17343,7 @@
17343 "zh-cht": "確認將{0}個條目移到該位置?",
17344 "hu": "Megerősíti {0} bejegyzés áthelyezését erre a helyre?",
17345 "xloc": [
17346 - "default.handlebars->47->1546",
17346 + "default.handlebars->47->1548",
17347 "sharing.handlebars->11->71"
17348 ]
17349 },
@@ -17398,7 +17398,7 @@
17398 "zh-cht": "確認覆蓋?",
17399 "hu": "Megerősíti a felülírást?",
17400 "xloc": [
17401 - "default.handlebars->47->2460"
17401 + "default.handlebars->47->2462"
17402 ]
17403 },
17404 {
@@ -17425,8 +17425,8 @@
17425 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
17426 "hu": "Megerősíti a \\\"{0}\\\" eszköz hozzáférési jogainak eltávolítását?",
17427 "xloc": [
17428 - "default.handlebars->47->2853",
17429 - "default.handlebars->47->3046"
17428 + "default.handlebars->47->2855",
17429 + "default.handlebars->47->3048"
17430 ]
17431 },
17432 {
@@ -17453,8 +17453,8 @@
17453 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
17454 "hu": "Megerősíti a \\\"{0}\\\" eszközcsoport hozzáférési jogainak eltávolítását?",
17455 "xloc": [
17456 - "default.handlebars->47->2855",
17457 - "default.handlebars->47->3059"
17456 + "default.handlebars->47->2857",
17457 + "default.handlebars->47->3061"
17458 ]
17459 },
17460 {
@@ -17481,7 +17481,7 @@
17481 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
17482 "hu": "Megerősíti a \\\"{0}\\\" felhasználó hozzáférési jogainak eltávolítását?",
17483 "xloc": [
17484 - "default.handlebars->47->3048"
17484 + "default.handlebars->47->3050"
17485 ]
17486 },
17487 {
@@ -17508,7 +17508,7 @@
17508 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
17509 "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport hozzáférési jogainak eltávolítását?",
17510 "xloc": [
17511 - "default.handlebars->47->3051"
17511 + "default.handlebars->47->3053"
17512 ]
17513 },
17514 {
@@ -17535,8 +17535,8 @@
17535 "zh-cht": "確認刪除訪問權限?",
17536 "hu": "Megerősíti a hozzáférési jogok eltávolítását?",
17537 "xloc": [
17538 - "default.handlebars->47->3049",
17539 - "default.handlebars->47->3052"
17538 + "default.handlebars->47->3051",
17539 + "default.handlebars->47->3054"
17540 ]
17541 },
17542 {
@@ -17564,7 +17564,7 @@
17564 "hu": "Megerősíti a hitelesítő alkalmazás, kétlépcsős bejelentkezés eltávolítását?",
17565 "xloc": [
17566 "default-mobile.handlebars->11->312",
17567 - "default.handlebars->47->1777"
17567 + "default.handlebars->47->1779"
17568 ]
17569 },
17570 {
@@ -17615,7 +17615,7 @@
17615 "zh-cht": "確認刪除設備共享“{0}”?",
17616 "hu": "Megerősíti a(z) \\\"{0}\\\" eszközmegosztás eltávolítását?",
17617 "xloc": [
17618 - "default.handlebars->47->3044"
17618 + "default.handlebars->47->3046"
17619 ]
17620 },
17621 {
@@ -17690,7 +17690,7 @@
17690 "zh-cht": "確認移除推送認證設備?",
17691 "hu": "Megerősíti a Push-hitelesítési eszköz eltávolítását?",
17692 "xloc": [
17693 - "default.handlebars->47->1779"
17693 + "default.handlebars->47->1781"
17694 ]
17695 },
17696 {
@@ -17717,7 +17717,7 @@
17717 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
17718 "hu": "Megerősíti a \\\"{0}\\\" felhasználó jogainak eltávolítását?",
17719 "xloc": [
17720 - "default.handlebars->47->2364"
17720 + "default.handlebars->47->2366"
17721 ]
17722 },
17723 {
@@ -17744,7 +17744,7 @@
17744 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
17745 "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport jogainak eltávolítását?",
17746 "xloc": [
17747 - "default.handlebars->47->2366"
17747 + "default.handlebars->47->2368"
17748 ]
17749 },
17750 {
@@ -17771,7 +17771,7 @@
17771 "zh-cht": "確認刪除所選設備?",
17772 "hu": "Megerősíti a kiválasztott eszköz eltávolítását?",
17773 "xloc": [
17774 - "default.handlebars->47->737"
17774 + "default.handlebars->47->739"
17775 ]
17776 },
17777 {
@@ -17798,7 +17798,7 @@
17798 "zh-cht": "確認刪除此登錄令牌?",
17799 "hu": "Megerősíti ennek a bejelentkezési tokennek az eltávolítását?",
17800 "xloc": [
17801 - "default.handlebars->47->2083"
17801 + "default.handlebars->47->2085"
17802 ]
17803 },
17804 {
@@ -17876,7 +17876,7 @@
17876 "zh-cht": "確認刪除 {0} 個選定的設備?",
17877 "hu": "Megerősíti {0} kiválasztott eszköz eltávolítását?",
17878 "xloc": [
17879 - "default.handlebars->47->738"
17879 + "default.handlebars->47->740"
17880 ]
17881 },
17882 {
@@ -17904,7 +17904,7 @@
17904 "hu": "Megerősíti {0} / {1} bejegyzés {2} erre a helyre?",
17905 "xloc": [
17906 "default-mobile.handlebars->11->365",
17907 - "default.handlebars->47->2463"
17907 + "default.handlebars->47->2465"
17908 ]
17909 },
17910 {
@@ -17935,8 +17935,8 @@
17935 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
17936 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
17937 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
17938 - "default.handlebars->47->2149",
17939 - "default.handlebars->47->962",
17938 + "default.handlebars->47->2151",
17939 + "default.handlebars->47->964",
17940 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
17941 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
17942 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -17973,7 +17973,7 @@
17973 "zh-cht": "全部連接",
17974 "hu": "Összes csatlakoztatása",
17975 "xloc": [
17976 - "default.handlebars->47->472",
17976 + "default.handlebars->47->474",
17977 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
17978 ]
17979 },
@@ -18025,7 +18025,7 @@
18025 "zh-cht": "連接到伺服器",
18026 "hu": "Csatlakozás a kiszolgálóhoz",
18027 "xloc": [
18028 - "default.handlebars->47->2244"
18028 + "default.handlebars->47->2246"
18029 ]
18030 },
18031 {
@@ -18239,7 +18239,7 @@
18239 "xloc": [
18240 "default-mobile.handlebars->11->4",
18241 "default.handlebars->47->11",
18242 - "default.handlebars->47->424",
18242 + "default.handlebars->47->426",
18243 "sharing.handlebars->11->4",
18244 "ssh.handlebars->3->4",
18245 "xterm.handlebars->9->4"
@@ -18269,7 +18269,7 @@
18269 "zh-cht": "已連接的Intel&reg; AMT",
18270 "hu": "Csatlakozott Intel&reg; AMT",
18271 "xloc": [
18272 - "default.handlebars->47->3262"
18272 + "default.handlebars->47->3264"
18273 ]
18274 },
18275 {
@@ -18296,7 +18296,7 @@
18296 "zh-cht": "已连接的用户",
18297 "hu": "Csatlakozott felhasználók",
18298 "xloc": [
18299 - "default.handlebars->47->3267"
18299 + "default.handlebars->47->3269"
18300 ]
18301 },
18302 {
@@ -18352,7 +18352,7 @@
18352 "hu": "Csatlakoztatva most",
18353 "xloc": [
18354 "default-mobile.handlebars->11->760",
18355 - "default.handlebars->47->1589"
18355 + "default.handlebars->47->1591"
18356 ]
18357 },
18358 {
@@ -18484,10 +18484,10 @@
18484 "default-mobile.handlebars->11->2",
18485 "default-mobile.handlebars->11->50",
18486 "default-mobile.handlebars->11->720",
18487 - "default.handlebars->47->1570",
18488 - "default.handlebars->47->391",
18489 - "default.handlebars->47->394",
18490 - "default.handlebars->47->475",
18487 + "default.handlebars->47->1572",
18488 + "default.handlebars->47->393",
18489 + "default.handlebars->47->396",
18490 + "default.handlebars->47->477",
18491 "default.handlebars->47->9",
18492 "sharing.handlebars->11->2",
18493 "sharing.handlebars->11->93",
@@ -18543,7 +18543,7 @@
18543 "zh-cht": "連接數量",
18544 "hu": "Kapcsolatok száma",
18545 "xloc": [
18546 - "default.handlebars->47->3293"
18546 + "default.handlebars->47->3295"
18547 ]
18548 },
18549 {
@@ -18571,8 +18571,8 @@
18571 "hu": "Kapcsolat Hiba",
18572 "xloc": [
18573 "default-mobile.handlebars->11->683",
18574 - "default.handlebars->47->1490",
18575 - "default.handlebars->47->1507",
18574 + "default.handlebars->47->1492",
18575 + "default.handlebars->47->1509",
18576 "login2.handlebars->7->232"
18577 ]
18578 },
@@ -18600,7 +18600,7 @@
18600 "zh-cht": "連接轉發器",
18601 "hu": "Kapccsolat Relay",
18602 "xloc": [
18603 - "default.handlebars->47->3329"
18603 + "default.handlebars->47->3331"
18604 ]
18605 },
18606 {
@@ -18682,9 +18682,9 @@
18682 "hu": "Kapcsolódás",
18683 "xloc": [
18684 "default-mobile.handlebars->11->525",
18685 - "default.handlebars->47->2418",
18686 - "default.handlebars->47->379",
18687 - "default.handlebars->47->979",
18685 + "default.handlebars->47->2420",
18686 + "default.handlebars->47->381",
18687 + "default.handlebars->47->981",
18688 "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
18689 ]
18690 },
@@ -18712,7 +18712,7 @@
18712 "zh-cht": "同意",
18713 "hu": "Hozzájárulás",
18714 "xloc": [
18715 - "default.handlebars->47->2634"
18715 + "default.handlebars->47->2636"
18716 ]
18717 },
18718 {
@@ -18740,8 +18740,8 @@
18740 "hu": "Mesh Agent konzol",
18741 "xloc": [
18742 "default-mobile.handlebars->11->565",
18743 - "default.handlebars->47->1119",
18744 - "default.handlebars->47->1144",
18743 + "default.handlebars->47->1121",
18744 + "default.handlebars->47->1146",
18745 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
18746 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
18747 "default.handlebars->contextMenu->cxconsole"
@@ -18771,7 +18771,7 @@
18771 "zh-cht": "控制台 -",
18772 "hu": "Konzol -",
18773 "xloc": [
18774 - "default.handlebars->47->871"
18774 + "default.handlebars->47->873"
18775 ]
18776 },
18777 {
@@ -18798,8 +18798,8 @@
18798 "zh-cht": "控制",
18799 "hu": "Felügyelet ",
18800 "xloc": [
18801 - "default.handlebars->47->1118",
18802 - "default.handlebars->47->1143",
18801 + "default.handlebars->47->1120",
18802 + "default.handlebars->47->1145",
18803 "messenger.handlebars->remoteImage->3->2"
18804 ]
18805 },
@@ -18855,7 +18855,7 @@
18855 "zh-cht": "Cookie編碼器",
18856 "hu": "Cookie kódoló",
18857 "xloc": [
18858 - "default.handlebars->47->3312"
18858 + "default.handlebars->47->3314"
18859 ]
18860 },
18861 {
@@ -18884,7 +18884,7 @@
18884 "xloc": [
18885 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
18886 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
18887 - "default.handlebars->47->625",
18887 + "default.handlebars->47->627",
18888 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
18889 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
18890 "sharing.handlebars->p13->p13toolbar->fileArea2->3"
@@ -18951,9 +18951,9 @@
18951 "zh-cht": "將 URL 複製到剪貼板",
18952 "hu": "URL másolása a vágólapra",
18953 "xloc": [
18954 - "default.handlebars->47->638",
18955 - "default.handlebars->47->642",
18956 - "default.handlebars->47->646"
18954 + "default.handlebars->47->640",
18955 + "default.handlebars->47->644",
18956 + "default.handlebars->47->648"
18957 ]
18958 },
18959 {
@@ -19011,8 +19011,8 @@
19011 "de": "Windows ARM 64bit Agent-URL in die Zwischenablage kopieren",
19012 "es": "Copiar el URL del agente Windows ARM 64bit a la papelera",
19013 "xloc": [
19014 - "default.handlebars->47->619",
19015 - "default.handlebars->47->659"
19014 + "default.handlebars->47->621",
19015 + "default.handlebars->47->661"
19016 ]
19017 },
19018 {
@@ -19022,8 +19022,8 @@
19022 "de": "Windows x86 32bit Agent-URL in die Zwischenablage kopieren",
19023 "es": "Copiar el URL del agente x86 32bit a la papelera",
19024 "xloc": [
19025 - "default.handlebars->47->611",
19026 - "default.handlebars->47->651"
19025 + "default.handlebars->47->613",
19026 + "default.handlebars->47->653"
19027 ]
19028 },
19029 {
@@ -19033,8 +19033,8 @@
19033 "de": "Windows x86 64bit Agent-URL in die Zwischenablage kopieren",
19034 "es": "Copiar el URL del agente Windows x86 64bit a la papelera",
19035 "xloc": [
19036 - "default.handlebars->47->615",
19037 - "default.handlebars->47->655"
19036 + "default.handlebars->47->617",
19037 + "default.handlebars->47->657"
19038 ]
19039 },
19040 {
@@ -19101,8 +19101,8 @@
19101 "xloc": [
19102 "agentinvite.handlebars->3->16",
19103 "agentinvite.handlebars->3->18",
19104 - "default.handlebars->47->671",
19105 - "default.handlebars->47->673"
19104 + "default.handlebars->47->673",
19105 + "default.handlebars->47->675"
19106 ]
19107 },
19108 {
@@ -19129,12 +19129,12 @@
19129 "zh-cht": "複製連結到剪貼板",
19130 "hu": "Hivatkozás másolása a vágólapra.",
19131 "xloc": [
19132 - "default.handlebars->47->2429",
19133 - "default.handlebars->47->2448",
19132 + "default.handlebars->47->2431",
19133 + "default.handlebars->47->2450",
19134 "default.handlebars->47->311",
19135 "default.handlebars->47->333",
19136 "default.handlebars->47->335",
19137 - "default.handlebars->47->584"
19137 + "default.handlebars->47->586"
19138 ]
19139 },
19140 {
@@ -19161,8 +19161,8 @@
19161 "zh-cht": "將macOS代理URL複製到剪貼板",
19162 "hu": "macOS Agent URL másolása a vágólapra",
19163 "xloc": [
19164 - "default.handlebars->47->629",
19165 - "default.handlebars->47->665"
19164 + "default.handlebars->47->631",
19165 + "default.handlebars->47->667"
19166 ]
19167 },
19168 {
@@ -19218,8 +19218,8 @@
19218 "xloc": [
19219 "agentinvite.handlebars->container->column_l->5->linuxtab",
19220 "agentinvite.handlebars->container->column_l->5->linuxtab",
19221 - "default.handlebars->47->624",
19222 - "default.handlebars->47->661"
19221 + "default.handlebars->47->626",
19222 + "default.handlebars->47->663"
19223 ]
19224 },
19225 {
@@ -19273,7 +19273,7 @@
19273 "zh-cht": "複製:“{0}”到“{1}”",
19274 "hu": "Másolás: \\\"{0}\\\" ide: \\\"{1}\\\"",
19275 "xloc": [
19276 - "default.handlebars->47->2522"
19276 + "default.handlebars->47->2524"
19277 ]
19278 },
19279 {
@@ -19468,7 +19468,7 @@
19468 "zh-cht": "核心伺服器",
19469 "hu": "Core Server",
19470 "xloc": [
19471 - "default.handlebars->47->3311"
19471 + "default.handlebars->47->3313"
19472 ]
19473 },
19474 {
@@ -19496,7 +19496,7 @@
19496 "hu": "korzikai",
19497 "xloc": [
19498 "default-mobile.handlebars->11->144",
19499 - "default.handlebars->47->1835",
19499 + "default.handlebars->47->1837",
19500 "login2.handlebars->7->41"
19501 ]
19502 },
@@ -19548,7 +19548,7 @@
19548 "zh-cht": "創建帳號",
19549 "hu": "Fiók létrehozása",
19550 "xloc": [
19551 - "default.handlebars->47->2760",
19551 + "default.handlebars->47->2762",
19552 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
19553 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
19554 "login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -19629,7 +19629,7 @@
19629 "zh-cht": "創建登錄令牌",
19630 "hu": "Bejelentkezési token létrehozása",
19631 "xloc": [
19632 - "default.handlebars->47->2020",
19632 + "default.handlebars->47->2022",
19633 "default.handlebars->47->336"
19634 ]
19635 },
@@ -19657,7 +19657,7 @@
19657 "zh-cht": "創建用戶群",
19658 "hu": "Felhasználó csoport létrehozása",
19659 "xloc": [
19660 - "default.handlebars->47->2800"
19660 + "default.handlebars->47->2802"
19661 ]
19662 },
19663 {
@@ -19684,7 +19684,7 @@
19684 "zh-cht": "創建鏈結以與訪客共享此裝置",
19685 "hu": "Link létrehozása az eszköz vendégekkel való megosztásához",
19686 "xloc": [
19687 - "default.handlebars->47->1008"
19687 + "default.handlebars->47->1010"
19688 ]
19689 },
19690 {
@@ -19711,7 +19711,7 @@
19711 "zh-cht": "使用以下選項創建一個新的裝置群。",
19712 "hu": "Hozzon létre egy új eszközcsoportot az alábbi lehetőségek segítségével.",
19713 "xloc": [
19714 - "default.handlebars->47->2050"
19714 + "default.handlebars->47->2052"
19715 ]
19716 },
19717 {
@@ -19738,7 +19738,7 @@
19738 "zh-cht": "創建一個新的裝置群。",
19739 "hu": "Hozzon létre egy új eszközcsoportot.",
19740 "xloc": [
19741 - "default.handlebars->47->384"
19741 + "default.handlebars->47->386"
19742 ]
19743 },
19744 {
@@ -19765,7 +19765,7 @@
19765 "zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
19766 "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.",
19767 "xloc": [
19768 - "default.handlebars->47->2000"
19768 + "default.handlebars->47->2002"
19769 ]
19770 },
19771 {
@@ -19792,7 +19792,7 @@
19792 "zh-cht": "創建文件夾(如果不存在)?",
19793 "hu": "Mappa létrehozása, ha nem létezik?",
19794 "xloc": [
19795 - "default.handlebars->47->768"
19795 + "default.handlebars->47->770"
19796 ]
19797 },
19798 {
@@ -19819,7 +19819,7 @@
19819 "zh-cht": "創建文件夾:“{0}”",
19820 "hu": "Mappa létrehozása: \\\"{0}\\\"",
19821 "xloc": [
19822 - "default.handlebars->47->2515"
19822 + "default.handlebars->47->2517"
19823 ]
19824 },
19825 {
@@ -19859,7 +19859,7 @@
19859 "de": "Erstellen Sie mehrere Intel® AMT Geräte gleichzeitig durch Import einer JSON Datei mit dem folgenden Format:",
19860 "es": "Crea muchos dispositivos Intel® AMT al mismo tiempo importando un archivo JSON con el siguiente formato:",
19861 "xloc": [
19862 - "default.handlebars->47->511"
19862 + "default.handlebars->47->513"
19863 ]
19864 },
19865 {
@@ -19889,7 +19889,7 @@
19889 {
19890 "en": "Create many accounts at once by importing a JSON or CSV file",
19891 "xloc": [
19892 - "default.handlebars->47->2717"
19892 + "default.handlebars->47->2719"
19893 ]
19894 },
19895 {
@@ -19945,7 +19945,7 @@
19945 "zh-cht": "創建的設備組:{0}",
19946 "hu": "Eszközcsoport létrehozva: {0}",
19947 "xloc": [
19948 - "default.handlebars->47->2526"
19948 + "default.handlebars->47->2528"
19949 ]
19950 },
19951 {
@@ -19972,7 +19972,7 @@
19972 "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
19973 "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.",
19974 "xloc": [
19975 - "default.handlebars->47->1186"
19975 + "default.handlebars->47->1188"
19976 ]
19977 },
19978 {
@@ -20047,7 +20047,7 @@
20047 "zh-cht": "創建",
20048 "hu": "Létrehozás",
20049 "xloc": [
20050 - "default.handlebars->47->2908"
20050 + "default.handlebars->47->2910"
20051 ]
20052 },
20053 {
@@ -20074,7 +20074,7 @@
20074 "zh-cht": "創作時間",
20075 "hu": "Létrehozás ideje",
20076 "xloc": [
20077 - "default.handlebars->47->2129"
20077 + "default.handlebars->47->2131"
20078 ]
20079 },
20080 {
@@ -20130,8 +20130,8 @@
20130 "zh-cht": "創作者",
20131 "hu": "Létrehozó",
20132 "xloc": [
20133 - "default.handlebars->47->2127",
20134 - "default.handlebars->47->2128"
20133 + "default.handlebars->47->2129",
20134 + "default.handlebars->47->2130"
20135 ]
20136 },
20137 {
@@ -20159,9 +20159,9 @@
20159 "hu": "Hitelesítő adatok",
20160 "xloc": [
20161 "default-mobile.handlebars->11->537",
20162 - "default.handlebars->47->1366",
20163 - "default.handlebars->47->2088",
20164 - "default.handlebars->47->991"
20162 + "default.handlebars->47->1368",
20163 + "default.handlebars->47->2090",
20164 + "default.handlebars->47->993"
20165 ]
20166 },
20167 {
@@ -20189,7 +20189,7 @@
20189 "hu": "cree",
20190 "xloc": [
20191 "default-mobile.handlebars->11->145",
20192 - "default.handlebars->47->1836",
20192 + "default.handlebars->47->1838",
20193 "login2.handlebars->7->42"
20194 ]
20195 },
@@ -20218,7 +20218,7 @@
20218 "hu": "horvát",
20219 "xloc": [
20220 "default-mobile.handlebars->11->146",
20221 - "default.handlebars->47->1837",
20221 + "default.handlebars->47->1839",
20222 "login2.handlebars->7->43"
20223 ]
20224 },
@@ -20304,8 +20304,8 @@
20304 "xloc": [
20305 "default-mobile.handlebars->11->644",
20306 "default-mobile.handlebars->11->648",
20307 - "default.handlebars->47->1408",
20308 - "default.handlebars->47->1412",
20307 + "default.handlebars->47->1410",
20308 + "default.handlebars->47->1414",
20309 "default.handlebars->47->62",
20310 "sharing.handlebars->11->24"
20311 ]
@@ -20496,7 +20496,7 @@
20496 "hu": "A jelenlegi jelszó nem megfelelő.",
20497 "xloc": [
20498 "default-mobile.handlebars->11->1006",
20499 - "default.handlebars->47->3231"
20499 + "default.handlebars->47->3233"
20500 ]
20501 },
20502 {
@@ -20610,7 +20610,7 @@
20610 "hu": "cseh",
20611 "xloc": [
20612 "default-mobile.handlebars->11->147",
20613 - "default.handlebars->47->1838",
20613 + "default.handlebars->47->1840",
20614 "login2.handlebars->7->44"
20615 ]
20616 },
@@ -20693,7 +20693,7 @@
20693 "hu": "dán",
20694 "xloc": [
20695 "default-mobile.handlebars->11->148",
20696 - "default.handlebars->47->1839",
20696 + "default.handlebars->47->1841",
20697 "login2.handlebars->7->45"
20698 ]
20699 },
@@ -20749,7 +20749,7 @@
20749 "zh-cht": "數據通道",
20750 "hu": "DataChannel",
20751 "xloc": [
20752 - "default.handlebars->47->1364",
20752 + "default.handlebars->47->1366",
20753 "sharing.handlebars->11->11"
20754 ]
20755 },
@@ -20763,7 +20763,7 @@
20763 "de": "Datenbankaufzeichnungen",
20764 "es": "Registro de Base de datos",
20765 "xloc": [
20766 - "default.handlebars->47->3105"
20766 + "default.handlebars->47->3107"
20767 ]
20768 },
20769 {
@@ -20791,7 +20791,7 @@
20791 "hu": "Dátum és idő",
20792 "xloc": [
20793 "default-mobile.handlebars->11->306",
20794 - "default.handlebars->47->1997"
20794 + "default.handlebars->47->1999"
20795 ]
20796 },
20797 {
@@ -20819,9 +20819,9 @@
20819 "hu": "Nap",
20820 "xloc": [
20821 "default-mobile.handlebars->11->594",
20822 - "default.handlebars->47->1275",
20823 - "default.handlebars->47->3109",
20824 - "default.handlebars->47->3112"
20822 + "default.handlebars->47->1277",
20823 + "default.handlebars->47->3111",
20824 + "default.handlebars->47->3114"
20825 ]
20826 },
20827 {
@@ -20848,8 +20848,8 @@
20848 "zh-cht": "停用",
20849 "hu": "Deaktiválás",
20850 "xloc": [
20851 - "default.handlebars->47->2159",
20852 - "default.handlebars->47->2223"
20851 + "default.handlebars->47->2161",
20852 + "default.handlebars->47->2225"
20853 ]
20854 },
20855 {
@@ -20876,7 +20876,7 @@
20876 "zh-cht": "如果設置停用CCM",
20877 "hu": "CCM kikapcsolása ha be van állítva",
20878 "xloc": [
20879 - "default.handlebars->47->2235"
20879 + "default.handlebars->47->2237"
20880 ]
20881 },
20882 {
@@ -20928,7 +20928,7 @@
20928 "hu": "Mély alvás",
20929 "xloc": [
20930 "default-mobile.handlebars->11->448",
20931 - "default.handlebars->47->684"
20931 + "default.handlebars->47->686"
20932 ]
20933 },
20934 {
@@ -20955,10 +20955,10 @@
20955 "zh-cht": "默認",
20956 "hu": "Alapértelmezett",
20957 "xloc": [
20958 - "default.handlebars->47->2747",
20959 - "default.handlebars->47->2796",
20960 - "default.handlebars->47->2807",
20961 - "default.handlebars->47->2881"
20958 + "default.handlebars->47->2749",
20959 + "default.handlebars->47->2798",
20960 + "default.handlebars->47->2809",
20961 + "default.handlebars->47->2883"
20962 ]
20963 },
20964 {
@@ -20986,7 +20986,7 @@
20986 "hu": "Del",
20987 "xloc": [
20988 "default-mobile.handlebars->11->631",
20989 - "default.handlebars->47->1396"
20989 + "default.handlebars->47->1398"
20990 ]
20991 },
20992 {
@@ -21018,9 +21018,9 @@
21018 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
21019 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
21020 "default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
21021 - "default.handlebars->47->1535",
21022 - "default.handlebars->47->2455",
21023 - "default.handlebars->47->841",
21021 + "default.handlebars->47->1537",
21022 + "default.handlebars->47->2457",
21023 + "default.handlebars->47->843",
21024 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
21025 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
21026 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -21058,7 +21058,7 @@
21058 "hu": "Fiók törlése",
21059 "xloc": [
21060 "default-mobile.handlebars->11->322",
21061 - "default.handlebars->47->2035"
21061 + "default.handlebars->47->2037"
21062 ]
21063 },
21064 {
@@ -21085,7 +21085,7 @@
21085 "zh-cht": "刪除帳戶",
21086 "hu": "Fiókok törlése",
21087 "xloc": [
21088 - "default.handlebars->47->2704"
21088 + "default.handlebars->47->2706"
21089 ]
21090 },
21091 {
@@ -21113,7 +21113,7 @@
21113 "hu": "Eszköz törlése",
21114 "xloc": [
21115 "default-mobile.handlebars->11->546",
21116 - "default.handlebars->47->1018"
21116 + "default.handlebars->47->1020"
21117 ]
21118 },
21119 {
@@ -21140,7 +21140,7 @@
21140 "zh-cht": "刪除設備",
21141 "hu": "Eszközök törlése",
21142 "xloc": [
21143 - "default.handlebars->47->744"
21143 + "default.handlebars->47->746"
21144 ]
21145 },
21146 {
@@ -21169,8 +21169,8 @@
21169 "xloc": [
21170 "default-mobile.handlebars->11->913",
21171 "default-mobile.handlebars->11->916",
21172 - "default.handlebars->47->2211",
21173 - "default.handlebars->47->2252"
21172 + "default.handlebars->47->2213",
21173 + "default.handlebars->47->2254"
21174 ]
21175 },
21176 {
@@ -21198,7 +21198,7 @@
21198 "hu": "Node törlése",
21199 "xloc": [
21200 "default-mobile.handlebars->11->602",
21201 - "default.handlebars->47->1301"
21201 + "default.handlebars->47->1303"
21202 ]
21203 },
21204 {
@@ -21249,7 +21249,7 @@
21249 "zh-cht": "刪除用戶",
21250 "hu": "Felhasználó törlése",
21251 "xloc": [
21252 - "default.handlebars->47->2954"
21252 + "default.handlebars->47->2956"
21253 ]
21254 },
21255 {
@@ -21276,8 +21276,8 @@
21276 "zh-cht": "刪除用戶群組",
21277 "hu": "Felhasználói csoport törlése",
21278 "xloc": [
21279 - "default.handlebars->47->2849",
21280 - "default.handlebars->47->2861"
21279 + "default.handlebars->47->2851",
21280 + "default.handlebars->47->2863"
21281 ]
21282 },
21283 {
@@ -21304,7 +21304,7 @@
21304 "zh-cht": "刪除用戶群組",
21305 "hu": "Felhasználói csoportok törlése",
21306 "xloc": [
21307 - "default.handlebars->47->2794"
21307 + "default.handlebars->47->2796"
21308 ]
21309 },
21310 {
@@ -21331,7 +21331,7 @@
21331 "zh-cht": "刪除用戶{0}",
21332 "hu": "Felhasználó törlése: {0}",
21333 "xloc": [
21334 - "default.handlebars->47->3022"
21334 + "default.handlebars->47->3024"
21335 ]
21336 },
21337 {
@@ -21359,7 +21359,7 @@
21359 "hu": "Fiók törlése",
21360 "xloc": [
21361 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
21362 - "default.handlebars->47->2700",
21362 + "default.handlebars->47->2702",
21363 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
21364 ]
21365 },
@@ -21387,7 +21387,7 @@
21387 "zh-cht": "刪除裝置",
21388 "hu": "Eszközök törlése",
21389 "xloc": [
21390 - "default.handlebars->47->730"
21390 + "default.handlebars->47->732"
21391 ]
21392 },
21393 {
@@ -21414,7 +21414,7 @@
21414 "zh-cht": "刪除群組",
21415 "hu": "Csoport törlése",
21416 "xloc": [
21417 - "default.handlebars->47->2790"
21417 + "default.handlebars->47->2792"
21418 ]
21419 },
21420 {
@@ -21441,7 +21441,7 @@
21441 "zh-cht": "刪除項目?",
21442 "hu": "Elem törlése?",
21443 "xloc": [
21444 - "default.handlebars->47->842"
21444 + "default.handlebars->47->844"
21445 ]
21446 },
21447 {
@@ -21468,7 +21468,7 @@
21468 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
21469 "hu": "Rekurzív törlés: \\\"{0}\\\", {1} eltávolított elem(ek)",
21470 "xloc": [
21471 - "default.handlebars->47->2517"
21471 + "default.handlebars->47->2519"
21472 ]
21473 },
21474 {
@@ -21497,8 +21497,8 @@
21497 "xloc": [
21498 "default-mobile.handlebars->11->362",
21499 "default-mobile.handlebars->11->696",
21500 - "default.handlebars->47->1537",
21501 - "default.handlebars->47->2457",
21500 + "default.handlebars->47->1539",
21501 + "default.handlebars->47->2459",
21502 "sharing.handlebars->11->63"
21503 ]
21504 },
@@ -21526,7 +21526,7 @@
21526 "zh-cht": "刪除用戶群組{0}?",
21527 "hu": "Törli a(z) {0} felhasználói csoportot?",
21528 "xloc": [
21529 - "default.handlebars->47->2859"
21529 + "default.handlebars->47->2861"
21530 ]
21531 },
21532 {
@@ -21555,8 +21555,8 @@
21555 "xloc": [
21556 "default-mobile.handlebars->11->361",
21557 "default-mobile.handlebars->11->695",
21558 - "default.handlebars->47->1536",
21559 - "default.handlebars->47->2456",
21558 + "default.handlebars->47->1538",
21559 + "default.handlebars->47->2458",
21560 "sharing.handlebars->11->62"
21561 ]
21562 },
@@ -21611,7 +21611,7 @@
21611 "zh-cht": "刪除:“{0}”",
21612 "hu": "Törlés: \\\"{0}\\\"",
21613 "xloc": [
21614 - "default.handlebars->47->2516"
21614 + "default.handlebars->47->2518"
21615 ]
21616 },
21617 {
@@ -21638,7 +21638,7 @@
21638 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
21639 "hu": "Törlés: \\\"{0}\\\", {1} elem eltávolítva",
21640 "xloc": [
21641 - "default.handlebars->47->2518"
21641 + "default.handlebars->47->2520"
21642 ]
21643 },
21644 {
@@ -21666,7 +21666,7 @@
21666 "hu": "Elutasítva",
21667 "xloc": [
21668 "default-mobile.handlebars->11->617",
21669 - "default.handlebars->47->1351",
21669 + "default.handlebars->47->1353",
21670 "sharing.handlebars->11->29",
21671 "sharing.handlebars->11->7"
21672 ]
@@ -21681,7 +21681,7 @@
21681 "de": "Login des Benutzers von {0}, {1}, {2} verweigert",
21682 "es": "Se denego el inicio de sesion de {0}, {1}, {2}",
21683 "xloc": [
21684 - "default.handlebars->47->2626"
21684 + "default.handlebars->47->2628"
21685 ]
21686 },
21687 {
@@ -21835,20 +21835,20 @@
21835 "default-mobile.handlebars->11->773",
21836 "default-mobile.handlebars->11->899",
21837 "default-mobile.handlebars->11->922",
21838 - "default.handlebars->47->1345",
21838 + "default.handlebars->47->1347",
21839 "default.handlebars->47->157",
21840 - "default.handlebars->47->1602",
21841 - "default.handlebars->47->1612",
21842 - "default.handlebars->47->2060",
21843 - "default.handlebars->47->2120",
21844 - "default.handlebars->47->2258",
21845 - "default.handlebars->47->2632",
21846 - "default.handlebars->47->2799",
21847 - "default.handlebars->47->2810",
21848 - "default.handlebars->47->2811",
21849 - "default.handlebars->47->2857",
21850 - "default.handlebars->47->882",
21851 - "default.handlebars->47->883",
21840 + "default.handlebars->47->1604",
21841 + "default.handlebars->47->1614",
21842 + "default.handlebars->47->2062",
21843 + "default.handlebars->47->2122",
21844 + "default.handlebars->47->2260",
21845 + "default.handlebars->47->2634",
21846 + "default.handlebars->47->2801",
21847 + "default.handlebars->47->2812",
21848 + "default.handlebars->47->2813",
21849 + "default.handlebars->47->2859",
21850 + "default.handlebars->47->884",
21851 + "default.handlebars->47->885",
21852 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
21853 ]
21854 },
@@ -21901,16 +21901,16 @@
21901 "hu": "Asztal",
21902 "xloc": [
21903 "default-mobile.handlebars->11->561",
21904 - "default.handlebars->47->1075",
21905 - "default.handlebars->47->1188",
21906 - "default.handlebars->47->1463",
21907 - "default.handlebars->47->2189",
21908 - "default.handlebars->47->2264",
21909 - "default.handlebars->47->3082",
21910 - "default.handlebars->47->3142",
21911 - "default.handlebars->47->3192",
21912 - "default.handlebars->47->3287",
21913 - "default.handlebars->47->847",
21904 + "default.handlebars->47->1077",
21905 + "default.handlebars->47->1190",
21906 + "default.handlebars->47->1465",
21907 + "default.handlebars->47->2191",
21908 + "default.handlebars->47->2266",
21909 + "default.handlebars->47->3084",
21910 + "default.handlebars->47->3144",
21911 + "default.handlebars->47->3194",
21912 + "default.handlebars->47->3289",
21913 + "default.handlebars->47->849",
21914 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
21915 "default.handlebars->contextMenu->cxdesktop",
21916 "sharing.handlebars->11->23",
@@ -21941,9 +21941,9 @@
21941 "zh-cht": "桌面 + 文件",
21942 "hu": "Asztal + Fájlok",
21943 "xloc": [
21944 - "default.handlebars->47->1079",
21945 - "default.handlebars->47->1191",
21946 - "default.handlebars->47->2193"
21944 + "default.handlebars->47->1081",
21945 + "default.handlebars->47->1193",
21946 + "default.handlebars->47->2195"
21947 ]
21948 },
21949 {
@@ -21970,8 +21970,8 @@
21970 "zh-cht": "桌面+終端",
21971 "hu": "Asztal + Terminál",
21972 "xloc": [
21973 - "default.handlebars->47->1076",
21974 - "default.handlebars->47->2190"
21973 + "default.handlebars->47->1078",
21974 + "default.handlebars->47->2192"
21975 ]
21976 },
21977 {
@@ -21998,9 +21998,9 @@
21998 "zh-cht": "桌面+終端+文件",
21999 "hu": "Asztal + Terminál + Fájlok",
22000 "xloc": [
22001 - "default.handlebars->47->1080",
22002 - "default.handlebars->47->1193",
22003 - "default.handlebars->47->2194"
22001 + "default.handlebars->47->1082",
22002 + "default.handlebars->47->1195",
22003 + "default.handlebars->47->2196"
22004 ]
22005 },
22006 {
@@ -22054,7 +22054,7 @@
22054 "zh-cht": "桌面多路復用",
22055 "hu": "Asztal Multiplex",
22056 "xloc": [
22057 - "default.handlebars->47->3292"
22057 + "default.handlebars->47->3294"
22058 ]
22059 },
22060 {
@@ -22081,10 +22081,10 @@
22081 "zh-cht": "桌面通知",
22082 "hu": "Asztal kapcsolat értesítés",
22083 "xloc": [
22084 - "default.handlebars->47->2140",
22085 - "default.handlebars->47->2818",
22086 - "default.handlebars->47->2923",
22087 - "default.handlebars->47->953"
22084 + "default.handlebars->47->2142",
22085 + "default.handlebars->47->2820",
22086 + "default.handlebars->47->2925",
22087 + "default.handlebars->47->955"
22088 ]
22089 },
22090 {
@@ -22111,10 +22111,10 @@
22111 "zh-cht": "桌面提示",
22112 "hu": "Asztal kapcsolat engedélykérés",
22113 "xloc": [
22114 - "default.handlebars->47->2139",
22115 - "default.handlebars->47->2817",
22116 - "default.handlebars->47->2922",
22117 - "default.handlebars->47->952"
22114 + "default.handlebars->47->2141",
22115 + "default.handlebars->47->2819",
22116 + "default.handlebars->47->2924",
22117 + "default.handlebars->47->954"
22118 ]
22119 },
22120 {
@@ -22141,10 +22141,10 @@
22141 "zh-cht": "桌面提示+工具欄",
22142 "hu": "Asztal kapcsolat engedélykérés és eszköztár",
22143 "xloc": [
22144 - "default.handlebars->47->2137",
22145 - "default.handlebars->47->2815",
22146 - "default.handlebars->47->2920",
22147 - "default.handlebars->47->950"
22144 + "default.handlebars->47->2139",
22145 + "default.handlebars->47->2817",
22146 + "default.handlebars->47->2922",
22147 + "default.handlebars->47->952"
22148 ]
22149 },
22150 {
@@ -22171,7 +22171,7 @@
22171 "zh-cht": "桌面會話",
22172 "hu": "Asztal munkamenet",
22173 "xloc": [
22174 - "default.handlebars->47->3075"
22174 + "default.handlebars->47->3077"
22175 ]
22176 },
22177 {
@@ -22278,10 +22278,10 @@
22278 "zh-cht": "桌面工具欄",
22279 "hu": "Asztal kapcsolat eszköztár",
22280 "xloc": [
22281 - "default.handlebars->47->2138",
22282 - "default.handlebars->47->2816",
22283 - "default.handlebars->47->2921",
22284 - "default.handlebars->47->951"
22281 + "default.handlebars->47->2140",
22282 + "default.handlebars->47->2818",
22283 + "default.handlebars->47->2923",
22284 + "default.handlebars->47->953"
22285 ]
22286 },
22287 {
@@ -22308,7 +22308,7 @@
22308 "zh-cht": "僅桌面視圖",
22309 "hu": "Asztal csak megtekintés",
22310 "xloc": [
22311 - "default.handlebars->47->2896"
22311 + "default.handlebars->47->2898"
22312 ]
22313 },
22314 {
@@ -22335,7 +22335,7 @@
22335 "zh-cht": "桌面,僅查看",
22336 "hu": "Asztal, csak megtekintés",
22337 "xloc": [
22338 - "default.handlebars->47->1196"
22338 + "default.handlebars->47->1198"
22339 ]
22340 },
22341 {
@@ -22362,7 +22362,7 @@
22362 "zh-cht": "桌面時段",
22363 "hu": "DesktopSession",
22364 "xloc": [
22365 - "default.handlebars->47->1462"
22365 + "default.handlebars->47->1464"
22366 ]
22367 },
22368 {
@@ -22446,9 +22446,9 @@
22446 "hu": "Eszköz részletek",
22447 "xloc": [
22448 "default-mobile.handlebars->11->564",
22449 - "default.handlebars->47->1129",
22450 - "default.handlebars->47->1154",
22451 - "default.handlebars->47->2355",
22449 + "default.handlebars->47->1131",
22450 + "default.handlebars->47->1156",
22451 + "default.handlebars->47->2357",
22452 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
22453 "default.handlebars->contextMenu->cxdetails"
22454 ]
@@ -22505,13 +22505,13 @@
22505 "hu": "Eszköz",
22506 "xloc": [
22507 "default-mobile.handlebars->11->768",
22508 - "default.handlebars->47->1597",
22509 - "default.handlebars->47->1783",
22510 - "default.handlebars->47->2292",
22508 + "default.handlebars->47->1599",
22509 + "default.handlebars->47->1785",
22510 + "default.handlebars->47->2294",
22511 "default.handlebars->47->281",
22512 - "default.handlebars->47->3041",
22513 - "default.handlebars->47->3108",
22514 - "default.handlebars->47->3126",
22512 + "default.handlebars->47->3043",
22513 + "default.handlebars->47->3110",
22514 + "default.handlebars->47->3128",
22515 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
22516 ]
22517 },
@@ -22567,7 +22567,7 @@
22567 "xloc": [
22568 "default-mobile.handlebars->11->582",
22569 "default-mobile.handlebars->11->591",
22570 - "default.handlebars->47->1254"
22570 + "default.handlebars->47->1256"
22571 ]
22572 },
22573 {
@@ -22649,7 +22649,7 @@
22649 "zh-cht": "設備詳情",
22650 "hu": "Eszköz részéletek elérése",
22651 "xloc": [
22652 - "default.handlebars->47->2316"
22652 + "default.handlebars->47->2318"
22653 ]
22654 },
22655 {
@@ -22705,17 +22705,17 @@
22705 "xloc": [
22706 "agent-translations.json",
22707 "default-mobile.handlebars->11->984",
22708 - "default.handlebars->47->2287",
22709 - "default.handlebars->47->2290",
22710 - "default.handlebars->47->2291",
22711 - "default.handlebars->47->2649",
22712 - "default.handlebars->47->2841",
22713 - "default.handlebars->47->2847",
22714 - "default.handlebars->47->3029",
22715 - "default.handlebars->47->3091",
22716 - "default.handlebars->47->3115",
22717 - "default.handlebars->47->3129",
22718 - "default.handlebars->47->3209"
22708 + "default.handlebars->47->2289",
22709 + "default.handlebars->47->2292",
22710 + "default.handlebars->47->2293",
22711 + "default.handlebars->47->2651",
22712 + "default.handlebars->47->2843",
22713 + "default.handlebars->47->2849",
22714 + "default.handlebars->47->3031",
22715 + "default.handlebars->47->3093",
22716 + "default.handlebars->47->3117",
22717 + "default.handlebars->47->3131",
22718 + "default.handlebars->47->3211"
22719 ]
22720 },
22721 {
@@ -22743,7 +22743,7 @@
22743 "hu": "Eszköz Csoport Felhasználó",
22744 "xloc": [
22745 "default-mobile.handlebars->11->973",
22746 - "default.handlebars->47->2362"
22746 + "default.handlebars->47->2364"
22747 ]
22748 },
22749 {
@@ -22771,11 +22771,11 @@
22771 "hu": "Eszköz csoportok",
22772 "xloc": [
22773 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
22774 - "default.handlebars->47->2665",
22775 - "default.handlebars->47->2784",
22776 - "default.handlebars->47->2828",
22777 - "default.handlebars->47->2917",
22778 - "default.handlebars->47->3265",
22774 + "default.handlebars->47->2667",
22775 + "default.handlebars->47->2786",
22776 + "default.handlebars->47->2830",
22777 + "default.handlebars->47->2919",
22778 + "default.handlebars->47->3267",
22779 "default.handlebars->container->column_l->p2->p2info->9"
22780 ]
22781 },
@@ -22803,7 +22803,7 @@
22803 "zh-cht": "裝置訊息輸出",
22804 "hu": "Eszközinformációk exportálása",
22805 "xloc": [
22806 - "default.handlebars->47->786"
22806 + "default.handlebars->47->788"
22807 ]
22808 },
22809 {
@@ -22830,7 +22830,7 @@
22830 "zh-cht": "裝置位置",
22831 "hu": "Eszköz helye",
22832 "xloc": [
22833 - "default.handlebars->47->1302"
22833 + "default.handlebars->47->1304"
22834 ]
22835 },
22836 {
@@ -22857,7 +22857,7 @@
22857 "zh-cht": "裝置訊息",
22858 "hu": "Üzenet küldése az eszközre",
22859 "xloc": [
22860 - "default.handlebars->47->1168"
22860 + "default.handlebars->47->1170"
22861 ]
22862 },
22863 {
@@ -22885,10 +22885,10 @@
22885 "hu": "Eszköz Neve",
22886 "xloc": [
22887 "default-mobile.handlebars->11->610",
22888 - "default.handlebars->47->1343",
22889 - "default.handlebars->47->3090",
22890 - "default.handlebars->47->491",
22891 - "default.handlebars->47->500",
22888 + "default.handlebars->47->1345",
22889 + "default.handlebars->47->3092",
22890 + "default.handlebars->47->493",
22891 + "default.handlebars->47->502",
22892 "player.handlebars->3->25"
22893 ]
22894 },
@@ -22916,8 +22916,8 @@
22916 "zh-cht": "裝置通知",
22917 "hu": "Eszköz értesítés",
22918 "xloc": [
22919 - "default.handlebars->47->1182",
22920 - "default.handlebars->47->764"
22919 + "default.handlebars->47->1184",
22920 + "default.handlebars->47->766"
22921 ]
22922 },
22923 {
@@ -22950,7 +22950,7 @@
22950 {
22951 "en": "Device Powered On",
22952 "xloc": [
22953 - "default.handlebars->47->2630"
22953 + "default.handlebars->47->2632"
22954 ]
22955 },
22956 {
@@ -22977,7 +22977,7 @@
22977 "zh-cht": "設備推送",
22978 "hu": "Device Push",
22979 "xloc": [
22980 - "default.handlebars->47->2936"
22980 + "default.handlebars->47->2938"
22981 ]
22982 },
22983 {
@@ -22990,7 +22990,7 @@
22990 "de": "Aufzeichnungen zu Push-Benachrichtigungen des Geräts",
22991 "es": "Registro de Notificaciones Push del dispositivo",
22992 "xloc": [
22993 - "default.handlebars->47->3189"
22993 + "default.handlebars->47->3191"
22994 ]
22995 },
22996 {
@@ -23003,7 +23003,7 @@
23003 "de": "SMBIOS Geräteaufzeichnungen",
23004 "es": "Registro SMBIOS del dispositivo",
23005 "xloc": [
23006 - "default.handlebars->47->3188"
23006 + "default.handlebars->47->3190"
23007 ]
23008 },
23009 {
@@ -23078,8 +23078,8 @@
23078 "zh-cht": "設備共享鏈接",
23079 "hu": "Eszközmegosztási link",
23080 "xloc": [
23081 - "default.handlebars->47->1072",
23082 - "default.handlebars->47->2186"
23081 + "default.handlebars->47->1074",
23082 + "default.handlebars->47->2188"
23083 ]
23084 },
23085 {
@@ -23160,9 +23160,9 @@
23160 "default-mobile.handlebars->11->489",
23161 "default-mobile.handlebars->11->491",
23162 "default-mobile.handlebars->11->493",
23163 - "default.handlebars->47->886",
23163 "default.handlebars->47->888",
23165 - "default.handlebars->47->890"
23164 + "default.handlebars->47->890",
23165 + "default.handlebars->47->892"
23166 ]
23167 },
23168 {
@@ -23189,7 +23189,7 @@
23189 "zh-cht": "設備視圖列",
23190 "hu": "Eszközök megjelenített oszlopok",
23191 "xloc": [
23192 - "default.handlebars->47->352"
23192 + "default.handlebars->47->353"
23193 ]
23194 },
23195 {
@@ -23216,13 +23216,13 @@

This file is too large to show in full.

views/default.handlebars
+11 -20
@@ -1,4 +1,4 @@
1 -<!DOCTYPE html>
1 +<!DOCTYPE html>
2 <html lang="en" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <meta http-equiv="X-UA-Compatible" content="IE=edge" />
@@ -4051,6 +4051,7 @@
4051 x += '<label><input id=d2c11 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('windowsav') >= 0)?' checked':'') + '>' + "Windows AV" + '</label><br />';
4052 x += '<label><input id=d2c12 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('windowsupdate') >= 0)?' checked':'') + '>' + "Windows Update" + '</label><br />';
4053 x += '<label><input id=d2c13 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('windowsfirewall') >= 0)?' checked':'') + '>' + "Windows Firewall" + '</label><br />';
4054 + x += '<label><input id=d2c14 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('lastbootuptime') >= 0)?' checked':'') + '>' + "Last Boot Up Time" + '</label><br />';
4055 x += '<label><input id=d2c1 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('links') >= 0)?' checked':'') + '>' + "MeshCentral Router Links" + '</label><br />';
4056 x += '<label><input id=d2c2 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('user') >= 0)?' checked':'') + '>' + "Logged in users" + '</label><br />';
4057 x += '<label><input id=d2c3 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('ip') >= 0)?' checked':'') + '>' + "Agent IP address" + '</label><br />';
@@ -4076,6 +4077,7 @@
4077 if (Q('d2c11').checked) { cols.push('windowsav'); }
4078 if (Q('d2c12').checked) { cols.push('windowsupdate'); }
4079 if (Q('d2c13').checked) { cols.push('windowsfirewall'); }
4080 + if (Q('d2c14').checked) { cols.push('lastbootuptime'); }
4081 if (Q('d2c15').checked) { cols.push('amthost'); }
4082 if (Q('d2c17').checked) { cols.push('amtstate'); }
4083 deviceViewSettings.devsCols = cols;
@@ -4518,6 +4520,7 @@
4520 if (deviceViewSettings.devsCols.indexOf('windowsav') >= 0) { colums += '<th style=color:gray;width:100px>' + "Windows AV"; }
4521 if (deviceViewSettings.devsCols.indexOf('windowsupdate') >= 0) { colums += '<th style=color:gray;width:120px>' + "Windows Update"; }
4522 if (deviceViewSettings.devsCols.indexOf('windowsfirewall') >= 0) { colums += '<th style=color:gray;width:120px>' + "Windows Firewall"; }
4523 + if (deviceViewSettings.devsCols.indexOf('lastbootuptime') >= 0) { colums += '<th style=color:gray;width:120px>' + "Last Boot Up Time"; }
4524 if (deviceViewSettings.devsCols.indexOf('links') >= 0) { colums += '<th style=color:gray;width:120px>' + "Links"; }
4525 if (deviceViewSettings.devsCols.indexOf('user') >= 0) { colums += '<th style=color:gray;width:120px>' + "User"; }
4526 if (deviceViewSettings.devsCols.indexOf('ip') >= 0) { colums += '<th style=color:gray;width:120px>' + "Address"; }
@@ -4832,6 +4835,9 @@
4835 if (deviceViewSettings.devsCols.indexOf('windowsfirewall') >= 0) { // Windows Firewall
4836 r += '<td style=text-align:center>' + ((node.wsc && node.wsc.firewall != null) ? (node.wsc.firewall == 'OK' ? "<span style=color:green>OK</span>" : "<span style=color:red>BAD</span>") : "");
4837 }
4838 + if (deviceViewSettings.devsCols.indexOf('lastbootuptime') >= 0) { // Last Boot Up Time
4839 + r += '<td style=text-align:center;font-size:x-small>' + ((node.lastbootuptime != null) ? printDateTime(new Date(node.lastbootuptime)) : "");
4840 + }
4841 if (deviceViewSettings.devsCols.indexOf('links') >= 0) { r += '<td style=text-align:center;font-size:x-small>' + getShortRouterLinks(node); } // Links
4842 if (deviceViewSettings.devsCols.indexOf('user') >= 0) { r += '<td style=text-align:center>' + getUserShortStr(node); } // User
4843 if (deviceViewSettings.devsCols.indexOf('ip') >= 0) { var ip = ''; if (node.mtype == 3) { ip = node.host; } else if (node.ip) { ip = node.ip; } r += '<td style=text-align:center>' + ip; } // IP address
@@ -11928,28 +11934,12 @@
11934 }
11935 if(hardware.linux && hardware.linux.LastBootUpTime){
11936 var lastBootUpTime = new Date(hardware.linux.LastBootUpTime);
11931 - var thedate = {
11932 - year: lastBootUpTime.getFullYear(),
11933 - month: lastBootUpTime.getMonth(),
11934 - day: lastBootUpTime.getDate(),
11935 - hours: lastBootUpTime.getHours(),
11936 - minutes: lastBootUpTime.getMinutes(),
11937 - seconds: lastBootUpTime.getSeconds()
11938 - };
11939 - const date = printDateTime(new Date(thedate.year, thedate.month, thedate.day, thedate.hours, thedate.minutes, thedate.seconds));
11937 + const date = printDateTime(lastBootUpTime);
11938 x += addDetailItem("Last Boot Up Time", date);
11939 }
11940 if(hardware.darwin && hardware.darwin.LastBootUpTime){
11941 var lastBootUpTime = new Date(hardware.darwin.LastBootUpTime * 1000); // must times by 1000 even tho timestamp is correct?
11944 - var thedate = {
11945 - year: lastBootUpTime.getFullYear(),
11946 - month: lastBootUpTime.getMonth(),
11947 - day: lastBootUpTime.getDate(),
11948 - hours: lastBootUpTime.getHours(),
11949 - minutes: lastBootUpTime.getMinutes(),
11950 - seconds: lastBootUpTime.getSeconds()
11951 - };
11952 - const date = printDateTime(new Date(thedate.year, thedate.month, thedate.day, thedate.hours, thedate.minutes, thedate.seconds));
11942 + const date = printDateTime(lastBootUpTime);
11943 x += addDetailItem("Last Boot Up Time", date);
11944 }
11945 if (x != '') { sections.push({ name: "Operating System", html: x, img: 'software64.png'}); }
@@ -15044,7 +15034,8 @@
15034 155: "Denied user login from {0}, {1}, {2}",
15035 156: "Verified messaging account of user {0}",
15036 157: "Removed messaging account of user {0}",
15047 - 158: "Displaying alert box, title=\"{0}\", message=\"{1}\""
15037 + 158: "Displaying alert box, title=\"{0}\", message=\"{1}\"",
15038 + 159: "Device Powered On"
15039 };
15040
15041 var eventsShortMessageId = {