diff --git a/agents/meshcore.js b/agents/meshcore.js
index 70726ae7..54ab0e00 100644
--- a/agents/meshcore.js
+++ b/agents/meshcore.js
@@ -1883,86 +1883,49 @@ function getSystemInformation(func) {
                 if (results.hardware.windows.osinfo) { delete results.hardware.windows.osinfo.Node; }
                 if (results.hardware.windows.partitions) { for (var i in results.hardware.windows.partitions) { delete results.hardware.windows.partitions[i].Node; } }
             } catch (ex) { }
-            if (!results.hardware.identifiers['bios_serial']) {
-                try { 
-                    var values = require('win-wmi').query('ROOT\\CIMV2', "SELECT * FROM Win32_Bios", ['SerialNumber']);
-                    results.hardware.identifiers['bios_serial'] = values[0]['SerialNumber'];
-                } catch (ex) { }
-            }
-            if (!results.hardware.identifiers['bios_mode']) {
-                try {
-                    results.hardware.identifiers['bios_mode'] = 'Legacy';
-                    for (var i in results.hardware.windows.partitions) {
-                        if (results.hardware.windows.partitions[i].Description=='GPT: System') {
-                            results.hardware.identifiers['bios_mode'] = 'UEFI';
-                        }
-                    }
-                } catch (ex) { results.hardware.identifiers['bios_mode'] = 'Legacy'; }
-            }
-            if (!results.hardware.tpm) {
-                IntToStr = function (v) { return String.fromCharCode((v >> 24) & 0xFF, (v >> 16) & 0xFF, (v >> 8) & 0xFF, v & 0xFF); };
-                try {
-                    var values = require('win-wmi').query('ROOT\\CIMV2\\Security\\MicrosoftTpm', "SELECT * FROM Win32_Tpm", ['IsActivated_InitialValue','IsEnabled_InitialValue','IsOwned_InitialValue','ManufacturerId','ManufacturerVersion','SpecVersion']);
-                    if(values[0]) {
-                        results.hardware.tpm = {
-                            SpecVersion: values[0].SpecVersion.split(",")[0],
-                            ManufacturerId: IntToStr(values[0].ManufacturerId).replace(/[^\x00-\x7F]/g, ""),
-                            ManufacturerVersion: values[0].ManufacturerVersion,
-                            IsActivated: values[0].IsActivated_InitialValue,
-                            IsEnabled: values[0].IsEnabled_InitialValue,
-                            IsOwned: values[0].IsOwned_InitialValue,
-                        }
-                    }
-                } catch (ex) { }
+            if (x.LastBootUpTime) { // detect windows uptime
+                var thedate = {
+                    year: parseInt(x.LastBootUpTime.substring(0, 4)),
+                    month: parseInt(x.LastBootUpTime.substring(4, 6)) - 1, // Months are 0-based in JavaScript (0 - January, 11 - December)
+                    day: parseInt(x.LastBootUpTime.substring(6, 8)),
+                    hours: parseInt(x.LastBootUpTime.substring(8, 10)),
+                    minutes: parseInt(x.LastBootUpTime.substring(10, 12)),
+                    seconds: parseInt(x.LastBootUpTime.substring(12, 14)),
+                };
+                var thelastbootuptime = new Date(thedate.year, thedate.month, thedate.day, thedate.hours, thedate.minutes, thedate.seconds);
+                meshCoreObj.lastbootuptime = thelastbootuptime.getTime(); // store the last boot up time in coreinfo for columns
+                meshCoreObjChanged();
+                var nowtime = new Date();
+                var differenceInMilliseconds = Math.abs(thelastbootuptime - nowtime);
+                if (differenceInMilliseconds < 300000) { // computer uptime less than 5 minutes
+                    MeshServerLogEx(159, [thelastbootuptime.toString()], "Device Powered On", null);
+                }
             }
         }
         if(results.hardware && results.hardware.linux) {
-            if (!results.hardware.identifiers['bios_serial']) {
-                try {
-                    if (require('fs').statSync('/sys/class/dmi/id/product_serial').isFile()){
-                        results.hardware.identifiers['bios_serial'] = require('fs').readFileSync('/sys/class/dmi/id/product_serial').toString().trim();
-                    }
-                } catch (ex) { }
-            }
-            if (!results.hardware.identifiers['bios_mode']) {
-                try {
-                    results.hardware.identifiers['bios_mode'] = (require('fs').statSync('/sys/firmware/efi').isDirectory() ? 'UEFI': 'Legacy');
-                } catch (ex) { results.hardware.identifiers['bios_mode'] = 'Legacy'; }
-            }
-            if (!results.hardware.tpm) {
-                IntToStr = function (v) { return String.fromCharCode((v >> 24) & 0xFF, (v >> 16) & 0xFF, (v >> 8) & 0xFF, v & 0xFF); };
-                try {
-                    if (require('fs').statSync('/sys/class/tpm/tpm0').isDirectory()){
-                        results.hardware.tpm = {
-                            SpecVersion: require('fs').readFileSync('/sys/class/tpm/tpm0/tpm_version_major').toString().trim()
-                        }
-                    }
-                } catch (ex) { }
-            }
-            if(!results.hardware.linux.LastBootUpTime) {
-                try {
-                    var child = require('child_process').execFile('/usr/bin/uptime', ['', '-s']); // must include blank value at begining for some reason?
-                    child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); });
-                    child.stderr.on('data', function () { });
-                    child.waitExit();
-                    results.hardware.linux.LastBootUpTime = child.stdout.str.trim();
-                } catch (ex) { }
-            }
-        }
-        if(process.platform=='darwin'){
-            try {
-                var child = require('child_process').execFile('/usr/sbin/sysctl', ['', 'kern.boottime']); // must include blank value at begining for some reason?
-                child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); });
-                child.stderr.on('data', function () { });
-                child.waitExit();
-                const timestampMatch = /\{ sec = (\d+), usec = \d+ \}/.exec(child.stdout.str.trim());
-                if(!results.hardware.darwin){
-                    results.hardware.darwin = { LastBootUpTime: parseInt(timestampMatch[1]) };
-                }else{
-                    results.hardware.darwin.LastBootUpTime = parseInt(timestampMatch[1]);
+            if(results.hardware.linux.LastBootUpTime) {
+                var thelastbootuptime = new Date(results.hardware.linux.LastBootUpTime);
+                meshCoreObj.lastbootuptime = thelastbootuptime.getTime(); // store the last boot up time in coreinfo for columns
+                meshCoreObjChanged();
+                var nowtime = new Date();
+                var differenceInMilliseconds = Math.abs(thelastbootuptime - nowtime);
+                if (differenceInMilliseconds < 300000) { // computer uptime less than 5 minutes
+                    MeshServerLogEx(159, [thelastbootuptime.toString()], "Device Powered On", null);
                 }
-            } catch (ex) { }
+            }
         }
+        if(results.hardware && results.hardware.darwin){
+            if(results.hardware.darwin.LastBootUpTime) {
+                var thelastbootuptime = new Date(results.hardware.darwin.LastBootUpTime * 1000); // must times by 1000 even tho timestamp is correct?
+                meshCoreObj.lastbootuptime = thelastbootuptime.getTime(); // store the last boot up time in coreinfo for columns
+                meshCoreObjChanged();
+                var nowtime = new Date();
+                var differenceInMilliseconds = Math.abs(thelastbootuptime - nowtime);
+                if (differenceInMilliseconds < 300000) { // computer uptime less than 5 minutes
+                    MeshServerLogEx(159, [thelastbootuptime.toString()], "Device Powered On", null);
+                }
+            }
+        }    
         results.hardware.agentvers = process.versions;
         results.hardware.network = { dns: require('os').dns() }; 
         replaceSpacesWithUnderscoresRec(results);
diff --git a/agents/modules_meshcore/computer-identifiers.js b/agents/modules_meshcore/computer-identifiers.js
index 235e96e2..41c165ec 100644
--- a/agents/modules_meshcore/computer-identifiers.js
+++ b/agents/modules_meshcore/computer-identifiers.js
@@ -70,31 +70,25 @@ function linux_identifiers()
     var values = {};
 
     if (!require('fs').existsSync('/sys/class/dmi/id')) {         
-        if(require('fs').existsSync('/sys/firmware/devicetree/base/model')){
-            if(require('fs').readFileSync('/sys/firmware/devicetree/base/model').toString().trim().startsWith('Raspberry')){
+        if (require('fs').existsSync('/sys/firmware/devicetree/base/model')) {
+            if (require('fs').readFileSync('/sys/firmware/devicetree/base/model').toString().trim().startsWith('Raspberry')) {
                 identifiers['board_vendor'] = 'Raspberry Pi';
                 identifiers['board_name'] = require('fs').readFileSync('/sys/firmware/devicetree/base/model').toString().trim();
                 identifiers['board_serial'] = require('fs').readFileSync('/sys/firmware/devicetree/base/serial-number').toString().trim();
-            }else{
+            } else {
                 throw('Unknown board');
             }
-        }else {
+        } else {
             throw ('this platform does not have DMI statistics');
         }
     } else {
         var entries = require('fs').readdirSync('/sys/class/dmi/id');
-        for(var i in entries)
-        {
-            if (require('fs').statSync('/sys/class/dmi/id/' + entries[i]).isFile())
-            {
-                try
-                {
+        for (var i in entries) {
+            if (require('fs').statSync('/sys/class/dmi/id/' + entries[i]).isFile()) {
+                try {
                     ret[entries[i]] = require('fs').readFileSync('/sys/class/dmi/id/' + entries[i]).toString().trim();
-                }
-                catch(z)
-                {
-                }
-                if (ret[entries[i]] == 'None') { delete ret[entries[i]];}
+                } catch(z) { }
+                if (ret[entries[i]] == 'None') { delete ret[entries[i]]; }
             }
         }
         entries = null;
@@ -343,6 +337,25 @@ function linux_identifiers()
         child = null;
     }
 
+    // Linux Last Boot Up Time
+    try {
+        child = require('child_process').execFile('/usr/bin/uptime', ['', '-s']); // must include blank value at begining for some reason?
+        child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); });
+        child.stderr.on('data', function () { });
+        child.waitExit();
+        values.linux.LastBootUpTime = child.stdout.str.trim();
+        child = null;
+    } catch (ex) { }
+
+    // Linux TPM
+    try {
+        if (require('fs').statSync('/sys/class/tpm/tpm0').isDirectory()){
+            values.tpm = {
+                SpecVersion: require('fs').readFileSync('/sys/class/tpm/tpm0/tpm_version_major').toString().trim()
+            }
+        }
+    } catch (ex) { }
+
     return (values);
 }
 
@@ -559,6 +572,23 @@ function windows_identifiers()
     }
 
     try { ret.identifiers.cpu_name = ret.windows.cpu[0].Name; } catch (x) { }
+
+    // Windows TPM
+    IntToStr = function (v) { return String.fromCharCode((v >> 24) & 0xFF, (v >> 16) & 0xFF, (v >> 8) & 0xFF, v & 0xFF); };
+    try {
+        values = require('win-wmi').query('ROOT\\CIMV2\\Security\\MicrosoftTpm', "SELECT * FROM Win32_Tpm", ['IsActivated_InitialValue','IsEnabled_InitialValue','IsOwned_InitialValue','ManufacturerId','ManufacturerVersion','SpecVersion']);
+        if(values[0]) {
+            ret.tpm = {
+                SpecVersion: values[0].SpecVersion.split(",")[0],
+                ManufacturerId: IntToStr(values[0].ManufacturerId).replace(/[^\x00-\x7F]/g, ""),
+                ManufacturerVersion: values[0].ManufacturerVersion,
+                IsActivated: values[0].IsActivated_InitialValue,
+                IsEnabled: values[0].IsEnabled_InitialValue,
+                IsOwned: values[0].IsOwned_InitialValue,
+            }
+        }
+    } catch (ex) { }
+
     return (ret);
 }
 function macos_identifiers()
@@ -674,6 +704,21 @@ function macos_identifiers()
         ret.identifiers.storage_devices = devices;
     }
 
+    // MacOS Last Boot Up Time
+    try {
+        child = require('child_process').execFile('/usr/sbin/sysctl', ['', 'kern.boottime']); // must include blank value at begining for some reason?
+        child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); });
+        child.stderr.on('data', function () { });
+        child.waitExit();
+        const timestampMatch = /\{ sec = (\d+), usec = \d+ \}/.exec(child.stdout.str.trim());
+        if (!ret.darwin) {
+            ret.darwin = { LastBootUpTime: parseInt(timestampMatch[1]) };
+        } else {
+            ret.darwin.LastBootUpTime = parseInt(timestampMatch[1]);
+        }
+        child = null;
+    } catch (ex) { }
+
     trimIdentifiers(ret.identifiers);
 
     child = null;
diff --git a/meshagent.js b/meshagent.js
index 53a4ee03..ba29a92c 100644
--- a/meshagent.js
+++ b/meshagent.js
@@ -1924,6 +1924,10 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
                     if (!device.defender) { device.defender = {}; }
                     if (JSON.stringify(device.defender) != JSON.stringify(command.defender)) { /*changes.push('Defender status');*/ device.defender = command.defender; change = 1; log = 1; }
                 }
+                if (command.lastbootuptime != null) { // Last Boot Up Time
+                    if (!device.lastbootuptime) { device.lastbootuptime = ""; }
+                    if (device.lastbootuptime != command.lastbootuptime) { /*changes.push('Last Boot Up Time');*/ device.lastbootuptime = command.lastbootuptime; change = 1; log = 1; }
+                }
 
                 // Push Messaging Token
                 if ((command.pmt != null) && (typeof command.pmt == 'string') && (device.pmt != command.pmt)) {
diff --git a/translate/translate.json b/translate/translate.json
index 7a857bff..a8e16e12 100644
--- a/translate/translate.json
+++ b/translate/translate.json
@@ -31,7 +31,7 @@
       "en": " (",
       "nl": " (",
       "xloc": [
-        "default.handlebars->47->1519"
+        "default.handlebars->47->1521"
       ]
     },
     {
@@ -58,8 +58,8 @@
       "zh-cht": " + CIRA",
       "hu": " + CIRA",
       "xloc": [
-        "default.handlebars->47->2161",
-        "default.handlebars->47->2163"
+        "default.handlebars->47->2163",
+        "default.handlebars->47->2165"
       ]
     },
     {
@@ -332,7 +332,7 @@
       "zh-cht": " 可以使用密碼提示,但不建議使用。",
       "hu": "Jelszó tipp használható, de nem ajánlott.",
       "xloc": [
-        "default.handlebars->47->2037"
+        "default.handlebars->47->2039"
       ]
     },
     {
@@ -359,8 +359,8 @@
       "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
       "hu": " A felhasználóknak egyszer be kell jelentkezniük erre a kiszolgálóra, mielőtt hozzáadhatók lennének egy eszközcsoporthoz.",
       "xloc": [
-        "default.handlebars->47->2285",
-        "default.handlebars->47->2865"
+        "default.handlebars->47->2287",
+        "default.handlebars->47->2867"
       ]
     },
     {
@@ -889,7 +889,7 @@
       "zh-cht": "(可選的)",
       "hu": "(opcionális)",
       "xloc": [
-        "default.handlebars->47->564"
+        "default.handlebars->47->566"
       ]
     },
     {
@@ -911,7 +911,7 @@
       "hu": ")",
       "xloc": [
         "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1",
-        "default.handlebars->47->1520"
+        "default.handlebars->47->1522"
       ]
     },
     {
@@ -938,8 +938,8 @@
       "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
       "hu": "* 8 karakter, 1 nagybetű, 1 kisbetű , 1 szám, 1 speciális karakter.",
       "xloc": [
-        "default.handlebars->47->2245",
-        "default.handlebars->47->526"
+        "default.handlebars->47->2247",
+        "default.handlebars->47->528"
       ]
     },
     {
@@ -966,7 +966,7 @@
       "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
       "hu": "* BSD esetén először futtassa a \\\"pkg install wget sudo bash\\\" parancsot.",
       "xloc": [
-        "default.handlebars->47->623"
+        "default.handlebars->47->625"
       ]
     },
     {
@@ -1043,12 +1043,12 @@
         "default-mobile.handlebars->11->784",
         "default-mobile.handlebars->11->786",
         "default-mobile.handlebars->11->972",
-        "default.handlebars->47->1621",
         "default.handlebars->47->1623",
         "default.handlebars->47->1625",
-        "default.handlebars->47->2361",
-        "default.handlebars->47->2638",
-        "default.handlebars->47->994"
+        "default.handlebars->47->1627",
+        "default.handlebars->47->2363",
+        "default.handlebars->47->2640",
+        "default.handlebars->47->996"
       ]
     },
     {
@@ -1154,7 +1154,7 @@
       "hu": ", csak Intel® AMT",
       "xloc": [
         "default-mobile.handlebars->11->393",
-        "default.handlebars->47->353"
+        "default.handlebars->47->354"
       ]
     },
     {
@@ -1181,7 +1181,7 @@
       "zh-cht": ", 本地設備",
       "hu": ", Helyi eszközök",
       "xloc": [
-        "default.handlebars->47->355"
+        "default.handlebars->47->356"
       ]
     },
     {
@@ -1209,7 +1209,7 @@
       "hu": ", MQTT online",
       "xloc": [
         "default-mobile.handlebars->11->875",
-        "default.handlebars->47->1715"
+        "default.handlebars->47->1717"
       ]
     },
     {
@@ -1236,8 +1236,8 @@
       "zh-cht": ", 不同意",
       "hu": ", Nincs hozzájárulás",
       "xloc": [
-        "default.handlebars->47->1089",
-        "default.handlebars->47->2203"
+        "default.handlebars->47->1091",
+        "default.handlebars->47->2205"
       ]
     },
     {
@@ -1264,8 +1264,8 @@
       "zh-cht": ",提示同意",
       "hu": ", Hozzájárulás kérése a kapcsolódáshoz",
       "xloc": [
-        "default.handlebars->47->1090",
-        "default.handlebars->47->2204"
+        "default.handlebars->47->1092",
+        "default.handlebars->47->2206"
       ]
     },
     {
@@ -1292,7 +1292,7 @@
       "zh-cht": ", RDP",
       "hu": ", RDP",
       "xloc": [
-        "default.handlebars->47->1382"
+        "default.handlebars->47->1384"
       ]
     },
     {
@@ -1319,8 +1319,8 @@
       "zh-cht": ", 每天重複",
       "hu": ", naponta ismétlődően",
       "xloc": [
-        "default.handlebars->47->1086",
-        "default.handlebars->47->2200"
+        "default.handlebars->47->1088",
+        "default.handlebars->47->2202"
       ]
     },
     {
@@ -1347,8 +1347,8 @@
       "zh-cht": ", 每週重複一次",
       "hu": ", hetente ismétlődően",
       "xloc": [
-        "default.handlebars->47->1087",
-        "default.handlebars->47->2201"
+        "default.handlebars->47->1089",
+        "default.handlebars->47->2203"
       ]
     },
     {
@@ -1399,7 +1399,7 @@
       "zh-cht": ", 中繼設備",
       "hu": ", Relayed Devices",
       "xloc": [
-        "default.handlebars->47->354"
+        "default.handlebars->47->355"
       ]
     },
     {
@@ -1427,7 +1427,7 @@
       "hu": ", SFTP",
       "xloc": [
         "default-mobile.handlebars->11->680",
-        "default.handlebars->47->1503"
+        "default.handlebars->47->1505"
       ]
     },
     {
@@ -1454,7 +1454,7 @@
       "zh-cht": ", SSH",
       "hu": ", SSH",
       "xloc": [
-        "default.handlebars->47->1471"
+        "default.handlebars->47->1473"
       ]
     },
     {
@@ -1481,7 +1481,7 @@
       "zh-cht": ",軟體KVM",
       "hu": ", Soft-KVM",
       "xloc": [
-        "default.handlebars->47->1365",
+        "default.handlebars->47->1367",
         "sharing.handlebars->11->12"
       ]
     },
@@ -1509,8 +1509,8 @@
       "zh-cht": ", 工具欄",
       "hu": ", Tálca értesítés",
       "xloc": [
-        "default.handlebars->47->1091",
-        "default.handlebars->47->2205"
+        "default.handlebars->47->1093",
+        "default.handlebars->47->2207"
       ]
     },
     {
@@ -1561,8 +1561,8 @@
       "zh-cht": ", 僅查看桌面",
       "hu": ", csak megtekintés",
       "xloc": [
-        "default.handlebars->47->1088",
-        "default.handlebars->47->2202"
+        "default.handlebars->47->1090",
+        "default.handlebars->47->2204"
       ]
     },
     {
@@ -1592,9 +1592,9 @@
         "default-mobile.handlebars->11->621",
         "default-mobile.handlebars->11->658",
         "default-mobile.handlebars->11->681",
-        "default.handlebars->47->1381",
-        "default.handlebars->47->1472",
-        "default.handlebars->47->1504",
+        "default.handlebars->47->1383",
+        "default.handlebars->47->1474",
+        "default.handlebars->47->1506",
         "sharing.handlebars->11->19",
         "sharing.handlebars->11->27",
         "sharing.handlebars->11->44",
@@ -1809,7 +1809,7 @@
       "zh-cht": ",{0}觀看",
       "hu": ", {0} nézi",
       "xloc": [
-        "default.handlebars->47->1376",
+        "default.handlebars->47->1378",
         "sharing.handlebars->11->13"
       ]
     },
@@ -1922,9 +1922,9 @@
       "xloc": [
         "default-mobile.handlebars->11->346",
         "default-mobile.handlebars->11->687",
-        "default.handlebars->47->1518",
-        "default.handlebars->47->2427",
-        "default.handlebars->47->3101",
+        "default.handlebars->47->1520",
+        "default.handlebars->47->2429",
+        "default.handlebars->47->3103",
         "sharing.handlebars->11->50"
       ]
     },
@@ -2102,7 +2102,7 @@
       "zh-cht": "1個活躍時段",
       "hu": "1 aktív munkamenet",
       "xloc": [
-        "default.handlebars->47->2959"
+        "default.handlebars->47->2961"
       ]
     },
     {
@@ -2131,7 +2131,7 @@
       "xloc": [
         "default-mobile.handlebars->11->1016",
         "default-mobile.handlebars->11->356",
-        "default.handlebars->47->2451",
+        "default.handlebars->47->2453",
         "download.handlebars->3->1",
         "download2.handlebars->5->1",
         "sharing.handlebars->11->96"
@@ -2188,7 +2188,7 @@
       "zh-cht": "1位聯絡文",
       "hu": "1 csatlakozás",
       "xloc": [
-        "default.handlebars->47->1378",
+        "default.handlebars->47->1380",
         "sharing.handlebars->11->15"
       ]
     },
@@ -2217,8 +2217,8 @@
       "hu": "1 nap",
       "xloc": [
         "default.handlebars->47->276",
-        "default.handlebars->47->555",
-        "default.handlebars->47->569"
+        "default.handlebars->47->557",
+        "default.handlebars->47->571"
       ]
     },
     {
@@ -2245,7 +2245,7 @@
       "zh-cht": "1群",
       "hu": "1 csoport",
       "xloc": [
-        "default.handlebars->47->2915"
+        "default.handlebars->47->2917"
       ]
     },
     {
@@ -2273,8 +2273,8 @@
       "hu": "1 óra",
       "xloc": [
         "default.handlebars->47->274",
-        "default.handlebars->47->553",
-        "default.handlebars->47->567"
+        "default.handlebars->47->555",
+        "default.handlebars->47->569"
       ]
     },
     {
@@ -2301,8 +2301,8 @@
       "zh-cht": "1分鐘",
       "hu": "1 perc",
       "xloc": [
-        "default.handlebars->47->1198",
-        "default.handlebars->47->2002"
+        "default.handlebars->47->1200",
+        "default.handlebars->47->2004"
       ]
     },
     {
@@ -2357,8 +2357,8 @@
       "hu": "1 hónap",
       "xloc": [
         "default.handlebars->47->278",
-        "default.handlebars->47->557",
-        "default.handlebars->47->571"
+        "default.handlebars->47->559",
+        "default.handlebars->47->573"
       ]
     },
     {
@@ -2385,7 +2385,7 @@
       "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
       "hu": "1 további felhasználó nem jelenik meg, használja a keresőmezőt a felhasználók kereséséhez...",
       "xloc": [
-        "default.handlebars->47->2670"
+        "default.handlebars->47->2672"
       ]
     },
     {
@@ -2412,7 +2412,7 @@
       "zh-cht": "1個節點",
       "hu": "1 node",
       "xloc": [
-        "default.handlebars->47->675"
+        "default.handlebars->47->677"
       ]
     },
     {
@@ -2488,7 +2488,7 @@
       "hu": "1 másodperc",
       "xloc": [
         "default-mobile.handlebars->11->570",
-        "default.handlebars->47->1236"
+        "default.handlebars->47->1238"
       ]
     },
     {
@@ -2542,7 +2542,7 @@
       "zh-cht": "1 個選定的設備處於離線狀態。",
       "hu": "1 kiválasztott eszköz offline.",
       "xloc": [
-        "default.handlebars->47->741"
+        "default.handlebars->47->743"
       ]
     },
     {
@@ -2569,7 +2569,7 @@
       "zh-cht": "1 個選定的設備在線。",
       "hu": "1 kiválasztott eszköz online.",
       "xloc": [
-        "default.handlebars->47->739"
+        "default.handlebars->47->741"
       ]
     },
     {
@@ -2603,14 +2603,14 @@
         "default-mobile.handlebars->11->425",
         "default-mobile.handlebars->11->429",
         "default-mobile.handlebars->11->433",
-        "default.handlebars->47->2674",
-        "default.handlebars->47->444",
-        "default.handlebars->47->447",
-        "default.handlebars->47->451",
-        "default.handlebars->47->455",
-        "default.handlebars->47->459",
-        "default.handlebars->47->463",
-        "default.handlebars->47->467"
+        "default.handlebars->47->2676",
+        "default.handlebars->47->446",
+        "default.handlebars->47->449",
+        "default.handlebars->47->453",
+        "default.handlebars->47->457",
+        "default.handlebars->47->461",
+        "default.handlebars->47->465",
+        "default.handlebars->47->469"
       ]
     },
     {
@@ -2638,8 +2638,8 @@
       "hu": "1 hét",
       "xloc": [
         "default.handlebars->47->277",
-        "default.handlebars->47->556",
-        "default.handlebars->47->570"
+        "default.handlebars->47->558",
+        "default.handlebars->47->572"
       ]
     },
     {
@@ -2805,8 +2805,8 @@
       "zh-cht": "10分鐘",
       "hu": "10 perc",
       "xloc": [
-        "default.handlebars->47->1200",
-        "default.handlebars->47->2004"
+        "default.handlebars->47->1202",
+        "default.handlebars->47->2006"
       ]
     },
     {
@@ -2834,7 +2834,7 @@
       "hu": "10 másodperc",
       "xloc": [
         "default-mobile.handlebars->11->572",
-        "default.handlebars->47->1238"
+        "default.handlebars->47->1240"
       ]
     },
     {
@@ -3026,8 +3026,8 @@
       "zh-cht": "12小時",
       "hu": "12 óra",
       "xloc": [
-        "default.handlebars->47->1208",
-        "default.handlebars->47->2012"
+        "default.handlebars->47->1210",
+        "default.handlebars->47->2014"
       ]
     },
     {
@@ -3215,8 +3215,8 @@
       "zh-cht": "15分鐘",
       "hu": "15 perc",
       "xloc": [
-        "default.handlebars->47->1201",
-        "default.handlebars->47->2005"
+        "default.handlebars->47->1203",
+        "default.handlebars->47->2007"
       ]
     },
     {
@@ -3243,8 +3243,8 @@
       "zh-cht": "16小時",
       "hu": "12 óra",
       "xloc": [
-        "default.handlebars->47->1209",
-        "default.handlebars->47->2013"
+        "default.handlebars->47->1211",
+        "default.handlebars->47->2015"
       ]
     },
     {
@@ -3460,8 +3460,8 @@
       "zh-cht": "2天",
       "hu": "2 nap",
       "xloc": [
-        "default.handlebars->47->1211",
-        "default.handlebars->47->2015"
+        "default.handlebars->47->1213",
+        "default.handlebars->47->2017"
       ]
     },
     {
@@ -3488,8 +3488,8 @@
       "zh-cht": "2小時",
       "hu": "2 óra",
       "xloc": [
-        "default.handlebars->47->1205",
-        "default.handlebars->47->2009"
+        "default.handlebars->47->1207",
+        "default.handlebars->47->2011"
       ]
     },
     {
@@ -3682,8 +3682,8 @@
       "zh-cht": "24小時",
       "hu": "24 óra",
       "xloc": [
-        "default.handlebars->47->1210",
-        "default.handlebars->47->2014"
+        "default.handlebars->47->1212",
+        "default.handlebars->47->2016"
       ]
     },
     {
@@ -3763,7 +3763,7 @@
       "zh-cht": "2FA備份代碼已清除",
       "hu": "2FA biztonsági kódok törölve",
       "xloc": [
-        "default.handlebars->47->2564"
+        "default.handlebars->47->2566"
       ]
     },
     {
@@ -3818,7 +3818,7 @@
       "zh-cht": "第二個因素",
       "hu": "2. faktor",
       "xloc": [
-        "default.handlebars->47->3138"
+        "default.handlebars->47->3140"
       ]
     },
     {
@@ -3845,8 +3845,8 @@
       "zh-cht": "啟用第二因素身份驗證",
       "hu": "2. faktoros hitelesítés engedélyezve",
       "xloc": [
-        "default.handlebars->47->2688",
-        "default.handlebars->47->2940"
+        "default.handlebars->47->2690",
+        "default.handlebars->47->2942"
       ]
     },
     {
@@ -4006,8 +4006,8 @@
       "zh-cht": "30分鐘",
       "hu": "30 perc",
       "xloc": [
-        "default.handlebars->47->1202",
-        "default.handlebars->47->2006"
+        "default.handlebars->47->1204",
+        "default.handlebars->47->2008"
       ]
     },
     {
@@ -4035,7 +4035,7 @@
       "hu": "32-bit",
       "xloc": [
         "default-mobile.handlebars->11->724",
-        "default.handlebars->47->1579"
+        "default.handlebars->47->1581"
       ]
     },
     {
@@ -4115,8 +4115,8 @@
       "zh-cht": "4天",
       "hu": "4 nap",
       "xloc": [
-        "default.handlebars->47->1212",
-        "default.handlebars->47->2016"
+        "default.handlebars->47->1214",
+        "default.handlebars->47->2018"
       ]
     },
     {
@@ -4143,8 +4143,8 @@
       "zh-cht": "4個小時",
       "hu": "4 óra",
       "xloc": [
-        "default.handlebars->47->1206",
-        "default.handlebars->47->2010"
+        "default.handlebars->47->1208",
+        "default.handlebars->47->2012"
       ]
     },
     {
@@ -4282,8 +4282,8 @@
       "zh-cht": "45分鐘",
       "hu": "45 perc",
       "xloc": [
-        "default.handlebars->47->1203",
-        "default.handlebars->47->2007"
+        "default.handlebars->47->1205",
+        "default.handlebars->47->2009"
       ]
     },
     {
@@ -4337,8 +4337,8 @@
       "zh-cht": "5分鐘",
       "hu": "5 perc",
       "xloc": [
-        "default.handlebars->47->1199",
-        "default.handlebars->47->2003"
+        "default.handlebars->47->1201",
+        "default.handlebars->47->2005"
       ]
     },
     {
@@ -4366,7 +4366,7 @@
       "hu": "5 másodperc",
       "xloc": [
         "default-mobile.handlebars->11->571",
-        "default.handlebars->47->1237"
+        "default.handlebars->47->1239"
       ]
     },
     {
@@ -4534,8 +4534,8 @@
       "zh-cht": "60分鐘",
       "hu": "60 perc",
       "xloc": [
-        "default.handlebars->47->1204",
-        "default.handlebars->47->2008"
+        "default.handlebars->47->1206",
+        "default.handlebars->47->2010"
       ]
     },
     {
@@ -4619,7 +4619,7 @@
       "hu": "64-bit",
       "xloc": [
         "default-mobile.handlebars->11->726",
-        "default.handlebars->47->1581"
+        "default.handlebars->47->1583"
       ]
     },
     {
@@ -4796,7 +4796,7 @@
       "zh-cht": "7天電源狀態",
       "hu": "7 napos energiaellátás állapota",
       "xloc": [
-        "default.handlebars->47->1277"
+        "default.handlebars->47->1279"
       ]
     },
     {
@@ -4823,7 +4823,7 @@
       "zh-cht": "7天",
       "hu": "7 nap",
       "xloc": [
-        "default.handlebars->47->2017"
+        "default.handlebars->47->2019"
       ]
     },
     {
@@ -4907,10 +4907,10 @@
       "zh-cht": "8小時",
       "hu": "8 óra",
       "xloc": [
-        "default.handlebars->47->1207",
-        "default.handlebars->47->2011",
-        "default.handlebars->47->554",
-        "default.handlebars->47->568"
+        "default.handlebars->47->1209",
+        "default.handlebars->47->2013",
+        "default.handlebars->47->556",
+        "default.handlebars->47->570"
       ]
     },
     {
@@ -5048,7 +5048,7 @@
       "zh-cht": "",
       "hu": "<<",
       "xloc": [
-        "default.handlebars->47->634"
+        "default.handlebars->47->636"
       ]
     },
     {
@@ -5219,7 +5219,7 @@
       "pl": "Serwery DNS ",
       "xloc": [
         "default-mobile.handlebars->11->785",
-        "default.handlebars->47->1624"
+        "default.handlebars->47->1626"
       ]
     },
     {
@@ -5227,7 +5227,7 @@
       "nl": "
Perform batch device notification
",
       "pl": "Wykonaj wsadowo powiadomienie na maszynach
",
       "xloc": [
-        "default.handlebars->47->754"
+        "default.handlebars->47->756"
       ]
     },
     {
@@ -5235,9 +5235,9 @@
       "nl": "OK ",
       "pl": "OK ",
       "xloc": [
-        "default.handlebars->47->418",
         "default.handlebars->47->420",
-        "default.handlebars->47->422"
+        "default.handlebars->47->422",
+        "default.handlebars->47->424"
       ]
     },
     {
@@ -5245,9 +5245,9 @@
       "nl": "FOUT ",
       "pl": "NIEPOPRAWNY ",
       "xloc": [
-        "default.handlebars->47->419",
         "default.handlebars->47->421",
-        "default.handlebars->47->423"
+        "default.handlebars->47->423",
+        "default.handlebars->47->425"
       ]
     },
     {
@@ -5274,7 +5274,7 @@
       "zh-cht": "",
       "hu": "",
       "xloc": [
-        "default.handlebars->47->631"
+        "default.handlebars->47->633"
       ]
     },
     {
@@ -5282,7 +5282,7 @@
       "nl": "UWAGA: Jeśli istnieje aktywna sesja AMT, polecenie wyłączenia zasilania zostanie odrzucone, musisz więc wcześniej rozłączyć sesje AMT! ",
       "xloc": [
         "default-mobile.handlebars->11->586",
-        "default.handlebars->47->1267"
+        "default.handlebars->47->1269"
       ]
     },
     {
@@ -54955,7 +54957,7 @@
       "de": "Intel® AMT Einschalten ins BIOS durchführen?",
       "es": "Ejecutar accion de Encendido Intel® AMT en BIOS?",
       "xloc": [
-        "default.handlebars->47->1271"
+        "default.handlebars->47->1273"
       ]
     },
     {
@@ -54983,7 +54985,7 @@
       "hu": "Végrehajtja az Intel® AMT bekapcsolását?",
       "xloc": [
         "default-mobile.handlebars->11->584",
-        "default.handlebars->47->1265"
+        "default.handlebars->47->1267"
       ]
     },
     {
@@ -54996,7 +54998,7 @@
       "de": "Intel® AMT Reset ins BIOS durchführen?",
       "es": "Ejecutar accion de Reinicio Intel® AMT en BIOS?",
       "xloc": [
-        "default.handlebars->47->1273"
+        "default.handlebars->47->1275"
       ]
     },
     {
@@ -55024,7 +55026,7 @@
       "hu": "Végrehajtása az Intel® AMT reset-et?",
       "xloc": [
         "default-mobile.handlebars->11->588",
-        "default.handlebars->47->1269"
+        "default.handlebars->47->1271"
       ]
     },
     {
@@ -55075,7 +55077,7 @@
       "zh-cht": "執行批次裝置標籤操作",
       "hu": "Kötegelt eszköz címkézési művelet végrehajtása",
       "xloc": [
-        "default.handlebars->47->746"
+        "default.handlebars->47->748"
       ]
     },
     {
@@ -55103,7 +55105,7 @@
       "hu": "Tápellátással kapcsolatos műveleteket végzése az eszközön",
       "xloc": [
         "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
-        "default.handlebars->47->996",
+        "default.handlebars->47->998",
         "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
         "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
         "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -55134,7 +55136,7 @@
       "hu": "Végrehajtja a kikapcsolását?",
       "xloc": [
         "default-mobile.handlebars->11->556",
-        "default.handlebars->47->1094"
+        "default.handlebars->47->1096"
       ]
     },
     {
@@ -55162,7 +55164,7 @@
       "hu": "Végrehajtja a bekapcsolását?",
       "xloc": [
         "default-mobile.handlebars->11->558",
-        "default.handlebars->47->1096"
+        "default.handlebars->47->1098"
       ]
     },
     {
@@ -55189,7 +55191,7 @@
       "zh-cht": "執行電源操作= {0},強制執行= {1}",
       "hu": "Végrehajtott tápellárás művelet={0}, kényszerített={1}",
       "xloc": [
-        "default.handlebars->47->2496"
+        "default.handlebars->47->2498"
       ]
     },
     {
@@ -55217,7 +55219,7 @@
       "hu": "Hozzáférés megtagadva",
       "xloc": [
         "default-mobile.handlebars->11->986",
-        "default.handlebars->47->3211"
+        "default.handlebars->47->3213"
       ]
     },
     {
@@ -55245,8 +55247,8 @@
       "hu": "Jogosultságok",
       "xloc": [
         "default-mobile.handlebars->11->971",
-        "default.handlebars->47->2360",
-        "default.handlebars->47->2667"
+        "default.handlebars->47->2362",
+        "default.handlebars->47->2669"
       ]
     },
     {
@@ -55274,7 +55276,7 @@
       "hu": "perzsa/irán",
       "xloc": [
         "default-mobile.handlebars->11->231",
-        "default.handlebars->47->1922",
+        "default.handlebars->47->1924",
         "login2.handlebars->7->128"
       ]
     },
@@ -55359,10 +55361,10 @@
         "default-mobile.handlebars->11->100",
         "default-mobile.handlebars->11->83",
         "default-mobile.handlebars->11->98",
-        "default.handlebars->47->1736",
-        "default.handlebars->47->1739",
+        "default.handlebars->47->1738",
+        "default.handlebars->47->1741",
         "default.handlebars->47->252",
-        "default.handlebars->47->2964"
+        "default.handlebars->47->2966"
       ]
     },
     {
@@ -55389,7 +55391,7 @@
       "zh-cht": "電話號碼",
       "hu": "Telefonszám",
       "xloc": [
-        "default.handlebars->47->2888"
+        "default.handlebars->47->2890"
       ]
     },
     {
@@ -55417,8 +55419,8 @@
       "hu": "Telefonszám:",
       "xloc": [
         "default-mobile.handlebars->11->99",
-        "default.handlebars->47->1738",
-        "default.handlebars->47->2963"
+        "default.handlebars->47->1740",
+        "default.handlebars->47->2965"
       ]
     },
     {
@@ -55469,7 +55471,7 @@
       "zh-cht": "將節點放在這裡",
       "hu": "Eszköz elhelyezése itt",
       "xloc": [
-        "default.handlebars->47->855"
+        "default.handlebars->47->857"
       ]
     },
     {
@@ -55633,7 +55635,7 @@
       "hu": "Kérjük, várjon néhány percet, amíg megkapja az igazolást.",
       "xloc": [
         "default-mobile.handlebars->11->314",
-        "default.handlebars->47->2028"
+        "default.handlebars->47->2030"
       ]
     },
     {
@@ -55661,7 +55663,7 @@
       "hu": "Plugin Művelet",
       "xloc": [
         "default.handlebars->47->315",
-        "default.handlebars->47->3345"
+        "default.handlebars->47->3347"
       ]
     },
     {
@@ -55854,7 +55856,7 @@
       "hu": "Házirend",
       "xloc": [
         "default-mobile.handlebars->11->341",
-        "default.handlebars->47->2073"
+        "default.handlebars->47->2075"
       ]
     },
     {
@@ -55882,7 +55884,7 @@
       "hu": "lengyel",
       "xloc": [
         "default-mobile.handlebars->11->232",
-        "default.handlebars->47->1923",
+        "default.handlebars->47->1925",
         "login2.handlebars->7->129"
       ]
     },
