Added per user and per device, user consent settings.

Ylian Saint-Hilaire committed Apr 12, 2020 at 14:05 UTC 1686d1c0c41c9828cde36b9b039cc97219f1c1e8
7 files changed +1302 -1209
emails/translations/mesh-invite_es.html
+1 -2
@@ -12,8 +12,7 @@
12 Hola [[[NAME]]],
13 </p>
14 </area-name>
15 - <p>Usuario [[[USERNAME]]] en servidor <a href="[[[SERVERURL]]]">[[[SERVERNAME]]]</a> le solicita que instale software para iniciar una sesión de control remoto.
16 -</p>
15 + <p>Usuario [[[USERNAME]]] en servidor <a href="[[[SERVERURL]]]">[[[SERVERNAME]]]</a> le solicita que instale software para iniciar una sesión de control remoto.</p>
16 <area-msg>
17 <p>
18 Mensaje: <b notrans="1">[[[MSG]]]</b>
meshrelay.js
+33 -25
@@ -80,36 +80,44 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie
80 var agent = parent.wsagents[command.nodeid];
81 if (agent != null) {
82 // Check if we have permission to send a message to that node
83 - rights = parent.GetNodeRights(user, agent.dbMeshKey, agent.dbNodeKey);
84 - mesh = parent.meshes[agent.dbMeshKey];
85 - if ((rights != null) && (mesh != null) || ((rights & 16) != 0)) { // TODO: 16 is console permission, may need more gradular permission checking
86 - if (ws.sessionId) { command.sessionid = ws.sessionId; } // Set the session id, required for responses.
87 - command.rights = rights.rights; // Add user rights flags to the message
88 - command.consent = mesh.consent; // Add user consent
89 - if (typeof domain.userconsentflags == 'number') { command.consent |= domain.userconsentflags; } // Add server required consent flags
90 - command.username = user.name; // Add user name
91 - if (typeof domain.desktopprivacybartext == 'string') { command.privacybartext = domain.desktopprivacybartext; } // Privacy bar text
92 - delete command.nodeid; // Remove the nodeid since it's implyed.
93 - agent.send(JSON.stringify(command));
94 - return true;
95 - }
83 + parent.GetNodeWithRights(domain, user, agent.dbNodeKey, function (node, rights, visible) {
84 + mesh = parent.meshes[agent.dbMeshKey];
85 + if ((node != null) && (rights != null) && (mesh != null) || ((rights & 16) != 0)) { // TODO: 16 is console permission, may need more gradular permission checking
86 + if (ws.sessionId) { command.sessionid = ws.sessionId; } // Set the session id, required for responses.
87 + command.rights = rights.rights; // Add user rights flags to the message
88 + command.consent = 0;
89 + if (typeof domain.userconsentflags == 'number') { command.consent |= domain.userconsentflags; } // Add server required consent flags
90 + if (typeof mesh.consent == 'number') { command.consent |= mesh.consent; } // Add device group user consent
91 + if (typeof node.consent == 'number') { command.consent |= node.consent; } // Add node user consent
92 + if (typeof user.consent == 'number') { command.consent |= user.consent; } // Add user consent
93 + command.username = user.name; // Add user name
94 + if (typeof domain.desktopprivacybartext == 'string') { command.privacybartext = domain.desktopprivacybartext; } // Privacy bar text
95 + delete command.nodeid; // Remove the nodeid since it's implyed.
96 + agent.send(JSON.stringify(command));
97 + return true;
98 + }
99 + });
100 } else {
101 // Check if a peer server is connected to this agent
102 var routing = parent.parent.GetRoutingServerId(command.nodeid, 1); // 1 = MeshAgent routing type
103 if (routing != null) {
104 // Check if we have permission to send a message to that node
101 - rights = parent.GetNodeRights(user, routing.meshid, command.nodeid);
102 - mesh = parent.meshes[routing.meshid];
103 - if (rights != null || ((rights & 16) != 0)) { // TODO: 16 is console permission, may need more gradular permission checking
104 - if (ws.sessionId) { command.fromSessionid = ws.sessionId; } // Set the session id, required for responses.
105 - command.rights = rights.rights; // Add user rights flags to the message
106 - command.consent = mesh.consent; // Add user consent
107 - if (typeof domain.userconsentflags == 'number') { command.consent |= domain.userconsentflags; } // Add server required consent flags
108 - command.username = user.name; // Add user name
109 - if (typeof domain.desktopprivacybartext == 'string') { command.privacybartext = domain.desktopprivacybartext; } // Privacy bar text
110 - parent.parent.multiServer.DispatchMessageSingleServer(command, routing.serverid);
111 - return true;
112 - }
105 + parent.GetNodeWithRights(domain, user, agent.dbNodeKey, function (node, rights, visible) {
106 + mesh = parent.meshes[routing.meshid];
107 + if ((node != null) && (rights != null) && (mesh != null) || ((rights & 16) != 0)) { // TODO: 16 is console permission, may need more gradular permission checking
108 + if (ws.sessionId) { command.fromSessionid = ws.sessionId; } // Set the session id, required for responses.
109 + command.rights = rights.rights; // Add user rights flags to the message
110 + command.consent = 0;
111 + if (typeof domain.userconsentflags == 'number') { command.consent |= domain.userconsentflags; } // Add server required consent flags
112 + if (typeof mesh.consent == 'number') { command.consent |= mesh.consent; } // Add device group user consent
113 + if (typeof node.consent == 'number') { command.consent |= node.consent; } // Add node user consent
114 + if (typeof user.consent == 'number') { command.consent |= user.consent; } // Add user consent
115 + command.username = user.name; // Add user name
116 + if (typeof domain.desktopprivacybartext == 'string') { command.privacybartext = domain.desktopprivacybartext; } // Privacy bar text
117 + parent.parent.multiServer.DispatchMessageSingleServer(command, routing.serverid);
118 + return true;
119 + }
120 + });
121 }
122 }
123 }
meshuser.js
+42 -33
@@ -162,40 +162,46 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
162 var agent = parent.wsagents[command.nodeid];
163 if (agent != null) {
164 // Check if we have permission to send a message to that node
165 - //var meshrights = parent.GetMeshRights(user, agent.dbMeshKey); // TODO: We will need to get the rights for this specific node.
166 - var mesh = parent.meshes[agent.dbMeshKey];
167 - var meshrights = parent.GetNodeRights(user, mesh, agent.dbNodeKey);
168 - if ((mesh != null) && ((meshrights & MESHRIGHT_REMOTECONTROL) || (meshrights & MESHRIGHT_REMOTEVIEWONLY))) { // 8 is remote control permission, 256 is desktop read only
169 - command.sessionid = ws.sessionId; // Set the session id, required for responses
170 - command.rights = meshrights; // Add user rights flags to the message
171 - command.consent = mesh.consent; // Add user consent
172 - if (typeof domain.userconsentflags == 'number') { command.consent |= domain.userconsentflags; } // Add server required consent flags
173 - command.username = user.name; // Add user name
174 - command.userid = user._id; // Add user id
175 - command.remoteaddr = cleanRemoteAddr(req.ip); // User's IP address
176 - if (typeof domain.desktopprivacybartext == 'string') { command.privacybartext = domain.desktopprivacybartext; } // Privacy bar text
177 - delete command.nodeid; // Remove the nodeid since it's implied
178 - try { agent.send(JSON.stringify(command)); } catch (ex) { }
179 - }
165 + parent.GetNodeWithRights(domain, user, agent.dbNodeKey, function (node, rights, visible) {
166 + var mesh = parent.meshes[agent.dbMeshKey];
167 + if ((node != null) && (mesh != null) && ((rights & MESHRIGHT_REMOTECONTROL) || (rights & MESHRIGHT_REMOTEVIEWONLY))) { // 8 is remote control permission, 256 is desktop read only
168 + command.sessionid = ws.sessionId; // Set the session id, required for responses
169 + command.rights = rights; // Add user rights flags to the message
170 + command.consent = 0;
171 + if (typeof domain.userconsentflags == 'number') { command.consent |= domain.userconsentflags; } // Add server required consent flags
172 + if (typeof mesh.consent == 'number') { command.consent |= mesh.consent; } // Add device group user consent
173 + if (typeof node.consent == 'number') { command.consent |= node.consent; } // Add node user consent
174 + if (typeof user.consent == 'number') { command.consent |= user.consent; } // Add user consent
175 + command.username = user.name; // Add user name
176 + command.userid = user._id; // Add user id
177 + command.remoteaddr = cleanRemoteAddr(req.ip); // User's IP address
178 + if (typeof domain.desktopprivacybartext == 'string') { command.privacybartext = domain.desktopprivacybartext; } // Privacy bar text
179 + delete command.nodeid; // Remove the nodeid since it's implied
180 + try { agent.send(JSON.stringify(command)); } catch (ex) { }
181 + }
182 + });
183 } else {
184 // Check if a peer server is connected to this agent
185 var routing = parent.parent.GetRoutingServerId(command.nodeid, 1); // 1 = MeshAgent routing type
186 if (routing != null) {
187 // Check if we have permission to send a message to that node
185 - //var meshrights = parent.GetMeshRights(user, routing.meshid); // TODO: We will need to get the rights for this specific node.
186 - var mesh = parent.meshes[routing.meshid];
187 - var meshrights = parent.GetNodeRights(user, mesh, agent.dbNodeKey);
188 - if ((mesh != null) && ((meshrights & MESHRIGHT_REMOTECONTROL) || (meshrights & MESHRIGHT_REMOTEVIEWONLY))) { // 8 is remote control permission
189 - command.fromSessionid = ws.sessionId; // Set the session id, required for responses
190 - command.rights = meshrights; // Add user rights flags to the message
191 - command.consent = mesh.consent; // Add user consent
192 - if (typeof domain.userconsentflags == 'number') { command.consent |= domain.userconsentflags; } // Add server required consent flags
193 - command.username = user.name; // Add user name
194 - command.userid = user._id; // Add user id
195 - command.remoteaddr = cleanRemoteAddr(req.ip); // User's IP address
196 - if (typeof domain.desktopprivacybartext == 'string') { command.privacybartext = domain.desktopprivacybartext; } // Privacy bar text
197 - parent.parent.multiServer.DispatchMessageSingleServer(command, routing.serverid);
198 - }
188 + parent.GetNodeWithRights(domain, user, agent.dbNodeKey, function (node, rights, visible) {
189 + var mesh = parent.meshes[routing.meshid];
190 + if ((node != null) && (mesh != null) && ((rights & MESHRIGHT_REMOTECONTROL) || (rights & MESHRIGHT_REMOTEVIEWONLY))) { // 8 is remote control permission
191 + command.fromSessionid = ws.sessionId; // Set the session id, required for responses
192 + command.rights = rights; // Add user rights flags to the message
193 + command.consent = 0;
194 + if (typeof domain.userconsentflags == 'number') { command.consent |= domain.userconsentflags; } // Add server required consent flags
195 + if (typeof mesh.consent == 'number') { command.consent |= mesh.consent; } // Add device group user consent
196 + if (typeof node.consent == 'number') { command.consent |= node.consent; } // Add node user consent
197 + if (typeof user.consent == 'number') { command.consent |= user.consent; } // Add user consent
198 + command.username = user.name; // Add user name
199 + command.userid = user._id; // Add user id
200 + command.remoteaddr = cleanRemoteAddr(req.ip); // User's IP address
201 + if (typeof domain.desktopprivacybartext == 'string') { command.privacybartext = domain.desktopprivacybartext; } // Privacy bar text
202 + parent.parent.multiServer.DispatchMessageSingleServer(command, routing.serverid);
203 + }
204 + });
205 }
206 }
207 }
@@ -1586,6 +1592,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
1592 // Make changes
1593 if ((command.emailVerified === true || command.emailVerified === false) && (chguser.emailVerified != command.emailVerified)) { chguser.emailVerified = command.emailVerified; change = 1; }
1594 if ((common.validateInt(command.quota, 0) || command.quota == null) && (command.quota != chguser.quota)) { chguser.quota = command.quota; if (chguser.quota == null) { delete chguser.quota; } change = 1; }
1595 + if ((command.consent != null) && (typeof command.consent == 'number')) { if (command.consent == 0) { delete chguser.consent; } else { chguser.consent = command.consent; } change = 1; }
1596
1597 // Site admins can change any server rights, user managers can only change AccountLock, NoMeshCmd and NoNewGroups
1598 if (chguser._id !== user._id) { // We can't change our own siteadmin permissions.
@@ -1593,7 +1600,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
1600 if (((user.siteadmin == 0xFFFFFFFF) || ((user.siteadmin & 2) && (((chgusersiteadmin ^ command.siteadmin) & 0xFFFFFF1F) == 0))) && common.validateInt(command.siteadmin) && (chguser.siteadmin != command.siteadmin)) { chguser.siteadmin = command.siteadmin; change = 1; }
1601 }
1602
1596 - // Went sending a notification about a group change, we need to send to all the previous and new groups.
1603 + // When sending a notification about a group change, we need to send to all the previous and new groups.
1604 var allTargetGroups = chguser.groups;
1605 if ((Array.isArray(command.groups)) && ((user._id != command.id) || (user.siteadmin == 0xFFFFFFFF))) {
1606 if (command.groups.length == 0) {
@@ -3037,9 +3044,11 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
3044 if ((args.wanonly == true) && (command.host)) { delete command.host; }
3045
3046 // Look for a change
3040 - if (command.icon && (command.icon != node.icon)) { change = 1; node.icon = command.icon; changes.push('icon'); }
3041 - if (command.name && (command.name != node.name)) { change = 1; node.name = command.name; changes.push('name'); }
3042 - if (command.host && (command.host != node.host)) { change = 1; node.host = command.host; changes.push('host'); }
3047 + if ((typeof command.icon == 'number') && (command.icon != node.icon)) { change = 1; node.icon = command.icon; changes.push('icon'); }
3048 + if ((typeof command.name == 'string') && (command.name != node.name)) { change = 1; node.name = command.name; changes.push('name'); }
3049 + if ((typeof command.host == 'string') && (command.host != node.host)) { change = 1; node.host = command.host; changes.push('host'); }
3050 + if (typeof command.consent == 'number') { if (((command.consent != 0) && ((node.consent == null) || (node.consent == 0))) || ((command.consent == 0) && (node.consent != null) && (node.consent != 0))) { change = 1; if (command.consent == 0) { delete node.consent; } else { node.consent = command.consent; } changes.push('consent'); } }
3051 +
3052 if ((typeof command.rdpport == 'number') && (command.rdpport > 0) && (command.rdpport < 65536)) {
3053 if ((command.rdpport == 3389) && (node.rdpport != null)) {
3054 delete node.rdpport; change = 1; changes.push('rdpport'); // Delete the RDP port
package.json
+1 -1
@@ -1,6 +1,6 @@
1 {
2 "name": "meshcentral",
3 - "version": "0.5.1-n",
3 + "version": "0.5.1-o",
4 "keywords": [
5 "Remote Management",
6 "Intel AMT",
translate/translate.json
+1176 -1140
@@ -14,8 +14,8 @@
14 "ru": " + CIRA",
15 "zh-chs": " + CIRA",
16 "xloc": [
17 - "default.handlebars->27->1116",
18 - "default.handlebars->27->1118"
17 + "default.handlebars->27->1128",
18 + "default.handlebars->27->1130"
19 ]
20 },
21 {
@@ -174,7 +174,7 @@
174 "ru": " Может быть использована подсказка пароля, но не рекоммендуется.",
175 "zh-chs": " 可以使用密碼提示,但不建議使用。",
176 "xloc": [
177 - "default.handlebars->27->1046"
177 + "default.handlebars->27->1058"
178 ]
179 },
180 {
@@ -191,8 +191,8 @@
191 "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.",
192 "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
193 "xloc": [
194 - "default.handlebars->27->1189",
195 - "default.handlebars->27->1458"
194 + "default.handlebars->27->1203",
195 + "default.handlebars->27->1472"
196 ]
197 },
198 {
@@ -375,7 +375,7 @@
375 "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.",
376 "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。",
377 "xloc": [
378 - "default.handlebars->27->1163"
378 + "default.handlebars->27->1175"
379 ]
380 },
381 {
@@ -408,7 +408,7 @@
408 "zh-chs": ",",
409 "xloc": [
410 "default-mobile.handlebars->9->331",
411 - "default.handlebars->27->1248"
411 + "default.handlebars->27->1262"
412 ]
413 },
414 {
@@ -443,7 +443,7 @@
443 "ru": ", MQTT онлайн",
444 "zh-chs": ",MQTT在線",
445 "xloc": [
446 - "default.handlebars->27->795"
446 + "default.handlebars->27->807"
447 ]
448 },
449 {
@@ -460,7 +460,7 @@
460 "ru": ", Soft-KVM",
461 "zh-chs": ",軟KVM",
462 "xloc": [
463 - "default.handlebars->27->654"
463 + "default.handlebars->27->666"
464 ]
465 },
466 {
@@ -479,9 +479,9 @@
479 "xloc": [
480 "default-mobile.handlebars->9->231",
481 "default-mobile.handlebars->9->239",
482 - "default.handlebars->27->655",
483 - "default.handlebars->27->686",
482 + "default.handlebars->27->667",
483 "default.handlebars->27->698",
484 + "default.handlebars->27->710",
485 "xterm.handlebars->9->6"
486 ]
487 },
@@ -604,9 +604,9 @@
604 "xloc": [
605 "default-mobile.handlebars->9->244",
606 "default-mobile.handlebars->9->70",
607 - "default.handlebars->27->1285",
608 - "default.handlebars->27->1547",
609 - "default.handlebars->27->700"
607 + "default.handlebars->27->1299",
608 + "default.handlebars->27->1573",
609 + "default.handlebars->27->712"
610 ]
611 },
612 {
@@ -654,7 +654,7 @@
654 "ru": "1 активная сессия",
655 "zh-chs": "1個活動會話",
656 "xloc": [
657 - "default.handlebars->27->1501"
657 + "default.handlebars->27->1527"
658 ]
659 },
660 {
@@ -673,7 +673,7 @@
673 "xloc": [
674 "default-mobile.handlebars->9->335",
675 "default-mobile.handlebars->9->80",
676 - "default.handlebars->27->1304"
676 + "default.handlebars->27->1318"
677 ]
678 },
679 {
@@ -709,7 +709,7 @@
709 "ru": "1 группа",
710 "zh-chs": "1組",
711 "xloc": [
712 - "default.handlebars->27->1483"
712 + "default.handlebars->27->1497"
713 ]
714 },
715 {
@@ -781,7 +781,7 @@
781 "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...",
782 "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...",
783 "xloc": [
784 - "default.handlebars->27->1339"
784 + "default.handlebars->27->1353"
785 ]
786 },
787 {
@@ -832,7 +832,7 @@
832 "ru": "1 сессия",
833 "zh-chs": "1節",
834 "xloc": [
835 - "default.handlebars->27->1343"
835 + "default.handlebars->27->1357"
836 ]
837 },
838 {
@@ -1100,8 +1100,8 @@
1100 "ru": "двухфакторная аутентификация включена",
1101 "zh-chs": "啟用第二因素身份驗證",
1102 "xloc": [
1103 - "default.handlebars->27->1356",
1104 - "default.handlebars->27->1492"
1103 + "default.handlebars->27->1370",
1104 + "default.handlebars->27->1518"
1105 ]
1106 },
1107 {
@@ -1371,12 +1371,12 @@
1371 "es": "6. Las redistribuciones de cualquier forma deben conservar el siguiente reconocimiento: \"Este producto incluye software desarrollado por OpenSSL Project para su uso en OpenSSL Toolkit (http://www.openssl.org/)\".",
1372 "cs": "6. Šíření dál v jakékoli formě si musí zachovat následující prohlášení: „Tento produkt zahrnuje software vyvinutý v rámci projektu OpenSSL pro použití v sadě OpenSSL Toolkit (http://www.openssl.org/)“.",
1373 "de": "6. Weiterverteilungen jeglicher Art müssen die folgende Bestätigung behalten: \"Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im OpenSSL Toolkit (http://www.openssl.org/) entwickelt wurde.\"",
1374 - "fr": "6.Les redistributions sous quelque forme que ce soit doivent conserver la mention suivante: \"Ce produit comprend un logiciel développé par le projet OpenSSL pour une utilisation dans la boîte à outils OpenSSL (http://www.openssl.org/)\".",
1374 "fr": "6. Les redistributions sous quelque forme que ce soit doivent conserver la mention suivante: \"Ce produit comprend un logiciel développé par le projet OpenSSL pour une utilisation dans la boîte à outils OpenSSL (http://www.openssl.org/)\".",
1375 "hi": "6. किसी भी रूप के 6.Redistributions जो भी निम्नलिखित स्वीकार्यता को बनाए रखने चाहिए: \"इस उत्पाद में OpenSSL टूलकिट (http://www.openssl.org/) में उपयोग के लिए OpenSSL प्रोजेक्ट द्वारा विकसित सॉफ्टवेयर शामिल है\"।",
1376 "ja": "6. いかなる形式の再配布でも、「この製品には、OpenSSL Toolkit(http://www.openssl.org/)で使用するためにOpenSSL Projectによって開発されたソフトウェアが含まれます」という承認を保持する必要があります。",
1377 "ko": "6. \"이 제품에는 OpenSSL 툴킷 (http://www.openssl.org/)에서 사용하기 위해 OpenSSL Project에서 개발 한 소프트웨어가 포함되어 있습니다.\"",
1379 - "nl": "6. Herdistributies in welke vorm dan ook moet de volgende tekst behouden: \"Dit product bevat software die is ontwikkeld door het OpenSSL-project voor gebruik in de OpenSSL Toolkit (http://www.openssl.org/)\".","pt": "6. As redistribuições de qualquer forma devem manter o seguinte reconhecimento: \"Este produto inclui software desenvolvido pelo OpenSSL Project para uso no OpenSSL Toolkit (http://www.openssl.org/)\".",
1378 + "nl": "6. Herdistributies in welke vorm dan ook moet de volgende tekst behouden: \"Dit product bevat software die is ontwikkeld door het OpenSSL-project voor gebruik in de OpenSSL Toolkit (http://www.openssl.org/)\".",
1379 + "pt": "6. As redistribuições de qualquer forma devem manter o seguinte reconhecimento: \"Este produto inclui software desenvolvido pelo OpenSSL Project para uso no OpenSSL Toolkit (http://www.openssl.org/)\".",
1380 "ru": "6. Распространение в любой форме должно включать следующее подтверждение: \"Этот продукт включает программное обеспечение, разработанное OpenSSL Project для использования в OpenSSL Toolkit (http://www.openssl.org/)\".",
1381 "zh-chs": "6. 任何形式的重新分發都必須保留以下聲明:“此產品包括由OpenSSL Project開發的,用於OpenSSL Toolkit(http://www.openssl.org/)的軟件”。",
1382 "xloc": [
@@ -1465,7 +1465,7 @@
1465 "ru": "7-дневная статистика работы",
1466 "zh-chs": "7天電源狀態",
1467 "xloc": [
1468 - "default.handlebars->27->593"
1468 + "default.handlebars->27->605"
1469 ]
1470 },
1471 {
@@ -1812,7 +1812,7 @@
1812 "ru": "Отказано в доступе",
1813 "zh-chs": "拒絕訪問",
1814 "xloc": [
1815 - "default.handlebars->27->796"
1815 + "default.handlebars->27->808"
1816 ]
1817 },
1818 {
@@ -1847,7 +1847,7 @@
1847 "ru": "Доступ к файлам сервера",
1848 "zh-chs": "訪問服務器文件",
1849 "xloc": [
1850 - "default.handlebars->27->1464"
1850 + "default.handlebars->27->1478"
1851 ]
1852 },
1853 {
@@ -1922,8 +1922,8 @@
1922 "default-mobile.handlebars->9->55",
1923 "default-mobile.handlebars->9->57",
1924 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0",
1925 - "default.handlebars->27->1055",
1926 - "default.handlebars->27->1057",
1925 + "default.handlebars->27->1067",
1926 + "default.handlebars->27->1069",
1927 "default.handlebars->27->439",
1928 "default.handlebars->27->441"
1929 ]
@@ -1956,8 +1956,8 @@
1956 "zh-chs": "帐户已被锁定",
1957 "es": "La cuenta esta bloqueada",
1958 "xloc": [
1959 - "default.handlebars->27->1357",
1960 - "default.handlebars->27->1461"
1959 + "default.handlebars->27->1371",
1960 + "default.handlebars->27->1475"
1961 ]
1962 },
1963 {
@@ -2045,7 +2045,7 @@
2045 "ru": "Действиe",
2046 "zh-chs": "行動",
2047 "xloc": [
2048 - "default.handlebars->27->801",
2048 + "default.handlebars->27->813",
2049 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2050 ]
2051 },
@@ -2063,8 +2063,8 @@
2063 "ru": "Файл действий",
2064 "zh-chs": "動作文件",
2065 "xloc": [
2066 - "default.handlebars->27->634",
2067 - "default.handlebars->27->636"
2066 + "default.handlebars->27->646",
2067 + "default.handlebars->27->648"
2068 ]
2069 },
2070 {
@@ -2083,7 +2083,7 @@
2083 "xloc": [
2084 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
2085 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
2086 - "default.handlebars->27->501",
2086 + "default.handlebars->27->513",
2087 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
2088 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
2089 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -2141,7 +2141,7 @@
2141 "default-mobile.handlebars->9->182",
2142 "default.handlebars->27->462",
2143 "default.handlebars->27->464",
2144 - "default.handlebars->27->766"
2144 + "default.handlebars->27->778"
2145 ]
2146 },
2147 {
@@ -2158,8 +2158,8 @@
2158 "ru": "Активация",
2159 "zh-chs": "激活",
2160 "xloc": [
2161 - "default.handlebars->27->1129",
2162 - "default.handlebars->27->1131",
2161 + "default.handlebars->27->1141",
2162 + "default.handlebars->27->1143",
2163 "default.handlebars->27->214",
2164 "default.handlebars->27->216"
2165 ]
@@ -2229,7 +2229,7 @@
2229 "zh-chs": "添加設備",
2230 "es": "Agregar Dispositivo",
2231 "xloc": [
2232 - "default.handlebars->27->1517"
2232 + "default.handlebars->27->1543"
2233 ]
2234 },
2235 {
@@ -2246,7 +2246,7 @@
2246 "ru": "Добавить событие к устройству",
2247 "zh-chs": "添加設備事件",
2248 "xloc": [
2249 - "default.handlebars->27->576"
2249 + "default.handlebars->27->588"
2250 ]
2251 },
2252 {
@@ -2263,10 +2263,10 @@
2263 "ru": "Добавить группу устройств",
2264 "zh-chs": "添加設備組",
2265 "xloc": [
2266 - "default.handlebars->27->1217",
2267 - "default.handlebars->27->1219",
2268 - "default.handlebars->27->1440",
2269 - "default.handlebars->27->1523",
2266 + "default.handlebars->27->1231",
2267 + "default.handlebars->27->1233",
2268 + "default.handlebars->27->1454",
2269 + "default.handlebars->27->1549",
2270 "default.handlebars->27->189"
2271 ]
2272 },
@@ -2281,7 +2281,7 @@
2281 "zh-chs": "添加设备权限",
2282 "es": "Agregar permisos de dispositivo",
2283 "xloc": [
2284 - "default.handlebars->27->1220"
2284 + "default.handlebars->27->1234"
2285 ]
2286 },
2287 {
@@ -2366,7 +2366,7 @@
2366 "ru": "Добавить участие",
2367 "zh-chs": "添加會員",
2368 "xloc": [
2369 - "default.handlebars->27->1543"
2369 + "default.handlebars->27->1569"
2370 ]
2371 },
2372 {
@@ -2404,8 +2404,8 @@
2404 "default.handlebars->27->131",
2405 "default.handlebars->27->134",
2406 "default.handlebars->27->135",
2407 - "default.handlebars->27->823",
2408 - "default.handlebars->27->824"
2407 + "default.handlebars->27->835",
2408 + "default.handlebars->27->836"
2409 ]
2410 },
2411 {
@@ -2423,7 +2423,7 @@
2423 "zh-chs": "添加用戶",
2424 "xloc": [
2425 "default-mobile.handlebars->9->281",
2426 - "default.handlebars->27->536"
2426 + "default.handlebars->27->548"
2427 ]
2428 },
2429 {
@@ -2437,7 +2437,7 @@
2437 "zh-chs": "添加用户设备权限",
2438 "es": "Agregar permisos del usuario del dispositivo",
2439 "xloc": [
2440 - "default.handlebars->27->1223"
2440 + "default.handlebars->27->1237"
2441 ]
2442 },
2443 {
@@ -2454,9 +2454,9 @@
2454 "ru": "Добавить группу пользователей",
2455 "zh-chs": "添加用戶組",
2456 "xloc": [
2457 - "default.handlebars->27->1123",
2458 - "default.handlebars->27->1218",
2459 - "default.handlebars->27->1529"
2457 + "default.handlebars->27->1135",
2458 + "default.handlebars->27->1232",
2459 + "default.handlebars->27->1555"
2460 ]
2461 },
2462 {
@@ -2490,8 +2490,8 @@
2490 "ru": "Добавить пользователей",
2491 "zh-chs": "添加用戶",
2492 "xloc": [
2493 - "default.handlebars->27->1122",
2494 - "default.handlebars->27->1435"
2493 + "default.handlebars->27->1134",
2494 + "default.handlebars->27->1449"
2495 ]
2496 },
2497 {
@@ -2508,7 +2508,7 @@
2508 "ru": "Добавить пользователей в группу устройств",
2509 "zh-chs": "將用戶添加到設備組",
2510 "xloc": [
2511 - "default.handlebars->27->1216"
2511 + "default.handlebars->27->1230"
2512 ]
2513 },
2514 {
@@ -2525,7 +2525,7 @@
2525 "ru": "Добавить пользователей в группу",
2526 "zh-chs": "將用戶添加到用戶組",
2527 "xloc": [
2528 - "default.handlebars->27->1460"
2528 + "default.handlebars->27->1474"
2529 ]
2530 },
2531 {
@@ -2576,7 +2576,7 @@
2576 "ru": "Добавить новый Intel&reg; AMT компьютер, находящийся в интернете.",
2577 "zh-chs": "添加位於互聯網上的新英特爾&reg;AMT計算機。",
2578 "xloc": [
2579 - "default.handlebars->27->1124",
2579 + "default.handlebars->27->1136",
2580 "default.handlebars->27->207"
2581 ]
2582 },
@@ -2594,7 +2594,7 @@
2594 "ru": "Добавить новый Intel&reg; AMT компьютер, находящийся в локальной сети.",
2595 "zh-chs": "添加位於本地網絡上的新英特爾&reg;AMT計算機。",
2596 "xloc": [
2597 - "default.handlebars->27->1126",
2597 + "default.handlebars->27->1138",
2598 "default.handlebars->27->209"
2599 ]
2600 },
@@ -2629,7 +2629,7 @@
2629 "ru": "Добавить новый компьютер к этой сети установкой Mesh Agent.",
2630 "zh-chs": "通過安裝網格代理將新計算機添加到該網格。",
2631 "xloc": [
2632 - "default.handlebars->27->1132",
2632 + "default.handlebars->27->1144",
2633 "default.handlebars->27->217"
2634 ]
2635 },
@@ -2681,7 +2681,7 @@
2681 "ru": "Режим управления администратора (ACM)",
2682 "zh-chs": "管理員控制模式(ACM)",
2683 "xloc": [
2684 - "default.handlebars->27->768"
2684 + "default.handlebars->27->780"
2685 ]
2686 },
2687 {
@@ -2698,7 +2698,7 @@
2698 "zh-chs": "管理員憑證",
2699 "es": "Credenciales del Administrador",
2700 "xloc": [
2701 - "default.handlebars->27->774"
2701 + "default.handlebars->27->786"
2702 ]
2703 },
2704 {
@@ -2733,7 +2733,7 @@
2733 "ru": "Области администратора",
2734 "zh-chs": "管理領域",
2735 "xloc": [
2736 - "default.handlebars->27->1487"
2736 + "default.handlebars->27->1501"
2737 ]
2738 },
2739 {
@@ -2768,7 +2768,7 @@
2768 "ru": "Административные области",
2769 "zh-chs": "行政領域",
2770 "xloc": [
2771 - "default.handlebars->27->1404"
2771 + "default.handlebars->27->1418"
2772 ]
2773 },
2774 {
@@ -2785,7 +2785,7 @@
2785 "ru": "Администратор",
2786 "zh-chs": "管理員",
2787 "xloc": [
2788 - "default.handlebars->27->1350"
2788 + "default.handlebars->27->1364"
2789 ]
2790 },
2791 {
@@ -2802,7 +2802,7 @@
2802 "ru": "Африканский",
2803 "zh-chs": "南非語",
2804 "xloc": [
2805 - "default.handlebars->27->826"
2805 + "default.handlebars->27->838"
2806 ]
2807 },
2808 {
@@ -2822,8 +2822,8 @@
2822 "default-mobile.handlebars->9->124",
2823 "default-mobile.handlebars->9->177",
2824 "default-mobile.handlebars->9->193",
2825 - "default.handlebars->27->1273",
2826 - "default.handlebars->27->1279",
2825 + "default.handlebars->27->1287",
2826 + "default.handlebars->27->1293",
2827 "default.handlebars->27->168",
2828 "default.handlebars->27->361",
2829 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -2843,8 +2843,8 @@
2843 "ru": "Агент + Intel AMT",
2844 "zh-chs": "代理+英特爾AMT",
2845 "xloc": [
2846 - "default.handlebars->27->1275",
2847 - "default.handlebars->27->1281"
2846 + "default.handlebars->27->1289",
2847 + "default.handlebars->27->1295"
2848 ]
2849 },
2850 {
@@ -2879,7 +2879,7 @@
2879 "zh-chs": "代理控制台",
2880 "xloc": [
2881 "default-mobile.handlebars->9->316",
2882 - "default.handlebars->27->1231"
2882 + "default.handlebars->27->1245"
2883 ]
2884 },
2885 {
@@ -2896,7 +2896,7 @@
2896 "ru": "Счетчик ошибок агента",
2897 "zh-chs": "座席錯誤計數器",
2898 "xloc": [
2899 - "default.handlebars->27->1556"
2899 + "default.handlebars->27->1582"
2900 ]
2901 },
2902 {
@@ -2965,7 +2965,7 @@
2965 "ru": "Сессии агентов",
2966 "zh-chs": "座席會議",
2967 "xloc": [
2968 - "default.handlebars->27->1572"
2968 + "default.handlebars->27->1598"
2969 ]
2970 },
2971 {
@@ -3000,7 +3000,7 @@
3000 "ru": "Типы агента",
3001 "zh-chs": "代理類型",
3002 "xloc": [
3003 - "default.handlebars->27->1277",
3003 + "default.handlebars->27->1291",
3004 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
3005 ]
3006 },
@@ -3019,8 +3019,8 @@
3019 "zh-chs": "代理已連接",
3020 "xloc": [
3021 "default.handlebars->27->137",
3022 - "default.handlebars->27->527",
3023 - "default.handlebars->27->528"
3022 + "default.handlebars->27->539",
3023 + "default.handlebars->27->540"
3024 ]
3025 },
3026 {
@@ -3054,7 +3054,7 @@
3054 "ru": "Агент оффлайн",
3055 "zh-chs": "代理離線",
3056 "xloc": [
3057 - "default.handlebars->27->794"
3057 + "default.handlebars->27->806"
3058 ]
3059 },
3060 {
@@ -3071,7 +3071,7 @@
3071 "ru": "Агент онлайн",
3072 "zh-chs": "代理在線",
3073 "xloc": [
3074 - "default.handlebars->27->793"
3074 + "default.handlebars->27->805"
3075 ]
3076 },
3077 {
@@ -3088,7 +3088,7 @@
3088 "ru": "Агенты",
3089 "zh-chs": "代理商",
3090 "xloc": [
3091 - "default.handlebars->27->1585"
3091 + "default.handlebars->27->1611"
3092 ]
3093 },
3094 {
@@ -3105,7 +3105,7 @@
3105 "ru": "Албанский",
3106 "zh-chs": "阿爾巴尼亞語",
3107 "xloc": [
3108 - "default.handlebars->27->827"
3108 + "default.handlebars->27->839"
3109 ]
3110 },
3111 {
@@ -3158,9 +3158,9 @@
3158 "ru": "Фокусирование всех",
3159 "zh-chs": "全部聚焦",
3160 "xloc": [
3161 - "default.handlebars->27->656",
3162 - "default.handlebars->27->658",
3163 - "default.handlebars->27->659"
3161 + "default.handlebars->27->668",
3162 + "default.handlebars->27->670",
3163 + "default.handlebars->27->671"
3164 ]
3165 },
3166 {
@@ -3177,8 +3177,8 @@
3177 "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.",
3178 "zh-chs": "允許用戶管理此設備組和該組中的設備。",
3179 "xloc": [
3180 - "default.handlebars->27->1187",
3181 - "default.handlebars->27->1457"
3180 + "default.handlebars->27->1201",
3181 + "default.handlebars->27->1471"
3182 ]
3183 },
3184 {
@@ -3192,7 +3192,7 @@
3192 "zh-chs": "允许用户管理此设备。",
3193 "es": "Permitir al usuario administrar este dispositivo",
3194 "xloc": [
3195 - "default.handlebars->27->1188"
3195 + "default.handlebars->27->1202"
3196 ]
3197 },
3198 {
@@ -3245,7 +3245,7 @@
3245 "ru": "Поменять (F10 = ESC+0)",
3246 "zh-chs": "備用(F10 = ESC + 0)",
3247 "xloc": [
3248 - "default.handlebars->27->691"
3248 + "default.handlebars->27->703"
3249 ]
3250 },
3251 {
@@ -3279,7 +3279,9 @@
3279 "ru": "Всегда уведомлять",
3280 "zh-chs": "始終通知",
3281 "xloc": [
3282 - "default.handlebars->27->1103"
3282 + "default.handlebars->27->1115",
3283 + "default.handlebars->27->1510",
3284 + "default.handlebars->27->497"
3285 ]
3286 },
3287 {
@@ -3296,7 +3298,9 @@
3298 "ru": "Всегда запрашивать",
3299 "zh-chs": "總是提示",
3300 "xloc": [
3299 - "default.handlebars->27->1104"
3301 + "default.handlebars->27->1116",
3302 + "default.handlebars->27->1511",
3303 + "default.handlebars->27->498"
3304 ]
3305 },
3306 {
@@ -3485,7 +3489,7 @@
3489 "zh-chs": "阿拉伯文(阿爾及利亞)",
3490 "es": "Arabe (Algeria)",
3491 "xloc": [
3488 - "default.handlebars->27->829"
3492 + "default.handlebars->27->841"
3493 ]
3494 },
3495 {
@@ -3502,7 +3506,7 @@
3506 "zh-chs": "阿拉伯文(巴林)",
3507 "es": "Arabe (Bahrain)",
3508 "xloc": [
3505 - "default.handlebars->27->830"
3509 + "default.handlebars->27->842"
3510 ]
3511 },
3512 {
@@ -3519,7 +3523,7 @@
3523 "zh-chs": "阿拉伯文(埃及)",
3524 "es": "Arabe (Egipto)",
3525 "xloc": [
3522 - "default.handlebars->27->831"
3526 + "default.handlebars->27->843"
3527 ]
3528 },
3529 {
@@ -3536,7 +3540,7 @@
3540 "zh-chs": "阿拉伯文(伊拉克)",
3541 "es": "Arabe (Irak)",
3542 "xloc": [
3539 - "default.handlebars->27->832"
3543 + "default.handlebars->27->844"
3544 ]
3545 },
3546 {
@@ -3553,7 +3557,7 @@
3557 "zh-chs": "阿拉伯語(約旦)",
3558 "es": "Árabe (Jordania)",
3559 "xloc": [
3556 - "default.handlebars->27->833"
3560 + "default.handlebars->27->845"
3561 ]
3562 },
3563 {
@@ -3570,7 +3574,7 @@
3574 "zh-chs": "阿拉伯文(科威特)",
3575 "es": "Árabe (Kuwait)",
3576 "xloc": [
3573 - "default.handlebars->27->834"
3577 + "default.handlebars->27->846"
3578 ]
3579 },
3580 {
@@ -3587,7 +3591,7 @@
3591 "zh-chs": "阿拉伯語(黎巴嫩)",
3592 "es": "Árabe (Líbano)",
3593 "xloc": [
3590 - "default.handlebars->27->835"
3594 + "default.handlebars->27->847"
3595 ]
3596 },
3597 {
@@ -3604,7 +3608,7 @@
3608 "zh-chs": "阿拉伯文(利比亞)",
3609 "es": "Árabe (Libia)",
3610 "xloc": [
3607 - "default.handlebars->27->836"
3611 + "default.handlebars->27->848"
3612 ]
3613 },
3614 {
@@ -3621,7 +3625,7 @@
3625 "zh-chs": "阿拉伯文(摩洛哥)",
3626 "es": "Árabe (Marruecos)",
3627 "xloc": [
3624 - "default.handlebars->27->837"
3628 + "default.handlebars->27->849"
3629 ]
3630 },
3631 {
@@ -3638,7 +3642,7 @@
3642 "zh-chs": "阿拉伯文(阿曼)",
3643 "es": "Árabe (Omán)",
3644 "xloc": [
3641 - "default.handlebars->27->838"
3645 + "default.handlebars->27->850"
3646 ]
3647 },
3648 {
@@ -3655,7 +3659,7 @@
3659 "zh-chs": "阿拉伯語(卡塔爾)",
3660 "es": "Árabe (Qatar)",
3661 "xloc": [
3658 - "default.handlebars->27->839"
3662 + "default.handlebars->27->851"
3663 ]
3664 },
3665 {
@@ -3672,7 +3676,7 @@
3676 "zh-chs": "阿拉伯語(沙特阿拉伯)",
3677 "es": "Árabe (Arabia Saudita)",
3678 "xloc": [
3675 - "default.handlebars->27->840"
3679 + "default.handlebars->27->852"
3680 ]
3681 },
3682 {
@@ -3689,7 +3693,7 @@
3693 "zh-chs": "阿拉伯語(標準)",
3694 "es": "Árabe (estándar)",
3695 "xloc": [
3692 - "default.handlebars->27->828"
3696 + "default.handlebars->27->840"
3697 ]
3698 },
3699 {
@@ -3706,7 +3710,7 @@
3710 "zh-chs": "阿拉伯語(敘利亞)",
3711 "es": "Árabe (Siria)",
3712 "xloc": [
3709 - "default.handlebars->27->841"
3713 + "default.handlebars->27->853"
3714 ]
3715 },
3716 {
@@ -3723,7 +3727,7 @@
3727 "zh-chs": "阿拉伯文(突尼斯)",
3728 "es": "Árabe (Túnez)",
3729 "xloc": [
3726 - "default.handlebars->27->842"
3730 + "default.handlebars->27->854"
3731 ]
3732 },
3733 {
@@ -3740,7 +3744,7 @@
3744 "zh-chs": "阿拉伯文(阿聯酋)",
3745 "es": "Árabe (U.A.E.)",
3746 "xloc": [
3743 - "default.handlebars->27->843"
3747 + "default.handlebars->27->855"
3748 ]
3749 },
3750 {
@@ -3757,7 +3761,7 @@
3761 "zh-chs": "阿拉伯文(也門)",
3762 "es": "Árabe (Yemen)",
3763 "xloc": [
3760 - "default.handlebars->27->844"
3764 + "default.handlebars->27->856"
3765 ]
3766 },
3767 {
@@ -3774,7 +3778,7 @@
3778 "zh-chs": "阿拉貢人",
3779 "es": "Aragonés",
3780 "xloc": [
3777 - "default.handlebars->27->845"
3781 + "default.handlebars->27->857"
3782 ]
3783 },
3784 {
@@ -3791,7 +3795,7 @@
3795 "ru": "Архитектура",
3796 "zh-chs": "建築",
3797 "xloc": [
3794 - "default.handlebars->27->742"
3798 + "default.handlebars->27->754"
3799 ]
3800 },
3801 {
@@ -3826,7 +3830,7 @@
3830 "zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。",
3831 "xloc": [
3832 "default-mobile.handlebars->9->287",
3829 - "default.handlebars->27->1167"
3833 + "default.handlebars->27->1179"
3834 ]
3835 },
3836 {
@@ -3843,7 +3847,7 @@
3847 "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?",
3848 "zh-chs": "您確定要刪除節點{0}嗎?",
3849 "xloc": [
3846 - "default.handlebars->27->615"
3850 + "default.handlebars->27->627"
3851 ]
3852 },
3853 {
@@ -3860,7 +3864,7 @@
3864 "ru": "Вы действительно хотите деинсталировать выбранного агента?",
3865 "zh-chs": "您確定要卸載所選代理嗎?",
3866 "xloc": [
3863 - "default.handlebars->27->604"
3867 + "default.handlebars->27->616"
3868 ]
3869 },
3870 {
@@ -3877,7 +3881,7 @@
3881 "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?",
3882 "zh-chs": "您確定要卸載所選的{0}代理嗎?",
3883 "xloc": [
3880 - "default.handlebars->27->603"
3884 + "default.handlebars->27->615"
3885 ]
3886 },
3887 {
@@ -3894,7 +3898,7 @@
3898 "ru": "Вы уверенны, что {0} плагин: {1}",
3899 "zh-chs": "您確定要{0}插件嗎:{1}",
3900 "xloc": [
3897 - "default.handlebars->27->1625"
3901 + "default.handlebars->27->1651"
3902 ]
3903 },
3904 {
@@ -3911,7 +3915,7 @@
3915 "zh-chs": "亞美尼亞人",
3916 "es": "Armenio",
3917 "xloc": [
3914 - "default.handlebars->27->846"
3918 + "default.handlebars->27->858"
3919 ]
3920 },
3921 {
@@ -3928,7 +3932,7 @@
3932 "zh-chs": "阿薩姆語",
3933 "es": "Asamés",
3934 "xloc": [
3931 - "default.handlebars->27->847"
3935 + "default.handlebars->27->859"
3936 ]
3937 },
3938 {
@@ -3945,7 +3949,7 @@
3949 "zh-chs": "阿斯圖里亞斯人",
3950 "es": "Asturiano",
3951 "xloc": [
3948 - "default.handlebars->27->848"
3952 + "default.handlebars->27->860"
3953 ]
3954 },
3955 {
@@ -3962,7 +3966,7 @@
3966 "ru": "Приложение аутентификации",
3967 "zh-chs": "身份驗證應用",
3968 "xloc": [
3965 - "default.handlebars->27->1488"
3969 + "default.handlebars->27->1514"
3970 ]
3971 },
3972 {
@@ -3985,8 +3989,8 @@
3989 "default-mobile.handlebars->9->35",
3990 "default.handlebars->27->105",
3991 "default.handlebars->27->110",
3988 - "default.handlebars->27->812",
3989 - "default.handlebars->27->814"
3992 + "default.handlebars->27->824",
3993 + "default.handlebars->27->826"
3994 ]
3995 },
3996 {
@@ -4054,7 +4058,7 @@
4058 "ru": "Автоудаление",
4059 "zh-chs": "自動刪除",
4060 "xloc": [
4057 - "default.handlebars->27->1091"
4061 + "default.handlebars->27->1103"
4062 ]
4063 },
4064 {
@@ -4108,7 +4112,7 @@
4112 "zh-chs": "阿塞拜疆",
4113 "es": "Azerbaiyano",
4114 "xloc": [
4111 - "default.handlebars->27->849"
4115 + "default.handlebars->27->861"
4116 ]
4117 },
4118 {
@@ -4125,7 +4129,7 @@
4129 "ru": "BIOS",
4130 "zh-chs": "的BIOS",
4131 "xloc": [
4128 - "default.handlebars->27->780"
4132 + "default.handlebars->27->792"
4133 ]
4134 },
4135 {
@@ -4220,8 +4224,8 @@
4224 "ru": "Фоновый и интерактивный",
4225 "zh-chs": "背景與互動",
4226 "xloc": [
4223 - "default.handlebars->27->1256",
4224 - "default.handlebars->27->1263",
4227 + "default.handlebars->27->1270",
4228 + "default.handlebars->27->1277",
4229 "default.handlebars->27->286"
4230 ]
4231 },
@@ -4239,8 +4243,8 @@
4243 "ru": "Только фоновый",
4244 "zh-chs": "僅背景",
4245 "xloc": [
4242 - "default.handlebars->27->1257",
4243 - "default.handlebars->27->1264",
4246 + "default.handlebars->27->1271",
4247 + "default.handlebars->27->1278",
4248 "default.handlebars->27->287",
4249 "default.handlebars->27->309"
4250 ]
@@ -4276,7 +4280,7 @@
4280 "ru": "Резервные коды",
4281 "zh-chs": "備用碼",
4282 "xloc": [
4279 - "default.handlebars->27->1490"
4283 + "default.handlebars->27->1516"
4284 ]
4285 },
4286 {
@@ -4293,7 +4297,7 @@
4297 "ru": "Плохой ключ",
4298 "zh-chs": "錯誤的簽名",
4299 "xloc": [
4296 - "default.handlebars->27->1563"
4300 + "default.handlebars->27->1589"
4301 ]
4302 },
4303 {
@@ -4310,7 +4314,7 @@
4314 "ru": "Плохой веб-сертификат",
4315 "zh-chs": "錯誤的網絡證書",
4316 "xloc": [
4313 - "default.handlebars->27->1562"
4317 + "default.handlebars->27->1588"
4318 ]
4319 },
4320 {
@@ -4327,7 +4331,7 @@
4331 "zh-chs": "巴斯克",
4332 "es": "Vasco",
4333 "xloc": [
4330 - "default.handlebars->27->850"
4334 + "default.handlebars->27->862"
4335 ]
4336 },
4337 {
@@ -4361,7 +4365,7 @@
4365 "zh-chs": "白俄羅斯語",
4366 "es": "Bielorruso",
4367 "xloc": [
4364 - "default.handlebars->27->852"
4368 + "default.handlebars->27->864"
4369 ]
4370 },
4371 {
@@ -4378,7 +4382,7 @@
4382 "zh-chs": "孟加拉",
4383 "es": "Bengalí",
4384 "xloc": [
4381 - "default.handlebars->27->853"
4385 + "default.handlebars->27->865"
4386 ]
4387 },
4388 {
@@ -4412,7 +4416,7 @@
4416 "zh-chs": "波斯尼亞人",
4417 "es": "Bosnio",
4418 "xloc": [
4415 - "default.handlebars->27->854"
4419 + "default.handlebars->27->866"
4420 ]
4421 },
4422 {
@@ -4429,7 +4433,7 @@
4433 "zh-chs": "布列塔尼",
4434 "es": "Bretón",
4435 "xloc": [
4432 - "default.handlebars->27->855"
4436 + "default.handlebars->27->867"
4437 ]
4438 },
4439 {
@@ -4446,7 +4450,7 @@
4450 "ru": "Отправить сообщение",
4451 "zh-chs": "廣播",
4452 "xloc": [
4449 - "default.handlebars->27->1433",
4453 + "default.handlebars->27->1447",
4454 "default.handlebars->container->column_l->p4->3->1->0->3->1"
4455 ]
4456 },
@@ -4464,7 +4468,7 @@
4468 "ru": "Отправить сообщение",
4469 "zh-chs": "廣播消息",
4470 "xloc": [
4467 - "default.handlebars->27->1389"
4471 + "default.handlebars->27->1403"
4472 ]
4473 },
4474 {
@@ -4481,7 +4485,7 @@
4485 "ru": "Отправить сообщение всем подключенным пользователям.",
4486 "zh-chs": "向所有連接的用戶廣播消息。",
4487 "xloc": [
4484 - "default.handlebars->27->1388"
4488 + "default.handlebars->27->1402"
4489 ]
4490 },
4491 {
@@ -4498,7 +4502,7 @@
4502 "zh-chs": "保加利亞語",
4503 "es": "Búlgaro",
4504 "xloc": [
4501 - "default.handlebars->27->851"
4505 + "default.handlebars->27->863"
4506 ]
4507 },
4508 {
@@ -4515,7 +4519,7 @@
4519 "zh-chs": "緬甸人",
4520 "es": "Birmano",
4521 "xloc": [
4518 - "default.handlebars->27->856"
4522 + "default.handlebars->27->868"
4523 ]
4524 },
4525 {
@@ -4551,8 +4555,8 @@
4555 "zh-chs": "CIRA",
4556 "xloc": [
4557 "default-mobile.handlebars->9->125",
4554 - "default.handlebars->27->1155",
4555 - "default.handlebars->27->1160",
4558 + "default.handlebars->27->1167",
4559 + "default.handlebars->27->1172",
4560 "default.handlebars->27->170",
4561 "default.handlebars->27->363"
4562 ]
@@ -4571,7 +4575,7 @@
4575 "ru": "CIRA Сервер",
4576 "zh-chs": "CIRA服務器",
4577 "xloc": [
4574 - "default.handlebars->27->1613"
4578 + "default.handlebars->27->1639"
4579 ]
4580 },
4581 {
@@ -4588,7 +4592,7 @@
4592 "ru": "CIRA Сервер команды",
4593 "zh-chs": "CIRA服務器命令",
4594 "xloc": [
4591 - "default.handlebars->27->1614"
4595 + "default.handlebars->27->1640"
4596 ]
4597 },
4598 {
@@ -4605,7 +4609,7 @@
4609 "ru": "Загрузка CPU",
4610 "zh-chs": "CPU負載",
4611 "xloc": [
4608 - "default.handlebars->27->1577"
4612 + "default.handlebars->27->1603"
4613 ]
4614 },
4615 {
@@ -4622,7 +4626,7 @@
4626 "ru": "Загрузка CPU за последние 15 минут",
4627 "zh-chs": "最近15分鐘的CPU負載",
4628 "xloc": [
4625 - "default.handlebars->27->1580"
4629 + "default.handlebars->27->1606"
4630 ]
4631 },
4632 {
@@ -4639,7 +4643,7 @@
4643 "ru": "Загрузка CPU за последние 5 минут",
4644 "zh-chs": "最近5分鐘的CPU負載",
4645 "xloc": [
4642 - "default.handlebars->27->1579"
4646 + "default.handlebars->27->1605"
4647 ]
4648 },
4649 {
@@ -4656,7 +4660,7 @@
4660 "ru": "Загрузка CPU за последнюю минуту",
4661 "zh-chs": "最後一分鐘的CPU負載",
4662 "xloc": [
4659 - "default.handlebars->27->1578"
4663 + "default.handlebars->27->1604"
4664 ]
4665 },
4666 {
@@ -4673,8 +4677,8 @@
4677 "ru": "CR+LF",
4678 "zh-chs": "CR +低頻",
4679 "xloc": [
4676 - "default.handlebars->27->684",
4677 - "default.handlebars->27->693",
4680 + "default.handlebars->27->696",
4681 + "default.handlebars->27->705",
4682 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
4683 ]
4684 },
@@ -4692,8 +4696,8 @@
4696 "ru": "Формат CSV",
4697 "zh-chs": "CSV格式",
4698 "xloc": [
4695 - "default.handlebars->27->1325",
4696 - "default.handlebars->27->1380",
4699 + "default.handlebars->27->1339",
4700 + "default.handlebars->27->1394",
4701 "default.handlebars->27->390"
4702 ]
4703 },
@@ -4711,7 +4715,7 @@
4715 "ru": "Ошибка вызова",
4716 "zh-chs": "通話錯誤",
4717 "xloc": [
4714 - "default.handlebars->27->1626"
4718 + "default.handlebars->27->1652"
4719 ]
4720 },
4721 {
@@ -4730,7 +4734,7 @@
4734 "xloc": [
4735 "default-mobile.handlebars->9->44",
4736 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
4733 - "default.handlebars->27->1076",
4737 + "default.handlebars->27->1088",
4738 "default.handlebars->container->dialog->idx_dlgButtonBar",
4739 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
4740 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -4752,7 +4756,7 @@
4756 "ru": "Объем / Скорость",
4757 "zh-chs": "容量/速度",
4758 "xloc": [
4755 - "default.handlebars->27->787"
4759 + "default.handlebars->27->799"
4760 ]
4761 },
4762 {
@@ -4769,7 +4773,7 @@
4773 "ru": "Каталонский",
4774 "zh-chs": "加泰羅尼亞語",
4775 "xloc": [
4772 - "default.handlebars->27->857"
4776 + "default.handlebars->27->869"
4777 ]
4778 },
4779 {
@@ -4803,7 +4807,7 @@
4807 "ru": "Чаморро",
4808 "zh-chs": "查莫羅",
4809 "xloc": [
4806 - "default.handlebars->27->858"
4810 + "default.handlebars->27->870"
4811 ]
4812 },
4813 {
@@ -4820,7 +4824,7 @@
4824 "ru": "Смена email для {0}",
4825 "zh-chs": "更改{0}的電子郵件",
4826 "xloc": [
4823 - "default.handlebars->27->1507"
4827 + "default.handlebars->27->1533"
4828 ]
4829 },
4830 {
@@ -4837,9 +4841,9 @@
4841 "ru": "Смена группы",
4842 "zh-chs": "變更組",
4843 "xloc": [
4840 - "default.handlebars->27->508",
4841 - "default.handlebars->27->612",
4842 - "default.handlebars->27->613"
4844 + "default.handlebars->27->520",
4845 + "default.handlebars->27->624",
4846 + "default.handlebars->27->625"
4847 ]
4848 },
4849 {
@@ -4857,8 +4861,8 @@
4861 "zh-chs": "更改密碼",
4862 "xloc": [
4863 "default-mobile.handlebars->9->52",
4860 - "default.handlebars->27->1052",
4861 - "default.handlebars->27->1500"
4864 + "default.handlebars->27->1064",
4865 + "default.handlebars->27->1526"
4866 ]
4867 },
4868 {
@@ -4875,7 +4879,7 @@
4879 "ru": "Смена пароля для {0}",
4880 "zh-chs": "更改{0}的密碼",
4881 "xloc": [
4878 - "default.handlebars->27->1514"
4882 + "default.handlebars->27->1540"
4883 ]
4884 },
4885 {
@@ -4945,7 +4949,7 @@
4949 "zh-chs": "更改該用戶的密碼",
4950 "es": "Cambiar la contraseña para este usuario",
4951 "xloc": [
4948 - "default.handlebars->27->1499"
4952 + "default.handlebars->27->1525"
4953 ]
4954 },
4955 {
@@ -4979,7 +4983,7 @@
4983 "ru": "Измените адрес электронной почты вашей учетной записи здесь.",
4984 "zh-chs": "在此處更改您的帳戶電子郵件地址。",
4985 "xloc": [
4982 - "default.handlebars->27->1039"
4986 + "default.handlebars->27->1051"
4987 ]
4988 },
4989 {
@@ -4996,7 +5000,7 @@
5000 "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.",
5001 "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
5002 "xloc": [
4999 - "default.handlebars->27->1045"
5003 + "default.handlebars->27->1057"
5004 ]
5005 },
5006 {
@@ -5013,7 +5017,7 @@
5017 "ru": "Изменение языка потребует перезагрузить страницу.",
5018 "zh-chs": "更改語言將需要刷新頁面。",
5019 "xloc": [
5016 - "default.handlebars->27->1024"
5020 + "default.handlebars->27->1036"
5021 ]
5022 },
5023 {
@@ -5030,9 +5034,9 @@
5034 "ru": "Чат",
5035 "zh-chs": "聊天室",
5036 "xloc": [
5033 - "default.handlebars->27->1342",
5034 - "default.handlebars->27->554",
5035 - "default.handlebars->27->573"
5037 + "default.handlebars->27->1356",
5038 + "default.handlebars->27->566",
5039 + "default.handlebars->27->585"
5040 ]
5041 },
5042 {
@@ -5051,8 +5055,8 @@
5055 "xloc": [
5056 "default-mobile.handlebars->9->308",
5057 "default-mobile.handlebars->9->326",
5054 - "default.handlebars->27->1214",
5055 - "default.handlebars->27->1242"
5058 + "default.handlebars->27->1228",
5059 + "default.handlebars->27->1256"
5060 ]
5061 },
5062 {
@@ -5069,7 +5073,7 @@
5073 "ru": "Чеченский",
5074 "zh-chs": "車臣",
5075 "xloc": [
5072 - "default.handlebars->27->859"
5076 + "default.handlebars->27->871"
5077 ]
5078 },
5079 {
@@ -5137,8 +5141,8 @@
5141 "ru": "Проверка...",
5142 "zh-chs": "檢查...",
5143 "xloc": [
5140 - "default.handlebars->27->1620",
5141 - "default.handlebars->27->825"
5144 + "default.handlebars->27->1646",
5145 + "default.handlebars->27->837"
5146 ]
5147 },
5148 {
@@ -5155,7 +5159,7 @@
5159 "ru": "Китайский",
5160 "zh-chs": "中文",
5161 "xloc": [
5158 - "default.handlebars->27->860"
5162 + "default.handlebars->27->872"
5163 ]
5164 },
5165 {
@@ -5172,7 +5176,7 @@
5176 "zh-chs": "中文(香港)",
5177 "es": "Chino (Hong Kong)",
5178 "xloc": [
5175 - "default.handlebars->27->861"
5179 + "default.handlebars->27->873"
5180 ]
5181 },
5182 {
@@ -5189,7 +5193,7 @@
5193 "zh-chs": "中文(中國)",
5194 "es": "Chino (PRC)",
5195 "xloc": [
5192 - "default.handlebars->27->862"
5196 + "default.handlebars->27->874"
5197 ]
5198 },
5199 {
@@ -5204,7 +5208,7 @@
5208 "zh-chs": "简体中文)",
5209 "es": "Chino (simplificado)",
5210 "xloc": [
5207 - "default.handlebars->27->1022"
5211 + "default.handlebars->27->1034"
5212 ]
5213 },
5214 {
@@ -5221,7 +5225,7 @@
5225 "zh-chs": "中文(新加坡)",
5226 "es": "Chino (Singapur)",
5227 "xloc": [
5224 - "default.handlebars->27->863"
5228 + "default.handlebars->27->875"
5229 ]
5230 },
5231 {
@@ -5238,7 +5242,7 @@
5242 "zh-chs": "中文(台灣)",
5243 "es": "Chino (Taiwán)",
5244 "xloc": [
5241 - "default.handlebars->27->864"
5245 + "default.handlebars->27->876"
5246 ]
5247 },
5248 {
@@ -5273,7 +5277,7 @@
5277 "zh-chs": "楚瓦什",
5278 "es": "Chuvash",
5279 "xloc": [
5276 - "default.handlebars->27->865"
5280 + "default.handlebars->27->877"
5281 ]
5282 },
5283 {
@@ -5313,11 +5317,11 @@
5317 "default-mobile.handlebars->9->269",
5318 "default-mobile.handlebars->9->28",
5319 "default-mobile.handlebars->9->94",
5316 - "default.handlebars->27->1319",
5317 - "default.handlebars->27->719",
5318 - "default.handlebars->27->721",
5319 - "default.handlebars->27->723",
5320 - "default.handlebars->27->725",
5320 + "default.handlebars->27->1333",
5321 + "default.handlebars->27->731",
5322 + "default.handlebars->27->733",
5323 + "default.handlebars->27->735",
5324 + "default.handlebars->27->737",
5325 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
5326 "default.handlebars->container->column_l->p41->3->1",
5327 "messenger.handlebars->xbottom"
@@ -5354,7 +5358,7 @@
5358 "ru": "Очистить ядро",
5359 "zh-chs": "清除核心",
5360 "xloc": [
5357 - "default.handlebars->27->803"
5361 + "default.handlebars->27->815"
5362 ]
5363 },
5364 {
@@ -5385,7 +5389,7 @@
5389 "zh-chs": "清除此通知",
5390 "es": "Borrar esta notificación",
5391 "xloc": [
5388 - "default.handlebars->27->1550"
5392 + "default.handlebars->27->1576"
5393 ]
5394 },
5395 {
@@ -5476,7 +5480,7 @@
5480 "zh-chs": "單擊確定將驗證郵件發送到:",
5481 "xloc": [
5482 "default-mobile.handlebars->9->37",
5479 - "default.handlebars->27->1036"
5483 + "default.handlebars->27->1048"
5484 ]
5485 },
5486 {
@@ -5510,7 +5514,7 @@
5514 "ru": "Режим управления клиентом (CCM)",
5515 "zh-chs": "客戶端控制模式(CCM)",
5516 "xloc": [
5513 - "default.handlebars->27->767"
5517 + "default.handlebars->27->779"
5518 ]
5519 },
5520 {
@@ -5527,8 +5531,8 @@
5531 "ru": "Клиент инициировал удаленный доступ",
5532 "zh-chs": "客戶端啟動的遠程訪問",
5533 "xloc": [
5530 - "default.handlebars->27->1154",
5531 - "default.handlebars->27->1159"
5534 + "default.handlebars->27->1166",
5535 + "default.handlebars->27->1171"
5536 ]
5537 },
5538 {
@@ -5565,7 +5569,7 @@
5569 "default-mobile.handlebars->9->26",
5570 "default.handlebars->27->117",
5571 "default.handlebars->27->125",
5568 - "default.handlebars->27->677"
5572 + "default.handlebars->27->689"
5573 ]
5574 },
5575 {
@@ -5600,8 +5604,8 @@
5604 "ru": "Общие группы устройств",
5605 "zh-chs": "通用設備組",
5606 "xloc": [
5603 - "default.handlebars->27->1441",
5604 - "default.handlebars->27->1524"
5607 + "default.handlebars->27->1455",
5608 + "default.handlebars->27->1550"
5609 ]
5610 },
5611 {
@@ -5618,7 +5622,7 @@
5622 "zh-chs": "通用設備",
5623 "es": "Dispositivos comunes",
5624 "xloc": [
5621 - "default.handlebars->27->1518"
5625 + "default.handlebars->27->1544"
5626 ]
5627 },
5628 {
@@ -5636,7 +5640,7 @@
5640 "zh-chs": "將{1}入口{2}中的{0}限製到此位置?",
5641 "xloc": [
5642 "default-mobile.handlebars->9->89",
5639 - "default.handlebars->27->1314"
5643 + "default.handlebars->27->1328"
5644 ]
5645 },
5646 {
@@ -5655,12 +5659,12 @@
5659 "xloc": [
5660 "default-mobile.handlebars->9->223",
5661 "default-mobile.handlebars->9->288",
5658 - "default.handlebars->27->1168",
5659 - "default.handlebars->27->1367",
5660 - "default.handlebars->27->1453",
5662 + "default.handlebars->27->1180",
5663 + "default.handlebars->27->1381",
5664 + "default.handlebars->27->1467",
5665 "default.handlebars->27->387",
5662 - "default.handlebars->27->607",
5663 - "default.handlebars->27->616"
5666 + "default.handlebars->27->619",
5667 + "default.handlebars->27->628"
5668 ]
5669 },
5670 {
@@ -5678,7 +5682,7 @@
5682 "zh-chs": "確認將1個副本複製到此位置?",
5683 "xloc": [
5684 "default-mobile.handlebars->9->258",
5681 - "default.handlebars->27->714"
5685 + "default.handlebars->27->726"
5686 ]
5687 },
5688 {
@@ -5696,14 +5700,14 @@
5700 "zh-chs": "確認{0}個條目的副本到此位置?",
5701 "xloc": [
5702 "default-mobile.handlebars->9->257",
5699 - "default.handlebars->27->713"
5703 + "default.handlebars->27->725"
5704 ]
5705 },
5706 {
5707 "en": "Confirm delete selected account(s)?",
5708 "nl": "Bevestig verwijdering geselecteerde account(s)?",
5709 "xloc": [
5706 - "default.handlebars->27->1366"
5710 + "default.handlebars->27->1380"
5711 ]
5712 },
5713 {
@@ -5737,7 +5741,7 @@
5741 "zh-chs": "確認刪除用戶{0}?",
5742 "es": "Confirmar la eliminación del usuario {0}?",
5743 "xloc": [
5740 - "default.handlebars->27->1516"
5744 + "default.handlebars->27->1542"
5745 ]
5746 },
5747 {
@@ -5755,7 +5759,7 @@
5759 "zh-chs": "確認將1個入口移動到此位置?",
5760 "xloc": [
5761 "default-mobile.handlebars->9->260",
5758 - "default.handlebars->27->716"
5762 + "default.handlebars->27->728"
5763 ]
5764 },
5765 {
@@ -5773,7 +5777,7 @@
5777 "zh-chs": "確認將{0}個條目移到此位置?",
5778 "xloc": [
5779 "default-mobile.handlebars->9->259",
5776 - "default.handlebars->27->715"
5780 + "default.handlebars->27->727"
5781 ]
5782 },
5783 {
@@ -5790,7 +5794,7 @@
5794 "ru": "Подтвердить перезапись?",
5795 "zh-chs": "確認覆蓋?",
5796 "xloc": [
5793 - "default.handlebars->27->1313"
5797 + "default.handlebars->27->1327"
5798 ]
5799 },
5800 {
@@ -5808,7 +5812,7 @@
5812 "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?",
5813 "xloc": [
5814 "default-mobile.handlebars->9->36",
5811 - "default.handlebars->27->815"
5815 + "default.handlebars->27->827"
5816 ]
5817 },
5818 {
@@ -5825,8 +5829,8 @@
5829 "ru": "Подтвердить удаление группы устройств {0}?",
5830 "zh-chs": "確認刪除設備組{0}?",
5831 "xloc": [
5828 - "default.handlebars->27->1448",
5829 - "default.handlebars->27->1545"
5832 + "default.handlebars->27->1462",
5833 + "default.handlebars->27->1571"
5834 ]
5835 },
5836 {
@@ -5840,7 +5844,7 @@
5844 "zh-chs": "确认移除设备{0}?",
5845 "es": "Confirmar la eliminación del dispositivo {0}?",
5846 "xloc": [
5843 - "default.handlebars->27->1536"
5847 + "default.handlebars->27->1562"
5848 ]
5849 },
5850 {
@@ -5857,7 +5861,7 @@
5861 "ru": "Подтвердить удаление группы {0}?",
5862 "zh-chs": "確認刪除組{0}?",
5863 "xloc": [
5860 - "default.handlebars->27->1541"
5864 + "default.handlebars->27->1567"
5865 ]
5866 },
5867 {
@@ -5875,9 +5879,9 @@
5879 "zh-chs": "確認刪除用戶{0}?",
5880 "xloc": [
5881 "default-mobile.handlebars->9->334",
5878 - "default.handlebars->27->1251",
5879 - "default.handlebars->27->1456",
5880 - "default.handlebars->27->1538"
5882 + "default.handlebars->27->1265",
5883 + "default.handlebars->27->1470",
5884 + "default.handlebars->27->1564"
5885 ]
5886 },
5887 {
@@ -5897,8 +5901,8 @@
5901 "default-mobile.handlebars->9->237",
5902 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
5903 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
5900 - "default.handlebars->27->1107",
5901 - "default.handlebars->27->696",
5904 + "default.handlebars->27->1119",
5905 + "default.handlebars->27->708",
5906 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
5907 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
5908 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -5937,8 +5941,8 @@
5941 "ru": "Подключиться к серверу",
5942 "zh-chs": "連接到服務器",
5943 "xloc": [
5940 - "default.handlebars->27->1158",
5941 - "default.handlebars->27->1162"
5944 + "default.handlebars->27->1170",
5945 + "default.handlebars->27->1174"
5946 ]
5947 },
5948 {
@@ -6009,7 +6013,7 @@
6013 "ru": "Подключено Intel&reg; AMT",
6014 "zh-chs": "連接的英特爾&reg;AMT",
6015 "xloc": [
6012 - "default.handlebars->27->1568"
6016 + "default.handlebars->27->1594"
6017 ]
6018 },
6019 {
@@ -6026,7 +6030,7 @@
6030 "ru": "Подключенные пользователи",
6031 "zh-chs": "關聯用戶",
6032 "xloc": [
6029 - "default.handlebars->27->1573"
6033 + "default.handlebars->27->1599"
6034 ]
6035 },
6036 {
@@ -6043,7 +6047,7 @@
6047 "zh-chs": "現在已連接",
6048 "es": "Conectado ahora",
6049 "xloc": [
6046 - "default.handlebars->27->746"
6050 + "default.handlebars->27->758"
6051 ]
6052 },
6053 {
@@ -6083,7 +6087,7 @@
6087 "default.handlebars->27->195",
6088 "default.handlebars->27->198",
6089 "default.handlebars->27->204",
6086 - "default.handlebars->27->737",
6090 + "default.handlebars->27->749",
6091 "default.handlebars->27->9",
6092 "xterm.handlebars->9->2"
6093 ]
@@ -6102,7 +6106,7 @@
6106 "ru": "Подключений ",
6107 "zh-chs": "連接數",
6108 "xloc": [
6105 - "default.handlebars->27->1584"
6109 + "default.handlebars->27->1610"
6110 ]
6111 },
6112 {
@@ -6119,7 +6123,7 @@
6123 "ru": "Ретранслятор подключения",
6124 "zh-chs": "連接繼電器",
6125 "xloc": [
6122 - "default.handlebars->27->1612"
6126 + "default.handlebars->27->1638"
6127 ]
6128 },
6129 {
@@ -6171,9 +6175,9 @@
6175 "zh-chs": "連接性",
6176 "xloc": [
6177 "default-mobile.handlebars->9->198",
6174 - "default.handlebars->27->1282",
6178 + "default.handlebars->27->1296",
6179 "default.handlebars->27->186",
6176 - "default.handlebars->27->499",
6180 + "default.handlebars->27->511",
6181 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
6182 ]
6183 },
@@ -6191,8 +6195,8 @@
6195 "ru": "Консоль",
6196 "zh-chs": "安慰",
6197 "xloc": [
6194 - "default.handlebars->27->549",
6195 - "default.handlebars->27->568",
6198 + "default.handlebars->27->561",
6199 + "default.handlebars->27->580",
6200 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
6201 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
6202 "default.handlebars->contextMenu->cxconsole"
@@ -6226,8 +6230,8 @@
6230 "zh-chs": "控制",
6231 "es": "Control",
6232 "xloc": [
6229 - "default.handlebars->27->548",
6230 - "default.handlebars->27->567"
6233 + "default.handlebars->27->560",
6234 + "default.handlebars->27->579"
6235 ]
6236 },
6237 {
@@ -6244,7 +6248,7 @@
6248 "ru": "Cookie-кодировщик",
6249 "zh-chs": "Cookie編碼器",
6250 "xloc": [
6247 - "default.handlebars->27->1598"
6251 + "default.handlebars->27->1624"
6252 ]
6253 },
6254 {
@@ -6366,8 +6370,8 @@
6370 "ru": "Скопировать ссылку в буфер обмена",
6371 "zh-chs": "複製鏈接到剪貼板",
6372 "xloc": [
6369 - "default.handlebars->27->1287",
6373 "default.handlebars->27->1301",
6374 + "default.handlebars->27->1315",
6375 "default.handlebars->27->299"
6376 ]
6377 },
@@ -6545,7 +6549,7 @@
6549 "ru": "Основной сервер",
6550 "zh-chs": "核心服務器",
6551 "xloc": [
6548 - "default.handlebars->27->1597"
6552 + "default.handlebars->27->1623"
6553 ]
6554 },
6555 {
@@ -6562,7 +6566,7 @@
6566 "zh-chs": "科西嘉人",
6567 "es": "Corso",
6568 "xloc": [
6565 - "default.handlebars->27->866"
6569 + "default.handlebars->27->878"
6570 ]
6571 },
6572 {
@@ -6579,7 +6583,7 @@
6583 "ru": "Создать учетную запись",
6584 "zh-chs": "創建帳號",
6585 "xloc": [
6582 - "default.handlebars->27->1400",
6586 + "default.handlebars->27->1414",
6587 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
6588 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
6589 ]
@@ -6615,7 +6619,7 @@
6619 "ru": "Создать группу пользователей",
6620 "zh-chs": "創建用戶組",
6621 "xloc": [
6618 - "default.handlebars->27->1424"
6622 + "default.handlebars->27->1438"
6623 ]
6624 },
6625 {
@@ -6632,7 +6636,7 @@
6636 "ru": "Создайте новую группу устройств, используя параметры ниже.",
6637 "zh-chs": "使用以下選項創建一個新的設備組。",
6638 "xloc": [
6635 - "default.handlebars->27->1059"
6639 + "default.handlebars->27->1071"
6640 ]
6641 },
6642 {
@@ -6666,7 +6670,7 @@
6670 "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:",
6671 "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:",
6672 "xloc": [
6669 - "default.handlebars->27->1371"
6673 + "default.handlebars->27->1385"
6674 ]
6675 },
6676 {
@@ -6701,7 +6705,7 @@
6705 "ru": "Создано",
6706 "zh-chs": "創建",
6707 "xloc": [
6704 - "default.handlebars->27->1476"
6708 + "default.handlebars->27->1490"
6709 ]
6710 },
6711 {
@@ -6736,7 +6740,7 @@
6740 "zh-chs": "克里",
6741 "es": "Cree",
6742 "xloc": [
6739 - "default.handlebars->27->867"
6743 + "default.handlebars->27->879"
6744 ]
6745 },
6746 {
@@ -6753,7 +6757,7 @@
6757 "zh-chs": "克羅地亞語",
6758 "es": "Croata",
6759 "xloc": [
6756 - "default.handlebars->27->868"
6760 + "default.handlebars->27->880"
6761 ]
6762 },
6763 {
@@ -6894,7 +6898,7 @@
6898 "zh-chs": "捷克文",
6899 "es": "Checo",
6900 "xloc": [
6897 - "default.handlebars->27->869"
6901 + "default.handlebars->27->881"
6902 ]
6903 },
6904 {
@@ -6928,7 +6932,7 @@
6932 "zh-chs": "丹麥文",
6933 "es": "Danés",
6934 "xloc": [
6931 - "default.handlebars->27->870"
6935 + "default.handlebars->27->882"
6936 ]
6937 },
6938 {
@@ -6945,7 +6949,7 @@
6949 "ru": "DataChannel",
6950 "zh-chs": "數據通道",
6951 "xloc": [
6948 - "default.handlebars->27->653"
6952 + "default.handlebars->27->665"
6953 ]
6954 },
6955 {
@@ -6962,7 +6966,7 @@
6966 "ru": "Дата & Время",
6967 "zh-chs": "日期和時間",
6968 "xloc": [
6965 - "default.handlebars->27->1027"
6969 + "default.handlebars->27->1039"
6970 ]
6971 },
6972 {
@@ -6979,7 +6983,7 @@
6983 "ru": "День",
6984 "zh-chs": "天",
6985 "xloc": [
6982 - "default.handlebars->27->591"
6986 + "default.handlebars->27->603"
6987 ]
6988 },
6989 {
@@ -6996,7 +7000,7 @@
7000 "ru": "Деактивировать режим управления клиентом (CCM)",
7001 "zh-chs": "停用客戶端控制模式(CCM)",
7002 "xloc": [
6999 - "default.handlebars->27->1146"
7003 + "default.handlebars->27->1158"
7004 ]
7005 },
7006 {
@@ -7035,9 +7039,9 @@
7039 "default-mobile.handlebars->9->84",
7040 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
7041 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
7038 - "default.handlebars->27->1308",
7042 + "default.handlebars->27->1322",
7043 "default.handlebars->27->417",
7040 - "default.handlebars->27->706",
7044 + "default.handlebars->27->718",
7045 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
7046 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
7047 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -7061,14 +7065,14 @@
7065 "zh-chs": "刪除帳戶",
7066 "xloc": [
7067 "default-mobile.handlebars->9->46",
7064 - "default.handlebars->27->1044"
7068 + "default.handlebars->27->1056"
7069 ]
7070 },
7071 {
7072 "en": "Delete Accounts",
7073 "nl": "Verwijder accounts",
7074 "xloc": [
7071 - "default.handlebars->27->1368"
7075 + "default.handlebars->27->1382"
7076 ]
7077 },
7078 {
@@ -7086,7 +7090,7 @@
7090 "zh-chs": "刪除裝置",
7091 "xloc": [
7092 "default-mobile.handlebars->9->202",
7089 - "default.handlebars->27->510"
7093 + "default.handlebars->27->522"
7094 ]
7095 },
7096 {
@@ -7105,8 +7109,8 @@
7109 "xloc": [
7110 "default-mobile.handlebars->9->286",
7111 "default-mobile.handlebars->9->289",
7108 - "default.handlebars->27->1139",
7109 - "default.handlebars->27->1169"
7112 + "default.handlebars->27->1151",
7113 + "default.handlebars->27->1181"
7114 ]
7115 },
7116 {
@@ -7124,7 +7128,7 @@
7128 "zh-chs": "刪除節點",
7129 "xloc": [
7130 "default-mobile.handlebars->9->221",
7127 - "default.handlebars->27->617"
7131 + "default.handlebars->27->629"
7132 ]
7133 },
7134 {
@@ -7158,7 +7162,7 @@
7162 "ru": "Удалить пользователя",
7163 "zh-chs": "刪除用戶",
7164 "xloc": [
7161 - "default.handlebars->27->1498"
7165 + "default.handlebars->27->1524"
7166 ]
7167 },
7168 {
@@ -7175,8 +7179,8 @@
7179 "ru": "Удалить группу пользователей",
7180 "zh-chs": "刪除用戶組",
7181 "xloc": [
7178 - "default.handlebars->27->1446",
7179 - "default.handlebars->27->1454"
7182 + "default.handlebars->27->1460",
7183 + "default.handlebars->27->1468"
7184 ]
7185 },
7186 {
@@ -7193,7 +7197,7 @@
7197 "ru": "Удалить пользователя {0}",
7198 "zh-chs": "刪除用戶{0}",
7199 "xloc": [
7196 - "default.handlebars->27->1515"
7200 + "default.handlebars->27->1541"
7201 ]
7202 },
7203 {
@@ -7211,7 +7215,7 @@
7215 "zh-chs": "刪除帳戶",
7216 "xloc": [
7217 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->7->0",
7214 - "default.handlebars->27->1364",
7218 + "default.handlebars->27->1378",
7219 "default.handlebars->container->column_l->p2->p2AccountActions->3->p2AccountPassActions->7"
7220 ]
7221 },
@@ -7265,8 +7269,8 @@
7269 "xloc": [
7270 "default-mobile.handlebars->9->252",
7271 "default-mobile.handlebars->9->86",
7268 - "default.handlebars->27->1310",
7269 - "default.handlebars->27->708"
7272 + "default.handlebars->27->1324",
7273 + "default.handlebars->27->720"
7274 ]
7275 },
7276 {
@@ -7283,7 +7287,7 @@
7287 "ru": "Удалить группу пользователей {0}?",
7288 "zh-chs": "刪除用戶組{0}?",
7289 "xloc": [
7286 - "default.handlebars->27->1452"
7290 + "default.handlebars->27->1466"
7291 ]
7292 },
7293 {
@@ -7302,8 +7306,8 @@
7306 "xloc": [
7307 "default-mobile.handlebars->9->251",
7308 "default-mobile.handlebars->9->85",
7305 - "default.handlebars->27->1309",
7306 - "default.handlebars->27->707"
7309 + "default.handlebars->27->1323",
7310 + "default.handlebars->27->719"
7311 ]
7312 },
7313 {
@@ -7403,17 +7407,17 @@
7407 "default-mobile.handlebars->9->278",
7408 "default-mobile.handlebars->9->291",
7409 "default-mobile.handlebars->9->63",
7406 - "default.handlebars->27->1064",
7407 - "default.handlebars->27->1088",
7408 - "default.handlebars->27->1171",
7409 - "default.handlebars->27->1423",
7410 - "default.handlebars->27->1428",
7411 - "default.handlebars->27->1430",
7412 - "default.handlebars->27->1450",
7410 + "default.handlebars->27->1076",
7411 + "default.handlebars->27->1100",
7412 + "default.handlebars->27->1183",
7413 + "default.handlebars->27->1437",
7414 + "default.handlebars->27->1442",
7415 + "default.handlebars->27->1444",
7416 + "default.handlebars->27->1464",
7417 "default.handlebars->27->457",
7418 "default.handlebars->27->458",
7415 - "default.handlebars->27->649",
7416 - "default.handlebars->27->752",
7419 + "default.handlebars->27->661",
7420 + "default.handlebars->27->764",
7421 "default.handlebars->27->78",
7422 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
7423 ]
@@ -7446,7 +7450,7 @@
7450 "ru": "Рабочий стол",
7451 "zh-chs": "桌面",
7452 "xloc": [
7449 - "default.handlebars->27->1173",
7453 + "default.handlebars->27->1188",
7454 "default.handlebars->27->423",
7455 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
7456 "default.handlebars->contextMenu->cxdesktop"
@@ -7483,7 +7487,9 @@
7487 "ru": "Уведомление на рабочем столе",
7488 "zh-chs": "桌面通知",
7489 "xloc": [
7486 - "default.handlebars->27->1098"
7490 + "default.handlebars->27->1110",
7491 + "default.handlebars->27->1505",
7492 + "default.handlebars->27->492"
7493 ]
7494 },
7495 {
@@ -7500,7 +7506,9 @@
7506 "ru": "Запрос рабочего стола",
7507 "zh-chs": "桌面提示",
7508 "xloc": [
7503 - "default.handlebars->27->1097"
7509 + "default.handlebars->27->1109",
7510 + "default.handlebars->27->1504",
7511 + "default.handlebars->27->491"
7512 ]
7513 },
7514 {
@@ -7517,7 +7525,9 @@
7525 "ru": "Запрос рабочего стола + панель инструментов",
7526 "zh-chs": "桌面提示+工具欄",
7527 "xloc": [
7520 - "default.handlebars->27->1095"
7528 + "default.handlebars->27->1107",
7529 + "default.handlebars->27->1502",
7530 + "default.handlebars->27->489"
7531 ]
7532 },
7533 {
@@ -7534,7 +7544,9 @@
7544 "ru": "Панель инструментов рабочего стола",
7545 "zh-chs": "桌面工具欄",
7546 "xloc": [
7537 - "default.handlebars->27->1096"
7547 + "default.handlebars->27->1108",
7548 + "default.handlebars->27->1503",
7549 + "default.handlebars->27->490"
7550 ]
7551 },
7552 {
@@ -7603,8 +7615,8 @@
7615 "ru": "Устройство",
7616 "zh-chs": "設備",
7617 "xloc": [
7606 - "default.handlebars->27->1195",
7607 - "default.handlebars->27->1521",
7618 + "default.handlebars->27->1209",
7619 + "default.handlebars->27->1547",
7620 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
7621 ]
7622 },
@@ -7623,7 +7635,7 @@
7635 "zh-chs": "設備動作",
7636 "xloc": [
7637 "default-mobile.handlebars->9->214",
7626 - "default.handlebars->27->590"
7638 + "default.handlebars->27->602"
7639 ]
7640 },
7641 {
@@ -7640,11 +7652,11 @@
7652 "ru": "Группа устройства",
7653 "zh-chs": "設備組",
7654 "xloc": [
7643 - "default.handlebars->27->1191",
7644 - "default.handlebars->27->1193",
7645 - "default.handlebars->27->1194",
7646 - "default.handlebars->27->1444",
7647 - "default.handlebars->27->1527"
7655 + "default.handlebars->27->1205",
7656 + "default.handlebars->27->1207",
7657 + "default.handlebars->27->1208",
7658 + "default.handlebars->27->1458",
7659 + "default.handlebars->27->1553"
7660 ]
7661 },
7662 {
@@ -7662,7 +7674,7 @@
7674 "zh-chs": "設備組用戶",
7675 "xloc": [
7676 "default-mobile.handlebars->9->332",
7665 - "default.handlebars->27->1249"
7677 + "default.handlebars->27->1263"
7678 ]
7679 },
7680 {
@@ -7680,10 +7692,10 @@
7692 "zh-chs": "設備組",
7693 "xloc": [
7694 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
7683 - "default.handlebars->27->1419",
7684 - "default.handlebars->27->1432",
7685 - "default.handlebars->27->1485",
7686 - "default.handlebars->27->1571",
7695 + "default.handlebars->27->1433",
7696 + "default.handlebars->27->1446",
7697 + "default.handlebars->27->1499",
7698 + "default.handlebars->27->1597",
7699 "default.handlebars->container->column_l->p2->9"
7700 ]
7701 },
@@ -7718,7 +7730,7 @@
7730 "ru": "Местонахождение устройства",
7731 "zh-chs": "設備位置",
7732 "xloc": [
7721 - "default.handlebars->27->618"
7733 + "default.handlebars->27->630"
7734 ]
7735 },
7736 {
@@ -7737,7 +7749,7 @@
7749 "xloc": [
7750 "default-mobile.handlebars->9->225",
7751 "default.handlebars->27->222",
7740 - "default.handlebars->27->647",
7752 + "default.handlebars->27->659",
7753 "player.handlebars->3->9"
7754 ]
7755 },
@@ -7755,7 +7767,7 @@
7767 "ru": "Уведомление устройства",
7768 "zh-chs": "設備通知",
7769 "xloc": [
7758 - "default.handlebars->27->581"
7770 + "default.handlebars->27->593"
7771 ]
7772 },
7773 {
@@ -7789,8 +7801,8 @@
7801 "ru": "Подключения устройств.",
7802 "zh-chs": "設備連接。",
7803 "xloc": [
7792 - "default.handlebars->27->1032",
7793 - "default.handlebars->27->1268"
7804 + "default.handlebars->27->1044",
7805 + "default.handlebars->27->1282"
7806 ]
7807 },
7808 {
@@ -7807,8 +7819,8 @@
7819 "ru": "Отключения устройств.",
7820 "zh-chs": "設備斷開連接。",
7821 "xloc": [
7810 - "default.handlebars->27->1033",
7811 - "default.handlebars->27->1269"
7822 + "default.handlebars->27->1045",
7823 + "default.handlebars->27->1283"
7824 ]
7825 },
7826 {
@@ -7825,7 +7837,7 @@
7837 "ru": "Примечания могут быть просмотрены и изменены другими администраторами.",
7838 "zh-chs": "其他設備組管理員可以查看和更改設備組註釋。",
7839 "xloc": [
7828 - "default.handlebars->27->579"
7840 + "default.handlebars->27->591"
7841 ]
7842 },
7843 {
@@ -8140,8 +8152,8 @@
8152 "xloc": [
8153 "default-mobile.handlebars->9->238",
8154 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8143 - "default.handlebars->27->1108",
8144 - "default.handlebars->27->697",
8155 + "default.handlebars->27->1120",
8156 + "default.handlebars->27->709",
8157 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
8158 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
8159 "xterm.handlebars->p11->deskarea0->deskarea1->3"
@@ -8223,7 +8235,7 @@
8235 "ru": "Отобразить имя группы устройств",
8236 "zh-chs": "顯示設備組名稱",
8237 "xloc": [
8226 - "default.handlebars->27->1031"
8238 + "default.handlebars->27->1043"
8239 ]
8240 },
8241 {
@@ -8240,7 +8252,7 @@
8252 "ru": "Отображаемое имя",
8253 "zh-chs": "顯示名稱",
8254 "xloc": [
8243 - "default.handlebars->27->668"
8255 + "default.handlebars->27->680"
8256 ]
8257 },
8258 {
@@ -8254,7 +8266,7 @@
8266 "zh-chs": "显示公共链接",
8267 "es": "Mostrar enlace público",
8268 "xloc": [
8257 - "default.handlebars->27->1286"
8269 + "default.handlebars->27->1300"
8270 ]
8271 },
8272 {
@@ -8271,7 +8283,7 @@
8283 "ru": "Ничего не делать",
8284 "zh-chs": "沒做什麼",
8285 "xloc": [
8274 - "default.handlebars->27->1152"
8286 + "default.handlebars->27->1164"
8287 ]
8288 },
8289 {
@@ -8306,8 +8318,8 @@
8318 "ru": "Не настраивать",
8319 "zh-chs": "不要配置",
8320 "xloc": [
8309 - "default.handlebars->27->1156",
8310 - "default.handlebars->27->1161"
8321 + "default.handlebars->27->1168",
8322 + "default.handlebars->27->1173"
8323 ]
8324 },
8325 {
@@ -8324,7 +8336,7 @@
8336 "ru": "Не подключаться к серверу",
8337 "zh-chs": "不連接服務器",
8338 "xloc": [
8327 - "default.handlebars->27->1157"
8339 + "default.handlebars->27->1169"
8340 ]
8341 },
8342 {
@@ -8378,7 +8390,7 @@
8390 "zh-chs": "下載文件",
8391 "xloc": [
8392 "default-mobile.handlebars->9->271",
8381 - "default.handlebars->27->726"
8393 + "default.handlebars->27->738"
8394 ]
8395 },
8396 {
@@ -8412,7 +8424,7 @@
8424 "ru": "Скачать MeshCmd",
8425 "zh-chs": "下載MeshCmd",
8426 "xloc": [
8415 - "default.handlebars->27->638"
8427 + "default.handlebars->27->650"
8428 ]
8429 },
8430 {
@@ -8463,7 +8475,7 @@
8475 "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.",
8476 "zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。",
8477 "xloc": [
8466 - "default.handlebars->27->631"
8478 + "default.handlebars->27->643"
8479 ]
8480 },
8481 {
@@ -8531,7 +8543,7 @@
8543 "ru": "Скачать события состояния питания",
8544 "zh-chs": "下載電源事件",
8545 "xloc": [
8534 - "default.handlebars->27->592"
8546 + "default.handlebars->27->604"
8547 ]
8548 },
8549 {
@@ -8599,7 +8611,7 @@
8611 "ru": "Скачать список событий в одном из форматов ниже.",
8612 "zh-chs": "使用以下一種文件格式下載事件列表。",
8613 "xloc": [
8602 - "default.handlebars->27->1324"
8614 + "default.handlebars->27->1338"
8615 ]
8616 },
8617 {
@@ -8616,7 +8628,7 @@
8628 "ru": "Скачать список пользователей в одном из форматов ниже.",
8629 "zh-chs": "使用以下一種文件格式下載用戶列表。",
8630 "xloc": [
8619 - "default.handlebars->27->1379"
8631 + "default.handlebars->27->1393"
8632 ]
8633 },
8634 {
@@ -8702,7 +8714,7 @@
8714 "ru": "Скопировать агент",
8715 "zh-chs": "代理重複",
8716 "xloc": [
8705 - "default.handlebars->27->1567"
8717 + "default.handlebars->27->1593"
8718 ]
8719 },
8720 {
@@ -8736,7 +8748,7 @@
8748 "ru": "Скопировать группу пользователей",
8749 "zh-chs": "重複的用戶組",
8750 "xloc": [
8739 - "default.handlebars->27->1425"
8751 + "default.handlebars->27->1439"
8752 ]
8753 },
8754 {
@@ -8770,7 +8782,7 @@
8782 "ru": "Во время активации агент будет иметь доступ к паролю администратора.",
8783 "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。",
8784 "xloc": [
8773 - "default.handlebars->27->1166"
8785 + "default.handlebars->27->1178"
8786 ]
8787 },
8788 {
@@ -8787,7 +8799,7 @@
8799 "zh-chs": "荷蘭語(比利時)",
8800 "es": "Holandés (belga)",
8801 "xloc": [
8790 - "default.handlebars->27->872"
8802 + "default.handlebars->27->884"
8803 ]
8804 },
8805 {
@@ -8804,7 +8816,7 @@
8816 "zh-chs": "荷蘭語(標準)",
8817 "es": "Holandés (estándar)",
8818 "xloc": [
8807 - "default.handlebars->27->871"
8819 + "default.handlebars->27->883"
8820 ]
8821 },
8822 {
@@ -8891,7 +8903,7 @@
8903 "zh-chs": "編輯裝置",
8904 "xloc": [
8905 "default-mobile.handlebars->9->230",
8894 - "default.handlebars->27->652"
8906 + "default.handlebars->27->664"
8907 ]
8908 },
8909 {
@@ -8911,9 +8923,9 @@
8923 "default-mobile.handlebars->9->292",
8924 "default-mobile.handlebars->9->294",
8925 "default-mobile.handlebars->9->312",
8914 - "default.handlebars->27->1172",
8915 - "default.handlebars->27->1199",
8916 - "default.handlebars->27->1227"
8926 + "default.handlebars->27->1184",
8927 + "default.handlebars->27->1213",
8928 + "default.handlebars->27->1241"
8929 ]
8930 },
8931 {
@@ -8930,7 +8942,7 @@
8942 "ru": "Редактировать функции группы устройств",
8943 "zh-chs": "編輯設備組功能",
8944 "xloc": [
8933 - "default.handlebars->27->1186"
8945 + "default.handlebars->27->1200"
8946 ]
8947 },
8948 {
@@ -8947,7 +8959,7 @@
8959 "ru": "Редактировать права группы устройств",
8960 "zh-chs": "編輯設備組權限",
8961 "xloc": [
8950 - "default.handlebars->27->1224"
8962 + "default.handlebars->27->1238"
8963 ]
8964 },
8965 {
@@ -8964,7 +8976,7 @@
8976 "ru": "Редактировать согласие пользователя группы устройств",
8977 "zh-chs": "編輯設備組用戶同意",
8978 "xloc": [
8967 - "default.handlebars->27->1183"
8979 + "default.handlebars->27->1185"
8980 ]
8981 },
8982 {
@@ -8982,7 +8994,7 @@
8994 "zh-chs": "編輯設備說明",
8995 "xloc": [
8996 "default-mobile.handlebars->9->306",
8985 - "default.handlebars->27->1212"
8997 + "default.handlebars->27->1226"
8998 ]
8999 },
9000 {
@@ -8996,7 +9008,13 @@
9008 "zh-chs": "编辑设备权限",
9009 "es": "Editar los permisos del dispositivo",
9010 "xloc": [
8999 - "default.handlebars->27->1221"
9011 + "default.handlebars->27->1235"
9012 + ]
9013 + },
9014 + {
9015 + "en": "Edit Device User Consent",
9016 + "xloc": [
9017 + "default.handlebars->27->1187"
9018 ]
9019 },
9020 {
@@ -9010,7 +9028,7 @@
9028 "zh-chs": "编辑组",
9029 "es": "Editar Grupo",
9030 "xloc": [
9013 - "default.handlebars->27->558"
9031 + "default.handlebars->27->570"
9032 ]
9033 },
9034 {
@@ -9030,7 +9048,7 @@
9048 "default-mobile.handlebars->9->220",
9049 "default.handlebars->27->472",
9050 "default.handlebars->27->475",
9033 - "default.handlebars->27->599"
9051 + "default.handlebars->27->611"
9052 ]
9053 },
9054 {
@@ -9048,7 +9066,13 @@
9066 "zh-chs": "編輯筆記",
9067 "xloc": [
9068 "default-mobile.handlebars->9->319",
9051 - "default.handlebars->27->1234"
9069 + "default.handlebars->27->1248"
9070 + ]
9071 + },
9072 + {
9073 + "en": "Edit User Consent",
9074 + "xloc": [
9075 + "default.handlebars->27->1186"
9076 ]
9077 },
9078 {
@@ -9065,7 +9089,7 @@
9089 "ru": "Редактировать права пользователя для группы устройств",
9090 "zh-chs": "編輯用戶設備組權限",
9091 "xloc": [
9068 - "default.handlebars->27->1225"
9092 + "default.handlebars->27->1239"
9093 ]
9094 },
9095 {
@@ -9079,7 +9103,7 @@
9103 "zh-chs": "编辑用户设备权限",
9104 "es": "Editar los permisos del usuario del dispositivo",
9105 "xloc": [
9082 - "default.handlebars->27->1222"
9106 + "default.handlebars->27->1236"
9107 ]
9108 },
9109 {
@@ -9096,7 +9120,7 @@
9120 "ru": "Редактировать группу пользователей",
9121 "zh-chs": "編輯用戶組",
9122 "xloc": [
9099 - "default.handlebars->27->1451"
9123 + "default.handlebars->27->1465"
9124 ]
9125 },
9126 {
@@ -9131,10 +9155,10 @@
9155 "zh-chs": "電子郵件",
9156 "xloc": [
9157 "default-mobile.handlebars->9->40",
9134 - "default.handlebars->27->1391",
9135 - "default.handlebars->27->1472",
9136 - "default.handlebars->27->1473",
9137 - "default.handlebars->27->1503",
9158 + "default.handlebars->27->1405",
9159 + "default.handlebars->27->1486",
9160 + "default.handlebars->27->1487",
9161 + "default.handlebars->27->1529",
9162 "default.handlebars->27->270",
9163 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
9164 "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3"
@@ -9155,7 +9179,7 @@
9179 "zh-chs": "電郵地址變更",
9180 "xloc": [
9181 "default-mobile.handlebars->9->41",
9158 - "default.handlebars->27->1040"
9182 + "default.handlebars->27->1052"
9183 ]
9184 },
9185 {
@@ -9173,7 +9197,7 @@
9197 "es": "Email de autenticación",
9198 "xloc": [
9199 "default-mobile.handlebars->9->30",
9176 - "default.handlebars->27->809"
9200 + "default.handlebars->27->821"
9201 ]
9202 },
9203 {
@@ -9187,7 +9211,7 @@
9211 "zh-chs": "电子邮件流量",
9212 "es": "Tráfico de correo electrónico",
9213 "xloc": [
9190 - "default.handlebars->27->1606"
9214 + "default.handlebars->27->1632"
9215 ]
9216 },
9217 {
@@ -9205,7 +9229,7 @@
9229 "zh-chs": "電子郵件驗證",
9230 "xloc": [
9231 "default-mobile.handlebars->9->39",
9208 - "default.handlebars->27->1038"
9232 + "default.handlebars->27->1050"
9233 ]
9234 },
9235 {
@@ -9227,7 +9251,7 @@
9251 "zh-chs": "邮件未验证",
9252 "es": "El email no esta no esta verficado",
9253 "xloc": [
9230 - "default.handlebars->27->1353"
9254 + "default.handlebars->27->1367"
9255 ]
9256 },
9257 {
@@ -9244,8 +9268,8 @@
9268 "ru": "Email подтвержден",
9269 "zh-chs": "電子郵件已驗證",
9270 "xloc": [
9247 - "default.handlebars->27->1354",
9248 - "default.handlebars->27->1469"
9271 + "default.handlebars->27->1368",
9272 + "default.handlebars->27->1483"
9273 ]
9274 },
9275 {
@@ -9262,7 +9286,7 @@
9286 "ru": "Email подтвержден.",
9287 "zh-chs": "電子郵件已驗證。",
9288 "xloc": [
9265 - "default.handlebars->27->1397"
9289 + "default.handlebars->27->1411"
9290 ]
9291 },
9292 {
@@ -9279,7 +9303,7 @@
9303 "ru": "Email не подтвержден",
9304 "zh-chs": "電子郵件未驗證",
9305 "xloc": [
9282 - "default.handlebars->27->1470"
9306 + "default.handlebars->27->1484"
9307 ]
9308 },
9309 {
@@ -9336,7 +9360,7 @@
9360 "zh-chs": "啟用邀請代碼",
9361 "es": "Habilitar Códigos de Invitación",
9362 "xloc": [
9339 - "default.handlebars->27->1253"
9363 + "default.handlebars->27->1267"
9364 ]
9365 },
9366 {
@@ -9371,7 +9395,7 @@
9395 "es": "Habilitar autenticación de dos factores por correo.",
9396 "xloc": [
9397 "default-mobile.handlebars->9->32",
9374 - "default.handlebars->27->811"
9398 + "default.handlebars->27->823"
9399 ]
9400 },
9401 {
@@ -9422,7 +9446,7 @@
9446 "ru": "Английский",
9447 "zh-chs": "英語",
9448 "xloc": [
9425 - "default.handlebars->27->873"
9449 + "default.handlebars->27->885"
9450 ]
9451 },
9452 {
@@ -9439,7 +9463,7 @@
9463 "zh-chs": "英文(澳洲)",
9464 "es": "Inglés (Australia)",
9465 "xloc": [
9442 - "default.handlebars->27->874"
9466 + "default.handlebars->27->886"
9467 ]
9468 },
9469 {
@@ -9456,7 +9480,7 @@
9480 "zh-chs": "英語(伯利茲)",
9481 "es": "Inglés (belice)",
9482 "xloc": [
9459 - "default.handlebars->27->875"
9483 + "default.handlebars->27->887"
9484 ]
9485 },
9486 {
@@ -9473,7 +9497,7 @@
9497 "zh-chs": "英文(加拿大)",
9498 "es": "Inglés (Canadá)",
9499 "xloc": [
9476 - "default.handlebars->27->876"
9500 + "default.handlebars->27->888"
9501 ]
9502 },
9503 {
@@ -9490,7 +9514,7 @@
9514 "zh-chs": "英文(愛爾蘭)",
9515 "es": "Inglés (Irlanda)",
9516 "xloc": [
9493 - "default.handlebars->27->877"
9517 + "default.handlebars->27->889"
9518 ]
9519 },
9520 {
@@ -9507,7 +9531,7 @@
9531 "zh-chs": "英文(牙買加)",
9532 "es": "Inglés (Jamaica)",
9533 "xloc": [
9510 - "default.handlebars->27->878"
9534 + "default.handlebars->27->890"
9535 ]
9536 },
9537 {
@@ -9524,7 +9548,7 @@
9548 "zh-chs": "英文(紐西蘭)",
9549 "es": "Inglés (Nueva Zelanda)",
9550 "xloc": [
9527 - "default.handlebars->27->879"
9551 + "default.handlebars->27->891"
9552 ]
9553 },
9554 {
@@ -9541,7 +9565,7 @@
9565 "zh-chs": "英文(菲律賓)",
9566 "es": "Inglés (Filipinas)",
9567 "xloc": [
9544 - "default.handlebars->27->880"
9568 + "default.handlebars->27->892"
9569 ]
9570 },
9571 {
@@ -9558,7 +9582,7 @@
9582 "zh-chs": "英語(南非)",
9583 "es": "Inglés (Sudáfrica)",
9584 "xloc": [
9561 - "default.handlebars->27->881"
9585 + "default.handlebars->27->893"
9586 ]
9587 },
9588 {
@@ -9575,7 +9599,7 @@
9599 "zh-chs": "英文(特立尼達和多巴哥)",
9600 "es": "Inglés (Trinidad y Tobago)",
9601 "xloc": [
9578 - "default.handlebars->27->882"
9602 + "default.handlebars->27->894"
9603 ]
9604 },
9605 {
@@ -9592,7 +9616,7 @@
9616 "zh-chs": "英文(英國)",
9617 "es": "Inglés (Reino Unido)",
9618 "xloc": [
9595 - "default.handlebars->27->883"
9619 + "default.handlebars->27->895"
9620 ]
9621 },
9622 {
@@ -9609,7 +9633,7 @@
9633 "zh-chs": "美國英語)",
9634 "es": "Inglés (Estados Unidos)",
9635 "xloc": [
9612 - "default.handlebars->27->884"
9636 + "default.handlebars->27->896"
9637 ]
9638 },
9639 {
@@ -9626,7 +9650,7 @@
9650 "zh-chs": "英文(津巴布韋)",
9651 "es": "Inglés (Zimbabwe)",
9652 "xloc": [
9629 - "default.handlebars->27->885"
9653 + "default.handlebars->27->897"
9654 ]
9655 },
9656 {
@@ -9643,8 +9667,8 @@
9667 "ru": "Ввод",
9668 "zh-chs": "輸入",
9669 "xloc": [
9646 - "default.handlebars->27->1066",
9647 - "default.handlebars->27->1067"
9670 + "default.handlebars->27->1078",
9671 + "default.handlebars->27->1079"
9672 ]
9673 },
9674 {
@@ -9661,7 +9685,7 @@
9685 "ru": "Введите разделенный запятыми список имен административных областей.",
9686 "zh-chs": "輸入管理領域名稱的逗號分隔列表。",
9687 "xloc": [
9664 - "default.handlebars->27->1401"
9688 + "default.handlebars->27->1415"
9689 ]
9690 },
9691 {
@@ -9695,7 +9719,7 @@
9719 "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.",
9720 "zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
9721 "xloc": [
9698 - "default.handlebars->27->662"
9722 + "default.handlebars->27->674"
9723 ]
9724 },
9725 {
@@ -9781,7 +9805,7 @@
9805 "zh-chs": "世界語",
9806 "es": "Esperanto",
9807 "xloc": [
9784 - "default.handlebars->27->886"
9808 + "default.handlebars->27->898"
9809 ]
9810 },
9811 {
@@ -9798,7 +9822,7 @@
9822 "zh-chs": "愛沙尼亞語",
9823 "es": "Estonio",
9824 "xloc": [
9801 - "default.handlebars->27->887"
9825 + "default.handlebars->27->899"
9826 ]
9827 },
9828 {
@@ -9815,7 +9839,7 @@
9839 "ru": "Детали события",
9840 "zh-chs": "活動詳情",
9841 "xloc": [
9818 - "default.handlebars->27->739"
9842 + "default.handlebars->27->751"
9843 ]
9844 },
9845 {
@@ -9832,7 +9856,7 @@
9856 "ru": "Экспорт списка событий",
9857 "zh-chs": "活動列表導出",
9858 "xloc": [
9835 - "default.handlebars->27->1329"
9859 + "default.handlebars->27->1343"
9860 ]
9861 },
9862 {
@@ -9921,7 +9945,7 @@
9945 "ru": "Расширенный ASCII",
9946 "zh-chs": "擴展ASCII",
9947 "xloc": [
9924 - "default.handlebars->27->688"
9948 + "default.handlebars->27->700"
9949 ]
9950 },
9951 {
@@ -9955,7 +9979,7 @@
9979 "ru": "Внешний",
9980 "zh-chs": "外部",
9981 "xloc": [
9958 - "default.handlebars->27->1591"
9982 + "default.handlebars->27->1617"
9983 ]
9984 },
9985 {
@@ -9972,7 +9996,7 @@
9996 "zh-chs": "FYRO馬其頓語",
9997 "es": "Macedonio Macedonia",
9998 "xloc": [
9975 - "default.handlebars->27->937"
9999 + "default.handlebars->27->949"
10000 ]
10001 },
10002 {
@@ -9989,7 +10013,7 @@
10013 "zh-chs": "法羅語",
10014 "es": "Faeroese",
10015 "xloc": [
9992 - "default.handlebars->27->888"
10016 + "default.handlebars->27->900"
10017 ]
10018 },
10019 {
@@ -10023,7 +10047,7 @@
10047 "zh-chs": "波斯語(波斯語)",
10048 "es": "Farsi (Persa)",
10049 "xloc": [
10026 - "default.handlebars->27->889"
10050 + "default.handlebars->27->901"
10051 ]
10052 },
10053 {
@@ -10058,7 +10082,7 @@
10082 "ru": "Функции",
10083 "zh-chs": "特徵",
10084 "xloc": [
10061 - "default.handlebars->27->1094"
10085 + "default.handlebars->27->1106"
10086 ]
10087 },
10088 {
@@ -10075,7 +10099,7 @@
10099 "zh-chs": "斐濟",
10100 "es": "Fiyiano",
10101 "xloc": [
10078 - "default.handlebars->27->890"
10102 + "default.handlebars->27->902"
10103 ]
10104 },
10105 {
@@ -10094,7 +10118,7 @@
10118 "xloc": [
10119 "default-mobile.handlebars->9->255",
10120 "default.handlebars->27->415",
10097 - "default.handlebars->27->711"
10121 + "default.handlebars->27->723"
10122 ]
10123 },
10124 {
@@ -10128,7 +10152,7 @@
10152 "ru": "Драйвер файловой системы",
10153 "zh-chs": "FileSystemDriver",
10154 "xloc": [
10131 - "default.handlebars->27->671"
10155 + "default.handlebars->27->683"
10156 ]
10157 },
10158 {
@@ -10145,7 +10169,7 @@
10169 "ru": "Файлы",
10170 "zh-chs": "檔案",
10171 "xloc": [
10148 - "default.handlebars->27->1180",
10172 + "default.handlebars->27->1195",
10173 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
10174 "default.handlebars->contextMenu->cxfiles"
10175 ]
@@ -10181,7 +10205,9 @@
10205 "ru": "Уведомление файлов",
10206 "zh-chs": "文件通知",
10207 "xloc": [
10184 - "default.handlebars->27->1102"
10208 + "default.handlebars->27->1114",
10209 + "default.handlebars->27->1509",
10210 + "default.handlebars->27->496"
10211 ]
10212 },
10213 {
@@ -10198,7 +10224,9 @@
10224 "ru": "Запрос файлов",
10225 "zh-chs": "文件提示",
10226 "xloc": [
10201 - "default.handlebars->27->1101"
10227 + "default.handlebars->27->1113",
10228 + "default.handlebars->27->1508",
10229 + "default.handlebars->27->495"
10230 ]
10231 },
10232 {
@@ -10233,7 +10261,7 @@
10261 "ru": "Финский",
10262 "zh-chs": "芬蘭",
10263 "xloc": [
10236 - "default.handlebars->27->891"
10264 + "default.handlebars->27->903"
10265 ]
10266 },
10267 {
@@ -10350,8 +10378,8 @@
10378 "ru": "Принудительно сбросить пароль при следующем входе в систему.",
10379 "zh-chs": "下次登錄時強制重置密碼。",
10380 "xloc": [
10353 - "default.handlebars->27->1395",
10354 - "default.handlebars->27->1512"
10381 + "default.handlebars->27->1409",
10382 + "default.handlebars->27->1538"
10383 ]
10384 },
10385 {
@@ -10437,8 +10465,8 @@
10465 "ru": "Свободно",
10466 "zh-chs": "自由",
10467 "xloc": [
10440 - "default.handlebars->27->1552",
10441 - "default.handlebars->27->1554"
10468 + "default.handlebars->27->1578",
10469 + "default.handlebars->27->1580"
10470 ]
10471 },
10472 {
@@ -10473,7 +10501,7 @@
10501 "zh-chs": "法語(比利時)",
10502 "es": "Francés (Bélgica)",
10503 "xloc": [
10476 - "default.handlebars->27->893"
10504 + "default.handlebars->27->905"
10505 ]
10506 },
10507 {
@@ -10490,7 +10518,7 @@
10518 "zh-chs": "法語(加拿大)",
10519 "es": "Francés (Canadá)",
10520 "xloc": [
10493 - "default.handlebars->27->894"
10521 + "default.handlebars->27->906"
10522 ]
10523 },
10524 {
@@ -10507,7 +10535,7 @@
10535 "zh-chs": "法語(法國)",
10536 "es": "Francés (Francia)",
10537 "xloc": [
10510 - "default.handlebars->27->895"
10538 + "default.handlebars->27->907"
10539 ]
10540 },
10541 {
@@ -10524,7 +10552,7 @@
10552 "zh-chs": "法語(盧森堡)",
10553 "es": "Francés (Luxemburgo)",
10554 "xloc": [
10527 - "default.handlebars->27->896"
10555 + "default.handlebars->27->908"
10556 ]
10557 },
10558 {
@@ -10541,7 +10569,7 @@
10569 "zh-chs": "法語(摩納哥)",
10570 "es": "Francés (Mónaco)",
10571 "xloc": [
10544 - "default.handlebars->27->897"
10572 + "default.handlebars->27->909"
10573 ]
10574 },
10575 {
@@ -10558,7 +10586,7 @@
10586 "zh-chs": "法語(標準)",
10587 "es": "Francés (estándar)",
10588 "xloc": [
10561 - "default.handlebars->27->892"
10589 + "default.handlebars->27->904"
10590 ]
10591 },
10592 {
@@ -10575,7 +10603,7 @@
10603 "zh-chs": "法語(瑞士)",
10604 "es": "Francés (Suiza)",
10605 "xloc": [
10578 - "default.handlebars->27->898"
10606 + "default.handlebars->27->910"
10607 ]
10608 },
10609 {
@@ -10592,7 +10620,7 @@
10620 "zh-chs": "弗里斯蘭語",
10621 "es": "Friso",
10622 "xloc": [
10595 - "default.handlebars->27->899"
10623 + "default.handlebars->27->911"
10624 ]
10625 },
10626 {
@@ -10609,7 +10637,7 @@
10637 "zh-chs": "弗留利",
10638 "es": "Friuliano",
10639 "xloc": [
10612 - "default.handlebars->27->900"
10640 + "default.handlebars->27->912"
10641 ]
10642 },
10643 {
@@ -10630,9 +10658,9 @@
10658 "default-mobile.handlebars->9->293",
10659 "default-mobile.handlebars->9->311",
10660 "default-mobile.handlebars->9->67",
10633 - "default.handlebars->27->1073",
10634 - "default.handlebars->27->1198",
10635 - "default.handlebars->27->1407"
10661 + "default.handlebars->27->1085",
10662 + "default.handlebars->27->1212",
10663 + "default.handlebars->27->1421"
10664 ]
10665 },
10666 {
@@ -10649,7 +10677,7 @@
10677 "ru": "Администратор с полным доступом (все права)",
10678 "zh-chs": "正式管理員(保留所有權利)",
10679 "xloc": [
10652 - "default.handlebars->27->1226"
10680 + "default.handlebars->27->1240"
10681 ]
10682 },
10683 {
@@ -10680,7 +10708,7 @@
10708 "zh-chs": "完整的設備權限",
10709 "es": "Derechos completos del dispositivo",
10710 "xloc": [
10683 - "default.handlebars->27->541"
10711 + "default.handlebars->27->553"
10712 ]
10713 },
10714 {
@@ -10694,7 +10722,7 @@
10722 "zh-chs": "完全权利",
10723 "es": "Derechos Completos",
10724 "xloc": [
10697 - "default.handlebars->27->557"
10725 + "default.handlebars->27->569"
10726 ]
10727 },
10728 {
@@ -10730,7 +10758,7 @@
10758 "ru": "Администратор с полным доступом",
10759 "zh-chs": "正式管理員",
10760 "xloc": [
10733 - "default.handlebars->27->1465"
10761 + "default.handlebars->27->1479"
10762 ]
10763 },
10764 {
@@ -10747,7 +10775,7 @@
10775 "zh-chs": "蓋爾語(愛爾蘭)",
10776 "es": "Gaélico (Irlandés)",
10777 "xloc": [
10750 - "default.handlebars->27->902"
10778 + "default.handlebars->27->914"
10779 ]
10780 },
10781 {
@@ -10764,7 +10792,7 @@
10792 "zh-chs": "蓋爾語(蘇格蘭語)",
10793 "es": "Gaélico (Escocés)",
10794 "xloc": [
10767 - "default.handlebars->27->901"
10795 + "default.handlebars->27->913"
10796 ]
10797 },
10798 {
@@ -10781,7 +10809,7 @@
10809 "zh-chs": "加拉契人",
10810 "es": "Gallego",
10811 "xloc": [
10784 - "default.handlebars->27->903"
10812 + "default.handlebars->27->915"
10813 ]
10814 },
10815 {
@@ -10888,7 +10916,7 @@
10916 "zh-chs": "格魯吉亞人",
10917 "es": "Georgiano",
10918 "xloc": [
10891 - "default.handlebars->27->904"
10919 + "default.handlebars->27->916"
10920 ]
10921 },
10922 {
@@ -10905,7 +10933,7 @@
10933 "zh-chs": "德語(奧地利)",
10934 "es": "Alemán (Austria)",
10935 "xloc": [
10908 - "default.handlebars->27->906"
10936 + "default.handlebars->27->918"
10937 ]
10938 },
10939 {
@@ -10922,7 +10950,7 @@
10950 "zh-chs": "德文(德國)",
10951 "es": "Alemán (Alemania)",
10952 "xloc": [
10925 - "default.handlebars->27->907"
10953 + "default.handlebars->27->919"
10954 ]
10955 },
10956 {
@@ -10939,7 +10967,7 @@
10967 "zh-chs": "德文(列支敦士登)",
10968 "es": "Alemán (Liechtenstein)",
10969 "xloc": [
10942 - "default.handlebars->27->908"
10970 + "default.handlebars->27->920"
10971 ]
10972 },
10973 {
@@ -10956,7 +10984,7 @@
10984 "zh-chs": "德語(盧森堡)",
10985 "es": "Alemán (Luxemburgo)",
10986 "xloc": [
10959 - "default.handlebars->27->909"
10987 + "default.handlebars->27->921"
10988 ]
10989 },
10990 {
@@ -10973,7 +11001,7 @@
11001 "zh-chs": "德語(標準)",
11002 "es": "Alemán (Estándar)",
11003 "xloc": [
10976 - "default.handlebars->27->905"
11004 + "default.handlebars->27->917"
11005 ]
11006 },
11007 {
@@ -10990,7 +11018,7 @@
11018 "zh-chs": "德語(瑞士)",
11019 "es": "Alemán (Suiza)",
11020 "xloc": [
10993 - "default.handlebars->27->910"
11021 + "default.handlebars->27->922"
11022 ]
11023 },
11024 {
@@ -11007,7 +11035,7 @@
11035 "ru": "Получить учетные данные MQTT для этого устройства.",
11036 "zh-chs": "獲取此設備的MQTT登錄憑據。",
11037 "xloc": [
11010 - "default.handlebars->27->525"
11038 + "default.handlebars->27->537"
11039 ]
11040 },
11041 {
@@ -11060,7 +11088,7 @@
11088 "ru": "Хорошо",
11089 "zh-chs": "好",
11090 "xloc": [
11063 - "default.handlebars->27->1069"
11091 + "default.handlebars->27->1081"
11092 ]
11093 },
11094 {
@@ -11097,7 +11125,7 @@
11125 "zh-chs": "希臘語",
11126 "es": "Griego",
11127 "xloc": [
11100 - "default.handlebars->27->911"
11128 + "default.handlebars->27->923"
11129 ]
11130 },
11131 {
@@ -11133,7 +11161,7 @@
11161 "ru": "Групповое действие",
11162 "zh-chs": "集體行動",
11163 "xloc": [
11136 - "default.handlebars->27->1365",
11164 + "default.handlebars->27->1379",
11165 "default.handlebars->27->384",
11166 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
11167 "default.handlebars->container->column_l->p4->3->1->0->3->3"
@@ -11153,7 +11181,7 @@
11181 "ru": "Члены группы",
11182 "zh-chs": "小組成員",
11183 "xloc": [
11156 - "default.handlebars->27->1436"
11184 + "default.handlebars->27->1450"
11185 ]
11186 },
11187 {
@@ -11170,7 +11198,7 @@
11198 "ru": "Права на группу для пользователя {0}.",
11199 "zh-chs": "用戶{0}的組權限。",
11200 "xloc": [
11173 - "default.handlebars->27->1197"
11201 + "default.handlebars->27->1211"
11202 ]
11203 },
11204 {
@@ -11187,7 +11215,7 @@
11215 "ru": "Права на группу для {0}.",
11216 "zh-chs": "{0}的組權限。",
11217 "xloc": [
11190 - "default.handlebars->27->1196"
11218 + "default.handlebars->27->1210"
11219 ]
11220 },
11221 {
@@ -11221,7 +11249,7 @@
11249 "ru": "Группы",
11250 "zh-chs": "團體",
11251 "xloc": [
11224 - "default.handlebars->27->1334",
11252 + "default.handlebars->27->1348",
11253 "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups"
11254 ]
11255 },
@@ -11239,7 +11267,7 @@
11267 "zh-chs": "古久拉提",
11268 "es": "Gujarati",
11269 "xloc": [
11242 - "default.handlebars->27->912"
11270 + "default.handlebars->27->924"
11271 ]
11272 },
11273 {
@@ -11275,7 +11303,7 @@
11303 "zh-chs": "海地",
11304 "es": "Haitiano",
11305 "xloc": [
11278 - "default.handlebars->27->913"
11306 + "default.handlebars->27->925"
11307 ]
11308 },
11309 {
@@ -11309,7 +11337,7 @@
11337 "ru": "Жесткое отключение агента",
11338 "zh-chs": "硬斷開劑",
11339 "xloc": [
11312 - "default.handlebars->27->807"
11340 + "default.handlebars->27->819"
11341 ]
11342 },
11343 {
@@ -11326,7 +11354,7 @@
11354 "ru": "Всего кучи",
11355 "zh-chs": "堆總數",
11356 "xloc": [
11329 - "default.handlebars->27->1593"
11357 + "default.handlebars->27->1619"
11358 ]
11359 },
11360 {
@@ -11343,7 +11371,7 @@
11371 "ru": "Куча используется",
11372 "zh-chs": "堆使用",
11373 "xloc": [
11346 - "default.handlebars->27->1592"
11374 + "default.handlebars->27->1618"
11375 ]
11376 },
11377 {
@@ -11360,7 +11388,7 @@
11388 "ru": "Иврит",
11389 "zh-chs": "希伯來語",
11390 "xloc": [
11363 - "default.handlebars->27->914"
11391 + "default.handlebars->27->926"
11392 ]
11393 },
11394 {
@@ -11392,7 +11420,7 @@
11420 "ru": "Помочь перевести MeshCentral",
11421 "zh-chs": "幫助翻譯MeshCentral",
11422 "xloc": [
11395 - "default.handlebars->27->1028"
11423 + "default.handlebars->27->1040"
11424 ]
11425 },
11426 {
@@ -11472,7 +11500,7 @@
11500 "ru": "Хинди",
11501 "zh-chs": "印地語",
11502 "xloc": [
11475 - "default.handlebars->27->915"
11503 + "default.handlebars->27->927"
11504 ]
11505 },
11506 {
@@ -11508,7 +11536,7 @@
11536 "zh-chs": "持有1份副本",
11537 "xloc": [
11538 "default-mobile.handlebars->9->264",
11511 - "default.handlebars->27->720"
11539 + "default.handlebars->27->732"
11540 ]
11541 },
11542 {
@@ -11526,7 +11554,7 @@
11554 "zh-chs": "持有1個搬家公司",
11555 "xloc": [
11556 "default-mobile.handlebars->9->268",
11529 - "default.handlebars->27->724"
11557 + "default.handlebars->27->736"
11558 ]
11559 },
11560 {
@@ -11544,7 +11572,7 @@
11572 "zh-chs": "保留{0}個條目進行複制",
11573 "xloc": [
11574 "default-mobile.handlebars->9->262",
11547 - "default.handlebars->27->718"
11575 + "default.handlebars->27->730"
11576 ]
11577 },
11578 {
@@ -11562,7 +11590,7 @@
11590 "zh-chs": "保留{0}個條目以進行移動",
11591 "xloc": [
11592 "default-mobile.handlebars->9->266",
11565 - "default.handlebars->27->722"
11593 + "default.handlebars->27->734"
11594 ]
11595 },
11596 {
@@ -11580,7 +11608,7 @@
11608 "zh-chs": "保持{2}的{0}入口{1}",
11609 "xloc": [
11610 "default-mobile.handlebars->9->91",
11583 - "default.handlebars->27->1316"
11611 + "default.handlebars->27->1330"
11612 ]
11613 },
11614 {
@@ -11605,7 +11633,7 @@
11633 "default.handlebars->27->452",
11634 "default.handlebars->27->453",
11635 "default.handlebars->27->455",
11608 - "default.handlebars->27->648"
11636 + "default.handlebars->27->660"
11637 ]
11638 },
11639 {
@@ -11622,7 +11650,7 @@
11650 "ru": "Синхронизация имени хоста",
11651 "zh-chs": "主機名同步",
11652 "xloc": [
11625 - "default.handlebars->27->1092"
11653 + "default.handlebars->27->1104"
11654 ]
11655 },
11656 {
@@ -11639,7 +11667,7 @@
11667 "zh-chs": "匈牙利",
11668 "es": "Hungaro",
11669 "xloc": [
11642 - "default.handlebars->27->916"
11670 + "default.handlebars->27->928"
11671 ]
11672 },
11673 {
@@ -11691,7 +11719,7 @@
11719 "ru": "IP: {0}",
11720 "zh-chs": "IP:{0}",
11721 "xloc": [
11694 - "default.handlebars->27->760"
11722 + "default.handlebars->27->772"
11723 ]
11724 },
11725 {
@@ -11708,7 +11736,7 @@
11736 "zh-chs": "IP:{0},掩碼:{1},網關:{2}",
11737 "es": "IP: {0}, Mascara: {1}, Puerta de Enlace: {2}",
11738 "xloc": [
11711 - "default.handlebars->27->758"
11739 + "default.handlebars->27->770"
11740 ]
11741 },
11742 {
@@ -11725,8 +11753,8 @@
11753 "zh-chs": "IPv4層",
11754 "es": "Capa IPv4",
11755 "xloc": [
11728 - "default.handlebars->27->757",
11729 - "default.handlebars->27->759"
11756 + "default.handlebars->27->769",
11757 + "default.handlebars->27->771"
11758 ]
11759 },
11760 {
@@ -11794,7 +11822,7 @@
11822 "zh-chs": "冰島的",
11823 "es": "Islandés",
11824 "xloc": [
11797 - "default.handlebars->27->917"
11825 + "default.handlebars->27->929"
11826 ]
11827 },
11828 {
@@ -11812,7 +11840,7 @@
11840 "zh-chs": "圖標選擇",
11841 "xloc": [
11842 "default-mobile.handlebars->9->224",
11815 - "default.handlebars->27->646"
11843 + "default.handlebars->27->658"
11844 ]
11845 },
11846 {
@@ -11829,7 +11857,7 @@
11857 "ru": "Идентификатор",
11858 "zh-chs": "識別碼",
11859 "xloc": [
11832 - "default.handlebars->27->785"
11860 + "default.handlebars->27->797"
11861 ]
11862 },
11863 {
@@ -11928,7 +11956,7 @@
11956 "zh-chs": "印度尼西亞",
11957 "es": "Indonesio",
11958 "xloc": [
11931 - "default.handlebars->27->918"
11959 + "default.handlebars->27->930"
11960 ]
11961 },
11962 {
@@ -11997,7 +12025,7 @@
12025 "ru": "Установка",
12026 "zh-chs": "安裝",
12027 "xloc": [
12000 - "default.handlebars->27->1133"
12028 + "default.handlebars->27->1145"
12029 ]
12030 },
12031 {
@@ -12046,7 +12074,7 @@
12074 "ru": "Установка CIRA",
12075 "zh-chs": "安裝CIRA",
12076 "xloc": [
12049 - "default.handlebars->27->1125"
12077 + "default.handlebars->27->1137"
12078 ]
12079 },
12080 {
@@ -12063,7 +12091,7 @@
12091 "ru": "Локальная установка",
12092 "zh-chs": "安裝本地",
12093 "xloc": [
12066 - "default.handlebars->27->1127"
12094 + "default.handlebars->27->1139"
12095 ]
12096 },
12097 {
@@ -12080,8 +12108,8 @@
12108 "ru": "Тип установки",
12109 "zh-chs": "安裝類型",
12110 "xloc": [
12083 - "default.handlebars->27->1255",
12084 - "default.handlebars->27->1262",
12111 + "default.handlebars->27->1269",
12112 + "default.handlebars->27->1276",
12113 "default.handlebars->27->285",
12114 "default.handlebars->27->307"
12115 ]
@@ -12100,7 +12128,7 @@
12128 "ru": "Intel (F10 = ESC+[OM)",
12129 "zh-chs": "英特爾(F10 = ESC + [OM)",
12130 "xloc": [
12103 - "default.handlebars->27->690",
12131 + "default.handlebars->27->702",
12132 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
12133 ]
12134 },
@@ -12118,10 +12146,10 @@
12146 "ru": "Intel AMT",
12147 "zh-chs": "英特爾AMT",
12148 "xloc": [
12121 - "default.handlebars->27->1274",
12122 - "default.handlebars->27->1280",
12123 - "default.handlebars->27->1589",
12124 - "default.handlebars->27->1611"
12149 + "default.handlebars->27->1288",
12150 + "default.handlebars->27->1294",
12151 + "default.handlebars->27->1615",
12152 + "default.handlebars->27->1637"
12153 ]
12154 },
12155 {
@@ -12274,7 +12302,7 @@
12302 "ru": "Intel ASCII",
12303 "zh-chs": "英特爾ASCII",
12304 "xloc": [
12277 - "default.handlebars->27->689"
12305 + "default.handlebars->27->701"
12306 ]
12307 },
12308 {
@@ -12294,11 +12322,11 @@
12322 "default-mobile.handlebars->9->126",
12323 "default-mobile.handlebars->9->190",
12324 "default-mobile.handlebars->9->195",
12297 - "default.handlebars->27->1109",
12298 - "default.handlebars->27->1119",
12325 + "default.handlebars->27->1121",
12326 + "default.handlebars->27->1131",
12327 "default.handlebars->27->425",
12328 "default.handlebars->27->478",
12301 - "default.handlebars->27->494"
12329 + "default.handlebars->27->506"
12330 ]
12331 },
12332 {
@@ -12316,7 +12344,7 @@
12344 "zh-chs": "英特爾&reg;AMT CIRA",
12345 "xloc": [
12346 "default-mobile.handlebars->9->194",
12319 - "default.handlebars->27->492"
12347 + "default.handlebars->27->504"
12348 ]
12349 },
12350 {
@@ -12335,7 +12363,7 @@
12363 "xloc": [
12364 "default.handlebars->27->169",
12365 "default.handlebars->27->362",
12338 - "default.handlebars->27->491"
12366 + "default.handlebars->27->503"
12367 ]
12368 },
12369 {
@@ -12371,7 +12399,7 @@
12399 "ru": "Политика Intel&reg; AMT",
12400 "zh-chs": "英特爾&reg;AMT政策",
12401 "xloc": [
12374 - "default.handlebars->27->1148"
12402 + "default.handlebars->27->1160"
12403 ]
12404 },
12405 {
@@ -12458,8 +12486,8 @@
12486 "zh-chs": "英特爾&reg;AMT已連接",
12487 "xloc": [
12488 "default-mobile.handlebars->9->204",
12461 - "default.handlebars->27->529",
12462 - "default.handlebars->27->530"
12489 + "default.handlebars->27->541",
12490 + "default.handlebars->27->542"
12491 ]
12492 },
12493 {
@@ -12476,8 +12504,8 @@
12504 "ru": "События Intel&reg; AMT desktop или serial.",
12505 "zh-chs": "英特爾&reg;AMT桌面和串行事件。",
12506 "xloc": [
12479 - "default.handlebars->27->1034",
12480 - "default.handlebars->27->1270"
12507 + "default.handlebars->27->1046",
12508 + "default.handlebars->27->1284"
12509 ]
12510 },
12511 {
@@ -12495,8 +12523,8 @@
12523 "zh-chs": "檢測到英特爾&reg;AMT",
12524 "xloc": [
12525 "default-mobile.handlebars->9->205",
12498 - "default.handlebars->27->531",
12499 - "default.handlebars->27->532"
12526 + "default.handlebars->27->543",
12527 + "default.handlebars->27->544"
12528 ]
12529 },
12530 {
@@ -12513,7 +12541,7 @@
12541 "ru": "Intel&reg; AMT маршрутизируется и готов к использованию.",
12542 "zh-chs": "英特爾&reg;AMT可路由並可以使用。",
12543 "xloc": [
12516 - "default.handlebars->27->493"
12544 + "default.handlebars->27->505"
12545 ]
12546 },
12547 {
@@ -12566,8 +12594,8 @@
12594 "zh-chs": "僅限英特爾&reg;AMT,無代理",
12595 "xloc": [
12596 "default-mobile.handlebars->9->275",
12569 - "default.handlebars->27->1063",
12570 - "default.handlebars->27->1085"
12597 + "default.handlebars->27->1075",
12598 + "default.handlebars->27->1097"
12599 ]
12600 },
12601 {
@@ -12601,7 +12629,7 @@
12629 "ru": "Intel&reg; Active Management Technology (Intel&reg; AMT)",
12630 "zh-chs": "英特爾&reg;主動管理技術(英特爾&reg;AMT)",
12631 "xloc": [
12604 - "default.handlebars->27->777"
12632 + "default.handlebars->27->789"
12633 ]
12634 },
12635 {
@@ -12755,7 +12783,7 @@
12783 "ru": "Интерактивный",
12784 "zh-chs": "互動",
12785 "xloc": [
12758 - "default.handlebars->27->672"
12786 + "default.handlebars->27->684"
12787 ]
12788 },
12789 {
@@ -12772,8 +12800,8 @@
12800 "ru": "Только интерактивный режим",
12801 "zh-chs": "僅限互動",
12802 "xloc": [
12775 - "default.handlebars->27->1258",
12776 - "default.handlebars->27->1265",
12803 + "default.handlebars->27->1272",
12804 + "default.handlebars->27->1279",
12805 "default.handlebars->27->288",
12806 "default.handlebars->27->310"
12807 ]
@@ -12792,7 +12820,7 @@
12820 "ru": "Интерфейсы",
12821 "zh-chs": "介面",
12822 "xloc": [
12795 - "default.handlebars->27->512"
12823 + "default.handlebars->27->524"
12824 ]
12825 },
12826 {
@@ -12809,7 +12837,7 @@
12837 "zh-chs": "因紐特人",
12838 "es": "Inuktitut",
12839 "xloc": [
12812 - "default.handlebars->27->919"
12840 + "default.handlebars->27->931"
12841 ]
12842 },
12843 {
@@ -12826,7 +12854,7 @@
12854 "ru": "Некорректный тип группы устройств",
12855 "zh-chs": "無效的設備組類型",
12856 "xloc": [
12829 - "default.handlebars->27->1566"
12857 + "default.handlebars->27->1592"
12858 ]
12859 },
12860 {
@@ -12843,7 +12871,7 @@
12871 "ru": "Некорректный JSON",
12872 "zh-chs": "無效的JSON",
12873 "xloc": [
12846 - "default.handlebars->27->1560"
12874 + "default.handlebars->27->1586"
12875 ]
12876 },
12877 {
@@ -12860,8 +12888,8 @@
12888 "ru": "Некорректный формат файла JSON.",
12889 "zh-chs": "無效的JSON文件格式。",
12890 "xloc": [
12863 - "default.handlebars->27->1376",
12864 - "default.handlebars->27->1378"
12891 + "default.handlebars->27->1390",
12892 + "default.handlebars->27->1392"
12893 ]
12894 },
12895 {
@@ -12878,7 +12906,7 @@
12906 "ru": "Некорректный файл JSON: {0}.",
12907 "zh-chs": "無效的JSON文件:{0}。",
12908 "xloc": [
12881 - "default.handlebars->27->1374"
12909 + "default.handlebars->27->1388"
12910 ]
12911 },
12912 {
@@ -12895,7 +12923,7 @@
12923 "ru": "Некорректная сигнатура PKCS",
12924 "zh-chs": "無效的PKCS簽名",
12925 "xloc": [
12898 - "default.handlebars->27->1558"
12926 + "default.handlebars->27->1584"
12927 ]
12928 },
12929 {
@@ -12912,7 +12940,7 @@
12940 "ru": "Некорректная сигнатура RSA",
12941 "zh-chs": "無效的RSA密碼",
12942 "xloc": [
12915 - "default.handlebars->27->1559"
12943 + "default.handlebars->27->1585"
12944 ]
12945 },
12946 {
@@ -13048,7 +13076,7 @@
13076 "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:",
13077 "es": "Los códigos de invitación pueden ser usados por cualquiera para unir dispositivos a este grupo de dispositivos usando el siguiente enlace público:",
13078 "xloc": [
13051 - "default.handlebars->27->1260"
13079 + "default.handlebars->27->1274"
13080 ]
13081 },
13082 {
@@ -13079,7 +13107,7 @@
13107 "ru": "Пригласить",
13108 "zh-chs": "邀請",
13109 "xloc": [
13082 - "default.handlebars->27->1135",
13110 + "default.handlebars->27->1147",
13111 "default.handlebars->27->220",
13112 "default.handlebars->27->300"
13113 ]
@@ -13098,11 +13126,11 @@
13126 "zh-chs": "邀請碼",
13127 "es": "Códigos de invitación",
13128 "xloc": [
13101 - "default.handlebars->27->1113",
13102 - "default.handlebars->27->1254",
13103 - "default.handlebars->27->1259",
13104 - "default.handlebars->27->1261",
13105 - "default.handlebars->27->1266"
13129 + "default.handlebars->27->1125",
13130 + "default.handlebars->27->1268",
13131 + "default.handlebars->27->1273",
13132 + "default.handlebars->27->1275",
13133 + "default.handlebars->27->1280"
13134 ]
13135 },
13136 {
@@ -13136,7 +13164,7 @@
13164 "ru": "Отправить приглашение на установку Mesh Agent",
13165 "zh-chs": "邀請某人在此網格上安裝網格代理。",
13166 "xloc": [
13139 - "default.handlebars->27->1134",
13167 + "default.handlebars->27->1146",
13168 "default.handlebars->27->219"
13169 ]
13170 },
@@ -13171,7 +13199,7 @@
13199 "ru": "Ирландский",
13200 "zh-chs": "愛爾蘭人",
13201 "xloc": [
13174 - "default.handlebars->27->920"
13202 + "default.handlebars->27->932"
13203 ]
13204 },
13205 {
@@ -13188,7 +13216,7 @@
13216 "zh-chs": "意大利語(標準)",
13217 "es": "Italiano (estándar)",
13218 "xloc": [
13191 - "default.handlebars->27->921"
13219 + "default.handlebars->27->933"
13220 ]
13221 },
13222 {
@@ -13205,7 +13233,7 @@
13233 "zh-chs": "義大利文(瑞士)",
13234 "es": "Italiano (Suiza)",
13235 "xloc": [
13208 - "default.handlebars->27->922"
13236 + "default.handlebars->27->934"
13237 ]
13238 },
13239 {
@@ -13222,8 +13250,8 @@
13250 "ru": "Формат JSON",
13251 "zh-chs": "JSON格式",
13252 "xloc": [
13225 - "default.handlebars->27->1327",
13226 - "default.handlebars->27->1382",
13253 + "default.handlebars->27->1341",
13254 + "default.handlebars->27->1396",
13255 "default.handlebars->27->392"
13256 ]
13257 },
@@ -13241,7 +13269,7 @@
13269 "ru": "Японский",
13270 "zh-chs": "日本",
13271 "xloc": [
13244 - "default.handlebars->27->923"
13272 + "default.handlebars->27->935"
13273 ]
13274 },
13275 {
@@ -13258,7 +13286,7 @@
13286 "zh-chs": "卡納達語",
13287 "es": "Kannada",
13288 "xloc": [
13261 - "default.handlebars->27->924"
13289 + "default.handlebars->27->936"
13290 ]
13291 },
13292 {
@@ -13275,7 +13303,7 @@
13303 "zh-chs": "克什米爾語",
13304 "es": "Cachemira",
13305 "xloc": [
13278 - "default.handlebars->27->925"
13306 + "default.handlebars->27->937"
13307 ]
13308 },
13309 {
@@ -13292,7 +13320,7 @@
13320 "zh-chs": "哈薩克語",
13321 "es": "Kazajo",
13322 "xloc": [
13295 - "default.handlebars->27->926"
13323 + "default.handlebars->27->938"
13324 ]
13325 },
13326 {
@@ -13309,7 +13337,7 @@
13337 "ru": "Драйвер ядра",
13338 "zh-chs": "內核驅動程序",
13339 "xloc": [
13312 - "default.handlebars->27->673"
13340 + "default.handlebars->27->685"
13341 ]
13342 },
13343 {
@@ -13326,8 +13354,8 @@
13354 "ru": "Имя ключа",
13355 "zh-chs": "鍵名",
13356 "xloc": [
13329 - "default.handlebars->27->817",
13330 - "default.handlebars->27->820"
13357 + "default.handlebars->27->829",
13358 + "default.handlebars->27->832"
13359 ]
13360 },
13361 {
@@ -13361,7 +13389,7 @@
13389 "zh-chs": "高棉語",
13390 "es": "Jemer",
13391 "xloc": [
13364 - "default.handlebars->27->927"
13392 + "default.handlebars->27->939"
13393 ]
13394 },
13395 {
@@ -13378,7 +13406,7 @@
13406 "zh-chs": "吉爾吉斯",
13407 "es": "Kirghiz",
13408 "xloc": [
13381 - "default.handlebars->27->928"
13409 + "default.handlebars->27->940"
13410 ]
13411 },
13412 {
@@ -13395,7 +13423,7 @@
13423 "zh-chs": "克林貢",
13424 "es": "Klingon",
13425 "xloc": [
13398 - "default.handlebars->27->929"
13426 + "default.handlebars->27->941"
13427 ]
13428 },
13429 {
@@ -13412,7 +13440,7 @@
13440 "zh-chs": "已知的",
13441 "es": "Conocido",
13442 "xloc": [
13415 - "default.handlebars->27->776"
13443 + "default.handlebars->27->788"
13444 ]
13445 },
13446 {
@@ -13429,7 +13457,7 @@
13457 "zh-chs": "韓語",
13458 "es": "Coreano",
13459 "xloc": [
13432 - "default.handlebars->27->930"
13460 + "default.handlebars->27->942"
13461 ]
13462 },
13463 {
@@ -13446,7 +13474,7 @@
13474 "zh-chs": "韓語(朝鮮)",
13475 "es": "Coreano (Corea del Norte)",
13476 "xloc": [
13449 - "default.handlebars->27->931"
13477 + "default.handlebars->27->943"
13478 ]
13479 },
13480 {
@@ -13463,7 +13491,7 @@
13491 "zh-chs": "韓語(韓國)",
13492 "es": "Coreano (Corea del Sur)",
13493 "xloc": [
13466 - "default.handlebars->27->932"
13494 + "default.handlebars->27->944"
13495 ]
13496 },
13497 {
@@ -13480,8 +13508,8 @@
13508 "ru": "LF",
13509 "zh-chs": "如果",
13510 "xloc": [
13483 - "default.handlebars->27->685",
13484 - "default.handlebars->27->694"
13511 + "default.handlebars->27->697",
13512 + "default.handlebars->27->706"
13513 ]
13514 },
13515 {
@@ -13498,7 +13526,7 @@
13526 "ru": "Язык",
13527 "zh-chs": "語言",
13528 "xloc": [
13501 - "default.handlebars->27->1026"
13529 + "default.handlebars->27->1038"
13530 ]
13531 },
13532 {
@@ -13532,7 +13560,7 @@
13560 "ru": "Большой Фокус",
13561 "zh-chs": "大焦點",
13562 "xloc": [
13535 - "default.handlebars->27->661"
13563 + "default.handlebars->27->673"
13564 ]
13565 },
13566 {
@@ -13715,7 +13743,7 @@
13743 "ru": "Последний доступ",
13744 "zh-chs": "最後訪問",
13745 "xloc": [
13718 - "default.handlebars->27->1335"
13746 + "default.handlebars->27->1349"
13747 ]
13748 },
13749 {
@@ -13732,7 +13760,7 @@
13760 "ru": "Последний вход в систему",
13761 "zh-chs": "上次登錄",
13762 "xloc": [
13735 - "default.handlebars->27->1477"
13763 + "default.handlebars->27->1491"
13764 ]
13765 },
13766 {
@@ -13752,9 +13780,9 @@
13780 "default.handlebars->27->70",
13781 "default.handlebars->27->72",
13782 "default.handlebars->27->74",
13755 - "default.handlebars->27->748",
13756 - "default.handlebars->27->749",
13757 - "default.handlebars->27->750"
13783 + "default.handlebars->27->760",
13784 + "default.handlebars->27->761",
13785 + "default.handlebars->27->762"
13786 ]
13787 },
13788 {
@@ -13772,8 +13800,8 @@
13800 "zh-chs": "上次代理連接",
13801 "xloc": [
13802 "default.handlebars->27->69",
13775 - "default.handlebars->27->745",
13776 - "default.handlebars->27->747"
13803 + "default.handlebars->27->757",
13804 + "default.handlebars->27->759"
13805 ]
13806 },
13807 {
@@ -13790,7 +13818,7 @@
13818 "ru": "Последнее изменение: {0}",
13819 "zh-chs": "上次更改:{0}",
13820 "xloc": [
13793 - "default.handlebars->27->1481"
13821 + "default.handlebars->27->1495"
13822 ]
13823 },
13824 {
@@ -13841,7 +13869,7 @@
13869 "ru": "Последний вход в систему: {0}",
13870 "zh-chs": "上次登錄:{0}",
13871 "xloc": [
13844 - "default.handlebars->27->1345"
13872 + "default.handlebars->27->1359"
13873 ]
13874 },
13875 {
@@ -13858,7 +13886,7 @@
13886 "ru": "Последнее посещение:",
13887 "zh-chs": "最後一次露面:",
13888 "xloc": [
13861 - "default.handlebars->27->535",
13889 + "default.handlebars->27->547",
13890 "default.handlebars->27->65"
13891 ]
13892 },
@@ -13927,7 +13955,7 @@
13955 "ru": "Латинский",
13956 "zh-chs": "拉丁",
13957 "xloc": [
13930 - "default.handlebars->27->933"
13958 + "default.handlebars->27->945"
13959 ]
13960 },
13961 {
@@ -13944,7 +13972,7 @@
13972 "ru": "Латышский",
13973 "zh-chs": "拉脫維亞語",
13974 "xloc": [
13947 - "default.handlebars->27->934"
13975 + "default.handlebars->27->946"
13976 ]
13977 },
13978 {
@@ -13983,7 +14011,7 @@
14011 "ru": "Меньше",
14012 "zh-chs": "減",
14013 "xloc": [
13986 - "default.handlebars->27->1628"
14014 + "default.handlebars->27->1654"
14015 ]
14016 },
14017 {
@@ -13997,8 +14025,8 @@
14025 "zh-chs": "极限赛事",
14026 "es": "Limitar Eventos",
14027 "xloc": [
14000 - "default.handlebars->27->553",
14001 - "default.handlebars->27->572"
14028 + "default.handlebars->27->565",
14029 + "default.handlebars->27->584"
14030 ]
14031 },
14032 {
@@ -14034,9 +14062,9 @@
14062 "zh-chs": "有限輸入",
14063 "xloc": [
14064 "default-mobile.handlebars->9->324",
14037 - "default.handlebars->27->1240",
14038 - "default.handlebars->27->546",
14039 - "default.handlebars->27->565"
14065 + "default.handlebars->27->1254",
14066 + "default.handlebars->27->558",
14067 + "default.handlebars->27->577"
14068 ]
14069 },
14070 {
@@ -14054,7 +14082,7 @@
14082 "zh-chs": "僅限於輸入",
14083 "xloc": [
14084 "default-mobile.handlebars->9->299",
14057 - "default.handlebars->27->1204"
14085 + "default.handlebars->27->1218"
14086 ]
14087 },
14088 {
@@ -14221,7 +14249,7 @@
14249 "ru": "Linux ARM, Raspberry Pi (32bit)",
14250 "zh-chs": "Linux ARM,Raspberry Pi(32位)",
14251 "xloc": [
14224 - "default.handlebars->27->629"
14252 + "default.handlebars->27->641"
14253 ]
14254 },
14255 {
@@ -14327,7 +14355,7 @@
14355 "ru": "Linux x86 (32bit)",
14356 "zh-chs": "Linux x86(32位)",
14357 "xloc": [
14330 - "default.handlebars->27->626"
14358 + "default.handlebars->27->638"
14359 ]
14360 },
14361 {
@@ -14344,7 +14372,7 @@
14372 "ru": "Linux x86 (64bit)",
14373 "zh-chs": "Linux x86(64位)",
14374 "xloc": [
14347 - "default.handlebars->27->627"
14375 + "default.handlebars->27->639"
14376 ]
14377 },
14378 {
@@ -14379,7 +14407,7 @@
14407 "ru": "Литовский",
14408 "zh-chs": "立陶宛語",
14409 "xloc": [
14382 - "default.handlebars->27->935"
14410 + "default.handlebars->27->947"
14411 ]
14412 },
14413 {
@@ -14397,10 +14425,10 @@
14425 "zh-chs": "載入中...",
14426 "xloc": [
14427 "default-mobile.handlebars->9->34",
14400 - "default.handlebars->27->1080",
14401 - "default.handlebars->27->1082",
14402 - "default.handlebars->27->620",
14403 - "default.handlebars->27->813"
14428 + "default.handlebars->27->1092",
14429 + "default.handlebars->27->1094",
14430 + "default.handlebars->27->632",
14431 + "default.handlebars->27->825"
14432 ]
14433 },
14434 {
@@ -14468,7 +14496,7 @@
14496 "ru": "Настройки локализации",
14497 "zh-chs": "本地化設置",
14498 "xloc": [
14471 - "default.handlebars->27->1029",
14499 + "default.handlebars->27->1041",
14500 "default.handlebars->container->column_l->p2->p2AccountActions->3->5"
14501 ]
14502 },
@@ -14486,7 +14514,7 @@
14514 "ru": "Местонахождение",
14515 "zh-chs": "位置",
14516 "xloc": [
14489 - "default.handlebars->27->514"
14517 + "default.handlebars->27->526"
14518 ]
14519 },
14520 {
@@ -14520,7 +14548,7 @@
14548 "ru": "Заблокировать учетную запись",
14549 "zh-chs": "鎖定賬戶",
14550 "xloc": [
14523 - "default.handlebars->27->1413"
14551 + "default.handlebars->27->1427"
14552 ]
14553 },
14554 {
@@ -14537,7 +14565,7 @@
14565 "ru": "Заблокировать учетную запись",
14566 "zh-chs": "鎖定賬戶",
14567 "xloc": [
14540 - "default.handlebars->27->1362"
14568 + "default.handlebars->27->1376"
14569 ]
14570 },
14571 {
@@ -14554,7 +14582,7 @@
14582 "ru": "Заблокирован",
14583 "zh-chs": "已鎖定",
14584 "xloc": [
14557 - "default.handlebars->27->1346"
14585 + "default.handlebars->27->1360"
14586 ]
14587 },
14588 {
@@ -14571,7 +14599,7 @@
14599 "ru": "Заблокированная учетная запись",
14600 "zh-chs": "賬戶鎖定",
14601 "xloc": [
14574 - "default.handlebars->27->1462"
14602 + "default.handlebars->27->1476"
14603 ]
14604 },
14605 {
@@ -14588,7 +14616,7 @@
14616 "ru": "Добавить событие",
14617 "zh-chs": "記錄事件",
14618 "xloc": [
14591 - "default.handlebars->27->505"
14619 + "default.handlebars->27->517"
14620 ]
14621 },
14622 {
@@ -14737,7 +14765,7 @@
14765 "ru": "Люксембургский",
14766 "zh-chs": "盧森堡語",
14767 "xloc": [
14740 - "default.handlebars->27->936"
14768 + "default.handlebars->27->948"
14769 ]
14770 },
14771 {
@@ -14754,8 +14782,8 @@
14782 "zh-chs": "MAC層",
14783 "es": "Capa MAC",
14784 "xloc": [
14757 - "default.handlebars->27->753",
14758 - "default.handlebars->27->755"
14785 + "default.handlebars->27->765",
14786 + "default.handlebars->27->767"
14787 ]
14788 },
14789 {
@@ -14789,7 +14817,7 @@
14817 "ru": "MAC: {0}",
14818 "zh-chs": "MAC:{0}",
14819 "xloc": [
14792 - "default.handlebars->27->756"
14820 + "default.handlebars->27->768"
14821 ]
14822 },
14823 {
@@ -14806,7 +14834,7 @@
14834 "zh-chs": "MAC:{0},網關:{1}",
14835 "es": "MAC: {0}, Puerta de Enlace: {1}",
14836 "xloc": [
14809 - "default.handlebars->27->754"
14837 + "default.handlebars->27->766"
14838 ]
14839 },
14840 {
@@ -14863,9 +14891,9 @@
14891 "default-mobile.handlebars->9->197",
14892 "default.handlebars->27->176",
14893 "default.handlebars->27->369",
14866 - "default.handlebars->27->498",
14867 - "default.handlebars->27->797",
14868 - "default.handlebars->27->798",
14894 + "default.handlebars->27->510",
14895 + "default.handlebars->27->809",
14896 + "default.handlebars->27->810",
14897 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3"
14898 ]
14899 },
@@ -14900,7 +14928,7 @@
14928 "ru": "MQTT Вход",
14929 "zh-chs": "MQTT登錄",
14930 "xloc": [
14903 - "default.handlebars->27->526"
14931 + "default.handlebars->27->538"
14932 ]
14933 },
14934 {
@@ -14918,7 +14946,7 @@
14946 "zh-chs": "MQTT通道已連接",
14947 "xloc": [
14948 "default-mobile.handlebars->9->206",
14921 - "default.handlebars->27->534"
14949 + "default.handlebars->27->546"
14950 ]
14951 },
14952 {
@@ -14936,7 +14964,7 @@
14964 "zh-chs": "MQTT已連接",
14965 "xloc": [
14966 "default.handlebars->27->140",
14939 - "default.handlebars->27->533"
14967 + "default.handlebars->27->545"
14968 ]
14969 },
14970 {
@@ -14955,7 +14983,7 @@
14983 "xloc": [
14984 "default.handlebars->27->175",
14985 "default.handlebars->27->368",
14958 - "default.handlebars->27->497"
14986 + "default.handlebars->27->509"
14987 ]
14988 },
14989 {
@@ -15006,7 +15034,7 @@
15034 "ru": "MacOS (64bit)",
15035 "zh-chs": "MacOS(64位)",
15036 "xloc": [
15009 - "default.handlebars->27->628"
15037 + "default.handlebars->27->640"
15038 ]
15039 },
15040 {
@@ -15059,7 +15087,7 @@
15087 "ru": "Сообщения главного сервера",
15088 "zh-chs": "主服務器消息",
15089 "xloc": [
15062 - "default.handlebars->27->1600"
15090 + "default.handlebars->27->1626"
15091 ]
15092 },
15093 {
@@ -15076,7 +15104,7 @@
15104 "ru": "Малайский",
15105 "zh-chs": "馬來語",
15106 "xloc": [
15079 - "default.handlebars->27->938"
15107 + "default.handlebars->27->950"
15108 ]
15109 },
15110 {
@@ -15093,7 +15121,7 @@
15121 "zh-chs": "馬拉雅拉姆語",
15122 "es": "Malayalam",
15123 "xloc": [
15096 - "default.handlebars->27->939"
15124 + "default.handlebars->27->951"
15125 ]
15126 },
15127 {
@@ -15110,7 +15138,7 @@
15138 "zh-chs": "馬耳他語",
15139 "es": "Maltés",
15140 "xloc": [
15113 - "default.handlebars->27->940"
15141 + "default.handlebars->27->952"
15142 ]
15143 },
15144 {
@@ -15147,8 +15175,8 @@
15175 "xloc": [
15176 "default-mobile.handlebars->9->296",
15177 "default-mobile.handlebars->9->314",
15150 - "default.handlebars->27->1201",
15151 - "default.handlebars->27->1229"
15178 + "default.handlebars->27->1215",
15179 + "default.handlebars->27->1243"
15180 ]
15181 },
15182 {
@@ -15167,8 +15195,8 @@
15195 "xloc": [
15196 "default-mobile.handlebars->9->295",
15197 "default-mobile.handlebars->9->313",
15170 - "default.handlebars->27->1200",
15171 - "default.handlebars->27->1228"
15198 + "default.handlebars->27->1214",
15199 + "default.handlebars->27->1242"
15200 ]
15201 },
15202 {
@@ -15182,7 +15210,7 @@
15210 "zh-chs": "管理设备",
15211 "es": "Administrar dispositivos",
15212 "xloc": [
15185 - "default.handlebars->27->560"
15213 + "default.handlebars->27->572"
15214 ]
15215 },
15216 {
@@ -15216,7 +15244,7 @@
15244 "ru": "Управление группами пользователя",
15245 "zh-chs": "管理用戶組",
15246 "xloc": [
15219 - "default.handlebars->27->1412"
15247 + "default.handlebars->27->1426"
15248 ]
15249 },
15250 {
@@ -15233,8 +15261,8 @@
15261 "ru": "Управление пользователями",
15262 "zh-chs": "管理用戶",
15263 "xloc": [
15236 - "default.handlebars->27->1411",
15237 - "default.handlebars->27->559"
15264 + "default.handlebars->27->1425",
15265 + "default.handlebars->27->571"
15266 ]
15267 },
15268 {
@@ -15322,7 +15350,7 @@
15350 "ru": "Управление с помощью программного агента",
15351 "zh-chs": "使用軟件代理進行管理",
15352 "xloc": [
15325 - "default.handlebars->27->1062"
15353 + "default.handlebars->27->1074"
15354 ]
15355 },
15356 {
@@ -15340,7 +15368,7 @@
15368 "zh-chs": "使用軟件代理進行管理",
15369 "xloc": [
15370 "default-mobile.handlebars->9->276",
15343 - "default.handlebars->27->1086"
15371 + "default.handlebars->27->1098"
15372 ]
15373 },
15374 {
@@ -15357,7 +15385,7 @@
15385 "ru": "Менеджер",
15386 "zh-chs": "經理",
15387 "xloc": [
15360 - "default.handlebars->27->1351"
15388 + "default.handlebars->27->1365"
15389 ]
15390 },
15391 {
@@ -15408,7 +15436,7 @@
15436 "zh-chs": "毛利人",
15437 "es": "Maori",
15438 "xloc": [
15411 - "default.handlebars->27->941"
15439 + "default.handlebars->27->953"
15440 ]
15441 },
15442 {
@@ -15443,7 +15471,7 @@
15471 "zh-chs": "馬拉地語",
15472 "es": "Marathi",
15473 "xloc": [
15446 - "default.handlebars->27->942"
15474 + "default.handlebars->27->954"
15475 ]
15476 },
15477 {
@@ -15460,7 +15488,7 @@
15488 "ru": "Достигнуто максимальное число сессий",
15489 "zh-chs": "達到的會話數上限",
15490 "xloc": [
15463 - "default.handlebars->27->1564"
15491 + "default.handlebars->27->1590"
15492 ]
15493 },
15494 {
@@ -15514,7 +15542,7 @@
15542 "ru": "Мегабайт",
15543 "zh-chs": "兆字節",
15544 "xloc": [
15517 - "default.handlebars->27->1590"
15545 + "default.handlebars->27->1616"
15546 ]
15547 },
15548 {
@@ -15531,8 +15559,8 @@
15559 "ru": "ОЗУ",
15560 "zh-chs": "記憶",
15561 "xloc": [
15534 - "default.handlebars->27->1581",
15535 - "default.handlebars->27->790",
15562 + "default.handlebars->27->1607",
15563 + "default.handlebars->27->802",
15564 "default.handlebars->container->column_l->p40->3->1->p40type->3"
15565 ]
15566 },
@@ -15557,9 +15585,9 @@
15585 "default.handlebars->27->329",
15586 "default.handlebars->27->332",
15587 "default.handlebars->27->459",
15560 - "default.handlebars->27->490",
15561 - "default.handlebars->27->744",
15562 - "default.handlebars->27->751"
15588 + "default.handlebars->27->502",
15589 + "default.handlebars->27->756",
15590 + "default.handlebars->27->763"
15591 ]
15592 },
15593 {
@@ -15577,7 +15605,7 @@
15605 "zh-chs": "網格代理控制台",
15606 "xloc": [
15607 "default-mobile.handlebars->9->303",
15580 - "default.handlebars->27->1209"
15608 + "default.handlebars->27->1223"
15609 ]
15610 },
15611 {
@@ -15594,7 +15622,7 @@
15622 "ru": "Ретранслятор Mesh",
15623 "zh-chs": "網狀中繼",
15624 "xloc": [
15597 - "default.handlebars->27->496"
15625 + "default.handlebars->27->508"
15626 ]
15627 },
15628 {
@@ -15613,7 +15641,7 @@
15641 "xloc": [
15642 "default.handlebars->27->167",
15643 "default.handlebars->27->360",
15616 - "default.handlebars->27->489"
15644 + "default.handlebars->27->501"
15645 ]
15646 },
15647 {
@@ -15632,7 +15660,7 @@
15660 "xloc": [
15661 "default.handlebars->27->173",
15662 "default.handlebars->27->366",
15635 - "default.handlebars->27->495"
15663 + "default.handlebars->27->507"
15664 ]
15665 },
15666 {
@@ -15649,8 +15677,8 @@
15677 "ru": "MeshAction (.txt)",
15678 "zh-chs": "MeshAction(.txt)",
15679 "xloc": [
15652 - "default.handlebars->27->635",
15653 - "default.handlebars->27->637"
15680 + "default.handlebars->27->647",
15681 + "default.handlebars->27->649"
15682 ]
15683 },
15684 {
@@ -15667,7 +15695,7 @@
15695 "ru": "Трафик MeshAgent",
15696 "zh-chs": "MeshAgent流量",
15697 "xloc": [
15670 - "default.handlebars->27->1602"
15698 + "default.handlebars->27->1628"
15699 ]
15700 },
15701 {
@@ -15684,7 +15712,7 @@
15712 "ru": "Обновление MeshAgent",
15713 "zh-chs": "MeshAgent更新",
15714 "xloc": [
15687 - "default.handlebars->27->1603"
15715 + "default.handlebars->27->1629"
15716 ]
15717 },
15718 {
@@ -15718,7 +15746,7 @@
15746 "ru": "Ошибки MeshCentral",
15747 "zh-chs": "網格中心錯誤",
15748 "xloc": [
15721 - "default.handlebars->27->1081"
15749 + "default.handlebars->27->1093"
15750 ]
15751 },
15752 {
@@ -15735,7 +15763,7 @@
15763 "ru": "MeshCentral Router ",
15764 "zh-chs": "MeshCentral路由器",
15765 "xloc": [
15738 - "default.handlebars->27->623"
15766 + "default.handlebars->27->635"
15767 ]
15768 },
15769 {
@@ -15752,7 +15780,7 @@
15780 "ru": "MeshCentral Router это инструмент Windows для сопоставления портов TCP. Например, через этот сервер можно установить подключение по RDP к удаленному устройству.",
15781 "zh-chs": "MeshCentral Router是Windows工具,用於TCP端口映射。例如,您可以通過該服務器將RDP放入遠程設備。",
15782 "xloc": [
15755 - "default.handlebars->27->621"
15783 + "default.handlebars->27->633"
15784 ]
15785 },
15786 {
@@ -15787,7 +15815,7 @@
15815 "ru": "Соединения сервера MeshCentral",
15816 "zh-chs": "MeshCentral服務器對等",
15817 "xloc": [
15790 - "default.handlebars->27->1601"
15818 + "default.handlebars->27->1627"
15819 ]
15820 },
15821 {
@@ -15821,7 +15849,7 @@
15849 "ru": "Версия MeshCentral",
15850 "zh-chs": "MeshCentral版本",
15851 "xloc": [
15824 - "default.handlebars->27->1079",
15852 + "default.handlebars->27->1091",
15853 "default.handlebars->27->95",
15854 "default.handlebars->27->96"
15855 ]
@@ -15841,7 +15869,7 @@
15869 "zh-chs": "網格命令",
15870 "xloc": [
15871 "default.handlebars->27->191",
15844 - "default.handlebars->27->633"
15872 + "default.handlebars->27->645"
15873 ]
15874 },
15875 {
@@ -15858,7 +15886,7 @@
15886 "ru": "MeshCmd (Linux ARM, 32bit)",
15887 "zh-chs": "MeshCmd(Linux ARM,32位)",
15888 "xloc": [
15861 - "default.handlebars->27->645"
15889 + "default.handlebars->27->657"
15890 ]
15891 },
15892 {
@@ -15875,7 +15903,7 @@
15903 "ru": "MeshCmd (Linux x86, 32bit)",
15904 "zh-chs": "MeshCmd(Linux x86,32bit)",
15905 "xloc": [
15878 - "default.handlebars->27->642"
15906 + "default.handlebars->27->654"
15907 ]
15908 },
15909 {
@@ -15892,7 +15920,7 @@
15920 "ru": "MeshCmd (Linux x86, 64bit)",
15921 "zh-chs": "MeshCmd(Linux x86,64bit)",
15922 "xloc": [
15895 - "default.handlebars->27->643"
15923 + "default.handlebars->27->655"
15924 ]
15925 },
15926 {
@@ -15909,7 +15937,7 @@
15937 "ru": "MeshCmd (MacOS, 64bit)",
15938 "zh-chs": "MeshCmd(MacOS,64位)",
15939 "xloc": [
15912 - "default.handlebars->27->644"
15940 + "default.handlebars->27->656"
15941 ]
15942 },
15943 {
@@ -15926,7 +15954,7 @@
15954 "ru": "MeshCmd (приложение Win32)",
15955 "zh-chs": "MeshCmd(Win32可執行文件)",
15956 "xloc": [
15929 - "default.handlebars->27->640"
15957 + "default.handlebars->27->652"
15958 ]
15959 },
15960 {
@@ -15943,7 +15971,7 @@
15971 "ru": "MeshCmd (приложение Win64)",
15972 "zh-chs": "MeshCmd(Win64可執行文件)",
15973 "xloc": [
15946 - "default.handlebars->27->641"
15974 + "default.handlebars->27->653"
15975 ]
15976 },
15977 {
@@ -15960,7 +15988,7 @@
15988 "ru": "MeshCmd это утилита с командной строкой, которая позволяет выполнить множество операций. Файл с командами может быть опционально скачан и отредактирован для указания информации о сервере и учетных данных.",
15989 "zh-chs": "MeshCmd是執行許多不同操作的命令行工具。可以選擇下載和編輯操作文件以提供服務器信息和憑據。",
15990 "xloc": [
15963 - "default.handlebars->27->630"
15991 + "default.handlebars->27->642"
15992 ]
15993 },
15994 {
@@ -16032,7 +16060,7 @@
16060 "zh-chs": "信息",
16061 "xloc": [
16062 "default.handlebars->27->289",
16035 - "default.handlebars->27->601"
16063 + "default.handlebars->27->613"
16064 ]
16065 },
16066 {
@@ -16049,7 +16077,7 @@
16077 "ru": "Диспетчер сообщения",
16078 "zh-chs": "郵件調度程序",
16079 "xloc": [
16052 - "default.handlebars->27->1599"
16080 + "default.handlebars->27->1625"
16081 ]
16082 },
16083 {
@@ -16163,7 +16191,7 @@
16191 "zh-chs": "摩爾達維亞人",
16192 "es": "Moldavo",
16193 "xloc": [
16166 - "default.handlebars->27->943"
16194 + "default.handlebars->27->955"
16195 ]
16196 },
16197 {
@@ -16180,7 +16208,7 @@
16208 "ru": "Еще",
16209 "zh-chs": "更多",
16210 "xloc": [
16183 - "default.handlebars->27->1627"
16211 + "default.handlebars->27->1653"
16212 ]
16213 },
16214 {
@@ -16197,7 +16225,7 @@
16225 "ru": "Материнская плата",
16226 "zh-chs": "母板",
16227 "xloc": [
16200 - "default.handlebars->27->786"
16228 + "default.handlebars->27->798"
16229 ]
16230 },
16231 {
@@ -16214,7 +16242,7 @@
16242 "ru": "Переместить это устройство в другую группу устройств",
16243 "zh-chs": "將此設備移到其他設備組",
16244 "xloc": [
16217 - "default.handlebars->27->507"
16245 + "default.handlebars->27->519"
16246 ]
16247 },
16248 {
@@ -16363,7 +16391,7 @@
16391 "ru": "Консоль моего сервера",
16392 "zh-chs": "我的服務器控制台",
16393 "xloc": [
16366 - "default.handlebars->27->792"
16394 + "default.handlebars->27->804"
16395 ]
16396 },
16397 {
@@ -16484,8 +16512,8 @@
16512 "ru": "Мой ключ",
16513 "zh-chs": "我的鑰匙",
16514 "xloc": [
16487 - "default.handlebars->27->818",
16488 - "default.handlebars->27->821"
16515 + "default.handlebars->27->830",
16516 + "default.handlebars->27->833"
16517 ]
16518 },
16519 {
@@ -16507,20 +16535,20 @@
16535 "default-mobile.handlebars->9->290",
16536 "default-mobile.handlebars->9->59",
16537 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1",
16510 - "default.handlebars->27->1060",
16511 - "default.handlebars->27->1087",
16512 - "default.handlebars->27->1170",
16513 - "default.handlebars->27->1333",
16514 - "default.handlebars->27->1418",
16515 - "default.handlebars->27->1422",
16516 - "default.handlebars->27->1427",
16517 - "default.handlebars->27->1429",
16518 - "default.handlebars->27->1449",
16538 + "default.handlebars->27->1072",
16539 + "default.handlebars->27->1099",
16540 + "default.handlebars->27->1182",
16541 + "default.handlebars->27->1347",
16542 + "default.handlebars->27->1432",
16543 + "default.handlebars->27->1436",
16544 + "default.handlebars->27->1441",
16545 + "default.handlebars->27->1443",
16546 + "default.handlebars->27->1463",
16547 "default.handlebars->27->450",
16520 - "default.handlebars->27->667",
16521 - "default.handlebars->27->740",
16548 + "default.handlebars->27->679",
16549 + "default.handlebars->27->752",
16550 "default.handlebars->27->77",
16523 - "default.handlebars->27->782",
16551 + "default.handlebars->27->794",
16552 "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3",
16553 "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3",
16554 "default.handlebars->container->column_l->p42->p42tbl->1->0->2"
@@ -16557,7 +16585,7 @@
16585 "ru": "Имя1, Имя2, Имя3",
16586 "zh-chs": "名稱1,名稱2,名稱3",
16587 "xloc": [
16560 - "default.handlebars->27->1403"
16588 + "default.handlebars->27->1417"
16589 ]
16590 },
16591 {
@@ -16574,7 +16602,7 @@
16602 "zh-chs": "納瓦霍人",
16603 "es": "Navajo",
16604 "xloc": [
16577 - "default.handlebars->27->944"
16605 + "default.handlebars->27->956"
16606 ]
16607 },
16608 {
@@ -16591,7 +16619,7 @@
16619 "zh-chs": "恩東加",
16620 "es": "Ndonga",
16621 "xloc": [
16594 - "default.handlebars->27->945"
16622 + "default.handlebars->27->957"
16623 ]
16624 },
16625 {
@@ -16608,7 +16636,7 @@
16636 "zh-chs": "尼泊爾文",
16637 "es": "Nepali",
16638 "xloc": [
16611 - "default.handlebars->27->946"
16639 + "default.handlebars->27->958"
16640 ]
16641 },
16642 {
@@ -16625,7 +16653,7 @@
16653 "ru": "Сетевые интерфейсы",
16654 "zh-chs": "網絡接口",
16655 "xloc": [
16628 - "default.handlebars->27->619"
16656 + "default.handlebars->27->631"
16657 ]
16658 },
16659 {
@@ -16642,7 +16670,7 @@
16670 "ru": "Network Router",
16671 "zh-chs": "網絡路由器",
16672 "xloc": [
16645 - "default.handlebars->27->639"
16673 + "default.handlebars->27->651"
16674 ]
16675 },
16676 {
@@ -16659,7 +16687,7 @@
16687 "zh-chs": "聯網",
16688 "es": "Redes",
16689 "xloc": [
16662 - "default.handlebars->27->761"
16690 + "default.handlebars->27->773"
16691 ]
16692 },
16693 {
@@ -16712,9 +16740,9 @@
16740 "zh-chs": "新設備組",
16741 "xloc": [
16742 "default-mobile.handlebars->9->53",
16715 - "default.handlebars->27->1053",
16743 "default.handlebars->27->1065",
16717 - "default.handlebars->27->611"
16744 + "default.handlebars->27->1077",
16745 + "default.handlebars->27->623"
16746 ]
16747 },
16748 {
@@ -16733,8 +16761,8 @@
16761 "xloc": [
16762 "default-mobile.handlebars->9->248",
16763 "default-mobile.handlebars->9->82",
16736 - "default.handlebars->27->1306",
16737 - "default.handlebars->27->704",
16764 + "default.handlebars->27->1320",
16765 + "default.handlebars->27->716",
16766 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
16767 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
16768 ]
@@ -16789,8 +16817,8 @@
16817 "xloc": [
16818 "default-mobile.handlebars->9->48",
16819 "default-mobile.handlebars->9->49",
16792 - "default.handlebars->27->1048",
16793 - "default.handlebars->27->1049"
16820 + "default.handlebars->27->1060",
16821 + "default.handlebars->27->1061"
16822 ]
16823 },
16824 {
@@ -16805,8 +16833,8 @@
16833 "ru": "Нет AMT",
16834 "zh-chs": "没有AMT",
16835 "xloc": [
16808 - "default.handlebars->27->545",
16809 - "default.handlebars->27->564"
16836 + "default.handlebars->27->557",
16837 + "default.handlebars->27->576"
16838 ]
16839 },
16840 {
@@ -16838,7 +16866,7 @@
16866 "zh-chs": "没有增加的权利",
16867 "es": "Sin derechos añadidos",
16868 "xloc": [
16841 - "default.handlebars->27->556"
16869 + "default.handlebars->27->568"
16870 ]
16871 },
16872 {
@@ -16875,9 +16903,9 @@
16903 "zh-chs": "沒有桌面",
16904 "es": "Sin Escritorio",
16905 "xloc": [
16878 - "default.handlebars->27->1236",
16879 - "default.handlebars->27->547",
16880 - "default.handlebars->27->566"
16906 + "default.handlebars->27->1250",
16907 + "default.handlebars->27->559",
16908 + "default.handlebars->27->578"
16909 ]
16910 },
16911 {
@@ -16894,7 +16922,7 @@
16922 "zh-chs": "沒有桌面訪問",
16923 "es": "Sin acceso al escritorio",
16924 "xloc": [
16897 - "default.handlebars->27->1205"
16925 + "default.handlebars->27->1219"
16926 ]
16927 },
16928 {
@@ -16911,9 +16939,9 @@
16939 "ru": "События не найдены",
16940 "zh-chs": "找不到活動",
16941 "xloc": [
16914 - "default.handlebars->27->1323",
16915 - "default.handlebars->27->1546",
16916 - "default.handlebars->27->738"
16942 + "default.handlebars->27->1337",
16943 + "default.handlebars->27->1572",
16944 + "default.handlebars->27->750"
16945 ]
16946 },
16947 {
@@ -16931,7 +16959,7 @@
16959 "zh-chs": "沒有文件訪問",
16960 "xloc": [
16961 "default-mobile.handlebars->9->301",
16934 - "default.handlebars->27->1207"
16962 + "default.handlebars->27->1221"
16963 ]
16964 },
16965 {
@@ -16949,9 +16977,9 @@
16977 "zh-chs": "沒有文件",
16978 "xloc": [
16979 "default-mobile.handlebars->9->322",
16952 - "default.handlebars->27->1238",
16953 - "default.handlebars->27->544",
16954 - "default.handlebars->27->563"
16980 + "default.handlebars->27->1252",
16981 + "default.handlebars->27->556",
16982 + "default.handlebars->27->575"
16983 ]
16984 },
16985 {
@@ -16965,8 +16993,8 @@
16993 "zh-chs": "无输入",
16994 "es": "Sin entrada",
16995 "xloc": [
16968 - "default.handlebars->27->542",
16969 - "default.handlebars->27->561"
16996 + "default.handlebars->27->554",
16997 + "default.handlebars->27->573"
16998 ]
16999 },
17000 {
@@ -16985,8 +17013,8 @@
17013 "xloc": [
17014 "default-mobile.handlebars->9->302",
17015 "default-mobile.handlebars->9->323",
16988 - "default.handlebars->27->1208",
16989 - "default.handlebars->27->1239"
17016 + "default.handlebars->27->1222",
17017 + "default.handlebars->27->1253"
17018 ]
17019 },
17020 {
@@ -17054,7 +17082,7 @@
17082 "ru": "Нет членов",
17083 "zh-chs": "沒有會員",
17084 "xloc": [
17057 - "default.handlebars->27->1439"
17085 + "default.handlebars->27->1453"
17086 ]
17087 },
17088 {
@@ -17071,7 +17099,7 @@
17099 "ru": "Запретить создание групп устройств",
17100 "zh-chs": "沒有新的設備組",
17101 "xloc": [
17074 - "default.handlebars->27->1414"
17102 + "default.handlebars->27->1428"
17103 ]
17104 },
17105 {
@@ -17088,9 +17116,9 @@
17116 "ru": "Политик нет",
17117 "zh-chs": "沒有政策",
17118 "xloc": [
17091 - "default.handlebars->27->1114",
17092 - "default.handlebars->27->1142",
17093 - "default.handlebars->27->1145"
17119 + "default.handlebars->27->1126",
17120 + "default.handlebars->27->1154",
17121 + "default.handlebars->27->1157"
17122 ]
17123 },
17124 {
@@ -17110,9 +17138,9 @@
17138 "default-mobile.handlebars->9->285",
17139 "default-mobile.handlebars->9->328",
17140 "default-mobile.handlebars->9->68",
17113 - "default.handlebars->27->1074",
17114 - "default.handlebars->27->1244",
17115 - "default.handlebars->27->575"
17141 + "default.handlebars->27->1086",
17142 + "default.handlebars->27->1258",
17143 + "default.handlebars->27->587"
17144 ]
17145 },
17146 {
@@ -17131,7 +17159,7 @@
17159 "xloc": [
17160 "default-mobile.handlebars->9->218",
17161 "default.handlebars->27->229",
17134 - "default.handlebars->27->597"
17162 + "default.handlebars->27->609"
17163 ]
17164 },
17165 {
@@ -17149,9 +17177,9 @@
17177 "zh-chs": "沒有終端",
17178 "xloc": [
17179 "default-mobile.handlebars->9->321",
17152 - "default.handlebars->27->1237",
17153 - "default.handlebars->27->543",
17154 - "default.handlebars->27->562"
17180 + "default.handlebars->27->1251",
17181 + "default.handlebars->27->555",
17182 + "default.handlebars->27->574"
17183 ]
17184 },
17185 {
@@ -17169,7 +17197,7 @@
17197 "zh-chs": "沒有終端訪問",
17198 "xloc": [

This file is too large to show in full.

views/default-mobile.handlebars
+1
@@ -1074,6 +1074,7 @@
1074 node.tags = message.event.node.tags;
1075 node.userloc = message.event.node.userloc;
1076 node.rdpport = message.event.node.rdpport;
1077 + node.consent = message.event.node.consent;
1078 if (message.event.node.agent != null) {
1079 if (node.agent == null) node.agent = {};
1080 if (message.event.node.agent.ver != null) { node.agent.ver = message.event.node.agent.ver; }
views/default.handlebars
+48 -8
@@ -2427,6 +2427,7 @@
2427 node.tags = message.event.node.tags;
2428 node.userloc = message.event.node.userloc;
2429 node.rdpport = message.event.node.rdpport;
2430 + node.consent = message.event.node.consent;
2431 if (message.event.node.links != null) { node.links = message.event.node.links; } else { delete node.links; }
2432 if (message.event.node.agent != null) {
2433 if (node.agent == null) node.agent = {};
@@ -4911,6 +4912,23 @@
4912 // Active Users
4913 if (node.users && node.conn && (node.users.length > 0) && (node.conn & 1)) { x += addDeviceAttribute(format("Active User{0}", ((node.users.length > 1)?'s':'')), node.users.join(', ')); }
4914
4915 + // Display device user consent
4916 + if (node.agent != null) {
4917 + var meshFeatures = [];
4918 + var consent = 0;
4919 + if (node.consent) { consent = node.consent; }
4920 + if (serverinfo.consent) { consent |= serverinfo.consent; }
4921 + if ((consent & 0x0040) && (consent & 0x0008)) { meshFeatures.push("Desktop Prompt+Toolbar"); } else if (consent & 0x0040) { meshFeatures.push("Desktop Toolbar"); } else if (consent & 0x0008) { meshFeatures.push("Desktop Prompt"); } else { if (consent & 0x0001) { meshFeatures.push("Desktop Notify"); } }
4922 + if (consent & 0x0010) { meshFeatures.push("Terminal Prompt"); } else { if (consent & 0x0002) { meshFeatures.push("Terminal Notify"); } }
4923 + if (consent & 0x0020) { meshFeatures.push("Files Prompt"); } else { if (consent & 0x0004) { meshFeatures.push("Files Notify"); } }
4924 + if (consent == 7) { meshFeatures = ["Always Notify"]; }
4925 + if ((consent & 56) == 56) { meshFeatures = ["Always Prompt"]; }
4926 +
4927 + meshFeatures = meshFeatures.join(', ');
4928 + if (meshFeatures == '') { meshFeatures = '<i>' + "None" + '</i>'; }
4929 + x += addDeviceAttribute("User Consent", addLinkConditional(meshFeatures, 'p20editmeshconsent(3)', meshrights & 1));
4930 + }
4931 +
4932 // Attribute: Connectivity (Only show this if more than just the agent is connected).
4933 var connectivity = node.conn;
4934 if (connectivity && connectivity > 1) {
@@ -8215,9 +8233,9 @@
8233 x += addHtmlValue("Features", addLinkConditional(meshFeatures, 'p20editmeshfeatures()', meshrights & 1));
8234 }
8235
8218 - // Display user consent
8236 + // Display device group user consent
8237 if (currentMesh.mtype == 2) {
8220 - meshFeatures = [];
8238 + var meshFeatures = [];
8239 var consent = 0;
8240 if (currentMesh.consent) { consent = currentMesh.consent; }
8241 if (serverinfo.consent) { consent |= serverinfo.consent; }
@@ -8229,7 +8247,7 @@
8247
8248 meshFeatures = meshFeatures.join(', ');
8249 if (meshFeatures == '') { meshFeatures = '<i>' + "None" + '</i>'; }
8232 - x += addHtmlValue("User Consent", addLinkConditional(meshFeatures, 'p20editmeshconsent()', meshrights & 1));
8250 + x += addHtmlValue("User Consent", addLinkConditional(meshFeatures, 'p20editmeshconsent(1)', meshrights & 1));
8251 }
8252
8253 // Display user notification
@@ -8444,9 +8462,13 @@
8462 if (e && e.key == 'Enter') { Q('dp20meshdesc').focus(); }
8463 }
8464
8447 - function p20editmeshconsent() {
8465 + // editType: 1 = currentMesh, 2 = currentUser, 3 = currentDevice
8466 + function p20editmeshconsent(editType) {
8467 if (xxdialogMode) return;
8449 - var x = '', consent = (currentMesh.consent) ? currentMesh.consent : 0;
8468 + var x = '', consent = 0, title = '';
8469 + if (editType == 1) { consent = (currentMesh.consent) ? currentMesh.consent : 0; title = "Edit Device Group User Consent"; }
8470 + if (editType == 2) { consent = (currentUser.consent) ? currentUser.consent : 0; title = "Edit User Consent"; }
8471 + if (editType == 3) { consent = (currentNode.consent) ? currentNode.consent : 0; title = "Edit Device User Consent"; }
8472 x += '<div style="width:100%;border-bottom:1px solid gray;margin-bottom:5px"><b>' + "Desktop" + '</b></div>';
8473 x += '<div><label><input type=checkbox id=d20flag1 ' + ((consent & 0x0001) ? 'checked' : '') + '>' + "Notify user" + '</label></div>';
8474 x += '<div><label><input type=checkbox id=d20flag2 ' + ((consent & 0x0008) ? 'checked' : '') + '>' + "Prompt for user consent" + '</label></div>';
@@ -8457,7 +8479,7 @@
8479 x += '<div style="width:100%;border-bottom:1px solid gray;margin-bottom:5px;margin-top:8px"><b>' + "Files" + '</b></div>';
8480 x += '<div><label><input type=checkbox id=d20flag5 ' + ((consent & 0x0004) ? 'checked' : '') + '>' + "Notify user" + '</label></div>';
8481 x += '<div><label><input type=checkbox id=d20flag6 ' + ((consent & 0x0020) ? 'checked' : '') + '>' + "Prompt for user consent" + '</label></div>';
8460 - setDialogMode(2, "Edit Device Group User Consent", 3, p20editmeshconsentEx, x);
8482 + setDialogMode(2, title, 3, p20editmeshconsentEx, x, editType);
8483 if (serverinfo.consent) {
8484 if (serverinfo.consent & 0x0001) { Q('d20flag1').checked = true; }
8485 if (serverinfo.consent & 0x0008) { Q('d20flag2').checked = true; }
@@ -8476,7 +8498,7 @@
8498 }
8499 }
8500
8479 - function p20editmeshconsentEx() {
8501 + function p20editmeshconsentEx(b, editType) {
8502 var consent = 0;
8503 if (Q('d20flag1').checked) { consent += 0x0001; }
8504 if (Q('d20flag2').checked) { consent += 0x0008; }
@@ -8485,7 +8507,9 @@
8507 if (Q('d20flag5').checked) { consent += 0x0004; }
8508 if (Q('d20flag6').checked) { consent += 0x0020; }
8509 if (Q('d20flag7').checked) { consent += 0x0040; }
8488 - meshserver.send({ action: 'editmesh', meshid: currentMesh._id, consent: consent });
8510 + if (editType == 1) { meshserver.send({ action: 'editmesh', meshid: currentMesh._id, consent: consent }); }
8511 + if (editType == 2) { meshserver.send({ action: 'edituser', id: currentUser._id, consent: consent }); }
8512 + if (editType == 3) { meshserver.send({ action: 'changedevice', nodeid: currentNode._id, consent: consent }); }
8513 }
8514
8515 function p20editmeshfeatures() {
@@ -10303,6 +10327,22 @@
10327 x += addDeviceAttribute("Admin Realms", addLinkConditional(xuserGroups, 'showUserGroupDialog(event,\"' + userid + '\")', (userinfo.siteadmin == 0xFFFFFFFF) || ((userinfo.groups == null) && (userinfo._id != user._id) && (user.siteadmin != 0xFFFFFFFF))));
10328 }
10329
10330 + // Display device user consent
10331 + {
10332 + var meshFeatures = [], consent = 0;
10333 + if (user.consent) { consent = user.consent; }
10334 + if (serverinfo.consent) { consent |= serverinfo.consent; }
10335 + if ((consent & 0x0040) && (consent & 0x0008)) { meshFeatures.push("Desktop Prompt+Toolbar"); } else if (consent & 0x0040) { meshFeatures.push("Desktop Toolbar"); } else if (consent & 0x0008) { meshFeatures.push("Desktop Prompt"); } else { if (consent & 0x0001) { meshFeatures.push("Desktop Notify"); } }
10336 + if (consent & 0x0010) { meshFeatures.push("Terminal Prompt"); } else { if (consent & 0x0002) { meshFeatures.push("Terminal Notify"); } }
10337 + if (consent & 0x0020) { meshFeatures.push("Files Prompt"); } else { if (consent & 0x0004) { meshFeatures.push("Files Notify"); } }
10338 + if (consent == 7) { meshFeatures = ["Always Notify"]; }
10339 + if ((consent & 56) == 56) { meshFeatures = ["Always Prompt"]; }
10340 +
10341 + meshFeatures = meshFeatures.join(', ');
10342 + if (meshFeatures == '') { meshFeatures = '<i>' + "None" + '</i>'; }
10343 + x += addDeviceAttribute("User Consent", addLinkConditional(meshFeatures, 'p20editmeshconsent(2)', true));
10344 + }
10345 +
10346 var multiFactor = 0;
10347 if ((user.otpsecret > 0) || (user.otphkeys > 0)) {
10348 multiFactor = 1;