From 5f762550d20dcd6203aa1cdcc96e5957edae548a Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Sun, 29 Mar 2020 22:40:13 -0700 Subject: [PATCH] More work on user device rights. --- agents/meshcore.js | 2 +- db.js | 41 +- meshcentral.js | 8 +- meshuser.js | 16 +- translate/translate.json | 2891 +++++++++++++++++++------------------- views/default.handlebars | 286 ++-- webserver.js | 31 +- 7 files changed, 1703 insertions(+), 1572 deletions(-) diff --git a/agents/meshcore.js b/agents/meshcore.js index 22d701c9..de19cb26 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -794,7 +794,7 @@ function createMeshCore(agent) { if (process.platform != 'win32') break; var p = require('user-sessions').enumerateUsers(); p.sessionid = data.sessionid; - p.then(function (u) { mesh.SendCommand({ action: 'msg', type: 'userSessions', sessionid: u.sessionid, data: u }); }); + p.then(function (u) { mesh.SendCommand({ action: 'msg', type: 'userSessions', sessionid: data.sessionid, data: u }); }); break; } default: diff --git a/db.js b/db.js index 1940ebd1..9d6c0f33 100644 --- a/db.js +++ b/db.js @@ -803,7 +803,17 @@ module.exports.CreateDB = function (parent, func) { obj.GetAll = function (func) { sqlDbQuery('SELECT domain, doc FROM meshcentral.main', null, func); } obj.GetHash = function (id, func) { sqlDbQuery('SELECT doc FROM meshcentral.main WHERE id = ?', [id], func); } obj.GetAllTypeNoTypeField = function (type, domain, func) { sqlDbQuery('SELECT doc FROM meshcentral.main WHERE type = ? AND domain = ?', [type, domain], function (err, docs) { if (err == null) { for (var i in docs) { delete docs[i].type } } func(err, docs); }); }; - obj.GetAllTypeNoTypeFieldMeshFiltered = function (meshes, domain, type, id, func) { if (id && (id != '')) { sqlDbQuery('SELECT doc FROM meshcentral.main WHERE id = ? AND type = ? AND domain = ? AND extra IN (?)', [id, type, domain, meshes], function (err, docs) { if (err == null) { for (var i in docs) { delete docs[i].type } } func(err, docs); }); } else { sqlDbQuery('SELECT doc FROM meshcentral.main WHERE type = ? AND domain = ? AND extra IN (?)', [type, domain, meshes], function (err, docs) { if (err == null) { for (var i in docs) { delete docs[i].type } } func(err, docs); }); } }; + obj.GetAllTypeNoTypeFieldMeshFiltered = function (meshes, extrasids, domain, type, id, func) { + if (id && (id != '')) { + sqlDbQuery('SELECT doc FROM meshcentral.main WHERE id = ? AND type = ? AND domain = ? AND extra IN (?)', [id, type, domain, meshes], function (err, docs) { if (err == null) { for (var i in docs) { delete docs[i].type } } func(err, docs); }); + } else { + if (extrasids == null) { + sqlDbQuery('SELECT doc FROM meshcentral.main WHERE type = ? AND domain = ? AND extra IN (?)', [type, domain, meshes], function (err, docs) { if (err == null) { for (var i in docs) { delete docs[i].type } } func(err, docs); }); + } else { + sqlDbQuery('SELECT doc FROM meshcentral.main WHERE type = ? AND domain = ? AND (extra IN (?) OR id IN (?))', [type, domain, meshes, extrasids], function (err, docs) { if (err == null) { for (var i in docs) { delete docs[i].type } } func(err, docs); }); + } + } + }; obj.GetAllType = function (type, func) { sqlDbQuery('SELECT doc FROM meshcentral.main WHERE type = ?', [type], func); } obj.GetAllIdsOfType = function (ids, domain, type, func) { sqlDbQuery('SELECT doc FROM meshcentral.main WHERE id IN (?) AND domain = ? AND type = ?', [ids, domain, type], func); } obj.GetUserWithEmail = function (domain, email, func) { sqlDbQuery('SELECT doc FROM meshcentral.main WHERE domain = ? AND extra = ?', [domain, 'email/' + email], func); } @@ -952,7 +962,17 @@ module.exports.CreateDB = function (parent, func) { obj.GetAll = function (func) { obj.file.find({}).toArray(function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); }; obj.GetHash = function (id, func) { obj.file.find({ _id: id }).project({ _id: 0, hash: 1 }).toArray(function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); }; obj.GetAllTypeNoTypeField = function (type, domain, func) { obj.file.find({ type: type, domain: domain }).project({ type: 0 }).toArray(function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); }; - obj.GetAllTypeNoTypeFieldMeshFiltered = function (meshes, domain, type, id, func) { var x = { type: type, domain: domain, meshid: { $in: meshes } }; if (id) { x._id = id; } obj.file.find(x, { type: 0 }).toArray(function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); }; + obj.GetAllTypeNoTypeFieldMeshFiltered = function (meshes, extrasids, domain, type, id, func) { + if (extrasids == null) { + var x = { type: type, domain: domain, meshid: { $in: meshes } }; + if (id) { x._id = id; } + obj.file.find(x, { type: 0 }).toArray(function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); + } else { + var x = { type: type, domain: domain, $or: [ { meshid: { $in: meshes } }, { _id: { $in: extrasids } } ] }; + if (id) { x._id = id; } + obj.file.find(x, { type: 0 }).toArray(function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); + } + }; obj.GetAllType = function (type, func) { obj.file.find({ type: type }).toArray(function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); }; obj.GetAllIdsOfType = function (ids, domain, type, func) { obj.file.find({ type: type, domain: domain, _id: { $in: ids } }).toArray(function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); }; obj.GetUserWithEmail = function (domain, email, func) { obj.file.find({ type: 'user', domain: domain, email: email }).project({ type: 0 }).toArray(function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); }; @@ -1090,7 +1110,22 @@ module.exports.CreateDB = function (parent, func) { obj.GetAll = function (func) { obj.file.find({}, function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); }; obj.GetHash = function (id, func) { obj.file.find({ _id: id }, { _id: 0, hash: 1 }, func); }; obj.GetAllTypeNoTypeField = function (type, domain, func) { obj.file.find({ type: type, domain: domain }, { type: 0 }, function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); }; - obj.GetAllTypeNoTypeFieldMeshFiltered = function (meshes, domain, type, id, func) { var x = { type: type, domain: domain, meshid: { $in: meshes } }; if (id) { x._id = id; } obj.file.find(x, { type: 0 }, function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); }; + //obj.GetAllTypeNoTypeFieldMeshFiltered = function (meshes, domain, type, id, func) { + //var x = { type: type, domain: domain, meshid: { $in: meshes } }; + //if (id) { x._id = id; } + //obj.file.find(x, { type: 0 }, function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); + //}; + obj.GetAllTypeNoTypeFieldMeshFiltered = function (meshes, extrasids, domain, type, id, func) { + if (extrasids == null) { + var x = { type: type, domain: domain, meshid: { $in: meshes } }; + if (id) { x._id = id; } + obj.file.find(x, { type: 0 }, function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); + } else { + var x = { type: type, domain: domain, $or: [{ meshid: { $in: meshes } }, { _id: { $in: extrasids } }] }; + if (id) { x._id = id; } + obj.file.find(x, { type: 0 }, function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); + } + }; obj.GetAllType = function (type, func) { obj.file.find({ type: type }, function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); }; obj.GetAllIdsOfType = function (ids, domain, type, func) { obj.file.find({ type: type, domain: domain, _id: { $in: ids } }, function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); }; obj.GetUserWithEmail = function (domain, email, func) { obj.file.find({ type: 'user', domain: domain, email: email }, { type: 0 }, function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); }; diff --git a/meshcentral.js b/meshcentral.js index b3319b0a..08a10d0f 100644 --- a/meshcentral.js +++ b/meshcentral.js @@ -1551,7 +1551,7 @@ function CreateMeshCentralServer(config, args) { // Event any changes on this server only if ((newConnectivity != oldPowerState) || (newPowerState != oldPowerState)) { - obj.DispatchEvent(obj.webserver.CreateMeshDispatchTargets(meshid), obj, { action: 'nodeconnect', meshid: meshid, nodeid: nodeid, conn: newConnectivity, pwr: newPowerState, nolog: 1, nopeers: 1 }); + obj.DispatchEvent(obj.webserver.CreateMeshDispatchTargets(meshid, [nodeid]), obj, { action: 'nodeconnect', meshid: meshid, nodeid: nodeid, conn: newConnectivity, pwr: newPowerState, nolog: 1, nopeers: 1 }); } } }; @@ -1599,8 +1599,8 @@ function CreateMeshCentralServer(config, args) { } // Event the node connection change - if (eventConnectChange == 1) { obj.DispatchEvent(obj.webserver.CreateMeshDispatchTargets(meshid), obj, { action: 'nodeconnect', meshid: meshid, nodeid: nodeid, conn: state.connectivity, pwr: state.powerState, ct: connectTime, nolog: 1, nopeers: 1 }); } - } else { + if (eventConnectChange == 1) { obj.DispatchEvent(obj.webserver.CreateMeshDispatchTargets(meshid, [nodeid]), obj, { action: 'nodeconnect', meshid: meshid, nodeid: nodeid, conn: state.connectivity, pwr: state.powerState, ct: connectTime, nolog: 1, nopeers: 1 }); } + } else {nodeid // Multi server mode // Change the node connection state @@ -1672,7 +1672,7 @@ function CreateMeshCentralServer(config, args) { } // Event the node connection change - if (eventConnectChange == 1) { obj.DispatchEvent(obj.webserver.CreateMeshDispatchTargets(meshid), obj, { action: 'nodeconnect', meshid: meshid, nodeid: nodeid, conn: state.connectivity, pwr: state.powerState, nolog: 1, nopeers: 1 }); } + if (eventConnectChange == 1) { obj.DispatchEvent(obj.webserver.CreateMeshDispatchTargets(meshid, [nodeid]), obj, { action: 'nodeconnect', meshid: meshid, nodeid: nodeid, conn: state.connectivity, pwr: state.powerState, nolog: 1, nopeers: 1 }); } } else { // Multi server mode diff --git a/meshuser.js b/meshuser.js index e2f708bc..2048d868 100644 --- a/meshuser.js +++ b/meshuser.js @@ -162,8 +162,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use var agent = parent.wsagents[command.nodeid]; if (agent != null) { // Check if we have permission to send a message to that node - var meshrights = parent.GetMeshRights(user, agent.dbMeshKey); // TODO: We will need to get the rights for this specific node. + //var meshrights = parent.GetMeshRights(user, agent.dbMeshKey); // TODO: We will need to get the rights for this specific node. var mesh = parent.meshes[agent.dbMeshKey]; + var meshrights = parent.GetNodeRights(user, mesh, agent.dbNodeKey); if ((mesh != null) && ((meshrights & MESHRIGHT_REMOTECONTROL) || (meshrights & MESHRIGHT_REMOTEVIEWONLY))) { // 8 is remote control permission, 256 is desktop read only command.sessionid = ws.sessionId; // Set the session id, required for responses command.rights = meshrights; // Add user rights flags to the message @@ -181,8 +182,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use var routing = parent.parent.GetRoutingServerId(command.nodeid, 1); // 1 = MeshAgent routing type if (routing != null) { // Check if we have permission to send a message to that node - var meshrights = parent.GetMeshRights(user, routing.meshid); + //var meshrights = parent.GetMeshRights(user, routing.meshid); // TODO: We will need to get the rights for this specific node. var mesh = parent.meshes[routing.meshid]; + var meshrights = parent.GetNodeRights(user, mesh, agent.dbNodeKey); if ((mesh != null) && ((meshrights & MESHRIGHT_REMOTECONTROL) || (meshrights & MESHRIGHT_REMOTEVIEWONLY))) { // 8 is remote control permission command.fromSessionid = ws.sessionId; // Set the session id, required for responses command.rights = meshrights; // Add user rights flags to the message @@ -473,11 +475,14 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'nodes': { - var links = [], err = null; + var links = [], extraids = null, err = null; try { if (command.meshid == null) { // Request a list of all meshes this user as rights to links = parent.GetAllMeshIdWithRights(user); + + // Add any nodes with direct rights + if (obj.user.links != null) { for (var i in obj.user.links) { if (i.startsWith('node/')) { if (extraids == null) { extraids = []; } extraids.push(i); } } } } else { // Request list of all nodes for one specific meshid meshid = command.meshid; @@ -495,7 +500,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } // Request a list of all nodes - db.GetAllTypeNoTypeFieldMeshFiltered(links, domain.id, 'node', command.id, function (err, docs) { + db.GetAllTypeNoTypeFieldMeshFiltered(links, extraids, domain.id, 'node', command.id, function (err, docs) { if (docs == null) { docs = []; } var r = {}; for (i in docs) { @@ -2500,10 +2505,11 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use // Save the user to the database db.SetUser(newuser); + parent.parent.DispatchEvent([newuser], obj, 'resubscribe'); // Notify user change var targets = ['*', 'server-users', newuserid]; - var event = { etype: 'user', userid: user._id, username: user.name, action: 'accountchange', msg: (command.rights == 0) ? ('Removed user device rights for ' + newuser.name) : ('Changed user device rights for ' + newuser.name), domain: domain.id, account: parent.CloneSafeUser(newuser) }; + var event = { etype: 'user', userid: user._id, username: user.name, action: 'accountchange', msg: (command.rights == 0) ? ('Removed user device rights for ' + newuser.name) : ('Changed user device rights for ' + newuser.name), domain: domain.id, account: parent.CloneSafeUser(newuser), nodeListChange: newuserid }; if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the user. Another event will come. parent.parent.DispatchEvent(targets, obj, event); } diff --git a/translate/translate.json b/translate/translate.json index 212b0e23..4468be37 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -14,8 +14,8 @@ "ru": " + CIRA", "zh-chs": " + CIRA", "xloc": [ - "default.handlebars->27->1090", - "default.handlebars->27->1092" + "default.handlebars->27->1110", + "default.handlebars->27->1112" ] }, { @@ -236,7 +236,7 @@ "ru": " Может быть использована подсказка пароля, но не рекоммендуется.", "zh-chs": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->27->1020" + "default.handlebars->27->1040" ] }, { @@ -253,8 +253,8 @@ "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.", "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。", "xloc": [ - "default.handlebars->27->1166", - "default.handlebars->27->1419" + "default.handlebars->27->1183", + "default.handlebars->27->1433" ] }, { @@ -271,7 +271,7 @@ "ru": " и задайте указанное ниже имя пользователя и любой пароль.", "zh-chs": " 並使用該用戶名和任何密碼對服務器進行身份驗證。", "xloc": [ - "default.handlebars->27->249" + "default.handlebars->27->250" ] }, { @@ -288,7 +288,7 @@ "ru": " и задайте указанные ниже имя пользователя и пароль.", "zh-chs": " 並使用該用戶名和密碼向服務器驗證身份。", "xloc": [ - "default.handlebars->27->248" + "default.handlebars->27->249" ] }, { @@ -388,7 +388,7 @@ "ru": "(необязательно)", "zh-chs": "(可選的)", "xloc": [ - "default.handlebars->27->286" + "default.handlebars->27->287" ] }, { @@ -420,7 +420,7 @@ "ru": "* Для BSD сначала запустите \\\"pkg install wget sudo bash\\\".", "zh-chs": "*對於BSD,首先運行 “pkg install wget sudo bash”。", "xloc": [ - "default.handlebars->27->317" + "default.handlebars->27->318" ] }, { @@ -437,7 +437,7 @@ "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.", "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。", "xloc": [ - "default.handlebars->27->1140" + "default.handlebars->27->1157" ] }, { @@ -470,7 +470,7 @@ "zh-chs": ",", "xloc": [ "default-mobile.handlebars->9->333", - "default.handlebars->27->1225" + "default.handlebars->27->1242" ] }, { @@ -505,7 +505,7 @@ "ru": ", MQTT онлайн", "zh-chs": ",MQTT在線", "xloc": [ - "default.handlebars->27->769" + "default.handlebars->27->789" ] }, { @@ -522,7 +522,7 @@ "ru": ", Soft-KVM", "zh-chs": ",軟KVM", "xloc": [ - "default.handlebars->27->629" + "default.handlebars->27->649" ] }, { @@ -541,9 +541,9 @@ "xloc": [ "default-mobile.handlebars->9->231", "default-mobile.handlebars->9->241", - "default.handlebars->27->630", - "default.handlebars->27->660", - "default.handlebars->27->672", + "default.handlebars->27->650", + "default.handlebars->27->680", + "default.handlebars->27->692", "xterm.handlebars->9->6" ] }, @@ -652,9 +652,9 @@ "xloc": [ "default-mobile.handlebars->9->246", "default-mobile.handlebars->9->70", - "default.handlebars->27->1262", - "default.handlebars->27->1509", - "default.handlebars->27->674" + "default.handlebars->27->1279", + "default.handlebars->27->1520", + "default.handlebars->27->694" ] }, { @@ -703,7 +703,7 @@ "ru": "1 активная сессия", "zh-chs": "1個活動會話", "xloc": [ - "default.handlebars->27->1460" + "default.handlebars->27->1474" ] }, { @@ -722,7 +722,7 @@ "xloc": [ "default-mobile.handlebars->9->337", "default-mobile.handlebars->9->80", - "default.handlebars->27->1279" + "default.handlebars->27->1296" ] }, { @@ -740,8 +740,8 @@ "zh-chs": "1天", "xloc": [ "default.handlebars->27->152", - "default.handlebars->27->277", - "default.handlebars->27->291" + "default.handlebars->27->278", + "default.handlebars->27->292" ] }, { @@ -758,7 +758,7 @@ "ru": "1 группа", "zh-chs": "1組", "xloc": [ - "default.handlebars->27->1443" + "default.handlebars->27->1457" ] }, { @@ -776,8 +776,8 @@ "zh-chs": "1小時", "xloc": [ "default.handlebars->27->150", - "default.handlebars->27->275", - "default.handlebars->27->289" + "default.handlebars->27->276", + "default.handlebars->27->290" ] }, { @@ -812,8 +812,8 @@ "zh-chs": "1個月", "xloc": [ "default.handlebars->27->154", - "default.handlebars->27->279", - "default.handlebars->27->293" + "default.handlebars->27->280", + "default.handlebars->27->294" ] }, { @@ -830,7 +830,7 @@ "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...", "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->27->1314" + "default.handlebars->27->1331" ] }, { @@ -847,7 +847,7 @@ "ru": "1 устройство", "zh-chs": "1個節點", "xloc": [ - "default.handlebars->27->331" + "default.handlebars->27->332" ] }, { @@ -881,7 +881,7 @@ "ru": "1 сессия", "zh-chs": "1節", "xloc": [ - "default.handlebars->27->1318" + "default.handlebars->27->1335" ] }, { @@ -899,8 +899,8 @@ "zh-chs": "1週", "xloc": [ "default.handlebars->27->153", - "default.handlebars->27->278", - "default.handlebars->27->292" + "default.handlebars->27->279", + "default.handlebars->27->293" ] }, { @@ -1146,7 +1146,7 @@ "ru": "двухфакторная аутентификация включена", "zh-chs": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->27->1452" + "default.handlebars->27->1466" ] }, { @@ -1245,8 +1245,8 @@ "ru": "32-разрядная версия MeshAgent", "zh-chs": "MeshAgent的32位版本", "xloc": [ - "default.handlebars->27->309", - "default.handlebars->27->324" + "default.handlebars->27->310", + "default.handlebars->27->325" ] }, { @@ -1450,7 +1450,7 @@ "pt": "Versão de 64 bits do MacOS Mesh Agent", "zh-chs": "64位版本的MacOS Mesh Agent", "xloc": [ - "default.handlebars->27->320" + "default.handlebars->27->321" ] }, { @@ -1467,8 +1467,8 @@ "ru": "64-разрядная версия MeshAgent", "zh-chs": "MeshAgent的64位版本", "xloc": [ - "default.handlebars->27->312", - "default.handlebars->27->327" + "default.handlebars->27->313", + "default.handlebars->27->328" ] }, { @@ -1499,7 +1499,7 @@ "ru": "7-дневная статистика работы", "zh-chs": "7天電源狀態", "xloc": [ - "default.handlebars->27->568" + "default.handlebars->27->588" ] }, { @@ -1551,8 +1551,8 @@ "ru": "8 часов", "zh-chs": "8小時", "xloc": [ - "default.handlebars->27->276", - "default.handlebars->27->290" + "default.handlebars->27->277", + "default.handlebars->27->291" ] }, { @@ -1738,7 +1738,7 @@ "zh-chs": "ACM", "xloc": [ "default-mobile.handlebars->9->185", - "default.handlebars->27->463" + "default.handlebars->27->464" ] }, { @@ -1755,8 +1755,8 @@ "ru": "AMT", "zh-chs": "AMT", "xloc": [ - "default.handlebars->27->170", - "default.handlebars->27->359" + "default.handlebars->27->171", + "default.handlebars->27->360" ] }, { @@ -1844,7 +1844,7 @@ "ru": "Отказано в доступе", "zh-chs": "拒絕訪問", "xloc": [ - "default.handlebars->27->770" + "default.handlebars->27->790" ] }, { @@ -1879,7 +1879,7 @@ "ru": "Доступ к файлам сервера", "zh-chs": "訪問服務器文件", "xloc": [ - "default.handlebars->27->1424" + "default.handlebars->27->1438" ] }, { @@ -1954,10 +1954,10 @@ "default-mobile.handlebars->9->55", "default-mobile.handlebars->9->57", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0", - "default.handlebars->27->1029", - "default.handlebars->27->1031", - "default.handlebars->27->433", - "default.handlebars->27->435" + "default.handlebars->27->1049", + "default.handlebars->27->1051", + "default.handlebars->27->434", + "default.handlebars->27->436" ] }, { @@ -2061,7 +2061,7 @@ "ru": "Действиe", "zh-chs": "行動", "xloc": [ - "default.handlebars->27->775", + "default.handlebars->27->795", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -2078,8 +2078,8 @@ "ru": "Файл действий", "zh-chs": "動作文件", "xloc": [ - "default.handlebars->27->609", - "default.handlebars->27->611" + "default.handlebars->27->629", + "default.handlebars->27->631" ] }, { @@ -2097,7 +2097,7 @@ "xloc": [ "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->495", + "default.handlebars->27->496", "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" @@ -2153,9 +2153,9 @@ "xloc": [ "default-mobile.handlebars->9->180", "default-mobile.handlebars->9->182", - "default.handlebars->27->456", - "default.handlebars->27->458", - "default.handlebars->27->740" + "default.handlebars->27->457", + "default.handlebars->27->459", + "default.handlebars->27->760" ] }, { @@ -2171,10 +2171,10 @@ "ru": "Активация", "zh-chs": "激活", "xloc": [ - "default.handlebars->27->1103", - "default.handlebars->27->1105", - "default.handlebars->27->212", - "default.handlebars->27->214" + "default.handlebars->27->1123", + "default.handlebars->27->1125", + "default.handlebars->27->213", + "default.handlebars->27->215" ] }, { @@ -2191,7 +2191,7 @@ "ru": "Активный пользователь", "zh-chs": "活動用戶{0}", "xloc": [ - "default.handlebars->27->482" + "default.handlebars->27->483" ] }, { @@ -2208,7 +2208,7 @@ "ru": "Добавить агент", "zh-chs": "添加代理", "xloc": [ - "default.handlebars->27->216" + "default.handlebars->27->217" ] }, { @@ -2225,7 +2225,7 @@ "ru": "Добавить CIRA", "zh-chs": "添加CIRA", "xloc": [ - "default.handlebars->27->206" + "default.handlebars->27->207" ] }, { @@ -2238,7 +2238,7 @@ "pt": "Adicionar Dispositivo", "zh-chs": "添加設備", "xloc": [ - "default.handlebars->27->1476" + "default.handlebars->27->1490" ] }, { @@ -2255,7 +2255,7 @@ "ru": "Добавить событие к устройству", "zh-chs": "添加設備事件", "xloc": [ - "default.handlebars->27->551" + "default.handlebars->27->571" ] }, { @@ -2272,18 +2272,18 @@ "ru": "Добавить группу устройств", "zh-chs": "添加設備組", "xloc": [ - "default.handlebars->27->1194", - "default.handlebars->27->1196", - "default.handlebars->27->1398", - "default.handlebars->27->1482", - "default.handlebars->27->187" + "default.handlebars->27->1211", + "default.handlebars->27->1213", + "default.handlebars->27->1415", + "default.handlebars->27->1496", + "default.handlebars->27->188" ] }, { "en": "Add Device Permissions", "nl": "Apparaatrechten toevoegen", "xloc": [ - "default.handlebars->27->1197" + "default.handlebars->27->1214" ] }, { @@ -2300,7 +2300,7 @@ "ru": "Добавить Intel® AMT CIRA устройство", "zh-chs": "添加英特爾®AMT CIRA設備", "xloc": [ - "default.handlebars->27->262" + "default.handlebars->27->263" ] }, { @@ -2317,7 +2317,7 @@ "ru": "Добавить Intel® AMT устройство", "zh-chs": "添加英特爾®AMT設備", "xloc": [ - "default.handlebars->27->229" + "default.handlebars->27->230" ] }, { @@ -2350,7 +2350,7 @@ "ru": "Добавить локально", "zh-chs": "添加本地", "xloc": [ - "default.handlebars->27->208" + "default.handlebars->27->209" ] }, { @@ -2367,7 +2367,7 @@ "ru": "Добавить участие", "zh-chs": "添加會員", "xloc": [ - "default.handlebars->27->1505" + "default.handlebars->27->1516" ] }, { @@ -2384,7 +2384,7 @@ "ru": "Добавить Mesh Agent", "zh-chs": "添加網格代理", "xloc": [ - "default.handlebars->27->330" + "default.handlebars->27->331" ] }, { @@ -2405,20 +2405,20 @@ "default.handlebars->27->130", "default.handlebars->27->133", "default.handlebars->27->134", - "default.handlebars->27->797", - "default.handlebars->27->798" + "default.handlebars->27->817", + "default.handlebars->27->818" ] }, { "en": "Add User", "xloc": [ - "default.handlebars->27->530" + "default.handlebars->27->531" ] }, { "en": "Add User Device Permissions", "xloc": [ - "default.handlebars->27->1200" + "default.handlebars->27->1217" ] }, { @@ -2435,9 +2435,9 @@ "ru": "Добавить группу пользователей", "zh-chs": "添加用戶組", "xloc": [ - "default.handlebars->27->1097", - "default.handlebars->27->1195", - "default.handlebars->27->1491" + "default.handlebars->27->1117", + "default.handlebars->27->1212", + "default.handlebars->27->1502" ] }, { @@ -2471,8 +2471,8 @@ "ru": "Добавить пользователей", "zh-chs": "添加用戶", "xloc": [ - "default.handlebars->27->1096", - "default.handlebars->27->1393" + "default.handlebars->27->1116", + "default.handlebars->27->1410" ] }, { @@ -2489,7 +2489,7 @@ "ru": "Добавить пользователей в группу устройств", "zh-chs": "將用戶添加到設備組", "xloc": [ - "default.handlebars->27->1193" + "default.handlebars->27->1210" ] }, { @@ -2506,7 +2506,7 @@ "ru": "Добавить пользователей в группу", "zh-chs": "將用戶添加到用戶組", "xloc": [ - "default.handlebars->27->1421" + "default.handlebars->27->1435" ] }, { @@ -2540,7 +2540,7 @@ "ru": "Добавить новый Intel® AMT компьютер сканированием локальной сети.", "zh-chs": "通過掃描本地網絡添加新的英特爾®AMT計算機。", "xloc": [ - "default.handlebars->27->209" + "default.handlebars->27->210" ] }, { @@ -2557,8 +2557,8 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.", "zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->27->1098", - "default.handlebars->27->205" + "default.handlebars->27->1118", + "default.handlebars->27->206" ] }, { @@ -2575,8 +2575,8 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.", "zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->27->1100", - "default.handlebars->27->207" + "default.handlebars->27->1120", + "default.handlebars->27->208" ] }, { @@ -2593,7 +2593,7 @@ "ru": "Добавить новое Intel® AMT устройство к группе устройств \\\"{0}\\\".", "zh-chs": "將新的英特爾®AMT設備添加到設備組“{0}”。", "xloc": [ - "default.handlebars->27->219" + "default.handlebars->27->220" ] }, { @@ -2610,8 +2610,8 @@ "ru": "Добавить новый компьютер к этой сети установкой Mesh Agent.", "zh-chs": "通過安裝網格代理將新計算機添加到該網格。", "xloc": [ - "default.handlebars->27->1106", - "default.handlebars->27->215" + "default.handlebars->27->1126", + "default.handlebars->27->216" ] }, { @@ -2628,7 +2628,7 @@ "ru": "Адрес", "zh-chs": "地址", "xloc": [ - "default.handlebars->27->183" + "default.handlebars->27->184" ] }, { @@ -2661,7 +2661,7 @@ "pt": "Admin Control Mode (ACM)", "zh-chs": "管理員控制模式(ACM)", "xloc": [ - "default.handlebars->27->742" + "default.handlebars->27->762" ] }, { @@ -2674,7 +2674,7 @@ "pt": "Credenciais de administrador", "zh-chs": "管理員憑證", "xloc": [ - "default.handlebars->27->748" + "default.handlebars->27->768" ] }, { @@ -2708,7 +2708,7 @@ "ru": "Области администратора", "zh-chs": "管理領域", "xloc": [ - "default.handlebars->27->1447" + "default.handlebars->27->1461" ] }, { @@ -2742,7 +2742,7 @@ "ru": "Административные области", "zh-chs": "行政領域", "xloc": [ - "default.handlebars->27->1363" + "default.handlebars->27->1380" ] }, { @@ -2759,7 +2759,7 @@ "ru": "Администратор", "zh-chs": "管理員", "xloc": [ - "default.handlebars->27->1325" + "default.handlebars->27->1342" ] }, { @@ -2775,7 +2775,7 @@ "ru": "Африканский", "zh-chs": "南非語", "xloc": [ - "default.handlebars->27->800" + "default.handlebars->27->820" ] }, { @@ -2795,10 +2795,10 @@ "default-mobile.handlebars->9->124", "default-mobile.handlebars->9->177", "default-mobile.handlebars->9->193", - "default.handlebars->27->1250", - "default.handlebars->27->1256", - "default.handlebars->27->166", - "default.handlebars->27->355", + "default.handlebars->27->1267", + "default.handlebars->27->1273", + "default.handlebars->27->167", + "default.handlebars->27->356", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" ] }, @@ -2815,8 +2815,8 @@ "ru": "Агент + Intel AMT", "zh-chs": "代理+英特爾AMT", "xloc": [ - "default.handlebars->27->1252", - "default.handlebars->27->1258" + "default.handlebars->27->1269", + "default.handlebars->27->1275" ] }, { @@ -2849,7 +2849,7 @@ "zh-chs": "代理控制台", "xloc": [ "default-mobile.handlebars->9->318", - "default.handlebars->27->1208" + "default.handlebars->27->1225" ] }, { @@ -2865,7 +2865,7 @@ "ru": "Счетчик ошибок агента", "zh-chs": "座席錯誤計數器", "xloc": [ - "default.handlebars->27->1518" + "default.handlebars->27->1529" ] }, { @@ -2931,7 +2931,7 @@ "ru": "Сессии агентов", "zh-chs": "座席會議", "xloc": [ - "default.handlebars->27->1534" + "default.handlebars->27->1545" ] }, { @@ -2948,7 +2948,7 @@ "zh-chs": "代理商標籤", "xloc": [ "default-mobile.handlebars->9->192", - "default.handlebars->27->475" + "default.handlebars->27->476" ] }, { @@ -2965,7 +2965,7 @@ "ru": "Типы агента", "zh-chs": "代理類型", "xloc": [ - "default.handlebars->27->1254", + "default.handlebars->27->1271", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -2984,8 +2984,8 @@ "zh-chs": "代理已連接", "xloc": [ "default.handlebars->27->136", - "default.handlebars->27->521", - "default.handlebars->27->522" + "default.handlebars->27->522", + "default.handlebars->27->523" ] }, { @@ -3019,7 +3019,7 @@ "ru": "Агент оффлайн", "zh-chs": "代理離線", "xloc": [ - "default.handlebars->27->768" + "default.handlebars->27->788" ] }, { @@ -3036,7 +3036,7 @@ "ru": "Агент онлайн", "zh-chs": "代理在線", "xloc": [ - "default.handlebars->27->767" + "default.handlebars->27->787" ] }, { @@ -3053,7 +3053,7 @@ "ru": "Агенты", "zh-chs": "代理商", "xloc": [ - "default.handlebars->27->1547" + "default.handlebars->27->1558" ] }, { @@ -3069,7 +3069,7 @@ "ru": "Албанский", "zh-chs": "阿爾巴尼亞語", "xloc": [ - "default.handlebars->27->801" + "default.handlebars->27->821" ] }, { @@ -3121,9 +3121,9 @@ "ru": "Фокусирование всех", "zh-chs": "全部聚焦", "xloc": [ - "default.handlebars->27->631", - "default.handlebars->27->633", - "default.handlebars->27->634" + "default.handlebars->27->651", + "default.handlebars->27->653", + "default.handlebars->27->654" ] }, { @@ -3140,14 +3140,14 @@ "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.", "zh-chs": "允許用戶管理此設備組和該組中的設備。", "xloc": [ - "default.handlebars->27->1164", - "default.handlebars->27->1418" + "default.handlebars->27->1181", + "default.handlebars->27->1432" ] }, { "en": "Allow users to manage this device.", "xloc": [ - "default.handlebars->27->1165" + "default.handlebars->27->1182" ] }, { @@ -3200,7 +3200,7 @@ "ru": "Поменять (F10 = ESC+0)", "zh-chs": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->27->665" + "default.handlebars->27->685" ] }, { @@ -3232,7 +3232,7 @@ "ru": "Всегда уведомлять", "zh-chs": "始終通知", "xloc": [ - "default.handlebars->27->1077" + "default.handlebars->27->1097" ] }, { @@ -3249,7 +3249,7 @@ "ru": "Всегда запрашивать", "zh-chs": "總是提示", "xloc": [ - "default.handlebars->27->1078" + "default.handlebars->27->1098" ] }, { @@ -3320,7 +3320,7 @@ "ru": "Антивирус", "zh-chs": "防毒軟件", "xloc": [ - "default.handlebars->27->481" + "default.handlebars->27->482" ] }, { @@ -3336,7 +3336,7 @@ "ru": "Любые поддерживаемые", "zh-chs": "任何支持", "xloc": [ - "default.handlebars->27->270" + "default.handlebars->27->271" ] }, { @@ -3353,7 +3353,7 @@ "ru": "Apple MacOS", "zh-chs": "蘋果MacOS", "xloc": [ - "default.handlebars->27->300" + "default.handlebars->27->301" ] }, { @@ -3370,7 +3370,7 @@ "ru": "Только Apple MacOS", "zh-chs": "僅限Apple MacOS", "xloc": [ - "default.handlebars->27->272" + "default.handlebars->27->273" ] }, { @@ -3403,7 +3403,7 @@ "ru": "Арабский (Алжир)", "zh-chs": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->27->803" + "default.handlebars->27->823" ] }, { @@ -3418,7 +3418,7 @@ "ru": "Арабский (Бахрейн)", "zh-chs": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->27->804" + "default.handlebars->27->824" ] }, { @@ -3434,7 +3434,7 @@ "ru": "Арабский (Египет)", "zh-chs": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->27->805" + "default.handlebars->27->825" ] }, { @@ -3450,7 +3450,7 @@ "ru": "Арабский (Ирак)", "zh-chs": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->27->806" + "default.handlebars->27->826" ] }, { @@ -3466,7 +3466,7 @@ "ru": "Арабский (Иордания)", "zh-chs": "阿拉伯語(約旦)", "xloc": [ - "default.handlebars->27->807" + "default.handlebars->27->827" ] }, { @@ -3481,7 +3481,7 @@ "ru": "Арабский (Кувейт)", "zh-chs": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->27->808" + "default.handlebars->27->828" ] }, { @@ -3496,7 +3496,7 @@ "ru": "Арабский (Ливан)", "zh-chs": "阿拉伯語(黎巴嫩)", "xloc": [ - "default.handlebars->27->809" + "default.handlebars->27->829" ] }, { @@ -3512,7 +3512,7 @@ "ru": "Арабский (Ливия)", "zh-chs": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->27->810" + "default.handlebars->27->830" ] }, { @@ -3528,7 +3528,7 @@ "ru": "Арабский (Марокко)", "zh-chs": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->27->811" + "default.handlebars->27->831" ] }, { @@ -3543,7 +3543,7 @@ "ru": "Арабский (Оман)", "zh-chs": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->27->812" + "default.handlebars->27->832" ] }, { @@ -3559,7 +3559,7 @@ "ru": "Арабский (Катар)", "zh-chs": "阿拉伯語(卡塔爾)", "xloc": [ - "default.handlebars->27->813" + "default.handlebars->27->833" ] }, { @@ -3575,7 +3575,7 @@ "ru": "Арабский (Саудовская Аравия)", "zh-chs": "阿拉伯語(沙特阿拉伯)", "xloc": [ - "default.handlebars->27->814" + "default.handlebars->27->834" ] }, { @@ -3591,7 +3591,7 @@ "ru": "Арабский (стандартный)", "zh-chs": "阿拉伯語(標準)", "xloc": [ - "default.handlebars->27->802" + "default.handlebars->27->822" ] }, { @@ -3607,7 +3607,7 @@ "ru": "Арабский (Сирия)", "zh-chs": "阿拉伯語(敘利亞)", "xloc": [ - "default.handlebars->27->815" + "default.handlebars->27->835" ] }, { @@ -3623,7 +3623,7 @@ "ru": "Арабский (Тунис)", "zh-chs": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->27->816" + "default.handlebars->27->836" ] }, { @@ -3638,7 +3638,7 @@ "ru": "Арабский (О.А.Э.)", "zh-chs": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->27->817" + "default.handlebars->27->837" ] }, { @@ -3654,7 +3654,7 @@ "ru": "Арабский (Йемен)", "zh-chs": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->27->818" + "default.handlebars->27->838" ] }, { @@ -3670,7 +3670,7 @@ "ru": "Арагонский", "zh-chs": "阿拉貢人", "xloc": [ - "default.handlebars->27->819" + "default.handlebars->27->839" ] }, { @@ -3687,7 +3687,7 @@ "ru": "Архитектура", "zh-chs": "建築", "xloc": [ - "default.handlebars->27->716" + "default.handlebars->27->736" ] }, { @@ -3704,7 +3704,7 @@ "ru": "Вы действительно хотите подключиться к {0} устройствам?", "zh-chs": "您確定要連接到{0}設備嗎?", "xloc": [ - "default.handlebars->27->200" + "default.handlebars->27->201" ] }, { @@ -3722,7 +3722,7 @@ "zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。", "xloc": [ "default-mobile.handlebars->9->289", - "default.handlebars->27->1144" + "default.handlebars->27->1161" ] }, { @@ -3739,7 +3739,7 @@ "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?", "zh-chs": "您確定要刪除節點{0}嗎?", "xloc": [ - "default.handlebars->27->590" + "default.handlebars->27->610" ] }, { @@ -3756,7 +3756,7 @@ "ru": "Вы действительно хотите деинсталировать выбранного агента?", "zh-chs": "您確定要卸載所選代理嗎?", "xloc": [ - "default.handlebars->27->579" + "default.handlebars->27->599" ] }, { @@ -3773,7 +3773,7 @@ "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?", "zh-chs": "您確定要卸載所選的{0}代理嗎?", "xloc": [ - "default.handlebars->27->578" + "default.handlebars->27->598" ] }, { @@ -3790,7 +3790,7 @@ "ru": "Вы уверенны, что {0} плагин: {1}", "zh-chs": "您確定要{0}插件嗎:{1}", "xloc": [ - "default.handlebars->27->1584" + "default.handlebars->27->1595" ] }, { @@ -3806,7 +3806,7 @@ "ru": "Армянский", "zh-chs": "亞美尼亞人", "xloc": [ - "default.handlebars->27->820" + "default.handlebars->27->840" ] }, { @@ -3821,7 +3821,7 @@ "ru": "Ассамский", "zh-chs": "阿薩姆語", "xloc": [ - "default.handlebars->27->821" + "default.handlebars->27->841" ] }, { @@ -3836,7 +3836,7 @@ "ru": "Астурии", "zh-chs": "阿斯圖里亞斯人", "xloc": [ - "default.handlebars->27->822" + "default.handlebars->27->842" ] }, { @@ -3852,7 +3852,7 @@ "ru": "Приложение аутентификации", "zh-chs": "身份驗證應用", "xloc": [ - "default.handlebars->27->1448" + "default.handlebars->27->1462" ] }, { @@ -3875,8 +3875,8 @@ "default-mobile.handlebars->9->35", "default.handlebars->27->104", "default.handlebars->27->109", - "default.handlebars->27->786", - "default.handlebars->27->788" + "default.handlebars->27->806", + "default.handlebars->27->808" ] }, { @@ -3944,7 +3944,7 @@ "ru": "Автоудаление", "zh-chs": "自動刪除", "xloc": [ - "default.handlebars->27->1065" + "default.handlebars->27->1085" ] }, { @@ -3997,7 +3997,7 @@ "ru": "Азербайджанский", "zh-chs": "阿塞拜疆", "xloc": [ - "default.handlebars->27->823" + "default.handlebars->27->843" ] }, { @@ -4014,7 +4014,7 @@ "ru": "BIOS", "zh-chs": "的BIOS", "xloc": [ - "default.handlebars->27->754" + "default.handlebars->27->774" ] }, { @@ -4092,7 +4092,7 @@ "ru": "Фоновый и интерактивный", "zh-chs": "背景與互動", "xloc": [ - "default.handlebars->27->304" + "default.handlebars->27->305" ] }, { @@ -4109,9 +4109,9 @@ "ru": "Фоновый и интерактивный", "zh-chs": "背景與互動", "xloc": [ - "default.handlebars->27->1233", - "default.handlebars->27->1240", - "default.handlebars->27->282" + "default.handlebars->27->1250", + "default.handlebars->27->1257", + "default.handlebars->27->283" ] }, { @@ -4128,10 +4128,10 @@ "ru": "Только фоновый", "zh-chs": "僅背景", "xloc": [ - "default.handlebars->27->1234", - "default.handlebars->27->1241", - "default.handlebars->27->283", - "default.handlebars->27->305" + "default.handlebars->27->1251", + "default.handlebars->27->1258", + "default.handlebars->27->284", + "default.handlebars->27->306" ] }, { @@ -4165,7 +4165,7 @@ "ru": "Резервные коды", "zh-chs": "備用碼", "xloc": [ - "default.handlebars->27->1450" + "default.handlebars->27->1464" ] }, { @@ -4182,7 +4182,7 @@ "ru": "Плохой ключ", "zh-chs": "錯誤的簽名", "xloc": [ - "default.handlebars->27->1525" + "default.handlebars->27->1536" ] }, { @@ -4199,7 +4199,7 @@ "ru": "Плохой веб-сертификат", "zh-chs": "錯誤的網絡證書", "xloc": [ - "default.handlebars->27->1524" + "default.handlebars->27->1535" ] }, { @@ -4214,7 +4214,7 @@ "ru": "Баскский", "zh-chs": "巴斯克", "xloc": [ - "default.handlebars->27->824" + "default.handlebars->27->844" ] }, { @@ -4247,7 +4247,7 @@ "ru": "Белорусский", "zh-chs": "白俄羅斯語", "xloc": [ - "default.handlebars->27->826" + "default.handlebars->27->846" ] }, { @@ -4263,7 +4263,7 @@ "ru": "Бенгальский", "zh-chs": "孟加拉", "xloc": [ - "default.handlebars->27->827" + "default.handlebars->27->847" ] }, { @@ -4279,7 +4279,7 @@ "ru": "Боснийский", "zh-chs": "波斯尼亞人", "xloc": [ - "default.handlebars->27->828" + "default.handlebars->27->848" ] }, { @@ -4294,7 +4294,7 @@ "ru": "Бретонский", "zh-chs": "布列塔尼", "xloc": [ - "default.handlebars->27->829" + "default.handlebars->27->849" ] }, { @@ -4311,7 +4311,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播", "xloc": [ - "default.handlebars->27->1391", + "default.handlebars->27->1408", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -4329,7 +4329,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播消息", "xloc": [ - "default.handlebars->27->1348" + "default.handlebars->27->1365" ] }, { @@ -4346,7 +4346,7 @@ "ru": "Отправить сообщение всем подключенным пользователям.", "zh-chs": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->27->1347" + "default.handlebars->27->1364" ] }, { @@ -4362,7 +4362,7 @@ "ru": "Болгарский", "zh-chs": "保加利亞語", "xloc": [ - "default.handlebars->27->825" + "default.handlebars->27->845" ] }, { @@ -4378,7 +4378,7 @@ "ru": "Бирманский", "zh-chs": "緬甸人", "xloc": [ - "default.handlebars->27->830" + "default.handlebars->27->850" ] }, { @@ -4396,7 +4396,7 @@ "zh-chs": "CCM", "xloc": [ "default-mobile.handlebars->9->184", - "default.handlebars->27->461" + "default.handlebars->27->462" ] }, { @@ -4414,10 +4414,10 @@ "zh-chs": "CIRA", "xloc": [ "default-mobile.handlebars->9->125", - "default.handlebars->27->1132", - "default.handlebars->27->1137", - "default.handlebars->27->168", - "default.handlebars->27->357" + "default.handlebars->27->1149", + "default.handlebars->27->1154", + "default.handlebars->27->169", + "default.handlebars->27->358" ] }, { @@ -4434,7 +4434,7 @@ "ru": "CIRA Сервер", "zh-chs": "CIRA服務器", "xloc": [ - "default.handlebars->27->1575" + "default.handlebars->27->1586" ] }, { @@ -4451,7 +4451,7 @@ "ru": "CIRA Сервер команды", "zh-chs": "CIRA服務器命令", "xloc": [ - "default.handlebars->27->1576" + "default.handlebars->27->1587" ] }, { @@ -4468,7 +4468,7 @@ "ru": "Загрузка CPU", "zh-chs": "CPU負載", "xloc": [ - "default.handlebars->27->1539" + "default.handlebars->27->1550" ] }, { @@ -4485,7 +4485,7 @@ "ru": "Загрузка CPU за последние 15 минут", "zh-chs": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1542" + "default.handlebars->27->1553" ] }, { @@ -4502,7 +4502,7 @@ "ru": "Загрузка CPU за последние 5 минут", "zh-chs": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1541" + "default.handlebars->27->1552" ] }, { @@ -4519,7 +4519,7 @@ "ru": "Загрузка CPU за последнюю минуту", "zh-chs": "最後一分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1540" + "default.handlebars->27->1551" ] }, { @@ -4536,8 +4536,8 @@ "ru": "CR+LF", "zh-chs": "CR +低頻", "xloc": [ - "default.handlebars->27->658", - "default.handlebars->27->667", + "default.handlebars->27->678", + "default.handlebars->27->687", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -4555,9 +4555,9 @@ "ru": "Формат CSV", "zh-chs": "CSV格式", "xloc": [ - "default.handlebars->27->1300", - "default.handlebars->27->1339", - "default.handlebars->27->384" + "default.handlebars->27->1317", + "default.handlebars->27->1356", + "default.handlebars->27->385" ] }, { @@ -4574,7 +4574,7 @@ "ru": "Ошибка вызова", "zh-chs": "通話錯誤", "xloc": [ - "default.handlebars->27->1585" + "default.handlebars->27->1596" ] }, { @@ -4593,7 +4593,7 @@ "xloc": [ "default-mobile.handlebars->9->44", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->27->1050", + "default.handlebars->27->1070", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -4615,7 +4615,7 @@ "ru": "Объем / Скорость", "zh-chs": "容量/速度", "xloc": [ - "default.handlebars->27->761" + "default.handlebars->27->781" ] }, { @@ -4631,7 +4631,7 @@ "ru": "Каталонский", "zh-chs": "加泰羅尼亞語", "xloc": [ - "default.handlebars->27->831" + "default.handlebars->27->851" ] }, { @@ -4648,7 +4648,7 @@ "ru": "Установить центр карты здесь", "zh-chs": "中心地圖在這裡", "xloc": [ - "default.handlebars->27->424" + "default.handlebars->27->425" ] }, { @@ -4664,7 +4664,7 @@ "ru": "Чаморро", "zh-chs": "查莫羅", "xloc": [ - "default.handlebars->27->832" + "default.handlebars->27->852" ] }, { @@ -4681,7 +4681,7 @@ "ru": "Смена email для {0}", "zh-chs": "更改{0}的電子郵件", "xloc": [ - "default.handlebars->27->1466" + "default.handlebars->27->1480" ] }, { @@ -4698,9 +4698,9 @@ "ru": "Смена группы", "zh-chs": "變更組", "xloc": [ - "default.handlebars->27->502", - "default.handlebars->27->587", - "default.handlebars->27->588" + "default.handlebars->27->503", + "default.handlebars->27->607", + "default.handlebars->27->608" ] }, { @@ -4718,8 +4718,8 @@ "zh-chs": "更改密碼", "xloc": [ "default-mobile.handlebars->9->52", - "default.handlebars->27->1026", - "default.handlebars->27->1459" + "default.handlebars->27->1046", + "default.handlebars->27->1473" ] }, { @@ -4736,7 +4736,7 @@ "ru": "Смена пароля для {0}", "zh-chs": "更改{0}的密碼", "xloc": [ - "default.handlebars->27->1473" + "default.handlebars->27->1487" ] }, { @@ -4802,7 +4802,7 @@ "pt": "Alterar a senha para este usuário", "zh-chs": "更改該用戶的密碼", "xloc": [ - "default.handlebars->27->1458" + "default.handlebars->27->1472" ] }, { @@ -4836,7 +4836,7 @@ "ru": "Измените адрес электронной почты вашей учетной записи здесь.", "zh-chs": "在此處更改您的帳戶電子郵件地址。", "xloc": [ - "default.handlebars->27->1013" + "default.handlebars->27->1033" ] }, { @@ -4853,7 +4853,7 @@ "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.", "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->27->1019" + "default.handlebars->27->1039" ] }, { @@ -4870,7 +4870,7 @@ "ru": "Изменение языка потребует перезагрузить страницу.", "zh-chs": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->27->998" + "default.handlebars->27->1018" ] }, { @@ -4887,8 +4887,9 @@ "ru": "Чат", "zh-chs": "聊天室", "xloc": [ - "default.handlebars->27->1317", - "default.handlebars->27->548" + "default.handlebars->27->1334", + "default.handlebars->27->549", + "default.handlebars->27->568" ] }, { @@ -4907,8 +4908,8 @@ "xloc": [ "default-mobile.handlebars->9->310", "default-mobile.handlebars->9->328", - "default.handlebars->27->1191", - "default.handlebars->27->1219" + "default.handlebars->27->1208", + "default.handlebars->27->1236" ] }, { @@ -4925,7 +4926,7 @@ "ru": "Чеченский", "zh-chs": "車臣", "xloc": [ - "default.handlebars->27->833" + "default.handlebars->27->853" ] }, { @@ -4993,8 +4994,8 @@ "ru": "Проверка...", "zh-chs": "檢查...", "xloc": [ - "default.handlebars->27->1581", - "default.handlebars->27->799" + "default.handlebars->27->1592", + "default.handlebars->27->819" ] }, { @@ -5011,7 +5012,7 @@ "ru": "Китайский", "zh-chs": "中文", "xloc": [ - "default.handlebars->27->834" + "default.handlebars->27->854" ] }, { @@ -5027,7 +5028,7 @@ "ru": "Китайский (Гонконг)", "zh-chs": "中文(香港)", "xloc": [ - "default.handlebars->27->835" + "default.handlebars->27->855" ] }, { @@ -5043,7 +5044,7 @@ "ru": "Китайский (КНР)", "zh-chs": "中文(中國)", "xloc": [ - "default.handlebars->27->836" + "default.handlebars->27->856" ] }, { @@ -5052,7 +5053,7 @@ "nl": "Chinees (Vereenvoudigd)", "pt": "Chinês (simplificado)", "xloc": [ - "default.handlebars->27->996" + "default.handlebars->27->1016" ] }, { @@ -5068,7 +5069,7 @@ "ru": "Китайский (Сингапур)", "zh-chs": "中文(新加坡)", "xloc": [ - "default.handlebars->27->837" + "default.handlebars->27->857" ] }, { @@ -5084,7 +5085,7 @@ "ru": "Китайский (Тайвань)", "zh-chs": "中文(台灣)", "xloc": [ - "default.handlebars->27->838" + "default.handlebars->27->858" ] }, { @@ -5117,7 +5118,7 @@ "ru": "Чувашский", "zh-chs": "楚瓦什", "xloc": [ - "default.handlebars->27->839" + "default.handlebars->27->859" ] }, { @@ -5134,7 +5135,7 @@ "ru": "Очистка CIRA", "zh-chs": "清理CIRA", "xloc": [ - "default.handlebars->27->246" + "default.handlebars->27->247" ] }, { @@ -5157,11 +5158,11 @@ "default-mobile.handlebars->9->271", "default-mobile.handlebars->9->28", "default-mobile.handlebars->9->94", - "default.handlebars->27->1294", - "default.handlebars->27->693", - "default.handlebars->27->695", - "default.handlebars->27->697", - "default.handlebars->27->699", + "default.handlebars->27->1311", + "default.handlebars->27->713", + "default.handlebars->27->715", + "default.handlebars->27->717", + "default.handlebars->27->719", "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" @@ -5198,7 +5199,7 @@ "ru": "Очистить ядро", "zh-chs": "清除核心", "xloc": [ - "default.handlebars->27->777" + "default.handlebars->27->797" ] }, { @@ -5222,7 +5223,7 @@ "en": "Clear this notification", "nl": "Wis deze melding", "xloc": [ - "default.handlebars->27->1512" + "default.handlebars->27->1523" ] }, { @@ -5239,7 +5240,7 @@ "ru": "Для изменения имени устройства на сервере нажмите сюда", "zh-chs": "單擊此處編輯服務器端設備名稱", "xloc": [ - "default.handlebars->27->438" + "default.handlebars->27->439" ] }, { @@ -5257,7 +5258,7 @@ "zh-chs": "單擊確定將驗證郵件發送到:", "xloc": [ "default-mobile.handlebars->9->37", - "default.handlebars->27->1010" + "default.handlebars->27->1030" ] }, { @@ -5290,7 +5291,7 @@ "pt": "Client Control Mode (CCM)", "zh-chs": "客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->27->741" + "default.handlebars->27->761" ] }, { @@ -5307,8 +5308,8 @@ "ru": "Клиент инициировал удаленный доступ", "zh-chs": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->27->1131", - "default.handlebars->27->1136" + "default.handlebars->27->1148", + "default.handlebars->27->1153" ] }, { @@ -5345,7 +5346,7 @@ "default-mobile.handlebars->9->26", "default.handlebars->27->116", "default.handlebars->27->124", - "default.handlebars->27->651" + "default.handlebars->27->671" ] }, { @@ -5380,8 +5381,8 @@ "ru": "Общие группы устройств", "zh-chs": "通用設備組", "xloc": [ - "default.handlebars->27->1399", - "default.handlebars->27->1483" + "default.handlebars->27->1416", + "default.handlebars->27->1497" ] }, { @@ -5394,7 +5395,7 @@ "pt": "Dispositivos comuns", "zh-chs": "通用設備", "xloc": [ - "default.handlebars->27->1477" + "default.handlebars->27->1491" ] }, { @@ -5411,7 +5412,7 @@ "zh-chs": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->27->1289" + "default.handlebars->27->1306" ] }, { @@ -5430,11 +5431,11 @@ "xloc": [ "default-mobile.handlebars->9->223", "default-mobile.handlebars->9->290", - "default.handlebars->27->1145", - "default.handlebars->27->1414", - "default.handlebars->27->381", - "default.handlebars->27->582", - "default.handlebars->27->591" + "default.handlebars->27->1162", + "default.handlebars->27->1428", + "default.handlebars->27->382", + "default.handlebars->27->602", + "default.handlebars->27->611" ] }, { @@ -5451,7 +5452,7 @@ "zh-chs": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->9->260", - "default.handlebars->27->688" + "default.handlebars->27->708" ] }, { @@ -5468,7 +5469,7 @@ "zh-chs": "確認{0}個條目的副本到此位置?", "xloc": [ "default-mobile.handlebars->9->259", - "default.handlebars->27->687" + "default.handlebars->27->707" ] }, { @@ -5485,7 +5486,7 @@ "ru": "Подтвердить удаление выбранных устройств?", "zh-chs": "確認刪除所選設備?", "xloc": [ - "default.handlebars->27->380" + "default.handlebars->27->381" ] }, { @@ -5498,7 +5499,7 @@ "pt": "Confirmar exclusão do usuário {0}?", "zh-chs": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->27->1475" + "default.handlebars->27->1489" ] }, { @@ -5515,7 +5516,7 @@ "zh-chs": "確認將1個入口移動到此位置?", "xloc": [ "default-mobile.handlebars->9->262", - "default.handlebars->27->690" + "default.handlebars->27->710" ] }, { @@ -5532,7 +5533,7 @@ "zh-chs": "確認將{0}個條目移到此位置?", "xloc": [ "default-mobile.handlebars->9->261", - "default.handlebars->27->689" + "default.handlebars->27->709" ] }, { @@ -5549,7 +5550,7 @@ "ru": "Подтвердить перезапись?", "zh-chs": "確認覆蓋?", "xloc": [ - "default.handlebars->27->1288" + "default.handlebars->27->1305" ] }, { @@ -5567,7 +5568,7 @@ "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?", "xloc": [ "default-mobile.handlebars->9->36", - "default.handlebars->27->789" + "default.handlebars->27->809" ] }, { @@ -5584,15 +5585,15 @@ "ru": "Подтвердить удаление группы устройств {0}?", "zh-chs": "確認刪除設備組{0}?", "xloc": [ - "default.handlebars->27->1409", - "default.handlebars->27->1507" + "default.handlebars->27->1423", + "default.handlebars->27->1518" ] }, { "en": "Confirm removal of device {0}?", "nl": "Bevestig het verwijderen van apparaat {0}?", "xloc": [ - "default.handlebars->27->1498" + "default.handlebars->27->1509" ] }, { @@ -5609,7 +5610,7 @@ "ru": "Подтвердить удаление группы {0}?", "zh-chs": "確認刪除組{0}?", "xloc": [ - "default.handlebars->27->1503" + "default.handlebars->27->1514" ] }, { @@ -5627,9 +5628,9 @@ "zh-chs": "確認刪除用戶{0}?", "xloc": [ "default-mobile.handlebars->9->336", - "default.handlebars->27->1228", - "default.handlebars->27->1417", - "default.handlebars->27->1500" + "default.handlebars->27->1245", + "default.handlebars->27->1431", + "default.handlebars->27->1511" ] }, { @@ -5649,8 +5650,8 @@ "default-mobile.handlebars->9->239", "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->1081", - "default.handlebars->27->670", + "default.handlebars->27->1101", + "default.handlebars->27->690", "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", @@ -5671,7 +5672,7 @@ "ru": "Подключиться ко всем", "zh-chs": "全部連接", "xloc": [ - "default.handlebars->27->199", + "default.handlebars->27->200", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar" ] }, @@ -5689,8 +5690,8 @@ "ru": "Подключиться к серверу", "zh-chs": "連接到服務器", "xloc": [ - "default.handlebars->27->1135", - "default.handlebars->27->1139" + "default.handlebars->27->1152", + "default.handlebars->27->1156" ] }, { @@ -5761,7 +5762,7 @@ "ru": "Подключено Intel® AMT", "zh-chs": "連接的英特爾®AMT", "xloc": [ - "default.handlebars->27->1530" + "default.handlebars->27->1541" ] }, { @@ -5778,7 +5779,7 @@ "ru": "Подключенные пользователи", "zh-chs": "關聯用戶", "xloc": [ - "default.handlebars->27->1535" + "default.handlebars->27->1546" ] }, { @@ -5791,7 +5792,7 @@ "pt": "Conectado agora", "zh-chs": "現在已連接", "xloc": [ - "default.handlebars->27->720" + "default.handlebars->27->740" ] }, { @@ -5828,10 +5829,10 @@ "default-mobile.handlebars->9->2", "default-mobile.handlebars->9->275", "default-mobile.handlebars->9->6", - "default.handlebars->27->193", - "default.handlebars->27->196", - "default.handlebars->27->202", - "default.handlebars->27->711", + "default.handlebars->27->194", + "default.handlebars->27->197", + "default.handlebars->27->203", + "default.handlebars->27->731", "default.handlebars->27->9", "xterm.handlebars->9->2" ] @@ -5850,7 +5851,7 @@ "ru": "Подключений ", "zh-chs": "連接數", "xloc": [ - "default.handlebars->27->1546" + "default.handlebars->27->1557" ] }, { @@ -5867,7 +5868,7 @@ "ru": "Ретранслятор подключения", "zh-chs": "連接繼電器", "xloc": [ - "default.handlebars->27->1574" + "default.handlebars->27->1585" ] }, { @@ -5919,9 +5920,9 @@ "zh-chs": "連接性", "xloc": [ "default-mobile.handlebars->9->198", - "default.handlebars->27->1259", - "default.handlebars->27->184", - "default.handlebars->27->493", + "default.handlebars->27->1276", + "default.handlebars->27->185", + "default.handlebars->27->494", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" ] }, @@ -5939,7 +5940,8 @@ "ru": "Консоль", "zh-chs": "安慰", "xloc": [ - "default.handlebars->27->543", + "default.handlebars->27->544", + "default.handlebars->27->563", "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" @@ -5959,13 +5961,14 @@ "ru": "Консоль - ", "zh-chs": "安慰 -", "xloc": [ - "default.handlebars->27->439" + "default.handlebars->27->440" ] }, { "en": "Control", "xloc": [ - "default.handlebars->27->542" + "default.handlebars->27->543", + "default.handlebars->27->562" ] }, { @@ -5981,7 +5984,7 @@ "ru": "Cookie-кодировщик", "zh-chs": "Cookie編碼器", "xloc": [ - "default.handlebars->27->1560" + "default.handlebars->27->1571" ] }, { @@ -6036,7 +6039,7 @@ "ru": "Скопировать ссылку MacOS agent в буфер обмена", "zh-chs": "將MacOS代理URL複製到剪貼板", "xloc": [ - "default.handlebars->27->321" + "default.handlebars->27->322" ] }, { @@ -6074,7 +6077,7 @@ "ru": "Скопировать ссылку в буфер обмена", "zh-chs": "複製鏈接到剪貼板", "xloc": [ - "default.handlebars->27->295" + "default.handlebars->27->296" ] }, { @@ -6241,7 +6244,7 @@ "ru": "Основной сервер", "zh-chs": "核心服務器", "xloc": [ - "default.handlebars->27->1559" + "default.handlebars->27->1570" ] }, { @@ -6257,7 +6260,7 @@ "ru": "Kорсиканский", "zh-chs": "科西嘉人", "xloc": [ - "default.handlebars->27->840" + "default.handlebars->27->860" ] }, { @@ -6274,7 +6277,7 @@ "ru": "Создать учетную запись", "zh-chs": "創建帳號", "xloc": [ - "default.handlebars->27->1359", + "default.handlebars->27->1376", "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" ] @@ -6310,7 +6313,7 @@ "ru": "Создать группу пользователей", "zh-chs": "創建用戶組", "xloc": [ - "default.handlebars->27->1382" + "default.handlebars->27->1399" ] }, { @@ -6327,7 +6330,7 @@ "ru": "Создайте новую группу устройств, используя параметры ниже.", "zh-chs": "使用以下選項創建一個新的設備組。", "xloc": [ - "default.handlebars->27->1033" + "default.handlebars->27->1053" ] }, { @@ -6344,7 +6347,7 @@ "ru": "Создать новую группу устройств.", "zh-chs": "創建一個新的設備組。", "xloc": [ - "default.handlebars->27->186" + "default.handlebars->27->187" ] }, { @@ -6361,7 +6364,7 @@ "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:", "xloc": [ - "default.handlebars->27->1330" + "default.handlebars->27->1347" ] }, { @@ -6396,7 +6399,7 @@ "ru": "Создано", "zh-chs": "創建", "xloc": [ - "default.handlebars->27->1436" + "default.handlebars->27->1450" ] }, { @@ -6428,7 +6431,7 @@ "ru": "Кри (Канадский язык)", "zh-chs": "克里", "xloc": [ - "default.handlebars->27->841" + "default.handlebars->27->861" ] }, { @@ -6443,7 +6446,7 @@ "ru": "Хорватский", "zh-chs": "克羅地亞語", "xloc": [ - "default.handlebars->27->842" + "default.handlebars->27->862" ] }, { @@ -6583,7 +6586,7 @@ "ru": "Чешский", "zh-chs": "捷克文", "xloc": [ - "default.handlebars->27->843" + "default.handlebars->27->863" ] }, { @@ -6616,7 +6619,7 @@ "ru": "Датский", "zh-chs": "丹麥文", "xloc": [ - "default.handlebars->27->844" + "default.handlebars->27->864" ] }, { @@ -6632,7 +6635,7 @@ "ru": "DataChannel", "zh-chs": "數據通道", "xloc": [ - "default.handlebars->27->628" + "default.handlebars->27->648" ] }, { @@ -6649,7 +6652,7 @@ "ru": "Дата & Время", "zh-chs": "日期和時間", "xloc": [ - "default.handlebars->27->1001" + "default.handlebars->27->1021" ] }, { @@ -6666,7 +6669,7 @@ "ru": "День", "zh-chs": "天", "xloc": [ - "default.handlebars->27->566" + "default.handlebars->27->586" ] }, { @@ -6683,7 +6686,7 @@ "ru": "Деактивировать режим управления клиентом (CCM)", "zh-chs": "停用客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->27->1123" + "default.handlebars->27->1140" ] }, { @@ -6701,7 +6704,7 @@ "zh-chs": "沉睡", "xloc": [ "default-mobile.handlebars->9->113", - "default.handlebars->27->340" + "default.handlebars->27->341" ] }, { @@ -6722,9 +6725,9 @@ "default-mobile.handlebars->9->84", "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->1283", - "default.handlebars->27->411", - "default.handlebars->27->680", + "default.handlebars->27->1300", + "default.handlebars->27->412", + "default.handlebars->27->700", "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", @@ -6748,7 +6751,7 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->9->46", - "default.handlebars->27->1018" + "default.handlebars->27->1038" ] }, { @@ -6766,7 +6769,7 @@ "zh-chs": "刪除裝置", "xloc": [ "default-mobile.handlebars->9->202", - "default.handlebars->27->504" + "default.handlebars->27->505" ] }, { @@ -6785,8 +6788,8 @@ "xloc": [ "default-mobile.handlebars->9->288", "default-mobile.handlebars->9->291", - "default.handlebars->27->1116", - "default.handlebars->27->1146" + "default.handlebars->27->1133", + "default.handlebars->27->1163" ] }, { @@ -6804,7 +6807,7 @@ "zh-chs": "刪除節點", "xloc": [ "default-mobile.handlebars->9->221", - "default.handlebars->27->592" + "default.handlebars->27->612" ] }, { @@ -6821,7 +6824,7 @@ "ru": "Удалить устройства", "zh-chs": "刪除節點", "xloc": [ - "default.handlebars->27->382" + "default.handlebars->27->383" ] }, { @@ -6838,7 +6841,7 @@ "ru": "Удалить пользователя", "zh-chs": "刪除用戶", "xloc": [ - "default.handlebars->27->1457" + "default.handlebars->27->1471" ] }, { @@ -6855,8 +6858,8 @@ "ru": "Удалить группу пользователей", "zh-chs": "刪除用戶組", "xloc": [ - "default.handlebars->27->1407", - "default.handlebars->27->1415" + "default.handlebars->27->1421", + "default.handlebars->27->1429" ] }, { @@ -6873,7 +6876,7 @@ "ru": "Удалить пользователя {0}", "zh-chs": "刪除用戶{0}", "xloc": [ - "default.handlebars->27->1474" + "default.handlebars->27->1488" ] }, { @@ -6908,7 +6911,7 @@ "ru": "Удалить устройства", "zh-chs": "刪除設備", "xloc": [ - "default.handlebars->27->377" + "default.handlebars->27->378" ] }, { @@ -6922,7 +6925,7 @@ "pt": "Apagar item?", "zh-chs": "刪除項目?", "xloc": [ - "default.handlebars->27->412" + "default.handlebars->27->413" ] }, { @@ -6941,8 +6944,8 @@ "xloc": [ "default-mobile.handlebars->9->254", "default-mobile.handlebars->9->86", - "default.handlebars->27->1285", - "default.handlebars->27->682" + "default.handlebars->27->1302", + "default.handlebars->27->702" ] }, { @@ -6959,7 +6962,7 @@ "ru": "Удалить группу пользователей {0}?", "zh-chs": "刪除用戶組{0}?", "xloc": [ - "default.handlebars->27->1413" + "default.handlebars->27->1427" ] }, { @@ -6978,8 +6981,8 @@ "xloc": [ "default-mobile.handlebars->9->253", "default-mobile.handlebars->9->85", - "default.handlebars->27->1284", - "default.handlebars->27->681" + "default.handlebars->27->1301", + "default.handlebars->27->701" ] }, { @@ -7079,17 +7082,17 @@ "default-mobile.handlebars->9->280", "default-mobile.handlebars->9->293", "default-mobile.handlebars->9->63", - "default.handlebars->27->1038", - "default.handlebars->27->1062", - "default.handlebars->27->1148", - "default.handlebars->27->1381", - "default.handlebars->27->1386", - "default.handlebars->27->1388", - "default.handlebars->27->1411", - "default.handlebars->27->451", + "default.handlebars->27->1058", + "default.handlebars->27->1082", + "default.handlebars->27->1165", + "default.handlebars->27->1398", + "default.handlebars->27->1403", + "default.handlebars->27->1405", + "default.handlebars->27->1425", "default.handlebars->27->452", - "default.handlebars->27->624", - "default.handlebars->27->726", + "default.handlebars->27->453", + "default.handlebars->27->644", + "default.handlebars->27->746", "default.handlebars->27->77", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] @@ -7121,8 +7124,8 @@ "ru": "Рабочий стол", "zh-chs": "桌面", "xloc": [ - "default.handlebars->27->1150", - "default.handlebars->27->417", + "default.handlebars->27->1167", + "default.handlebars->27->418", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop" ] @@ -7158,7 +7161,7 @@ "ru": "Уведомление на рабочем столе", "zh-chs": "桌面通知", "xloc": [ - "default.handlebars->27->1072" + "default.handlebars->27->1092" ] }, { @@ -7175,7 +7178,7 @@ "ru": "Запрос рабочего стола", "zh-chs": "桌面提示", "xloc": [ - "default.handlebars->27->1071" + "default.handlebars->27->1091" ] }, { @@ -7191,7 +7194,7 @@ "ru": "Запрос рабочего стола + панель инструментов", "zh-chs": "桌面提示+工具欄", "xloc": [ - "default.handlebars->27->1069" + "default.handlebars->27->1089" ] }, { @@ -7207,7 +7210,7 @@ "ru": "Панель инструментов рабочего стола", "zh-chs": "桌面工具欄", "xloc": [ - "default.handlebars->27->1070" + "default.handlebars->27->1090" ] }, { @@ -7274,8 +7277,8 @@ "ru": "Устройство", "zh-chs": "設備", "xloc": [ - "default.handlebars->27->1172", - "default.handlebars->27->1480", + "default.handlebars->27->1189", + "default.handlebars->27->1494", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -7293,7 +7296,7 @@ "zh-chs": "設備動作", "xloc": [ "default-mobile.handlebars->9->214", - "default.handlebars->27->565" + "default.handlebars->27->585" ] }, { @@ -7310,12 +7313,11 @@ "ru": "Группа устройства", "zh-chs": "設備組", "xloc": [ - "default.handlebars->27->1168", - "default.handlebars->27->1170", - "default.handlebars->27->1171", - "default.handlebars->27->1405", - "default.handlebars->27->1489", - "default.handlebars->27->1495" + "default.handlebars->27->1185", + "default.handlebars->27->1187", + "default.handlebars->27->1188", + "default.handlebars->27->1419", + "default.handlebars->27->1500" ] }, { @@ -7333,7 +7335,7 @@ "zh-chs": "設備組用戶", "xloc": [ "default-mobile.handlebars->9->334", - "default.handlebars->27->1226" + "default.handlebars->27->1243" ] }, { @@ -7351,10 +7353,10 @@ "zh-chs": "設備組", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->27->1377", - "default.handlebars->27->1390", - "default.handlebars->27->1445", - "default.handlebars->27->1533", + "default.handlebars->27->1394", + "default.handlebars->27->1407", + "default.handlebars->27->1459", + "default.handlebars->27->1544", "default.handlebars->container->column_l->p2->9" ] }, @@ -7369,7 +7371,7 @@ "pt": "Exportação de informações do dispositivo", "zh-chs": "設備信息導出", "xloc": [ - "default.handlebars->27->388" + "default.handlebars->27->389" ] }, { @@ -7386,7 +7388,7 @@ "ru": "Местонахождение устройства", "zh-chs": "設備位置", "xloc": [ - "default.handlebars->27->593" + "default.handlebars->27->613" ] }, { @@ -7404,8 +7406,8 @@ "zh-chs": "設備名稱", "xloc": [ "default-mobile.handlebars->9->225", - "default.handlebars->27->220", - "default.handlebars->27->622", + "default.handlebars->27->221", + "default.handlebars->27->642", "player.handlebars->3->9" ] }, @@ -7423,7 +7425,7 @@ "ru": "Уведомление устройства", "zh-chs": "設備通知", "xloc": [ - "default.handlebars->27->556" + "default.handlebars->27->576" ] }, { @@ -7456,8 +7458,8 @@ "ru": "Подключения устройств.", "zh-chs": "設備連接。", "xloc": [ - "default.handlebars->27->1006", - "default.handlebars->27->1245" + "default.handlebars->27->1026", + "default.handlebars->27->1262" ] }, { @@ -7474,8 +7476,8 @@ "ru": "Отключения устройств.", "zh-chs": "設備斷開連接。", "xloc": [ - "default.handlebars->27->1007", - "default.handlebars->27->1246" + "default.handlebars->27->1027", + "default.handlebars->27->1263" ] }, { @@ -7492,7 +7494,7 @@ "ru": "Примечания могут быть просмотрены и изменены другими администраторами.", "zh-chs": "其他設備組管理員可以查看和更改設備組註釋。", "xloc": [ - "default.handlebars->27->554" + "default.handlebars->27->574" ] }, { @@ -7509,7 +7511,7 @@ "ru": "Устройство обнаружено, но состояние питания не может быть получено.", "zh-chs": "檢測到設備,但無法獲得電源狀態。", "xloc": [ - "default.handlebars->27->345" + "default.handlebars->27->346" ] }, { @@ -7527,7 +7529,7 @@ "zh-chs": "設備正在休眠(S4)", "xloc": [ "default-mobile.handlebars->9->121", - "default.handlebars->27->351" + "default.handlebars->27->352" ] }, { @@ -7545,7 +7547,7 @@ "zh-chs": "設備處於深度睡眠狀態(S3)", "xloc": [ "default-mobile.handlebars->9->120", - "default.handlebars->27->350" + "default.handlebars->27->351" ] }, { @@ -7562,7 +7564,7 @@ "ru": "Устройство находится в состоянии глубокого сна (S3).", "zh-chs": "設備處於深度睡眠狀態(S3)。", "xloc": [ - "default.handlebars->27->339" + "default.handlebars->27->340" ] }, { @@ -7579,7 +7581,7 @@ "ru": "Устройство находится в режиме гибернации (S4).", "zh-chs": "設備處於休眠狀態(S4)。", "xloc": [ - "default.handlebars->27->341" + "default.handlebars->27->342" ] }, { @@ -7596,7 +7598,7 @@ "ru": "Устройство находится в выключенном состоянии (S5).", "zh-chs": "設備處於關機狀態(S5)。", "xloc": [ - "default.handlebars->27->343" + "default.handlebars->27->344" ] }, { @@ -7614,7 +7616,7 @@ "zh-chs": "設備處於睡眠狀態(S1)", "xloc": [ "default-mobile.handlebars->9->118", - "default.handlebars->27->348" + "default.handlebars->27->349" ] }, { @@ -7631,7 +7633,7 @@ "ru": "Устройство находится в спящем режиме (S1).", "zh-chs": "設備處於睡眠狀態(S1)。", "xloc": [ - "default.handlebars->27->335" + "default.handlebars->27->336" ] }, { @@ -7649,7 +7651,7 @@ "zh-chs": "設備處於睡眠狀態(S2)", "xloc": [ "default-mobile.handlebars->9->119", - "default.handlebars->27->349" + "default.handlebars->27->350" ] }, { @@ -7666,7 +7668,7 @@ "ru": "Устройство находится в спящем режиме (S2).", "zh-chs": "設備處於睡眠狀態(S2)。", "xloc": [ - "default.handlebars->27->337" + "default.handlebars->27->338" ] }, { @@ -7684,7 +7686,7 @@ "zh-chs": "設備處於軟斷開狀態(S5)", "xloc": [ "default-mobile.handlebars->9->122", - "default.handlebars->27->352" + "default.handlebars->27->353" ] }, { @@ -7702,7 +7704,7 @@ "zh-chs": "設備已上電", "xloc": [ "default-mobile.handlebars->9->117", - "default.handlebars->27->347" + "default.handlebars->27->348" ] }, { @@ -7719,7 +7721,7 @@ "ru": "Устройство включено.", "zh-chs": "設備上電。", "xloc": [ - "default.handlebars->27->333" + "default.handlebars->27->334" ] }, { @@ -7737,7 +7739,7 @@ "zh-chs": "設備存在,但無法確定電源狀態", "xloc": [ "default-mobile.handlebars->9->123", - "default.handlebars->27->353" + "default.handlebars->27->354" ] }, { @@ -7754,7 +7756,7 @@ "ru": "Имя устройства", "zh-chs": "設備名稱", "xloc": [ - "default.handlebars->27->429" + "default.handlebars->27->430" ] }, { @@ -7770,7 +7772,7 @@ "ru": "DeviceCheckbox", "zh-chs": "設備複選框", "xloc": [ - "default.handlebars->27->379" + "default.handlebars->27->380" ] }, { @@ -7787,7 +7789,7 @@ "ru": "Отключено", "zh-chs": "殘障人士", "xloc": [ - "default.handlebars->27->478" + "default.handlebars->27->479" ] }, { @@ -7806,8 +7808,8 @@ "xloc": [ "default-mobile.handlebars->9->240", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->27->1082", - "default.handlebars->27->671", + "default.handlebars->27->1102", + "default.handlebars->27->691", "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" @@ -7847,10 +7849,10 @@ "default-mobile.handlebars->9->1", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status", - "default.handlebars->27->175", - "default.handlebars->27->192", - "default.handlebars->27->195", - "default.handlebars->27->201", + "default.handlebars->27->176", + "default.handlebars->27->193", + "default.handlebars->27->196", + "default.handlebars->27->202", "default.handlebars->27->8", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus", @@ -7889,7 +7891,7 @@ "ru": "Отобразить имя группы устройств", "zh-chs": "顯示設備組名稱", "xloc": [ - "default.handlebars->27->1005" + "default.handlebars->27->1025" ] }, { @@ -7906,7 +7908,7 @@ "ru": "Отображаемое имя", "zh-chs": "顯示名稱", "xloc": [ - "default.handlebars->27->642" + "default.handlebars->27->662" ] }, { @@ -7923,7 +7925,7 @@ "ru": "Ничего не делать", "zh-chs": "沒做什麼", "xloc": [ - "default.handlebars->27->1129" + "default.handlebars->27->1146" ] }, { @@ -7958,8 +7960,8 @@ "ru": "Не настраивать", "zh-chs": "不要配置", "xloc": [ - "default.handlebars->27->1133", - "default.handlebars->27->1138" + "default.handlebars->27->1150", + "default.handlebars->27->1155" ] }, { @@ -7976,7 +7978,7 @@ "ru": "Не подключаться к серверу", "zh-chs": "不連接服務器", "xloc": [ - "default.handlebars->27->1134" + "default.handlebars->27->1151" ] }, { @@ -8030,7 +8032,7 @@ "zh-chs": "下載文件", "xloc": [ "default-mobile.handlebars->9->273", - "default.handlebars->27->700" + "default.handlebars->27->720" ] }, { @@ -8047,7 +8049,7 @@ "ru": "Скачать MeshCentral Router, инструмент сопоставления TCP портов.", "zh-chs": "下載MeshCentral Router,一個TCP端口映射工具。", "xloc": [ - "default.handlebars->27->190" + "default.handlebars->27->191" ] }, { @@ -8064,7 +8066,7 @@ "ru": "Скачать MeshCmd", "zh-chs": "下載MeshCmd", "xloc": [ - "default.handlebars->27->613" + "default.handlebars->27->633" ] }, { @@ -8081,7 +8083,7 @@ "ru": "Скачать MeshCmd, инструмент командной строки, выполняющий множество функций.", "zh-chs": "下載MeshCmd,這是一個執行許多功能的命令行工具。", "xloc": [ - "default.handlebars->27->188" + "default.handlebars->27->189" ] }, { @@ -8113,7 +8115,7 @@ "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.", "zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。", "xloc": [ - "default.handlebars->27->606" + "default.handlebars->27->626" ] }, { @@ -8181,7 +8183,7 @@ "ru": "Скачать события состояния питания", "zh-chs": "下載電源事件", "xloc": [ - "default.handlebars->27->567" + "default.handlebars->27->587" ] }, { @@ -8229,7 +8231,7 @@ "pt": "Faça o download da lista de dispositivos com um dos formatos de arquivo abaixo.", "zh-chs": "使用以下一種文件格式下載設備列表。", "xloc": [ - "default.handlebars->27->383" + "default.handlebars->27->384" ] }, { @@ -8246,7 +8248,7 @@ "ru": "Скачать список событий в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載事件列表。", "xloc": [ - "default.handlebars->27->1299" + "default.handlebars->27->1316" ] }, { @@ -8263,7 +8265,7 @@ "ru": "Скачать список пользователей в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載用戶列表。", "xloc": [ - "default.handlebars->27->1338" + "default.handlebars->27->1355" ] }, { @@ -8349,7 +8351,7 @@ "ru": "Скопировать агент", "zh-chs": "代理重複", "xloc": [ - "default.handlebars->27->1529" + "default.handlebars->27->1540" ] }, { @@ -8383,7 +8385,7 @@ "ru": "Скопировать группу пользователей", "zh-chs": "重複的用戶組", "xloc": [ - "default.handlebars->27->1383" + "default.handlebars->27->1400" ] }, { @@ -8417,7 +8419,7 @@ "ru": "Во время активации агент будет иметь доступ к паролю администратора.", "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。", "xloc": [ - "default.handlebars->27->1143" + "default.handlebars->27->1160" ] }, { @@ -8433,7 +8435,7 @@ "ru": "Голландский (Бельгийский)", "zh-chs": "荷蘭語(比利時)", "xloc": [ - "default.handlebars->27->846" + "default.handlebars->27->866" ] }, { @@ -8449,7 +8451,7 @@ "ru": "Голландский (Стандартный)", "zh-chs": "荷蘭語(標準)", "xloc": [ - "default.handlebars->27->845" + "default.handlebars->27->865" ] }, { @@ -8536,7 +8538,7 @@ "zh-chs": "編輯裝置", "xloc": [ "default-mobile.handlebars->9->230", - "default.handlebars->27->627" + "default.handlebars->27->647" ] }, { @@ -8556,9 +8558,9 @@ "default-mobile.handlebars->9->294", "default-mobile.handlebars->9->296", "default-mobile.handlebars->9->314", - "default.handlebars->27->1149", - "default.handlebars->27->1176", - "default.handlebars->27->1204" + "default.handlebars->27->1166", + "default.handlebars->27->1193", + "default.handlebars->27->1221" ] }, { @@ -8575,7 +8577,7 @@ "ru": "Редактировать функции группы устройств", "zh-chs": "編輯設備組功能", "xloc": [ - "default.handlebars->27->1163" + "default.handlebars->27->1180" ] }, { @@ -8592,7 +8594,7 @@ "ru": "Редактировать права группы устройств", "zh-chs": "編輯設備組權限", "xloc": [ - "default.handlebars->27->1201" + "default.handlebars->27->1218" ] }, { @@ -8609,7 +8611,7 @@ "ru": "Редактировать согласие пользователя группы устройств", "zh-chs": "編輯設備組用戶同意", "xloc": [ - "default.handlebars->27->1160" + "default.handlebars->27->1177" ] }, { @@ -8627,14 +8629,20 @@ "zh-chs": "編輯設備說明", "xloc": [ "default-mobile.handlebars->9->308", - "default.handlebars->27->1189" + "default.handlebars->27->1206" ] }, { "en": "Edit Device Permissions", "nl": "Bewerk apparaatrechten", "xloc": [ - "default.handlebars->27->1198" + "default.handlebars->27->1215" + ] + }, + { + "en": "Edit Group", + "xloc": [ + "default.handlebars->27->553" ] }, { @@ -8652,9 +8660,9 @@ "zh-chs": "編輯英特爾®AMT憑據", "xloc": [ "default-mobile.handlebars->9->220", - "default.handlebars->27->466", - "default.handlebars->27->469", - "default.handlebars->27->574" + "default.handlebars->27->467", + "default.handlebars->27->470", + "default.handlebars->27->594" ] }, { @@ -8672,7 +8680,7 @@ "zh-chs": "編輯筆記", "xloc": [ "default-mobile.handlebars->9->321", - "default.handlebars->27->1211" + "default.handlebars->27->1228" ] }, { @@ -8689,13 +8697,13 @@ "ru": "Редактировать права пользователя для группы устройств", "zh-chs": "編輯用戶設備組權限", "xloc": [ - "default.handlebars->27->1202" + "default.handlebars->27->1219" ] }, { "en": "Edit User Device Permissions", "xloc": [ - "default.handlebars->27->1199" + "default.handlebars->27->1216" ] }, { @@ -8712,7 +8720,7 @@ "ru": "Редактировать группу пользователей", "zh-chs": "編輯用戶組", "xloc": [ - "default.handlebars->27->1412" + "default.handlebars->27->1426" ] }, { @@ -8746,11 +8754,11 @@ "zh-chs": "電子郵件", "xloc": [ "default-mobile.handlebars->9->40", - "default.handlebars->27->1350", - "default.handlebars->27->1432", - "default.handlebars->27->1433", - "default.handlebars->27->1462", - "default.handlebars->27->266", + "default.handlebars->27->1367", + "default.handlebars->27->1446", + "default.handlebars->27->1447", + "default.handlebars->27->1476", + "default.handlebars->27->267", "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" ] @@ -8770,7 +8778,7 @@ "zh-chs": "電郵地址變更", "xloc": [ "default-mobile.handlebars->9->41", - "default.handlebars->27->1014" + "default.handlebars->27->1034" ] }, { @@ -8784,14 +8792,14 @@ "zh-chs": "郵件認證", "xloc": [ "default-mobile.handlebars->9->30", - "default.handlebars->27->783" + "default.handlebars->27->803" ] }, { "en": "Email Traffic", "nl": "E-mailverkeer", "xloc": [ - "default.handlebars->27->1568" + "default.handlebars->27->1579" ] }, { @@ -8809,7 +8817,7 @@ "zh-chs": "電子郵件驗證", "xloc": [ "default-mobile.handlebars->9->39", - "default.handlebars->27->1012" + "default.handlebars->27->1032" ] }, { @@ -8826,7 +8834,7 @@ "ru": "Email подтвержден", "zh-chs": "電子郵件已驗證", "xloc": [ - "default.handlebars->27->1429" + "default.handlebars->27->1443" ] }, { @@ -8843,7 +8851,7 @@ "ru": "Email подтвержден.", "zh-chs": "電子郵件已驗證。", "xloc": [ - "default.handlebars->27->1356" + "default.handlebars->27->1373" ] }, { @@ -8860,7 +8868,7 @@ "ru": "Email не подтвержден", "zh-chs": "電子郵件未驗證", "xloc": [ - "default.handlebars->27->1430" + "default.handlebars->27->1444" ] }, { @@ -8908,7 +8916,7 @@ "pt": "Ativar códigos de convite", "zh-chs": "啟用邀請代碼", "xloc": [ - "default.handlebars->27->1230" + "default.handlebars->27->1247" ] }, { @@ -8939,7 +8947,7 @@ "zh-chs": "啟用電子郵件兩因素驗證。", "xloc": [ "default-mobile.handlebars->9->32", - "default.handlebars->27->785" + "default.handlebars->27->805" ] }, { @@ -8990,7 +8998,7 @@ "ru": "Английский", "zh-chs": "英語", "xloc": [ - "default.handlebars->27->847" + "default.handlebars->27->867" ] }, { @@ -9006,7 +9014,7 @@ "ru": "Английский (Австралия)", "zh-chs": "英文(澳洲)", "xloc": [ - "default.handlebars->27->848" + "default.handlebars->27->868" ] }, { @@ -9022,7 +9030,7 @@ "ru": "Английский (Белиз)", "zh-chs": "英語(伯利茲)", "xloc": [ - "default.handlebars->27->849" + "default.handlebars->27->869" ] }, { @@ -9038,7 +9046,7 @@ "ru": "Английский (Канада)", "zh-chs": "英文(加拿大)", "xloc": [ - "default.handlebars->27->850" + "default.handlebars->27->870" ] }, { @@ -9054,7 +9062,7 @@ "ru": "Английский (Ирландия)", "zh-chs": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->27->851" + "default.handlebars->27->871" ] }, { @@ -9070,7 +9078,7 @@ "ru": "Английский (Ямайка)", "zh-chs": "英文(牙買加)", "xloc": [ - "default.handlebars->27->852" + "default.handlebars->27->872" ] }, { @@ -9086,7 +9094,7 @@ "ru": "Английский (Новая Зеландия)", "zh-chs": "英文(紐西蘭)", "xloc": [ - "default.handlebars->27->853" + "default.handlebars->27->873" ] }, { @@ -9102,7 +9110,7 @@ "ru": "Английский (Филиппины)", "zh-chs": "英文(菲律賓)", "xloc": [ - "default.handlebars->27->854" + "default.handlebars->27->874" ] }, { @@ -9118,7 +9126,7 @@ "ru": "Английский (Южная Африка)", "zh-chs": "英語(南非)", "xloc": [ - "default.handlebars->27->855" + "default.handlebars->27->875" ] }, { @@ -9133,7 +9141,7 @@ "ru": "Английский (Тринидад и Тобаго)", "zh-chs": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->27->856" + "default.handlebars->27->876" ] }, { @@ -9149,7 +9157,7 @@ "ru": "Английский (Великобритания)", "zh-chs": "英文(英國)", "xloc": [ - "default.handlebars->27->857" + "default.handlebars->27->877" ] }, { @@ -9165,7 +9173,7 @@ "ru": "Английский (Соединенные Штаты)", "zh-chs": "美國英語)", "xloc": [ - "default.handlebars->27->858" + "default.handlebars->27->878" ] }, { @@ -9181,7 +9189,7 @@ "ru": "Английский (Зимбабве)", "zh-chs": "英文(津巴布韋)", "xloc": [ - "default.handlebars->27->859" + "default.handlebars->27->879" ] }, { @@ -9197,8 +9205,8 @@ "ru": "Ввод", "zh-chs": "輸入", "xloc": [ - "default.handlebars->27->1040", - "default.handlebars->27->1041" + "default.handlebars->27->1060", + "default.handlebars->27->1061" ] }, { @@ -9215,7 +9223,7 @@ "ru": "Введите разделенный запятыми список имен административных областей.", "zh-chs": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->27->1360" + "default.handlebars->27->1377" ] }, { @@ -9232,7 +9240,7 @@ "ru": "Введите диапазон IP-адресов для сканирования Intel AMT устройств.", "zh-chs": "輸入IP地址範圍以掃描Intel AMT設備。", "xloc": [ - "default.handlebars->27->235" + "default.handlebars->27->236" ] }, { @@ -9249,7 +9257,7 @@ "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.", "zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->27->637" + "default.handlebars->27->657" ] }, { @@ -9333,7 +9341,7 @@ "ru": "Эсперанто", "zh-chs": "世界語", "xloc": [ - "default.handlebars->27->860" + "default.handlebars->27->880" ] }, { @@ -9349,7 +9357,7 @@ "ru": "Эстонский", "zh-chs": "愛沙尼亞語", "xloc": [ - "default.handlebars->27->861" + "default.handlebars->27->881" ] }, { @@ -9366,7 +9374,7 @@ "ru": "Детали события", "zh-chs": "活動詳情", "xloc": [ - "default.handlebars->27->713" + "default.handlebars->27->733" ] }, { @@ -9383,7 +9391,7 @@ "ru": "Экспорт списка событий", "zh-chs": "活動列表導出", "xloc": [ - "default.handlebars->27->1304" + "default.handlebars->27->1321" ] }, { @@ -9452,7 +9460,7 @@ "pt": "Exportar informações do dispositivo", "zh-chs": "導出設備信息", "xloc": [ - "default.handlebars->27->375" + "default.handlebars->27->376" ] }, { @@ -9469,7 +9477,7 @@ "ru": "Расширенный ASCII", "zh-chs": "擴展ASCII", "xloc": [ - "default.handlebars->27->662" + "default.handlebars->27->682" ] }, { @@ -9503,7 +9511,7 @@ "ru": "Внешний", "zh-chs": "外部", "xloc": [ - "default.handlebars->27->1553" + "default.handlebars->27->1564" ] }, { @@ -9519,7 +9527,7 @@ "ru": "Mакедонский (БЮР)", "zh-chs": "FYRO馬其頓語", "xloc": [ - "default.handlebars->27->911" + "default.handlebars->27->931" ] }, { @@ -9535,7 +9543,7 @@ "ru": "Фарерский", "zh-chs": "法羅語", "xloc": [ - "default.handlebars->27->862" + "default.handlebars->27->882" ] }, { @@ -9568,7 +9576,7 @@ "ru": "Фарси (Персидский)", "zh-chs": "波斯語(波斯語)", "xloc": [ - "default.handlebars->27->863" + "default.handlebars->27->883" ] }, { @@ -9603,7 +9611,7 @@ "ru": "Функции", "zh-chs": "特徵", "xloc": [ - "default.handlebars->27->1068" + "default.handlebars->27->1088" ] }, { @@ -9619,7 +9627,7 @@ "ru": "Фиджи", "zh-chs": "斐濟", "xloc": [ - "default.handlebars->27->864" + "default.handlebars->27->884" ] }, { @@ -9637,8 +9645,8 @@ "zh-chs": "文件編輯器", "xloc": [ "default-mobile.handlebars->9->257", - "default.handlebars->27->409", - "default.handlebars->27->685" + "default.handlebars->27->410", + "default.handlebars->27->705" ] }, { @@ -9671,7 +9679,7 @@ "ru": "Драйвер файловой системы", "zh-chs": "FileSystemDriver", "xloc": [ - "default.handlebars->27->645" + "default.handlebars->27->665" ] }, { @@ -9688,7 +9696,7 @@ "ru": "Файлы", "zh-chs": "檔案", "xloc": [ - "default.handlebars->27->1157", + "default.handlebars->27->1174", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" ] @@ -9724,7 +9732,7 @@ "ru": "Уведомление файлов", "zh-chs": "文件通知", "xloc": [ - "default.handlebars->27->1076" + "default.handlebars->27->1096" ] }, { @@ -9740,7 +9748,7 @@ "ru": "Запрос файлов", "zh-chs": "文件提示", "xloc": [ - "default.handlebars->27->1075" + "default.handlebars->27->1095" ] }, { @@ -9775,7 +9783,7 @@ "ru": "Финский", "zh-chs": "芬蘭", "xloc": [ - "default.handlebars->27->865" + "default.handlebars->27->885" ] }, { @@ -9848,8 +9856,8 @@ "ru": "Принудительно сбросить пароль при следующем входе в систему.", "zh-chs": "下次登錄時強制重置密碼。", "xloc": [ - "default.handlebars->27->1354", - "default.handlebars->27->1471" + "default.handlebars->27->1371", + "default.handlebars->27->1485" ] }, { @@ -9935,8 +9943,8 @@ "ru": "Свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->27->1514", - "default.handlebars->27->1516" + "default.handlebars->27->1525", + "default.handlebars->27->1527" ] }, { @@ -9970,7 +9978,7 @@ "ru": "Французский (Бельгия)", "zh-chs": "法語(比利時)", "xloc": [ - "default.handlebars->27->867" + "default.handlebars->27->887" ] }, { @@ -9986,7 +9994,7 @@ "ru": "Французский (Канада)", "zh-chs": "法語(加拿大)", "xloc": [ - "default.handlebars->27->868" + "default.handlebars->27->888" ] }, { @@ -10002,7 +10010,7 @@ "ru": "Французский (Франция)", "zh-chs": "法語(法國)", "xloc": [ - "default.handlebars->27->869" + "default.handlebars->27->889" ] }, { @@ -10018,7 +10026,7 @@ "ru": "Французский (Люксембург)", "zh-chs": "法語(盧森堡)", "xloc": [ - "default.handlebars->27->870" + "default.handlebars->27->890" ] }, { @@ -10034,7 +10042,7 @@ "ru": "Французский (Монако)", "zh-chs": "法語(摩納哥)", "xloc": [ - "default.handlebars->27->871" + "default.handlebars->27->891" ] }, { @@ -10050,7 +10058,7 @@ "ru": "Французский (Стандартный)", "zh-chs": "法語(標準)", "xloc": [ - "default.handlebars->27->866" + "default.handlebars->27->886" ] }, { @@ -10066,7 +10074,7 @@ "ru": "Французский (Швейцария)", "zh-chs": "法語(瑞士)", "xloc": [ - "default.handlebars->27->872" + "default.handlebars->27->892" ] }, { @@ -10082,7 +10090,7 @@ "ru": "Фризский", "zh-chs": "弗里斯蘭語", "xloc": [ - "default.handlebars->27->873" + "default.handlebars->27->893" ] }, { @@ -10098,7 +10106,7 @@ "ru": "Фриульский", "zh-chs": "弗留利", "xloc": [ - "default.handlebars->27->874" + "default.handlebars->27->894" ] }, { @@ -10119,9 +10127,9 @@ "default-mobile.handlebars->9->295", "default-mobile.handlebars->9->313", "default-mobile.handlebars->9->67", - "default.handlebars->27->1047", - "default.handlebars->27->1175", - "default.handlebars->27->1365" + "default.handlebars->27->1067", + "default.handlebars->27->1192", + "default.handlebars->27->1382" ] }, { @@ -10138,7 +10146,7 @@ "ru": "Администратор с полным доступом (все права)", "zh-chs": "正式管理員(保留所有權利)", "xloc": [ - "default.handlebars->27->1203" + "default.handlebars->27->1220" ] }, { @@ -10153,12 +10161,7 @@ "nl": "Volledige apparaatgroep beheerder", "pt": "Administrador de grupo de dispositivos completo", "ru": "Администратор группы устройств с полным доступом", - "zh-chs": "完整的設備組管理員", - "xloc": [ - "default.handlebars->27->1112", - "default.handlebars->27->1402", - "default.handlebars->27->1486" - ] + "zh-chs": "完整的設備組管理員" }, { "de": "Volle Geräterechte", @@ -10170,7 +10173,13 @@ "pt": "Direitos completos do dispositivo", "zh-chs": "完整的設備權限", "xloc": [ - "default.handlebars->27->535" + "default.handlebars->27->536" + ] + }, + { + "en": "Full Rights", + "xloc": [ + "default.handlebars->27->552" ] }, { @@ -10206,7 +10215,7 @@ "ru": "Администратор с полным доступом", "zh-chs": "正式管理員", "xloc": [ - "default.handlebars->27->1425" + "default.handlebars->27->1439" ] }, { @@ -10222,7 +10231,7 @@ "ru": "Гэльский (Ирландский)", "zh-chs": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->27->876" + "default.handlebars->27->896" ] }, { @@ -10238,7 +10247,7 @@ "ru": "Гэльский (Шотландия)", "zh-chs": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->27->875" + "default.handlebars->27->895" ] }, { @@ -10254,7 +10263,7 @@ "ru": "Галицкий", "zh-chs": "加拉契人", "xloc": [ - "default.handlebars->27->877" + "default.handlebars->27->897" ] }, { @@ -10327,7 +10336,7 @@ "ru": "Общая информация", "zh-chs": "一般信息", "xloc": [ - "default.handlebars->27->416" + "default.handlebars->27->417" ] }, { @@ -10360,7 +10369,7 @@ "ru": "Грузинский", "zh-chs": "格魯吉亞人", "xloc": [ - "default.handlebars->27->878" + "default.handlebars->27->898" ] }, { @@ -10376,7 +10385,7 @@ "ru": "Немецкий (Австрия)", "zh-chs": "德語(奧地利)", "xloc": [ - "default.handlebars->27->880" + "default.handlebars->27->900" ] }, { @@ -10392,7 +10401,7 @@ "ru": "Немецкий (Германия)", "zh-chs": "德文(德國)", "xloc": [ - "default.handlebars->27->881" + "default.handlebars->27->901" ] }, { @@ -10408,7 +10417,7 @@ "ru": "Немецкий (Лихтенштейн)", "zh-chs": "德文(列支敦士登)", "xloc": [ - "default.handlebars->27->882" + "default.handlebars->27->902" ] }, { @@ -10424,7 +10433,7 @@ "ru": "Немецкий (Люксембург)", "zh-chs": "德語(盧森堡)", "xloc": [ - "default.handlebars->27->883" + "default.handlebars->27->903" ] }, { @@ -10440,7 +10449,7 @@ "ru": "Немецкий (Стандартный)", "zh-chs": "德語(標準)", "xloc": [ - "default.handlebars->27->879" + "default.handlebars->27->899" ] }, { @@ -10456,7 +10465,7 @@ "ru": "Немецкий (Швейцария)", "zh-chs": "德語(瑞士)", "xloc": [ - "default.handlebars->27->884" + "default.handlebars->27->904" ] }, { @@ -10473,7 +10482,7 @@ "ru": "Получить учетные данные MQTT для этого устройства.", "zh-chs": "獲取此設備的MQTT登錄憑據。", "xloc": [ - "default.handlebars->27->519" + "default.handlebars->27->520" ] }, { @@ -10526,7 +10535,7 @@ "ru": "Хорошо", "zh-chs": "好", "xloc": [ - "default.handlebars->27->1043" + "default.handlebars->27->1063" ] }, { @@ -10562,7 +10571,7 @@ "ru": "Греческий", "zh-chs": "希臘語", "xloc": [ - "default.handlebars->27->885" + "default.handlebars->27->905" ] }, { @@ -10580,7 +10589,7 @@ "zh-chs": "組", "xloc": [ "default-mobile.handlebars->9->137", - "default.handlebars->27->441", + "default.handlebars->27->442", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, @@ -10598,7 +10607,7 @@ "ru": "Групповое действие", "zh-chs": "集體行動", "xloc": [ - "default.handlebars->27->378", + "default.handlebars->27->379", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar" ] }, @@ -10616,7 +10625,7 @@ "ru": "Члены группы", "zh-chs": "小組成員", "xloc": [ - "default.handlebars->27->1394" + "default.handlebars->27->1411" ] }, { @@ -10633,7 +10642,7 @@ "ru": "Права на группу для пользователя {0}.", "zh-chs": "用戶{0}的組權限。", "xloc": [ - "default.handlebars->27->1174" + "default.handlebars->27->1191" ] }, { @@ -10649,7 +10658,7 @@ "ru": "Права на группу для {0}.", "zh-chs": "{0}的組權限。", "xloc": [ - "default.handlebars->27->1173" + "default.handlebars->27->1190" ] }, { @@ -10683,7 +10692,7 @@ "ru": "Группы", "zh-chs": "團體", "xloc": [ - "default.handlebars->27->1309", + "default.handlebars->27->1326", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups" ] }, @@ -10700,7 +10709,7 @@ "ru": "Гуджарати", "zh-chs": "古久拉提", "xloc": [ - "default.handlebars->27->886" + "default.handlebars->27->906" ] }, { @@ -10735,7 +10744,7 @@ "ru": "Гаитянский", "zh-chs": "海地", "xloc": [ - "default.handlebars->27->887" + "default.handlebars->27->907" ] }, { @@ -10769,7 +10778,7 @@ "ru": "Жесткое отключение агента", "zh-chs": "硬斷開劑", "xloc": [ - "default.handlebars->27->781" + "default.handlebars->27->801" ] }, { @@ -10784,7 +10793,7 @@ "pt": "Total da pilha", "zh-chs": "堆總數", "xloc": [ - "default.handlebars->27->1555" + "default.handlebars->27->1566" ] }, { @@ -10799,7 +10808,7 @@ "pt": "Pilha usada", "zh-chs": "堆使用", "xloc": [ - "default.handlebars->27->1554" + "default.handlebars->27->1565" ] }, { @@ -10816,7 +10825,7 @@ "ru": "Иврит", "zh-chs": "希伯來語", "xloc": [ - "default.handlebars->27->888" + "default.handlebars->27->908" ] }, { @@ -10833,7 +10842,7 @@ "ru": "Помочь перевести MeshCentral", "zh-chs": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->27->1002" + "default.handlebars->27->1022" ] }, { @@ -10852,7 +10861,7 @@ "xloc": [ "default-mobile.handlebars->9->107", "default-mobile.handlebars->9->114", - "default.handlebars->27->342", + "default.handlebars->27->343", "default.handlebars->27->5" ] }, @@ -10869,7 +10878,7 @@ "ru": "Хинди", "zh-chs": "印地語", "xloc": [ - "default.handlebars->27->889" + "default.handlebars->27->909" ] }, { @@ -10904,7 +10913,7 @@ "zh-chs": "持有1份副本", "xloc": [ "default-mobile.handlebars->9->266", - "default.handlebars->27->694" + "default.handlebars->27->714" ] }, { @@ -10921,7 +10930,7 @@ "zh-chs": "持有1個搬家公司", "xloc": [ "default-mobile.handlebars->9->270", - "default.handlebars->27->698" + "default.handlebars->27->718" ] }, { @@ -10938,7 +10947,7 @@ "zh-chs": "保留{0}個條目進行複制", "xloc": [ "default-mobile.handlebars->9->264", - "default.handlebars->27->692" + "default.handlebars->27->712" ] }, { @@ -10955,7 +10964,7 @@ "zh-chs": "保留{0}個條目以進行移動", "xloc": [ "default-mobile.handlebars->9->268", - "default.handlebars->27->696" + "default.handlebars->27->716" ] }, { @@ -10972,7 +10981,7 @@ "zh-chs": "保持{2}的{0}入口{1}", "xloc": [ "default-mobile.handlebars->9->91", - "default.handlebars->27->1291" + "default.handlebars->27->1308" ] }, { @@ -10993,11 +11002,11 @@ "default-mobile.handlebars->9->140", "default-mobile.handlebars->9->142", "default-mobile.handlebars->9->226", - "default.handlebars->27->221", - "default.handlebars->27->446", + "default.handlebars->27->222", "default.handlebars->27->447", - "default.handlebars->27->449", - "default.handlebars->27->623" + "default.handlebars->27->448", + "default.handlebars->27->450", + "default.handlebars->27->643" ] }, { @@ -11014,7 +11023,7 @@ "ru": "Синхронизация имени хоста", "zh-chs": "主機名同步", "xloc": [ - "default.handlebars->27->1066" + "default.handlebars->27->1086" ] }, { @@ -11030,7 +11039,7 @@ "ru": "Венгерский", "zh-chs": "匈牙利", "xloc": [ - "default.handlebars->27->890" + "default.handlebars->27->910" ] }, { @@ -11047,7 +11056,7 @@ "ru": "Диапазон IP", "zh-chs": "IP範圍", "xloc": [ - "default.handlebars->27->236" + "default.handlebars->27->237" ] }, { @@ -11082,7 +11091,7 @@ "ru": "IP: {0}", "zh-chs": "IP:{0}", "xloc": [ - "default.handlebars->27->734" + "default.handlebars->27->754" ] }, { @@ -11095,7 +11104,7 @@ "pt": "IP: {0}, Máscara: {1}, Gateway: {2}", "zh-chs": "IP:{0},掩碼:{1},網關:{2}", "xloc": [ - "default.handlebars->27->732" + "default.handlebars->27->752" ] }, { @@ -11108,8 +11117,8 @@ "pt": "Camada IPv4", "zh-chs": "IPv4層", "xloc": [ - "default.handlebars->27->731", - "default.handlebars->27->733" + "default.handlebars->27->751", + "default.handlebars->27->753" ] }, { @@ -11176,7 +11185,7 @@ "ru": "Исландский", "zh-chs": "冰島的", "xloc": [ - "default.handlebars->27->891" + "default.handlebars->27->911" ] }, { @@ -11194,7 +11203,7 @@ "zh-chs": "圖標選擇", "xloc": [ "default-mobile.handlebars->9->224", - "default.handlebars->27->621" + "default.handlebars->27->641" ] }, { @@ -11211,7 +11220,7 @@ "ru": "Идентификатор", "zh-chs": "識別碼", "xloc": [ - "default.handlebars->27->759" + "default.handlebars->27->779" ] }, { @@ -11255,6 +11264,12 @@ "player.handlebars->3->17" ] }, + { + "en": "Indivitual Devices", + "xloc": [ + "default.handlebars->27->163" + ] + }, { "cs": "indonézština", "de": "Indonesisch", @@ -11268,7 +11283,7 @@ "ru": "Индонезийский", "zh-chs": "印度尼西亞", "xloc": [ - "default.handlebars->27->892" + "default.handlebars->27->912" ] }, { @@ -11337,7 +11352,7 @@ "ru": "Установка", "zh-chs": "安裝", "xloc": [ - "default.handlebars->27->1107" + "default.handlebars->27->1127" ] }, { @@ -11384,7 +11399,7 @@ "ru": "Установка CIRA", "zh-chs": "安裝CIRA", "xloc": [ - "default.handlebars->27->1099" + "default.handlebars->27->1119" ] }, { @@ -11401,7 +11416,7 @@ "ru": "Локальная установка", "zh-chs": "安裝本地", "xloc": [ - "default.handlebars->27->1101" + "default.handlebars->27->1121" ] }, { @@ -11418,10 +11433,10 @@ "ru": "Тип установки", "zh-chs": "安裝類型", "xloc": [ - "default.handlebars->27->1232", - "default.handlebars->27->1239", - "default.handlebars->27->281", - "default.handlebars->27->303" + "default.handlebars->27->1249", + "default.handlebars->27->1256", + "default.handlebars->27->282", + "default.handlebars->27->304" ] }, { @@ -11437,7 +11452,7 @@ "ru": "Intel (F10 = ESC+[OM)", "zh-chs": "英特爾(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->27->664", + "default.handlebars->27->684", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -11455,10 +11470,10 @@ "ru": "Intel AMT", "zh-chs": "英特爾AMT", "xloc": [ - "default.handlebars->27->1251", - "default.handlebars->27->1257", - "default.handlebars->27->1551", - "default.handlebars->27->1573" + "default.handlebars->27->1268", + "default.handlebars->27->1274", + "default.handlebars->27->1562", + "default.handlebars->27->1584" ] }, { @@ -11526,7 +11541,7 @@ "ru": "Intel AMT активирован в режиме администратора", "zh-chs": "在管理控制模式下激活了Intel AMT", "xloc": [ - "default.handlebars->27->462" + "default.handlebars->27->463" ] }, { @@ -11543,7 +11558,7 @@ "ru": "Intel AMT активирован в режиме клиента", "zh-chs": "英特爾AMT在客戶端控制模式下被激活", "xloc": [ - "default.handlebars->27->460" + "default.handlebars->27->461" ] }, { @@ -11560,7 +11575,7 @@ "ru": "Intel AMT настроен с TLS безопасностью сети", "zh-chs": "英特爾AMT已設置TLS網絡安全性", "xloc": [ - "default.handlebars->27->464" + "default.handlebars->27->465" ] }, { @@ -11593,7 +11608,7 @@ "ru": "Intel AMT необходимо установить с доверенным FQDN в MEBx или иметь кабельное подключение к локальной сети:", "zh-chs": "英特爾AMT將需要在MEBx中設置為受信任的FQDN,或者在網絡上具有有線局域網:", "xloc": [ - "default.handlebars->27->233" + "default.handlebars->27->234" ] }, { @@ -11610,7 +11625,7 @@ "ru": "Intel ASCII", "zh-chs": "英特爾ASCII", "xloc": [ - "default.handlebars->27->663" + "default.handlebars->27->683" ] }, { @@ -11630,11 +11645,11 @@ "default-mobile.handlebars->9->126", "default-mobile.handlebars->9->190", "default-mobile.handlebars->9->195", - "default.handlebars->27->1083", - "default.handlebars->27->1093", - "default.handlebars->27->419", - "default.handlebars->27->472", - "default.handlebars->27->488" + "default.handlebars->27->1103", + "default.handlebars->27->1113", + "default.handlebars->27->420", + "default.handlebars->27->473", + "default.handlebars->27->489" ] }, { @@ -11652,7 +11667,7 @@ "zh-chs": "英特爾®AMT CIRA", "xloc": [ "default-mobile.handlebars->9->194", - "default.handlebars->27->486" + "default.handlebars->27->487" ] }, { @@ -11669,9 +11684,9 @@ "ru": "Intel® AMT CIRA подключен и готов к использованию.", "zh-chs": "英特爾®AMT CIRA已連接並可以使用。", "xloc": [ - "default.handlebars->27->167", - "default.handlebars->27->356", - "default.handlebars->27->485" + "default.handlebars->27->168", + "default.handlebars->27->357", + "default.handlebars->27->486" ] }, { @@ -11707,7 +11722,7 @@ "ru": "Политика Intel® AMT", "zh-chs": "英特爾®AMT政策", "xloc": [ - "default.handlebars->27->1125" + "default.handlebars->27->1142" ] }, { @@ -11739,7 +11754,7 @@ "ru": "Intel® AMT Тег", "zh-chs": "英特爾®AMT標籤", "xloc": [ - "default.handlebars->27->476" + "default.handlebars->27->477" ] }, { @@ -11772,8 +11787,8 @@ "ru": "Активация Intel® AMT", "zh-chs": "英特爾®AMT激活", "xloc": [ - "default.handlebars->27->231", - "default.handlebars->27->234" + "default.handlebars->27->232", + "default.handlebars->27->235" ] }, { @@ -11791,8 +11806,8 @@ "zh-chs": "英特爾®AMT已連接", "xloc": [ "default-mobile.handlebars->9->204", - "default.handlebars->27->523", - "default.handlebars->27->524" + "default.handlebars->27->524", + "default.handlebars->27->525" ] }, { @@ -11808,8 +11823,8 @@ "ru": "События Intel® AMT desktop или serial.", "zh-chs": "英特爾®AMT桌面和串行事件。", "xloc": [ - "default.handlebars->27->1008", - "default.handlebars->27->1247" + "default.handlebars->27->1028", + "default.handlebars->27->1264" ] }, { @@ -11827,8 +11842,8 @@ "zh-chs": "檢測到英特爾®AMT", "xloc": [ "default-mobile.handlebars->9->205", - "default.handlebars->27->525", - "default.handlebars->27->526" + "default.handlebars->27->526", + "default.handlebars->27->527" ] }, { @@ -11844,7 +11859,7 @@ "ru": "Intel® AMT маршрутизируется и готов к использованию.", "zh-chs": "英特爾®AMT可路由並可以使用。", "xloc": [ - "default.handlebars->27->487" + "default.handlebars->27->488" ] }, { @@ -11860,8 +11875,8 @@ "ru": "Intel® AMT маршрутизируется.", "zh-chs": "英特爾®AMT是可路由的。", "xloc": [ - "default.handlebars->27->169", - "default.handlebars->27->358" + "default.handlebars->27->170", + "default.handlebars->27->359" ] }, { @@ -11896,8 +11911,8 @@ "zh-chs": "僅限英特爾®AMT,無代理", "xloc": [ "default-mobile.handlebars->9->277", - "default.handlebars->27->1037", - "default.handlebars->27->1059" + "default.handlebars->27->1057", + "default.handlebars->27->1079" ] }, { @@ -11913,7 +11928,7 @@ "ru": "Технология Intel® Active Management", "zh-chs": "英特爾®主動管理技術", "xloc": [ - "default.handlebars->27->471" + "default.handlebars->27->472" ] }, { @@ -11930,7 +11945,7 @@ "ru": "Intel® Active Management Technology (Intel® AMT)", "zh-chs": "英特爾®主動管理技術(英特爾®AMT)", "xloc": [ - "default.handlebars->27->751" + "default.handlebars->27->771" ] }, { @@ -11948,7 +11963,7 @@ "zh-chs": "英特爾®ME", "xloc": [ "default-mobile.handlebars->9->189", - "default.handlebars->27->470" + "default.handlebars->27->471" ] }, { @@ -11966,7 +11981,7 @@ "zh-chs": "英特爾®SM", "xloc": [ "default-mobile.handlebars->9->191", - "default.handlebars->27->474" + "default.handlebars->27->475" ] }, { @@ -11982,7 +11997,7 @@ "ru": "Intel® Standard Manageability", "zh-chs": "英特爾®標準可管理性", "xloc": [ - "default.handlebars->27->473" + "default.handlebars->27->474" ] }, { @@ -12082,7 +12097,7 @@ "ru": "Интерактивный", "zh-chs": "互動", "xloc": [ - "default.handlebars->27->646" + "default.handlebars->27->666" ] }, { @@ -12099,10 +12114,10 @@ "ru": "Только интерактивный режим", "zh-chs": "僅限互動", "xloc": [ - "default.handlebars->27->1235", - "default.handlebars->27->1242", - "default.handlebars->27->284", - "default.handlebars->27->306" + "default.handlebars->27->1252", + "default.handlebars->27->1259", + "default.handlebars->27->285", + "default.handlebars->27->307" ] }, { @@ -12119,7 +12134,7 @@ "ru": "Интерфейсы", "zh-chs": "介面", "xloc": [ - "default.handlebars->27->506" + "default.handlebars->27->507" ] }, { @@ -12135,7 +12150,7 @@ "ru": "Инуктитут", "zh-chs": "因紐特人", "xloc": [ - "default.handlebars->27->893" + "default.handlebars->27->913" ] }, { @@ -12151,7 +12166,7 @@ "ru": "Некорректный тип группы устройств", "zh-chs": "無效的設備組類型", "xloc": [ - "default.handlebars->27->1528" + "default.handlebars->27->1539" ] }, { @@ -12168,7 +12183,7 @@ "ru": "Некорректный JSON", "zh-chs": "無效的JSON", "xloc": [ - "default.handlebars->27->1522" + "default.handlebars->27->1533" ] }, { @@ -12185,8 +12200,8 @@ "ru": "Некорректный формат файла JSON.", "zh-chs": "無效的JSON文件格式。", "xloc": [ - "default.handlebars->27->1335", - "default.handlebars->27->1337" + "default.handlebars->27->1352", + "default.handlebars->27->1354" ] }, { @@ -12203,7 +12218,7 @@ "ru": "Некорректный файл JSON: {0}.", "zh-chs": "無效的JSON文件:{0}。", "xloc": [ - "default.handlebars->27->1333" + "default.handlebars->27->1350" ] }, { @@ -12220,7 +12235,7 @@ "ru": "Некорректная сигнатура PKCS", "zh-chs": "無效的PKCS簽名", "xloc": [ - "default.handlebars->27->1520" + "default.handlebars->27->1531" ] }, { @@ -12237,7 +12252,7 @@ "ru": "Некорректная сигнатура RSA", "zh-chs": "無效的RSA密碼", "xloc": [ - "default.handlebars->27->1521" + "default.handlebars->27->1532" ] }, { @@ -12338,7 +12353,7 @@ "ru": "Тип приглашения", "zh-chs": "邀請類型", "xloc": [ - "default.handlebars->27->263" + "default.handlebars->27->264" ] }, { @@ -12351,7 +12366,7 @@ "pt": "Os códigos de convite podem ser usados ​​por qualquer pessoa para associar dispositivos a este grupo de dispositivos usando o seguinte link público:", "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->27->1237" + "default.handlebars->27->1254" ] }, { @@ -12381,9 +12396,9 @@ "ru": "Пригласить", "zh-chs": "邀請", "xloc": [ - "default.handlebars->27->1109", - "default.handlebars->27->218", - "default.handlebars->27->296" + "default.handlebars->27->1129", + "default.handlebars->27->219", + "default.handlebars->27->297" ] }, { @@ -12396,11 +12411,11 @@ "pt": "Códigos de convite", "zh-chs": "邀請碼", "xloc": [ - "default.handlebars->27->1087", - "default.handlebars->27->1231", - "default.handlebars->27->1236", - "default.handlebars->27->1238", - "default.handlebars->27->1243" + "default.handlebars->27->1107", + "default.handlebars->27->1248", + "default.handlebars->27->1253", + "default.handlebars->27->1255", + "default.handlebars->27->1260" ] }, { @@ -12417,7 +12432,7 @@ "ru": "Пригласите установить Mesh Agent поделившись ссылкой. Эта ссылка ведет на инструкции для установки для группы устройств \\\"{0}\\\". Ссылка общедоступна и не требует наличия учетной записи на сервере.", "zh-chs": "通過共享邀請鏈接來邀請某人安裝網格代理。該鏈接為用戶提供 “{0}” 設備組的安裝說明。該鏈接是公共的,不需要該服務器的帳戶。", "xloc": [ - "default.handlebars->27->287" + "default.handlebars->27->288" ] }, { @@ -12434,8 +12449,8 @@ "ru": "Отправить приглашение на установку Mesh Agent", "zh-chs": "邀請某人在此網格上安裝網格代理。", "xloc": [ - "default.handlebars->27->1108", - "default.handlebars->27->217" + "default.handlebars->27->1128", + "default.handlebars->27->218" ] }, { @@ -12452,7 +12467,7 @@ "ru": "Пригласите установить Mesh Agent. Ссылка на установку для группы \\\"{0}\\\" будет отправлена по электронной почте.", "zh-chs": "邀請某人安裝網狀代理。將發送一封電子郵件,其中包含指向 “{0}” 設備組的網狀代理安裝的鏈接。", "xloc": [ - "default.handlebars->27->264" + "default.handlebars->27->265" ] }, { @@ -12469,7 +12484,7 @@ "ru": "Ирландский", "zh-chs": "愛爾蘭人", "xloc": [ - "default.handlebars->27->894" + "default.handlebars->27->914" ] }, { @@ -12485,7 +12500,7 @@ "ru": "Итальянский (Стандартный)", "zh-chs": "意大利語(標準)", "xloc": [ - "default.handlebars->27->895" + "default.handlebars->27->915" ] }, { @@ -12501,7 +12516,7 @@ "ru": "Итальянский (Швейцария)", "zh-chs": "義大利文(瑞士)", "xloc": [ - "default.handlebars->27->896" + "default.handlebars->27->916" ] }, { @@ -12518,9 +12533,9 @@ "ru": "Формат JSON", "zh-chs": "JSON格式", "xloc": [ - "default.handlebars->27->1302", - "default.handlebars->27->1341", - "default.handlebars->27->386" + "default.handlebars->27->1319", + "default.handlebars->27->1358", + "default.handlebars->27->387" ] }, { @@ -12537,7 +12552,7 @@ "ru": "Японский", "zh-chs": "日本", "xloc": [ - "default.handlebars->27->897" + "default.handlebars->27->917" ] }, { @@ -12552,7 +12567,7 @@ "ru": "Каннада", "zh-chs": "卡納達語", "xloc": [ - "default.handlebars->27->898" + "default.handlebars->27->918" ] }, { @@ -12567,7 +12582,7 @@ "ru": "Кашмирский", "zh-chs": "克什米爾語", "xloc": [ - "default.handlebars->27->899" + "default.handlebars->27->919" ] }, { @@ -12582,7 +12597,7 @@ "ru": "Казахский", "zh-chs": "哈薩克語", "xloc": [ - "default.handlebars->27->900" + "default.handlebars->27->920" ] }, { @@ -12598,7 +12613,7 @@ "ru": "Драйвер ядра", "zh-chs": "內核驅動程序", "xloc": [ - "default.handlebars->27->647" + "default.handlebars->27->667" ] }, { @@ -12615,8 +12630,8 @@ "ru": "Имя ключа", "zh-chs": "鍵名", "xloc": [ - "default.handlebars->27->791", - "default.handlebars->27->794" + "default.handlebars->27->811", + "default.handlebars->27->814" ] }, { @@ -12648,7 +12663,7 @@ "ru": "Кхмерский", "zh-chs": "高棉語", "xloc": [ - "default.handlebars->27->901" + "default.handlebars->27->921" ] }, { @@ -12663,7 +12678,7 @@ "ru": "Киргизский", "zh-chs": "吉爾吉斯", "xloc": [ - "default.handlebars->27->902" + "default.handlebars->27->922" ] }, { @@ -12678,7 +12693,7 @@ "ru": "Клингонский", "zh-chs": "克林貢", "xloc": [ - "default.handlebars->27->903" + "default.handlebars->27->923" ] }, { @@ -12691,7 +12706,7 @@ "pt": "Conhecido", "zh-chs": "已知的", "xloc": [ - "default.handlebars->27->750" + "default.handlebars->27->770" ] }, { @@ -12707,7 +12722,7 @@ "ru": "Korean", "zh-chs": "韓語", "xloc": [ - "default.handlebars->27->904" + "default.handlebars->27->924" ] }, { @@ -12723,7 +12738,7 @@ "ru": "Корейский (Северная Корея)", "zh-chs": "韓語(朝鮮)", "xloc": [ - "default.handlebars->27->905" + "default.handlebars->27->925" ] }, { @@ -12739,7 +12754,7 @@ "ru": "Корейский (Южная Корея)", "zh-chs": "韓語(韓國)", "xloc": [ - "default.handlebars->27->906" + "default.handlebars->27->926" ] }, { @@ -12756,8 +12771,8 @@ "ru": "LF", "zh-chs": "如果", "xloc": [ - "default.handlebars->27->659", - "default.handlebars->27->668" + "default.handlebars->27->679", + "default.handlebars->27->688" ] }, { @@ -12774,7 +12789,7 @@ "ru": "Язык", "zh-chs": "語言", "xloc": [ - "default.handlebars->27->1000" + "default.handlebars->27->1020" ] }, { @@ -12808,7 +12823,7 @@ "ru": "Большой Фокус", "zh-chs": "大焦點", "xloc": [ - "default.handlebars->27->636" + "default.handlebars->27->656" ] }, { @@ -12991,7 +13006,7 @@ "ru": "Последний доступ", "zh-chs": "最後訪問", "xloc": [ - "default.handlebars->27->1310" + "default.handlebars->27->1327" ] }, { @@ -13008,7 +13023,7 @@ "ru": "Последний вход в систему", "zh-chs": "上次登錄", "xloc": [ - "default.handlebars->27->1437" + "default.handlebars->27->1451" ] }, { @@ -13027,10 +13042,10 @@ "xloc": [ "default.handlebars->27->70", "default.handlebars->27->71", - "default.handlebars->27->722", - "default.handlebars->27->723", - "default.handlebars->27->724", - "default.handlebars->27->73" + "default.handlebars->27->73", + "default.handlebars->27->742", + "default.handlebars->27->743", + "default.handlebars->27->744" ] }, { @@ -13048,8 +13063,8 @@ "zh-chs": "上次代理連接", "xloc": [ "default.handlebars->27->69", - "default.handlebars->27->719", - "default.handlebars->27->721" + "default.handlebars->27->739", + "default.handlebars->27->741" ] }, { @@ -13066,7 +13081,7 @@ "ru": "Последнее изменение: {0}", "zh-chs": "上次更改:{0}", "xloc": [ - "default.handlebars->27->1441" + "default.handlebars->27->1455" ] }, { @@ -13117,7 +13132,7 @@ "ru": "Последний вход в систему: {0}", "zh-chs": "上次登錄:{0}", "xloc": [ - "default.handlebars->27->1320" + "default.handlebars->27->1337" ] }, { @@ -13134,7 +13149,7 @@ "ru": "Последнее посещение:", "zh-chs": "最後一次露面:", "xloc": [ - "default.handlebars->27->529", + "default.handlebars->27->530", "default.handlebars->27->65" ] }, @@ -13203,7 +13218,7 @@ "ru": "Латинский", "zh-chs": "拉丁", "xloc": [ - "default.handlebars->27->907" + "default.handlebars->27->927" ] }, { @@ -13219,7 +13234,7 @@ "ru": "Латышский", "zh-chs": "拉脫維亞語", "xloc": [ - "default.handlebars->27->908" + "default.handlebars->27->928" ] }, { @@ -13258,13 +13273,14 @@ "ru": "Меньше", "zh-chs": "減", "xloc": [ - "default.handlebars->27->1587" + "default.handlebars->27->1598" ] }, { "en": "Limit Events", "xloc": [ - "default.handlebars->27->547" + "default.handlebars->27->548", + "default.handlebars->27->567" ] }, { @@ -13299,8 +13315,9 @@ "zh-chs": "有限輸入", "xloc": [ "default-mobile.handlebars->9->326", - "default.handlebars->27->1217", - "default.handlebars->27->540" + "default.handlebars->27->1234", + "default.handlebars->27->541", + "default.handlebars->27->560" ] }, { @@ -13317,7 +13334,7 @@ "zh-chs": "僅限於輸入", "xloc": [ "default-mobile.handlebars->9->301", - "default.handlebars->27->1181" + "default.handlebars->27->1198" ] }, { @@ -13335,7 +13352,7 @@ "zh-chs": "鏈接", "xloc": [ "default-mobile.handlebars->9->71", - "default.handlebars->27->1263", + "default.handlebars->27->1280", "default.handlebars->container->column_l->p42->p42tbl->1->0->4" ] }, @@ -13353,8 +13370,8 @@ "ru": "Срок действия ссылки", "zh-chs": "鏈接過期", "xloc": [ - "default.handlebars->27->274", - "default.handlebars->27->288" + "default.handlebars->27->275", + "default.handlebars->27->289" ] }, { @@ -13389,7 +13406,7 @@ "ru": "Linux / BSD", "zh-chs": "Linux / BSD", "xloc": [ - "default.handlebars->27->299" + "default.handlebars->27->300" ] }, { @@ -13406,7 +13423,7 @@ "ru": "Linux / BSD (Удаление)", "zh-chs": "Linux / BSD(卸載)", "xloc": [ - "default.handlebars->27->302" + "default.handlebars->27->303" ] }, { @@ -13477,7 +13494,7 @@ "ru": "Linux ARM, Raspberry Pi (32bit)", "zh-chs": "Linux ARM,Raspberry Pi(32位)", "xloc": [ - "default.handlebars->27->604" + "default.handlebars->27->624" ] }, { @@ -13566,7 +13583,7 @@ "ru": "Только Linux", "zh-chs": "僅Linux", "xloc": [ - "default.handlebars->27->273" + "default.handlebars->27->274" ] }, { @@ -13583,7 +13600,7 @@ "ru": "Linux x86 (32bit)", "zh-chs": "Linux x86(32位)", "xloc": [ - "default.handlebars->27->601" + "default.handlebars->27->621" ] }, { @@ -13600,7 +13617,7 @@ "ru": "Linux x86 (64bit)", "zh-chs": "Linux x86(64位)", "xloc": [ - "default.handlebars->27->602" + "default.handlebars->27->622" ] }, { @@ -13635,7 +13652,7 @@ "ru": "Литовский", "zh-chs": "立陶宛語", "xloc": [ - "default.handlebars->27->909" + "default.handlebars->27->929" ] }, { @@ -13653,10 +13670,10 @@ "zh-chs": "載入中...", "xloc": [ "default-mobile.handlebars->9->34", - "default.handlebars->27->1054", - "default.handlebars->27->1056", - "default.handlebars->27->595", - "default.handlebars->27->787" + "default.handlebars->27->1074", + "default.handlebars->27->1076", + "default.handlebars->27->615", + "default.handlebars->27->807" ] }, { @@ -13722,7 +13739,7 @@ "ru": "Настройки локализации", "zh-chs": "本地化設置", "xloc": [ - "default.handlebars->27->1003", + "default.handlebars->27->1023", "default.handlebars->container->column_l->p2->p2AccountActions->3->5" ] }, @@ -13740,7 +13757,7 @@ "ru": "Местонахождение", "zh-chs": "位置", "xloc": [ - "default.handlebars->27->508" + "default.handlebars->27->509" ] }, { @@ -13773,7 +13790,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->27->1371" + "default.handlebars->27->1388" ] }, { @@ -13790,7 +13807,7 @@ "ru": "Заблокирован", "zh-chs": "已鎖定", "xloc": [ - "default.handlebars->27->1321" + "default.handlebars->27->1338" ] }, { @@ -13807,7 +13824,7 @@ "ru": "Заблокированная учетная запись", "zh-chs": "賬戶鎖定", "xloc": [ - "default.handlebars->27->1422" + "default.handlebars->27->1436" ] }, { @@ -13824,7 +13841,7 @@ "ru": "Добавить событие", "zh-chs": "記錄事件", "xloc": [ - "default.handlebars->27->499" + "default.handlebars->27->500" ] }, { @@ -13969,7 +13986,7 @@ "ru": "Люксембургский", "zh-chs": "盧森堡語", "xloc": [ - "default.handlebars->27->910" + "default.handlebars->27->930" ] }, { @@ -13982,8 +13999,8 @@ "pt": "Camada MAC", "zh-chs": "MAC層", "xloc": [ - "default.handlebars->27->727", - "default.handlebars->27->729" + "default.handlebars->27->747", + "default.handlebars->27->749" ] }, { @@ -14017,7 +14034,7 @@ "ru": "MAC: {0}", "zh-chs": "MAC:{0}", "xloc": [ - "default.handlebars->27->730" + "default.handlebars->27->750" ] }, { @@ -14030,7 +14047,7 @@ "pt": "MAC: {0}, Gateway: {1}", "zh-chs": "MAC:{0},網關:{1}", "xloc": [ - "default.handlebars->27->728" + "default.handlebars->27->748" ] }, { @@ -14065,8 +14082,8 @@ "ru": "MPS Сервер", "zh-chs": "MPS服務器", "xloc": [ - "default.handlebars->27->255", - "default.handlebars->27->261" + "default.handlebars->27->256", + "default.handlebars->27->262" ] }, { @@ -14085,11 +14102,11 @@ "xloc": [ "default-mobile.handlebars->9->128", "default-mobile.handlebars->9->197", - "default.handlebars->27->174", - "default.handlebars->27->363", - "default.handlebars->27->492", - "default.handlebars->27->771", - "default.handlebars->27->772", + "default.handlebars->27->175", + "default.handlebars->27->364", + "default.handlebars->27->493", + "default.handlebars->27->791", + "default.handlebars->27->792", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -14124,7 +14141,7 @@ "ru": "MQTT Вход", "zh-chs": "MQTT登錄", "xloc": [ - "default.handlebars->27->520" + "default.handlebars->27->521" ] }, { @@ -14141,7 +14158,7 @@ "zh-chs": "MQTT通道已連接", "xloc": [ "default-mobile.handlebars->9->206", - "default.handlebars->27->528" + "default.handlebars->27->529" ] }, { @@ -14159,7 +14176,7 @@ "zh-chs": "MQTT已連接", "xloc": [ "default.handlebars->27->139", - "default.handlebars->27->527" + "default.handlebars->27->528" ] }, { @@ -14176,9 +14193,9 @@ "ru": "MQTT подключение к устройству активно.", "zh-chs": "與設備的MQTT連接已激活。", "xloc": [ - "default.handlebars->27->173", - "default.handlebars->27->362", - "default.handlebars->27->491" + "default.handlebars->27->174", + "default.handlebars->27->363", + "default.handlebars->27->492" ] }, { @@ -14229,7 +14246,7 @@ "ru": "MacOS (64bit)", "zh-chs": "MacOS(64位)", "xloc": [ - "default.handlebars->27->603" + "default.handlebars->27->623" ] }, { @@ -14282,7 +14299,7 @@ "ru": "Сообщения главного сервера", "zh-chs": "主服務器消息", "xloc": [ - "default.handlebars->27->1562" + "default.handlebars->27->1573" ] }, { @@ -14298,7 +14315,7 @@ "ru": "Малайский", "zh-chs": "馬來語", "xloc": [ - "default.handlebars->27->912" + "default.handlebars->27->932" ] }, { @@ -14313,7 +14330,7 @@ "ru": "Малаяламский", "zh-chs": "馬拉雅拉姆語", "xloc": [ - "default.handlebars->27->913" + "default.handlebars->27->933" ] }, { @@ -14329,7 +14346,7 @@ "ru": "Мальтийский", "zh-chs": "馬耳他語", "xloc": [ - "default.handlebars->27->914" + "default.handlebars->27->934" ] }, { @@ -14366,8 +14383,8 @@ "xloc": [ "default-mobile.handlebars->9->298", "default-mobile.handlebars->9->316", - "default.handlebars->27->1178", - "default.handlebars->27->1206" + "default.handlebars->27->1195", + "default.handlebars->27->1223" ] }, { @@ -14386,8 +14403,14 @@ "xloc": [ "default-mobile.handlebars->9->297", "default-mobile.handlebars->9->315", - "default.handlebars->27->1177", - "default.handlebars->27->1205" + "default.handlebars->27->1194", + "default.handlebars->27->1222" + ] + }, + { + "en": "Manage Devices", + "xloc": [ + "default.handlebars->27->555" ] }, { @@ -14421,7 +14444,7 @@ "ru": "Управление группами пользователя", "zh-chs": "管理用戶組", "xloc": [ - "default.handlebars->27->1370" + "default.handlebars->27->1387" ] }, { @@ -14438,7 +14461,8 @@ "ru": "Управление пользователями", "zh-chs": "管理用戶", "xloc": [ - "default.handlebars->27->1369" + "default.handlebars->27->1386", + "default.handlebars->27->554" ] }, { @@ -14522,7 +14546,7 @@ "ru": "Управление с помощью программного агента", "zh-chs": "使用軟件代理進行管理", "xloc": [ - "default.handlebars->27->1036" + "default.handlebars->27->1056" ] }, { @@ -14540,7 +14564,7 @@ "zh-chs": "使用軟件代理進行管理", "xloc": [ "default-mobile.handlebars->9->278", - "default.handlebars->27->1060" + "default.handlebars->27->1080" ] }, { @@ -14556,7 +14580,7 @@ "ru": "Менеджер", "zh-chs": "經理", "xloc": [ - "default.handlebars->27->1326" + "default.handlebars->27->1343" ] }, { @@ -14573,7 +14597,7 @@ "ru": "Ручной Сертификат", "zh-chs": "手動證書", "xloc": [ - "default.handlebars->27->242" + "default.handlebars->27->243" ] }, { @@ -14590,7 +14614,7 @@ "ru": "Ручной Имя пользователя/Пароль", "zh-chs": "手動用戶名/密碼", "xloc": [ - "default.handlebars->27->241" + "default.handlebars->27->242" ] }, { @@ -14605,7 +14629,7 @@ "ru": "Маори", "zh-chs": "毛利人", "xloc": [ - "default.handlebars->27->915" + "default.handlebars->27->935" ] }, { @@ -14639,7 +14663,7 @@ "ru": "Маратхи", "zh-chs": "馬拉地語", "xloc": [ - "default.handlebars->27->916" + "default.handlebars->27->936" ] }, { @@ -14656,7 +14680,7 @@ "ru": "Достигнуто максимальное число сессий", "zh-chs": "達到的會話數上限", "xloc": [ - "default.handlebars->27->1526" + "default.handlebars->27->1537" ] }, { @@ -14710,7 +14734,7 @@ "ru": "Мегабайт", "zh-chs": "兆字節", "xloc": [ - "default.handlebars->27->1552" + "default.handlebars->27->1563" ] }, { @@ -14727,8 +14751,8 @@ "ru": "ОЗУ", "zh-chs": "記憶", "xloc": [ - "default.handlebars->27->1543", - "default.handlebars->27->764", + "default.handlebars->27->1554", + "default.handlebars->27->784", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -14747,15 +14771,15 @@ "zh-chs": "網格代理", "xloc": [ "default-mobile.handlebars->9->203", - "default.handlebars->27->308", - "default.handlebars->27->311", - "default.handlebars->27->319", - "default.handlebars->27->323", - "default.handlebars->27->326", - "default.handlebars->27->453", - "default.handlebars->27->484", - "default.handlebars->27->718", - "default.handlebars->27->725" + "default.handlebars->27->309", + "default.handlebars->27->312", + "default.handlebars->27->320", + "default.handlebars->27->324", + "default.handlebars->27->327", + "default.handlebars->27->454", + "default.handlebars->27->485", + "default.handlebars->27->738", + "default.handlebars->27->745" ] }, { @@ -14772,7 +14796,7 @@ "zh-chs": "網格代理控制台", "xloc": [ "default-mobile.handlebars->9->305", - "default.handlebars->27->1186" + "default.handlebars->27->1203" ] }, { @@ -14789,7 +14813,7 @@ "ru": "Ретранслятор Mesh", "zh-chs": "網狀中繼", "xloc": [ - "default.handlebars->27->490" + "default.handlebars->27->491" ] }, { @@ -14806,9 +14830,9 @@ "ru": "Mesh Agent подключен и готов к использованию.", "zh-chs": "已連接網狀代理並準備使用。", "xloc": [ - "default.handlebars->27->165", - "default.handlebars->27->354", - "default.handlebars->27->483" + "default.handlebars->27->166", + "default.handlebars->27->355", + "default.handlebars->27->484" ] }, { @@ -14824,9 +14848,9 @@ "ru": "Mesh Agent доступен с использованием другого агента в качестве ретранслятора.", "zh-chs": "使用其他代理作為中繼可以訪問網狀代理。", "xloc": [ - "default.handlebars->27->171", - "default.handlebars->27->360", - "default.handlebars->27->489" + "default.handlebars->27->172", + "default.handlebars->27->361", + "default.handlebars->27->490" ] }, { @@ -14843,8 +14867,8 @@ "ru": "MeshAction (.txt)", "zh-chs": "MeshAction(.txt)", "xloc": [ - "default.handlebars->27->610", - "default.handlebars->27->612" + "default.handlebars->27->630", + "default.handlebars->27->632" ] }, { @@ -14860,7 +14884,7 @@ "ru": "Трафик MeshAgent", "zh-chs": "MeshAgent流量", "xloc": [ - "default.handlebars->27->1564" + "default.handlebars->27->1575" ] }, { @@ -14877,7 +14901,7 @@ "ru": "Обновление MeshAgent", "zh-chs": "MeshAgent更新", "xloc": [ - "default.handlebars->27->1565" + "default.handlebars->27->1576" ] }, { @@ -14909,7 +14933,7 @@ "ru": "Ошибки MeshCentral", "zh-chs": "網格中心錯誤", "xloc": [ - "default.handlebars->27->1055" + "default.handlebars->27->1075" ] }, { @@ -14925,7 +14949,7 @@ "ru": "MeshCentral Router ", "zh-chs": "MeshCentral路由器", "xloc": [ - "default.handlebars->27->598" + "default.handlebars->27->618" ] }, { @@ -14942,7 +14966,7 @@ "ru": "MeshCentral Router это инструмент Windows для сопоставления портов TCP. Например, через этот сервер можно установить подключение по RDP к удаленному устройству.", "zh-chs": "MeshCentral Router是Windows工具,用於TCP端口映射。例如,您可以通過該服務器將RDP放入遠程設備。", "xloc": [ - "default.handlebars->27->596" + "default.handlebars->27->616" ] }, { @@ -14976,7 +15000,7 @@ "ru": "Соединения сервера MeshCentral", "zh-chs": "MeshCentral服務器對等", "xloc": [ - "default.handlebars->27->1563" + "default.handlebars->27->1574" ] }, { @@ -15009,7 +15033,7 @@ "ru": "Версия MeshCentral", "zh-chs": "MeshCentral版本", "xloc": [ - "default.handlebars->27->1053", + "default.handlebars->27->1073", "default.handlebars->27->94", "default.handlebars->27->95" ] @@ -15028,8 +15052,8 @@ "ru": "MeshCmd", "zh-chs": "網格命令", "xloc": [ - "default.handlebars->27->189", - "default.handlebars->27->608" + "default.handlebars->27->190", + "default.handlebars->27->628" ] }, { @@ -15046,7 +15070,7 @@ "ru": "MeshCmd (Linux ARM, 32bit)", "zh-chs": "MeshCmd(Linux ARM,32位)", "xloc": [ - "default.handlebars->27->620" + "default.handlebars->27->640" ] }, { @@ -15063,7 +15087,7 @@ "ru": "MeshCmd (Linux x86, 32bit)", "zh-chs": "MeshCmd(Linux x86,32bit)", "xloc": [ - "default.handlebars->27->617" + "default.handlebars->27->637" ] }, { @@ -15080,7 +15104,7 @@ "ru": "MeshCmd (Linux x86, 64bit)", "zh-chs": "MeshCmd(Linux x86,64bit)", "xloc": [ - "default.handlebars->27->618" + "default.handlebars->27->638" ] }, { @@ -15097,7 +15121,7 @@ "ru": "MeshCmd (MacOS, 64bit)", "zh-chs": "MeshCmd(MacOS,64位)", "xloc": [ - "default.handlebars->27->619" + "default.handlebars->27->639" ] }, { @@ -15112,7 +15136,7 @@ "ru": "MeshCmd (приложение Win32)", "zh-chs": "MeshCmd(Win32可執行文件)", "xloc": [ - "default.handlebars->27->615" + "default.handlebars->27->635" ] }, { @@ -15127,7 +15151,7 @@ "ru": "MeshCmd (приложение Win64)", "zh-chs": "MeshCmd(Win64可執行文件)", "xloc": [ - "default.handlebars->27->616" + "default.handlebars->27->636" ] }, { @@ -15143,7 +15167,7 @@ "ru": "MeshCmd это утилита с командной строкой, которая позволяет выполнить множество операций. Файл с командами может быть опционально скачан и отредактирован для указания информации о сервере и учетных данных.", "zh-chs": "MeshCmd是執行許多不同操作的命令行工具。可以選擇下載和編輯操作文件以提供服務器信息和憑據。", "xloc": [ - "default.handlebars->27->605" + "default.handlebars->27->625" ] }, { @@ -15160,7 +15184,7 @@ "ru": "MeshCommander Script", "zh-chs": "MeshCommander腳本", "xloc": [ - "default.handlebars->27->240" + "default.handlebars->27->241" ] }, { @@ -15196,8 +15220,8 @@ "ru": "MeshServerRootCert.cer", "zh-chs": "MeshServerRootCert.cer", "xloc": [ - "default.handlebars->27->251", - "default.handlebars->27->258" + "default.handlebars->27->252", + "default.handlebars->27->259" ] }, { @@ -15213,8 +15237,8 @@ "ru": "Сообщение", "zh-chs": "信息", "xloc": [ - "default.handlebars->27->285", - "default.handlebars->27->576" + "default.handlebars->27->286", + "default.handlebars->27->596" ] }, { @@ -15230,7 +15254,7 @@ "ru": "Диспетчер сообщения", "zh-chs": "郵件調度程序", "xloc": [ - "default.handlebars->27->1561" + "default.handlebars->27->1572" ] }, { @@ -15299,7 +15323,7 @@ "ru": "Изменить позицию узла", "zh-chs": "修改節點位置", "xloc": [ - "default.handlebars->27->413" + "default.handlebars->27->414" ] }, { @@ -15314,7 +15338,7 @@ "ru": "Молдавский", "zh-chs": "摩爾達維亞人", "xloc": [ - "default.handlebars->27->917" + "default.handlebars->27->937" ] }, { @@ -15331,7 +15355,7 @@ "ru": "Еще", "zh-chs": "更多", "xloc": [ - "default.handlebars->27->1586" + "default.handlebars->27->1597" ] }, { @@ -15348,7 +15372,7 @@ "ru": "Материнская плата", "zh-chs": "母板", "xloc": [ - "default.handlebars->27->760" + "default.handlebars->27->780" ] }, { @@ -15365,7 +15389,7 @@ "ru": "Переместить это устройство в другую группу устройств", "zh-chs": "將此設備移到其他設備組", "xloc": [ - "default.handlebars->27->501" + "default.handlebars->27->502" ] }, { @@ -15382,7 +15406,7 @@ "ru": "Переместить в группу устройств", "zh-chs": "移至設備組", "xloc": [ - "default.handlebars->27->376" + "default.handlebars->27->377" ] }, { @@ -15514,7 +15538,7 @@ "ru": "Консоль моего сервера", "zh-chs": "我的服務器控制台", "xloc": [ - "default.handlebars->27->766" + "default.handlebars->27->786" ] }, { @@ -15635,8 +15659,8 @@ "ru": "Мой ключ", "zh-chs": "我的鑰匙", "xloc": [ - "default.handlebars->27->792", - "default.handlebars->27->795" + "default.handlebars->27->812", + "default.handlebars->27->815" ] }, { @@ -15658,20 +15682,20 @@ "default-mobile.handlebars->9->292", "default-mobile.handlebars->9->59", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->27->1034", - "default.handlebars->27->1061", - "default.handlebars->27->1147", - "default.handlebars->27->1308", - "default.handlebars->27->1376", - "default.handlebars->27->1380", - "default.handlebars->27->1385", - "default.handlebars->27->1387", - "default.handlebars->27->1410", - "default.handlebars->27->444", - "default.handlebars->27->641", - "default.handlebars->27->714", - "default.handlebars->27->756", + "default.handlebars->27->1054", + "default.handlebars->27->1081", + "default.handlebars->27->1164", + "default.handlebars->27->1325", + "default.handlebars->27->1393", + "default.handlebars->27->1397", + "default.handlebars->27->1402", + "default.handlebars->27->1404", + "default.handlebars->27->1424", + "default.handlebars->27->445", + "default.handlebars->27->661", + "default.handlebars->27->734", "default.handlebars->27->76", + "default.handlebars->27->776", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default.handlebars->container->column_l->p42->p42tbl->1->0->2" @@ -15691,7 +15715,7 @@ "ru": "Имя (не обязательно)", "zh-chs": "名稱(可選)", "xloc": [ - "default.handlebars->27->265" + "default.handlebars->27->266" ] }, { @@ -15708,7 +15732,7 @@ "ru": "Имя1, Имя2, Имя3", "zh-chs": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->27->1362" + "default.handlebars->27->1379" ] }, { @@ -15724,7 +15748,7 @@ "ru": "Навахо", "zh-chs": "納瓦霍人", "xloc": [ - "default.handlebars->27->918" + "default.handlebars->27->938" ] }, { @@ -15740,7 +15764,7 @@ "ru": "Ндонга", "zh-chs": "恩東加", "xloc": [ - "default.handlebars->27->919" + "default.handlebars->27->939" ] }, { @@ -15756,7 +15780,7 @@ "ru": "Непальский", "zh-chs": "尼泊爾文", "xloc": [ - "default.handlebars->27->920" + "default.handlebars->27->940" ] }, { @@ -15773,7 +15797,7 @@ "ru": "Сетевые интерфейсы", "zh-chs": "網絡接口", "xloc": [ - "default.handlebars->27->594" + "default.handlebars->27->614" ] }, { @@ -15790,7 +15814,7 @@ "ru": "Network Router", "zh-chs": "網絡路由器", "xloc": [ - "default.handlebars->27->614" + "default.handlebars->27->634" ] }, { @@ -15803,7 +15827,7 @@ "pt": "Trabalho em rede", "zh-chs": "聯網", "xloc": [ - "default.handlebars->27->735" + "default.handlebars->27->755" ] }, { @@ -15856,9 +15880,9 @@ "zh-chs": "新設備組", "xloc": [ "default-mobile.handlebars->9->53", - "default.handlebars->27->1027", - "default.handlebars->27->1039", - "default.handlebars->27->586" + "default.handlebars->27->1047", + "default.handlebars->27->1059", + "default.handlebars->27->606" ] }, { @@ -15877,8 +15901,8 @@ "xloc": [ "default-mobile.handlebars->9->250", "default-mobile.handlebars->9->82", - "default.handlebars->27->1281", - "default.handlebars->27->678", + "default.handlebars->27->1298", + "default.handlebars->27->698", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -15933,14 +15957,15 @@ "xloc": [ "default-mobile.handlebars->9->48", "default-mobile.handlebars->9->49", - "default.handlebars->27->1022", - "default.handlebars->27->1023" + "default.handlebars->27->1042", + "default.handlebars->27->1043" ] }, { "en": "No AMT", "xloc": [ - "default.handlebars->27->539" + "default.handlebars->27->540", + "default.handlebars->27->559" ] }, { @@ -15964,7 +15989,7 @@ { "en": "No Added Rights", "xloc": [ - "default.handlebars->27->550" + "default.handlebars->27->551" ] }, { @@ -15983,8 +16008,8 @@ "xloc": [ "default-mobile.handlebars->9->187", "default-mobile.handlebars->9->188", - "default.handlebars->27->467", - "default.handlebars->27->468" + "default.handlebars->27->468", + "default.handlebars->27->469" ] }, { @@ -15997,8 +16022,9 @@ "pt": "No Desktop", "zh-chs": "沒有桌面", "xloc": [ - "default.handlebars->27->1213", - "default.handlebars->27->541" + "default.handlebars->27->1230", + "default.handlebars->27->542", + "default.handlebars->27->561" ] }, { @@ -16011,7 +16037,7 @@ "pt": "Sem acesso à área de trabalho", "zh-chs": "沒有桌面訪問", "xloc": [ - "default.handlebars->27->1182" + "default.handlebars->27->1199" ] }, { @@ -16028,9 +16054,9 @@ "ru": "События не найдены", "zh-chs": "找不到活動", "xloc": [ - "default.handlebars->27->1298", - "default.handlebars->27->1508", - "default.handlebars->27->712" + "default.handlebars->27->1315", + "default.handlebars->27->1519", + "default.handlebars->27->732" ] }, { @@ -16048,7 +16074,7 @@ "zh-chs": "沒有文件訪問", "xloc": [ "default-mobile.handlebars->9->303", - "default.handlebars->27->1184" + "default.handlebars->27->1201" ] }, { @@ -16066,14 +16092,16 @@ "zh-chs": "沒有文件", "xloc": [ "default-mobile.handlebars->9->324", - "default.handlebars->27->1215", - "default.handlebars->27->538" + "default.handlebars->27->1232", + "default.handlebars->27->539", + "default.handlebars->27->558" ] }, { "en": "No Input", "xloc": [ - "default.handlebars->27->536" + "default.handlebars->27->537", + "default.handlebars->27->556" ] }, { @@ -16092,8 +16120,8 @@ "xloc": [ "default-mobile.handlebars->9->304", "default-mobile.handlebars->9->325", - "default.handlebars->27->1185", - "default.handlebars->27->1216" + "default.handlebars->27->1202", + "default.handlebars->27->1233" ] }, { @@ -16126,7 +16154,7 @@ "ru": "Intel® AMT устройств в этой сети нет", "zh-chs": "此網格中沒有英特爾®AMT設備", "xloc": [ - "default.handlebars->27->178" + "default.handlebars->27->179" ] }, { @@ -16160,7 +16188,7 @@ "ru": "Нет членов", "zh-chs": "沒有會員", "xloc": [ - "default.handlebars->27->1397" + "default.handlebars->27->1414" ] }, { @@ -16177,7 +16205,7 @@ "ru": "Запретить создание групп устройств", "zh-chs": "沒有新的設備組", "xloc": [ - "default.handlebars->27->1372" + "default.handlebars->27->1389" ] }, { @@ -16194,9 +16222,9 @@ "ru": "Политик нет", "zh-chs": "沒有政策", "xloc": [ - "default.handlebars->27->1088", - "default.handlebars->27->1119", - "default.handlebars->27->1122" + "default.handlebars->27->1108", + "default.handlebars->27->1136", + "default.handlebars->27->1139" ] }, { @@ -16215,11 +16243,9 @@ "default-mobile.handlebars->9->287", "default-mobile.handlebars->9->330", "default-mobile.handlebars->9->68", - "default.handlebars->27->1048", - "default.handlebars->27->1113", - "default.handlebars->27->1221", - "default.handlebars->27->1403", - "default.handlebars->27->1487" + "default.handlebars->27->1068", + "default.handlebars->27->1238", + "default.handlebars->27->570" ] }, { @@ -16237,8 +16263,8 @@ "zh-chs": "沒有TLS安全性", "xloc": [ "default-mobile.handlebars->9->218", - "default.handlebars->27->227", - "default.handlebars->27->572" + "default.handlebars->27->228", + "default.handlebars->27->592" ] }, { @@ -16256,8 +16282,9 @@ "zh-chs": "沒有終端", "xloc": [ "default-mobile.handlebars->9->323", - "default.handlebars->27->1214", - "default.handlebars->27->537" + "default.handlebars->27->1231", + "default.handlebars->27->538", + "default.handlebars->27->557" ] }, { @@ -16275,7 +16302,7 @@ "zh-chs": "沒有終端訪問", "xloc": [ "default-mobile.handlebars->9->302", - "default.handlebars->27->1183" + "default.handlebars->27->1200" ] }, { @@ -16291,7 +16318,7 @@ "ru": "Нет инструментов (MeshCmd/Router)", "zh-chs": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->27->1373" + "default.handlebars->27->1390" ] }, { @@ -16308,8 +16335,8 @@ "ru": "Нет общих групп устройств", "zh-chs": "沒有共同的設備組", "xloc": [ - "default.handlebars->27->1406", - "default.handlebars->27->1490" + "default.handlebars->27->1420", + "default.handlebars->27->1501" ] }, { @@ -16361,7 +16388,7 @@ "ru": "Ни одно устройство не включено ни в одну из групп, чтобы добавить группу нажмите \\\"Группы\\\" устройств.", "zh-chs": "任何組中均不包含任何設備,請單擊設備的“組”以添加到組中。", "xloc": [ - "default.handlebars->27->176" + "default.handlebars->27->177" ] }, { @@ -16378,7 +16405,7 @@ "ru": "Устройства не найдены.", "zh-chs": "找不到設備。", "xloc": [ - "default.handlebars->27->430" + "default.handlebars->27->431" ] }, { @@ -16391,7 +16418,7 @@ "pt": "Nenhum dispositivo em comum", "zh-chs": "沒有共同的設備", "xloc": [ - "default.handlebars->27->1481" + "default.handlebars->27->1495" ] }, { @@ -16408,7 +16435,7 @@ "ru": "В группе нет устройств.", "zh-chs": "該設備組中沒有設備。", "xloc": [ - "default.handlebars->27->1260" + "default.handlebars->27->1277" ] }, { @@ -16426,7 +16453,7 @@ "zh-chs": "該組中沒有設備", "xloc": [ "default-mobile.handlebars->9->100", - "default.handlebars->27->180" + "default.handlebars->27->181" ] }, { @@ -16443,7 +16470,7 @@ "ru": "Нет устройств, соответствующих этому запросу.", "zh-chs": "沒有與此搜索匹配的設備。", "xloc": [ - "default.handlebars->27->177" + "default.handlebars->27->178" ] }, { @@ -16459,7 +16486,7 @@ "ru": "Не найдено устройств с тегом.", "zh-chs": "找不到帶有標籤的設備。", "xloc": [ - "default.handlebars->27->185" + "default.handlebars->27->186" ] }, { @@ -16476,7 +16503,7 @@ "ru": "Группы не найдены.", "zh-chs": "找不到群組。", "xloc": [ - "default.handlebars->27->1375" + "default.handlebars->27->1392" ] }, { @@ -16493,7 +16520,7 @@ "ru": "Информации об этом устройстве нет", "zh-chs": "沒有此設備的信息。", "xloc": [ - "default.handlebars->27->765" + "default.handlebars->27->785" ] }, { @@ -16510,7 +16537,7 @@ "ru": "Местоположение не найдено.", "zh-chs": "找不到位置。", "xloc": [ - "default.handlebars->27->432" + "default.handlebars->27->433" ] }, { @@ -16543,7 +16570,7 @@ "ru": "Других групп устройств такого же типа не существует.", "zh-chs": "沒有其他相同類型的設備組。", "xloc": [ - "default.handlebars->27->589" + "default.handlebars->27->609" ] }, { @@ -16576,7 +16603,7 @@ "ru": "Нет серверных прав", "zh-chs": "沒有服務器權限", "xloc": [ - "default.handlebars->27->1423" + "default.handlebars->27->1437" ] }, { @@ -16592,7 +16619,7 @@ "ru": "Нет членства в группах пользователей", "zh-chs": "沒有用戶組成員身份", "xloc": [ - "default.handlebars->27->1496" + "default.handlebars->27->1507" ] }, { @@ -16609,13 +16636,13 @@ "ru": "Пользователи не найдены.", "zh-chs": "未找到相應的用戶。", "xloc": [ - "default.handlebars->27->1316" + "default.handlebars->27->1333" ] }, { "en": "No users with special device permissions", "xloc": [ - "default.handlebars->27->534" + "default.handlebars->27->535" ] }, { @@ -16676,22 +16703,22 @@ "default-mobile.handlebars->9->78", "default-mobile.handlebars->9->96", "default-mobile.handlebars->9->98", - "default.handlebars->27->1063", - "default.handlebars->27->1067", - "default.handlebars->27->1079", - "default.handlebars->27->1084", - "default.handlebars->27->1086", - "default.handlebars->27->1269", - "default.handlebars->27->1384", - "default.handlebars->27->1442", - "default.handlebars->27->1446", + "default.handlebars->27->1083", + "default.handlebars->27->1087", + "default.handlebars->27->1099", + "default.handlebars->27->1104", + "default.handlebars->27->1106", + "default.handlebars->27->1286", + "default.handlebars->27->1401", + "default.handlebars->27->1456", + "default.handlebars->27->1460", "default.handlebars->27->148", - "default.handlebars->27->163", "default.handlebars->27->164", - "default.handlebars->27->437", - "default.handlebars->27->448", - "default.handlebars->27->450", - "default.handlebars->27->494", + "default.handlebars->27->165", + "default.handlebars->27->438", + "default.handlebars->27->449", + "default.handlebars->27->451", + "default.handlebars->27->495", "default.handlebars->27->63", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] @@ -16726,7 +16753,7 @@ "ru": "Норвежский", "zh-chs": "挪威", "xloc": [ - "default.handlebars->27->921" + "default.handlebars->27->941" ] }, { @@ -16742,7 +16769,7 @@ "ru": "Норвежский (Букмол)", "zh-chs": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->27->922" + "default.handlebars->27->942" ] }, { @@ -16758,7 +16785,7 @@ "ru": "Норвежский (Нюнорск)", "zh-chs": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->27->923" + "default.handlebars->27->943" ] }, { @@ -16774,8 +16801,8 @@ "zh-chs": "未激活(輸入)", "xloc": [ "default-mobile.handlebars->9->179", - "default.handlebars->27->455", - "default.handlebars->27->739" + "default.handlebars->27->456", + "default.handlebars->27->759" ] }, { @@ -16791,8 +16818,8 @@ "zh-chs": "未激活(預)", "xloc": [ "default-mobile.handlebars->9->178", - "default.handlebars->27->454", - "default.handlebars->27->738" + "default.handlebars->27->455", + "default.handlebars->27->758" ] }, { @@ -16809,8 +16836,8 @@ "ru": "Не подключен", "zh-chs": "未連接", "xloc": [ - "default.handlebars->27->1249", - "default.handlebars->27->1255" + "default.handlebars->27->1266", + "default.handlebars->27->1272" ] }, { @@ -16823,7 +16850,7 @@ "pt": "Não conhecido", "zh-chs": "未知", "xloc": [ - "default.handlebars->27->749" + "default.handlebars->27->769" ] }, { @@ -16840,7 +16867,7 @@ "ru": "Не задано", "zh-chs": "沒有設置", "xloc": [ - "default.handlebars->27->1428" + "default.handlebars->27->1442" ] }, { @@ -16853,7 +16880,7 @@ "pt": "Não verificado", "zh-chs": "未經審核的", "xloc": [ - "default.handlebars->27->1464" + "default.handlebars->27->1478" ] }, { @@ -16870,11 +16897,12 @@ "ru": "Примечания", "zh-chs": "筆記", "xloc": [ - "default.handlebars->27->1094", - "default.handlebars->27->1453", - "default.handlebars->27->497", - "default.handlebars->27->546", - "default.handlebars->27->553" + "default.handlebars->27->1114", + "default.handlebars->27->1467", + "default.handlebars->27->498", + "default.handlebars->27->547", + "default.handlebars->27->566", + "default.handlebars->27->573" ] }, { @@ -16907,8 +16935,8 @@ "ru": "Настройки уведомлений", "zh-chs": "通知設置", "xloc": [ - "default.handlebars->27->1009", - "default.handlebars->27->1248", + "default.handlebars->27->1029", + "default.handlebars->27->1265", "default.handlebars->container->column_l->p2->p2AccountActions->3->8" ] }, @@ -16926,7 +16954,7 @@ "ru": "Уведомления также должны быть включены в настройках учетной записи.", "zh-chs": "通知設置還必須在帳戶設置中啟用。", "xloc": [ - "default.handlebars->27->1244" + "default.handlebars->27->1261" ] }, { @@ -16943,7 +16971,7 @@ "ru": "Звук уведомления", "zh-chs": "通知聲音。", "xloc": [ - "default.handlebars->27->1004" + "default.handlebars->27->1024" ] }, { @@ -16960,7 +16988,7 @@ "ru": "Уведомления", "zh-chs": "通知事項", "xloc": [ - "default.handlebars->27->1085" + "default.handlebars->27->1105" ] }, { @@ -16977,7 +17005,7 @@ "ru": "Уведомить", "zh-chs": "通知", "xloc": [ - "default.handlebars->27->1455" + "default.handlebars->27->1469" ] }, { @@ -16994,9 +17022,9 @@ "ru": "Уведомить пользователя", "zh-chs": "通知使用者", "xloc": [ - "default.handlebars->27->1151", - "default.handlebars->27->1155", - "default.handlebars->27->1158" + "default.handlebars->27->1168", + "default.handlebars->27->1172", + "default.handlebars->27->1175" ] }, { @@ -17013,7 +17041,7 @@ "ru": "Уведомить {0}", "zh-chs": "通知{0}", "xloc": [ - "default.handlebars->27->1328" + "default.handlebars->27->1345" ] }, { @@ -17032,8 +17060,8 @@ "xloc": [ "default-mobile.handlebars->9->45", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->27->1051", - "default.handlebars->27->480", + "default.handlebars->27->1071", + "default.handlebars->27->481", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -17070,7 +17098,7 @@ "ru": "Окситанский", "zh-chs": "歐舒丹", "xloc": [ - "default.handlebars->27->924" + "default.handlebars->27->944" ] }, { @@ -17087,7 +17115,7 @@ "ru": "Произошло в {0}", "zh-chs": "發生在{0}", "xloc": [ - "default.handlebars->27->1511" + "default.handlebars->27->1522" ] }, { @@ -17104,7 +17132,7 @@ "ru": "Оффлайн пользователи", "zh-chs": "離線用戶", "xloc": [ - "default.handlebars->27->1313" + "default.handlebars->27->1330" ] }, { @@ -17122,7 +17150,7 @@ "zh-chs": "舊密碼:", "xloc": [ "default-mobile.handlebars->9->47", - "default.handlebars->27->1021" + "default.handlebars->27->1041" ] }, { @@ -17157,7 +17185,7 @@ "ru": "Онлайн пользователи", "zh-chs": "在線用戶", "xloc": [ - "default.handlebars->27->1312" + "default.handlebars->27->1329" ] }, { @@ -17175,8 +17203,8 @@ "zh-chs": "只能編輯小於200k的文件。", "xloc": [ "default-mobile.handlebars->9->258", - "default.handlebars->27->410", - "default.handlebars->27->686" + "default.handlebars->27->411", + "default.handlebars->27->706" ] }, { @@ -17210,7 +17238,7 @@ "ru": "Открыть страницу на устройстве", "zh-chs": "在設備上打開頁面", "xloc": [ - "default.handlebars->27->555" + "default.handlebars->27->575" ] }, { @@ -17225,7 +17253,7 @@ "ru": "Открыть терминал XTerm", "zh-chs": "打開XTerm終端", "xloc": [ - "default.handlebars->27->511" + "default.handlebars->27->512" ] }, { @@ -17276,11 +17304,11 @@ "ru": "Операционная система", "zh-chs": "操作系統", "xloc": [ - "default.handlebars->27->268", - "default.handlebars->27->297", - "default.handlebars->27->477", - "default.handlebars->27->607", - "default.handlebars->27->717" + "default.handlebars->27->269", + "default.handlebars->27->298", + "default.handlebars->27->478", + "default.handlebars->27->627", + "default.handlebars->27->737" ] }, { @@ -17298,8 +17326,8 @@ "zh-chs": "運作方式", "xloc": [ "default-mobile.handlebars->9->213", - "default.handlebars->27->370", - "default.handlebars->27->564" + "default.handlebars->27->371", + "default.handlebars->27->584" ] }, { @@ -17316,7 +17344,7 @@ "ru": "Организация", "zh-chs": "組織", "xloc": [ - "default.handlebars->27->260" + "default.handlebars->27->261" ] }, { @@ -17331,7 +17359,7 @@ "ru": "Ория", "zh-chs": "奧里亞", "xloc": [ - "default.handlebars->27->925" + "default.handlebars->27->945" ] }, { @@ -17346,7 +17374,7 @@ "ru": "Оромо", "zh-chs": "奧羅莫", "xloc": [ - "default.handlebars->27->926" + "default.handlebars->27->946" ] }, { @@ -17397,7 +17425,7 @@ "ru": "Устаревший", "zh-chs": "過時的", "xloc": [ - "default.handlebars->27->479" + "default.handlebars->27->480" ] }, { @@ -17413,7 +17441,7 @@ "ru": "Собственный процесс", "zh-chs": "自己的過程", "xloc": [ - "default.handlebars->27->648" + "default.handlebars->27->668" ] }, { @@ -17431,7 +17459,7 @@ "zh-chs": "PID", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", - "default.handlebars->27->644", + "default.handlebars->27->664", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -17449,7 +17477,7 @@ "ru": "Part Number", "zh-chs": "零件號", "xloc": [ - "default.handlebars->27->763" + "default.handlebars->27->783" ] }, { @@ -17466,7 +17494,7 @@ "ru": "Частично", "zh-chs": "部分的", "xloc": [ - "default.handlebars->27->1327" + "default.handlebars->27->1344" ] }, { @@ -17481,12 +17509,7 @@ "nl": "Gedeeltelijke apparaatgroep rechten", "pt": "Direitos de grupo de dispositivos parciais", "ru": "Частичные права на группу устройств", - "zh-chs": "部分設備組權限", - "xloc": [ - "default.handlebars->27->1111", - "default.handlebars->27->1400", - "default.handlebars->27->1484" - ] + "zh-chs": "部分設備組權限" }, { "de": "Teilgeräterechte", @@ -17514,7 +17537,7 @@ "xloc": [ "default-mobile.handlebars->9->285", "default-mobile.handlebars->9->66", - "default.handlebars->27->1046" + "default.handlebars->27->1066" ] }, { @@ -17531,7 +17554,7 @@ "ru": "Частичные права", "zh-chs": "部分權利", "xloc": [ - "default.handlebars->27->1426" + "default.handlebars->27->1440" ] }, { @@ -17565,15 +17588,15 @@ "zh-chs": "密碼", "xloc": [ "default-mobile.handlebars->9->216", - "default.handlebars->27->1351", - "default.handlebars->27->1352", - "default.handlebars->27->1438", - "default.handlebars->27->1440", - "default.handlebars->27->1467", - "default.handlebars->27->1468", - "default.handlebars->27->225", - "default.handlebars->27->254", - "default.handlebars->27->570" + "default.handlebars->27->1368", + "default.handlebars->27->1369", + "default.handlebars->27->1452", + "default.handlebars->27->1454", + "default.handlebars->27->1481", + "default.handlebars->27->1482", + "default.handlebars->27->226", + "default.handlebars->27->255", + "default.handlebars->27->590" ] }, { @@ -17666,7 +17689,7 @@ "ru": "Подсказка пароля", "zh-chs": "密碼提示", "xloc": [ - "default.handlebars->27->1469" + "default.handlebars->27->1483" ] }, { @@ -17684,7 +17707,7 @@ "zh-chs": "密碼提示:", "xloc": [ "default-mobile.handlebars->9->50", - "default.handlebars->27->1024" + "default.handlebars->27->1044" ] }, { @@ -17701,7 +17724,7 @@ "ru": "Пароль не совпадает", "zh-chs": "密碼不符合", "xloc": [ - "default.handlebars->27->1128" + "default.handlebars->27->1145" ] }, { @@ -17736,8 +17759,8 @@ "ru": "Пароль*", "zh-chs": "密碼*", "xloc": [ - "default.handlebars->27->1126", - "default.handlebars->27->1127" + "default.handlebars->27->1143", + "default.handlebars->27->1144" ] }, { @@ -17756,8 +17779,8 @@ "xloc": [ "default-mobile.handlebars->9->42", "default-mobile.handlebars->9->43", - "default.handlebars->27->1016", - "default.handlebars->27->1017", + "default.handlebars->27->1036", + "default.handlebars->27->1037", "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", @@ -17788,9 +17811,9 @@ "default-mobile.handlebars->9->90", "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->1290", - "default.handlebars->27->669", - "default.handlebars->27->691", + "default.handlebars->27->1307", + "default.handlebars->27->689", + "default.handlebars->27->711", "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" @@ -17844,7 +17867,7 @@ "ru": "Произвести действие агента", "zh-chs": "執行代理動作", "xloc": [ - "default.handlebars->27->774" + "default.handlebars->27->794" ] }, { @@ -17860,7 +17883,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM) для группы \\\"{0}\\\",скачав инструмент MeshCMD и запустив его следующим образом:", "zh-chs": "通過下載MeshCMD工具並像下面這樣運行它,以執行Intel AMT管理員控制模式(ACM)激活以將 “{0}” 組:", "xloc": [ - "default.handlebars->27->232" + "default.handlebars->27->233" ] }, { @@ -17876,8 +17899,8 @@ "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).", "zh-chs": "執行英特爾AMT管理員控制模式(ACM)激活。", "xloc": [ - "default.handlebars->27->1104", - "default.handlebars->27->213" + "default.handlebars->27->1124", + "default.handlebars->27->214" ] }, { @@ -17893,7 +17916,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM) для группы \\\"{0}\\\",скачав инструмент MeshCMD и запустив его следующим образом:", "zh-chs": "通過下載MeshCMD工具並像下面這樣運行,來執行Intel AMT客戶端控制模式(CCM)激活以將\\“{0}\\”分組:", "xloc": [ - "default.handlebars->27->230" + "default.handlebars->27->231" ] }, { @@ -17909,8 +17932,8 @@ "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).", "zh-chs": "執行英特爾AMT客戶端控制模式(CCM)激活。", "xloc": [ - "default.handlebars->27->1102", - "default.handlebars->27->211" + "default.handlebars->27->1122", + "default.handlebars->27->212" ] }, { @@ -17927,7 +17950,7 @@ "ru": "Управление питанием устройства", "zh-chs": "在設備上執行電源操作", "xloc": [ - "default.handlebars->27->496", + "default.handlebars->27->497", "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" @@ -17948,8 +17971,8 @@ "zh-chs": "權限", "xloc": [ "default-mobile.handlebars->9->332", - "default.handlebars->27->1224", - "default.handlebars->27->1311" + "default.handlebars->27->1241", + "default.handlebars->27->1328" ] }, { @@ -17966,7 +17989,7 @@ "ru": "Персидский/Иран", "zh-chs": "波斯/伊朗", "xloc": [ - "default.handlebars->27->927" + "default.handlebars->27->947" ] }, { @@ -17996,7 +18019,7 @@ "ru": "Поместить узел сюда", "zh-chs": "將節點放在這裡", "xloc": [ - "default.handlebars->27->425" + "default.handlebars->27->426" ] }, { @@ -18083,7 +18106,7 @@ "zh-chs": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->9->38", - "default.handlebars->27->1011" + "default.handlebars->27->1031" ] }, { @@ -18099,8 +18122,8 @@ "ru": "Действие плагина", "zh-chs": "插件動作", "xloc": [ - "default.handlebars->27->1583", - "default.handlebars->27->159" + "default.handlebars->27->159", + "default.handlebars->27->1594" ] }, { @@ -18219,7 +18242,7 @@ "zh-chs": "政策", "xloc": [ "default-mobile.handlebars->9->65", - "default.handlebars->27->1045" + "default.handlebars->27->1065" ] }, { @@ -18236,7 +18259,7 @@ "ru": "Польский", "zh-chs": "拋光", "xloc": [ - "default.handlebars->27->928" + "default.handlebars->27->948" ] }, { @@ -18253,7 +18276,7 @@ "ru": "Португальский", "zh-chs": "葡萄牙語", "xloc": [ - "default.handlebars->27->929" + "default.handlebars->27->949" ] }, { @@ -18270,7 +18293,7 @@ "ru": "Португальский (Бразилия)", "zh-chs": "葡萄牙語(巴西)", "xloc": [ - "default.handlebars->27->930" + "default.handlebars->27->950" ] }, { @@ -18321,7 +18344,7 @@ "ru": "Состояния питания", "zh-chs": "電力國", "xloc": [ - "default.handlebars->27->1253", + "default.handlebars->27->1270", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -18341,7 +18364,7 @@ "xloc": [ "default-mobile.handlebars->9->108", "default-mobile.handlebars->9->212", - "default.handlebars->27->561", + "default.handlebars->27->581", "default.handlebars->27->6" ] }, @@ -18359,7 +18382,7 @@ "ru": "Выключить устройства", "zh-chs": "關閉設備電源", "xloc": [ - "default.handlebars->27->374" + "default.handlebars->27->375" ] }, { @@ -18379,7 +18402,7 @@ "default-mobile.handlebars->9->103", "default-mobile.handlebars->9->110", "default.handlebars->27->1", - "default.handlebars->27->334" + "default.handlebars->27->335" ] }, { @@ -18398,7 +18421,7 @@ "xloc": [ "default-mobile.handlebars->9->109", "default-mobile.handlebars->9->116", - "default.handlebars->27->346", + "default.handlebars->27->347", "default.handlebars->27->7" ] }, @@ -18451,7 +18474,7 @@ "zh-chs": "過程控制", "xloc": [ "default-mobile.handlebars->9->237", - "default.handlebars->27->656" + "default.handlebars->27->676" ] }, { @@ -18486,9 +18509,9 @@ "ru": "Запрос согласия пользователя", "zh-chs": "提示用戶同意", "xloc": [ - "default.handlebars->27->1152", - "default.handlebars->27->1156", - "default.handlebars->27->1159" + "default.handlebars->27->1169", + "default.handlebars->27->1173", + "default.handlebars->27->1176" ] }, { @@ -18528,7 +18551,7 @@ "pt": "Estado de provisionamento", "zh-chs": "供應國", "xloc": [ - "default.handlebars->27->743" + "default.handlebars->27->763" ] }, { @@ -18546,7 +18569,7 @@ "zh-chs": "公開連結", "xloc": [ "default-mobile.handlebars->9->77", - "default.handlebars->27->1276" + "default.handlebars->27->1293" ] }, { @@ -18561,7 +18584,7 @@ "ru": "Пенджаби", "zh-chs": "旁遮普語", "xloc": [ - "default.handlebars->27->931" + "default.handlebars->27->951" ] }, { @@ -18576,7 +18599,7 @@ "ru": "Пенджаби (Индия)", "zh-chs": "旁遮普(印度)", "xloc": [ - "default.handlebars->27->932" + "default.handlebars->27->952" ] }, { @@ -18591,7 +18614,7 @@ "ru": "Пенджаби (Пакистан)", "zh-chs": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->27->933" + "default.handlebars->27->953" ] }, { @@ -18608,7 +18631,7 @@ "ru": "Putty", "zh-chs": "油灰", "xloc": [ - "default.handlebars->27->516" + "default.handlebars->27->517" ] }, { @@ -18641,7 +18664,7 @@ "ru": "Кечуа", "zh-chs": "蓋丘亞族", "xloc": [ - "default.handlebars->27->934" + "default.handlebars->27->954" ] }, { @@ -18694,7 +18717,7 @@ "ru": "RDP", "zh-chs": "RDP", "xloc": [ - "default.handlebars->27->514" + "default.handlebars->27->515" ] }, { @@ -18709,7 +18732,7 @@ "ru": "Подключение RDP", "zh-chs": "RDP連接", "xloc": [ - "default.handlebars->27->407" + "default.handlebars->27->408" ] }, { @@ -18724,7 +18747,7 @@ "ru": "Порт RDP:", "zh-chs": "RDP遠程連接端口:", "xloc": [ - "default.handlebars->27->406" + "default.handlebars->27->407" ] }, { @@ -18791,7 +18814,7 @@ "ru": "RSS", "zh-chs": "的RSS", "xloc": [ - "default.handlebars->27->1556" + "default.handlebars->27->1567" ] }, { @@ -18808,7 +18831,7 @@ "ru": "Случайный пароль.", "zh-chs": "隨機化密碼。", "xloc": [ - "default.handlebars->27->1353" + "default.handlebars->27->1370" ] }, { @@ -18842,7 +18865,7 @@ "ru": "Реактивировать Intel® AMT", "zh-chs": "重新激活英特爾®AMT", "xloc": [ - "default.handlebars->27->1130" + "default.handlebars->27->1147" ] }, { @@ -18858,7 +18881,7 @@ "ru": "Области", "zh-chs": "境界", "xloc": [ - "default.handlebars->27->1361" + "default.handlebars->27->1378" ] }, { @@ -18877,8 +18900,8 @@ "xloc": [ "default-mobile.handlebars->9->251", "default-mobile.handlebars->9->83", - "default.handlebars->27->1282", - "default.handlebars->27->679" + "default.handlebars->27->1299", + "default.handlebars->27->699" ] }, { @@ -18917,7 +18940,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->422", + "default.handlebars->27->423", "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" @@ -18953,8 +18976,8 @@ "zh-chs": "中繼", "xloc": [ "default-mobile.handlebars->9->127", - "default.handlebars->27->172", - "default.handlebars->27->361" + "default.handlebars->27->173", + "default.handlebars->27->362" ] }, { @@ -18970,7 +18993,7 @@ "ru": "Число ретрансляций", "zh-chs": "中繼計數", "xloc": [ - "default.handlebars->27->1538" + "default.handlebars->27->1549" ] }, { @@ -18986,7 +19009,7 @@ "ru": "Ошибки ретранслятора", "zh-chs": "中繼錯誤", "xloc": [ - "default.handlebars->27->1531" + "default.handlebars->27->1542" ] }, { @@ -19002,8 +19025,8 @@ "ru": "Сессии ретранслятора", "zh-chs": "接力會議", "xloc": [ - "default.handlebars->27->1537", - "default.handlebars->27->1550" + "default.handlebars->27->1548", + "default.handlebars->27->1561" ] }, { @@ -19098,7 +19121,7 @@ "ru": "Удаленный буфер обмена", "zh-chs": "遠程剪貼板", "xloc": [ - "default.handlebars->27->640" + "default.handlebars->27->660" ] }, { @@ -19117,8 +19140,8 @@ "xloc": [ "default-mobile.handlebars->9->299", "default-mobile.handlebars->9->317", - "default.handlebars->27->1179", - "default.handlebars->27->1207" + "default.handlebars->27->1196", + "default.handlebars->27->1224" ] }, { @@ -19136,8 +19159,8 @@ "zh-chs": "遠程桌面設置", "xloc": [ "default-mobile.handlebars->9->232", - "default.handlebars->27->204", - "default.handlebars->27->632" + "default.handlebars->27->205", + "default.handlebars->27->652" ] }, { @@ -19154,7 +19177,7 @@ "ru": "Ввод с удаленной клавиатуры", "zh-chs": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->27->638" + "default.handlebars->27->658" ] }, { @@ -19171,7 +19194,7 @@ "zh-chs": "遠程網狀用戶", "xloc": [ "default-mobile.handlebars->9->335", - "default.handlebars->27->1227" + "default.handlebars->27->1244" ] }, { @@ -19188,7 +19211,7 @@ "ru": "Удаленный пользователь", "zh-chs": "遠程用戶", "xloc": [ - "default.handlebars->27->1416" + "default.handlebars->27->1430" ] }, { @@ -19206,8 +19229,8 @@ "xloc": [ "default-mobile.handlebars->9->300", "default-mobile.handlebars->9->322", - "default.handlebars->27->1180", - "default.handlebars->27->1212" + "default.handlebars->27->1197", + "default.handlebars->27->1229" ] }, { @@ -19224,7 +19247,7 @@ "ru": "Удаленный буфер обмена действителен в течении 60 секунд.", "zh-chs": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->27->639" + "default.handlebars->27->659" ] }, { @@ -19265,7 +19288,7 @@ { "en": "Remove Device", "xloc": [ - "default.handlebars->27->1497" + "default.handlebars->27->1508" ] }, { @@ -19282,8 +19305,8 @@ "ru": "Удалить группу устройств.", "zh-chs": "刪除設備組", "xloc": [ - "default.handlebars->27->1408", - "default.handlebars->27->1506" + "default.handlebars->27->1422", + "default.handlebars->27->1517" ] }, { @@ -19300,8 +19323,8 @@ "ru": "Удалить пользователя", "zh-chs": "刪除用戶", "xloc": [ - "default.handlebars->27->1499", - "default.handlebars->27->1502" + "default.handlebars->27->1510", + "default.handlebars->27->1513" ] }, { @@ -19318,7 +19341,7 @@ "ru": "Удалить все двухфакторные аутентификации.", "zh-chs": "刪除所有第二因素驗證。", "xloc": [ - "default.handlebars->27->1472" + "default.handlebars->27->1486" ] }, { @@ -19335,7 +19358,7 @@ "ru": "Удалить все прошлые события для этого userid.", "zh-chs": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->27->1355" + "default.handlebars->27->1372" ] }, { @@ -19352,7 +19375,7 @@ "ru": "Удалить устройство при отключении", "zh-chs": "斷開連接後移除設備", "xloc": [ - "default.handlebars->27->1161" + "default.handlebars->27->1178" ] }, { @@ -19369,7 +19392,7 @@ "ru": "Удалить местоположение узла", "zh-chs": "刪除節點位置", "xloc": [ - "default.handlebars->27->414" + "default.handlebars->27->415" ] }, { @@ -19386,7 +19409,7 @@ "ru": "Удалить это устройство", "zh-chs": "刪除此設備", "xloc": [ - "default.handlebars->27->503" + "default.handlebars->27->504" ] }, { @@ -19403,7 +19426,7 @@ "ru": "Удалить членство пользователя в группе", "zh-chs": "刪除用戶組成員身份", "xloc": [ - "default.handlebars->27->1494" + "default.handlebars->27->1505" ] }, { @@ -19420,7 +19443,7 @@ "ru": "Удалить права группы пользователей для этой группы устройств", "zh-chs": "刪除該設備組的用戶組權限", "xloc": [ - "default.handlebars->27->1404" + "default.handlebars->27->1418" ] }, { @@ -19437,11 +19460,11 @@ "ru": "Удалить права пользователя для этой группы устройств", "zh-chs": "刪除此設備組的用戶權限", "xloc": [ - "default.handlebars->27->1114", - "default.handlebars->27->1395", - "default.handlebars->27->1479", - "default.handlebars->27->1488", - "default.handlebars->27->532" + "default.handlebars->27->1131", + "default.handlebars->27->1412", + "default.handlebars->27->1493", + "default.handlebars->27->1499", + "default.handlebars->27->533" ] }, { @@ -19462,9 +19485,9 @@ "default-mobile.handlebars->9->87", "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->1286", - "default.handlebars->27->408", - "default.handlebars->27->683", + "default.handlebars->27->1303", + "default.handlebars->27->409", + "default.handlebars->27->703", "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->cxfilerename->0" @@ -19484,7 +19507,7 @@ "ru": "Требования: ", "zh-chs": "要求:", "xloc": [ - "default.handlebars->27->1025" + "default.handlebars->27->1045" ] }, { @@ -19502,8 +19525,8 @@ "zh-chs": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->51", - "default.handlebars->27->1358", - "default.handlebars->27->1470" + "default.handlebars->27->1375", + "default.handlebars->27->1484" ] }, { @@ -19520,7 +19543,7 @@ "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере", "zh-chs": "需要瀏覽器中的Microsoft ClickOnce支持", "xloc": [ - "default.handlebars->27->513" + "default.handlebars->27->514" ] }, { @@ -19537,8 +19560,8 @@ "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере.", "zh-chs": "在瀏覽器中需要Microsoft ClickOnce支持。", "xloc": [ - "default.handlebars->27->515", - "default.handlebars->27->517" + "default.handlebars->27->516", + "default.handlebars->27->518" ] }, { @@ -19556,7 +19579,7 @@ "zh-chs": "重啟", "xloc": [ "default-mobile.handlebars->9->211", - "default.handlebars->27->560", + "default.handlebars->27->580", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -19628,7 +19651,7 @@ "ru": "Отправить в перезагрузку", "zh-chs": "重置設備", "xloc": [ - "default.handlebars->27->373" + "default.handlebars->27->374" ] }, { @@ -19662,7 +19685,7 @@ "ru": "Перезапуск", "zh-chs": "重新開始", "xloc": [ - "default.handlebars->27->654", + "default.handlebars->27->674", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -19680,7 +19703,7 @@ "ru": "Восстановить сервер", "zh-chs": "還原伺服器", "xloc": [ - "default.handlebars->27->1052" + "default.handlebars->27->1072" ] }, { @@ -19714,7 +19737,7 @@ "ru": "Восстановить сервер из резервной копии, это удалит существующие данные сервера . Продолжайте дальше только если знаете, что делаете.", "zh-chs": "使用備份還原服務器,這將刪除現有服務器數據。僅當您知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->27->1049" + "default.handlebars->27->1069" ] }, { @@ -19731,7 +19754,7 @@ "ru": "Ограничения", "zh-chs": "限制條件", "xloc": [ - "default.handlebars->27->1427" + "default.handlebars->27->1441" ] }, { @@ -19746,7 +19769,7 @@ "ru": "Ретороманский", "zh-chs": "修羅羅馬式", "xloc": [ - "default.handlebars->27->935" + "default.handlebars->27->955" ] }, { @@ -19762,7 +19785,7 @@ "ru": "Румынский", "zh-chs": "羅馬尼亞語", "xloc": [ - "default.handlebars->27->936" + "default.handlebars->27->956" ] }, { @@ -19778,7 +19801,7 @@ "ru": "Румынский (Молдавия)", "zh-chs": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->27->937" + "default.handlebars->27->957" ] }, { @@ -19797,8 +19820,8 @@ "xloc": [ "default-mobile.handlebars->9->245", "default-mobile.handlebars->9->69", - "default.handlebars->27->1261", - "default.handlebars->27->673" + "default.handlebars->27->1278", + "default.handlebars->27->693" ] }, { @@ -19815,8 +19838,8 @@ "ru": "Корневой сертификат", "zh-chs": "根證書", "xloc": [ - "default.handlebars->27->250", - "default.handlebars->27->257" + "default.handlebars->27->251", + "default.handlebars->27->258" ] }, { @@ -19833,8 +19856,8 @@ "ru": "Файл корневого сертификата", "zh-chs": "根證書文件", "xloc": [ - "default.handlebars->27->252", - "default.handlebars->27->259" + "default.handlebars->27->253", + "default.handlebars->27->260" ] }, { @@ -19901,8 +19924,8 @@ "ru": "Router", "zh-chs": "路由器", "xloc": [ - "default.handlebars->27->191", - "default.handlebars->27->510" + "default.handlebars->27->192", + "default.handlebars->27->511" ] }, { @@ -19919,7 +19942,7 @@ "ru": "Русский", "zh-chs": "俄語", "xloc": [ - "default.handlebars->27->938" + "default.handlebars->27->958" ] }, { @@ -19936,7 +19959,7 @@ "ru": "Русский (Молдавия)", "zh-chs": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->27->939" + "default.handlebars->27->959" ] }, { @@ -19953,7 +19976,7 @@ "ru": "Такое же как имя устройства", "zh-chs": "與設備名稱相同", "xloc": [ - "default.handlebars->27->222" + "default.handlebars->27->223" ] }, { @@ -19968,7 +19991,7 @@ "ru": "Саамский", "zh-chs": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->27->940" + "default.handlebars->27->960" ] }, { @@ -20000,7 +20023,7 @@ "ru": "Санго", "zh-chs": "三鄉", "xloc": [ - "default.handlebars->27->941" + "default.handlebars->27->961" ] }, { @@ -20015,7 +20038,7 @@ "ru": "Санскритский", "zh-chs": "梵文", "xloc": [ - "default.handlebars->27->942" + "default.handlebars->27->962" ] }, { @@ -20030,7 +20053,7 @@ "ru": "Сардинский", "zh-chs": "撒丁島", "xloc": [ - "default.handlebars->27->943" + "default.handlebars->27->963" ] }, { @@ -20064,7 +20087,7 @@ "ru": "Сохранить расположение узла", "zh-chs": "保存節點位置", "xloc": [ - "default.handlebars->27->415" + "default.handlebars->27->416" ] }, { @@ -20116,7 +20139,7 @@ "ru": "Сканировать", "zh-chs": "掃瞄", "xloc": [ - "default.handlebars->27->237" + "default.handlebars->27->238" ] }, { @@ -20133,7 +20156,7 @@ "ru": "Сканировать сеть", "zh-chs": "掃描網絡", "xloc": [ - "default.handlebars->27->210" + "default.handlebars->27->211" ] }, { @@ -20150,7 +20173,7 @@ "ru": "Сканировать на наличие Intel® AMT устройств", "zh-chs": "掃描英特爾®AMT設備", "xloc": [ - "default.handlebars->27->238" + "default.handlebars->27->239" ] }, { @@ -20167,7 +20190,7 @@ "ru": "Сканирование...", "zh-chs": "掃描...", "xloc": [ - "default.handlebars->27->239" + "default.handlebars->27->240" ] }, { @@ -20184,7 +20207,7 @@ "ru": "Поиск", "zh-chs": "搜索", "xloc": [ - "default.handlebars->27->428", + "default.handlebars->27->429", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -20246,7 +20269,7 @@ "pt": "Protegido usando TLS", "zh-chs": "使用TLS保護", "xloc": [ - "default.handlebars->27->746" + "default.handlebars->27->766" ] }, { @@ -20264,10 +20287,10 @@ "zh-chs": "安全", "xloc": [ "default-mobile.handlebars->9->217", - "default.handlebars->27->1451", - "default.handlebars->27->226", - "default.handlebars->27->571", - "default.handlebars->27->745" + "default.handlebars->27->1465", + "default.handlebars->27->227", + "default.handlebars->27->591", + "default.handlebars->27->765" ] }, { @@ -20284,7 +20307,7 @@ "ru": "Ключ безопасности", "zh-chs": "安全密鑰", "xloc": [ - "default.handlebars->27->1449" + "default.handlebars->27->1463" ] }, { @@ -20314,10 +20337,10 @@ "ru": "Выбрать все", "zh-chs": "全選", "xloc": [ - "default.handlebars->27->1278", - "default.handlebars->27->366", - "default.handlebars->27->675", - "default.handlebars->27->677", + "default.handlebars->27->1295", + "default.handlebars->27->367", + "default.handlebars->27->695", + "default.handlebars->27->697", "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->p5->p5toolbar->1->0->p5filehead->3", @@ -20338,9 +20361,9 @@ "ru": "Очистить все", "zh-chs": "選擇無", "xloc": [ - "default.handlebars->27->1277", - "default.handlebars->27->365", - "default.handlebars->27->676", + "default.handlebars->27->1294", + "default.handlebars->27->366", + "default.handlebars->27->696", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -20358,7 +20381,7 @@ "ru": "Выберите новую группу для выбранных устройств", "zh-chs": "為所選設備選擇一個新組", "xloc": [ - "default.handlebars->27->585" + "default.handlebars->27->605" ] }, { @@ -20375,7 +20398,7 @@ "ru": "Выберите новую группу для этого устройства", "zh-chs": "選擇此設備的新組", "xloc": [ - "default.handlebars->27->584" + "default.handlebars->27->604" ] }, { @@ -20391,7 +20414,7 @@ "ru": "Выберите узел для размещения", "zh-chs": "選擇要放置的節點", "xloc": [ - "default.handlebars->27->431" + "default.handlebars->27->432" ] }, { @@ -20408,7 +20431,7 @@ "ru": "Выберите действие для осуществления на всех выбранных устройствах. Действия будут выполнены только при наличии соответствующих прав.", "zh-chs": "選擇要在所有選定設備上執行的操作。僅在擁有適當權限的情況下才能執行操作。", "xloc": [ - "default.handlebars->27->369" + "default.handlebars->27->370" ] }, { @@ -20426,7 +20449,7 @@ "zh-chs": "選擇要在此設備上執行的操作。", "xloc": [ "default-mobile.handlebars->9->208", - "default.handlebars->27->557" + "default.handlebars->27->577" ] }, { @@ -20461,7 +20484,7 @@ "zh-chs": "僅自我事件", "xloc": [ "default-mobile.handlebars->9->327", - "default.handlebars->27->1218" + "default.handlebars->27->1235" ] }, { @@ -20497,8 +20520,8 @@ "ru": "Отправить MQTT сообщение", "zh-chs": "發送MQTT消息", "xloc": [ - "default.handlebars->27->367", - "default.handlebars->27->562" + "default.handlebars->27->368", + "default.handlebars->27->582" ] }, { @@ -20515,7 +20538,7 @@ "ru": "Отправить MQTT сообщение", "zh-chs": "發送MQTT消息", "xloc": [ - "default.handlebars->27->577" + "default.handlebars->27->597" ] }, { @@ -20532,7 +20555,7 @@ "ru": "Отправить уведомление всем пользователям этой группы.", "zh-chs": "向該組中的所有用戶發送通知。", "xloc": [ - "default.handlebars->27->1392" + "default.handlebars->27->1409" ] }, { @@ -20549,7 +20572,7 @@ "ru": "Отправить текстовое уведомление этому пользователю.", "zh-chs": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->27->1329" + "default.handlebars->27->1346" ] }, { @@ -20566,7 +20589,7 @@ "ru": "Отправить ссылку для установки", "zh-chs": "發送安裝鏈接", "xloc": [ - "default.handlebars->27->269" + "default.handlebars->27->270" ] }, { @@ -20583,7 +20606,7 @@ "ru": "Отправить приглашение по email.", "zh-chs": "發送邀請電子郵件。", "xloc": [ - "default.handlebars->27->1357" + "default.handlebars->27->1374" ] }, { @@ -20631,7 +20654,7 @@ "ru": "Отправить уведомление пользователю", "zh-chs": "發送用戶通知", "xloc": [ - "default.handlebars->27->1456" + "default.handlebars->27->1470" ] }, { @@ -20647,7 +20670,7 @@ "ru": "Сербский", "zh-chs": "塞爾維亞", "xloc": [ - "default.handlebars->27->946" + "default.handlebars->27->966" ] }, { @@ -20663,7 +20686,7 @@ "ru": "Серийный номер", "zh-chs": "序列號", "xloc": [ - "default.handlebars->27->757" + "default.handlebars->27->777" ] }, { @@ -20679,7 +20702,7 @@ "ru": "Резервное копирование сервера", "zh-chs": "服務器備份", "xloc": [ - "default.handlebars->27->1366" + "default.handlebars->27->1383" ] }, { @@ -20695,7 +20718,7 @@ "ru": "Сертификат сервера", "zh-chs": "服務器證書", "xloc": [ - "default.handlebars->27->1566" + "default.handlebars->27->1577" ] }, { @@ -20708,7 +20731,7 @@ "pt": "Banco de Dados do Servidor", "zh-chs": "服務器數據庫", "xloc": [ - "default.handlebars->27->1567" + "default.handlebars->27->1578" ] }, { @@ -20727,10 +20750,11 @@ "xloc": [ "default-mobile.handlebars->9->306", "default-mobile.handlebars->9->319", - "default.handlebars->27->1187", - "default.handlebars->27->1209", - "default.handlebars->27->1364", - "default.handlebars->27->544" + "default.handlebars->27->1204", + "default.handlebars->27->1226", + "default.handlebars->27->1381", + "default.handlebars->27->545", + "default.handlebars->27->564" ] }, { @@ -20747,8 +20771,8 @@ "ru": "Разрешения сервера", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->27->1322", - "default.handlebars->27->1374" + "default.handlebars->27->1339", + "default.handlebars->27->1391" ] }, { @@ -20765,7 +20789,7 @@ "ru": "Квота сервера", "zh-chs": "服務器配額", "xloc": [ - "default.handlebars->27->1435" + "default.handlebars->27->1449" ] }, { @@ -20782,7 +20806,7 @@ "ru": "Восстановление сервера", "zh-chs": "服務器還原", "xloc": [ - "default.handlebars->27->1367" + "default.handlebars->27->1384" ] }, { @@ -20799,7 +20823,7 @@ "ru": "Права", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->27->1434" + "default.handlebars->27->1448" ] }, { @@ -20816,7 +20840,7 @@ "ru": "Состояние сервера", "zh-chs": "服務器狀態", "xloc": [ - "default.handlebars->27->1517" + "default.handlebars->27->1528" ] }, { @@ -20850,7 +20874,7 @@ "ru": "Трассировка сервера", "zh-chs": "服務器跟踪", "xloc": [ - "default.handlebars->27->1577" + "default.handlebars->27->1588" ] }, { @@ -20867,7 +20891,7 @@ "ru": "Обновление сервера", "zh-chs": "服務器更新", "xloc": [ - "default.handlebars->27->1368" + "default.handlebars->27->1385" ] }, { @@ -20986,7 +21010,7 @@ "ru": "ServerStats.csv", "zh-chs": "ServerStats.csv", "xloc": [ - "default.handlebars->27->1558" + "default.handlebars->27->1569" ] }, { @@ -21002,7 +21026,7 @@ "ru": "Детали службы", "zh-chs": "服務詳情", "xloc": [ - "default.handlebars->27->655" + "default.handlebars->27->675" ] }, { @@ -21088,7 +21112,7 @@ "ru": "Файл с настройками", "zh-chs": "設定文件", "xloc": [ - "default.handlebars->27->314" + "default.handlebars->27->315" ] }, { @@ -21122,7 +21146,7 @@ "ru": "Установить CIRA", "zh-chs": "設置CIRA", "xloc": [ - "default.handlebars->27->245" + "default.handlebars->27->246" ] }, { @@ -21139,7 +21163,7 @@ "ru": "Метод установки", "zh-chs": "設定方法", "xloc": [ - "default.handlebars->27->243" + "default.handlebars->27->244" ] }, { @@ -21158,9 +21182,9 @@ "xloc": [ "default-mobile.handlebars->9->3", "default.handlebars->27->10", - "default.handlebars->27->194", - "default.handlebars->27->197", - "default.handlebars->27->203", + "default.handlebars->27->195", + "default.handlebars->27->198", + "default.handlebars->27->204", "xterm.handlebars->9->3" ] }, @@ -21195,7 +21219,7 @@ "ru": "Общий процесс", "zh-chs": "共享過程", "xloc": [ - "default.handlebars->27->649" + "default.handlebars->27->669" ] }, { @@ -21303,7 +21327,7 @@ "zh-chs": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->9->309", - "default.handlebars->27->1190" + "default.handlebars->27->1207" ] }, { @@ -21320,7 +21344,7 @@ "ru": "Показывать панель-уведомление", "zh-chs": "顯示連接工具欄", "xloc": [ - "default.handlebars->27->1153" + "default.handlebars->27->1170" ] }, { @@ -21337,7 +21361,7 @@ "ru": "Показать информацию о расположении устройства", "zh-chs": "顯示設備位置信息", "xloc": [ - "default.handlebars->27->507" + "default.handlebars->27->508" ] }, { @@ -21354,7 +21378,7 @@ "ru": "Показать информацию о сетевом интерфейсе устройства", "zh-chs": "顯示設備網絡接口信息", "xloc": [ - "default.handlebars->27->505" + "default.handlebars->27->506" ] }, { @@ -21405,8 +21429,8 @@ "ru": "Простой режим управления администратора (ACM)", "zh-chs": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->27->1091", - "default.handlebars->27->1117" + "default.handlebars->27->1111", + "default.handlebars->27->1134" ] }, { @@ -21423,9 +21447,9 @@ "ru": "Простой режим управления клиента (CCM)", "zh-chs": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->27->1089", - "default.handlebars->27->1120", - "default.handlebars->27->1124" + "default.handlebars->27->1109", + "default.handlebars->27->1137", + "default.handlebars->27->1141" ] }, { @@ -21441,7 +21465,7 @@ "ru": "Синдхи", "zh-chs": "信地", "xloc": [ - "default.handlebars->27->944" + "default.handlebars->27->964" ] }, { @@ -21457,7 +21481,7 @@ "ru": "Сингальский", "zh-chs": "僧伽羅語", "xloc": [ - "default.handlebars->27->945" + "default.handlebars->27->965" ] }, { @@ -21491,7 +21515,7 @@ "ru": "Размер: 100%", "zh-chs": "尺寸:100%", "xloc": [ - "default.handlebars->27->703" + "default.handlebars->27->723" ] }, { @@ -21508,7 +21532,7 @@ "ru": "Размер: 125%", "zh-chs": "尺寸:125%", "xloc": [ - "default.handlebars->27->704" + "default.handlebars->27->724" ] }, { @@ -21525,7 +21549,7 @@ "ru": "Размер: 150%", "zh-chs": "尺寸:150%", "xloc": [ - "default.handlebars->27->705" + "default.handlebars->27->725" ] }, { @@ -21542,7 +21566,7 @@ "ru": "Размер: 200%", "zh-chs": "尺寸:200%", "xloc": [ - "default.handlebars->27->706" + "default.handlebars->27->726" ] }, { @@ -21566,7 +21590,7 @@ "default.handlebars->27->2", "default.handlebars->27->3", "default.handlebars->27->4", - "default.handlebars->27->559" + "default.handlebars->27->579" ] }, { @@ -21583,7 +21607,7 @@ "ru": "Отправить в сон", "zh-chs": "睡眠裝置", "xloc": [ - "default.handlebars->27->372" + "default.handlebars->27->373" ] }, { @@ -21602,8 +21626,8 @@ "xloc": [ "default-mobile.handlebars->9->111", "default-mobile.handlebars->9->112", - "default.handlebars->27->336", - "default.handlebars->27->338" + "default.handlebars->27->337", + "default.handlebars->27->339" ] }, { @@ -21619,7 +21643,7 @@ "ru": "Словацкий", "zh-chs": "斯洛伐克文", "xloc": [ - "default.handlebars->27->947" + "default.handlebars->27->967" ] }, { @@ -21635,7 +21659,7 @@ "ru": "Словенский", "zh-chs": "斯洛文尼亞文", "xloc": [ - "default.handlebars->27->948" + "default.handlebars->27->968" ] }, { @@ -21688,7 +21712,7 @@ "ru": "Малая фокусировка", "zh-chs": "小焦點", "xloc": [ - "default.handlebars->27->635" + "default.handlebars->27->655" ] }, { @@ -21705,7 +21729,7 @@ "ru": "Програмное отключение агента", "zh-chs": "軟斷開劑", "xloc": [ - "default.handlebars->27->780" + "default.handlebars->27->800" ] }, { @@ -21722,7 +21746,7 @@ "zh-chs": "軟關", "xloc": [ "default-mobile.handlebars->9->115", - "default.handlebars->27->344" + "default.handlebars->27->345" ] }, { @@ -21754,7 +21778,7 @@ "ru": "Сомани", "zh-chs": "索馬尼", "xloc": [ - "default.handlebars->27->949" + "default.handlebars->27->969" ] }, { @@ -21769,7 +21793,7 @@ "ru": "Сорбский", "zh-chs": "索比亞人", "xloc": [ - "default.handlebars->27->950" + "default.handlebars->27->970" ] }, { @@ -21899,7 +21923,7 @@ "ru": "Испанский", "zh-chs": "西班牙文", "xloc": [ - "default.handlebars->27->951" + "default.handlebars->27->971" ] }, { @@ -21915,7 +21939,7 @@ "ru": "Испанский (Аргентина)", "zh-chs": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->27->952" + "default.handlebars->27->972" ] }, { @@ -21931,7 +21955,7 @@ "ru": "Испанский (Боливия)", "zh-chs": "西班牙語(玻利維亞)", "xloc": [ - "default.handlebars->27->953" + "default.handlebars->27->973" ] }, { @@ -21947,7 +21971,7 @@ "ru": "Испанский (Чили)", "zh-chs": "西班牙語(智利)", "xloc": [ - "default.handlebars->27->954" + "default.handlebars->27->974" ] }, { @@ -21963,7 +21987,7 @@ "ru": "Испанский (Колумбия)", "zh-chs": "西班牙語(哥倫比亞)", "xloc": [ - "default.handlebars->27->955" + "default.handlebars->27->975" ] }, { @@ -21979,7 +22003,7 @@ "ru": "Испанский (Коста-Рика)", "zh-chs": "西班牙語(哥斯達黎加)", "xloc": [ - "default.handlebars->27->956" + "default.handlebars->27->976" ] }, { @@ -21995,7 +22019,7 @@ "ru": "Испанский (Доминиканская Республика)", "zh-chs": "西班牙語(多米尼加共和國)", "xloc": [ - "default.handlebars->27->957" + "default.handlebars->27->977" ] }, { @@ -22011,7 +22035,7 @@ "ru": "Испанский (Эквадор)", "zh-chs": "西班牙語(厄瓜多爾)", "xloc": [ - "default.handlebars->27->958" + "default.handlebars->27->978" ] }, { @@ -22027,7 +22051,7 @@ "ru": "Испанский (Сальвадор)", "zh-chs": "西班牙語(薩爾瓦多)", "xloc": [ - "default.handlebars->27->959" + "default.handlebars->27->979" ] }, { @@ -22043,7 +22067,7 @@ "ru": "Испанский (Гватемала)", "zh-chs": "西班牙語(危地馬拉)", "xloc": [ - "default.handlebars->27->960" + "default.handlebars->27->980" ] }, { @@ -22059,7 +22083,7 @@ "ru": "Испанский (Гондурас)", "zh-chs": "西班牙語(洪都拉斯)", "xloc": [ - "default.handlebars->27->961" + "default.handlebars->27->981" ] }, { @@ -22076,7 +22100,7 @@ "ru": "Испанский (Мексика)", "zh-chs": "西班牙語(墨西哥)", "xloc": [ - "default.handlebars->27->962" + "default.handlebars->27->982" ] }, { @@ -22092,7 +22116,7 @@ "ru": "Испанский (Никарагуа)", "zh-chs": "西班牙語(尼加拉瓜)", "xloc": [ - "default.handlebars->27->963" + "default.handlebars->27->983" ] }, { @@ -22108,7 +22132,7 @@ "ru": "Испанский (Панама)", "zh-chs": "西班牙語(巴拿馬)", "xloc": [ - "default.handlebars->27->964" + "default.handlebars->27->984" ] }, { @@ -22124,7 +22148,7 @@ "ru": "Испанский (Парагвай)", "zh-chs": "西班牙語(巴拉圭)", "xloc": [ - "default.handlebars->27->965" + "default.handlebars->27->985" ] }, { @@ -22140,7 +22164,7 @@ "ru": "Испанский (Перу)", "zh-chs": "西班牙語(秘魯)", "xloc": [ - "default.handlebars->27->966" + "default.handlebars->27->986" ] }, { @@ -22156,7 +22180,7 @@ "ru": "Испанский (Пуэрто-Рико)", "zh-chs": "西班牙語(波多黎各)", "xloc": [ - "default.handlebars->27->967" + "default.handlebars->27->987" ] }, { @@ -22172,7 +22196,7 @@ "ru": "Испанский (Испания)", "zh-chs": "西班牙語(西班牙)", "xloc": [ - "default.handlebars->27->968" + "default.handlebars->27->988" ] }, { @@ -22188,7 +22212,7 @@ "ru": "Испанский (Уругвай)", "zh-chs": "西班牙語(烏拉圭)", "xloc": [ - "default.handlebars->27->969" + "default.handlebars->27->989" ] }, { @@ -22204,7 +22228,7 @@ "ru": "Испанский (Венесуэла)", "zh-chs": "西班牙語(委內瑞拉)", "xloc": [ - "default.handlebars->27->970" + "default.handlebars->27->990" ] }, { @@ -22239,7 +22263,7 @@ "ru": "Старт", "zh-chs": "開始", "xloc": [ - "default.handlebars->27->652" + "default.handlebars->27->672" ] }, { @@ -22256,7 +22280,7 @@ "ru": "Состояние", "zh-chs": "州", "xloc": [ - "default.handlebars->27->643", + "default.handlebars->27->663", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -22290,7 +22314,7 @@ "ru": "Статус", "zh-chs": "狀態", "xloc": [ - "default.handlebars->27->1463", + "default.handlebars->27->1477", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -22308,7 +22332,7 @@ "ru": "Стоп", "zh-chs": "停止", "xloc": [ - "default.handlebars->27->653" + "default.handlebars->27->673" ] }, { @@ -22326,7 +22350,7 @@ "zh-chs": "停止進程#{0} \\“ {1} \\”?", "xloc": [ "default-mobile.handlebars->9->238", - "default.handlebars->27->657" + "default.handlebars->27->677" ] }, { @@ -22360,7 +22384,7 @@ "ru": "Превышен лимит места для хранения", "zh-chs": "儲存空間超過", "xloc": [ - "default.handlebars->27->1264" + "default.handlebars->27->1281" ] }, { @@ -22377,7 +22401,7 @@ "ru": "Надежный", "zh-chs": "強大", "xloc": [ - "default.handlebars->27->1042" + "default.handlebars->27->1062" ] }, { @@ -22476,7 +22500,7 @@ "ru": "Суту", "zh-chs": "蘇圖", "xloc": [ - "default.handlebars->27->971" + "default.handlebars->27->991" ] }, { @@ -22491,7 +22515,7 @@ "ru": "Суахили", "zh-chs": "斯瓦希里語", "xloc": [ - "default.handlebars->27->972" + "default.handlebars->27->992" ] }, { @@ -22506,7 +22530,7 @@ "ru": "Шведский", "zh-chs": "瑞典", "xloc": [ - "default.handlebars->27->973" + "default.handlebars->27->993" ] }, { @@ -22521,7 +22545,7 @@ "ru": "Шведский (Финляндия)", "zh-chs": "瑞典語(芬蘭)", "xloc": [ - "default.handlebars->27->974" + "default.handlebars->27->994" ] }, { @@ -22536,7 +22560,7 @@ "ru": "Шведский (Швеция)", "zh-chs": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->27->975" + "default.handlebars->27->995" ] }, { @@ -22553,7 +22577,7 @@ "ru": "Синхронизировать имя устройства на сервере с именем хоста", "zh-chs": "將服務器設備名稱同步到主機名", "xloc": [ - "default.handlebars->27->1162" + "default.handlebars->27->1179" ] }, { @@ -22626,7 +22650,7 @@ "zh-chs": "TLS", "xloc": [ "default-mobile.handlebars->9->186", - "default.handlebars->27->465" + "default.handlebars->27->466" ] }, { @@ -22639,7 +22663,7 @@ "pt": "TLS não está configurado", "zh-chs": "未設置TLS", "xloc": [ - "default.handlebars->27->747" + "default.handlebars->27->767" ] }, { @@ -22657,8 +22681,8 @@ "zh-chs": "需要TLS安全", "xloc": [ "default-mobile.handlebars->9->219", - "default.handlebars->27->228", - "default.handlebars->27->573" + "default.handlebars->27->229", + "default.handlebars->27->593" ] }, { @@ -22691,7 +22715,7 @@ "ru": "Тег1, Тег2, Тег3", "zh-chs": "標籤1,標籤2,標籤3", "xloc": [ - "default.handlebars->27->626" + "default.handlebars->27->646" ] }, { @@ -22710,7 +22734,7 @@ "default-mobile.handlebars->9->200", "default-mobile.handlebars->9->201", "default-mobile.handlebars->9->228", - "default.handlebars->27->625", + "default.handlebars->27->645", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -22726,7 +22750,7 @@ "ru": "Тамильский", "zh-chs": "泰米爾語", "xloc": [ - "default.handlebars->27->976" + "default.handlebars->27->996" ] }, { @@ -22741,7 +22765,7 @@ "ru": "Татарский", "zh-chs": "塔塔爾族", "xloc": [ - "default.handlebars->27->977" + "default.handlebars->27->997" ] }, { @@ -22756,7 +22780,7 @@ "ru": "Телугу", "zh-chs": "泰盧加", "xloc": [ - "default.handlebars->27->978" + "default.handlebars->27->998" ] }, { @@ -22773,8 +22797,8 @@ "ru": "Терминал", "zh-chs": "終奌站", "xloc": [ - "default.handlebars->27->1154", - "default.handlebars->27->418", + "default.handlebars->27->1171", + "default.handlebars->27->419", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal" ] @@ -22810,7 +22834,7 @@ "ru": "Терминал уведомление", "zh-chs": "終端通知", "xloc": [ - "default.handlebars->27->1074" + "default.handlebars->27->1094" ] }, { @@ -22827,7 +22851,7 @@ "ru": "Запрос терминала", "zh-chs": "終端提示", "xloc": [ - "default.handlebars->27->1073" + "default.handlebars->27->1093" ] }, { @@ -22881,7 +22905,7 @@ "ru": "Тайский", "zh-chs": "泰國", "xloc": [ - "default.handlebars->27->979" + "default.handlebars->27->999" ] }, { @@ -22915,7 +22939,7 @@ "ru": "Имя группы устройств, к которой принадлежит этот компьютер", "zh-chs": "該計算機所屬的設備組的名稱", "xloc": [ - "default.handlebars->27->442" + "default.handlebars->27->443" ] }, { @@ -22931,7 +22955,7 @@ "ru": "Имя группы устройств, к которой принадлежит этот компьютер.", "zh-chs": "該計算機所屬的設備組的名稱。", "xloc": [ - "default.handlebars->27->440" + "default.handlebars->27->441" ] }, { @@ -22944,8 +22968,8 @@ "pt": "O nome deste computador, conforme definido no sistema operacional", "zh-chs": "在操作系統中設置的此計算機的名稱", "xloc": [ - "default.handlebars->27->443", - "default.handlebars->27->445" + "default.handlebars->27->444", + "default.handlebars->27->446" ] }, { @@ -22962,7 +22986,7 @@ "ru": "На данный момент уведомлений нет", "zh-chs": "目前沒有任何通知", "xloc": [ - "default.handlebars->27->1510" + "default.handlebars->27->1521" ] }, { @@ -23013,7 +23037,7 @@ "zh-chs": "該帳戶無權創建新的設備組。", "xloc": [ "default-mobile.handlebars->9->54", - "default.handlebars->27->1028" + "default.handlebars->27->1048" ] }, { @@ -23042,7 +23066,7 @@ "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.", "zh-chs": "這不是安全的策略,因為代理將執行激活。", "xloc": [ - "default.handlebars->27->1142" + "default.handlebars->27->1159" ] }, { @@ -23076,7 +23100,7 @@ "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.", "zh-chs": "該策略不會影響採用ACM模式的英特爾®AMT的設備。", "xloc": [ - "default.handlebars->27->1141" + "default.handlebars->27->1158" ] }, { @@ -23127,7 +23151,7 @@ "ru": "Это добавит запись в журнал событий данного устройства.", "zh-chs": "這會將條目添加到該設備的事件日誌中。", "xloc": [ - "default.handlebars->27->552" + "default.handlebars->27->572" ] }, { @@ -23143,7 +23167,7 @@ "ru": "Это не приведет к удалению устройств с сервера, но они больше не смогут подключаться к серверу. Весь удаленный доступ к устройствам будет потерян. Устройства должны быть подключены, чтобы эта команда работала.", "zh-chs": "這不會從服務器上刪除設備,但是設備將不再能夠連接到服務器。對設備的所有遠程訪問都將丟失。必須連接設備,此命令才能起作用。", "xloc": [ - "default.handlebars->27->580" + "default.handlebars->27->600" ] }, { @@ -23159,7 +23183,7 @@ "ru": "Это не приведет к удалению этого устройства с сервера, но оно больше не сможет подключаться к серверу. Весь удаленный доступ к устройству будет потерян. Для работы этой команды устройство должно быть подключено.", "zh-chs": "這不會將該設備從服務器上刪除,但是該設備將不再能夠連接到服務器。對設備的所有遠程訪問都將丟失。必須連接設備,此命令才能起作用。", "xloc": [ - "default.handlebars->27->581" + "default.handlebars->27->601" ] }, { @@ -23175,7 +23199,7 @@ "ru": "Тигровый", "zh-chs": "蒂格雷", "xloc": [ - "default.handlebars->27->980" + "default.handlebars->27->1000" ] }, { @@ -23209,7 +23233,7 @@ "ru": "Чтобы добавить компьютер в группу \\\"{0}\\\", выполните следующую команду. Потребуются права root.", "zh-chs": "要將計算機添加到{0},請運行以下命令。需要根憑證。", "xloc": [ - "default.handlebars->27->316" + "default.handlebars->27->317" ] }, { @@ -23226,7 +23250,7 @@ "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующие файлы со скриптами и используйте MeshCommander, чтобы запустить скрипт для настройки компьютеров.", "zh-chs": "要將新的英特爾®AMT設備添加到具有CIRA的設備組“ {0} \\”中,請下載以下腳本文件,並使用 MeshCommander 來運行腳本來配置計算機。", "xloc": [ - "default.handlebars->27->244" + "default.handlebars->27->245" ] }, { @@ -23242,7 +23266,7 @@ "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующий сертификат в качестве доверенного в Intel AMT", "zh-chs": "要將新的英特爾®AMT設備添加到具有CIRA的設備組“ {0} \\”,請在英特爾AMT中將以下證書作為受信任的根加載", "xloc": [ - "default.handlebars->27->247" + "default.handlebars->27->248" ] }, { @@ -23258,7 +23282,7 @@ "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующий сертификат в качестве доверенного в Intel AMT, выполните аутентификацию с использованием сертификата клиента со следующим общим именем и подключитесь к серверу.", "zh-chs": "要將新的英特爾®AMT設備添加到具有CIRA的設備組“ {0} \\”中,請將以下證書作為受信任的根加載到英特爾AMT中,使用具有以下通用名稱的客戶端證書進行身份驗證並連接到以下服務器。", "xloc": [ - "default.handlebars->27->256" + "default.handlebars->27->257" ] }, { @@ -23275,7 +23299,7 @@ "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Agent и установите его для управления этим компьютером. В этот агент встроена информация о текущем сервере и группе устройств.", "zh-chs": "要將新計算機添加到設備組\\“ {0} \\”,請下載網狀代理並安裝該計算機以進行管理。該代理中嵌入了服務器和設備組信息。", "xloc": [ - "default.handlebars->27->307" + "default.handlebars->27->308" ] }, { @@ -23292,7 +23316,7 @@ "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Agent и установите его для управления этим компьютером. В этот установщик агента встроена информация о текущем сервере и группе устройств.", "zh-chs": "要將新計算機添加到設備組\\“ {0} \\”,請下載網狀代理並安裝該計算機以進行管理。該代理安裝程序中嵌入了服務器和設備組信息。", "xloc": [ - "default.handlebars->27->318" + "default.handlebars->27->319" ] }, { @@ -23309,7 +23333,7 @@ "ru": "Чтобы удалить эту учетную запись, введите пароль учетной записи в оба поля и нажмите ОК.", "zh-chs": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->27->1015" + "default.handlebars->27->1035" ] }, { @@ -23360,7 +23384,7 @@ "ru": "Для удаления Mesh Agent скачайте файл ниже, запустите его и нажмите \\\"удалить\\\".", "zh-chs": "要刪除網格代理,請下載以下文件,運行並單擊\\“卸載\\”。", "xloc": [ - "default.handlebars->27->322" + "default.handlebars->27->323" ] }, { @@ -23377,7 +23401,7 @@ "ru": "Для удаления Mesh Agent выполните следующую команду. Потребуются учетные данные root.", "zh-chs": "要刪除網格代理,請運行以下命令。需要根憑證。", "xloc": [ - "default.handlebars->27->329" + "default.handlebars->27->330" ] }, { @@ -23620,7 +23644,7 @@ "ru": "Тема", "zh-chs": "話題", "xloc": [ - "default.handlebars->27->575" + "default.handlebars->27->595" ] }, { @@ -23670,7 +23694,7 @@ "ru": "Router используется для подключения к различным портам устройства через этот сервер", "zh-chs": "用於通過此服務器連接到設備的流量路由器", "xloc": [ - "default.handlebars->27->509" + "default.handlebars->27->510" ] }, { @@ -23702,7 +23726,7 @@ "ru": "Тсонга", "zh-chs": "特松加", "xloc": [ - "default.handlebars->27->981" + "default.handlebars->27->1001" ] }, { @@ -23717,7 +23741,7 @@ "ru": "Тсвана", "zh-chs": "茨瓦納", "xloc": [ - "default.handlebars->27->982" + "default.handlebars->27->1002" ] }, { @@ -23732,7 +23756,7 @@ "ru": "Турецкий", "zh-chs": "土耳其", "xloc": [ - "default.handlebars->27->983" + "default.handlebars->27->1003" ] }, { @@ -23747,7 +23771,7 @@ "ru": "Туркменский", "zh-chs": "土庫曼人", "xloc": [ - "default.handlebars->27->984" + "default.handlebars->27->1004" ] }, { @@ -23782,11 +23806,11 @@ "xloc": [ "default-mobile.handlebars->9->282", "default-mobile.handlebars->9->60", - "default.handlebars->27->1035", - "default.handlebars->27->1064", - "default.handlebars->27->1118", - "default.handlebars->27->1121", - "default.handlebars->27->650", + "default.handlebars->27->1055", + "default.handlebars->27->1084", + "default.handlebars->27->1135", + "default.handlebars->27->1138", + "default.handlebars->27->670", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, @@ -23803,7 +23827,7 @@ "ru": "Введите имя ключа, выберите поле OTP и нажмите кнопку на YubiKey™.", "zh-chs": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->27->793" + "default.handlebars->27->813" ] }, { @@ -23820,7 +23844,7 @@ "ru": "Введите имя ключа для добавления.", "zh-chs": "輸入要添加的密鑰的名稱。", "xloc": [ - "default.handlebars->27->790" + "default.handlebars->27->810" ] }, { @@ -23837,7 +23861,7 @@ "ru": "Терминал UTF8", "zh-chs": "UTF8終端", "xloc": [ - "default.handlebars->27->661" + "default.handlebars->27->681" ] }, { @@ -23853,7 +23877,7 @@ "ru": "Украинский", "zh-chs": "烏克蘭", "xloc": [ - "default.handlebars->27->985" + "default.handlebars->27->1005" ] }, { @@ -23870,8 +23894,8 @@ "ru": "Невозможно получить доступ к устройству, пока адрес email не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес email.", "zh-chs": "在驗證電子郵件地址之前,無法訪問設備。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "xloc": [ - "default.handlebars->27->1030", - "default.handlebars->27->434" + "default.handlebars->27->1050", + "default.handlebars->27->435" ] }, { @@ -23922,8 +23946,8 @@ "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите на вкладку \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "zh-chs": "在啟用兩因素身份驗證之前,無法訪問設備。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->27->1032", - "default.handlebars->27->436" + "default.handlebars->27->1052", + "default.handlebars->27->437" ] }, { @@ -24029,8 +24053,9 @@ "zh-chs": "卸載", "xloc": [ "default-mobile.handlebars->9->329", - "default.handlebars->27->1220", - "default.handlebars->27->549" + "default.handlebars->27->1237", + "default.handlebars->27->550", + "default.handlebars->27->569" ] }, { @@ -24048,9 +24073,9 @@ "zh-chs": "卸載代理", "xloc": [ "default-mobile.handlebars->9->311", - "default.handlebars->27->1192", - "default.handlebars->27->368", - "default.handlebars->27->563" + "default.handlebars->27->1209", + "default.handlebars->27->369", + "default.handlebars->27->583" ] }, { @@ -24067,7 +24092,7 @@ "ru": "Удалить агент", "zh-chs": "卸載代理", "xloc": [ - "default.handlebars->27->583" + "default.handlebars->27->603" ] }, { @@ -24089,12 +24114,12 @@ "default-mobile.handlebars->9->174", "default-mobile.handlebars->9->175", "default.handlebars->27->13", - "default.handlebars->27->1501", - "default.handlebars->27->364", + "default.handlebars->27->1512", + "default.handlebars->27->365", "default.handlebars->27->41", "default.handlebars->27->42", - "default.handlebars->27->737", - "default.handlebars->27->744", + "default.handlebars->27->757", + "default.handlebars->27->764", "default.handlebars->27->90", "default.handlebars->27->91" ] @@ -24114,7 +24139,7 @@ "zh-chs": "未知#{0}", "xloc": [ "default-mobile.handlebars->9->276", - "default.handlebars->27->1058" + "default.handlebars->27->1078" ] }, { @@ -24131,7 +24156,7 @@ "ru": "Неизвестное действие", "zh-chs": "未知動作", "xloc": [ - "default.handlebars->27->1523" + "default.handlebars->27->1534" ] }, { @@ -24144,7 +24169,7 @@ "pt": "Dispositivo desconhecido", "zh-chs": "未知設備", "xloc": [ - "default.handlebars->27->1478" + "default.handlebars->27->1492" ] }, { @@ -24161,9 +24186,9 @@ "ru": "Неизвестная группа устройств", "zh-chs": "未知設備組", "xloc": [ - "default.handlebars->27->1401", - "default.handlebars->27->1485", - "default.handlebars->27->1527" + "default.handlebars->27->1417", + "default.handlebars->27->1498", + "default.handlebars->27->1538" ] }, { @@ -24180,7 +24205,7 @@ "ru": "Неизвестная группа", "zh-chs": "未知群組", "xloc": [ - "default.handlebars->27->1519" + "default.handlebars->27->1530" ] }, { @@ -24198,7 +24223,7 @@ "zh-chs": "未知狀態", "xloc": [ "default-mobile.handlebars->9->181", - "default.handlebars->27->457" + "default.handlebars->27->458" ] }, { @@ -24215,7 +24240,7 @@ "ru": "Неизвестная группа пользователей", "zh-chs": "未知用戶組", "xloc": [ - "default.handlebars->27->1493" + "default.handlebars->27->1504" ] }, { @@ -24233,7 +24258,7 @@ "zh-chs": "未知版本和狀態", "xloc": [ "default-mobile.handlebars->9->183", - "default.handlebars->27->459" + "default.handlebars->27->460" ] }, { @@ -24251,8 +24276,8 @@ "zh-chs": "無限", "xloc": [ "default.handlebars->27->155", - "default.handlebars->27->280", - "default.handlebars->27->294" + "default.handlebars->27->281", + "default.handlebars->27->295" ] }, { @@ -24290,7 +24315,7 @@ "ru": "Актуально", "zh-chs": "最新", "xloc": [ - "default.handlebars->27->1582" + "default.handlebars->27->1593" ] }, { @@ -24330,11 +24355,11 @@ "default-mobile.handlebars->9->256", "default-mobile.handlebars->9->274", "default-mobile.handlebars->9->88", - "default.handlebars->27->1287", - "default.handlebars->27->1295", - "default.handlebars->27->684", - "default.handlebars->27->707", - "default.handlebars->27->710", + "default.handlebars->27->1304", + "default.handlebars->27->1312", + "default.handlebars->27->704", + "default.handlebars->27->727", + "default.handlebars->27->730", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -24351,7 +24376,7 @@ "ru": "Загрузить ядро Mesh Agent", "zh-chs": "上傳網格代理核心", "xloc": [ - "default.handlebars->27->782" + "default.handlebars->27->802" ] }, { @@ -24367,7 +24392,7 @@ "ru": "Загрузить файл ядра", "zh-chs": "上載核心文件", "xloc": [ - "default.handlebars->27->779" + "default.handlebars->27->799" ] }, { @@ -24383,7 +24408,7 @@ "ru": "Загрузить ядро по умолчанию с сервера ", "zh-chs": "上載默認服務器核心", "xloc": [ - "default.handlebars->27->776" + "default.handlebars->27->796" ] }, { @@ -24399,7 +24424,7 @@ "ru": "Загрузить ядро восстановления", "zh-chs": "上傳恢復核心", "xloc": [ - "default.handlebars->27->778" + "default.handlebars->27->798" ] }, { @@ -24416,8 +24441,8 @@ "ru": "Загрузка перезапишет 1 файл. Продолжить?", "zh-chs": "上傳將覆蓋1個文件。繼續?", "xloc": [ - "default.handlebars->27->1296", - "default.handlebars->27->708" + "default.handlebars->27->1313", + "default.handlebars->27->728" ] }, { @@ -24434,8 +24459,8 @@ "ru": "Загрузка перезапишет {0} файлов. Продолжить?", "zh-chs": "上傳將覆蓋{0}個文件。繼續?", "xloc": [ - "default.handlebars->27->1297", - "default.handlebars->27->709" + "default.handlebars->27->1314", + "default.handlebars->27->729" ] }, { @@ -24464,7 +24489,7 @@ "ru": "Верхний Сорбский", "zh-chs": "上索布族", "xloc": [ - "default.handlebars->27->986" + "default.handlebars->27->1006" ] }, { @@ -24479,7 +24504,7 @@ "ru": "Урду", "zh-chs": "烏爾都語", "xloc": [ - "default.handlebars->27->987" + "default.handlebars->27->1007" ] }, { @@ -24530,8 +24555,8 @@ "ru": "Использовано", "zh-chs": "用過的", "xloc": [ - "default.handlebars->27->1513", - "default.handlebars->27->1515" + "default.handlebars->27->1524", + "default.handlebars->27->1526" ] }, { @@ -24549,11 +24574,11 @@ "zh-chs": "用戶", "xloc": [ "default-mobile.handlebars->9->331", - "default.handlebars->27->1115", - "default.handlebars->27->1323", - "default.handlebars->27->1396", - "default.handlebars->27->182", - "default.handlebars->27->533" + "default.handlebars->27->1132", + "default.handlebars->27->1340", + "default.handlebars->27->1413", + "default.handlebars->27->183", + "default.handlebars->27->534" ] }, { @@ -24570,7 +24595,7 @@ "ru": "Пользователь + Файлы", "zh-chs": "用戶+文件", "xloc": [ - "default.handlebars->27->1324" + "default.handlebars->27->1341" ] }, { @@ -24586,10 +24611,10 @@ "ru": "Импорт учетной записи пользователя", "zh-chs": "用戶帳戶導入", "xloc": [ - "default.handlebars->27->1331", - "default.handlebars->27->1332", - "default.handlebars->27->1334", - "default.handlebars->27->1336" + "default.handlebars->27->1348", + "default.handlebars->27->1349", + "default.handlebars->27->1351", + "default.handlebars->27->1353" ] }, { @@ -24606,7 +24631,7 @@ "ru": "Учетные записи пользователей", "zh-chs": "用戶帳號", "xloc": [ - "default.handlebars->27->1532" + "default.handlebars->27->1543" ] }, { @@ -24624,7 +24649,8 @@ "zh-chs": "用戶授權", "xloc": [ "default-mobile.handlebars->9->284", - "default.handlebars->27->1110" + "default.handlebars->27->1130", + "default.handlebars->27->532" ] }, { @@ -24641,7 +24667,7 @@ "ru": "Согласие пользователя", "zh-chs": "用戶同意", "xloc": [ - "default.handlebars->27->1080" + "default.handlebars->27->1100" ] }, { @@ -24658,9 +24684,10 @@ "ru": "Группа пользователей", "zh-chs": "用戶組", "xloc": [ - "default.handlebars->27->1169", - "default.handlebars->27->1379", - "default.handlebars->27->1504" + "default.handlebars->27->1186", + "default.handlebars->27->1396", + "default.handlebars->27->1506", + "default.handlebars->27->1515" ] }, { @@ -24693,7 +24720,7 @@ "ru": "Членство в группах пользователей", "zh-chs": "用戶組成員資格", "xloc": [ - "default.handlebars->27->1492" + "default.handlebars->27->1503" ] }, { @@ -24710,8 +24737,8 @@ "ru": "Идентификатор пользователя", "zh-chs": "用戶標識", "xloc": [ - "default.handlebars->27->1223", - "default.handlebars->27->1431" + "default.handlebars->27->1240", + "default.handlebars->27->1445" ] }, { @@ -24728,7 +24755,7 @@ "ru": "Экспортировать список пользователей", "zh-chs": "用戶列表導出", "xloc": [ - "default.handlebars->27->1343" + "default.handlebars->27->1360" ] }, { @@ -24745,7 +24772,7 @@ "ru": "Имя пользователя", "zh-chs": "用戶名", "xloc": [ - "default.handlebars->27->1222" + "default.handlebars->27->1239" ] }, { @@ -24762,15 +24789,12 @@ "ru": "Имена пользователей", "zh-chs": "用戶名", "xloc": [ - "default.handlebars->27->1167", - "default.handlebars->27->1420" + "default.handlebars->27->1184", + "default.handlebars->27->1434" ] }, { - "en": "User Permissions", - "xloc": [ - "default.handlebars->27->531" - ] + "en": "User Permissions" }, { "cs": "PowerShell uživatele", @@ -24804,7 +24828,7 @@ "ru": "Сессии пользователя", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->27->1549" + "default.handlebars->27->1560" ] }, { @@ -24841,8 +24865,8 @@ "ru": "Использовать настройки браузера", "zh-chs": "用戶瀏覽器價值", "xloc": [ - "default.handlebars->27->997", - "default.handlebars->27->999" + "default.handlebars->27->1017", + "default.handlebars->27->1019" ] }, { @@ -24898,10 +24922,10 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->215", - "default.handlebars->27->1349", - "default.handlebars->27->223", - "default.handlebars->27->253", - "default.handlebars->27->569", + "default.handlebars->27->1366", + "default.handlebars->27->224", + "default.handlebars->27->254", + "default.handlebars->27->589", "player.handlebars->3->4" ] }, @@ -24957,9 +24981,9 @@ "ru": "Пользователи", "zh-chs": "用戶數", "xloc": [ - "default.handlebars->27->1378", - "default.handlebars->27->1389", - "default.handlebars->27->1548", + "default.handlebars->27->1395", + "default.handlebars->27->1406", + "default.handlebars->27->1559", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -24977,7 +25001,7 @@ "ru": "Сессии пользователей", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->27->1536" + "default.handlebars->27->1547" ] }, { @@ -24993,7 +25017,7 @@ "ru": "VT100+ (F10 = ESC+[OY)", "zh-chs": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->27->666" + "default.handlebars->27->686" ] }, { @@ -25008,7 +25032,7 @@ "ru": "Венда", "zh-chs": "文達", "xloc": [ - "default.handlebars->27->988" + "default.handlebars->27->1008" ] }, { @@ -25025,8 +25049,8 @@ "ru": "Вендор", "zh-chs": "供應商", "xloc": [ - "default.handlebars->27->752", - "default.handlebars->27->755" + "default.handlebars->27->772", + "default.handlebars->27->775" ] }, { @@ -25039,7 +25063,7 @@ "pt": "Verificado", "zh-chs": "已驗證", "xloc": [ - "default.handlebars->27->1465" + "default.handlebars->27->1479" ] }, { @@ -25091,10 +25115,10 @@ "ru": "Версия", "zh-chs": "版", "xloc": [ - "default.handlebars->27->715", - "default.handlebars->27->736", - "default.handlebars->27->753", - "default.handlebars->27->758", + "default.handlebars->27->735", + "default.handlebars->27->756", + "default.handlebars->27->773", + "default.handlebars->27->778", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -25130,7 +25154,7 @@ "ru": "Вьетнамский", "zh-chs": "越南文", "xloc": [ - "default.handlebars->27->989" + "default.handlebars->27->1009" ] }, { @@ -25164,7 +25188,7 @@ "ru": "Посмотреть примечания этого устройства", "zh-chs": "查看有關此設備的註釋", "xloc": [ - "default.handlebars->27->498" + "default.handlebars->27->499" ] }, { @@ -25181,7 +25205,7 @@ "ru": "Посмотреть примечания этой группы устройств", "zh-chs": "查看有關此設備組的註釋", "xloc": [ - "default.handlebars->27->1095" + "default.handlebars->27->1115" ] }, { @@ -25198,7 +25222,7 @@ "ru": "Посмотреть примечания об этом пользователе", "zh-chs": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->27->1454" + "default.handlebars->27->1468" ] }, { @@ -25213,7 +25237,7 @@ "ru": "Волапукский", "zh-chs": "沃拉普克", "xloc": [ - "default.handlebars->27->990" + "default.handlebars->27->1010" ] }, { @@ -25253,7 +25277,8 @@ { "en": "Wake", "xloc": [ - "default.handlebars->27->545" + "default.handlebars->27->546", + "default.handlebars->27->565" ] }, { @@ -25272,8 +25297,8 @@ "xloc": [ "default-mobile.handlebars->9->307", "default-mobile.handlebars->9->320", - "default.handlebars->27->1188", - "default.handlebars->27->1210" + "default.handlebars->27->1205", + "default.handlebars->27->1227" ] }, { @@ -25291,7 +25316,7 @@ "zh-chs": "醒來", "xloc": [ "default-mobile.handlebars->9->209", - "default.handlebars->27->558" + "default.handlebars->27->578" ] }, { @@ -25308,7 +25333,7 @@ "ru": "Разбудить устройства", "zh-chs": "喚醒設備", "xloc": [ - "default.handlebars->27->371" + "default.handlebars->27->372" ] }, { @@ -25323,7 +25348,7 @@ "ru": "Валлонский", "zh-chs": "瓦隆", "xloc": [ - "default.handlebars->27->991" + "default.handlebars->27->1011" ] }, { @@ -25340,7 +25365,7 @@ "ru": "Слабый", "zh-chs": "弱", "xloc": [ - "default.handlebars->27->1044" + "default.handlebars->27->1064" ] }, { @@ -25377,8 +25402,8 @@ "ru": "Веб-сервер", "zh-chs": "網絡服務器", "xloc": [ - "default.handlebars->27->1569", - "default.handlebars->27->1570" + "default.handlebars->27->1580", + "default.handlebars->27->1581" ] }, { @@ -25395,7 +25420,7 @@ "ru": "Запросы веб-сервера", "zh-chs": "Web服務器請求", "xloc": [ - "default.handlebars->27->1571" + "default.handlebars->27->1582" ] }, { @@ -25412,7 +25437,7 @@ "ru": "Ретранслятор Web Socket", "zh-chs": "Web套接字中繼", "xloc": [ - "default.handlebars->27->1572" + "default.handlebars->27->1583" ] }, { @@ -25464,7 +25489,7 @@ "ru": "Уэльский", "zh-chs": "威爾士語", "xloc": [ - "default.handlebars->27->992" + "default.handlebars->27->1012" ] }, { @@ -25477,7 +25502,7 @@ "pt": "Quando ativado, os códigos de convite podem ser usados ​​por qualquer pessoa para associar dispositivos a este grupo de dispositivos usando o seguinte link público:", "zh-chs": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->27->1229" + "default.handlebars->27->1246" ] }, { @@ -25491,7 +25516,7 @@ "zh-chs": "啟用後,每次登錄時,您都可以選擇向電子郵件帳戶接收登錄令牌,以提高安全性。", "xloc": [ "default-mobile.handlebars->9->31", - "default.handlebars->27->784" + "default.handlebars->27->804" ] }, { @@ -25508,7 +25533,7 @@ "ru": "Будет изменено при следующем входе в систему.", "zh-chs": "下次登錄時將更改。", "xloc": [ - "default.handlebars->27->1439" + "default.handlebars->27->1453" ] }, { @@ -25655,7 +25680,7 @@ "pt": "Executável Win32", "zh-chs": "Win32可執行文件", "xloc": [ - "default.handlebars->27->597" + "default.handlebars->27->617" ] }, { @@ -25671,7 +25696,7 @@ "ru": "WinSCP", "zh-chs": "WinSCP", "xloc": [ - "default.handlebars->27->518" + "default.handlebars->27->519" ] }, { @@ -25688,7 +25713,7 @@ "ru": "Windows", "zh-chs": "視窗", "xloc": [ - "default.handlebars->27->298" + "default.handlebars->27->299" ] }, { @@ -25705,8 +25730,8 @@ "ru": "Windows (.exe)", "zh-chs": "Windows(.exe)", "xloc": [ - "default.handlebars->27->310", - "default.handlebars->27->325" + "default.handlebars->27->311", + "default.handlebars->27->326" ] }, { @@ -25723,7 +25748,7 @@ "ru": "Windows (32bit)", "zh-chs": "Windows(32位)", "xloc": [ - "default.handlebars->27->599" + "default.handlebars->27->619" ] }, { @@ -25740,7 +25765,7 @@ "ru": "Windows (64bit)", "zh-chs": "Windows(64位)", "xloc": [ - "default.handlebars->27->600" + "default.handlebars->27->620" ] }, { @@ -25757,7 +25782,7 @@ "ru": "Windows (Удаление)", "zh-chs": "Windows(卸載)", "xloc": [ - "default.handlebars->27->301" + "default.handlebars->27->302" ] }, { @@ -25910,7 +25935,7 @@ "ru": "Только Windows", "zh-chs": "僅Windows", "xloc": [ - "default.handlebars->27->271" + "default.handlebars->27->272" ] }, { @@ -25927,8 +25952,8 @@ "ru": "Windows x64 (.exe)", "zh-chs": "Windows x64(.exe)", "xloc": [ - "default.handlebars->27->313", - "default.handlebars->27->328" + "default.handlebars->27->314", + "default.handlebars->27->329" ] }, { @@ -25959,7 +25984,7 @@ "ru": "Перенос строк: ВЫКЛ", "zh-chs": "包裝:關閉", "xloc": [ - "default.handlebars->27->702" + "default.handlebars->27->722" ] }, { @@ -25975,7 +26000,7 @@ "ru": "Перенос строк: ВКЛ", "zh-chs": "包裝:開", "xloc": [ - "default.handlebars->27->701" + "default.handlebars->27->721" ] }, { @@ -25992,7 +26017,7 @@ "ru": "Записать событие к этому устройству", "zh-chs": "為此設備寫一個事件", "xloc": [ - "default.handlebars->27->500" + "default.handlebars->27->501" ] }, { @@ -26044,7 +26069,7 @@ "ru": "XTerm", "zh-chs": "XTerm", "xloc": [ - "default.handlebars->27->512" + "default.handlebars->27->513" ] }, { @@ -26060,7 +26085,7 @@ "ru": "Кос", "zh-chs": "科薩", "xloc": [ - "default.handlebars->27->993" + "default.handlebars->27->1013" ] }, { @@ -26076,7 +26101,7 @@ "ru": "Идиш", "zh-chs": "意第緒語", "xloc": [ - "default.handlebars->27->994" + "default.handlebars->27->1014" ] }, { @@ -26144,7 +26169,7 @@ "ru": "YubiKey™ OTP", "zh-chs": "YubiKey™OTP", "xloc": [ - "default.handlebars->27->796" + "default.handlebars->27->816" ] }, { @@ -26161,7 +26186,7 @@ "ru": "Масштабирование по размеру", "zh-chs": "縮放至適合範圍", "xloc": [ - "default.handlebars->27->423" + "default.handlebars->27->424" ] }, { @@ -26178,8 +26203,8 @@ "ru": "Масштабирование +", "zh-chs": "放大到一定程度", "xloc": [ - "default.handlebars->27->420", - "default.handlebars->27->426" + "default.handlebars->27->421", + "default.handlebars->27->427" ] }, { @@ -26196,8 +26221,8 @@ "ru": "Масштабирование -", "zh-chs": "縮小到一定程度", "xloc": [ - "default.handlebars->27->421", - "default.handlebars->27->427" + "default.handlebars->27->422", + "default.handlebars->27->428" ] }, { @@ -26213,7 +26238,7 @@ "ru": "Зулусский", "zh-chs": "祖魯族", "xloc": [ - "default.handlebars->27->995" + "default.handlebars->27->1015" ] }, { @@ -26249,7 +26274,7 @@ "ru": "\\\\'", "zh-chs": "\\\\'", "xloc": [ - "default.handlebars->27->1580" + "default.handlebars->27->1591" ] }, { @@ -26266,8 +26291,8 @@ "ru": "добавить", "zh-chs": "加一", "xloc": [ - "default.handlebars->27->179", - "default.handlebars->27->181" + "default.handlebars->27->180", + "default.handlebars->27->182" ] }, { @@ -26283,7 +26308,7 @@ "ru": "админ", "zh-chs": "管理員", "xloc": [ - "default.handlebars->27->224" + "default.handlebars->27->225" ] }, { @@ -26353,7 +26378,7 @@ "ru": "console.txt", "zh-chs": "console.txt", "xloc": [ - "default.handlebars->27->773" + "default.handlebars->27->793" ] }, { @@ -26371,7 +26396,7 @@ "zh-chs": "複製", "xloc": [ "default-mobile.handlebars->9->92", - "default.handlebars->27->1292" + "default.handlebars->27->1309" ] }, { @@ -26388,8 +26413,8 @@ "ru": "devicelist.csv", "zh-chs": "devicelist.csv", "xloc": [ - "default.handlebars->27->385", - "default.handlebars->27->390" + "default.handlebars->27->386", + "default.handlebars->27->391" ] }, { @@ -26406,8 +26431,8 @@ "ru": "devicelist.json", "zh-chs": "devicelist.json", "xloc": [ - "default.handlebars->27->387", - "default.handlebars->27->391" + "default.handlebars->27->388", + "default.handlebars->27->392" ] }, { @@ -26435,8 +26460,8 @@ "ru": "eventslist.csv", "zh-chs": "eventslist.csv", "xloc": [ - "default.handlebars->27->1301", - "default.handlebars->27->1306" + "default.handlebars->27->1318", + "default.handlebars->27->1323" ] }, { @@ -26453,8 +26478,8 @@ "ru": "eventslist.json", "zh-chs": "eventslist.json", "xloc": [ - "default.handlebars->27->1303", - "default.handlebars->27->1307" + "default.handlebars->27->1320", + "default.handlebars->27->1324" ] }, { @@ -26471,7 +26496,7 @@ "ru": "example@email.com", "zh-chs": "example@email.com", "xloc": [ - "default.handlebars->27->267" + "default.handlebars->27->268" ] }, { @@ -26488,7 +26513,7 @@ "ru": "свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->27->1544" + "default.handlebars->27->1555" ] }, { @@ -26505,8 +26530,8 @@ "ru": "г:", "zh-chs": "G:", "xloc": [ - "default.handlebars->27->400", - "default.handlebars->27->401" + "default.handlebars->27->401", + "default.handlebars->27->402" ] }, { @@ -26523,8 +26548,8 @@ "ru": "группа:", "zh-chs": "組:", "xloc": [ - "default.handlebars->27->398", - "default.handlebars->27->399" + "default.handlebars->27->399", + "default.handlebars->27->400" ] }, { @@ -26668,7 +26693,7 @@ "ru": "id, name, email, creation, lastlogin, groups, authfactors", "zh-chs": "id,名稱,電子郵件,創建,lastlogin,組,authfactors", "xloc": [ - "default.handlebars->27->1344" + "default.handlebars->27->1361" ] }, { @@ -26681,7 +26706,7 @@ "pt": "id, nome, rname, host, ícone, ip, osdesc, estado, nome do grupo, conn, pwr", "zh-chs": "id,名稱,rname,主機,圖標,ip,osdesc,狀態,組名,conn,pwr", "xloc": [ - "default.handlebars->27->389" + "default.handlebars->27->390" ] }, { @@ -26698,8 +26723,8 @@ "ru": "ip:", "zh-chs": "ip:", "xloc": [ - "default.handlebars->27->396", - "default.handlebars->27->397" + "default.handlebars->27->397", + "default.handlebars->27->398" ] }, { @@ -26734,7 +26759,7 @@ "zh-chs": "移動", "xloc": [ "default-mobile.handlebars->9->93", - "default.handlebars->27->1293" + "default.handlebars->27->1310" ] }, { @@ -26765,7 +26790,7 @@ "ru": "servererrors.txt", "zh-chs": "servererrors.txt", "xloc": [ - "default.handlebars->27->1057" + "default.handlebars->27->1077" ] }, { @@ -26782,7 +26807,7 @@ "ru": "servertrace.csv", "zh-chs": "servertrace.csv", "xloc": [ - "default.handlebars->27->1579" + "default.handlebars->27->1590" ] }, { @@ -26799,8 +26824,8 @@ "ru": "т:", "zh-chs": "t:", "xloc": [ - "default.handlebars->27->404", - "default.handlebars->27->405" + "default.handlebars->27->405", + "default.handlebars->27->406" ] }, { @@ -26816,8 +26841,8 @@ "ru": "тег:", "zh-chs": "標籤:", "xloc": [ - "default.handlebars->27->402", - "default.handlebars->27->403" + "default.handlebars->27->403", + "default.handlebars->27->404" ] }, { @@ -26832,7 +26857,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->1557" + "default.handlebars->27->1568" ] }, { @@ -26848,7 +26873,7 @@ "ru": "time, source, message", "zh-chs": "時間,來源,訊息", "xloc": [ - "default.handlebars->27->1578" + "default.handlebars->27->1589" ] }, { @@ -26878,7 +26903,7 @@ "ru": "всего", "zh-chs": "總", "xloc": [ - "default.handlebars->27->1545" + "default.handlebars->27->1556" ] }, { @@ -26895,8 +26920,8 @@ "ru": "п:", "zh-chs": "你:", "xloc": [ - "default.handlebars->27->394", - "default.handlebars->27->395" + "default.handlebars->27->395", + "default.handlebars->27->396" ] }, { @@ -26923,8 +26948,8 @@ "ru": "пользователь:", "zh-chs": "用戶:", "xloc": [ - "default.handlebars->27->392", - "default.handlebars->27->393" + "default.handlebars->27->393", + "default.handlebars->27->394" ] }, { @@ -26941,8 +26966,8 @@ "ru": "userlist.csv", "zh-chs": "userlist.csv", "xloc": [ - "default.handlebars->27->1340", - "default.handlebars->27->1345" + "default.handlebars->27->1357", + "default.handlebars->27->1362" ] }, { @@ -26959,8 +26984,8 @@ "ru": "userlist.json", "zh-chs": "userlist.json", "xloc": [ - "default.handlebars->27->1342", - "default.handlebars->27->1346" + "default.handlebars->27->1359", + "default.handlebars->27->1363" ] }, { @@ -26973,7 +26998,7 @@ "pt": "utc, hora, tipo, ação, usuário, dispositivo, mensagem", "zh-chs": "utc,時間,類型,操作,用戶,設備,消息", "xloc": [ - "default.handlebars->27->1305" + "default.handlebars->27->1322" ] }, { @@ -27005,7 +27030,7 @@ "ru": "{0} Гб", "zh-chs": "{0} Gb", "xloc": [ - "default.handlebars->27->1273" + "default.handlebars->27->1290" ] }, { @@ -27022,7 +27047,7 @@ "ru": "{0} Kб", "zh-chs": "{0} Kb", "xloc": [ - "default.handlebars->27->1271" + "default.handlebars->27->1288" ] }, { @@ -27039,7 +27064,7 @@ "ru": "{0} Mб", "zh-chs": "{0} Mb", "xloc": [ - "default.handlebars->27->1272" + "default.handlebars->27->1289" ] }, { @@ -27056,7 +27081,7 @@ "ru": "{0} Мб, {1} Мгц", "zh-chs": "{0} Mb,{1} Mhz", "xloc": [ - "default.handlebars->27->762" + "default.handlebars->27->782" ] }, { @@ -27073,7 +27098,7 @@ "ru": "{0} активных сессий", "zh-chs": "{0}個活動會話", "xloc": [ - "default.handlebars->27->1461" + "default.handlebars->27->1475" ] }, { @@ -27090,7 +27115,7 @@ "ru": "{0} байт", "zh-chs": "{0} b", "xloc": [ - "default.handlebars->27->1270" + "default.handlebars->27->1287" ] }, { @@ -27108,7 +27133,7 @@ "zh-chs": "{0}個字節", "xloc": [ "default-mobile.handlebars->9->81", - "default.handlebars->27->1280" + "default.handlebars->27->1297" ] }, { @@ -27125,7 +27150,7 @@ "ru": "{0} байт осталось", "zh-chs": "剩餘{0}個字節", "xloc": [ - "default.handlebars->27->1265" + "default.handlebars->27->1282" ] }, { @@ -27142,7 +27167,7 @@ "ru": "{0} гигабайт осталось", "zh-chs": "剩餘{0} GB", "xloc": [ - "default.handlebars->27->1268" + "default.handlebars->27->1285" ] }, { @@ -27159,7 +27184,7 @@ "ru": "{0} групп", "zh-chs": "{0}個群組", "xloc": [ - "default.handlebars->27->1444" + "default.handlebars->27->1458" ] }, { @@ -27207,7 +27232,7 @@ "ru": "{0} килобайт осталось", "zh-chs": "剩餘{0}千字節", "xloc": [ - "default.handlebars->27->1266" + "default.handlebars->27->1283" ] }, { @@ -27242,7 +27267,7 @@ "ru": "{0} мегабайт осталось", "zh-chs": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->27->1267" + "default.handlebars->27->1284" ] }, { @@ -27290,7 +27315,7 @@ "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей...", "zh-chs": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->27->1315" + "default.handlebars->27->1332" ] }, { @@ -27307,7 +27332,7 @@ "ru": "{0} устройств", "zh-chs": "{0}個節點", "xloc": [ - "default.handlebars->27->332" + "default.handlebars->27->333" ] }, { @@ -27422,7 +27447,7 @@ "ru": "{0} сессий", "zh-chs": "{0}個會話", "xloc": [ - "default.handlebars->27->1319" + "default.handlebars->27->1336" ] }, { @@ -27439,7 +27464,7 @@ "ru": "{0} настройки (.msh)", "zh-chs": "{0}設置(.msh)", "xloc": [ - "default.handlebars->27->315" + "default.handlebars->27->316" ] }, { @@ -27491,7 +27516,7 @@ "ru": "{0} пользователей", "zh-chs": "{0}個用戶", "xloc": [ - "default.handlebars->27->198" + "default.handlebars->27->199" ] }, { @@ -27542,7 +27567,7 @@ "ru": "{0}k в 1 файле. {1}k максимум", "zh-chs": "{0} k合1檔案。最多{1} k", "xloc": [ - "default.handlebars->27->1275" + "default.handlebars->27->1292" ] }, { @@ -27558,7 +27583,7 @@ "ru": "{0}k в {1} файлах. {2}k максимум", "zh-chs": "{1}個文件中有{0}個。最多{2} k", "xloc": [ - "default.handlebars->27->1274" + "default.handlebars->27->1291" ] }, { diff --git a/views/default.handlebars b/views/default.handlebars index 77522f1d..d575832c 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -1814,21 +1814,25 @@ case 'nodes': { nodes = []; for (var m in message.nodes) { - if (!meshes[m]) { console.log('Invalid mesh (1): ' + m); continue; } for (var n in message.nodes[m]) { if (message.nodes[m][n]._id == null) { console.log('Invalid node (' + n + '): ' + JSON.stringify(message.nodes)); continue; } message.nodes[m][n].namel = message.nodes[m][n].name.toLowerCase(); if (message.nodes[m][n].rname) { message.nodes[m][n].rnamel = message.nodes[m][n].rname.toLowerCase(); } else { message.nodes[m][n].rnamel = message.nodes[m][n].namel; } - message.nodes[m][n].meshnamel = meshes[m].name.toLowerCase(); + if (meshes[m]) { message.nodes[m][n].meshnamel = meshes[m].name.toLowerCase(); } message.nodes[m][n].meshid = m; message.nodes[m][n].state = (message.nodes[m][n].state)?(message.nodes[m][n].state):0; - message.nodes[m][n].desc = message.nodes[m][n].desc; - message.nodes[m][n].ip = message.nodes[m][n].ip; if (!message.nodes[m][n].icon) message.nodes[m][n].icon = 1; message.nodes[m][n].ident = ++nodeShortIdent; nodes.push(message.nodes[m][n]); } } + + // If we are currently looking at a node this is now gone, change the view. + if ((currentNode != null) && (getNodeFromId(currentNode._id) == null)) { currentNode = null; go(1); } + + // Change the reference to the current node + if (currentNode != null) { currentNode = getNodeFromId(currentNode._id); } + masterUpdate(1 | 2 | 4 | 64); break; } @@ -1996,7 +2000,7 @@ break; } case 'events': { - if ((message.nodeid != null) && (message.nodeid == currentNode._id)) { + if ((message.nodeid != null) && (currentNode != null) && (message.nodeid == currentNode._id)) { currentDeviceEvents = message.events; masterUpdate(1024); } else if ((message.user != null) && (message.user == currentUser.name)) { @@ -2232,6 +2236,9 @@ meshserver.send({ action: 'wssessioncount' }); } } + + // If out list of nodes may have changes, request the new list now. + if (message.event.nodeListChange == userinfo._id) { meshserver.send({ action: 'nodes' }); } } if (users == null) break; @@ -2327,9 +2334,9 @@ if ((xxcurrentView == 20) && (currentMesh == meshes[message.event.meshid])) go(2); delete meshes[message.event.meshid]; - // Delete all nodes in that mesh + // Delete all nodes in that mesh, except ones with direct links var newnodes = []; - for (var i in nodes) { if (nodes[i].meshid != message.event.meshid) { newnodes.push(nodes[i]); } } + for (var i in nodes) { if ((nodes[i].meshid != message.event.meshid) || ((userinfo.links != null) && (userinfo.links[nodes[i]._id] != null))) { newnodes.push(nodes[i]); } } nodes = newnodes; // If we are looking at a node in the deleted mesh, move back to "My Devices" @@ -2926,11 +2933,11 @@ QV('kvmListToolbar', view == 3); QV('devMapToolbar', view == 4); QV('devListToolbarSize', view == 3); - QV('NoMeshesPanel', meshcount == 0); + QV('NoMeshesPanel', (nodes.length == 0) && (meshcount == 0)); //QV('devListToolbarView', (meshcount != 0) && (nodes.length > 0)); - QV('devListToolbarViewIcons', (meshcount != 0) && (nodes.length > 0)); - QV('devListToolbarSort', (meshcount != 0) && (nodes.length > 0) && (view < 4)); - if ((meshcount == 0) || (nodes.length == 0)) { view = 1; sort = 0; } + QV('devListToolbarViewIcons', nodes.length > 0); + QV('devListToolbarSort', (nodes.length > 0) && (view < 4)); + if (nodes.length == 0) { view = 1; sort = 0; } if (view == 4) { setTimeout( function() { if (xxmap.map != null) { xxmap.map.updateSize(); } }, 200); // TODO @@ -2964,7 +2971,7 @@ var node = nodes[i]; if (node.v == false) continue; var mesh2 = meshes[node.meshid]; - if ((view == 3) && (mesh2.mtype == 1)) continue; + //if ((view == 3) && (mesh2.mtype == 1)) continue; var meshrights = GetNodeRights(node); if (sort == 0) { // Mesh header @@ -2973,7 +2980,7 @@ deviceHeaderSet(); var extra = ''; if (view == 2) { r += ''; } - if (meshes[node.meshid].mtype == 1) { extra = '' + ", Intel® AMT only" + ''; } + if (meshes[node.meshid] && (meshes[node.meshid].mtype == 1)) { extra = '' + ", Intel® AMT only" + ''; } if ((view == 1) && (current != null)) { if (c == 2) { r += '
'; } if (r != '') { r += ''; } } if (view == 2) { r += '
'; } r += '
'; @@ -2983,7 +2990,11 @@ var collapsed = CollapsedGroups[node.meshid]; r += ''; // Collapse action } - r += '' + EscapeHtml(meshes[node.meshid].name) + '' + getMeshActions(mesh2, meshrights) + '
'; + if (meshes[node.meshid]) { + r += '' + EscapeHtml(meshes[node.meshid].name) + '' + getMeshActions(mesh2, meshrights) + '
'; + } else { + r += '' + "Indivitual Devices" + ''; + } if (view == 2) { r += ''; } current = node.meshid; displayedMeshes[current] = 1; @@ -3113,7 +3124,7 @@ } // If there is nothing to display, explain the problem - if ((r == '') && (meshcount > 0) && (Q('SearchInput').value != '')) { + if ((r == '') && (nodes.length > 0) && (Q('SearchInput').value != '')) { if (sort == 3) { r = '
' + "No devices are included in any groups, click on a device\'s \"Groups\" to add to a group." + '
'; } else { @@ -3173,7 +3184,7 @@ // Add a "Add Device Group" option r += '
'; - if ((view < 3) && (sort == 0) && (meshcount > 0) && ((userinfo.siteadmin == 0xFFFFFFFF) || ((userinfo.siteadmin & 64) == 0))) { + if ((view < 3) && (sort == 0) && (nodes.length > 0) && ((userinfo.siteadmin == 0xFFFFFFFF) || ((userinfo.siteadmin & 64) == 0))) { r += '' + "Add Device Group" + ' '; } if ((userinfo.siteadmin == 0xFFFFFFFF) || ((userinfo.siteadmin & 128) == 0)) { @@ -4139,6 +4150,8 @@ // DEVICES MAP // + {{{StartGeoLocationJS}}} + // Maps code starts from here. Initialize all the variables var xxmap = { map: null, @@ -4151,8 +4164,6 @@ mapView: null, // Sets the initial view } - {{{StartGeoLocationJS}}} - // Add a feature for every Node and change style if connection status changes function updateMapMarkers(selectedMesh) { if ((xxmap != null) && (xxmap.map == null)) { try { loadmap(); } catch (ex) { console.error('loadmap() exception', ex); } } @@ -4775,7 +4786,7 @@ var nname = EscapeHtml(node.name); if (nname.length == 0) { nname = '' + "None" + ''; } if (((meshrights & 4) != 0) && ((!mesh.flags) || ((mesh.flags & 2) == 0))) { nname = '' + nname + ' '; } - nname += ' - ' + EscapeHtml(mesh.name) + ''; + if (mesh) { nname += ' - ' + EscapeHtml(mesh.name) + ''; } QH('p10deviceName', nname); QH('p11deviceName', nname); QH('p12deviceName', nname); @@ -4790,7 +4801,7 @@ var x = ''; // Attribute: Mesh - x += addDeviceAttribute('' + "Group" + '', '' + EscapeHtml(meshes[node.meshid].name) + ''); + if (mesh) { x += addDeviceAttribute('' + "Group" + '', '' + EscapeHtml(meshes[node.meshid].name) + ''); } // Attribute: Name if ((node.rname != null) && (node.name != node.rname)) { x += addDeviceAttribute('' + "Name" + '', '' + EscapeHtml(node.rname) + ''); } @@ -4861,20 +4872,16 @@ x += addDeviceAttribute(meName, str); } - if (mesh.mtype == 2) { + if ((node.agent != null) && (node.agent.tag != null)) { // Attribute: Mesh Agent Tag - if ((node.agent != null) && (node.agent.tag != null)) { - var tag = EscapeHtml(node.agent.tag); - if (tag.startsWith('mailto:')) { tag = '' + tag.substring(7) + ''; } - x += addDeviceAttribute("Agent Tag", tag); - } - } else { + var tag = EscapeHtml(node.agent.tag); + if (tag.startsWith('mailto:')) { tag = '' + tag.substring(7) + ''; } + x += addDeviceAttribute("Agent Tag", tag); + } else if ((node.intelamt != null) && (node.intelamt.tag != null)) { // Attribute: Intel AMT Tag - if ((node.intelamt != null) && (node.intelamt.tag != null)) { - var tag = EscapeHtml(node.intelamt.tag); - if (tag.startsWith('mailto:')) { tag = '' + tag.substring(7) + ''; } - x += addDeviceAttribute("Intel® AMT Tag", tag); - } + var tag = EscapeHtml(node.intelamt.tag); + if (tag.startsWith('mailto:')) { tag = '' + tag.substring(7) + ''; } + x += addDeviceAttribute("Intel® AMT Tag", tag); } // Attribute: Intel AMT @@ -4947,13 +4954,15 @@ x += ' ' + "Delete Device" + ''; } x += '
'; - if (mesh.mtype == 2) x += '' + "Interfaces" + ' '; + if (node.agent) x += '' + "Interfaces" + ' '; + {{{StartGeoLocationJS}}} if (xxmap != null) x += '' + "Location" + ' '; - if ((terminalAccess) && ((meshrights & 8) != 0) && (mesh.mtype == 2)) x += '' + "Router" + ' '; - if ((args.xterm === 0) && (mesh.mtype == 2) && ((node.agent.caps & 2) != 0) && ((meshrights & 8) != 0) && ((meshrights == 0xFFFFFFFF) || ((meshrights & 512) == 0))) { x += '' + "XTerm" + ' '; } + {{{EndGeoLocationJS}}} + if ((terminalAccess) && ((meshrights & 8) != 0) && (node.agent != null)) x += '' + "Router" + ' '; + if ((args.xterm === 0) && (node.agent) && ((node.agent.caps & 2) != 0) && ((meshrights & 8) != 0) && ((meshrights == 0xFFFFFFFF) || ((meshrights & 512) == 0))) { x += '' + "XTerm" + ' '; } // RDP link, show this link only of the remote machine is Windows. - if (((connectivity & 1) != 0) && (clickOnce == true) && (mesh.mtype == 2) && ((meshrights & 8) != 0)) { + if (((connectivity & 1) != 0) && (clickOnce == true) && (node.agent) && ((meshrights & 8) != 0)) { if ((node.agent.id > 0) && (node.agent.id < 5)) { x += '' + "RDP" + ' '; } if (node.agent.id > 4) { x += '' + "Putty" + ' '; @@ -4990,14 +4999,14 @@ // Show or hide the tabs // mesh.mtype: 1 = Intel AMT only, 2 = Mesh Agent // node.agent.caps (bitmask): 1 = Desktop, 2 = Terminal, 4 = Files, 8 = Console - QV('MainDevDesktop', desktopAccess && ((((mesh.mtype == 1) && ((typeof node.intelamt.sku !== 'number') || ((node.intelamt.sku & 8) != 0))) - || ((mesh.mtype == 2) && ((node.agent == null) || (node.agent.caps == null) || ((node.agent.caps & 1) != 0) || (node.intelamt && (node.intelamt.state == 2))))) + QV('MainDevDesktop', desktopAccess && ((((node.agent == null) && ((typeof node.intelamt.sku !== 'number') || ((node.intelamt.sku & 8) != 0))) + || ((node.agent != null) && ((node.agent.caps == null) || ((node.agent.caps & 1) != 0) || (node.intelamt && (node.intelamt.state == 2))))) && ((meshrights & 8) || (meshrights & 256))) ); - QV('MainDevTerminal', ((mesh.mtype == 1) || (node.agent == null) || (node.agent.caps == null) || ((node.agent.caps & 2) != 0) || (node.intelamt && (node.intelamt.state == 2))) && (meshrights & 8) && terminalAccess); - QV('MainDevFiles', ((mesh.mtype == 2) && ((node.agent == null) || (node.agent.caps == null) || ((node.agent.caps & 4) != 0))) && (meshrights & 8) && fileAccess); + QV('MainDevTerminal', (((node.agent == null) && (node.intelamt != null)) || (node.agent.caps == null) || ((node.agent.caps & 2) != 0) || (node.intelamt && (node.intelamt.state == 2))) && (meshrights & 8) && terminalAccess); + QV('MainDevFiles', (node.agent != null) && (node.agent.caps != null) && ((node.agent.caps & 4) != 0) && (meshrights & 8) && fileAccess); QV('MainDevAmt', (node.intelamt != null) && ((node.intelamt.state == 2) || (node.conn & 2)) && (meshrights & 8) && amtAccess); - QV('MainDevConsole', (consoleRights && (mesh.mtype == 2) && ((node.agent == null) || (node.agent.caps == null) || ((node.agent.caps & 8) != 0))) && (meshrights & 8)); + QV('MainDevConsole', (consoleRights && ((node.agent != null) && (node.agent.caps != null) && ((node.agent.caps & 8) != 0))) && (meshrights & 8)); QV('MainDevPlugins', false); QV('p15uploadCore', (node.agent != null) && (node.agent.caps != null) && ((node.agent.caps & 16) != 0)); QH('p15coreName', ((node.agent != null) && (node.agent.core != null))?node.agent.core:''); @@ -5035,7 +5044,7 @@ // Update the web page title if ((currentNode) && (xxcurrentView >= 10) && (xxcurrentView < 20)) { - document.title = decodeURIComponent('{{{extitle}}}') + ' - ' + currentNode.name + ' - ' + mesh.name; + document.title = decodeURIComponent('{{{extitle}}}') + ' - ' + currentNode.name + (mesh?(' - ' + mesh.name):''); } else { document.title = decodeURIComponent('{{{extitle}}}'); } @@ -5055,29 +5064,27 @@ // Show user device permissions x = ''; - if (urlargs.dp == 1) { // For testing only - x += ' ' + "Add User" + ''; - x += '
'; - var count = 1; - if (currentNode.links != null) { - // Sort the list of users to display - var useridlist = []; - for (var i in currentNode.links) { if (i.startsWith('user/')) { useridlist.push(i); } } - useridlist.sort(); - for (var i in useridlist) { - var trash = '', rights = '', userid = useridlist[i], srights = currentNode.links[userid].rights, username = EscapeHtml(userid.split('/')[2]), rights = makeUserDeviceRightsString(srights); - if ((users != null) && (users[userid] != null)) { username = EscapeHtml(users[userid].name); } - if ((meshrights & 2) != 0) { - rights = '
' + rights + '
'; - trash = ''; - } - if (users != null) { username = '' + username + ''; } - x += ''; + if (meshrights & 7) { x += ' ' + "Add User" + ''; } + x += '
' + "User Permissions" + '
 ' + username + '
' + trash + '
' + rights + '
'; + var count = 1; + if (currentNode.links != null) { + // Sort the list of users to display + var useridlist = []; + for (var i in currentNode.links) { if (i.startsWith('user/')) { useridlist.push(i); } } + useridlist.sort(); + for (var i in useridlist) { + var trash = '', rights = '', userid = useridlist[i], srights = currentNode.links[userid].rights, username = EscapeHtml(userid.split('/')[2]), rights = makeUserDeviceRightsString(srights); + if ((users != null) && (users[userid] != null)) { username = EscapeHtml(users[userid].name); } + if ((meshrights & 2) != 0) { + trash = ''; + rights = '
' + rights + '
'; } + if (users != null) { username = '' + username + ''; } + x += ''; } - if (count == 1) { x += ''; } - x += '
' + "User Authorizations" + '
 ' + username + '
' + trash + '
' + rights + '
 ' + "No users with special device permissions" + '
'; } + if (count == 1) { x += '
 ' + "No users with special device permissions" + '
'; } + x += ''; QH('p10html4', x); // Change the URL @@ -5117,6 +5124,33 @@ return str.join(', '); } + function makeDeviceGroupRightsString(rights) { + if (rights == 0xFFFFFFFF) { return "Full Rights"; } + var str = []; + if (rights & 1) str.push("Edit Group"); + if (rights & 2) str.push("Manage Users"); + if (rights & 4) str.push("Manage Devices"); + if (rights & 8) { + var str1 = []; + if (rights & 256) str1.push("No Input"); + if (rights & 512) str1.push("No Terminal"); + if (rights & 1024) str1.push("No Files"); + if (rights & 2048) str1.push("No AMT"); + if (rights & 4096) str1.push("Limited Input"); + if (rights & 65536) str1.push("No Desktop"); + if (str1.length > 0) { str.push('Control (' + str1.join(', ') + ')'); } else { str.push("Control"); } + } + if (rights & 16) str.push("Console"); + if (rights & 32) str.push("Server Files"); + if (rights & 64) str.push("Wake"); + if (rights & 128) str.push("Notes"); + if (rights & 8192) str.push("Limit Events"); + if (rights & 16384) str.push("Chat"); + if (rights & 32768) str.push("Uninstall"); + if (str.length == 0) return "No Rights"; + return str.join(', '); + } + function writeDeviceEvent(nodeid) { if (xxdialogMode) return; setDialogMode(2, "Add Device Event", 3, writeDeviceEventEx, '' + "This will add an entry to this device\'s event log." + '', nodeid); @@ -5273,7 +5307,7 @@ date = new Date(date.getTime() - (1000 * 60 * 60 * 24)); // Substract one day } - QH('p10html2', '' + x + '
' + "Day" + '' + "7 Day Power State" + '
'); + QH('p10html2', '' + x + '
' + "Day" + '' + "7 Day Power State" + '
'); } // Return a color for the given power state @@ -5623,22 +5657,23 @@ // Show the right buttons QV('disconnectbutton1span', (deskState != 0)); - QV('connectbutton1span', (deskState == 0) && ((rights & 8) || (rights & 256)) && (mesh.mtype == 2) && (currentNode.agent.caps & 1)); + QV('connectbutton1span', (deskState == 0) && ((rights & 8) || (rights & 256)) && (currentNode.agent != null) && (currentNode.agent.caps & 1)); QV('connectbutton1hspan', (deskState == 0) && (rights & 8) && - ((mesh.mtype == 1) || + ( ((currentNode.intelamt != null) && (currentNode.intelamt.state == 2) && (currentNode.intelamt.ver != null) && - (typeof currentNode.intelamt.sku == 'number') && - ((currentNode.intelamt.sku & 8) != 0)) + ((currentNode.intelamt.sku == null) || + ((typeof currentNode.intelamt.sku == 'number') && + ((currentNode.intelamt.sku & 8) != 0)))) ) ); // Show the right settings - QV('d7amtkvm', (currentNode.intelamt != null && ((currentNode.intelamt.ver != null) || (mesh.mtype == 1))) && ((deskState == 0) || (desktop.contype == 2))); - QV('d7meshkvm', (webRtcDesktop) || ((mesh.mtype == 2) && (currentNode.agent.caps & 1) && ((deskState == false) || (desktop.contype == 1)))); + QV('d7amtkvm', (currentNode.intelamt != null && ((currentNode.intelamt.ver != null) || (currentNode.agent == null))) && ((deskState == 0) || (desktop.contype == 2))); + QV('d7meshkvm', (webRtcDesktop) || ((currentNode.agent != null) && (currentNode.agent.caps & 1) && ((deskState == false) || (desktop.contype == 1)))); // Enable buttons var inputAllowed = (rights == 0xFFFFFFFF) || (((rights & 8) != 0) && ((rights & 256) == 0) && ((rights & 4096) == 0)); @@ -5657,12 +5692,12 @@ QE('deskkeys', deskState == 3); // Display this only if we have Chat & Notify permissions - QV('DeskChatButton', ((rights & 16384) != 0) && (browserfullscreen == false) && (inputAllowed) && (mesh.mtype == 2) && online); - QV('DeskNotifyButton', ((rights & 16384) != 0) && (browserfullscreen == false) && (currentNode.agent) && (currentNode.agent.id < 5) && (inputAllowed) && (mesh.mtype == 2) && online); + QV('DeskChatButton', ((rights & 16384) != 0) && (browserfullscreen == false) && (inputAllowed) && (currentNode.agent) && online); + QV('DeskNotifyButton', ((rights & 16384) != 0) && (browserfullscreen == false) && (currentNode.agent) && (currentNode.agent.id < 5) && (inputAllowed) && (currentNode.agent) && online); - QV('DeskToolsButton', (inputAllowed) && (mesh.mtype == 2) && online); - QV('DeskOpenWebButton', (browserfullscreen == false) && (inputAllowed) && (mesh.mtype == 2) && online); - QV('DeskBackgroundButton', (deskState == 3) && (desktop.contype == 1) && (mesh.mtype == 2) && (currentNode.agent.id != 11) && (currentNode.agent.id != 16) && online); + QV('DeskToolsButton', (inputAllowed) && (currentNode.agent) && online); + QV('DeskOpenWebButton', (browserfullscreen == false) && (inputAllowed) && (currentNode.agent) && online); + QV('DeskBackgroundButton', (deskState == 3) && (desktop.contype == 1) && (currentNode.agent) && (currentNode.agent.id != 11) && (currentNode.agent.id != 16) && online); QV('DeskControlSpan', inputAllowed) QV('deskActionsBtn', (browserfullscreen == false)); QV('deskActionsSettings', (browserfullscreen == false)); @@ -6431,9 +6466,9 @@ // Show the right buttons QV('disconnectbutton2span', (termState == true)); - QV('connectbutton2span', (termState == false) && (mesh.mtype == 2) && (currentNode.agent.caps & 2)); - QV('connectbutton2hspan', (termState == false) && ((terminalNode.intelamt != null) && (mesh.mtype == 1 || terminalNode.intelamt.state == 2) && ((terminalNode.intelamt.ver != null) || (mesh.mtype == 1)))); - QV('terminalSizeDropDown', (termState == false) && ((terminalNode.intelamt != null) && (mesh.mtype == 1 || terminalNode.intelamt.state == 2) && ((terminalNode.intelamt.ver != null) || (mesh.mtype == 1)))); + QV('connectbutton2span', (termState == false) && (currentNode.agent != null) && (currentNode.agent.caps & 2)); + QV('connectbutton2hspan', (termState == false) && (terminalNode.intelamt != null) && (terminalNode.intelamt.state == 2) && (terminalNode.intelamt.ver != null)); + QV('terminalSizeDropDown', (termState == false) && (terminalNode.intelamt != null) && (terminalNode.intelamt.state == 2) && (terminalNode.intelamt.ver != null)); // Enable buttons var online = ((terminalNode.conn & 1) != 0); // If Agent (1) connected, enable Terminal @@ -8266,13 +8301,17 @@ } sortedusers.sort(function(a, b) { if (a.name > b.name) return 1; if (a.name < b.name) return -1; return 0; }); - // Display all users for this mesh + // Display all users for this device group for (var i in sortedusers) { - var trash = '', rights = "Partial Device Group Rights", r = sortedusers[i].rights, icon = 2; - if (r == 0xFFFFFFFF) rights = "Full Device Group Administrator"; else if (r == 0) rights = "No Rights"; - if ((sortedusers[i].id != userinfo._id) && (meshrights == 0xFFFFFFFF || (((meshrights & 2) != 0)))) { trash = ''; } + var trash = '', r = sortedusers[i].rights, rights = makeDeviceGroupRightsString(r), icon = 2; + if ((sortedusers[i].id != userinfo._id) && (meshrights == 0xFFFFFFFF || (((meshrights & 2) != 0)))) { + trash = ''; + rights = '
' + rights + '
'; + } if (sortedusers[i].id.startsWith('ugrp/')) { icon = 4; } - x += '
 ' + EscapeHtml(decodeURIComponent(sortedusers[i].name)) + '
' + trash + '
' + rights + '
'; + var username = EscapeHtml(decodeURIComponent(sortedusers[i].name)); + if (users != null) { username = '' + username + ''; } + x += '
 ' + username + '
' + trash + '
' + rights + '
'; ++count; } @@ -8490,7 +8529,11 @@ } else if (userid === 4) { var y = '', selectedMeshId = null, selectedNode = null; if (selected != null) { selectedNode = getNodeFromId(decodeURIComponent(selected)); if (selectedNode != null) { selectedMeshId = selectedNode.meshid; } } - for (var i in meshes) { if (selectedMeshId == null) { selectedMeshId = meshes[i]._id; } y += ''; } + for (var i in meshes) { + if ((meshes[i].links[userinfo._id] != null) && (meshes[i].links[userinfo._id].rights & 7)) { // Only show device groups that we have user administrator for. + if (selectedMeshId == null) { selectedMeshId = meshes[i]._id; } y += ''; + } + } x += addHtmlValue("Device Group", '
'); y = ''; for (var i in nodes) { if (nodes[i].meshid == selectedMeshId) { y += ''; } } @@ -9943,7 +9986,9 @@ // Display all users for this mesh for (var i in sortedusers) { var trash = ''; - x += '
 ' + EscapeHtml(decodeURIComponent(sortedusers[i].name)) + '
' + trash + '
'; + var username = EscapeHtml(decodeURIComponent(sortedusers[i].name)); + if (users != null) { username = '' + username + ''; } + x += '
 ' + username + '
' + trash + '
'; ++count; } @@ -9959,13 +10004,18 @@ if (currentUserGroup.links) { for (var i in currentUserGroup.links) { if (i.startsWith('mesh/')) { - var cr = 0, r = currentUserGroup.links[i].rights, mesh = meshes[i], trash = '', rights = "Partial Device Group Rights"; + var cr = 0, r = currentUserGroup.links[i].rights, mesh = meshes[i], trash = '', rights = makeDeviceGroupRightsString(r); if (mesh == null) { continue; } if ((userinfo.links) && (userinfo.links[i] != null) && (userinfo.links[i].rights != null)) { cr = userinfo.links[i].rights; } - var meshname = mesh?EscapeHtml(mesh.name):('' + "Unknown Device Group" + ''); - if (r == 0xFFFFFFFF) rights = "Full Device Group Administrator"; else if (r == 0) rights = "No Rights"; - if ((cr & 2) != 0) { trash = ''; } - x += '
 ' + meshname + '
' + trash + '
' + rights + '
'; + var meshname = '' + "Unknown Device Group" + ''; + if (mesh) { meshname = '' + mesh.name + ''; } else {} + if ((cr & 2) != 0) { + trash = ''; + + // TODO + //rights = '
' + rights + '
'; + } + x += '
 ' + meshname + '
' + trash + '
' + rights + '
'; } } } @@ -10311,30 +10361,28 @@ function drawUserPermissions() { var count = 1, x = ''; - if (urlargs.dp == 1) { // For testing only - // Display common devices - x += ' ' + "Add Device" + ''; - x += ''; - if (currentUser.links) { - // Sort the list of devices to display - var nodelist = []; - for (var i in currentUser.links) { if (i.startsWith('node/')) { var node = getNodeFromId(i); if (node != null) { nodelist.push(node); } } } - nodelist.sort(nameSort); - for (var i in nodelist) { - var node = nodelist[i], r = currentUser.links[node._id].rights, trash = '', cr = GetNodeRights(node); - if ((userinfo.links) && (userinfo.links[i] != null) && (userinfo.links[i].rights != null)) { cr = userinfo.links[i].rights; } - var nodename = node?EscapeHtml(node.name):('' + "Unknown Device" + ''); - if ((cr & 2) != 0) { - rights = '
' + makeUserDeviceRightsString(r) + '
'; - trash = ''; - } - nodename = '' + nodename + ''; - x += ''; + // Display common devices + x += ' ' + "Add Device" + ''; + x += '
' + "Common Devices" + '
 ' + nodename + '
' + trash + '
' + rights + '
'; + if (currentUser.links) { + // Sort the list of devices to display + var nodelist = []; + for (var i in currentUser.links) { if (i.startsWith('node/')) { var node = getNodeFromId(i); if (node != null) { nodelist.push(node); } } } + nodelist.sort(nameSort); + for (var i in nodelist) { + var node = nodelist[i], r = currentUser.links[node._id].rights, trash = '', cr = GetNodeRights(node); + if ((userinfo.links) && (userinfo.links[i] != null) && (userinfo.links[i].rights != null)) { cr = userinfo.links[i].rights; } + var nodename = node?EscapeHtml(node.name):('' + "Unknown Device" + ''); + if ((cr & 2) != 0) { + rights = '
' + makeUserDeviceRightsString(r) + '
'; + trash = ''; } + nodename = '' + nodename + ''; + x += ''; } - if (count == 1) { x += ''; } - x += '
' + "Common Devices" + '
 ' + nodename + '
' + trash + '
' + rights + '
 ' + "No devices in common" + '

'; } + if (count == 1) { x += '
 ' + "No devices in common" + '
'; } + x += '
'; // Display common device groups count = 1; @@ -10345,13 +10393,13 @@ if (currentUser.links) { for (var i in currentUser.links) { if (i.startsWith('mesh/')) { - var cr = 0, r = currentUser.links[i].rights, mesh = meshes[i], trash = '', rights = "Partial Device Group Rights"; + var cr = 0, r = currentUser.links[i].rights, mesh = meshes[i], trash = '', rights = makeDeviceGroupRightsString(r); if (mesh == null) { continue; } if ((userinfo.links) && (userinfo.links[i] != null) && (userinfo.links[i].rights != null)) { cr = userinfo.links[i].rights; } - var meshname = mesh?EscapeHtml(mesh.name):('' + "Unknown Device Group" + ''); - if (r == 0xFFFFFFFF) rights = "Full Device Group Administrator"; else if (r == 0) rights = "No Rights"; + var meshname = '' + "Unknown Device Group" + ''; + if (mesh) { meshname = '' + EscapeHtml(mesh.name) + ''; } else {} if ((currentUser._id != userinfo._id) && ((cr & 2) != 0)) { trash = ''; } - x += '
 ' + meshname + '
' + trash + '
' + rights + '
'; + x += '
 ' + meshname + '
' + trash + '
' + rights + '
'; } } } @@ -10372,9 +10420,13 @@ for (var i in currentUser.links) { if (i.startsWith('ugrp/')) { var r = currentUser.links[i].rights, group = usergroups[i], trash = ''; - var groupname = (group != null)?EscapeHtml(group.name):('' + "Unknown User Group" + ''); + var groupname = '' + "Unknown User Group" + ''; + if (group != null) { + groupname = EscapeHtml(group.name); + if (usergroups != null) { groupname = '' + groupname + ''; } + } if ((userinfo.siteadmin & 256) != 0) { trash = ''; } - x += '
 ' + groupname + '
' + trash + '
'; + x += '
 ' + groupname + '
' + trash + '
'; } } } @@ -11193,7 +11245,7 @@ // Update the web page title if ((currentNode) && (x >= 10) && (x < 20)) { - document.title = decodeURIComponent('{{{extitle}}}') + ' - ' + currentNode.name + ' - ' + meshes[currentNode.meshid].name; + document.title = decodeURIComponent('{{{extitle}}}') + ' - ' + currentNode.name + ((meshes[currentNode.meshid])?(' - ' + meshes[currentNode.meshid].name):''); } else { document.title = decodeURIComponent('{{{extitle}}}'); } diff --git a/webserver.js b/webserver.js index 73827561..8b203e44 100644 --- a/webserver.js +++ b/webserver.js @@ -2474,7 +2474,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { if (!node.intelamt) { console.log('ERR: Not AMT node'); try { ws.close(); } catch (e) { } return; } // Disconnect websocket // Check if this user has permission to manage this computer - if ((obj.GetMeshRights(user, node.meshid) & MESHRIGHT_REMOTECONTROL) == 0) { console.log('ERR: Access denied (2)'); try { ws.close(); } catch (e) { } return; } + if ((obj.GetNodeRights(user, node.meshid, node._id) & MESHRIGHT_REMOTECONTROL) == 0) { console.log('ERR: Access denied (2)'); try { ws.close(); } catch (e) { } return; } // Check what connectivity is available for this node var state = parent.GetConnectivityState(req.query.host); @@ -3494,6 +3494,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { obj.handleDevicePowerEvents = function (req, res) { const domain = checkUserIpAddress(req, res); if (domain == null) { return; } + if ((domain.loginkey != null) && (domain.loginkey.indexOf(req.query.key) == -1)) { res.sendStatus(404); return; } // Check 3FA URL key if ((domain.id !== '') || (!req.session) || (req.session == null) || (!req.session.userid) || (req.query.id == null) || (typeof req.query.id != 'string')) { res.sendStatus(401); return; } var x = req.query.id.split('/'); var user = obj.users[req.session.userid]; @@ -3506,7 +3507,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { var node = docs[0]; // Check if we have right to this node - if (obj.GetMeshRights(user, node.meshid) == 0) { res.sendStatus(401); return; } + if (obj.GetNodeRights(user, node.meshid, node._id) == 0) { res.sendStatus(401); return; } // Get the list of power events and send them res.set({ 'Cache-Control': 'no-cache, no-store, must-revalidate', 'Pragma': 'no-cache', 'Expires': '0', 'Content-Type': 'text/csv', 'Content-Disposition': 'attachment; filename="powerevents.csv"' }); @@ -4374,6 +4375,18 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { return false; } + // Return the user rights for a given node + obj.GetNodeRights = function (user, mesh, nodeid) { + if ((user == null) || (mesh == null) || (nodeid == null)) { return 0; } + if (typeof user == 'string') { user = obj.users[user]; } + var r = obj.GetMeshRights(user, mesh); + if (r == 0xFFFFFFFF) return r; + + // Check direct device rights using device data + if ((user.links != null) && (user.links[nodeid] != null)) { r |= user.links[nodeid].rights; } // TODO: Deal with reverse permissions + return r; + } + // Returns a list of displatch targets for a given mesh // We have to target the meshid and all user groups for this mesh, plus any added targets obj.CreateMeshDispatchTargets = function (mesh, addedTargets) { @@ -4510,7 +4523,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { if ((domain.titlepicture == null) && (domain.titlehtml == null)) { if (domain.title == null) { xargs.title1 = 'MeshCentral'; - xargs.title2 = '2.0'; + xargs.title2 = ''; } else { xargs.title1 = domain.title; xargs.title2 = domain.title2 ? domain.title2 : ''; @@ -4535,13 +4548,13 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { // Check that we are in the same domain and the user has rights over this node. if ((splitsessionid.length == 4) && (splitsessionid[0] == 'user') && (splitsessionid[1] == domainid)) { // Check if this user has rights to get this message - if (obj.GetMeshRights(splitsessionid[0] + '/' + splitsessionid[1] + '/' + splitsessionid[2], meshid) == 0) return; // TODO: Check if this is ok + if (obj.GetNodeRights(splitsessionid[0] + '/' + splitsessionid[1] + '/' + splitsessionid[2], meshid, nodeid) == 0) return; // TODO: Check if this is ok // See if the session is connected. If so, go ahead and send this message to the target node var ws = obj.wssessions2[command.sessionid]; if (ws != null) { - command.nodeid = nodeid; // Set the nodeid, required for responses. - delete command.sessionid; // Remove the sessionid, since we are sending to that sessionid, so it's implyed. + command.nodeid = nodeid; // Set the nodeid, required for responses. + delete command.sessionid; // Remove the sessionid, since we are sending to that sessionid, so it's implyed. try { ws.send(JSON.stringify(command)); } catch (ex) { } } else if (parent.multiServer != null) { // See if we can send this to a peer server @@ -4558,7 +4571,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { // Check that we are in the same domain and the user has rights over this node. if ((splituserid[0] == 'user') && (splituserid[1] == domainid)) { // Check if this user has rights to get this message - if (obj.GetMeshRights(command.userid, meshid) == 0) return; // TODO: Check if this is ok + if (obj.GetNodeRights(command.userid, meshid, nodeid) == 0) return; // TODO: Check if this is ok // See if the session is connected var sessions = obj.wssessions[command.userid]; @@ -4566,7 +4579,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { // Go ahead and send this message to the target node if (sessions != null) { command.nodeid = nodeid; // Set the nodeid, required for responses. - delete command.userid; // Remove the userid, since we are sending to that userid, so it's implyed. + delete command.userid; // Remove the userid, since we are sending to that userid, so it's implyed. for (i in sessions) { sessions[i].send(JSON.stringify(command)); } } @@ -4581,7 +4594,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { // Find all connected user sessions with access to this device for (var userid in obj.wssessions) { var xsessions = obj.wssessions[userid]; - if (obj.GetMeshRights(userid, meshid) != 0) { + if (obj.GetNodeRights(userid, meshid, nodeid) != 0) { // Send the message to all sessions for this user on this server for (i in xsessions) { try { xsessions[i].send(cmdstr); } catch (e) { } } }