@@ -55896,8 +55898,8 @@
       "de": "Port",
       "es": "Puerto",
       "xloc": [
-        "default.handlebars->47->1229",
-        "default.handlebars->47->1230"
+        "default.handlebars->47->1231",
+        "default.handlebars->47->1232"
       ]
     },
     {
@@ -55972,7 +55974,7 @@
       "zh-cht": "端口名稱同步",
       "hu": "Port Név Szinkronizásás",
       "xloc": [
-        "default.handlebars->47->2131"
+        "default.handlebars->47->2133"
       ]
     },
     {
@@ -56000,7 +56002,7 @@
       "hu": "Port Szám",
       "xloc": [
         "default-mobile.handlebars->11->487",
-        "default.handlebars->47->884"
+        "default.handlebars->47->886"
       ]
     },
     {
@@ -56028,7 +56030,7 @@
       "hu": "Port Típus",
       "xloc": [
         "default-mobile.handlebars->11->488",
-        "default.handlebars->47->885"
+        "default.handlebars->47->887"
       ]
     },
     {
@@ -56104,7 +56106,7 @@
       "hu": "portugál",
       "xloc": [
         "default-mobile.handlebars->11->233",
-        "default.handlebars->47->1924",
+        "default.handlebars->47->1926",
         "login2.handlebars->7->130"
       ]
     },
@@ -56133,7 +56135,7 @@
       "hu": "portugál (Brazília)",
       "xloc": [
         "default-mobile.handlebars->11->234",
-        "default.handlebars->47->1925",
+        "default.handlebars->47->1927",
         "login2.handlebars->7->131"
       ]
     },
@@ -56218,8 +56220,8 @@
       "xloc": [
         "default-mobile.handlebars->11->555",
         "default-mobile.handlebars->11->557",
-        "default.handlebars->47->1093",
-        "default.handlebars->47->1095"
+        "default.handlebars->47->1095",
+        "default.handlebars->47->1097"
       ]
     },
     {
@@ -56273,7 +56275,7 @@
       "zh-cht": "電源狀態",
       "hu": "Energiaellátás Statisztika",
       "xloc": [
-        "default.handlebars->47->2412",
+        "default.handlebars->47->2414",
         "default.handlebars->container->column_l->p21->p21main->1->1->meshPowerChartDiv->1"
       ]
     },
@@ -56303,7 +56305,7 @@
       "xloc": [
         "default-mobile.handlebars->11->442",
         "default-mobile.handlebars->11->576",
-        "default.handlebars->47->1243",
+        "default.handlebars->47->1245",
         "default.handlebars->47->6"
       ]
     },
@@ -56331,7 +56333,7 @@
       "zh-cht": "關閉裝置",
       "hu": "Eszközök kikapcsolása",
       "xloc": [
-        "default.handlebars->47->725"
+        "default.handlebars->47->727"
       ]
     },
     {
@@ -56358,7 +56360,7 @@
       "zh-cht": "電源開關即可使用。",
       "hu": "Power switch használatra kész.",
       "xloc": [
-        "default.handlebars->47->701"
+        "default.handlebars->47->703"
       ]
     },
     {
@@ -56388,7 +56390,7 @@
         "default-mobile.handlebars->11->437",
         "default-mobile.handlebars->11->445",
         "default.handlebars->47->1",
-        "default.handlebars->47->678"
+        "default.handlebars->47->680"
       ]
     },
     {
@@ -56396,7 +56398,7 @@
       "nl": "Pre",
       "pl": "Przed",
       "xloc": [
-        "default.handlebars->47->426"
+        "default.handlebars->47->428"
       ]
     },
     {
@@ -56423,7 +56425,7 @@
       "zh-cht": "預激活",
       "hu": "Pre-activation",
       "xloc": [
-        "default.handlebars->47->1630"
+        "default.handlebars->47->1632"
       ]
     },
     {
@@ -56452,7 +56454,7 @@
       "xloc": [
         "default-mobile.handlebars->11->443",
         "default-mobile.handlebars->11->451",
-        "default.handlebars->47->690",
+        "default.handlebars->47->692",
         "default.handlebars->47->7"
       ]
     },
@@ -56480,7 +56482,7 @@
       "zh-cht": "存在於伺服器上",
       "hu": "Kiszolgálón tárolva",
       "xloc": [
-        "default.handlebars->47->3088"
+        "default.handlebars->47->3090"
       ]
     },
     {
@@ -56620,9 +56622,9 @@
       "xloc": [
         "default-mobile.handlebars->11->88",
         "default-mobile.handlebars->11->89",
-        "default.handlebars->47->1731",
-        "default.handlebars->47->2958",
-        "default.handlebars->47->3013",
+        "default.handlebars->47->1733",
+        "default.handlebars->47->2960",
+        "default.handlebars->47->3015",
         "default.handlebars->47->327"
       ]
     },
@@ -56651,7 +56653,7 @@
       "hu": "Print Screen",
       "xloc": [
         "default-mobile.handlebars->11->629",
-        "default.handlebars->47->1394"
+        "default.handlebars->47->1396"
       ]
     },
     {
@@ -56837,7 +56839,7 @@
       "zh-cht": "進程控制",
       "hu": "Foylamat Vezérés",
       "xloc": [
-        "default.handlebars->47->1466"
+        "default.handlebars->47->1468"
       ]
     },
     {
@@ -56864,7 +56866,7 @@
       "zh-cht": "流程詳情,#{0}",
       "hu": "Folyamat részletei, #{0}",
       "xloc": [
-        "default.handlebars->47->1429"
+        "default.handlebars->47->1431"
       ]
     },
     {
@@ -56945,7 +56947,7 @@
       "zh-cht": "處理控制台命令:“{0}”",
       "hu": "Konzolparancs feldolgozása: \\\"{0}\\\"",
       "xloc": [
-        "default.handlebars->47->2488"
+        "default.handlebars->47->2490"
       ]
     },
     {
@@ -56999,7 +57001,7 @@
       "zh-cht": "用戶同意提示",
       "hu": "Hozzájárulás kérése kapcsolódáskor",
       "xloc": [
-        "default.handlebars->47->1227"
+        "default.handlebars->47->1229"
       ]
     },
     {
@@ -57026,9 +57028,9 @@
       "zh-cht": "用戶同意提示",
       "hu": "Felhasználói hozzájárulás kérése",
       "xloc": [
-        "default.handlebars->47->2266",
-        "default.handlebars->47->2270",
-        "default.handlebars->47->2273"
+        "default.handlebars->47->2268",
+        "default.handlebars->47->2272",
+        "default.handlebars->47->2275"
       ]
     },
     {
@@ -57055,7 +57057,7 @@
       "zh-cht": "協議",
       "hu": "Protokoll",
       "xloc": [
-        "default.handlebars->47->3086",
+        "default.handlebars->47->3088",
         "player.handlebars->3->32"
       ]
     },
@@ -57083,7 +57085,7 @@
       "zh-cht": "協議協商失敗 ({0})",
       "hu": "A protokoll egyeztetése sikertelen ({0})",
       "xloc": [
-        "default.handlebars->47->1356"
+        "default.handlebars->47->1358"
       ]
     },
     {
@@ -57135,7 +57137,7 @@
       "hu": "Telepítés (Provisioning) Állapot",
       "xloc": [
         "default-mobile.handlebars->11->795",
-        "default.handlebars->47->1634"
+        "default.handlebars->47->1636"
       ]
     },
     {
@@ -57187,7 +57189,7 @@
       "hu": "Puvlikus link",
       "xloc": [
         "default-mobile.handlebars->11->353",
-        "default.handlebars->47->2447"
+        "default.handlebars->47->2449"
       ]
     },
     {
@@ -57239,7 +57241,7 @@
       "hu": "pandzsábi",
       "xloc": [
         "default-mobile.handlebars->11->235",
-        "default.handlebars->47->1926",
+        "default.handlebars->47->1928",
         "login2.handlebars->7->132"
       ]
     },
@@ -57268,7 +57270,7 @@
       "hu": "pandzsábi (India)",
       "xloc": [
         "default-mobile.handlebars->11->236",
-        "default.handlebars->47->1927",
+        "default.handlebars->47->1929",
         "login2.handlebars->7->133"
       ]
     },
@@ -57297,7 +57299,7 @@
       "hu": "pandzsábi (Pakisztán)",
       "xloc": [
         "default-mobile.handlebars->11->237",
-        "default.handlebars->47->1928",
+        "default.handlebars->47->1930",
         "login2.handlebars->7->134"
       ]
     },
@@ -57353,7 +57355,7 @@
       "zh-cht": "推送通知",
       "hu": "Push Értesítés",
       "xloc": [
-        "default.handlebars->47->3167"
+        "default.handlebars->47->3169"
       ]
     },
     {
@@ -57415,8 +57417,8 @@
       "pl": "Pushover",
       "es": "Pushover",
       "xloc": [
-        "default.handlebars->47->1748",
-        "default.handlebars->47->2971"
+        "default.handlebars->47->1750",
+        "default.handlebars->47->2973"
       ]
     },
     {
@@ -57498,7 +57500,7 @@
       "hu": "quechua",
       "xloc": [
         "default-mobile.handlebars->11->238",
-        "default.handlebars->47->1929",
+        "default.handlebars->47->1931",
         "login2.handlebars->7->135"
       ]
     },
@@ -57610,10 +57612,10 @@
       "xloc": [
         "default-mobile.handlebars->11->532",
         "default-mobile.handlebars->11->536",
-        "default.handlebars->47->1030",
-        "default.handlebars->47->436",
-        "default.handlebars->47->986",
-        "default.handlebars->47->990",
+        "default.handlebars->47->1032",
+        "default.handlebars->47->438",
+        "default.handlebars->47->988",
+        "default.handlebars->47->992",
         "default.handlebars->container->dialog->dialogBody->dialog7->1->td7rdpkvm"
       ]
     },
@@ -57668,7 +57670,7 @@
       "zh-cht": "RDP連接",
       "hu": "RDP Kapcsolat",
       "xloc": [
-        "default.handlebars->47->829"
+        "default.handlebars->47->831"
       ]
     },
     {
@@ -57695,7 +57697,7 @@
       "zh-cht": "RDP 憑證",
       "hu": "RDP hitelesítő adatok",
       "xloc": [
-        "default.handlebars->47->1375"
+        "default.handlebars->47->1377"
       ]
     },
     {
@@ -57726,7 +57728,7 @@
       "en": "RDP Port {0}",
       "nl": "RDP Poort {0}",
       "xloc": [
-        "default.handlebars->47->1349"
+        "default.handlebars->47->1351"
       ]
     },
     {
@@ -57753,7 +57755,7 @@
       "zh-cht": "RDP遠程連接介面:",
       "hu": "RDP távoli kapcsolat port:",
       "xloc": [
-        "default.handlebars->47->828"
+        "default.handlebars->47->830"
       ]
     },
     {
@@ -57862,7 +57864,7 @@
       "zh-cht": "RSS",
       "hu": "RSS",
       "xloc": [
-        "default.handlebars->47->3303"
+        "default.handlebars->47->3305"
       ]
     },
     {
@@ -57916,7 +57918,7 @@
       "zh-cht": "隨機密碼",
       "hu": "Véletlenszerű jelszó",
       "xloc": [
-        "default.handlebars->47->2229"
+        "default.handlebars->47->2231"
       ]
     },
     {
@@ -57943,7 +57945,7 @@
       "zh-cht": "隨機密碼。",
       "hu": "Véletlenszerű jelszó generálása",
       "xloc": [
-        "default.handlebars->47->2753"
+        "default.handlebars->47->2755"
       ]
     },
     {
@@ -57970,7 +57972,7 @@
       "zh-cht": "力登 Dominion KX III",
       "hu": "Raritan Dominion KX III",
       "xloc": [
-        "default.handlebars->47->2062"
+        "default.handlebars->47->2064"
       ]
     },
     {
@@ -58075,9 +58077,9 @@
       "zh-cht": "真正的名字",
       "hu": "Teljes Név",
       "xloc": [
-        "default.handlebars->47->2885",
         "default.handlebars->47->2887",
-        "default.handlebars->47->3006"
+        "default.handlebars->47->2889",
+        "default.handlebars->47->3008"
       ]
     },
     {
@@ -58087,8 +58089,8 @@
       "xloc": [
         "default-mobile.handlebars->11->744",
         "default-mobile.handlebars->11->746",
-        "default.handlebars->47->935",
-        "default.handlebars->47->937"
+        "default.handlebars->47->937",
+        "default.handlebars->47->939"
       ]
     },
     {
@@ -58115,7 +58117,7 @@
       "zh-cht": "境界",
       "hu": "Realms",
       "xloc": [
-        "default.handlebars->47->2762"
+        "default.handlebars->47->2764"
       ]
     },
     {
@@ -58143,7 +58145,7 @@
       "hu": "A fogadott hálózati adatok érvénytelenek",
       "xloc": [
         "default-mobile.handlebars->11->620",
-        "default.handlebars->47->1354",
+        "default.handlebars->47->1356",
         "sharing.handlebars->11->10",
         "sharing.handlebars->11->32"
       ]
@@ -58172,9 +58174,9 @@
       "zh-cht": "記錄會議",
       "hu": "Munkamenetek rögzítése",
       "xloc": [
-        "default.handlebars->47->2133",
-        "default.handlebars->47->2812",
-        "default.handlebars->47->2893"
+        "default.handlebars->47->2135",
+        "default.handlebars->47->2814",
+        "default.handlebars->47->2895"
       ]
     },
     {
@@ -58228,9 +58230,9 @@
       "zh-cht": "記錄會議",
       "hu": "Munkamenetek rögzítése",
       "xloc": [
-        "default.handlebars->47->2274",
-        "default.handlebars->47->2850",
-        "default.handlebars->47->2994"
+        "default.handlebars->47->2276",
+        "default.handlebars->47->2852",
+        "default.handlebars->47->2996"
       ]
     },
     {
@@ -58257,7 +58259,7 @@
       "zh-cht": "記錄細節",
       "hu": "Felvétel részletek",
       "xloc": [
-        "default.handlebars->47->3100"
+        "default.handlebars->47->3102"
       ]
     },
     {
@@ -58293,7 +58295,7 @@
       "pl": "Hasło Odzyskiwania",
       "xloc": [
         "default-mobile.handlebars->11->870",
-        "default.handlebars->47->1709"
+        "default.handlebars->47->1711"
       ]
     },
     {
@@ -58348,7 +58350,7 @@
       "zh-cht": "每天重複",
       "hu": "Napi rendszerességgel ismétlődő",
       "xloc": [
-        "default.handlebars->47->1217"
+        "default.handlebars->47->1219"
       ]
     },
     {
@@ -58375,7 +58377,7 @@
       "zh-cht": "每週重複",
       "hu": "Heti rendszerességgel ismétlődő",
       "xloc": [
-        "default.handlebars->47->1218"
+        "default.handlebars->47->1220"
       ]
     },
     {
@@ -58428,8 +58430,8 @@
       "xloc": [
         "default-mobile.handlebars->11->359",
         "default-mobile.handlebars->11->693",
-        "default.handlebars->47->1534",
-        "default.handlebars->47->2454",
+        "default.handlebars->47->1536",
+        "default.handlebars->47->2456",
         "sharing.handlebars->11->60"
       ]
     },
@@ -58516,7 +58518,7 @@
       "xloc": [
         "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
         "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
-        "default.handlebars->47->852",
+        "default.handlebars->47->854",
         "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->DeskToolsRefreshButton",
         "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
         "default.handlebars->container->column_l->p40->3->3",
@@ -58603,13 +58605,13 @@
       "hu": "Relay",
       "xloc": [
         "default-mobile.handlebars->11->466",
-        "default.handlebars->47->1130",
-        "default.handlebars->47->1155",
-        "default.handlebars->47->2356",
-        "default.handlebars->47->3285",
-        "default.handlebars->47->411",
-        "default.handlebars->47->415",
-        "default.handlebars->47->712"
+        "default.handlebars->47->1132",
+        "default.handlebars->47->1157",
+        "default.handlebars->47->2358",
+        "default.handlebars->47->3287",
+        "default.handlebars->47->413",
+        "default.handlebars->47->417",
+        "default.handlebars->47->714"
       ]
     },
     {
@@ -58636,7 +58638,7 @@
       "zh-cht": "中繼數量",
       "hu": "Relay Szám",
       "xloc": [
-        "default.handlebars->47->3270"
+        "default.handlebars->47->3272"
       ]
     },
     {
@@ -58665,9 +58667,9 @@
       "xloc": [
         "default-mobile.handlebars->11->903",
         "default-mobile.handlebars->11->919",
-        "default.handlebars->47->2059",
-        "default.handlebars->47->2124",
-        "default.handlebars->47->2255"
+        "default.handlebars->47->2061",
+        "default.handlebars->47->2126",
+        "default.handlebars->47->2257"
       ]
     },
     {
@@ -58694,7 +58696,7 @@
       "zh-cht": "中繼錯誤",
       "hu": "Relay Hibák",
       "xloc": [
-        "default.handlebars->47->3263"
+        "default.handlebars->47->3265"
       ]
     },
     {
@@ -58753,8 +58755,8 @@
       "zh-cht": "中繼連接",
       "hu": "Relay munkamenetek",
       "xloc": [
-        "default.handlebars->47->3269",
-        "default.handlebars->47->3297"
+        "default.handlebars->47->3271",
+        "default.handlebars->47->3299"
       ]
     },
     {
@@ -58781,7 +58783,7 @@
       "zh-cht": "繼電器裝置",
       "hu": "Relay eszköz",
       "xloc": [
-        "default.handlebars->47->2637"
+        "default.handlebars->47->2639"
       ]
     },
     {
@@ -58808,7 +58810,7 @@
       "zh-cht": "繼電器",
       "hu": "Relay a ",
       "xloc": [
-        "default.handlebars->47->993"
+        "default.handlebars->47->995"
       ]
     },
     {
@@ -58859,7 +58861,7 @@
       "zh-cht": "記住設備",
       "hu": "Emlékezzen az eszközre",
       "xloc": [
-        "default.handlebars->47->3169"
+        "default.handlebars->47->3171"
       ]
     },
     {
@@ -58887,8 +58889,8 @@
       "hu": "Hitelesítő adatok megjegyzése",
       "xloc": [
         "default-mobile.handlebars->11->668",
-        "default.handlebars->47->1372",
-        "default.handlebars->47->1482",
+        "default.handlebars->47->1374",
+        "default.handlebars->47->1484",
         "mstsc.handlebars->main->1->3->1->rowremember->3->0",
         "ssh.handlebars->3->14"
       ]
@@ -58918,7 +58920,7 @@
       "hu": "Elmékezzej a jelszóra",
       "xloc": [
         "default-mobile.handlebars->11->673",
-        "default.handlebars->47->1487",
+        "default.handlebars->47->1489",
         "ssh.handlebars->3->19"
       ]
     },
@@ -59025,7 +59027,7 @@
       "hu": "Emlékezzen a felhaszálóra és kulcsra",
       "xloc": [
         "default-mobile.handlebars->11->672",
-        "default.handlebars->47->1486",
+        "default.handlebars->47->1488",
         "ssh.handlebars->3->18"
       ]
     },
@@ -59159,7 +59161,7 @@
       "zh-cht": "遠程剪貼板",
       "hu": "Távoli vágólap",
       "xloc": [
-        "default.handlebars->47->1427"
+        "default.handlebars->47->1429"
       ]
     },
     {
@@ -59187,7 +59189,7 @@
       "hu": "Távoli parancsok",
       "xloc": [
         "default-mobile.handlebars->11->946",
-        "default.handlebars->47->2314"
+        "default.handlebars->47->2316"
       ]
     },
     {
@@ -59218,9 +59220,9 @@
         "default-mobile.handlebars->11->545",
         "default-mobile.handlebars->11->933",
         "default-mobile.handlebars->11->953",
-        "default.handlebars->47->1013",
-        "default.handlebars->47->1014",
-        "default.handlebars->47->2338"
+        "default.handlebars->47->1015",
+        "default.handlebars->47->1016",
+        "default.handlebars->47->2340"
       ]
     },
     {
@@ -59232,7 +59234,7 @@
       "de": "Entfernte Ausführung & Weiterleitung",
       "es": "Control Remoto y Relay",
       "xloc": [
-        "default.handlebars->47->2299"
+        "default.handlebars->47->2301"
       ]
     },
     {
@@ -59261,8 +59263,8 @@
       "xloc": [
         "default-mobile.handlebars->11->408",
         "default-mobile.handlebars->11->415",
-        "default.handlebars->47->442",
-        "default.handlebars->47->449"
+        "default.handlebars->47->444",
+        "default.handlebars->47->451"
       ]
     },
     {
@@ -59370,8 +59372,8 @@
       "zh-cht": "遠程桌面連接欄已激活/更新",
       "hu": "Remote Desktop Connection Bar Activated/Updated",
       "xloc": [
-        "default.handlebars->47->2502",
-        "default.handlebars->47->2508"
+        "default.handlebars->47->2504",
+        "default.handlebars->47->2510"
       ]
     },
     {
@@ -59398,7 +59400,7 @@
       "zh-cht": "遠程桌面連接欄失敗或不受支持",
       "hu": "Remote Desktop Connection Bar Failed or Not Supported",
       "xloc": [
-        "default.handlebars->47->2503"
+        "default.handlebars->47->2505"
       ]
     },
     {
@@ -59425,7 +59427,7 @@
       "zh-cht": "遠程桌面連接欄失敗或不受支持",
       "hu": "Remote Desktop Connection Bar Failed or not Supported",
       "xloc": [
-        "default.handlebars->47->2509"
+        "default.handlebars->47->2511"
       ]
     },
     {
@@ -59452,9 +59454,9 @@
       "zh-cht": "本地用戶強行關閉了遠程桌面連接",
       "hu": "A távoli asztali kapcsolatot a helyi felhasználó erőszakkal lezárta",
       "xloc": [
-        "default.handlebars->47->2500",
-        "default.handlebars->47->2504",
-        "default.handlebars->47->2510"
+        "default.handlebars->47->2502",
+        "default.handlebars->47->2506",
+        "default.handlebars->47->2512"
       ]
     },
     {
@@ -59533,8 +59535,8 @@
       "hu": "Távoli Asztal beállítások",
       "xloc": [
         "default-mobile.handlebars->11->622",
-        "default.handlebars->47->1384",
-        "default.handlebars->47->477",
+        "default.handlebars->47->1386",
+        "default.handlebars->47->479",
         "sharing.handlebars->11->20"
       ]
     },
@@ -59733,7 +59735,7 @@
       "zh-cht": "遠程輸入鎖定",
       "hu": "Távoli bemeneti zár",
       "xloc": [
-        "default.handlebars->47->1170"
+        "default.handlebars->47->1172"
       ]
     },
     {
@@ -59760,7 +59762,7 @@
       "zh-cht": "遠程鍵盤輸入",
       "hu": "Távoli billentyűzet bevitel",
       "xloc": [
-        "default.handlebars->47->1423",
+        "default.handlebars->47->1425",
         "sharing.handlebars->11->22"
       ]
     },
