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": " ",
"pl": " ",
"xloc": [
- "default.handlebars->47->632"
+ "default.handlebars->47->634"
]
},
{
@@ -5290,7 +5290,7 @@
"nl": " ",
"pl": " ",
"xloc": [
- "default.handlebars->47->633"
+ "default.handlebars->47->635"
]
},
{
@@ -5369,9 +5369,9 @@
"hu": "ACM",
"xloc": [
"default-mobile.handlebars->11->504",
- "default.handlebars->47->2181",
- "default.handlebars->47->432",
- "default.handlebars->47->903"
+ "default.handlebars->47->2183",
+ "default.handlebars->47->434",
+ "default.handlebars->47->905"
]
},
{
@@ -5446,8 +5446,8 @@
"zh-cht": "AMT",
"hu": "AMT",
"xloc": [
- "default.handlebars->47->409",
- "default.handlebars->47->710"
+ "default.handlebars->47->411",
+ "default.handlebars->47->712"
]
},
{
@@ -5455,7 +5455,7 @@
"nl": "AMT Host",
"pl": "Host AMT",
"xloc": [
- "default.handlebars->47->380"
+ "default.handlebars->47->382"
]
},
{
@@ -5463,7 +5463,7 @@
"nl": "AMT status",
"pl": "Stan AMT",
"xloc": [
- "default.handlebars->47->381"
+ "default.handlebars->47->383"
]
},
{
@@ -5490,7 +5490,7 @@
"zh-cht": "AMT操作系統",
"hu": "AMT-OS",
"xloc": [
- "default.handlebars->47->3283"
+ "default.handlebars->47->3285"
]
},
{
@@ -5517,7 +5517,7 @@
"zh-cht": "AMT-Redir",
"hu": "AMT-Redir",
"xloc": [
- "default.handlebars->47->3145"
+ "default.handlebars->47->3147"
]
},
{
@@ -5544,14 +5544,14 @@
"zh-cht": "AMT-WSMAN",
"hu": "AMT-WSMAN",
"xloc": [
- "default.handlebars->47->3144"
+ "default.handlebars->47->3146"
]
},
{
"en": "APK",
"nl": "APK",
"xloc": [
- "default.handlebars->47->637"
+ "default.handlebars->47->639"
]
},
{
@@ -5560,7 +5560,7 @@
"pl": "Wersja APK MeshAgent",
"xloc": [
"default-mobile.handlebars->11->925",
- "default.handlebars->47->636"
+ "default.handlebars->47->638"
]
},
{
@@ -5570,8 +5570,8 @@
"de": "ARM 64bit Version des MeshAgents",
"es": "Version ARM 64bit de el MeshAgent",
"xloc": [
- "default.handlebars->47->617",
- "default.handlebars->47->657"
+ "default.handlebars->47->619",
+ "default.handlebars->47->659"
]
},
{
@@ -5740,8 +5740,8 @@
"xloc": [
"default-mobile.handlebars->11->731",
"default-mobile.handlebars->11->733",
- "default.handlebars->47->922",
- "default.handlebars->47->924"
+ "default.handlebars->47->924",
+ "default.handlebars->47->926"
]
},
{
@@ -5769,7 +5769,7 @@
"hu": "Hozzáférés megtagadva",
"xloc": [
"default-mobile.handlebars->11->876",
- "default.handlebars->47->1716"
+ "default.handlebars->47->1718"
]
},
{
@@ -5852,7 +5852,7 @@
"zh-cht": "存取伺服器檔案",
"hu": "Hozzáférés a kiszolgálófájlokhoz",
"xloc": [
- "default.handlebars->47->2871"
+ "default.handlebars->47->2873"
]
},
{
@@ -5969,11 +5969,11 @@
"default-mobile.handlebars->11->471",
"default-mobile.handlebars->11->473",
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
- "default.handlebars->47->2046",
"default.handlebars->47->2048",
- "default.handlebars->47->3337",
- "default.handlebars->47->863",
- "default.handlebars->47->865"
+ "default.handlebars->47->2050",
+ "default.handlebars->47->3339",
+ "default.handlebars->47->865",
+ "default.handlebars->47->867"
]
},
{
@@ -6001,7 +6001,7 @@
"hu": "Fiókbeállítások",
"xloc": [
"default-mobile.handlebars->11->983",
- "default.handlebars->47->3208"
+ "default.handlebars->47->3210"
]
},
{
@@ -6068,7 +6068,7 @@
"hu": "Fiók megváltozott: LDAP-adatokkal való szinkronizálás.",
"es": "La cuenta cambio a ser actualizada con los datos de LDAP.",
"xloc": [
- "default.handlebars->47->2625"
+ "default.handlebars->47->2627"
]
},
{
@@ -6095,7 +6095,7 @@
"zh-cht": "帳戶已更改:{0}",
"hu": "Fiók megváltozott: {0}",
"xloc": [
- "default.handlebars->47->2537"
+ "default.handlebars->47->2539"
]
},
{
@@ -6122,7 +6122,7 @@
"zh-cht": "創建帳戶,電子郵件為{0}",
"hu": "Fiók létrehozva, az e-mail címe {0} ",
"xloc": [
- "default.handlebars->47->2536"
+ "default.handlebars->47->2538"
]
},
{
@@ -6149,7 +6149,7 @@
"zh-cht": "已創建帳戶,名稱為 {0}。",
"hu": "Fiók létrehozva, név: {0}. ",
"xloc": [
- "default.handlebars->47->2599"
+ "default.handlebars->47->2601"
]
},
{
@@ -6176,7 +6176,7 @@
"zh-cht": "帳戶已創建,用戶名是{0}",
"hu": "Fiók létrehozva, felhasználónév {0} ",
"xloc": [
- "default.handlebars->47->2535"
+ "default.handlebars->47->2537"
]
},
{
@@ -6205,8 +6205,8 @@
"xloc": [
"default-mobile.handlebars->11->66",
"default.handlebars->47->210",
- "default.handlebars->47->2690",
- "default.handlebars->47->2868"
+ "default.handlebars->47->2692",
+ "default.handlebars->47->2870"
]
},
{
@@ -6234,7 +6234,7 @@
"hu": "Elérte a fiókkorlátot.",
"xloc": [
"default-mobile.handlebars->11->995",
- "default.handlebars->47->3220",
+ "default.handlebars->47->3222",
"login-mobile.handlebars->5->6",
"login.handlebars->5->8",
"login2.handlebars->7->207"
@@ -6293,7 +6293,7 @@
"zh-cht": "帳號登錄",
"hu": "Bejelentkezés a fiókba",
"xloc": [
- "default.handlebars->47->2472"
+ "default.handlebars->47->2474"
]
},
{
@@ -6320,7 +6320,7 @@
"zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
"hu": "Bejelentkezés a fiókba innen: {0}, {1}, {2}",
"xloc": [
- "default.handlebars->47->2578"
+ "default.handlebars->47->2580"
]
},
{
@@ -6332,7 +6332,7 @@
"hu": "Fiók bejelentkezési token rekordok",
"es": "Registro de Tokens de inicio de sesion",
"xloc": [
- "default.handlebars->47->3187"
+ "default.handlebars->47->3189"
]
},
{
@@ -6359,7 +6359,7 @@
"zh-cht": "帳戶登出",
"hu": "Fiók kijelentkezés",
"xloc": [
- "default.handlebars->47->2473"
+ "default.handlebars->47->2475"
]
},
{
@@ -6415,7 +6415,7 @@
"zh-cht": "帳戶密碼已更改:{0}",
"hu": "Fiók jelszava megváltozott: {0}",
"xloc": [
- "default.handlebars->47->2545"
+ "default.handlebars->47->2547"
]
},
{
@@ -6442,7 +6442,7 @@
"zh-cht": "帳戶已刪除",
"hu": "Fiók eltávolítva",
"xloc": [
- "default.handlebars->47->2534"
+ "default.handlebars->47->2536"
]
},
{
@@ -6497,7 +6497,7 @@
"hu": "Művelet",
"xloc": [
"default-mobile.handlebars->11->882",
- "default.handlebars->47->1722",
+ "default.handlebars->47->1724",
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
]
},
@@ -6525,8 +6525,8 @@
"zh-cht": "動作檔案",
"hu": "Művelet fájl",
"xloc": [
- "default.handlebars->47->1324",
- "default.handlebars->47->1326"
+ "default.handlebars->47->1326",
+ "default.handlebars->47->1328"
]
},
{
@@ -6557,7 +6557,7 @@
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
- "default.handlebars->47->995",
+ "default.handlebars->47->997",
"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"
@@ -6587,7 +6587,7 @@
"zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾®AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
"hu": "Aktiválja az Intel® AMT-t Admin Control Mode (ACM) üzemmódban egy FAT formátumú USB pendrive segítségével. Helyezze rá a setup.bin fájlt, és indítson el egy vagy több számítógépet ezzel az USB pendrive-val.",
"xloc": [
- "default.handlebars->47->520"
+ "default.handlebars->47->522"
]
},
{
@@ -6668,7 +6668,7 @@
"zh-cht": "如果ACM失敗,則激活到CCM",
"hu": "Aktiválja a CCM-et, ha az ACM meghiúsul",
"xloc": [
- "default.handlebars->47->2236"
+ "default.handlebars->47->2238"
]
},
{
@@ -6698,9 +6698,9 @@
"default-mobile.handlebars->11->499",
"default-mobile.handlebars->11->501",
"default-mobile.handlebars->11->792",
- "default.handlebars->47->1631",
- "default.handlebars->47->896",
- "default.handlebars->47->898"
+ "default.handlebars->47->1633",
+ "default.handlebars->47->898",
+ "default.handlebars->47->900"
]
},
{
@@ -6754,8 +6754,8 @@
"zh-cht": "主動設備共享",
"hu": "Atív eszközmegosztás",
"xloc": [
- "default.handlebars->47->1071",
- "default.handlebars->47->2185"
+ "default.handlebars->47->1073",
+ "default.handlebars->47->2187"
]
},
{
@@ -6782,7 +6782,7 @@
"zh-cht": "活動登錄令牌",
"hu": "Aktív bejelentkezési tokenek",
"xloc": [
- "default.handlebars->47->2077"
+ "default.handlebars->47->2079"
]
},
{
@@ -6809,7 +6809,7 @@
"zh-cht": "活躍用戶",
"hu": "Aktív felhasználó",
"xloc": [
- "default.handlebars->47->949"
+ "default.handlebars->47->951"
]
},
{
@@ -6836,7 +6836,7 @@
"zh-cht": "活躍用戶",
"hu": "Aktív felhasználók",
"xloc": [
- "default.handlebars->47->948"
+ "default.handlebars->47->950"
]
},
{
@@ -6888,8 +6888,8 @@
"hu": "Hozzáadás",
"xloc": [
"default-mobile.handlebars->11->650",
- "default.handlebars->47->1414",
- "default.handlebars->47->1419"
+ "default.handlebars->47->1416",
+ "default.handlebars->47->1421"
]
},
{
@@ -6964,8 +6964,8 @@
"zh-cht": "新增代理",
"hu": "Agent hozzáadása",
"xloc": [
- "default.handlebars->47->2175",
- "default.handlebars->47->485"
+ "default.handlebars->47->2177",
+ "default.handlebars->47->487"
]
},
{
@@ -7016,10 +7016,10 @@
"zh-cht": "新增裝置",
"hu": "Eszköz hozzáadása",
"xloc": [
- "default.handlebars->47->2179",
- "default.handlebars->47->2843",
- "default.handlebars->47->3037",
- "default.handlebars->47->489"
+ "default.handlebars->47->2181",
+ "default.handlebars->47->2845",
+ "default.handlebars->47->3039",
+ "default.handlebars->47->491"
]
},
{
@@ -7046,7 +7046,7 @@
"zh-cht": "新增裝置日誌",
"hu": "Eszköz esemény hozzáadása",
"xloc": [
- "default.handlebars->47->1157"
+ "default.handlebars->47->1159"
]
},
{
@@ -7073,10 +7073,10 @@
"zh-cht": "新增裝置群",
"hu": "Eszközcsoport hozzáadása",
"xloc": [
- "default.handlebars->47->2322",
- "default.handlebars->47->2837",
- "default.handlebars->47->3025",
- "default.handlebars->47->385"
+ "default.handlebars->47->2324",
+ "default.handlebars->47->2839",
+ "default.handlebars->47->3027",
+ "default.handlebars->47->387"
]
},
{
@@ -7103,7 +7103,7 @@
"zh-cht": "新增裝置群權限",
"hu": "Eszközcsoport engedélyek hozzáadása",
"xloc": [
- "default.handlebars->47->2319"
+ "default.handlebars->47->2321"
]
},
{
@@ -7130,8 +7130,8 @@
"zh-cht": "新增裝置權限",
"hu": "Eszköz engedélyek hozzáadása",
"xloc": [
- "default.handlebars->47->2324",
- "default.handlebars->47->2326"
+ "default.handlebars->47->2326",
+ "default.handlebars->47->2328"
]
},
{
@@ -7182,7 +7182,7 @@
"zh-cht": "新增Intel® AMT裝置",
"hu": "Intel® AMT eszköz hozzáadása",
"xloc": [
- "default.handlebars->47->509"
+ "default.handlebars->47->511"
]
},
{
@@ -7236,7 +7236,7 @@
"zh-cht": "新增本地",
"hu": "Helyi hozzáadása",
"xloc": [
- "default.handlebars->47->479"
+ "default.handlebars->47->481"
]
},
{
@@ -7287,7 +7287,7 @@
"zh-cht": "新增成員身份",
"hu": "Hozzáadás Felhasználói Csoporthoz",
"xloc": [
- "default.handlebars->47->3057"
+ "default.handlebars->47->3059"
]
},
{
@@ -7314,7 +7314,7 @@
"zh-cht": "新增 Mesh Agent",
"hu": "Mesh Agent hozzáadása",
"xloc": [
- "default.handlebars->47->674"
+ "default.handlebars->47->676"
]
},
{
@@ -7365,8 +7365,8 @@
"zh-cht": "新增安全密鑰",
"hu": "Biztonsági kulcs hozzáadása",
"xloc": [
- "default.handlebars->47->1792",
- "default.handlebars->47->1793",
+ "default.handlebars->47->1794",
+ "default.handlebars->47->1795",
"default.handlebars->47->241",
"default.handlebars->47->243",
"default.handlebars->47->246",
@@ -7398,7 +7398,7 @@
"hu": "Felhasználó hozzáadása",
"xloc": [
"default-mobile.handlebars->11->907",
- "default.handlebars->47->1063"
+ "default.handlebars->47->1065"
]
},
{
@@ -7425,7 +7425,7 @@
"zh-cht": "新增用戶裝置權限",
"hu": "Felhasználói eszköz engedélyek hozzáadása",
"xloc": [
- "default.handlebars->47->2329"
+ "default.handlebars->47->2331"
]
},
{
@@ -7452,10 +7452,10 @@
"zh-cht": "新增用戶群",
"hu": "Felhasználói csoport hozzáadása",
"xloc": [
- "default.handlebars->47->1064",
- "default.handlebars->47->2169",
- "default.handlebars->47->2321",
- "default.handlebars->47->3031"
+ "default.handlebars->47->1066",
+ "default.handlebars->47->2171",
+ "default.handlebars->47->2323",
+ "default.handlebars->47->3033"
]
},
{
@@ -7482,7 +7482,7 @@
"zh-cht": "新增用戶群裝置權限",
"hu": "Felhasználói csoport eszköz engedélyek hozzáadása",
"xloc": [
- "default.handlebars->47->2331"
+ "default.handlebars->47->2333"
]
},
{
@@ -7560,8 +7560,8 @@
"zh-cht": "新增用戶",
"hu": "Felhasználók hozzáadása",
"xloc": [
- "default.handlebars->47->2168",
- "default.handlebars->47->2832"
+ "default.handlebars->47->2170",
+ "default.handlebars->47->2834"
]
},
{
@@ -7588,7 +7588,7 @@
"zh-cht": "將用戶新增到裝置群",
"hu": "Felhasználók hozzáadása az eszköz csoporthoz",
"xloc": [
- "default.handlebars->47->2318"
+ "default.handlebars->47->2320"
]
},
{
@@ -7615,7 +7615,7 @@
"zh-cht": "將用戶新增到用戶群",
"hu": "Felhasználók hozzáadása az felhasználó csoporthoz",
"xloc": [
- "default.handlebars->47->2867"
+ "default.handlebars->47->2869"
]
},
{
@@ -7669,7 +7669,7 @@
"zh-cht": "將本地設備添加到設備組 \\\"{0}\\\"。",
"hu": "Helyi eszköz hozzáadása a \\\"{0}\\\" eszközcsoporthoz.",
"xloc": [
- "default.handlebars->47->490"
+ "default.handlebars->47->492"
]
},
{
@@ -7696,7 +7696,7 @@
"zh-cht": "通過掃描本地網絡新增新的Intel® AMT電腦。",
"hu": "Adjon hozzá egy új Intel® AMT számítógépet a helyi hálózat átvizsgálásával.",
"xloc": [
- "default.handlebars->47->480"
+ "default.handlebars->47->482"
]
},
{
@@ -7747,7 +7747,7 @@
"zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。",
"hu": "Adjon hozzá egy új Intel® AMT számítógépet, amely a helyi hálózaton található.",
"xloc": [
- "default.handlebars->47->478"
+ "default.handlebars->47->480"
]
},
{
@@ -7774,7 +7774,7 @@
"zh-cht": "將新的Intel® AMT裝置新增到裝置群“{0}”。",
"hu": "Új Intel® AMT eszköz hozzáadása a \\\"{0}\\\" eszközcsoporthoz.",
"xloc": [
- "default.handlebars->47->499"
+ "default.handlebars->47->501"
]
},
{
@@ -7801,8 +7801,8 @@
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
"hu": "Adjon hozzá egy új számítógépet ehhez az eszközcsoporthoz a Mesh Agent telepítésével.",
"xloc": [
- "default.handlebars->47->2174",
- "default.handlebars->47->484"
+ "default.handlebars->47->2176",
+ "default.handlebars->47->486"
]
},
{
@@ -7829,8 +7829,8 @@
"zh-cht": "添加位於本地網絡上的設備。",
"hu": "Helyi hálózaton található eszköz hozzáadása.",
"xloc": [
- "default.handlebars->47->2178",
- "default.handlebars->47->488"
+ "default.handlebars->47->2180",
+ "default.handlebars->47->490"
]
},
{
@@ -7857,7 +7857,7 @@
"zh-cht": "添加本地設備",
"hu": "Helyi eszköz hozzáadása",
"xloc": [
- "default.handlebars->47->498"
+ "default.handlebars->47->500"
]
},
{
@@ -7884,7 +7884,7 @@
"zh-cht": "新增標籤",
"hu": "Cimkék hozzáadása",
"xloc": [
- "default.handlebars->47->748"
+ "default.handlebars->47->750"
]
},
{
@@ -7911,7 +7911,7 @@
"zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel®AMT以將“{0}”分組。",
"hu": "Adja hozzá, aktiválja és konfigurálja az Intel® AMT-t a \\\"{0}\\\" csoporthoz úgy, hogy rendszeres időközönként rendszergazdaként futtatja a MeshCmd-t a távoli eszközön.",
"xloc": [
- "default.handlebars->47->517"
+ "default.handlebars->47->519"
]
},
{
@@ -7938,7 +7938,7 @@
"zh-cht": "添加了身份驗證應用程序",
"hu": "Hitelesítési alkalmazás hozzáadva",
"xloc": [
- "default.handlebars->47->2561"
+ "default.handlebars->47->2563"
]
},
{
@@ -7965,7 +7965,7 @@
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
"hu": "{0} eszközmegosztás hozzáadva {1} és {2} között",
"xloc": [
- "default.handlebars->47->2572"
+ "default.handlebars->47->2574"
]
},
{
@@ -7992,7 +7992,7 @@
"zh-cht": "添加了每天重複的設備共享 {0}。",
"hu": "Naponta ismétlődő {0} eszközmegosztás hozzáadva.",
"xloc": [
- "default.handlebars->47->2609"
+ "default.handlebars->47->2611"
]
},
{
@@ -8019,7 +8019,7 @@
"zh-cht": "添加了每週重複的設備共享 {0}。",
"hu": "Hetente ismétlődő {0} eszközmegosztás hozzáadva.",
"xloc": [
- "default.handlebars->47->2610"
+ "default.handlebars->47->2612"
]
},
{
@@ -8046,7 +8046,7 @@
"zh-cht": "添加了無限時間的設備共享 {0}。",
"hu": "{0} eszközmegosztás hozzáadva korlátlan ideig.",
"xloc": [
- "default.handlebars->47->2602"
+ "default.handlebars->47->2604"
]
},
{
@@ -8073,8 +8073,8 @@
"zh-cht": "已將設備{0}添加到設備組{1}",
"hu": "A(z) {0} eszköz hozzáadva a(z) {1} eszközcsoporthoz",
"xloc": [
- "default.handlebars->47->2528",
- "default.handlebars->47->2555"
+ "default.handlebars->47->2530",
+ "default.handlebars->47->2557"
]
},
{
@@ -8101,7 +8101,7 @@
"zh-cht": "添加了登錄令牌",
"hu": "Bejelentkezési token hozzáadva",
"xloc": [
- "default.handlebars->47->2586"
+ "default.handlebars->47->2588"
]
},
{
@@ -8128,7 +8128,7 @@
"zh-cht": "增加推送通知認證設備",
"hu": "Push értesítési hitelesítő eszköz hozzáadva",
"xloc": [
- "default.handlebars->47->2584"
+ "default.handlebars->47->2586"
]
},
{
@@ -8155,7 +8155,7 @@
"zh-cht": "添加了安全密鑰",
"hu": "Biztonsági kulcs hozzáadva",
"xloc": [
- "default.handlebars->47->2566"
+ "default.handlebars->47->2568"
]
},
{
@@ -8182,7 +8182,7 @@
"zh-cht": "已將用戶組{0}添加到設備組{1}",
"hu": "{0} felhasználói csoport hozzáadva a(z) {1} eszközcsoporthoz",
"xloc": [
- "default.handlebars->47->2539"
+ "default.handlebars->47->2541"
]
},
{
@@ -8209,8 +8209,8 @@
"zh-cht": "已將用戶{0}添加到用戶組{1}",
"hu": "{0} felhasználó hozzáadva a(z) {1} felhasználói csoporthoz",
"xloc": [
- "default.handlebars->47->2542",
- "default.handlebars->47->2551"
+ "default.handlebars->47->2544",
+ "default.handlebars->47->2553"
]
},
{
@@ -8237,7 +8237,7 @@
"zh-cht": "地址",
"hu": "Cím",
"xloc": [
- "default.handlebars->47->378"
+ "default.handlebars->47->380"
]
},
{
@@ -8292,7 +8292,7 @@
"hu": "Admin Control Mode (ACM)",
"xloc": [
"default-mobile.handlebars->11->794",
- "default.handlebars->47->1633"
+ "default.handlebars->47->1635"
]
},
{
@@ -8320,7 +8320,7 @@
"hu": "Adminisztrátor Hitelesítő adatok",
"xloc": [
"default-mobile.handlebars->11->800",
- "default.handlebars->47->1639"
+ "default.handlebars->47->1641"
]
},
{
@@ -8375,7 +8375,7 @@
"zh-cht": "管理領域",
"hu": "Adminisztratív Realms",
"xloc": [
- "default.handlebars->47->2919"
+ "default.handlebars->47->2921"
]
},
{
@@ -8430,7 +8430,7 @@
"zh-cht": "管理領域",
"hu": "Adminisztratív Realms",
"xloc": [
- "default.handlebars->47->2764"
+ "default.handlebars->47->2766"
]
},
{
@@ -8457,7 +8457,7 @@
"zh-cht": "管理員",
"hu": "Adminisztrátor",
"xloc": [
- "default.handlebars->47->2682"
+ "default.handlebars->47->2684"
]
},
{
@@ -8485,7 +8485,7 @@
"hu": "afrikai",
"xloc": [
"default-mobile.handlebars->11->104",
- "default.handlebars->47->1795",
+ "default.handlebars->47->1797",
"login2.handlebars->7->1"
]
},
@@ -8517,11 +8517,11 @@
"default-mobile.handlebars->11->463",
"default-mobile.handlebars->11->520",
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
- "default.handlebars->47->2402",
- "default.handlebars->47->2415",
- "default.handlebars->47->3281",
- "default.handlebars->47->405",
- "default.handlebars->47->706",
+ "default.handlebars->47->2404",
+ "default.handlebars->47->2417",
+ "default.handlebars->47->3283",
+ "default.handlebars->47->407",
+ "default.handlebars->47->708",
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
"default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm"
]
@@ -8550,8 +8550,8 @@
"zh-cht": "代理+Intel® AMT",
"hu": "Agent + Intel® AMT",
"xloc": [
- "default.handlebars->47->2404",
- "default.handlebars->47->2417"
+ "default.handlebars->47->2406",
+ "default.handlebars->47->2419"
]
},
{
@@ -8607,8 +8607,8 @@
"hu": "Agent konzol",
"xloc": [
"default-mobile.handlebars->11->954",
- "default.handlebars->47->2339",
- "default.handlebars->47->794"
+ "default.handlebars->47->2341",
+ "default.handlebars->47->796"
]
},
{
@@ -8635,7 +8635,7 @@
"zh-cht": "代理錯誤計數器",
"hu": "Agrnt hiba számlálók",
"xloc": [
- "default.handlebars->47->3250"
+ "default.handlebars->47->3252"
]
},
{
@@ -8662,7 +8662,7 @@
"zh-cht": "代理 IP 地址",
"hu": "Agent IP cím",
"xloc": [
- "default.handlebars->47->347"
+ "default.handlebars->47->348"
]
},
{
@@ -8725,7 +8725,7 @@
"hu": "Agent üzenetek",
"xloc": [
"default-mobile.handlebars->11->436",
- "default.handlebars->47->470"
+ "default.handlebars->47->472"
]
},
{
@@ -8831,8 +8831,8 @@
"zh-cht": "代理自行共享",
"hu": "Agent Ön-Megosztás",
"xloc": [
- "default.handlebars->47->1092",
- "default.handlebars->47->2206"
+ "default.handlebars->47->1094",
+ "default.handlebars->47->2208"
]
},
{
@@ -8859,7 +8859,7 @@
"zh-cht": "代理時段",
"hu": "Agent munkamenetek",
"xloc": [
- "default.handlebars->47->3266"
+ "default.handlebars->47->3268"
]
},
{
@@ -8911,7 +8911,7 @@
"hu": "Agent Cimke",
"xloc": [
"default-mobile.handlebars->11->517",
- "default.handlebars->47->919"
+ "default.handlebars->47->921"
]
},
{
@@ -8939,7 +8939,7 @@
"hu": "Agent típus",
"xloc": [
"default.handlebars->47->337",
- "default.handlebars->47->369"
+ "default.handlebars->47->370"
]
},
{
@@ -8966,7 +8966,7 @@
"zh-cht": "代理類型",
"hu": "Agent típusok",
"xloc": [
- "default.handlebars->47->2413",
+ "default.handlebars->47->2415",
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
]
},
@@ -8995,7 +8995,7 @@
"hu": "Agent verzió",
"xloc": [
"default.handlebars->47->338",
- "default.handlebars->47->370"
+ "default.handlebars->47->371"
]
},
{
@@ -9022,7 +9022,7 @@
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
"hu": "Az Agent lezárta a munkamenetet {0}%-os ügynök-szerver-tömörítéssel. Elküldve: {1}, tömörítve: {2}",
"xloc": [
- "default.handlebars->47->2525"
+ "default.handlebars->47->2527"
]
},
{
@@ -9049,8 +9049,8 @@
"zh-cht": "代理已連接",
"hu": "Agent csatlakozott",
"xloc": [
- "default.handlebars->47->1050",
- "default.handlebars->47->1051",
+ "default.handlebars->47->1052",
+ "default.handlebars->47->1053",
"default.handlebars->47->257"
]
},
@@ -9232,7 +9232,7 @@
"hu": "Offline Agent",
"xloc": [
"default-mobile.handlebars->11->874",
- "default.handlebars->47->1714"
+ "default.handlebars->47->1716"
]
},
{
@@ -9260,7 +9260,7 @@
"hu": "Online Agent",
"xloc": [
"default-mobile.handlebars->11->873",
- "default.handlebars->47->1713"
+ "default.handlebars->47->1715"
]
},
{
@@ -9359,7 +9359,7 @@
"zh-cht": "代理在特權降低的遠程設備上運行。",
"hu": "Az Agent csökkentett jogosultságokkal fut a távoli eszközön.",
"xloc": [
- "default.handlebars->47->1044"
+ "default.handlebars->47->1046"
]
},
{
@@ -9482,9 +9482,9 @@
"zh-cht": "代理",
"hu": "Agent-ek",
"xloc": [
- "default.handlebars->47->2370",
- "default.handlebars->47->3294",
- "default.handlebars->47->573"
+ "default.handlebars->47->2372",
+ "default.handlebars->47->3296",
+ "default.handlebars->47->575"
]
},
{
@@ -9512,7 +9512,7 @@
"hu": "albán",
"xloc": [
"default-mobile.handlebars->11->105",
- "default.handlebars->47->1796",
+ "default.handlebars->47->1798",
"login2.handlebars->7->2"
]
},
@@ -9521,8 +9521,8 @@
"nl": "Alert Box",
"pl": "Okno Powiadomienia",
"xloc": [
- "default.handlebars->47->1175",
- "default.handlebars->47->757"
+ "default.handlebars->47->1177",
+ "default.handlebars->47->759"
]
},
{
@@ -9552,7 +9552,7 @@
"default-mobile.handlebars->11->355",
"default-mobile.handlebars->11->688",
"default-mobile.handlebars->11->690",
- "default.handlebars->47->3114",
+ "default.handlebars->47->3116",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
]
},
@@ -9580,7 +9580,7 @@
"zh-cht": "全部可用",
"hu": "Összes elérhető",
"xloc": [
- "default.handlebars->47->2644"
+ "default.handlebars->47->2646"
]
},
{
@@ -9607,8 +9607,8 @@
"zh-cht": "所有可用的代理",
"hu": "Az összes rendelkezésre álló Agent",
"xloc": [
- "default.handlebars->47->2371",
- "default.handlebars->47->574"
+ "default.handlebars->47->2373",
+ "default.handlebars->47->576"
]
},
{
@@ -9635,7 +9635,7 @@
"zh-cht": "所有顯示",
"hu": "Összes Kijelző",
"xloc": [
- "default.handlebars->47->1464"
+ "default.handlebars->47->1466"
]
},
{
@@ -9662,7 +9662,7 @@
"zh-cht": "所有事件",
"hu": "Összes Esemény",
"xloc": [
- "default.handlebars->47->2642"
+ "default.handlebars->47->2644"
]
},
{
@@ -9689,9 +9689,9 @@
"zh-cht": "全部聚焦",
"hu": "Teljes Focus mode",
"xloc": [
- "default.handlebars->47->1383",
"default.handlebars->47->1385",
- "default.handlebars->47->1386"
+ "default.handlebars->47->1387",
+ "default.handlebars->47->1388"
]
},
{
@@ -9753,8 +9753,8 @@
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
"hu": "Engedélyezi a felhasználók számára az eszközcsoport és a csoportba tartozó eszközök kezelését.",
"xloc": [
- "default.handlebars->47->2283",
- "default.handlebars->47->2864"
+ "default.handlebars->47->2285",
+ "default.handlebars->47->2866"
]
},
{
@@ -9781,7 +9781,7 @@
"zh-cht": "允許用戶管理此裝置。",
"hu": "Engedélyezze a felhasználóknak, hogy kezeljék ezt az eszközt.",
"xloc": [
- "default.handlebars->47->2284"
+ "default.handlebars->47->2286"
]
},
{
@@ -9889,8 +9889,8 @@
"xloc": [
"default-mobile.handlebars->11->643",
"default-mobile.handlebars->11->647",
- "default.handlebars->47->1407",
- "default.handlebars->47->1411"
+ "default.handlebars->47->1409",
+ "default.handlebars->47->1413"
]
},
{
@@ -9917,7 +9917,7 @@
"zh-cht": "替代Shell",
"hu": "Alternatív Shell",
"xloc": [
- "default.handlebars->47->1373"
+ "default.handlebars->47->1375"
]
},
{
@@ -10000,7 +10000,7 @@
"zh-cht": "備用(F10 = ESC + 0)",
"hu": "Alternatív (F10 = ESC+0)",
"xloc": [
- "default.handlebars->47->1498",
+ "default.handlebars->47->1500",
"sharing.handlebars->11->37"
]
},
@@ -10083,10 +10083,10 @@
"zh-cht": "一直通知",
"hu": "Minden kapcsolat értesítés",
"xloc": [
- "default.handlebars->47->2145",
- "default.handlebars->47->2823",
- "default.handlebars->47->2928",
- "default.handlebars->47->958"
+ "default.handlebars->47->2147",
+ "default.handlebars->47->2825",
+ "default.handlebars->47->2930",
+ "default.handlebars->47->960"
]
},
{
@@ -10113,10 +10113,10 @@
"zh-cht": "一直提示",
"hu": "Minden kapcsolat engedélykérés",
"xloc": [
- "default.handlebars->47->2146",
- "default.handlebars->47->2824",
- "default.handlebars->47->2929",
- "default.handlebars->47->959"
+ "default.handlebars->47->2148",
+ "default.handlebars->47->2826",
+ "default.handlebars->47->2931",
+ "default.handlebars->47->961"
]
},
{
@@ -10207,7 +10207,7 @@
"de": "Ein unbekannter Fehler ist aufgetreten.",
"es": "Ha ocurrido un error desconcido.",
"xloc": [
- "default.handlebars->47->3066"
+ "default.handlebars->47->3068"
]
},
{
@@ -10266,7 +10266,7 @@
"hu": "Android APK",
"xloc": [
"default-mobile.handlebars->11->926",
- "default.handlebars->47->635"
+ "default.handlebars->47->637"
]
},
{
@@ -10354,7 +10354,7 @@
"en": "Android MeshAgent",
"nl": "Android MeshAgent",
"xloc": [
- "default.handlebars->47->579"
+ "default.handlebars->47->581"
]
},
{
@@ -10409,8 +10409,8 @@
"zh-cht": "殺毒軟件未激活",
"hu": "A vírusirtó nem aktív",
"xloc": [
- "default.handlebars->47->2406",
- "default.handlebars->47->2420"
+ "default.handlebars->47->2408",
+ "default.handlebars->47->2422"
]
},
{
@@ -10438,7 +10438,7 @@
"hu": "Antivírus",
"xloc": [
"default-mobile.handlebars->11->756",
- "default.handlebars->47->947"
+ "default.handlebars->47->949"
]
},
{
@@ -10465,7 +10465,7 @@
"zh-cht": "任何可支持的",
"hu": "Bármilyen támogatott",
"xloc": [
- "default.handlebars->47->547"
+ "default.handlebars->47->549"
]
},
{
@@ -10547,13 +10547,13 @@
"zh-cht": "蘋果macOS",
"hu": "Apple macOS",
"xloc": [
- "default.handlebars->47->589"
+ "default.handlebars->47->591"
]
},
{
"en": "Apple macOS (UnInstall)",
"xloc": [
- "default.handlebars->47->594"
+ "default.handlebars->47->596"
]
},
{
@@ -10561,7 +10561,7 @@
"nl": "Apple macOS uitvoerbare bestanden moeten uit quarantaine worden verwijderd om 'xattr -r -d com.apple.quarantine meshagent' te kunnen starten",
"xloc": [
"agentinvite.handlebars->3->12",
- "default.handlebars->47->667"
+ "default.handlebars->47->669"
]
},
{
@@ -10588,7 +10588,7 @@
"zh-cht": "僅限Apple macOS",
"hu": "csak Apple macOS",
"xloc": [
- "default.handlebars->47->549"
+ "default.handlebars->47->551"
]
},
{
@@ -10738,7 +10738,7 @@
"zh-cht": "應用程序,始終連接",
"hu": "Alkalmazás, állandó csatlakozás",
"xloc": [
- "default.handlebars->47->603"
+ "default.handlebars->47->605"
]
},
{
@@ -10765,7 +10765,7 @@
"zh-cht": "應用程序,根據用戶請求連接",
"hu": "Alkalmazás, csatlakozás a felhasználó kérésére",
"xloc": [
- "default.handlebars->47->602"
+ "default.handlebars->47->604"
]
},
{
@@ -10793,7 +10793,7 @@
"hu": "arab (Algéria)",
"xloc": [
"default-mobile.handlebars->11->107",
- "default.handlebars->47->1798",
+ "default.handlebars->47->1800",
"login2.handlebars->7->4"
]
},
@@ -10822,7 +10822,7 @@
"hu": "arab (Bahrein)",
"xloc": [
"default-mobile.handlebars->11->108",
- "default.handlebars->47->1799",
+ "default.handlebars->47->1801",
"login2.handlebars->7->5"
]
},
@@ -10851,7 +10851,7 @@
"hu": "arab (Egyiptom)",
"xloc": [
"default-mobile.handlebars->11->109",
- "default.handlebars->47->1800",
+ "default.handlebars->47->1802",
"login2.handlebars->7->6"
]
},
@@ -10880,7 +10880,7 @@
"hu": "arab (Irak)",
"xloc": [
"default-mobile.handlebars->11->110",
- "default.handlebars->47->1801",
+ "default.handlebars->47->1803",
"login2.handlebars->7->7"
]
},
@@ -10909,7 +10909,7 @@
"hu": "arab (Jordánia)",
"xloc": [
"default-mobile.handlebars->11->111",
- "default.handlebars->47->1802",
+ "default.handlebars->47->1804",
"login2.handlebars->7->8"
]
},
@@ -10938,7 +10938,7 @@
"hu": "arab (Kuvait)",
"xloc": [
"default-mobile.handlebars->11->112",
- "default.handlebars->47->1803",
+ "default.handlebars->47->1805",
"login2.handlebars->7->9"
]
},
@@ -10967,7 +10967,7 @@
"hu": "arab (Libanon)",
"xloc": [
"default-mobile.handlebars->11->113",
- "default.handlebars->47->1804",
+ "default.handlebars->47->1806",
"login2.handlebars->7->10"
]
},
@@ -10996,7 +10996,7 @@
"hu": "arab (Líbia)",
"xloc": [
"default-mobile.handlebars->11->114",
- "default.handlebars->47->1805",
+ "default.handlebars->47->1807",
"login2.handlebars->7->11"
]
},
@@ -11025,7 +11025,7 @@
"hu": "arab (Marokkó)",
"xloc": [
"default-mobile.handlebars->11->115",
- "default.handlebars->47->1806",
+ "default.handlebars->47->1808",
"login2.handlebars->7->12"
]
},
@@ -11054,7 +11054,7 @@
"hu": "arab (Omán)",
"xloc": [
"default-mobile.handlebars->11->116",
- "default.handlebars->47->1807",
+ "default.handlebars->47->1809",
"login2.handlebars->7->13"
]
},
@@ -11083,7 +11083,7 @@
"hu": "arab (Katar)",
"xloc": [
"default-mobile.handlebars->11->117",
- "default.handlebars->47->1808",
+ "default.handlebars->47->1810",
"login2.handlebars->7->14"
]
},
@@ -11112,7 +11112,7 @@
"hu": "arab (Szaúd-Arábia)",
"xloc": [
"default-mobile.handlebars->11->118",
- "default.handlebars->47->1809",
+ "default.handlebars->47->1811",
"login2.handlebars->7->15"
]
},
@@ -11141,7 +11141,7 @@
"hu": "arab",
"xloc": [
"default-mobile.handlebars->11->106",
- "default.handlebars->47->1797",
+ "default.handlebars->47->1799",
"login2.handlebars->7->3"
]
},
@@ -11170,7 +11170,7 @@
"hu": "arab (Szíria)",
"xloc": [
"default-mobile.handlebars->11->119",
- "default.handlebars->47->1810",
+ "default.handlebars->47->1812",
"login2.handlebars->7->16"
]
},
@@ -11199,7 +11199,7 @@
"hu": "arab (Tunézia)",
"xloc": [
"default-mobile.handlebars->11->120",
- "default.handlebars->47->1811",
+ "default.handlebars->47->1813",
"login2.handlebars->7->17"
]
},
@@ -11228,7 +11228,7 @@
"hu": "arab (Egyesült Arab Emírségek)",
"xloc": [
"default-mobile.handlebars->11->121",
- "default.handlebars->47->1812",
+ "default.handlebars->47->1814",
"login2.handlebars->7->18"
]
},
@@ -11257,7 +11257,7 @@
"hu": "arab (Jemen)",
"xloc": [
"default-mobile.handlebars->11->122",
- "default.handlebars->47->1813",
+ "default.handlebars->47->1815",
"login2.handlebars->7->19"
]
},
@@ -11286,7 +11286,7 @@
"hu": "aragóniai",
"xloc": [
"default-mobile.handlebars->11->123",
- "default.handlebars->47->1814",
+ "default.handlebars->47->1816",
"login2.handlebars->7->20"
]
},
@@ -11317,9 +11317,9 @@
"default-mobile.handlebars->11->723",
"default-mobile.handlebars->11->725",
"default-mobile.handlebars->11->727",
- "default.handlebars->47->1578",
"default.handlebars->47->1580",
- "default.handlebars->47->1582"
+ "default.handlebars->47->1582",
+ "default.handlebars->47->1584"
]
},
{
@@ -11346,7 +11346,7 @@
"zh-cht": "你確定要連接到{0}裝置嗎?",
"hu": "Biztos, hogy {0} eszközökhöz szeretne csatlakozni?",
"xloc": [
- "default.handlebars->47->473"
+ "default.handlebars->47->475"
]
},
{
@@ -11374,7 +11374,7 @@
"hu": "Biztos, hogy törölni szeretné a {0} csoportot? Az eszközcsoport törlése a csoportba tartozó eszközökre vonatkozó összes információt is törli.",
"xloc": [
"default-mobile.handlebars->11->914",
- "default.handlebars->47->2250"
+ "default.handlebars->47->2252"
]
},
{
@@ -11401,13 +11401,13 @@
"zh-cht": "你確定要刪除節點{0}嗎?",
"hu": "Biztos, hogy törölni akarja a {0} node-ot?",
"xloc": [
- "default.handlebars->47->1299"
+ "default.handlebars->47->1301"
]
},
{
"en": "Are you sure you want to open this file/folder on the remote devices desktop ?",
"xloc": [
- "default.handlebars->47->1522"
+ "default.handlebars->47->1524"
]
},
{
@@ -11434,7 +11434,7 @@
"zh-cht": "你確定要卸載所選代理嗎?",
"hu": "Biztos, hogy eltávolítja a kiválasztott Agentet?",
"xloc": [
- "default.handlebars->47->1288"
+ "default.handlebars->47->1290"
]
},
{
@@ -11461,7 +11461,7 @@
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
"hu": "Biztos, hogy eltávolítja a(z) {0} Agentet?",
"xloc": [
- "default.handlebars->47->1287"
+ "default.handlebars->47->1289"
]
},
{
@@ -11488,7 +11488,7 @@
"zh-cht": "你確定要{0}外掛嗎:{1}",
"hu": "Biztosm, hogy {0} szeretné használni a következő beépülő modult: {1}",
"xloc": [
- "default.handlebars->47->3346"
+ "default.handlebars->47->3348"
]
},
{
@@ -11544,7 +11544,7 @@
"hu": "örmény",
"xloc": [
"default-mobile.handlebars->11->124",
- "default.handlebars->47->1815",
+ "default.handlebars->47->1817",
"login2.handlebars->7->21"
]
},
@@ -11736,7 +11736,7 @@
"hu": "asszámi",
"xloc": [
"default-mobile.handlebars->11->125",
- "default.handlebars->47->1816",
+ "default.handlebars->47->1818",
"login2.handlebars->7->22"
]
},
@@ -11844,8 +11844,8 @@
"zh-cht": "Windows 助手 (.exe)",
"hu": "Assistant Windows rendszerhez (.exe)",
"xloc": [
- "default.handlebars->47->641",
- "default.handlebars->47->645"
+ "default.handlebars->47->643",
+ "default.handlebars->47->647"
]
},
{
@@ -11900,7 +11900,7 @@
"hu": "asztúriai",
"xloc": [
"default-mobile.handlebars->11->126",
- "default.handlebars->47->1817",
+ "default.handlebars->47->1819",
"login2.handlebars->7->23"
]
},
@@ -11928,7 +11928,7 @@
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
"hu": "Intel(R) AMT ACM üzemmód aktiválásának kísérlete",
"xloc": [
- "default.handlebars->47->2494"
+ "default.handlebars->47->2496"
]
},
{
@@ -11982,9 +11982,9 @@
"default-mobile.handlebars->11->659",
"default-mobile.handlebars->11->663",
"default-mobile.handlebars->11->675",
- "default.handlebars->47->1473",
- "default.handlebars->47->1477",
- "default.handlebars->47->1489",
+ "default.handlebars->47->1475",
+ "default.handlebars->47->1479",
+ "default.handlebars->47->1491",
"ssh.handlebars->3->21",
"ssh.handlebars->3->22",
"ssh.handlebars->3->5",
@@ -12015,7 +12015,7 @@
"zh-cht": "認證軟體",
"hu": "Hitelesítő alkalmazás beállítva",
"xloc": [
- "default.handlebars->47->2932"
+ "default.handlebars->47->2934"
]
},
{
@@ -12042,9 +12042,9 @@
"zh-cht": "認證設備",
"hu": "Hitelesítési eszköz",
"xloc": [
- "default.handlebars->47->1778",
"default.handlebars->47->1780",
- "default.handlebars->47->1784"
+ "default.handlebars->47->1782",
+ "default.handlebars->47->1786"
]
},
{
@@ -12073,8 +12073,8 @@
"xloc": [
"default-mobile.handlebars->11->676",
"default-mobile.handlebars->11->682",
- "default.handlebars->47->1491",
- "default.handlebars->47->1506"
+ "default.handlebars->47->1493",
+ "default.handlebars->47->1508"
]
},
{
@@ -12105,8 +12105,8 @@
"default-mobile.handlebars->11->311",
"default-mobile.handlebars->11->70",
"default-mobile.handlebars->11->73",
- "default.handlebars->47->1774",
"default.handlebars->47->1776",
+ "default.handlebars->47->1778",
"default.handlebars->47->216",
"default.handlebars->47->221"
]
@@ -12243,8 +12243,8 @@
"zh-cht": "自動刪除",
"hu": "Automatikus eltávolítás",
"xloc": [
- "default.handlebars->47->2130",
- "default.handlebars->47->2635"
+ "default.handlebars->47->2132",
+ "default.handlebars->47->2637"
]
},
{
@@ -12302,7 +12302,7 @@
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
"hu": "Agent core dump fájl automatikus letöltése: \\\"{0}\\\"",
"xloc": [
- "default.handlebars->47->2575"
+ "default.handlebars->47->2577"
]
},
{
@@ -12408,7 +12408,7 @@
"zh-cht": "自動移除非活動設備",
"hu": "Az inaktív eszközök automatikus eltávolítása",
"xloc": [
- "default.handlebars->47->2278"
+ "default.handlebars->47->2280"
]
},
{
@@ -12435,7 +12435,7 @@
"zh-cht": "可用內存",
"hu": "Elérhető memória",
"xloc": [
- "default.handlebars->47->3275"
+ "default.handlebars->47->3277"
]
},
{
@@ -12463,7 +12463,7 @@
"hu": "azerbajdzsáni",
"xloc": [
"default-mobile.handlebars->11->127",
- "default.handlebars->47->1818",
+ "default.handlebars->47->1820",
"login2.handlebars->7->24"
]
},
@@ -12494,9 +12494,9 @@
"default-mobile.handlebars->11->734",
"default-mobile.handlebars->11->738",
"default-mobile.handlebars->11->742",
- "default.handlebars->47->925",
- "default.handlebars->47->929",
- "default.handlebars->47->933"
+ "default.handlebars->47->927",
+ "default.handlebars->47->931",
+ "default.handlebars->47->935"
]
},
{
@@ -12524,7 +12524,7 @@
"hu": "BIOS",
"xloc": [
"default-mobile.handlebars->11->809",
- "default.handlebars->47->1648"
+ "default.handlebars->47->1650"
]
},
{
@@ -12642,7 +12642,7 @@
"hu": "BackSpace",
"xloc": [
"default-mobile.handlebars->11->624",
- "default.handlebars->47->1389"
+ "default.handlebars->47->1391"
]
},
{
@@ -12670,7 +12670,7 @@
"hu": "Háttérben és interaktív módon",
"xloc": [
"agentinvite.handlebars->3->8",
- "default.handlebars->47->598"
+ "default.handlebars->47->600"
]
},
{
@@ -12697,10 +12697,10 @@
"zh-cht": "背景與互動",
"hu": "Háttérben és interaktív módon",
"xloc": [
- "default.handlebars->47->2377",
- "default.handlebars->47->2384",
- "default.handlebars->47->560",
- "default.handlebars->47->581"
+ "default.handlebars->47->2379",
+ "default.handlebars->47->2386",
+ "default.handlebars->47->562",
+ "default.handlebars->47->583"
]
},
{
@@ -12728,11 +12728,11 @@
"hu": "Csak háttérben",
"xloc": [
"agentinvite.handlebars->3->9",
- "default.handlebars->47->2378",
- "default.handlebars->47->2385",
- "default.handlebars->47->561",
- "default.handlebars->47->582",
- "default.handlebars->47->599"
+ "default.handlebars->47->2380",
+ "default.handlebars->47->2387",
+ "default.handlebars->47->563",
+ "default.handlebars->47->584",
+ "default.handlebars->47->601"
]
},
{
@@ -12787,8 +12787,8 @@
"zh-cht": "備用碼",
"hu": "Biztonsági kódok generálva",
"xloc": [
- "default.handlebars->47->2935",
- "default.handlebars->47->3162"
+ "default.handlebars->47->2937",
+ "default.handlebars->47->3164"
]
},
{
@@ -12870,7 +12870,7 @@
"zh-cht": "錯誤的簽名",
"hu": "Rossz aláírás",
"xloc": [
- "default.handlebars->47->3257"
+ "default.handlebars->47->3259"
]
},
{
@@ -12897,7 +12897,7 @@
"zh-cht": "錯誤的網絡憑證",
"hu": "Rossz web tanúsítvány",
"xloc": [
- "default.handlebars->47->3256"
+ "default.handlebars->47->3258"
]
},
{
@@ -12925,7 +12925,7 @@
"hu": "baszk",
"xloc": [
"default-mobile.handlebars->11->128",
- "default.handlebars->47->1819",
+ "default.handlebars->47->1821",
"login2.handlebars->7->25"
]
},
@@ -12953,7 +12953,7 @@
"zh-cht": "批處理文件上傳",
"hu": "Kötegelt fájl feltölés",
"xloc": [
- "default.handlebars->47->770"
+ "default.handlebars->47->772"
]
},
{
@@ -13015,7 +13015,7 @@
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
"hu": "{0} fájl kötegelt feltöltése a(z) {1} mappába",
"xloc": [
- "default.handlebars->47->2574"
+ "default.handlebars->47->2576"
]
},
{
@@ -13043,7 +13043,7 @@
"hu": "fehérorosz",
"xloc": [
"default-mobile.handlebars->11->130",
- "default.handlebars->47->1821",
+ "default.handlebars->47->1823",
"login2.handlebars->7->27"
]
},
@@ -13072,7 +13072,7 @@
"hu": "bengáli",
"xloc": [
"default-mobile.handlebars->11->131",
- "default.handlebars->47->1822",
+ "default.handlebars->47->1824",
"login2.handlebars->7->28"
]
},
@@ -13135,7 +13135,7 @@
"nl": "BitLocker",
"xloc": [
"default-mobile.handlebars->11->865",
- "default.handlebars->47->1704"
+ "default.handlebars->47->1706"
]
},
{
@@ -13144,7 +13144,7 @@
"pl": "Informacje o BitLocker",
"xloc": [
"default-mobile.handlebars->11->872",
- "default.handlebars->47->1711"
+ "default.handlebars->47->1713"
]
},
{
@@ -13172,7 +13172,7 @@
"hu": "Rendszerbetöltő",
"xloc": [
"default-mobile.handlebars->11->769",
- "default.handlebars->47->1598"
+ "default.handlebars->47->1600"
]
},
{
@@ -13200,7 +13200,7 @@
"hu": "bosznia",
"xloc": [
"default-mobile.handlebars->11->132",
- "default.handlebars->47->1823",
+ "default.handlebars->47->1825",
"login2.handlebars->7->29"
]
},
@@ -13229,7 +13229,7 @@
"hu": "breton",
"xloc": [
"default-mobile.handlebars->11->133",
- "default.handlebars->47->1824",
+ "default.handlebars->47->1826",
"login2.handlebars->7->30"
]
},
@@ -13257,7 +13257,7 @@
"zh-cht": "廣播",
"hu": "Broadcast üzenet...",
"xloc": [
- "default.handlebars->47->2830",
+ "default.handlebars->47->2832",
"default.handlebars->container->column_l->p4->3->1->0->3->1"
]
},
@@ -13285,7 +13285,7 @@
"zh-cht": "廣播消息",
"hu": "Broadcast üzenet",
"xloc": [
- "default.handlebars->47->2746"
+ "default.handlebars->47->2748"
]
},
{
@@ -13312,7 +13312,7 @@
"zh-cht": "向所有連接的用戶廣播消息。",
"hu": "Üzenet küldése az összes csatlakoztatott felhasználónak.",
"xloc": [
- "default.handlebars->47->2741"
+ "default.handlebars->47->2743"
]
},
{
@@ -13339,7 +13339,7 @@
"zh-cht": "瀏覽器",
"hu": "Böngésző",
"xloc": [
- "default.handlebars->47->3136"
+ "default.handlebars->47->3138"
]
},
{
@@ -13422,7 +13422,7 @@
"hu": "bolgár",
"xloc": [
"default-mobile.handlebars->11->129",
- "default.handlebars->47->1820",
+ "default.handlebars->47->1822",
"login2.handlebars->7->26"
]
},
@@ -13451,7 +13451,7 @@
"hu": "burmai",
"xloc": [
"default-mobile.handlebars->11->134",
- "default.handlebars->47->1825",
+ "default.handlebars->47->1827",
"login2.handlebars->7->31"
]
},
@@ -13479,7 +13479,7 @@
"zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
"hu": "Alapértelmezés szerint az inaktív eszközök 1 nap után eltávolításra kerülnek.",
"xloc": [
- "default.handlebars->47->2280"
+ "default.handlebars->47->2282"
]
},
{
@@ -13506,7 +13506,7 @@
"zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
"hu": "Alapértelmezés szerint az inaktív eszközök {0} nap után eltávolításra kerülnek.",
"xloc": [
- "default.handlebars->47->2281"
+ "default.handlebars->47->2283"
]
},
{
@@ -13542,7 +13542,7 @@
"zh-cht": "字節輸入",
"hu": "Fogadott Byte-ok",
"xloc": [
- "default.handlebars->47->3132"
+ "default.handlebars->47->3134"
]
},
{
@@ -13569,7 +13569,7 @@
"zh-cht": "字節輸出",
"hu": "Küldött Byte-ok",
"xloc": [
- "default.handlebars->47->3133"
+ "default.handlebars->47->3135"
]
},
{
@@ -13639,8 +13639,8 @@
"hu": "CCM",
"xloc": [
"default-mobile.handlebars->11->503",
- "default.handlebars->47->430",
- "default.handlebars->47->901"
+ "default.handlebars->47->432",
+ "default.handlebars->47->903"
]
},
{
@@ -13667,7 +13667,7 @@
"zh-cht": "CCM模式",
"hu": "CCM mode",
"xloc": [
- "default.handlebars->47->2233"
+ "default.handlebars->47->2235"
]
},
{
@@ -13675,7 +13675,7 @@
"nl": "CD-ROM",
"xloc": [
"default-mobile.handlebars->11->858",
- "default.handlebars->47->1697"
+ "default.handlebars->47->1699"
]
},
{
@@ -13703,9 +13703,9 @@
"hu": "CIRA",
"xloc": [
"default-mobile.handlebars->11->464",
- "default.handlebars->47->3282",
- "default.handlebars->47->407",
- "default.handlebars->47->708"
+ "default.handlebars->47->3284",
+ "default.handlebars->47->409",
+ "default.handlebars->47->710"
]
},
{
@@ -13732,7 +13732,7 @@
"zh-cht": "CIRA伺服器",
"hu": "CIRA Kiszolgáló",
"xloc": [
- "default.handlebars->47->3330"
+ "default.handlebars->47->3332"
]
},
{
@@ -13759,7 +13759,7 @@
"zh-cht": "CIRA伺服器指令",
"hu": "CIRA kiszolgáló parancsok",
"xloc": [
- "default.handlebars->47->3331"
+ "default.handlebars->47->3333"
]
},
{
@@ -13813,7 +13813,7 @@
"zh-cht": "CIRA設置",
"hu": "CIRA beállítás",
"xloc": [
- "default.handlebars->47->2241"
+ "default.handlebars->47->2243"
]
},
{
@@ -13841,9 +13841,9 @@
"hu": "CPU",
"xloc": [
"default-mobile.handlebars->11->815",
- "default.handlebars->47->1574",
- "default.handlebars->47->1654",
- "default.handlebars->47->3306",
+ "default.handlebars->47->1576",
+ "default.handlebars->47->1656",
+ "default.handlebars->47->3308",
"default.handlebars->container->column_l->p40->3->1->p40type->5"
]
},
@@ -13871,7 +13871,7 @@
"zh-cht": "CPU負載",
"hu": "CPU terhelés",
"xloc": [
- "default.handlebars->47->3271"
+ "default.handlebars->47->3273"
]
},
{
@@ -13898,7 +13898,7 @@
"zh-cht": "最近15分鐘的CPU負載",
"hu": "CPU terhelés az elmúlt 15 percben",
"xloc": [
- "default.handlebars->47->3274"
+ "default.handlebars->47->3276"
]
},
{
@@ -13925,7 +13925,7 @@
"zh-cht": "最近5分鐘的CPU負載",
"hu": "CPU terhelés az elmúlt 5 percben",
"xloc": [
- "default.handlebars->47->3273"
+ "default.handlebars->47->3275"
]
},
{
@@ -13952,7 +13952,7 @@
"zh-cht": "最近一分鐘的CPU負載",
"hu": "CPU terhelés az utolsó percben",
"xloc": [
- "default.handlebars->47->3272"
+ "default.handlebars->47->3274"
]
},
{
@@ -13979,8 +13979,8 @@
"zh-cht": "CR+LF",
"hu": "CR+LF",
"xloc": [
- "default.handlebars->47->1469",
- "default.handlebars->47->1500",
+ "default.handlebars->47->1471",
+ "default.handlebars->47->1502",
"default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
"sharing.handlebars->11->25",
"sharing.handlebars->11->39",
@@ -14011,7 +14011,7 @@
"zh-cht": "CSV",
"hu": "CSV",
"xloc": [
- "default.handlebars->47->2652"
+ "default.handlebars->47->2654"
]
},
{
@@ -14038,15 +14038,15 @@
"zh-cht": "CSV格式",
"hu": "CSV Formátum",
"xloc": [
- "default.handlebars->47->2656",
- "default.handlebars->47->2733",
- "default.handlebars->47->779"
+ "default.handlebars->47->2658",
+ "default.handlebars->47->2735",
+ "default.handlebars->47->781"
]
},
{
"en": "CSV file format is as follows:",
"xloc": [
- "default.handlebars->47->2719"
+ "default.handlebars->47->2721"
]
},
{
@@ -14097,7 +14097,7 @@
"zh-cht": "呼叫錯誤",
"hu": "Hívás hiba",
"xloc": [
- "default.handlebars->47->3347"
+ "default.handlebars->47->3349"
]
},
{
@@ -14108,8 +14108,8 @@
"pl": "CallMeBot",
"es": "CallMeBot",
"xloc": [
- "default.handlebars->47->1747",
- "default.handlebars->47->2970"
+ "default.handlebars->47->1749",
+ "default.handlebars->47->2972"
]
},
{
@@ -14166,9 +14166,9 @@
"agent-translations.json",
"default-mobile.handlebars->11->320",
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
- "default.handlebars->47->2097",
- "default.handlebars->47->3336",
- "default.handlebars->47->533",
+ "default.handlebars->47->2099",
+ "default.handlebars->47->3338",
+ "default.handlebars->47->535",
"default.handlebars->container->dialog->idx_dlgButtonBar",
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
"login.handlebars->dialog->idx_dlgButtonBar",
@@ -14284,12 +14284,12 @@
"default-mobile.handlebars->11->850",
"default-mobile.handlebars->11->852",
"default-mobile.handlebars->11->855",
- "default.handlebars->47->1672",
- "default.handlebars->47->1678",
- "default.handlebars->47->1684",
- "default.handlebars->47->1689",
+ "default.handlebars->47->1674",
+ "default.handlebars->47->1680",
+ "default.handlebars->47->1686",
"default.handlebars->47->1691",
- "default.handlebars->47->1694"
+ "default.handlebars->47->1693",
+ "default.handlebars->47->1696"
]
},
{
@@ -14319,9 +14319,9 @@
"default-mobile.handlebars->11->831",
"default-mobile.handlebars->11->837",
"default-mobile.handlebars->11->843",
- "default.handlebars->47->1670",
- "default.handlebars->47->1676",
- "default.handlebars->47->1682"
+ "default.handlebars->47->1672",
+ "default.handlebars->47->1678",
+ "default.handlebars->47->1684"
]
},
{
@@ -14329,7 +14329,7 @@
"nl": "Resterende capaciteit",
"xloc": [
"default-mobile.handlebars->11->856",
- "default.handlebars->47->1695"
+ "default.handlebars->47->1697"
]
},
{
@@ -14357,7 +14357,7 @@
"hu": "katalán",
"xloc": [
"default-mobile.handlebars->11->135",
- "default.handlebars->47->1826",
+ "default.handlebars->47->1828",
"login2.handlebars->7->32"
]
},
@@ -14385,7 +14385,7 @@
"zh-cht": "在這裡為中心顯示地圖",
"hu": "Térkép középpont",
"xloc": [
- "default.handlebars->47->854"
+ "default.handlebars->47->856"
]
},
{
@@ -14466,7 +14466,7 @@
"hu": "chamorro",
"xloc": [
"default-mobile.handlebars->11->136",
- "default.handlebars->47->1827",
+ "default.handlebars->47->1829",
"login2.handlebars->7->33"
]
},
@@ -14523,7 +14523,7 @@
"zh-cht": "更改{0}的電郵",
"hu": "{0} e-mail-címének módosítása",
"xloc": [
- "default.handlebars->47->3012"
+ "default.handlebars->47->3014"
]
},
{
@@ -14550,9 +14550,9 @@
"zh-cht": "更改群",
"hu": "Csoport módosítása",
"xloc": [
- "default.handlebars->47->1016",
- "default.handlebars->47->1296",
- "default.handlebars->47->1297"
+ "default.handlebars->47->1018",
+ "default.handlebars->47->1298",
+ "default.handlebars->47->1299"
]
},
{
@@ -14588,8 +14588,8 @@
"hu": "Jelszó módosítása",
"xloc": [
"default-mobile.handlebars->11->328",
- "default.handlebars->47->2043",
- "default.handlebars->47->2956"
+ "default.handlebars->47->2045",
+ "default.handlebars->47->2958"
]
},
{
@@ -14616,7 +14616,7 @@
"zh-cht": "更改{0}的密碼",
"hu": "Jelszó módosítása: {0}",
"xloc": [
- "default.handlebars->47->3021"
+ "default.handlebars->47->3023"
]
},
{
@@ -14643,7 +14643,7 @@
"zh-cht": "更改{0}的真實名稱",
"hu": "{0} felhasználó teljes nevének módosítása",
"xloc": [
- "default.handlebars->47->3007"
+ "default.handlebars->47->3009"
]
},
{
@@ -14804,7 +14804,7 @@
"zh-cht": "更改該用戶的密碼",
"hu": "A felhasználó jelszavának módosítása",
"xloc": [
- "default.handlebars->47->2955"
+ "default.handlebars->47->2957"
]
},
{
@@ -14858,7 +14858,7 @@
"zh-cht": "在此處更改你的帳戶電郵地址。",
"hu": "Itt módosíthatja fiókja e-mail címét.",
"xloc": [
- "default.handlebars->47->2030"
+ "default.handlebars->47->2032"
]
},
{
@@ -14885,7 +14885,7 @@
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
"hu": "Módosítsa fiókja jelszavát a jelenlegi és az új jelszó kétszeri beírásával az alábbi mezőkbe.",
"xloc": [
- "default.handlebars->47->2036"
+ "default.handlebars->47->2038"
]
},
{
@@ -14912,7 +14912,7 @@
"zh-cht": "帳戶憑證已更改",
"hu": "A fiók hitelesítő adatai megváltoztak",
"xloc": [
- "default.handlebars->47->2546"
+ "default.handlebars->47->2548"
]
},
{
@@ -14939,7 +14939,7 @@
"zh-cht": "將帳戶顯示名稱更改為 {0}。",
"hu": "A fiók megjelenített neve {0}-re változott.",
"xloc": [
- "default.handlebars->47->2598"
+ "default.handlebars->47->2600"
]
},
{
@@ -14966,8 +14966,8 @@
"zh-cht": "{1}組中的設備{0}已更改:{2}",
"hu": "{0} eszközt a {1} csoportból áthelyezésre került {2} csoportba",
"xloc": [
- "default.handlebars->47->2530",
- "default.handlebars->47->2611"
+ "default.handlebars->47->2532",
+ "default.handlebars->47->2613"
]
},
{
@@ -14994,7 +14994,7 @@
"zh-cht": "語言從{1}更改為{2}",
"hu": "A nyelv megváltozott. régi nyelv: {1}, új nyelv: {2}",
"xloc": [
- "default.handlebars->47->2474"
+ "default.handlebars->47->2476"
]
},
{
@@ -15021,8 +15021,8 @@
"zh-cht": "已更改{0}的用戶設備權限",
"hu": "Módosult a(z) {0} felhasználói eszközjogai",
"xloc": [
- "default.handlebars->47->2532",
- "default.handlebars->47->2553"
+ "default.handlebars->47->2534",
+ "default.handlebars->47->2555"
]
},
{
@@ -15074,7 +15074,7 @@
"hu": "A nyelv megváltoztatásához az oldal frissítése szükséges!",
"xloc": [
"default-mobile.handlebars->11->303",
- "default.handlebars->47->1994"
+ "default.handlebars->47->1996"
]
},
{
@@ -15101,12 +15101,12 @@
"zh-cht": "聊天",
"hu": "Csevegés",
"xloc": [
- "default.handlebars->47->1005",
- "default.handlebars->47->1124",
- "default.handlebars->47->1149",
- "default.handlebars->47->2673",
- "default.handlebars->47->2951",
- "default.handlebars->47->2952"
+ "default.handlebars->47->1007",
+ "default.handlebars->47->1126",
+ "default.handlebars->47->1151",
+ "default.handlebars->47->2675",
+ "default.handlebars->47->2953",
+ "default.handlebars->47->2954"
]
},
{
@@ -15135,8 +15135,8 @@
"xloc": [
"default-mobile.handlebars->11->944",
"default-mobile.handlebars->11->964",
- "default.handlebars->47->2312",
- "default.handlebars->47->2350"
+ "default.handlebars->47->2314",
+ "default.handlebars->47->2352"
]
},
{
@@ -15164,7 +15164,7 @@
"hu": "Csevegés kezdeményezés, kattintson ide az elfogadáshoz.",
"xloc": [
"default-mobile.handlebars->11->996",
- "default.handlebars->47->3221"
+ "default.handlebars->47->3223"
]
},
{
@@ -15219,7 +15219,7 @@
"hu": "csecsen",
"xloc": [
"default-mobile.handlebars->11->137",
- "default.handlebars->47->1828",
+ "default.handlebars->47->1830",
"login2.handlebars->7->34"
]
},
@@ -15367,8 +15367,8 @@
"zh-cht": "檢查...",
"hu": "Ellenőrzés...",
"xloc": [
- "default.handlebars->47->1794",
- "default.handlebars->47->3341"
+ "default.handlebars->47->1796",
+ "default.handlebars->47->3343"
]
},
{
@@ -15396,7 +15396,7 @@
"hu": "kínai",
"xloc": [
"default-mobile.handlebars->11->138",
- "default.handlebars->47->1829",
+ "default.handlebars->47->1831",
"login2.handlebars->7->35"
]
},
@@ -15425,7 +15425,7 @@
"hu": "kínai (Hongkong)",
"xloc": [
"default-mobile.handlebars->11->139",
- "default.handlebars->47->1830",
+ "default.handlebars->47->1832",
"login2.handlebars->7->36"
]
},
@@ -15454,7 +15454,7 @@
"hu": "kínai (Kínai Népköztársaság)",
"xloc": [
"default-mobile.handlebars->11->140",
- "default.handlebars->47->1831",
+ "default.handlebars->47->1833",
"login2.handlebars->7->37"
]
},
@@ -15483,7 +15483,7 @@
"hu": "kínai (egyszerűsített)",
"xloc": [
"default-mobile.handlebars->11->300",
- "default.handlebars->47->1991",
+ "default.handlebars->47->1993",
"login2.handlebars->7->197"
]
},
@@ -15512,7 +15512,7 @@
"hu": "kínai (Szingapúr)",
"xloc": [
"default-mobile.handlebars->11->141",
- "default.handlebars->47->1832",
+ "default.handlebars->47->1834",
"login2.handlebars->7->38"
]
},
@@ -15541,7 +15541,7 @@
"hu": "kínai (Tajvan)",
"xloc": [
"default-mobile.handlebars->11->142",
- "default.handlebars->47->1833",
+ "default.handlebars->47->1835",
"login2.handlebars->7->39"
]
},
@@ -15570,7 +15570,7 @@
"hu": "kínai (hagyományos)",
"xloc": [
"default-mobile.handlebars->11->301",
- "default.handlebars->47->1992",
+ "default.handlebars->47->1994",
"login2.handlebars->7->198"
]
},
@@ -15627,7 +15627,7 @@
"hu": "csuvas",
"xloc": [
"default-mobile.handlebars->11->143",
- "default.handlebars->47->1834",
+ "default.handlebars->47->1836",
"login2.handlebars->7->40"
]
},
@@ -15686,11 +15686,11 @@
"default-mobile.handlebars->11->713",
"default-mobile.handlebars->11->80",
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
- "default.handlebars->47->1550",
"default.handlebars->47->1552",
"default.handlebars->47->1554",
"default.handlebars->47->1556",
- "default.handlebars->47->2468",
+ "default.handlebars->47->1558",
+ "default.handlebars->47->2470",
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
"default.handlebars->container->column_l->p41->3->1",
"messenger.handlebars->xbottom->1->1->0->5",
@@ -15725,7 +15725,7 @@
"hu": "RDP hitelesítő adatok törlése?",
"xloc": [
"default-mobile.handlebars->11->609",
- "default.handlebars->47->1342"
+ "default.handlebars->47->1344"
]
},
{
@@ -15753,7 +15753,7 @@
"hu": "SSH hitelesítő adatok törlése?",
"xloc": [
"default-mobile.handlebars->11->607",
- "default.handlebars->47->1340"
+ "default.handlebars->47->1342"
]
},
{
@@ -15807,8 +15807,8 @@
"zh-cht": "清除代理核心",
"hu": "Agent Core törlése",
"xloc": [
- "default.handlebars->47->732",
- "default.handlebars->47->774"
+ "default.handlebars->47->734",
+ "default.handlebars->47->776"
]
},
{
@@ -15835,7 +15835,7 @@
"zh-cht": "清除所選設備上的代理核心?",
"hu": "Agent Core törlése a kijelölt eszköz(ök)ön?",
"xloc": [
- "default.handlebars->47->773"
+ "default.handlebars->47->775"
]
},
{
@@ -15863,7 +15863,7 @@
"hu": "Összes törlése",
"xloc": [
"default-mobile.handlebars->11->979",
- "default.handlebars->47->3204"
+ "default.handlebars->47->3206"
]
},
{
@@ -15891,7 +15891,7 @@
"hu": "Szűrő törlése",
"xloc": [
"default-mobile.handlebars->11->400",
- "default.handlebars->47->361"
+ "default.handlebars->47->362"
]
},
{
@@ -15919,7 +15919,7 @@
"hu": "Core törlése",
"xloc": [
"default-mobile.handlebars->11->884",
- "default.handlebars->47->1724"
+ "default.handlebars->47->1726"
]
},
{
@@ -15974,7 +15974,7 @@
"hu": "Törölje ezt az értesítést",
"xloc": [
"default-mobile.handlebars->11->978",
- "default.handlebars->47->3203"
+ "default.handlebars->47->3205"
]
},
{
@@ -16082,8 +16082,8 @@
"zh-cht": "單擊此處編輯裝置群名稱",
"hu": "Kattintson ide az eszközcsoport nevének szerkesztéséhez",
"xloc": [
- "default.handlebars->47->2111",
- "default.handlebars->47->2411"
+ "default.handlebars->47->2113",
+ "default.handlebars->47->2413"
]
},
{
@@ -16110,7 +16110,7 @@
"zh-cht": "單擊此處編輯伺服器端裝置名稱",
"hu": "Kattintson ide a kiszolgáló-oldali eszköznév szerkesztéséhez",
"xloc": [
- "default.handlebars->47->870"
+ "default.handlebars->47->872"
]
},
{
@@ -16137,7 +16137,7 @@
"zh-cht": "單擊此處編輯用戶群名稱",
"hu": "Kattintson ide a felhasználói csoport nevének szerkesztéséhez",
"xloc": [
- "default.handlebars->47->2803"
+ "default.handlebars->47->2805"
]
},
{
@@ -16272,7 +16272,7 @@
"hu": "Kattintson az OK gombra, ha megerősítő e-mailt szeretne küldeni a következő címre:",
"xloc": [
"default-mobile.handlebars->11->313",
- "default.handlebars->47->2027"
+ "default.handlebars->47->2029"
]
},
{
@@ -16379,7 +16379,7 @@
"hu": "Client Control Mode (CCM)",
"xloc": [
"default-mobile.handlebars->11->793",
- "default.handlebars->47->1632"
+ "default.handlebars->47->1634"
]
},
{
@@ -16406,7 +16406,7 @@
"zh-cht": "客戶編號",
"hu": "Client ID",
"xloc": [
- "default.handlebars->47->2090"
+ "default.handlebars->47->2092"
]
},
{
@@ -16433,7 +16433,7 @@
"zh-cht": "客戶端啟動的遠程訪問",
"hu": "Ügyfél által kezdeményezett távoli elérés",
"xloc": [
- "default.handlebars->47->2240"
+ "default.handlebars->47->2242"
]
},
{
@@ -16460,7 +16460,7 @@
"zh-cht": "客戶機密",
"hu": "Client Secret",
"xloc": [
- "default.handlebars->47->2091"
+ "default.handlebars->47->2093"
]
},
{
@@ -16517,11 +16517,11 @@
"xloc": [
"agent-translations.json",
"default-mobile.handlebars->11->78",
- "default.handlebars->47->1453",
- "default.handlebars->47->1525",
+ "default.handlebars->47->1455",
+ "default.handlebars->47->1527",
"default.handlebars->47->228",
"default.handlebars->47->236",
- "default.handlebars->47->3335",
+ "default.handlebars->47->3337",
"sharing.handlebars->11->52"
]
},
@@ -16549,7 +16549,7 @@
"zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
"hu": "Lezárt asztali multiplex munkamenet \\\"{0}\\\", {1} másodperc",
"xloc": [
- "default.handlebars->47->2618"
+ "default.handlebars->47->2620"
]
},
{
@@ -16576,7 +16576,7 @@
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
"hu": "Lezárt asztali multiplex munkamenet, {0} másodperc",
"xloc": [
- "default.handlebars->47->2479"
+ "default.handlebars->47->2481"
]
},
{
@@ -16712,7 +16712,7 @@
"hu": "Parancs",
"xloc": [
"agentinvite.handlebars->3->17",
- "default.handlebars->47->672"
+ "default.handlebars->47->674"
]
},
{
@@ -16767,9 +16767,9 @@
"hu": "Parancsok",
"xloc": [
"default-mobile.handlebars->11->966",
- "default.handlebars->47->1126",
- "default.handlebars->47->1151",
- "default.handlebars->47->2352"
+ "default.handlebars->47->1128",
+ "default.handlebars->47->1153",
+ "default.handlebars->47->2354"
]
},
{
@@ -16783,7 +16783,7 @@
"de": "Befehle aus Datei",
"es": "Comandos desde un archivo",
"xloc": [
- "default.handlebars->47->799"
+ "default.handlebars->47->801"
]
},
{
@@ -16797,7 +16797,7 @@
"de": "Befehle aus Datei vom Server",
"es": "Comandos desde un archivo en el servidor",
"xloc": [
- "default.handlebars->47->800"
+ "default.handlebars->47->802"
]
},
{
@@ -16811,7 +16811,7 @@
"de": "Befehle aus Textfeld",
"es": "Comandos desde caja de texto",
"xloc": [
- "default.handlebars->47->798"
+ "default.handlebars->47->800"
]
},
{
@@ -16838,8 +16838,8 @@
"zh-cht": "通用裝置群",
"hu": "Eszközcsoport jogosultságok",
"xloc": [
- "default.handlebars->47->2838",
- "default.handlebars->47->3026"
+ "default.handlebars->47->2840",
+ "default.handlebars->47->3028"
]
},
{
@@ -16866,8 +16866,8 @@
"zh-cht": "通用裝置",
"hu": "Eszköz jogosultságok",
"xloc": [
- "default.handlebars->47->2844",
- "default.handlebars->47->3038"
+ "default.handlebars->47->2846",
+ "default.handlebars->47->3040"
]
},
{
@@ -16895,7 +16895,7 @@
"hu": "Fordítás ideje",
"xloc": [
"default-mobile.handlebars->11->765",
- "default.handlebars->47->1594"
+ "default.handlebars->47->1596"
]
},
{
@@ -16946,7 +16946,7 @@
"zh-cht": "壓縮檔案...",
"hu": "Fájlok tömörítése...",
"xloc": [
- "default.handlebars->47->1511",
+ "default.handlebars->47->1513",
"sharing.handlebars->11->47"
]
},
@@ -16984,7 +16984,7 @@
"de": "Aufzeichnungen von Konfigurationsdatei",
"es": "Registro de archivos de configuracion",
"xloc": [
- "default.handlebars->47->3180"
+ "default.handlebars->47->3182"
]
},
{
@@ -17013,14 +17013,14 @@
"xloc": [
"default-mobile.handlebars->11->604",
"default-mobile.handlebars->11->915",
- "default.handlebars->47->1291",
- "default.handlebars->47->1300",
- "default.handlebars->47->2251",
- "default.handlebars->47->2703",
- "default.handlebars->47->2793",
- "default.handlebars->47->2860",
- "default.handlebars->47->3024",
- "default.handlebars->47->743"
+ "default.handlebars->47->1293",
+ "default.handlebars->47->1302",
+ "default.handlebars->47->2253",
+ "default.handlebars->47->2705",
+ "default.handlebars->47->2795",
+ "default.handlebars->47->2862",
+ "default.handlebars->47->3026",
+ "default.handlebars->47->745"
]
},
{
@@ -17072,7 +17072,7 @@
"hu": "Megerősíti 1 bejegyzés másolatát erre a helyre?",
"xloc": [
"default-mobile.handlebars->11->702",
- "default.handlebars->47->1545",
+ "default.handlebars->47->1547",
"sharing.handlebars->11->70"
]
},
@@ -17100,7 +17100,7 @@
"zh-cht": "確認{0}個條目的複製到此位置?",
"hu": "Megerősíti a {0} bejegyzések másolását erre a helyre?",
"xloc": [
- "default.handlebars->47->1544",
+ "default.handlebars->47->1546",
"sharing.handlebars->11->69"
]
},
@@ -17155,7 +17155,7 @@
"zh-cht": "確認刪除所選帳戶?",
"hu": "Megerősíti a kiválasztott fiók(ok) törlését?",
"xloc": [
- "default.handlebars->47->2702"
+ "default.handlebars->47->2704"
]
},
{
@@ -17206,7 +17206,7 @@
"zh-cht": "確認刪除所選用戶群?",
"hu": "Megerősíti a kiválasztott felhasználói csoport(ok) törlését?",
"xloc": [
- "default.handlebars->47->2792"
+ "default.handlebars->47->2794"
]
},
{
@@ -17233,7 +17233,7 @@
"zh-cht": "確認刪除用戶{0}?",
"hu": "Megerősíti a(z) {0} felhasználó törlését?",
"xloc": [
- "default.handlebars->47->3023"
+ "default.handlebars->47->3025"
]
},
{
@@ -17260,7 +17260,7 @@
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
"hu": "Megerősíti a \\\"{0}\\\" felhasználó tagságának eltávolítását?",
"xloc": [
- "default.handlebars->47->2863"
+ "default.handlebars->47->2865"
]
},
{
@@ -17287,7 +17287,7 @@
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
"hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport tagság eltávolítását?",
"xloc": [
- "default.handlebars->47->3055"
+ "default.handlebars->47->3057"
]
},
{
@@ -17315,7 +17315,7 @@
"hu": "Megerősíti 1 bejegyzés áthelyezését erre a helyre?",
"xloc": [
"default-mobile.handlebars->11->704",
- "default.handlebars->47->1547",
+ "default.handlebars->47->1549",
"sharing.handlebars->11->72"
]
},
@@ -17343,7 +17343,7 @@
"zh-cht": "確認將{0}個條目移到該位置?",
"hu": "Megerősíti {0} bejegyzés áthelyezését erre a helyre?",
"xloc": [
- "default.handlebars->47->1546",
+ "default.handlebars->47->1548",
"sharing.handlebars->11->71"
]
},
@@ -17398,7 +17398,7 @@
"zh-cht": "確認覆蓋?",
"hu": "Megerősíti a felülírást?",
"xloc": [
- "default.handlebars->47->2460"
+ "default.handlebars->47->2462"
]
},
{
@@ -17425,8 +17425,8 @@
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
"hu": "Megerősíti a \\\"{0}\\\" eszköz hozzáférési jogainak eltávolítását?",
"xloc": [
- "default.handlebars->47->2853",
- "default.handlebars->47->3046"
+ "default.handlebars->47->2855",
+ "default.handlebars->47->3048"
]
},
{
@@ -17453,8 +17453,8 @@
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
"hu": "Megerősíti a \\\"{0}\\\" eszközcsoport hozzáférési jogainak eltávolítását?",
"xloc": [
- "default.handlebars->47->2855",
- "default.handlebars->47->3059"
+ "default.handlebars->47->2857",
+ "default.handlebars->47->3061"
]
},
{
@@ -17481,7 +17481,7 @@
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
"hu": "Megerősíti a \\\"{0}\\\" felhasználó hozzáférési jogainak eltávolítását?",
"xloc": [
- "default.handlebars->47->3048"
+ "default.handlebars->47->3050"
]
},
{
@@ -17508,7 +17508,7 @@
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
"hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport hozzáférési jogainak eltávolítását?",
"xloc": [
- "default.handlebars->47->3051"
+ "default.handlebars->47->3053"
]
},
{
@@ -17535,8 +17535,8 @@
"zh-cht": "確認刪除訪問權限?",
"hu": "Megerősíti a hozzáférési jogok eltávolítását?",
"xloc": [
- "default.handlebars->47->3049",
- "default.handlebars->47->3052"
+ "default.handlebars->47->3051",
+ "default.handlebars->47->3054"
]
},
{
@@ -17564,7 +17564,7 @@
"hu": "Megerősíti a hitelesítő alkalmazás, kétlépcsős bejelentkezés eltávolítását?",
"xloc": [
"default-mobile.handlebars->11->312",
- "default.handlebars->47->1777"
+ "default.handlebars->47->1779"
]
},
{
@@ -17615,7 +17615,7 @@
"zh-cht": "確認刪除設備共享“{0}”?",
"hu": "Megerősíti a(z) \\\"{0}\\\" eszközmegosztás eltávolítását?",
"xloc": [
- "default.handlebars->47->3044"
+ "default.handlebars->47->3046"
]
},
{
@@ -17690,7 +17690,7 @@
"zh-cht": "確認移除推送認證設備?",
"hu": "Megerősíti a Push-hitelesítési eszköz eltávolítását?",
"xloc": [
- "default.handlebars->47->1779"
+ "default.handlebars->47->1781"
]
},
{
@@ -17717,7 +17717,7 @@
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
"hu": "Megerősíti a \\\"{0}\\\" felhasználó jogainak eltávolítását?",
"xloc": [
- "default.handlebars->47->2364"
+ "default.handlebars->47->2366"
]
},
{
@@ -17744,7 +17744,7 @@
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
"hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport jogainak eltávolítását?",
"xloc": [
- "default.handlebars->47->2366"
+ "default.handlebars->47->2368"
]
},
{
@@ -17771,7 +17771,7 @@
"zh-cht": "確認刪除所選設備?",
"hu": "Megerősíti a kiválasztott eszköz eltávolítását?",
"xloc": [
- "default.handlebars->47->737"
+ "default.handlebars->47->739"
]
},
{
@@ -17798,7 +17798,7 @@
"zh-cht": "確認刪除此登錄令牌?",
"hu": "Megerősíti ennek a bejelentkezési tokennek az eltávolítását?",
"xloc": [
- "default.handlebars->47->2083"
+ "default.handlebars->47->2085"
]
},
{
@@ -17876,7 +17876,7 @@
"zh-cht": "確認刪除 {0} 個選定的設備?",
"hu": "Megerősíti {0} kiválasztott eszköz eltávolítását?",
"xloc": [
- "default.handlebars->47->738"
+ "default.handlebars->47->740"
]
},
{
@@ -17904,7 +17904,7 @@
"hu": "Megerősíti {0} / {1} bejegyzés {2} erre a helyre?",
"xloc": [
"default-mobile.handlebars->11->365",
- "default.handlebars->47->2463"
+ "default.handlebars->47->2465"
]
},
{
@@ -17935,8 +17935,8 @@
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
- "default.handlebars->47->2149",
- "default.handlebars->47->962",
+ "default.handlebars->47->2151",
+ "default.handlebars->47->964",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -17973,7 +17973,7 @@
"zh-cht": "全部連接",
"hu": "Összes csatlakoztatása",
"xloc": [
- "default.handlebars->47->472",
+ "default.handlebars->47->474",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
]
},
@@ -18025,7 +18025,7 @@
"zh-cht": "連接到伺服器",
"hu": "Csatlakozás a kiszolgálóhoz",
"xloc": [
- "default.handlebars->47->2244"
+ "default.handlebars->47->2246"
]
},
{
@@ -18239,7 +18239,7 @@
"xloc": [
"default-mobile.handlebars->11->4",
"default.handlebars->47->11",
- "default.handlebars->47->424",
+ "default.handlebars->47->426",
"sharing.handlebars->11->4",
"ssh.handlebars->3->4",
"xterm.handlebars->9->4"
@@ -18269,7 +18269,7 @@
"zh-cht": "已連接的Intel® AMT",
"hu": "Csatlakozott Intel® AMT",
"xloc": [
- "default.handlebars->47->3262"
+ "default.handlebars->47->3264"
]
},
{
@@ -18296,7 +18296,7 @@
"zh-cht": "已连接的用户",
"hu": "Csatlakozott felhasználók",
"xloc": [
- "default.handlebars->47->3267"
+ "default.handlebars->47->3269"
]
},
{
@@ -18352,7 +18352,7 @@
"hu": "Csatlakoztatva most",
"xloc": [
"default-mobile.handlebars->11->760",
- "default.handlebars->47->1589"
+ "default.handlebars->47->1591"
]
},
{
@@ -18484,10 +18484,10 @@
"default-mobile.handlebars->11->2",
"default-mobile.handlebars->11->50",
"default-mobile.handlebars->11->720",
- "default.handlebars->47->1570",
- "default.handlebars->47->391",
- "default.handlebars->47->394",
- "default.handlebars->47->475",
+ "default.handlebars->47->1572",
+ "default.handlebars->47->393",
+ "default.handlebars->47->396",
+ "default.handlebars->47->477",
"default.handlebars->47->9",
"sharing.handlebars->11->2",
"sharing.handlebars->11->93",
@@ -18543,7 +18543,7 @@
"zh-cht": "連接數量",
"hu": "Kapcsolatok száma",
"xloc": [
- "default.handlebars->47->3293"
+ "default.handlebars->47->3295"
]
},
{
@@ -18571,8 +18571,8 @@
"hu": "Kapcsolat Hiba",
"xloc": [
"default-mobile.handlebars->11->683",
- "default.handlebars->47->1490",
- "default.handlebars->47->1507",
+ "default.handlebars->47->1492",
+ "default.handlebars->47->1509",
"login2.handlebars->7->232"
]
},
@@ -18600,7 +18600,7 @@
"zh-cht": "連接轉發器",
"hu": "Kapccsolat Relay",
"xloc": [
- "default.handlebars->47->3329"
+ "default.handlebars->47->3331"
]
},
{
@@ -18682,9 +18682,9 @@
"hu": "Kapcsolódás",
"xloc": [
"default-mobile.handlebars->11->525",
- "default.handlebars->47->2418",
- "default.handlebars->47->379",
- "default.handlebars->47->979",
+ "default.handlebars->47->2420",
+ "default.handlebars->47->381",
+ "default.handlebars->47->981",
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
]
},
@@ -18712,7 +18712,7 @@
"zh-cht": "同意",
"hu": "Hozzájárulás",
"xloc": [
- "default.handlebars->47->2634"
+ "default.handlebars->47->2636"
]
},
{
@@ -18740,8 +18740,8 @@
"hu": "Mesh Agent konzol",
"xloc": [
"default-mobile.handlebars->11->565",
- "default.handlebars->47->1119",
- "default.handlebars->47->1144",
+ "default.handlebars->47->1121",
+ "default.handlebars->47->1146",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
"default.handlebars->contextMenu->cxconsole"
@@ -18771,7 +18771,7 @@
"zh-cht": "控制台 -",
"hu": "Konzol -",
"xloc": [
- "default.handlebars->47->871"
+ "default.handlebars->47->873"
]
},
{
@@ -18798,8 +18798,8 @@
"zh-cht": "控制",
"hu": "Felügyelet ",
"xloc": [
- "default.handlebars->47->1118",
- "default.handlebars->47->1143",
+ "default.handlebars->47->1120",
+ "default.handlebars->47->1145",
"messenger.handlebars->remoteImage->3->2"
]
},
@@ -18855,7 +18855,7 @@
"zh-cht": "Cookie編碼器",
"hu": "Cookie kódoló",
"xloc": [
- "default.handlebars->47->3312"
+ "default.handlebars->47->3314"
]
},
{
@@ -18884,7 +18884,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->625",
+ "default.handlebars->47->627",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
"sharing.handlebars->p13->p13toolbar->fileArea2->3"
@@ -18951,9 +18951,9 @@
"zh-cht": "將 URL 複製到剪貼板",
"hu": "URL másolása a vágólapra",
"xloc": [
- "default.handlebars->47->638",
- "default.handlebars->47->642",
- "default.handlebars->47->646"
+ "default.handlebars->47->640",
+ "default.handlebars->47->644",
+ "default.handlebars->47->648"
]
},
{
@@ -19011,8 +19011,8 @@
"de": "Windows ARM 64bit Agent-URL in die Zwischenablage kopieren",
"es": "Copiar el URL del agente Windows ARM 64bit a la papelera",
"xloc": [
- "default.handlebars->47->619",
- "default.handlebars->47->659"
+ "default.handlebars->47->621",
+ "default.handlebars->47->661"
]
},
{
@@ -19022,8 +19022,8 @@
"de": "Windows x86 32bit Agent-URL in die Zwischenablage kopieren",
"es": "Copiar el URL del agente x86 32bit a la papelera",
"xloc": [
- "default.handlebars->47->611",
- "default.handlebars->47->651"
+ "default.handlebars->47->613",
+ "default.handlebars->47->653"
]
},
{
@@ -19033,8 +19033,8 @@
"de": "Windows x86 64bit Agent-URL in die Zwischenablage kopieren",
"es": "Copiar el URL del agente Windows x86 64bit a la papelera",
"xloc": [
- "default.handlebars->47->615",
- "default.handlebars->47->655"
+ "default.handlebars->47->617",
+ "default.handlebars->47->657"
]
},
{
@@ -19101,8 +19101,8 @@
"xloc": [
"agentinvite.handlebars->3->16",
"agentinvite.handlebars->3->18",
- "default.handlebars->47->671",
- "default.handlebars->47->673"
+ "default.handlebars->47->673",
+ "default.handlebars->47->675"
]
},
{
@@ -19129,12 +19129,12 @@
"zh-cht": "複製連結到剪貼板",
"hu": "Hivatkozás másolása a vágólapra.",
"xloc": [
- "default.handlebars->47->2429",
- "default.handlebars->47->2448",
+ "default.handlebars->47->2431",
+ "default.handlebars->47->2450",
"default.handlebars->47->311",
"default.handlebars->47->333",
"default.handlebars->47->335",
- "default.handlebars->47->584"
+ "default.handlebars->47->586"
]
},
{
@@ -19161,8 +19161,8 @@
"zh-cht": "將macOS代理URL複製到剪貼板",
"hu": "macOS Agent URL másolása a vágólapra",
"xloc": [
- "default.handlebars->47->629",
- "default.handlebars->47->665"
+ "default.handlebars->47->631",
+ "default.handlebars->47->667"
]
},
{
@@ -19218,8 +19218,8 @@
"xloc": [
"agentinvite.handlebars->container->column_l->5->linuxtab",
"agentinvite.handlebars->container->column_l->5->linuxtab",
- "default.handlebars->47->624",
- "default.handlebars->47->661"
+ "default.handlebars->47->626",
+ "default.handlebars->47->663"
]
},
{
@@ -19273,7 +19273,7 @@
"zh-cht": "複製:“{0}”到“{1}”",
"hu": "Másolás: \\\"{0}\\\" ide: \\\"{1}\\\"",
"xloc": [
- "default.handlebars->47->2522"
+ "default.handlebars->47->2524"
]
},
{
@@ -19468,7 +19468,7 @@
"zh-cht": "核心伺服器",
"hu": "Core Server",
"xloc": [
- "default.handlebars->47->3311"
+ "default.handlebars->47->3313"
]
},
{
@@ -19496,7 +19496,7 @@
"hu": "korzikai",
"xloc": [
"default-mobile.handlebars->11->144",
- "default.handlebars->47->1835",
+ "default.handlebars->47->1837",
"login2.handlebars->7->41"
]
},
@@ -19548,7 +19548,7 @@
"zh-cht": "創建帳號",
"hu": "Fiók létrehozása",
"xloc": [
- "default.handlebars->47->2760",
+ "default.handlebars->47->2762",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
"login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -19629,7 +19629,7 @@
"zh-cht": "創建登錄令牌",
"hu": "Bejelentkezési token létrehozása",
"xloc": [
- "default.handlebars->47->2020",
+ "default.handlebars->47->2022",
"default.handlebars->47->336"
]
},
@@ -19657,7 +19657,7 @@
"zh-cht": "創建用戶群",
"hu": "Felhasználó csoport létrehozása",
"xloc": [
- "default.handlebars->47->2800"
+ "default.handlebars->47->2802"
]
},
{
@@ -19684,7 +19684,7 @@
"zh-cht": "創建鏈結以與訪客共享此裝置",
"hu": "Link létrehozása az eszköz vendégekkel való megosztásához",
"xloc": [
- "default.handlebars->47->1008"
+ "default.handlebars->47->1010"
]
},
{
@@ -19711,7 +19711,7 @@
"zh-cht": "使用以下選項創建一個新的裝置群。",
"hu": "Hozzon létre egy új eszközcsoportot az alábbi lehetőségek segítségével.",
"xloc": [
- "default.handlebars->47->2050"
+ "default.handlebars->47->2052"
]
},
{
@@ -19738,7 +19738,7 @@
"zh-cht": "創建一個新的裝置群。",
"hu": "Hozzon létre egy új eszközcsoportot.",
"xloc": [
- "default.handlebars->47->384"
+ "default.handlebars->47->386"
]
},
{
@@ -19765,7 +19765,7 @@
"zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
"hu": "Hozzon létre egy ideiglenes felhasználónevet és jelszót, amelyet alternatív bejelentkezési lehetőségként használhat a fiókjához. Ez akkor hasznos, ha lehetővé teszi, hogy eszközök vagy más szolgáltatások hozzáférjenek a fiókjához.",
"xloc": [
- "default.handlebars->47->2000"
+ "default.handlebars->47->2002"
]
},
{
@@ -19792,7 +19792,7 @@
"zh-cht": "創建文件夾(如果不存在)?",
"hu": "Mappa létrehozása, ha nem létezik?",
"xloc": [
- "default.handlebars->47->768"
+ "default.handlebars->47->770"
]
},
{
@@ -19819,7 +19819,7 @@
"zh-cht": "創建文件夾:“{0}”",
"hu": "Mappa létrehozása: \\\"{0}\\\"",
"xloc": [
- "default.handlebars->47->2515"
+ "default.handlebars->47->2517"
]
},
{
@@ -19859,7 +19859,7 @@
"de": "Erstellen Sie mehrere Intel® AMT Geräte gleichzeitig durch Import einer JSON Datei mit dem folgenden Format:",
"es": "Crea muchos dispositivos Intel® AMT al mismo tiempo importando un archivo JSON con el siguiente formato:",
"xloc": [
- "default.handlebars->47->511"
+ "default.handlebars->47->513"
]
},
{
@@ -19889,7 +19889,7 @@
{
"en": "Create many accounts at once by importing a JSON or CSV file",
"xloc": [
- "default.handlebars->47->2717"
+ "default.handlebars->47->2719"
]
},
{
@@ -19945,7 +19945,7 @@
"zh-cht": "創建的設備組:{0}",
"hu": "Eszközcsoport létrehozva: {0}",
"xloc": [
- "default.handlebars->47->2526"
+ "default.handlebars->47->2528"
]
},
{
@@ -19972,7 +19972,7 @@
"zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
"hu": "Létrehoz egy linket, amely lehetővé teszi egy fiók nélküli vendég számára, hogy korlátozott ideig távvezérléssel vezérelje ezt az eszközt.",
"xloc": [
- "default.handlebars->47->1186"
+ "default.handlebars->47->1188"
]
},
{
@@ -20047,7 +20047,7 @@
"zh-cht": "創建",
"hu": "Létrehozás",
"xloc": [
- "default.handlebars->47->2908"
+ "default.handlebars->47->2910"
]
},
{
@@ -20074,7 +20074,7 @@
"zh-cht": "創作時間",
"hu": "Létrehozás ideje",
"xloc": [
- "default.handlebars->47->2129"
+ "default.handlebars->47->2131"
]
},
{
@@ -20130,8 +20130,8 @@
"zh-cht": "創作者",
"hu": "Létrehozó",
"xloc": [
- "default.handlebars->47->2127",
- "default.handlebars->47->2128"
+ "default.handlebars->47->2129",
+ "default.handlebars->47->2130"
]
},
{
@@ -20159,9 +20159,9 @@
"hu": "Hitelesítő adatok",
"xloc": [
"default-mobile.handlebars->11->537",
- "default.handlebars->47->1366",
- "default.handlebars->47->2088",
- "default.handlebars->47->991"
+ "default.handlebars->47->1368",
+ "default.handlebars->47->2090",
+ "default.handlebars->47->993"
]
},
{
@@ -20189,7 +20189,7 @@
"hu": "cree",
"xloc": [
"default-mobile.handlebars->11->145",
- "default.handlebars->47->1836",
+ "default.handlebars->47->1838",
"login2.handlebars->7->42"
]
},
@@ -20218,7 +20218,7 @@
"hu": "horvát",
"xloc": [
"default-mobile.handlebars->11->146",
- "default.handlebars->47->1837",
+ "default.handlebars->47->1839",
"login2.handlebars->7->43"
]
},
@@ -20304,8 +20304,8 @@
"xloc": [
"default-mobile.handlebars->11->644",
"default-mobile.handlebars->11->648",
- "default.handlebars->47->1408",
- "default.handlebars->47->1412",
+ "default.handlebars->47->1410",
+ "default.handlebars->47->1414",
"default.handlebars->47->62",
"sharing.handlebars->11->24"
]
@@ -20496,7 +20496,7 @@
"hu": "A jelenlegi jelszó nem megfelelő.",
"xloc": [
"default-mobile.handlebars->11->1006",
- "default.handlebars->47->3231"
+ "default.handlebars->47->3233"
]
},
{
@@ -20610,7 +20610,7 @@
"hu": "cseh",
"xloc": [
"default-mobile.handlebars->11->147",
- "default.handlebars->47->1838",
+ "default.handlebars->47->1840",
"login2.handlebars->7->44"
]
},
@@ -20693,7 +20693,7 @@
"hu": "dán",
"xloc": [
"default-mobile.handlebars->11->148",
- "default.handlebars->47->1839",
+ "default.handlebars->47->1841",
"login2.handlebars->7->45"
]
},
@@ -20749,7 +20749,7 @@
"zh-cht": "數據通道",
"hu": "DataChannel",
"xloc": [
- "default.handlebars->47->1364",
+ "default.handlebars->47->1366",
"sharing.handlebars->11->11"
]
},
@@ -20763,7 +20763,7 @@
"de": "Datenbankaufzeichnungen",
"es": "Registro de Base de datos",
"xloc": [
- "default.handlebars->47->3105"
+ "default.handlebars->47->3107"
]
},
{
@@ -20791,7 +20791,7 @@
"hu": "Dátum és idő",
"xloc": [
"default-mobile.handlebars->11->306",
- "default.handlebars->47->1997"
+ "default.handlebars->47->1999"
]
},
{
@@ -20819,9 +20819,9 @@
"hu": "Nap",
"xloc": [
"default-mobile.handlebars->11->594",
- "default.handlebars->47->1275",
- "default.handlebars->47->3109",
- "default.handlebars->47->3112"
+ "default.handlebars->47->1277",
+ "default.handlebars->47->3111",
+ "default.handlebars->47->3114"
]
},
{
@@ -20848,8 +20848,8 @@
"zh-cht": "停用",
"hu": "Deaktiválás",
"xloc": [
- "default.handlebars->47->2159",
- "default.handlebars->47->2223"
+ "default.handlebars->47->2161",
+ "default.handlebars->47->2225"
]
},
{
@@ -20876,7 +20876,7 @@
"zh-cht": "如果設置停用CCM",
"hu": "CCM kikapcsolása ha be van állítva",
"xloc": [
- "default.handlebars->47->2235"
+ "default.handlebars->47->2237"
]
},
{
@@ -20928,7 +20928,7 @@
"hu": "Mély alvás",
"xloc": [
"default-mobile.handlebars->11->448",
- "default.handlebars->47->684"
+ "default.handlebars->47->686"
]
},
{
@@ -20955,10 +20955,10 @@
"zh-cht": "默認",
"hu": "Alapértelmezett",
"xloc": [
- "default.handlebars->47->2747",
- "default.handlebars->47->2796",
- "default.handlebars->47->2807",
- "default.handlebars->47->2881"
+ "default.handlebars->47->2749",
+ "default.handlebars->47->2798",
+ "default.handlebars->47->2809",
+ "default.handlebars->47->2883"
]
},
{
@@ -20986,7 +20986,7 @@
"hu": "Del",
"xloc": [
"default-mobile.handlebars->11->631",
- "default.handlebars->47->1396"
+ "default.handlebars->47->1398"
]
},
{
@@ -21018,9 +21018,9 @@
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
"default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
- "default.handlebars->47->1535",
- "default.handlebars->47->2455",
- "default.handlebars->47->841",
+ "default.handlebars->47->1537",
+ "default.handlebars->47->2457",
+ "default.handlebars->47->843",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -21058,7 +21058,7 @@
"hu": "Fiók törlése",
"xloc": [
"default-mobile.handlebars->11->322",
- "default.handlebars->47->2035"
+ "default.handlebars->47->2037"
]
},
{
@@ -21085,7 +21085,7 @@
"zh-cht": "刪除帳戶",
"hu": "Fiókok törlése",
"xloc": [
- "default.handlebars->47->2704"
+ "default.handlebars->47->2706"
]
},
{
@@ -21113,7 +21113,7 @@
"hu": "Eszköz törlése",
"xloc": [
"default-mobile.handlebars->11->546",
- "default.handlebars->47->1018"
+ "default.handlebars->47->1020"
]
},
{
@@ -21140,7 +21140,7 @@
"zh-cht": "刪除設備",
"hu": "Eszközök törlése",
"xloc": [
- "default.handlebars->47->744"
+ "default.handlebars->47->746"
]
},
{
@@ -21169,8 +21169,8 @@
"xloc": [
"default-mobile.handlebars->11->913",
"default-mobile.handlebars->11->916",
- "default.handlebars->47->2211",
- "default.handlebars->47->2252"
+ "default.handlebars->47->2213",
+ "default.handlebars->47->2254"
]
},
{
@@ -21198,7 +21198,7 @@
"hu": "Node törlése",
"xloc": [
"default-mobile.handlebars->11->602",
- "default.handlebars->47->1301"
+ "default.handlebars->47->1303"
]
},
{
@@ -21249,7 +21249,7 @@
"zh-cht": "刪除用戶",
"hu": "Felhasználó törlése",
"xloc": [
- "default.handlebars->47->2954"
+ "default.handlebars->47->2956"
]
},
{
@@ -21276,8 +21276,8 @@
"zh-cht": "刪除用戶群組",
"hu": "Felhasználói csoport törlése",
"xloc": [
- "default.handlebars->47->2849",
- "default.handlebars->47->2861"
+ "default.handlebars->47->2851",
+ "default.handlebars->47->2863"
]
},
{
@@ -21304,7 +21304,7 @@
"zh-cht": "刪除用戶群組",
"hu": "Felhasználói csoportok törlése",
"xloc": [
- "default.handlebars->47->2794"
+ "default.handlebars->47->2796"
]
},
{
@@ -21331,7 +21331,7 @@
"zh-cht": "刪除用戶{0}",
"hu": "Felhasználó törlése: {0}",
"xloc": [
- "default.handlebars->47->3022"
+ "default.handlebars->47->3024"
]
},
{
@@ -21359,7 +21359,7 @@
"hu": "Fiók törlése",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
- "default.handlebars->47->2700",
+ "default.handlebars->47->2702",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
]
},
@@ -21387,7 +21387,7 @@
"zh-cht": "刪除裝置",
"hu": "Eszközök törlése",
"xloc": [
- "default.handlebars->47->730"
+ "default.handlebars->47->732"
]
},
{
@@ -21414,7 +21414,7 @@
"zh-cht": "刪除群組",
"hu": "Csoport törlése",
"xloc": [
- "default.handlebars->47->2790"
+ "default.handlebars->47->2792"
]
},
{
@@ -21441,7 +21441,7 @@
"zh-cht": "刪除項目?",
"hu": "Elem törlése?",
"xloc": [
- "default.handlebars->47->842"
+ "default.handlebars->47->844"
]
},
{
@@ -21468,7 +21468,7 @@
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
"hu": "Rekurzív törlés: \\\"{0}\\\", {1} eltávolított elem(ek)",
"xloc": [
- "default.handlebars->47->2517"
+ "default.handlebars->47->2519"
]
},
{
@@ -21497,8 +21497,8 @@
"xloc": [
"default-mobile.handlebars->11->362",
"default-mobile.handlebars->11->696",
- "default.handlebars->47->1537",
- "default.handlebars->47->2457",
+ "default.handlebars->47->1539",
+ "default.handlebars->47->2459",
"sharing.handlebars->11->63"
]
},
@@ -21526,7 +21526,7 @@
"zh-cht": "刪除用戶群組{0}?",
"hu": "Törli a(z) {0} felhasználói csoportot?",
"xloc": [
- "default.handlebars->47->2859"
+ "default.handlebars->47->2861"
]
},
{
@@ -21555,8 +21555,8 @@
"xloc": [
"default-mobile.handlebars->11->361",
"default-mobile.handlebars->11->695",
- "default.handlebars->47->1536",
- "default.handlebars->47->2456",
+ "default.handlebars->47->1538",
+ "default.handlebars->47->2458",
"sharing.handlebars->11->62"
]
},
@@ -21611,7 +21611,7 @@
"zh-cht": "刪除:“{0}”",
"hu": "Törlés: \\\"{0}\\\"",
"xloc": [
- "default.handlebars->47->2516"
+ "default.handlebars->47->2518"
]
},
{
@@ -21638,7 +21638,7 @@
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
"hu": "Törlés: \\\"{0}\\\", {1} elem eltávolítva",
"xloc": [
- "default.handlebars->47->2518"
+ "default.handlebars->47->2520"
]
},
{
@@ -21666,7 +21666,7 @@
"hu": "Elutasítva",
"xloc": [
"default-mobile.handlebars->11->617",
- "default.handlebars->47->1351",
+ "default.handlebars->47->1353",
"sharing.handlebars->11->29",
"sharing.handlebars->11->7"
]
@@ -21681,7 +21681,7 @@
"de": "Login des Benutzers von {0}, {1}, {2} verweigert",
"es": "Se denego el inicio de sesion de {0}, {1}, {2}",
"xloc": [
- "default.handlebars->47->2626"
+ "default.handlebars->47->2628"
]
},
{
@@ -21835,20 +21835,20 @@
"default-mobile.handlebars->11->773",
"default-mobile.handlebars->11->899",
"default-mobile.handlebars->11->922",
- "default.handlebars->47->1345",
+ "default.handlebars->47->1347",
"default.handlebars->47->157",
- "default.handlebars->47->1602",
- "default.handlebars->47->1612",
- "default.handlebars->47->2060",
- "default.handlebars->47->2120",
- "default.handlebars->47->2258",
- "default.handlebars->47->2632",
- "default.handlebars->47->2799",
- "default.handlebars->47->2810",
- "default.handlebars->47->2811",
- "default.handlebars->47->2857",
- "default.handlebars->47->882",
- "default.handlebars->47->883",
+ "default.handlebars->47->1604",
+ "default.handlebars->47->1614",
+ "default.handlebars->47->2062",
+ "default.handlebars->47->2122",
+ "default.handlebars->47->2260",
+ "default.handlebars->47->2634",
+ "default.handlebars->47->2801",
+ "default.handlebars->47->2812",
+ "default.handlebars->47->2813",
+ "default.handlebars->47->2859",
+ "default.handlebars->47->884",
+ "default.handlebars->47->885",
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
]
},
@@ -21901,16 +21901,16 @@
"hu": "Asztal",
"xloc": [
"default-mobile.handlebars->11->561",
- "default.handlebars->47->1075",
- "default.handlebars->47->1188",
- "default.handlebars->47->1463",
- "default.handlebars->47->2189",
- "default.handlebars->47->2264",
- "default.handlebars->47->3082",
- "default.handlebars->47->3142",
- "default.handlebars->47->3192",
- "default.handlebars->47->3287",
- "default.handlebars->47->847",
+ "default.handlebars->47->1077",
+ "default.handlebars->47->1190",
+ "default.handlebars->47->1465",
+ "default.handlebars->47->2191",
+ "default.handlebars->47->2266",
+ "default.handlebars->47->3084",
+ "default.handlebars->47->3144",
+ "default.handlebars->47->3194",
+ "default.handlebars->47->3289",
+ "default.handlebars->47->849",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
"default.handlebars->contextMenu->cxdesktop",
"sharing.handlebars->11->23",
@@ -21941,9 +21941,9 @@
"zh-cht": "桌面 + 文件",
"hu": "Asztal + Fájlok",
"xloc": [
- "default.handlebars->47->1079",
- "default.handlebars->47->1191",
- "default.handlebars->47->2193"
+ "default.handlebars->47->1081",
+ "default.handlebars->47->1193",
+ "default.handlebars->47->2195"
]
},
{
@@ -21970,8 +21970,8 @@
"zh-cht": "桌面+終端",
"hu": "Asztal + Terminál",
"xloc": [
- "default.handlebars->47->1076",
- "default.handlebars->47->2190"
+ "default.handlebars->47->1078",
+ "default.handlebars->47->2192"
]
},
{
@@ -21998,9 +21998,9 @@
"zh-cht": "桌面+終端+文件",
"hu": "Asztal + Terminál + Fájlok",
"xloc": [
- "default.handlebars->47->1080",
- "default.handlebars->47->1193",
- "default.handlebars->47->2194"
+ "default.handlebars->47->1082",
+ "default.handlebars->47->1195",
+ "default.handlebars->47->2196"
]
},
{
@@ -22054,7 +22054,7 @@
"zh-cht": "桌面多路復用",
"hu": "Asztal Multiplex",
"xloc": [
- "default.handlebars->47->3292"
+ "default.handlebars->47->3294"
]
},
{
@@ -22081,10 +22081,10 @@
"zh-cht": "桌面通知",
"hu": "Asztal kapcsolat értesítés",
"xloc": [
- "default.handlebars->47->2140",
- "default.handlebars->47->2818",
- "default.handlebars->47->2923",
- "default.handlebars->47->953"
+ "default.handlebars->47->2142",
+ "default.handlebars->47->2820",
+ "default.handlebars->47->2925",
+ "default.handlebars->47->955"
]
},
{
@@ -22111,10 +22111,10 @@
"zh-cht": "桌面提示",
"hu": "Asztal kapcsolat engedélykérés",
"xloc": [
- "default.handlebars->47->2139",
- "default.handlebars->47->2817",
- "default.handlebars->47->2922",
- "default.handlebars->47->952"
+ "default.handlebars->47->2141",
+ "default.handlebars->47->2819",
+ "default.handlebars->47->2924",
+ "default.handlebars->47->954"
]
},
{
@@ -22141,10 +22141,10 @@
"zh-cht": "桌面提示+工具欄",
"hu": "Asztal kapcsolat engedélykérés és eszköztár",
"xloc": [
- "default.handlebars->47->2137",
- "default.handlebars->47->2815",
- "default.handlebars->47->2920",
- "default.handlebars->47->950"
+ "default.handlebars->47->2139",
+ "default.handlebars->47->2817",
+ "default.handlebars->47->2922",
+ "default.handlebars->47->952"
]
},
{
@@ -22171,7 +22171,7 @@
"zh-cht": "桌面會話",
"hu": "Asztal munkamenet",
"xloc": [
- "default.handlebars->47->3075"
+ "default.handlebars->47->3077"
]
},
{
@@ -22278,10 +22278,10 @@
"zh-cht": "桌面工具欄",
"hu": "Asztal kapcsolat eszköztár",
"xloc": [
- "default.handlebars->47->2138",
- "default.handlebars->47->2816",
- "default.handlebars->47->2921",
- "default.handlebars->47->951"
+ "default.handlebars->47->2140",
+ "default.handlebars->47->2818",
+ "default.handlebars->47->2923",
+ "default.handlebars->47->953"
]
},
{
@@ -22308,7 +22308,7 @@
"zh-cht": "僅桌面視圖",
"hu": "Asztal csak megtekintés",
"xloc": [
- "default.handlebars->47->2896"
+ "default.handlebars->47->2898"
]
},
{
@@ -22335,7 +22335,7 @@
"zh-cht": "桌面,僅查看",
"hu": "Asztal, csak megtekintés",
"xloc": [
- "default.handlebars->47->1196"
+ "default.handlebars->47->1198"
]
},
{
@@ -22362,7 +22362,7 @@
"zh-cht": "桌面時段",
"hu": "DesktopSession",
"xloc": [
- "default.handlebars->47->1462"
+ "default.handlebars->47->1464"
]
},
{
@@ -22446,9 +22446,9 @@
"hu": "Eszköz részletek",
"xloc": [
"default-mobile.handlebars->11->564",
- "default.handlebars->47->1129",
- "default.handlebars->47->1154",
- "default.handlebars->47->2355",
+ "default.handlebars->47->1131",
+ "default.handlebars->47->1156",
+ "default.handlebars->47->2357",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
"default.handlebars->contextMenu->cxdetails"
]
@@ -22505,13 +22505,13 @@
"hu": "Eszköz",
"xloc": [
"default-mobile.handlebars->11->768",
- "default.handlebars->47->1597",
- "default.handlebars->47->1783",
- "default.handlebars->47->2292",
+ "default.handlebars->47->1599",
+ "default.handlebars->47->1785",
+ "default.handlebars->47->2294",
"default.handlebars->47->281",
- "default.handlebars->47->3041",
- "default.handlebars->47->3108",
- "default.handlebars->47->3126",
+ "default.handlebars->47->3043",
+ "default.handlebars->47->3110",
+ "default.handlebars->47->3128",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
]
},
@@ -22567,7 +22567,7 @@
"xloc": [
"default-mobile.handlebars->11->582",
"default-mobile.handlebars->11->591",
- "default.handlebars->47->1254"
+ "default.handlebars->47->1256"
]
},
{
@@ -22649,7 +22649,7 @@
"zh-cht": "設備詳情",
"hu": "Eszköz részéletek elérése",
"xloc": [
- "default.handlebars->47->2316"
+ "default.handlebars->47->2318"
]
},
{
@@ -22705,17 +22705,17 @@
"xloc": [
"agent-translations.json",
"default-mobile.handlebars->11->984",
- "default.handlebars->47->2287",
- "default.handlebars->47->2290",
- "default.handlebars->47->2291",
- "default.handlebars->47->2649",
- "default.handlebars->47->2841",
- "default.handlebars->47->2847",
- "default.handlebars->47->3029",
- "default.handlebars->47->3091",
- "default.handlebars->47->3115",
- "default.handlebars->47->3129",
- "default.handlebars->47->3209"
+ "default.handlebars->47->2289",
+ "default.handlebars->47->2292",
+ "default.handlebars->47->2293",
+ "default.handlebars->47->2651",
+ "default.handlebars->47->2843",
+ "default.handlebars->47->2849",
+ "default.handlebars->47->3031",
+ "default.handlebars->47->3093",
+ "default.handlebars->47->3117",
+ "default.handlebars->47->3131",
+ "default.handlebars->47->3211"
]
},
{
@@ -22743,7 +22743,7 @@
"hu": "Eszköz Csoport Felhasználó",
"xloc": [
"default-mobile.handlebars->11->973",
- "default.handlebars->47->2362"
+ "default.handlebars->47->2364"
]
},
{
@@ -22771,11 +22771,11 @@
"hu": "Eszköz csoportok",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
- "default.handlebars->47->2665",
- "default.handlebars->47->2784",
- "default.handlebars->47->2828",
- "default.handlebars->47->2917",
- "default.handlebars->47->3265",
+ "default.handlebars->47->2667",
+ "default.handlebars->47->2786",
+ "default.handlebars->47->2830",
+ "default.handlebars->47->2919",
+ "default.handlebars->47->3267",
"default.handlebars->container->column_l->p2->p2info->9"
]
},
@@ -22803,7 +22803,7 @@
"zh-cht": "裝置訊息輸出",
"hu": "Eszközinformációk exportálása",
"xloc": [
- "default.handlebars->47->786"
+ "default.handlebars->47->788"
]
},
{
@@ -22830,7 +22830,7 @@
"zh-cht": "裝置位置",
"hu": "Eszköz helye",
"xloc": [
- "default.handlebars->47->1302"
+ "default.handlebars->47->1304"
]
},
{
@@ -22857,7 +22857,7 @@
"zh-cht": "裝置訊息",
"hu": "Üzenet küldése az eszközre",
"xloc": [
- "default.handlebars->47->1168"
+ "default.handlebars->47->1170"
]
},
{
@@ -22885,10 +22885,10 @@
"hu": "Eszköz Neve",
"xloc": [
"default-mobile.handlebars->11->610",
- "default.handlebars->47->1343",
- "default.handlebars->47->3090",
- "default.handlebars->47->491",
- "default.handlebars->47->500",
+ "default.handlebars->47->1345",
+ "default.handlebars->47->3092",
+ "default.handlebars->47->493",
+ "default.handlebars->47->502",
"player.handlebars->3->25"
]
},
@@ -22916,8 +22916,8 @@
"zh-cht": "裝置通知",
"hu": "Eszköz értesítés",
"xloc": [
- "default.handlebars->47->1182",
- "default.handlebars->47->764"
+ "default.handlebars->47->1184",
+ "default.handlebars->47->766"
]
},
{
@@ -22950,7 +22950,7 @@
{
"en": "Device Powered On",
"xloc": [
- "default.handlebars->47->2630"
+ "default.handlebars->47->2632"
]
},
{
@@ -22977,7 +22977,7 @@
"zh-cht": "設備推送",
"hu": "Device Push",
"xloc": [
- "default.handlebars->47->2936"
+ "default.handlebars->47->2938"
]
},
{
@@ -22990,7 +22990,7 @@
"de": "Aufzeichnungen zu Push-Benachrichtigungen des Geräts",
"es": "Registro de Notificaciones Push del dispositivo",
"xloc": [
- "default.handlebars->47->3189"
+ "default.handlebars->47->3191"
]
},
{
@@ -23003,7 +23003,7 @@
"de": "SMBIOS Geräteaufzeichnungen",
"es": "Registro SMBIOS del dispositivo",
"xloc": [
- "default.handlebars->47->3188"
+ "default.handlebars->47->3190"
]
},
{
@@ -23078,8 +23078,8 @@
"zh-cht": "設備共享鏈接",
"hu": "Eszközmegosztási link",
"xloc": [
- "default.handlebars->47->1072",
- "default.handlebars->47->2186"
+ "default.handlebars->47->1074",
+ "default.handlebars->47->2188"
]
},
{
@@ -23160,9 +23160,9 @@
"default-mobile.handlebars->11->489",
"default-mobile.handlebars->11->491",
"default-mobile.handlebars->11->493",
- "default.handlebars->47->886",
"default.handlebars->47->888",
- "default.handlebars->47->890"
+ "default.handlebars->47->890",
+ "default.handlebars->47->892"
]
},
{
@@ -23189,7 +23189,7 @@
"zh-cht": "設備視圖列",
"hu": "Eszközök megjelenített oszlopok",
"xloc": [
- "default.handlebars->47->352"
+ "default.handlebars->47->353"
]
},
{
@@ -23216,13 +23216,13 @@
"zh-cht": "裝置連接。",
"hu": "Eszköz kapcsolódások",
"xloc": [
- "default.handlebars->47->1098",
- "default.handlebars->47->1102",
- "default.handlebars->47->1106",
- "default.handlebars->47->2023",
- "default.handlebars->47->2389",
- "default.handlebars->47->2393",
- "default.handlebars->47->2397"
+ "default.handlebars->47->1100",
+ "default.handlebars->47->1104",
+ "default.handlebars->47->1108",
+ "default.handlebars->47->2025",
+ "default.handlebars->47->2391",
+ "default.handlebars->47->2395",
+ "default.handlebars->47->2399"
]
},
{
@@ -23249,13 +23249,13 @@
"zh-cht": "裝置斷開連接。",
"hu": "Eszköz lekapcsolások",
"xloc": [
- "default.handlebars->47->1099",
- "default.handlebars->47->1103",
- "default.handlebars->47->1107",
- "default.handlebars->47->2024",
- "default.handlebars->47->2390",
- "default.handlebars->47->2394",
- "default.handlebars->47->2398"
+ "default.handlebars->47->1101",
+ "default.handlebars->47->1105",
+ "default.handlebars->47->1109",
+ "default.handlebars->47->2026",
+ "default.handlebars->47->2392",
+ "default.handlebars->47->2396",
+ "default.handlebars->47->2400"
]
},
{
@@ -23282,7 +23282,7 @@
"zh-cht": "設備組已創建:{0}",
"hu": "Eszközcsoport létrehozva: {0}",
"xloc": [
- "default.handlebars->47->2547"
+ "default.handlebars->47->2549"
]
},
{
@@ -23309,7 +23309,7 @@
"zh-cht": "設備組已刪除:{0}",
"hu": "Eszközcsoport törölve: {0}",
"xloc": [
- "default.handlebars->47->2548"
+ "default.handlebars->47->2550"
]
},
{
@@ -23336,7 +23336,7 @@
"zh-cht": "設備組成員身份已更改:{0}",
"hu": "Eszközcsoport tagság megváltozott: {0}",
"xloc": [
- "default.handlebars->47->2549"
+ "default.handlebars->47->2551"
]
},
{
@@ -23364,7 +23364,7 @@
"hu": "Az eszközcsoportok megjegyzéseit más eszközcsoport-adminisztrátorok is megtekinthetik és módosíthatják.",
"xloc": [
"default-mobile.handlebars->11->589",
- "default.handlebars->47->1159"
+ "default.handlebars->47->1161"
]
},
{
@@ -23391,7 +23391,7 @@
"zh-cht": "設備組通知已更改",
"hu": "Eszközcsoport értesítés megváltozott",
"xloc": [
- "default.handlebars->47->2544"
+ "default.handlebars->47->2546"
]
},
{
@@ -23404,7 +23404,7 @@
"de": "Gerätegruppenaufzeichnungen",
"es": "Registro de grupo de dispositivos",
"xloc": [
- "default.handlebars->47->3174"
+ "default.handlebars->47->3176"
]
},
{
@@ -23431,7 +23431,7 @@
"zh-cht": "未刪除的設備組:{0}",
"hu": "Eszközcsoport törlés visszavonva: {0}",
"xloc": [
- "default.handlebars->47->2527"
+ "default.handlebars->47->2529"
]
},
{
@@ -23458,7 +23458,7 @@
"zh-cht": "設備組 {0} 已更改:{1}",
"hu": "{0} eszközcsoport :{1} megváltozott",
"xloc": [
- "default.handlebars->47->2613"
+ "default.handlebars->47->2615"
]
},
{
@@ -23485,7 +23485,7 @@
"zh-cht": "設備組此設備是中繼",
"hu": "Device groups this device is a relay for",
"xloc": [
- "default.handlebars->47->992"
+ "default.handlebars->47->994"
]
},
{
@@ -23498,7 +23498,7 @@
"de": "Aufzeichnungen zu Geräteinformationen",
"es": "Registro de informacion de dispossitivos",
"xloc": [
- "default.handlebars->47->3176"
+ "default.handlebars->47->3178"
]
},
{
@@ -23527,8 +23527,8 @@
"xloc": [
"default-mobile.handlebars->11->406",
"default-mobile.handlebars->11->476",
- "default.handlebars->47->399",
- "default.handlebars->47->868"
+ "default.handlebars->47->401",
+ "default.handlebars->47->870"
]
},
{
@@ -23556,7 +23556,7 @@
"hu": "Az eszköz foglalt",
"xloc": [
"default-mobile.handlebars->11->412",
- "default.handlebars->47->446"
+ "default.handlebars->47->448"
]
},
{
@@ -23583,7 +23583,7 @@
"zh-cht": "檢測到裝置,但無法獲得電源狀態。",
"hu": "A rendszer észlelte az eszközt, de az energiaellátás állapotát nem sikerült lekérni.",
"xloc": [
- "default.handlebars->47->689"
+ "default.handlebars->47->691"
]
},
{
@@ -23611,7 +23611,7 @@
"hu": "Az eszköz hibernált (S4)",
"xloc": [
"default-mobile.handlebars->11->457",
- "default.handlebars->47->697"
+ "default.handlebars->47->699"
]
},
{
@@ -23639,7 +23639,7 @@
"hu": "Az eszköz mély alvó állapotban van (S3)",
"xloc": [
"default-mobile.handlebars->11->456",
- "default.handlebars->47->696"
+ "default.handlebars->47->698"
]
},
{
@@ -23666,7 +23666,7 @@
"zh-cht": "裝置處於深度睡眠狀態(S3)。",
"hu": "Az eszköz mély alvó állapotban van (S3).",
"xloc": [
- "default.handlebars->47->683"
+ "default.handlebars->47->685"
]
},
{
@@ -23693,7 +23693,7 @@
"zh-cht": "裝置處於休眠狀態(S4)。",
"hu": "Az eszköz hibernált állapotban van (S4).",
"xloc": [
- "default.handlebars->47->685"
+ "default.handlebars->47->687"
]
},
{
@@ -23720,7 +23720,7 @@
"zh-cht": "裝置處於關機狀態(S5)。",
"hu": "A készülék kikapcsolt állapotban van (S5).",
"xloc": [
- "default.handlebars->47->687"
+ "default.handlebars->47->689"
]
},
{
@@ -23748,7 +23748,7 @@
"hu": "Az eszköz alvó állapotban van (S1)",
"xloc": [
"default-mobile.handlebars->11->454",
- "default.handlebars->47->694"
+ "default.handlebars->47->696"
]
},
{
@@ -23775,7 +23775,7 @@
"zh-cht": "裝置處於睡眠狀態(S1)。",
"hu": "Az eszköz alvó állapotban van (S1).",
"xloc": [
- "default.handlebars->47->679"
+ "default.handlebars->47->681"
]
},
{
@@ -23803,7 +23803,7 @@
"hu": "Az eszköz alvó állapotban van (S2)",
"xloc": [
"default-mobile.handlebars->11->455",
- "default.handlebars->47->695"
+ "default.handlebars->47->697"
]
},
{
@@ -23830,7 +23830,7 @@
"zh-cht": "裝置處於睡眠狀態(S2)。",
"hu": "Az eszköz alvó állapotban van (S2).",
"xloc": [
- "default.handlebars->47->681"
+ "default.handlebars->47->683"
]
},
{
@@ -23858,7 +23858,7 @@
"hu": "Az eszköz soft-off állapotban van (S5)",
"xloc": [
"default-mobile.handlebars->11->458",
- "default.handlebars->47->698"
+ "default.handlebars->47->700"
]
},
{
@@ -23887,8 +23887,8 @@
"xloc": [
"default-mobile.handlebars->11->405",
"default-mobile.handlebars->11->475",
- "default.handlebars->47->398",
- "default.handlebars->47->867"
+ "default.handlebars->47->400",
+ "default.handlebars->47->869"
]
},
{
@@ -23916,7 +23916,7 @@
"hu": "Az eszköz energiaellátása biztosított",
"xloc": [
"default-mobile.handlebars->11->453",
- "default.handlebars->47->693"
+ "default.handlebars->47->695"
]
},
{
@@ -23943,7 +23943,7 @@
"zh-cht": "設備已斷電。",
"hu": "Az eszköz kikapcsolva.",
"xloc": [
- "default.handlebars->47->691"
+ "default.handlebars->47->693"
]
},
{
@@ -23970,7 +23970,7 @@
"zh-cht": "裝置已連接電源。",
"hu": "Az eszköz bekapcsolva.",
"xloc": [
- "default.handlebars->47->677"
+ "default.handlebars->47->679"
]
},
{
@@ -23998,7 +23998,7 @@
"hu": "Az eszköz jelen van, de a energiaellátás állapota nem állapítható meg.",
"xloc": [
"default-mobile.handlebars->11->459",
- "default.handlebars->47->699"
+ "default.handlebars->47->701"
]
},
{
@@ -24025,7 +24025,7 @@
"zh-cht": "裝置名稱",
"hu": "Eszköz neve",
"xloc": [
- "default.handlebars->47->859"
+ "default.handlebars->47->861"
]
},
{
@@ -24052,7 +24052,7 @@
"zh-cht": "設備通知",
"hu": "Eszköz értesítés",
"xloc": [
- "default.handlebars->47->727"
+ "default.handlebars->47->729"
]
},
{
@@ -24064,7 +24064,7 @@
"hu": "Eszköz energiaellátás változás rekordok",
"es": "Registro de cambios en origen de poder",
"xloc": [
- "default.handlebars->47->3182"
+ "default.handlebars->47->3184"
]
},
{
@@ -24077,7 +24077,7 @@
"de": "Geräteaufzeichnungen",
"es": "Registro de dispotitivos",
"xloc": [
- "default.handlebars->47->3173"
+ "default.handlebars->47->3175"
]
},
{
@@ -24104,7 +24104,7 @@
"zh-cht": "設備請求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
"hu": "Eszköz által kért Intel(R) AMT ACM TLS aktiválás, FQDN: {0}",
"xloc": [
- "default.handlebars->47->2582"
+ "default.handlebars->47->2584"
]
},
{
@@ -24131,7 +24131,7 @@
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
"hu": "Eszköz által kért Intel(R) AMT ACM aktiválás, FQDN: {0}",
"xloc": [
- "default.handlebars->47->2529"
+ "default.handlebars->47->2531"
]
},
{
@@ -24144,7 +24144,7 @@
"de": "Aufzeichnungen zu Geräte-Teilen",
"es": "Registros de uso compartido de dispositivos",
"xloc": [
- "default.handlebars->47->3186"
+ "default.handlebars->47->3188"
]
},
{
@@ -24157,7 +24157,7 @@
"de": "Aufzeichnungen zu Geräten, Benutzern und Weiteres",
"es": "Dispositivo, usuarios, grupos y otros registros",
"xloc": [
- "default.handlebars->47->3190"
+ "default.handlebars->47->3192"
]
},
{
@@ -24208,9 +24208,9 @@
"zh-cht": "裝置",
"hu": "Eszközök",
"xloc": [
- "default.handlebars->47->2209",
- "default.handlebars->47->2785",
- "default.handlebars->47->2829"
+ "default.handlebars->47->2211",
+ "default.handlebars->47->2787",
+ "default.handlebars->47->2831"
]
},
{
@@ -24425,7 +24425,7 @@
"xloc": [
"default-mobile.handlebars->11->753",
"default.handlebars->47->130",
- "default.handlebars->47->944"
+ "default.handlebars->47->946"
]
},
{
@@ -24452,7 +24452,7 @@
"zh-cht": "禁用的電子郵件兩因素身份驗證",
"hu": "Kétfaktoros e-mail hitelesítés kikapcsolása",
"xloc": [
- "default.handlebars->47->2560"
+ "default.handlebars->47->2562"
]
},
{
@@ -24483,8 +24483,8 @@
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span",
- "default.handlebars->47->2150",
- "default.handlebars->47->963",
+ "default.handlebars->47->2152",
+ "default.handlebars->47->965",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -24604,12 +24604,12 @@
"default-mobile.handlebars->11->424",
"default-mobile.handlebars->11->428",
"default-mobile.handlebars->11->432",
- "default.handlebars->47->443",
- "default.handlebars->47->450",
- "default.handlebars->47->454",
- "default.handlebars->47->458",
- "default.handlebars->47->462",
- "default.handlebars->47->466"
+ "default.handlebars->47->445",
+ "default.handlebars->47->452",
+ "default.handlebars->47->456",
+ "default.handlebars->47->460",
+ "default.handlebars->47->464",
+ "default.handlebars->47->468"
]
},
{
@@ -24640,10 +24640,10 @@
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status",
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->termstatus",
- "default.handlebars->47->390",
- "default.handlebars->47->393",
- "default.handlebars->47->433",
- "default.handlebars->47->474",
+ "default.handlebars->47->392",
+ "default.handlebars->47->395",
+ "default.handlebars->47->435",
+ "default.handlebars->47->476",
"default.handlebars->47->8",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus",
@@ -24693,8 +24693,8 @@
"de": "Discord",
"es": "Discord",
"xloc": [
- "default.handlebars->47->1745",
- "default.handlebars->47->2968"
+ "default.handlebars->47->1747",
+ "default.handlebars->47->2970"
]
},
{
@@ -24721,7 +24721,7 @@
"zh-cht": "解僱",
"hu": "Elutasítás",
"xloc": [
- "default.handlebars->47->439"
+ "default.handlebars->47->441"
]
},
{
@@ -24755,7 +24755,7 @@
"en": "Display a message box on the remote device",
"nl": "Geef een berichtvenster weer op het externe apparaat.",
"xloc": [
- "default.handlebars->47->1162"
+ "default.handlebars->47->1164"
]
},
{
@@ -24833,7 +24833,7 @@
"zh-cht": "在遠程裝置上顯示短信",
"hu": "Szöveges üzenet megjelenítése a távoli eszközön",
"xloc": [
- "default.handlebars->47->1004"
+ "default.handlebars->47->1006"
]
},
{
@@ -24884,7 +24884,7 @@
"zh-cht": "顯示裝置群名稱",
"hu": "Eszközcsoport nevének megjelenítése",
"xloc": [
- "default.handlebars->47->2022"
+ "default.handlebars->47->2024"
]
},
{
@@ -24911,7 +24911,7 @@
"zh-cht": "顯示名稱",
"hu": "Név megjelenítése",
"xloc": [
- "default.handlebars->47->1434"
+ "default.handlebars->47->1436"
]
},
{
@@ -24938,7 +24938,7 @@
"zh-cht": "顯示公共鏈結",
"hu": "Publikus link megjelenítése",
"xloc": [
- "default.handlebars->47->2428"
+ "default.handlebars->47->2430"
]
},
{
@@ -24965,7 +24965,7 @@
"zh-cht": "顯示 {0}",
"hu": "Kijelző {0}",
"xloc": [
- "default.handlebars->47->1465"
+ "default.handlebars->47->1467"
]
},
{
@@ -24973,7 +24973,7 @@
"nl": "Waarschuwingsvenster weergeven, title=\\\"{0}\\\", message=\\\"{1}\\\"",
"pl": "Wyświetl okno powiadomienia, tytuł=\\\"{0}\\\", wiadomość=\\\"{1}\\\"",
"xloc": [
- "default.handlebars->47->2629"
+ "default.handlebars->47->2631"
]
},
{
@@ -25000,7 +25000,7 @@
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
"hu": "Üzenetdoboz megjelenítése, cím=\\\"{0}\\\", üzenet=\\\"{1}\\\"",
"xloc": [
- "default.handlebars->47->2489"
+ "default.handlebars->47->2491"
]
},
{
@@ -25027,7 +25027,7 @@
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
"hu": "Alkalmazás üzenet megjelenítése, title=\\\"{0}\\\", message=\\\"{1}\\\"",
"xloc": [
- "default.handlebars->47->2497"
+ "default.handlebars->47->2499"
]
},
{
@@ -25054,8 +25054,8 @@
"zh-cht": "什麼都不做",
"hu": "Ne csináljon semmit",
"xloc": [
- "default.handlebars->47->2238",
- "default.handlebars->47->2242"
+ "default.handlebars->47->2240",
+ "default.handlebars->47->2244"
]
},
{
@@ -25083,11 +25083,11 @@
"hu": "Domain",
"xloc": [
"default.handlebars->47->126",
- "default.handlebars->47->1369",
- "default.handlebars->47->2748",
- "default.handlebars->47->2797",
- "default.handlebars->47->2806",
- "default.handlebars->47->2880",
+ "default.handlebars->47->1371",
+ "default.handlebars->47->2750",
+ "default.handlebars->47->2799",
+ "default.handlebars->47->2808",
+ "default.handlebars->47->2882",
"mstsc.handlebars->main->1->3->1->rowdomain->1->0",
"mstsc.handlebars->main->1->3->1->rowdomain->3"
]
@@ -25140,7 +25140,7 @@
"zh-cht": "請勿更改,如果設置請保留CCM",
"hu": "Ne módosítsa, tartsa meg a CCM-et, ha beállítva van",
"xloc": [
- "default.handlebars->47->2234"
+ "default.handlebars->47->2236"
]
},
{
@@ -25191,7 +25191,7 @@
"zh-cht": "不要連接到伺服器",
"hu": "Ne csatlakozzon a kiszolgálóhoz",
"xloc": [
- "default.handlebars->47->2243"
+ "default.handlebars->47->2245"
]
},
{
@@ -25320,7 +25320,7 @@
"hu": "Le",
"xloc": [
"default-mobile.handlebars->11->640",
- "default.handlebars->47->1404"
+ "default.handlebars->47->1406"
]
},
{
@@ -25434,7 +25434,7 @@
"hu": "Fájl letöltése",
"xloc": [
"default-mobile.handlebars->11->715",
- "default.handlebars->47->1557",
+ "default.handlebars->47->1559",
"sharing.handlebars->11->82"
]
},
@@ -25462,7 +25462,7 @@
"zh-cht": "下載MeshCentral Router,一個TCP端口映射工具。",
"hu": "Töltse le a MeshCentral Router-t, egy TCP-port leképező eszközt.",
"xloc": [
- "default.handlebars->47->388"
+ "default.handlebars->47->390"
]
},
{
@@ -25489,7 +25489,7 @@
"zh-cht": "下載MeshCmd",
"hu": "Töltse le a MeshCmd-t",
"xloc": [
- "default.handlebars->47->1328"
+ "default.handlebars->47->1330"
]
},
{
@@ -25516,7 +25516,7 @@
"zh-cht": "下載MeshCmd,這是一個多功能的指令執行工具。",
"hu": "Töltse le a MeshCmd parancssori eszközt, amely számos funkciót tartalmaz.",
"xloc": [
- "default.handlebars->47->386"
+ "default.handlebars->47->388"
]
},
{
@@ -25570,7 +25570,7 @@
"zh-cht": "下載報告",
"hu": "Jelentés letöltése",
"xloc": [
- "default.handlebars->47->2654",
+ "default.handlebars->47->2656",
"default.handlebars->container->column_l->p3->3->1->0->3",
"default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv"
]
@@ -25599,7 +25599,7 @@
"zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
"hu": "Töltse le a \\\"meshcmd\\\" fájlt egy műveletfájllal, hogy a forgalmat ezen a szerveren keresztül erre az eszközre irányítsa. Szerkessze a meshaction.txt fájlt, és adja hozzá fiókja jelszavát, vagy hajtsa végre a szükséges módosításokat.",
"xloc": [
- "default.handlebars->47->1321"
+ "default.handlebars->47->1323"
]
},
{
@@ -25680,7 +25680,7 @@
"zh-cht": "下載設備列表",
"hu": "Eszközlista letöltése",
"xloc": [
- "default.handlebars->47->2207"
+ "default.handlebars->47->2209"
]
},
{
@@ -25734,7 +25734,7 @@
"zh-cht": "下載電源事件",
"hu": "Tápellátás események letöltése",
"xloc": [
- "default.handlebars->47->1276"
+ "default.handlebars->47->1278"
]
},
{
@@ -25869,7 +25869,7 @@
"zh-cht": "使用以下一種檔案格式下載裝置列表。",
"hu": "Töltse le az eszközök listáját az alábbi fájlformátumokban.",
"xloc": [
- "default.handlebars->47->778"
+ "default.handlebars->47->780"
]
},
{
@@ -25896,7 +25896,7 @@
"zh-cht": "使用以下一種檔案格式下載事件列表。",
"hu": "Töltse le az események listáját az alábbi fájlformátumokban.",
"xloc": [
- "default.handlebars->47->2655"
+ "default.handlebars->47->2657"
]
},
{
@@ -25923,7 +25923,7 @@
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
"hu": "Töltse le a felhasználók listáját az alábbi fájlformátumok valamelyikével.",
"xloc": [
- "default.handlebars->47->2732"
+ "default.handlebars->47->2734"
]
},
{
@@ -26033,7 +26033,7 @@
"zh-cht": "下載:“{0}”",
"hu": "Letöltés: \\\"{0}\\\"",
"xloc": [
- "default.handlebars->47->2520"
+ "default.handlebars->47->2522"
]
},
{
@@ -26060,7 +26060,7 @@
"zh-cht": "下載:\\\"{0}\\\",大小:{1}",
"hu": "Letöltés: \\\"{0}\\\", Méret: {1}",
"xloc": [
- "default.handlebars->47->2577"
+ "default.handlebars->47->2579"
]
},
{
@@ -26114,7 +26114,7 @@
"zh-cht": "代理重複",
"hu": "Duplikált Agent",
"xloc": [
- "default.handlebars->47->3261"
+ "default.handlebars->47->3263"
]
},
{
@@ -26168,7 +26168,7 @@
"zh-cht": "複製用戶群",
"hu": "Felhasználó csoport duplikálása",
"xloc": [
- "default.handlebars->47->2801"
+ "default.handlebars->47->2803"
]
},
{
@@ -26219,11 +26219,11 @@
"zh-cht": "持續時間",
"hu": "Időtartam",
"xloc": [
- "default.handlebars->47->1224",
+ "default.handlebars->47->1226",
"default.handlebars->47->287",
"default.handlebars->47->289",
- "default.handlebars->47->3070",
- "default.handlebars->47->3096",
+ "default.handlebars->47->3072",
+ "default.handlebars->47->3098",
"player.handlebars->3->18"
]
},
@@ -26276,7 +26276,7 @@
"hu": "holland (Belga)",
"xloc": [
"default-mobile.handlebars->11->150",
- "default.handlebars->47->1841",
+ "default.handlebars->47->1843",
"login2.handlebars->7->47"
]
},
@@ -26305,7 +26305,7 @@
"hu": "holland",
"xloc": [
"default-mobile.handlebars->11->149",
- "default.handlebars->47->1840",
+ "default.handlebars->47->1842",
"login2.handlebars->7->46"
]
},
@@ -26722,9 +26722,9 @@
"default-mobile.handlebars->11->606",
"default-mobile.handlebars->11->608",
"default-mobile.handlebars->11->615",
- "default.handlebars->47->1339",
"default.handlebars->47->1341",
- "default.handlebars->47->1348"
+ "default.handlebars->47->1343",
+ "default.handlebars->47->1350"
]
},
{
@@ -26756,12 +26756,12 @@
"default-mobile.handlebars->11->923",
"default-mobile.handlebars->11->930",
"default-mobile.handlebars->11->950",
- "default.handlebars->47->2253",
- "default.handlebars->47->2256",
- "default.handlebars->47->2259",
- "default.handlebars->47->2296",
- "default.handlebars->47->2323",
- "default.handlebars->47->2335"
+ "default.handlebars->47->2255",
+ "default.handlebars->47->2258",
+ "default.handlebars->47->2261",
+ "default.handlebars->47->2298",
+ "default.handlebars->47->2325",
+ "default.handlebars->47->2337"
]
},
{
@@ -26788,7 +26788,7 @@
"zh-cht": "編輯裝置群功能",
"hu": "Eszköz Csoport funkciók szerkesztése",
"xloc": [
- "default.handlebars->47->2282"
+ "default.handlebars->47->2284"
]
},
{
@@ -26815,8 +26815,8 @@
"zh-cht": "編輯裝置群權限",
"hu": "Eszközcsoport engedélyek szerkesztése",
"xloc": [
- "default.handlebars->47->2320",
- "default.handlebars->47->2332"
+ "default.handlebars->47->2322",
+ "default.handlebars->47->2334"
]
},
{
@@ -26843,7 +26843,7 @@
"zh-cht": "編輯裝置群用戶同意",
"hu": "Eszközcsoport felhasználói hozzájárulások szerkesztése",
"xloc": [
- "default.handlebars->47->2260"
+ "default.handlebars->47->2262"
]
},
{
@@ -26871,7 +26871,7 @@
"hu": "Eszköz jegyzetek szerkesztése",
"xloc": [
"default-mobile.handlebars->11->942",
- "default.handlebars->47->2310"
+ "default.handlebars->47->2312"
]
},
{
@@ -26898,8 +26898,8 @@
"zh-cht": "編輯裝置權限",
"hu": "Eszköz engedélyek szerkesztése",
"xloc": [
- "default.handlebars->47->2325",
- "default.handlebars->47->2327"
+ "default.handlebars->47->2327",
+ "default.handlebars->47->2329"
]
},
{
@@ -26926,7 +26926,7 @@
"zh-cht": "編輯裝置標籤",
"hu": "Eszköz cimkék szerkesztése",
"xloc": [
- "default.handlebars->47->753"
+ "default.handlebars->47->755"
]
},
{
@@ -26953,7 +26953,7 @@
"zh-cht": "編輯裝置用戶同意",
"hu": "Felhasználói hozzájárulások szerkesztése",
"xloc": [
- "default.handlebars->47->2262"
+ "default.handlebars->47->2264"
]
},
{
@@ -26980,7 +26980,7 @@
"zh-cht": "編輯群組",
"hu": "Eszközcsoport szerkesztés",
"xloc": [
- "default.handlebars->47->1133"
+ "default.handlebars->47->1135"
]
},
{
@@ -27011,10 +27011,10 @@
"default-mobile.handlebars->11->512",
"default-mobile.handlebars->11->513",
"default-mobile.handlebars->11->601",
- "default.handlebars->47->1283",
- "default.handlebars->47->906",
- "default.handlebars->47->911",
- "default.handlebars->47->912"
+ "default.handlebars->47->1285",
+ "default.handlebars->47->908",
+ "default.handlebars->47->913",
+ "default.handlebars->47->914"
]
},
{
@@ -27042,7 +27042,7 @@
"hu": "Jegyzetek szerkesztése",
"xloc": [
"default-mobile.handlebars->11->957",
- "default.handlebars->47->2342"
+ "default.handlebars->47->2344"
]
},
{
@@ -27069,7 +27069,7 @@
"zh-cht": "編輯用戶同意",
"hu": "Felhasználói hozzájárulások szerkesztése",
"xloc": [
- "default.handlebars->47->2261"
+ "default.handlebars->47->2263"
]
},
{
@@ -27096,7 +27096,7 @@
"zh-cht": "編輯用戶裝置群權限",
"hu": "Felhasználói eszközcsoport engedélyek szerkesztése",
"xloc": [
- "default.handlebars->47->2333"
+ "default.handlebars->47->2335"
]
},
{
@@ -27123,7 +27123,7 @@
"zh-cht": "編輯用戶裝置權限",
"hu": "Felhasználói eszközengedélyek szerkesztése",
"xloc": [
- "default.handlebars->47->2328"
+ "default.handlebars->47->2330"
]
},
{
@@ -27150,7 +27150,7 @@
"zh-cht": "編輯用戶特徵",
"hu": "Felhasználói funkciók szerkesztése",
"xloc": [
- "default.handlebars->47->3005"
+ "default.handlebars->47->3007"
]
},
{
@@ -27177,7 +27177,7 @@
"zh-cht": "編輯用戶群",
"hu": "Felhasználói csoport szerkesztése",
"xloc": [
- "default.handlebars->47->2858"
+ "default.handlebars->47->2860"
]
},
{
@@ -27204,7 +27204,7 @@
"zh-cht": "編輯用戶群裝置權限",
"hu": "Felhasználói csoport eszköz engedélyeinek szerkesztése",
"xloc": [
- "default.handlebars->47->2330"
+ "default.handlebars->47->2332"
]
},
{
@@ -27231,7 +27231,7 @@
"zh-cht": "編輯用戶組功能",
"hu": "Felhasználói Csoportok funkciók szerkesztése",
"xloc": [
- "default.handlebars->47->2851"
+ "default.handlebars->47->2853"
]
},
{
@@ -27258,7 +27258,7 @@
"zh-cht": "編輯用戶組用戶同意",
"hu": "Felhasználói Csoport felhasználói hozzájárulások szerkesztése",
"xloc": [
- "default.handlebars->47->2263"
+ "default.handlebars->47->2265"
]
},
{
@@ -27313,7 +27313,7 @@
"zh-cht": "編輯標籤",
"hu": "Cimke szerkesztése",
"xloc": [
- "default.handlebars->47->728"
+ "default.handlebars->47->730"
]
},
{
@@ -27392,13 +27392,13 @@
"hu": "Email",
"xloc": [
"default-mobile.handlebars->11->316",
- "default.handlebars->47->2750",
- "default.handlebars->47->2884",
+ "default.handlebars->47->2752",
"default.handlebars->47->2886",
- "default.handlebars->47->2934",
- "default.handlebars->47->2947",
- "default.handlebars->47->3008",
- "default.handlebars->47->543",
+ "default.handlebars->47->2888",
+ "default.handlebars->47->2936",
+ "default.handlebars->47->2949",
+ "default.handlebars->47->3010",
+ "default.handlebars->47->545",
"login-mobile.handlebars->5->45",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
"login.handlebars->5->50",
@@ -27421,8 +27421,8 @@
"de": "E-Mail ({0})",
"es": "Correo Electronico ({0})",
"xloc": [
- "default.handlebars->47->2152",
- "default.handlebars->47->965"
+ "default.handlebars->47->2154",
+ "default.handlebars->47->967"
]
},
{
@@ -27450,7 +27450,7 @@
"hu": "E-mail cím módosítása",
"xloc": [
"default-mobile.handlebars->11->317",
- "default.handlebars->47->2031"
+ "default.handlebars->47->2033"
]
},
{
@@ -27478,7 +27478,7 @@
"hu": "E-mail hitelesítés",
"xloc": [
"default-mobile.handlebars->11->101",
- "default.handlebars->47->1771"
+ "default.handlebars->47->1773"
]
},
{
@@ -27592,8 +27592,8 @@
"zh-cht": "電子郵件通知",
"hu": "Email értesítés",
"xloc": [
- "default.handlebars->47->1101",
- "default.handlebars->47->2392"
+ "default.handlebars->47->1103",
+ "default.handlebars->47->2394"
]
},
{
@@ -27645,7 +27645,7 @@
"hu": "Email megerősítés",
"xloc": [
"default-mobile.handlebars->11->315",
- "default.handlebars->47->2029"
+ "default.handlebars->47->2031"
]
},
{
@@ -27673,7 +27673,7 @@
"hu": "A \\\"{0}\\\" e-mail domain nem engedélyezett. Csak ({1}) engedélyezett",
"xloc": [
"default-mobile.handlebars->11->1015",
- "default.handlebars->47->3240"
+ "default.handlebars->47->3242"
]
},
{
@@ -27700,7 +27700,7 @@
"zh-cht": "電郵邀請",
"hu": "Email meghívó",
"xloc": [
- "default.handlebars->47->540"
+ "default.handlebars->47->542"
]
},
{
@@ -27727,7 +27727,7 @@
"zh-cht": "電郵未驗證",
"hu": "Az e-mail cím nincs megerősítve.",
"xloc": [
- "default.handlebars->47->2685"
+ "default.handlebars->47->2687"
]
},
{
@@ -27754,8 +27754,8 @@
"zh-cht": "電子郵件已驗證",
"hu": "Az e-mail cím megerősítve.",
"xloc": [
- "default.handlebars->47->2686",
- "default.handlebars->47->2878"
+ "default.handlebars->47->2688",
+ "default.handlebars->47->2880"
]
},
{
@@ -27782,7 +27782,7 @@
"zh-cht": "電郵已驗證。",
"hu": "Az e-mail cím megerősítve.",
"xloc": [
- "default.handlebars->47->2756"
+ "default.handlebars->47->2758"
]
},
{
@@ -27809,7 +27809,7 @@
"zh-cht": "電郵未驗證",
"hu": "Az e-mail cím nincs megerősítve.",
"xloc": [
- "default.handlebars->47->2879"
+ "default.handlebars->47->2881"
]
},
{
@@ -27861,7 +27861,7 @@
"hu": "E-mail elküldve.",
"xloc": [
"default-mobile.handlebars->11->999",
- "default.handlebars->47->3224",
+ "default.handlebars->47->3226",
"login-mobile.handlebars->5->2",
"login.handlebars->5->2",
"login2.handlebars->7->201"
@@ -27944,7 +27944,7 @@
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
"hu": "E-mail megerősített és kötelező jelszó-visszaállítás szükséges.",
"xloc": [
- "default.handlebars->47->2757"
+ "default.handlebars->47->2759"
]
},
{
@@ -27995,7 +27995,7 @@
"zh-cht": "電子郵件/短信/推送流量",
"hu": "E-mail/SMS/Push forgalom",
"xloc": [
- "default.handlebars->47->3320"
+ "default.handlebars->47->3322"
]
},
{
@@ -28109,7 +28109,7 @@
"zh-cht": "啟用邀請代碼",
"hu": "Meghívókódok engedélyezése",
"xloc": [
- "default.handlebars->47->2368"
+ "default.handlebars->47->2370"
]
},
{
@@ -28164,7 +28164,7 @@
"hu": "Kétfaktoros e-mail hitelesítés engedélyezése.",
"xloc": [
"default-mobile.handlebars->11->103",
- "default.handlebars->47->1773"
+ "default.handlebars->47->1775"
]
},
{
@@ -28220,8 +28220,8 @@
"xloc": [
"default-mobile.handlebars->11->861",
"default.handlebars->47->129",
- "default.handlebars->47->1700",
- "default.handlebars->47->3098"
+ "default.handlebars->47->1702",
+ "default.handlebars->47->3100"
]
},
{
@@ -28248,7 +28248,7 @@
"zh-cht": "啟用電子郵件兩因素身份驗證",
"hu": "Kétfaktoros e-mail hitelesítés engedélyezve",
"xloc": [
- "default.handlebars->47->2559"
+ "default.handlebars->47->2561"
]
},
{
@@ -28329,7 +28329,7 @@
"zh-cht": "編碼:RAW",
"hu": "Kódolás: RAW",
"xloc": [
- "default.handlebars->47->1564"
+ "default.handlebars->47->1566"
]
},
{
@@ -28356,7 +28356,7 @@
"zh-cht": "編碼:UTF8",
"hu": "Kódolás: UTF8",
"xloc": [
- "default.handlebars->47->1565"
+ "default.handlebars->47->1567"
]
},
{
@@ -28364,7 +28364,7 @@
"nl": "Versleuteling wordt uitgevoerd",
"xloc": [
"default-mobile.handlebars->11->863",
- "default.handlebars->47->1702"
+ "default.handlebars->47->1704"
]
},
{
@@ -28392,7 +28392,7 @@
"hu": "Vége",
"xloc": [
"default-mobile.handlebars->11->633",
- "default.handlebars->47->1398"
+ "default.handlebars->47->1400"
]
},
{
@@ -28419,7 +28419,7 @@
"zh-cht": "時間結束",
"hu": "Befejezés ideje",
"xloc": [
- "default.handlebars->47->3095"
+ "default.handlebars->47->3097"
]
},
{
@@ -28446,7 +28446,7 @@
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
"hu": "Befejezett asztali munkamenet \\\"{0}\\\", {1} és {2} között, {3} másodperc",
"xloc": [
- "default.handlebars->47->2482"
+ "default.handlebars->47->2484"
]
},
{
@@ -28473,7 +28473,7 @@
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
"hu": "Befejezett fájl munkamenet \\\"{0}\\\" az {1}-től {2}-ig, {3} másodperc",
"xloc": [
- "default.handlebars->47->2483"
+ "default.handlebars->47->2485"
]
},
{
@@ -28500,7 +28500,7 @@
"zh-cht": "已結束本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2},{3} 秒",
"hu": "Befejezett helyi relay munkamenet \\\"{0}\\\" protokol {1} és {2} között, {3} másodperc",
"xloc": [
- "default.handlebars->47->2592"
+ "default.handlebars->47->2594"
]
},
{
@@ -28527,7 +28527,7 @@
"zh-cht": "從 {1} 到 {2} 結束的 Messenger 會話 \\\"{0}\\\",{3} 秒",
"hu": "Befejezett üzenetküldő munkamenet \\\"{0}\\\" {1} és {2} között, {3} másodperc",
"xloc": [
- "default.handlebars->47->2583"
+ "default.handlebars->47->2585"
]
},
{
@@ -28554,7 +28554,7 @@
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
"hu": "Befejezett relay munkamenet \\\"{0}\\\" {1} és {2} között, {3} másodperc",
"xloc": [
- "default.handlebars->47->2480"
+ "default.handlebars->47->2482"
]
},
{
@@ -28581,7 +28581,7 @@
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
"hu": "Befejezett terminál munkamenet \\\"{0}\\\" az {1}-től {2}-ig, {3} másodperc",
"xloc": [
- "default.handlebars->47->2481"
+ "default.handlebars->47->2483"
]
},
{
@@ -28609,7 +28609,7 @@
"hu": "angol",
"xloc": [
"default-mobile.handlebars->11->151",
- "default.handlebars->47->1842",
+ "default.handlebars->47->1844",
"login2.handlebars->7->48"
]
},
@@ -28638,7 +28638,7 @@
"hu": "angol (Ausztrália)",
"xloc": [
"default-mobile.handlebars->11->152",
- "default.handlebars->47->1843",
+ "default.handlebars->47->1845",
"login2.handlebars->7->49"
]
},
@@ -28667,7 +28667,7 @@
"hu": "angol (Belize)",
"xloc": [
"default-mobile.handlebars->11->153",
- "default.handlebars->47->1844",
+ "default.handlebars->47->1846",
"login2.handlebars->7->50"
]
},
@@ -28696,7 +28696,7 @@
"hu": "angol (Kanada)",
"xloc": [
"default-mobile.handlebars->11->154",
- "default.handlebars->47->1845",
+ "default.handlebars->47->1847",
"login2.handlebars->7->51"
]
},
@@ -28725,7 +28725,7 @@
"hu": "angol (Írország)",
"xloc": [
"default-mobile.handlebars->11->155",
- "default.handlebars->47->1846",
+ "default.handlebars->47->1848",
"login2.handlebars->7->52"
]
},
@@ -28754,7 +28754,7 @@
"hu": "angol (Jamaika)",
"xloc": [
"default-mobile.handlebars->11->156",
- "default.handlebars->47->1847",
+ "default.handlebars->47->1849",
"login2.handlebars->7->53"
]
},
@@ -28783,7 +28783,7 @@
"hu": "angol (Új-Zéland)",
"xloc": [
"default-mobile.handlebars->11->157",
- "default.handlebars->47->1848",
+ "default.handlebars->47->1850",
"login2.handlebars->7->54"
]
},
@@ -28812,7 +28812,7 @@
"hu": "angol (Fülöp-szigetek)",
"xloc": [
"default-mobile.handlebars->11->158",
- "default.handlebars->47->1849",
+ "default.handlebars->47->1851",
"login2.handlebars->7->55"
]
},
@@ -28841,7 +28841,7 @@
"hu": "angol (Dél-Afrika)",
"xloc": [
"default-mobile.handlebars->11->159",
- "default.handlebars->47->1850",
+ "default.handlebars->47->1852",
"login2.handlebars->7->56"
]
},
@@ -28870,7 +28870,7 @@
"hu": "angol (Trinidad és Tobago)",
"xloc": [
"default-mobile.handlebars->11->160",
- "default.handlebars->47->1851",
+ "default.handlebars->47->1853",
"login2.handlebars->7->57"
]
},
@@ -28899,7 +28899,7 @@
"hu": "angol (Egyesült Királyság)",
"xloc": [
"default-mobile.handlebars->11->161",
- "default.handlebars->47->1852",
+ "default.handlebars->47->1854",
"login2.handlebars->7->58"
]
},
@@ -28928,7 +28928,7 @@
"hu": "angol (USA)",
"xloc": [
"default-mobile.handlebars->11->162",
- "default.handlebars->47->1853",
+ "default.handlebars->47->1855",
"login2.handlebars->7->59"
]
},
@@ -28957,7 +28957,7 @@
"hu": "angol (Zimbabwe)",
"xloc": [
"default-mobile.handlebars->11->163",
- "default.handlebars->47->1854",
+ "default.handlebars->47->1856",
"login2.handlebars->7->60"
]
},
@@ -29010,10 +29010,10 @@
"hu": "Enter",
"xloc": [
"default-mobile.handlebars->11->626",
- "default.handlebars->47->1391",
- "default.handlebars->47->1528",
- "default.handlebars->47->2068",
- "default.handlebars->47->2069",
+ "default.handlebars->47->1393",
+ "default.handlebars->47->1530",
+ "default.handlebars->47->2070",
+ "default.handlebars->47->2071",
"sharing.handlebars->11->55"
]
},
@@ -29041,7 +29041,7 @@
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
"hu": "Adja meg az adminisztratív realm nevek vesszővel elválasztott listáját. (Ezek nem domain-ek)",
"xloc": [
- "default.handlebars->47->2761"
+ "default.handlebars->47->2763"
]
},
{
@@ -29068,7 +29068,7 @@
"zh-cht": "輸入IP地址範圍以掃描Intel® AMT裝置。",
"hu": "Adja meg az IP-címek tartományát az Intel® AMT eszközök kereséséhez.",
"xloc": [
- "default.handlebars->47->528"
+ "default.handlebars->47->530"
]
},
{
@@ -29146,7 +29146,7 @@
"zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
"hu": "Írja be a szöveget, majd kattintson az OK gombra a távoli beíráshoz. Győződjön meg arról, hogy a távoli kurzort a megfelelő pozícióba helyezte, mielőtt továbblép.",
"xloc": [
- "default.handlebars->47->1422"
+ "default.handlebars->47->1424"
]
},
{
@@ -29277,7 +29277,7 @@
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
"hu": "Írja be az SMS fogadásra alkalmas telefonszámát. Az ellenőrzést követően a szám felhasználható bejelentkezés ellenőrzésére és egyéb értesítésekre.",
"xloc": [
- "default.handlebars->47->1737"
+ "default.handlebars->47->1739"
]
},
{
@@ -29289,7 +29289,7 @@
"de": "Geben Sie ihren Messengerdienst und Nutzernamen ein. Sobald Sie verifiziert sind, kann dieser Server Ihnen Loginverifikationen und andere Benachrichtigungen senden.",
"es": "Ingresa a tu servicio de mensajería y Usuario. Una vez verificado, este servidor puede enviarle verificación de inicio de sesión y otras notificaciones.",
"xloc": [
- "default.handlebars->47->1743"
+ "default.handlebars->47->1745"
]
},
{
@@ -29444,7 +29444,7 @@
"hu": "Hiba, a \\\"{0}\\\" meghívókód már használatban van.",
"xloc": [
"default-mobile.handlebars->11->1007",
- "default.handlebars->47->3232"
+ "default.handlebars->47->3234"
]
},
{
@@ -29472,7 +29472,7 @@
"hu": "Hiba, a jelszó nem módosult.",
"xloc": [
"default-mobile.handlebars->11->1004",
- "default.handlebars->47->3229"
+ "default.handlebars->47->3231"
]
},
{
@@ -29500,7 +29500,7 @@
"hu": "Hiba, nem lehet átváltani a gyakran használt jelszóra.",
"xloc": [
"default-mobile.handlebars->11->1003",
- "default.handlebars->47->3228"
+ "default.handlebars->47->3230"
]
},
{
@@ -29528,7 +29528,7 @@
"hu": "Hiba, nem lehet átváltani a korábban használt jelszóra.",
"xloc": [
"default-mobile.handlebars->11->1002",
- "default.handlebars->47->3227"
+ "default.handlebars->47->3229"
]
},
{
@@ -29583,7 +29583,7 @@
"hu": "Escape",
"xloc": [
"default-mobile.handlebars->11->627",
- "default.handlebars->47->1392"
+ "default.handlebars->47->1394"
]
},
{
@@ -29620,7 +29620,7 @@
"hu": "eszperantó",
"xloc": [
"default-mobile.handlebars->11->164",
- "default.handlebars->47->1855",
+ "default.handlebars->47->1857",
"login2.handlebars->7->61"
]
},
@@ -29673,7 +29673,7 @@
"hu": "észt",
"xloc": [
"default-mobile.handlebars->11->165",
- "default.handlebars->47->1856",
+ "default.handlebars->47->1858",
"login2.handlebars->7->62"
]
},
@@ -29725,7 +29725,7 @@
"zh-cht": "事件詳情",
"hu": "Az esemény részletei",
"xloc": [
- "default.handlebars->47->1573"
+ "default.handlebars->47->1575"
]
},
{
@@ -29752,7 +29752,7 @@
"zh-cht": "事件列表輸出",
"hu": "Eseménylista exportálás",
"xloc": [
- "default.handlebars->47->2660"
+ "default.handlebars->47->2662"
]
},
{
@@ -29765,7 +29765,7 @@
"de": "Eventaufzeichnungen",
"es": "Registro de eventos",
"xloc": [
- "default.handlebars->47->3183"
+ "default.handlebars->47->3185"
]
},
{
@@ -29959,8 +29959,8 @@
"zh-cht": "到期時間",
"hu": "Lejárati idő",
"xloc": [
- "default.handlebars->47->1219",
- "default.handlebars->47->2019",
+ "default.handlebars->47->1221",
+ "default.handlebars->47->2021",
"default.handlebars->47->292"
]
},
@@ -30015,7 +30015,7 @@
"zh-cht": "過期{0}",
"hu": "Lejárat {0}",
"xloc": [
- "default.handlebars->47->2082",
+ "default.handlebars->47->2084",
"sharing.handlebars->11->95"
]
},
@@ -30043,7 +30043,7 @@
"zh-cht": "輸出裝置訊息",
"hu": "Eszközadatok exportálása",
"xloc": [
- "default.handlebars->47->719"
+ "default.handlebars->47->721"
]
},
{
@@ -30070,7 +30070,7 @@
"zh-cht": "擴充式ASCII",
"hu": "Kiterjesztett ASCII",
"xloc": [
- "default.handlebars->47->1495",
+ "default.handlebars->47->1497",
"sharing.handlebars->11->34"
]
},
@@ -30126,7 +30126,7 @@
"zh-cht": "外部",
"hu": "Külső",
"xloc": [
- "default.handlebars->47->3300"
+ "default.handlebars->47->3302"
]
},
{
@@ -30153,7 +30153,7 @@
"zh-cht": "FIDO 密鑰",
"hu": "FIDO kulcs",
"xloc": [
- "default.handlebars->47->3163"
+ "default.handlebars->47->3165"
]
},
{
@@ -30208,7 +30208,7 @@
"hu": "FYRO macedón",
"xloc": [
"default-mobile.handlebars->11->215",
- "default.handlebars->47->1906",
+ "default.handlebars->47->1908",
"login2.handlebars->7->112"
]
},
@@ -30221,8 +30221,8 @@
"de": "Facebook",
"es": "Facebook",
"xloc": [
- "default.handlebars->47->1757",
- "default.handlebars->47->2980"
+ "default.handlebars->47->1759",
+ "default.handlebars->47->2982"
]
},
{
@@ -30250,7 +30250,7 @@
"hu": "feröer-szigeteki",
"xloc": [
"default-mobile.handlebars->11->166",
- "default.handlebars->47->1857",
+ "default.handlebars->47->1859",
"login2.handlebars->7->63"
]
},
@@ -30306,7 +30306,7 @@
"hu": "Nem sikerült megváltoztatni az e-mail címet, mert egy másik fiók már használja: {0}.",
"xloc": [
"default-mobile.handlebars->11->998",
- "default.handlebars->47->3223"
+ "default.handlebars->47->3225"
]
},
{
@@ -30386,7 +30386,7 @@
"zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
"hu": "A helyi felhasználó elutasítása után nem sikerült elindítani a távoli asztalt",
"xloc": [
- "default.handlebars->47->2505"
+ "default.handlebars->47->2507"
]
},
{
@@ -30437,7 +30437,7 @@
"zh-cht": "本地用戶拒絕後無法啟動遠程文件",
"hu": "A helyi felhasználó elutasítása után nem sikerült elindítani a távoli fájl elérést",
"xloc": [
- "default.handlebars->47->2512"
+ "default.handlebars->47->2514"
]
},
{
@@ -30489,7 +30489,7 @@
"hu": "Sikertelen távoli terminál munkamenet indítása, {0} ({1})",
"xloc": [
"default-mobile.handlebars->11->618",
- "default.handlebars->47->1352",
+ "default.handlebars->47->1354",
"sharing.handlebars->11->30",
"sharing.handlebars->11->8"
]
@@ -30519,7 +30519,7 @@
"hu": "fárszi (perzsa)",
"xloc": [
"default-mobile.handlebars->11->167",
- "default.handlebars->47->1858",
+ "default.handlebars->47->1860",
"login2.handlebars->7->64"
]
},
@@ -30576,9 +30576,9 @@
"zh-cht": "功能",
"hu": "Funkciók",
"xloc": [
- "default.handlebars->47->2136",
- "default.handlebars->47->2814",
- "default.handlebars->47->2905"
+ "default.handlebars->47->2138",
+ "default.handlebars->47->2816",
+ "default.handlebars->47->2907"
]
},
{
@@ -30606,7 +30606,7 @@
"hu": "fidzsi",
"xloc": [
"default-mobile.handlebars->11->168",
- "default.handlebars->47->1859",
+ "default.handlebars->47->1861",
"login2.handlebars->7->65"
]
},
@@ -30662,9 +30662,9 @@
"hu": "Fájl szerkesztő",
"xloc": [
"default-mobile.handlebars->11->699",
- "default.handlebars->47->1540",
- "default.handlebars->47->2461",
- "default.handlebars->47->839",
+ "default.handlebars->47->1542",
+ "default.handlebars->47->2463",
+ "default.handlebars->47->841",
"sharing.handlebars->11->66"
]
},
@@ -30716,10 +30716,10 @@
"zh-cht": "檔案操作",
"hu": "Fáj Művelet",
"xloc": [
- "default.handlebars->47->1510",
"default.handlebars->47->1512",
"default.handlebars->47->1514",
"default.handlebars->47->1516",
+ "default.handlebars->47->1518",
"sharing.handlebars->11->46",
"sharing.handlebars->11->48"
]
@@ -30757,7 +30757,7 @@
"pl": "System Plików",
"xloc": [
"default-mobile.handlebars->11->859",
- "default.handlebars->47->1698"
+ "default.handlebars->47->1700"
]
},
{
@@ -30784,7 +30784,7 @@
"zh-cht": "文件傳輸",
"hu": "Fálj átvitel",
"xloc": [
- "default.handlebars->47->3076"
+ "default.handlebars->47->3078"
]
},
{
@@ -30811,7 +30811,7 @@
"zh-cht": "FileSystemDriver",
"hu": "FileSystemDriver",
"xloc": [
- "default.handlebars->47->1439"
+ "default.handlebars->47->1441"
]
},
{
@@ -30840,15 +30840,15 @@
"xloc": [
"default-mobile.handlebars->11->423",
"default-mobile.handlebars->11->563",
- "default.handlebars->47->1077",
- "default.handlebars->47->1190",
- "default.handlebars->47->2191",
- "default.handlebars->47->2271",
- "default.handlebars->47->3083",
- "default.handlebars->47->3143",
- "default.handlebars->47->3193",
- "default.handlebars->47->3288",
- "default.handlebars->47->457",
+ "default.handlebars->47->1079",
+ "default.handlebars->47->1192",
+ "default.handlebars->47->2193",
+ "default.handlebars->47->2273",
+ "default.handlebars->47->3085",
+ "default.handlebars->47->3145",
+ "default.handlebars->47->3195",
+ "default.handlebars->47->3290",
+ "default.handlebars->47->459",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
"default.handlebars->contextMenu->cxfiles",
"sharing.handlebars->LeftSideToolBar"
@@ -30905,10 +30905,10 @@
"zh-cht": "檔案通知",
"hu": "Fájl kapcsolat értesítés",
"xloc": [
- "default.handlebars->47->2144",
- "default.handlebars->47->2822",
- "default.handlebars->47->2927",
- "default.handlebars->47->957"
+ "default.handlebars->47->2146",
+ "default.handlebars->47->2824",
+ "default.handlebars->47->2929",
+ "default.handlebars->47->959"
]
},
{
@@ -30935,10 +30935,10 @@
"zh-cht": "檔案提示",
"hu": "Fájl kapcsolat engedélykérés",
"xloc": [
- "default.handlebars->47->2143",
- "default.handlebars->47->2821",
- "default.handlebars->47->2926",
- "default.handlebars->47->956"
+ "default.handlebars->47->2145",
+ "default.handlebars->47->2823",
+ "default.handlebars->47->2928",
+ "default.handlebars->47->958"
]
},
{
@@ -30966,7 +30966,7 @@
"hu": "Szűrő",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1",
- "default.handlebars->47->1524",
+ "default.handlebars->47->1526",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar",
"default.handlebars->container->column_l->p16->3->1->0->5",
@@ -31055,7 +31055,7 @@
"zh-cht": "查找文件",
"hu": "Fájlok keresése",
"xloc": [
- "default.handlebars->47->1527",
+ "default.handlebars->47->1529",
"sharing.handlebars->11->54"
]
},
@@ -31083,7 +31083,7 @@
"zh-cht": "已完成錄製會話 \\\"{0}\\\",{1} 秒",
"hu": "Felvétel kész, \\\"{0}\\\", {1} másodperc",
"xloc": [
- "default.handlebars->47->2617"
+ "default.handlebars->47->2619"
]
},
{
@@ -31110,7 +31110,7 @@
"zh-cht": "錄製會話已完成,{0}秒",
"hu": "Felvétel kész, {0} másodperc",
"xloc": [
- "default.handlebars->47->2478"
+ "default.handlebars->47->2480"
]
},
{
@@ -31138,7 +31138,7 @@
"hu": "finn",
"xloc": [
"default-mobile.handlebars->11->169",
- "default.handlebars->47->1860",
+ "default.handlebars->47->1862",
"login2.handlebars->7->66"
]
},
@@ -31168,8 +31168,8 @@
"xloc": [
"default-mobile.handlebars->11->739",
"default-mobile.handlebars->11->741",
- "default.handlebars->47->930",
- "default.handlebars->47->932"
+ "default.handlebars->47->932",
+ "default.handlebars->47->934"
]
},
{
@@ -31196,8 +31196,8 @@
"zh-cht": "防火牆未激活",
"hu": "Tűzfal nincs bekapcsolva",
"xloc": [
- "default.handlebars->47->2408",
- "default.handlebars->47->2422"
+ "default.handlebars->47->2410",
+ "default.handlebars->47->2424"
]
},
{
@@ -31205,7 +31205,7 @@
"nl": "Eerste fout",
"pl": "Pierwsza Awaria",
"xloc": [
- "default.handlebars->47->1450"
+ "default.handlebars->47->1452"
]
},
{
@@ -31264,7 +31264,7 @@
"zh-cht": "標誌",
"hu": "Jelzők",
"xloc": [
- "default.handlebars->47->2633"
+ "default.handlebars->47->2635"
]
},
{
@@ -31292,7 +31292,7 @@
"hu": "Villog",
"xloc": [
"default-mobile.handlebars->11->567",
- "default.handlebars->47->1233"
+ "default.handlebars->47->1235"
]
},
{
@@ -31374,7 +31374,7 @@
"zh-cht": "對於ACM激活,需要將英特爾®AMT設置為以下受信任的FQDN:",
"hu": "Az ACM-aktiváláshoz az Intel® AMT-t a következő trusted FQDN-re kell beállítani:",
"xloc": [
- "default.handlebars->47->518"
+ "default.handlebars->47->520"
]
},
{
@@ -31510,7 +31510,7 @@
"zh-cht": "對於代理更新",
"hu": "az Agent frissítéshez.",
"xloc": [
- "default.handlebars->47->772"
+ "default.handlebars->47->774"
]
},
{
@@ -31537,7 +31537,7 @@
"zh-cht": "強制代理更新",
"hu": "Kényszerített Agent frissítés",
"xloc": [
- "default.handlebars->47->731"
+ "default.handlebars->47->733"
]
},
{
@@ -31564,7 +31564,7 @@
"zh-cht": "在選定的設備上強制更新代理?",
"hu": "Kényszerített Agent frissítés a kiválasztott eszközökön?",
"xloc": [
- "default.handlebars->47->771"
+ "default.handlebars->47->773"
]
},
{
@@ -31591,8 +31591,8 @@
"zh-cht": "下次登入時強制重置密碼。",
"hu": "A következő bejelentkezéskor kötelező a jelszót megváltozgatni.",
"xloc": [
- "default.handlebars->47->2755",
- "default.handlebars->47->3019"
+ "default.handlebars->47->2757",
+ "default.handlebars->47->3021"
]
},
{
@@ -31619,7 +31619,7 @@
"zh-cht": "強行斷開用戶 {0} 的桌面會話",
"hu": "A {0} felhasználó asztali munkamenetének erőszakos megszakítása",
"xloc": [
- "default.handlebars->47->2605"
+ "default.handlebars->47->2607"
]
},
{
@@ -31646,7 +31646,7 @@
"zh-cht": "強制斷開用戶 {0} 的文件會話",
"hu": "A {0} felhasználó fájlmunkamenetének erőszakos szétkapcsolása",
"xloc": [
- "default.handlebars->47->2607"
+ "default.handlebars->47->2609"
]
},
{
@@ -31673,7 +31673,7 @@
"zh-cht": "強制斷開用戶 {0} 的路由會話",
"hu": "A {0} felhasználó átjárómunkamenetének erőszakos szétkapcsolása",
"xloc": [
- "default.handlebars->47->2608"
+ "default.handlebars->47->2610"
]
},
{
@@ -31700,7 +31700,7 @@
"zh-cht": "強制斷開用戶 {0} 的終端會話",
"hu": "A {0} felhasználó terminál munkamenetének erőszakos szétkapcsolása",
"xloc": [
- "default.handlebars->47->2606"
+ "default.handlebars->47->2608"
]
},
{
@@ -31811,7 +31811,7 @@
"zh-cht": "格式化",
"hu": "Format",
"xloc": [
- "default.handlebars->47->2651"
+ "default.handlebars->47->2653"
]
},
{
@@ -31891,8 +31891,8 @@
"zh-cht": "自由",
"hu": "Free",
"xloc": [
- "default.handlebars->47->3246",
- "default.handlebars->47->3248"
+ "default.handlebars->47->3248",
+ "default.handlebars->47->3250"
]
},
{
@@ -31903,8 +31903,8 @@
"pl": "Darmowa usługa z ntfy.sh",
"es": "Servicio gratuito en ntfy.sh",
"xloc": [
- "default.handlebars->47->1760",
- "default.handlebars->47->2983"
+ "default.handlebars->47->1762",
+ "default.handlebars->47->2985"
]
},
{
@@ -31960,7 +31960,7 @@
"hu": "francia (Belgium)",
"xloc": [
"default-mobile.handlebars->11->171",
- "default.handlebars->47->1862",
+ "default.handlebars->47->1864",
"login2.handlebars->7->68"
]
},
@@ -31989,7 +31989,7 @@
"hu": "francia (Kanada)",
"xloc": [
"default-mobile.handlebars->11->172",
- "default.handlebars->47->1863",
+ "default.handlebars->47->1865",
"login2.handlebars->7->69"
]
},
@@ -32018,7 +32018,7 @@
"hu": "francia (Franciaország)",
"xloc": [
"default-mobile.handlebars->11->173",
- "default.handlebars->47->1864",
+ "default.handlebars->47->1866",
"login2.handlebars->7->70"
]
},
@@ -32047,7 +32047,7 @@
"hu": "francia (Luxembourg)",
"xloc": [
"default-mobile.handlebars->11->174",
- "default.handlebars->47->1865",
+ "default.handlebars->47->1867",
"login2.handlebars->7->71"
]
},
@@ -32076,7 +32076,7 @@
"hu": "francia (Monaco)",
"xloc": [
"default-mobile.handlebars->11->175",
- "default.handlebars->47->1866",
+ "default.handlebars->47->1868",
"login2.handlebars->7->72"
]
},
@@ -32105,7 +32105,7 @@
"hu": "francia",
"xloc": [
"default-mobile.handlebars->11->170",
- "default.handlebars->47->1861",
+ "default.handlebars->47->1863",
"login2.handlebars->7->67"
]
},
@@ -32134,7 +32134,7 @@
"hu": "francia (Svájc)",
"xloc": [
"default-mobile.handlebars->11->176",
- "default.handlebars->47->1867",
+ "default.handlebars->47->1869",
"login2.handlebars->7->73"
]
},
@@ -32163,7 +32163,7 @@
"hu": "fríz",
"xloc": [
"default-mobile.handlebars->11->177",
- "default.handlebars->47->1868",
+ "default.handlebars->47->1870",
"login2.handlebars->7->74"
]
},
@@ -32192,7 +32192,7 @@
"hu": "friuli",
"xloc": [
"default-mobile.handlebars->11->178",
- "default.handlebars->47->1869",
+ "default.handlebars->47->1871",
"login2.handlebars->7->75"
]
},
@@ -32224,9 +32224,9 @@
"default-mobile.handlebars->11->911",
"default-mobile.handlebars->11->929",
"default-mobile.handlebars->11->949",
- "default.handlebars->47->2075",
- "default.handlebars->47->2295",
- "default.handlebars->47->2767"
+ "default.handlebars->47->2077",
+ "default.handlebars->47->2297",
+ "default.handlebars->47->2769"
]
},
{
@@ -32253,7 +32253,7 @@
"zh-cht": "完整管理員(保留所有權利)",
"hu": "Teljes jogú adminisztrátor (minden jog)",
"xloc": [
- "default.handlebars->47->2334"
+ "default.handlebars->47->2336"
]
},
{
@@ -32304,7 +32304,7 @@
"zh-cht": "完整裝置權限",
"hu": "Teljes körű eszköz adminisztrátor",
"xloc": [
- "default.handlebars->47->1110"
+ "default.handlebars->47->1112"
]
},
{
@@ -32331,7 +32331,7 @@
"zh-cht": "全部權限",
"hu": "Teljes körű adminisztrátor",
"xloc": [
- "default.handlebars->47->1132"
+ "default.handlebars->47->1134"
]
},
{
@@ -32415,7 +32415,7 @@
"zh-cht": "完整管理員",
"hu": "Teljes körű adminisztrátor",
"xloc": [
- "default.handlebars->47->2872"
+ "default.handlebars->47->2874"
]
},
{
@@ -32442,8 +32442,8 @@
"zh-cht": "全自動的",
"hu": "Teljesen automatikus",
"xloc": [
- "default.handlebars->47->2164",
- "default.handlebars->47->2225"
+ "default.handlebars->47->2166",
+ "default.handlebars->47->2227"
]
},
{
@@ -32451,7 +32451,7 @@
"nl": "Volledig gedecodeerd",
"xloc": [
"default-mobile.handlebars->11->862",
- "default.handlebars->47->1701"
+ "default.handlebars->47->1703"
]
},
{
@@ -32459,7 +32459,7 @@
"nl": "Volledig gecodeerd",
"xloc": [
"default-mobile.handlebars->11->864",
- "default.handlebars->47->1703"
+ "default.handlebars->47->1705"
]
},
{
@@ -32514,7 +32514,7 @@
"hu": "GPU",
"xloc": [
"default-mobile.handlebars->11->816",
- "default.handlebars->47->1655"
+ "default.handlebars->47->1657"
]
},
{
@@ -32542,7 +32542,7 @@
"hu": "gael (Ír)",
"xloc": [
"default-mobile.handlebars->11->180",
- "default.handlebars->47->1871",
+ "default.handlebars->47->1873",
"login2.handlebars->7->77"
]
},
@@ -32571,7 +32571,7 @@
"hu": "gael (Skót)",
"xloc": [
"default-mobile.handlebars->11->179",
- "default.handlebars->47->1870",
+ "default.handlebars->47->1872",
"login2.handlebars->7->76"
]
},
@@ -32600,7 +32600,7 @@
"hu": "galíciai",
"xloc": [
"default-mobile.handlebars->11->181",
- "default.handlebars->47->1872",
+ "default.handlebars->47->1874",
"login2.handlebars->7->78"
]
},
@@ -32655,7 +32655,7 @@
"hu": "Átjáró: {0}",
"xloc": [
"default-mobile.handlebars->11->780",
- "default.handlebars->47->1619"
+ "default.handlebars->47->1621"
]
},
{
@@ -32742,7 +32742,7 @@
"zh-cht": "一般訊息",
"hu": "Általános információk",
"xloc": [
- "default.handlebars->47->846"
+ "default.handlebars->47->848"
]
},
{
@@ -32796,7 +32796,7 @@
"zh-cht": "生成報告",
"hu": "Jelentés készítése",
"xloc": [
- "default.handlebars->47->3124"
+ "default.handlebars->47->3126"
]
},
{
@@ -32851,7 +32851,7 @@
"hu": "grúz",
"xloc": [
"default-mobile.handlebars->11->182",
- "default.handlebars->47->1873",
+ "default.handlebars->47->1875",
"login2.handlebars->7->79"
]
},
@@ -32880,7 +32880,7 @@
"hu": "német (Ausztria)",
"xloc": [
"default-mobile.handlebars->11->184",
- "default.handlebars->47->1875",
+ "default.handlebars->47->1877",
"login2.handlebars->7->81"
]
},
@@ -32909,7 +32909,7 @@
"hu": "német (Németország)",
"xloc": [
"default-mobile.handlebars->11->185",
- "default.handlebars->47->1876",
+ "default.handlebars->47->1878",
"login2.handlebars->7->82"
]
},
@@ -32938,7 +32938,7 @@
"hu": "német (Liechtenstein)",
"xloc": [
"default-mobile.handlebars->11->186",
- "default.handlebars->47->1877",
+ "default.handlebars->47->1879",
"login2.handlebars->7->83"
]
},
@@ -32967,7 +32967,7 @@
"hu": "német (Luxemburg)",
"xloc": [
"default-mobile.handlebars->11->187",
- "default.handlebars->47->1878",
+ "default.handlebars->47->1880",
"login2.handlebars->7->84"
]
},
@@ -32996,7 +32996,7 @@
"hu": "német",
"xloc": [
"default-mobile.handlebars->11->183",
- "default.handlebars->47->1874",
+ "default.handlebars->47->1876",
"login2.handlebars->7->80"
]
},
@@ -33025,7 +33025,7 @@
"hu": "német (Svájc)",
"xloc": [
"default-mobile.handlebars->11->188",
- "default.handlebars->47->1879",
+ "default.handlebars->47->1881",
"login2.handlebars->7->85"
]
},
@@ -33053,7 +33053,7 @@
"zh-cht": "獲取剪貼板",
"hu": "Vágólap lekérés",
"xloc": [
- "default.handlebars->47->1424"
+ "default.handlebars->47->1426"
]
},
{
@@ -33080,7 +33080,7 @@
"zh-cht": "獲取此裝置的MQTT登入憑證。",
"hu": "Az eszköz MQTT bejelentkezési hitelesítő adatainak lekérdezése.",
"xloc": [
- "default.handlebars->47->1042"
+ "default.handlebars->47->1044"
]
},
{
@@ -33135,7 +33135,7 @@
"zh-cht": "正在獲取剪貼板內容,{0}個字節",
"hu": "A vágólap tartalmának lekérése, {0} bájt",
"xloc": [
- "default.handlebars->47->2492"
+ "default.handlebars->47->2494"
]
},
{
@@ -33151,7 +33151,7 @@
"nl": "Ga naar map",
"pl": "Przejdź do Folderu",
"xloc": [
- "default.handlebars->47->1523"
+ "default.handlebars->47->1525"
]
},
{
@@ -33294,7 +33294,7 @@
"zh-cht": "好",
"hu": "megfelelő",
"xloc": [
- "default.handlebars->47->2071"
+ "default.handlebars->47->2073"
]
},
{
@@ -33353,8 +33353,8 @@
"zh-cht": "Google雲端硬盤備份",
"hu": "Google Drive Biztonsági mentés",
"xloc": [
- "default.handlebars->47->2092",
- "default.handlebars->47->2095",
+ "default.handlebars->47->2094",
+ "default.handlebars->47->2097",
"default.handlebars->47->320"
]
},
@@ -33382,7 +33382,7 @@
"zh-cht": "Google雲端硬盤控制台",
"hu": "Google Drive Consol",
"xloc": [
- "default.handlebars->47->2089"
+ "default.handlebars->47->2091"
]
},
{
@@ -33436,7 +33436,7 @@
"zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
"hu": "A Google Drive biztonsági mentése jelenleg aktív.",
"xloc": [
- "default.handlebars->47->2093"
+ "default.handlebars->47->2095"
]
},
{
@@ -33488,7 +33488,7 @@
"hu": "görög",
"xloc": [
"default-mobile.handlebars->11->189",
- "default.handlebars->47->1880",
+ "default.handlebars->47->1882",
"login2.handlebars->7->86"
]
},
@@ -33517,8 +33517,8 @@
"hu": "Csoport",
"xloc": [
"default-mobile.handlebars->11->478",
- "default.handlebars->47->3140",
- "default.handlebars->47->874",
+ "default.handlebars->47->3142",
+ "default.handlebars->47->876",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
]
},
@@ -33546,9 +33546,9 @@
"zh-cht": "集體指令",
"hu": "Művelet a kijelölteken",
"xloc": [
- "default.handlebars->47->2701",
- "default.handlebars->47->2791",
- "default.handlebars->47->736",
+ "default.handlebars->47->2703",
+ "default.handlebars->47->2793",
+ "default.handlebars->47->738",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
"default.handlebars->container->column_l->p4->3->1->0->3->3",
"default.handlebars->container->column_l->p50->3->1->0->3->p50userGroupOps"
@@ -33578,7 +33578,7 @@
"zh-cht": "通過...分群",
"hu": "Csoportosítás",
"xloc": [
- "default.handlebars->47->2647"
+ "default.handlebars->47->2649"
]
},
{
@@ -33606,7 +33606,7 @@
"hu": "Csoport azonosító",
"xloc": [
"agent-translations.json",
- "default.handlebars->47->2808"
+ "default.handlebars->47->2810"
]
},
{
@@ -33633,7 +33633,7 @@
"zh-cht": "群組成員",
"hu": "Csoporttagok",
"xloc": [
- "default.handlebars->47->2833"
+ "default.handlebars->47->2835"
]
},
{
@@ -33673,7 +33673,7 @@
"de": "Gruppentyp",
"es": "Tipo de grupo",
"xloc": [
- "default.handlebars->47->2809"
+ "default.handlebars->47->2811"
]
},
{
@@ -33700,8 +33700,8 @@
"zh-cht": "通過...分群",
"hu": "Csoportosítás",
"xloc": [
- "default.handlebars->47->3110",
- "default.handlebars->47->3113"
+ "default.handlebars->47->3112",
+ "default.handlebars->47->3115"
]
},
{
@@ -33728,7 +33728,7 @@
"zh-cht": "團隊名字",
"hu": "Csoport név",
"xloc": [
- "default.handlebars->47->2631"
+ "default.handlebars->47->2633"
]
},
{
@@ -33755,7 +33755,7 @@
"zh-cht": "用戶{0}的群組權限。",
"hu": "Csoportengedélyek a(z) {0} felhasználó számára.",
"xloc": [
- "default.handlebars->47->2294"
+ "default.handlebars->47->2296"
]
},
{
@@ -33782,7 +33782,7 @@
"zh-cht": "{0}的群組權限。",
"hu": "Csoportengedélyek a következőhöz: {0}.",
"xloc": [
- "default.handlebars->47->2293"
+ "default.handlebars->47->2295"
]
},
{
@@ -33890,7 +33890,7 @@
"zh-cht": "來賓",
"hu": "Vendég",
"xloc": [
- "default.handlebars->47->3130"
+ "default.handlebars->47->3132"
]
},
{
@@ -33917,7 +33917,7 @@
"zh-cht": "來賓姓名",
"hu": "Vendég neve",
"xloc": [
- "default.handlebars->47->1187",
+ "default.handlebars->47->1189",
"default.handlebars->47->282"
]
},
@@ -33945,8 +33945,8 @@
"zh-cht": "嘉賓分享",
"hu": "Vendég megosztás",
"xloc": [
- "default.handlebars->47->1117",
- "default.handlebars->47->1142"
+ "default.handlebars->47->1119",
+ "default.handlebars->47->1144"
]
},
{
@@ -33973,7 +33973,7 @@
"zh-cht": "嘉賓分享",
"hu": "Vendégmegosztás",
"xloc": [
- "default.handlebars->47->2302"
+ "default.handlebars->47->2304"
]
},
{
@@ -34001,7 +34001,7 @@
"hu": "gudzsaráti",
"xloc": [
"default-mobile.handlebars->11->190",
- "default.handlebars->47->1881",
+ "default.handlebars->47->1883",
"login2.handlebars->7->87"
]
},
@@ -34030,10 +34030,10 @@
"hu": "HTTP",
"xloc": [
"default-mobile.handlebars->11->547",
- "default.handlebars->47->1027",
- "default.handlebars->47->1194",
- "default.handlebars->47->3284",
- "default.handlebars->47->434"
+ "default.handlebars->47->1029",
+ "default.handlebars->47->1196",
+ "default.handlebars->47->3286",
+ "default.handlebars->47->436"
]
},
{
@@ -34059,7 +34059,7 @@
"zh-cht": "HTTP 連接",
"hu": "HTTP kapcsolat",
"xloc": [
- "default.handlebars->47->835"
+ "default.handlebars->47->837"
]
},
{
@@ -34085,7 +34085,7 @@
"zh-cht": "HTTP遠程連接端口:",
"hu": "HTTP távoli kapcsolat portja:",
"xloc": [
- "default.handlebars->47->834"
+ "default.handlebars->47->836"
]
},
{
@@ -34110,8 +34110,8 @@
"tr": "HTTP/",
"hu": "HTTP/",
"xloc": [
- "default.handlebars->47->1081",
- "default.handlebars->47->2195"
+ "default.handlebars->47->1083",
+ "default.handlebars->47->2197"
]
},
{
@@ -34151,9 +34151,9 @@
"hu": "HTTPS",
"xloc": [
"default-mobile.handlebars->11->548",
- "default.handlebars->47->1028",
- "default.handlebars->47->1195",
- "default.handlebars->47->435"
+ "default.handlebars->47->1030",
+ "default.handlebars->47->1197",
+ "default.handlebars->47->437"
]
},
{
@@ -34179,7 +34179,7 @@
"zh-cht": "HTTPS 連接",
"hu": "HTTPS kapcsolat",
"xloc": [
- "default.handlebars->47->837"
+ "default.handlebars->47->839"
]
},
{
@@ -34205,7 +34205,7 @@
"zh-cht": "HTTPS遠程連接端口:",
"hu": "HTTPS távoli kapcsolat portja:",
"xloc": [
- "default.handlebars->47->836"
+ "default.handlebars->47->838"
]
},
{
@@ -34230,8 +34230,8 @@
"tr": "HTTPS/",
"hu": "HTTPS/",
"xloc": [
- "default.handlebars->47->1082",
- "default.handlebars->47->2196"
+ "default.handlebars->47->1084",
+ "default.handlebars->47->2198"
]
},
{
@@ -34314,7 +34314,7 @@
"hu": "haiti-szigeteki",
"xloc": [
"default-mobile.handlebars->11->191",
- "default.handlebars->47->1882",
+ "default.handlebars->47->1884",
"login2.handlebars->7->88"
]
},
@@ -34327,8 +34327,8 @@
"de": "Nutzername",
"es": "Usuario",
"xloc": [
- "default.handlebars->47->1753",
- "default.handlebars->47->2976"
+ "default.handlebars->47->1755",
+ "default.handlebars->47->2978"
]
},
{
@@ -34410,7 +34410,7 @@
"hu": "Agent kényszerített lecsatlakoztatása",
"xloc": [
"default-mobile.handlebars->11->889",
- "default.handlebars->47->1729"
+ "default.handlebars->47->1731"
]
},
{
@@ -34437,7 +34437,7 @@
"zh-cht": "硬件一次性密碼",
"hu": "Hardveres OTP",
"xloc": [
- "default.handlebars->47->3165"
+ "default.handlebars->47->3167"
]
},
{
@@ -34464,7 +34464,7 @@
"zh-cht": "堆總數",
"hu": "Teljes Heap",
"xloc": [
- "default.handlebars->47->3302"
+ "default.handlebars->47->3304"
]
},
{
@@ -34491,7 +34491,7 @@
"zh-cht": "堆使用",
"hu": "Használ Heap",
"xloc": [
- "default.handlebars->47->3301"
+ "default.handlebars->47->3303"
]
},
{
@@ -34519,7 +34519,7 @@
"hu": "héber",
"xloc": [
"default-mobile.handlebars->11->192",
- "default.handlebars->47->1883",
+ "default.handlebars->47->1885",
"login2.handlebars->7->89"
]
},
@@ -34626,7 +34626,7 @@
"zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}",
"hu": "Segítséget kért {0} felhasználó, részletek: {1}",
"xloc": [
- "default.handlebars->47->2569"
+ "default.handlebars->47->2571"
]
},
{
@@ -34654,7 +34654,7 @@
"hu": "Segítség kérések",
"xloc": [
"default-mobile.handlebars->11->407",
- "default.handlebars->47->440"
+ "default.handlebars->47->442"
]
},
{
@@ -34694,10 +34694,10 @@
"de": "Hilfeanforderungen",
"es": "Solicitudes de ayuda",
"xloc": [
- "default.handlebars->47->1104",
- "default.handlebars->47->1108",
- "default.handlebars->47->2395",
- "default.handlebars->47->2399"
+ "default.handlebars->47->1106",
+ "default.handlebars->47->1110",
+ "default.handlebars->47->2397",
+ "default.handlebars->47->2401"
]
},
{
@@ -34725,7 +34725,7 @@
"hu": "Segítsen a MeshCentral fordításában",
"xloc": [
"default-mobile.handlebars->11->307",
- "default.handlebars->47->1998"
+ "default.handlebars->47->2000"
]
},
{
@@ -34837,7 +34837,7 @@
"default-mobile.handlebars->11->441",
"default-mobile.handlebars->11->449",
"default.handlebars->47->5",
- "default.handlebars->47->686"
+ "default.handlebars->47->688"
]
},
{
@@ -34865,7 +34865,7 @@
"hu": "hindi",
"xloc": [
"default-mobile.handlebars->11->193",
- "default.handlebars->47->1884",
+ "default.handlebars->47->1886",
"login2.handlebars->7->90"
]
},
@@ -34918,7 +34918,7 @@
"hu": "1 bejegyzés megtartása másoláshoz",
"xloc": [
"default-mobile.handlebars->11->708",
- "default.handlebars->47->1551",
+ "default.handlebars->47->1553",
"sharing.handlebars->11->76"
]
},
@@ -34947,7 +34947,7 @@
"hu": "1 bejegyzés megtartása áthelyezéshez",
"xloc": [
"default-mobile.handlebars->11->712",
- "default.handlebars->47->1555",
+ "default.handlebars->47->1557",
"sharing.handlebars->11->80"
]
},
@@ -34976,7 +34976,7 @@
"hu": "{0} bejegyzés megtartása másoláshoz",
"xloc": [
"default-mobile.handlebars->11->706",
- "default.handlebars->47->1549",
+ "default.handlebars->47->1551",
"sharing.handlebars->11->74"
]
},
@@ -35005,7 +35005,7 @@
"hu": "{0} bejegyzés megtartása áthehyezéshez",
"xloc": [
"default-mobile.handlebars->11->710",
- "default.handlebars->47->1553",
+ "default.handlebars->47->1555",
"sharing.handlebars->11->78"
]
},
@@ -35034,7 +35034,7 @@
"hu": "{0} bejegyzés megtartása {1} {2}",
"xloc": [
"default-mobile.handlebars->11->367",
- "default.handlebars->47->2465"
+ "default.handlebars->47->2467"
]
},
{
@@ -35062,7 +35062,7 @@
"hu": "Home",
"xloc": [
"default-mobile.handlebars->11->632",
- "default.handlebars->47->1397"
+ "default.handlebars->47->1399"
]
},
{
@@ -35095,13 +35095,13 @@
"default-mobile.handlebars->11->611",
"default-mobile.handlebars->11->771",
"default-mobile.handlebars->11->904",
- "default.handlebars->47->1344",
- "default.handlebars->47->1600",
- "default.handlebars->47->2064",
- "default.handlebars->47->2125",
- "default.handlebars->47->492",
- "default.handlebars->47->501",
- "default.handlebars->47->879"
+ "default.handlebars->47->1346",
+ "default.handlebars->47->1602",
+ "default.handlebars->47->2066",
+ "default.handlebars->47->2127",
+ "default.handlebars->47->494",
+ "default.handlebars->47->503",
+ "default.handlebars->47->881"
]
},
{
@@ -35128,7 +35128,7 @@
"zh-cht": "主機名同步",
"hu": "Gépnév szinkronizálás",
"xloc": [
- "default.handlebars->47->2132"
+ "default.handlebars->47->2134"
]
},
{
@@ -35164,7 +35164,7 @@
"hu": "magyar",
"xloc": [
"default-mobile.handlebars->11->194",
- "default.handlebars->47->1885",
+ "default.handlebars->47->1887",
"login2.handlebars->7->91"
]
},
@@ -35192,7 +35192,7 @@
"zh-cht": "服務器所需的混合",
"hu": "Hibrid szükséges a szerverhez",
"xloc": [
- "default.handlebars->47->1362"
+ "default.handlebars->47->1364"
]
},
{
@@ -35219,8 +35219,8 @@
"zh-cht": "IP地址",
"hu": "IP Cím",
"xloc": [
- "default.handlebars->47->3135",
- "default.handlebars->47->3171"
+ "default.handlebars->47->3137",
+ "default.handlebars->47->3173"
]
},
{
@@ -35295,8 +35295,8 @@
"zh-cht": "IP範圍",
"hu": "IP tartomány",
"xloc": [
- "default.handlebars->47->529",
- "default.handlebars->47->531"
+ "default.handlebars->47->531",
+ "default.handlebars->47->533"
]
},
{
@@ -35338,7 +35338,7 @@
"de": "Aufzeichnungen zu IP Lokationsinformationen",
"es": "Registros de Ubicacion IP",
"xloc": [
- "default.handlebars->47->3177"
+ "default.handlebars->47->3179"
]
},
{
@@ -35368,8 +35368,8 @@
"default-mobile.handlebars->11->462",
"default-mobile.handlebars->11->519",
"default-mobile.handlebars->11->550",
- "default.handlebars->47->403",
- "default.handlebars->47->704"
+ "default.handlebars->47->405",
+ "default.handlebars->47->706"
]
},
{
@@ -35396,7 +35396,7 @@
"zh-cht": "IP-KVM / 電源設備",
"hu": "IP-KVM / Power eszköz",
"xloc": [
- "default.handlebars->47->2054"
+ "default.handlebars->47->2056"
]
},
{
@@ -35423,7 +35423,7 @@
"zh-cht": "IP-KVM / 通過代理中繼的電源設備",
"hu": "IP-KVM / Power eszköz Agenten keresztül",
"xloc": [
- "default.handlebars->47->2055"
+ "default.handlebars->47->2057"
]
},
{
@@ -35451,7 +35451,7 @@
"hu": "IP-KVM eszköz",
"xloc": [
"default-mobile.handlebars->11->896",
- "default.handlebars->47->2117"
+ "default.handlebars->47->2119"
]
},
{
@@ -35479,7 +35479,7 @@
"hu": "IP-KVM eszköz továbbítva ügynökön keresztül",
"xloc": [
"default-mobile.handlebars->11->897",
- "default.handlebars->47->2118"
+ "default.handlebars->47->2120"
]
},
{
@@ -35506,8 +35506,8 @@
"zh-cht": "已連接 IP-KVM 端口",
"hu": "IP-KVM port csatlakoztatva",
"xloc": [
- "default.handlebars->47->1048",
- "default.handlebars->47->1049"
+ "default.handlebars->47->1050",
+ "default.handlebars->47->1051"
]
},
{
@@ -35534,7 +35534,7 @@
"zh-cht": "IP-KVM 端口已連接並可使用。",
"hu": "IP-KVM port csatlakoztatva van és használatra kész.",
"xloc": [
- "default.handlebars->47->402"
+ "default.handlebars->47->404"
]
},
{
@@ -35561,7 +35561,7 @@
"zh-cht": "IP-KVM 端口已啟動並可以使用。",
"hu": "IP-KVM port csatlakozva és használatra kész.",
"xloc": [
- "default.handlebars->47->703"
+ "default.handlebars->47->705"
]
},
{
@@ -35589,8 +35589,8 @@
"hu": "IP: {0}",
"xloc": [
"default-mobile.handlebars->11->778",
- "default.handlebars->47->1610",
- "default.handlebars->47->1617"
+ "default.handlebars->47->1612",
+ "default.handlebars->47->1619"
]
},
{
@@ -35617,7 +35617,7 @@
"zh-cht": "IP:{0},遮罩:{1},閘道:{2}",
"hu": "IP: {0}, Hálózati maszk: {1}, Átjáró: {2}",
"xloc": [
- "default.handlebars->47->1608"
+ "default.handlebars->47->1610"
]
},
{
@@ -35645,9 +35645,9 @@
"hu": "IPv4 réteg",
"xloc": [
"default-mobile.handlebars->11->781",
- "default.handlebars->47->1607",
"default.handlebars->47->1609",
- "default.handlebars->47->1620"
+ "default.handlebars->47->1611",
+ "default.handlebars->47->1622"
]
},
{
@@ -35759,7 +35759,7 @@
"hu": "IPv6 réteg",
"xloc": [
"default-mobile.handlebars->11->783",
- "default.handlebars->47->1622"
+ "default.handlebars->47->1624"
]
},
{
@@ -35868,7 +35868,7 @@
"hu": "izlandi",
"xloc": [
"default-mobile.handlebars->11->195",
- "default.handlebars->47->1886",
+ "default.handlebars->47->1888",
"login2.handlebars->7->92"
]
},
@@ -35897,7 +35897,7 @@
"hu": "Ikon kiválasztás",
"xloc": [
"default-mobile.handlebars->11->605",
- "default.handlebars->47->1338"
+ "default.handlebars->47->1340"
]
},
{
@@ -35927,9 +35927,9 @@
"default-mobile.handlebars->11->770",
"default-mobile.handlebars->11->814",
"default-mobile.handlebars->11->868",
- "default.handlebars->47->1599",
- "default.handlebars->47->1653",
- "default.handlebars->47->1707"
+ "default.handlebars->47->1601",
+ "default.handlebars->47->1655",
+ "default.handlebars->47->1709"
]
},
{
@@ -35956,7 +35956,7 @@
"zh-cht": "如果在CCM中,請重新激活英特爾®AMT",
"hu": "Ha CCM-ben van, aktiválja újra az Intel® AMT-t.",
"xloc": [
- "default.handlebars->47->2239"
+ "default.handlebars->47->2241"
]
},
{
@@ -36134,7 +36134,7 @@
"de": "Import",
"es": "Importar",
"xloc": [
- "default.handlebars->47->2171"
+ "default.handlebars->47->2173"
]
},
{
@@ -36147,7 +36147,7 @@
"de": "Intel AMT Geräte importieren",
"es": "Importar dispositivos Intel AMT",
"xloc": [
- "default.handlebars->47->510"
+ "default.handlebars->47->512"
]
},
{
@@ -36174,9 +36174,9 @@
"zh-cht": "導入英特爾® AMT 設備",
"hu": "Intel® AMT Eszközök importálása",
"xloc": [
- "default.handlebars->47->2213",
- "default.handlebars->47->2214",
- "default.handlebars->47->2218"
+ "default.handlebars->47->2215",
+ "default.handlebars->47->2216",
+ "default.handlebars->47->2220"
]
},
{
@@ -36189,7 +36189,7 @@
"de": "Intel® AMT Geräte importieren",
"es": "Importar dispositivos Intel® AMT.",
"xloc": [
- "default.handlebars->47->2170"
+ "default.handlebars->47->2172"
]
},
{
@@ -36216,7 +36216,7 @@
"zh-cht": "以 MeshCommander JSON 格式導入本地英特爾® AMT 設備列表。",
"hu": "A helyi Intel® AMT eszközök listájának importálása MeshCommander JSON formátumban.",
"xloc": [
- "default.handlebars->47->2212"
+ "default.handlebars->47->2214"
]
},
{
@@ -36243,7 +36243,7 @@
"zh-cht": "導入設備列表",
"hu": "Eszköz lista importálás",
"xloc": [
- "default.handlebars->47->2208"
+ "default.handlebars->47->2210"
]
},
{
@@ -36251,7 +36251,7 @@
"nl": "In",
"pl": "W",
"xloc": [
- "default.handlebars->47->428"
+ "default.handlebars->47->430"
]
},
{
@@ -36278,7 +36278,7 @@
"zh-cht": "為了使用推送通知身份驗證,必須在您的帳戶中設置具有完全權限的移動設備。",
"hu": "A push értesítések hitelesítésének használatához a fiókjában be kell állítani egy mobileszközt, amely teljes jogosultsággal rendelkezik.",
"xloc": [
- "default.handlebars->47->1781"
+ "default.handlebars->47->1783"
]
},
{
@@ -36305,7 +36305,7 @@
"zh-cht": "停用天數直到移除",
"hu": "inaktiv napok száma mielőtt eltávolításra kerül",
"xloc": [
- "default.handlebars->47->2279"
+ "default.handlebars->47->2281"
]
},
{
@@ -36359,7 +36359,7 @@
"zh-cht": "包括設備詳細信息",
"hu": "Eszköz réészletek belefoglalása",
"xloc": [
- "default.handlebars->47->785"
+ "default.handlebars->47->787"
]
},
{
@@ -36434,7 +36434,7 @@
"zh-cht": "不一致的標誌",
"hu": "Inkonzisztens jelzők",
"xloc": [
- "default.handlebars->47->1361"
+ "default.handlebars->47->1363"
]
},
{
@@ -36461,8 +36461,8 @@
"zh-cht": "第二個因素不正確",
"hu": "Helytelen 2. faktor",
"xloc": [
- "default.handlebars->47->3158",
- "default.handlebars->47->3197"
+ "default.handlebars->47->3160",
+ "default.handlebars->47->3199"
]
},
{
@@ -36517,9 +36517,9 @@
"hu": "Egyedi eszközök",
"xloc": [
"default-mobile.handlebars->11->394",
- "default.handlebars->47->356",
"default.handlebars->47->357",
- "default.handlebars->47->358"
+ "default.handlebars->47->358",
+ "default.handlebars->47->359"
]
},
{
@@ -36547,7 +36547,7 @@
"hu": "indonéz",
"xloc": [
"default-mobile.handlebars->11->196",
- "default.handlebars->47->1887",
+ "default.handlebars->47->1889",
"login2.handlebars->7->93"
]
},
@@ -36614,8 +36614,8 @@
"de": "Informationen bei Pushover.net",
"es": "Informacion en Pushover.net",
"xloc": [
- "default.handlebars->47->1759",
- "default.handlebars->47->2982"
+ "default.handlebars->47->1761",
+ "default.handlebars->47->2984"
]
},
{
@@ -36672,7 +36672,7 @@
"hu": "Beszúrás",
"xloc": [
"default-mobile.handlebars->11->630",
- "default.handlebars->47->1395"
+ "default.handlebars->47->1397"
]
},
{
@@ -36931,12 +36931,12 @@
"hu": "Telepítés típusa",
"xloc": [
"agentinvite.handlebars->3->7",
- "default.handlebars->47->2376",
- "default.handlebars->47->2383",
- "default.handlebars->47->559",
- "default.handlebars->47->580",
- "default.handlebars->47->597",
- "default.handlebars->47->601"
+ "default.handlebars->47->2378",
+ "default.handlebars->47->2385",
+ "default.handlebars->47->561",
+ "default.handlebars->47->582",
+ "default.handlebars->47->599",
+ "default.handlebars->47->603"
]
},
{
@@ -36944,7 +36944,7 @@
"nl": "Geïnstalleerd door",
"pl": "Zainstalowano Przez",
"xloc": [
- "default.handlebars->47->1447"
+ "default.handlebars->47->1449"
]
},
{
@@ -36952,7 +36952,7 @@
"nl": "Installatie datum",
"pl": "Data Instalacji",
"xloc": [
- "default.handlebars->47->1448"
+ "default.handlebars->47->1450"
]
},
{
@@ -36979,7 +36979,7 @@
"zh-cht": "Intel(F10 = ESC + [OM)",
"hu": "Intel (F10 = ESC+[OM)",
"xloc": [
- "default.handlebars->47->1497",
+ "default.handlebars->47->1499",
"default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
"sharing.handlebars->11->36",
"sharing.handlebars->p12->9->1->terminalSettingsButtons"
@@ -37009,7 +37009,7 @@
"zh-cht": "英特爾AMT",
"hu": "Intel AMT",
"xloc": [
- "default.handlebars->47->3298"
+ "default.handlebars->47->3300"
]
},
{
@@ -37117,7 +37117,7 @@
"zh-cht": "英特爾 AMT 經理",
"hu": "Intel AMT kezelő",
"xloc": [
- "default.handlebars->47->3328"
+ "default.handlebars->47->3330"
]
},
{
@@ -37171,7 +37171,7 @@
"zh-cht": "Intel ASCII",
"hu": "Intel ASCII",
"xloc": [
- "default.handlebars->47->1496",
+ "default.handlebars->47->1498",
"sharing.handlebars->11->35"
]
},
@@ -37202,16 +37202,16 @@
"default-mobile.handlebars->11->465",
"default-mobile.handlebars->11->515",
"default-mobile.handlebars->11->522",
- "default.handlebars->47->1062",
- "default.handlebars->47->2151",
- "default.handlebars->47->2165",
- "default.handlebars->47->2403",
- "default.handlebars->47->2416",
- "default.handlebars->47->3327",
- "default.handlebars->47->849",
- "default.handlebars->47->916",
- "default.handlebars->47->964",
- "default.handlebars->47->974"
+ "default.handlebars->47->1064",
+ "default.handlebars->47->2153",
+ "default.handlebars->47->2167",
+ "default.handlebars->47->2405",
+ "default.handlebars->47->2418",
+ "default.handlebars->47->3329",
+ "default.handlebars->47->851",
+ "default.handlebars->47->918",
+ "default.handlebars->47->966",
+ "default.handlebars->47->976"
]
},
{
@@ -37238,7 +37238,7 @@
"zh-cht": "英特爾®AMT ACM",
"hu": "Intel® AMT ACM",
"xloc": [
- "default.handlebars->47->527"
+ "default.handlebars->47->529"
]
},
{
@@ -37266,7 +37266,7 @@
"hu": "Intel® AMT CIRA",
"xloc": [
"default-mobile.handlebars->11->521",
- "default.handlebars->47->972"
+ "default.handlebars->47->974"
]
},
{
@@ -37341,9 +37341,9 @@
"zh-cht": "Intel® AMT CIRA已連接並可以使用。",
"hu": "Intel® AMT CIRA csatlakoztatva és használatra kész.",
"xloc": [
- "default.handlebars->47->406",
- "default.handlebars->47->707",
- "default.handlebars->47->971"
+ "default.handlebars->47->408",
+ "default.handlebars->47->709",
+ "default.handlebars->47->973"
]
},
{
@@ -37386,9 +37386,9 @@
"de": "Intel® AMT Geräteimport",
"es": "Importacion de dispositivos Intel® AMT.",
"xloc": [
- "default.handlebars->47->512",
- "default.handlebars->47->513",
- "default.handlebars->47->515"
+ "default.handlebars->47->514",
+ "default.handlebars->47->515",
+ "default.handlebars->47->517"
]
},
{
@@ -37415,7 +37415,7 @@
"zh-cht": "英特爾® AMT JSON",
"hu": "Intel® AMT JSON",
"xloc": [
- "default.handlebars->47->783"
+ "default.handlebars->47->785"
]
},
{
@@ -37469,8 +37469,8 @@
"zh-cht": "英特爾® AMT 一鍵恢復",
"hu": "Intel® AMT One Click Recovery",
"xloc": [
- "default.handlebars->47->1250",
- "default.handlebars->47->1263"
+ "default.handlebars->47->1252",
+ "default.handlebars->47->1265"
]
},
{
@@ -37497,7 +37497,7 @@
"zh-cht": "Intel® AMT政策",
"hu": "Intel® AMT Házirend",
"xloc": [
- "default.handlebars->47->2226"
+ "default.handlebars->47->2228"
]
},
{
@@ -37527,11 +37527,11 @@
"default-mobile.handlebars->11->583",
"default-mobile.handlebars->11->585",
"default-mobile.handlebars->11->587",
- "default.handlebars->47->1264",
"default.handlebars->47->1266",
"default.handlebars->47->1268",
"default.handlebars->47->1270",
- "default.handlebars->47->1272"
+ "default.handlebars->47->1272",
+ "default.handlebars->47->1274"
]
},
{
@@ -37559,7 +37559,7 @@
"hu": "Intel® AMT Kikapcsolás",
"xloc": [
"default-mobile.handlebars->11->578",
- "default.handlebars->47->1246"
+ "default.handlebars->47->1248"
]
},
{
@@ -37587,7 +37587,7 @@
"hu": "Intel® AMT Bekapcsolás",
"xloc": [
"default-mobile.handlebars->11->579",
- "default.handlebars->47->1249"
+ "default.handlebars->47->1251"
]
},
{
@@ -37600,7 +37600,7 @@
"de": "Intel® AMT Einschalten ins BIOS",
"es": "Intel® AMT Encender a BIOS",
"xloc": [
- "default.handlebars->47->1248"
+ "default.handlebars->47->1250"
]
},
{
@@ -37627,8 +37627,8 @@
"zh-cht": "Intel® AMT重定向",
"hu": "Intel® AMT Átirányítás",
"xloc": [
- "default.handlebars->47->3078",
- "default.handlebars->47->3085",
+ "default.handlebars->47->3080",
+ "default.handlebars->47->3087",
"player.handlebars->3->30"
]
},
@@ -37657,7 +37657,7 @@
"hu": "Intel® AMT Reset",
"xloc": [
"default-mobile.handlebars->11->577",
- "default.handlebars->47->1245"
+ "default.handlebars->47->1247"
]
},
{
@@ -37670,7 +37670,7 @@
"de": "Intel® AMT Reset ins BIOS",
"es": "Intel® AMT Reinicio a BIOS",
"xloc": [
- "default.handlebars->47->1247"
+ "default.handlebars->47->1249"
]
},
{
@@ -37697,7 +37697,7 @@
"zh-cht": "Intel® AMT標籤",
"hu": "Intel® AMT Cimke",
"xloc": [
- "default.handlebars->47->920"
+ "default.handlebars->47->922"
]
},
{
@@ -37724,8 +37724,8 @@
"zh-cht": "Intle® AMT WSMAN",
"hu": "Intel® AMT WSMAN",
"xloc": [
- "default.handlebars->47->3077",
- "default.handlebars->47->3084",
+ "default.handlebars->47->3079",
+ "default.handlebars->47->3086",
"player.handlebars->3->29"
]
},
@@ -37778,8 +37778,8 @@
"hu": "Intel® AMT csatlakoztatva",
"xloc": [
"default-mobile.handlebars->11->552",
- "default.handlebars->47->1052",
- "default.handlebars->47->1053"
+ "default.handlebars->47->1054",
+ "default.handlebars->47->1055"
]
},
{
@@ -37806,9 +37806,9 @@
"zh-cht": "Intel® AMT桌面和串行事件",
"hu": "Intel® AMT desktop és serial események",
"xloc": [
- "default.handlebars->47->1100",
- "default.handlebars->47->2025",
- "default.handlebars->47->2391"
+ "default.handlebars->47->1102",
+ "default.handlebars->47->2027",
+ "default.handlebars->47->2393"
]
},
{
@@ -37836,8 +37836,8 @@
"hu": "Intel® AMT észlelve",
"xloc": [
"default-mobile.handlebars->11->553",
- "default.handlebars->47->1054",
- "default.handlebars->47->1055"
+ "default.handlebars->47->1056",
+ "default.handlebars->47->1057"
]
},
{
@@ -37845,7 +37845,7 @@
"nl": "Intel® AMT hostnaam",
"pl": "Nazwa hosta Intel® AMT",
"xloc": [
- "default.handlebars->47->350"
+ "default.handlebars->47->351"
]
},
{
@@ -37872,8 +37872,8 @@
"zh-cht": "在管理控制模式下啟動了Intel® AMT",
"hu": "Az Intel® AMT aktiválva van Admin Control Mode-ban",
"xloc": [
- "default.handlebars->47->431",
- "default.handlebars->47->902"
+ "default.handlebars->47->433",
+ "default.handlebars->47->904"
]
},
{
@@ -37900,8 +37900,8 @@
"zh-cht": "Intel® AMT在客户端控制模式下被启动",
"hu": "Az Intel® AMT aktiválva van Client Control Mode-ban",
"xloc": [
- "default.handlebars->47->429",
- "default.handlebars->47->900"
+ "default.handlebars->47->431",
+ "default.handlebars->47->902"
]
},
{
@@ -37909,7 +37909,7 @@
"nl": "Intel® AMT is in activeringsmodus",
"pl": "Intel® AMT jest w trybie aktywacji",
"xloc": [
- "default.handlebars->47->427"
+ "default.handlebars->47->429"
]
},
{
@@ -37917,7 +37917,7 @@
"nl": "Intel® AMT is niet geactiveerd",
"pl": "Intel® AMT nie jest aktywowane",
"xloc": [
- "default.handlebars->47->425"
+ "default.handlebars->47->427"
]
},
{
@@ -37944,7 +37944,7 @@
"zh-cht": "Intel® AMT可路由並可以使用。",
"hu": "Intel® AMT routolható és haszálatra kész.",
"xloc": [
- "default.handlebars->47->973"
+ "default.handlebars->47->975"
]
},
{
@@ -37971,8 +37971,8 @@
"zh-cht": "Intel® AMT是可路由的。",
"hu": "Intel® AMT routolható.",
"xloc": [
- "default.handlebars->47->408",
- "default.handlebars->47->709"
+ "default.handlebars->47->410",
+ "default.handlebars->47->711"
]
},
{
@@ -38000,7 +38000,7 @@
"hu": "Intel® AMT beállítás TLS network security használatával",
"xloc": [
"default-mobile.handlebars->11->505",
- "default.handlebars->47->904"
+ "default.handlebars->47->906"
]
},
{
@@ -38079,8 +38079,8 @@
"hu": "Csak Intel® AMT, agent nélkül",
"xloc": [
"default-mobile.handlebars->11->892",
- "default.handlebars->47->2058",
- "default.handlebars->47->2113"
+ "default.handlebars->47->2060",
+ "default.handlebars->47->2115"
]
},
{
@@ -38107,14 +38107,14 @@
"zh-cht": "英特爾®AMT設置",
"hu": "Intel® AMT beállítás",
"xloc": [
- "default.handlebars->47->519"
+ "default.handlebars->47->521"
]
},
{
"en": "Intel® AMT state",
"nl": "Intel® AMT status",
"xloc": [
- "default.handlebars->47->351"
+ "default.handlebars->47->352"
]
},
{
@@ -38165,7 +38165,7 @@
"zh-cht": "Intel® Active Management Technology",
"hu": "Intel® Active Management Technology",
"xloc": [
- "default.handlebars->47->915"
+ "default.handlebars->47->917"
]
},
{
@@ -38193,7 +38193,7 @@
"hu": "Intel® Active Management Technology (Intel® AMT)",
"xloc": [
"default-mobile.handlebars->11->804",
- "default.handlebars->47->1643"
+ "default.handlebars->47->1645"
]
},
{
@@ -38221,7 +38221,7 @@
"hu": "Intel® ME",
"xloc": [
"default-mobile.handlebars->11->514",
- "default.handlebars->47->914"
+ "default.handlebars->47->916"
]
},
{
@@ -38248,7 +38248,7 @@
"zh-cht": "Intel® Management Engine",
"hu": "Intel® Manageability Engine",
"xloc": [
- "default.handlebars->47->913"
+ "default.handlebars->47->915"
]
},
{
@@ -38276,8 +38276,8 @@
"hu": "Intel® SM",
"xloc": [
"default-mobile.handlebars->11->516",
- "default.handlebars->47->1060",
- "default.handlebars->47->918"
+ "default.handlebars->47->1062",
+ "default.handlebars->47->920"
]
},
{
@@ -38304,7 +38304,7 @@
"zh-cht": "Intel® Standard Manageability",
"hu": "Intel® Standard Manageability",
"xloc": [
- "default.handlebars->47->917"
+ "default.handlebars->47->919"
]
},
{
@@ -38331,7 +38331,7 @@
"hu": "Intel® Standard Manageability (Intel® SM)",
"xloc": [
"default-mobile.handlebars->11->803",
- "default.handlebars->47->1642"
+ "default.handlebars->47->1644"
]
},
{
@@ -38358,7 +38358,7 @@
"zh-cht": "英特爾®AMT",
"hu": "Intel®AMT",
"xloc": [
- "default.handlebars->47->1061"
+ "default.handlebars->47->1063"
]
},
{
@@ -38385,7 +38385,7 @@
"zh-cht": "英特爾® SM",
"hu": "Intel®SM",
"xloc": [
- "default.handlebars->47->1059"
+ "default.handlebars->47->1061"
]
},
{
@@ -38412,7 +38412,7 @@
"zh-cht": "英特爾(r) AMT 政策變更",
"hu": "Intel(r) AMT házirend beállítás",
"xloc": [
- "default.handlebars->47->2612"
+ "default.handlebars->47->2614"
]
},
{
@@ -38646,7 +38646,7 @@
"zh-cht": "互動",
"hu": "Internaktív",
"xloc": [
- "default.handlebars->47->1440"
+ "default.handlebars->47->1442"
]
},
{
@@ -38674,11 +38674,11 @@
"hu": "Csak internaktív",
"xloc": [
"agentinvite.handlebars->3->10",
- "default.handlebars->47->2379",
- "default.handlebars->47->2386",
- "default.handlebars->47->562",
- "default.handlebars->47->583",
- "default.handlebars->47->600"
+ "default.handlebars->47->2381",
+ "default.handlebars->47->2388",
+ "default.handlebars->47->564",
+ "default.handlebars->47->585",
+ "default.handlebars->47->602"
]
},
{
@@ -38705,7 +38705,7 @@
"zh-cht": "介面",
"hu": "Interfészek",
"xloc": [
- "default.handlebars->47->1020"
+ "default.handlebars->47->1022"
]
},
{
@@ -38760,7 +38760,7 @@
"hu": "inuktitut",
"xloc": [
"default-mobile.handlebars->11->197",
- "default.handlebars->47->1888",
+ "default.handlebars->47->1890",
"login2.handlebars->7->94"
]
},
@@ -38795,8 +38795,8 @@
{
"en": "Invalid CSV file format.",
"xloc": [
- "default.handlebars->47->2723",
- "default.handlebars->47->2725"
+ "default.handlebars->47->2725",
+ "default.handlebars->47->2727"
]
},
{
@@ -38824,7 +38824,7 @@
"hu": "Érvénytelen hitelesító adat",
"xloc": [
"default-mobile.handlebars->11->510",
- "default.handlebars->47->909"
+ "default.handlebars->47->911"
]
},
{
@@ -38851,7 +38851,7 @@
"zh-cht": "無效的裝置群類型",
"hu": "Érvénytelen eszközcsoport típus",
"xloc": [
- "default.handlebars->47->3260"
+ "default.handlebars->47->3262"
]
},
{
@@ -38878,7 +38878,7 @@
"zh-cht": "無效的JSON",
"hu": "Érvénytelen JSON",
"xloc": [
- "default.handlebars->47->3254"
+ "default.handlebars->47->3256"
]
},
{
@@ -38905,10 +38905,10 @@
"zh-cht": "無效的JSON檔案格式。",
"hu": "Érvénytelen JSON fájl formátum.",
"xloc": [
- "default.handlebars->47->2219",
- "default.handlebars->47->2729",
+ "default.handlebars->47->2221",
"default.handlebars->47->2731",
- "default.handlebars->47->516"
+ "default.handlebars->47->2733",
+ "default.handlebars->47->518"
]
},
{
@@ -38935,9 +38935,9 @@
"zh-cht": "無效的JSON檔案:{0}。",
"hu": "Érvénytelen JSON-fájl: {0}.",
"xloc": [
- "default.handlebars->47->2215",
- "default.handlebars->47->2727",
- "default.handlebars->47->514"
+ "default.handlebars->47->2217",
+ "default.handlebars->47->2729",
+ "default.handlebars->47->516"
]
},
{
@@ -39072,7 +39072,7 @@
"zh-cht": "無效的PKCS簽名",
"hu": "Érvénytelen PKCS aláírás",
"xloc": [
- "default.handlebars->47->3252"
+ "default.handlebars->47->3254"
]
},
{
@@ -39099,7 +39099,7 @@
"zh-cht": "無效的RSA密碼",
"hu": "Érvénytelen RSA aláírás",
"xloc": [
- "default.handlebars->47->3253"
+ "default.handlebars->47->3255"
]
},
{
@@ -39127,7 +39127,7 @@
"hu": "Érvénytelen SMS üzenet",
"xloc": [
"default-mobile.handlebars->11->1010",
- "default.handlebars->47->3235"
+ "default.handlebars->47->3237"
]
},
{
@@ -39211,7 +39211,7 @@
"hu": "Érvénytelen domain",
"xloc": [
"default-mobile.handlebars->11->990",
- "default.handlebars->47->3215"
+ "default.handlebars->47->3217"
]
},
{
@@ -39263,7 +39263,7 @@
"hu": "Érvénytelen email",
"xloc": [
"default-mobile.handlebars->11->989",
- "default.handlebars->47->3214"
+ "default.handlebars->47->3216"
]
},
{
@@ -39374,8 +39374,8 @@
"zh-cht": "無效的登錄嘗試",
"hu": "Érvénytelen bejelentkezési kísérlet",
"xloc": [
- "default.handlebars->47->3160",
- "default.handlebars->47->3199"
+ "default.handlebars->47->3162",
+ "default.handlebars->47->3201"
]
},
{
@@ -39387,7 +39387,7 @@
"de": "Ungültige Nachricht",
"es": "Mensaje invalido",
"xloc": [
- "default.handlebars->47->3241"
+ "default.handlebars->47->3243"
]
},
{
@@ -39424,7 +39424,7 @@
"xloc": [
"default-mobile.handlebars->11->87",
"default-mobile.handlebars->11->988",
- "default.handlebars->47->3213",
+ "default.handlebars->47->3215",
"default.handlebars->47->326"
]
},
@@ -39468,7 +39468,7 @@
"hu": "Érvénytelen webhelyengedélyek",
"xloc": [
"default-mobile.handlebars->11->991",
- "default.handlebars->47->3216"
+ "default.handlebars->47->3218"
]
},
{
@@ -39524,7 +39524,7 @@
"zh-cht": "來自 {0}、{1}、{2} 的用戶登錄嘗試無效",
"hu": "Érvénytelen felhasználói bejelentkezési kísérlet innen: {0}, {1}, {2}",
"xloc": [
- "default.handlebars->47->2581"
+ "default.handlebars->47->2583"
]
},
{
@@ -39552,7 +39552,7 @@
"hu": "Érvénytelen felhasználónév",
"xloc": [
"default-mobile.handlebars->11->987",
- "default.handlebars->47->3212"
+ "default.handlebars->47->3214"
]
},
{
@@ -39603,7 +39603,7 @@
"zh-cht": "使電郵無效",
"hu": "Email érvénytelenítés",
"xloc": [
- "default.handlebars->47->2695"
+ "default.handlebars->47->2697"
]
},
{
@@ -39681,7 +39681,7 @@
"zh-cht": "邀請類型",
"hu": "Meghívó típusa",
"xloc": [
- "default.handlebars->47->538"
+ "default.handlebars->47->540"
]
},
{
@@ -39708,7 +39708,7 @@
"zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
"hu": "A meghívókódokat bárki használhatja, hogy eszközöket csatlakoztasson ehhez az eszközcsoporthoz a következő nyilvános link segítségével:",
"xloc": [
- "default.handlebars->47->2381"
+ "default.handlebars->47->2383"
]
},
{
@@ -39762,9 +39762,9 @@
"zh-cht": "邀請",
"hu": "Meghívó",
"xloc": [
- "default.handlebars->47->2177",
- "default.handlebars->47->487",
- "default.handlebars->47->585"
+ "default.handlebars->47->2179",
+ "default.handlebars->47->489",
+ "default.handlebars->47->587"
]
},
{
@@ -39792,12 +39792,12 @@
"hu": "Meghívó kódok",
"xloc": [
"default-mobile.handlebars->11->985",
- "default.handlebars->47->2157",
- "default.handlebars->47->2369",
- "default.handlebars->47->2380",
+ "default.handlebars->47->2159",
+ "default.handlebars->47->2371",
"default.handlebars->47->2382",
- "default.handlebars->47->2387",
- "default.handlebars->47->3210"
+ "default.handlebars->47->2384",
+ "default.handlebars->47->2389",
+ "default.handlebars->47->3212"
]
},
{
@@ -39824,7 +39824,7 @@
"zh-cht": "邀請代碼",
"hu": "Meghívó kód",
"xloc": [
- "default.handlebars->47->2636"
+ "default.handlebars->47->2638"
]
},
{
@@ -39851,7 +39851,7 @@
"zh-cht": "通過共享邀請鏈結來邀請某人安裝mesh agent。該鏈結將用戶指向“ {0} ”裝置群的安裝說明。該鏈結是公用的,不需要這伺服器的帳戶。",
"hu": "Meghívhat valakit a szoftver agent telepítésére egy meghívó link megosztásával. Ez a link a(z) \\\"{0}\\\" eszközcsoport telepítési utasításaira irányítja a felhasználót. A link nyilvános, és nincs szükség fiókra ezen a kiszolgálón.",
"xloc": [
- "default.handlebars->47->565"
+ "default.handlebars->47->567"
]
},
{
@@ -39878,8 +39878,8 @@
"zh-cht": "邀請某人在該裝置群上安裝mesh agent。",
"hu": "Hívjon meg valakit, hogy telepítse a Mesh Agent-et és csatlakozzon ebbe az eszközcsoportra.",
"xloc": [
- "default.handlebars->47->2176",
- "default.handlebars->47->486"
+ "default.handlebars->47->2178",
+ "default.handlebars->47->488"
]
},
{
@@ -39906,7 +39906,7 @@
"zh-cht": "邀請某人安裝mesh agent。將發送一封電郵,其中包含指向“ {0} ”裝置群的mesh agent安裝的鏈結。",
"hu": "Hívjon meg valakit a mesh ügynök telepítésére. Egy e-mailt küldünk a(z) \\\"{0}\\\" eszközcsoport mesh-ügynökének telepítésére mutató linkkel.",
"xloc": [
- "default.handlebars->47->541"
+ "default.handlebars->47->543"
]
},
{
@@ -39934,7 +39934,7 @@
"hu": "ír",
"xloc": [
"default-mobile.handlebars->11->198",
- "default.handlebars->47->1889",
+ "default.handlebars->47->1891",
"login2.handlebars->7->95"
]
},
@@ -39962,7 +39962,7 @@
"zh-cht": "是 \\\"{0}\\\" 的中繼。",
"hu": "Relay a \\\"{0}\\\"-hez.",
"xloc": [
- "default.handlebars->47->2624"
+ "default.handlebars->47->2626"
]
},
{
@@ -39971,7 +39971,7 @@
"pl": "Aktywny",
"xloc": [
"default-mobile.handlebars->11->821",
- "default.handlebars->47->1660"
+ "default.handlebars->47->1662"
]
},
{
@@ -39980,7 +39980,7 @@
"pl": "Włączony",
"xloc": [
"default-mobile.handlebars->11->824",
- "default.handlebars->47->1663"
+ "default.handlebars->47->1665"
]
},
{
@@ -39989,7 +39989,7 @@
"pl": "Jest Własnością",
"xloc": [
"default-mobile.handlebars->11->827",
- "default.handlebars->47->1666"
+ "default.handlebars->47->1668"
]
},
{
@@ -40017,7 +40017,7 @@
"hu": "olasz",
"xloc": [
"default-mobile.handlebars->11->199",
- "default.handlebars->47->1890",
+ "default.handlebars->47->1892",
"login2.handlebars->7->96"
]
},
@@ -40046,7 +40046,7 @@
"hu": "olasz (Svájc)",
"xloc": [
"default-mobile.handlebars->11->200",
- "default.handlebars->47->1891",
+ "default.handlebars->47->1893",
"login2.handlebars->7->97"
]
},
@@ -40098,7 +40098,7 @@
"zh-cht": "JSON",
"hu": "JSON",
"xloc": [
- "default.handlebars->47->2653"
+ "default.handlebars->47->2655"
]
},
{
@@ -40125,15 +40125,15 @@
"zh-cht": "JSON格式",
"hu": "JSON Formátum",
"xloc": [
- "default.handlebars->47->2658",
- "default.handlebars->47->2735",
- "default.handlebars->47->781"
+ "default.handlebars->47->2660",
+ "default.handlebars->47->2737",
+ "default.handlebars->47->783"
]
},
{
"en": "JSON file format is as follows:",
"xloc": [
- "default.handlebars->47->2718"
+ "default.handlebars->47->2720"
]
},
{
@@ -40161,7 +40161,7 @@
"hu": "japán",
"xloc": [
"default-mobile.handlebars->11->201",
- "default.handlebars->47->1892",
+ "default.handlebars->47->1894",
"login2.handlebars->7->98"
]
},
@@ -40174,8 +40174,8 @@
"de": "Treten Sie dem Discordserver bei um Benachrichtigungen zu erhalten.",
"es": "Unete a este canal de Discord para recibir notificaciones.",
"xloc": [
- "default.handlebars->47->1754",
- "default.handlebars->47->2977"
+ "default.handlebars->47->1756",
+ "default.handlebars->47->2979"
]
},
{
@@ -40202,7 +40202,7 @@
"zh-cht": "已加入桌面Multiplex會話",
"hu": "Csatlakozva multiplex asztali munkamenethez",
"xloc": [
- "default.handlebars->47->2475"
+ "default.handlebars->47->2477"
]
},
{
@@ -40229,7 +40229,7 @@
"zh-cht": "已加入桌面多路復用會話 \\\"{0}\\\"",
"hu": "Csatlakozva multiplex asztali munkamenethez \\\"{0}\\\"",
"xloc": [
- "default.handlebars->47->2614"
+ "default.handlebars->47->2616"
]
},
{
@@ -40284,7 +40284,7 @@
"hu": "kannada",
"xloc": [
"default-mobile.handlebars->11->202",
- "default.handlebars->47->1893",
+ "default.handlebars->47->1895",
"login2.handlebars->7->99"
]
},
@@ -40313,7 +40313,7 @@
"hu": "kasmíri",
"xloc": [
"default-mobile.handlebars->11->203",
- "default.handlebars->47->1894",
+ "default.handlebars->47->1896",
"login2.handlebars->7->100"
]
},
@@ -40342,7 +40342,7 @@
"hu": "kazah",
"xloc": [
"default-mobile.handlebars->11->204",
- "default.handlebars->47->1895",
+ "default.handlebars->47->1897",
"login2.handlebars->7->101"
]
},
@@ -40370,7 +40370,7 @@
"zh-cht": "保留現有密碼",
"hu": "Meglévő jelszó megtartása",
"xloc": [
- "default.handlebars->47->2227"
+ "default.handlebars->47->2229"
]
},
{
@@ -40397,7 +40397,7 @@
"zh-cht": "內核驅動器",
"hu": "KernelDriver",
"xloc": [
- "default.handlebars->47->1441"
+ "default.handlebars->47->1443"
]
},
{
@@ -40425,7 +40425,7 @@
"hu": "Kulcs fájl",
"xloc": [
"default-mobile.handlebars->11->669",
- "default.handlebars->47->1483",
+ "default.handlebars->47->1485",
"ssh.handlebars->3->15"
]
},
@@ -40453,8 +40453,8 @@
"zh-cht": "鍵名",
"hu": "Kulcs neve",
"xloc": [
- "default.handlebars->47->1786",
- "default.handlebars->47->1789"
+ "default.handlebars->47->1788",
+ "default.handlebars->47->1791"
]
},
{
@@ -40482,7 +40482,7 @@
"hu": "Kulcs jelszó",
"xloc": [
"default-mobile.handlebars->11->671",
- "default.handlebars->47->1485",
+ "default.handlebars->47->1487",
"ssh.handlebars->3->17"
]
},
@@ -40511,7 +40511,7 @@
"hu": "A kulcsfájlnak OpenSSH formátumúnak kell lennie.",
"xloc": [
"default-mobile.handlebars->11->670",
- "default.handlebars->47->1484",
+ "default.handlebars->47->1486",
"ssh.handlebars->3->16"
]
},
@@ -40564,7 +40564,7 @@
"hu": "Billentyű parancsok testreszabása",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->1->1",
- "default.handlebars->47->1415"
+ "default.handlebars->47->1417"
]
},
{
@@ -40591,7 +40591,7 @@
"zh-cht": "鍵盤字符串自定義",
"hu": "Billentyű karakterláncok testreszabása",
"xloc": [
- "default.handlebars->47->1420"
+ "default.handlebars->47->1422"
]
},
{
@@ -40643,7 +40643,7 @@
"hu": "khmer",
"xloc": [
"default-mobile.handlebars->11->205",
- "default.handlebars->47->1896",
+ "default.handlebars->47->1898",
"login2.handlebars->7->102"
]
},
@@ -40671,7 +40671,7 @@
"zh-cht": "殺死進程{0}",
"hu": "Folyamat leállítása {0}",
"xloc": [
- "default.handlebars->47->2490"
+ "default.handlebars->47->2492"
]
},
{
@@ -40707,7 +40707,7 @@
"hu": "kirgiz",
"xloc": [
"default-mobile.handlebars->11->206",
- "default.handlebars->47->1897",
+ "default.handlebars->47->1899",
"login2.handlebars->7->103"
]
},
@@ -40736,7 +40736,7 @@
"hu": "klingon",
"xloc": [
"default-mobile.handlebars->11->207",
- "default.handlebars->47->1898",
+ "default.handlebars->47->1900",
"login2.handlebars->7->104"
]
},
@@ -40765,7 +40765,7 @@
"hu": "Ismert",
"xloc": [
"default-mobile.handlebars->11->802",
- "default.handlebars->47->1641"
+ "default.handlebars->47->1643"
]
},
{
@@ -40793,7 +40793,7 @@
"hu": "koreai",
"xloc": [
"default-mobile.handlebars->11->208",
- "default.handlebars->47->1899",
+ "default.handlebars->47->1901",
"login2.handlebars->7->105"
]
},
@@ -40822,7 +40822,7 @@
"hu": "koreai (Észak-Korea)",
"xloc": [
"default-mobile.handlebars->11->209",
- "default.handlebars->47->1900",
+ "default.handlebars->47->1902",
"login2.handlebars->7->106"
]
},
@@ -40851,7 +40851,7 @@
"hu": "koreai (Dél-Korea)",
"xloc": [
"default-mobile.handlebars->11->210",
- "default.handlebars->47->1901",
+ "default.handlebars->47->1903",
"login2.handlebars->7->107"
]
},
@@ -40879,8 +40879,8 @@
"zh-cht": "如果",
"hu": "LF",
"xloc": [
- "default.handlebars->47->1470",
- "default.handlebars->47->1501",
+ "default.handlebars->47->1472",
+ "default.handlebars->47->1503",
"sharing.handlebars->11->26",
"sharing.handlebars->11->40"
]
@@ -40910,7 +40910,7 @@
"hu": "Nyelv",
"xloc": [
"default-mobile.handlebars->11->305",
- "default.handlebars->47->1996"
+ "default.handlebars->47->1998"
]
},
{
@@ -40988,7 +40988,7 @@
"zh-cht": "大焦點",
"hu": "Nagy Focus mode",
"xloc": [
- "default.handlebars->47->1388"
+ "default.handlebars->47->1390"
]
},
{
@@ -41158,7 +41158,7 @@
"zh-cht": "過去30天",
"hu": "Elmúlt 30 napon",
"xloc": [
- "default.handlebars->47->3118",
+ "default.handlebars->47->3120",
"default.handlebars->container->column_l->p40->3->1->p40time->9"
]
},
@@ -41245,7 +41245,7 @@
"zh-cht": "過去 7 天",
"hu": "Utolsó 7 nap",
"xloc": [
- "default.handlebars->47->3117"
+ "default.handlebars->47->3119"
]
},
{
@@ -41299,7 +41299,7 @@
"zh-cht": "最後訪問",
"hu": "Utolsó hozzáférés",
"xloc": [
- "default.handlebars->47->2666"
+ "default.handlebars->47->2668"
]
},
{
@@ -41310,9 +41310,11 @@
"default-mobile.handlebars->11->728",
"default-mobile.handlebars->11->729",
"default-mobile.handlebars->11->730",
- "default.handlebars->47->1583",
- "default.handlebars->47->1584",
- "default.handlebars->47->1585"
+ "default.handlebars->47->1585",
+ "default.handlebars->47->1586",
+ "default.handlebars->47->1587",
+ "default.handlebars->47->345",
+ "default.handlebars->47->377"
]
},
{
@@ -41339,7 +41341,7 @@
"zh-cht": "最後一天",
"hu": "Utolsó napon",
"xloc": [
- "default.handlebars->47->3116"
+ "default.handlebars->47->3118"
]
},
{
@@ -41366,7 +41368,7 @@
"zh-cht": "上次登入",
"hu": "Utolsó bejelentkezés",
"xloc": [
- "default.handlebars->47->2909"
+ "default.handlebars->47->2911"
]
},
{
@@ -41393,8 +41395,8 @@
"zh-cht": "最後一次露面",
"hu": "Utoljára látott",
"xloc": [
- "default.handlebars->47->349",
- "default.handlebars->47->382",
+ "default.handlebars->47->350",
+ "default.handlebars->47->384",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->11"
]
},
@@ -41422,7 +41424,7 @@
"zh-cht": "上次訪問:{0}",
"hu": "Utolsó hozzáférés: {0}",
"xloc": [
- "default.handlebars->47->2676"
+ "default.handlebars->47->2678"
]
},
{
@@ -41455,9 +41457,9 @@
"default.handlebars->47->149",
"default.handlebars->47->151",
"default.handlebars->47->153",
- "default.handlebars->47->1591",
- "default.handlebars->47->1592",
- "default.handlebars->47->1593"
+ "default.handlebars->47->1593",
+ "default.handlebars->47->1594",
+ "default.handlebars->47->1595"
]
},
{
@@ -41487,8 +41489,8 @@
"default-mobile.handlebars->11->759",
"default-mobile.handlebars->11->761",
"default.handlebars->47->148",
- "default.handlebars->47->1588",
- "default.handlebars->47->1590"
+ "default.handlebars->47->1590",
+ "default.handlebars->47->1592"
]
},
{
@@ -41515,7 +41517,7 @@
"zh-cht": "上次更改:{0}",
"hu": "Utolsó módosítás: {0}",
"xloc": [
- "default.handlebars->47->2913"
+ "default.handlebars->47->2915"
]
},
{
@@ -41528,7 +41530,7 @@
"de": "Aufzeichnungen über letzte Verbindungszeiten",
"es": "Registros de hora de última conexión",
"xloc": [
- "default.handlebars->47->3181"
+ "default.handlebars->47->3183"
]
},
{
@@ -41609,7 +41611,7 @@
"zh-cht": "上次登入:{0}",
"hu": "Utolsó bejelentkezés: {0}",
"xloc": [
- "default.handlebars->47->2677"
+ "default.handlebars->47->2679"
]
},
{
@@ -41636,7 +41638,7 @@
"zh-cht": "最後一次發現:",
"hu": "Utoljára látott:",
"xloc": [
- "default.handlebars->47->1058",
+ "default.handlebars->47->1060",
"default.handlebars->47->116"
]
},
@@ -41770,7 +41772,7 @@
"hu": "latin",
"xloc": [
"default-mobile.handlebars->11->211",
- "default.handlebars->47->1902",
+ "default.handlebars->47->1904",
"login2.handlebars->7->108"
]
},
@@ -41799,7 +41801,7 @@
"hu": "lett",
"xloc": [
"default-mobile.handlebars->11->212",
- "default.handlebars->47->1903",
+ "default.handlebars->47->1905",
"login2.handlebars->7->109"
]
},
@@ -41827,7 +41829,7 @@
"zh-cht": "啟動MeshCentral路由器",
"hu": "MeshCentral Router elindítása",
"xloc": [
- "default.handlebars->47->1309"
+ "default.handlebars->47->1311"
]
},
{
@@ -41878,7 +41880,7 @@
"zh-cht": "啟動基於Web的RDP連接到此裝置",
"hu": "WEB-based RDP munkamenet indítása ezen az eszközön",
"xloc": [
- "default.handlebars->47->1038"
+ "default.handlebars->47->1040"
]
},
{
@@ -41905,7 +41907,7 @@
"zh-cht": "啟動到此設備的基於 Web 的 SSH 會話",
"hu": "WEB-based SSH munkamenet indítása ezen az eszközön",
"xloc": [
- "default.handlebars->47->1040"
+ "default.handlebars->47->1042"
]
},
{
@@ -41932,7 +41934,7 @@
"zh-cht": "向此設備啟動基於 Web 的 VNC 會話",
"hu": "WEB-based VNC munkamenet indítása ezen az eszközön",
"xloc": [
- "default.handlebars->47->1036"
+ "default.handlebars->47->1038"
]
},
{
@@ -41959,7 +41961,7 @@
"zh-cht": "如沒有請留空。",
"hu": "Ha nincs, hagyja üresen.",
"xloc": [
- "default.handlebars->47->2962"
+ "default.handlebars->47->2964"
]
},
{
@@ -41987,7 +41989,7 @@
"hu": "Bal",
"xloc": [
"default-mobile.handlebars->11->637",
- "default.handlebars->47->1401"
+ "default.handlebars->47->1403"
]
},
{
@@ -42014,7 +42016,7 @@
"zh-cht": "{0} 秒後離開 Web-RDP 會話 \\\"{1}\\\"。",
"hu": "Elhagyta a Web-RDP munkamenetet\\\"{1}\\\" {0} másodperc után.",
"xloc": [
- "default.handlebars->47->2596"
+ "default.handlebars->47->2598"
]
},
{
@@ -42065,7 +42067,7 @@
"zh-cht": "{0} 秒後離開 Web-SFTP 會話 \\\"{1}\\\"。",
"hu": "Elhagyta a Web-SFTP munkamenetet \\\"{1}\\\" {0} másodperc után.",
"xloc": [
- "default.handlebars->47->2595"
+ "default.handlebars->47->2597"
]
},
{
@@ -42116,7 +42118,7 @@
"zh-cht": "{0} 秒後離開 Web-SSH 會話 \\\"{1}\\\"。",
"hu": "Elhagyta a Web-SSH munkamenetet \\\"{1}\\\" {0} másodperc után.",
"xloc": [
- "default.handlebars->47->2594"
+ "default.handlebars->47->2596"
]
},
{
@@ -42167,7 +42169,7 @@
"zh-cht": "{0} 秒後離開 Web-VNC 會話。",
"hu": "Elhagyta a Web-VNC munkamenetet {0} másodperc után.",
"xloc": [
- "default.handlebars->47->2597"
+ "default.handlebars->47->2599"
]
},
{
@@ -42226,7 +42228,7 @@
"zh-cht": "離開桌面多路復用會話",
"hu": "Elhagyta az asztali multiplex munkamenetet.",
"xloc": [
- "default.handlebars->47->2476"
+ "default.handlebars->47->2478"
]
},
{
@@ -42253,7 +42255,7 @@
"zh-cht": "{1} 秒後離開桌面多路復用會話 \\\"{0}\\\"。",
"hu": "Elhagyta a multiplex desktop munkamenetet\\\"{1}\\\" {0} másodperc után.",
"xloc": [
- "default.handlebars->47->2615"
+ "default.handlebars->47->2617"
]
},
{
@@ -42280,7 +42282,7 @@
"zh-cht": "{0} 秒後離開桌面多路復用會話。",
"hu": "Elhagyta az asztali multiplex munkamenetet {0} másodperc után.",
"xloc": [
- "default.handlebars->47->2593"
+ "default.handlebars->47->2595"
]
},
{
@@ -42307,7 +42309,7 @@
"zh-cht": "長度",
"hu": "Hossz",
"xloc": [
- "default.handlebars->47->3131"
+ "default.handlebars->47->3133"
]
},
{
@@ -42386,8 +42388,8 @@
"zh-cht": "限制事件",
"hu": "Saját események",
"xloc": [
- "default.handlebars->47->1123",
- "default.handlebars->47->1148"
+ "default.handlebars->47->1125",
+ "default.handlebars->47->1150"
]
},
{
@@ -42443,9 +42445,9 @@
"hu": "Korlátozott bevitel",
"xloc": [
"default-mobile.handlebars->11->962",
- "default.handlebars->47->1115",
- "default.handlebars->47->1140",
- "default.handlebars->47->2348"
+ "default.handlebars->47->1117",
+ "default.handlebars->47->1142",
+ "default.handlebars->47->2350"
]
},
{
@@ -42473,7 +42475,7 @@
"hu": "Csak korlátozott bevitel",
"xloc": [
"default-mobile.handlebars->11->935",
- "default.handlebars->47->2301"
+ "default.handlebars->47->2303"
]
},
{
@@ -42528,8 +42530,8 @@
"zh-cht": "鏈結過期",
"hu": "Link lejárat",
"xloc": [
- "default.handlebars->47->552",
- "default.handlebars->47->566"
+ "default.handlebars->47->554",
+ "default.handlebars->47->568"
]
},
{
@@ -42556,7 +42558,7 @@
"zh-cht": "鏈結邀請",
"hu": "Meghívó link",
"xloc": [
- "default.handlebars->47->539"
+ "default.handlebars->47->541"
]
},
{
@@ -42583,7 +42585,7 @@
"zh-cht": "鏈接",
"hu": "Linkek",
"xloc": [
- "default.handlebars->47->376"
+ "default.handlebars->47->378"
]
},
{
@@ -42613,7 +42615,7 @@
"agentinvite.handlebars->container->column_l->5->linuxtab->1",
"default-mobile.handlebars->11->492",
"default.handlebars->47->58",
- "default.handlebars->47->889"
+ "default.handlebars->47->891"
]
},
{
@@ -42640,7 +42642,7 @@
"zh-cht": "Linux (SSH/SCP/VNC)",
"hu": "Linux (SSH/SCP/VNC)",
"xloc": [
- "default.handlebars->47->496"
+ "default.handlebars->47->498"
]
},
{
@@ -42667,7 +42669,7 @@
"zh-cht": "Linux / BSD",
"hu": "Linux / BSD",
"xloc": [
- "default.handlebars->47->587"
+ "default.handlebars->47->589"
]
},
{
@@ -42694,7 +42696,7 @@
"zh-cht": "Linux / BSD(解除安裝)",
"hu": "Linux / BSD (Eltávolítás)",
"xloc": [
- "default.handlebars->47->593"
+ "default.handlebars->47->595"
]
},
{
@@ -42730,7 +42732,7 @@
"xloc": [
"agentinvite.handlebars->3->4",
"agentinvite.handlebars->3->5",
- "default.handlebars->47->588"
+ "default.handlebars->47->590"
]
},
{
@@ -42876,7 +42878,7 @@
"zh-cht": "Linux ARM,Raspberry Pi(32位)",
"hu": "Linux ARM, Raspberry Pi (32bit)",
"xloc": [
- "default.handlebars->47->1318"
+ "default.handlebars->47->1320"
]
},
{
@@ -42903,7 +42905,7 @@
"zh-cht": "Linux ARM, Raspberry Pi (64位)",
"hu": "Linux ARM, Raspberry Pi (64bit)",
"xloc": [
- "default.handlebars->47->1319"
+ "default.handlebars->47->1321"
]
},
{
@@ -42935,8 +42937,8 @@
"zh-cht": "Linux MeshAgent",
"hu": "Linux MeshAgent",
"xloc": [
- "default.handlebars->47->2373",
- "default.handlebars->47->576"
+ "default.handlebars->47->2375",
+ "default.handlebars->47->578"
]
},
{
@@ -43019,7 +43021,7 @@
"zh-cht": "Linux路徑",
"hu": "Linux elérési út",
"xloc": [
- "default.handlebars->47->767"
+ "default.handlebars->47->769"
]
},
{
@@ -43102,7 +43104,7 @@
"zh-cht": "只限Linux",
"hu": "csak Linux",
"xloc": [
- "default.handlebars->47->550"
+ "default.handlebars->47->552"
]
},
{
@@ -43129,7 +43131,7 @@
"zh-cht": "Linux x86(32位)",
"hu": "Linux x86 (32bit)",
"xloc": [
- "default.handlebars->47->1315"
+ "default.handlebars->47->1317"
]
},
{
@@ -43156,7 +43158,7 @@
"zh-cht": "Linux x86(64位)",
"hu": "Linux x86 (64bit)",
"xloc": [
- "default.handlebars->47->1314"
+ "default.handlebars->47->1316"
]
},
{
@@ -43183,8 +43185,8 @@
"zh-cht": "Linux / BSD / macOS命令外殼",
"hu": "Linux/BSD/macOS Parancs Shell",
"xloc": [
- "default.handlebars->47->1258",
- "default.handlebars->47->793"
+ "default.handlebars->47->1260",
+ "default.handlebars->47->795"
]
},
{
@@ -43288,7 +43290,7 @@
"hu": "litván",
"xloc": [
"default-mobile.handlebars->11->213",
- "default.handlebars->47->1904",
+ "default.handlebars->47->1906",
"login2.handlebars->7->110"
]
},
@@ -43345,14 +43347,14 @@
"xloc": [
"default-mobile.handlebars->11->310",
"default-mobile.handlebars->11->90",
- "default.handlebars->47->1304",
- "default.handlebars->47->1732",
- "default.handlebars->47->1775",
- "default.handlebars->47->2101",
- "default.handlebars->47->2105",
- "default.handlebars->47->2108",
- "default.handlebars->47->3014",
- "default.handlebars->47->3063"
+ "default.handlebars->47->1306",
+ "default.handlebars->47->1734",
+ "default.handlebars->47->1777",
+ "default.handlebars->47->2103",
+ "default.handlebars->47->2107",
+ "default.handlebars->47->2110",
+ "default.handlebars->47->3016",
+ "default.handlebars->47->3065"
]
},
{
@@ -43379,7 +43381,7 @@
"zh-cht": "本地",
"hu": "Helyi",
"xloc": [
- "default.handlebars->47->417",
+ "default.handlebars->47->419",
"messenger.handlebars->localVideo->1",
"messenger.handlebars->remoteImage->3->4"
]
@@ -43485,8 +43487,8 @@
"hu": "Helyi eszközök, agent nélkül",
"xloc": [
"default-mobile.handlebars->11->894",
- "default.handlebars->47->2052",
- "default.handlebars->47->2115"
+ "default.handlebars->47->2054",
+ "default.handlebars->47->2117"
]
},
{
@@ -43540,7 +43542,7 @@
"zh-cht": "通過中繼代理的本地網絡連接。",
"hu": "Helyi hálózati kapcsolat relay agent-en keresztül.",
"xloc": [
- "default.handlebars->47->414"
+ "default.handlebars->47->416"
]
},
{
@@ -43567,7 +43569,7 @@
"zh-cht": "本地網絡連接。",
"hu": "Helyi hálózati kapcsolat.",
"xloc": [
- "default.handlebars->47->416"
+ "default.handlebars->47->418"
]
},
{
@@ -43594,7 +43596,7 @@
"zh-cht": "本地用戶接受的遠程終端請求",
"hu": "A helyi felhasználó elfogadta a távoli terminál kérését",
"xloc": [
- "default.handlebars->47->2498"
+ "default.handlebars->47->2500"
]
},
{
@@ -43621,7 +43623,7 @@
"zh-cht": "本地用戶拒絕了遠程終端請求",
"hu": "A helyi felhasználó elutasította a távoli terminál kérését",
"xloc": [
- "default.handlebars->47->2499"
+ "default.handlebars->47->2501"
]
},
{
@@ -43650,7 +43652,7 @@
"xloc": [
"default-mobile.handlebars->11->308",
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->3->5->0",
- "default.handlebars->47->1999",
+ "default.handlebars->47->2001",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->9"
]
},
@@ -43678,7 +43680,7 @@
"zh-cht": "位置",
"hu": "Hely",
"xloc": [
- "default.handlebars->47->1022"
+ "default.handlebars->47->1024"
]
},
{
@@ -43732,7 +43734,7 @@
"zh-cht": "鎖定賬戶",
"hu": "Fiók zárolása",
"xloc": [
- "default.handlebars->47->2775"
+ "default.handlebars->47->2777"
]
},
{
@@ -43759,7 +43761,7 @@
"zh-cht": "鎖定帳戶設置",
"hu": "Fiókbeállítások zárolása",
"xloc": [
- "default.handlebars->47->2779"
+ "default.handlebars->47->2781"
]
},
{
@@ -43786,7 +43788,7 @@
"zh-cht": "鎖定桌面",
"hu": "Asztal zárolása",
"xloc": [
- "default.handlebars->47->1184"
+ "default.handlebars->47->1186"
]
},
{
@@ -43813,7 +43815,7 @@
"zh-cht": "鎖定賬戶",
"hu": "Fiók zárolása",
"xloc": [
- "default.handlebars->47->2698"
+ "default.handlebars->47->2700"
]
},
{
@@ -43868,7 +43870,7 @@
"zh-cht": "鎖定遠程用戶的鼠標和鍵盤?",
"hu": "Zárolja a távoli felhasználó egerét és billentyűzetét?",
"xloc": [
- "default.handlebars->47->1171"
+ "default.handlebars->47->1173"
]
},
{
@@ -43922,7 +43924,7 @@
"zh-cht": "鎖定用戶桌面?",
"hu": "Felhasználó Asztal zárolása?",
"xloc": [
- "default.handlebars->47->1185"
+ "default.handlebars->47->1187"
]
},
{
@@ -43949,7 +43951,7 @@
"zh-cht": "已鎖定",
"hu": "Zárolva",
"xloc": [
- "default.handlebars->47->2678"
+ "default.handlebars->47->2680"
]
},
{
@@ -43977,9 +43979,9 @@
"hu": "Fiók zárolva",
"xloc": [
"default-mobile.handlebars->11->86",
- "default.handlebars->47->2869",
- "default.handlebars->47->3159",
- "default.handlebars->47->3198",
+ "default.handlebars->47->2871",
+ "default.handlebars->47->3161",
+ "default.handlebars->47->3200",
"default.handlebars->47->325"
]
},
@@ -44007,7 +44009,7 @@
"zh-cht": "將遠程用戶鎖定在桌面之外",
"hu": "Távoli felhasználó kizárása az asztalról.",
"xloc": [
- "default.handlebars->47->2524"
+ "default.handlebars->47->2526"
]
},
{
@@ -44034,7 +44036,7 @@
"zh-cht": "記錄事件",
"hu": "Esemény hozzáadása",
"xloc": [
- "default.handlebars->47->999"
+ "default.handlebars->47->1001"
]
},
{
@@ -44174,7 +44176,7 @@
"zh-cht": "登錄用戶",
"hu": "Bejelentkezett felhasználók",
"xloc": [
- "default.handlebars->47->346"
+ "default.handlebars->47->347"
]
},
{
@@ -44259,7 +44261,7 @@
"zh-cht": "登錄令牌",
"hu": "Bejelentkezési token",
"xloc": [
- "default.handlebars->47->3170"
+ "default.handlebars->47->3172"
]
},
{
@@ -44431,7 +44433,7 @@
"hu": "luxemburgi",
"xloc": [
"default-mobile.handlebars->11->214",
- "default.handlebars->47->1905",
+ "default.handlebars->47->1907",
"login2.handlebars->7->111"
]
},
@@ -44461,10 +44463,10 @@
"xloc": [
"default-mobile.handlebars->11->774",
"default-mobile.handlebars->11->776",
- "default.handlebars->47->1603",
"default.handlebars->47->1605",
- "default.handlebars->47->1613",
- "default.handlebars->47->1615"
+ "default.handlebars->47->1607",
+ "default.handlebars->47->1615",
+ "default.handlebars->47->1617"
]
},
{
@@ -44520,8 +44522,8 @@
"hu": "MAC: {0}",
"xloc": [
"default-mobile.handlebars->11->777",
- "default.handlebars->47->1606",
- "default.handlebars->47->1616"
+ "default.handlebars->47->1608",
+ "default.handlebars->47->1618"
]
},
{
@@ -44549,8 +44551,8 @@
"hu": "MAC: {0}, Átjáró: {1}",
"xloc": [
"default-mobile.handlebars->11->775",
- "default.handlebars->47->1604",
- "default.handlebars->47->1614"
+ "default.handlebars->47->1606",
+ "default.handlebars->47->1616"
]
},
{
@@ -44717,11 +44719,11 @@
"default-mobile.handlebars->11->877",
"default-mobile.handlebars->11->879",
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2",
- "default.handlebars->47->1717",
"default.handlebars->47->1719",
- "default.handlebars->47->413",
- "default.handlebars->47->714",
- "default.handlebars->47->978",
+ "default.handlebars->47->1721",
+ "default.handlebars->47->415",
+ "default.handlebars->47->716",
+ "default.handlebars->47->980",
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2"
]
},
@@ -44776,7 +44778,7 @@
"zh-cht": "MQTT登入",
"hu": "MQTT bejelentkezés",
"xloc": [
- "default.handlebars->47->1043"
+ "default.handlebars->47->1045"
]
},
{
@@ -44804,7 +44806,7 @@
"hu": "MQTT csatorna csatlakoztatva",
"xloc": [
"default-mobile.handlebars->11->554",
- "default.handlebars->47->1057"
+ "default.handlebars->47->1059"
]
},
{
@@ -44831,7 +44833,7 @@
"zh-cht": "MQTT已連接",
"hu": "MQTT csatlakoztatva",
"xloc": [
- "default.handlebars->47->1056",
+ "default.handlebars->47->1058",
"default.handlebars->47->261"
]
},
@@ -44859,9 +44861,9 @@
"zh-cht": "與裝置的MQTT連接已啟動。",
"hu": "MQTT kapcsolat aktív az eszközzel",
"xloc": [
- "default.handlebars->47->412",
- "default.handlebars->47->713",
- "default.handlebars->47->977"
+ "default.handlebars->47->414",
+ "default.handlebars->47->715",
+ "default.handlebars->47->979"
]
},
{
@@ -45044,7 +45046,7 @@
"zh-cht": "macOS 安裝程序",
"hu": "MacOS Telepítő",
"xloc": [
- "default.handlebars->47->1307"
+ "default.handlebars->47->1309"
]
},
{
@@ -45071,8 +45073,8 @@
"zh-cht": "MacOS MeshAgent",
"hu": "MacOS MeshAgent",
"xloc": [
- "default.handlebars->47->2374",
- "default.handlebars->47->577"
+ "default.handlebars->47->2376",
+ "default.handlebars->47->579"
]
},
{
@@ -45126,7 +45128,7 @@
"zh-cht": "主伺服器訊息",
"hu": "Fő Kiszolgáló üzenetek",
"xloc": [
- "default.handlebars->47->3314"
+ "default.handlebars->47->3316"
]
},
{
@@ -45154,7 +45156,7 @@
"hu": "maláj",
"xloc": [
"default-mobile.handlebars->11->216",
- "default.handlebars->47->1907",
+ "default.handlebars->47->1909",
"login2.handlebars->7->113"
]
},
@@ -45183,7 +45185,7 @@
"hu": "malajálam",
"xloc": [
"default-mobile.handlebars->11->217",
- "default.handlebars->47->1908",
+ "default.handlebars->47->1910",
"login2.handlebars->7->114"
]
},
@@ -45212,7 +45214,7 @@
"hu": "máltai",
"xloc": [
"default-mobile.handlebars->11->218",
- "default.handlebars->47->1909",
+ "default.handlebars->47->1911",
"login2.handlebars->7->115"
]
},
@@ -45241,7 +45243,7 @@
"hu": "A fiókhoz tartozó kép módosítása",
"xloc": [
"default-mobile.handlebars->11->91",
- "default.handlebars->47->1733"
+ "default.handlebars->47->1735"
]
},
{
@@ -45298,8 +45300,8 @@
"xloc": [
"default-mobile.handlebars->11->932",
"default-mobile.handlebars->11->952",
- "default.handlebars->47->2298",
- "default.handlebars->47->2337"
+ "default.handlebars->47->2300",
+ "default.handlebars->47->2339"
]
},
{
@@ -45328,8 +45330,8 @@
"xloc": [
"default-mobile.handlebars->11->931",
"default-mobile.handlebars->11->951",
- "default.handlebars->47->2297",
- "default.handlebars->47->2336"
+ "default.handlebars->47->2299",
+ "default.handlebars->47->2338"
]
},
{
@@ -45356,7 +45358,7 @@
"zh-cht": "管理裝置",
"hu": "Eszközök kezelése",
"xloc": [
- "default.handlebars->47->1135"
+ "default.handlebars->47->1137"
]
},
{
@@ -45383,7 +45385,7 @@
"zh-cht": "管理錄音",
"hu": "Felvételek kezelése",
"xloc": [
- "default.handlebars->47->2773"
+ "default.handlebars->47->2775"
]
},
{
@@ -45437,7 +45439,7 @@
"zh-cht": "管理用戶群",
"hu": "Felhaszálói csoportok kezelése",
"xloc": [
- "default.handlebars->47->2772"
+ "default.handlebars->47->2774"
]
},
{
@@ -45464,8 +45466,8 @@
"zh-cht": "管理用戶",
"hu": "Felhaszálók kezelése",
"xloc": [
- "default.handlebars->47->1134",
- "default.handlebars->47->2771"
+ "default.handlebars->47->1136",
+ "default.handlebars->47->2773"
]
},
{
@@ -45673,7 +45675,7 @@
"zh-cht": "使用軟體代理進行管理",
"hu": "Kezelés szoftver agent segítségével",
"xloc": [
- "default.handlebars->47->2057"
+ "default.handlebars->47->2059"
]
},
{
@@ -45701,7 +45703,7 @@
"hu": "Szoftver agent segítségével kezelt",
"xloc": [
"default-mobile.handlebars->11->893",
- "default.handlebars->47->2114"
+ "default.handlebars->47->2116"
]
},
{
@@ -45728,7 +45730,7 @@
"zh-cht": "經理",
"hu": "Menedzser",
"xloc": [
- "default.handlebars->47->2683"
+ "default.handlebars->47->2685"
]
},
{
@@ -45793,7 +45795,7 @@
"pl": "ID Producenta",
"xloc": [
"default-mobile.handlebars->11->819",
- "default.handlebars->47->1658"
+ "default.handlebars->47->1660"
]
},
{
@@ -45802,7 +45804,7 @@
"pl": "Wersja Wydania",
"xloc": [
"default-mobile.handlebars->11->820",
- "default.handlebars->47->1659"
+ "default.handlebars->47->1661"
]
},
{
@@ -45830,7 +45832,7 @@
"hu": "maori",
"xloc": [
"default-mobile.handlebars->11->219",
- "default.handlebars->47->1910",
+ "default.handlebars->47->1912",
"login2.handlebars->7->116"
]
},
@@ -45935,7 +45937,7 @@
"hu": "marathi",
"xloc": [
"default-mobile.handlebars->11->220",
- "default.handlebars->47->1911",
+ "default.handlebars->47->1913",
"login2.handlebars->7->117"
]
},
@@ -45963,7 +45965,7 @@
"hu": "Hálózati maszk: {0}",
"xloc": [
"default-mobile.handlebars->11->779",
- "default.handlebars->47->1618"
+ "default.handlebars->47->1620"
]
},
{
@@ -45990,7 +45992,7 @@
"zh-cht": "達到連接數量上限",
"hu": "Elérte a munkamenetek maximális számát",
"xloc": [
- "default.handlebars->47->3258"
+ "default.handlebars->47->3260"
]
},
{
@@ -46103,8 +46105,8 @@
"zh-cht": "Megabyte",
"hu": "Megabájt",
"xloc": [
- "default.handlebars->47->3299",
- "default.handlebars->47->3304",
+ "default.handlebars->47->3301",
+ "default.handlebars->47->3306",
"default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown->7"
]
},
@@ -46135,11 +46137,11 @@
"default-mobile.handlebars->11->836",
"default-mobile.handlebars->11->842",
"default-mobile.handlebars->11->848",
- "default.handlebars->47->1575",
- "default.handlebars->47->1675",
- "default.handlebars->47->1681",
- "default.handlebars->47->1687",
- "default.handlebars->47->3278",
+ "default.handlebars->47->1577",
+ "default.handlebars->47->1677",
+ "default.handlebars->47->1683",
+ "default.handlebars->47->1689",
+ "default.handlebars->47->3280",
"default.handlebars->container->column_l->p40->3->1->p40type->3"
]
},
@@ -46172,19 +46174,19 @@
"default-mobile.handlebars->11->551",
"default-mobile.handlebars->11->758",
"default-mobile.handlebars->11->766",
- "default.handlebars->47->1587",
- "default.handlebars->47->1595",
- "default.handlebars->47->608",
- "default.handlebars->47->612",
- "default.handlebars->47->616",
- "default.handlebars->47->627",
- "default.handlebars->47->648",
- "default.handlebars->47->652",
- "default.handlebars->47->656",
- "default.handlebars->47->663",
- "default.handlebars->47->669",
- "default.handlebars->47->893",
- "default.handlebars->47->970"
+ "default.handlebars->47->1589",
+ "default.handlebars->47->1597",
+ "default.handlebars->47->610",
+ "default.handlebars->47->614",
+ "default.handlebars->47->618",
+ "default.handlebars->47->629",
+ "default.handlebars->47->650",
+ "default.handlebars->47->654",
+ "default.handlebars->47->658",
+ "default.handlebars->47->665",
+ "default.handlebars->47->671",
+ "default.handlebars->47->895",
+ "default.handlebars->47->972"
]
},
{
@@ -46212,7 +46214,7 @@
"hu": "Konzol",
"xloc": [
"default-mobile.handlebars->11->939",
- "default.handlebars->47->2307"
+ "default.handlebars->47->2309"
]
},
{
@@ -46287,7 +46289,7 @@
"zh-cht": "Mesh Relay",
"hu": "Mesh Relay",
"xloc": [
- "default.handlebars->47->976"
+ "default.handlebars->47->978"
]
},
{
@@ -46314,9 +46316,9 @@
"zh-cht": "已連接Mesh Agent並準備使用。",
"hu": "Az Agent csatlakoztatva és használatra kész.",
"xloc": [
- "default.handlebars->47->404",
- "default.handlebars->47->705",
- "default.handlebars->47->969"
+ "default.handlebars->47->406",
+ "default.handlebars->47->707",
+ "default.handlebars->47->971"
]
},
{
@@ -46343,9 +46345,9 @@
"zh-cht": "Mesh Agent可以經過其他代理作為中繼訪問得到。",
"hu": "Mesh Agent egy másik Agent (relay) közvetítésével érhető el.",
"xloc": [
- "default.handlebars->47->410",
- "default.handlebars->47->711",
- "default.handlebars->47->975"
+ "default.handlebars->47->412",
+ "default.handlebars->47->713",
+ "default.handlebars->47->977"
]
},
{
@@ -46372,8 +46374,8 @@
"zh-cht": "MeshAction(.txt)",
"hu": "MeshAction (.txt)",
"xloc": [
- "default.handlebars->47->1325",
- "default.handlebars->47->1327"
+ "default.handlebars->47->1327",
+ "default.handlebars->47->1329"
]
},
{
@@ -46400,7 +46402,7 @@
"zh-cht": "MeshAgent流量",
"hu": "MeshAgent forgalom",
"xloc": [
- "default.handlebars->47->3316"
+ "default.handlebars->47->3318"
]
},
{
@@ -46427,7 +46429,7 @@
"zh-cht": "MeshAgent更新",
"hu": "MeshAgent frissítés",
"xloc": [
- "default.handlebars->47->3317"
+ "default.handlebars->47->3319"
]
},
{
@@ -46454,9 +46456,9 @@
"zh-cht": "網格中心",
"hu": "MeshCentral",
"xloc": [
- "default.handlebars->47->1169",
- "default.handlebars->47->1183",
- "default.handlebars->47->777"
+ "default.handlebars->47->1171",
+ "default.handlebars->47->1185",
+ "default.handlebars->47->779"
]
},
{
@@ -46507,10 +46509,10 @@
"zh-cht": "MeshCentral 助手",
"hu": "MeshCentral Assistant",
"xloc": [
- "default.handlebars->47->2375",
- "default.handlebars->47->551",
- "default.handlebars->47->578",
- "default.handlebars->47->591"
+ "default.handlebars->47->2377",
+ "default.handlebars->47->553",
+ "default.handlebars->47->580",
+ "default.handlebars->47->593"
]
},
{
@@ -46537,8 +46539,8 @@
"zh-cht": "適用於 Windows 的 MeshCentral 助手",
"hu": "MeshCentral Assistant Windows rendszerhez",
"xloc": [
- "default.handlebars->47->640",
- "default.handlebars->47->644"
+ "default.handlebars->47->642",
+ "default.handlebars->47->646"
]
},
{
@@ -46589,7 +46591,7 @@
"zh-cht": "MeshCentral Assistant 是一個 Windows 工具,用戶可以使用它來尋求幫助。使用下面的鏈接下載將連接到設備組 \\\"{0}\\\" 的版本。",
"hu": "A MeshCentral Assistant egy Windows alkalmazás, amellyel a felhasználók segítséget kérhetnek. Az alábbi link segítségével letölthet egy olyan verziót, amely csatlakozik a \\\"{0}\\\" eszközcsoporthoz.",
"xloc": [
- "default.handlebars->47->639"
+ "default.handlebars->47->641"
]
},
{
@@ -46616,7 +46618,7 @@
"zh-cht": "MeshCentral Assistant 是一個 Windows 工具,用戶可以使用它來尋求幫助。使用下面的鏈接下載將監控後台代理的版本。",
"hu": "A MeshCentral Assistant egy Windows tálca alkalmazás, amellyel a felhasználók segítséget kérhetnek. Az alábbi link segítségével letölthet egy olyan verziót, amely a háttérben futó MeshCentral Agent-et monitorozza.",
"xloc": [
- "default.handlebars->47->643"
+ "default.handlebars->47->645"
]
},
{
@@ -46694,7 +46696,7 @@
"zh-cht": "MeshCentral Router",
"hu": "MeshCentral Router",
"xloc": [
- "default.handlebars->47->1310"
+ "default.handlebars->47->1312"
]
},
{
@@ -46745,7 +46747,7 @@
"zh-cht": "MeshCentral 路由器鏈接",
"hu": "MeshCentral Router Linkek",
"xloc": [
- "default.handlebars->47->345"
+ "default.handlebars->47->346"
]
},
{
@@ -46820,7 +46822,7 @@
"zh-cht": "MeshCentral Router是Windows工具,用於TCP介面映射。例如,你可以通過該伺服器將RDP放入遠程裝置。",
"hu": "A MeshCentral Router egy Windows-eszköz a TCP-portok leképezéséhez. Ezen a kiszolgálón keresztül például RDP-t indíthat egy távoli eszközre.",
"xloc": [
- "default.handlebars->47->1305"
+ "default.handlebars->47->1307"
]
},
{
@@ -46898,7 +46900,7 @@
"zh-cht": "MeshCentral伺服器同級化",
"hu": "MeshCentral Server Peering",
"xloc": [
- "default.handlebars->47->3315"
+ "default.handlebars->47->3317"
]
},
{
@@ -46954,7 +46956,7 @@
"xloc": [
"default.handlebars->47->195",
"default.handlebars->47->197",
- "default.handlebars->47->2100"
+ "default.handlebars->47->2102"
]
},
{
@@ -46981,9 +46983,9 @@
"zh-cht": "MeshCmd",
"hu": "MeshCmd",
"xloc": [
- "default.handlebars->47->1024",
- "default.handlebars->47->1323",
- "default.handlebars->47->387"
+ "default.handlebars->47->1026",
+ "default.handlebars->47->1325",
+ "default.handlebars->47->389"
]
},
{
@@ -47010,7 +47012,7 @@
"zh-cht": "MeshCmd(Linux ARM,32位)",
"hu": "MeshCmd (Linux ARM, 32bit)",
"xloc": [
- "default.handlebars->47->1336"
+ "default.handlebars->47->1338"
]
},
{
@@ -47037,7 +47039,7 @@
"zh-cht": "MeshCmd(Linux ARM,64位)",
"hu": "MeshCmd (Linux ARM, 64bit)",
"xloc": [
- "default.handlebars->47->1337"
+ "default.handlebars->47->1339"
]
},
{
@@ -47064,7 +47066,7 @@
"zh-cht": "MeshCmd(Linux x86,32bit)",
"hu": "MeshCmd (Linux x86, 32bit)",
"xloc": [
- "default.handlebars->47->1332"
+ "default.handlebars->47->1334"
]
},
{
@@ -47091,7 +47093,7 @@
"zh-cht": "MeshCmd(Linux x86,64位)",
"hu": "MeshCmd (Linux x86, 64bit)",
"xloc": [
- "default.handlebars->47->1333"
+ "default.handlebars->47->1335"
]
},
{
@@ -47101,7 +47103,7 @@
"de": "MeshCmd (Win ARM-64 ausführbare Datei)",
"es": "MeshCmd (ejecutable Win ARM-64)",
"xloc": [
- "default.handlebars->47->1331"
+ "default.handlebars->47->1333"
]
},
{
@@ -47111,7 +47113,7 @@
"de": "MeshCmd (Win x86-32 ausführbare Datei)",
"es": "MeshCmd (ejecutable Win x86-32)",
"xloc": [
- "default.handlebars->47->1329"
+ "default.handlebars->47->1331"
]
},
{
@@ -47121,7 +47123,7 @@
"de": "MeshCmd (Win x86-64 ausführbare Datei)",
"es": "MeshCmd (ejecutable Win x86-64)",
"xloc": [
- "default.handlebars->47->1330"
+ "default.handlebars->47->1332"
]
},
{
@@ -47220,7 +47222,7 @@
"zh-cht": "MeshCmd(macOS,ARM-64位)",
"hu": "MeshCmd (macOS, ARM-64bit)",
"xloc": [
- "default.handlebars->47->1335"
+ "default.handlebars->47->1337"
]
},
{
@@ -47247,7 +47249,7 @@
"zh-cht": "MeshCmd(macOS,x86-ARM-64位)",
"hu": "MeshCmd (macOS, x86-64bit)",
"xloc": [
- "default.handlebars->47->1334"
+ "default.handlebars->47->1336"
]
},
{
@@ -47274,7 +47276,7 @@
"zh-cht": "MeshCmd是一個可以執行許多不同操作的命令行工具。可以選擇下載和編輯操作檔案以提供伺服器訊息和憑據。",
"hu": "A MeshCmd egy parancssori eszköz, amely számos különböző műveletet végez. A műveletfájl opcionálisan letölthető és szerkeszthető a kiszolgáló adatainak és hitelesítő adatainak megadásához.",
"xloc": [
- "default.handlebars->47->1320"
+ "default.handlebars->47->1322"
]
},
{
@@ -47376,11 +47378,11 @@
"zh-cht": "訊息",
"hu": "Üzenet",
"xloc": [
- "default.handlebars->47->1003",
- "default.handlebars->47->1285",
- "default.handlebars->47->2945",
- "default.handlebars->47->3137",
- "default.handlebars->47->563"
+ "default.handlebars->47->1005",
+ "default.handlebars->47->1287",
+ "default.handlebars->47->2947",
+ "default.handlebars->47->3139",
+ "default.handlebars->47->565"
]
},
{
@@ -47407,8 +47409,8 @@
"zh-cht": "留言框",
"hu": "Üzenet Doboz",
"xloc": [
- "default.handlebars->47->1174",
- "default.handlebars->47->756"
+ "default.handlebars->47->1176",
+ "default.handlebars->47->758"
]
},
{
@@ -47435,7 +47437,7 @@
"zh-cht": "電郵調度器",
"hu": "Üzenet Küldő",
"xloc": [
- "default.handlebars->47->3313"
+ "default.handlebars->47->3315"
]
},
{
@@ -47447,7 +47449,7 @@
"de": "Fehler bei Nachricht",
"es": "Mensaje de error",
"xloc": [
- "default.handlebars->47->3243"
+ "default.handlebars->47->3245"
]
},
{
@@ -47459,7 +47461,7 @@
"de": "Fehler bei Nachricht: {0}",
"es": "Mensaje de error: {0}",
"xloc": [
- "default.handlebars->47->3244"
+ "default.handlebars->47->3246"
]
},
{
@@ -47484,7 +47486,7 @@
"de": "Nachricht erfolgreich gesendet.",
"es": "Mensaje enviado con éxito.",
"xloc": [
- "default.handlebars->47->3242"
+ "default.handlebars->47->3244"
]
},
{
@@ -47550,8 +47552,8 @@
"de": "Benachrichtigung",
"es": "Mensajería",
"xloc": [
- "default.handlebars->47->2890",
- "default.handlebars->47->2938",
+ "default.handlebars->47->2892",
+ "default.handlebars->47->2940",
"login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3",
"login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3",
"login2.handlebars->centralTable->1->0->logincell->tokenpanel->tokenpanelform->7->1->2farow->1->3"
@@ -47566,8 +47568,8 @@
"de": "Benachrichtigung ({0})",
"es": "Mensajería ({0})",
"xloc": [
- "default.handlebars->47->2153",
- "default.handlebars->47->966"
+ "default.handlebars->47->2155",
+ "default.handlebars->47->968"
]
},
{
@@ -47578,12 +47580,12 @@
"pl": "Powiadomienia w Komunikatorze",
"es": "Notificaciones de Mensajería",
"xloc": [
- "default.handlebars->47->1105",
- "default.handlebars->47->1742",
- "default.handlebars->47->1762",
- "default.handlebars->47->2396",
+ "default.handlebars->47->1107",
+ "default.handlebars->47->1744",
+ "default.handlebars->47->1764",
+ "default.handlebars->47->2398",
"default.handlebars->47->255",
- "default.handlebars->47->2985"
+ "default.handlebars->47->2987"
]
},
{
@@ -47595,7 +47597,7 @@
"de": "Benachrichtigungsaccount für diesen Benutzer.",
"es": "Cuenta de Mensajería para este usuario.",
"xloc": [
- "default.handlebars->47->2965"
+ "default.handlebars->47->2967"
]
},
{
@@ -47607,7 +47609,7 @@
"de": "Benachrichtigungen aktiviert",
"es": "Mensajería habilitada",
"xloc": [
- "default.handlebars->47->2891"
+ "default.handlebars->47->2893"
]
},
{
@@ -47634,8 +47636,8 @@
"zh-cht": "信使",
"hu": "Messenger",
"xloc": [
- "default.handlebars->47->3079",
- "default.handlebars->47->3146"
+ "default.handlebars->47->3081",
+ "default.handlebars->47->3148"
]
},
{
@@ -47646,7 +47648,7 @@
"pl": "Wiadomości",
"es": "Mensajería",
"xloc": [
- "default.handlebars->47->3166"
+ "default.handlebars->47->3168"
]
},
{
@@ -47817,7 +47819,7 @@
"hu": "Mobile Eszköz",
"xloc": [
"default-mobile.handlebars->11->772",
- "default.handlebars->47->1601"
+ "default.handlebars->47->1603"
]
},
{
@@ -47844,7 +47846,7 @@
"zh-cht": "移動設備",
"hu": "Mobil eszköz",
"xloc": [
- "default.handlebars->47->590"
+ "default.handlebars->47->592"
]
},
{
@@ -47853,7 +47855,7 @@
"pl": "Tryb",
"xloc": [
"default-mobile.handlebars->11->808",
- "default.handlebars->47->1647"
+ "default.handlebars->47->1649"
]
},
{
@@ -47882,9 +47884,9 @@
"xloc": [
"default-mobile.handlebars->11->767",
"default-mobile.handlebars->11->849",
- "default.handlebars->47->1596",
- "default.handlebars->47->1688",
- "default.handlebars->47->2061"
+ "default.handlebars->47->1598",
+ "default.handlebars->47->1690",
+ "default.handlebars->47->2063"
]
},
{
@@ -47911,7 +47913,7 @@
"zh-cht": "修改節點位置",
"hu": "Eszköz hely módosítása",
"xloc": [
- "default.handlebars->47->843"
+ "default.handlebars->47->845"
]
},
{
@@ -47939,7 +47941,7 @@
"hu": "moldvai",
"xloc": [
"default-mobile.handlebars->11->221",
- "default.handlebars->47->1912",
+ "default.handlebars->47->1914",
"login2.handlebars->7->118"
]
},
@@ -47992,7 +47994,7 @@
"hu": "Alaplap",
"xloc": [
"default-mobile.handlebars->11->817",
- "default.handlebars->47->1656"
+ "default.handlebars->47->1658"
]
},
{
@@ -48019,7 +48021,7 @@
"zh-cht": "將此裝置移至其他裝置群",
"hu": "Az eszköz áthelyezése egy másik eszközcsoportba",
"xloc": [
- "default.handlebars->47->1015"
+ "default.handlebars->47->1017"
]
},
{
@@ -48046,7 +48048,7 @@
"zh-cht": "移至裝置群",
"hu": "Áthelyezés másik eszközcsoportba",
"xloc": [
- "default.handlebars->47->720"
+ "default.handlebars->47->722"
]
},
{
@@ -48073,7 +48075,7 @@
"zh-cht": "移動:“{0}”到“{1}”",
"hu": "Áthelyezés: \\\"{0}\\\" ide \\\"{1}\\\"",
"xloc": [
- "default.handlebars->47->2523"
+ "default.handlebars->47->2525"
]
},
{
@@ -48100,7 +48102,7 @@
"zh-cht": "將設備{0}移動到組{1}",
"hu": "{0} eszköz áthelyezve az {1} csoportba",
"xloc": [
- "default.handlebars->47->2556"
+ "default.handlebars->47->2558"
]
},
{
@@ -48154,8 +48156,8 @@
"zh-cht": "多個問題",
"hu": "Többszörös Problémák",
"xloc": [
- "default.handlebars->47->2409",
- "default.handlebars->47->2423"
+ "default.handlebars->47->2411",
+ "default.handlebars->47->2425"
]
},
{
@@ -48206,7 +48208,7 @@
"zh-cht": "多工器",
"hu": "Multiplexor",
"xloc": [
- "default.handlebars->47->3097"
+ "default.handlebars->47->3099"
]
},
{
@@ -48233,8 +48235,8 @@
"zh-cht": "必須以用戶身份運行",
"hu": "Futtatás felhasználóként",
"xloc": [
- "default.handlebars->47->1261",
- "default.handlebars->47->797"
+ "default.handlebars->47->1263",
+ "default.handlebars->47->799"
]
},
{
@@ -48436,7 +48438,7 @@
"zh-cht": "我的伺服器控制台",
"hu": "Kiszolgáló konzol",
"xloc": [
- "default.handlebars->47->1712"
+ "default.handlebars->47->1714"
]
},
{
@@ -48654,8 +48656,8 @@
"zh-cht": "我的密鍵",
"hu": "MyKey",
"xloc": [
- "default.handlebars->47->1787",
- "default.handlebars->47->1790"
+ "default.handlebars->47->1789",
+ "default.handlebars->47->1792"
]
},
{
@@ -48682,7 +48684,7 @@
"zh-cht": "不支持 NLA",
"hu": "NLA nem támogatott",
"xloc": [
- "default.handlebars->47->1357"
+ "default.handlebars->47->1359"
]
},
{
@@ -48823,25 +48825,25 @@
"default-mobile.handlebars->11->811",
"default-mobile.handlebars->11->898",
"default-mobile.handlebars->11->921",
- "default.handlebars->47->1417",
- "default.handlebars->47->1433",
+ "default.handlebars->47->1419",
+ "default.handlebars->47->1435",
"default.handlebars->47->156",
- "default.handlebars->47->1576",
- "default.handlebars->47->1650",
+ "default.handlebars->47->1578",
+ "default.handlebars->47->1652",
"default.handlebars->47->170",
- "default.handlebars->47->2051",
- "default.handlebars->47->2079",
- "default.handlebars->47->2084",
- "default.handlebars->47->2119",
- "default.handlebars->47->2257",
- "default.handlebars->47->2664",
- "default.handlebars->47->2782",
- "default.handlebars->47->2798",
- "default.handlebars->47->2805",
- "default.handlebars->47->2856",
- "default.handlebars->47->2875",
+ "default.handlebars->47->2053",
+ "default.handlebars->47->2081",
+ "default.handlebars->47->2086",
+ "default.handlebars->47->2121",
+ "default.handlebars->47->2259",
+ "default.handlebars->47->2666",
+ "default.handlebars->47->2784",
+ "default.handlebars->47->2800",
+ "default.handlebars->47->2807",
+ "default.handlebars->47->2858",
+ "default.handlebars->47->2877",
"default.handlebars->47->330",
- "default.handlebars->47->872",
+ "default.handlebars->47->874",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3",
"default.handlebars->container->column_l->p42->p42tbl->1->0->2"
@@ -48871,7 +48873,7 @@
"zh-cht": "名稱(可選)",
"hu": "Név (opcionális)",
"xloc": [
- "default.handlebars->47->542"
+ "default.handlebars->47->544"
]
},
{
@@ -48898,7 +48900,7 @@
"zh-cht": "名稱1,名稱2,名稱3",
"hu": "Nev1.Nev2,Nev3",
"xloc": [
- "default.handlebars->47->2763"
+ "default.handlebars->47->2765"
]
},
{
@@ -48926,7 +48928,7 @@
"hu": "navajo",
"xloc": [
"default-mobile.handlebars->11->222",
- "default.handlebars->47->1913",
+ "default.handlebars->47->1915",
"login2.handlebars->7->119"
]
},
@@ -48955,7 +48957,7 @@
"hu": "ndonga-oshindonga",
"xloc": [
"default-mobile.handlebars->11->223",
- "default.handlebars->47->1914",
+ "default.handlebars->47->1916",
"login2.handlebars->7->120"
]
},
@@ -48984,7 +48986,7 @@
"hu": "nepáli",
"xloc": [
"default-mobile.handlebars->11->224",
- "default.handlebars->47->1915",
+ "default.handlebars->47->1917",
"login2.handlebars->7->121"
]
},
@@ -49012,7 +49014,7 @@
"zh-cht": "網絡介面",
"hu": "Hálózati interfészek",
"xloc": [
- "default.handlebars->47->1303"
+ "default.handlebars->47->1305"
]
},
{
@@ -49049,7 +49051,7 @@
"de": "Aufzeichnungen über Informationen zu Netzwerkschnittstellen",
"es": "Registros de información de la interfaz de red.",
"xloc": [
- "default.handlebars->47->3179"
+ "default.handlebars->47->3181"
]
},
{
@@ -49077,8 +49079,8 @@
"hu": "Hálózat",
"xloc": [
"default-mobile.handlebars->11->787",
- "default.handlebars->47->1611",
- "default.handlebars->47->1626"
+ "default.handlebars->47->1613",
+ "default.handlebars->47->1628"
]
},
{
@@ -49106,7 +49108,7 @@
"hu": "Új",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1->1",
- "default.handlebars->47->2078",
+ "default.handlebars->47->2080",
"default.handlebars->container->column_l->p2->p2info->p2createMeshLink1->1"
]
},
@@ -49134,7 +49136,7 @@
"zh-cht": "生成新的2FA備份代碼",
"hu": "Új 2FA biztonsági kódok generálása",
"xloc": [
- "default.handlebars->47->2563"
+ "default.handlebars->47->2565"
]
},
{
@@ -49162,7 +49164,7 @@
"hu": "Új fiók",
"xloc": [
"default-mobile.handlebars->11->980",
- "default.handlebars->47->3205"
+ "default.handlebars->47->3207"
]
},
{
@@ -49241,9 +49243,9 @@
"hu": "Új eszközcsoport",
"xloc": [
"default-mobile.handlebars->11->329",
- "default.handlebars->47->1295",
- "default.handlebars->47->2044",
- "default.handlebars->47->2067"
+ "default.handlebars->47->1297",
+ "default.handlebars->47->2046",
+ "default.handlebars->47->2069"
]
},
{
@@ -49272,8 +49274,8 @@
"xloc": [
"default-mobile.handlebars->11->358",
"default-mobile.handlebars->11->692",
- "default.handlebars->47->1533",
- "default.handlebars->47->2453",
+ "default.handlebars->47->1535",
+ "default.handlebars->47->2455",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
"sharing.handlebars->11->59",
@@ -49331,8 +49333,8 @@
"zh-cht": "新密碼*",
"hu": "Új jelszó*",
"xloc": [
- "default.handlebars->47->523",
- "default.handlebars->47->524"
+ "default.handlebars->47->525",
+ "default.handlebars->47->526"
]
},
{
@@ -49413,8 +49415,8 @@
"zh-cht": "新密碼*",
"hu": "Új jelszó*",
"xloc": [
- "default.handlebars->47->2231",
- "default.handlebars->47->2232"
+ "default.handlebars->47->2233",
+ "default.handlebars->47->2234"
]
},
{
@@ -49443,8 +49445,8 @@
"xloc": [
"default-mobile.handlebars->11->324",
"default-mobile.handlebars->11->325",
- "default.handlebars->47->2039",
- "default.handlebars->47->2040"
+ "default.handlebars->47->2041",
+ "default.handlebars->47->2042"
]
},
{
@@ -49506,9 +49508,9 @@
"default-mobile.handlebars->11->823",
"default-mobile.handlebars->11->826",
"default-mobile.handlebars->11->829",
- "default.handlebars->47->1662",
- "default.handlebars->47->1665",
- "default.handlebars->47->1668"
+ "default.handlebars->47->1664",
+ "default.handlebars->47->1667",
+ "default.handlebars->47->1670"
]
},
{
@@ -49535,8 +49537,8 @@
"zh-cht": "沒有AMT",
"hu": "Nincs AMT",
"xloc": [
- "default.handlebars->47->1114",
- "default.handlebars->47->1139"
+ "default.handlebars->47->1116",
+ "default.handlebars->47->1141"
]
},
{
@@ -49615,14 +49617,14 @@
"zh-cht": "無代理控制台",
"hu": "Nincs Agent konzol",
"xloc": [
- "default.handlebars->47->3000"
+ "default.handlebars->47->3002"
]
},
{
"en": "No Consent",
"nl": "Geen toestemming",
"xloc": [
- "default.handlebars->47->1228"
+ "default.handlebars->47->1230"
]
},
{
@@ -49649,7 +49651,7 @@
"zh-cht": "沒有控制台",
"hu": "Nincs Agent konzol",
"xloc": [
- "default.handlebars->47->2899"
+ "default.handlebars->47->2901"
]
},
{
@@ -49678,8 +49680,8 @@
"xloc": [
"default-mobile.handlebars->11->508",
"default-mobile.handlebars->11->509",
- "default.handlebars->47->907",
- "default.handlebars->47->908"
+ "default.handlebars->47->909",
+ "default.handlebars->47->910"
]
},
{
@@ -49706,10 +49708,10 @@
"zh-cht": "沒有桌面",
"hu": "Nincs Asztal",
"xloc": [
- "default.handlebars->47->1116",
- "default.handlebars->47->1141",
- "default.handlebars->47->2344",
- "default.handlebars->47->2895"
+ "default.handlebars->47->1118",
+ "default.handlebars->47->1143",
+ "default.handlebars->47->2346",
+ "default.handlebars->47->2897"
]
},
{
@@ -49736,8 +49738,8 @@
"zh-cht": "不能訪問桌面",
"hu": "Nincs Asztal hozzáférés",
"xloc": [
- "default.handlebars->47->2303",
- "default.handlebars->47->2996"
+ "default.handlebars->47->2305",
+ "default.handlebars->47->2998"
]
},
{
@@ -49788,9 +49790,9 @@
"zh-cht": "找不到事件",
"hu": "Nincsenek eseményeket",
"xloc": [
- "default.handlebars->47->1572",
- "default.handlebars->47->2640",
- "default.handlebars->47->3062"
+ "default.handlebars->47->1574",
+ "default.handlebars->47->2642",
+ "default.handlebars->47->3064"
]
},
{
@@ -49818,8 +49820,8 @@
"hu": "Nincs Fájl hozzáférés",
"xloc": [
"default-mobile.handlebars->11->937",
- "default.handlebars->47->2305",
- "default.handlebars->47->2999"
+ "default.handlebars->47->2307",
+ "default.handlebars->47->3001"
]
},
{
@@ -49847,10 +49849,10 @@
"hu": "Nincs Fájlelérés",
"xloc": [
"default-mobile.handlebars->11->960",
- "default.handlebars->47->1113",
- "default.handlebars->47->1138",
- "default.handlebars->47->2346",
- "default.handlebars->47->2898"
+ "default.handlebars->47->1115",
+ "default.handlebars->47->1140",
+ "default.handlebars->47->2348",
+ "default.handlebars->47->2900"
]
},
{
@@ -49877,8 +49879,8 @@
"zh-cht": "無輸入",
"hu": "Nincs bevitel",
"xloc": [
- "default.handlebars->47->1111",
- "default.handlebars->47->1136"
+ "default.handlebars->47->1113",
+ "default.handlebars->47->1138"
]
},
{
@@ -49907,8 +49909,8 @@
"xloc": [
"default-mobile.handlebars->11->938",
"default-mobile.handlebars->11->961",
- "default.handlebars->47->2306",
- "default.handlebars->47->2347"
+ "default.handlebars->47->2308",
+ "default.handlebars->47->2349"
]
},
{
@@ -49935,7 +49937,7 @@
"zh-cht": "此設備組中沒有英特爾® AMT 設備",
"hu": "Ebben az eszközcsoportban nincsenek Intel® AMT eszközök",
"xloc": [
- "default.handlebars->47->362"
+ "default.handlebars->47->363"
]
},
{
@@ -50040,7 +50042,7 @@
"zh-cht": "沒有成員",
"hu": "Nincsenek tagok",
"xloc": [
- "default.handlebars->47->2836"
+ "default.handlebars->47->2838"
]
},
{
@@ -50067,7 +50069,7 @@
"zh-cht": "沒有新的裝置群",
"hu": "Új eszköz csoportok hozzáadásának tiltása",
"xloc": [
- "default.handlebars->47->2776"
+ "default.handlebars->47->2778"
]
},
{
@@ -50094,7 +50096,7 @@
"zh-cht": "沒有新設備",
"hu": "Új eszközök hozzáadásának tiltása",
"xloc": [
- "default.handlebars->47->2777"
+ "default.handlebars->47->2779"
]
},
{
@@ -50121,8 +50123,8 @@
"zh-cht": "沒有政策",
"hu": "Nincs házirend",
"xloc": [
- "default.handlebars->47->2158",
- "default.handlebars->47->2222"
+ "default.handlebars->47->2160",
+ "default.handlebars->47->2224"
]
},
{
@@ -50172,8 +50174,8 @@
"zh-cht": "沒有遙控器",
"hu": "Nincs távoli parancs.",
"xloc": [
- "default.handlebars->47->2901",
- "default.handlebars->47->3002"
+ "default.handlebars->47->2903",
+ "default.handlebars->47->3004"
]
},
{
@@ -50200,8 +50202,8 @@
"zh-cht": "沒有遙控器",
"hu": "Nincs távvezérlés",
"xloc": [
- "default.handlebars->47->2894",
- "default.handlebars->47->2995"
+ "default.handlebars->47->2896",
+ "default.handlebars->47->2997"
]
},
{
@@ -50228,8 +50230,8 @@
"zh-cht": "無重置/關閉",
"hu": "Nincs Újraindítás / Kikapcsolás",
"xloc": [
- "default.handlebars->47->2903",
- "default.handlebars->47->3004"
+ "default.handlebars->47->2905",
+ "default.handlebars->47->3006"
]
},
{
@@ -50259,10 +50261,10 @@
"default-mobile.handlebars->11->344",
"default-mobile.handlebars->11->912",
"default-mobile.handlebars->11->968",
- "default.handlebars->47->1131",
- "default.handlebars->47->1156",
- "default.handlebars->47->2076",
- "default.handlebars->47->2357"
+ "default.handlebars->47->1133",
+ "default.handlebars->47->1158",
+ "default.handlebars->47->2078",
+ "default.handlebars->47->2359"
]
},
{
@@ -50314,8 +50316,8 @@
"hu": "Nincs TLS security",
"xloc": [
"default-mobile.handlebars->11->599",
- "default.handlebars->47->1281",
- "default.handlebars->47->507"
+ "default.handlebars->47->1283",
+ "default.handlebars->47->509"
]
},
{
@@ -50343,10 +50345,10 @@
"hu": "Nincs terminál",
"xloc": [
"default-mobile.handlebars->11->959",
- "default.handlebars->47->1112",
- "default.handlebars->47->1137",
- "default.handlebars->47->2345",
- "default.handlebars->47->2897"
+ "default.handlebars->47->1114",
+ "default.handlebars->47->1139",
+ "default.handlebars->47->2347",
+ "default.handlebars->47->2899"
]
},
{
@@ -50374,8 +50376,8 @@
"hu": "Nincs Terminál hozzáférés",
"xloc": [
"default-mobile.handlebars->11->936",
- "default.handlebars->47->2304",
- "default.handlebars->47->2998"
+ "default.handlebars->47->2306",
+ "default.handlebars->47->3000"
]
},
{
@@ -50402,7 +50404,7 @@
"zh-cht": "沒有工具(MeshCmd /路由器)",
"hu": "MeshCmd/Router tiltása",
"xloc": [
- "default.handlebars->47->2778"
+ "default.handlebars->47->2780"
]
},
{
@@ -50429,8 +50431,8 @@
"zh-cht": "無卸載",
"hu": "Nincs Eltávolítás",
"xloc": [
- "default.handlebars->47->2900",
- "default.handlebars->47->3001"
+ "default.handlebars->47->2902",
+ "default.handlebars->47->3003"
]
},
{
@@ -50457,8 +50459,8 @@
"zh-cht": "沒有喚醒",
"hu": "Nincs Ébresztés",
"xloc": [
- "default.handlebars->47->2902",
- "default.handlebars->47->3003"
+ "default.handlebars->47->2904",
+ "default.handlebars->47->3005"
]
},
{
@@ -50486,7 +50488,7 @@
"hu": "Jelenleg nem érhetők el műveletek ehhez az eszközhöz.",
"xloc": [
"default-mobile.handlebars->11->581",
- "default.handlebars->47->1253"
+ "default.handlebars->47->1255"
]
},
{
@@ -50538,8 +50540,8 @@
"hu": "No agent devices relayed thru agent",
"xloc": [
"default-mobile.handlebars->11->895",
- "default.handlebars->47->2053",
- "default.handlebars->47->2116"
+ "default.handlebars->47->2055",
+ "default.handlebars->47->2118"
]
},
{
@@ -50566,8 +50568,8 @@
"zh-cht": "沒有自動更新",
"hu": "Nincs automatikus frissítés",
"xloc": [
- "default.handlebars->47->2407",
- "default.handlebars->47->2421"
+ "default.handlebars->47->2409",
+ "default.handlebars->47->2423"
]
},
{
@@ -50594,8 +50596,8 @@
"zh-cht": "沒有共同的裝置群",
"hu": "Nincsenek hozzárendelt eszközcsoportok",
"xloc": [
- "default.handlebars->47->2842",
- "default.handlebars->47->3030"
+ "default.handlebars->47->2844",
+ "default.handlebars->47->3032"
]
},
{
@@ -50679,7 +50681,7 @@
"zh-cht": "沒有一個裝置被加入任何一群,請單擊一個裝置的“群”以新增到一個群中。",
"hu": "Egyetlen csoport sem tartalmaz eszközt. Kattintson az eszköz \\\"Csoportok\\\" elemére a csoporthoz való hozzáadáshoz.",
"xloc": [
- "default.handlebars->47->359"
+ "default.handlebars->47->360"
]
},
{
@@ -50730,7 +50732,7 @@
"zh-cht": "找不到裝置。",
"hu": "Nem találhatóak eszközök.",
"xloc": [
- "default.handlebars->47->860"
+ "default.handlebars->47->862"
]
},
{
@@ -50757,8 +50759,8 @@
"zh-cht": "沒有共同的裝置",
"hu": "Nincsenek hozzárendelt eszközök",
"xloc": [
- "default.handlebars->47->2848",
- "default.handlebars->47->3042"
+ "default.handlebars->47->2850",
+ "default.handlebars->47->3044"
]
},
{
@@ -50785,8 +50787,8 @@
"zh-cht": "此設備組中沒有設備",
"hu": "Ebben az eszközcsoportban nincsenek eszközök",
"xloc": [
- "default.handlebars->47->364",
- "default.handlebars->47->368"
+ "default.handlebars->47->365",
+ "default.handlebars->47->369"
]
},
{
@@ -50813,7 +50815,7 @@
"zh-cht": "該裝置群中沒有裝置。",
"hu": "Ebben az eszközcsoportban nincsenek eszközök.",
"xloc": [
- "default.handlebars->47->2425"
+ "default.handlebars->47->2427"
]
},
{
@@ -50869,7 +50871,7 @@
"xloc": [
"default-mobile.handlebars->11->395",
"default-mobile.handlebars->11->399",
- "default.handlebars->47->360"
+ "default.handlebars->47->361"
]
},
{
@@ -50896,7 +50898,7 @@
"zh-cht": "找不到帶有標籤的裝置。",
"hu": "Nem található címkékkel rendelkező eszköz.",
"xloc": [
- "default.handlebars->47->383"
+ "default.handlebars->47->385"
]
},
{
@@ -50923,7 +50925,7 @@
"zh-cht": "找不到文件",
"hu": "Nem találhatóak fájlok",
"xloc": [
- "default.handlebars->47->1505",
+ "default.handlebars->47->1507",
"sharing.handlebars->11->45"
]
},
@@ -50951,7 +50953,7 @@
"zh-cht": "找不到群組。",
"hu": "Nincsenek csoportok.",
"xloc": [
- "default.handlebars->47->2781"
+ "default.handlebars->47->2783"
]
},
{
@@ -50979,7 +50981,7 @@
"hu": "Nincs információ erről az eszközről.",
"xloc": [
"default-mobile.handlebars->11->867",
- "default.handlebars->47->1706"
+ "default.handlebars->47->1708"
]
},
{
@@ -51034,7 +51036,7 @@
"hu": "Nincsenek billentyű parancsok definiálva",
"xloc": [
"default-mobile.handlebars->11->651",
- "default.handlebars->47->1416"
+ "default.handlebars->47->1418"
]
},
{
@@ -51061,7 +51063,7 @@
"zh-cht": "未定義鍵盤字符串",
"hu": "Nincsenek billentyű karakterláncok definiálva",
"xloc": [
- "default.handlebars->47->1421"
+ "default.handlebars->47->1423"
]
},
{
@@ -51116,7 +51118,7 @@
"zh-cht": "此設備組中沒有本地設備",
"hu": "Nincsenek helyi eszközök ebben az eszközcsoportban",
"xloc": [
- "default.handlebars->47->366"
+ "default.handlebars->47->367"
]
},
{
@@ -51143,7 +51145,7 @@
"zh-cht": "找不到位置。",
"hu": "Nem található hely.",
"xloc": [
- "default.handlebars->47->862"
+ "default.handlebars->47->864"
]
},
{
@@ -51170,7 +51172,7 @@
"zh-cht": "不再是“{0}”的中繼。",
"hu": "Már nem relay a \\\"{0}\\\" számára.",
"xloc": [
- "default.handlebars->47->2623"
+ "default.handlebars->47->2625"
]
},
{
@@ -51224,7 +51226,7 @@
"zh-cht": "沒有其他相同類型的裝置群。",
"hu": "Nincs másik hasonló típusú eszközcsoport.",
"xloc": [
- "default.handlebars->47->1298"
+ "default.handlebars->47->1300"
]
},
{
@@ -51252,7 +51254,7 @@
"hu": "Ennek a felhasználónak nincs telefonszáma",
"xloc": [
"default-mobile.handlebars->11->1011",
- "default.handlebars->47->3236"
+ "default.handlebars->47->3238"
]
},
{
@@ -51306,7 +51308,7 @@
"zh-cht": "沒有錄音。",
"hu": "Nincsenek felvételek.",
"xloc": [
- "default.handlebars->47->3067"
+ "default.handlebars->47->3069"
]
},
{
@@ -51334,7 +51336,7 @@
"hu": "Nem állnak rendelkezésre relay eszközök.",
"xloc": [
"default-mobile.handlebars->11->918",
- "default.handlebars->47->2254"
+ "default.handlebars->47->2256"
]
},
{
@@ -51385,7 +51387,7 @@
"zh-cht": "沒有伺服器權限",
"hu": "Nincsenek kiszolgáló jogosultságok",
"xloc": [
- "default.handlebars->47->2870"
+ "default.handlebars->47->2872"
]
},
{
@@ -51436,7 +51438,7 @@
"zh-cht": "沒有用戶群成員身份",
"hu": "Nincs felhasználói csoport tagság",
"xloc": [
- "default.handlebars->47->3036"
+ "default.handlebars->47->3038"
]
},
{
@@ -51464,7 +51466,7 @@
"hu": "Nincs felhasználói kezelői jog",
"xloc": [
"default-mobile.handlebars->11->1009",
- "default.handlebars->47->3234"
+ "default.handlebars->47->3236"
]
},
{
@@ -51491,7 +51493,7 @@
"zh-cht": "未找到相應的用戶。",
"hu": "Nem találhatóak felhasználók.",
"xloc": [
- "default.handlebars->47->2672"
+ "default.handlebars->47->2674"
]
},
{
@@ -51518,7 +51520,7 @@
"zh-cht": "沒有擁有特殊裝置權限的用戶",
"hu": "Nincsenek speciális eszközjogosultsággal rendelkező felhasználók",
"xloc": [
- "default.handlebars->47->1070"
+ "default.handlebars->47->1072"
]
},
{
@@ -51637,41 +51639,41 @@
"default-mobile.handlebars->11->641",
"default-mobile.handlebars->11->689",
"default-mobile.handlebars->11->900",
- "default.handlebars->47->1405",
- "default.handlebars->47->2110",
- "default.handlebars->47->2121",
- "default.handlebars->47->2135",
- "default.handlebars->47->2147",
- "default.handlebars->47->2154",
+ "default.handlebars->47->1407",
+ "default.handlebars->47->2112",
+ "default.handlebars->47->2123",
+ "default.handlebars->47->2137",
+ "default.handlebars->47->2149",
"default.handlebars->47->2156",
- "default.handlebars->47->2210",
- "default.handlebars->47->2410",
- "default.handlebars->47->2435",
- "default.handlebars->47->2440",
- "default.handlebars->47->2648",
+ "default.handlebars->47->2158",
+ "default.handlebars->47->2212",
+ "default.handlebars->47->2412",
+ "default.handlebars->47->2437",
+ "default.handlebars->47->2442",
+ "default.handlebars->47->2650",
"default.handlebars->47->272",
- "default.handlebars->47->2802",
"default.handlebars->47->2804",
- "default.handlebars->47->2813",
- "default.handlebars->47->2825",
- "default.handlebars->47->2889",
- "default.handlebars->47->2892",
- "default.handlebars->47->2904",
- "default.handlebars->47->2914",
- "default.handlebars->47->2918",
- "default.handlebars->47->2930",
- "default.handlebars->47->2966",
+ "default.handlebars->47->2806",
+ "default.handlebars->47->2815",
+ "default.handlebars->47->2827",
+ "default.handlebars->47->2891",
+ "default.handlebars->47->2894",
+ "default.handlebars->47->2906",
+ "default.handlebars->47->2916",
+ "default.handlebars->47->2920",
+ "default.handlebars->47->2932",
+ "default.handlebars->47->2968",
"default.handlebars->47->300",
- "default.handlebars->47->3161",
- "default.handlebars->47->396",
- "default.handlebars->47->397",
+ "default.handlebars->47->3163",
+ "default.handlebars->47->398",
+ "default.handlebars->47->399",
"default.handlebars->47->85",
- "default.handlebars->47->869",
- "default.handlebars->47->880",
- "default.handlebars->47->881",
- "default.handlebars->47->960",
- "default.handlebars->47->967",
- "default.handlebars->47->980",
+ "default.handlebars->47->871",
+ "default.handlebars->47->882",
+ "default.handlebars->47->883",
+ "default.handlebars->47->962",
+ "default.handlebars->47->969",
+ "default.handlebars->47->982",
"default.handlebars->container->column_l->p41->3->3->p41traceStatus"
]
},
@@ -51751,7 +51753,7 @@
"hu": "norvég",
"xloc": [
"default-mobile.handlebars->11->225",
- "default.handlebars->47->1916",
+ "default.handlebars->47->1918",
"login2.handlebars->7->122"
]
},
@@ -51780,7 +51782,7 @@
"hu": "norvég (Bokmal)",
"xloc": [
"default-mobile.handlebars->11->226",
- "default.handlebars->47->1917",
+ "default.handlebars->47->1919",
"login2.handlebars->7->123"
]
},
@@ -51809,7 +51811,7 @@
"hu": "norvég (Nynorsk)",
"xloc": [
"default-mobile.handlebars->11->227",
- "default.handlebars->47->1918",
+ "default.handlebars->47->1920",
"login2.handlebars->7->124"
]
},
@@ -51837,7 +51839,7 @@
"zh-cht": "未激活",
"hu": "Nincs aktiválva",
"xloc": [
- "default.handlebars->47->1629"
+ "default.handlebars->47->1631"
]
},
{
@@ -51866,7 +51868,7 @@
"xloc": [
"default-mobile.handlebars->11->498",
"default-mobile.handlebars->11->791",
- "default.handlebars->47->895"
+ "default.handlebars->47->897"
]
},
{
@@ -51895,7 +51897,7 @@
"xloc": [
"default-mobile.handlebars->11->497",
"default-mobile.handlebars->11->790",
- "default.handlebars->47->894"
+ "default.handlebars->47->896"
]
},
{
@@ -51922,8 +51924,8 @@
"zh-cht": "未連接",
"hu": "Nincs csatlakoztatva",
"xloc": [
- "default.handlebars->47->2401",
- "default.handlebars->47->2414"
+ "default.handlebars->47->2403",
+ "default.handlebars->47->2416"
]
},
{
@@ -51951,7 +51953,7 @@
"hu": "Nem ismert",
"xloc": [
"default-mobile.handlebars->11->801",
- "default.handlebars->47->1640"
+ "default.handlebars->47->1642"
]
},
{
@@ -52005,7 +52007,7 @@
"zh-cht": "不在伺服器上",
"hu": "Nincs a kiszolgálón",
"xloc": [
- "default.handlebars->47->3089"
+ "default.handlebars->47->3091"
]
},
{
@@ -52032,8 +52034,8 @@
"zh-cht": "沒有設置",
"hu": "Nincs beállítva",
"xloc": [
- "default.handlebars->47->2876",
- "default.handlebars->47->2877"
+ "default.handlebars->47->2878",
+ "default.handlebars->47->2879"
]
},
{
@@ -52060,7 +52062,7 @@
"zh-cht": "未經審核的",
"hu": "Nincs megerősítve",
"xloc": [
- "default.handlebars->47->3010"
+ "default.handlebars->47->3012"
]
},
{
@@ -52090,12 +52092,12 @@
"default-mobile.handlebars->11->539",
"default-mobile.handlebars->11->590",
"default-mobile.handlebars->11->906",
- "default.handlebars->47->1122",
- "default.handlebars->47->1147",
- "default.handlebars->47->1160",
- "default.handlebars->47->2166",
- "default.handlebars->47->2941",
- "default.handlebars->47->997",
+ "default.handlebars->47->1124",
+ "default.handlebars->47->1149",
+ "default.handlebars->47->1162",
+ "default.handlebars->47->2168",
+ "default.handlebars->47->2943",
+ "default.handlebars->47->999",
"default.handlebars->container->column_l->p10->p10info->1->1->0->notesPanel->1->1->1->0"
]
},
@@ -52150,9 +52152,9 @@
"zh-cht": "通知設定",
"hu": "Értesítési beállítások",
"xloc": [
- "default.handlebars->47->1109",
- "default.handlebars->47->2026",
- "default.handlebars->47->2400",
+ "default.handlebars->47->1111",
+ "default.handlebars->47->2028",
+ "default.handlebars->47->2402",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->12"
]
},
@@ -52228,7 +52230,7 @@
"zh-cht": "通知音效",
"hu": "Értesítési hangjelzés",
"xloc": [
- "default.handlebars->47->2021"
+ "default.handlebars->47->2023"
]
},
{
@@ -52255,8 +52257,8 @@
"zh-cht": "通知",
"hu": "Értesítések",
"xloc": [
- "default.handlebars->47->2155",
- "default.handlebars->47->968"
+ "default.handlebars->47->2157",
+ "default.handlebars->47->970"
]
},
{
@@ -52283,7 +52285,7 @@
"zh-cht": "通知",
"hu": "Értesítés küldése",
"xloc": [
- "default.handlebars->47->2949",
+ "default.handlebars->47->2951",
"default.handlebars->47->297"
]
},
@@ -52311,7 +52313,7 @@
"zh-cht": "只通知",
"hu": "Csak értesítés",
"xloc": [
- "default.handlebars->47->1226"
+ "default.handlebars->47->1228"
]
},
{
@@ -52338,9 +52340,9 @@
"zh-cht": "通知使用者",
"hu": "Felhasználó értesítése",
"xloc": [
- "default.handlebars->47->2265",
- "default.handlebars->47->2269",
- "default.handlebars->47->2272"
+ "default.handlebars->47->2267",
+ "default.handlebars->47->2271",
+ "default.handlebars->47->2274"
]
},
{
@@ -52367,7 +52369,7 @@
"zh-cht": "通知{0}",
"hu": "Értesítés küldése {0}",
"xloc": [
- "default.handlebars->47->2714"
+ "default.handlebars->47->2716"
]
},
{
@@ -52394,7 +52396,7 @@
"zh-cht": "無效的",
"hu": "Null",
"xloc": [
- "default.handlebars->47->3307"
+ "default.handlebars->47->3309"
]
},
{
@@ -52452,13 +52454,13 @@
"default-mobile.handlebars->11->755",
"default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->5",
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
- "default.handlebars->47->2098",
- "default.handlebars->47->2405",
- "default.handlebars->47->2419",
- "default.handlebars->47->923",
- "default.handlebars->47->927",
- "default.handlebars->47->931",
- "default.handlebars->47->946",
+ "default.handlebars->47->2100",
+ "default.handlebars->47->2407",
+ "default.handlebars->47->2421",
+ "default.handlebars->47->925",
+ "default.handlebars->47->929",
+ "default.handlebars->47->933",
+ "default.handlebars->47->948",
"default.handlebars->container->dialog->idx_dlgButtonBar",
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
"login.handlebars->dialog->idx_dlgButtonBar",
@@ -52493,7 +52495,7 @@
"zh-cht": "操作系統",
"hu": "Operációs rendszer",
"xloc": [
- "default.handlebars->47->371"
+ "default.handlebars->47->372"
]
},
{
@@ -52521,7 +52523,7 @@
"hu": "Os név",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1->5",
- "default.handlebars->47->877",
+ "default.handlebars->47->879",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->17->1"
]
},
@@ -52578,7 +52580,7 @@
"hu": "okcitán",
"xloc": [
"default-mobile.handlebars->11->228",
- "default.handlebars->47->1919",
+ "default.handlebars->47->1921",
"login2.handlebars->7->125"
]
},
@@ -52607,7 +52609,7 @@
"hu": "Történt {0}",
"xloc": [
"default-mobile.handlebars->11->977",
- "default.handlebars->47->3202"
+ "default.handlebars->47->3204"
]
},
{
@@ -52638,9 +52640,9 @@
"default-mobile.handlebars->11->452",
"default-mobile.handlebars->11->747",
"default-mobile.handlebars->11->751",
- "default.handlebars->47->692",
- "default.handlebars->47->938",
- "default.handlebars->47->942"
+ "default.handlebars->47->694",
+ "default.handlebars->47->940",
+ "default.handlebars->47->944"
]
},
{
@@ -52694,7 +52696,7 @@
"zh-cht": "離線用戶",
"hu": "Offline felhasználók",
"xloc": [
- "default.handlebars->47->2669"
+ "default.handlebars->47->2671"
]
},
{
@@ -52721,7 +52723,7 @@
"zh-cht": "舊密碼",
"hu": "Jelenlegi jelszó",
"xloc": [
- "default.handlebars->47->522"
+ "default.handlebars->47->524"
]
},
{
@@ -52749,7 +52751,7 @@
"hu": "Jelenlegi jelszó:",
"xloc": [
"default-mobile.handlebars->11->323",
- "default.handlebars->47->2038"
+ "default.handlebars->47->2040"
]
},
{
@@ -52759,8 +52761,8 @@
"xloc": [
"default-mobile.handlebars->11->745",
"default-mobile.handlebars->11->749",
- "default.handlebars->47->936",
- "default.handlebars->47->940"
+ "default.handlebars->47->938",
+ "default.handlebars->47->942"
]
},
{
@@ -52787,7 +52789,7 @@
"zh-cht": "一天",
"hu": "Egy Nap",
"xloc": [
- "default.handlebars->47->2645"
+ "default.handlebars->47->2647"
]
},
{
@@ -52842,7 +52844,7 @@
"zh-cht": "一次性密碼",
"hu": "OTP Egyszer használatos jelszó",
"xloc": [
- "default.handlebars->47->3168"
+ "default.handlebars->47->3170"
]
},
{
@@ -52898,7 +52900,7 @@
"zh-cht": "在線用戶",
"hu": "Online felhasználók",
"xloc": [
- "default.handlebars->47->2668"
+ "default.handlebars->47->2670"
]
},
{
@@ -52925,7 +52927,7 @@
"zh-cht": "僅顯示前 100 個用戶",
"hu": "Csak az első 100 felhasználót jelenítse meg",
"xloc": [
- "default.handlebars->47->2715"
+ "default.handlebars->47->2717"
]
},
{
@@ -52953,9 +52955,9 @@
"hu": "Csak 200k-nál kisebb fájlok szerkeszthetők.",
"xloc": [
"default-mobile.handlebars->11->700",
- "default.handlebars->47->1541",
- "default.handlebars->47->2462",
- "default.handlebars->47->840",
+ "default.handlebars->47->1543",
+ "default.handlebars->47->2464",
+ "default.handlebars->47->842",
"sharing.handlebars->11->67"
]
},
@@ -53023,7 +53025,7 @@
{
"en": "Open File/Folder",
"xloc": [
- "default.handlebars->47->1521"
+ "default.handlebars->47->1523"
]
},
{
@@ -53051,7 +53053,7 @@
"hu": "Oldal megnyitása az eszközön",
"xloc": [
"default-mobile.handlebars->11->593",
- "default.handlebars->47->1161"
+ "default.handlebars->47->1163"
]
},
{
@@ -53154,7 +53156,7 @@
"zh-cht": "打開XTerm終端",
"hu": "XTerm terminál megnyitása",
"xloc": [
- "default.handlebars->47->1025"
+ "default.handlebars->47->1027"
]
},
{
@@ -53208,7 +53210,7 @@
"zh-cht": "打開此電腦的聊天窗口",
"hu": "Csevegőablak (alapértelmezett böngészőben) megnyitása ezen a számítógépen",
"xloc": [
- "default.handlebars->47->1006",
+ "default.handlebars->47->1008",
"default.handlebars->container->column_l->p11->deskarea0->deskarea4->1"
]
},
@@ -53340,7 +53342,7 @@
"zh-cht": "開場:{0}",
"hu": "Nyitás: {0}",
"xloc": [
- "default.handlebars->47->2491"
+ "default.handlebars->47->2493"
]
},
{
@@ -53368,13 +53370,13 @@
"hu": "Operációs rendszer ",
"xloc": [
"default-mobile.handlebars->11->757",
- "default.handlebars->47->1322",
- "default.handlebars->47->1586",
- "default.handlebars->47->3134",
+ "default.handlebars->47->1324",
+ "default.handlebars->47->1588",
+ "default.handlebars->47->3136",
"default.handlebars->47->340",
- "default.handlebars->47->545",
- "default.handlebars->47->595",
- "default.handlebars->47->921"
+ "default.handlebars->47->547",
+ "default.handlebars->47->597",
+ "default.handlebars->47->923"
]
},
{
@@ -53402,11 +53404,11 @@
"hu": "Művelet",
"xloc": [
"default-mobile.handlebars->11->580",
- "default.handlebars->47->1252",
- "default.handlebars->47->2697",
- "default.handlebars->47->2789",
- "default.handlebars->47->735",
- "default.handlebars->47->747"
+ "default.handlebars->47->1254",
+ "default.handlebars->47->2699",
+ "default.handlebars->47->2791",
+ "default.handlebars->47->737",
+ "default.handlebars->47->749"
]
},
{
@@ -53485,7 +53487,7 @@
"hu": " orija",
"xloc": [
"default-mobile.handlebars->11->229",
- "default.handlebars->47->1920",
+ "default.handlebars->47->1922",
"login2.handlebars->7->126"
]
},
@@ -53514,7 +53516,7 @@
"hu": "oromó",
"xloc": [
"default-mobile.handlebars->11->230",
- "default.handlebars->47->1921",
+ "default.handlebars->47->1923",
"login2.handlebars->7->127"
]
},
@@ -53597,7 +53599,7 @@
"hu": "Lejárt",
"xloc": [
"default-mobile.handlebars->11->754",
- "default.handlebars->47->945"
+ "default.handlebars->47->947"
]
},
{
@@ -53723,7 +53725,7 @@
"zh-cht": "是否覆蓋文件存在?",
"hu": "Felülírja, ha létezik fájl?",
"xloc": [
- "default.handlebars->47->769"
+ "default.handlebars->47->771"
]
},
{
@@ -53774,7 +53776,7 @@
"zh-cht": "自己的過程",
"hu": "OwnProcess",
"xloc": [
- "default.handlebars->47->1442"
+ "default.handlebars->47->1444"
]
},
{
@@ -53801,7 +53803,7 @@
"zh-cht": "PID",
"hu": "PID",
"xloc": [
- "default.handlebars->47->1438",
+ "default.handlebars->47->1440",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1"
]
},
@@ -53830,7 +53832,7 @@
"hu": "PUSH",
"xloc": [
"default-mobile.handlebars->11->878",
- "default.handlebars->47->1718"
+ "default.handlebars->47->1720"
]
},
{
@@ -53858,7 +53860,7 @@
"hu": "Page Down",
"xloc": [
"default-mobile.handlebars->11->636",
- "default.handlebars->47->1400"
+ "default.handlebars->47->1402"
]
},
{
@@ -53886,7 +53888,7 @@
"hu": "Page Up",
"xloc": [
"default-mobile.handlebars->11->635",
- "default.handlebars->47->1399"
+ "default.handlebars->47->1401"
]
},
{
@@ -53943,9 +53945,9 @@
"default-mobile.handlebars->11->835",
"default-mobile.handlebars->11->841",
"default-mobile.handlebars->11->847",
- "default.handlebars->47->1674",
- "default.handlebars->47->1680",
- "default.handlebars->47->1686"
+ "default.handlebars->47->1676",
+ "default.handlebars->47->1682",
+ "default.handlebars->47->1688"
]
},
{
@@ -53972,7 +53974,7 @@
"zh-cht": "部分的",
"hu": "Egyedi",
"xloc": [
- "default.handlebars->47->2684"
+ "default.handlebars->47->2686"
]
},
{
@@ -54049,7 +54051,7 @@
"xloc": [
"default-mobile.handlebars->11->342",
"default-mobile.handlebars->11->910",
- "default.handlebars->47->2074"
+ "default.handlebars->47->2076"
]
},
{
@@ -54076,7 +54078,7 @@
"zh-cht": "部分權限",
"hu": "Részleges jogok",
"xloc": [
- "default.handlebars->47->2873"
+ "default.handlebars->47->2875"
]
},
{
@@ -54133,20 +54135,20 @@
"default-mobile.handlebars->11->597",
"default-mobile.handlebars->11->667",
"default-mobile.handlebars->11->674",
- "default.handlebars->47->1279",
- "default.handlebars->47->1371",
- "default.handlebars->47->1481",
- "default.handlebars->47->1488",
- "default.handlebars->47->2066",
- "default.handlebars->47->2228",
- "default.handlebars->47->2751",
- "default.handlebars->47->2752",
- "default.handlebars->47->2910",
+ "default.handlebars->47->1281",
+ "default.handlebars->47->1373",
+ "default.handlebars->47->1483",
+ "default.handlebars->47->1490",
+ "default.handlebars->47->2068",
+ "default.handlebars->47->2230",
+ "default.handlebars->47->2753",
+ "default.handlebars->47->2754",
"default.handlebars->47->2912",
- "default.handlebars->47->3015",
- "default.handlebars->47->3016",
+ "default.handlebars->47->2914",
+ "default.handlebars->47->3017",
+ "default.handlebars->47->3018",
"default.handlebars->47->334",
- "default.handlebars->47->505",
+ "default.handlebars->47->507",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->2->1",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->2->1",
"mstsc.handlebars->main->1->3->1->rowpassword->1->0",
@@ -54304,7 +54306,7 @@
"hu": "A jelszó megváltozott.",
"xloc": [
"default-mobile.handlebars->11->1005",
- "default.handlebars->47->3230"
+ "default.handlebars->47->3232"
]
},
{
@@ -54359,7 +54361,7 @@
"zh-cht": "密碼提示",
"hu": "Jelszó tipp",
"xloc": [
- "default.handlebars->47->3017"
+ "default.handlebars->47->3019"
]
},
{
@@ -54387,7 +54389,7 @@
"hu": "Jelszó tipp:",
"xloc": [
"default-mobile.handlebars->11->326",
- "default.handlebars->47->2041"
+ "default.handlebars->47->2043"
]
},
{
@@ -54494,8 +54496,8 @@
"account-invite.html->2->5",
"default-mobile.handlebars->11->318",
"default-mobile.handlebars->11->319",
- "default.handlebars->47->2033",
- "default.handlebars->47->2034",
+ "default.handlebars->47->2035",
+ "default.handlebars->47->2036",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1",
@@ -54540,9 +54542,9 @@
"default-mobile.handlebars->11->705",
"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->1502",
- "default.handlebars->47->1548",
- "default.handlebars->47->2464",
+ "default.handlebars->47->1504",
+ "default.handlebars->47->1550",
+ "default.handlebars->47->2466",
"default.handlebars->container->column_l->p12->termTable->1->1->4->1->3",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -54737,7 +54739,7 @@
"hu": "Agent művelet végrehajtása",
"xloc": [
"default-mobile.handlebars->11->881",
- "default.handlebars->47->1721"
+ "default.handlebars->47->1723"
]
},
{
@@ -54812,8 +54814,8 @@
"zh-cht": "執行英特爾®AMT激活和配置。",
"hu": "Végezze el az Intel® AMT aktiválását és konfigurálását.",
"xloc": [
- "default.handlebars->47->2172",
- "default.handlebars->47->482"
+ "default.handlebars->47->2174",
+ "default.handlebars->47->484"
]
},
{
@@ -54942,7 +54944,7 @@
"pl": "Wykonać wyłączenie poprzez Intel® AMT?UWAGA: Jeśli istnieje aktywna sesja AMT, polecenie wyłączenia zasilania zostanie odrzucone, musisz więc wcześniej rozłączyć sesje AMT! ",
"xloc": [
"default-mobile.handlebars->11->586",
- "default.handlebars->47->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 @@
-
+
@@ -4051,6 +4051,7 @@
x += ' = 0)?' checked':'') + '>' + "Windows AV" + ' ';
x += ' = 0)?' checked':'') + '>' + "Windows Update" + ' ';
x += ' = 0)?' checked':'') + '>' + "Windows Firewall" + ' ';
+ x += ' = 0)?' checked':'') + '>' + "Last Boot Up Time" + ' ';
x += ' = 0)?' checked':'') + '>' + "MeshCentral Router Links" + ' ';
x += ' = 0)?' checked':'') + '>' + "Logged in users" + ' ';
x += ' = 0)?' checked':'') + '>' + "Agent IP address" + ' ';
@@ -4076,6 +4077,7 @@
if (Q('d2c11').checked) { cols.push('windowsav'); }
if (Q('d2c12').checked) { cols.push('windowsupdate'); }
if (Q('d2c13').checked) { cols.push('windowsfirewall'); }
+ if (Q('d2c14').checked) { cols.push('lastbootuptime'); }
if (Q('d2c15').checked) { cols.push('amthost'); }
if (Q('d2c17').checked) { cols.push('amtstate'); }
deviceViewSettings.devsCols = cols;
@@ -4518,6 +4520,7 @@
if (deviceViewSettings.devsCols.indexOf('windowsav') >= 0) { colums += ' ' + "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 = {