diff --git a/agents/meshcore.js b/agents/meshcore.js index 6a0e45a4..7ab77489 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -891,6 +891,39 @@ function createMeshCore(agent) { for (var i in data.macs) { sendWakeOnLan(data.macs[i]); } break; } + case 'runcommands': { + if (mesh.cmdchild != null) { sendConsoleText("Run commands can't execute, already busy."); break; } + MeshServerLog("Running commands", data); + sendConsoleText("Run commands: " + data.cmds); + if (process.platform == 'win32') { + if (data.type == 1) { + // Windows command shell + mesh.cmdchild = require('child_process').execFile(process.env['windir'] + '\\system32\\cmd.exe', ['cmd']); + mesh.cmdchild.descriptorMetadata = 'UserCommandsShell'; + mesh.cmdchild.stdout.on('data', function (c) { sendConsoleText(c.toString()); }); + mesh.cmdchild.stderr.on('data', function (c) { sendConsoleText(c.toString()); }); + mesh.cmdchild.stdin.write(data.cmds + '\r\nexit\r\n'); + mesh.cmdchild.on('exit', function () { sendConsoleText("Run commands completed."); delete mesh.cmdchild; }); + } else if (data.type == 2) { + // Windows Powershell + mesh.cmdchild = require('child_process').execFile(process.env['windir'] + '\\System32\\WindowsPowerShell\\v1.0\\powershell.exe', ['powershell', '-noprofile', '-nologo', '-command', '-']); + mesh.cmdchild.descriptorMetadata = 'UserCommandsPowerShell'; + mesh.cmdchild.stdout.on('data', function (c) { sendConsoleText(c.toString()); }); + mesh.cmdchild.stderr.on('data', function (c) { sendConsoleText(c.toString()); }); + mesh.cmdchild.stdin.write(data.cmds + '\r\nexit\r\n'); + mesh.cmdchild.on('exit', function () { sendConsoleText("Run commands completed."); delete mesh.cmdchild; }); + } + } else if (data.type == 3) { + // Linux shell + mesh.cmdchild = require('child_process').execFile('/bin/sh', ['sh']); + mesh.cmdchild.descriptorMetadata = 'UserCommandsShell'; + mesh.cmdchild.stdout.on('data', function (c) { sendConsoleText(c.toString()); }); + mesh.cmdchild.stderr.on('data', function (c) { sendConsoleText(c.toString()); }); + mesh.cmdchild.stdin.write(data.cmds.split('\r').join('') + '\nexit\n'); + mesh.cmdchild.on('exit', function () { sendConsoleText("Run commands completed."); delete mesh.cmdchild; }); + } + break; + } case 'uninstallagent': // Uninstall this agent var agentName = process.platform == 'win32' ? 'Mesh Agent' : 'meshagent'; diff --git a/meshuser.js b/meshuser.js index 6f8ea933..8a900b4f 100644 --- a/meshuser.js +++ b/meshuser.js @@ -3338,18 +3338,18 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use db.Get('if' + node._id, function (err, nodeifs) { if ((nodeifs != null) && (nodeifs.length == 1)) { var macs = [], nodeif = nodeifs[0]; - for (var i in nodeif.netif) { if (nodeif.netif[i].mac) { macs.push(nodeif.netif[i].mac); } } + for (var j in nodeif.netif) { if (nodeif.netif[j].mac) { macs.push(nodeif.netif[j].mac); } } // Have the server send a wake-on-lan packet (Will not work in WAN-only) if (parent.parent.meshScanner != null) { parent.parent.meshScanner.wakeOnLan(macs); } // Get the list of mesh this user as access to var targetMeshes = []; - for (i in user.links) { targetMeshes.push(i); } // TODO: Include used security groups!! + for (j in user.links) { targetMeshes.push(j); } // TODO: Include used security groups!! // Go thru all the connected agents and send wake-on-lan on all the ones in the target mesh list - for (i in parent.wsagents) { - var agent = parent.wsagents[i]; + for (j in parent.wsagents) { + var agent = parent.wsagents[j]; if ((targetMeshes.indexOf(agent.dbMeshKey) >= 0) && (agent.authenticated == 2)) { //console.log('Asking agent ' + agent.dbNodeKey + ' to wake ' + macs.join(',')); try { agent.send(JSON.stringify({ action: 'wakeonlan', macs: macs })); } catch (ex) { } @@ -3363,6 +3363,39 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } break; } + case 'runcommands': + { + if (common.validateArray(command.nodeids, 1) == false) break; // Check nodeid's + if (typeof command.type != 'number') break; // Check command type + if (typeof command.cmds != 'string') break; // Check commands + + for (i in command.nodeids) { + // Get the node and the rights for this node + parent.GetNodeWithRights(domain, user, command.nodeids[i], function (node, rights, visible) { + // Check we have the rights to run commands on this device + if ((rights & MESHRIGHT_REMOTECONTROL) == 0) return; + + // Get the agent and run the commands + var agent = parent.wsagents[node._id]; + if ((agent != null) && (agent.authenticated == 2) && (agent.agentInfo != null)) { + // Check if this agent is correct for this command type + // command.type 1 = Windows Command, 2 = Windows PowerShell, 3 = Linux/BSD/macOS + var commandsOk = false; + if ((agent.agentInfo.agentId > 0) && (agent.agentInfo.agentId < 5)) { + // Windows Agent + if ((command.type == 1) || (command.type == 2)) { commandsOk = true; } + } else { + // Non-Windows Agent + if (command.type == 3) { commandsOk = true; } + } + if (commandsOk == true) { + try { agent.send(JSON.stringify({ action: 'runcommands', type: command.type, cmds: command.cmds })); } catch (ex) { } + } + } + }); + } + break; + } case 'uninstallagent': { if (common.validateArray(command.nodeids, 1) == false) break; // Check nodeid's diff --git a/package.json b/package.json index 4d470bcb..c36262af 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,8 @@ "sample-config-advanced.json" ], "dependencies": { + "archiver": "^4.0.1", + "archiver-zip-encrypted": "^1.0.8", "body-parser": "^1.19.0", "cbor": "^4.1.5", "compression": "^1.7.4", @@ -39,16 +41,32 @@ "express-handlebars": "^3.1.0", "express-ws": "^4.0.0", "html-minifier": "^4.0.0", + "image-size": "^0.8.3", "ipcheck": "^0.1.0", "jsdom": "^16.3.0", + "jwt-simple": "^0.5.6", "minify-js": "0.0.4", "minimist": "^1.2.0", + "mongodb": "^3.5.9", "multiparty": "^4.2.1", "nedb": "^1.8.0", "node-forge": "^0.8.4", + "node-rdpjs-2": "^0.3.5", + "node-windows": "^1.0.0-beta.1", + "otplib": "^10.2.3", + "passport": "^0.4.1", + "passport-azure-oauth2": "^0.1.0", + "passport-github2": "^0.1.12", + "passport-google-oauth20": "^2.0.0", + "passport-reddit": "^0.2.4", + "passport-twitter": "^1.0.4", + "promise": "^8.1.0", + "saslprep": "^1.0.3", + "twilio": "^3.48.0", "ws": "^6.2.1", "xmldom": "^0.1.27", - "yauzl": "^2.10.0" + "yauzl": "^2.10.0", + "yubikeyotp": "^0.2.0" }, "devDependencies": {}, "repository": { diff --git a/translate/translate.json b/translate/translate.json index e45d9018..f04a18c1 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -14,8 +14,8 @@ "ru": " + CIRA", "zh-chs": " + CIRA", "xloc": [ - "default.handlebars->27->1231", - "default.handlebars->27->1233" + "default.handlebars->27->1242", + "default.handlebars->27->1244" ] }, { @@ -174,7 +174,7 @@ "ru": " Может быть использована подсказка пароля, но не рекоммендуется.", "zh-chs": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->27->1157" + "default.handlebars->27->1168" ] }, { @@ -191,8 +191,8 @@ "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.", "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。", "xloc": [ - "default.handlebars->27->1306", - "default.handlebars->27->1619" + "default.handlebars->27->1317", + "default.handlebars->27->1630" ] }, { @@ -395,7 +395,7 @@ "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.", "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。", "xloc": [ - "default.handlebars->27->1278" + "default.handlebars->27->1289" ] }, { @@ -429,7 +429,7 @@ "zh-chs": ",", "xloc": [ "default-mobile.handlebars->9->439", - "default.handlebars->27->1372" + "default.handlebars->27->1383" ] }, { @@ -464,7 +464,7 @@ "ru": ", MQTT онлайн", "zh-chs": ",MQTT在線", "xloc": [ - "default.handlebars->27->900" + "default.handlebars->27->911" ] }, { @@ -481,7 +481,7 @@ "ru": ", Soft-KVM", "zh-chs": ",軟KVM", "xloc": [ - "default.handlebars->27->732" + "default.handlebars->27->743" ] }, { @@ -500,9 +500,9 @@ "xloc": [ "default-mobile.handlebars->9->277", "default-mobile.handlebars->9->286", - "default.handlebars->27->739", - "default.handlebars->27->770", - "default.handlebars->27->782", + "default.handlebars->27->750", + "default.handlebars->27->781", + "default.handlebars->27->793", "xterm.handlebars->9->6" ] }, @@ -583,7 +583,7 @@ "en": ", {0} watching", "nl": ", {0} kijken", "xloc": [ - "default.handlebars->27->733" + "default.handlebars->27->744" ] }, { @@ -640,9 +640,9 @@ "xloc": [ "default-mobile.handlebars->9->108", "default-mobile.handlebars->9->288", - "default.handlebars->27->1413", - "default.handlebars->27->1772", - "default.handlebars->27->784" + "default.handlebars->27->1424", + "default.handlebars->27->1783", + "default.handlebars->27->795" ] }, { @@ -691,7 +691,7 @@ "ru": "1 активная сессия", "zh-chs": "1個活動會話", "xloc": [ - "default.handlebars->27->1688" + "default.handlebars->27->1699" ] }, { @@ -710,14 +710,14 @@ "xloc": [ "default-mobile.handlebars->9->118", "default-mobile.handlebars->9->443", - "default.handlebars->27->1432" + "default.handlebars->27->1443" ] }, { "en": "1 connection", "nl": "1 verbinding", "xloc": [ - "default.handlebars->27->735" + "default.handlebars->27->746" ] }, { @@ -753,7 +753,7 @@ "ru": "1 группа", "zh-chs": "1組", "xloc": [ - "default.handlebars->27->1653" + "default.handlebars->27->1664" ] }, { @@ -825,7 +825,7 @@ "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...", "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->27->1467" + "default.handlebars->27->1478" ] }, { @@ -880,7 +880,7 @@ "default-mobile.handlebars->9->162", "default-mobile.handlebars->9->165", "default-mobile.handlebars->9->168", - "default.handlebars->27->1471", + "default.handlebars->27->1482", "default.handlebars->27->228", "default.handlebars->27->231", "default.handlebars->27->234", @@ -1159,8 +1159,8 @@ "ru": "двухфакторная аутентификация включена", "zh-chs": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->27->1484", - "default.handlebars->27->1675" + "default.handlebars->27->1495", + "default.handlebars->27->1686" ] }, { @@ -1532,7 +1532,7 @@ "ru": "7-дневная статистика работы", "zh-chs": "7天電源狀態", "xloc": [ - "default.handlebars->27->665" + "default.handlebars->27->676" ] }, { @@ -1772,7 +1772,7 @@ "zh-chs": "ACM", "xloc": [ "default-mobile.handlebars->9->224", - "default.handlebars->27->517" + "default.handlebars->27->523" ] }, { @@ -1879,7 +1879,7 @@ "ru": "Отказано в доступе", "zh-chs": "拒絕訪問", "xloc": [ - "default.handlebars->27->901" + "default.handlebars->27->912" ] }, { @@ -1914,7 +1914,7 @@ "ru": "Доступ к файлам сервера", "zh-chs": "訪問服務器文件", "xloc": [ - "default.handlebars->27->1625" + "default.handlebars->27->1636" ] }, { @@ -1989,10 +1989,10 @@ "default-mobile.handlebars->9->93", "default-mobile.handlebars->9->95", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->27->1166", - "default.handlebars->27->1168", - "default.handlebars->27->486", - "default.handlebars->27->488" + "default.handlebars->27->1177", + "default.handlebars->27->1179", + "default.handlebars->27->492", + "default.handlebars->27->494" ] }, { @@ -2038,8 +2038,8 @@ "ru": "Аккаунт заблокирован", "zh-chs": "帐户已被锁定", "xloc": [ - "default.handlebars->27->1486", - "default.handlebars->27->1622" + "default.handlebars->27->1497", + "default.handlebars->27->1633" ] }, { @@ -2127,7 +2127,7 @@ "ru": "Действиe", "zh-chs": "行動", "xloc": [ - "default.handlebars->27->906", + "default.handlebars->27->917", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -2145,8 +2145,8 @@ "ru": "Файл действий", "zh-chs": "動作文件", "xloc": [ - "default.handlebars->27->708", - "default.handlebars->27->710" + "default.handlebars->27->719", + "default.handlebars->27->721" ] }, { @@ -2166,7 +2166,7 @@ "default-mobile.handlebars->9->241", "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.handlebars->27->562", + "default.handlebars->27->568", "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" @@ -2223,9 +2223,9 @@ "default-mobile.handlebars->9->219", "default-mobile.handlebars->9->221", "default-mobile.handlebars->9->348", - "default.handlebars->27->510", - "default.handlebars->27->512", - "default.handlebars->27->864" + "default.handlebars->27->516", + "default.handlebars->27->518", + "default.handlebars->27->875" ] }, { @@ -2242,8 +2242,8 @@ "ru": "Активация", "zh-chs": "激活", "xloc": [ - "default.handlebars->27->1244", - "default.handlebars->27->1246", + "default.handlebars->27->1255", + "default.handlebars->27->1257", "default.handlebars->27->254", "default.handlebars->27->256" ] @@ -2262,7 +2262,7 @@ "ru": "Активный пользователь", "zh-chs": "活動用戶{0}", "xloc": [ - "default.handlebars->27->537" + "default.handlebars->27->543" ] }, { @@ -2279,7 +2279,7 @@ "ru": "Добавить агент", "zh-chs": "添加代理", "xloc": [ - "default.handlebars->27->1248", + "default.handlebars->27->1259", "default.handlebars->27->258" ] }, @@ -2314,8 +2314,8 @@ "ru": "Добавить устройство", "zh-chs": "添加設備", "xloc": [ - "default.handlebars->27->1599", - "default.handlebars->27->1723" + "default.handlebars->27->1610", + "default.handlebars->27->1734" ] }, { @@ -2332,7 +2332,7 @@ "ru": "Добавить событие к устройству", "zh-chs": "添加設備事件", "xloc": [ - "default.handlebars->27->646" + "default.handlebars->27->652" ] }, { @@ -2349,9 +2349,9 @@ "ru": "Добавить группу устройств", "zh-chs": "添加設備組", "xloc": [ - "default.handlebars->27->1338", - "default.handlebars->27->1593", - "default.handlebars->27->1711", + "default.handlebars->27->1349", + "default.handlebars->27->1604", + "default.handlebars->27->1722", "default.handlebars->27->216" ] }, @@ -2366,7 +2366,7 @@ "nl": "Machtigingen voor apparaatgroep toevoegen", "zh-chs": "添加设备组权限", "xloc": [ - "default.handlebars->27->1335" + "default.handlebars->27->1346" ] }, { @@ -2382,8 +2382,8 @@ "ru": "Добавить разрешения для устройства", "zh-chs": "添加设备权限", "xloc": [ - "default.handlebars->27->1340", - "default.handlebars->27->1342" + "default.handlebars->27->1351", + "default.handlebars->27->1353" ] }, { @@ -2468,7 +2468,7 @@ "ru": "Добавить участие", "zh-chs": "添加會員", "xloc": [ - "default.handlebars->27->1741" + "default.handlebars->27->1752" ] }, { @@ -2506,8 +2506,8 @@ "default.handlebars->27->151", "default.handlebars->27->154", "default.handlebars->27->155", - "default.handlebars->27->934", - "default.handlebars->27->935" + "default.handlebars->27->945", + "default.handlebars->27->946" ] }, { @@ -2525,7 +2525,7 @@ "zh-chs": "添加用戶", "xloc": [ "default-mobile.handlebars->9->388", - "default.handlebars->27->603" + "default.handlebars->27->609" ] }, { @@ -2541,7 +2541,7 @@ "ru": "Добавить разрешения для пользовательских устройств", "zh-chs": "添加用户设备权限", "xloc": [ - "default.handlebars->27->1345" + "default.handlebars->27->1356" ] }, { @@ -2558,10 +2558,10 @@ "ru": "Добавить группу пользователей", "zh-chs": "添加用戶組", "xloc": [ - "default.handlebars->27->1238", - "default.handlebars->27->1337", - "default.handlebars->27->1717", - "default.handlebars->27->604" + "default.handlebars->27->1249", + "default.handlebars->27->1348", + "default.handlebars->27->1728", + "default.handlebars->27->610" ] }, { @@ -2575,7 +2575,7 @@ "nl": "Gebruikersmachtigingen voor apparaatgroep toevoegen", "zh-chs": "添加用户组设备权限", "xloc": [ - "default.handlebars->27->1347" + "default.handlebars->27->1358" ] }, { @@ -2620,8 +2620,8 @@ "ru": "Добавить пользователей", "zh-chs": "添加用戶", "xloc": [ - "default.handlebars->27->1237", - "default.handlebars->27->1588" + "default.handlebars->27->1248", + "default.handlebars->27->1599" ] }, { @@ -2638,7 +2638,7 @@ "ru": "Добавить пользователей в группу устройств", "zh-chs": "將用戶添加到設備組", "xloc": [ - "default.handlebars->27->1334" + "default.handlebars->27->1345" ] }, { @@ -2655,7 +2655,7 @@ "ru": "Добавить пользователей в группу", "zh-chs": "將用戶添加到用戶組", "xloc": [ - "default.handlebars->27->1621" + "default.handlebars->27->1632" ] }, { @@ -2706,7 +2706,7 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.", "zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->27->1239", + "default.handlebars->27->1250", "default.handlebars->27->247" ] }, @@ -2724,7 +2724,7 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.", "zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->27->1241", + "default.handlebars->27->1252", "default.handlebars->27->249" ] }, @@ -2756,7 +2756,7 @@ "nl": "Voeg een nieuwe computer toe aan deze apparaatgroep door de mesh-agent te installeren.", "zh-chs": "通过安装网状代理,将新计算机添加到该设备组。", "xloc": [ - "default.handlebars->27->1247", + "default.handlebars->27->1258", "default.handlebars->27->257" ] }, @@ -2809,7 +2809,7 @@ "zh-chs": "管理員控制模式(ACM)", "xloc": [ "default-mobile.handlebars->9->350", - "default.handlebars->27->866" + "default.handlebars->27->877" ] }, { @@ -2827,7 +2827,7 @@ "zh-chs": "管理員憑證", "xloc": [ "default-mobile.handlebars->9->356", - "default.handlebars->27->872" + "default.handlebars->27->883" ] }, { @@ -2862,7 +2862,7 @@ "ru": "Области администратора", "zh-chs": "管理領域", "xloc": [ - "default.handlebars->27->1657" + "default.handlebars->27->1668" ] }, { @@ -2897,7 +2897,7 @@ "ru": "Административные области", "zh-chs": "行政領域", "xloc": [ - "default.handlebars->27->1539" + "default.handlebars->27->1550" ] }, { @@ -2914,7 +2914,7 @@ "ru": "Администратор", "zh-chs": "管理員", "xloc": [ - "default.handlebars->27->1478" + "default.handlebars->27->1489" ] }, { @@ -2931,7 +2931,7 @@ "ru": "Африканский", "zh-chs": "南非語", "xloc": [ - "default.handlebars->27->937" + "default.handlebars->27->948" ] }, { @@ -2951,8 +2951,8 @@ "default-mobile.handlebars->9->192", "default-mobile.handlebars->9->216", "default-mobile.handlebars->9->232", - "default.handlebars->27->1399", - "default.handlebars->27->1407", + "default.handlebars->27->1410", + "default.handlebars->27->1418", "default.handlebars->27->195", "default.handlebars->27->403", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" @@ -2972,8 +2972,8 @@ "ru": "Агент + Intel AMT", "zh-chs": "代理+英特爾AMT", "xloc": [ - "default.handlebars->27->1401", - "default.handlebars->27->1409" + "default.handlebars->27->1412", + "default.handlebars->27->1420" ] }, { @@ -3008,7 +3008,7 @@ "zh-chs": "代理控制台", "xloc": [ "default-mobile.handlebars->9->423", - "default.handlebars->27->1355" + "default.handlebars->27->1366" ] }, { @@ -3025,7 +3025,7 @@ "ru": "Счетчик ошибок агента", "zh-chs": "座席錯誤計數器", "xloc": [ - "default.handlebars->27->1782" + "default.handlebars->27->1793" ] }, { @@ -3094,7 +3094,7 @@ "ru": "Сессии агентов", "zh-chs": "座席會議", "xloc": [ - "default.handlebars->27->1798" + "default.handlebars->27->1809" ] }, { @@ -3112,7 +3112,7 @@ "zh-chs": "代理商標籤", "xloc": [ "default-mobile.handlebars->9->231", - "default.handlebars->27->530" + "default.handlebars->27->536" ] }, { @@ -3129,7 +3129,7 @@ "ru": "Типы агента", "zh-chs": "代理類型", "xloc": [ - "default.handlebars->27->1405", + "default.handlebars->27->1416", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -3148,8 +3148,8 @@ "zh-chs": "代理已連接", "xloc": [ "default.handlebars->27->160", - "default.handlebars->27->594", - "default.handlebars->27->595" + "default.handlebars->27->600", + "default.handlebars->27->601" ] }, { @@ -3183,7 +3183,7 @@ "ru": "Агент оффлайн", "zh-chs": "代理離線", "xloc": [ - "default.handlebars->27->899" + "default.handlebars->27->910" ] }, { @@ -3200,7 +3200,7 @@ "ru": "Агент онлайн", "zh-chs": "代理在線", "xloc": [ - "default.handlebars->27->898" + "default.handlebars->27->909" ] }, { @@ -3217,7 +3217,7 @@ "ru": "Агенты", "zh-chs": "代理商", "xloc": [ - "default.handlebars->27->1811" + "default.handlebars->27->1822" ] }, { @@ -3234,7 +3234,7 @@ "ru": "Албанский", "zh-chs": "阿爾巴尼亞語", "xloc": [ - "default.handlebars->27->938" + "default.handlebars->27->949" ] }, { @@ -3284,9 +3284,9 @@ "ru": "Фокусирование всех", "zh-chs": "全部聚焦", "xloc": [ - "default.handlebars->27->740", - "default.handlebars->27->742", - "default.handlebars->27->743" + "default.handlebars->27->751", + "default.handlebars->27->753", + "default.handlebars->27->754" ] }, { @@ -3303,8 +3303,8 @@ "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.", "zh-chs": "允許用戶管理此設備組和該組中的設備。", "xloc": [ - "default.handlebars->27->1304", - "default.handlebars->27->1618" + "default.handlebars->27->1315", + "default.handlebars->27->1629" ] }, { @@ -3320,7 +3320,7 @@ "ru": "Разрешить пользователям управлять этим устройством.", "zh-chs": "允许用户管理此设备。", "xloc": [ - "default.handlebars->27->1305" + "default.handlebars->27->1316" ] }, { @@ -3373,7 +3373,7 @@ "ru": "Поменять (F10 = ESC+0)", "zh-chs": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->27->775" + "default.handlebars->27->786" ] }, { @@ -3408,9 +3408,9 @@ "ru": "Всегда уведомлять", "zh-chs": "始終通知", "xloc": [ - "default.handlebars->27->1218", - "default.handlebars->27->1666", - "default.handlebars->27->546" + "default.handlebars->27->1229", + "default.handlebars->27->1677", + "default.handlebars->27->552" ] }, { @@ -3427,9 +3427,9 @@ "ru": "Всегда запрашивать", "zh-chs": "總是提示", "xloc": [ - "default.handlebars->27->1219", - "default.handlebars->27->1667", - "default.handlebars->27->547" + "default.handlebars->27->1230", + "default.handlebars->27->1678", + "default.handlebars->27->553" ] }, { @@ -3543,7 +3543,7 @@ "ru": "Антивирус", "zh-chs": "防毒軟件", "xloc": [ - "default.handlebars->27->536" + "default.handlebars->27->542" ] }, { @@ -3628,7 +3628,7 @@ "ru": "Арабский (Алжир)", "zh-chs": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->27->940" + "default.handlebars->27->951" ] }, { @@ -3645,7 +3645,7 @@ "ru": "Арабский (Бахрейн)", "zh-chs": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->27->941" + "default.handlebars->27->952" ] }, { @@ -3662,7 +3662,7 @@ "ru": "Арабский (Египет)", "zh-chs": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->27->942" + "default.handlebars->27->953" ] }, { @@ -3679,7 +3679,7 @@ "ru": "Арабский (Ирак)", "zh-chs": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->27->943" + "default.handlebars->27->954" ] }, { @@ -3696,7 +3696,7 @@ "ru": "Арабский (Иордания)", "zh-chs": "阿拉伯語(約旦)", "xloc": [ - "default.handlebars->27->944" + "default.handlebars->27->955" ] }, { @@ -3713,7 +3713,7 @@ "ru": "Арабский (Кувейт)", "zh-chs": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->27->945" + "default.handlebars->27->956" ] }, { @@ -3730,7 +3730,7 @@ "ru": "Арабский (Ливан)", "zh-chs": "阿拉伯語(黎巴嫩)", "xloc": [ - "default.handlebars->27->946" + "default.handlebars->27->957" ] }, { @@ -3747,7 +3747,7 @@ "ru": "Арабский (Ливия)", "zh-chs": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->27->947" + "default.handlebars->27->958" ] }, { @@ -3764,7 +3764,7 @@ "ru": "Арабский (Марокко)", "zh-chs": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->27->948" + "default.handlebars->27->959" ] }, { @@ -3781,7 +3781,7 @@ "ru": "Арабский (Оман)", "zh-chs": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->27->949" + "default.handlebars->27->960" ] }, { @@ -3798,7 +3798,7 @@ "ru": "Арабский (Катар)", "zh-chs": "阿拉伯語(卡塔爾)", "xloc": [ - "default.handlebars->27->950" + "default.handlebars->27->961" ] }, { @@ -3815,7 +3815,7 @@ "ru": "Арабский (Саудовская Аравия)", "zh-chs": "阿拉伯語(沙特阿拉伯)", "xloc": [ - "default.handlebars->27->951" + "default.handlebars->27->962" ] }, { @@ -3832,7 +3832,7 @@ "ru": "Арабский (стандартный)", "zh-chs": "阿拉伯語(標準)", "xloc": [ - "default.handlebars->27->939" + "default.handlebars->27->950" ] }, { @@ -3849,7 +3849,7 @@ "ru": "Арабский (Сирия)", "zh-chs": "阿拉伯語(敘利亞)", "xloc": [ - "default.handlebars->27->952" + "default.handlebars->27->963" ] }, { @@ -3866,7 +3866,7 @@ "ru": "Арабский (Тунис)", "zh-chs": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->27->953" + "default.handlebars->27->964" ] }, { @@ -3883,7 +3883,7 @@ "ru": "Арабский (О.А.Э.)", "zh-chs": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->27->954" + "default.handlebars->27->965" ] }, { @@ -3900,7 +3900,7 @@ "ru": "Арабский (Йемен)", "zh-chs": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->27->955" + "default.handlebars->27->966" ] }, { @@ -3917,7 +3917,7 @@ "ru": "Арагонский", "zh-chs": "阿拉貢人", "xloc": [ - "default.handlebars->27->956" + "default.handlebars->27->967" ] }, { @@ -3935,7 +3935,7 @@ "zh-chs": "建築", "xloc": [ "default-mobile.handlebars->9->320", - "default.handlebars->27->826" + "default.handlebars->27->837" ] }, { @@ -3970,7 +3970,7 @@ "zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。", "xloc": [ "default-mobile.handlebars->9->394", - "default.handlebars->27->1282" + "default.handlebars->27->1293" ] }, { @@ -3987,7 +3987,7 @@ "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?", "zh-chs": "您確定要刪除節點{0}嗎?", "xloc": [ - "default.handlebars->27->687" + "default.handlebars->27->698" ] }, { @@ -4004,7 +4004,7 @@ "ru": "Вы действительно хотите деинсталировать выбранного агента?", "zh-chs": "您確定要卸載所選代理嗎?", "xloc": [ - "default.handlebars->27->676" + "default.handlebars->27->687" ] }, { @@ -4021,7 +4021,7 @@ "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?", "zh-chs": "您確定要卸載所選的{0}代理嗎?", "xloc": [ - "default.handlebars->27->675" + "default.handlebars->27->686" ] }, { @@ -4038,7 +4038,7 @@ "ru": "Вы уверенны, что {0} плагин: {1}", "zh-chs": "您確定要{0}插件嗎:{1}", "xloc": [ - "default.handlebars->27->1851" + "default.handlebars->27->1862" ] }, { @@ -4055,7 +4055,7 @@ "ru": "Армянский", "zh-chs": "亞美尼亞人", "xloc": [ - "default.handlebars->27->957" + "default.handlebars->27->968" ] }, { @@ -4100,7 +4100,7 @@ "ru": "Ассамский", "zh-chs": "阿薩姆語", "xloc": [ - "default.handlebars->27->958" + "default.handlebars->27->969" ] }, { @@ -4117,7 +4117,7 @@ "ru": "Астурии", "zh-chs": "阿斯圖里亞斯人", "xloc": [ - "default.handlebars->27->959" + "default.handlebars->27->970" ] }, { @@ -4134,7 +4134,7 @@ "ru": "Приложение аутентификации", "zh-chs": "身份驗證應用", "xloc": [ - "default.handlebars->27->1670" + "default.handlebars->27->1681" ] }, { @@ -4157,8 +4157,8 @@ "default-mobile.handlebars->9->73", "default.handlebars->27->125", "default.handlebars->27->130", - "default.handlebars->27->923", - "default.handlebars->27->925" + "default.handlebars->27->934", + "default.handlebars->27->936" ] }, { @@ -4226,7 +4226,7 @@ "ru": "Автоудаление", "zh-chs": "自動刪除", "xloc": [ - "default.handlebars->27->1206" + "default.handlebars->27->1217" ] }, { @@ -4280,7 +4280,7 @@ "ru": "Азербайджанский", "zh-chs": "阿塞拜疆", "xloc": [ - "default.handlebars->27->960" + "default.handlebars->27->971" ] }, { @@ -4298,7 +4298,7 @@ "zh-chs": "的BIOS", "xloc": [ "default-mobile.handlebars->9->362", - "default.handlebars->27->878" + "default.handlebars->27->889" ] }, { @@ -4395,8 +4395,8 @@ "ru": "Фоновый и интерактивный", "zh-chs": "背景與互動", "xloc": [ - "default.handlebars->27->1382", - "default.handlebars->27->1389", + "default.handlebars->27->1393", + "default.handlebars->27->1400", "default.handlebars->27->328" ] }, @@ -4414,8 +4414,8 @@ "ru": "Только фоновый", "zh-chs": "僅背景", "xloc": [ - "default.handlebars->27->1383", - "default.handlebars->27->1390", + "default.handlebars->27->1394", + "default.handlebars->27->1401", "default.handlebars->27->329", "default.handlebars->27->351" ] @@ -4451,7 +4451,7 @@ "ru": "Резервные коды", "zh-chs": "備用碼", "xloc": [ - "default.handlebars->27->1672" + "default.handlebars->27->1683" ] }, { @@ -4468,7 +4468,7 @@ "ru": "Плохой ключ", "zh-chs": "錯誤的簽名", "xloc": [ - "default.handlebars->27->1789" + "default.handlebars->27->1800" ] }, { @@ -4485,7 +4485,7 @@ "ru": "Плохой веб-сертификат", "zh-chs": "錯誤的網絡證書", "xloc": [ - "default.handlebars->27->1788" + "default.handlebars->27->1799" ] }, { @@ -4502,7 +4502,7 @@ "ru": "Баскский", "zh-chs": "巴斯克", "xloc": [ - "default.handlebars->27->961" + "default.handlebars->27->972" ] }, { @@ -4536,7 +4536,7 @@ "ru": "Белорусский", "zh-chs": "白俄羅斯語", "xloc": [ - "default.handlebars->27->963" + "default.handlebars->27->974" ] }, { @@ -4553,7 +4553,7 @@ "ru": "Бенгальский", "zh-chs": "孟加拉", "xloc": [ - "default.handlebars->27->964" + "default.handlebars->27->975" ] }, { @@ -4589,7 +4589,7 @@ "ru": "Боснийский", "zh-chs": "波斯尼亞人", "xloc": [ - "default.handlebars->27->965" + "default.handlebars->27->976" ] }, { @@ -4606,7 +4606,7 @@ "ru": "Бретонский", "zh-chs": "布列塔尼", "xloc": [ - "default.handlebars->27->966" + "default.handlebars->27->977" ] }, { @@ -4623,7 +4623,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播", "xloc": [ - "default.handlebars->27->1586", + "default.handlebars->27->1597", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -4641,7 +4641,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播消息", "xloc": [ - "default.handlebars->27->1521" + "default.handlebars->27->1532" ] }, { @@ -4658,7 +4658,7 @@ "ru": "Отправить сообщение всем подключенным пользователям.", "zh-chs": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->27->1520" + "default.handlebars->27->1531" ] }, { @@ -4675,7 +4675,7 @@ "ru": "Болгарский", "zh-chs": "保加利亞語", "xloc": [ - "default.handlebars->27->962" + "default.handlebars->27->973" ] }, { @@ -4692,7 +4692,7 @@ "ru": "Бирманский", "zh-chs": "緬甸人", "xloc": [ - "default.handlebars->27->967" + "default.handlebars->27->978" ] }, { @@ -4710,7 +4710,7 @@ "zh-chs": "CCM", "xloc": [ "default-mobile.handlebars->9->223", - "default.handlebars->27->515" + "default.handlebars->27->521" ] }, { @@ -4728,8 +4728,8 @@ "zh-chs": "CIRA", "xloc": [ "default-mobile.handlebars->9->193", - "default.handlebars->27->1270", - "default.handlebars->27->1275", + "default.handlebars->27->1281", + "default.handlebars->27->1286", "default.handlebars->27->197", "default.handlebars->27->405" ] @@ -4748,7 +4748,7 @@ "ru": "CIRA Сервер", "zh-chs": "CIRA服務器", "xloc": [ - "default.handlebars->27->1839" + "default.handlebars->27->1850" ] }, { @@ -4765,7 +4765,7 @@ "ru": "CIRA Сервер команды", "zh-chs": "CIRA服務器命令", "xloc": [ - "default.handlebars->27->1840" + "default.handlebars->27->1851" ] }, { @@ -4782,7 +4782,7 @@ "zh-chs": "CPU", "xloc": [ "default-mobile.handlebars->9->368", - "default.handlebars->27->884" + "default.handlebars->27->895" ] }, { @@ -4799,7 +4799,7 @@ "ru": "Загрузка CPU", "zh-chs": "CPU負載", "xloc": [ - "default.handlebars->27->1803" + "default.handlebars->27->1814" ] }, { @@ -4816,7 +4816,7 @@ "ru": "Загрузка CPU за последние 15 минут", "zh-chs": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1806" + "default.handlebars->27->1817" ] }, { @@ -4833,7 +4833,7 @@ "ru": "Загрузка CPU за последние 5 минут", "zh-chs": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1805" + "default.handlebars->27->1816" ] }, { @@ -4850,7 +4850,7 @@ "ru": "Загрузка CPU за последнюю минуту", "zh-chs": "最後一分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1804" + "default.handlebars->27->1815" ] }, { @@ -4867,8 +4867,8 @@ "ru": "CR+LF", "zh-chs": "CR +低頻", "xloc": [ - "default.handlebars->27->768", - "default.handlebars->27->777", + "default.handlebars->27->779", + "default.handlebars->27->788", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -4886,9 +4886,9 @@ "ru": "Формат CSV", "zh-chs": "CSV格式", "xloc": [ - "default.handlebars->27->1453", - "default.handlebars->27->1512", - "default.handlebars->27->431" + "default.handlebars->27->1464", + "default.handlebars->27->1523", + "default.handlebars->27->437" ] }, { @@ -4905,7 +4905,7 @@ "ru": "Ошибка вызова", "zh-chs": "通話錯誤", "xloc": [ - "default.handlebars->27->1852" + "default.handlebars->27->1863" ] }, { @@ -4924,7 +4924,7 @@ "xloc": [ "default-mobile.handlebars->9->82", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->27->1187", + "default.handlebars->27->1198", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -4944,8 +4944,8 @@ "xloc": [ "default-mobile.handlebars->9->376", "default-mobile.handlebars->9->378", - "default.handlebars->27->892", - "default.handlebars->27->894" + "default.handlebars->27->903", + "default.handlebars->27->905" ] }, { @@ -4963,7 +4963,7 @@ "zh-chs": "容量/速度", "xloc": [ "default-mobile.handlebars->9->371", - "default.handlebars->27->887" + "default.handlebars->27->898" ] }, { @@ -4980,7 +4980,7 @@ "ru": "Каталонский", "zh-chs": "加泰羅尼亞語", "xloc": [ - "default.handlebars->27->968" + "default.handlebars->27->979" ] }, { @@ -4997,7 +4997,7 @@ "ru": "Установить центр карты здесь", "zh-chs": "中心地圖在這裡", "xloc": [ - "default.handlebars->27->477" + "default.handlebars->27->483" ] }, { @@ -5014,7 +5014,7 @@ "ru": "Чаморро", "zh-chs": "查莫羅", "xloc": [ - "default.handlebars->27->969" + "default.handlebars->27->980" ] }, { @@ -5045,7 +5045,7 @@ "ru": "Смена email для {0}", "zh-chs": "更改{0}的電子郵件", "xloc": [ - "default.handlebars->27->1700" + "default.handlebars->27->1711" ] }, { @@ -5062,9 +5062,9 @@ "ru": "Смена группы", "zh-chs": "變更組", "xloc": [ - "default.handlebars->27->571", - "default.handlebars->27->684", - "default.handlebars->27->685" + "default.handlebars->27->577", + "default.handlebars->27->695", + "default.handlebars->27->696" ] }, { @@ -5082,8 +5082,8 @@ "zh-chs": "更改密碼", "xloc": [ "default-mobile.handlebars->9->90", - "default.handlebars->27->1163", - "default.handlebars->27->1687" + "default.handlebars->27->1174", + "default.handlebars->27->1698" ] }, { @@ -5100,13 +5100,13 @@ "ru": "Смена пароля для {0}", "zh-chs": "更改{0}的密碼", "xloc": [ - "default.handlebars->27->1707" + "default.handlebars->27->1718" ] }, { "en": "Change Real Name for {0}", "xloc": [ - "default.handlebars->27->1695" + "default.handlebars->27->1706" ] }, { @@ -5176,7 +5176,7 @@ "ru": "Изменить пароль для этого пользователя", "zh-chs": "更改該用戶的密碼", "xloc": [ - "default.handlebars->27->1686" + "default.handlebars->27->1697" ] }, { @@ -5210,7 +5210,7 @@ "ru": "Измените адрес электронной почты вашей учетной записи здесь.", "zh-chs": "在此處更改您的帳戶電子郵件地址。", "xloc": [ - "default.handlebars->27->1150" + "default.handlebars->27->1161" ] }, { @@ -5227,7 +5227,7 @@ "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.", "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->27->1156" + "default.handlebars->27->1167" ] }, { @@ -5244,7 +5244,7 @@ "ru": "Изменение языка потребует перезагрузить страницу.", "zh-chs": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->27->1135" + "default.handlebars->27->1146" ] }, { @@ -5261,9 +5261,9 @@ "ru": "Чат", "zh-chs": "聊天室", "xloc": [ - "default.handlebars->27->1470", - "default.handlebars->27->624", - "default.handlebars->27->643" + "default.handlebars->27->1481", + "default.handlebars->27->630", + "default.handlebars->27->649" ] }, { @@ -5282,8 +5282,8 @@ "xloc": [ "default-mobile.handlebars->9->415", "default-mobile.handlebars->9->433", - "default.handlebars->27->1332", - "default.handlebars->27->1366" + "default.handlebars->27->1343", + "default.handlebars->27->1377" ] }, { @@ -5307,7 +5307,7 @@ "ru": "Чеченский", "zh-chs": "車臣", "xloc": [ - "default.handlebars->27->970" + "default.handlebars->27->981" ] }, { @@ -5388,8 +5388,8 @@ "ru": "Проверка...", "zh-chs": "檢查...", "xloc": [ - "default.handlebars->27->1846", - "default.handlebars->27->936" + "default.handlebars->27->1857", + "default.handlebars->27->947" ] }, { @@ -5406,7 +5406,7 @@ "ru": "Китайский", "zh-chs": "中文", "xloc": [ - "default.handlebars->27->971" + "default.handlebars->27->982" ] }, { @@ -5423,7 +5423,7 @@ "ru": "Китайский (Гонконг)", "zh-chs": "中文(香港)", "xloc": [ - "default.handlebars->27->972" + "default.handlebars->27->983" ] }, { @@ -5440,7 +5440,7 @@ "ru": "Китайский (КНР)", "zh-chs": "中文(中國)", "xloc": [ - "default.handlebars->27->973" + "default.handlebars->27->984" ] }, { @@ -5457,7 +5457,7 @@ "ru": "Упрощенный китайский)", "zh-chs": "简体中文)", "xloc": [ - "default.handlebars->27->1133" + "default.handlebars->27->1144" ] }, { @@ -5474,7 +5474,7 @@ "ru": "Китайский (Сингапур)", "zh-chs": "中文(新加坡)", "xloc": [ - "default.handlebars->27->974" + "default.handlebars->27->985" ] }, { @@ -5491,7 +5491,7 @@ "ru": "Китайский (Тайвань)", "zh-chs": "中文(台灣)", "xloc": [ - "default.handlebars->27->975" + "default.handlebars->27->986" ] }, { @@ -5526,7 +5526,7 @@ "ru": "Чувашский", "zh-chs": "楚瓦什", "xloc": [ - "default.handlebars->27->976" + "default.handlebars->27->987" ] }, { @@ -5566,11 +5566,11 @@ "default-mobile.handlebars->9->311", "default-mobile.handlebars->9->313", "default-mobile.handlebars->9->59", - "default.handlebars->27->1447", - "default.handlebars->27->803", - "default.handlebars->27->805", - "default.handlebars->27->807", - "default.handlebars->27->809", + "default.handlebars->27->1458", + "default.handlebars->27->814", + "default.handlebars->27->816", + "default.handlebars->27->818", + "default.handlebars->27->820", "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" @@ -5604,7 +5604,7 @@ "nl": "Wis alle meldingen", "zh-chs": "全部清除", "xloc": [ - "default.handlebars->27->1776" + "default.handlebars->27->1787" ] }, { @@ -5621,7 +5621,7 @@ "ru": "Очистить ядро", "zh-chs": "清除核心", "xloc": [ - "default.handlebars->27->908" + "default.handlebars->27->919" ] }, { @@ -5654,7 +5654,7 @@ "ru": "Очистить это уведомление", "zh-chs": "清除此通知", "xloc": [ - "default.handlebars->27->1775" + "default.handlebars->27->1786" ] }, { @@ -5699,8 +5699,8 @@ "nl": "Klik hier om de apparaatgroepsnaam te bewerken", "zh-chs": "单击此处编辑设备组名称", "xloc": [ - "default.handlebars->27->1198", - "default.handlebars->27->1403" + "default.handlebars->27->1209", + "default.handlebars->27->1414" ] }, { @@ -5717,7 +5717,7 @@ "ru": "Для изменения имени устройства на сервере нажмите сюда", "zh-chs": "單擊此處編輯服務器端設備名稱", "xloc": [ - "default.handlebars->27->493" + "default.handlebars->27->499" ] }, { @@ -5730,7 +5730,7 @@ "nl": "Klik hier om de gebruikersgroepsnaam te bewerken", "zh-chs": "单击此处编辑用户组名称", "xloc": [ - "default.handlebars->27->1575" + "default.handlebars->27->1586" ] }, { @@ -5780,7 +5780,7 @@ "zh-chs": "單擊確定將驗證郵件發送到:", "xloc": [ "default-mobile.handlebars->9->75", - "default.handlebars->27->1147" + "default.handlebars->27->1158" ] }, { @@ -5815,7 +5815,7 @@ "zh-chs": "客戶端控制模式(CCM)", "xloc": [ "default-mobile.handlebars->9->349", - "default.handlebars->27->865" + "default.handlebars->27->876" ] }, { @@ -5832,8 +5832,8 @@ "ru": "Клиент инициировал удаленный доступ", "zh-chs": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->27->1269", - "default.handlebars->27->1274" + "default.handlebars->27->1280", + "default.handlebars->27->1285" ] }, { @@ -5870,7 +5870,7 @@ "default-mobile.handlebars->9->57", "default.handlebars->27->137", "default.handlebars->27->145", - "default.handlebars->27->761" + "default.handlebars->27->772" ] }, { @@ -5913,8 +5913,8 @@ "ru": "Общие группы устройств", "zh-chs": "通用設備組", "xloc": [ - "default.handlebars->27->1594", - "default.handlebars->27->1712" + "default.handlebars->27->1605", + "default.handlebars->27->1723" ] }, { @@ -5931,8 +5931,8 @@ "ru": "Общие устройства", "zh-chs": "通用設備", "xloc": [ - "default.handlebars->27->1600", - "default.handlebars->27->1724" + "default.handlebars->27->1611", + "default.handlebars->27->1735" ] }, { @@ -5950,7 +5950,7 @@ "zh-chs": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->9->127", - "default.handlebars->27->1442" + "default.handlebars->27->1453" ] }, { @@ -5969,14 +5969,14 @@ "xloc": [ "default-mobile.handlebars->9->269", "default-mobile.handlebars->9->395", - "default.handlebars->27->1283", - "default.handlebars->27->1496", - "default.handlebars->27->1565", - "default.handlebars->27->1614", - "default.handlebars->27->1710", - "default.handlebars->27->428", - "default.handlebars->27->679", - "default.handlebars->27->688" + "default.handlebars->27->1294", + "default.handlebars->27->1507", + "default.handlebars->27->1576", + "default.handlebars->27->1625", + "default.handlebars->27->1721", + "default.handlebars->27->429", + "default.handlebars->27->690", + "default.handlebars->27->699" ] }, { @@ -5994,7 +5994,7 @@ "zh-chs": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->9->302", - "default.handlebars->27->798" + "default.handlebars->27->809" ] }, { @@ -6012,7 +6012,7 @@ "zh-chs": "確認{0}個條目的副本到此位置?", "xloc": [ "default-mobile.handlebars->9->301", - "default.handlebars->27->797" + "default.handlebars->27->808" ] }, { @@ -6026,7 +6026,7 @@ "nl": "Bevestig verwijdering geselecteerde account(s)?", "zh-chs": "确认删除选定的帐户?", "xloc": [ - "default.handlebars->27->1495" + "default.handlebars->27->1506" ] }, { @@ -6043,7 +6043,7 @@ "ru": "Подтвердить удаление выбранных устройств?", "zh-chs": "確認刪除所選設備?", "xloc": [ - "default.handlebars->27->427" + "default.handlebars->27->428" ] }, { @@ -6057,7 +6057,7 @@ "nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?", "zh-chs": "确认删除选定的用户组?", "xloc": [ - "default.handlebars->27->1564" + "default.handlebars->27->1575" ] }, { @@ -6074,7 +6074,7 @@ "ru": "Подтвердить удаление пользователя {0}?", "zh-chs": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->27->1709" + "default.handlebars->27->1720" ] }, { @@ -6088,7 +6088,7 @@ "nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户\\“ {0} \\”的成员身份?", "xloc": [ - "default.handlebars->27->1617" + "default.handlebars->27->1628" ] }, { @@ -6102,7 +6102,7 @@ "nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组 “{0}” 的成员身份?", "xloc": [ - "default.handlebars->27->1739" + "default.handlebars->27->1750" ] }, { @@ -6120,7 +6120,7 @@ "zh-chs": "確認將1個入口移動到此位置?", "xloc": [ "default-mobile.handlebars->9->304", - "default.handlebars->27->800" + "default.handlebars->27->811" ] }, { @@ -6138,7 +6138,7 @@ "zh-chs": "確認將{0}個條目移到此位置?", "xloc": [ "default-mobile.handlebars->9->303", - "default.handlebars->27->799" + "default.handlebars->27->810" ] }, { @@ -6155,7 +6155,7 @@ "ru": "Подтвердить перезапись?", "zh-chs": "確認覆蓋?", "xloc": [ - "default.handlebars->27->1441" + "default.handlebars->27->1452" ] }, { @@ -6169,8 +6169,8 @@ "nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?", "zh-chs": "确认删除设备“ {0} ”的访问权限?", "xloc": [ - "default.handlebars->27->1607", - "default.handlebars->27->1730" + "default.handlebars->27->1618", + "default.handlebars->27->1741" ] }, { @@ -6184,8 +6184,8 @@ "nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?", "zh-chs": "是否确认删除设备组“ {0}”的访问权限?", "xloc": [ - "default.handlebars->27->1609", - "default.handlebars->27->1743" + "default.handlebars->27->1620", + "default.handlebars->27->1754" ] }, { @@ -6199,7 +6199,7 @@ "nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户\\“ {0} \\”的访问权限?", "xloc": [ - "default.handlebars->27->1732" + "default.handlebars->27->1743" ] }, { @@ -6213,7 +6213,7 @@ "nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组“ {0}”的访问权限?", "xloc": [ - "default.handlebars->27->1735" + "default.handlebars->27->1746" ] }, { @@ -6227,8 +6227,8 @@ "nl": "Verwijdering van toegangsrechten bevestigen?", "zh-chs": "确认删除访问权限?", "xloc": [ - "default.handlebars->27->1733", - "default.handlebars->27->1736" + "default.handlebars->27->1744", + "default.handlebars->27->1747" ] }, { @@ -6246,7 +6246,7 @@ "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?", "xloc": [ "default-mobile.handlebars->9->74", - "default.handlebars->27->926" + "default.handlebars->27->937" ] }, { @@ -6301,7 +6301,7 @@ "nl": "Bevestig de verwijdering van rechten voor gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户“ {0} ”的权限?", "xloc": [ - "default.handlebars->27->1375" + "default.handlebars->27->1386" ] }, { @@ -6315,7 +6315,7 @@ "nl": "Bevestig de verwijdering van rechten voor de gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组“ {0} ”的权限?", "xloc": [ - "default.handlebars->27->1377" + "default.handlebars->27->1388" ] }, { @@ -6363,8 +6363,8 @@ "default-mobile.handlebars->9->284", "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.handlebars->27->1222", - "default.handlebars->27->780", + "default.handlebars->27->1233", + "default.handlebars->27->791", "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", @@ -6404,8 +6404,8 @@ "ru": "Подключиться к серверу", "zh-chs": "連接到服務器", "xloc": [ - "default.handlebars->27->1273", - "default.handlebars->27->1277" + "default.handlebars->27->1284", + "default.handlebars->27->1288" ] }, { @@ -6476,7 +6476,7 @@ "ru": "Подключено Intel® AMT", "zh-chs": "連接的英特爾®AMT", "xloc": [ - "default.handlebars->27->1794" + "default.handlebars->27->1805" ] }, { @@ -6493,7 +6493,7 @@ "ru": "Подключенные пользователи", "zh-chs": "關聯用戶", "xloc": [ - "default.handlebars->27->1799" + "default.handlebars->27->1810" ] }, { @@ -6511,7 +6511,7 @@ "zh-chs": "現在已連接", "xloc": [ "default-mobile.handlebars->9->324", - "default.handlebars->27->830" + "default.handlebars->27->841" ] }, { @@ -6551,7 +6551,7 @@ "default.handlebars->27->222", "default.handlebars->27->225", "default.handlebars->27->244", - "default.handlebars->27->821", + "default.handlebars->27->832", "default.handlebars->27->9", "xterm.handlebars->9->2" ] @@ -6570,7 +6570,7 @@ "ru": "Подключений ", "zh-chs": "連接數", "xloc": [ - "default.handlebars->27->1810" + "default.handlebars->27->1821" ] }, { @@ -6587,7 +6587,7 @@ "ru": "Ретранслятор подключения", "zh-chs": "連接繼電器", "xloc": [ - "default.handlebars->27->1838" + "default.handlebars->27->1849" ] }, { @@ -6639,9 +6639,9 @@ "zh-chs": "連接性", "xloc": [ "default-mobile.handlebars->9->237", - "default.handlebars->27->1410", + "default.handlebars->27->1421", "default.handlebars->27->213", - "default.handlebars->27->560", + "default.handlebars->27->566", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" ] }, @@ -6659,8 +6659,8 @@ "ru": "Консоль", "zh-chs": "安慰", "xloc": [ - "default.handlebars->27->619", - "default.handlebars->27->638", + "default.handlebars->27->625", + "default.handlebars->27->644", "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" @@ -6680,7 +6680,7 @@ "ru": "Консоль - ", "zh-chs": "安慰 -", "xloc": [ - "default.handlebars->27->494" + "default.handlebars->27->500" ] }, { @@ -6696,8 +6696,8 @@ "ru": "контроль", "zh-chs": "控制", "xloc": [ - "default.handlebars->27->618", - "default.handlebars->27->637", + "default.handlebars->27->624", + "default.handlebars->27->643", "messenger.handlebars->13->1" ] }, @@ -6715,7 +6715,7 @@ "ru": "Cookie-кодировщик", "zh-chs": "Cookie編碼器", "xloc": [ - "default.handlebars->27->1824" + "default.handlebars->27->1835" ] }, { @@ -6848,8 +6848,8 @@ "ru": "Скопировать ссылку в буфер обмена", "zh-chs": "複製鏈接到剪貼板", "xloc": [ - "default.handlebars->27->1415", - "default.handlebars->27->1429", + "default.handlebars->27->1426", + "default.handlebars->27->1440", "default.handlebars->27->341" ] }, @@ -7027,7 +7027,7 @@ "ru": "Основной сервер", "zh-chs": "核心服務器", "xloc": [ - "default.handlebars->27->1823" + "default.handlebars->27->1834" ] }, { @@ -7044,7 +7044,7 @@ "ru": "Kорсиканский", "zh-chs": "科西嘉人", "xloc": [ - "default.handlebars->27->977" + "default.handlebars->27->988" ] }, { @@ -7061,7 +7061,7 @@ "ru": "Создать учетную запись", "zh-chs": "創建帳號", "xloc": [ - "default.handlebars->27->1535", + "default.handlebars->27->1546", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1" ] @@ -7097,7 +7097,7 @@ "ru": "Создать группу пользователей", "zh-chs": "創建用戶組", "xloc": [ - "default.handlebars->27->1572" + "default.handlebars->27->1583" ] }, { @@ -7114,7 +7114,7 @@ "ru": "Создайте новую группу устройств, используя параметры ниже.", "zh-chs": "使用以下選項創建一個新的設備組。", "xloc": [ - "default.handlebars->27->1170" + "default.handlebars->27->1181" ] }, { @@ -7148,7 +7148,7 @@ "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:", "xloc": [ - "default.handlebars->27->1503" + "default.handlebars->27->1514" ] }, { @@ -7183,7 +7183,7 @@ "ru": "Создано", "zh-chs": "創建", "xloc": [ - "default.handlebars->27->1646" + "default.handlebars->27->1657" ] }, { @@ -7218,7 +7218,7 @@ "ru": "Кри (Канадский язык)", "zh-chs": "克里", "xloc": [ - "default.handlebars->27->978" + "default.handlebars->27->989" ] }, { @@ -7235,7 +7235,7 @@ "ru": "Хорватский", "zh-chs": "克羅地亞語", "xloc": [ - "default.handlebars->27->979" + "default.handlebars->27->990" ] }, { @@ -7376,7 +7376,7 @@ "ru": "Чешский", "zh-chs": "捷克文", "xloc": [ - "default.handlebars->27->980" + "default.handlebars->27->991" ] }, { @@ -7410,7 +7410,7 @@ "ru": "Датский", "zh-chs": "丹麥文", "xloc": [ - "default.handlebars->27->981" + "default.handlebars->27->992" ] }, { @@ -7427,7 +7427,7 @@ "ru": "DataChannel", "zh-chs": "數據通道", "xloc": [ - "default.handlebars->27->731" + "default.handlebars->27->742" ] }, { @@ -7444,7 +7444,7 @@ "ru": "Дата & Время", "zh-chs": "日期和時間", "xloc": [ - "default.handlebars->27->1138" + "default.handlebars->27->1149" ] }, { @@ -7462,7 +7462,7 @@ "zh-chs": "天", "xloc": [ "default-mobile.handlebars->9->259", - "default.handlebars->27->663" + "default.handlebars->27->674" ] }, { @@ -7479,7 +7479,7 @@ "ru": "Деактивировать режим управления клиентом (CCM)", "zh-chs": "停用客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->27->1261" + "default.handlebars->27->1272" ] }, { @@ -7504,10 +7504,10 @@ "en": "Default", "nl": "Standaard", "xloc": [ - "default.handlebars->27->1522", - "default.handlebars->27->1568", + "default.handlebars->27->1533", "default.handlebars->27->1579", - "default.handlebars->27->1635" + "default.handlebars->27->1590", + "default.handlebars->27->1646" ] }, { @@ -7528,9 +7528,9 @@ "default-mobile.handlebars->9->294", "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->27->1436", - "default.handlebars->27->464", - "default.handlebars->27->790", + "default.handlebars->27->1447", + "default.handlebars->27->470", + "default.handlebars->27->801", "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", @@ -7554,7 +7554,7 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->9->84", - "default.handlebars->27->1155" + "default.handlebars->27->1166" ] }, { @@ -7568,7 +7568,7 @@ "nl": "Verwijder accounts", "zh-chs": "删除帐号", "xloc": [ - "default.handlebars->27->1497" + "default.handlebars->27->1508" ] }, { @@ -7586,7 +7586,7 @@ "zh-chs": "刪除裝置", "xloc": [ "default-mobile.handlebars->9->242", - "default.handlebars->27->573" + "default.handlebars->27->579" ] }, { @@ -7605,8 +7605,8 @@ "xloc": [ "default-mobile.handlebars->9->393", "default-mobile.handlebars->9->396", - "default.handlebars->27->1254", - "default.handlebars->27->1284" + "default.handlebars->27->1265", + "default.handlebars->27->1295" ] }, { @@ -7624,7 +7624,7 @@ "zh-chs": "刪除節點", "xloc": [ "default-mobile.handlebars->9->267", - "default.handlebars->27->689" + "default.handlebars->27->700" ] }, { @@ -7641,7 +7641,7 @@ "ru": "Удалить устройства", "zh-chs": "刪除節點", "xloc": [ - "default.handlebars->27->429" + "default.handlebars->27->430" ] }, { @@ -7658,7 +7658,7 @@ "ru": "Удалить пользователя", "zh-chs": "刪除用戶", "xloc": [ - "default.handlebars->27->1685" + "default.handlebars->27->1696" ] }, { @@ -7675,8 +7675,8 @@ "ru": "Удалить группу пользователей", "zh-chs": "刪除用戶組", "xloc": [ - "default.handlebars->27->1605", - "default.handlebars->27->1615" + "default.handlebars->27->1616", + "default.handlebars->27->1626" ] }, { @@ -7690,7 +7690,7 @@ "nl": "Gebruikersgroepen verwijderen", "zh-chs": "删除用户组", "xloc": [ - "default.handlebars->27->1566" + "default.handlebars->27->1577" ] }, { @@ -7707,7 +7707,7 @@ "ru": "Удалить пользователя {0}", "zh-chs": "刪除用戶{0}", "xloc": [ - "default.handlebars->27->1708" + "default.handlebars->27->1719" ] }, { @@ -7725,7 +7725,7 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->27->1493", + "default.handlebars->27->1504", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -7743,7 +7743,7 @@ "ru": "Удалить устройства", "zh-chs": "刪除設備", "xloc": [ - "default.handlebars->27->425" + "default.handlebars->27->426" ] }, { @@ -7757,7 +7757,7 @@ "nl": "Verwijder groep", "zh-chs": "删除群组", "xloc": [ - "default.handlebars->27->1562" + "default.handlebars->27->1573" ] }, { @@ -7774,7 +7774,7 @@ "ru": "Удалить пункт?", "zh-chs": "刪除項目?", "xloc": [ - "default.handlebars->27->465" + "default.handlebars->27->471" ] }, { @@ -7793,8 +7793,8 @@ "xloc": [ "default-mobile.handlebars->9->124", "default-mobile.handlebars->9->296", - "default.handlebars->27->1438", - "default.handlebars->27->792" + "default.handlebars->27->1449", + "default.handlebars->27->803" ] }, { @@ -7811,7 +7811,7 @@ "ru": "Удалить группу пользователей {0}?", "zh-chs": "刪除用戶組{0}?", "xloc": [ - "default.handlebars->27->1613" + "default.handlebars->27->1624" ] }, { @@ -7830,8 +7830,8 @@ "xloc": [ "default-mobile.handlebars->9->123", "default-mobile.handlebars->9->295", - "default.handlebars->27->1437", - "default.handlebars->27->791" + "default.handlebars->27->1448", + "default.handlebars->27->802" ] }, { @@ -7861,7 +7861,7 @@ "ko": "거부", "zh-chs": "被拒绝", "xloc": [ - "default.handlebars->27->727" + "default.handlebars->27->738" ] }, { @@ -7945,19 +7945,19 @@ "default-mobile.handlebars->9->330", "default-mobile.handlebars->9->385", "default-mobile.handlebars->9->398", - "default.handlebars->27->1175", - "default.handlebars->27->1203", - "default.handlebars->27->1286", - "default.handlebars->27->1571", - "default.handlebars->27->1581", + "default.handlebars->27->1186", + "default.handlebars->27->1214", + "default.handlebars->27->1297", "default.handlebars->27->1582", - "default.handlebars->27->1611", - "default.handlebars->27->505", - "default.handlebars->27->506", - "default.handlebars->27->722", + "default.handlebars->27->1592", + "default.handlebars->27->1593", + "default.handlebars->27->1622", + "default.handlebars->27->511", + "default.handlebars->27->512", + "default.handlebars->27->733", "default.handlebars->27->77", - "default.handlebars->27->836", - "default.handlebars->27->846", + "default.handlebars->27->847", + "default.handlebars->27->857", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] }, @@ -7990,9 +7990,9 @@ "zh-chs": "桌面", "xloc": [ "default-mobile.handlebars->9->249", - "default.handlebars->27->1291", - "default.handlebars->27->1753", - "default.handlebars->27->470", + "default.handlebars->27->1302", + "default.handlebars->27->1764", + "default.handlebars->27->476", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop" ] @@ -8028,9 +8028,9 @@ "ru": "Уведомление на рабочем столе", "zh-chs": "桌面通知", "xloc": [ - "default.handlebars->27->1213", - "default.handlebars->27->1661", - "default.handlebars->27->541" + "default.handlebars->27->1224", + "default.handlebars->27->1672", + "default.handlebars->27->547" ] }, { @@ -8047,9 +8047,9 @@ "ru": "Запрос рабочего стола", "zh-chs": "桌面提示", "xloc": [ - "default.handlebars->27->1212", - "default.handlebars->27->1660", - "default.handlebars->27->540" + "default.handlebars->27->1223", + "default.handlebars->27->1671", + "default.handlebars->27->546" ] }, { @@ -8066,9 +8066,9 @@ "ru": "Запрос рабочего стола + панель инструментов", "zh-chs": "桌面提示+工具欄", "xloc": [ - "default.handlebars->27->1210", - "default.handlebars->27->1658", - "default.handlebars->27->538" + "default.handlebars->27->1221", + "default.handlebars->27->1669", + "default.handlebars->27->544" ] }, { @@ -8099,9 +8099,9 @@ "ru": "Панель инструментов рабочего стола", "zh-chs": "桌面工具欄", "xloc": [ - "default.handlebars->27->1211", - "default.handlebars->27->1659", - "default.handlebars->27->539" + "default.handlebars->27->1222", + "default.handlebars->27->1670", + "default.handlebars->27->545" ] }, { @@ -8172,8 +8172,8 @@ "ru": "Устройство", "zh-chs": "設備", "xloc": [ - "default.handlebars->27->1313", - "default.handlebars->27->1727", + "default.handlebars->27->1324", + "default.handlebars->27->1738", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -8192,7 +8192,7 @@ "zh-chs": "設備動作", "xloc": [ "default-mobile.handlebars->9->258", - "default.handlebars->27->662" + "default.handlebars->27->669" ] }, { @@ -8209,13 +8209,13 @@ "ru": "Группа устройства", "zh-chs": "設備組", "xloc": [ - "default.handlebars->27->1308", - "default.handlebars->27->1311", - "default.handlebars->27->1312", - "default.handlebars->27->1597", - "default.handlebars->27->1603", - "default.handlebars->27->1715", - "default.handlebars->27->1762" + "default.handlebars->27->1319", + "default.handlebars->27->1322", + "default.handlebars->27->1323", + "default.handlebars->27->1608", + "default.handlebars->27->1614", + "default.handlebars->27->1726", + "default.handlebars->27->1773" ] }, { @@ -8233,7 +8233,7 @@ "zh-chs": "設備組用戶", "xloc": [ "default-mobile.handlebars->9->440", - "default.handlebars->27->1373" + "default.handlebars->27->1384" ] }, { @@ -8251,11 +8251,11 @@ "zh-chs": "設備組", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->27->1462", - "default.handlebars->27->1556", - "default.handlebars->27->1584", - "default.handlebars->27->1655", - "default.handlebars->27->1797", + "default.handlebars->27->1473", + "default.handlebars->27->1567", + "default.handlebars->27->1595", + "default.handlebars->27->1666", + "default.handlebars->27->1808", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -8273,7 +8273,7 @@ "ru": "Экспорт информации об устройстве", "zh-chs": "設備信息導出", "xloc": [ - "default.handlebars->27->435" + "default.handlebars->27->441" ] }, { @@ -8290,7 +8290,7 @@ "ru": "Местонахождение устройства", "zh-chs": "設備位置", "xloc": [ - "default.handlebars->27->690" + "default.handlebars->27->701" ] }, { @@ -8298,7 +8298,7 @@ "nl": "Apparaatbericht", "fr": "Message de Service", "xloc": [ - "default.handlebars->27->651" + "default.handlebars->27->657" ] }, { @@ -8316,9 +8316,9 @@ "zh-chs": "設備名稱", "xloc": [ "default-mobile.handlebars->9->271", - "default.handlebars->27->1761", + "default.handlebars->27->1772", "default.handlebars->27->262", - "default.handlebars->27->720", + "default.handlebars->27->731", "player.handlebars->3->9" ] }, @@ -8336,7 +8336,7 @@ "ru": "Уведомление устройства", "zh-chs": "設備通知", "xloc": [ - "default.handlebars->27->653" + "default.handlebars->27->659" ] }, { @@ -8370,8 +8370,8 @@ "ru": "Подключения устройств.", "zh-chs": "設備連接。", "xloc": [ - "default.handlebars->27->1143", - "default.handlebars->27->1394" + "default.handlebars->27->1154", + "default.handlebars->27->1405" ] }, { @@ -8388,8 +8388,8 @@ "ru": "Отключения устройств.", "zh-chs": "設備斷開連接。", "xloc": [ - "default.handlebars->27->1144", - "default.handlebars->27->1395" + "default.handlebars->27->1155", + "default.handlebars->27->1406" ] }, { @@ -8406,7 +8406,7 @@ "ru": "Примечания могут быть просмотрены и изменены другими администраторами.", "zh-chs": "其他設備組管理員可以查看和更改設備組註釋。", "xloc": [ - "default.handlebars->27->649" + "default.handlebars->27->655" ] }, { @@ -8416,7 +8416,7 @@ "default-mobile.handlebars->9->152", "default-mobile.handlebars->9->205", "default.handlebars->27->193", - "default.handlebars->27->491" + "default.handlebars->27->497" ] }, { @@ -8618,7 +8618,7 @@ "default-mobile.handlebars->9->151", "default-mobile.handlebars->9->204", "default.handlebars->27->192", - "default.handlebars->27->490" + "default.handlebars->27->496" ] }, { @@ -8688,7 +8688,7 @@ "ru": "Имя устройства", "zh-chs": "設備名稱", "xloc": [ - "default.handlebars->27->482" + "default.handlebars->27->488" ] }, { @@ -8716,8 +8716,8 @@ "nl": "Apparaten", "zh-chs": "设备", "xloc": [ - "default.handlebars->27->1557", - "default.handlebars->27->1585" + "default.handlebars->27->1568", + "default.handlebars->27->1596" ] }, { @@ -8734,7 +8734,7 @@ "ru": "Отключено", "zh-chs": "殘障人士", "xloc": [ - "default.handlebars->27->533" + "default.handlebars->27->539" ] }, { @@ -8753,8 +8753,8 @@ "xloc": [ "default-mobile.handlebars->9->285", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->27->1223", - "default.handlebars->27->781", + "default.handlebars->27->1234", + "default.handlebars->27->792", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", "xterm.handlebars->p11->deskarea0->deskarea1->3" @@ -8810,7 +8810,7 @@ "nl": "Geef een berichtvenster weer op het externe apparaat.", "fr": "Afficher un message sur le poste distant", "xloc": [ - "default.handlebars->27->652" + "default.handlebars->27->658" ] }, { @@ -8835,7 +8835,7 @@ "nl": "Geef een tekstbericht weer op het externe apparaat", "fr": "Afficher un message sur le poste distant", "xloc": [ - "default.handlebars->27->569" + "default.handlebars->27->575" ] }, { @@ -8852,7 +8852,7 @@ "ru": "Отобразить имя группы устройств", "zh-chs": "顯示設備組名稱", "xloc": [ - "default.handlebars->27->1142" + "default.handlebars->27->1153" ] }, { @@ -8869,7 +8869,7 @@ "ru": "Отображаемое имя", "zh-chs": "顯示名稱", "xloc": [ - "default.handlebars->27->752" + "default.handlebars->27->763" ] }, { @@ -8885,7 +8885,7 @@ "ru": "Показать публичную ссылку", "zh-chs": "显示公共链接", "xloc": [ - "default.handlebars->27->1414" + "default.handlebars->27->1425" ] }, { @@ -8902,17 +8902,17 @@ "ru": "Ничего не делать", "zh-chs": "沒做什麼", "xloc": [ - "default.handlebars->27->1267" + "default.handlebars->27->1278" ] }, { "en": "Domain", "nl": "Domein", "xloc": [ - "default.handlebars->27->1523", - "default.handlebars->27->1569", - "default.handlebars->27->1578", - "default.handlebars->27->1634", + "default.handlebars->27->1534", + "default.handlebars->27->1580", + "default.handlebars->27->1589", + "default.handlebars->27->1645", "mstsc.handlebars->main->1->3->1->2->1->0", "mstsc.handlebars->main->1->3->1->2->3" ] @@ -8927,8 +8927,8 @@ "nl": "Niet configureren", "zh-chs": "不要配置", "xloc": [ - "default.handlebars->27->1271", - "default.handlebars->27->1276" + "default.handlebars->27->1282", + "default.handlebars->27->1287" ] }, { @@ -8941,7 +8941,7 @@ "nl": "Maak geen verbinding met de server", "zh-chs": "不要连接到服务器", "xloc": [ - "default.handlebars->27->1272" + "default.handlebars->27->1283" ] }, { @@ -9042,7 +9042,7 @@ "zh-chs": "下載文件", "xloc": [ "default-mobile.handlebars->9->315", - "default.handlebars->27->810" + "default.handlebars->27->821" ] }, { @@ -9076,7 +9076,7 @@ "ru": "Скачать MeshCmd", "zh-chs": "下載MeshCmd", "xloc": [ - "default.handlebars->27->712" + "default.handlebars->27->723" ] }, { @@ -9127,7 +9127,7 @@ "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.", "zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。", "xloc": [ - "default.handlebars->27->705" + "default.handlebars->27->716" ] }, { @@ -9195,7 +9195,7 @@ "ru": "Скачать события состояния питания", "zh-chs": "下載電源事件", "xloc": [ - "default.handlebars->27->664" + "default.handlebars->27->675" ] }, { @@ -9246,7 +9246,7 @@ "ru": "Загрузите список устройств с одним из форматов файлов ниже.", "zh-chs": "使用以下一種文件格式下載設備列表。", "xloc": [ - "default.handlebars->27->430" + "default.handlebars->27->436" ] }, { @@ -9263,7 +9263,7 @@ "ru": "Скачать список событий в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載事件列表。", "xloc": [ - "default.handlebars->27->1452" + "default.handlebars->27->1463" ] }, { @@ -9280,7 +9280,7 @@ "ru": "Скачать список пользователей в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載用戶列表。", "xloc": [ - "default.handlebars->27->1511" + "default.handlebars->27->1522" ] }, { @@ -9363,7 +9363,7 @@ "nl": "Dubbele agent", "zh-chs": "代理重复", "xloc": [ - "default.handlebars->27->1793" + "default.handlebars->27->1804" ] }, { @@ -9397,7 +9397,7 @@ "ru": "Скопировать группу пользователей", "zh-chs": "重複的用戶組", "xloc": [ - "default.handlebars->27->1573" + "default.handlebars->27->1584" ] }, { @@ -9428,8 +9428,8 @@ "ru": "Длительность", "zh-chs": "持續時間", "xloc": [ - "default.handlebars->27->1747", - "default.handlebars->27->1767", + "default.handlebars->27->1758", + "default.handlebars->27->1778", "player.handlebars->3->2" ] }, @@ -9447,7 +9447,7 @@ "ru": "Во время активации агент будет иметь доступ к паролю администратора.", "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。", "xloc": [ - "default.handlebars->27->1281" + "default.handlebars->27->1292" ] }, { @@ -9464,7 +9464,7 @@ "ru": "Голландский (Бельгийский)", "zh-chs": "荷蘭語(比利時)", "xloc": [ - "default.handlebars->27->983" + "default.handlebars->27->994" ] }, { @@ -9481,7 +9481,7 @@ "ru": "Голландский (Стандартный)", "zh-chs": "荷蘭語(標準)", "xloc": [ - "default.handlebars->27->982" + "default.handlebars->27->993" ] }, { @@ -9672,7 +9672,7 @@ "zh-chs": "編輯裝置", "xloc": [ "default-mobile.handlebars->9->276", - "default.handlebars->27->725" + "default.handlebars->27->736" ] }, { @@ -9692,10 +9692,10 @@ "default-mobile.handlebars->9->399", "default-mobile.handlebars->9->401", "default-mobile.handlebars->9->419", - "default.handlebars->27->1287", - "default.handlebars->27->1317", - "default.handlebars->27->1339", - "default.handlebars->27->1351" + "default.handlebars->27->1298", + "default.handlebars->27->1328", + "default.handlebars->27->1350", + "default.handlebars->27->1362" ] }, { @@ -9712,7 +9712,7 @@ "ru": "Редактировать функции группы устройств", "zh-chs": "編輯設備組功能", "xloc": [ - "default.handlebars->27->1303" + "default.handlebars->27->1314" ] }, { @@ -9729,8 +9729,8 @@ "ru": "Редактировать права группы устройств", "zh-chs": "編輯設備組權限", "xloc": [ - "default.handlebars->27->1336", - "default.handlebars->27->1348" + "default.handlebars->27->1347", + "default.handlebars->27->1359" ] }, { @@ -9747,7 +9747,7 @@ "ru": "Редактировать согласие пользователя группы устройств", "zh-chs": "編輯設備組用戶同意", "xloc": [ - "default.handlebars->27->1288" + "default.handlebars->27->1299" ] }, { @@ -9765,7 +9765,7 @@ "zh-chs": "編輯設備說明", "xloc": [ "default-mobile.handlebars->9->413", - "default.handlebars->27->1330" + "default.handlebars->27->1341" ] }, { @@ -9781,8 +9781,8 @@ "ru": "Изменить разрешения устройства", "zh-chs": "编辑设备权限", "xloc": [ - "default.handlebars->27->1341", - "default.handlebars->27->1343" + "default.handlebars->27->1352", + "default.handlebars->27->1354" ] }, { @@ -9796,7 +9796,7 @@ "nl": "Gebruikerstoestemming apparaat bewerken", "zh-chs": "编辑设备用户同意", "xloc": [ - "default.handlebars->27->1290" + "default.handlebars->27->1301" ] }, { @@ -9812,7 +9812,7 @@ "ru": "Редактировать группу", "zh-chs": "编辑组", "xloc": [ - "default.handlebars->27->628" + "default.handlebars->27->634" ] }, { @@ -9830,9 +9830,9 @@ "zh-chs": "編輯英特爾®AMT憑據", "xloc": [ "default-mobile.handlebars->9->266", - "default.handlebars->27->520", - "default.handlebars->27->523", - "default.handlebars->27->671" + "default.handlebars->27->526", + "default.handlebars->27->529", + "default.handlebars->27->682" ] }, { @@ -9850,7 +9850,7 @@ "zh-chs": "編輯筆記", "xloc": [ "default-mobile.handlebars->9->426", - "default.handlebars->27->1358" + "default.handlebars->27->1369" ] }, { @@ -9864,7 +9864,7 @@ "nl": "Gebruikerstoestemming bewerken", "zh-chs": "编辑用户同意", "xloc": [ - "default.handlebars->27->1289" + "default.handlebars->27->1300" ] }, { @@ -9881,7 +9881,7 @@ "ru": "Редактировать права пользователя для группы устройств", "zh-chs": "編輯用戶設備組權限", "xloc": [ - "default.handlebars->27->1349" + "default.handlebars->27->1360" ] }, { @@ -9897,7 +9897,7 @@ "ru": "Изменить разрешения для пользовательских устройств", "zh-chs": "编辑用户设备权限", "xloc": [ - "default.handlebars->27->1344" + "default.handlebars->27->1355" ] }, { @@ -9914,7 +9914,7 @@ "ru": "Редактировать группу пользователей", "zh-chs": "編輯用戶組", "xloc": [ - "default.handlebars->27->1612" + "default.handlebars->27->1623" ] }, { @@ -9928,7 +9928,7 @@ "nl": "Gebruikersmachtigingen voor apparaatgroep bewerken", "zh-chs": "编辑用户组设备权限", "xloc": [ - "default.handlebars->27->1346" + "default.handlebars->27->1357" ] }, { @@ -9963,11 +9963,11 @@ "zh-chs": "電子郵件", "xloc": [ "default-mobile.handlebars->9->78", - "default.handlebars->27->1525", - "default.handlebars->27->1638", - "default.handlebars->27->1640", - "default.handlebars->27->1680", - "default.handlebars->27->1696", + "default.handlebars->27->1536", + "default.handlebars->27->1649", + "default.handlebars->27->1651", + "default.handlebars->27->1691", + "default.handlebars->27->1707", "default.handlebars->27->312", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -9990,7 +9990,7 @@ "zh-chs": "電郵地址變更", "xloc": [ "default-mobile.handlebars->9->79", - "default.handlebars->27->1151" + "default.handlebars->27->1162" ] }, { @@ -10008,7 +10008,7 @@ "zh-chs": "郵件認證", "xloc": [ "default-mobile.handlebars->9->68", - "default.handlebars->27->920" + "default.handlebars->27->931" ] }, { @@ -10053,7 +10053,7 @@ "zh-chs": "電子郵件驗證", "xloc": [ "default-mobile.handlebars->9->77", - "default.handlebars->27->1149" + "default.handlebars->27->1160" ] }, { @@ -10083,7 +10083,7 @@ "ru": "Электронная почта не подтверждена", "zh-chs": "邮件未验证", "xloc": [ - "default.handlebars->27->1481" + "default.handlebars->27->1492" ] }, { @@ -10100,8 +10100,8 @@ "ru": "Email подтвержден", "zh-chs": "電子郵件已驗證", "xloc": [ - "default.handlebars->27->1482", - "default.handlebars->27->1632" + "default.handlebars->27->1493", + "default.handlebars->27->1643" ] }, { @@ -10118,7 +10118,7 @@ "ru": "Email подтвержден.", "zh-chs": "電子郵件已驗證。", "xloc": [ - "default.handlebars->27->1531" + "default.handlebars->27->1542" ] }, { @@ -10135,7 +10135,7 @@ "ru": "Email не подтвержден", "zh-chs": "電子郵件未驗證", "xloc": [ - "default.handlebars->27->1633" + "default.handlebars->27->1644" ] }, { @@ -10174,7 +10174,7 @@ "en": "Email verified and forced password reset required.", "nl": "E-mail geverifieerd en geforceerd opnieuw instellen van wachtwoord vereist.", "xloc": [ - "default.handlebars->27->1532" + "default.handlebars->27->1543" ] }, { @@ -10187,7 +10187,7 @@ "nl": "Email/SMS verkeer", "zh-chs": "电子邮件/短信流量", "xloc": [ - "default.handlebars->27->1832" + "default.handlebars->27->1843" ] }, { @@ -10226,7 +10226,7 @@ "ru": "Включить коды приглашения", "zh-chs": "啟用邀請代碼", "xloc": [ - "default.handlebars->27->1379" + "default.handlebars->27->1390" ] }, { @@ -10261,7 +10261,7 @@ "zh-chs": "啟用電子郵件兩因素驗證。", "xloc": [ "default-mobile.handlebars->9->70", - "default.handlebars->27->922" + "default.handlebars->27->933" ] }, { @@ -10285,7 +10285,7 @@ "en": "Enabled", "nl": "Ingeschakeld", "xloc": [ - "default.handlebars->27->1769" + "default.handlebars->27->1780" ] }, { @@ -10309,7 +10309,7 @@ "en": "End Time", "nl": "Eindtijd", "xloc": [ - "default.handlebars->27->1766" + "default.handlebars->27->1777" ] }, { @@ -10326,7 +10326,7 @@ "ru": "Английский", "zh-chs": "英語", "xloc": [ - "default.handlebars->27->984" + "default.handlebars->27->995" ] }, { @@ -10343,7 +10343,7 @@ "ru": "Английский (Австралия)", "zh-chs": "英文(澳洲)", "xloc": [ - "default.handlebars->27->985" + "default.handlebars->27->996" ] }, { @@ -10360,7 +10360,7 @@ "ru": "Английский (Белиз)", "zh-chs": "英語(伯利茲)", "xloc": [ - "default.handlebars->27->986" + "default.handlebars->27->997" ] }, { @@ -10377,7 +10377,7 @@ "ru": "Английский (Канада)", "zh-chs": "英文(加拿大)", "xloc": [ - "default.handlebars->27->987" + "default.handlebars->27->998" ] }, { @@ -10394,7 +10394,7 @@ "ru": "Английский (Ирландия)", "zh-chs": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->27->988" + "default.handlebars->27->999" ] }, { @@ -10411,7 +10411,7 @@ "ru": "Английский (Ямайка)", "zh-chs": "英文(牙買加)", "xloc": [ - "default.handlebars->27->989" + "default.handlebars->27->1000" ] }, { @@ -10428,7 +10428,7 @@ "ru": "Английский (Новая Зеландия)", "zh-chs": "英文(紐西蘭)", "xloc": [ - "default.handlebars->27->990" + "default.handlebars->27->1001" ] }, { @@ -10445,7 +10445,7 @@ "ru": "Английский (Филиппины)", "zh-chs": "英文(菲律賓)", "xloc": [ - "default.handlebars->27->991" + "default.handlebars->27->1002" ] }, { @@ -10462,7 +10462,7 @@ "ru": "Английский (Южная Африка)", "zh-chs": "英語(南非)", "xloc": [ - "default.handlebars->27->992" + "default.handlebars->27->1003" ] }, { @@ -10479,7 +10479,7 @@ "ru": "Английский (Тринидад и Тобаго)", "zh-chs": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->27->993" + "default.handlebars->27->1004" ] }, { @@ -10496,7 +10496,7 @@ "ru": "Английский (Великобритания)", "zh-chs": "英文(英國)", "xloc": [ - "default.handlebars->27->994" + "default.handlebars->27->1005" ] }, { @@ -10513,7 +10513,7 @@ "ru": "Английский (Соединенные Штаты)", "zh-chs": "美國英語)", "xloc": [ - "default.handlebars->27->995" + "default.handlebars->27->1006" ] }, { @@ -10530,7 +10530,7 @@ "ru": "Английский (Зимбабве)", "zh-chs": "英文(津巴布韋)", "xloc": [ - "default.handlebars->27->996" + "default.handlebars->27->1007" ] }, { @@ -10547,8 +10547,8 @@ "ru": "Ввод", "zh-chs": "輸入", "xloc": [ - "default.handlebars->27->1177", - "default.handlebars->27->1178" + "default.handlebars->27->1188", + "default.handlebars->27->1189" ] }, { @@ -10565,7 +10565,7 @@ "ru": "Введите разделенный запятыми список имен административных областей.", "zh-chs": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->27->1536" + "default.handlebars->27->1547" ] }, { @@ -10599,7 +10599,7 @@ "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.", "zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->27->746" + "default.handlebars->27->757" ] }, { @@ -10647,7 +10647,7 @@ "nl": "Voer uw telefoonnummer in dat geschikt is voor SMS. Na verificatie kan het nummer worden gebruikt voor inlogverificatie en andere meldingen.", "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "xloc": [ - "default.handlebars->27->917" + "default.handlebars->27->928" ] }, { @@ -10698,7 +10698,7 @@ "ru": "Эсперанто", "zh-chs": "世界語", "xloc": [ - "default.handlebars->27->997" + "default.handlebars->27->1008" ] }, { @@ -10715,7 +10715,7 @@ "ru": "Эстонский", "zh-chs": "愛沙尼亞語", "xloc": [ - "default.handlebars->27->998" + "default.handlebars->27->1009" ] }, { @@ -10732,7 +10732,7 @@ "ru": "Детали события", "zh-chs": "活動詳情", "xloc": [ - "default.handlebars->27->823" + "default.handlebars->27->834" ] }, { @@ -10749,7 +10749,7 @@ "ru": "Экспорт списка событий", "zh-chs": "活動列表導出", "xloc": [ - "default.handlebars->27->1457" + "default.handlebars->27->1468" ] }, { @@ -10821,7 +10821,7 @@ "ru": "Экспорт информации об устройстве", "zh-chs": "導出設備信息", "xloc": [ - "default.handlebars->27->423" + "default.handlebars->27->424" ] }, { @@ -10838,7 +10838,7 @@ "ru": "Расширенный ASCII", "zh-chs": "擴展ASCII", "xloc": [ - "default.handlebars->27->772" + "default.handlebars->27->783" ] }, { @@ -10872,7 +10872,7 @@ "ru": "Внешний", "zh-chs": "外部", "xloc": [ - "default.handlebars->27->1817" + "default.handlebars->27->1828" ] }, { @@ -10896,7 +10896,7 @@ "ru": "Mакедонский (БЮР)", "zh-chs": "FYRO馬其頓語", "xloc": [ - "default.handlebars->27->1048" + "default.handlebars->27->1059" ] }, { @@ -10913,7 +10913,7 @@ "ru": "Фарерский", "zh-chs": "法羅語", "xloc": [ - "default.handlebars->27->999" + "default.handlebars->27->1010" ] }, { @@ -10943,7 +10943,7 @@ "ko": "원격 터미널 세션을 시작하지 못했습니다 : {0} ({1})", "zh-chs": "无法启动远程终端会话{0}({1})", "xloc": [ - "default.handlebars->27->728" + "default.handlebars->27->739" ] }, { @@ -10960,7 +10960,7 @@ "ru": "Фарси (Персидский)", "zh-chs": "波斯語(波斯語)", "xloc": [ - "default.handlebars->27->1000" + "default.handlebars->27->1011" ] }, { @@ -10995,7 +10995,7 @@ "ru": "Функции", "zh-chs": "特徵", "xloc": [ - "default.handlebars->27->1209" + "default.handlebars->27->1220" ] }, { @@ -11012,7 +11012,7 @@ "ru": "Фиджи", "zh-chs": "斐濟", "xloc": [ - "default.handlebars->27->1001" + "default.handlebars->27->1012" ] }, { @@ -11030,8 +11030,8 @@ "zh-chs": "文件編輯器", "xloc": [ "default-mobile.handlebars->9->299", - "default.handlebars->27->462", - "default.handlebars->27->795" + "default.handlebars->27->468", + "default.handlebars->27->806" ] }, { @@ -11065,7 +11065,7 @@ "ru": "Драйвер файловой системы", "zh-chs": "FileSystemDriver", "xloc": [ - "default.handlebars->27->755" + "default.handlebars->27->766" ] }, { @@ -11084,8 +11084,8 @@ "xloc": [ "default-mobile.handlebars->9->167", "default-mobile.handlebars->9->250", - "default.handlebars->27->1298", - "default.handlebars->27->1754", + "default.handlebars->27->1309", + "default.handlebars->27->1765", "default.handlebars->27->236", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" @@ -11122,9 +11122,9 @@ "ru": "Уведомление файлов", "zh-chs": "文件通知", "xloc": [ - "default.handlebars->27->1217", - "default.handlebars->27->1665", - "default.handlebars->27->545" + "default.handlebars->27->1228", + "default.handlebars->27->1676", + "default.handlebars->27->551" ] }, { @@ -11141,9 +11141,9 @@ "ru": "Запрос файлов", "zh-chs": "文件提示", "xloc": [ - "default.handlebars->27->1216", - "default.handlebars->27->1664", - "default.handlebars->27->544" + "default.handlebars->27->1227", + "default.handlebars->27->1675", + "default.handlebars->27->550" ] }, { @@ -11180,7 +11180,7 @@ "ru": "Финский", "zh-chs": "芬蘭", "xloc": [ - "default.handlebars->27->1002" + "default.handlebars->27->1013" ] }, { @@ -11303,8 +11303,8 @@ "ru": "Принудительно сбросить пароль при следующем входе в систему.", "zh-chs": "下次登錄時強制重置密碼。", "xloc": [ - "default.handlebars->27->1530", - "default.handlebars->27->1705" + "default.handlebars->27->1541", + "default.handlebars->27->1716" ] }, { @@ -11390,8 +11390,8 @@ "ru": "Свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->27->1778", - "default.handlebars->27->1780" + "default.handlebars->27->1789", + "default.handlebars->27->1791" ] }, { @@ -11426,7 +11426,7 @@ "ru": "Французский (Бельгия)", "zh-chs": "法語(比利時)", "xloc": [ - "default.handlebars->27->1004" + "default.handlebars->27->1015" ] }, { @@ -11443,7 +11443,7 @@ "ru": "Французский (Канада)", "zh-chs": "法語(加拿大)", "xloc": [ - "default.handlebars->27->1005" + "default.handlebars->27->1016" ] }, { @@ -11460,7 +11460,7 @@ "ru": "Французский (Франция)", "zh-chs": "法語(法國)", "xloc": [ - "default.handlebars->27->1006" + "default.handlebars->27->1017" ] }, { @@ -11477,7 +11477,7 @@ "ru": "Французский (Люксембург)", "zh-chs": "法語(盧森堡)", "xloc": [ - "default.handlebars->27->1007" + "default.handlebars->27->1018" ] }, { @@ -11494,7 +11494,7 @@ "ru": "Французский (Монако)", "zh-chs": "法語(摩納哥)", "xloc": [ - "default.handlebars->27->1008" + "default.handlebars->27->1019" ] }, { @@ -11511,7 +11511,7 @@ "ru": "Французский (Стандартный)", "zh-chs": "法語(標準)", "xloc": [ - "default.handlebars->27->1003" + "default.handlebars->27->1014" ] }, { @@ -11528,7 +11528,7 @@ "ru": "Французский (Швейцария)", "zh-chs": "法語(瑞士)", "xloc": [ - "default.handlebars->27->1009" + "default.handlebars->27->1020" ] }, { @@ -11545,7 +11545,7 @@ "ru": "Фризский", "zh-chs": "弗里斯蘭語", "xloc": [ - "default.handlebars->27->1010" + "default.handlebars->27->1021" ] }, { @@ -11562,7 +11562,7 @@ "ru": "Фриульский", "zh-chs": "弗留利", "xloc": [ - "default.handlebars->27->1011" + "default.handlebars->27->1022" ] }, { @@ -11583,9 +11583,9 @@ "default-mobile.handlebars->9->391", "default-mobile.handlebars->9->400", "default-mobile.handlebars->9->418", - "default.handlebars->27->1184", - "default.handlebars->27->1316", - "default.handlebars->27->1542" + "default.handlebars->27->1195", + "default.handlebars->27->1327", + "default.handlebars->27->1553" ] }, { @@ -11602,7 +11602,7 @@ "ru": "Администратор с полным доступом (все права)", "zh-chs": "正式管理員(保留所有權利)", "xloc": [ - "default.handlebars->27->1350" + "default.handlebars->27->1361" ] }, { @@ -11633,7 +11633,7 @@ "ru": "Полные права на устройство", "zh-chs": "完整的設備權限", "xloc": [ - "default.handlebars->27->611" + "default.handlebars->27->617" ] }, { @@ -11649,7 +11649,7 @@ "ru": "Полные права", "zh-chs": "完全权利", "xloc": [ - "default.handlebars->27->627" + "default.handlebars->27->633" ] }, { @@ -11685,7 +11685,7 @@ "ru": "Администратор с полным доступом", "zh-chs": "正式管理員", "xloc": [ - "default.handlebars->27->1626" + "default.handlebars->27->1637" ] }, { @@ -11699,7 +11699,7 @@ "zh-chs": "显卡", "xloc": [ "default-mobile.handlebars->9->369", - "default.handlebars->27->885" + "default.handlebars->27->896" ] }, { @@ -11716,7 +11716,7 @@ "ru": "Гэльский (Ирландский)", "zh-chs": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->27->1013" + "default.handlebars->27->1024" ] }, { @@ -11733,7 +11733,7 @@ "ru": "Гэльский (Шотландия)", "zh-chs": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->27->1012" + "default.handlebars->27->1023" ] }, { @@ -11750,7 +11750,7 @@ "ru": "Галицкий", "zh-chs": "加拉契人", "xloc": [ - "default.handlebars->27->1014" + "default.handlebars->27->1025" ] }, { @@ -11824,7 +11824,7 @@ "ru": "Общая информация", "zh-chs": "一般信息", "xloc": [ - "default.handlebars->27->469" + "default.handlebars->27->475" ] }, { @@ -11858,7 +11858,7 @@ "ru": "Грузинский", "zh-chs": "格魯吉亞人", "xloc": [ - "default.handlebars->27->1015" + "default.handlebars->27->1026" ] }, { @@ -11875,7 +11875,7 @@ "ru": "Немецкий (Австрия)", "zh-chs": "德語(奧地利)", "xloc": [ - "default.handlebars->27->1017" + "default.handlebars->27->1028" ] }, { @@ -11892,7 +11892,7 @@ "ru": "Немецкий (Германия)", "zh-chs": "德文(德國)", "xloc": [ - "default.handlebars->27->1018" + "default.handlebars->27->1029" ] }, { @@ -11909,7 +11909,7 @@ "ru": "Немецкий (Лихтенштейн)", "zh-chs": "德文(列支敦士登)", "xloc": [ - "default.handlebars->27->1019" + "default.handlebars->27->1030" ] }, { @@ -11926,7 +11926,7 @@ "ru": "Немецкий (Люксембург)", "zh-chs": "德語(盧森堡)", "xloc": [ - "default.handlebars->27->1020" + "default.handlebars->27->1031" ] }, { @@ -11943,7 +11943,7 @@ "ru": "Немецкий (Стандартный)", "zh-chs": "德語(標準)", "xloc": [ - "default.handlebars->27->1016" + "default.handlebars->27->1027" ] }, { @@ -11960,7 +11960,7 @@ "ru": "Немецкий (Швейцария)", "zh-chs": "德語(瑞士)", "xloc": [ - "default.handlebars->27->1021" + "default.handlebars->27->1032" ] }, { @@ -11977,7 +11977,7 @@ "ru": "Получить учетные данные MQTT для этого устройства.", "zh-chs": "獲取此設備的MQTT登錄憑據。", "xloc": [ - "default.handlebars->27->592" + "default.handlebars->27->598" ] }, { @@ -12043,7 +12043,7 @@ "ru": "Хорошо", "zh-chs": "好", "xloc": [ - "default.handlebars->27->1180" + "default.handlebars->27->1191" ] }, { @@ -12080,7 +12080,7 @@ "ru": "Греческий", "zh-chs": "希臘語", "xloc": [ - "default.handlebars->27->1022" + "default.handlebars->27->1033" ] }, { @@ -12098,7 +12098,7 @@ "zh-chs": "組", "xloc": [ "default-mobile.handlebars->9->207", - "default.handlebars->27->497", + "default.handlebars->27->503", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, @@ -12116,9 +12116,9 @@ "ru": "Групповое действие", "zh-chs": "集體行動", "xloc": [ - "default.handlebars->27->1494", - "default.handlebars->27->1563", - "default.handlebars->27->426", + "default.handlebars->27->1505", + "default.handlebars->27->1574", + "default.handlebars->27->427", "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->3" @@ -12128,7 +12128,7 @@ "en": "Group Identifier", "nl": "Groepsidentificatie", "xloc": [ - "default.handlebars->27->1580" + "default.handlebars->27->1591" ] }, { @@ -12145,7 +12145,7 @@ "ru": "Члены группы", "zh-chs": "小組成員", "xloc": [ - "default.handlebars->27->1589" + "default.handlebars->27->1600" ] }, { @@ -12162,7 +12162,7 @@ "ru": "Права на группу для пользователя {0}.", "zh-chs": "用戶{0}的組權限。", "xloc": [ - "default.handlebars->27->1315" + "default.handlebars->27->1326" ] }, { @@ -12179,7 +12179,7 @@ "ru": "Права на группу для {0}.", "zh-chs": "{0}的組權限。", "xloc": [ - "default.handlebars->27->1314" + "default.handlebars->27->1325" ] }, { @@ -12230,7 +12230,7 @@ "ru": "Гуджарати", "zh-chs": "古久拉提", "xloc": [ - "default.handlebars->27->1023" + "default.handlebars->27->1034" ] }, { @@ -12266,7 +12266,7 @@ "ru": "Гаитянский", "zh-chs": "海地", "xloc": [ - "default.handlebars->27->1024" + "default.handlebars->27->1035" ] }, { @@ -12300,7 +12300,7 @@ "ru": "Жесткое отключение агента", "zh-chs": "硬斷開劑", "xloc": [ - "default.handlebars->27->912" + "default.handlebars->27->923" ] }, { @@ -12317,7 +12317,7 @@ "ru": "Всего кучи", "zh-chs": "堆總數", "xloc": [ - "default.handlebars->27->1819" + "default.handlebars->27->1830" ] }, { @@ -12334,7 +12334,7 @@ "ru": "Куча используется", "zh-chs": "堆使用", "xloc": [ - "default.handlebars->27->1818" + "default.handlebars->27->1829" ] }, { @@ -12351,7 +12351,7 @@ "ru": "Иврит", "zh-chs": "希伯來語", "xloc": [ - "default.handlebars->27->1025" + "default.handlebars->27->1036" ] }, { @@ -12385,7 +12385,7 @@ "ru": "Помочь перевести MeshCentral", "zh-chs": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->27->1139" + "default.handlebars->27->1150" ] }, { @@ -12471,7 +12471,7 @@ "ru": "Хинди", "zh-chs": "印地語", "xloc": [ - "default.handlebars->27->1026" + "default.handlebars->27->1037" ] }, { @@ -12503,7 +12503,7 @@ "zh-chs": "持有1份副本", "xloc": [ "default-mobile.handlebars->9->308", - "default.handlebars->27->804" + "default.handlebars->27->815" ] }, { @@ -12521,7 +12521,7 @@ "zh-chs": "持有1個搬家公司", "xloc": [ "default-mobile.handlebars->9->312", - "default.handlebars->27->808" + "default.handlebars->27->819" ] }, { @@ -12539,7 +12539,7 @@ "zh-chs": "保留{0}個條目進行複制", "xloc": [ "default-mobile.handlebars->9->306", - "default.handlebars->27->802" + "default.handlebars->27->813" ] }, { @@ -12557,7 +12557,7 @@ "zh-chs": "保留{0}個條目以進行移動", "xloc": [ "default-mobile.handlebars->9->310", - "default.handlebars->27->806" + "default.handlebars->27->817" ] }, { @@ -12575,7 +12575,7 @@ "zh-chs": "保持{2}的{0}入口{1}", "xloc": [ "default-mobile.handlebars->9->129", - "default.handlebars->27->1444" + "default.handlebars->27->1455" ] }, { @@ -12597,8 +12597,8 @@ "default-mobile.handlebars->9->212", "default-mobile.handlebars->9->272", "default.handlebars->27->263", - "default.handlebars->27->502", - "default.handlebars->27->721" + "default.handlebars->27->508", + "default.handlebars->27->732" ] }, { @@ -12615,7 +12615,7 @@ "ru": "Синхронизация имени хоста", "zh-chs": "主機名同步", "xloc": [ - "default.handlebars->27->1207" + "default.handlebars->27->1218" ] }, { @@ -12632,7 +12632,7 @@ "ru": "Венгерский", "zh-chs": "匈牙利", "xloc": [ - "default.handlebars->27->1027" + "default.handlebars->27->1038" ] }, { @@ -12687,9 +12687,9 @@ "xloc": [ "default-mobile.handlebars->9->338", "default-mobile.handlebars->9->342", - "default.handlebars->27->844", - "default.handlebars->27->854", - "default.handlebars->27->858" + "default.handlebars->27->855", + "default.handlebars->27->865", + "default.handlebars->27->869" ] }, { @@ -12708,9 +12708,9 @@ "xloc": [ "default-mobile.handlebars->9->336", "default-mobile.handlebars->9->340", - "default.handlebars->27->842", - "default.handlebars->27->852", - "default.handlebars->27->856" + "default.handlebars->27->853", + "default.handlebars->27->863", + "default.handlebars->27->867" ] }, { @@ -12729,10 +12729,10 @@ "xloc": [ "default-mobile.handlebars->9->335", "default-mobile.handlebars->9->337", - "default.handlebars->27->841", - "default.handlebars->27->843", - "default.handlebars->27->851", - "default.handlebars->27->853" + "default.handlebars->27->852", + "default.handlebars->27->854", + "default.handlebars->27->862", + "default.handlebars->27->864" ] }, { @@ -12795,8 +12795,8 @@ "xloc": [ "default-mobile.handlebars->9->339", "default-mobile.handlebars->9->341", - "default.handlebars->27->855", - "default.handlebars->27->857" + "default.handlebars->27->866", + "default.handlebars->27->868" ] }, { @@ -12834,7 +12834,7 @@ "ru": "Исландский", "zh-chs": "冰島的", "xloc": [ - "default.handlebars->27->1028" + "default.handlebars->27->1039" ] }, { @@ -12852,7 +12852,7 @@ "zh-chs": "圖標選擇", "xloc": [ "default-mobile.handlebars->9->270", - "default.handlebars->27->719" + "default.handlebars->27->730" ] }, { @@ -12870,7 +12870,7 @@ "zh-chs": "識別碼", "xloc": [ "default-mobile.handlebars->9->367", - "default.handlebars->27->883" + "default.handlebars->27->894" ] }, { @@ -12980,7 +12980,7 @@ "ru": "Индонезийский", "zh-chs": "印度尼西亞", "xloc": [ - "default.handlebars->27->1029" + "default.handlebars->27->1040" ] }, { @@ -13097,7 +13097,7 @@ "ru": "Установка CIRA", "zh-chs": "安裝CIRA", "xloc": [ - "default.handlebars->27->1240" + "default.handlebars->27->1251" ] }, { @@ -13114,7 +13114,7 @@ "ru": "Локальная установка", "zh-chs": "安裝本地", "xloc": [ - "default.handlebars->27->1242" + "default.handlebars->27->1253" ] }, { @@ -13131,8 +13131,8 @@ "ru": "Тип установки", "zh-chs": "安裝類型", "xloc": [ - "default.handlebars->27->1381", - "default.handlebars->27->1388", + "default.handlebars->27->1392", + "default.handlebars->27->1399", "default.handlebars->27->327", "default.handlebars->27->349" ] @@ -13151,7 +13151,7 @@ "ru": "Intel (F10 = ESC+[OM)", "zh-chs": "英特爾(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->27->774", + "default.handlebars->27->785", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -13169,10 +13169,10 @@ "ru": "Intel AMT", "zh-chs": "英特爾AMT", "xloc": [ - "default.handlebars->27->1400", - "default.handlebars->27->1408", - "default.handlebars->27->1815", - "default.handlebars->27->1837" + "default.handlebars->27->1411", + "default.handlebars->27->1419", + "default.handlebars->27->1826", + "default.handlebars->27->1848" ] }, { @@ -13213,14 +13213,14 @@ "en": "Intel AMT Redirection", "nl": "Intel AMT omleiding", "xloc": [ - "default.handlebars->27->1756" + "default.handlebars->27->1767" ] }, { "en": "Intel AMT WSMAN", "nl": "Intel AMT WSMAN", "xloc": [ - "default.handlebars->27->1755" + "default.handlebars->27->1766" ] }, { @@ -13254,7 +13254,7 @@ "ru": "Intel AMT активирован в режиме администратора", "zh-chs": "在管理控制模式下激活了Intel AMT", "xloc": [ - "default.handlebars->27->516" + "default.handlebars->27->522" ] }, { @@ -13271,7 +13271,7 @@ "ru": "Intel AMT активирован в режиме клиента", "zh-chs": "英特爾AMT在客戶端控制模式下被激活", "xloc": [ - "default.handlebars->27->514" + "default.handlebars->27->520" ] }, { @@ -13288,7 +13288,7 @@ "ru": "Intel AMT настроен с TLS безопасностью сети", "zh-chs": "英特爾AMT已設置TLS網絡安全性", "xloc": [ - "default.handlebars->27->518" + "default.handlebars->27->524" ] }, { @@ -13339,7 +13339,7 @@ "ru": "Intel ASCII", "zh-chs": "英特爾ASCII", "xloc": [ - "default.handlebars->27->773" + "default.handlebars->27->784" ] }, { @@ -13359,11 +13359,11 @@ "default-mobile.handlebars->9->194", "default-mobile.handlebars->9->229", "default-mobile.handlebars->9->234", - "default.handlebars->27->1224", - "default.handlebars->27->1234", - "default.handlebars->27->472", - "default.handlebars->27->527", - "default.handlebars->27->555" + "default.handlebars->27->1235", + "default.handlebars->27->1245", + "default.handlebars->27->478", + "default.handlebars->27->533", + "default.handlebars->27->561" ] }, { @@ -13381,7 +13381,7 @@ "zh-chs": "英特爾®AMT CIRA", "xloc": [ "default-mobile.handlebars->9->233", - "default.handlebars->27->553" + "default.handlebars->27->559" ] }, { @@ -13400,7 +13400,7 @@ "xloc": [ "default.handlebars->27->196", "default.handlebars->27->404", - "default.handlebars->27->552" + "default.handlebars->27->558" ] }, { @@ -13449,7 +13449,7 @@ "ru": "Политика Intel® AMT", "zh-chs": "英特爾®AMT政策", "xloc": [ - "default.handlebars->27->1263" + "default.handlebars->27->1274" ] }, { @@ -13483,7 +13483,7 @@ "ru": "Intel® AMT Тег", "zh-chs": "英特爾®AMT標籤", "xloc": [ - "default.handlebars->27->531" + "default.handlebars->27->537" ] }, { @@ -13536,8 +13536,8 @@ "zh-chs": "英特爾®AMT已連接", "xloc": [ "default-mobile.handlebars->9->244", - "default.handlebars->27->596", - "default.handlebars->27->597" + "default.handlebars->27->602", + "default.handlebars->27->603" ] }, { @@ -13554,8 +13554,8 @@ "ru": "События Intel® AMT desktop или serial.", "zh-chs": "英特爾®AMT桌面和串行事件。", "xloc": [ - "default.handlebars->27->1145", - "default.handlebars->27->1396" + "default.handlebars->27->1156", + "default.handlebars->27->1407" ] }, { @@ -13573,8 +13573,8 @@ "zh-chs": "檢測到英特爾®AMT", "xloc": [ "default-mobile.handlebars->9->245", - "default.handlebars->27->598", - "default.handlebars->27->599" + "default.handlebars->27->604", + "default.handlebars->27->605" ] }, { @@ -13591,7 +13591,7 @@ "ru": "Intel® AMT маршрутизируется и готов к использованию.", "zh-chs": "英特爾®AMT可路由並可以使用。", "xloc": [ - "default.handlebars->27->554" + "default.handlebars->27->560" ] }, { @@ -13644,8 +13644,8 @@ "zh-chs": "僅限英特爾®AMT,無代理", "xloc": [ "default-mobile.handlebars->9->382", - "default.handlebars->27->1174", - "default.handlebars->27->1200" + "default.handlebars->27->1185", + "default.handlebars->27->1211" ] }, { @@ -13662,7 +13662,7 @@ "ru": "Технология Intel® Active Management", "zh-chs": "英特爾®主動管理技術", "xloc": [ - "default.handlebars->27->526" + "default.handlebars->27->532" ] }, { @@ -13680,7 +13680,7 @@ "zh-chs": "英特爾®主動管理技術(英特爾®AMT)", "xloc": [ "default-mobile.handlebars->9->359", - "default.handlebars->27->875" + "default.handlebars->27->886" ] }, { @@ -13698,7 +13698,7 @@ "zh-chs": "英特爾®ME", "xloc": [ "default-mobile.handlebars->9->228", - "default.handlebars->27->525" + "default.handlebars->27->531" ] }, { @@ -13711,7 +13711,7 @@ "nl": "Intel® Manageability Engine", "zh-chs": "英特尔®可管理性引擎", "xloc": [ - "default.handlebars->27->524" + "default.handlebars->27->530" ] }, { @@ -13729,7 +13729,7 @@ "zh-chs": "英特爾®SM", "xloc": [ "default-mobile.handlebars->9->230", - "default.handlebars->27->529" + "default.handlebars->27->535" ] }, { @@ -13746,7 +13746,7 @@ "ru": "Intel® Standard Manageability", "zh-chs": "英特爾®標準可管理性", "xloc": [ - "default.handlebars->27->528" + "default.handlebars->27->534" ] }, { @@ -13847,7 +13847,7 @@ "ru": "Интерактивный", "zh-chs": "互動", "xloc": [ - "default.handlebars->27->756" + "default.handlebars->27->767" ] }, { @@ -13864,8 +13864,8 @@ "ru": "Только интерактивный режим", "zh-chs": "僅限互動", "xloc": [ - "default.handlebars->27->1384", - "default.handlebars->27->1391", + "default.handlebars->27->1395", + "default.handlebars->27->1402", "default.handlebars->27->330", "default.handlebars->27->352" ] @@ -13884,7 +13884,7 @@ "ru": "Интерфейсы", "zh-chs": "介面", "xloc": [ - "default.handlebars->27->575" + "default.handlebars->27->581" ] }, { @@ -13901,7 +13901,7 @@ "ru": "Инуктитут", "zh-chs": "因紐特人", "xloc": [ - "default.handlebars->27->1030" + "default.handlebars->27->1041" ] }, { @@ -13918,7 +13918,7 @@ "ru": "Некорректный тип группы устройств", "zh-chs": "無效的設備組類型", "xloc": [ - "default.handlebars->27->1792" + "default.handlebars->27->1803" ] }, { @@ -13935,7 +13935,7 @@ "ru": "Некорректный JSON", "zh-chs": "無效的JSON", "xloc": [ - "default.handlebars->27->1786" + "default.handlebars->27->1797" ] }, { @@ -13952,8 +13952,8 @@ "ru": "Некорректный формат файла JSON.", "zh-chs": "無效的JSON文件格式。", "xloc": [ - "default.handlebars->27->1508", - "default.handlebars->27->1510" + "default.handlebars->27->1519", + "default.handlebars->27->1521" ] }, { @@ -13970,7 +13970,7 @@ "ru": "Некорректный файл JSON: {0}.", "zh-chs": "無效的JSON文件:{0}。", "xloc": [ - "default.handlebars->27->1506" + "default.handlebars->27->1517" ] }, { @@ -13987,7 +13987,7 @@ "ru": "Некорректная сигнатура PKCS", "zh-chs": "無效的PKCS簽名", "xloc": [ - "default.handlebars->27->1784" + "default.handlebars->27->1795" ] }, { @@ -14004,7 +14004,7 @@ "ru": "Некорректная сигнатура RSA", "zh-chs": "無效的RSA密碼", "xloc": [ - "default.handlebars->27->1785" + "default.handlebars->27->1796" ] }, { @@ -14140,7 +14140,7 @@ "ru": "Коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->27->1386" + "default.handlebars->27->1397" ] }, { @@ -14173,7 +14173,7 @@ "ru": "Пригласить", "zh-chs": "邀請", "xloc": [ - "default.handlebars->27->1250", + "default.handlebars->27->1261", "default.handlebars->27->260", "default.handlebars->27->342" ] @@ -14192,11 +14192,11 @@ "ru": "Пригласительные коды", "zh-chs": "邀請碼", "xloc": [ - "default.handlebars->27->1228", - "default.handlebars->27->1380", - "default.handlebars->27->1385", - "default.handlebars->27->1387", - "default.handlebars->27->1392" + "default.handlebars->27->1239", + "default.handlebars->27->1391", + "default.handlebars->27->1396", + "default.handlebars->27->1398", + "default.handlebars->27->1403" ] }, { @@ -14227,7 +14227,7 @@ "nl": "Nodig iemand uit om de mesh-agent in deze apparaatgroep te installeren.", "zh-chs": "邀请某人在该设备组上安装网状代理。", "xloc": [ - "default.handlebars->27->1249", + "default.handlebars->27->1260", "default.handlebars->27->259" ] }, @@ -14262,7 +14262,7 @@ "ru": "Ирландский", "zh-chs": "愛爾蘭人", "xloc": [ - "default.handlebars->27->1031" + "default.handlebars->27->1042" ] }, { @@ -14279,7 +14279,7 @@ "ru": "Итальянский (Стандартный)", "zh-chs": "意大利語(標準)", "xloc": [ - "default.handlebars->27->1032" + "default.handlebars->27->1043" ] }, { @@ -14296,7 +14296,7 @@ "ru": "Итальянский (Швейцария)", "zh-chs": "義大利文(瑞士)", "xloc": [ - "default.handlebars->27->1033" + "default.handlebars->27->1044" ] }, { @@ -14313,9 +14313,9 @@ "ru": "Формат JSON", "zh-chs": "JSON格式", "xloc": [ - "default.handlebars->27->1455", - "default.handlebars->27->1514", - "default.handlebars->27->433" + "default.handlebars->27->1466", + "default.handlebars->27->1525", + "default.handlebars->27->439" ] }, { @@ -14332,7 +14332,7 @@ "ru": "Японский", "zh-chs": "日本", "xloc": [ - "default.handlebars->27->1034" + "default.handlebars->27->1045" ] }, { @@ -14349,7 +14349,7 @@ "ru": "Каннада", "zh-chs": "卡納達語", "xloc": [ - "default.handlebars->27->1035" + "default.handlebars->27->1046" ] }, { @@ -14366,7 +14366,7 @@ "ru": "Кашмирский", "zh-chs": "克什米爾語", "xloc": [ - "default.handlebars->27->1036" + "default.handlebars->27->1047" ] }, { @@ -14383,7 +14383,7 @@ "ru": "Казахский", "zh-chs": "哈薩克語", "xloc": [ - "default.handlebars->27->1037" + "default.handlebars->27->1048" ] }, { @@ -14400,7 +14400,7 @@ "ru": "Драйвер ядра", "zh-chs": "內核驅動程序", "xloc": [ - "default.handlebars->27->757" + "default.handlebars->27->768" ] }, { @@ -14417,8 +14417,8 @@ "ru": "Имя ключа", "zh-chs": "鍵名", "xloc": [ - "default.handlebars->27->928", - "default.handlebars->27->931" + "default.handlebars->27->939", + "default.handlebars->27->942" ] }, { @@ -14459,7 +14459,7 @@ "ru": "Кхмерский", "zh-chs": "高棉語", "xloc": [ - "default.handlebars->27->1038" + "default.handlebars->27->1049" ] }, { @@ -14476,7 +14476,7 @@ "ru": "Киргизский", "zh-chs": "吉爾吉斯", "xloc": [ - "default.handlebars->27->1039" + "default.handlebars->27->1050" ] }, { @@ -14493,7 +14493,7 @@ "ru": "Клингонский", "zh-chs": "克林貢", "xloc": [ - "default.handlebars->27->1040" + "default.handlebars->27->1051" ] }, { @@ -14511,7 +14511,7 @@ "zh-chs": "已知的", "xloc": [ "default-mobile.handlebars->9->358", - "default.handlebars->27->874" + "default.handlebars->27->885" ] }, { @@ -14528,7 +14528,7 @@ "ru": "Korean", "zh-chs": "韓語", "xloc": [ - "default.handlebars->27->1041" + "default.handlebars->27->1052" ] }, { @@ -14545,7 +14545,7 @@ "ru": "Корейский (Северная Корея)", "zh-chs": "韓語(朝鮮)", "xloc": [ - "default.handlebars->27->1042" + "default.handlebars->27->1053" ] }, { @@ -14562,7 +14562,7 @@ "ru": "Корейский (Южная Корея)", "zh-chs": "韓語(韓國)", "xloc": [ - "default.handlebars->27->1043" + "default.handlebars->27->1054" ] }, { @@ -14579,8 +14579,8 @@ "ru": "LF", "zh-chs": "如果", "xloc": [ - "default.handlebars->27->769", - "default.handlebars->27->778" + "default.handlebars->27->780", + "default.handlebars->27->789" ] }, { @@ -14597,7 +14597,7 @@ "ru": "Язык", "zh-chs": "語言", "xloc": [ - "default.handlebars->27->1137" + "default.handlebars->27->1148" ] }, { @@ -14631,7 +14631,7 @@ "ru": "Большой Фокус", "zh-chs": "大焦點", "xloc": [ - "default.handlebars->27->745" + "default.handlebars->27->756" ] }, { @@ -14814,7 +14814,7 @@ "ru": "Последний доступ", "zh-chs": "最後訪問", "xloc": [ - "default.handlebars->27->1463" + "default.handlebars->27->1474" ] }, { @@ -14831,7 +14831,7 @@ "ru": "Последний вход в систему", "zh-chs": "上次登錄", "xloc": [ - "default.handlebars->27->1647" + "default.handlebars->27->1658" ] }, { @@ -14854,9 +14854,9 @@ "default.handlebars->27->69", "default.handlebars->27->71", "default.handlebars->27->73", - "default.handlebars->27->832", - "default.handlebars->27->833", - "default.handlebars->27->834" + "default.handlebars->27->843", + "default.handlebars->27->844", + "default.handlebars->27->845" ] }, { @@ -14876,8 +14876,8 @@ "default-mobile.handlebars->9->323", "default-mobile.handlebars->9->325", "default.handlebars->27->68", - "default.handlebars->27->829", - "default.handlebars->27->831" + "default.handlebars->27->840", + "default.handlebars->27->842" ] }, { @@ -14894,7 +14894,7 @@ "ru": "Последнее изменение: {0}", "zh-chs": "上次更改:{0}", "xloc": [ - "default.handlebars->27->1651" + "default.handlebars->27->1662" ] }, { @@ -14945,7 +14945,7 @@ "ru": "Последний вход в систему: {0}", "zh-chs": "上次登錄:{0}", "xloc": [ - "default.handlebars->27->1473" + "default.handlebars->27->1484" ] }, { @@ -14962,7 +14962,7 @@ "ru": "Последнее посещение:", "zh-chs": "最後一次露面:", "xloc": [ - "default.handlebars->27->602", + "default.handlebars->27->608", "default.handlebars->27->65" ] }, @@ -15031,7 +15031,7 @@ "ru": "Латинский", "zh-chs": "拉丁", "xloc": [ - "default.handlebars->27->1044" + "default.handlebars->27->1055" ] }, { @@ -15048,28 +15048,28 @@ "ru": "Латышский", "zh-chs": "拉脫維亞語", "xloc": [ - "default.handlebars->27->1045" + "default.handlebars->27->1056" ] }, { "en": "Launch MeshCentral Router", "nl": "Start MeshCentral Router", "xloc": [ - "default.handlebars->27->696" + "default.handlebars->27->707" ] }, { "en": "Launch noVNC session to this device", "nl": "Start een noVNC-sessie op dit apparaat", "xloc": [ - "default.handlebars->27->588" + "default.handlebars->27->594" ] }, { "en": "Launch web-based RDP session to this device", "nl": "Start een webgebaseerde RDP-sessie op dit apparaat", "xloc": [ - "default.handlebars->27->590" + "default.handlebars->27->596" ] }, { @@ -15082,7 +15082,7 @@ "nl": "Leeg laten voor geen.", "zh-chs": "一无所有。", "xloc": [ - "default.handlebars->27->1691" + "default.handlebars->27->1702" ] }, { @@ -15121,7 +15121,7 @@ "ru": "Меньше", "zh-chs": "減", "xloc": [ - "default.handlebars->27->1854" + "default.handlebars->27->1865" ] }, { @@ -15137,8 +15137,8 @@ "ru": "Предельные события", "zh-chs": "极限赛事", "xloc": [ - "default.handlebars->27->623", - "default.handlebars->27->642" + "default.handlebars->27->629", + "default.handlebars->27->648" ] }, { @@ -15174,9 +15174,9 @@ "zh-chs": "有限輸入", "xloc": [ "default-mobile.handlebars->9->431", - "default.handlebars->27->1364", - "default.handlebars->27->616", - "default.handlebars->27->635" + "default.handlebars->27->1375", + "default.handlebars->27->622", + "default.handlebars->27->641" ] }, { @@ -15194,7 +15194,7 @@ "zh-chs": "僅限於輸入", "xloc": [ "default-mobile.handlebars->9->406", - "default.handlebars->27->1322" + "default.handlebars->27->1333" ] }, { @@ -15367,7 +15367,7 @@ "ru": "Linux ARM, Raspberry Pi (32bit)", "zh-chs": "Linux ARM,Raspberry Pi(32位)", "xloc": [ - "default.handlebars->27->703" + "default.handlebars->27->714" ] }, { @@ -15473,7 +15473,7 @@ "ru": "Linux x86 (32bit)", "zh-chs": "Linux x86(32位)", "xloc": [ - "default.handlebars->27->700" + "default.handlebars->27->711" ] }, { @@ -15490,7 +15490,13 @@ "ru": "Linux x86 (64bit)", "zh-chs": "Linux x86(64位)", "xloc": [ - "default.handlebars->27->701" + "default.handlebars->27->712" + ] + }, + { + "en": "Linux/BSD/macOS Command Shell", + "xloc": [ + "default.handlebars->27->434" ] }, { @@ -15525,7 +15531,7 @@ "ru": "Литовский", "zh-chs": "立陶宛語", "xloc": [ - "default.handlebars->27->1046" + "default.handlebars->27->1057" ] }, { @@ -15543,10 +15549,10 @@ "zh-chs": "載入中...", "xloc": [ "default-mobile.handlebars->9->72", - "default.handlebars->27->1191", - "default.handlebars->27->1195", - "default.handlebars->27->692", - "default.handlebars->27->924" + "default.handlebars->27->1202", + "default.handlebars->27->1206", + "default.handlebars->27->703", + "default.handlebars->27->935" ] }, { @@ -15615,7 +15621,7 @@ "ru": "Настройки локализации", "zh-chs": "本地化設置", "xloc": [ - "default.handlebars->27->1140", + "default.handlebars->27->1151", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -15633,7 +15639,7 @@ "ru": "Местонахождение", "zh-chs": "位置", "xloc": [ - "default.handlebars->27->577" + "default.handlebars->27->583" ] }, { @@ -15667,7 +15673,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->27->1549" + "default.handlebars->27->1560" ] }, { @@ -15684,7 +15690,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->27->1491" + "default.handlebars->27->1502" ] }, { @@ -15701,7 +15707,7 @@ "ru": "Заблокирован", "zh-chs": "已鎖定", "xloc": [ - "default.handlebars->27->1474" + "default.handlebars->27->1485" ] }, { @@ -15718,7 +15724,7 @@ "ru": "Заблокированная учетная запись", "zh-chs": "賬戶鎖定", "xloc": [ - "default.handlebars->27->1623" + "default.handlebars->27->1634" ] }, { @@ -15735,7 +15741,7 @@ "ru": "Добавить событие", "zh-chs": "記錄事件", "xloc": [ - "default.handlebars->27->566" + "default.handlebars->27->572" ] }, { @@ -15905,7 +15911,7 @@ "ru": "Люксембургский", "zh-chs": "盧森堡語", "xloc": [ - "default.handlebars->27->1047" + "default.handlebars->27->1058" ] }, { @@ -15924,10 +15930,10 @@ "xloc": [ "default-mobile.handlebars->9->331", "default-mobile.handlebars->9->333", - "default.handlebars->27->837", - "default.handlebars->27->839", - "default.handlebars->27->847", - "default.handlebars->27->849" + "default.handlebars->27->848", + "default.handlebars->27->850", + "default.handlebars->27->858", + "default.handlebars->27->860" ] }, { @@ -15963,8 +15969,8 @@ "zh-chs": "MAC:{0}", "xloc": [ "default-mobile.handlebars->9->334", - "default.handlebars->27->840", - "default.handlebars->27->850" + "default.handlebars->27->851", + "default.handlebars->27->861" ] }, { @@ -15982,8 +15988,8 @@ "zh-chs": "MAC:{0},網關:{1}", "xloc": [ "default-mobile.handlebars->9->332", - "default.handlebars->27->838", - "default.handlebars->27->848" + "default.handlebars->27->849", + "default.handlebars->27->859" ] }, { @@ -16040,9 +16046,9 @@ "default-mobile.handlebars->9->236", "default.handlebars->27->203", "default.handlebars->27->411", - "default.handlebars->27->559", - "default.handlebars->27->902", - "default.handlebars->27->903", + "default.handlebars->27->565", + "default.handlebars->27->913", + "default.handlebars->27->914", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -16077,7 +16083,7 @@ "ru": "MQTT Вход", "zh-chs": "MQTT登錄", "xloc": [ - "default.handlebars->27->593" + "default.handlebars->27->599" ] }, { @@ -16095,7 +16101,7 @@ "zh-chs": "MQTT通道已連接", "xloc": [ "default-mobile.handlebars->9->246", - "default.handlebars->27->601" + "default.handlebars->27->607" ] }, { @@ -16113,7 +16119,7 @@ "zh-chs": "MQTT已連接", "xloc": [ "default.handlebars->27->163", - "default.handlebars->27->600" + "default.handlebars->27->606" ] }, { @@ -16132,7 +16138,7 @@ "xloc": [ "default.handlebars->27->202", "default.handlebars->27->410", - "default.handlebars->27->558" + "default.handlebars->27->564" ] }, { @@ -16183,7 +16189,7 @@ "ru": "MacOS (64bit)", "zh-chs": "MacOS(64位)", "xloc": [ - "default.handlebars->27->702" + "default.handlebars->27->713" ] }, { @@ -16236,7 +16242,7 @@ "ru": "Сообщения главного сервера", "zh-chs": "主服務器消息", "xloc": [ - "default.handlebars->27->1826" + "default.handlebars->27->1837" ] }, { @@ -16253,7 +16259,7 @@ "ru": "Малайский", "zh-chs": "馬來語", "xloc": [ - "default.handlebars->27->1049" + "default.handlebars->27->1060" ] }, { @@ -16270,7 +16276,7 @@ "ru": "Малаяламский", "zh-chs": "馬拉雅拉姆語", "xloc": [ - "default.handlebars->27->1050" + "default.handlebars->27->1061" ] }, { @@ -16287,7 +16293,7 @@ "ru": "Мальтийский", "zh-chs": "馬耳他語", "xloc": [ - "default.handlebars->27->1051" + "default.handlebars->27->1062" ] }, { @@ -16324,8 +16330,8 @@ "xloc": [ "default-mobile.handlebars->9->403", "default-mobile.handlebars->9->421", - "default.handlebars->27->1319", - "default.handlebars->27->1353" + "default.handlebars->27->1330", + "default.handlebars->27->1364" ] }, { @@ -16344,8 +16350,8 @@ "xloc": [ "default-mobile.handlebars->9->402", "default-mobile.handlebars->9->420", - "default.handlebars->27->1318", - "default.handlebars->27->1352" + "default.handlebars->27->1329", + "default.handlebars->27->1363" ] }, { @@ -16361,14 +16367,14 @@ "ru": "Управление устройствами", "zh-chs": "管理设备", "xloc": [ - "default.handlebars->27->630" + "default.handlebars->27->636" ] }, { "en": "Manage Recordings", "nl": "Beheeer opnames", "xloc": [ - "default.handlebars->27->1548" + "default.handlebars->27->1559" ] }, { @@ -16402,7 +16408,7 @@ "ru": "Управление группами пользователя", "zh-chs": "管理用戶組", "xloc": [ - "default.handlebars->27->1547" + "default.handlebars->27->1558" ] }, { @@ -16419,8 +16425,8 @@ "ru": "Управление пользователями", "zh-chs": "管理用戶", "xloc": [ - "default.handlebars->27->1546", - "default.handlebars->27->629" + "default.handlebars->27->1557", + "default.handlebars->27->635" ] }, { @@ -16524,7 +16530,7 @@ "ru": "Управление с помощью программного агента", "zh-chs": "使用軟件代理進行管理", "xloc": [ - "default.handlebars->27->1173" + "default.handlebars->27->1184" ] }, { @@ -16542,7 +16548,7 @@ "zh-chs": "使用軟件代理進行管理", "xloc": [ "default-mobile.handlebars->9->383", - "default.handlebars->27->1201" + "default.handlebars->27->1212" ] }, { @@ -16559,7 +16565,7 @@ "ru": "Менеджер", "zh-chs": "經理", "xloc": [ - "default.handlebars->27->1479" + "default.handlebars->27->1490" ] }, { @@ -16610,7 +16616,7 @@ "ru": "Маори", "zh-chs": "毛利人", "xloc": [ - "default.handlebars->27->1052" + "default.handlebars->27->1063" ] }, { @@ -16645,7 +16651,7 @@ "ru": "Маратхи", "zh-chs": "馬拉地語", "xloc": [ - "default.handlebars->27->1053" + "default.handlebars->27->1064" ] }, { @@ -16662,7 +16668,7 @@ "ru": "Достигнуто максимальное число сессий", "zh-chs": "達到的會話數上限", "xloc": [ - "default.handlebars->27->1790" + "default.handlebars->27->1801" ] }, { @@ -16716,7 +16722,7 @@ "ru": "Мегабайт", "zh-chs": "兆字節", "xloc": [ - "default.handlebars->27->1816" + "default.handlebars->27->1827" ] }, { @@ -16734,8 +16740,8 @@ "zh-chs": "記憶", "xloc": [ "default-mobile.handlebars->9->374", - "default.handlebars->27->1807", - "default.handlebars->27->890", + "default.handlebars->27->1818", + "default.handlebars->27->901", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -16761,10 +16767,10 @@ "default.handlebars->27->367", "default.handlebars->27->371", "default.handlebars->27->374", - "default.handlebars->27->507", - "default.handlebars->27->551", - "default.handlebars->27->828", - "default.handlebars->27->835" + "default.handlebars->27->513", + "default.handlebars->27->557", + "default.handlebars->27->839", + "default.handlebars->27->846" ] }, { @@ -16782,7 +16788,7 @@ "zh-chs": "網格代理控制台", "xloc": [ "default-mobile.handlebars->9->410", - "default.handlebars->27->1327" + "default.handlebars->27->1338" ] }, { @@ -16799,7 +16805,7 @@ "ru": "Ретранслятор Mesh", "zh-chs": "網狀中繼", "xloc": [ - "default.handlebars->27->557" + "default.handlebars->27->563" ] }, { @@ -16818,7 +16824,7 @@ "xloc": [ "default.handlebars->27->194", "default.handlebars->27->402", - "default.handlebars->27->550" + "default.handlebars->27->556" ] }, { @@ -16837,7 +16843,7 @@ "xloc": [ "default.handlebars->27->200", "default.handlebars->27->408", - "default.handlebars->27->556" + "default.handlebars->27->562" ] }, { @@ -16854,8 +16860,8 @@ "ru": "MeshAction (.txt)", "zh-chs": "MeshAction(.txt)", "xloc": [ - "default.handlebars->27->709", - "default.handlebars->27->711" + "default.handlebars->27->720", + "default.handlebars->27->722" ] }, { @@ -16872,7 +16878,7 @@ "ru": "Трафик MeshAgent", "zh-chs": "MeshAgent流量", "xloc": [ - "default.handlebars->27->1828" + "default.handlebars->27->1839" ] }, { @@ -16889,7 +16895,7 @@ "ru": "Обновление MeshAgent", "zh-chs": "MeshAgent更新", "xloc": [ - "default.handlebars->27->1829" + "default.handlebars->27->1840" ] }, { @@ -16923,7 +16929,7 @@ "ru": "Ошибки MeshCentral", "zh-chs": "網格中心錯誤", "xloc": [ - "default.handlebars->27->1194" + "default.handlebars->27->1205" ] }, { @@ -16940,7 +16946,7 @@ "ru": "MeshCentral Router ", "zh-chs": "MeshCentral路由器", "xloc": [ - "default.handlebars->27->697" + "default.handlebars->27->708" ] }, { @@ -16957,7 +16963,7 @@ "ru": "MeshCentral Router это инструмент Windows для сопоставления портов TCP. Например, через этот сервер можно установить подключение по RDP к удаленному устройству.", "zh-chs": "MeshCentral Router是Windows工具,用於TCP端口映射。例如,您可以通過該服務器將RDP放入遠程設備。", "xloc": [ - "default.handlebars->27->693" + "default.handlebars->27->704" ] }, { @@ -16992,7 +16998,7 @@ "ru": "Соединения сервера MeshCentral", "zh-chs": "MeshCentral服務器對等", "xloc": [ - "default.handlebars->27->1827" + "default.handlebars->27->1838" ] }, { @@ -17028,7 +17034,7 @@ "xloc": [ "default.handlebars->27->115", "default.handlebars->27->117", - "default.handlebars->27->1190" + "default.handlebars->27->1201" ] }, { @@ -17046,8 +17052,8 @@ "zh-chs": "MeshCmd", "xloc": [ "default.handlebars->27->218", - "default.handlebars->27->579", - "default.handlebars->27->707" + "default.handlebars->27->585", + "default.handlebars->27->718" ] }, { @@ -17064,7 +17070,7 @@ "ru": "MeshCmd (Linux ARM, 32bit)", "zh-chs": "MeshCmd(Linux ARM,32位)", "xloc": [ - "default.handlebars->27->718" + "default.handlebars->27->729" ] }, { @@ -17081,7 +17087,7 @@ "ru": "MeshCmd (Linux x86, 32bit)", "zh-chs": "MeshCmd(Linux x86,32bit)", "xloc": [ - "default.handlebars->27->715" + "default.handlebars->27->726" ] }, { @@ -17098,7 +17104,7 @@ "ru": "MeshCmd (Linux x86, 64bit)", "zh-chs": "MeshCmd(Linux x86,64bit)", "xloc": [ - "default.handlebars->27->716" + "default.handlebars->27->727" ] }, { @@ -17115,7 +17121,7 @@ "ru": "MeshCmd (MacOS, 64bit)", "zh-chs": "MeshCmd(MacOS,64位)", "xloc": [ - "default.handlebars->27->717" + "default.handlebars->27->728" ] }, { @@ -17132,7 +17138,7 @@ "ru": "MeshCmd (приложение Win32)", "zh-chs": "MeshCmd(Win32可執行文件)", "xloc": [ - "default.handlebars->27->713" + "default.handlebars->27->724" ] }, { @@ -17149,7 +17155,7 @@ "ru": "MeshCmd (приложение Win64)", "zh-chs": "MeshCmd(Win64可執行文件)", "xloc": [ - "default.handlebars->27->714" + "default.handlebars->27->725" ] }, { @@ -17166,7 +17172,7 @@ "ru": "MeshCmd это утилита с командной строкой, которая позволяет выполнить множество операций. Файл с командами может быть опционально скачан и отредактирован для указания информации о сервере и учетных данных.", "zh-chs": "MeshCmd是執行許多不同操作的命令行工具。可以選擇下載和編輯操作文件以提供服務器信息和憑據。", "xloc": [ - "default.handlebars->27->704" + "default.handlebars->27->715" ] }, { @@ -17238,8 +17244,8 @@ "zh-chs": "信息", "xloc": [ "default.handlebars->27->331", - "default.handlebars->27->568", - "default.handlebars->27->673" + "default.handlebars->27->574", + "default.handlebars->27->684" ] }, { @@ -17256,7 +17262,7 @@ "ru": "Диспетчер сообщения", "zh-chs": "郵件調度程序", "xloc": [ - "default.handlebars->27->1825" + "default.handlebars->27->1836" ] }, { @@ -17354,7 +17360,7 @@ "zh-chs": "模型", "xloc": [ "default-mobile.handlebars->9->375", - "default.handlebars->27->891" + "default.handlebars->27->902" ] }, { @@ -17371,7 +17377,7 @@ "ru": "Изменить позицию узла", "zh-chs": "修改節點位置", "xloc": [ - "default.handlebars->27->466" + "default.handlebars->27->472" ] }, { @@ -17388,7 +17394,7 @@ "ru": "Молдавский", "zh-chs": "摩爾達維亞人", "xloc": [ - "default.handlebars->27->1054" + "default.handlebars->27->1065" ] }, { @@ -17405,7 +17411,7 @@ "ru": "Еще", "zh-chs": "更多", "xloc": [ - "default.handlebars->27->1853" + "default.handlebars->27->1864" ] }, { @@ -17423,7 +17429,7 @@ "zh-chs": "母板", "xloc": [ "default-mobile.handlebars->9->370", - "default.handlebars->27->886" + "default.handlebars->27->897" ] }, { @@ -17440,7 +17446,7 @@ "ru": "Переместить это устройство в другую группу устройств", "zh-chs": "將此設備移到其他設備組", "xloc": [ - "default.handlebars->27->570" + "default.handlebars->27->576" ] }, { @@ -17457,7 +17463,7 @@ "ru": "Переместить в группу устройств", "zh-chs": "移至設備組", "xloc": [ - "default.handlebars->27->424" + "default.handlebars->27->425" ] }, { @@ -17481,7 +17487,7 @@ "en": "Multiplexor", "nl": "Multiplexor", "xloc": [ - "default.handlebars->27->1768" + "default.handlebars->27->1779" ] }, { @@ -17596,7 +17602,7 @@ "ru": "Консоль моего сервера", "zh-chs": "我的服務器控制台", "xloc": [ - "default.handlebars->27->897" + "default.handlebars->27->908" ] }, { @@ -17724,8 +17730,8 @@ "ru": "Мой ключ", "zh-chs": "我的鑰匙", "xloc": [ - "default.handlebars->27->929", - "default.handlebars->27->932" + "default.handlebars->27->940", + "default.handlebars->27->943" ] }, { @@ -17749,20 +17755,20 @@ "default-mobile.handlebars->9->397", "default-mobile.handlebars->9->97", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->27->1171", - "default.handlebars->27->1202", - "default.handlebars->27->1285", - "default.handlebars->27->1461", - "default.handlebars->27->1554", - "default.handlebars->27->1570", - "default.handlebars->27->1577", - "default.handlebars->27->1610", - "default.handlebars->27->1629", - "default.handlebars->27->495", - "default.handlebars->27->751", + "default.handlebars->27->1182", + "default.handlebars->27->1213", + "default.handlebars->27->1296", + "default.handlebars->27->1472", + "default.handlebars->27->1565", + "default.handlebars->27->1581", + "default.handlebars->27->1588", + "default.handlebars->27->1621", + "default.handlebars->27->1640", + "default.handlebars->27->501", "default.handlebars->27->76", - "default.handlebars->27->824", - "default.handlebars->27->880", + "default.handlebars->27->762", + "default.handlebars->27->835", + "default.handlebars->27->891", "default.handlebars->27->90", "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", @@ -17800,7 +17806,7 @@ "ru": "Имя1, Имя2, Имя3", "zh-chs": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->27->1538" + "default.handlebars->27->1549" ] }, { @@ -17817,7 +17823,7 @@ "ru": "Навахо", "zh-chs": "納瓦霍人", "xloc": [ - "default.handlebars->27->1055" + "default.handlebars->27->1066" ] }, { @@ -17834,7 +17840,7 @@ "ru": "Ндонга", "zh-chs": "恩東加", "xloc": [ - "default.handlebars->27->1056" + "default.handlebars->27->1067" ] }, { @@ -17851,7 +17857,7 @@ "ru": "Непальский", "zh-chs": "尼泊爾文", "xloc": [ - "default.handlebars->27->1057" + "default.handlebars->27->1068" ] }, { @@ -17868,7 +17874,7 @@ "ru": "Сетевые интерфейсы", "zh-chs": "網絡接口", "xloc": [ - "default.handlebars->27->691" + "default.handlebars->27->702" ] }, { @@ -17900,8 +17906,8 @@ "zh-chs": "聯網", "xloc": [ "default-mobile.handlebars->9->343", - "default.handlebars->27->845", - "default.handlebars->27->859" + "default.handlebars->27->856", + "default.handlebars->27->870" ] }, { @@ -17954,9 +17960,9 @@ "zh-chs": "新設備組", "xloc": [ "default-mobile.handlebars->9->91", - "default.handlebars->27->1164", - "default.handlebars->27->1176", - "default.handlebars->27->683" + "default.handlebars->27->1175", + "default.handlebars->27->1187", + "default.handlebars->27->694" ] }, { @@ -17975,8 +17981,8 @@ "xloc": [ "default-mobile.handlebars->9->120", "default-mobile.handlebars->9->292", - "default.handlebars->27->1434", - "default.handlebars->27->788", + "default.handlebars->27->1445", + "default.handlebars->27->799", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -18031,8 +18037,8 @@ "xloc": [ "default-mobile.handlebars->9->86", "default-mobile.handlebars->9->87", - "default.handlebars->27->1159", - "default.handlebars->27->1160" + "default.handlebars->27->1170", + "default.handlebars->27->1171" ] }, { @@ -18049,8 +18055,8 @@ "ru": "Нет AMT", "zh-chs": "没有AMT", "xloc": [ - "default.handlebars->27->615", - "default.handlebars->27->634" + "default.handlebars->27->621", + "default.handlebars->27->640" ] }, { @@ -18100,8 +18106,8 @@ "xloc": [ "default-mobile.handlebars->9->226", "default-mobile.handlebars->9->227", - "default.handlebars->27->521", - "default.handlebars->27->522" + "default.handlebars->27->527", + "default.handlebars->27->528" ] }, { @@ -18118,9 +18124,9 @@ "ru": "Нет рабочего стола", "zh-chs": "沒有桌面", "xloc": [ - "default.handlebars->27->1360", - "default.handlebars->27->617", - "default.handlebars->27->636" + "default.handlebars->27->1371", + "default.handlebars->27->623", + "default.handlebars->27->642" ] }, { @@ -18137,7 +18143,7 @@ "ru": "Нет доступа к рабочему столу", "zh-chs": "沒有桌面訪問", "xloc": [ - "default.handlebars->27->1323" + "default.handlebars->27->1334" ] }, { @@ -18154,9 +18160,9 @@ "ru": "События не найдены", "zh-chs": "找不到活動", "xloc": [ - "default.handlebars->27->1451", - "default.handlebars->27->1744", - "default.handlebars->27->822" + "default.handlebars->27->1462", + "default.handlebars->27->1755", + "default.handlebars->27->833" ] }, { @@ -18174,7 +18180,7 @@ "zh-chs": "沒有文件訪問", "xloc": [ "default-mobile.handlebars->9->408", - "default.handlebars->27->1325" + "default.handlebars->27->1336" ] }, { @@ -18192,9 +18198,9 @@ "zh-chs": "沒有文件", "xloc": [ "default-mobile.handlebars->9->429", - "default.handlebars->27->1362", - "default.handlebars->27->614", - "default.handlebars->27->633" + "default.handlebars->27->1373", + "default.handlebars->27->620", + "default.handlebars->27->639" ] }, { @@ -18210,8 +18216,8 @@ "ru": "Нет ввода", "zh-chs": "无输入", "xloc": [ - "default.handlebars->27->612", - "default.handlebars->27->631" + "default.handlebars->27->618", + "default.handlebars->27->637" ] }, { @@ -18230,8 +18236,8 @@ "xloc": [ "default-mobile.handlebars->9->409", "default-mobile.handlebars->9->430", - "default.handlebars->27->1326", - "default.handlebars->27->1363" + "default.handlebars->27->1337", + "default.handlebars->27->1374" ] }, { @@ -18299,7 +18305,7 @@ "ru": "Нет членов", "zh-chs": "沒有會員", "xloc": [ - "default.handlebars->27->1592" + "default.handlebars->27->1603" ] }, { @@ -18316,7 +18322,7 @@ "ru": "Запретить создание групп устройств", "zh-chs": "沒有新的設備組", "xloc": [ - "default.handlebars->27->1550" + "default.handlebars->27->1561" ] }, { @@ -18333,9 +18339,9 @@ "ru": "Политик нет", "zh-chs": "沒有政策", "xloc": [ - "default.handlebars->27->1229", - "default.handlebars->27->1257", - "default.handlebars->27->1260" + "default.handlebars->27->1240", + "default.handlebars->27->1268", + "default.handlebars->27->1271" ] }, { @@ -18355,10 +18361,10 @@ "default-mobile.handlebars->9->106", "default-mobile.handlebars->9->392", "default-mobile.handlebars->9->435", - "default.handlebars->27->1185", - "default.handlebars->27->1368", - "default.handlebars->27->626", - "default.handlebars->27->645" + "default.handlebars->27->1196", + "default.handlebars->27->1379", + "default.handlebars->27->632", + "default.handlebars->27->651" ] }, { @@ -18377,7 +18383,7 @@ "xloc": [ "default-mobile.handlebars->9->264", "default.handlebars->27->269", - "default.handlebars->27->669" + "default.handlebars->27->680" ] }, { @@ -18395,9 +18401,9 @@ "zh-chs": "沒有終端", "xloc": [ "default-mobile.handlebars->9->428", - "default.handlebars->27->1361", - "default.handlebars->27->613", - "default.handlebars->27->632" + "default.handlebars->27->1372", + "default.handlebars->27->619", + "default.handlebars->27->638" ] }, { @@ -18415,7 +18421,7 @@ "zh-chs": "沒有終端訪問", "xloc": [ "default-mobile.handlebars->9->407", - "default.handlebars->27->1324" + "default.handlebars->27->1335" ] }, { @@ -18432,7 +18438,7 @@ "ru": "Нет инструментов (MeshCmd/Router)", "zh-chs": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->27->1551" + "default.handlebars->27->1562" ] }, { @@ -18449,8 +18455,8 @@ "ru": "Нет общих групп устройств", "zh-chs": "沒有共同的設備組", "xloc": [ - "default.handlebars->27->1598", - "default.handlebars->27->1716" + "default.handlebars->27->1609", + "default.handlebars->27->1727" ] }, { @@ -18529,7 +18535,7 @@ "ru": "Устройства не найдены.", "zh-chs": "找不到設備。", "xloc": [ - "default.handlebars->27->483" + "default.handlebars->27->489" ] }, { @@ -18546,8 +18552,8 @@ "ru": "Нет общих устройств", "zh-chs": "沒有共同的設備", "xloc": [ - "default.handlebars->27->1604", - "default.handlebars->27->1728" + "default.handlebars->27->1615", + "default.handlebars->27->1739" ] }, { @@ -18564,7 +18570,7 @@ "ru": "В группе нет устройств.", "zh-chs": "該設備組中沒有設備。", "xloc": [ - "default.handlebars->27->1411" + "default.handlebars->27->1422" ] }, { @@ -18634,7 +18640,7 @@ "ru": "Группы не найдены.", "zh-chs": "找不到群組。", "xloc": [ - "default.handlebars->27->1553" + "default.handlebars->27->1564" ] }, { @@ -18652,7 +18658,7 @@ "zh-chs": "沒有此設備的信息。", "xloc": [ "default-mobile.handlebars->9->380", - "default.handlebars->27->896" + "default.handlebars->27->907" ] }, { @@ -18669,7 +18675,7 @@ "ru": "Местоположение не найдено.", "zh-chs": "找不到位置。", "xloc": [ - "default.handlebars->27->485" + "default.handlebars->27->491" ] }, { @@ -18703,7 +18709,7 @@ "ru": "Других групп устройств такого же типа не существует.", "zh-chs": "沒有其他相同類型的設備組。", "xloc": [ - "default.handlebars->27->686" + "default.handlebars->27->697" ] }, { @@ -18737,7 +18743,7 @@ "ru": "Нет серверных прав", "zh-chs": "沒有服務器權限", "xloc": [ - "default.handlebars->27->1624" + "default.handlebars->27->1635" ] }, { @@ -18754,7 +18760,7 @@ "ru": "Нет членства в группах пользователей", "zh-chs": "沒有用戶組成員身份", "xloc": [ - "default.handlebars->27->1722" + "default.handlebars->27->1733" ] }, { @@ -18771,7 +18777,7 @@ "ru": "Пользователи не найдены.", "zh-chs": "未找到相應的用戶。", "xloc": [ - "default.handlebars->27->1469" + "default.handlebars->27->1480" ] }, { @@ -18787,7 +18793,7 @@ "ru": "Нет пользователей со специальными правами доступа к устройству", "zh-chs": "没有拥有特殊设备权限的用户", "xloc": [ - "default.handlebars->27->610" + "default.handlebars->27->616" ] }, { @@ -18848,28 +18854,28 @@ "default-mobile.handlebars->9->238", "default-mobile.handlebars->9->290", "default-mobile.handlebars->9->386", - "default.handlebars->27->1197", - "default.handlebars->27->1204", "default.handlebars->27->1208", - "default.handlebars->27->1220", - "default.handlebars->27->1225", - "default.handlebars->27->1227", - "default.handlebars->27->1402", - "default.handlebars->27->1421", - "default.handlebars->27->1574", - "default.handlebars->27->1576", - "default.handlebars->27->1643", - "default.handlebars->27->1652", - "default.handlebars->27->1656", - "default.handlebars->27->1668", + "default.handlebars->27->1215", + "default.handlebars->27->1219", + "default.handlebars->27->1231", + "default.handlebars->27->1236", + "default.handlebars->27->1238", + "default.handlebars->27->1413", + "default.handlebars->27->1432", + "default.handlebars->27->1585", + "default.handlebars->27->1587", + "default.handlebars->27->1654", + "default.handlebars->27->1663", + "default.handlebars->27->1667", + "default.handlebars->27->1679", "default.handlebars->27->174", "default.handlebars->27->190", "default.handlebars->27->191", - "default.handlebars->27->492", - "default.handlebars->27->503", - "default.handlebars->27->504", - "default.handlebars->27->548", - "default.handlebars->27->561", + "default.handlebars->27->498", + "default.handlebars->27->509", + "default.handlebars->27->510", + "default.handlebars->27->554", + "default.handlebars->27->567", "default.handlebars->27->63", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] @@ -18905,7 +18911,7 @@ "ru": "Норвежский", "zh-chs": "挪威", "xloc": [ - "default.handlebars->27->1058" + "default.handlebars->27->1069" ] }, { @@ -18922,7 +18928,7 @@ "ru": "Норвежский (Букмол)", "zh-chs": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->27->1059" + "default.handlebars->27->1070" ] }, { @@ -18939,7 +18945,7 @@ "ru": "Норвежский (Нюнорск)", "zh-chs": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->27->1060" + "default.handlebars->27->1071" ] }, { @@ -18958,8 +18964,8 @@ "xloc": [ "default-mobile.handlebars->9->218", "default-mobile.handlebars->9->347", - "default.handlebars->27->509", - "default.handlebars->27->863" + "default.handlebars->27->515", + "default.handlebars->27->874" ] }, { @@ -18978,8 +18984,8 @@ "xloc": [ "default-mobile.handlebars->9->217", "default-mobile.handlebars->9->346", - "default.handlebars->27->508", - "default.handlebars->27->862" + "default.handlebars->27->514", + "default.handlebars->27->873" ] }, { @@ -18996,8 +19002,8 @@ "ru": "Не подключен", "zh-chs": "未連接", "xloc": [ - "default.handlebars->27->1398", - "default.handlebars->27->1406" + "default.handlebars->27->1409", + "default.handlebars->27->1417" ] }, { @@ -19015,14 +19021,14 @@ "zh-chs": "未知", "xloc": [ "default-mobile.handlebars->9->357", - "default.handlebars->27->873" + "default.handlebars->27->884" ] }, { "en": "Not on server", "nl": "Niet op de server", "xloc": [ - "default.handlebars->27->1760" + "default.handlebars->27->1771" ] }, { @@ -19039,8 +19045,8 @@ "ru": "Не задано", "zh-chs": "沒有設置", "xloc": [ - "default.handlebars->27->1630", - "default.handlebars->27->1631" + "default.handlebars->27->1641", + "default.handlebars->27->1642" ] }, { @@ -19057,7 +19063,7 @@ "ru": "не подтверждено", "zh-chs": "未經審核的", "xloc": [ - "default.handlebars->27->1698" + "default.handlebars->27->1709" ] }, { @@ -19074,12 +19080,12 @@ "ru": "Примечания", "zh-chs": "筆記", "xloc": [ - "default.handlebars->27->1235", - "default.handlebars->27->1676", - "default.handlebars->27->564", - "default.handlebars->27->622", - "default.handlebars->27->641", - "default.handlebars->27->648" + "default.handlebars->27->1246", + "default.handlebars->27->1687", + "default.handlebars->27->570", + "default.handlebars->27->628", + "default.handlebars->27->647", + "default.handlebars->27->654" ] }, { @@ -19113,8 +19119,8 @@ "ru": "Настройки уведомлений", "zh-chs": "通知設置", "xloc": [ - "default.handlebars->27->1146", - "default.handlebars->27->1397", + "default.handlebars->27->1157", + "default.handlebars->27->1408", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -19132,7 +19138,7 @@ "ru": "Уведомления также должны быть включены в настройках учетной записи.", "zh-chs": "通知設置還必須在帳戶設置中啟用。", "xloc": [ - "default.handlebars->27->1393" + "default.handlebars->27->1404" ] }, { @@ -19149,7 +19155,7 @@ "ru": "Звук уведомления", "zh-chs": "通知聲音。", "xloc": [ - "default.handlebars->27->1141" + "default.handlebars->27->1152" ] }, { @@ -19166,7 +19172,7 @@ "ru": "Уведомления", "zh-chs": "通知事項", "xloc": [ - "default.handlebars->27->1226" + "default.handlebars->27->1237" ] }, { @@ -19183,7 +19189,7 @@ "ru": "Уведомить", "zh-chs": "通知", "xloc": [ - "default.handlebars->27->1682" + "default.handlebars->27->1693" ] }, { @@ -19200,9 +19206,9 @@ "ru": "Уведомить пользователя", "zh-chs": "通知使用者", "xloc": [ - "default.handlebars->27->1292", - "default.handlebars->27->1296", - "default.handlebars->27->1299" + "default.handlebars->27->1303", + "default.handlebars->27->1307", + "default.handlebars->27->1310" ] }, { @@ -19219,7 +19225,7 @@ "ru": "Уведомить {0}", "zh-chs": "通知{0}", "xloc": [ - "default.handlebars->27->1501" + "default.handlebars->27->1512" ] }, { @@ -19238,8 +19244,8 @@ "xloc": [ "default-mobile.handlebars->9->83", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->27->1188", - "default.handlebars->27->535", + "default.handlebars->27->1199", + "default.handlebars->27->541", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -19262,7 +19268,7 @@ "zh-chs": "操作系統名稱", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1->5", - "default.handlebars->27->500", + "default.handlebars->27->506", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->7->1" ] }, @@ -19280,7 +19286,7 @@ "ru": "Окситанский", "zh-chs": "歐舒丹", "xloc": [ - "default.handlebars->27->1061" + "default.handlebars->27->1072" ] }, { @@ -19297,7 +19303,7 @@ "ru": "Произошло в {0}", "zh-chs": "發生在{0}", "xloc": [ - "default.handlebars->27->1774" + "default.handlebars->27->1785" ] }, { @@ -19314,7 +19320,7 @@ "ru": "Оффлайн пользователи", "zh-chs": "離線用戶", "xloc": [ - "default.handlebars->27->1466" + "default.handlebars->27->1477" ] }, { @@ -19332,7 +19338,7 @@ "zh-chs": "舊密碼:", "xloc": [ "default-mobile.handlebars->9->85", - "default.handlebars->27->1158" + "default.handlebars->27->1169" ] }, { @@ -19375,7 +19381,7 @@ "ru": "Онлайн пользователи", "zh-chs": "在線用戶", "xloc": [ - "default.handlebars->27->1465" + "default.handlebars->27->1476" ] }, { @@ -19393,8 +19399,8 @@ "zh-chs": "只能編輯小於200k的文件。", "xloc": [ "default-mobile.handlebars->9->300", - "default.handlebars->27->463", - "default.handlebars->27->796" + "default.handlebars->27->469", + "default.handlebars->27->807" ] }, { @@ -19436,7 +19442,7 @@ "ru": "Открыть страницу на устройстве", "zh-chs": "在設備上打開頁面", "xloc": [ - "default.handlebars->27->650" + "default.handlebars->27->656" ] }, { @@ -19467,7 +19473,7 @@ "ru": "Открыть терминал XTerm", "zh-chs": "打開XTerm終端", "xloc": [ - "default.handlebars->27->580" + "default.handlebars->27->586" ] }, { @@ -19521,9 +19527,9 @@ "default-mobile.handlebars->9->321", "default.handlebars->27->314", "default.handlebars->27->343", - "default.handlebars->27->532", - "default.handlebars->27->706", - "default.handlebars->27->827" + "default.handlebars->27->538", + "default.handlebars->27->717", + "default.handlebars->27->838" ] }, { @@ -19541,10 +19547,10 @@ "zh-chs": "運作方式", "xloc": [ "default-mobile.handlebars->9->257", - "default.handlebars->27->1490", - "default.handlebars->27->1561", + "default.handlebars->27->1501", + "default.handlebars->27->1572", "default.handlebars->27->418", - "default.handlebars->27->661" + "default.handlebars->27->668" ] }, { @@ -19578,7 +19584,7 @@ "ru": "Ория", "zh-chs": "奧里亞", "xloc": [ - "default.handlebars->27->1062" + "default.handlebars->27->1073" ] }, { @@ -19595,7 +19601,7 @@ "ru": "Оромо", "zh-chs": "奧羅莫", "xloc": [ - "default.handlebars->27->1063" + "default.handlebars->27->1074" ] }, { @@ -19646,7 +19652,7 @@ "ru": "Устаревший", "zh-chs": "過時的", "xloc": [ - "default.handlebars->27->534" + "default.handlebars->27->540" ] }, { @@ -19663,7 +19669,7 @@ "ru": "Собственный процесс", "zh-chs": "自己的過程", "xloc": [ - "default.handlebars->27->758" + "default.handlebars->27->769" ] }, { @@ -19681,7 +19687,7 @@ "zh-chs": "PID", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", - "default.handlebars->27->754", + "default.handlebars->27->765", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -19700,7 +19706,7 @@ "zh-chs": "零件號", "xloc": [ "default-mobile.handlebars->9->373", - "default.handlebars->27->889" + "default.handlebars->27->900" ] }, { @@ -19717,7 +19723,7 @@ "ru": "Частично", "zh-chs": "部分的", "xloc": [ - "default.handlebars->27->1480" + "default.handlebars->27->1491" ] }, { @@ -19764,7 +19770,7 @@ "xloc": [ "default-mobile.handlebars->9->104", "default-mobile.handlebars->9->390", - "default.handlebars->27->1183" + "default.handlebars->27->1194" ] }, { @@ -19781,7 +19787,7 @@ "ru": "Частичные права", "zh-chs": "部分權利", "xloc": [ - "default.handlebars->27->1627" + "default.handlebars->27->1638" ] }, { @@ -19816,15 +19822,15 @@ "zh-chs": "密碼", "xloc": [ "default-mobile.handlebars->9->262", - "default.handlebars->27->1526", - "default.handlebars->27->1527", - "default.handlebars->27->1648", - "default.handlebars->27->1650", - "default.handlebars->27->1701", - "default.handlebars->27->1702", + "default.handlebars->27->1537", + "default.handlebars->27->1538", + "default.handlebars->27->1659", + "default.handlebars->27->1661", + "default.handlebars->27->1712", + "default.handlebars->27->1713", "default.handlebars->27->267", "default.handlebars->27->298", - "default.handlebars->27->667", + "default.handlebars->27->678", "mstsc.handlebars->main->1->3->1->6->1->0", "mstsc.handlebars->main->1->3->1->6->3" ] @@ -19932,7 +19938,7 @@ "ru": "Подсказка пароля", "zh-chs": "密碼提示", "xloc": [ - "default.handlebars->27->1703" + "default.handlebars->27->1714" ] }, { @@ -19950,7 +19956,7 @@ "zh-chs": "密碼提示:", "xloc": [ "default-mobile.handlebars->9->88", - "default.handlebars->27->1161" + "default.handlebars->27->1172" ] }, { @@ -19967,7 +19973,7 @@ "ru": "Пароль не совпадает", "zh-chs": "密碼不符合", "xloc": [ - "default.handlebars->27->1266" + "default.handlebars->27->1277" ] }, { @@ -20002,8 +20008,8 @@ "ru": "Пароль*", "zh-chs": "密碼*", "xloc": [ - "default.handlebars->27->1264", - "default.handlebars->27->1265" + "default.handlebars->27->1275", + "default.handlebars->27->1276" ] }, { @@ -20023,8 +20029,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->9->80", "default-mobile.handlebars->9->81", - "default.handlebars->27->1153", - "default.handlebars->27->1154", + "default.handlebars->27->1164", + "default.handlebars->27->1165", "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", @@ -20055,9 +20061,9 @@ "default-mobile.handlebars->9->305", "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->27->1443", - "default.handlebars->27->779", - "default.handlebars->27->801", + "default.handlebars->27->1454", + "default.handlebars->27->790", + "default.handlebars->27->812", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" @@ -20111,7 +20117,7 @@ "ru": "Произвести действие агента", "zh-chs": "執行代理動作", "xloc": [ - "default.handlebars->27->905" + "default.handlebars->27->916" ] }, { @@ -20145,7 +20151,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).", "zh-chs": "執行英特爾AMT管理員控制模式(ACM)激活。", "xloc": [ - "default.handlebars->27->1245", + "default.handlebars->27->1256", "default.handlebars->27->255" ] }, @@ -20180,7 +20186,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).", "zh-chs": "執行英特爾AMT客戶端控制模式(CCM)激活。", "xloc": [ - "default.handlebars->27->1243", + "default.handlebars->27->1254", "default.handlebars->27->253" ] }, @@ -20198,7 +20204,7 @@ "ru": "Управление питанием устройства", "zh-chs": "在設備上執行電源操作", "xloc": [ - "default.handlebars->27->563", + "default.handlebars->27->569", "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" @@ -20219,8 +20225,8 @@ "zh-chs": "權限", "xloc": [ "default-mobile.handlebars->9->438", - "default.handlebars->27->1371", - "default.handlebars->27->1464" + "default.handlebars->27->1382", + "default.handlebars->27->1475" ] }, { @@ -20237,7 +20243,7 @@ "ru": "Персидский/Иран", "zh-chs": "波斯/伊朗", "xloc": [ - "default.handlebars->27->1064" + "default.handlebars->27->1075" ] }, { @@ -20254,9 +20260,9 @@ "default-mobile.handlebars->9->65", "default-mobile.handlebars->9->67", "default.handlebars->27->159", - "default.handlebars->27->1693", - "default.handlebars->27->916", - "default.handlebars->27->919" + "default.handlebars->27->1704", + "default.handlebars->27->927", + "default.handlebars->27->930" ] }, { @@ -20269,7 +20275,7 @@ "nl": "Telefoonnummer", "zh-chs": "电话号码", "xloc": [ - "default.handlebars->27->1642" + "default.handlebars->27->1653" ] }, { @@ -20283,8 +20289,8 @@ "zh-chs": "电话号码:", "xloc": [ "default-mobile.handlebars->9->66", - "default.handlebars->27->1692", - "default.handlebars->27->918" + "default.handlebars->27->1703", + "default.handlebars->27->929" ] }, { @@ -20315,7 +20321,7 @@ "ru": "Поместить узел сюда", "zh-chs": "將節點放在這裡", "xloc": [ - "default.handlebars->27->478" + "default.handlebars->27->484" ] }, { @@ -20402,7 +20408,7 @@ "zh-chs": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->9->76", - "default.handlebars->27->1148" + "default.handlebars->27->1159" ] }, { @@ -20420,7 +20426,7 @@ "zh-chs": "插件動作", "xloc": [ "default.handlebars->27->185", - "default.handlebars->27->1850" + "default.handlebars->27->1861" ] }, { @@ -20543,7 +20549,7 @@ "zh-chs": "政策", "xloc": [ "default-mobile.handlebars->9->103", - "default.handlebars->27->1182" + "default.handlebars->27->1193" ] }, { @@ -20560,7 +20566,7 @@ "ru": "Польский", "zh-chs": "拋光", "xloc": [ - "default.handlebars->27->1065" + "default.handlebars->27->1076" ] }, { @@ -20577,7 +20583,7 @@ "ru": "Португальский", "zh-chs": "葡萄牙語", "xloc": [ - "default.handlebars->27->1066" + "default.handlebars->27->1077" ] }, { @@ -20594,7 +20600,7 @@ "ru": "Португальский (Бразилия)", "zh-chs": "葡萄牙語(巴西)", "xloc": [ - "default.handlebars->27->1067" + "default.handlebars->27->1078" ] }, { @@ -20653,7 +20659,7 @@ "ru": "Состояния питания", "zh-chs": "電力國", "xloc": [ - "default.handlebars->27->1404", + "default.handlebars->27->1415", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -20674,7 +20680,7 @@ "default-mobile.handlebars->9->176", "default-mobile.handlebars->9->256", "default.handlebars->27->6", - "default.handlebars->27->658" + "default.handlebars->27->665" ] }, { @@ -20691,7 +20697,7 @@ "ru": "Выключить устройства", "zh-chs": "關閉設備電源", "xloc": [ - "default.handlebars->27->422" + "default.handlebars->27->423" ] }, { @@ -20738,7 +20744,7 @@ "en": "Present on server", "nl": "Aanwezig op de server", "xloc": [ - "default.handlebars->27->1759" + "default.handlebars->27->1770" ] }, { @@ -20800,7 +20806,7 @@ "zh-chs": "過程控制", "xloc": [ "default-mobile.handlebars->9->282", - "default.handlebars->27->766" + "default.handlebars->27->777" ] }, { @@ -20835,9 +20841,9 @@ "ru": "Запрос согласия пользователя", "zh-chs": "提示用戶同意", "xloc": [ - "default.handlebars->27->1293", - "default.handlebars->27->1297", - "default.handlebars->27->1300" + "default.handlebars->27->1304", + "default.handlebars->27->1308", + "default.handlebars->27->1311" ] }, { @@ -20854,7 +20860,7 @@ "ru": "Протокол", "zh-chs": "協議", "xloc": [ - "default.handlebars->27->1757", + "default.handlebars->27->1768", "player.handlebars->3->16" ] }, @@ -20887,7 +20893,7 @@ "zh-chs": "供應國", "xloc": [ "default-mobile.handlebars->9->351", - "default.handlebars->27->867" + "default.handlebars->27->878" ] }, { @@ -20905,7 +20911,7 @@ "zh-chs": "公開連結", "xloc": [ "default-mobile.handlebars->9->115", - "default.handlebars->27->1428" + "default.handlebars->27->1439" ] }, { @@ -20922,7 +20928,7 @@ "ru": "Пенджаби", "zh-chs": "旁遮普語", "xloc": [ - "default.handlebars->27->1068" + "default.handlebars->27->1079" ] }, { @@ -20939,7 +20945,7 @@ "ru": "Пенджаби (Индия)", "zh-chs": "旁遮普(印度)", "xloc": [ - "default.handlebars->27->1069" + "default.handlebars->27->1080" ] }, { @@ -20956,7 +20962,7 @@ "ru": "Пенджаби (Пакистан)", "zh-chs": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->27->1070" + "default.handlebars->27->1081" ] }, { @@ -20973,7 +20979,7 @@ "ru": "Putty", "zh-chs": "油灰", "xloc": [ - "default.handlebars->27->585" + "default.handlebars->27->591" ] }, { @@ -21008,7 +21014,7 @@ "ru": "Кечуа", "zh-chs": "蓋丘亞族", "xloc": [ - "default.handlebars->27->1071" + "default.handlebars->27->1082" ] }, { @@ -21061,7 +21067,7 @@ "ru": "RDP", "zh-chs": "RDP", "xloc": [ - "default.handlebars->27->583" + "default.handlebars->27->589" ] }, { @@ -21078,7 +21084,7 @@ "ru": "Подключение RDP", "zh-chs": "RDP連接", "xloc": [ - "default.handlebars->27->458" + "default.handlebars->27->464" ] }, { @@ -21095,7 +21101,7 @@ "ru": "Порт RDP:", "zh-chs": "RDP遠程連接端口:", "xloc": [ - "default.handlebars->27->457" + "default.handlebars->27->463" ] }, { @@ -21162,7 +21168,7 @@ "ru": "RSS", "zh-chs": "的RSS", "xloc": [ - "default.handlebars->27->1820" + "default.handlebars->27->1831" ] }, { @@ -21179,7 +21185,7 @@ "ru": "Случайный пароль.", "zh-chs": "隨機化密碼。", "xloc": [ - "default.handlebars->27->1528" + "default.handlebars->27->1539" ] }, { @@ -21213,15 +21219,15 @@ "ru": "Реактивировать Intel® AMT", "zh-chs": "重新激活英特爾®AMT", "xloc": [ - "default.handlebars->27->1268" + "default.handlebars->27->1279" ] }, { "en": "Real Name", "xloc": [ - "default.handlebars->27->1639", - "default.handlebars->27->1641", - "default.handlebars->27->1694" + "default.handlebars->27->1650", + "default.handlebars->27->1652", + "default.handlebars->27->1705" ] }, { @@ -21238,14 +21244,14 @@ "ru": "Области", "zh-chs": "境界", "xloc": [ - "default.handlebars->27->1537" + "default.handlebars->27->1548" ] }, { "en": "Received invalid network data", "nl": "Ongeldige netwerkgegevens ontvangen", "xloc": [ - "default.handlebars->27->730" + "default.handlebars->27->741" ] }, { @@ -21265,7 +21271,7 @@ "en": "Recording Details", "nl": "Opname details", "xloc": [ - "default.handlebars->27->1771" + "default.handlebars->27->1782" ] }, { @@ -21291,8 +21297,8 @@ "xloc": [ "default-mobile.handlebars->9->121", "default-mobile.handlebars->9->293", - "default.handlebars->27->1435", - "default.handlebars->27->789" + "default.handlebars->27->1446", + "default.handlebars->27->800" ] }, { @@ -21332,7 +21338,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->DeskToolsRefreshButton", "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->27->475", + "default.handlebars->27->481", "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", @@ -21389,7 +21395,7 @@ "ru": "Число ретрансляций", "zh-chs": "中繼計數", "xloc": [ - "default.handlebars->27->1802" + "default.handlebars->27->1813" ] }, { @@ -21406,7 +21412,7 @@ "ru": "Ошибки ретранслятора", "zh-chs": "中繼錯誤", "xloc": [ - "default.handlebars->27->1795" + "default.handlebars->27->1806" ] }, { @@ -21423,8 +21429,8 @@ "ru": "Сессии ретранслятора", "zh-chs": "接力會議", "xloc": [ - "default.handlebars->27->1801", - "default.handlebars->27->1814" + "default.handlebars->27->1812", + "default.handlebars->27->1825" ] }, { @@ -21535,7 +21541,7 @@ "ru": "Удаленный буфер обмена", "zh-chs": "遠程剪貼板", "xloc": [ - "default.handlebars->27->749" + "default.handlebars->27->760" ] }, { @@ -21554,8 +21560,8 @@ "xloc": [ "default-mobile.handlebars->9->404", "default-mobile.handlebars->9->422", - "default.handlebars->27->1320", - "default.handlebars->27->1354" + "default.handlebars->27->1331", + "default.handlebars->27->1365" ] }, { @@ -21584,7 +21590,7 @@ "xloc": [ "default-mobile.handlebars->9->278", "default.handlebars->27->246", - "default.handlebars->27->741" + "default.handlebars->27->752" ] }, { @@ -21601,7 +21607,7 @@ "ru": "Ввод с удаленной клавиатуры", "zh-chs": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->27->747" + "default.handlebars->27->758" ] }, { @@ -21651,8 +21657,8 @@ "xloc": [ "default-mobile.handlebars->9->405", "default-mobile.handlebars->9->427", - "default.handlebars->27->1321", - "default.handlebars->27->1359" + "default.handlebars->27->1332", + "default.handlebars->27->1370" ] }, { @@ -21669,7 +21675,7 @@ "ru": "Удаленный буфер обмена действителен в течении 60 секунд.", "zh-chs": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->27->748" + "default.handlebars->27->759" ] }, { @@ -21745,8 +21751,8 @@ "nl": "Apparaatgroepmachtigingen verwijderen", "zh-chs": "删除设备组权限", "xloc": [ - "default.handlebars->27->1608", - "default.handlebars->27->1742" + "default.handlebars->27->1619", + "default.handlebars->27->1753" ] }, { @@ -21760,8 +21766,8 @@ "nl": "Apparaatmachtigingen verwijderen", "zh-chs": "删除设备权限", "xloc": [ - "default.handlebars->27->1606", - "default.handlebars->27->1729" + "default.handlebars->27->1617", + "default.handlebars->27->1740" ] }, { @@ -21789,7 +21795,7 @@ "nl": "Lidmaatschap van gebruikersgroep verwijderen", "zh-chs": "删除用户组成员身份", "xloc": [ - "default.handlebars->27->1738" + "default.handlebars->27->1749" ] }, { @@ -21803,8 +21809,8 @@ "nl": "Gebruikersgroepmachtigingen verwijderen", "zh-chs": "删除用户组权限", "xloc": [ - "default.handlebars->27->1376", - "default.handlebars->27->1734" + "default.handlebars->27->1387", + "default.handlebars->27->1745" ] }, { @@ -21818,7 +21824,7 @@ "nl": "Gebruikerslidmaatschap verwijderen", "zh-chs": "删除用户成员资格", "xloc": [ - "default.handlebars->27->1616" + "default.handlebars->27->1627" ] }, { @@ -21832,8 +21838,8 @@ "nl": "Gebruikersmachtigingen verwijderen", "zh-chs": "删除用户权限", "xloc": [ - "default.handlebars->27->1374", - "default.handlebars->27->1731" + "default.handlebars->27->1385", + "default.handlebars->27->1742" ] }, { @@ -21850,7 +21856,7 @@ "ru": "Удалить все двухфакторные аутентификации.", "zh-chs": "刪除所有第二因素驗證。", "xloc": [ - "default.handlebars->27->1706" + "default.handlebars->27->1717" ] }, { @@ -21867,7 +21873,7 @@ "ru": "Удалить все прошлые события для этого userid.", "zh-chs": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->27->1529" + "default.handlebars->27->1540" ] }, { @@ -21884,7 +21890,7 @@ "ru": "Удалить устройство при отключении", "zh-chs": "斷開連接後移除設備", "xloc": [ - "default.handlebars->27->1301" + "default.handlebars->27->1312" ] }, { @@ -21901,7 +21907,7 @@ "ru": "Удалить местоположение узла", "zh-chs": "刪除節點位置", "xloc": [ - "default.handlebars->27->467" + "default.handlebars->27->473" ] }, { @@ -21915,7 +21921,7 @@ "zh-chs": "删除电话号码", "xloc": [ "default-mobile.handlebars->9->64", - "default.handlebars->27->915" + "default.handlebars->27->926" ] }, { @@ -21932,7 +21938,7 @@ "ru": "Удалить это устройство", "zh-chs": "刪除此設備", "xloc": [ - "default.handlebars->27->572" + "default.handlebars->27->578" ] }, { @@ -21948,7 +21954,7 @@ "ru": "Удалить этого пользователя", "zh-chs": "删除该用户", "xloc": [ - "default.handlebars->27->1684" + "default.handlebars->27->1695" ] }, { @@ -21965,7 +21971,7 @@ "ru": "Удалить членство пользователя в группе", "zh-chs": "刪除用戶組成員身份", "xloc": [ - "default.handlebars->27->1720" + "default.handlebars->27->1731" ] }, { @@ -21979,7 +21985,7 @@ "nl": "Gebruikersrechten voor dit apparaat verwijderen", "zh-chs": "删除此设备的用户组权限", "xloc": [ - "default.handlebars->27->1602" + "default.handlebars->27->1613" ] }, { @@ -21996,8 +22002,8 @@ "ru": "Удалить права группы пользователей для этой группы устройств", "zh-chs": "刪除該設備組的用戶組權限", "xloc": [ - "default.handlebars->27->1596", - "default.handlebars->27->606" + "default.handlebars->27->1607", + "default.handlebars->27->612" ] }, { @@ -22014,11 +22020,11 @@ "ru": "Удалить права пользователя для этой группы устройств", "zh-chs": "刪除此設備組的用戶權限", "xloc": [ - "default.handlebars->27->1252", - "default.handlebars->27->1590", - "default.handlebars->27->1714", - "default.handlebars->27->1726", - "default.handlebars->27->607" + "default.handlebars->27->1263", + "default.handlebars->27->1601", + "default.handlebars->27->1725", + "default.handlebars->27->1737", + "default.handlebars->27->613" ] }, { @@ -22039,9 +22045,9 @@ "default-mobile.handlebars->9->297", "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->27->1439", - "default.handlebars->27->461", - "default.handlebars->27->793", + "default.handlebars->27->1450", + "default.handlebars->27->467", + "default.handlebars->27->804", "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" @@ -22061,7 +22067,7 @@ "ru": "Требования: ", "zh-chs": "要求:", "xloc": [ - "default.handlebars->27->1162" + "default.handlebars->27->1173" ] }, { @@ -22079,8 +22085,8 @@ "zh-chs": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->27->1534", - "default.handlebars->27->1704" + "default.handlebars->27->1545", + "default.handlebars->27->1715" ] }, { @@ -22097,7 +22103,7 @@ "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере", "zh-chs": "需要瀏覽器中的Microsoft ClickOnce支持", "xloc": [ - "default.handlebars->27->582" + "default.handlebars->27->588" ] }, { @@ -22114,8 +22120,8 @@ "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере.", "zh-chs": "在瀏覽器中需要Microsoft ClickOnce支持。", "xloc": [ - "default.handlebars->27->584", - "default.handlebars->27->586" + "default.handlebars->27->590", + "default.handlebars->27->592" ] }, { @@ -22147,7 +22153,7 @@ "zh-chs": "重啟", "xloc": [ "default-mobile.handlebars->9->255", - "default.handlebars->27->657", + "default.handlebars->27->664", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -22219,7 +22225,7 @@ "ru": "Отправить в перезагрузку", "zh-chs": "重置設備", "xloc": [ - "default.handlebars->27->421" + "default.handlebars->27->422" ] }, { @@ -22253,7 +22259,7 @@ "ru": "Перезапуск", "zh-chs": "重新開始", "xloc": [ - "default.handlebars->27->764", + "default.handlebars->27->775", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -22271,7 +22277,7 @@ "ru": "Восстановить сервер", "zh-chs": "還原伺服器", "xloc": [ - "default.handlebars->27->1189" + "default.handlebars->27->1200" ] }, { @@ -22305,7 +22311,7 @@ "ru": "Восстановить сервер из резервной копии, это удалит существующие данные сервера . Продолжайте дальше только если знаете, что делаете.", "zh-chs": "使用備份還原服務器,這將刪除現有服務器數據。僅當您知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->27->1186" + "default.handlebars->27->1197" ] }, { @@ -22322,7 +22328,7 @@ "ru": "Ограничения", "zh-chs": "限制條件", "xloc": [ - "default.handlebars->27->1628" + "default.handlebars->27->1639" ] }, { @@ -22339,7 +22345,7 @@ "ru": "Ретороманский", "zh-chs": "修羅羅馬式", "xloc": [ - "default.handlebars->27->1072" + "default.handlebars->27->1083" ] }, { @@ -22356,7 +22362,7 @@ "ru": "Румынский", "zh-chs": "羅馬尼亞語", "xloc": [ - "default.handlebars->27->1073" + "default.handlebars->27->1084" ] }, { @@ -22373,7 +22379,7 @@ "ru": "Румынский (Молдавия)", "zh-chs": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->27->1074" + "default.handlebars->27->1085" ] }, { @@ -22392,8 +22398,8 @@ "xloc": [ "default-mobile.handlebars->9->107", "default-mobile.handlebars->9->287", - "default.handlebars->27->1412", - "default.handlebars->27->783" + "default.handlebars->27->1423", + "default.handlebars->27->794" ] }, { @@ -22501,11 +22507,37 @@ "default.handlebars->27->220" ] }, + { + "en": "Run Commands", + "xloc": [ + "default.handlebars->27->435", + "default.handlebars->27->662", + "default.handlebars->27->673" + ] + }, { "en": "Run MeshCentral Router and click \\\"install\\\" to make it launchable from the browser.", "nl": "Start MeshCentral Router en klik \\\"install\\\" om het startbaar te maken vanuit de browser.", "xloc": [ - "default.handlebars->27->695" + "default.handlebars->27->706" + ] + }, + { + "en": "Run commands", + "xloc": [ + "default.handlebars->27->420" + ] + }, + { + "en": "Run commands on selected devices.", + "xloc": [ + "default.handlebars->27->431" + ] + }, + { + "en": "Run commands on this device.", + "xloc": [ + "default.handlebars->27->670" ] }, { @@ -22522,7 +22554,7 @@ "ru": "Русский", "zh-chs": "俄語", "xloc": [ - "default.handlebars->27->1075" + "default.handlebars->27->1086" ] }, { @@ -22539,7 +22571,7 @@ "ru": "Русский (Молдавия)", "zh-chs": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->27->1076" + "default.handlebars->27->1087" ] }, { @@ -22552,8 +22584,8 @@ "nl": "SMS", "zh-chs": "短信", "xloc": [ - "default.handlebars->27->1673", - "default.handlebars->27->1678", + "default.handlebars->27->1684", + "default.handlebars->27->1689", "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->tokenpanel->1->7->1->4->1->3" ] @@ -22568,7 +22600,7 @@ "nl": "SMS geschikt telefoonnummer voor deze gebruiker.", "zh-chs": "此用户的短信功能电话号码。", "xloc": [ - "default.handlebars->27->1690" + "default.handlebars->27->1701" ] }, { @@ -22616,7 +22648,7 @@ "ru": "Саамский", "zh-chs": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->27->1077" + "default.handlebars->27->1088" ] }, { @@ -22661,7 +22693,7 @@ "ru": "Санго", "zh-chs": "三鄉", "xloc": [ - "default.handlebars->27->1078" + "default.handlebars->27->1089" ] }, { @@ -22678,7 +22710,7 @@ "ru": "Санскритский", "zh-chs": "梵文", "xloc": [ - "default.handlebars->27->1079" + "default.handlebars->27->1090" ] }, { @@ -22695,7 +22727,7 @@ "ru": "Сардинский", "zh-chs": "撒丁島", "xloc": [ - "default.handlebars->27->1080" + "default.handlebars->27->1091" ] }, { @@ -22736,7 +22768,7 @@ "ru": "Сохранить расположение узла", "zh-chs": "保存節點位置", "xloc": [ - "default.handlebars->27->468" + "default.handlebars->27->474" ] }, { @@ -22888,7 +22920,7 @@ "ru": "Поиск", "zh-chs": "搜索", "xloc": [ - "default.handlebars->27->481", + "default.handlebars->27->487", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -22961,7 +22993,7 @@ "zh-chs": "使用TLS保護", "xloc": [ "default-mobile.handlebars->9->354", - "default.handlebars->27->870" + "default.handlebars->27->881" ] }, { @@ -22980,10 +23012,10 @@ "xloc": [ "default-mobile.handlebars->9->263", "default-mobile.handlebars->9->353", - "default.handlebars->27->1674", + "default.handlebars->27->1685", "default.handlebars->27->268", - "default.handlebars->27->668", - "default.handlebars->27->869" + "default.handlebars->27->679", + "default.handlebars->27->880" ] }, { @@ -23000,7 +23032,7 @@ "ru": "Ключ безопасности", "zh-chs": "安全密鑰", "xloc": [ - "default.handlebars->27->1671" + "default.handlebars->27->1682" ] }, { @@ -23034,12 +23066,12 @@ "ru": "Выбрать все", "zh-chs": "全選", "xloc": [ - "default.handlebars->27->1431", - "default.handlebars->27->1488", - "default.handlebars->27->1559", + "default.handlebars->27->1442", + "default.handlebars->27->1499", + "default.handlebars->27->1570", "default.handlebars->27->414", - "default.handlebars->27->785", - "default.handlebars->27->787", + "default.handlebars->27->796", + "default.handlebars->27->798", "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", @@ -23062,11 +23094,11 @@ "ru": "Очистить все", "zh-chs": "選擇無", "xloc": [ - "default.handlebars->27->1430", - "default.handlebars->27->1487", - "default.handlebars->27->1558", + "default.handlebars->27->1441", + "default.handlebars->27->1498", + "default.handlebars->27->1569", "default.handlebars->27->413", - "default.handlebars->27->786", + "default.handlebars->27->797", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -23084,7 +23116,7 @@ "ru": "Выберите новую группу для выбранных устройств", "zh-chs": "為所選設備選擇一個新組", "xloc": [ - "default.handlebars->27->682" + "default.handlebars->27->693" ] }, { @@ -23101,7 +23133,7 @@ "ru": "Выберите новую группу для этого устройства", "zh-chs": "選擇此設備的新組", "xloc": [ - "default.handlebars->27->681" + "default.handlebars->27->692" ] }, { @@ -23118,7 +23150,7 @@ "ru": "Выберите узел для размещения", "zh-chs": "選擇要放置的節點", "xloc": [ - "default.handlebars->27->484" + "default.handlebars->27->490" ] }, { @@ -23149,8 +23181,8 @@ "nl": "Selecteer een bewerking die u op alle geselecteerde gebruikers wilt uitvoeren.", "zh-chs": "选择要对所有选定用户执行的操作。", "xloc": [ - "default.handlebars->27->1489", - "default.handlebars->27->1560" + "default.handlebars->27->1500", + "default.handlebars->27->1571" ] }, { @@ -23168,7 +23200,7 @@ "zh-chs": "選擇要在此設備上執行的操作。", "xloc": [ "default-mobile.handlebars->9->252", - "default.handlebars->27->654" + "default.handlebars->27->660" ] }, { @@ -23204,7 +23236,7 @@ "zh-chs": "僅自我事件", "xloc": [ "default-mobile.handlebars->9->432", - "default.handlebars->27->1365" + "default.handlebars->27->1376" ] }, { @@ -23230,7 +23262,7 @@ "en": "Send Email", "nl": "E-mail verzenden", "xloc": [ - "default.handlebars->27->1500" + "default.handlebars->27->1511" ] }, { @@ -23248,7 +23280,7 @@ "zh-chs": "發送MQTT消息", "xloc": [ "default.handlebars->27->415", - "default.handlebars->27->659" + "default.handlebars->27->666" ] }, { @@ -23265,7 +23297,7 @@ "ru": "Отправить MQTT сообщение", "zh-chs": "發送MQTT消息", "xloc": [ - "default.handlebars->27->674" + "default.handlebars->27->685" ] }, { @@ -23278,7 +23310,7 @@ "nl": "verstuur SMS", "zh-chs": "发送短信", "xloc": [ - "default.handlebars->27->1498" + "default.handlebars->27->1509" ] }, { @@ -23291,7 +23323,7 @@ "nl": "Stuur een SMS bericht naar deze gebruiker", "zh-chs": "发送短信给该用户", "xloc": [ - "default.handlebars->27->1679" + "default.handlebars->27->1690" ] }, { @@ -23299,7 +23331,7 @@ "nl": "Stuur een e-mailbericht naar deze gebruiker", "fr": "Envoyer un Mail à cet utilisateur", "xloc": [ - "default.handlebars->27->1681" + "default.handlebars->27->1692" ] }, { @@ -23316,7 +23348,7 @@ "ru": "Отправить уведомление всем пользователям этой группы.", "zh-chs": "向該組中的所有用戶發送通知。", "xloc": [ - "default.handlebars->27->1587" + "default.handlebars->27->1598" ] }, { @@ -23333,7 +23365,7 @@ "ru": "Отправить текстовое уведомление этому пользователю.", "zh-chs": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->27->1502" + "default.handlebars->27->1513" ] }, { @@ -23349,7 +23381,7 @@ "ru": "Отправить письмо пользователю", "zh-chs": "发送电子邮件给用户", "xloc": [ - "default.handlebars->27->1483" + "default.handlebars->27->1494" ] }, { @@ -23383,7 +23415,7 @@ "ru": "Отправить приглашение по email.", "zh-chs": "發送邀請電子郵件。", "xloc": [ - "default.handlebars->27->1533" + "default.handlebars->27->1544" ] }, { @@ -23449,7 +23481,7 @@ "ru": "Отправить уведомление пользователю", "zh-chs": "發送用戶通知", "xloc": [ - "default.handlebars->27->1683" + "default.handlebars->27->1694" ] }, { @@ -23466,7 +23498,7 @@ "ru": "Сербский", "zh-chs": "塞爾維亞", "xloc": [ - "default.handlebars->27->1083" + "default.handlebars->27->1094" ] }, { @@ -23484,7 +23516,7 @@ "zh-chs": "序列號", "xloc": [ "default-mobile.handlebars->9->365", - "default.handlebars->27->881" + "default.handlebars->27->892" ] }, { @@ -23501,7 +23533,7 @@ "ru": "Резервное копирование сервера", "zh-chs": "服務器備份", "xloc": [ - "default.handlebars->27->1543" + "default.handlebars->27->1554" ] }, { @@ -23518,7 +23550,7 @@ "ru": "Сертификат сервера", "zh-chs": "服務器證書", "xloc": [ - "default.handlebars->27->1830" + "default.handlebars->27->1841" ] }, { @@ -23535,7 +23567,7 @@ "ru": "База данных сервера", "zh-chs": "服務器數據庫", "xloc": [ - "default.handlebars->27->1831" + "default.handlebars->27->1842" ] }, { @@ -23554,11 +23586,11 @@ "xloc": [ "default-mobile.handlebars->9->411", "default-mobile.handlebars->9->424", - "default.handlebars->27->1328", - "default.handlebars->27->1356", - "default.handlebars->27->1540", - "default.handlebars->27->620", - "default.handlebars->27->639" + "default.handlebars->27->1339", + "default.handlebars->27->1367", + "default.handlebars->27->1551", + "default.handlebars->27->626", + "default.handlebars->27->645" ] }, { @@ -23575,8 +23607,8 @@ "ru": "Разрешения сервера", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->27->1475", - "default.handlebars->27->1552" + "default.handlebars->27->1486", + "default.handlebars->27->1563" ] }, { @@ -23593,7 +23625,7 @@ "ru": "Квота сервера", "zh-chs": "服務器配額", "xloc": [ - "default.handlebars->27->1645" + "default.handlebars->27->1656" ] }, { @@ -23610,7 +23642,7 @@ "ru": "Восстановление сервера", "zh-chs": "服務器還原", "xloc": [ - "default.handlebars->27->1544" + "default.handlebars->27->1555" ] }, { @@ -23627,7 +23659,7 @@ "ru": "Права", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->27->1644" + "default.handlebars->27->1655" ] }, { @@ -23644,7 +23676,7 @@ "ru": "Состояние сервера", "zh-chs": "服務器狀態", "xloc": [ - "default.handlebars->27->1781" + "default.handlebars->27->1792" ] }, { @@ -23678,7 +23710,7 @@ "ru": "Трассировка сервера", "zh-chs": "服務器跟踪", "xloc": [ - "default.handlebars->27->1841" + "default.handlebars->27->1852" ] }, { @@ -23695,7 +23727,7 @@ "ru": "Обновление сервера", "zh-chs": "服務器更新", "xloc": [ - "default.handlebars->27->1545" + "default.handlebars->27->1556" ] }, { @@ -23817,7 +23849,7 @@ "ru": "ServerStats.csv", "zh-chs": "ServerStats.csv", "xloc": [ - "default.handlebars->27->1822" + "default.handlebars->27->1833" ] }, { @@ -23834,7 +23866,7 @@ "ru": "Детали службы", "zh-chs": "服務詳情", "xloc": [ - "default.handlebars->27->765" + "default.handlebars->27->776" ] }, { @@ -23858,14 +23890,14 @@ "en": "Session", "nl": "Sessie", "xloc": [ - "default.handlebars->27->1745" + "default.handlebars->27->1756" ] }, { "en": "Session Information", "nl": "Sessie informatie", "xloc": [ - "default.handlebars->27->738" + "default.handlebars->27->749" ] }, { @@ -24050,7 +24082,7 @@ "ru": "Общий процесс", "zh-chs": "共享過程", "xloc": [ - "default.handlebars->27->759" + "default.handlebars->27->770" ] }, { @@ -24160,7 +24192,7 @@ "zh-chs": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->9->414", - "default.handlebars->27->1331" + "default.handlebars->27->1342" ] }, { @@ -24177,7 +24209,7 @@ "ru": "Показывать панель-уведомление", "zh-chs": "顯示連接工具欄", "xloc": [ - "default.handlebars->27->1294" + "default.handlebars->27->1305" ] }, { @@ -24194,7 +24226,7 @@ "ru": "Показать информацию о расположении устройства", "zh-chs": "顯示設備位置信息", "xloc": [ - "default.handlebars->27->576" + "default.handlebars->27->582" ] }, { @@ -24211,7 +24243,7 @@ "ru": "Показать информацию о сетевом интерфейсе устройства", "zh-chs": "顯示設備網絡接口信息", "xloc": [ - "default.handlebars->27->574" + "default.handlebars->27->580" ] }, { @@ -24318,8 +24350,8 @@ "ru": "Простой режим управления администратора (ACM)", "zh-chs": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->27->1232", - "default.handlebars->27->1255" + "default.handlebars->27->1243", + "default.handlebars->27->1266" ] }, { @@ -24336,9 +24368,9 @@ "ru": "Простой режим управления клиента (CCM)", "zh-chs": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->27->1230", - "default.handlebars->27->1258", - "default.handlebars->27->1262" + "default.handlebars->27->1241", + "default.handlebars->27->1269", + "default.handlebars->27->1273" ] }, { @@ -24355,7 +24387,7 @@ "ru": "Синдхи", "zh-chs": "信地", "xloc": [ - "default.handlebars->27->1081" + "default.handlebars->27->1092" ] }, { @@ -24372,7 +24404,7 @@ "ru": "Сингальский", "zh-chs": "僧伽羅語", "xloc": [ - "default.handlebars->27->1082" + "default.handlebars->27->1093" ] }, { @@ -24397,8 +24429,8 @@ "ru": "Размер", "zh-chs": "尺寸", "xloc": [ - "default.handlebars->27->1748", - "default.handlebars->27->1763", + "default.handlebars->27->1759", + "default.handlebars->27->1774", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -24416,7 +24448,7 @@ "ru": "Размер: 100%", "zh-chs": "尺寸:100%", "xloc": [ - "default.handlebars->27->813" + "default.handlebars->27->824" ] }, { @@ -24433,7 +24465,7 @@ "ru": "Размер: 125%", "zh-chs": "尺寸:125%", "xloc": [ - "default.handlebars->27->814" + "default.handlebars->27->825" ] }, { @@ -24450,7 +24482,7 @@ "ru": "Размер: 150%", "zh-chs": "尺寸:150%", "xloc": [ - "default.handlebars->27->815" + "default.handlebars->27->826" ] }, { @@ -24467,7 +24499,7 @@ "ru": "Размер: 200%", "zh-chs": "尺寸:200%", "xloc": [ - "default.handlebars->27->816" + "default.handlebars->27->827" ] }, { @@ -24491,7 +24523,7 @@ "default.handlebars->27->2", "default.handlebars->27->3", "default.handlebars->27->4", - "default.handlebars->27->656" + "default.handlebars->27->663" ] }, { @@ -24508,7 +24540,7 @@ "ru": "Отправить в сон", "zh-chs": "睡眠裝置", "xloc": [ - "default.handlebars->27->420" + "default.handlebars->27->421" ] }, { @@ -24545,7 +24577,7 @@ "ru": "Словацкий", "zh-chs": "斯洛伐克文", "xloc": [ - "default.handlebars->27->1084" + "default.handlebars->27->1095" ] }, { @@ -24562,7 +24594,7 @@ "ru": "Словенский", "zh-chs": "斯洛文尼亞文", "xloc": [ - "default.handlebars->27->1085" + "default.handlebars->27->1096" ] }, { @@ -24615,7 +24647,7 @@ "ru": "Малая фокусировка", "zh-chs": "小焦點", "xloc": [ - "default.handlebars->27->744" + "default.handlebars->27->755" ] }, { @@ -24632,7 +24664,7 @@ "ru": "Програмное отключение агента", "zh-chs": "軟斷開劑", "xloc": [ - "default.handlebars->27->911" + "default.handlebars->27->922" ] }, { @@ -24684,7 +24716,7 @@ "ru": "Сомани", "zh-chs": "索馬尼", "xloc": [ - "default.handlebars->27->1086" + "default.handlebars->27->1097" ] }, { @@ -24701,7 +24733,7 @@ "ru": "Сорбский", "zh-chs": "索比亞人", "xloc": [ - "default.handlebars->27->1087" + "default.handlebars->27->1098" ] }, { @@ -24831,7 +24863,7 @@ "ru": "Испанский", "zh-chs": "西班牙文", "xloc": [ - "default.handlebars->27->1088" + "default.handlebars->27->1099" ] }, { @@ -24848,7 +24880,7 @@ "ru": "Испанский (Аргентина)", "zh-chs": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->27->1089" + "default.handlebars->27->1100" ] }, { @@ -24865,7 +24897,7 @@ "ru": "Испанский (Боливия)", "zh-chs": "西班牙語(玻利維亞)", "xloc": [ - "default.handlebars->27->1090" + "default.handlebars->27->1101" ] }, { @@ -24882,7 +24914,7 @@ "ru": "Испанский (Чили)", "zh-chs": "西班牙語(智利)", "xloc": [ - "default.handlebars->27->1091" + "default.handlebars->27->1102" ] }, { @@ -24899,7 +24931,7 @@ "ru": "Испанский (Колумбия)", "zh-chs": "西班牙語(哥倫比亞)", "xloc": [ - "default.handlebars->27->1092" + "default.handlebars->27->1103" ] }, { @@ -24916,7 +24948,7 @@ "ru": "Испанский (Коста-Рика)", "zh-chs": "西班牙語(哥斯達黎加)", "xloc": [ - "default.handlebars->27->1093" + "default.handlebars->27->1104" ] }, { @@ -24933,7 +24965,7 @@ "ru": "Испанский (Доминиканская Республика)", "zh-chs": "西班牙語(多米尼加共和國)", "xloc": [ - "default.handlebars->27->1094" + "default.handlebars->27->1105" ] }, { @@ -24950,7 +24982,7 @@ "ru": "Испанский (Эквадор)", "zh-chs": "西班牙語(厄瓜多爾)", "xloc": [ - "default.handlebars->27->1095" + "default.handlebars->27->1106" ] }, { @@ -24967,7 +24999,7 @@ "ru": "Испанский (Сальвадор)", "zh-chs": "西班牙語(薩爾瓦多)", "xloc": [ - "default.handlebars->27->1096" + "default.handlebars->27->1107" ] }, { @@ -24984,7 +25016,7 @@ "ru": "Испанский (Гватемала)", "zh-chs": "西班牙語(危地馬拉)", "xloc": [ - "default.handlebars->27->1097" + "default.handlebars->27->1108" ] }, { @@ -25001,7 +25033,7 @@ "ru": "Испанский (Гондурас)", "zh-chs": "西班牙語(洪都拉斯)", "xloc": [ - "default.handlebars->27->1098" + "default.handlebars->27->1109" ] }, { @@ -25018,7 +25050,7 @@ "ru": "Испанский (Мексика)", "zh-chs": "西班牙語(墨西哥)", "xloc": [ - "default.handlebars->27->1099" + "default.handlebars->27->1110" ] }, { @@ -25035,7 +25067,7 @@ "ru": "Испанский (Никарагуа)", "zh-chs": "西班牙語(尼加拉瓜)", "xloc": [ - "default.handlebars->27->1100" + "default.handlebars->27->1111" ] }, { @@ -25052,7 +25084,7 @@ "ru": "Испанский (Панама)", "zh-chs": "西班牙語(巴拿馬)", "xloc": [ - "default.handlebars->27->1101" + "default.handlebars->27->1112" ] }, { @@ -25069,7 +25101,7 @@ "ru": "Испанский (Парагвай)", "zh-chs": "西班牙語(巴拉圭)", "xloc": [ - "default.handlebars->27->1102" + "default.handlebars->27->1113" ] }, { @@ -25086,7 +25118,7 @@ "ru": "Испанский (Перу)", "zh-chs": "西班牙語(秘魯)", "xloc": [ - "default.handlebars->27->1103" + "default.handlebars->27->1114" ] }, { @@ -25103,7 +25135,7 @@ "ru": "Испанский (Пуэрто-Рико)", "zh-chs": "西班牙語(波多黎各)", "xloc": [ - "default.handlebars->27->1104" + "default.handlebars->27->1115" ] }, { @@ -25120,7 +25152,7 @@ "ru": "Испанский (Испания)", "zh-chs": "西班牙語(西班牙)", "xloc": [ - "default.handlebars->27->1105" + "default.handlebars->27->1116" ] }, { @@ -25137,7 +25169,7 @@ "ru": "Испанский (Уругвай)", "zh-chs": "西班牙語(烏拉圭)", "xloc": [ - "default.handlebars->27->1106" + "default.handlebars->27->1117" ] }, { @@ -25154,7 +25186,7 @@ "ru": "Испанский (Венесуэла)", "zh-chs": "西班牙語(委內瑞拉)", "xloc": [ - "default.handlebars->27->1107" + "default.handlebars->27->1118" ] }, { @@ -25202,7 +25234,7 @@ "ru": "Старт", "zh-chs": "開始", "xloc": [ - "default.handlebars->27->762" + "default.handlebars->27->773" ] }, { @@ -25213,9 +25245,9 @@ "en": "Start Time", "nl": "Start tijd", "xloc": [ - "default.handlebars->27->1746", - "default.handlebars->27->1765", - "default.handlebars->27->734" + "default.handlebars->27->1757", + "default.handlebars->27->1776", + "default.handlebars->27->745" ] }, { @@ -25232,7 +25264,7 @@ "ru": "Состояние", "zh-chs": "州", "xloc": [ - "default.handlebars->27->753", + "default.handlebars->27->764", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -25267,8 +25299,8 @@ "ru": "Статус", "zh-chs": "狀態", "xloc": [ - "default.handlebars->27->1697", - "default.handlebars->27->1758", + "default.handlebars->27->1708", + "default.handlebars->27->1769", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -25286,7 +25318,7 @@ "ru": "Стоп", "zh-chs": "停止", "xloc": [ - "default.handlebars->27->763" + "default.handlebars->27->774" ] }, { @@ -25302,7 +25334,7 @@ "ru": "Остановить процесс", "zh-chs": "停止程序", "xloc": [ - "default.handlebars->27->750" + "default.handlebars->27->761" ] }, { @@ -25320,7 +25352,7 @@ "zh-chs": "停止進程#{0} \\“ {1} \\”?", "xloc": [ "default-mobile.handlebars->9->283", - "default.handlebars->27->767" + "default.handlebars->27->778" ] }, { @@ -25334,7 +25366,7 @@ "zh-chs": "存储", "xloc": [ "default-mobile.handlebars->9->379", - "default.handlebars->27->895" + "default.handlebars->27->906" ] }, { @@ -25368,7 +25400,7 @@ "ru": "Превышен лимит места для хранения", "zh-chs": "儲存空間超過", "xloc": [ - "default.handlebars->27->1416" + "default.handlebars->27->1427" ] }, { @@ -25385,7 +25417,7 @@ "ru": "Надежный", "zh-chs": "強大", "xloc": [ - "default.handlebars->27->1179" + "default.handlebars->27->1190" ] }, { @@ -25412,7 +25444,7 @@ "en": "Subject", "nl": "Onderwerp", "xloc": [ - "default.handlebars->27->1499" + "default.handlebars->27->1510" ] }, { @@ -25497,7 +25529,7 @@ "ru": "Суту", "zh-chs": "蘇圖", "xloc": [ - "default.handlebars->27->1108" + "default.handlebars->27->1119" ] }, { @@ -25514,7 +25546,7 @@ "ru": "Суахили", "zh-chs": "斯瓦希里語", "xloc": [ - "default.handlebars->27->1109" + "default.handlebars->27->1120" ] }, { @@ -25531,7 +25563,7 @@ "ru": "Шведский", "zh-chs": "瑞典", "xloc": [ - "default.handlebars->27->1110" + "default.handlebars->27->1121" ] }, { @@ -25548,7 +25580,7 @@ "ru": "Шведский (Финляндия)", "zh-chs": "瑞典語(芬蘭)", "xloc": [ - "default.handlebars->27->1111" + "default.handlebars->27->1122" ] }, { @@ -25565,7 +25597,7 @@ "ru": "Шведский (Швеция)", "zh-chs": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->27->1112" + "default.handlebars->27->1123" ] }, { @@ -25582,7 +25614,7 @@ "ru": "Синхронизировать имя устройства на сервере с именем хоста", "zh-chs": "將服務器設備名稱同步到主機名", "xloc": [ - "default.handlebars->27->1302" + "default.handlebars->27->1313" ] }, { @@ -25658,7 +25690,7 @@ "zh-chs": "TLS", "xloc": [ "default-mobile.handlebars->9->225", - "default.handlebars->27->519" + "default.handlebars->27->525" ] }, { @@ -25676,7 +25708,7 @@ "zh-chs": "未設置TLS", "xloc": [ "default-mobile.handlebars->9->355", - "default.handlebars->27->871" + "default.handlebars->27->882" ] }, { @@ -25695,7 +25727,7 @@ "xloc": [ "default-mobile.handlebars->9->265", "default.handlebars->27->270", - "default.handlebars->27->670" + "default.handlebars->27->681" ] }, { @@ -25729,7 +25761,7 @@ "ru": "Тег1, Тег2, Тег3", "zh-chs": "標籤1,標籤2,標籤3", "xloc": [ - "default.handlebars->27->724" + "default.handlebars->27->735" ] }, { @@ -25749,7 +25781,7 @@ "default-mobile.handlebars->9->239", "default-mobile.handlebars->9->240", "default-mobile.handlebars->9->274", - "default.handlebars->27->723", + "default.handlebars->27->734", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -25767,7 +25799,7 @@ "ru": "Тамильский", "zh-chs": "泰米爾語", "xloc": [ - "default.handlebars->27->1113" + "default.handlebars->27->1124" ] }, { @@ -25784,7 +25816,7 @@ "ru": "Татарский", "zh-chs": "塔塔爾族", "xloc": [ - "default.handlebars->27->1114" + "default.handlebars->27->1125" ] }, { @@ -25801,7 +25833,7 @@ "ru": "Телугу", "zh-chs": "泰盧加", "xloc": [ - "default.handlebars->27->1115" + "default.handlebars->27->1126" ] }, { @@ -25819,10 +25851,10 @@ "zh-chs": "終奌站", "xloc": [ "default-mobile.handlebars->9->164", - "default.handlebars->27->1295", - "default.handlebars->27->1752", + "default.handlebars->27->1306", + "default.handlebars->27->1763", "default.handlebars->27->233", - "default.handlebars->27->471", + "default.handlebars->27->477", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal" ] @@ -25858,9 +25890,9 @@ "ru": "Терминал уведомление", "zh-chs": "終端通知", "xloc": [ - "default.handlebars->27->1215", - "default.handlebars->27->1663", - "default.handlebars->27->543" + "default.handlebars->27->1226", + "default.handlebars->27->1674", + "default.handlebars->27->549" ] }, { @@ -25877,9 +25909,9 @@ "ru": "Запрос терминала", "zh-chs": "終端提示", "xloc": [ - "default.handlebars->27->1214", - "default.handlebars->27->1662", - "default.handlebars->27->542" + "default.handlebars->27->1225", + "default.handlebars->27->1673", + "default.handlebars->27->548" ] }, { @@ -25935,7 +25967,7 @@ "ru": "Тайский", "zh-chs": "泰國", "xloc": [ - "default.handlebars->27->1116" + "default.handlebars->27->1127" ] }, { @@ -25970,7 +26002,7 @@ "ru": "Имя группы устройств, к которой принадлежит этот компьютер", "zh-chs": "該計算機所屬的設備組的名稱", "xloc": [ - "default.handlebars->27->498" + "default.handlebars->27->504" ] }, { @@ -25987,7 +26019,7 @@ "ru": "Имя группы устройств, к которой принадлежит этот компьютер.", "zh-chs": "該計算機所屬的設備組的名稱。", "xloc": [ - "default.handlebars->27->496" + "default.handlebars->27->502" ] }, { @@ -26004,8 +26036,8 @@ "ru": "Имя этого компьютера, указанное в операционной системе", "zh-chs": "在操作系統中設置的此計算機的名稱", "xloc": [ - "default.handlebars->27->499", - "default.handlebars->27->501" + "default.handlebars->27->505", + "default.handlebars->27->507" ] }, { @@ -26022,7 +26054,7 @@ "ru": "На данный момент уведомлений нет", "zh-chs": "目前沒有任何通知", "xloc": [ - "default.handlebars->27->1773" + "default.handlebars->27->1784" ] }, { @@ -26074,7 +26106,7 @@ "zh-chs": "該帳戶無權創建新的設備組。", "xloc": [ "default-mobile.handlebars->9->92", - "default.handlebars->27->1165" + "default.handlebars->27->1176" ] }, { @@ -26108,7 +26140,7 @@ "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.", "zh-chs": "這不是安全的策略,因為代理將執行激活。", "xloc": [ - "default.handlebars->27->1280" + "default.handlebars->27->1291" ] }, { @@ -26143,7 +26175,7 @@ "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.", "zh-chs": "該策略不會影響採用ACM模式的英特爾®AMT的設備。", "xloc": [ - "default.handlebars->27->1279" + "default.handlebars->27->1290" ] }, { @@ -26209,7 +26241,7 @@ "nl": "Hiermee wordt een vermelding toegevoegd aan het gebeurtenislogboek van dit apparaat.", "zh-chs": "这会将条目添加到该设备的事件日志中。", "xloc": [ - "default.handlebars->27->647" + "default.handlebars->27->653" ] }, { @@ -26240,7 +26272,7 @@ "ru": "Это не приведет к удалению устройств с сервера, но они больше не смогут подключаться к серверу. Весь удаленный доступ к устройствам будет потерян. Устройства должны быть подключены, чтобы эта команда работала.", "zh-chs": "這不會從服務器上刪除設備,但是設備將不再能夠連接到服務器。對設備的所有遠程訪問都將丟失。必須連接設備,此命令才能起作用。", "xloc": [ - "default.handlebars->27->677" + "default.handlebars->27->688" ] }, { @@ -26257,7 +26289,7 @@ "ru": "Это не приведет к удалению этого устройства с сервера, но оно больше не сможет подключаться к серверу. Весь удаленный доступ к устройству будет потерян. Для работы этой команды устройство должно быть подключено.", "zh-chs": "這不會將該設備從服務器上刪除,但是該設備將不再能夠連接到服務器。對設備的所有遠程訪問都將丟失。必須連接設備,此命令才能起作用。", "xloc": [ - "default.handlebars->27->678" + "default.handlebars->27->689" ] }, { @@ -26274,7 +26306,7 @@ "ru": "Тигровый", "zh-chs": "蒂格雷", "xloc": [ - "default.handlebars->27->1117" + "default.handlebars->27->1128" ] }, { @@ -26298,7 +26330,7 @@ "en": "Timeout", "nl": "Time-out", "xloc": [ - "default.handlebars->27->729" + "default.handlebars->27->740" ] }, { @@ -26417,7 +26449,7 @@ "ru": "Чтобы удалить эту учетную запись, введите пароль учетной записи в оба поля и нажмите ОК.", "zh-chs": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->27->1152" + "default.handlebars->27->1163" ] }, { @@ -26766,7 +26798,7 @@ "ru": "Тема", "zh-chs": "話題", "xloc": [ - "default.handlebars->27->672" + "default.handlebars->27->683" ] }, { @@ -26817,7 +26849,7 @@ "ru": "Router используется для подключения к различным портам устройства через этот сервер", "zh-chs": "用於通過此服務器連接到設備的流量路由器", "xloc": [ - "default.handlebars->27->578" + "default.handlebars->27->584" ] }, { @@ -26851,7 +26883,7 @@ "ru": "Тсонга", "zh-chs": "特松加", "xloc": [ - "default.handlebars->27->1118" + "default.handlebars->27->1129" ] }, { @@ -26868,7 +26900,7 @@ "ru": "Тсвана", "zh-chs": "茨瓦納", "xloc": [ - "default.handlebars->27->1119" + "default.handlebars->27->1130" ] }, { @@ -26885,7 +26917,7 @@ "ru": "Турецкий", "zh-chs": "土耳其", "xloc": [ - "default.handlebars->27->1120" + "default.handlebars->27->1131" ] }, { @@ -26902,7 +26934,7 @@ "ru": "Туркменский", "zh-chs": "土庫曼人", "xloc": [ - "default.handlebars->27->1121" + "default.handlebars->27->1132" ] }, { @@ -26938,11 +26970,11 @@ "xloc": [ "default-mobile.handlebars->9->387", "default-mobile.handlebars->9->98", - "default.handlebars->27->1172", - "default.handlebars->27->1205", - "default.handlebars->27->1256", - "default.handlebars->27->1259", - "default.handlebars->27->760", + "default.handlebars->27->1183", + "default.handlebars->27->1216", + "default.handlebars->27->1267", + "default.handlebars->27->1270", + "default.handlebars->27->771", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, @@ -26960,7 +26992,7 @@ "ru": "Введите имя ключа, выберите поле OTP и нажмите кнопку на YubiKey™.", "zh-chs": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->27->930" + "default.handlebars->27->941" ] }, { @@ -26977,7 +27009,7 @@ "ru": "Введите имя ключа для добавления.", "zh-chs": "輸入要添加的密鑰的名稱。", "xloc": [ - "default.handlebars->27->927" + "default.handlebars->27->938" ] }, { @@ -26994,7 +27026,7 @@ "ru": "Терминал UTF8", "zh-chs": "UTF8終端", "xloc": [ - "default.handlebars->27->771" + "default.handlebars->27->782" ] }, { @@ -27011,7 +27043,7 @@ "ru": "Украинский", "zh-chs": "烏克蘭", "xloc": [ - "default.handlebars->27->1122" + "default.handlebars->27->1133" ] }, { @@ -27028,8 +27060,8 @@ "ru": "Невозможно получить доступ к устройству, пока адрес email не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес email.", "zh-chs": "在驗證電子郵件地址之前,無法訪問設備。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "xloc": [ - "default.handlebars->27->1167", - "default.handlebars->27->487" + "default.handlebars->27->1178", + "default.handlebars->27->493" ] }, { @@ -27082,8 +27114,8 @@ "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите на вкладку \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "zh-chs": "在啟用兩因素身份驗證之前,無法訪問設備。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->27->1169", - "default.handlebars->27->489" + "default.handlebars->27->1180", + "default.handlebars->27->495" ] }, { @@ -27190,9 +27222,9 @@ "zh-chs": "卸載", "xloc": [ "default-mobile.handlebars->9->434", - "default.handlebars->27->1367", - "default.handlebars->27->625", - "default.handlebars->27->644" + "default.handlebars->27->1378", + "default.handlebars->27->631", + "default.handlebars->27->650" ] }, { @@ -27210,9 +27242,9 @@ "zh-chs": "卸載代理", "xloc": [ "default-mobile.handlebars->9->416", - "default.handlebars->27->1333", + "default.handlebars->27->1344", "default.handlebars->27->416", - "default.handlebars->27->660" + "default.handlebars->27->667" ] }, { @@ -27229,7 +27261,7 @@ "ru": "Удалить агент", "zh-chs": "卸載代理", "xloc": [ - "default.handlebars->27->680" + "default.handlebars->27->691" ] }, { @@ -27257,17 +27289,17 @@ "default.handlebars->27->109", "default.handlebars->27->111", "default.handlebars->27->113", - "default.handlebars->27->1192", - "default.handlebars->27->1193", + "default.handlebars->27->1203", + "default.handlebars->27->1204", "default.handlebars->27->13", - "default.handlebars->27->1737", - "default.handlebars->27->1750", - "default.handlebars->27->1751", + "default.handlebars->27->1748", + "default.handlebars->27->1761", + "default.handlebars->27->1762", "default.handlebars->27->41", "default.handlebars->27->412", "default.handlebars->27->42", - "default.handlebars->27->861", - "default.handlebars->27->868" + "default.handlebars->27->872", + "default.handlebars->27->879" ] }, { @@ -27285,7 +27317,7 @@ "zh-chs": "未知#{0}", "xloc": [ "default-mobile.handlebars->9->381", - "default.handlebars->27->1199" + "default.handlebars->27->1210" ] }, { @@ -27302,7 +27334,7 @@ "ru": "Неизвестное действие", "zh-chs": "未知動作", "xloc": [ - "default.handlebars->27->1787" + "default.handlebars->27->1798" ] }, { @@ -27319,8 +27351,8 @@ "ru": "Неизвестное устройство", "zh-chs": "未知設備", "xloc": [ - "default.handlebars->27->1601", - "default.handlebars->27->1725" + "default.handlebars->27->1612", + "default.handlebars->27->1736" ] }, { @@ -27337,9 +27369,9 @@ "ru": "Неизвестная группа устройств", "zh-chs": "未知設備組", "xloc": [ - "default.handlebars->27->1595", - "default.handlebars->27->1713", - "default.handlebars->27->1791" + "default.handlebars->27->1606", + "default.handlebars->27->1724", + "default.handlebars->27->1802" ] }, { @@ -27356,7 +27388,7 @@ "ru": "Неизвестная группа", "zh-chs": "未知群組", "xloc": [ - "default.handlebars->27->1783" + "default.handlebars->27->1794" ] }, { @@ -27374,7 +27406,7 @@ "zh-chs": "未知狀態", "xloc": [ "default-mobile.handlebars->9->220", - "default.handlebars->27->511" + "default.handlebars->27->517" ] }, { @@ -27391,7 +27423,7 @@ "ru": "Неизвестная группа пользователей", "zh-chs": "未知用戶組", "xloc": [ - "default.handlebars->27->1719" + "default.handlebars->27->1730" ] }, { @@ -27409,7 +27441,7 @@ "zh-chs": "未知版本和狀態", "xloc": [ "default-mobile.handlebars->9->222", - "default.handlebars->27->513" + "default.handlebars->27->519" ] }, { @@ -27442,7 +27474,7 @@ "nl": "Account ontgrendelen", "zh-chs": "解锁帐号", "xloc": [ - "default.handlebars->27->1492" + "default.handlebars->27->1503" ] }, { @@ -27480,7 +27512,7 @@ "ru": "Актуально", "zh-chs": "最新", "xloc": [ - "default.handlebars->27->1848" + "default.handlebars->27->1859" ] }, { @@ -27521,11 +27553,11 @@ "default-mobile.handlebars->9->126", "default-mobile.handlebars->9->298", "default-mobile.handlebars->9->316", - "default.handlebars->27->1440", - "default.handlebars->27->1448", - "default.handlebars->27->794", - "default.handlebars->27->817", - "default.handlebars->27->820", + "default.handlebars->27->1451", + "default.handlebars->27->1459", + "default.handlebars->27->805", + "default.handlebars->27->828", + "default.handlebars->27->831", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -27543,7 +27575,7 @@ "ru": "Загрузить ядро Mesh Agent", "zh-chs": "上傳網格代理核心", "xloc": [ - "default.handlebars->27->913" + "default.handlebars->27->924" ] }, { @@ -27560,7 +27592,7 @@ "ru": "Загрузить файл ядра", "zh-chs": "上載核心文件", "xloc": [ - "default.handlebars->27->910" + "default.handlebars->27->921" ] }, { @@ -27577,7 +27609,7 @@ "ru": "Загрузить ядро по умолчанию с сервера ", "zh-chs": "上載默認服務器核心", "xloc": [ - "default.handlebars->27->907" + "default.handlebars->27->918" ] }, { @@ -27594,7 +27626,7 @@ "ru": "Загрузить ядро восстановления", "zh-chs": "上傳恢復核心", "xloc": [ - "default.handlebars->27->909" + "default.handlebars->27->920" ] }, { @@ -27611,8 +27643,8 @@ "ru": "Загрузка перезапишет 1 файл. Продолжить?", "zh-chs": "上傳將覆蓋1個文件。繼續?", "xloc": [ - "default.handlebars->27->1449", - "default.handlebars->27->818" + "default.handlebars->27->1460", + "default.handlebars->27->829" ] }, { @@ -27629,8 +27661,8 @@ "ru": "Загрузка перезапишет {0} файлов. Продолжить?", "zh-chs": "上傳將覆蓋{0}個文件。繼續?", "xloc": [ - "default.handlebars->27->1450", - "default.handlebars->27->819" + "default.handlebars->27->1461", + "default.handlebars->27->830" ] }, { @@ -27661,7 +27693,7 @@ "ru": "Верхний Сорбский", "zh-chs": "上索布族", "xloc": [ - "default.handlebars->27->1123" + "default.handlebars->27->1134" ] }, { @@ -27678,7 +27710,7 @@ "ru": "Урду", "zh-chs": "烏爾都語", "xloc": [ - "default.handlebars->27->1124" + "default.handlebars->27->1135" ] }, { @@ -27730,8 +27762,8 @@ "ru": "Использовано", "zh-chs": "用過的", "xloc": [ - "default.handlebars->27->1777", - "default.handlebars->27->1779" + "default.handlebars->27->1788", + "default.handlebars->27->1790" ] }, { @@ -27748,12 +27780,12 @@ "ru": "Пользователь", "zh-chs": "用戶", "xloc": [ - "default.handlebars->27->1253", - "default.handlebars->27->1476", - "default.handlebars->27->1591", - "default.handlebars->27->1770", + "default.handlebars->27->1264", + "default.handlebars->27->1487", + "default.handlebars->27->1602", + "default.handlebars->27->1781", "default.handlebars->27->211", - "default.handlebars->27->609" + "default.handlebars->27->615" ] }, { @@ -27770,7 +27802,7 @@ "ru": "Пользователь + Файлы", "zh-chs": "用戶+文件", "xloc": [ - "default.handlebars->27->1477" + "default.handlebars->27->1488" ] }, { @@ -27787,10 +27819,10 @@ "ru": "Импорт учетной записи пользователя", "zh-chs": "用戶帳戶導入", "xloc": [ - "default.handlebars->27->1504", - "default.handlebars->27->1505", - "default.handlebars->27->1507", - "default.handlebars->27->1509" + "default.handlebars->27->1515", + "default.handlebars->27->1516", + "default.handlebars->27->1518", + "default.handlebars->27->1520" ] }, { @@ -27807,7 +27839,7 @@ "ru": "Учетные записи пользователей", "zh-chs": "用戶帳號", "xloc": [ - "default.handlebars->27->1796" + "default.handlebars->27->1807" ] }, { @@ -27825,8 +27857,8 @@ "zh-chs": "用戶授權", "xloc": [ "default-mobile.handlebars->9->389", - "default.handlebars->27->1251", - "default.handlebars->27->605" + "default.handlebars->27->1262", + "default.handlebars->27->611" ] }, { @@ -27843,9 +27875,9 @@ "ru": "Согласие пользователя", "zh-chs": "用戶同意", "xloc": [ - "default.handlebars->27->1221", - "default.handlebars->27->1669", - "default.handlebars->27->549" + "default.handlebars->27->1232", + "default.handlebars->27->1680", + "default.handlebars->27->555" ] }, { @@ -27862,12 +27894,12 @@ "ru": "Группа пользователей", "zh-chs": "用戶組", "xloc": [ - "default.handlebars->27->1309", - "default.handlebars->27->1310", - "default.handlebars->27->1567", - "default.handlebars->27->1721", - "default.handlebars->27->1740", - "default.handlebars->27->608" + "default.handlebars->27->1320", + "default.handlebars->27->1321", + "default.handlebars->27->1578", + "default.handlebars->27->1732", + "default.handlebars->27->1751", + "default.handlebars->27->614" ] }, { @@ -27901,7 +27933,7 @@ "ru": "Членство в группах пользователей", "zh-chs": "用戶組成員資格", "xloc": [ - "default.handlebars->27->1718" + "default.handlebars->27->1729" ] }, { @@ -27925,17 +27957,17 @@ "ru": "Идентификатор пользователя", "zh-chs": "用戶標識", "xloc": [ - "default.handlebars->27->1370", - "default.handlebars->27->1636", - "default.handlebars->27->1637" + "default.handlebars->27->1381", + "default.handlebars->27->1647", + "default.handlebars->27->1648" ] }, { "en": "User Identifiers", "nl": "Gebruikers-ID's", "xloc": [ - "default.handlebars->27->1307", - "default.handlebars->27->1620" + "default.handlebars->27->1318", + "default.handlebars->27->1631" ] }, { @@ -27952,7 +27984,7 @@ "ru": "Экспортировать список пользователей", "zh-chs": "用戶列表導出", "xloc": [ - "default.handlebars->27->1516" + "default.handlebars->27->1527" ] }, { @@ -27970,7 +28002,7 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->436", - "default.handlebars->27->1369" + "default.handlebars->27->1380" ] }, { @@ -28032,7 +28064,7 @@ "ru": "Сессии пользователя", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->27->1813" + "default.handlebars->27->1824" ] }, { @@ -28091,7 +28123,7 @@ "en": "User \\\"{0}\\\"", "nl": "Gebuiker \\\"{0}\\\"", "xloc": [ - "default.handlebars->27->737" + "default.handlebars->27->748" ] }, { @@ -28108,8 +28140,8 @@ "ru": "Использовать настройки браузера", "zh-chs": "用戶瀏覽器價值", "xloc": [ - "default.handlebars->27->1134", - "default.handlebars->27->1136" + "default.handlebars->27->1145", + "default.handlebars->27->1147" ] }, { @@ -28166,10 +28198,10 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->261", - "default.handlebars->27->1524", + "default.handlebars->27->1535", "default.handlebars->27->265", "default.handlebars->27->297", - "default.handlebars->27->666", + "default.handlebars->27->677", "mstsc.handlebars->main->1->3->1->4->1->0", "mstsc.handlebars->main->1->3->1->4->3", "player.handlebars->3->4" @@ -28228,9 +28260,9 @@ "ru": "Пользователи", "zh-chs": "用戶數", "xloc": [ - "default.handlebars->27->1555", - "default.handlebars->27->1583", - "default.handlebars->27->1812", + "default.handlebars->27->1566", + "default.handlebars->27->1594", + "default.handlebars->27->1823", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -28248,7 +28280,7 @@ "ru": "Сессии пользователей", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->27->1800" + "default.handlebars->27->1811" ] }, { @@ -28265,7 +28297,7 @@ "ru": "VT100+ (F10 = ESC+[OY)", "zh-chs": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->27->776" + "default.handlebars->27->787" ] }, { @@ -28282,7 +28314,7 @@ "ru": "Венда", "zh-chs": "文達", "xloc": [ - "default.handlebars->27->1125" + "default.handlebars->27->1136" ] }, { @@ -28301,8 +28333,8 @@ "xloc": [ "default-mobile.handlebars->9->360", "default-mobile.handlebars->9->363", - "default.handlebars->27->876", - "default.handlebars->27->879" + "default.handlebars->27->887", + "default.handlebars->27->890" ] }, { @@ -28333,7 +28365,7 @@ "ru": "Проверенный", "zh-chs": "已驗證", "xloc": [ - "default.handlebars->27->1699" + "default.handlebars->27->1710" ] }, { @@ -28360,8 +28392,8 @@ "zh-chs": "验证电话号码", "xloc": [ "default-mobile.handlebars->9->63", - "default.handlebars->27->1485", - "default.handlebars->27->914" + "default.handlebars->27->1496", + "default.handlebars->27->925" ] }, { @@ -28417,10 +28449,10 @@ "default-mobile.handlebars->9->344", "default-mobile.handlebars->9->361", "default-mobile.handlebars->9->366", - "default.handlebars->27->825", - "default.handlebars->27->860", - "default.handlebars->27->877", - "default.handlebars->27->882", + "default.handlebars->27->836", + "default.handlebars->27->871", + "default.handlebars->27->888", + "default.handlebars->27->893", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -28437,7 +28469,7 @@ "ru": "Версия несовместима, пожалуйста, сначала обновите установку MeshCentral", "zh-chs": "版本不兼容,请先升级您的MeshCentral安装", "xloc": [ - "default.handlebars->27->1844" + "default.handlebars->27->1855" ] }, { @@ -28472,7 +28504,7 @@ "ru": "Вьетнамский", "zh-chs": "越南文", "xloc": [ - "default.handlebars->27->1126" + "default.handlebars->27->1137" ] }, { @@ -28505,8 +28537,8 @@ "ru": "Просмотр журнала изменений", "zh-chs": "查看变更日志", "xloc": [ - "default.handlebars->27->1847", - "default.handlebars->27->1849" + "default.handlebars->27->1858", + "default.handlebars->27->1860" ] }, { @@ -28523,7 +28555,7 @@ "ru": "Посмотреть примечания этого устройства", "zh-chs": "查看有關此設備的註釋", "xloc": [ - "default.handlebars->27->565" + "default.handlebars->27->571" ] }, { @@ -28540,7 +28572,7 @@ "ru": "Посмотреть примечания этой группы устройств", "zh-chs": "查看有關此設備組的註釋", "xloc": [ - "default.handlebars->27->1236" + "default.handlebars->27->1247" ] }, { @@ -28557,7 +28589,7 @@ "ru": "Посмотреть примечания об этом пользователе", "zh-chs": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->27->1677" + "default.handlebars->27->1688" ] }, { @@ -28574,7 +28606,7 @@ "ru": "Волапукский", "zh-chs": "沃拉普克", "xloc": [ - "default.handlebars->27->1127" + "default.handlebars->27->1138" ] }, { @@ -28621,7 +28653,7 @@ "ko": "사용자가 액세스 권한을 부여하기를 기다리는 중 ...", "zh-chs": "正在等待用户授予访问权限...", "xloc": [ - "default.handlebars->27->726" + "default.handlebars->27->737" ] }, { @@ -28637,8 +28669,8 @@ "ru": "Услуга", "zh-chs": "唤醒", "xloc": [ - "default.handlebars->27->621", - "default.handlebars->27->640" + "default.handlebars->27->627", + "default.handlebars->27->646" ] }, { @@ -28657,8 +28689,8 @@ "xloc": [ "default-mobile.handlebars->9->412", "default-mobile.handlebars->9->425", - "default.handlebars->27->1329", - "default.handlebars->27->1357" + "default.handlebars->27->1340", + "default.handlebars->27->1368" ] }, { @@ -28676,7 +28708,7 @@ "zh-chs": "醒來", "xloc": [ "default-mobile.handlebars->9->253", - "default.handlebars->27->655" + "default.handlebars->27->661" ] }, { @@ -28710,7 +28742,7 @@ "ru": "Валлонский", "zh-chs": "瓦隆", "xloc": [ - "default.handlebars->27->1128" + "default.handlebars->27->1139" ] }, { @@ -28727,7 +28759,7 @@ "ru": "Слабый", "zh-chs": "弱", "xloc": [ - "default.handlebars->27->1181" + "default.handlebars->27->1192" ] }, { @@ -28764,8 +28796,8 @@ "ru": "Веб-сервер", "zh-chs": "網絡服務器", "xloc": [ - "default.handlebars->27->1833", - "default.handlebars->27->1834" + "default.handlebars->27->1844", + "default.handlebars->27->1845" ] }, { @@ -28782,7 +28814,7 @@ "ru": "Запросы веб-сервера", "zh-chs": "Web服務器請求", "xloc": [ - "default.handlebars->27->1835" + "default.handlebars->27->1846" ] }, { @@ -28799,14 +28831,14 @@ "ru": "Ретранслятор Web Socket", "zh-chs": "Web套接字中繼", "xloc": [ - "default.handlebars->27->1836" + "default.handlebars->27->1847" ] }, { "en": "Web-RDP", "nl": "Web-RDP", "xloc": [ - "default.handlebars->27->591" + "default.handlebars->27->597" ] }, { @@ -28859,7 +28891,7 @@ "ru": "Уэльский", "zh-chs": "威爾士語", "xloc": [ - "default.handlebars->27->1129" + "default.handlebars->27->1140" ] }, { @@ -28876,7 +28908,7 @@ "ru": "Когда этот параметр включен, коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->27->1378" + "default.handlebars->27->1389" ] }, { @@ -28894,7 +28926,7 @@ "zh-chs": "啟用後,每次登錄時,您都可以選擇向電子郵件帳戶接收登錄令牌,以提高安全性。", "xloc": [ "default-mobile.handlebars->9->69", - "default.handlebars->27->921" + "default.handlebars->27->932" ] }, { @@ -28911,7 +28943,7 @@ "ru": "Будет изменено при следующем входе в систему.", "zh-chs": "下次登錄時將更改。", "xloc": [ - "default.handlebars->27->1649" + "default.handlebars->27->1660" ] }, { @@ -29070,7 +29102,7 @@ "ru": "Исполняемый файл Win32", "zh-chs": "Win32可執行文件", "xloc": [ - "default.handlebars->27->694" + "default.handlebars->27->705" ] }, { @@ -29087,7 +29119,7 @@ "ru": "WinSCP", "zh-chs": "WinSCP", "xloc": [ - "default.handlebars->27->587" + "default.handlebars->27->593" ] }, { @@ -29139,7 +29171,7 @@ "ru": "Windows (32bit)", "zh-chs": "Windows(32位)", "xloc": [ - "default.handlebars->27->698" + "default.handlebars->27->709" ] }, { @@ -29156,7 +29188,7 @@ "ru": "Windows (64bit)", "zh-chs": "Windows(64位)", "xloc": [ - "default.handlebars->27->699" + "default.handlebars->27->710" ] }, { @@ -29282,6 +29314,13 @@ "default.handlebars->27->17" ] }, + { + "en": "Windows Command Prompt", + "xloc": [ + "default.handlebars->27->432", + "default.handlebars->27->671" + ] + }, { "cs": "Windows MinCore konzole", "de": "Windows MinCore Konsole", @@ -29318,6 +29357,13 @@ "default.handlebars->27->35" ] }, + { + "en": "Windows PowerShell", + "xloc": [ + "default.handlebars->27->433", + "default.handlebars->27->672" + ] + }, { "cs": "Pouze Windows", "de": "nur Windows", @@ -29384,7 +29430,7 @@ "ru": "Перенос строк: ВЫКЛ", "zh-chs": "包裝:關閉", "xloc": [ - "default.handlebars->27->812" + "default.handlebars->27->823" ] }, { @@ -29401,7 +29447,7 @@ "ru": "Перенос строк: ВКЛ", "zh-chs": "包裝:開", "xloc": [ - "default.handlebars->27->811" + "default.handlebars->27->822" ] }, { @@ -29418,7 +29464,7 @@ "ru": "Записать событие к этому устройству", "zh-chs": "為此設備寫一個事件", "xloc": [ - "default.handlebars->27->567" + "default.handlebars->27->573" ] }, { @@ -29472,7 +29518,7 @@ "ru": "XTerm", "zh-chs": "XTerm", "xloc": [ - "default.handlebars->27->581" + "default.handlebars->27->587" ] }, { @@ -29489,7 +29535,7 @@ "ru": "Кос", "zh-chs": "科薩", "xloc": [ - "default.handlebars->27->1130" + "default.handlebars->27->1141" ] }, { @@ -29506,7 +29552,7 @@ "ru": "Идиш", "zh-chs": "意第緒語", "xloc": [ - "default.handlebars->27->1131" + "default.handlebars->27->1142" ] }, { @@ -29581,7 +29627,7 @@ "ru": "YubiKey™ OTP", "zh-chs": "YubiKey™ OTP", "xloc": [ - "default.handlebars->27->933" + "default.handlebars->27->944" ] }, { @@ -29598,7 +29644,7 @@ "ru": "Масштабирование по размеру", "zh-chs": "縮放至適合範圍", "xloc": [ - "default.handlebars->27->476" + "default.handlebars->27->482" ] }, { @@ -29615,8 +29661,8 @@ "ru": "Масштабирование +", "zh-chs": "放大到一定程度", "xloc": [ - "default.handlebars->27->473", - "default.handlebars->27->479" + "default.handlebars->27->479", + "default.handlebars->27->485" ] }, { @@ -29633,8 +29679,8 @@ "ru": "Масштабирование -", "zh-chs": "縮小到一定程度", "xloc": [ - "default.handlebars->27->474", - "default.handlebars->27->480" + "default.handlebars->27->480", + "default.handlebars->27->486" ] }, { @@ -29651,7 +29697,7 @@ "ru": "Зулусский", "zh-chs": "祖魯族", "xloc": [ - "default.handlebars->27->1132" + "default.handlebars->27->1143" ] }, { @@ -29864,7 +29910,7 @@ "ru": "\\\\'", "zh-chs": "\\\\'", "xloc": [ - "default.handlebars->27->1845" + "default.handlebars->27->1856" ] }, { @@ -29876,8 +29922,8 @@ "fr": "a:", "de": "a:", "xloc": [ - "default.handlebars->27->455", - "default.handlebars->27->456" + "default.handlebars->27->461", + "default.handlebars->27->462" ] }, { @@ -29953,8 +29999,8 @@ "en": "atag:", "nl": "atag:", "xloc": [ - "default.handlebars->27->453", - "default.handlebars->27->454" + "default.handlebars->27->459", + "default.handlebars->27->460" ] }, { @@ -30029,7 +30075,7 @@ "ru": "console.txt", "zh-chs": "console.txt", "xloc": [ - "default.handlebars->27->904" + "default.handlebars->27->915" ] }, { @@ -30047,7 +30093,7 @@ "zh-chs": "複製", "xloc": [ "default-mobile.handlebars->9->130", - "default.handlebars->27->1445" + "default.handlebars->27->1456" ] }, { @@ -30071,8 +30117,8 @@ "ru": "devicelist.csv", "zh-chs": "devicelist.csv", "xloc": [ - "default.handlebars->27->432", - "default.handlebars->27->437" + "default.handlebars->27->438", + "default.handlebars->27->443" ] }, { @@ -30089,8 +30135,8 @@ "ru": "devicelist.json", "zh-chs": "devicelist.json", "xloc": [ - "default.handlebars->27->434", - "default.handlebars->27->438" + "default.handlebars->27->440", + "default.handlebars->27->444" ] }, { @@ -30121,8 +30167,8 @@ "ru": "eventslist.csv", "zh-chs": "eventslist.csv", "xloc": [ - "default.handlebars->27->1454", - "default.handlebars->27->1459" + "default.handlebars->27->1465", + "default.handlebars->27->1470" ] }, { @@ -30139,8 +30185,8 @@ "ru": "eventslist.json", "zh-chs": "eventslist.json", "xloc": [ - "default.handlebars->27->1456", - "default.handlebars->27->1460" + "default.handlebars->27->1467", + "default.handlebars->27->1471" ] }, { @@ -30174,7 +30220,7 @@ "ru": "свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->27->1808" + "default.handlebars->27->1819" ] }, { @@ -30193,8 +30239,8 @@ "xloc": [ "default-mobile.handlebars->9->141", "default-mobile.handlebars->9->142", - "default.handlebars->27->447", - "default.handlebars->27->448" + "default.handlebars->27->453", + "default.handlebars->27->454" ] }, { @@ -30213,8 +30259,8 @@ "xloc": [ "default-mobile.handlebars->9->139", "default-mobile.handlebars->9->140", - "default.handlebars->27->445", - "default.handlebars->27->446" + "default.handlebars->27->451", + "default.handlebars->27->452" ] }, { @@ -30359,7 +30405,7 @@ "ru": "id, name, email, creation, lastlogin, groups, authfactors", "zh-chs": "id,名稱,電子郵件,創建,lastlogin,組,authfactors", "xloc": [ - "default.handlebars->27->1517" + "default.handlebars->27->1528" ] }, { @@ -30376,7 +30422,7 @@ "ru": "идентификатор, имя, имя, хост, значок, ip, osdesc, состояние, имя группы, conn, pwr", "zh-chs": "id,名稱,rname,主機,圖標,ip,osdesc,狀態,組名,conn,pwr", "xloc": [ - "default.handlebars->27->436" + "default.handlebars->27->442" ] }, { @@ -30395,8 +30441,8 @@ "xloc": [ "default-mobile.handlebars->9->137", "default-mobile.handlebars->9->138", - "default.handlebars->27->443", - "default.handlebars->27->444" + "default.handlebars->27->449", + "default.handlebars->27->450" ] }, { @@ -30460,7 +30506,7 @@ "ru": "k max, пусто по умолчанию", "zh-chs": "k max,默认为空白", "xloc": [ - "default.handlebars->27->1541" + "default.handlebars->27->1552" ] }, { @@ -30496,28 +30542,28 @@ "zh-chs": "移動", "xloc": [ "default-mobile.handlebars->9->131", - "default.handlebars->27->1446" + "default.handlebars->27->1457" ] }, { "en": "noVNC", "nl": "noVNC", "xloc": [ - "default.handlebars->27->589" + "default.handlebars->27->595" ] }, { "en": "noVNC Connection", "nl": "noVNC verbinding", "xloc": [ - "default.handlebars->27->460" + "default.handlebars->27->466" ] }, { "en": "noVNC remote connection port:", "nl": "noVNC externe verbindingspoort:", "xloc": [ - "default.handlebars->27->459" + "default.handlebars->27->465" ] }, { @@ -30548,7 +30594,7 @@ "ru": "servererrors.txt", "zh-chs": "servererrors.txt", "xloc": [ - "default.handlebars->27->1196" + "default.handlebars->27->1207" ] }, { @@ -30565,7 +30611,7 @@ "ru": "servertrace.csv", "zh-chs": "servertrace.csv", "xloc": [ - "default.handlebars->27->1843" + "default.handlebars->27->1854" ] }, { @@ -30584,8 +30630,8 @@ "xloc": [ "default-mobile.handlebars->9->145", "default-mobile.handlebars->9->146", - "default.handlebars->27->451", - "default.handlebars->27->452" + "default.handlebars->27->457", + "default.handlebars->27->458" ] }, { @@ -30604,8 +30650,8 @@ "xloc": [ "default-mobile.handlebars->9->143", "default-mobile.handlebars->9->144", - "default.handlebars->27->449", - "default.handlebars->27->450" + "default.handlebars->27->455", + "default.handlebars->27->456" ] }, { @@ -30622,7 +30668,7 @@ "ru": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "zh-chs": "時間,conn.agent,conn.users,conn.usersessions,conn.relaysession,conn.intelamt,mem.external,mem.heapused,mem.heaptotal,mem.rss", "xloc": [ - "default.handlebars->27->1821" + "default.handlebars->27->1832" ] }, { @@ -30639,7 +30685,7 @@ "ru": "time, source, message", "zh-chs": "時間,來源,訊息", "xloc": [ - "default.handlebars->27->1842" + "default.handlebars->27->1853" ] }, { @@ -30670,7 +30716,7 @@ "ru": "всего", "zh-chs": "總", "xloc": [ - "default.handlebars->27->1809" + "default.handlebars->27->1820" ] }, { @@ -30689,8 +30735,8 @@ "xloc": [ "default-mobile.handlebars->9->135", "default-mobile.handlebars->9->136", - "default.handlebars->27->441", - "default.handlebars->27->442" + "default.handlebars->27->447", + "default.handlebars->27->448" ] }, { @@ -30723,8 +30769,8 @@ "xloc": [ "default-mobile.handlebars->9->133", "default-mobile.handlebars->9->134", - "default.handlebars->27->439", - "default.handlebars->27->440" + "default.handlebars->27->445", + "default.handlebars->27->446" ] }, { @@ -30741,8 +30787,8 @@ "ru": "userlist.csv", "zh-chs": "userlist.csv", "xloc": [ - "default.handlebars->27->1513", - "default.handlebars->27->1518" + "default.handlebars->27->1524", + "default.handlebars->27->1529" ] }, { @@ -30759,8 +30805,8 @@ "ru": "userlist.json", "zh-chs": "userlist.json", "xloc": [ - "default.handlebars->27->1515", - "default.handlebars->27->1519" + "default.handlebars->27->1526", + "default.handlebars->27->1530" ] }, { @@ -30777,7 +30823,7 @@ "ru": "utc, время, тип, действие, пользователь, устройство, сообщение", "zh-chs": "utc,時間,類型,操作,用戶,設備,消息", "xloc": [ - "default.handlebars->27->1458" + "default.handlebars->27->1469" ] }, { @@ -30811,7 +30857,7 @@ "ru": "{0} Гб", "zh-chs": "{0} Gb", "xloc": [ - "default.handlebars->27->1425" + "default.handlebars->27->1436" ] }, { @@ -30828,8 +30874,8 @@ "ru": "{0} Kб", "zh-chs": "{0} Kb", "xloc": [ - "default.handlebars->27->1423", - "default.handlebars->27->1749" + "default.handlebars->27->1434", + "default.handlebars->27->1760" ] }, { @@ -30847,8 +30893,8 @@ "zh-chs": "{0} Mb", "xloc": [ "default-mobile.handlebars->9->377", - "default.handlebars->27->1424", - "default.handlebars->27->893" + "default.handlebars->27->1435", + "default.handlebars->27->904" ] }, { @@ -30866,7 +30912,7 @@ "zh-chs": "{0} Mb,{1} Mhz", "xloc": [ "default-mobile.handlebars->9->372", - "default.handlebars->27->888" + "default.handlebars->27->899" ] }, { @@ -30883,7 +30929,7 @@ "ru": "{0} активных сессий", "zh-chs": "{0}個活動會話", "xloc": [ - "default.handlebars->27->1689" + "default.handlebars->27->1700" ] }, { @@ -30900,7 +30946,7 @@ "ru": "{0} байт", "zh-chs": "{0} b", "xloc": [ - "default.handlebars->27->1422" + "default.handlebars->27->1433" ] }, { @@ -30918,8 +30964,8 @@ "zh-chs": "{0}個字節", "xloc": [ "default-mobile.handlebars->9->119", - "default.handlebars->27->1433", - "default.handlebars->27->1764" + "default.handlebars->27->1444", + "default.handlebars->27->1775" ] }, { @@ -30936,14 +30982,14 @@ "ru": "{0} байт осталось", "zh-chs": "剩餘{0}個字節", "xloc": [ - "default.handlebars->27->1417" + "default.handlebars->27->1428" ] }, { "en": "{0} connections", "nl": "{0} verbindingen", "xloc": [ - "default.handlebars->27->736" + "default.handlebars->27->747" ] }, { @@ -30960,7 +31006,7 @@ "ru": "{0} гигабайт осталось", "zh-chs": "剩餘{0} GB", "xloc": [ - "default.handlebars->27->1420" + "default.handlebars->27->1431" ] }, { @@ -30977,7 +31023,7 @@ "ru": "{0} групп", "zh-chs": "{0}個群組", "xloc": [ - "default.handlebars->27->1654" + "default.handlebars->27->1665" ] }, { @@ -31025,7 +31071,7 @@ "ru": "{0} килобайт осталось", "zh-chs": "剩餘{0}千字節", "xloc": [ - "default.handlebars->27->1418" + "default.handlebars->27->1429" ] }, { @@ -31060,7 +31106,7 @@ "ru": "{0} мегабайт осталось", "zh-chs": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->27->1419" + "default.handlebars->27->1430" ] }, { @@ -31094,7 +31140,7 @@ "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей...", "zh-chs": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->27->1468" + "default.handlebars->27->1479" ] }, { @@ -31230,7 +31276,7 @@ "default-mobile.handlebars->9->163", "default-mobile.handlebars->9->166", "default-mobile.handlebars->9->169", - "default.handlebars->27->1472", + "default.handlebars->27->1483", "default.handlebars->27->229", "default.handlebars->27->232", "default.handlebars->27->235", @@ -31354,7 +31400,7 @@ "ru": "{0}k в 1 файле. {1}k максимум", "zh-chs": "{0} k合1檔案。最多{1} k", "xloc": [ - "default.handlebars->27->1427" + "default.handlebars->27->1438" ] }, { @@ -31371,7 +31417,7 @@ "ru": "{0}k в {1} файлах. {2}k максимум", "zh-chs": "{1}個文件中有{0}個。最多{2} k", "xloc": [ - "default.handlebars->27->1426" + "default.handlebars->27->1437" ] }, { diff --git a/views/default.handlebars b/views/default.handlebars index 251b0565..d8794bd3 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -4233,7 +4233,7 @@ } var x = "Select an operation to perform on all selected devices. Actions will be performed only with proper rights." + '

'; - x += addHtmlValue("Operation", ''); + x += addHtmlValue("Operation", ''); setDialogMode(2, "Group Action", 3, groupActionFunctionEx, x); } @@ -4273,6 +4273,26 @@ } else if (op == 105) { // Export device information p2downloadDeviceInfo(); + } else if (op == 106) { + // Run commands + var wintype = false, linuxtype = false, chkNodeIds = getCheckedDevices(); + for (var i in chkNodeIds) { + var n = getNodeFromId(chkNodeIds[i]); + if (n.agent) { if ((n.agent.id > 0) && (n.agent.id < 5)) { wintype = true; } else { linuxtype = true; } } + } + if ((wintype == true) || (linuxtype == true)) { + var x = "Run commands on selected devices." + '

'; + if (wintype == true) { + x += ''; + } + x += ''; + setDialogMode(2, "Run Commands", 3, d2groupActionFunctionRunCommands, x); + Q('d2runcmd').focus(); + //QE('idx_dlgOkButton', true); + } } else { // Power operation meshserver.send({ action: 'poweraction', nodeids: getCheckedDevices(), actiontype: parseInt(op) }); @@ -4309,6 +4329,11 @@ function d2groupActionFunctionDelCheck() { QE('idx_dlgOkButton', Q('d2check').checked); } function d2groupActionFunctionDelExec() { meshserver.send({ action: 'removedevices', nodeids: getCheckedDevices() }); uncheckAllDevices(); } + function d2groupActionFunctionRunCommands() { + var type = 3; + try { type = parseInt(Q('d2cmdtype').value); } catch (ex) { } + meshserver.send({ action: 'runcommands', nodeids: getCheckedDevices(), type: type, cmds: Q('d2runcmd').value }); uncheckAllDevices(); + } function onSortSelectChange(skipsave) { sort = document.getElementById('sortselect').selectedIndex; @@ -5763,7 +5788,7 @@ var x = "Select an operation to perform on this device." + '

'; var y = ''; @@ -5782,12 +5807,29 @@ } else if (op == 104) { // Uninstall agent p10showSendUninstallAgentDialog([currentNode._id]); + } else if (op == 106) { + // Run commands + var wintype = false, linuxtype = false; + if (currentNode.agent) { if ((currentNode.agent.id > 0) && (currentNode.agent.id < 5)) { wintype = true; } else { linuxtype = true; } } + if ((wintype == true) || (linuxtype == true)) { + var x = "Run commands on this device." + '

'; + if (wintype == true) { x += ''; } + x += ''; + setDialogMode(2, "Run Commands", 3, deviceRunCmdsFunctionEx, x); + Q('d2runcmd').focus(); + } } else { // Power operation meshserver.send({ action: 'poweraction', nodeids: [ currentNode._id ], actiontype: parseInt(op) }); } } + function deviceRunCmdsFunctionEx() { + var cmdType = 3; + if ((currentNode.agent.id > 0) && (currentNode.agent.id < 5)) { cmdType = Q('d2cmdtype').value; } + meshserver.send({ action: 'runcommands', nodeids: [ currentNode._id ], type: parseInt(cmdType), cmds: Q('d2runcmd').value }); + } + // Called when MeshCommander needs new credentials or updated credentials. function updateAmtCredentials(forceDialog) { var node = getNodeFromId(currentNode._id); @@ -8043,7 +8085,6 @@ if (mode == 3) { eventList = currentUserEvents; } for (var i in eventList) { if (eventList[i].h == h) { xevent = eventList[i]; break; } } if (xevent) { - console.log(xevent); var x = '
'; for (var i in xevent) { if ((i == 'h') || (i == '_id') || (i == 'ids') || (i == 'domain') || (xevent[i] == null) || (typeof xevent[i] == 'object')) continue;