@@ -59839,7 +59841,7 @@
       "zh-cht": "遠程會話",
       "hu": "Távoli munkamenetek",
       "xloc": [
-        "default.handlebars->47->3102"
+        "default.handlebars->47->3104"
       ]
     },
     {
@@ -59994,9 +59996,9 @@
       "xloc": [
         "default-mobile.handlebars->11->934",
         "default-mobile.handlebars->11->958",
-        "default.handlebars->47->2300",
-        "default.handlebars->47->2343",
-        "default.handlebars->47->2997"
+        "default.handlebars->47->2302",
+        "default.handlebars->47->2345",
+        "default.handlebars->47->2999"
       ]
     },
     {
@@ -60023,7 +60025,7 @@
       "zh-cht": "遠程剪貼板的有效期為60秒。",
       "hu": "A távoli vágólap 60 másodpercig érvényes.",
       "xloc": [
-        "default.handlebars->47->1426"
+        "default.handlebars->47->1428"
       ]
     },
     {
@@ -60139,7 +60141,7 @@
       "pl": "Wyjmowane",
       "xloc": [
         "default-mobile.handlebars->11->857",
-        "default.handlebars->47->1696"
+        "default.handlebars->47->1698"
       ]
     },
     {
@@ -60217,7 +60219,7 @@
       "zh-cht": "刪除配置",
       "hu": "Konfiguráció eltávolítása",
       "xloc": [
-        "default.handlebars->47->2094"
+        "default.handlebars->47->2096"
       ]
     },
     {
@@ -60292,8 +60294,8 @@
       "zh-cht": "刪除裝置群權限",
       "hu": "Eszközcsoport engedélyek eltávolítása",
       "xloc": [
-        "default.handlebars->47->2854",
-        "default.handlebars->47->3058"
+        "default.handlebars->47->2856",
+        "default.handlebars->47->3060"
       ]
     },
     {
@@ -60320,8 +60322,8 @@
       "zh-cht": "刪除裝置權限",
       "hu": "Eszközengedélyek eltávolítása",
       "xloc": [
-        "default.handlebars->47->2852",
-        "default.handlebars->47->3045"
+        "default.handlebars->47->2854",
+        "default.handlebars->47->3047"
       ]
     },
     {
@@ -60348,7 +60350,7 @@
       "zh-cht": "刪除設備共享",
       "hu": "Eszközmegosztás eltávolítása",
       "xloc": [
-        "default.handlebars->47->3043"
+        "default.handlebars->47->3045"
       ]
     },
     {
@@ -60375,7 +60377,7 @@
       "zh-cht": "刪除登錄令牌",
       "hu": "Bejelentkezési token eltávolítása",
       "xloc": [
-        "default.handlebars->47->2086"
+        "default.handlebars->47->2088"
       ]
     },
     {
@@ -60434,7 +60436,7 @@
       "zh-cht": "刪除用戶群成員身份",
       "hu": "Felhasználói csoporttagság eltávolítása",
       "xloc": [
-        "default.handlebars->47->3054"
+        "default.handlebars->47->3056"
       ]
     },
     {
@@ -60461,8 +60463,8 @@
       "zh-cht": "刪除用戶群權限",
       "hu": "Felhasználói csoport engedélyeinek eltávolítása",
       "xloc": [
-        "default.handlebars->47->2365",
-        "default.handlebars->47->3050"
+        "default.handlebars->47->2367",
+        "default.handlebars->47->3052"
       ]
     },
     {
@@ -60489,7 +60491,7 @@
       "zh-cht": "刪除用戶成員資格",
       "hu": "Felhasználói tagság eltávolítása",
       "xloc": [
-        "default.handlebars->47->2862"
+        "default.handlebars->47->2864"
       ]
     },
     {
@@ -60516,8 +60518,8 @@
       "zh-cht": "刪除用戶權限",
       "hu": "Felhasználói engedélyek eltávolítása",
       "xloc": [
-        "default.handlebars->47->2363",
-        "default.handlebars->47->3047"
+        "default.handlebars->47->2365",
+        "default.handlebars->47->3049"
       ]
     },
     {
@@ -60544,7 +60546,7 @@
       "zh-cht": "刪除所有二因子鑑別。",
       "hu": "Távolítson el minden 2. faktoros hitelesítést.",
       "xloc": [
-        "default.handlebars->47->3020"
+        "default.handlebars->47->3022"
       ]
     },
     {
@@ -60571,7 +60573,7 @@
       "zh-cht": "刪除此用戶標識的所有先前事件。",
       "hu": "A felhasználó összes korábbi eseményének eltávolítása. ",
       "xloc": [
-        "default.handlebars->47->2754"
+        "default.handlebars->47->2756"
       ]
     },
     {
@@ -60598,7 +60600,7 @@
       "zh-cht": "斷開連接後删除裝置",
       "hu": "Az eszköz eltávolítása lecsatlakozáskor",
       "xloc": [
-        "default.handlebars->47->2277"
+        "default.handlebars->47->2279"
       ]
     },
     {
@@ -60625,8 +60627,8 @@
       "zh-cht": "刪除設備共享",
       "hu": "Eszközmegosztás eltávolítása",
       "xloc": [
-        "default.handlebars->47->1073",
-        "default.handlebars->47->2187"
+        "default.handlebars->47->1075",
+        "default.handlebars->47->2189"
       ]
     },
     {
@@ -60653,7 +60655,7 @@
       "zh-cht": "刪除非活動",
       "hu": "Inaktívak eltávolítása",
       "xloc": [
-        "default.handlebars->47->2134"
+        "default.handlebars->47->2136"
       ]
     },
     {
@@ -60680,7 +60682,7 @@
       "zh-cht": "刪除登錄令牌",
       "hu": "Bejelentkezési token eltávolítása",
       "xloc": [
-        "default.handlebars->47->2081"
+        "default.handlebars->47->2083"
       ]
     },
     {
@@ -60692,7 +60694,7 @@
       "de": "Benachrichtigen entfernen",
       "es": "Remover mensajes",
       "xloc": [
-        "default.handlebars->47->1741"
+        "default.handlebars->47->1743"
       ]
     },
     {
@@ -60719,7 +60721,7 @@
       "zh-cht": "刪除節點位置",
       "hu": "Eszköz eltávolítása a térképről",
       "xloc": [
-        "default.handlebars->47->844"
+        "default.handlebars->47->846"
       ]
     },
     {
@@ -60747,7 +60749,7 @@
       "hu": "Telefonszám eltávolítása",
       "xloc": [
         "default-mobile.handlebars->11->97",
-        "default.handlebars->47->1735"
+        "default.handlebars->47->1737"
       ]
     },
     {
@@ -60774,7 +60776,7 @@
       "zh-cht": "删除標籤",
       "hu": "Címkék eltávolítása",
       "xloc": [
-        "default.handlebars->47->750"
+        "default.handlebars->47->752"
       ]
     },
     {
@@ -60801,7 +60803,7 @@
       "zh-cht": "刪除此裝置",
       "hu": "Eszköz eltávolítása",
       "xloc": [
-        "default.handlebars->47->1017"
+        "default.handlebars->47->1019"
       ]
     },
     {
@@ -60828,7 +60830,7 @@
       "zh-cht": "刪除此用戶",
       "hu": "Távolítsa el ezt a felhasználót",
       "xloc": [
-        "default.handlebars->47->2953"
+        "default.handlebars->47->2955"
       ]
     },
     {
@@ -60855,7 +60857,7 @@
       "zh-cht": "刪除用戶群成員身份",
       "hu": "Felhasználói csoporttagság eltávolítása",
       "xloc": [
-        "default.handlebars->47->3034"
+        "default.handlebars->47->3036"
       ]
     },
     {
@@ -60882,7 +60884,7 @@
       "zh-cht": "刪除此裝置的用戶群權限",
       "hu": "Felhasználói csoportjogok eltávolítása ehhez az eszközhöz",
       "xloc": [
-        "default.handlebars->47->2846"
+        "default.handlebars->47->2848"
       ]
     },
     {
@@ -60909,8 +60911,8 @@
       "zh-cht": "刪除此裝置群的用戶群權限",
       "hu": "Felhasználói csoportjogok eltávolítása ehhez az eszközcsoporthoz",
       "xloc": [
-        "default.handlebars->47->1066",
-        "default.handlebars->47->2840"
+        "default.handlebars->47->1068",
+        "default.handlebars->47->2842"
       ]
     },
     {
@@ -60937,11 +60939,11 @@
       "zh-cht": "刪除此裝置群的用戶權限",
       "hu": "Eszköz vagy eszközcsoport eltávolítása",
       "xloc": [
-        "default.handlebars->47->1067",
-        "default.handlebars->47->2183",
-        "default.handlebars->47->2834",
-        "default.handlebars->47->3028",
-        "default.handlebars->47->3040"
+        "default.handlebars->47->1069",
+        "default.handlebars->47->2185",
+        "default.handlebars->47->2836",
+        "default.handlebars->47->3030",
+        "default.handlebars->47->3042"
       ]
     },
     {
@@ -60992,7 +60994,7 @@
       "zh-cht": "刪除了帳戶顯示名稱。",
       "hu": "Fiók megjelenített neve eltávolítva.",
       "xloc": [
-        "default.handlebars->47->2600"
+        "default.handlebars->47->2602"
       ]
     },
     {
@@ -61019,7 +61021,7 @@
       "zh-cht": "刪除身份驗證應用程序",
       "hu": "Hitelesítési alkalmazás eltávolítva",
       "xloc": [
-        "default.handlebars->47->2562"
+        "default.handlebars->47->2564"
       ]
     },
     {
@@ -61046,7 +61048,7 @@
       "zh-cht": "刪除的設備共享{0}",
       "hu": "{0} eszközmegosztás eltávolítva",
       "xloc": [
-        "default.handlebars->47->2573"
+        "default.handlebars->47->2575"
       ]
     },
     {
@@ -61073,7 +61075,7 @@
       "zh-cht": "從設備組{1}中刪除了設備{0}",
       "hu": "{0} eszköz eltávolítása az {1} eszközcsoportból",
       "xloc": [
-        "default.handlebars->47->2558"
+        "default.handlebars->47->2560"
       ]
     },
     {
@@ -61100,7 +61102,7 @@
       "zh-cht": "刪除了登錄令牌",
       "hu": "Bejelentkezési token eltávolítva",
       "xloc": [
-        "default.handlebars->47->2587"
+        "default.handlebars->47->2589"
       ]
     },
     {
@@ -61112,7 +61114,7 @@
       "de": "Benachrichtigen für den Benutzer {0} entfernt",
       "es": "Removio cuenta de mensajes del usuario {0}",
       "xloc": [
-        "default.handlebars->47->2628"
+        "default.handlebars->47->2630"
       ]
     },
     {
@@ -61139,7 +61141,7 @@
       "zh-cht": "已刪除用戶{0}的電話號碼",
       "hu": "{0} felhasználó telefonszáma eltávolítva",
       "xloc": [
-        "default.handlebars->47->2568"
+        "default.handlebars->47->2570"
       ]
     },
     {
@@ -61166,7 +61168,7 @@
       "zh-cht": "移除推送通知認證設備",
       "hu": "Push értesítési hitelesítő eszköz eltávolítva",
       "xloc": [
-        "default.handlebars->47->2585"
+        "default.handlebars->47->2587"
       ]
     },
     {
@@ -61193,7 +61195,7 @@
       "zh-cht": "移除安全密鑰",
       "hu": "Biztonsági kulcs eltávolítva",
       "xloc": [
-        "default.handlebars->47->2565"
+        "default.handlebars->47->2567"
       ]
     },
     {
@@ -61220,9 +61222,9 @@
       "zh-cht": "刪除了{0}的用戶設備權限",
       "hu": "Felhasználói eszközjogok eltávolítva {0}",
       "xloc": [
-        "default.handlebars->47->2531",
-        "default.handlebars->47->2552",
-        "default.handlebars->47->2557"
+        "default.handlebars->47->2533",
+        "default.handlebars->47->2554",
+        "default.handlebars->47->2559"
       ]
     },
     {
@@ -61249,7 +61251,7 @@
       "zh-cht": "從設備組{1}中刪除了用戶組{0}",
       "hu": "{0} felhasználói csoport eltávolítva a(z) {1} eszközcsoportból",
       "xloc": [
-        "default.handlebars->47->2541"
+        "default.handlebars->47->2543"
       ]
     },
     {
@@ -61276,7 +61278,7 @@
       "zh-cht": "已從設備組{1}中刪除用戶{0}",
       "hu": "{0} felhasználó eltávolítva a(z) {1} eszközcsoportból",
       "xloc": [
-        "default.handlebars->47->2554"
+        "default.handlebars->47->2556"
       ]
     },
     {
@@ -61303,8 +61305,8 @@
       "zh-cht": "從用戶組{1}中刪除了用戶{0}",
       "hu": "{0} felhasználó eltávolítva a(z) {1} felhasználócsoportból",
       "xloc": [
-        "default.handlebars->47->2533",
-        "default.handlebars->47->2543"
+        "default.handlebars->47->2535",
+        "default.handlebars->47->2545"
       ]
     },
     {
@@ -61335,9 +61337,9 @@
         "default-mobile.handlebars->11->697",
         "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
         "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
-        "default.handlebars->47->1538",
-        "default.handlebars->47->2458",
-        "default.handlebars->47->838",
+        "default.handlebars->47->1540",
+        "default.handlebars->47->2460",
+        "default.handlebars->47->840",
         "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
         "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
         "default.handlebars->filesContextMenu->1",
@@ -61393,7 +61395,7 @@
       "zh-cht": "重命名:“{0}”為“{1}”",
       "hu": "Átnezezés: \\\"{0}\\\" to \\\"{1}\\\"",
       "xloc": [
-        "default.handlebars->47->2519"
+        "default.handlebars->47->2521"
       ]
     },
     {
@@ -61420,7 +61422,7 @@
       "zh-cht": "報告日",
       "hu": "Jelentés Nap",
       "xloc": [
-        "default.handlebars->47->2646"
+        "default.handlebars->47->2648"
       ]
     },
     {
@@ -61447,7 +61449,7 @@
       "zh-cht": "報告類型",
       "hu": "Jelentés típusa",
       "xloc": [
-        "default.handlebars->47->2641"
+        "default.handlebars->47->2643"
       ]
     },
     {
@@ -61474,7 +61476,7 @@
       "zh-cht": "報告未返回任何內容。",
       "hu": "A jelentés nem tartalmaz bejegyzést.",
       "xloc": [
-        "default.handlebars->47->3139"
+        "default.handlebars->47->3141"
       ]
     },
     {
@@ -61501,7 +61503,7 @@
       "zh-cht": "報告.csv",
       "hu": "Report.csv",
       "xloc": [
-        "default.handlebars->47->3200"
+        "default.handlebars->47->3202"
       ]
     },
     {
@@ -61664,7 +61666,7 @@
       "nl": "Procesdetails opvragen...",
       "pl": "Pobieram Informacje o Procesie...",
       "xloc": [
-        "default.handlebars->47->1430"
+        "default.handlebars->47->1432"
       ]
     },
     {
@@ -61672,7 +61674,7 @@
       "nl": "Servicegegevens opvragen...",
       "pl": "Pobieram Informacje o Usłudze...",
       "xloc": [
-        "default.handlebars->47->1460"
+        "default.handlebars->47->1462"
       ]
     },
     {
@@ -61723,7 +61725,7 @@
       "zh-cht": "要求:",
       "hu": "Követelmények: ",
       "xloc": [
-        "default.handlebars->47->2042"
+        "default.handlebars->47->2044"
       ]
     },
     {
@@ -61751,8 +61753,8 @@
       "hu": "Követelmények: {0}.",
       "xloc": [
         "default-mobile.handlebars->11->327",
-        "default.handlebars->47->2759",
-        "default.handlebars->47->3018"
+        "default.handlebars->47->2761",
+        "default.handlebars->47->3020"
       ]
     },
     {
@@ -61779,7 +61781,7 @@
       "zh-cht": "需要安裝MeshCentral路由器",
       "hu": "MeshCentral Router telepítése szükséges",
       "xloc": [
-        "default.handlebars->47->1029"
+        "default.handlebars->47->1031"
       ]
     },
     {
@@ -61806,9 +61808,9 @@
       "zh-cht": "需要安裝MeshCentral Router。",
       "hu": "MeshCentral Router telepítése szükséges.",
       "xloc": [
-        "default.handlebars->47->1031",
         "default.handlebars->47->1033",
-        "default.handlebars->47->1035"
+        "default.handlebars->47->1035",
+        "default.handlebars->47->1037"
       ]
     },
     {
@@ -61865,7 +61867,7 @@
       "hu": "Visszaállít",
       "xloc": [
         "default-mobile.handlebars->11->575",
-        "default.handlebars->47->1242",
+        "default.handlebars->47->1244",
         "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar"
       ]
     },
@@ -61894,7 +61896,7 @@
       "hu": "Újraindítás / Kikapcsolás",
       "xloc": [
         "default-mobile.handlebars->11->947",
-        "default.handlebars->47->2315"
+        "default.handlebars->47->2317"
       ]
     },
     {
@@ -62008,7 +62010,7 @@
       "zh-cht": "重置裝置",
       "hu": "Eszkzök újraindítása",
       "xloc": [
-        "default.handlebars->47->724"
+        "default.handlebars->47->726"
       ]
     },
     {
@@ -62063,9 +62065,9 @@
       "hu": "Újraindítás / Kikapcsolás",
       "xloc": [
         "default-mobile.handlebars->11->967",
-        "default.handlebars->47->1127",
-        "default.handlebars->47->1152",
-        "default.handlebars->47->2353"
+        "default.handlebars->47->1129",
+        "default.handlebars->47->1154",
+        "default.handlebars->47->2355"
       ]
     },
     {
@@ -62092,7 +62094,7 @@
       "zh-cht": "重新啟動",
       "hu": "Újraindítás",
       "xloc": [
-        "default.handlebars->47->1456",
+        "default.handlebars->47->1458",
         "player.handlebars->p11->deskarea0->deskarea4->3"
       ]
     },
@@ -62101,7 +62103,7 @@
       "nl": "Herstart foutteller na ",
       "pl": "Restart licznika niepowodzeń po ",
       "xloc": [
-        "default.handlebars->47->1449"
+        "default.handlebars->47->1451"
       ]
     },
     {
@@ -62128,7 +62130,7 @@
       "zh-cht": "還原伺服器",
       "hu": "Kiszolgáló visszaállítása",
       "xloc": [
-        "default.handlebars->47->2099"
+        "default.handlebars->47->2101"
       ]
     },
     {
@@ -62182,7 +62184,7 @@
       "zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據 span>。僅當你知道自己在做什麼時才這樣做。",
       "hu": "Kiszolgáló visszaállítása biztonsági mentésből, ez törli a meglévő kiszolgálói adatokat . Csak akkor tegye ezt, ha tudja, mit csinál!",
       "xloc": [
-        "default.handlebars->47->2096"
+        "default.handlebars->47->2098"
       ]
     },
     {
@@ -62210,8 +62212,8 @@
       "hu": "Korlátozott",
       "xloc": [
         "default-mobile.handlebars->11->495",
-        "default.handlebars->47->1045",
-        "default.handlebars->47->892"
+        "default.handlebars->47->1047",
+        "default.handlebars->47->894"
       ]
     },
     {
@@ -62238,7 +62240,7 @@
       "zh-cht": "限制條件",
       "hu": "Korlátozások",
       "xloc": [
-        "default.handlebars->47->2874"
+        "default.handlebars->47->2876"
       ]
     },
     {
@@ -62294,7 +62296,7 @@
       "hu": "rheto-román",
       "xloc": [
         "default-mobile.handlebars->11->239",
-        "default.handlebars->47->1930",
+        "default.handlebars->47->1932",
         "login2.handlebars->7->136"
       ]
     },
@@ -62323,7 +62325,7 @@
       "hu": "Jobb",
       "xloc": [
         "default-mobile.handlebars->11->639",
-        "default.handlebars->47->1403"
+        "default.handlebars->47->1405"
       ]
     },
     {
@@ -62351,7 +62353,7 @@
       "hu": "román",
       "xloc": [
         "default-mobile.handlebars->11->240",
-        "default.handlebars->47->1931",
+        "default.handlebars->47->1933",
         "login2.handlebars->7->137"
       ]
     },
@@ -62380,7 +62382,7 @@
       "hu": "román (Moldova)",
       "xloc": [
         "default-mobile.handlebars->11->241",
-        "default.handlebars->47->1932",
+        "default.handlebars->47->1934",
         "login2.handlebars->7->138"
       ]
     },
@@ -62410,8 +62412,8 @@
       "xloc": [
         "default-mobile.handlebars->11->345",
         "default-mobile.handlebars->11->686",
-        "default.handlebars->47->1517",
-        "default.handlebars->47->2426",
+        "default.handlebars->47->1519",
+        "default.handlebars->47->2428",
         "sharing.handlebars->11->49"
       ]
     },
@@ -62571,7 +62573,7 @@
       "zh-cht": "路由器",
       "hu": "Router",
       "xloc": [
-        "default.handlebars->47->389"
+        "default.handlebars->47->391"
       ]
     },
     {
@@ -62633,7 +62635,7 @@
       "de": "Ausführen",
       "es": "Ejecutar",
       "xloc": [
-        "default.handlebars->47->1001"
+        "default.handlebars->47->1003"
       ]
     },
     {
@@ -62668,9 +62670,9 @@
       "zh-cht": "運行命令",
       "hu": "Parancsok futtatása",
       "xloc": [
-        "default.handlebars->47->1240",
-        "default.handlebars->47->1262",
-        "default.handlebars->47->801"
+        "default.handlebars->47->1242",
+        "default.handlebars->47->1264",
+        "default.handlebars->47->803"
       ]
     },
     {
@@ -62697,7 +62699,7 @@
       "zh-cht": "運行MeshCentral Router,然後單擊“安裝”以使其可從瀏覽器啟動。",
       "hu": "Futtassa a MeshCentral Routert, és kattintson a \\\"Install\\\" gombra, hogy a böngészőből elindítható legyen a kapcsolat.",
       "xloc": [
-        "default.handlebars->47->1308"
+        "default.handlebars->47->1310"
       ]
     },
     {
@@ -62738,8 +62740,8 @@
       "zh-cht": "以代理身份運行",
       "hu": "Futtatás agent-ként",
       "xloc": [
-        "default.handlebars->47->1259",
-        "default.handlebars->47->795"
+        "default.handlebars->47->1261",
+        "default.handlebars->47->797"
       ]
     },
     {
@@ -62766,8 +62768,8 @@
       "zh-cht": "以用戶身份運行,如果沒有用戶,則運行代理",
       "hu": "Futtatás felhasználóként, vagy mint agent, ha nincs felhasználó",
       "xloc": [
-        "default.handlebars->47->1260",
-        "default.handlebars->47->796"
+        "default.handlebars->47->1262",
+        "default.handlebars->47->798"
       ]
     },
     {
@@ -62794,7 +62796,7 @@
       "zh-cht": "運行命令",
       "hu": "Parancsok futtatása",
       "xloc": [
-        "default.handlebars->47->726"
+        "default.handlebars->47->728"
       ]
     },
     {
@@ -62821,8 +62823,8 @@
       "zh-cht": "在所選裝置上運行命令。",
       "hu": "Parancs futtatása a kiválasztott eszközökön.",
       "xloc": [
-        "default.handlebars->47->1255",
-        "default.handlebars->47->745"
+        "default.handlebars->47->1257",
+        "default.handlebars->47->747"
       ]
     },
     {
@@ -62849,7 +62851,7 @@
       "zh-cht": "在此裝置上運行命令。",
       "hu": "Parancsok futtatása ezen az eszközön",
       "xloc": [
-        "default.handlebars->47->1002"
+        "default.handlebars->47->1004"
       ]
     },
     {
@@ -62876,8 +62878,8 @@
       "zh-cht": "跑步",
       "hu": "Futtatás",
       "xloc": [
-        "default.handlebars->47->1432",
-        "default.handlebars->47->1436"
+        "default.handlebars->47->1434",
+        "default.handlebars->47->1438"
       ]
     },
     {
@@ -62904,7 +62906,7 @@
       "zh-cht": "運行命令",
       "hu": "Parancsok futtatása",
       "xloc": [
-        "default.handlebars->47->2495"
+        "default.handlebars->47->2497"
       ]
     },
     {
@@ -62931,7 +62933,7 @@
       "zh-cht": "以用戶身份運行命令",
       "hu": "Parancsok futtatása felhasználóként",
       "xloc": [
-        "default.handlebars->47->2570"
+        "default.handlebars->47->2572"
       ]
     },
     {
@@ -62958,7 +62960,7 @@
       "zh-cht": "如果可能,以用戶身份運行命令",
       "hu": "Parancsok futtatása felhasználóként, ha lehetséges",
       "xloc": [
-        "default.handlebars->47->2571"
+        "default.handlebars->47->2573"
       ]
     },
     {
@@ -62986,7 +62988,7 @@
       "hu": "orosz",
       "xloc": [
         "default-mobile.handlebars->11->242",
-        "default.handlebars->47->1933",
+        "default.handlebars->47->1935",
         "login2.handlebars->7->139"
       ]
     },
@@ -63015,7 +63017,7 @@
       "hu": "orosz (Moldávia)",
       "xloc": [
         "default-mobile.handlebars->11->243",
-        "default.handlebars->47->1934",
+        "default.handlebars->47->1936",
         "login2.handlebars->7->140"
       ]
     },
@@ -63091,8 +63093,8 @@
       "zh-cht": "SCP",
       "hu": "SCP",
       "xloc": [
-        "default.handlebars->47->1034",
-        "default.handlebars->47->438"
+        "default.handlebars->47->1036",
+        "default.handlebars->47->440"
       ]
     },
     {
@@ -63174,8 +63176,8 @@
       "zh-cht": "短信",
       "hu": "SMS",
       "xloc": [
-        "default.handlebars->47->2937",
-        "default.handlebars->47->2943",
+        "default.handlebars->47->2939",
+        "default.handlebars->47->2945",
         "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
         "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3",
         "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3",
@@ -63208,7 +63210,7 @@
       "zh-cht": "此用戶的短信功能電話號碼。",
       "hu": "SMS fogadásra alkalmas telefonszám ehhez a felhasználóhoz.",
       "xloc": [
-        "default.handlebars->47->2961"
+        "default.handlebars->47->2963"
       ]
     },
     {
@@ -63236,7 +63238,7 @@
       "hu": "SMS hiba",
       "xloc": [
         "default-mobile.handlebars->11->1013",
-        "default.handlebars->47->3238"
+        "default.handlebars->47->3240"
       ]
     },
     {
@@ -63264,7 +63266,7 @@
       "hu": "SMS hiba: {0}",
       "xloc": [
         "default-mobile.handlebars->11->1014",
-        "default.handlebars->47->3239"
+        "default.handlebars->47->3241"
       ]
     },
     {
@@ -63319,7 +63321,7 @@
       "hu": "SMS átjáró nincs engedélyezve",
       "xloc": [
         "default-mobile.handlebars->11->1008",
-        "default.handlebars->47->3233"
+        "default.handlebars->47->3235"
       ]
     },
     {
@@ -63346,7 +63348,7 @@
       "zh-cht": "短信",
       "hu": "SMS üzenet",
       "xloc": [
-        "default.handlebars->47->3164"
+        "default.handlebars->47->3166"
       ]
     },
     {
@@ -63411,7 +63413,7 @@
       "de": "SMS erfolgreich gesendet.",
       "es": "SMS enviado exitosamente.",
       "xloc": [
-        "default.handlebars->47->3237"
+        "default.handlebars->47->3239"
       ]
     },
     {
@@ -63492,8 +63494,8 @@
       "zh-cht": "SSH",
       "hu": "SSH",
       "xloc": [
-        "default.handlebars->47->1032",
-        "default.handlebars->47->437"
+        "default.handlebars->47->1034",
+        "default.handlebars->47->439"
       ]
     },
     {
@@ -63549,7 +63551,7 @@
       "hu": "SSH Kapcsolat",
       "xloc": [
         "default-mobile.handlebars->11->657",
-        "default.handlebars->47->831"
+        "default.handlebars->47->833"
       ]
     },
     {
@@ -63578,8 +63580,8 @@
       "xloc": [
         "default-mobile.handlebars->11->655",
         "default-mobile.handlebars->11->691",
-        "default.handlebars->47->1468",
-        "default.handlebars->47->1532"
+        "default.handlebars->47->1470",
+        "default.handlebars->47->1534"
       ]
     },
     {
@@ -63631,7 +63633,7 @@
       "hu": "SSH távoli kapcsolat portja:",
       "xloc": [
         "default-mobile.handlebars->11->656",
-        "default.handlebars->47->830"
+        "default.handlebars->47->832"
       ]
     },
     {
@@ -63684,8 +63686,8 @@
       "xloc": [
         "default-mobile.handlebars->11->531",
         "default-mobile.handlebars->11->535",
-        "default.handlebars->47->985",
-        "default.handlebars->47->989"
+        "default.handlebars->47->987",
+        "default.handlebars->47->991"
       ]
     },
     {
@@ -63714,8 +63716,8 @@
       "xloc": [
         "default-mobile.handlebars->11->530",
         "default-mobile.handlebars->11->534",
-        "default.handlebars->47->984",
-        "default.handlebars->47->988"
+        "default.handlebars->47->986",
+        "default.handlebars->47->990"
       ]
     },
     {
@@ -63744,8 +63746,8 @@
       "xloc": [
         "default-mobile.handlebars->11->529",
         "default-mobile.handlebars->11->533",
-        "default.handlebars->47->983",
-        "default.handlebars->47->987"
+        "default.handlebars->47->985",
+        "default.handlebars->47->989"
       ]
     },
     {
@@ -63772,7 +63774,7 @@
       "zh-cht": "SSL 證書不在服務器上",
       "hu": "SSL-tanúsítvány nincs a kiszolgálón",
       "xloc": [
-        "default.handlebars->47->1360"
+        "default.handlebars->47->1362"
       ]
     },
     {
@@ -63799,7 +63801,7 @@
       "zh-cht": "服務器不允許 SSL",
       "hu": "SSL a kiszolgáló által nem engedélyezett",
       "xloc": [
-        "default.handlebars->47->1359"
+        "default.handlebars->47->1361"
       ]
     },
     {
@@ -63826,7 +63828,7 @@
       "zh-cht": "服務器需要 SSL",
       "hu": "SSL a kiszolgáló által megkövetelt",
       "xloc": [
-        "default.handlebars->47->1358"
+        "default.handlebars->47->1360"
       ]
     },
     {
@@ -63853,7 +63855,7 @@
       "zh-cht": "服務器需要具有用戶身份驗證的 SSL",
       "hu": "SSL felhasználói hitelesítéssel a kiszolgáló által megkövetelt",
       "xloc": [
-        "default.handlebars->47->1363"
+        "default.handlebars->47->1365"
       ]
     },
     {
@@ -63880,8 +63882,8 @@
       "zh-cht": "與裝置名稱相同",
       "hu": "Ugyanaz, mint az eszköz neve",
       "xloc": [
-        "default.handlebars->47->493",
-        "default.handlebars->47->502"
+        "default.handlebars->47->495",
+        "default.handlebars->47->504"
       ]
     },
     {
@@ -63909,7 +63911,7 @@
       "hu": "sami (Lappföld)",
       "xloc": [
         "default-mobile.handlebars->11->244",
-        "default.handlebars->47->1935",
+        "default.handlebars->47->1937",
         "login2.handlebars->7->141"
       ]
     },
@@ -63939,7 +63941,7 @@
       "xloc": [
         "default.handlebars->47->267",
         "default.handlebars->47->271",
-        "default.handlebars->47->536"
+        "default.handlebars->47->538"
       ]
     },
     {
@@ -63991,7 +63993,7 @@
       "hu": "sango",
       "xloc": [
         "default-mobile.handlebars->11->245",
-        "default.handlebars->47->1936",
+        "default.handlebars->47->1938",
         "login2.handlebars->7->142"
       ]
     },
@@ -64020,7 +64022,7 @@
       "hu": "szanszkrit",
       "xloc": [
         "default-mobile.handlebars->11->246",
-        "default.handlebars->47->1937",
+        "default.handlebars->47->1939",
         "login2.handlebars->7->143"
       ]
     },
@@ -64049,7 +64051,7 @@
       "hu": "szardíniai",
       "xloc": [
         "default-mobile.handlebars->11->247",
-        "default.handlebars->47->1938",
+        "default.handlebars->47->1940",
         "login2.handlebars->7->144"
       ]
     },
@@ -64132,7 +64134,7 @@
       "zh-cht": "保存節點位置",
       "hu": "Eszköz hely mentése",
       "xloc": [
-        "default.handlebars->47->845"
+        "default.handlebars->47->847"
       ]
     },
     {
@@ -64212,8 +64214,8 @@
       "zh-cht": "掃瞄",
       "hu": "Feldertés",
       "xloc": [
-        "default.handlebars->47->530",
-        "default.handlebars->47->532"
+        "default.handlebars->47->532",
+        "default.handlebars->47->534"
       ]
     },
     {
@@ -64240,7 +64242,7 @@
       "zh-cht": "掃描網絡",
       "hu": "Hélózat felderítés",
       "xloc": [
-        "default.handlebars->47->481"
+        "default.handlebars->47->483"
       ]
     },
     {
@@ -64267,7 +64269,7 @@
       "zh-cht": "掃描Intel® AMT裝置",
       "hu": "Intel® AMT eszközök felderítése",
       "xloc": [
-        "default.handlebars->47->535"
+        "default.handlebars->47->537"
       ]
     },
     {
@@ -64321,7 +64323,7 @@
       "zh-cht": "掃描...",
       "hu": "felderítés...",
       "xloc": [
-        "default.handlebars->47->537"
+        "default.handlebars->47->539"
       ]
     },
     {
@@ -64465,8 +64467,8 @@
       "zh-cht": "搜尋",
       "hu": "Keresés",
       "xloc": [
-        "default.handlebars->47->1526",
-        "default.handlebars->47->858",
+        "default.handlebars->47->1528",
+        "default.handlebars->47->860",
         "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar",
         "sharing.handlebars->11->53"
       ]
@@ -64530,7 +64532,7 @@
       "nl": "Tweede fout",
       "pl": "Druga Awaria",
       "xloc": [
-        "default.handlebars->47->1451"
+        "default.handlebars->47->1453"
       ]
     },
     {
@@ -64616,7 +64618,7 @@
       "hu": "TLS használatával védett",
       "xloc": [
         "default-mobile.handlebars->11->798",
-        "default.handlebars->47->1637"
+        "default.handlebars->47->1639"
       ]
     },
     {
@@ -64645,11 +64647,11 @@
       "xloc": [
         "default-mobile.handlebars->11->598",
         "default-mobile.handlebars->11->797",
-        "default.handlebars->47->1280",
-        "default.handlebars->47->1636",
-        "default.handlebars->47->2424",
-        "default.handlebars->47->2939",
-        "default.handlebars->47->506",
+        "default.handlebars->47->1282",
+        "default.handlebars->47->1638",
+        "default.handlebars->47->2426",
+        "default.handlebars->47->2941",
+        "default.handlebars->47->508",
         "default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1"
       ]
     },
@@ -64692,7 +64694,7 @@
       "zh-cht": "安全密鑰",
       "hu": "Biztonsági kulcs",
       "xloc": [
-        "default.handlebars->47->2933"
+        "default.handlebars->47->2935"
       ]
     },
     {
@@ -64720,7 +64722,7 @@
       "hu": "Biztonsági figyelmeztetés",
       "xloc": [
         "default-mobile.handlebars->11->982",
-        "default.handlebars->47->3207"
+        "default.handlebars->47->3209"
       ]
     },
     {
@@ -64813,13 +64815,13 @@
       "zh-cht": "全選",
       "hu": "Összes kijelölése",
       "xloc": [
-        "default.handlebars->47->1529",
         "default.handlebars->47->1531",
-        "default.handlebars->47->2450",
-        "default.handlebars->47->2693",
-        "default.handlebars->47->2787",
-        "default.handlebars->47->534",
-        "default.handlebars->47->717",
+        "default.handlebars->47->1533",
+        "default.handlebars->47->2452",
+        "default.handlebars->47->2695",
+        "default.handlebars->47->2789",
+        "default.handlebars->47->536",
+        "default.handlebars->47->719",
         "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
         "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
         "default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -64855,9 +64857,9 @@
       "zh-cht": "選擇日期和時間...",
       "hu": "Dátum és idő kiválasztása...",
       "xloc": [
-        "default.handlebars->47->1221",
         "default.handlebars->47->1223",
-        "default.handlebars->47->3122"
+        "default.handlebars->47->1225",
+        "default.handlebars->47->3124"
       ]
     },
     {
@@ -64884,11 +64886,11 @@
       "zh-cht": "選擇無",
       "hu": "Semelyik",
       "xloc": [
-        "default.handlebars->47->1530",
-        "default.handlebars->47->2449",
-        "default.handlebars->47->2692",
-        "default.handlebars->47->2786",
-        "default.handlebars->47->716",
+        "default.handlebars->47->1532",
+        "default.handlebars->47->2451",
+        "default.handlebars->47->2694",
+        "default.handlebars->47->2788",
+        "default.handlebars->47->718",
         "default.handlebars->meshContextMenu->cxselectnone",
         "sharing.handlebars->11->57"
       ]
@@ -64917,7 +64919,7 @@
       "zh-cht": "選擇要註冊推送通知身份驗證的設備。選擇後,設備將提示確認。",
       "hu": "Válassza ki a push-értesítés hitelesítéséhez regisztrálandó eszközt. A kiválasztás után az eszköz megerősítést kér.",
       "xloc": [
-        "default.handlebars->47->1782"
+        "default.handlebars->47->1784"
       ]
     },
     {
@@ -64944,7 +64946,7 @@
       "zh-cht": "為所選裝置選擇一個新群",
       "hu": "Új csoport kiválasztása a megadott eszköz(ök)höz",
       "xloc": [
-        "default.handlebars->47->1294"
+        "default.handlebars->47->1296"
       ]
     },
     {
@@ -64971,7 +64973,7 @@
       "zh-cht": "選擇此裝置的新群",
       "hu": "Új csoport kiválasztása ehhez az eszközhöz",
       "xloc": [
-        "default.handlebars->47->1293"
+        "default.handlebars->47->1295"
       ]
     },
     {
@@ -64998,7 +65000,7 @@
       "zh-cht": "選擇要放置的節點",
       "hu": "Válassza ki az elhelyezni kívánt eszközt",
       "xloc": [
-        "default.handlebars->47->861"
+        "default.handlebars->47->863"
       ]
     },
     {
@@ -65025,7 +65027,7 @@
       "zh-cht": "選擇要在所有選定裝置上執行的操作。僅在擁有適當權限的情況下才能執行操作。",
       "hu": "Válasszon ki egy műveletet ami a kijelölt eszközön végrehajtásra kerül. A műveleteket csak a megfelelő jogosultságokkal hajtja végre a rendszer.",
       "xloc": [
-        "default.handlebars->47->734"
+        "default.handlebars->47->736"
       ]
     },
     {
@@ -65052,8 +65054,8 @@
       "zh-cht": "選擇要對所有選定用戶執行的操作。",
       "hu": "A kiválasztottakon végrehajtandó művelet.",
       "xloc": [
-        "default.handlebars->47->2696",
-        "default.handlebars->47->2788"
+        "default.handlebars->47->2698",
+        "default.handlebars->47->2790"
       ]
     },
     {
@@ -65081,7 +65083,7 @@
       "hu": "Válassza ki az eszközön végrehajtandó műveletet.",
       "xloc": [
         "default-mobile.handlebars->11->566",
-        "default.handlebars->47->1232"
+        "default.handlebars->47->1234"
       ]
     },
     {
@@ -65108,7 +65110,7 @@
       "zh-cht": "選擇新密碼",
       "hu": "Új jelszó választása",
       "xloc": [
-        "default.handlebars->47->2230"
+        "default.handlebars->47->2232"
       ]
     },
     {
@@ -65164,7 +65166,7 @@
       "hu": "Csak saját események",
       "xloc": [
         "default-mobile.handlebars->11->963",
-        "default.handlebars->47->2349"
+        "default.handlebars->47->2351"
       ]
     },
     {
@@ -65246,7 +65248,7 @@
       "zh-cht": "發電郵",
       "hu": "Email küldés",
       "xloc": [
-        "default.handlebars->47->2708"
+        "default.handlebars->47->2710"
       ]
     },
     {
@@ -65273,8 +65275,8 @@
       "zh-cht": "發送MQTT消息",
       "hu": "MQTT üzenet küldése",
       "xloc": [
-        "default.handlebars->47->1244",
-        "default.handlebars->47->718"
+        "default.handlebars->47->1246",
+        "default.handlebars->47->720"
       ]
     },
     {
@@ -65301,7 +65303,7 @@
       "zh-cht": "發送MQTT消息",
       "hu": "MQTT üzenet küldése",
       "xloc": [
-        "default.handlebars->47->1286"
+        "default.handlebars->47->1288"
       ]
     },
     {
@@ -65313,7 +65315,7 @@
       "de": "Nachricht senden",
       "es": "Enviar Mensaje",
       "xloc": [
-        "default.handlebars->47->2706"
+        "default.handlebars->47->2708"
       ]
     },
     {
@@ -65340,7 +65342,7 @@
       "zh-cht": "發送簡訊",
       "hu": "SMS küldés",
       "xloc": [
-        "default.handlebars->47->2705"
+        "default.handlebars->47->2707"
       ]
     },
     {
@@ -65367,7 +65369,7 @@
       "zh-cht": "發送短信給該用戶",
       "hu": "SMS-üzenet küldése ennek a felhasználónak",
       "xloc": [
-        "default.handlebars->47->2944"
+        "default.handlebars->47->2946"
       ]
     },
     {
@@ -65394,7 +65396,7 @@
       "zh-cht": "發送電郵給該用戶",
       "hu": "E-mail küldése ennek a felhasználónak",
       "xloc": [
-        "default.handlebars->47->2948"
+        "default.handlebars->47->2950"
       ]
     },
     {
@@ -65406,7 +65408,7 @@
       "de": "Eine Nachricht an diesen Benutzer senden",
       "es": "Enviar mensaje a este usuario",
       "xloc": [
-        "default.handlebars->47->2946"
+        "default.handlebars->47->2948"
       ]
     },
     {
@@ -65433,7 +65435,7 @@
       "zh-cht": "向該群中的所有用戶發送通知。",
       "hu": "Értesítés küldése a csoport összes felhasználójának.",
       "xloc": [
-        "default.handlebars->47->2831"
+        "default.handlebars->47->2833"
       ]
     },
     {
@@ -65460,7 +65462,7 @@
       "zh-cht": "向該用戶發送文本通知。",
       "hu": "Értesítő üzenet küldése ennek a felhasználónak.",
       "xloc": [
-        "default.handlebars->47->2709"
+        "default.handlebars->47->2711"
       ]
     },
     {
@@ -65487,7 +65489,7 @@
       "zh-cht": "發送電郵給用戶",
       "hu": "E-mail küldése a felhasználónak",
       "xloc": [
-        "default.handlebars->47->2687"
+        "default.handlebars->47->2689"
       ]
     },
     {
@@ -65514,7 +65516,7 @@
       "zh-cht": "發送安裝鏈結",
       "hu": "Telepítési link küldése",
       "xloc": [
-        "default.handlebars->47->546"
+        "default.handlebars->47->548"
       ]
     },
     {
@@ -65541,7 +65543,7 @@
       "zh-cht": "發送邀請電郵。",
       "hu": "Küldjön meghívót e-mailben.",
       "xloc": [
-        "default.handlebars->47->2758"
+        "default.handlebars->47->2760"
       ]
     },
     {
@@ -65719,7 +65721,7 @@
       "zh-cht": "發送用戶通知",
       "hu": "Felhasználói értesítés küldése",
       "xloc": [
-        "default.handlebars->47->2950"
+        "default.handlebars->47->2952"
       ]
     },
     {
@@ -65829,7 +65831,7 @@
       "hu": "szerb",
       "xloc": [
         "default-mobile.handlebars->11->250",
-        "default.handlebars->47->1941",
+        "default.handlebars->47->1943",
         "login2.handlebars->7->147"
       ]
     },
@@ -65859,8 +65861,8 @@
       "xloc": [
         "default-mobile.handlebars->11->807",
         "default-mobile.handlebars->11->812",
-        "default.handlebars->47->1646",
-        "default.handlebars->47->1651"
+        "default.handlebars->47->1648",
+        "default.handlebars->47->1653"
       ]
     },
     {
@@ -65911,7 +65913,7 @@
       "zh-cht": "伺服器備份",
       "hu": "Kiszolgáló biztonsági mentés",
       "xloc": [
-        "default.handlebars->47->2768"
+        "default.handlebars->47->2770"
       ]
     },
     {
@@ -65938,7 +65940,7 @@
       "zh-cht": "伺服器憑證",
       "hu": "Kiszolgáló Tanusítvány",
       "xloc": [
-        "default.handlebars->47->3318"
+        "default.handlebars->47->3320"
       ]
     },
     {
@@ -65948,7 +65950,7 @@
       "xloc": [
         "default.handlebars->47->203",
         "default.handlebars->47->205",
-        "default.handlebars->47->2107"
+        "default.handlebars->47->2109"
       ]
     },
     {
@@ -65975,7 +65977,7 @@
       "zh-cht": "服務器連接",
       "hu": "Kiszolgálóhoz való csatlakozás módja",
       "xloc": [
-        "default.handlebars->47->348"
+        "default.handlebars->47->349"
       ]
     },
     {
@@ -66002,7 +66004,7 @@
       "zh-cht": "伺服器數據庫",
       "hu": "Kiszolgáló adatbázis",
       "xloc": [
-        "default.handlebars->47->3319"
+        "default.handlebars->47->3321"
       ]
     },
     {
@@ -66011,7 +66013,7 @@
       "pl": "Błędy Serwera",
       "xloc": [
         "default.handlebars->47->198",
-        "default.handlebars->47->2104"
+        "default.handlebars->47->2106"
       ]
     },
     {
@@ -66040,11 +66042,11 @@
       "xloc": [
         "default-mobile.handlebars->11->940",
         "default-mobile.handlebars->11->955",
-        "default.handlebars->47->1120",
-        "default.handlebars->47->1145",
-        "default.handlebars->47->2308",
-        "default.handlebars->47->2340",
-        "default.handlebars->47->2765"
+        "default.handlebars->47->1122",
+        "default.handlebars->47->1147",
+        "default.handlebars->47->2310",
+        "default.handlebars->47->2342",
+        "default.handlebars->47->2767"
       ]
     },
     {
@@ -66099,7 +66101,7 @@
       "hu": "Kiszolgáló Limit",
       "xloc": [
         "default-mobile.handlebars->11->981",
-        "default.handlebars->47->3206"
+        "default.handlebars->47->3208"
       ]
     },
     {
@@ -66153,8 +66155,8 @@
       "zh-cht": "伺服器權限",
       "hu": "Kiszolgálói engedélyek",
       "xloc": [
-        "default.handlebars->47->2679",
-        "default.handlebars->47->2780"
+        "default.handlebars->47->2681",
+        "default.handlebars->47->2782"
       ]
     },
     {
@@ -66181,7 +66183,7 @@
       "zh-cht": "伺服器配額",
       "hu": "Kiszolgálói kvóta",
       "xloc": [
-        "default.handlebars->47->2907"
+        "default.handlebars->47->2909"
       ]
     },
     {
@@ -66208,7 +66210,7 @@
       "zh-cht": "伺服器還原",
       "hu": "Kiszolgáló visszaállítása",
       "xloc": [
-        "default.handlebars->47->2769"
+        "default.handlebars->47->2771"
       ]
     },
     {
@@ -66235,7 +66237,7 @@
       "zh-cht": "伺服器權限",
       "hu": "Jogosultságok a kiszolgálón",
       "xloc": [
-        "default.handlebars->47->2906"
+        "default.handlebars->47->2908"
       ]
     },
     {
@@ -66262,7 +66264,7 @@
       "zh-cht": "伺服器狀態",
       "hu": "Kiszolgáló állapot",
       "xloc": [
-        "default.handlebars->47->3249"
+        "default.handlebars->47->3251"
       ]
     },
     {
@@ -66316,7 +66318,7 @@
       "zh-cht": "伺服器追蹤",
       "hu": "Kiszolgáló nyomkövetés",
       "xloc": [
-        "default.handlebars->47->3332"
+        "default.handlebars->47->3334"
       ]
     },
     {
@@ -66343,7 +66345,7 @@
       "zh-cht": "服務器跟踪事件",
       "hu": "Kiszolgáló nyomkövetési esemény",
       "xloc": [
-        "default.handlebars->47->3310"
+        "default.handlebars->47->3312"
       ]
     },
     {
@@ -66425,7 +66427,7 @@
       "zh-cht": "伺服器更新",
       "hu": "Kiszolgáló frissítések",
       "xloc": [
-        "default.handlebars->47->2770"
+        "default.handlebars->47->2772"
       ]
     },
     {
@@ -66639,7 +66641,7 @@
       "de": "Der Server konnte keine Aufzeichnungen aus der Datenbank laden.",
       "es": "El servidor no puede obtener las grabaciones de la base de datos.",
       "xloc": [
-        "default.handlebars->47->3065"
+        "default.handlebars->47->3067"
       ]
     },
     {
@@ -66652,7 +66654,7 @@
       "de": "Der Server konnte keine Datei aus dem Aufzeichnungsordner laden.",
       "es": "El servidor no puede acceder la carpeta de grabaciones.",
       "xloc": [
-        "default.handlebars->47->3064"
+        "default.handlebars->47->3066"
       ]
     },
     {
@@ -66665,7 +66667,7 @@
       "de": "Aufzeichnungen zu Serverstatistiken",
       "es": "Historial de estadisticas del servidor",
       "xloc": [
-        "default.handlebars->47->3184"
+        "default.handlebars->47->3186"
       ]
     },
     {
@@ -66745,7 +66747,7 @@
       "zh-cht": "ServerStats.csv",
       "hu": "ServerStats.csv",
       "xloc": [
-        "default.handlebars->47->3309"
+        "default.handlebars->47->3311"
       ]
     },
     {
@@ -66757,8 +66759,8 @@
       "de": "Dienst",
       "es": "Servicio",
       "xloc": [
-        "default.handlebars->47->1752",
-        "default.handlebars->47->2975"
+        "default.handlebars->47->1754",
+        "default.handlebars->47->2977"
       ]
     },
     {
@@ -66785,8 +66787,8 @@
       "zh-cht": "服務詳情",
       "hu": "Szolgáltatás részletek",
       "xloc": [
-        "default.handlebars->47->1457",
-        "default.handlebars->47->1459"
+        "default.handlebars->47->1459",
+        "default.handlebars->47->1461"
       ]
     },
     {
@@ -66840,8 +66842,8 @@
       "zh-cht": "節",
       "hu": "Munkamenet",
       "xloc": [
-        "default.handlebars->47->3068",
-        "default.handlebars->47->3127",
+        "default.handlebars->47->3070",
+        "default.handlebars->47->3129",
         "ssh.handlebars->3->24",
         "ssh.handlebars->3->26"
       ]
@@ -66897,7 +66899,7 @@
       "zh-cht": "會議訊息",
       "hu": "Munkamenet információk",
       "xloc": [
-        "default.handlebars->47->1380",
+        "default.handlebars->47->1382",
         "sharing.handlebars->11->18"
       ]
     },
@@ -66927,8 +66929,8 @@
       "xloc": [
         "default-mobile.handlebars->11->677",
         "default-mobile.handlebars->11->684",
-        "default.handlebars->47->1492",
-        "default.handlebars->47->1508"
+        "default.handlebars->47->1494",
+        "default.handlebars->47->1510"
       ]
     },
     {
@@ -67014,8 +67016,8 @@
       "xloc": [
         "default-mobile.handlebars->11->678",
         "default-mobile.handlebars->11->685",
-        "default.handlebars->47->1493",
-        "default.handlebars->47->1509"
+        "default.handlebars->47->1495",
+        "default.handlebars->47->1511"
       ]
     },
     {
@@ -67097,7 +67099,7 @@
       "hu": "Munkamenetek",
       "xloc": [
         "default-mobile.handlebars->11->435",
-        "default.handlebars->47->469",
+        "default.handlebars->47->471",
         "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->7"
       ]
     },
@@ -67125,7 +67127,7 @@
       "zh-cht": "設置剪貼板",
       "hu": "Vágólap beállítás",
       "xloc": [
-        "default.handlebars->47->1425"
+        "default.handlebars->47->1427"
       ]
     },
     {
@@ -67203,7 +67205,7 @@
       "zh-cht": "設置標籤",
       "hu": "Címkék beállítása",
       "xloc": [
-        "default.handlebars->47->749"
+        "default.handlebars->47->751"
       ]
     },
     {
@@ -67230,7 +67232,7 @@
       "zh-cht": "設置剪貼板內容,{0}個字節",
       "hu": "A vágólap tartalmának beállítása, {0} bájt",
       "xloc": [
-        "default.handlebars->47->2493"
+        "default.handlebars->47->2495"
       ]
     },
     {
@@ -67285,7 +67287,7 @@
       "zh-cht": "設定檔案",
       "hu": "Beállítások fájl",
       "xloc": [
-        "default.handlebars->47->620"
+        "default.handlebars->47->622"
       ]
     },
     {
@@ -67341,8 +67343,8 @@
       "hu": "Beállítás",
       "xloc": [
         "agent-translations.json",
-        "default.handlebars->47->2173",
-        "default.handlebars->47->483"
+        "default.handlebars->47->2175",
+        "default.handlebars->47->485"
       ]
     },
     {
@@ -67417,7 +67419,7 @@
       "zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。",
       "hu": "Állítsa be ezt a szervert úgy, hogy automatikusan feltöltse a biztonsági mentéseket a Google Drive-ra. Kezdje azzal, hogy létrehoz és megad egy Google Drive-ügyfélazonosítót és ClientSecret-et a fiókjához.",
       "xloc": [
-        "default.handlebars->47->2087"
+        "default.handlebars->47->2089"
       ]
     },
     {
@@ -67446,9 +67448,9 @@
       "xloc": [
         "default-mobile.handlebars->11->3",
         "default.handlebars->47->10",
-        "default.handlebars->47->392",
-        "default.handlebars->47->395",
-        "default.handlebars->47->476",
+        "default.handlebars->47->394",
+        "default.handlebars->47->397",
+        "default.handlebars->47->478",
         "sharing.handlebars->11->3",
         "ssh.handlebars->3->3",
         "xterm.handlebars->9->3"
@@ -67478,7 +67480,7 @@
       "zh-cht": "共享",
       "hu": "Megosztás",
       "xloc": [
-        "default.handlebars->47->1007"
+        "default.handlebars->47->1009"
       ]
     },
     {
@@ -67505,7 +67507,7 @@
       "zh-cht": "共享裝置",
       "hu": "Eszköz megosztása",
       "xloc": [
-        "default.handlebars->47->1231",
+        "default.handlebars->47->1233",
         "default.handlebars->47->312"
       ]
     },
@@ -67587,7 +67589,7 @@
       "zh-cht": "共享過程",
       "hu": "SharedProcess",
       "xloc": [
-        "default.handlebars->47->1443"
+        "default.handlebars->47->1445"
       ]
     },
     {
@@ -67614,9 +67616,9 @@
       "zh-cht": "分享",
       "hu": "Megosztás",
       "xloc": [
-        "default.handlebars->47->1128",
-        "default.handlebars->47->1153",
-        "default.handlebars->47->2354"
+        "default.handlebars->47->1130",
+        "default.handlebars->47->1155",
+        "default.handlebars->47->2356"
       ]
     },
     {
@@ -67728,8 +67730,8 @@
       "xloc": [
         "default-mobile.handlebars->11->642",
         "default-mobile.handlebars->11->646",
-        "default.handlebars->47->1406",
-        "default.handlebars->47->1410"
+        "default.handlebars->47->1408",
+        "default.handlebars->47->1412"
       ]
     },
     {
@@ -68071,7 +68073,7 @@
       "hu": "Csak saját események megjelenítése",
       "xloc": [
         "default-mobile.handlebars->11->943",
-        "default.handlebars->47->2311"
+        "default.handlebars->47->2313"
       ]
     },
     {
@@ -68122,7 +68124,7 @@
       "zh-cht": "顯示流量",
       "hu": "Forgalom megjelenítése",
       "xloc": [
-        "default.handlebars->47->3123"
+        "default.handlebars->47->3125"
       ]
     },
     {
@@ -68149,7 +68151,7 @@
       "zh-cht": "顯示連接工具欄",
       "hu": "Kapcsolat eszköztár megjelenítése",
       "xloc": [
-        "default.handlebars->47->2267"
+        "default.handlebars->47->2269"
       ]
     },
     {
@@ -68203,7 +68205,7 @@
       "zh-cht": "顯示裝置位置訊息",
       "hu": "Az eszközök helyadatainak megjelenítése",
       "xloc": [
-        "default.handlebars->47->1021"
+        "default.handlebars->47->1023"
       ]
     },
     {
@@ -68230,7 +68232,7 @@
       "zh-cht": "顯示裝置網絡介面訊息",
       "hu": "Az eszköz hálózati interfész információinak megjelenítése",
       "xloc": [
-        "default.handlebars->47->1019"
+        "default.handlebars->47->1021"
       ]
     },
     {
@@ -68284,8 +68286,8 @@
       "zh-cht": "顯示1分鐘",
       "hu": "Megjelenítés 1 percen keresztül",
       "xloc": [
-        "default.handlebars->47->2712",
-        "default.handlebars->47->2744"
+        "default.handlebars->47->2714",
+        "default.handlebars->47->2746"
       ]
     },
     {
@@ -68293,9 +68295,9 @@
       "nl": "Toon gedurende 10 minuten",
       "pl": "Pokazuj przez 10 minut",
       "xloc": [
-        "default.handlebars->47->1164",
-        "default.handlebars->47->1178",
-        "default.handlebars->47->760"
+        "default.handlebars->47->1166",
+        "default.handlebars->47->1180",
+        "default.handlebars->47->762"
       ]
     },
     {
@@ -68322,8 +68324,8 @@
       "zh-cht": "顯示10秒",
       "hu": "Megjelenítés 10 percen keresztül",
       "xloc": [
-        "default.handlebars->47->2711",
-        "default.handlebars->47->2743"
+        "default.handlebars->47->2713",
+        "default.handlebars->47->2745"
       ]
     },
     {
@@ -68331,9 +68333,9 @@
       "nl": "Toon gedurende 2 Minuten (Standaard)",
       "pl": "Pokazuj przez 2 minuty (Domyślnie)",
       "xloc": [
-        "default.handlebars->47->1163",
-        "default.handlebars->47->1177",
-        "default.handlebars->47->759"
+        "default.handlebars->47->1165",
+        "default.handlebars->47->1179",
+        "default.handlebars->47->761"
       ]
     },
     {
@@ -68341,9 +68343,9 @@
       "nl": "Toon gedurende 30 Minuten",
       "pl": "Pokazuj przez 30 minut",
       "xloc": [
-        "default.handlebars->47->1165",
-        "default.handlebars->47->1179",
-        "default.handlebars->47->761"
+        "default.handlebars->47->1167",
+        "default.handlebars->47->1181",
+        "default.handlebars->47->763"
       ]
     },
     {
@@ -68370,8 +68372,8 @@
       "zh-cht": "顯示5分鐘",
       "hu": "Megjelenítés 5 percen keresztül",
       "xloc": [
-        "default.handlebars->47->2713",
-        "default.handlebars->47->2745"
+        "default.handlebars->47->2715",
+        "default.handlebars->47->2747"
       ]
     },
     {
@@ -68379,9 +68381,9 @@
       "nl": "Toon gedurende 60 minuten",
       "pl": "Pokazuj przez 60 minut",
       "xloc": [
-        "default.handlebars->47->1166",
-        "default.handlebars->47->1180",
-        "default.handlebars->47->762"
+        "default.handlebars->47->1168",
+        "default.handlebars->47->1182",
+        "default.handlebars->47->764"
       ]
     },
     {
@@ -68408,11 +68410,11 @@
       "zh-cht": "顯示消息,直到被用戶拒絕",
       "hu": "Üzenet megjelenítése amíg a felhasználó be nem zárja.",
       "xloc": [
-        "default.handlebars->47->1167",
-        "default.handlebars->47->1181",
-        "default.handlebars->47->2710",
-        "default.handlebars->47->2742",
-        "default.handlebars->47->763"
+        "default.handlebars->47->1169",
+        "default.handlebars->47->1183",
+        "default.handlebars->47->2712",
+        "default.handlebars->47->2744",
+        "default.handlebars->47->765"
       ]
     },
     {
@@ -68728,8 +68730,8 @@
       "de": "Signal",
       "es": "Signal",
       "xloc": [
-        "default.handlebars->47->1755",
-        "default.handlebars->47->2978"
+        "default.handlebars->47->1757",
+        "default.handlebars->47->2980"
       ]
     },
     {
@@ -68764,8 +68766,8 @@
       "zh-cht": "簡單管理員控制模式(ACM)",
       "hu": "Egyszerű Admin Control Mode (ACM)",
       "xloc": [
-        "default.handlebars->47->2162",
-        "default.handlebars->47->2220"
+        "default.handlebars->47->2164",
+        "default.handlebars->47->2222"
       ]
     },
     {
@@ -68792,8 +68794,8 @@
       "zh-cht": "簡單客戶端控制模式(CCM)",
       "hu": "Simple Client Control Mode (CCM)",
       "xloc": [
-        "default.handlebars->47->2160",
-        "default.handlebars->47->2224"
+        "default.handlebars->47->2162",
+        "default.handlebars->47->2226"
       ]
     },
     {
@@ -68821,7 +68823,7 @@
       "hu": "szindhi",
       "xloc": [
         "default-mobile.handlebars->11->248",
-        "default.handlebars->47->1939",
+        "default.handlebars->47->1941",
         "login2.handlebars->7->145"
       ]
     },
@@ -68850,7 +68852,7 @@
       "hu": "szingaléz",
       "xloc": [
         "default-mobile.handlebars->11->249",
-        "default.handlebars->47->1940",
+        "default.handlebars->47->1942",
         "login2.handlebars->7->146"
       ]
     },
@@ -68907,7 +68909,7 @@
       "zh-cht": "單點登錄",
       "hu": "Egyszeri bejelentkezés (SSO)",
       "xloc": [
-        "default.handlebars->47->3172"
+        "default.handlebars->47->3174"
       ]
     },
     {
@@ -68958,8 +68960,8 @@
       "zh-cht": "尺寸",
       "hu": "Méret",
       "xloc": [
-        "default.handlebars->47->3071",
-        "default.handlebars->47->3092",
+        "default.handlebars->47->3073",
+        "default.handlebars->47->3094",
         "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize"
       ]
     },
@@ -68987,7 +68989,7 @@
       "zh-cht": "縮放:100%",
       "hu": "Méret: 100%",
       "xloc": [
-        "default.handlebars->47->1560",
+        "default.handlebars->47->1562",
         "sharing.handlebars->11->85"
       ]
     },
@@ -69015,7 +69017,7 @@
       "zh-cht": "縮放:125%",
       "hu": "Méret: 125%",
       "xloc": [
-        "default.handlebars->47->1561",
+        "default.handlebars->47->1563",
         "sharing.handlebars->11->86"
       ]
     },
@@ -69043,7 +69045,7 @@
       "zh-cht": "縮放:150%",
       "hu": "Méret: 150%",
       "xloc": [
-        "default.handlebars->47->1562",
+        "default.handlebars->47->1564",
         "sharing.handlebars->11->87"
       ]
     },
@@ -69071,7 +69073,7 @@
       "zh-cht": "縮放:200%",
       "hu": "Méret: 200%",
       "xloc": [
-        "default.handlebars->47->1563",
+        "default.handlebars->47->1565",
         "sharing.handlebars->11->88"
       ]
     },
@@ -69080,8 +69082,8 @@
       "nl": "Slack",
       "pl": "Slack",
       "xloc": [
-        "default.handlebars->47->1751",
-        "default.handlebars->47->2974"
+        "default.handlebars->47->1753",
+        "default.handlebars->47->2976"
       ]
     },
     {
@@ -69089,8 +69091,8 @@
       "nl": "Slack Webhook Setup",
       "pl": "Instalacja Slack Webhook",
       "xloc": [
-        "default.handlebars->47->1761",
-        "default.handlebars->47->2984"
+        "default.handlebars->47->1763",
+        "default.handlebars->47->2986"
       ]
     },
     {
@@ -69121,7 +69123,7 @@
         "default-mobile.handlebars->11->439",
         "default-mobile.handlebars->11->440",
         "default-mobile.handlebars->11->574",
-        "default.handlebars->47->1241",
+        "default.handlebars->47->1243",
         "default.handlebars->47->2",
         "default.handlebars->47->3",
         "default.handlebars->47->4"
@@ -69151,7 +69153,7 @@
       "zh-cht": "把裝置休眠",
       "hu": "Alvó eszközök",
       "xloc": [
-        "default.handlebars->47->723"
+        "default.handlebars->47->725"
       ]
     },
     {
@@ -69180,8 +69182,8 @@
       "xloc": [
         "default-mobile.handlebars->11->446",
         "default-mobile.handlebars->11->447",
-        "default.handlebars->47->680",
-        "default.handlebars->47->682"
+        "default.handlebars->47->682",
+        "default.handlebars->47->684"
       ]
     },
     {
@@ -69209,7 +69211,7 @@
       "hu": "szlovák",
       "xloc": [
         "default-mobile.handlebars->11->251",
-        "default.handlebars->47->1942",
+        "default.handlebars->47->1944",
         "login2.handlebars->7->148"
       ]
     },
@@ -69238,7 +69240,7 @@
       "hu": "szlovén",
       "xloc": [
         "default-mobile.handlebars->11->252",
-        "default.handlebars->47->1943",
+        "default.handlebars->47->1945",
         "login2.handlebars->7->149"
       ]
     },
@@ -69323,7 +69325,7 @@
       "zh-cht": "小焦點",
       "hu": "Kicsi Focus mode",
       "xloc": [
-        "default.handlebars->47->1387"
+        "default.handlebars->47->1389"
       ]
     },
     {
@@ -69351,7 +69353,7 @@
       "hu": "Agent lecsatlakoztatása",
       "xloc": [
         "default-mobile.handlebars->11->888",
-        "default.handlebars->47->1728"
+        "default.handlebars->47->1730"
       ]
     },
     {
@@ -69379,7 +69381,7 @@
       "hu": "Soft-Off",
       "xloc": [
         "default-mobile.handlebars->11->450",
-        "default.handlebars->47->688"
+        "default.handlebars->47->690"
       ]
     },
     {
@@ -69434,7 +69436,7 @@
       "hu": "somani",
       "xloc": [
         "default-mobile.handlebars->11->253",
-        "default.handlebars->47->1944",
+        "default.handlebars->47->1946",
         "login2.handlebars->7->150"
       ]
     },
@@ -69463,7 +69465,7 @@
       "hu": "szorbiai",
       "xloc": [
         "default-mobile.handlebars->11->254",
-        "default.handlebars->47->1945",
+        "default.handlebars->47->1947",
         "login2.handlebars->7->151"
       ]
     },
@@ -69698,7 +69700,7 @@
       "es": "Espacio",
       "xloc": [
         "default-mobile.handlebars->11->628",
-        "default.handlebars->47->1393"
+        "default.handlebars->47->1395"
       ]
     },
     {
@@ -69726,7 +69728,7 @@
       "hu": "spanyol",
       "xloc": [
         "default-mobile.handlebars->11->255",
-        "default.handlebars->47->1946",
+        "default.handlebars->47->1948",
         "login2.handlebars->7->152"
       ]
     },
@@ -69755,7 +69757,7 @@
       "hu": "spanyol (Argentína)",
       "xloc": [
         "default-mobile.handlebars->11->256",
-        "default.handlebars->47->1947",
+        "default.handlebars->47->1949",
         "login2.handlebars->7->153"
       ]
     },
@@ -69784,7 +69786,7 @@
       "hu": "spanyol (Bolívia)",
       "xloc": [
         "default-mobile.handlebars->11->257",
-        "default.handlebars->47->1948",
+        "default.handlebars->47->1950",
         "login2.handlebars->7->154"
       ]
     },
@@ -69813,7 +69815,7 @@
       "hu": "spanyol (Chile)",
       "xloc": [
         "default-mobile.handlebars->11->258",
-        "default.handlebars->47->1949",
+        "default.handlebars->47->1951",
         "login2.handlebars->7->155"
       ]
     },
@@ -69842,7 +69844,7 @@
       "hu": "spanyol (Kolumbia)",
       "xloc": [
         "default-mobile.handlebars->11->259",
-        "default.handlebars->47->1950",
+        "default.handlebars->47->1952",
         "login2.handlebars->7->156"
       ]
     },
@@ -69871,7 +69873,7 @@
       "hu": "spanyol (Costa Rica)",
       "xloc": [
         "default-mobile.handlebars->11->260",
-        "default.handlebars->47->1951",
+        "default.handlebars->47->1953",
         "login2.handlebars->7->157"
       ]
     },
@@ -69900,7 +69902,7 @@
       "hu": "spanyol (Dominikai Köztársaság)",
       "xloc": [
         "default-mobile.handlebars->11->261",
-        "default.handlebars->47->1952",
+        "default.handlebars->47->1954",
         "login2.handlebars->7->158"
       ]
     },
@@ -69929,7 +69931,7 @@
       "hu": "spanyol (Ecuador)",
       "xloc": [
         "default-mobile.handlebars->11->262",
-        "default.handlebars->47->1953",
+        "default.handlebars->47->1955",
         "login2.handlebars->7->159"
       ]
     },
@@ -69958,7 +69960,7 @@
       "hu": "spanyol (El Salvador)",
       "xloc": [
         "default-mobile.handlebars->11->263",
-        "default.handlebars->47->1954",
+        "default.handlebars->47->1956",
         "login2.handlebars->7->160"
       ]
     },
@@ -69987,7 +69989,7 @@
       "hu": "spanyol (Guatemala)",
       "xloc": [
         "default-mobile.handlebars->11->264",
-        "default.handlebars->47->1955",
+        "default.handlebars->47->1957",
         "login2.handlebars->7->161"
       ]
     },
@@ -70016,7 +70018,7 @@
       "hu": "spanyol (Honduras)",
       "xloc": [
         "default-mobile.handlebars->11->265",
-        "default.handlebars->47->1956",
+        "default.handlebars->47->1958",
         "login2.handlebars->7->162"
       ]
     },
@@ -70045,7 +70047,7 @@
       "hu": "spanyol (Mexikó)",
       "xloc": [
         "default-mobile.handlebars->11->266",
-        "default.handlebars->47->1957",
+        "default.handlebars->47->1959",
         "login2.handlebars->7->163"
       ]
     },
@@ -70074,7 +70076,7 @@
       "hu": "spanyol (Nicaragua)",
       "xloc": [
         "default-mobile.handlebars->11->267",
-        "default.handlebars->47->1958",
+        "default.handlebars->47->1960",
         "login2.handlebars->7->164"
       ]
     },
@@ -70103,7 +70105,7 @@
       "hu": "spanyol (Panama)",
       "xloc": [
         "default-mobile.handlebars->11->268",
-        "default.handlebars->47->1959",
+        "default.handlebars->47->1961",
         "login2.handlebars->7->165"
       ]
     },
@@ -70132,7 +70134,7 @@
       "hu": "spanyol (Paraguay)",
       "xloc": [
         "default-mobile.handlebars->11->269",
-        "default.handlebars->47->1960",
+        "default.handlebars->47->1962",
         "login2.handlebars->7->166"
       ]
     },
@@ -70161,7 +70163,7 @@
       "hu": "spanyol (Peru)",
       "xloc": [
         "default-mobile.handlebars->11->270",
-        "default.handlebars->47->1961",
+        "default.handlebars->47->1963",
         "login2.handlebars->7->167"
       ]
     },
@@ -70190,7 +70192,7 @@
       "hu": "spanyol (Puerto Rico)",
       "xloc": [
         "default-mobile.handlebars->11->271",
-        "default.handlebars->47->1962",
+        "default.handlebars->47->1964",
         "login2.handlebars->7->168"
       ]
     },
@@ -70219,7 +70221,7 @@
       "hu": "spanyol (Spanyolország)",
       "xloc": [
         "default-mobile.handlebars->11->272",
-        "default.handlebars->47->1963",
+        "default.handlebars->47->1965",
         "login2.handlebars->7->169"
       ]
     },
@@ -70248,7 +70250,7 @@
       "hu": "spanyol (Uruguay)",
       "xloc": [
         "default-mobile.handlebars->11->273",
-        "default.handlebars->47->1964",
+        "default.handlebars->47->1966",
         "login2.handlebars->7->170"
       ]
     },
@@ -70277,7 +70279,7 @@
       "hu": "spanyol (Venezuela)",
       "xloc": [
         "default-mobile.handlebars->11->274",
-        "default.handlebars->47->1965",
+        "default.handlebars->47->1967",
         "login2.handlebars->7->171"
       ]
     },
@@ -70287,7 +70289,7 @@
       "pl": "Wersja",
       "xloc": [
         "default-mobile.handlebars->11->818",
-        "default.handlebars->47->1657"
+        "default.handlebars->47->1659"
       ]
     },
     {
@@ -70395,7 +70397,7 @@
       "zh-cht": "開始",
       "hu": "Indítás",
       "xloc": [
-        "default.handlebars->47->1454"
+        "default.handlebars->47->1456"
       ]
     },
     {
@@ -70446,13 +70448,13 @@
       "zh-cht": "開始時間",
       "hu": "Kezdés ideje",
       "xloc": [
-        "default.handlebars->47->1222",
+        "default.handlebars->47->1224",
         "default.handlebars->47->127",
-        "default.handlebars->47->1377",
+        "default.handlebars->47->1379",
         "default.handlebars->47->286",
         "default.handlebars->47->291",
-        "default.handlebars->47->3069",
-        "default.handlebars->47->3094",
+        "default.handlebars->47->3071",
+        "default.handlebars->47->3096",
         "sharing.handlebars->11->14"
       ]
     },
@@ -70461,7 +70463,7 @@
       "nl": "Start Type",
       "pl": "Typ Rozruchu",
       "xloc": [
-        "default.handlebars->47->1445"
+        "default.handlebars->47->1447"
       ]
     },
     {
@@ -70488,7 +70490,7 @@
       "zh-cht": "首先輸入新舊MBEx密碼。",
       "hu": "Kezdje a régi és az új MBEx jelszó megadásával. ",
       "xloc": [
-        "default.handlebars->47->521"
+        "default.handlebars->47->523"
       ]
     },
     {
@@ -70542,7 +70544,7 @@
       "zh-cht": "已啟動 Web-RDP 會話 \\\"{0}\\\"。",
       "hu": "Elindítva Web-RDP munkamenet \\\"{0}\\\".",
       "xloc": [
-        "default.handlebars->47->2621"
+        "default.handlebars->47->2623"
       ]
     },
     {
@@ -70569,7 +70571,7 @@
       "zh-cht": "已啟動 Web-SFTP 會話 \\\"{0}\\\"。",
       "hu": "Elindítva Web-SFTP munkamenet \\\"{0}\\\".",
       "xloc": [
-        "default.handlebars->47->2620"
+        "default.handlebars->47->2622"
       ]
     },
     {
@@ -70596,7 +70598,7 @@
       "zh-cht": "已啟動 Web-SSH 會話 \\\"{0}\\\"。",
       "hu": "Elindítva Web-SSH munkamenet \\\"{0}\\\".",
       "xloc": [
-        "default.handlebars->47->2619"
+        "default.handlebars->47->2621"
       ]
     },
     {
@@ -70623,7 +70625,7 @@
       "zh-cht": "已啟動 Web-VNC 會話 \\\"{0}\\\"。",
       "hu": "Elindítva Web-VNC munkamenet \\\"{0}\\\".",
       "xloc": [
-        "default.handlebars->47->2622"
+        "default.handlebars->47->2624"
       ]
     },
     {
@@ -70650,7 +70652,7 @@
       "zh-cht": "啟動桌面多路復用會話",
       "hu": "Elindított asztali multiplex munkamenet",
       "xloc": [
-        "default.handlebars->47->2477"
+        "default.handlebars->47->2479"
       ]
     },
     {
@@ -70677,7 +70679,7 @@
       "zh-cht": "已啟動桌面多路復用會話 \\\"{0}\\\"",
       "hu": "Elindított asztali multiplex munkamenet \\\"{0}\\\"",
       "xloc": [
-        "default.handlebars->47->2616"
+        "default.handlebars->47->2618"
       ]
     },
     {
@@ -70704,7 +70706,7 @@
       "zh-cht": "從{1}到{2}開始了桌面會話“{0}”",
       "hu": "Elindított asztali munkamenet \\\"{0}\\\" {1} és {2} között",
       "xloc": [
-        "default.handlebars->47->2486"
+        "default.handlebars->47->2488"
       ]
     },
     {
@@ -70731,7 +70733,7 @@
       "zh-cht": "從{1}到{2}開始文件管理會話“{0}”",
       "hu": "Elindított fájl munkamenet \\\"{0}\\\" {1} és {2} között",
       "xloc": [
-        "default.handlebars->47->2487"
+        "default.handlebars->47->2489"
       ]
     },
     {
@@ -70758,7 +70760,7 @@
       "zh-cht": "已啟動本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2}",
       "hu": "Elindított helyi relay munkamenet \\\"{0}\\\", protocol {1} és {2} között",
       "xloc": [
-        "default.handlebars->47->2591"
+        "default.handlebars->47->2593"
       ]
     },
     {
@@ -70785,7 +70787,7 @@
       "zh-cht": "從{1}到{2}開始中繼會話“{0}”",
       "hu": "Elindított relay munkamenet \\\"{0}\\\" {1} és {2} között",
       "xloc": [
-        "default.handlebars->47->2484"
+        "default.handlebars->47->2486"
       ]
     },
     {
@@ -70812,7 +70814,7 @@
       "zh-cht": "使用Toast通知啟動遠程桌面",
       "hu": "Távoli asztal indítása alkalmazásértesítéssel",
       "xloc": [
-        "default.handlebars->47->2506"
+        "default.handlebars->47->2508"
       ]
     },
     {
@@ -70839,7 +70841,7 @@
       "zh-cht": "啟動遠程桌面,而無需通知",
       "hu": "Távoli asztal indítása értesítés nélkül",
       "xloc": [
-        "default.handlebars->47->2507"
+        "default.handlebars->47->2509"
       ]
     },
     {
@@ -70866,7 +70868,7 @@
       "zh-cht": "啟動帶有Toast通知的遠程文件",
       "hu": "Távoli fájelérés indítása az alkalmazás értesítésével",
       "xloc": [
-        "default.handlebars->47->2513"
+        "default.handlebars->47->2515"
       ]
     },
     {
@@ -70893,7 +70895,7 @@
       "zh-cht": "已啟動的遠程文件,恕不另行通知",
       "hu": "Távoli fájelérés indítása az alkalmazás értesítés nélkül",
       "xloc": [
-        "default.handlebars->47->2514"
+        "default.handlebars->47->2516"
       ]
     },
     {
@@ -70920,7 +70922,7 @@
       "zh-cht": "從{1}到{2}開始了終端會話“{0}”",
       "hu": "Elindítva \\\"{0}\\\" terminál munkamenetet {1}-ről {2}-re",
       "xloc": [
-        "default.handlebars->47->2485"
+        "default.handlebars->47->2487"
       ]
     },
     {
@@ -70947,7 +70949,7 @@
       "zh-cht": "現在開始",
       "hu": "Mostantól kezdődően",
       "xloc": [
-        "default.handlebars->47->1215"
+        "default.handlebars->47->1217"
       ]
     },
     {
@@ -70974,7 +70976,7 @@
       "zh-cht": "接受本地用戶後啟動遠程桌面",
       "hu": "Távoli asztal indítása a helyi felhasználó elfogadása után",
       "xloc": [
-        "default.handlebars->47->2501"
+        "default.handlebars->47->2503"
       ]
     },
     {
@@ -71001,7 +71003,7 @@
       "zh-cht": "本地用戶接受後啟動遠程文件",
       "hu": "Távoli fájl elérés indítása a helyi felhasználó elfogadása után",
       "xloc": [
-        "default.handlebars->47->2511"
+        "default.handlebars->47->2513"
       ]
     },
     {
@@ -71052,7 +71054,7 @@
       "zh-cht": "狀態",
       "hu": "Állapot",
       "xloc": [
-        "default.handlebars->47->1437",
+        "default.handlebars->47->1439",
         "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1"
       ]
     },
@@ -71132,9 +71134,9 @@
       "hu": "Státusz",
       "xloc": [
         "default-mobile.handlebars->11->853",
-        "default.handlebars->47->1692",
-        "default.handlebars->47->3009",
-        "default.handlebars->47->3087",
+        "default.handlebars->47->1694",
+        "default.handlebars->47->3011",
+        "default.handlebars->47->3089",
         "default.handlebars->container->column_l->p42->p42tbl->1->0->7"
       ]
     },
@@ -71162,7 +71164,7 @@
       "zh-cht": "停止",
       "hu": "Állj",
       "xloc": [
-        "default.handlebars->47->1455"
+        "default.handlebars->47->1457"
       ]
     },
     {
@@ -71189,7 +71191,7 @@
       "zh-cht": "停止進程",
       "hu": "Folyamat leállítás",
       "xloc": [
-        "default.handlebars->47->1428"
+        "default.handlebars->47->1430"
       ]
     },
     {
@@ -71216,7 +71218,7 @@
       "zh-cht": "停止進程 #{0} \\\"{1}\\\"?",
       "hu": "Leállítja a #{0} \\\"{1}\\\" folyamatot?",
       "xloc": [
-        "default.handlebars->47->1467"
+        "default.handlebars->47->1469"
       ]
     },
     {
@@ -71267,8 +71269,8 @@
       "zh-cht": "停止",
       "hu": "Megállt",
       "xloc": [
-        "default.handlebars->47->1431",
-        "default.handlebars->47->1435"
+        "default.handlebars->47->1433",
+        "default.handlebars->47->1437"
       ]
     },
     {
@@ -71320,7 +71322,7 @@
       "hu": "Háttértár",
       "xloc": [
         "default-mobile.handlebars->11->854",
-        "default.handlebars->47->1693"
+        "default.handlebars->47->1695"
       ]
     },
     {
@@ -71329,7 +71331,7 @@
       "pl": "Woluminy Pamięci",
       "xloc": [
         "default-mobile.handlebars->11->866",
-        "default.handlebars->47->1705"
+        "default.handlebars->47->1707"
       ]
     },
     {
@@ -71383,7 +71385,7 @@
       "zh-cht": "超出儲存空間",
       "hu": "Tároló kapacitás limit túllépése",
       "xloc": [
-        "default.handlebars->47->2430"
+        "default.handlebars->47->2432"
       ]
     },
     {
@@ -71411,7 +71413,7 @@
       "hu": "Tárolt kulcs",
       "xloc": [
         "default-mobile.handlebars->11->660",
-        "default.handlebars->47->1474",
+        "default.handlebars->47->1476",
         "ssh.handlebars->3->6"
       ]
     },
@@ -71439,7 +71441,7 @@
       "zh-cht": "強",
       "hu": "erős jelszó",
       "xloc": [
-        "default.handlebars->47->2070"
+        "default.handlebars->47->2072"
       ]
     },
     {
@@ -71498,7 +71500,7 @@
       "zh-cht": "主題",
       "hu": "Tárgy",
       "xloc": [
-        "default.handlebars->47->2707"
+        "default.handlebars->47->2709"
       ]
     },
     {
@@ -71533,7 +71535,7 @@
       "nl": "Vervolgfouten",
       "pl": "Późniejsze Awarie",
       "xloc": [
-        "default.handlebars->47->1452"
+        "default.handlebars->47->1454"
       ]
     },
     {
@@ -71560,8 +71562,8 @@
       "zh-cht": "成功登錄",
       "hu": "Sikeres bejelentkezés",
       "xloc": [
-        "default.handlebars->47->3157",
-        "default.handlebars->47->3196"
+        "default.handlebars->47->3159",
+        "default.handlebars->47->3198"
       ]
     },
     {
@@ -71670,7 +71672,7 @@
       "hu": "sutu",
       "xloc": [
         "default-mobile.handlebars->11->275",
-        "default.handlebars->47->1966",
+        "default.handlebars->47->1968",
         "login2.handlebars->7->172"
       ]
     },
@@ -71699,7 +71701,7 @@
       "hu": "szuahéli",
       "xloc": [
         "default-mobile.handlebars->11->276",
-        "default.handlebars->47->1967",
+        "default.handlebars->47->1969",
         "login2.handlebars->7->173"
       ]
     },
@@ -71757,7 +71759,7 @@
       "hu": "svéd",
       "xloc": [
         "default-mobile.handlebars->11->277",
-        "default.handlebars->47->1968",
+        "default.handlebars->47->1970",
         "login2.handlebars->7->174"
       ]
     },
@@ -71786,7 +71788,7 @@
       "hu": "svéd (Finnország)",
       "xloc": [
         "default-mobile.handlebars->11->278",
-        "default.handlebars->47->1969",
+        "default.handlebars->47->1971",
         "login2.handlebars->7->175"
       ]
     },
@@ -71815,7 +71817,7 @@
       "hu": "svéd (Svédország)",
       "xloc": [
         "default-mobile.handlebars->11->279",
-        "default.handlebars->47->1970",
+        "default.handlebars->47->1972",
         "login2.handlebars->7->176"
       ]
     },
@@ -71846,8 +71848,8 @@
         "default-mobile.handlebars->11->461",
         "default-mobile.handlebars->11->518",
         "default-mobile.handlebars->11->549",
-        "default.handlebars->47->401",
-        "default.handlebars->47->702"
+        "default.handlebars->47->403",
+        "default.handlebars->47->704"
       ]
     },
     {
@@ -71874,7 +71876,7 @@
       "zh-cht": "將英特爾AMT切換到管理員控制模式(ACM)。",
       "hu": "Állítsa az Intel AMT-t Admin Control Mode (ACM) módba.",
       "xloc": [
-        "default.handlebars->47->2180"
+        "default.handlebars->47->2182"
       ]
     },
     {
@@ -71901,8 +71903,8 @@
       "zh-cht": "交換機端口已連接",
       "hu": "Switch port csatlakoztatva",
       "xloc": [
-        "default.handlebars->47->1046",
-        "default.handlebars->47->1047"
+        "default.handlebars->47->1048",
+        "default.handlebars->47->1049"
       ]
     },
     {
@@ -71929,7 +71931,7 @@
       "zh-cht": "交換機端口已準備好使用。",
       "hu": "Switch port használatra kész.",
       "xloc": [
-        "default.handlebars->47->400"
+        "default.handlebars->47->402"
       ]
     },
     {
@@ -71956,7 +71958,7 @@
       "zh-cht": "將伺服器裝置名稱同步到主機名稱",
       "hu": "Az eszköz nevének szinkronizálása kiszolgálón a hostnévvel",
       "xloc": [
-        "default.handlebars->47->2276"
+        "default.handlebars->47->2278"
       ]
     },
     {
@@ -71983,7 +71985,7 @@
       "zh-cht": "將服務器設備名稱同步到端口名稱",
       "hu": "Az eszköz nevének szinkronizálása kiszolgálón a portnévvel",
       "xloc": [
-        "default.handlebars->47->2275"
+        "default.handlebars->47->2277"
       ]
     },
     {
@@ -72010,7 +72012,7 @@
       "zh-cht": "系統托盤,始終連接",
       "hu": "Windows tálca, állandó csatlakozás",
       "xloc": [
-        "default.handlebars->47->605"
+        "default.handlebars->47->607"
       ]
     },
     {
@@ -72037,7 +72039,7 @@
       "zh-cht": "系統托盤,根據用戶請求連接",
       "hu": "Windows tálca, csatlakozás a felhasználó kérésére",
       "xloc": [
-        "default.handlebars->47->604"
+        "default.handlebars->47->606"
       ]
     },
     {
@@ -72064,7 +72066,7 @@
       "zh-cht": "系統托盤,僅顯示器",
       "hu": "Windows tálca, csak monitor mód",
       "xloc": [
-        "default.handlebars->47->606"
+        "default.handlebars->47->608"
       ]
     },
     {
@@ -72092,7 +72094,7 @@
       "hu": "Rendszer típusa",
       "xloc": [
         "agentinvite.handlebars->3->6",
-        "default.handlebars->47->596"
+        "default.handlebars->47->598"
       ]
     },
     {
@@ -72168,7 +72170,7 @@
       "hu": "TCP Routing",
       "xloc": [
         "default-mobile.handlebars->11->427",
-        "default.handlebars->47->461"
+        "default.handlebars->47->463"
       ]
     },
     {
@@ -72308,7 +72310,7 @@
       "hu": "TLS",
       "xloc": [
         "default-mobile.handlebars->11->506",
-        "default.handlebars->47->905"
+        "default.handlebars->47->907"
       ]
     },
     {
@@ -72336,7 +72338,7 @@
       "hu": "TLS nincs beállítva",
       "xloc": [
         "default-mobile.handlebars->11->799",
-        "default.handlebars->47->1638"
+        "default.handlebars->47->1640"
       ]
     },
     {
@@ -72364,8 +72366,8 @@
       "hu": "TLS security szükséges",
       "xloc": [
         "default-mobile.handlebars->11->600",
-        "default.handlebars->47->1282",
-        "default.handlebars->47->508"
+        "default.handlebars->47->1284",
+        "default.handlebars->47->510"
       ]
     },
     {
@@ -72373,7 +72375,7 @@
       "nl": "TPM",
       "xloc": [
         "default-mobile.handlebars->11->830",
-        "default.handlebars->47->1669"
+        "default.handlebars->47->1671"
       ]
     },
     {
@@ -72402,7 +72404,7 @@
       "xloc": [
         "default-mobile.handlebars->11->625",
         "default-mobile.handlebars->dialog->3->dialog3->deskkeys->3",
-        "default.handlebars->47->1390"
+        "default.handlebars->47->1392"
       ]
     },
     {
@@ -72429,8 +72431,8 @@
       "zh-cht": "標籤1,標籤2,標籤3",
       "hu": "Címke1, Címke2, Címke3",
       "xloc": [
-        "default.handlebars->47->1347",
-        "default.handlebars->47->752"
+        "default.handlebars->47->1349",
+        "default.handlebars->47->754"
       ]
     },
     {
@@ -72487,12 +72489,12 @@
         "default-mobile.handlebars->11->527",
         "default-mobile.handlebars->11->528",
         "default-mobile.handlebars->11->613",
-        "default.handlebars->47->1346",
+        "default.handlebars->47->1348",
         "default.handlebars->47->341",
-        "default.handlebars->47->372",
-        "default.handlebars->47->751",
-        "default.handlebars->47->981",
-        "default.handlebars->47->982",
+        "default.handlebars->47->373",
+        "default.handlebars->47->753",
+        "default.handlebars->47->983",
+        "default.handlebars->47->984",
         "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7"
       ]
     },
@@ -72548,7 +72550,7 @@
       "hu": "tamil",
       "xloc": [
         "default-mobile.handlebars->11->280",
-        "default.handlebars->47->1971",
+        "default.handlebars->47->1973",
         "login2.handlebars->7->177"
       ]
     },
@@ -72559,8 +72561,8 @@
       "xloc": [
         "default-mobile.handlebars->11->748",
         "default-mobile.handlebars->11->750",
-        "default.handlebars->47->939",
-        "default.handlebars->47->941"
+        "default.handlebars->47->941",
+        "default.handlebars->47->943"
       ]
     },
     {
@@ -72588,7 +72590,7 @@
       "hu": "tatár",
       "xloc": [
         "default-mobile.handlebars->11->281",
-        "default.handlebars->47->1972",
+        "default.handlebars->47->1974",
         "login2.handlebars->7->178"
       ]
     },
@@ -72601,10 +72603,10 @@
       "de": "Telegram",
       "es": "Telegram",
       "xloc": [
-        "default.handlebars->47->1744",
-        "default.handlebars->47->1758",
-        "default.handlebars->47->2967",
-        "default.handlebars->47->2981"
+        "default.handlebars->47->1746",
+        "default.handlebars->47->1760",
+        "default.handlebars->47->2969",
+        "default.handlebars->47->2983"
       ]
     },
     {
@@ -72632,7 +72634,7 @@
       "hu": "teluga",
       "xloc": [
         "default-mobile.handlebars->11->282",
-        "default.handlebars->47->1973",
+        "default.handlebars->47->1975",
         "login2.handlebars->7->179"
       ]
     },
@@ -72662,16 +72664,16 @@
       "xloc": [
         "default-mobile.handlebars->11->419",
         "default-mobile.handlebars->11->562",
-        "default.handlebars->47->1074",
-        "default.handlebars->47->1189",
-        "default.handlebars->47->2188",
-        "default.handlebars->47->2268",
-        "default.handlebars->47->3081",
-        "default.handlebars->47->3141",
-        "default.handlebars->47->3191",
-        "default.handlebars->47->3286",
-        "default.handlebars->47->453",
-        "default.handlebars->47->848",
+        "default.handlebars->47->1076",
+        "default.handlebars->47->1191",
+        "default.handlebars->47->2190",
+        "default.handlebars->47->2270",
+        "default.handlebars->47->3083",
+        "default.handlebars->47->3143",
+        "default.handlebars->47->3193",
+        "default.handlebars->47->3288",
+        "default.handlebars->47->455",
+        "default.handlebars->47->850",
         "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal",
         "default.handlebars->contextMenu->cxterminal",
         "sharing.handlebars->LeftSideToolBar"
@@ -72701,9 +72703,9 @@
       "zh-cht": "終端 + 文件",
       "hu": "Terminál + Fájlok",
       "xloc": [
-        "default.handlebars->47->1078",
-        "default.handlebars->47->1192",
-        "default.handlebars->47->2192"
+        "default.handlebars->47->1080",
+        "default.handlebars->47->1194",
+        "default.handlebars->47->2194"
       ]
     },
     {
@@ -72757,10 +72759,10 @@
       "zh-cht": "終端機通知",
       "hu": "Terminál kapcsolat értesítés",
       "xloc": [
-        "default.handlebars->47->2142",
-        "default.handlebars->47->2820",
-        "default.handlebars->47->2925",
-        "default.handlebars->47->955"
+        "default.handlebars->47->2144",
+        "default.handlebars->47->2822",
+        "default.handlebars->47->2927",
+        "default.handlebars->47->957"
       ]
     },
     {
@@ -72787,10 +72789,10 @@
       "zh-cht": "終端機提示",
       "hu": "Terminál kapcsolat engedélykérés",
       "xloc": [
-        "default.handlebars->47->2141",
-        "default.handlebars->47->2819",
-        "default.handlebars->47->2924",
-        "default.handlebars->47->954"
+        "default.handlebars->47->2143",
+        "default.handlebars->47->2821",
+        "default.handlebars->47->2926",
+        "default.handlebars->47->956"
       ]
     },
     {
@@ -72817,7 +72819,7 @@
       "zh-cht": "終端會話",
       "hu": "Terminál munkamenet",
       "xloc": [
-        "default.handlebars->47->3074"
+        "default.handlebars->47->3076"
       ]
     },
     {
@@ -72947,7 +72949,7 @@
       "de": "Aufzeichnungen zu Textnotizen",
       "es": "Registro de Notas",
       "xloc": [
-        "default.handlebars->47->3178"
+        "default.handlebars->47->3180"
       ]
     },
     {
@@ -72975,7 +72977,7 @@
       "hu": "thai",
       "xloc": [
         "default-mobile.handlebars->11->283",
-        "default.handlebars->47->1974",
+        "default.handlebars->47->1976",
         "login2.handlebars->7->180"
       ]
     },
@@ -73004,7 +73006,7 @@
       "hu": "Az eszköz ki van kapcsolva",
       "xloc": [
         "default-mobile.handlebars->11->460",
-        "default.handlebars->47->700"
+        "default.handlebars->47->702"
       ]
     },
     {
@@ -73162,7 +73164,7 @@
       "zh-cht": "此電腦所屬的裝置群的名稱",
       "hu": "Annak az eszközcsoportnak a neve, amelyhez ez az eszköz tartozik",
       "xloc": [
-        "default.handlebars->47->875"
+        "default.handlebars->47->877"
       ]
     },
     {
@@ -73189,7 +73191,7 @@
       "zh-cht": "此電腦所屬的裝置群的名稱。",
       "hu": "Annak az eszközcsoportnak a neve, amelyhez ez az eszköz tartozik.",
       "xloc": [
-        "default.handlebars->47->873"
+        "default.handlebars->47->875"
       ]
     },
     {
@@ -73216,8 +73218,8 @@
       "zh-cht": "此電腦在操作系統中已設置的的名稱",
       "hu": "A számítógép neve az operációs rendszerben beállított módon.",
       "xloc": [
-        "default.handlebars->47->876",
-        "default.handlebars->47->878"
+        "default.handlebars->47->878",
+        "default.handlebars->47->880"
       ]
     },
     {
@@ -73245,7 +73247,7 @@
       "hu": "Jelenleg nincsenek értesítések",
       "xloc": [
         "default-mobile.handlebars->11->976",
-        "default.handlebars->47->3201"
+        "default.handlebars->47->3203"
       ]
     },
     {
@@ -73273,7 +73275,7 @@
       "hu": "A legutóbbi bejelentkezés óta {0} sikertelen bejelentkezési kísérlet történt ebbe a fiókba.",
       "xloc": [
         "default-mobile.handlebars->11->997",
-        "default.handlebars->47->3222"
+        "default.handlebars->47->3224"
       ]
     },
     {
@@ -73404,7 +73406,7 @@
       "hu": "Ez a fiók nem jogosult új eszközcsoport létrehozására.",
       "xloc": [
         "default-mobile.handlebars->11->330",
-        "default.handlebars->47->2045"
+        "default.handlebars->47->2047"
       ]
     },
     {
@@ -73431,7 +73433,7 @@
       "zh-cht": "此代理具有過時的證書驗證機制,請考慮更新。",
       "hu": "Ennek az ügynöknek elavult tanúsítvány-érvényesítési mechanizmusa van, fontolja meg a frissítést.",
       "xloc": [
-        "default.handlebars->47->2589"
+        "default.handlebars->47->2591"
       ]
     },
     {
@@ -73458,7 +73460,7 @@
       "zh-cht": "此代理正在使用不安全的隧道,請考慮更新。",
       "hu": "Ez az Agent nem biztonságos alagutakat használ, fontolja meg a frissítést.",
       "xloc": [
-        "default.handlebars->47->2590"
+        "default.handlebars->47->2592"
       ]
     },
     {
@@ -73466,7 +73468,7 @@
       "nl": "Dit is een uitvoerbaar bestand op besturingssystemen met grafische gebruikersinterfaces",
       "xloc": [
         "agentinvite.handlebars->3->11",
-        "default.handlebars->47->666"
+        "default.handlebars->47->668"
       ]
     },
     {
@@ -73541,10 +73543,10 @@
       "zh-cht": "這是一個嘉賓分享會",
       "hu": "Ez egy vendégmegosztás munkamenet",
       "xloc": [
-        "default.handlebars->47->1571",
-        "default.handlebars->47->2639",
-        "default.handlebars->47->3060",
-        "default.handlebars->47->3061"
+        "default.handlebars->47->1573",
+        "default.handlebars->47->2641",
+        "default.handlebars->47->3062",
+        "default.handlebars->47->3063"
       ]
     },
     {
@@ -73598,7 +73600,7 @@
       "zh-cht": "這是舊代理版本,請考慮更新。",
       "hu": "Ez egy régi Agent verzió, fontolja meg a frissítését.",
       "xloc": [
-        "default.handlebars->47->2588"
+        "default.handlebars->47->2590"
       ]
     },
     {
@@ -73649,7 +73651,7 @@
       "zh-cht": "這是推薦的策略。英特爾®AMT激活和管理是完全自動化的,服務器將嘗試最大程度地利用硬件管理。",
       "hu": "Ez az ajánlott házirend. Az Intel® AMT aktiválása és kezelése teljesen automatizált, és a kiszolgáló igyekszik a lehető legjobban kihasználni a hardverkezelést.",
       "xloc": [
-        "default.handlebars->47->2249"
+        "default.handlebars->47->2251"
       ]
     },
     {
@@ -73704,7 +73706,7 @@
       "zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。",
       "hu": "Ez a házirend nem érinti az Intel® AMT ACM módban működő eszközöket.",
       "xloc": [
-        "default.handlebars->47->2246"
+        "default.handlebars->47->2248"
       ]
     },
     {
@@ -73839,7 +73841,7 @@
       "zh-cht": "這會在此裝置的事件日誌中增加一個記錄。",
       "hu": "Ez egy bejegyzést ad hozzá az eszköz eseménynaplójához.",
       "xloc": [
-        "default.handlebars->47->1158"
+        "default.handlebars->47->1160"
       ]
     },
     {
@@ -73890,7 +73892,7 @@
       "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。",
       "hu": "Ez nem távolítja el az eszközöket a kiszolgálóról, de az eszközök többé nem tudnak csatlakozni a kiszolgálóhoz. Az eszközökhöz való távoli hozzáférés megszűnik. Az eszközöknek csatlakoztatva kell lenniük ahhoz, hogy ez a parancs működjön.",
       "xloc": [
-        "default.handlebars->47->1289"
+        "default.handlebars->47->1291"
       ]
     },
     {
@@ -73917,7 +73919,7 @@
       "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。",
       "hu": "Ez nem távolítja el az eszközt a kiszolgálóról, de az eszköz többé nem tud csatlakozni a kiszolgálóhoz. Az eszközhöz való távoli hozzáférés megszűnik. Az eszköznek kapcsolódnia kell ahhoz, hogy ez a parancs működjön.",
       "xloc": [
-        "default.handlebars->47->1290"
+        "default.handlebars->47->1292"
       ]
     },
     {
@@ -73945,7 +73947,7 @@
       "hu": "tigre",
       "xloc": [
         "default-mobile.handlebars->11->284",
-        "default.handlebars->47->1975",
+        "default.handlebars->47->1977",
         "login2.handlebars->7->181"
       ]
     },
@@ -73974,9 +73976,9 @@
       "hu": "Idő",
       "xloc": [
         "default-mobile.handlebars->11->569",
-        "default.handlebars->47->1235",
-        "default.handlebars->47->3120",
-        "default.handlebars->47->3125",
+        "default.handlebars->47->1237",
+        "default.handlebars->47->3122",
+        "default.handlebars->47->3127",
         "player.handlebars->3->17"
       ]
     },
@@ -74004,8 +74006,8 @@
       "zh-cht": "時間範圍",
       "hu": "Időintervallum",
       "xloc": [
-        "default.handlebars->47->1220",
-        "default.handlebars->47->3121"
+        "default.handlebars->47->1222",
+        "default.handlebars->47->3123"
       ]
     },
     {
@@ -74032,7 +74034,7 @@
       "zh-cht": "時間跨度",
       "hu": "Időtartam",
       "xloc": [
-        "default.handlebars->47->2643"
+        "default.handlebars->47->2645"
       ]
     },
     {
@@ -74059,8 +74061,8 @@
       "zh-cht": "時間範圍",
       "hu": "Időintervallum",
       "xloc": [
-        "default.handlebars->47->1216",
-        "default.handlebars->47->3119"
+        "default.handlebars->47->1218",
+        "default.handlebars->47->3121"
       ]
     },
     {
@@ -74088,7 +74090,7 @@
       "hu": "Időtúllépés",
       "xloc": [
         "default-mobile.handlebars->11->619",
-        "default.handlebars->47->1353",
+        "default.handlebars->47->1355",
         "sharing.handlebars->11->31",
         "sharing.handlebars->11->9"
       ]
@@ -74117,8 +74119,8 @@
       "zh-cht": "標題",
       "hu": "Title",
       "xloc": [
-        "default.handlebars->47->1176",
-        "default.handlebars->47->758"
+        "default.handlebars->47->1178",
+        "default.handlebars->47->760"
       ]
     },
     {
@@ -74145,7 +74147,7 @@
       "zh-cht": "要將電腦新增到\\\"{0}\\\",請運行以下命令。命令需要root憑據。",
       "hu": "Egy számítógép hozzáadásához a(z) \\\"{0}\\\" eszköz csoporthoz futtassa a következő parancsot. Root hitelesítő adatokra lesz szükség.",
       "xloc": [
-        "default.handlebars->47->622"
+        "default.handlebars->47->624"
       ]
     },
     {
@@ -74172,7 +74174,7 @@
       "zh-cht": "要將移動設備添加到組 \\\"{0}\\\",請下載 MeshAgent 應用程序並掃描此 QR 碼。",
       "hu": "Ha mobileszközt szeretne hozzáadni a \\\"{0}\\\" csoporthoz, töltse le a MeshAgent alkalmazást, és olvassa be ezt a QR-kódot.",
       "xloc": [
-        "default.handlebars->47->630"
+        "default.handlebars->47->632"
       ]
     },
     {
@@ -74271,7 +74273,7 @@
       "zh-cht": "要將新電腦新增到裝置群“ {0} ”,請下載mesh agent並安裝該電腦以進行管理。這agent中已嵌入了伺服器和裝置群訊息。",
       "hu": "Új számítógép hozzáadásához a(z) \\\"{0}\\\" eszközcsoporthoz, töltse le az agent-et, és telepítse a kezelendő számítógépre. Az agent tartalmazza a kiszolgáló és az eszközcsoport adatait.",
       "xloc": [
-        "default.handlebars->47->607"
+        "default.handlebars->47->609"
       ]
     },
     {
@@ -74298,7 +74300,7 @@
       "zh-cht": "要將新電腦新增到裝置群“ {0} ”,請下載mesh agent並安裝該電腦以進行管理。該代理安裝程序中已嵌入了伺服器和裝置群訊息。",
       "hu": "Új számítógép hozzáadásához a(z) \\\"{0}\\\" eszközcsoporthoz, töltse le a agent-et, és telepítse a kezelendő számítógépre. Az agent telepítője tartalmazza a kiszolgáló és az eszközcsoport adatait.",
       "xloc": [
-        "default.handlebars->47->626"
+        "default.handlebars->47->628"
       ]
     },
     {
@@ -74325,7 +74327,7 @@
       "zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。",
       "hu": "A fiók törléséhez írja be a fiók jelszavát mindkét mezőbe, majd kattintson az OK gombra.",
       "xloc": [
-        "default.handlebars->47->2032"
+        "default.handlebars->47->2034"
       ]
     },
     {
@@ -74439,7 +74441,7 @@
     {
       "en": "To remove a mesh agent, download the file below, right click on the \\\".mpkg\\\" file and click \\\"Show Package Contents\\\", then right click on \\\"Uninstall.command\\\" and click \\\"Open\\\"",
       "xloc": [
-        "default.handlebars->47->662"
+        "default.handlebars->47->664"
       ]
     },
     {
@@ -74466,7 +74468,7 @@
       "zh-cht": "要刪除mash agent,請下載以下檔案,運行該檔案,然後單擊“卸載”。",
       "hu": "A szoftver agent eltávolításához töltse le az alábbi fájlt, futtassa, majd kattintson az \\\"uninstall\\\" gombra.",
       "xloc": [
-        "default.handlebars->47->647"
+        "default.handlebars->47->649"
       ]
     },
     {
@@ -74493,7 +74495,7 @@
       "zh-cht": "要刪除網格代理,請運行以下命令。需要root憑據。",
       "hu": "Egy agent eltávolításához futtassa a következő parancsot. Root hitelesítő adatokra lesz szükség.",
       "xloc": [
-        "default.handlebars->47->660"
+        "default.handlebars->47->662"
       ]
     },
     {
@@ -74601,8 +74603,8 @@
       "zh-cht": "吐司通知",
       "hu": "Alkalmazásértesítés",
       "xloc": [
-        "default.handlebars->47->1173",
-        "default.handlebars->47->755"
+        "default.handlebars->47->1175",
+        "default.handlebars->47->757"
       ]
     },
     {
@@ -75043,7 +75045,7 @@
       "zh-cht": "令牌名稱",
       "hu": "Token név",
       "xloc": [
-        "default.handlebars->47->2018"
+        "default.handlebars->47->2020"
       ]
     },
     {
@@ -75156,9 +75158,9 @@
       "zh-cht": "主題",
       "hu": "Téma",
       "xloc": [
-        "default.handlebars->47->1284",
-        "default.handlebars->47->1767",
-        "default.handlebars->47->2990"
+        "default.handlebars->47->1286",
+        "default.handlebars->47->1769",
+        "default.handlebars->47->2992"
       ]
     },
     {
@@ -75266,7 +75268,7 @@
       "zh-cht": "用於通過此伺服器連接到裝置的流量路由器",
       "hu": "A kiszolgálón keresztül egy eszközhöz való csatlakozáshoz használt forgalmi útválasztó",
       "xloc": [
-        "default.handlebars->47->1023"
+        "default.handlebars->47->1025"
       ]
     },
     {
@@ -75396,7 +75398,7 @@
       "hu": "Hitelesítő adatok kipróbálása",
       "xloc": [
         "default-mobile.handlebars->11->511",
-        "default.handlebars->47->910"
+        "default.handlebars->47->912"
       ]
     },
     {
@@ -75424,7 +75426,7 @@
       "hu": "tsonga",
       "xloc": [
         "default-mobile.handlebars->11->285",
-        "default.handlebars->47->1976",
+        "default.handlebars->47->1978",
         "login2.handlebars->7->182"
       ]
     },
@@ -75453,7 +75455,7 @@
       "hu": "tswana",
       "xloc": [
         "default-mobile.handlebars->11->286",
-        "default.handlebars->47->1977",
+        "default.handlebars->47->1979",
         "login2.handlebars->7->183"
       ]
     },
@@ -75506,7 +75508,7 @@
       "hu": "török",
       "xloc": [
         "default-mobile.handlebars->11->287",
-        "default.handlebars->47->1978",
+        "default.handlebars->47->1980",
         "login2.handlebars->7->184"
       ]
     },
@@ -75535,7 +75537,7 @@
       "hu": "türkmén",
       "xloc": [
         "default-mobile.handlebars->11->288",
-        "default.handlebars->47->1979",
+        "default.handlebars->47->1981",
         "login2.handlebars->7->185"
       ]
     },
@@ -75565,8 +75567,8 @@
       "xloc": [
         "default-mobile.handlebars->11->540",
         "default-mobile.handlebars->11->541",
-        "default.handlebars->47->1009",
-        "default.handlebars->47->1010"
+        "default.handlebars->47->1011",
+        "default.handlebars->47->1012"
       ]
     },
     {
@@ -75593,7 +75595,7 @@
       "zh-cht": "關掉。",
       "hu": "Kapcsolja ki.",
       "xloc": [
-        "default.handlebars->47->2604"
+        "default.handlebars->47->2606"
       ]
     },
     {
@@ -75622,8 +75624,8 @@
       "xloc": [
         "default-mobile.handlebars->11->542",
         "default-mobile.handlebars->11->543",
-        "default.handlebars->47->1011",
-        "default.handlebars->47->1012"
+        "default.handlebars->47->1013",
+        "default.handlebars->47->1014"
       ]
     },
     {
@@ -75650,7 +75652,7 @@
       "zh-cht": "打開。",
       "hu": "Kapcsolja be.",
       "xloc": [
-        "default.handlebars->47->2603"
+        "default.handlebars->47->2605"
       ]
     },
     {
@@ -75730,13 +75732,13 @@
       "xloc": [
         "default-mobile.handlebars->11->336",
         "default-mobile.handlebars->11->901",
-        "default.handlebars->47->1197",
-        "default.handlebars->47->1444",
-        "default.handlebars->47->2056",
-        "default.handlebars->47->2122",
-        "default.handlebars->47->2221",
-        "default.handlebars->47->3106",
-        "default.handlebars->47->494",
+        "default.handlebars->47->1199",
+        "default.handlebars->47->1446",
+        "default.handlebars->47->2058",
+        "default.handlebars->47->2124",
+        "default.handlebars->47->2223",
+        "default.handlebars->47->3108",
+        "default.handlebars->47->496",
         "default.handlebars->container->column_l->p11->deskarea0->deskarea4->5",
         "sharing.handlebars->p11->deskarea0->deskarea4->3"
       ]
@@ -75765,7 +75767,7 @@
       "zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。",
       "hu": "Írja be a kulcs nevét,  jelölje be az OTP mezőt, és nyomja meg a gombot a YubiKey™-en.",
       "xloc": [
-        "default.handlebars->47->1788"
+        "default.handlebars->47->1790"
       ]
     },
     {
@@ -75792,7 +75794,7 @@
       "zh-cht": "輸入要新增的密鑰的名稱。",
       "hu": "Írja be a hozzáadni kívánt kulcs nevét.",
       "xloc": [
-        "default.handlebars->47->1785"
+        "default.handlebars->47->1787"
       ]
     },
     {
@@ -75844,7 +75846,7 @@
       "hu": "UDP Routing",
       "xloc": [
         "default-mobile.handlebars->11->431",
-        "default.handlebars->47->465"
+        "default.handlebars->47->467"
       ]
     },
     {
@@ -75895,7 +75897,7 @@
       "zh-cht": "UTF8終端",
       "hu": "UTF8 Terminál",
       "xloc": [
-        "default.handlebars->47->1494",
+        "default.handlebars->47->1496",
         "sharing.handlebars->11->33"
       ]
     },
@@ -75924,7 +75926,7 @@
       "hu": "ukrán",
       "xloc": [
         "default-mobile.handlebars->11->289",
-        "default.handlebars->47->1980",
+        "default.handlebars->47->1982",
         "login2.handlebars->7->186"
       ]
     },
@@ -76056,8 +76058,8 @@
       "zh-cht": "在驗證電子郵件地址之前,無法訪問此功能。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。",
       "hu": "A funkció nem érhető el, amíg az e-mail cím nem kerül megerősítésre. Ez a jelszó helyreállításához szükséges. Menjen a \\\"Fiókom\\\" fülre az e-mail cím módosításához és ellenőrzéséhez",
       "xloc": [
-        "default.handlebars->47->2047",
-        "default.handlebars->47->864"
+        "default.handlebars->47->2049",
+        "default.handlebars->47->866"
       ]
     },
     {
@@ -76084,9 +76086,9 @@
       "zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。",
       "hu": "Nem lehet hozzáférni ehhez a funkcióhoz, amíg a kétfaktoros hitelesítés nincs engedélyezve. Ez a fokozott biztonság érdekében szükséges. Lépjen a \\\"Fiókom\\\" fülre, és tekintse meg a \\\"Fiókbiztonság\\\" részt.",
       "xloc": [
-        "default.handlebars->47->2049",
-        "default.handlebars->47->3338",
-        "default.handlebars->47->866"
+        "default.handlebars->47->2051",
+        "default.handlebars->47->3340",
+        "default.handlebars->47->868"
       ]
     },
     {
@@ -76114,7 +76116,7 @@
       "hu": "Ebben a módban nem lehet felhasználót hozzáadni",
       "xloc": [
         "default-mobile.handlebars->11->993",
-        "default.handlebars->47->3218"
+        "default.handlebars->47->3220"
       ]
     },
     {
@@ -76192,7 +76194,7 @@
       "zh-cht": "無法捕獲顯示",
       "hu": "Nem sikerült a képernyő rögzítés",
       "xloc": [
-        "default.handlebars->47->1355"
+        "default.handlebars->47->1357"
       ]
     },
     {
@@ -76300,7 +76302,7 @@
       "zh-cht": "無法導入任何設備。",
       "hu": "Egyetlen eszköz sem importálható.",
       "xloc": [
-        "default.handlebars->47->2217"
+        "default.handlebars->47->2219"
       ]
     },
     {
@@ -76652,9 +76654,9 @@
       "xloc": [
         "agent-translations.json",
         "default-mobile.handlebars->11->965",
-        "default.handlebars->47->1125",
-        "default.handlebars->47->1150",
-        "default.handlebars->47->2351"
+        "default.handlebars->47->1127",
+        "default.handlebars->47->1152",
+        "default.handlebars->47->2353"
       ]
     },
     {
@@ -76682,8 +76684,8 @@
       "hu": "Agent eltávolítása",
       "xloc": [
         "default-mobile.handlebars->11->945",
-        "default.handlebars->47->1251",
-        "default.handlebars->47->721"
+        "default.handlebars->47->1253",
+        "default.handlebars->47->723"
       ]
     },
     {
@@ -76710,7 +76712,7 @@
       "zh-cht": "卸載代理/刪除設備",
       "hu": "Agent eltávolítása / Eszköz törlése",
       "xloc": [
-        "default.handlebars->47->2313"
+        "default.handlebars->47->2315"
       ]
     },
     {
@@ -76737,14 +76739,14 @@
       "zh-cht": "卸載代理",
       "hu": "Agent eltávolítása",
       "xloc": [
-        "default.handlebars->47->1292"
+        "default.handlebars->47->1294"
       ]
     },
     {
       "en": "Universal version of macOS Mesh Agent",
       "xloc": [
-        "default.handlebars->47->628",
-        "default.handlebars->47->664"
+        "default.handlebars->47->630",
+        "default.handlebars->47->666"
       ]
     },
     {
@@ -76783,32 +76785,32 @@
         "default-mobile.handlebars->11->871",
         "default-mobile.handlebars->11->902",
         "default.handlebars->47->13",
-        "default.handlebars->47->1628",
-        "default.handlebars->47->1635",
-        "default.handlebars->47->1699",
-        "default.handlebars->47->1708",
+        "default.handlebars->47->1630",
+        "default.handlebars->47->1637",
+        "default.handlebars->47->1701",
         "default.handlebars->47->1710",
+        "default.handlebars->47->1712",
         "default.handlebars->47->187",
         "default.handlebars->47->188",
         "default.handlebars->47->189",
         "default.handlebars->47->191",
         "default.handlebars->47->193",
-        "default.handlebars->47->2102",
-        "default.handlebars->47->2103",
-        "default.handlebars->47->2123",
-        "default.handlebars->47->3053",
-        "default.handlebars->47->3073",
-        "default.handlebars->47->3080",
-        "default.handlebars->47->3151",
-        "default.handlebars->47->3152",
+        "default.handlebars->47->2104",
+        "default.handlebars->47->2105",
+        "default.handlebars->47->2125",
+        "default.handlebars->47->3055",
+        "default.handlebars->47->3075",
+        "default.handlebars->47->3082",
         "default.handlebars->47->3153",
         "default.handlebars->47->3154",
         "default.handlebars->47->3155",
-        "default.handlebars->47->3194",
+        "default.handlebars->47->3156",
+        "default.handlebars->47->3157",
+        "default.handlebars->47->3196",
         "default.handlebars->47->44",
         "default.handlebars->47->51",
         "default.handlebars->47->52",
-        "default.handlebars->47->715"
+        "default.handlebars->47->717"
       ]
     },
     {
@@ -76836,7 +76838,7 @@
       "hu": "Ismeretlen #{0}",
       "xloc": [
         "default-mobile.handlebars->11->891",
-        "default.handlebars->47->2112"
+        "default.handlebars->47->2114"
       ]
     },
     {
@@ -76863,7 +76865,7 @@
       "zh-cht": "未知動作",
       "hu": "Ismeretlen Művelet",
       "xloc": [
-        "default.handlebars->47->3255"
+        "default.handlebars->47->3257"
       ]
     },
     {
@@ -76890,8 +76892,8 @@
       "zh-cht": "未知裝置",
       "hu": "Ismeretlen Eszköz",
       "xloc": [
-        "default.handlebars->47->2845",
-        "default.handlebars->47->3039"
+        "default.handlebars->47->2847",
+        "default.handlebars->47->3041"
       ]
     },
     {
@@ -76918,9 +76920,9 @@
       "zh-cht": "未知裝置群",
       "hu": "Ismeretlen Eszköz Csoport",
       "xloc": [
-        "default.handlebars->47->2839",
-        "default.handlebars->47->3027",
-        "default.handlebars->47->3259"
+        "default.handlebars->47->2841",
+        "default.handlebars->47->3029",
+        "default.handlebars->47->3261"
       ]
     },
     {
@@ -76947,7 +76949,7 @@
       "zh-cht": "未知群組",
       "hu": "Ismeretlen Csoport",
       "xloc": [
-        "default.handlebars->47->3251"
+        "default.handlebars->47->3253"
       ]
     },
     {
@@ -76975,7 +76977,7 @@
       "hu": "Ismeretlen Státusz",
       "xloc": [
         "default-mobile.handlebars->11->500",
-        "default.handlebars->47->897"
+        "default.handlebars->47->899"
       ]
     },
     {
@@ -77002,8 +77004,8 @@
       "zh-cht": "未知用戶",
       "hu": "Ismeretlen felhasználó",
       "xloc": [
-        "default.handlebars->47->3156",
-        "default.handlebars->47->3195"
+        "default.handlebars->47->3158",
+        "default.handlebars->47->3197"
       ]
     },
     {
@@ -77030,7 +77032,7 @@
       "zh-cht": "未知用戶群",
       "hu": "Ismeretlen felhasználói csoport",
       "xloc": [
-        "default.handlebars->47->3033"
+        "default.handlebars->47->3035"
       ]
     },
     {
@@ -77058,7 +77060,7 @@
       "hu": "Ismeretlen Verzió és Státusz",
       "xloc": [
         "default-mobile.handlebars->11->502",
-        "default.handlebars->47->899"
+        "default.handlebars->47->901"
       ]
     },
     {
@@ -77085,7 +77087,7 @@
       "zh-cht": "密碼未知",
       "hu": "Ismeretlen jelszó",
       "xloc": [
-        "default.handlebars->47->2237"
+        "default.handlebars->47->2239"
       ]
     },
     {
@@ -77112,11 +77114,11 @@
       "zh-cht": "無限",
       "hu": "Korlátlan",
       "xloc": [
-        "default.handlebars->47->1213",
-        "default.handlebars->47->2001",
+        "default.handlebars->47->1215",
+        "default.handlebars->47->2003",
         "default.handlebars->47->279",
-        "default.handlebars->47->558",
-        "default.handlebars->47->572"
+        "default.handlebars->47->560",
+        "default.handlebars->47->574"
       ]
     },
     {
@@ -77143,7 +77145,7 @@
       "zh-cht": "解鎖帳戶",
       "hu": "Zárolt fiók feloldása",
       "xloc": [
-        "default.handlebars->47->2699"
+        "default.handlebars->47->2701"
       ]
     },
     {
@@ -77170,7 +77172,7 @@
       "zh-cht": "解鎖遠程用戶的鼠標和鍵盤?",
       "hu": "Feloldja a távoli felhasználó egerét és billentyűzetét?",
       "xloc": [
-        "default.handlebars->47->1172"
+        "default.handlebars->47->1174"
       ]
     },
     {
@@ -77238,21 +77240,21 @@
       "en": "Unzip To Folder",
       "nl": "Uitpakken naar map",
       "xloc": [
-        "default.handlebars->47->1542"
+        "default.handlebars->47->1544"
       ]
     },
     {
       "en": "Unzipping Error",
       "nl": "Fout bij uitpakken",
       "xloc": [
-        "default.handlebars->47->1515"
+        "default.handlebars->47->1517"
       ]
     },
     {
       "en": "Unzipping file...",
       "nl": "Bestand uitpakken...",
       "xloc": [
-        "default.handlebars->47->1513"
+        "default.handlebars->47->1515"
       ]
     },
     {
@@ -77282,7 +77284,7 @@
         "default-mobile.handlebars->11->638",
         "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
         "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
-        "default.handlebars->47->1402",
+        "default.handlebars->47->1404",
         "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
         "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
         "default.handlebars->container->dialog->dialogBody->dialog3->d3servermode->d3serveraction",
@@ -77313,7 +77315,7 @@
       "zh-cht": "最新",
       "hu": "Naprakész",
       "xloc": [
-        "default.handlebars->47->3343"
+        "default.handlebars->47->3345"
       ]
     },
     {
@@ -77343,8 +77345,8 @@
         "agent-translations.json",
         "default-mobile.handlebars->11->735",
         "default-mobile.handlebars->11->737",
-        "default.handlebars->47->926",
-        "default.handlebars->47->928"
+        "default.handlebars->47->928",
+        "default.handlebars->47->930"
       ]
     },
     {
@@ -77431,11 +77433,11 @@
         "default-mobile.handlebars->11->698",
         "default-mobile.handlebars->11->716",
         "default-mobile.handlebars->11->719",
-        "default.handlebars->47->1539",
-        "default.handlebars->47->1566",
-        "default.handlebars->47->1569",
-        "default.handlebars->47->2459",
-        "default.handlebars->47->2469",
+        "default.handlebars->47->1541",
+        "default.handlebars->47->1568",
+        "default.handlebars->47->1571",
+        "default.handlebars->47->2461",
+        "default.handlebars->47->2471",
         "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1",
         "sharing.handlebars->11->65",
         "sharing.handlebars->11->89",
@@ -77467,7 +77469,7 @@
       "hu": "Mesh Agent Core feltöltése",
       "xloc": [
         "default-mobile.handlebars->11->890",
-        "default.handlebars->47->1730"
+        "default.handlebars->47->1732"
       ]
     },
     {
@@ -77495,7 +77497,7 @@
       "hu": "Core fájl feltöltése",
       "xloc": [
         "default-mobile.handlebars->11->887",
-        "default.handlebars->47->1727"
+        "default.handlebars->47->1729"
       ]
     },
     {
@@ -77523,9 +77525,9 @@
       "hu": "Alapértelmezett server core feltöltése",
       "xloc": [
         "default-mobile.handlebars->11->883",
-        "default.handlebars->47->1723",
-        "default.handlebars->47->733",
-        "default.handlebars->47->776"
+        "default.handlebars->47->1725",
+        "default.handlebars->47->735",
+        "default.handlebars->47->778"
       ]
     },
     {
@@ -77552,7 +77554,7 @@
       "zh-cht": "在選定設備上上傳默認服務器核心?",
       "hu": "Feltölti az alapértelmezett server core-t a kiválasztott eszközökre?",
       "xloc": [
-        "default.handlebars->47->775"
+        "default.handlebars->47->777"
       ]
     },
     {
@@ -77579,7 +77581,7 @@
       "zh-cht": "上傳文件",
       "hu": "Fájlok feltöltése",
       "xloc": [
-        "default.handlebars->47->729"
+        "default.handlebars->47->731"
       ]
     },
     {
@@ -77634,7 +77636,7 @@
       "hu": "Recovery core feltöltése",
       "xloc": [
         "default-mobile.handlebars->11->885",
-        "default.handlebars->47->1725"
+        "default.handlebars->47->1727"
       ]
     },
     {
@@ -77661,7 +77663,7 @@
       "zh-cht": "將所選文件上傳到所有所選設備",
       "hu": "A kiválasztott fájlok feltöltése az összes kiválasztott eszközre",
       "xloc": [
-        "default.handlebars->47->765"
+        "default.handlebars->47->767"
       ]
     },
     {
@@ -77689,7 +77691,7 @@
       "hu": "Tiny core feltöltése",
       "xloc": [
         "default-mobile.handlebars->11->886",
-        "default.handlebars->47->1726"
+        "default.handlebars->47->1728"
       ]
     },
     {
@@ -77717,8 +77719,8 @@
       "hu": "A feltöltés 1 fájlt ír felül. Folytatja?",
       "xloc": [
         "default-mobile.handlebars->11->717",
-        "default.handlebars->47->1567",
-        "default.handlebars->47->2470",
+        "default.handlebars->47->1569",
+        "default.handlebars->47->2472",
         "sharing.handlebars->11->90"
       ]
     },
@@ -77747,8 +77749,8 @@
       "hu": "A feltöltés {0} fájlt felülír. Folytja?",
       "xloc": [
         "default-mobile.handlebars->11->718",
-        "default.handlebars->47->1568",
-        "default.handlebars->47->2471",
+        "default.handlebars->47->1570",
+        "default.handlebars->47->2473",
         "sharing.handlebars->11->91"
       ]
     },
@@ -77800,7 +77802,7 @@
       "zh-cht": "上傳:“{0}”",
       "hu": "Feltöltés: \\\"{0}\\\"",
       "xloc": [
-        "default.handlebars->47->2521"
+        "default.handlebars->47->2523"
       ]
     },
     {
@@ -77827,7 +77829,7 @@
       "zh-cht": "上傳:\\\"{0}\\\",大小:{1}",
       "hu": "Feltöltés: \\\"{0}\\\", Méret: {1}",
       "xloc": [
-        "default.handlebars->47->2576"
+        "default.handlebars->47->2578"
       ]
     },
     {
@@ -77855,7 +77857,7 @@
       "hu": "felső-sorbiai",
       "xloc": [
         "default-mobile.handlebars->11->290",
-        "default.handlebars->47->1981",
+        "default.handlebars->47->1983",
         "login2.handlebars->7->187"
       ]
     },
@@ -77884,7 +77886,7 @@
       "hu": "urdu",
       "xloc": [
         "default-mobile.handlebars->11->291",
-        "default.handlebars->47->1982",
+        "default.handlebars->47->1984",
         "login2.handlebars->7->188"
       ]
     },
@@ -77912,7 +77914,7 @@
       "zh-cht": "用法",
       "hu": "Használat",
       "xloc": [
-        "default.handlebars->47->3305"
+        "default.handlebars->47->3307"
       ]
     },
     {
@@ -78007,7 +78009,7 @@
       "de": "Als Relay benutzen",
       "es": "Usar como Relay",
       "xloc": [
-        "default.handlebars->47->2317"
+        "default.handlebars->47->2319"
       ]
     },
     {
@@ -78034,7 +78036,7 @@
       "zh-cht": "用於裸機 LAN 激活。",
       "hu": "Használja bare-metal LAN aktiválásához.",
       "xloc": [
-        "default.handlebars->47->525"
+        "default.handlebars->47->527"
       ]
     },
     {
@@ -78061,7 +78063,7 @@
       "zh-cht": "使用新憑據",
       "hu": "Használjon új hitelesítő adatokat",
       "xloc": [
-        "default.handlebars->47->1368",
+        "default.handlebars->47->1370",
         "mstsc.handlebars->main->1->3->1->dropdowndomain->1->d3coreMode->1"
       ]
     },
@@ -78089,7 +78091,7 @@
       "zh-cht": "使用服務器憑據",
       "hu": "Használja a kiszolgáló hitelesítő adatait",
       "xloc": [
-        "default.handlebars->47->1367",
+        "default.handlebars->47->1369",
         "mstsc.handlebars->main->1->3->1->dropdowndomain->1->d3coreMode->0"
       ]
     },
@@ -78144,8 +78146,8 @@
       "zh-cht": "用過的",
       "hu": "Használt",
       "xloc": [
-        "default.handlebars->47->3245",
-        "default.handlebars->47->3247"
+        "default.handlebars->47->3247",
+        "default.handlebars->47->3249"
       ]
     },
     {
@@ -78172,18 +78174,18 @@
       "zh-cht": "用戶",
       "hu": "Felhasználó",
       "xloc": [
-        "default.handlebars->47->1069",
+        "default.handlebars->47->1071",
         "default.handlebars->47->125",
-        "default.handlebars->47->1446",
-        "default.handlebars->47->2184",
-        "default.handlebars->47->2650",
-        "default.handlebars->47->2680",
-        "default.handlebars->47->2835",
-        "default.handlebars->47->3099",
-        "default.handlebars->47->3107",
-        "default.handlebars->47->3111",
-        "default.handlebars->47->3128",
-        "default.handlebars->47->377"
+        "default.handlebars->47->1448",
+        "default.handlebars->47->2186",
+        "default.handlebars->47->2652",
+        "default.handlebars->47->2682",
+        "default.handlebars->47->2837",
+        "default.handlebars->47->3101",
+        "default.handlebars->47->3109",
+        "default.handlebars->47->3113",
+        "default.handlebars->47->3130",
+        "default.handlebars->47->379"
       ]
     },
     {
@@ -78210,7 +78212,7 @@
       "zh-cht": "用戶+檔案",
       "hu": "Felhasználó + Fájlok",
       "xloc": [
-        "default.handlebars->47->2681"
+        "default.handlebars->47->2683"
       ]
     },
     {
@@ -78237,13 +78239,13 @@
       "zh-cht": "用戶帳戶導入",
       "hu": "Felhasználói fiókok importálása",
       "xloc": [
-        "default.handlebars->47->2216",
-        "default.handlebars->47->2720",
+        "default.handlebars->47->2218",
         "default.handlebars->47->2722",
         "default.handlebars->47->2724",
         "default.handlebars->47->2726",
         "default.handlebars->47->2728",
-        "default.handlebars->47->2730"
+        "default.handlebars->47->2730",
+        "default.handlebars->47->2732"
       ]
     },
     {
@@ -78270,7 +78272,7 @@
       "zh-cht": "用戶帳戶",
       "hu": "Felhasználói fiókok",
       "xloc": [
-        "default.handlebars->47->3264"
+        "default.handlebars->47->3266"
       ]
     },
     {
@@ -78283,7 +78285,7 @@
       "de": "Benutzerauthentifizierungs-Log",
       "es": "Log de autenticacion de usuario",
       "xloc": [
-        "default.handlebars->47->3326"
+        "default.handlebars->47->3328"
       ]
     },
     {
@@ -78311,8 +78313,8 @@
       "hu": "Felhasználó és Csoport jogosultságok",
       "xloc": [
         "default-mobile.handlebars->11->909",
-        "default.handlebars->47->1065",
-        "default.handlebars->47->2182"
+        "default.handlebars->47->1067",
+        "default.handlebars->47->2184"
       ]
     },
     {
@@ -78339,12 +78341,12 @@
       "zh-cht": "用戶同意",
       "hu": "Felhasználói hozzájárulás",
       "xloc": [
-        "default.handlebars->47->1225",
-        "default.handlebars->47->2148",
-        "default.handlebars->47->2826",
-        "default.handlebars->47->2931",
+        "default.handlebars->47->1227",
+        "default.handlebars->47->2150",
+        "default.handlebars->47->2828",
+        "default.handlebars->47->2933",
         "default.handlebars->47->301",
-        "default.handlebars->47->961"
+        "default.handlebars->47->963"
       ]
     },
     {
@@ -78371,12 +78373,12 @@
       "zh-cht": "用戶群",
       "hu": "Felhasználó csoport",
       "xloc": [
-        "default.handlebars->47->1068",
-        "default.handlebars->47->2288",
-        "default.handlebars->47->2289",
-        "default.handlebars->47->2795",
-        "default.handlebars->47->3035",
-        "default.handlebars->47->3056"
+        "default.handlebars->47->1070",
+        "default.handlebars->47->2290",
+        "default.handlebars->47->2291",
+        "default.handlebars->47->2797",
+        "default.handlebars->47->3037",
+        "default.handlebars->47->3058"
       ]
     },
     {
@@ -78430,7 +78432,7 @@
       "zh-cht": "用戶群成員",
       "hu": "Felhasználói csoport tagságok",
       "xloc": [
-        "default.handlebars->47->3032"
+        "default.handlebars->47->3034"
       ]
     },
     {
@@ -78484,9 +78486,9 @@
       "zh-cht": "用戶識別碼",
       "hu": "Felhasználó azonosító",
       "xloc": [
-        "default.handlebars->47->2359",
-        "default.handlebars->47->2882",
-        "default.handlebars->47->2883"
+        "default.handlebars->47->2361",
+        "default.handlebars->47->2884",
+        "default.handlebars->47->2885"
       ]
     },
     {
@@ -78513,8 +78515,8 @@
       "zh-cht": "用戶標識符",
       "hu": "Felhasználó azonosítók",
       "xloc": [
-        "default.handlebars->47->2286",
-        "default.handlebars->47->2866"
+        "default.handlebars->47->2288",
+        "default.handlebars->47->2868"
       ]
     },
     {
@@ -78568,7 +78570,7 @@
       "zh-cht": "用戶列表輸出",
       "hu": "Felhasználó lista exportálása",
       "xloc": [
-        "default.handlebars->47->2737"
+        "default.handlebars->47->2739"
       ]
     },
     {
@@ -78595,7 +78597,7 @@
       "zh-cht": "用戶登錄",
       "hu": "Felhasználói bejelentkezések",
       "xloc": [
-        "default.handlebars->47->3104"
+        "default.handlebars->47->3106"
       ]
     },
     {
@@ -78623,7 +78625,7 @@
       "hu": "Felhasználó Név",
       "xloc": [
         "default-mobile.handlebars->11->969",
-        "default.handlebars->47->2358"
+        "default.handlebars->47->2360"
       ]
     },
     {
@@ -78754,7 +78756,7 @@
       "zh-cht": "用戶節",
       "hu": "Felhasználó munkamenetek",
       "xloc": [
-        "default.handlebars->47->3296"
+        "default.handlebars->47->3298"
       ]
     },
     {
@@ -78812,7 +78814,7 @@
       "zh-cht": "用戶流量使用",
       "hu": "Felhasználói forgalom",
       "xloc": [
-        "default.handlebars->47->3103"
+        "default.handlebars->47->3105"
       ]
     },
     {
@@ -78921,7 +78923,7 @@
       "hu": "A felhasználó már létezik",
       "xloc": [
         "default-mobile.handlebars->11->992",
-        "default.handlebars->47->3217"
+        "default.handlebars->47->3219"
       ]
     },
     {
@@ -78950,8 +78952,8 @@
       "xloc": [
         "default-mobile.handlebars->11->302",
         "default-mobile.handlebars->11->304",
-        "default.handlebars->47->1993",
-        "default.handlebars->47->1995"
+        "default.handlebars->47->1995",
+        "default.handlebars->47->1997"
       ]
     },
     {
@@ -78978,7 +78980,7 @@
       "zh-cht": "用戶組已更改:{0}",
       "hu": "Fellhasználói csoport módosítva: {0}",
       "xloc": [
-        "default.handlebars->47->2550"
+        "default.handlebars->47->2552"
       ]
     },
     {
@@ -79005,7 +79007,7 @@
       "zh-cht": "已創建用戶組:{0}",
       "hu": "Fellhasználói csoport létrehozva: {0}",
       "xloc": [
-        "default.handlebars->47->2540"
+        "default.handlebars->47->2542"
       ]
     },
     {
@@ -79032,7 +79034,7 @@
       "zh-cht": "用戶組成員身份已更改:{0}",
       "hu": "Felhasználói csoport tagsága megváltozott: {0}",
       "xloc": [
-        "default.handlebars->47->2538"
+        "default.handlebars->47->2540"
       ]
     },
     {
@@ -79045,7 +79047,7 @@
       "de": "Benutzergruppen-Log",
       "es": "Registro de grupos de usuario",
       "xloc": [
-        "default.handlebars->47->3185"
+        "default.handlebars->47->3187"
       ]
     },
     {
@@ -79089,8 +79091,8 @@
       "de": "Nutzerschlüssel",
       "es": "Clave de usuario",
       "xloc": [
-        "default.handlebars->47->1766",
-        "default.handlebars->47->2989"
+        "default.handlebars->47->1768",
+        "default.handlebars->47->2991"
       ]
     },
     {
@@ -79117,7 +79119,7 @@
       "zh-cht": "用戶從 {0}、{1}、{2} 嘗試登錄鎖定帳戶",
       "hu": "Felhasználó bejelentkezési kísérlet zárolt fiókhoz innen: {0}, {1}, {2}",
       "xloc": [
-        "default.handlebars->47->2580"
+        "default.handlebars->47->2582"
       ]
     },
     {
@@ -79144,7 +79146,7 @@
       "zh-cht": "使用來自 {0}、{1}、{2} 的錯誤第二因素的用戶登錄嘗試",
       "hu": "Helytelen 2 faktoros felhasználói bejelentkezési kisérlet innen: {0}, {1}, {2}",
       "xloc": [
-        "default.handlebars->47->2579"
+        "default.handlebars->47->2581"
       ]
     },
     {
@@ -79171,7 +79173,7 @@
       "zh-cht": "用戶通知已更改",
       "hu": "Felhasználói értesítések megváltoztak",
       "xloc": [
-        "default.handlebars->47->2601"
+        "default.handlebars->47->2603"
       ]
     },
     {
@@ -79184,7 +79186,7 @@
       "de": "Benutzeraufzeichnungen",
       "es": "Registros de Usuario",
       "xloc": [
-        "default.handlebars->47->3175"
+        "default.handlebars->47->3177"
       ]
     },
     {
@@ -79212,7 +79214,7 @@
       "hu": "{0} felhasználó nem található.",
       "xloc": [
         "default-mobile.handlebars->11->1000",
-        "default.handlebars->47->3225"
+        "default.handlebars->47->3227"
       ]
     },
     {
@@ -79295,18 +79297,18 @@
         "default-mobile.handlebars->11->596",
         "default-mobile.handlebars->11->666",
         "default-mobile.handlebars->11->905",
-        "default.handlebars->47->1278",
-        "default.handlebars->47->1370",
-        "default.handlebars->47->1480",
-        "default.handlebars->47->1770",
-        "default.handlebars->47->2065",
-        "default.handlebars->47->2080",
-        "default.handlebars->47->2085",
-        "default.handlebars->47->2126",
-        "default.handlebars->47->2749",
-        "default.handlebars->47->2993",
+        "default.handlebars->47->1280",
+        "default.handlebars->47->1372",
+        "default.handlebars->47->1482",
+        "default.handlebars->47->1772",
+        "default.handlebars->47->2067",
+        "default.handlebars->47->2082",
+        "default.handlebars->47->2087",
+        "default.handlebars->47->2128",
+        "default.handlebars->47->2751",
+        "default.handlebars->47->2995",
         "default.handlebars->47->332",
-        "default.handlebars->47->503",
+        "default.handlebars->47->505",
         "login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->0->1",
         "login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->0->1",
         "mstsc.handlebars->main->1->3->1->rowusername->1->0",
@@ -79341,8 +79343,8 @@
       "xloc": [
         "default-mobile.handlebars->11->661",
         "default-mobile.handlebars->11->664",
-        "default.handlebars->47->1475",
-        "default.handlebars->47->1478",
+        "default.handlebars->47->1477",
+        "default.handlebars->47->1480",
         "ssh.handlebars->3->10",
         "ssh.handlebars->3->7"
       ]
@@ -79402,8 +79404,8 @@
       "xloc": [
         "default-mobile.handlebars->11->662",
         "default-mobile.handlebars->11->665",
-        "default.handlebars->47->1476",
-        "default.handlebars->47->1479",
+        "default.handlebars->47->1478",
+        "default.handlebars->47->1481",
         "ssh.handlebars->3->11",
         "ssh.handlebars->3->8"
       ]
@@ -79449,8 +79451,8 @@
       "de": "Benutzername:0000",
       "es": "Usuario:0000",
       "xloc": [
-        "default.handlebars->47->1763",
-        "default.handlebars->47->2986"
+        "default.handlebars->47->1765",
+        "default.handlebars->47->2988"
       ]
     },
     {
@@ -79477,9 +79479,9 @@
       "zh-cht": "用戶",
       "hu": "Felhasználók",
       "xloc": [
-        "default.handlebars->47->2783",
-        "default.handlebars->47->2827",
-        "default.handlebars->47->3295",
+        "default.handlebars->47->2785",
+        "default.handlebars->47->2829",
+        "default.handlebars->47->3297",
         "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral"
       ]
     },
@@ -79507,7 +79509,7 @@
       "zh-cht": "用戶節",
       "hu": "Felhasználói munkamenetek",
       "xloc": [
-        "default.handlebars->47->3268"
+        "default.handlebars->47->3270"
       ]
     },
     {
@@ -79534,7 +79536,7 @@
       "zh-cht": "用戶視圖",
       "hu": "Felhasználók megtekintése",
       "xloc": [
-        "default.handlebars->47->2716"
+        "default.handlebars->47->2718"
       ]
     },
     {
@@ -79562,7 +79564,7 @@
       "hu": "{0} felhasználók nem találhatóak.",
       "xloc": [
         "default-mobile.handlebars->11->1001",
-        "default.handlebars->47->3226"
+        "default.handlebars->47->3228"
       ]
     },
     {
@@ -79589,7 +79591,7 @@
       "zh-cht": "VNC 連接",
       "hu": "VNC Kapcsolat",
       "xloc": [
-        "default.handlebars->47->833"
+        "default.handlebars->47->835"
       ]
     },
     {
@@ -79616,7 +79618,7 @@
       "zh-cht": "VNC遠程連接端口:",
       "hu": "VNC távooli kapcsoalt port:",
       "xloc": [
-        "default.handlebars->47->832"
+        "default.handlebars->47->834"
       ]
     },
     {
@@ -79643,7 +79645,7 @@
       "zh-cht": "VT100 +(F10 = ESC + [OY)",
       "hu": "VT100+ (F10 = ESC+[OY)",
       "xloc": [
-        "default.handlebars->47->1499",
+        "default.handlebars->47->1501",
         "sharing.handlebars->11->38"
       ]
     },
@@ -79699,7 +79701,7 @@
       "zh-cht": "驗證電郵",
       "hu": "Email Érvényesít",
       "xloc": [
-        "default.handlebars->47->2694"
+        "default.handlebars->47->2696"
       ]
     },
     {
@@ -79727,7 +79729,7 @@
       "hu": "Érvényesítési kivétel",
       "xloc": [
         "default-mobile.handlebars->11->994",
-        "default.handlebars->47->3219"
+        "default.handlebars->47->3221"
       ]
     },
     {
@@ -79754,7 +79756,7 @@
       "zh-cht": "有效期",
       "hu": "Érvényesség",
       "xloc": [
-        "default.handlebars->47->1214"
+        "default.handlebars->47->1216"
       ]
     },
     {
@@ -79781,7 +79783,7 @@
       "zh-cht": "價值",
       "hu": "Érték",
       "xloc": [
-        "default.handlebars->47->1418"
+        "default.handlebars->47->1420"
       ]
     },
     {
@@ -79809,7 +79811,7 @@
       "hu": "venda",
       "xloc": [
         "default-mobile.handlebars->11->292",
-        "default.handlebars->47->1983",
+        "default.handlebars->47->1985",
         "login2.handlebars->7->189"
       ]
     },
@@ -79839,8 +79841,8 @@
       "xloc": [
         "default-mobile.handlebars->11->805",
         "default-mobile.handlebars->11->810",
-        "default.handlebars->47->1644",
-        "default.handlebars->47->1649"
+        "default.handlebars->47->1646",
+        "default.handlebars->47->1651"
       ]
     },
     {
@@ -79896,7 +79898,7 @@
       "zh-cht": "已驗證",
       "hu": "Megerősítve",
       "xloc": [
-        "default.handlebars->47->3011"
+        "default.handlebars->47->3013"
       ]
     },
     {
@@ -79936,7 +79938,7 @@
       "de": "Verifizierte Nutzerkennung",
       "es": "Usuario Verificado",
       "xloc": [
-        "default.handlebars->47->1740"
+        "default.handlebars->47->1742"
       ]
     },
     {
@@ -79948,7 +79950,7 @@
       "de": "Verifizierter Benachrichtigungsaccount",
       "es": "Cuenta de mensajes Verificada",
       "xloc": [
-        "default.handlebars->47->2691"
+        "default.handlebars->47->2693"
       ]
     },
     {
@@ -79960,7 +79962,7 @@
       "de": "Verifizierter Benachrichtigungsaccount des Benutzers {0}",
       "es": "Se verifico la cuenta de Mensajes de {0}",
       "xloc": [
-        "default.handlebars->47->2627"
+        "default.handlebars->47->2629"
       ]
     },
     {
@@ -79988,8 +79990,8 @@
       "hu": "Megerősített telefonszám ",
       "xloc": [
         "default-mobile.handlebars->11->96",
-        "default.handlebars->47->1734",
-        "default.handlebars->47->2689"
+        "default.handlebars->47->1736",
+        "default.handlebars->47->2691"
       ]
     },
     {
@@ -80016,7 +80018,7 @@
       "zh-cht": "用戶{0}的已驗證電話號碼",
       "hu": "Megerősített telefonszám {0} felhasználóhoz",
       "xloc": [
-        "default.handlebars->47->2567"
+        "default.handlebars->47->2569"
       ]
     },
     {
@@ -80102,10 +80104,10 @@
         "default-mobile.handlebars->11->788",
         "default-mobile.handlebars->11->806",
         "default-mobile.handlebars->11->813",
-        "default.handlebars->47->1577",
-        "default.handlebars->47->1627",
-        "default.handlebars->47->1645",
-        "default.handlebars->47->1652",
+        "default.handlebars->47->1579",
+        "default.handlebars->47->1629",
+        "default.handlebars->47->1647",
+        "default.handlebars->47->1654",
         "default.handlebars->container->column_l->p42->p42tbl->1->0->5"
       ]
     },
@@ -80133,7 +80135,7 @@
       "zh-cht": "版本不兼容,請先升級你的MeshCentral",
       "hu": "Nem kompatibilis verzió, kérjük, először frissítse a MeshCentral telepítését.",
       "xloc": [
-        "default.handlebars->47->3339"
+        "default.handlebars->47->3341"
       ]
     },
     {
@@ -80214,7 +80216,7 @@
       "hu": "Rezgés",
       "xloc": [
         "default-mobile.handlebars->11->568",
-        "default.handlebars->47->1234"
+        "default.handlebars->47->1236"
       ]
     },
     {
@@ -80242,7 +80244,7 @@
       "hu": "vietnámi",
       "xloc": [
         "default-mobile.handlebars->11->293",
-        "default.handlebars->47->1984",
+        "default.handlebars->47->1986",
         "login2.handlebars->7->190"
       ]
     },
@@ -80297,7 +80299,7 @@
       "zh-cht": "查看所有事件",
       "hu": "Minden esemény megtekintése",
       "xloc": [
-        "default.handlebars->47->2774"
+        "default.handlebars->47->2776"
       ]
     },
     {
@@ -80348,8 +80350,8 @@
       "zh-cht": "查看變更日誌",
       "hu": "Változásnapló megtekintése",
       "xloc": [
-        "default.handlebars->47->3342",
-        "default.handlebars->47->3344"
+        "default.handlebars->47->3344",
+        "default.handlebars->47->3346"
       ]
     },
     {
@@ -80376,7 +80378,7 @@
       "zh-cht": "查看有關此裝置的註釋",
       "hu": "Az eszközzel kapcsolatos megjegyzések megtekintése",
       "xloc": [
-        "default.handlebars->47->998"
+        "default.handlebars->47->1000"
       ]
     },
     {
@@ -80403,7 +80405,7 @@
       "zh-cht": "查看有關此裝置群的註釋",
       "hu": "Az eszközcsoporttal kapcsolatos megjegyzések megtekintése",
       "xloc": [
-        "default.handlebars->47->2167"
+        "default.handlebars->47->2169"
       ]
     },
     {
@@ -80430,7 +80432,7 @@
       "zh-cht": "查看有關此用戶的註釋",
       "hu": "A felhasználóval kapcsolatos megjegyzések megtekintése",
       "xloc": [
-        "default.handlebars->47->2942"
+        "default.handlebars->47->2944"
       ]
     },
     {
@@ -80485,7 +80487,7 @@
       "zh-cht": "查看此用戶以前的登錄信息",
       "hu": "A felhasználó korábbi bejelentkezéseinek megtekintése",
       "xloc": [
-        "default.handlebars->47->2957"
+        "default.handlebars->47->2959"
       ]
     },
     {
@@ -80540,7 +80542,7 @@
       "hu": "volapuk",
       "xloc": [
         "default-mobile.handlebars->11->294",
-        "default.handlebars->47->1985",
+        "default.handlebars->47->1987",
         "login2.handlebars->7->191"
       ]
     },
@@ -80769,7 +80771,7 @@
       "hu": "Várjuk, hogy a felhasználó engedélyezze a hozzáférést...",
       "xloc": [
         "default-mobile.handlebars->11->616",
-        "default.handlebars->47->1350",
+        "default.handlebars->47->1352",
         "sharing.handlebars->11->28",
         "sharing.handlebars->11->6"
       ]
@@ -80798,8 +80800,8 @@
       "zh-cht": "喚醒",
       "hu": "Felébresztés",
       "xloc": [
-        "default.handlebars->47->1121",
-        "default.handlebars->47->1146"
+        "default.handlebars->47->1123",
+        "default.handlebars->47->1148"
       ]
     },
     {
@@ -80828,8 +80830,8 @@
       "xloc": [
         "default-mobile.handlebars->11->941",
         "default-mobile.handlebars->11->956",
-        "default.handlebars->47->2309",
-        "default.handlebars->47->2341"
+        "default.handlebars->47->2311",
+        "default.handlebars->47->2343"
       ]
     },
     {
@@ -80857,7 +80859,7 @@
       "hu": "Felébresztés",
       "xloc": [
         "default-mobile.handlebars->11->573",
-        "default.handlebars->47->1239"
+        "default.handlebars->47->1241"
       ]
     },
     {
@@ -80884,7 +80886,7 @@
       "zh-cht": "喚醒裝置",
       "hu": "Eszközök felébresztése",
       "xloc": [
-        "default.handlebars->47->722"
+        "default.handlebars->47->724"
       ]
     },
     {
@@ -80912,7 +80914,7 @@
       "hu": "walloon",
       "xloc": [
         "default-mobile.handlebars->11->295",
-        "default.handlebars->47->1986",
+        "default.handlebars->47->1988",
         "login2.handlebars->7->192"
       ]
     },
@@ -80940,7 +80942,7 @@
       "zh-cht": "弱",
       "hu": "gyenge",
       "xloc": [
-        "default.handlebars->47->2072"
+        "default.handlebars->47->2074"
       ]
     },
     {
@@ -80999,8 +81001,8 @@
       "zh-cht": "網頁通知",
       "hu": "Weboldal értesítések",
       "xloc": [
-        "default.handlebars->47->1097",
-        "default.handlebars->47->2388"
+        "default.handlebars->47->1099",
+        "default.handlebars->47->2390"
       ]
     },
     {
@@ -81027,7 +81029,7 @@
       "zh-cht": "網頁電源開關 7",
       "hu": "Web Power Switch 7",
       "xloc": [
-        "default.handlebars->47->2063"
+        "default.handlebars->47->2065"
       ]
     },
     {
@@ -81054,8 +81056,8 @@
       "zh-cht": "網絡伺服器",
       "hu": "WEB Kiszolgáló",
       "xloc": [
-        "default.handlebars->47->3321",
-        "default.handlebars->47->3322"
+        "default.handlebars->47->3323",
+        "default.handlebars->47->3324"
       ]
     },
     {
@@ -81082,7 +81084,7 @@
       "zh-cht": "Web 服務器 HTTP 標頭",
       "hu": "WEB Kiszolgáló HTTP fejlécek",
       "xloc": [
-        "default.handlebars->47->3325"
+        "default.handlebars->47->3327"
       ]
     },
     {
@@ -81109,7 +81111,7 @@
       "zh-cht": "Web伺服器請求",
       "hu": "WEB kiszolgáló kérések",
       "xloc": [
-        "default.handlebars->47->3323"
+        "default.handlebars->47->3325"
       ]
     },
     {
@@ -81136,7 +81138,7 @@
       "zh-cht": "Web插座中繼",
       "hu": "Web Socket Relay",
       "xloc": [
-        "default.handlebars->47->3324"
+        "default.handlebars->47->3326"
       ]
     },
     {
@@ -81163,8 +81165,8 @@
       "zh-cht": "網絡RDP",
       "hu": "Web-RDP",
       "xloc": [
-        "default.handlebars->47->1039",
-        "default.handlebars->47->3147",
+        "default.handlebars->47->1041",
+        "default.handlebars->47->3149",
         "default.handlebars->contextMenu->cxwebrdp"
       ]
     },
@@ -81192,7 +81194,7 @@
       "zh-cht": "網絡SFTP",
       "hu": "Web-SFTP",
       "xloc": [
-        "default.handlebars->47->3149"
+        "default.handlebars->47->3151"
       ]
     },
     {
@@ -81219,8 +81221,8 @@
       "zh-cht": "網絡SSH",
       "hu": "Web-SSH",
       "xloc": [
-        "default.handlebars->47->1041",
-        "default.handlebars->47->3148",
+        "default.handlebars->47->1043",
+        "default.handlebars->47->3150",
         "default.handlebars->contextMenu->cxwebssh"
       ]
     },
@@ -81248,8 +81250,8 @@
       "zh-cht": "網絡-VNC",
       "hu": "Web-VNC",
       "xloc": [
-        "default.handlebars->47->1037",
-        "default.handlebars->47->3150",
+        "default.handlebars->47->1039",
+        "default.handlebars->47->3152",
         "default.handlebars->contextMenu->cxwebvnc"
       ]
     },
@@ -81277,7 +81279,7 @@
       "zh-cht": "WebRDP",
       "hu": "WebRDP",
       "xloc": [
-        "default.handlebars->47->3289"
+        "default.handlebars->47->3291"
       ]
     },
     {
@@ -81304,7 +81306,7 @@
       "zh-cht": "網絡SSH",
       "hu": "WebSSH",
       "xloc": [
-        "default.handlebars->47->3290"
+        "default.handlebars->47->3292"
       ]
     },
     {
@@ -81358,7 +81360,7 @@
       "zh-cht": "網絡VNC",
       "hu": "WebVNC",
       "xloc": [
-        "default.handlebars->47->3291"
+        "default.handlebars->47->3293"
       ]
     },
     {
@@ -81469,7 +81471,7 @@
       "hu": "walesi",
       "xloc": [
         "default-mobile.handlebars->11->296",
-        "default.handlebars->47->1987",
+        "default.handlebars->47->1989",
         "login2.handlebars->7->193"
       ]
     },
@@ -81482,8 +81484,8 @@
       "de": "WhatsApp",
       "es": "Whatsapp",
       "xloc": [
-        "default.handlebars->47->1756",
-        "default.handlebars->47->2979"
+        "default.handlebars->47->1758",
+        "default.handlebars->47->2981"
       ]
     },
     {
@@ -81510,7 +81512,7 @@
       "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
       "hu": "Ha engedélyezve van, a meghívókódokat bárki használhatja, hogy eszközöket csatlakoztasson ehhez az eszközcsoporthoz a következő nyilvános link segítségével:",
       "xloc": [
-        "default.handlebars->47->2367"
+        "default.handlebars->47->2369"
       ]
     },
     {
@@ -81538,7 +81540,7 @@
       "hu": "Ha engedélyezi, lehetőséget kap, hogy bejelentkezéskor a nagyobb biztonság érdekében 2 faktoros bejelentkezési jelszót kérjen az e-mail fiókjába.",
       "xloc": [
         "default-mobile.handlebars->11->102",
-        "default.handlebars->47->1772"
+        "default.handlebars->47->1774"
       ]
     },
     {
@@ -81565,7 +81567,7 @@
       "zh-cht": "選擇此策略時,此服務器不管理英特爾®AMT。 仍然可以通過手動激活和配置Intel AMT來使用它。",
       "hu": "Ha ezt a házirendet választja, az Intel® AMT-t ez a kiszolgáló nem kezeli. Az Intel AMT továbbra is használható manuális aktiválással és konfigurálással.",
       "xloc": [
-        "default.handlebars->47->2247"
+        "default.handlebars->47->2249"
       ]
     },
     {
@@ -81616,7 +81618,7 @@
       "zh-cht": "選擇此策略後,將禁用處於客戶端控制模式(CCM)的所有英特爾®AMT。 其他設備將清除CIRA,並且仍然可以手動進行管理。",
       "hu": "Ha ezt a házirendet választja, minden Intel® AMT in Client Control Mode (CCM) deaktiválva lesz. Más eszközökön a CIRA törlődik, és továbbra is manuálisan kezelhetők.",
       "xloc": [
-        "default.handlebars->47->2248"
+        "default.handlebars->47->2250"
       ]
     },
     {
@@ -81643,7 +81645,7 @@
       "zh-cht": "下次登入時將更改。",
       "hu": "A következő bejelentkezéskor módosul.",
       "xloc": [
-        "default.handlebars->47->2911"
+        "default.handlebars->47->2913"
       ]
     },
     {
@@ -81673,8 +81675,8 @@
         "default-mobile.handlebars->11->645",
         "default-mobile.handlebars->11->649",
         "default-mobile.handlebars->dialog->3->dialog3->deskkeys->5",
-        "default.handlebars->47->1409",
-        "default.handlebars->47->1413",
+        "default.handlebars->47->1411",
+        "default.handlebars->47->1415",
         "sharing.handlebars->p11->deskarea0->deskarea4->3->deskkeys->3"
       ]
     },
@@ -81896,7 +81898,7 @@
       "zh-cht": "Win32可執行檔案",
       "hu": "Win32 futtatható",
       "xloc": [
-        "default.handlebars->47->1306"
+        "default.handlebars->47->1308"
       ]
     },
     {
@@ -82000,8 +82002,8 @@
       "xloc": [
         "default-mobile.handlebars->11->490",
         "default.handlebars->47->57",
-        "default.handlebars->47->586",
-        "default.handlebars->47->887"
+        "default.handlebars->47->588",
+        "default.handlebars->47->889"
       ]
     },
     {
@@ -82100,7 +82102,7 @@
       "zh-cht": "視窗 (RDP)",
       "hu": "Windows (RDP)",
       "xloc": [
-        "default.handlebars->47->495"
+        "default.handlebars->47->497"
       ]
     },
     {
@@ -82127,7 +82129,7 @@
       "zh-cht": "Windows(卸載)",
       "hu": "Windows (Eltávolítás)",
       "xloc": [
-        "default.handlebars->47->592"
+        "default.handlebars->47->594"
       ]
     },
     {
@@ -82303,7 +82305,7 @@
       "de": "Windows ARM (64bit)",
       "es": "Windows ARM (64bit)",
       "xloc": [
-        "default.handlebars->47->1313"
+        "default.handlebars->47->1315"
       ]
     },
     {
@@ -82341,8 +82343,8 @@
       "de": "Windows ARM (64bit) .exe",
       "es": "Windows ARM-64 (.exe)",
       "xloc": [
-        "default.handlebars->47->618",
-        "default.handlebars->47->658"
+        "default.handlebars->47->620",
+        "default.handlebars->47->660"
       ]
     },
     {
@@ -82351,7 +82353,7 @@
       "pl": "Windows AV",
       "xloc": [
         "default.handlebars->47->342",
-        "default.handlebars->47->373"
+        "default.handlebars->47->374"
       ]
     },
     {
@@ -82378,8 +82380,8 @@
       "zh-cht": "Windows命令提示",
       "hu": "Windows parancssor (CMD)",
       "xloc": [
-        "default.handlebars->47->1256",
-        "default.handlebars->47->791"
+        "default.handlebars->47->1258",
+        "default.handlebars->47->793"
       ]
     },
     {
@@ -82387,7 +82389,7 @@
       "nl": "Windows Defender",
       "xloc": [
         "default-mobile.handlebars->11->752",
-        "default.handlebars->47->943"
+        "default.handlebars->47->945"
       ]
     },
     {
@@ -82395,7 +82397,7 @@
       "nl": "Windows Firewall",
       "xloc": [
         "default.handlebars->47->344",
-        "default.handlebars->47->375"
+        "default.handlebars->47->376"
       ]
     },
     {
@@ -82422,8 +82424,8 @@
       "zh-cht": "Windows MeshAgent",
       "hu": "Windows MeshAgent",
       "xloc": [
-        "default.handlebars->47->2372",
-        "default.handlebars->47->575"
+        "default.handlebars->47->2374",
+        "default.handlebars->47->577"
       ]
     },
     {
@@ -82506,7 +82508,7 @@
       "zh-cht": "Windows路徑",
       "hu": "Windows elérési út",
       "xloc": [
-        "default.handlebars->47->766"
+        "default.handlebars->47->768"
       ]
     },
     {
@@ -82533,8 +82535,8 @@
       "zh-cht": "Windows PowerShell",
       "hu": "Windows PowerShell",
       "xloc": [
-        "default.handlebars->47->1257",
-        "default.handlebars->47->792"
+        "default.handlebars->47->1259",
+        "default.handlebars->47->794"
       ]
     },
     {
@@ -82562,7 +82564,7 @@
       "hu": "Windows Biztonság",
       "xloc": [
         "default-mobile.handlebars->11->743",
-        "default.handlebars->47->934"
+        "default.handlebars->47->936"
       ]
     },
     {
@@ -82570,7 +82572,7 @@
       "nl": "Windows Update",
       "xloc": [
         "default.handlebars->47->343",
-        "default.handlebars->47->374"
+        "default.handlebars->47->375"
       ]
     },
     {
@@ -82597,7 +82599,7 @@
       "zh-cht": "僅Windows",
       "hu": "csak Windows",
       "xloc": [
-        "default.handlebars->47->548"
+        "default.handlebars->47->550"
       ]
     },
     {
@@ -82630,7 +82632,7 @@
       "de": "Windows x86 (32bit)",
       "es": "Windows x86 (32bit)",
       "xloc": [
-        "default.handlebars->47->1312"
+        "default.handlebars->47->1314"
       ]
     },
     {
@@ -82639,7 +82641,7 @@
       "de": "Windows x86 (64bit)",
       "es": "Windows x86 (64bit)",
       "xloc": [
-        "default.handlebars->47->1311"
+        "default.handlebars->47->1313"
       ]
     },
     {
@@ -82648,8 +82650,8 @@
       "de": "Windows x86-32 (.exe)",
       "es": "Windows x86-32 (.exe)",
       "xloc": [
-        "default.handlebars->47->610",
-        "default.handlebars->47->650"
+        "default.handlebars->47->612",
+        "default.handlebars->47->652"
       ]
     },
     {
@@ -82658,8 +82660,8 @@
       "de": "Windows x86-64 (.exe)",
       "es": "Windows x86-64 (.exe)",
       "xloc": [
-        "default.handlebars->47->614",
-        "default.handlebars->47->654"
+        "default.handlebars->47->616",
+        "default.handlebars->47->656"
       ]
     },
     {
@@ -82686,7 +82688,7 @@
       "zh-cht": "工作目錄",
       "hu": "Munkakönyvtár",
       "xloc": [
-        "default.handlebars->47->1374"
+        "default.handlebars->47->1376"
       ]
     },
     {
@@ -82767,7 +82769,7 @@
       "zh-cht": "换行:關",
       "hu": "Sortörés: KI",
       "xloc": [
-        "default.handlebars->47->1559",
+        "default.handlebars->47->1561",
         "sharing.handlebars->11->84"
       ]
     },
@@ -82795,7 +82797,7 @@
       "zh-cht": "换行:開",
       "hu": "Sortörés: BE",
       "xloc": [
-        "default.handlebars->47->1558",
+        "default.handlebars->47->1560",
         "sharing.handlebars->11->83"
       ]
     },
@@ -82823,7 +82825,7 @@
       "zh-cht": "為此裝置寫一個事件",
       "hu": "Bejegyzés írása az eszköz eseménynaplójába.",
       "xloc": [
-        "default.handlebars->47->1000"
+        "default.handlebars->47->1002"
       ]
     },
     {
@@ -82904,8 +82906,8 @@
       "zh-cht": "XMPP",
       "hu": "XMPP",
       "xloc": [
-        "default.handlebars->47->1746",
-        "default.handlebars->47->2969"
+        "default.handlebars->47->1748",
+        "default.handlebars->47->2971"
       ]
     },
     {
@@ -82932,7 +82934,7 @@
       "zh-cht": "XTerm",
       "hu": "XTerm",
       "xloc": [
-        "default.handlebars->47->1026"
+        "default.handlebars->47->1028"
       ]
     },
     {
@@ -82960,7 +82962,7 @@
       "hu": "xhosa",
       "xloc": [
         "default-mobile.handlebars->11->297",
-        "default.handlebars->47->1988",
+        "default.handlebars->47->1990",
         "login2.handlebars->7->194"
       ]
     },
@@ -82971,9 +82973,9 @@
         "default-mobile.handlebars->11->822",
         "default-mobile.handlebars->11->825",
         "default-mobile.handlebars->11->828",
-        "default.handlebars->47->1661",
-        "default.handlebars->47->1664",
-        "default.handlebars->47->1667"
+        "default.handlebars->47->1663",
+        "default.handlebars->47->1666",
+        "default.handlebars->47->1669"
       ]
     },
     {
@@ -83001,7 +83003,7 @@
       "hu": "jiddis",
       "xloc": [
         "default-mobile.handlebars->11->298",
-        "default.handlebars->47->1989",
+        "default.handlebars->47->1991",
         "login2.handlebars->7->195"
       ]
     },
@@ -83115,7 +83117,7 @@
       "nl": "U moet 'chmod +x meshagent' gebruiken en dit bestand uitvoeren.",
       "xloc": [
         "agentinvite.handlebars->3->13",
-        "default.handlebars->47->668"
+        "default.handlebars->47->670"
       ]
     },
     {
@@ -83197,7 +83199,7 @@
       "zh-cht": "YubiKey™OTP",
       "hu": "YubiKey™ OTP",
       "xloc": [
-        "default.handlebars->47->1791"
+        "default.handlebars->47->1793"
       ]
     },
     {
@@ -83252,7 +83254,7 @@
       "zh-cht": "郵編檔案名",
       "hu": "Zip fájlnév",
       "xloc": [
-        "default.handlebars->47->1543",
+        "default.handlebars->47->1545",
         "sharing.handlebars->11->68"
       ]
     },
@@ -83280,7 +83282,7 @@
       "zh-cht": "縮放至適合範圍",
       "hu": "Illeszkedő nagyítás",
       "xloc": [
-        "default.handlebars->47->853"
+        "default.handlebars->47->855"
       ]
     },
     {
@@ -83307,8 +83309,8 @@
       "zh-cht": "放大到一定程度",
       "hu": "Nagyítás",
       "xloc": [
-        "default.handlebars->47->850",
-        "default.handlebars->47->856"
+        "default.handlebars->47->852",
+        "default.handlebars->47->858"
       ]
     },
     {
@@ -83335,8 +83337,8 @@
       "zh-cht": "縮小到一定程度",
       "hu": "Kicsinyítés",
       "xloc": [
-        "default.handlebars->47->851",
-        "default.handlebars->47->857"
+        "default.handlebars->47->853",
+        "default.handlebars->47->859"
       ]
     },
     {
@@ -83347,8 +83349,8 @@
       "pl": "Zulip",
       "es": "Zulip",
       "xloc": [
-        "default.handlebars->47->1750",
-        "default.handlebars->47->2973"
+        "default.handlebars->47->1752",
+        "default.handlebars->47->2975"
       ]
     },
     {
@@ -83376,7 +83378,7 @@
       "hu": "zulu",
       "xloc": [
         "default-mobile.handlebars->11->299",
-        "default.handlebars->47->1990",
+        "default.handlebars->47->1992",
         "login2.handlebars->7->196"
       ]
     },
@@ -83958,7 +83960,7 @@
       "zh-cht": "\\\\'",
       "hu": "\\\\'",
       "xloc": [
-        "default.handlebars->47->3340"
+        "default.handlebars->47->3342"
       ]
     },
     {
@@ -83987,8 +83989,8 @@
       "xloc": [
         "default-mobile.handlebars->11->387",
         "default-mobile.handlebars->11->388",
-        "default.handlebars->47->820",
-        "default.handlebars->47->821"
+        "default.handlebars->47->822",
+        "default.handlebars->47->823"
       ]
     },
     {
@@ -84015,9 +84017,9 @@
       "zh-cht": "加一",
       "hu": "adjon hozzá egyet",
       "xloc": [
-        "default.handlebars->47->363",
-        "default.handlebars->47->365",
-        "default.handlebars->47->367"
+        "default.handlebars->47->364",
+        "default.handlebars->47->366",
+        "default.handlebars->47->368"
       ]
     },
     {
@@ -84044,7 +84046,7 @@
       "zh-cht": "管理員",
       "hu": "Adminisztrátor",
       "xloc": [
-        "default.handlebars->47->504"
+        "default.handlebars->47->506"
       ]
     },
     {
@@ -84081,8 +84083,8 @@
       "xloc": [
         "default-mobile.handlebars->11->391",
         "default-mobile.handlebars->11->392",
-        "default.handlebars->47->824",
-        "default.handlebars->47->825"
+        "default.handlebars->47->826",
+        "default.handlebars->47->827"
       ]
     },
     {
@@ -84109,7 +84111,7 @@
       "zh-cht": "和",
       "hu": "and",
       "xloc": [
-        "default.handlebars->47->802"
+        "default.handlebars->47->804"
       ]
     },
     {
@@ -84193,8 +84195,8 @@
       "xloc": [
         "default-mobile.handlebars->11->385",
         "default-mobile.handlebars->11->386",
-        "default.handlebars->47->818",
-        "default.handlebars->47->819"
+        "default.handlebars->47->820",
+        "default.handlebars->47->821"
       ]
     },
     {
@@ -84284,7 +84286,7 @@
       "zh-cht": "取消幫助",
       "hu": "cancelhelp",
       "xloc": [
-        "default.handlebars->47->441"
+        "default.handlebars->47->443"
       ]
     },
     {
@@ -84458,8 +84460,8 @@
       "zh-cht": "計算機列表.json",
       "hu": "computerlist.json",
       "xloc": [
-        "default.handlebars->47->784",
-        "default.handlebars->47->789"
+        "default.handlebars->47->786",
+        "default.handlebars->47->791"
       ]
     },
     {
@@ -84486,7 +84488,7 @@
       "zh-cht": "config.json",
       "hu": "config.json",
       "xloc": [
-        "default.handlebars->47->2109"
+        "default.handlebars->47->2111"
       ]
     },
     {
@@ -84514,7 +84516,7 @@
       "hu": "console.txt",
       "xloc": [
         "default-mobile.handlebars->11->880",
-        "default.handlebars->47->1720"
+        "default.handlebars->47->1722"
       ]
     },
     {
@@ -84542,7 +84544,7 @@
       "hu": "másolás",
       "xloc": [
         "default-mobile.handlebars->11->368",
-        "default.handlebars->47->2466"
+        "default.handlebars->47->2468"
       ]
     },
     {
@@ -84596,8 +84598,8 @@
       "zh-cht": "描述:",
       "hu": "desc:",
       "xloc": [
-        "default.handlebars->47->826",
-        "default.handlebars->47->827"
+        "default.handlebars->47->828",
+        "default.handlebars->47->829"
       ]
     },
     {
@@ -84651,8 +84653,8 @@
       "zh-cht": "devicelist.csv",
       "hu": "devicelist.csv",
       "xloc": [
-        "default.handlebars->47->780",
-        "default.handlebars->47->788"
+        "default.handlebars->47->782",
+        "default.handlebars->47->790"
       ]
     },
     {
@@ -84679,8 +84681,8 @@
       "zh-cht": "devicelist.json",
       "hu": "devicelist.json",
       "xloc": [
-        "default.handlebars->47->782",
-        "default.handlebars->47->790"
+        "default.handlebars->47->784",
+        "default.handlebars->47->792"
       ]
     },
     {
@@ -84785,8 +84787,8 @@
       "zh-cht": "eventslist.csv",
       "hu": "eventslist.csv",
       "xloc": [
-        "default.handlebars->47->2657",
-        "default.handlebars->47->2662"
+        "default.handlebars->47->2659",
+        "default.handlebars->47->2664"
       ]
     },
     {
@@ -84813,8 +84815,8 @@
       "zh-cht": "eventslist.json",
       "hu": "eventslist.json",
       "xloc": [
-        "default.handlebars->47->2659",
-        "default.handlebars->47->2663"
+        "default.handlebars->47->2661",
+        "default.handlebars->47->2665"
       ]
     },
     {
@@ -84841,7 +84843,7 @@
       "zh-cht": "example@email.com",
       "hu": "example@example.com",
       "xloc": [
-        "default.handlebars->47->544"
+        "default.handlebars->47->546"
       ]
     },
     {
@@ -84896,8 +84898,8 @@
       "zh-cht": "免費",
       "hu": "szabad",
       "xloc": [
-        "default.handlebars->47->3276",
-        "default.handlebars->47->3279"
+        "default.handlebars->47->3278",
+        "default.handlebars->47->3281"
       ]
     },
     {
@@ -84926,8 +84928,8 @@
       "xloc": [
         "default-mobile.handlebars->11->379",
         "default-mobile.handlebars->11->380",
-        "default.handlebars->47->812",
-        "default.handlebars->47->813"
+        "default.handlebars->47->814",
+        "default.handlebars->47->815"
       ]
     },
     {
@@ -84956,8 +84958,8 @@
       "xloc": [
         "default-mobile.handlebars->11->377",
         "default-mobile.handlebars->11->378",
-        "default.handlebars->47->810",
-        "default.handlebars->47->811"
+        "default.handlebars->47->812",
+        "default.handlebars->47->813"
       ]
     },
     {
@@ -85110,8 +85112,8 @@
       "pl": "https://api.callmebot.com/...",
       "es": "https://api.callmebot.com/...",
       "xloc": [
-        "default.handlebars->47->1765",
-        "default.handlebars->47->2988"
+        "default.handlebars->47->1767",
+        "default.handlebars->47->2990"
       ]
     },
     {
@@ -85174,8 +85176,8 @@
       "en": "https://hooks.slack.com/...",
       "nl": "https://hooks.slack.com/...",
       "xloc": [
-        "default.handlebars->47->1769",
-        "default.handlebars->47->2992"
+        "default.handlebars->47->1771",
+        "default.handlebars->47->2994"
       ]
     },
     {
@@ -85226,7 +85228,7 @@
       "zh-cht": "ID、姓名、電子郵件、創建、lastlogin、組、authfactors、siteadmin、useradmin、鎖定",
       "hu": "id, name, email, creation, lastlogin, groups, authfactors, siteadmin, useradmin, locked",
       "xloc": [
-        "default.handlebars->47->2738"
+        "default.handlebars->47->2740"
       ]
     },
     {
@@ -85329,7 +85331,7 @@
       "en": "id,name,rname,host,icon,ip,osdesc,state,groupname,conn,pwr,av,update,firewall,bitlocker,avdetails,tags",
       "nl": "id,name,rname,host,icon,ip,osdesc,state,groupname,conn,pwr,av,update,firewall,bitlocker,avdetails,tags",
       "xloc": [
-        "default.handlebars->47->787"
+        "default.handlebars->47->789"
       ]
     },
     {
@@ -85358,8 +85360,8 @@
       "xloc": [
         "default-mobile.handlebars->11->375",
         "default-mobile.handlebars->11->376",
-        "default.handlebars->47->808",
-        "default.handlebars->47->809"
+        "default.handlebars->47->810",
+        "default.handlebars->47->811"
       ]
     },
     {
@@ -85467,7 +85469,7 @@
       "zh-cht": "k max,默認為空白",
       "hu": " k max, alapértelmezetten üres",
       "xloc": [
-        "default.handlebars->47->2766"
+        "default.handlebars->47->2768"
       ]
     },
     {
@@ -85574,7 +85576,7 @@
       "hu": "macOS",
       "xloc": [
         "default-mobile.handlebars->11->494",
-        "default.handlebars->47->891"
+        "default.handlebars->47->893"
       ]
     },
     {
@@ -85625,7 +85627,7 @@
       "zh-cht": "macOS (SSH/SCP/VNC)",
       "hu": "macOS (SSH/SCP/VNC)",
       "xloc": [
-        "default.handlebars->47->497"
+        "default.handlebars->47->499"
       ]
     },
     {
@@ -85700,7 +85702,7 @@
       "zh-cht": "macOS ARM (64位)",
       "hu": "macOS ARM (64bit)",
       "xloc": [
-        "default.handlebars->47->1317"
+        "default.handlebars->47->1319"
       ]
     },
     {
@@ -85727,7 +85729,7 @@
       "zh-cht": "macOS x86 (64位)",
       "hu": "macOS x86 (64bit)",
       "xloc": [
-        "default.handlebars->47->1316"
+        "default.handlebars->47->1318"
       ]
     },
     {
@@ -85819,7 +85821,7 @@
       "hu": "MeshAgent",
       "xloc": [
         "agentinvite.handlebars->3->15",
-        "default.handlebars->47->670"
+        "default.handlebars->47->672"
       ]
     },
     {
@@ -85847,7 +85849,7 @@
       "hu": "mozgat",
       "xloc": [
         "default-mobile.handlebars->11->369",
-        "default.handlebars->47->2467"
+        "default.handlebars->47->2469"
       ]
     },
     {
@@ -85930,8 +85932,8 @@
       "pl": "ntfy",
       "es": "ntfy",
       "xloc": [
-        "default.handlebars->47->1749",
-        "default.handlebars->47->2972"
+        "default.handlebars->47->1751",
+        "default.handlebars->47->2974"
       ]
     },
     {
@@ -86036,7 +86038,7 @@
       "zh-cht": "或者",
       "hu": "or",
       "xloc": [
-        "default.handlebars->47->803"
+        "default.handlebars->47->805"
       ]
     },
     {
@@ -86065,8 +86067,8 @@
       "xloc": [
         "default-mobile.handlebars->11->389",
         "default-mobile.handlebars->11->390",
-        "default.handlebars->47->822",
-        "default.handlebars->47->823"
+        "default.handlebars->47->824",
+        "default.handlebars->47->825"
       ]
     },
     {
@@ -86199,7 +86201,7 @@
       "zh-cht": "servererrors.txt",
       "hu": "servererrors.txt",
       "xloc": [
-        "default.handlebars->47->2106"
+        "default.handlebars->47->2108"
       ]
     },
     {
@@ -86226,15 +86228,15 @@
       "zh-cht": "servertrace.csv",
       "hu": "servertrace.csv",
       "xloc": [
-        "default.handlebars->47->3334"
+        "default.handlebars->47->3336"
       ]
     },
     {
       "en": "service_",
       "nl": "service_",
       "xloc": [
-        "default.handlebars->47->1458",
-        "default.handlebars->47->1461"
+        "default.handlebars->47->1460",
+        "default.handlebars->47->1463"
       ]
     },
     {
@@ -86287,8 +86289,8 @@
       "xloc": [
         "default-mobile.handlebars->11->383",
         "default-mobile.handlebars->11->384",
-        "default.handlebars->47->816",
-        "default.handlebars->47->817"
+        "default.handlebars->47->818",
+        "default.handlebars->47->819"
       ]
     },
     {
@@ -86317,8 +86319,8 @@
       "xloc": [
         "default-mobile.handlebars->11->381",
         "default-mobile.handlebars->11->382",
-        "default.handlebars->47->814",
-        "default.handlebars->47->815"
+        "default.handlebars->47->816",
+        "default.handlebars->47->817"
       ]
     },
     {
@@ -86345,7 +86347,7 @@
       "zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
       "hu": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
       "xloc": [
-        "default.handlebars->47->3308"
+        "default.handlebars->47->3310"
       ]
     },
     {
@@ -86372,7 +86374,7 @@
       "zh-cht": "時間,來源,訊息",
       "hu": "time, source, message",
       "xloc": [
-        "default.handlebars->47->3333"
+        "default.handlebars->47->3335"
       ]
     },
     {
@@ -86436,8 +86438,8 @@
       "zh-cht": "總",
       "hu": "összesen",
       "xloc": [
-        "default.handlebars->47->3277",
-        "default.handlebars->47->3280"
+        "default.handlebars->47->3279",
+        "default.handlebars->47->3282"
       ]
     },
     {
@@ -86470,7 +86472,7 @@
     {
       "en": "true",
       "xloc": [
-        "default.handlebars->47->2721"
+        "default.handlebars->47->2723"
       ]
     },
     {
@@ -86499,8 +86501,8 @@
       "xloc": [
         "default-mobile.handlebars->11->373",
         "default-mobile.handlebars->11->374",
-        "default.handlebars->47->806",
-        "default.handlebars->47->807"
+        "default.handlebars->47->808",
+        "default.handlebars->47->809"
       ]
     },
     {
@@ -86553,8 +86555,8 @@
       "xloc": [
         "default-mobile.handlebars->11->371",
         "default-mobile.handlebars->11->372",
-        "default.handlebars->47->804",
-        "default.handlebars->47->805"
+        "default.handlebars->47->806",
+        "default.handlebars->47->807"
       ]
     },
     {
@@ -86581,8 +86583,8 @@
       "zh-cht": "userlist.csv",
       "hu": "userlist.csv",
       "xloc": [
-        "default.handlebars->47->2734",
-        "default.handlebars->47->2739"
+        "default.handlebars->47->2736",
+        "default.handlebars->47->2741"
       ]
     },
     {
@@ -86609,8 +86611,8 @@
       "zh-cht": "userlist.json",
       "hu": "userlist.json",
       "xloc": [
-        "default.handlebars->47->2736",
-        "default.handlebars->47->2740"
+        "default.handlebars->47->2738",
+        "default.handlebars->47->2742"
       ]
     },
     {
@@ -86622,8 +86624,8 @@
       "de": "benutzername@beispiel.de",
       "es": "nombredeusuario@ejemplo.com",
       "xloc": [
-        "default.handlebars->47->1768",
-        "default.handlebars->47->2991"
+        "default.handlebars->47->1770",
+        "default.handlebars->47->2993"
       ]
     },
     {
@@ -86635,8 +86637,8 @@
       "de": "benutzername@server.de",
       "es": "nombredeusuario@servidor.com",
       "xloc": [
-        "default.handlebars->47->1764",
-        "default.handlebars->47->2987"
+        "default.handlebars->47->1766",
+        "default.handlebars->47->2989"
       ]
     },
     {
@@ -86663,7 +86665,7 @@
       "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息",
       "hu": "utc, time, type, action, user, device, message",
       "xloc": [
-        "default.handlebars->47->2661"
+        "default.handlebars->47->2663"
       ]
     },
     {
@@ -86740,8 +86742,8 @@
       "de": "x86 32bit Version des MeshAgent",
       "es": "version x86 32bit del MeshAgent",
       "xloc": [
-        "default.handlebars->47->609",
-        "default.handlebars->47->649"
+        "default.handlebars->47->611",
+        "default.handlebars->47->651"
       ]
     },
     {
@@ -86751,8 +86753,8 @@
       "de": "x86 64bit Version des MeshAgent",
       "es": "version x86 64bit del MeshAgent",
       "xloc": [
-        "default.handlebars->47->613",
-        "default.handlebars->47->653"
+        "default.handlebars->47->615",
+        "default.handlebars->47->655"
       ]
     },
     {
@@ -86781,8 +86783,8 @@
       "xloc": [
         "default-mobile.handlebars->11->840",
         "default-mobile.handlebars->11->846",
-        "default.handlebars->47->1679",
-        "default.handlebars->47->1685"
+        "default.handlebars->47->1681",
+        "default.handlebars->47->1687"
       ]
     },
     {
@@ -86932,8 +86934,8 @@
       "zh-cht": "{0} Gb",
       "hu": "{0} Gb",
       "xloc": [
-        "default.handlebars->47->2439",
-        "default.handlebars->47->2444"
+        "default.handlebars->47->2441",
+        "default.handlebars->47->2446"
       ]
     },
     {
@@ -86984,9 +86986,9 @@
       "zh-cht": "{0} Kb",
       "hu": "{0} Kb",
       "xloc": [
-        "default.handlebars->47->2437",
-        "default.handlebars->47->2442",
-        "default.handlebars->47->3072"
+        "default.handlebars->47->2439",
+        "default.handlebars->47->2444",
+        "default.handlebars->47->3074"
       ]
     },
     {
@@ -87039,10 +87041,10 @@
       "xloc": [
         "default-mobile.handlebars->11->834",
         "default-mobile.handlebars->11->851",
-        "default.handlebars->47->1673",
-        "default.handlebars->47->1690",
-        "default.handlebars->47->2438",
-        "default.handlebars->47->2443"
+        "default.handlebars->47->1675",
+        "default.handlebars->47->1692",
+        "default.handlebars->47->2440",
+        "default.handlebars->47->2445"
       ]
     },
     {
@@ -87070,7 +87072,7 @@
       "hu": "{0} Mb, {1} Mhz",
       "xloc": [
         "default-mobile.handlebars->11->832",
-        "default.handlebars->47->1671"
+        "default.handlebars->47->1673"
       ]
     },
     {
@@ -87121,7 +87123,7 @@
       "zh-cht": "{0}個活躍節",
       "hu": "{0} actív munkamenet",
       "xloc": [
-        "default.handlebars->47->2960"
+        "default.handlebars->47->2962"
       ]
     },
     {
@@ -87148,8 +87150,8 @@
       "zh-cht": "{0} b",
       "hu": "{0} b",
       "xloc": [
-        "default.handlebars->47->2436",
-        "default.handlebars->47->2441"
+        "default.handlebars->47->2438",
+        "default.handlebars->47->2443"
       ]
     },
     {
@@ -87177,8 +87179,8 @@
       "hu": "{0} bytes",
       "xloc": [
         "default-mobile.handlebars->11->357",
-        "default.handlebars->47->2452",
-        "default.handlebars->47->3093",
+        "default.handlebars->47->2454",
+        "default.handlebars->47->3095",
         "download.handlebars->3->2",
         "download2.handlebars->5->2",
         "sharing.handlebars->11->97"
@@ -87208,7 +87210,7 @@
       "zh-cht": "剩餘{0}個字節",
       "hu": "{0} byte maradt",
       "xloc": [
-        "default.handlebars->47->2431"
+        "default.handlebars->47->2433"
       ]
     },
     {
@@ -87259,7 +87261,7 @@
       "zh-cht": "{0}個連接",
       "hu": "{0} kapcsolat",
       "xloc": [
-        "default.handlebars->47->1379",
+        "default.handlebars->47->1381",
         "sharing.handlebars->11->16"
       ]
     },
@@ -87287,7 +87289,7 @@
       "zh-cht": "{0} 從 {1} 到 {2}。",
       "hu": "{0} {1} és {2} között.",
       "xloc": [
-        "default.handlebars->47->1274"
+        "default.handlebars->47->1276"
       ]
     },
     {
@@ -87314,7 +87316,7 @@
       "zh-cht": "剩餘{0} GB",
       "hu": "{0} gigabyte maradt",
       "xloc": [
-        "default.handlebars->47->2434"
+        "default.handlebars->47->2436"
       ]
     },
     {
@@ -87341,7 +87343,7 @@
       "zh-cht": "{0}個群組",
       "hu": "{0} csoport",
       "xloc": [
-        "default.handlebars->47->2916"
+        "default.handlebars->47->2918"
       ]
     },
     {
@@ -87419,7 +87421,7 @@
       "zh-cht": "剩餘{0}千字節",
       "hu": "{0} kilobyte maradt",
       "xloc": [
-        "default.handlebars->47->2432"
+        "default.handlebars->47->2434"
       ]
     },
     {
@@ -87475,7 +87477,7 @@
       "zh-cht": "剩餘{0}兆字節",
       "hu": "{0} megabyte maradt",
       "xloc": [
-        "default.handlebars->47->2433"
+        "default.handlebars->47->2435"
       ]
     },
     {
@@ -87607,7 +87609,7 @@
       "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...",
       "hu": "{0} további felhasználó nem jelenik meg, használja a keresőmezőt a felhasználók kereséséhez...",
       "xloc": [
-        "default.handlebars->47->2671"
+        "default.handlebars->47->2673"
       ]
     },
     {
@@ -87634,7 +87636,7 @@
       "zh-cht": "{0}個節點",
       "hu": "{0} node-ok",
       "xloc": [
-        "default.handlebars->47->676"
+        "default.handlebars->47->678"
       ]
     },
     {
@@ -88003,7 +88005,7 @@
       "zh-cht": "{0} 個選定的設備處於離線狀態。",
       "hu": "{0} kiválasztott eszköz offline állapotban van.",
       "xloc": [
-        "default.handlebars->47->742"
+        "default.handlebars->47->744"
       ]
     },
     {
@@ -88030,7 +88032,7 @@
       "zh-cht": "{0} 個選定的設備在線。",
       "hu": "{0} kiválasztott eszköz online állapotban van.",
       "xloc": [
-        "default.handlebars->47->740"
+        "default.handlebars->47->742"
       ]
     },
     {
@@ -88064,14 +88066,14 @@
         "default-mobile.handlebars->11->426",
         "default-mobile.handlebars->11->430",
         "default-mobile.handlebars->11->434",
-        "default.handlebars->47->2675",
-        "default.handlebars->47->445",
-        "default.handlebars->47->448",
-        "default.handlebars->47->452",
-        "default.handlebars->47->456",
-        "default.handlebars->47->460",
-        "default.handlebars->47->464",
-        "default.handlebars->47->468"
+        "default.handlebars->47->2677",
+        "default.handlebars->47->447",
+        "default.handlebars->47->450",
+        "default.handlebars->47->454",
+        "default.handlebars->47->458",
+        "default.handlebars->47->462",
+        "default.handlebars->47->466",
+        "default.handlebars->47->470"
       ]
     },
     {
@@ -88098,7 +88100,7 @@
       "zh-cht": "{0}设置(.msh)",
       "hu": "{0} settings (.msh)",
       "xloc": [
-        "default.handlebars->47->621"
+        "default.handlebars->47->623"
       ]
     },
     {
@@ -88262,7 +88264,7 @@
       "zh-cht": "{0}個用戶",
       "hu": "{0} felhasználó",
       "xloc": [
-        "default.handlebars->47->471"
+        "default.handlebars->47->473"
       ]
     },
     {
@@ -88339,8 +88341,8 @@
       "xloc": [
         "default-mobile.handlebars->11->838",
         "default-mobile.handlebars->11->844",
-        "default.handlebars->47->1677",
-        "default.handlebars->47->1683"
+        "default.handlebars->47->1679",
+        "default.handlebars->47->1685"
       ]
     },
     {
@@ -88367,8 +88369,8 @@
       "zh-cht": "{0}、{1} {2} 分鐘",
       "hu": "{0}, {1} kezdve {2} perc",
       "xloc": [
-        "default.handlebars->47->1084",
-        "default.handlebars->47->2198"
+        "default.handlebars->47->1086",
+        "default.handlebars->47->2200"
       ]
     },
     {
@@ -88395,8 +88397,8 @@
       "zh-cht": "{0}、{1} {2} 分鐘",
       "hu": "{0}, {1} kezdve {2} perc",
       "xloc": [
-        "default.handlebars->47->1085",
-        "default.handlebars->47->2199"
+        "default.handlebars->47->1087",
+        "default.handlebars->47->2201"
       ]
     },
     {
@@ -88423,8 +88425,8 @@
       "zh-cht": "{0},{1}至{2}",
       "hu": "{0}, {1} - {2}",
       "xloc": [
-        "default.handlebars->47->1083",
-        "default.handlebars->47->2197"
+        "default.handlebars->47->1085",
+        "default.handlebars->47->2199"
       ]
     },
     {
@@ -88505,7 +88507,7 @@
       "zh-cht": "{0}k在1檔案內。最多{1}k",
       "hu": "{0}k 1 fájlban. {1}k maximum",
       "xloc": [
-        "default.handlebars->47->2446"
+        "default.handlebars->47->2448"
       ]
     },
     {
@@ -88532,7 +88534,7 @@
       "zh-cht": "{1}k在{0}個檔案中。最多{2}k",
       "hu": "{0}k {1} fájlban. maximum {2}k",
       "xloc": [
-        "default.handlebars->47->2445"
+        "default.handlebars->47->2447"
       ]
     },
     {
diff --git a/views/default.handlebars b/views/default.handlebars
index c53a2632..cd80c805 100644
--- a/views/default.handlebars
+++ b/views/default.handlebars
@@ -1,4 +1,4 @@
-
+
 
 
      ' + "Windows AV"; }
                         if (deviceViewSettings.devsCols.indexOf('windowsupdate') >= 0) { colums += ' ' + "Windows Update"; }
                         if (deviceViewSettings.devsCols.indexOf('windowsfirewall') >= 0) { colums += ' ' + "Windows Firewall"; }
+                        if (deviceViewSettings.devsCols.indexOf('lastbootuptime') >= 0) { colums += ' ' + "Last Boot Up Time"; }
                         if (deviceViewSettings.devsCols.indexOf('links') >= 0) { colums += ' ' + "Links"; }
                         if (deviceViewSettings.devsCols.indexOf('user') >= 0) { colums += ' ' + "User"; }
                         if (deviceViewSettings.devsCols.indexOf('ip') >= 0) { colums += ' ' + "Address"; }
@@ -4832,6 +4835,9 @@
                 if (deviceViewSettings.devsCols.indexOf('windowsfirewall') >= 0) { // Windows Firewall
                     r += ' ' + ((node.wsc && node.wsc.firewall != null) ? (node.wsc.firewall == 'OK' ? "OK " : "BAD ") : "");
                 }
+                if (deviceViewSettings.devsCols.indexOf('lastbootuptime') >= 0) { // Last Boot Up Time
+                    r += ' ' + ((node.lastbootuptime != null) ? printDateTime(new Date(node.lastbootuptime)) : "");
+                }
                 if (deviceViewSettings.devsCols.indexOf('links') >= 0) { r += ' ' + getShortRouterLinks(node); } // Links
                 if (deviceViewSettings.devsCols.indexOf('user') >= 0) { r += ' ' + getUserShortStr(node); } // User
                 if (deviceViewSettings.devsCols.indexOf('ip') >= 0) { var ip = ''; if (node.mtype == 3) { ip = node.host; } else if (node.ip) { ip = node.ip; } r += ' ' + ip; } // IP address
@@ -11928,28 +11934,12 @@
                 }
                 if(hardware.linux && hardware.linux.LastBootUpTime){
                     var lastBootUpTime = new Date(hardware.linux.LastBootUpTime);
-                    var thedate = {
-                        year: lastBootUpTime.getFullYear(),
-                        month: lastBootUpTime.getMonth(),
-                        day: lastBootUpTime.getDate(),
-                        hours: lastBootUpTime.getHours(),
-                        minutes: lastBootUpTime.getMinutes(),
-                        seconds: lastBootUpTime.getSeconds()
-                    };
-                    const date = printDateTime(new Date(thedate.year, thedate.month, thedate.day, thedate.hours, thedate.minutes, thedate.seconds));
+                    const date = printDateTime(lastBootUpTime);
                     x += addDetailItem("Last Boot Up Time", date);
                 }
                 if(hardware.darwin && hardware.darwin.LastBootUpTime){
                     var lastBootUpTime = new Date(hardware.darwin.LastBootUpTime * 1000); // must times by 1000 even tho timestamp is correct?
-                    var thedate = {
-                        year: lastBootUpTime.getFullYear(),
-                        month: lastBootUpTime.getMonth(),
-                        day: lastBootUpTime.getDate(),
-                        hours: lastBootUpTime.getHours(),
-                        minutes: lastBootUpTime.getMinutes(),
-                        seconds: lastBootUpTime.getSeconds()
-                    };
-                    const date = printDateTime(new Date(thedate.year, thedate.month, thedate.day, thedate.hours, thedate.minutes, thedate.seconds));
+                    const date = printDateTime(lastBootUpTime);
                     x += addDetailItem("Last Boot Up Time", date);
                 }
                 if (x != '') { sections.push({ name: "Operating System", html: x, img: 'software64.png'}); }
@@ -15044,7 +15034,8 @@
             155: "Denied user login from {0}, {1}, {2}",
             156: "Verified messaging account of user {0}",
             157: "Removed messaging account of user {0}",
-            158: "Displaying alert box, title=\"{0}\", message=\"{1}\""
+            158: "Displaying alert box, title=\"{0}\", message=\"{1}\"",
+            159: "Device Powered On"
         };
 
         var eventsShortMessageId = {