Fixed desktop multiplexor race condition, web application improvements.

Ylian Saint-Hilaire committed Apr 30, 2020 at 18:26 UTC b09efc7df587c6163390afc8a36668ebe6806e8c
5 files changed +1663 -1602
meshdesktopmultiplex.js
+29 -14
@@ -203,6 +203,7 @@ function CreateDesktopMultiplexor(parent, domain, nodeid, func) {
203
204 // Clean up ourselves
205 function dispose() {
206 + if (obj.viewers == null) return;
207 //console.log('dispose', obj.nodeid);
208 delete obj.viewers;
209 delete obj.imagesCounters;
@@ -226,6 +227,8 @@ function CreateDesktopMultiplexor(parent, domain, nodeid, func) {
227 parent.parent.DispatchEvent(['*', obj.nodeid], obj, event); // TODO: Add Node MeshID to targets
228 obj.startTime = null;
229 }
230 +
231 + parent.parent.debug('relay', 'DesktopRelay: Disposing desktop multiplexor');
232 }
233
234 // Send data to the agent or queue it up for sending
@@ -715,7 +718,7 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie
718 }
719
720 // If there is no authentication, drop this connection
718 - if ((obj.id != null) && (obj.user == null) && (obj.ruserid == null)) { try { ws.close(); parent.parent.debug('relay', 'Relay: Connection with no authentication (' + cleanRemoteAddr(obj.req.ip) + ')'); } catch (e) { console.log(e); } return; }
721 + if ((obj.id != null) && (obj.user == null) && (obj.ruserid == null)) { try { ws.close(); parent.parent.debug('relay', 'DesktopRelay: Connection with no authentication (' + cleanRemoteAddr(obj.req.ip) + ')'); } catch (e) { console.log(e); } return; }
722
723 // Relay session count (we may remove this in the future)
724 obj.relaySessionCounted = true;
@@ -748,8 +751,8 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie
751 if (obj.ws == null) return; // Already closed.
752
753 // Close the connection
751 - if ((arg == 1) || (arg == null)) { try { ws.close(); parent.parent.debug('relay', 'Relay: Soft disconnect (' + cleanRemoteAddr(obj.req.ip) + ')'); } catch (e) { console.log(e); } } // Soft close, close the websocket
752 - if (arg == 2) { try { ws._socket._parent.end(); parent.parent.debug('relay', 'Relay: Hard disconnect (' + cleanRemoteAddr(obj.req.ip) + ')'); } catch (e) { console.log(e); } } // Hard close, close the TCP socket
754 + if ((arg == 1) || (arg == null)) { try { ws.close(); parent.parent.debug('relay', 'DesktopRelay: Soft disconnect (' + cleanRemoteAddr(obj.req.ip) + ')'); } catch (e) { console.log(e); } } // Soft close, close the websocket
755 + if (arg == 2) { try { ws._socket._parent.end(); parent.parent.debug('relay', 'DesktopRelay: Hard disconnect (' + cleanRemoteAddr(obj.req.ip) + ')'); } catch (e) { console.log(e); } } // Hard close, close the TCP socket
756 if (obj.relaySessionCounted) { parent.relaySessionCount--; delete obj.relaySessionCounted; }
757 if (obj.deskDecoder != null) { if (obj.deskDecoder.removePeer(obj) == true) { delete parent.desktoprelays[obj.nodeid]; } }
758
@@ -826,9 +829,9 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie
829 try { if (obj.peer != null) { obj.peer.ws.send('{"ctrlChannel":"102938","type":"pong"}'); } } catch (ex) { }
830 }
831
829 - function performRelay() {
830 - if (obj.id == null) { try { obj.close(); } catch (e) { } return null; } // Attempt to connect without id, drop this.
831 - ws._socket.setKeepAlive(true, 240000); // Set TCP keep alive
832 + function performRelay(retryCount) {
833 + if ((obj.id == null) || (retryCount > 20)) { try { obj.close(); } catch (e) { } return null; } // Attempt to connect without id, drop this.
834 + if (retryCount == 0) { ws._socket.setKeepAlive(true, 240000); } // Set TCP keep alive
835
836 /*
837 // Validate that the id is valid, we only need to do this on non-authenticated sessions.
@@ -843,13 +846,19 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie
846 }
847 */
848
846 - // Setup the agent PING/PONG timers
847 - if ((typeof parent.parent.args.agentping == 'number') && (obj.pingtimer == null)) { obj.pingtimer = setInterval(sendPing, parent.parent.args.agentping * 1000); }
848 - else if ((typeof parent.parent.args.agentpong == 'number') && (obj.pongtimer == null)) { obj.pongtimer = setInterval(sendPong, parent.parent.args.agentpong * 1000); }
849 + if (retryCount == 0) {
850 + // Setup the agent PING/PONG timers
851 + if ((typeof parent.parent.args.agentping == 'number') && (obj.pingtimer == null)) { obj.pingtimer = setInterval(sendPing, parent.parent.args.agentping * 1000); }
852 + else if ((typeof parent.parent.args.agentpong == 'number') && (obj.pongtimer == null)) { obj.pongtimer = setInterval(sendPong, parent.parent.args.agentpong * 1000); }
853 +
854 + parent.parent.debug('relay', 'DesktopRelay: Connection (' + cleanRemoteAddr(obj.req.ip) + ')');
855 + }
856
857 // Create if needed and add this peer to the desktop multiplexor
858 obj.deskDecoder = parent.desktoprelays[obj.nodeid];
859 if (obj.deskDecoder == null) {
860 + parent.desktoprelays[obj.nodeid] = 1; // Indicate that the creating of the desktop multiplexor is pending.
861 + parent.parent.debug('relay', 'DesktopRelay: Creating new desktop multiplexor');
862 CreateDesktopMultiplexor(parent, domain, obj.nodeid, function (deskDecoder) {
863 obj.deskDecoder = deskDecoder;
864 parent.desktoprelays[obj.nodeid] = obj.deskDecoder;
@@ -857,8 +866,14 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie
866 ws._socket.resume(); // Release the traffic
867 });
868 } else {
860 - obj.deskDecoder.addPeer(obj);
861 - ws._socket.resume(); // Release the traffic
869 + if (obj.deskDecoder == 1) {
870 + // The multiplexor is being created, hold a little and try again. This is to prevent a possible race condition.
871 + setTimeout(function () { performRelay(++retryCount); }, 50);
872 + } else {
873 + // Hook up this peer to the multiplexor and release the traffic
874 + obj.deskDecoder.addPeer(obj);
875 + ws._socket.resume();
876 + }
877 }
878 }
879
@@ -902,7 +917,7 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie
917 const command = { nodeid: cookie.nodeid, action: 'msg', type: 'tunnel', value: '*/meshrelay.ashx?id=' + obj.id + '&rauth=' + rcookie, tcpport: cookie.tcpport, tcpaddr: cookie.tcpaddr };
918 parent.parent.debug('relay', 'Relay: Sending agent tunnel command: ' + JSON.stringify(command));
919 if (obj.sendAgentMessage(command, user._id, cookie.domainid) == false) { delete obj.id; parent.parent.debug('relay', 'Relay: Unable to contact this agent (' + cleanRemoteAddr(obj.req.ip) + ')'); }
905 - performRelay();
920 + performRelay(0);
921 });
922 return obj;
923 } else if ((obj.req.query.nodeid != null) && ((obj.req.query.tcpport != null) || (obj.req.query.udpport != null))) {
@@ -927,14 +942,14 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie
942 parent.parent.debug('relay', 'Relay: Sending agent UDP tunnel command: ' + JSON.stringify(command));
943 if (obj.sendAgentMessage(command, user._id, domain.id) == false) { delete obj.id; parent.parent.debug('relay', 'Relay: Unable to contact this agent (' + cleanRemoteAddr(obj.req.ip) + ')'); }
944 }
930 - performRelay();
945 + performRelay(0);
946 });
947 return obj;
948 }
949 }
950
951 // If this is not an authenticated session, or the session does not have routing instructions, just go ahead an connect to existing session.
937 - performRelay();
952 + performRelay(0);
953 return obj;
954 };
955
meshuser.js
+2
@@ -1666,6 +1666,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
1666 if ((command.emailVerified === true || command.emailVerified === false) && (chguser.emailVerified != command.emailVerified)) { chguser.emailVerified = command.emailVerified; change = 1; }
1667 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; }
1668 if ((command.consent != null) && (typeof command.consent == 'number')) { if (command.consent == 0) { delete chguser.consent; } else { chguser.consent = command.consent; } change = 1; }
1669 + if ((command.phone != null) && (typeof command.phone == 'string') && ((command.phone == '') || isPhoneNumber(command.phone))) { if (command.phone == '') { delete chguser.phone; } else { chguser.phone = command.phone; } change = 1; }
1670
1671 // Site admins can change any server rights, user managers can only change AccountLock, NoMeshCmd and NoNewGroups
1672 if (chguser._id !== user._id) { // We can't change our own siteadmin permissions.
@@ -4202,6 +4203,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4203 // Split a string taking into account the quoats. Used for command line parsing
4204 function splitArgs(str) { var myArray = [], myRegexp = /[^\s"]+|"([^"]*)"/gi; do { var match = myRegexp.exec(str); if (match != null) { myArray.push(match[1] ? match[1] : match[0]); } } while (match != null); return myArray; }
4205 function toNumberIfNumber(x) { if ((typeof x == 'string') && (+parseInt(x) === x)) { x = parseInt(x); } return x; }
4206 + function isPhoneNumber(x) { return x.match(/^\(?([0-9]{3,4})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/) }
4207
4208 function removeAllUnderScore(obj) {
4209 if (typeof obj != 'object') return obj;
package.json
+1 -1
@@ -1,6 +1,6 @@
1 {
2 "name": "meshcentral",
3 - "version": "0.5.18",
3 + "version": "0.5.19",
4 "keywords": [
5 "Remote Management",
6 "Intel AMT",
translate/translate.json
+1596 -1569
@@ -14,8 +14,8 @@
14 "ru": " + CIRA",
15 "zh-chs": " + CIRA",
16 "xloc": [
17 - "default.handlebars->29->1149",
18 - "default.handlebars->29->1151"
17 + "default.handlebars->29->1151",
18 + "default.handlebars->29->1153"
19 ]
20 },
21 {
@@ -174,7 +174,7 @@
174 "ru": " Может быть использована подсказка пароля, но не рекоммендуется.",
175 "zh-chs": " 可以使用密碼提示,但不建議使用。",
176 "xloc": [
177 - "default.handlebars->29->1078"
177 + "default.handlebars->29->1080"
178 ]
179 },
180 {
@@ -191,8 +191,8 @@
191 "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.",
192 "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
193 "xloc": [
194 - "default.handlebars->29->1224",
195 - "default.handlebars->29->1525"
194 + "default.handlebars->29->1226",
195 + "default.handlebars->29->1527"
196 ]
197 },
198 {
@@ -209,7 +209,7 @@
209 "ru": " и задайте указанное ниже имя пользователя и любой пароль.",
210 "zh-chs": " 並使用該用戶名和任何密碼對服務器進行身份驗證。",
211 "xloc": [
212 - "default.handlebars->29->259"
212 + "default.handlebars->29->260"
213 ]
214 },
215 {
@@ -226,7 +226,7 @@
226 "ru": " и задайте указанные ниже имя пользователя и пароль.",
227 "zh-chs": " 並使用該用戶名和密碼向服務器驗證身份。",
228 "xloc": [
229 - "default.handlebars->29->258"
229 + "default.handlebars->29->259"
230 ]
231 },
232 {
@@ -277,7 +277,7 @@
277 "ru": " с TLS.",
278 "zh-chs": " TLS。",
279 "xloc": [
280 - "default.handlebars->29->153"
280 + "default.handlebars->29->154"
281 ]
282 },
283 {
@@ -294,7 +294,7 @@
294 "ru": " без TLS",
295 "zh-chs": " 沒有TLS。",
296 "xloc": [
297 - "default.handlebars->29->154"
297 + "default.handlebars->29->155"
298 ]
299 },
300 {
@@ -326,7 +326,7 @@
326 "ru": "(необязательно)",
327 "zh-chs": "(可選的)",
328 "xloc": [
329 - "default.handlebars->29->298"
329 + "default.handlebars->29->299"
330 ]
331 },
332 {
@@ -358,7 +358,7 @@
358 "ru": "* Для BSD сначала запустите \\\"pkg install wget sudo bash\\\".",
359 "zh-chs": "*對於BSD,首先運行 “pkg install wget sudo bash”。",
360 "xloc": [
361 - "default.handlebars->29->331"
361 + "default.handlebars->29->332"
362 ]
363 },
364 {
@@ -375,7 +375,7 @@
375 "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.",
376 "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。",
377 "xloc": [
378 - "default.handlebars->29->1196"
378 + "default.handlebars->29->1198"
379 ]
380 },
381 {
@@ -408,7 +408,7 @@
408 "zh-chs": ",",
409 "xloc": [
410 "default-mobile.handlebars->9->338",
411 - "default.handlebars->29->1290"
411 + "default.handlebars->29->1292"
412 ]
413 },
414 {
@@ -426,7 +426,7 @@
426 "zh-chs": ",僅限Intel®AMT",
427 "xloc": [
428 "default-mobile.handlebars->9->102",
429 - "default.handlebars->29->171"
429 + "default.handlebars->29->172"
430 ]
431 },
432 {
@@ -443,7 +443,7 @@
443 "ru": ", MQTT онлайн",
444 "zh-chs": ",MQTT在線",
445 "xloc": [
446 - "default.handlebars->29->822"
446 + "default.handlebars->29->823"
447 ]
448 },
449 {
@@ -460,7 +460,7 @@
460 "ru": ", Soft-KVM",
461 "zh-chs": ",軟KVM",
462 "xloc": [
463 - "default.handlebars->29->674"
463 + "default.handlebars->29->675"
464 ]
465 },
466 {
@@ -479,9 +479,9 @@
479 "xloc": [
480 "default-mobile.handlebars->9->238",
481 "default-mobile.handlebars->9->246",
482 - "default.handlebars->29->675",
483 - "default.handlebars->29->706",
484 - "default.handlebars->29->718",
482 + "default.handlebars->29->676",
483 + "default.handlebars->29->707",
484 + "default.handlebars->29->719",
485 "xterm.handlebars->9->6"
486 ]
487 },
@@ -604,9 +604,9 @@
604 "xloc": [
605 "default-mobile.handlebars->9->251",
606 "default-mobile.handlebars->9->77",
607 - "default.handlebars->29->1331",
608 - "default.handlebars->29->1635",
609 - "default.handlebars->29->720"
607 + "default.handlebars->29->1333",
608 + "default.handlebars->29->1642",
609 + "default.handlebars->29->721"
610 ]
611 },
612 {
@@ -654,7 +654,7 @@
654 "ru": "1 активная сессия",
655 "zh-chs": "1個活動會話",
656 "xloc": [
657 - "default.handlebars->29->1584"
657 + "default.handlebars->29->1587"
658 ]
659 },
660 {
@@ -673,7 +673,7 @@
673 "xloc": [
674 "default-mobile.handlebars->9->342",
675 "default-mobile.handlebars->9->87",
676 - "default.handlebars->29->1350"
676 + "default.handlebars->29->1352"
677 ]
678 },
679 {
@@ -690,9 +690,9 @@
690 "ru": "1 день",
691 "zh-chs": "1天",
692 "xloc": [
693 - "default.handlebars->29->161",
694 - "default.handlebars->29->289",
695 - "default.handlebars->29->303"
693 + "default.handlebars->29->162",
694 + "default.handlebars->29->290",
695 + "default.handlebars->29->304"
696 ]
697 },
698 {
@@ -709,7 +709,7 @@
709 "ru": "1 группа",
710 "zh-chs": "1組",
711 "xloc": [
712 - "default.handlebars->29->1551"
712 + "default.handlebars->29->1554"
713 ]
714 },
715 {
@@ -726,9 +726,9 @@
726 "ru": "1 час",
727 "zh-chs": "1小時",
728 "xloc": [
729 - "default.handlebars->29->159",
730 - "default.handlebars->29->287",
731 - "default.handlebars->29->301"
729 + "default.handlebars->29->160",
730 + "default.handlebars->29->288",
731 + "default.handlebars->29->302"
732 ]
733 },
734 {
@@ -762,9 +762,9 @@
762 "ru": "1 месяц",
763 "zh-chs": "1個月",
764 "xloc": [
765 - "default.handlebars->29->163",
766 - "default.handlebars->29->291",
767 - "default.handlebars->29->305"
765 + "default.handlebars->29->164",
766 + "default.handlebars->29->292",
767 + "default.handlebars->29->306"
768 ]
769 },
770 {
@@ -781,7 +781,7 @@
781 "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...",
782 "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...",
783 "xloc": [
784 - "default.handlebars->29->1385"
784 + "default.handlebars->29->1387"
785 ]
786 },
787 {
@@ -798,7 +798,7 @@
798 "ru": "1 устройство",
799 "zh-chs": "1個節點",
800 "xloc": [
801 - "default.handlebars->29->345"
801 + "default.handlebars->29->346"
802 ]
803 },
804 {
@@ -832,7 +832,7 @@
832 "ru": "1 сессия",
833 "zh-chs": "1節",
834 "xloc": [
835 - "default.handlebars->29->1389"
835 + "default.handlebars->29->1391"
836 ]
837 },
838 {
@@ -849,9 +849,9 @@
849 "ru": "1 неделя",
850 "zh-chs": "1週",
851 "xloc": [
852 - "default.handlebars->29->162",
853 - "default.handlebars->29->290",
854 - "default.handlebars->29->304"
852 + "default.handlebars->29->163",
853 + "default.handlebars->29->291",
854 + "default.handlebars->29->305"
855 ]
856 },
857 {
@@ -1100,8 +1100,8 @@
1100 "ru": "двухфакторная аутентификация включена",
1101 "zh-chs": "啟用第二因素身份驗證",
1102 "xloc": [
1103 - "default.handlebars->29->1402",
1104 - "default.handlebars->29->1573"
1103 + "default.handlebars->29->1404",
1104 + "default.handlebars->29->1576"
1105 ]
1106 },
1107 {
@@ -1202,8 +1202,8 @@
1202 "ru": "32-разрядная версия MeshAgent",
1203 "zh-chs": "MeshAgent的32位版本",
1204 "xloc": [
1205 - "default.handlebars->29->321",
1206 - "default.handlebars->29->338"
1205 + "default.handlebars->29->322",
1206 + "default.handlebars->29->339"
1207 ]
1208 },
1209 {
@@ -1416,7 +1416,7 @@
1416 "ru": "64-битная версия MacOS Mesh Agent",
1417 "zh-chs": "64位版本的MacOS Mesh Agent",
1418 "xloc": [
1419 - "default.handlebars->29->334"
1419 + "default.handlebars->29->335"
1420 ]
1421 },
1422 {
@@ -1433,8 +1433,8 @@
1433 "ru": "64-разрядная версия MeshAgent",
1434 "zh-chs": "MeshAgent的64位版本",
1435 "xloc": [
1436 - "default.handlebars->29->325",
1437 - "default.handlebars->29->341"
1436 + "default.handlebars->29->326",
1437 + "default.handlebars->29->342"
1438 ]
1439 },
1440 {
@@ -1465,7 +1465,7 @@
1465 "ru": "7-дневная статистика работы",
1466 "zh-chs": "7天電源狀態",
1467 "xloc": [
1468 - "default.handlebars->29->614"
1468 + "default.handlebars->29->615"
1469 ]
1470 },
1471 {
@@ -1518,8 +1518,8 @@
1518 "ru": "8 часов",
1519 "zh-chs": "8小時",
1520 "xloc": [
1521 - "default.handlebars->29->288",
1522 - "default.handlebars->29->302"
1521 + "default.handlebars->29->289",
1522 + "default.handlebars->29->303"
1523 ]
1524 },
1525 {
@@ -1705,7 +1705,7 @@
1705 "zh-chs": "ACM",
1706 "xloc": [
1707 "default-mobile.handlebars->9->192",
1708 - "default.handlebars->29->475"
1708 + "default.handlebars->29->476"
1709 ]
1710 },
1711 {
@@ -1722,8 +1722,8 @@
1722 "ru": "AMT",
1723 "zh-chs": "AMT",
1724 "xloc": [
1725 - "default.handlebars->29->180",
1726 - "default.handlebars->29->373"
1725 + "default.handlebars->29->181",
1726 + "default.handlebars->29->374"
1727 ]
1728 },
1729 {
@@ -1812,7 +1812,7 @@
1812 "ru": "Отказано в доступе",
1813 "zh-chs": "拒絕訪問",
1814 "xloc": [
1815 - "default.handlebars->29->823"
1815 + "default.handlebars->29->824"
1816 ]
1817 },
1818 {
@@ -1847,7 +1847,7 @@
1847 "ru": "Доступ к файлам сервера",
1848 "zh-chs": "訪問服務器文件",
1849 "xloc": [
1850 - "default.handlebars->29->1531"
1850 + "default.handlebars->29->1533"
1851 ]
1852 },
1853 {
@@ -1922,10 +1922,10 @@
1922 "default-mobile.handlebars->9->62",
1923 "default-mobile.handlebars->9->64",
1924 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0",
1925 - "default.handlebars->29->1087",
1925 "default.handlebars->29->1089",
1927 - "default.handlebars->29->447",
1928 - "default.handlebars->29->449"
1926 + "default.handlebars->29->1091",
1927 + "default.handlebars->29->448",
1928 + "default.handlebars->29->450"
1929 ]
1930 },
1931 {
@@ -1956,8 +1956,8 @@
1956 "ru": "Аккаунт заблокирован",
1957 "zh-chs": "帐户已被锁定",
1958 "xloc": [
1959 - "default.handlebars->29->1404",
1960 - "default.handlebars->29->1528"
1959 + "default.handlebars->29->1406",
1960 + "default.handlebars->29->1530"
1961 ]
1962 },
1963 {
@@ -2045,7 +2045,7 @@
2045 "ru": "Действиe",
2046 "zh-chs": "行動",
2047 "xloc": [
2048 - "default.handlebars->29->828",
2048 + "default.handlebars->29->829",
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->29->655",
2067 - "default.handlebars->29->657"
2066 + "default.handlebars->29->656",
2067 + "default.handlebars->29->658"
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->29->519",
2086 + "default.handlebars->29->520",
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"
@@ -2139,9 +2139,9 @@
2139 "xloc": [
2140 "default-mobile.handlebars->9->187",
2141 "default-mobile.handlebars->9->189",
2142 - "default.handlebars->29->468",
2143 - "default.handlebars->29->470",
2144 - "default.handlebars->29->786"
2142 + "default.handlebars->29->469",
2143 + "default.handlebars->29->471",
2144 + "default.handlebars->29->787"
2145 ]
2146 },
2147 {
@@ -2158,10 +2158,10 @@
2158 "ru": "Активация",
2159 "zh-chs": "激活",
2160 "xloc": [
2161 - "default.handlebars->29->1162",
2161 "default.handlebars->29->1164",
2163 - "default.handlebars->29->222",
2164 - "default.handlebars->29->224"
2162 + "default.handlebars->29->1166",
2163 + "default.handlebars->29->223",
2164 + "default.handlebars->29->225"
2165 ]
2166 },
2167 {
@@ -2178,7 +2178,7 @@
2178 "ru": "Активный пользователь",
2179 "zh-chs": "活動用戶{0}",
2180 "xloc": [
2181 - "default.handlebars->29->494"
2181 + "default.handlebars->29->495"
2182 ]
2183 },
2184 {
@@ -2195,8 +2195,8 @@
2195 "ru": "Добавить агент",
2196 "zh-chs": "添加代理",
2197 "xloc": [
2198 - "default.handlebars->29->1166",
2199 - "default.handlebars->29->226"
2198 + "default.handlebars->29->1168",
2199 + "default.handlebars->29->227"
2200 ]
2201 },
2202 {
@@ -2213,7 +2213,7 @@
2213 "ru": "Добавить CIRA",
2214 "zh-chs": "添加CIRA",
2215 "xloc": [
2216 - "default.handlebars->29->216"
2216 + "default.handlebars->29->217"
2217 ]
2218 },
2219 {
@@ -2230,8 +2230,8 @@
2230 "ru": "Добавить устройство",
2231 "zh-chs": "添加設備",
2232 "xloc": [
2233 - "default.handlebars->29->1505",
2234 - "default.handlebars->29->1613"
2233 + "default.handlebars->29->1507",
2234 + "default.handlebars->29->1620"
2235 ]
2236 },
2237 {
@@ -2248,7 +2248,7 @@
2248 "ru": "Добавить событие к устройству",
2249 "zh-chs": "添加設備事件",
2250 "xloc": [
2251 - "default.handlebars->29->597"
2251 + "default.handlebars->29->598"
2252 ]
2253 },
2254 {
@@ -2265,10 +2265,10 @@
2265 "ru": "Добавить группу устройств",
2266 "zh-chs": "添加設備組",
2267 "xloc": [
2268 - "default.handlebars->29->1256",
2269 - "default.handlebars->29->1499",
2270 - "default.handlebars->29->1601",
2271 - "default.handlebars->29->197"
2268 + "default.handlebars->29->1258",
2269 + "default.handlebars->29->1501",
2270 + "default.handlebars->29->1608",
2271 + "default.handlebars->29->198"
2272 ]
2273 },
2274 {
@@ -2276,7 +2276,7 @@
2276 "en": "Add Device Group Permissions",
2277 "nl": "Machtigingen voor apparaatgroep toevoegen",
2278 "xloc": [
2279 - "default.handlebars->29->1253"
2279 + "default.handlebars->29->1255"
2280 ]
2281 },
2282 {
@@ -2290,8 +2290,8 @@
2290 "ru": "Добавить разрешения для устройства",
2291 "zh-chs": "添加设备权限",
2292 "xloc": [
2293 - "default.handlebars->29->1258",
2294 - "default.handlebars->29->1260"
2293 + "default.handlebars->29->1260",
2294 + "default.handlebars->29->1262"
2295 ]
2296 },
2297 {
@@ -2308,7 +2308,7 @@
2308 "ru": "Добавить Intel® AMT CIRA устройство",
2309 "zh-chs": "添加英特爾®AMT CIRA設備",
2310 "xloc": [
2311 - "default.handlebars->29->272"
2311 + "default.handlebars->29->273"
2312 ]
2313 },
2314 {
@@ -2325,7 +2325,7 @@
2325 "ru": "Добавить Intel® AMT устройство",
2326 "zh-chs": "添加英特爾®AMT設備",
2327 "xloc": [
2328 - "default.handlebars->29->239"
2328 + "default.handlebars->29->240"
2329 ]
2330 },
2331 {
@@ -2359,7 +2359,7 @@
2359 "ru": "Добавить локально",
2360 "zh-chs": "添加本地",
2361 "xloc": [
2362 - "default.handlebars->29->218"
2362 + "default.handlebars->29->219"
2363 ]
2364 },
2365 {
@@ -2376,7 +2376,7 @@
2376 "ru": "Добавить участие",
2377 "zh-chs": "添加會員",
2378 "xloc": [
2379 - "default.handlebars->29->1631"
2379 + "default.handlebars->29->1638"
2380 ]
2381 },
2382 {
@@ -2393,7 +2393,7 @@
2393 "ru": "Добавить Mesh Agent",
2394 "zh-chs": "添加網格代理",
2395 "xloc": [
2396 - "default.handlebars->29->344"
2396 + "default.handlebars->29->345"
2397 ]
2398 },
2399 {
@@ -2414,8 +2414,8 @@
2414 "default.handlebars->29->135",
2415 "default.handlebars->29->138",
2416 "default.handlebars->29->139",
2417 - "default.handlebars->29->855",
2418 - "default.handlebars->29->856"
2417 + "default.handlebars->29->857",
2418 + "default.handlebars->29->858"
2419 ]
2420 },
2421 {
@@ -2433,7 +2433,7 @@
2433 "zh-chs": "添加用戶",
2434 "xloc": [
2435 "default-mobile.handlebars->9->288",
2436 - "default.handlebars->29->554"
2436 + "default.handlebars->29->555"
2437 ]
2438 },
2439 {
@@ -2447,7 +2447,7 @@
2447 "ru": "Добавить разрешения для пользовательских устройств",
2448 "zh-chs": "添加用户设备权限",
2449 "xloc": [
2450 - "default.handlebars->29->1263"
2450 + "default.handlebars->29->1265"
2451 ]
2452 },
2453 {
@@ -2464,10 +2464,10 @@
2464 "ru": "Добавить группу пользователей",
2465 "zh-chs": "添加用戶組",
2466 "xloc": [
2467 - "default.handlebars->29->1156",
2468 - "default.handlebars->29->1255",
2469 - "default.handlebars->29->1607",
2470 - "default.handlebars->29->555"
2467 + "default.handlebars->29->1158",
2468 + "default.handlebars->29->1257",
2469 + "default.handlebars->29->1614",
2470 + "default.handlebars->29->556"
2471 ]
2472 },
2473 {
@@ -2475,7 +2475,7 @@
2475 "en": "Add User Group Device Permissions",
2476 "nl": "Gebruikersmachtigingen voor apparaatgroep toevoegen",
2477 "xloc": [
2478 - "default.handlebars->29->1265"
2478 + "default.handlebars->29->1267"
2479 ]
2480 },
2481 {
@@ -2514,8 +2514,8 @@
2514 "ru": "Добавить пользователей",
2515 "zh-chs": "添加用戶",
2516 "xloc": [
2517 - "default.handlebars->29->1155",
2518 - "default.handlebars->29->1494"
2517 + "default.handlebars->29->1157",
2518 + "default.handlebars->29->1496"
2519 ]
2520 },
2521 {
@@ -2532,7 +2532,7 @@
2532 "ru": "Добавить пользователей в группу устройств",
2533 "zh-chs": "將用戶添加到設備組",
2534 "xloc": [
2535 - "default.handlebars->29->1252"
2535 + "default.handlebars->29->1254"
2536 ]
2537 },
2538 {
@@ -2549,7 +2549,7 @@
2549 "ru": "Добавить пользователей в группу",
2550 "zh-chs": "將用戶添加到用戶組",
2551 "xloc": [
2552 - "default.handlebars->29->1527"
2552 + "default.handlebars->29->1529"
2553 ]
2554 },
2555 {
@@ -2583,7 +2583,7 @@
2583 "ru": "Добавить новый Intel® AMT компьютер сканированием локальной сети.",
2584 "zh-chs": "通過掃描本地網絡添加新的英特爾®AMT計算機。",
2585 "xloc": [
2586 - "default.handlebars->29->219"
2586 + "default.handlebars->29->220"
2587 ]
2588 },
2589 {
@@ -2600,8 +2600,8 @@
2600 "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.",
2601 "zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。",
2602 "xloc": [
2603 - "default.handlebars->29->1157",
2604 - "default.handlebars->29->215"
2603 + "default.handlebars->29->1159",
2604 + "default.handlebars->29->216"
2605 ]
2606 },
2607 {
@@ -2618,8 +2618,8 @@
2618 "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.",
2619 "zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。",
2620 "xloc": [
2621 - "default.handlebars->29->1159",
2622 - "default.handlebars->29->217"
2621 + "default.handlebars->29->1161",
2622 + "default.handlebars->29->218"
2623 ]
2624 },
2625 {
@@ -2636,7 +2636,7 @@
2636 "ru": "Добавить новое Intel® AMT устройство к группе устройств \\\"{0}\\\".",
2637 "zh-chs": "將新的英特爾®AMT設備添加到設備組“{0}”。",
2638 "xloc": [
2639 - "default.handlebars->29->229"
2639 + "default.handlebars->29->230"
2640 ]
2641 },
2642 {
@@ -2644,8 +2644,8 @@
2644 "en": "Add a new computer to this device group by installing the mesh agent.",
2645 "nl": "Voeg een nieuwe computer toe aan deze apparaatgroep door de mesh-agent te installeren.",
2646 "xloc": [
2647 - "default.handlebars->29->1165",
2648 - "default.handlebars->29->225"
2647 + "default.handlebars->29->1167",
2648 + "default.handlebars->29->226"
2649 ]
2650 },
2651 {
@@ -2662,7 +2662,7 @@
2662 "ru": "Адрес",
2663 "zh-chs": "地址",
2664 "xloc": [
2665 - "default.handlebars->29->193"
2665 + "default.handlebars->29->194"
2666 ]
2667 },
2668 {
@@ -2696,7 +2696,7 @@
2696 "ru": "Режим управления администратора (ACM)",
2697 "zh-chs": "管理員控制模式(ACM)",
2698 "xloc": [
2699 - "default.handlebars->29->788"
2699 + "default.handlebars->29->789"
2700 ]
2701 },
2702 {
@@ -2713,7 +2713,7 @@
2713 "ru": "Учетные данные администратора",
2714 "zh-chs": "管理員憑證",
2715 "xloc": [
2716 - "default.handlebars->29->794"
2716 + "default.handlebars->29->795"
2717 ]
2718 },
2719 {
@@ -2748,7 +2748,7 @@
2748 "ru": "Области администратора",
2749 "zh-chs": "管理領域",
2750 "xloc": [
2751 - "default.handlebars->29->1555"
2751 + "default.handlebars->29->1558"
2752 ]
2753 },
2754 {
@@ -2783,7 +2783,7 @@
2783 "ru": "Административные области",
2784 "zh-chs": "行政領域",
2785 "xloc": [
2786 - "default.handlebars->29->1452"
2786 + "default.handlebars->29->1454"
2787 ]
2788 },
2789 {
@@ -2800,7 +2800,7 @@
2800 "ru": "Администратор",
2801 "zh-chs": "管理員",
2802 "xloc": [
2803 - "default.handlebars->29->1396"
2803 + "default.handlebars->29->1398"
2804 ]
2805 },
2806 {
@@ -2817,7 +2817,7 @@
2817 "ru": "Африканский",
2818 "zh-chs": "南非語",
2819 "xloc": [
2820 - "default.handlebars->29->858"
2820 + "default.handlebars->29->860"
2821 ]
2822 },
2823 {
@@ -2837,10 +2837,10 @@
2837 "default-mobile.handlebars->9->131",
2838 "default-mobile.handlebars->9->184",
2839 "default-mobile.handlebars->9->200",
2840 - "default.handlebars->29->1317",
2841 - "default.handlebars->29->1325",
2842 - "default.handlebars->29->176",
2843 - "default.handlebars->29->369",
2840 + "default.handlebars->29->1319",
2841 + "default.handlebars->29->1327",
2842 + "default.handlebars->29->177",
2843 + "default.handlebars->29->370",
2844 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
2845 ]
2846 },
@@ -2858,8 +2858,8 @@
2858 "ru": "Агент + Intel AMT",
2859 "zh-chs": "代理+英特爾AMT",
2860 "xloc": [
2861 - "default.handlebars->29->1319",
2862 - "default.handlebars->29->1327"
2861 + "default.handlebars->29->1321",
2862 + "default.handlebars->29->1329"
2863 ]
2864 },
2865 {
@@ -2894,7 +2894,7 @@
2894 "zh-chs": "代理控制台",
2895 "xloc": [
2896 "default-mobile.handlebars->9->323",
2897 - "default.handlebars->29->1273"
2897 + "default.handlebars->29->1275"
2898 ]
2899 },
2900 {
@@ -2911,7 +2911,7 @@
2911 "ru": "Счетчик ошибок агента",
2912 "zh-chs": "座席錯誤計數器",
2913 "xloc": [
2914 - "default.handlebars->29->1645"
2914 + "default.handlebars->29->1652"
2915 ]
2916 },
2917 {
@@ -2980,7 +2980,7 @@
2980 "ru": "Сессии агентов",
2981 "zh-chs": "座席會議",
2982 "xloc": [
2983 - "default.handlebars->29->1661"
2983 + "default.handlebars->29->1668"
2984 ]
2985 },
2986 {
@@ -2998,7 +2998,7 @@
2998 "zh-chs": "代理商標籤",
2999 "xloc": [
3000 "default-mobile.handlebars->9->199",
3001 - "default.handlebars->29->487"
3001 + "default.handlebars->29->488"
3002 ]
3003 },
3004 {
@@ -3015,7 +3015,7 @@
3015 "ru": "Типы агента",
3016 "zh-chs": "代理類型",
3017 "xloc": [
3018 - "default.handlebars->29->1323",
3018 + "default.handlebars->29->1325",
3019 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
3020 ]
3021 },
@@ -3033,9 +3033,9 @@
3033 "ru": "Агент подключен",
3034 "zh-chs": "代理已連接",
3035 "xloc": [
3036 - "default.handlebars->29->143",
3037 - "default.handlebars->29->545",
3038 - "default.handlebars->29->546"
3036 + "default.handlebars->29->144",
3037 + "default.handlebars->29->546",
3038 + "default.handlebars->29->547"
3039 ]
3040 },
3041 {
@@ -3052,7 +3052,7 @@
3052 "ru": "Агент отключился",
3053 "zh-chs": "代理已斷開連接",
3054 "xloc": [
3055 - "default.handlebars->29->147"
3055 + "default.handlebars->29->148"
3056 ]
3057 },
3058 {
@@ -3069,7 +3069,7 @@
3069 "ru": "Агент оффлайн",
3070 "zh-chs": "代理離線",
3071 "xloc": [
3072 - "default.handlebars->29->821"
3072 + "default.handlebars->29->822"
3073 ]
3074 },
3075 {
@@ -3086,7 +3086,7 @@
3086 "ru": "Агент онлайн",
3087 "zh-chs": "代理在線",
3088 "xloc": [
3089 - "default.handlebars->29->820"
3089 + "default.handlebars->29->821"
3090 ]
3091 },
3092 {
@@ -3103,7 +3103,7 @@
3103 "ru": "Агенты",
3104 "zh-chs": "代理商",
3105 "xloc": [
3106 - "default.handlebars->29->1674"
3106 + "default.handlebars->29->1681"
3107 ]
3108 },
3109 {
@@ -3120,7 +3120,7 @@
3120 "ru": "Албанский",
3121 "zh-chs": "阿爾巴尼亞語",
3122 "xloc": [
3123 - "default.handlebars->29->859"
3123 + "default.handlebars->29->861"
3124 ]
3125 },
3126 {
@@ -3173,9 +3173,9 @@
3173 "ru": "Фокусирование всех",
3174 "zh-chs": "全部聚焦",
3175 "xloc": [
3176 - "default.handlebars->29->676",
3177 - "default.handlebars->29->678",
3178 - "default.handlebars->29->679"
3176 + "default.handlebars->29->677",
3177 + "default.handlebars->29->679",
3178 + "default.handlebars->29->680"
3179 ]
3180 },
3181 {
@@ -3192,8 +3192,8 @@
3192 "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.",
3193 "zh-chs": "允許用戶管理此設備組和該組中的設備。",
3194 "xloc": [
3195 - "default.handlebars->29->1222",
3196 - "default.handlebars->29->1524"
3195 + "default.handlebars->29->1224",
3196 + "default.handlebars->29->1526"
3197 ]
3198 },
3199 {
@@ -3207,7 +3207,7 @@
3207 "ru": "Разрешить пользователям управлять этим устройством.",
3208 "zh-chs": "允许用户管理此设备。",
3209 "xloc": [
3210 - "default.handlebars->29->1223"
3210 + "default.handlebars->29->1225"
3211 ]
3212 },
3213 {
@@ -3260,7 +3260,7 @@
3260 "ru": "Поменять (F10 = ESC+0)",
3261 "zh-chs": "備用(F10 = ESC + 0)",
3262 "xloc": [
3263 - "default.handlebars->29->711"
3263 + "default.handlebars->29->712"
3264 ]
3265 },
3266 {
@@ -3294,9 +3294,9 @@
3294 "ru": "Всегда уведомлять",
3295 "zh-chs": "始終通知",
3296 "xloc": [
3297 - "default.handlebars->29->1136",
3298 - "default.handlebars->29->1564",
3299 - "default.handlebars->29->503"
3297 + "default.handlebars->29->1138",
3298 + "default.handlebars->29->1567",
3299 + "default.handlebars->29->504"
3300 ]
3301 },
3302 {
@@ -3313,9 +3313,9 @@
3313 "ru": "Всегда запрашивать",
3314 "zh-chs": "總是提示",
3315 "xloc": [
3316 - "default.handlebars->29->1137",
3317 - "default.handlebars->29->1565",
3318 - "default.handlebars->29->504"
3316 + "default.handlebars->29->1139",
3317 + "default.handlebars->29->1568",
3318 + "default.handlebars->29->505"
3319 ]
3320 },
3321 {
@@ -3420,7 +3420,7 @@
3420 "ru": "Антивирус",
3421 "zh-chs": "防毒軟件",
3422 "xloc": [
3423 - "default.handlebars->29->493"
3423 + "default.handlebars->29->494"
3424 ]
3425 },
3426 {
@@ -3437,7 +3437,7 @@
3437 "ru": "Любые поддерживаемые",
3438 "zh-chs": "任何支持",
3439 "xloc": [
3440 - "default.handlebars->29->282"
3440 + "default.handlebars->29->283"
3441 ]
3442 },
3443 {
@@ -3454,7 +3454,7 @@
3454 "ru": "Apple MacOS",
3455 "zh-chs": "蘋果MacOS",
3456 "xloc": [
3457 - "default.handlebars->29->312"
3457 + "default.handlebars->29->313"
3458 ]
3459 },
3460 {
@@ -3471,7 +3471,7 @@
3471 "ru": "Только Apple MacOS",
3472 "zh-chs": "僅限Apple MacOS",
3473 "xloc": [
3474 - "default.handlebars->29->284"
3474 + "default.handlebars->29->285"
3475 ]
3476 },
3477 {
@@ -3505,7 +3505,7 @@
3505 "ru": "Арабский (Алжир)",
3506 "zh-chs": "阿拉伯文(阿爾及利亞)",
3507 "xloc": [
3508 - "default.handlebars->29->861"
3508 + "default.handlebars->29->863"
3509 ]
3510 },
3511 {
@@ -3522,7 +3522,7 @@
3522 "ru": "Арабский (Бахрейн)",
3523 "zh-chs": "阿拉伯文(巴林)",
3524 "xloc": [
3525 - "default.handlebars->29->862"
3525 + "default.handlebars->29->864"
3526 ]
3527 },
3528 {
@@ -3539,7 +3539,7 @@
3539 "ru": "Арабский (Египет)",
3540 "zh-chs": "阿拉伯文(埃及)",
3541 "xloc": [
3542 - "default.handlebars->29->863"
3542 + "default.handlebars->29->865"
3543 ]
3544 },
3545 {
@@ -3556,7 +3556,7 @@
3556 "ru": "Арабский (Ирак)",
3557 "zh-chs": "阿拉伯文(伊拉克)",
3558 "xloc": [
3559 - "default.handlebars->29->864"
3559 + "default.handlebars->29->866"
3560 ]
3561 },
3562 {
@@ -3573,7 +3573,7 @@
3573 "ru": "Арабский (Иордания)",
3574 "zh-chs": "阿拉伯語(約旦)",
3575 "xloc": [
3576 - "default.handlebars->29->865"
3576 + "default.handlebars->29->867"
3577 ]
3578 },
3579 {
@@ -3590,7 +3590,7 @@
3590 "ru": "Арабский (Кувейт)",
3591 "zh-chs": "阿拉伯文(科威特)",
3592 "xloc": [
3593 - "default.handlebars->29->866"
3593 + "default.handlebars->29->868"
3594 ]
3595 },
3596 {
@@ -3607,7 +3607,7 @@
3607 "ru": "Арабский (Ливан)",
3608 "zh-chs": "阿拉伯語(黎巴嫩)",
3609 "xloc": [
3610 - "default.handlebars->29->867"
3610 + "default.handlebars->29->869"
3611 ]
3612 },
3613 {
@@ -3624,7 +3624,7 @@
3624 "ru": "Арабский (Ливия)",
3625 "zh-chs": "阿拉伯文(利比亞)",
3626 "xloc": [
3627 - "default.handlebars->29->868"
3627 + "default.handlebars->29->870"
3628 ]
3629 },
3630 {
@@ -3641,7 +3641,7 @@
3641 "ru": "Арабский (Марокко)",
3642 "zh-chs": "阿拉伯文(摩洛哥)",
3643 "xloc": [
3644 - "default.handlebars->29->869"
3644 + "default.handlebars->29->871"
3645 ]
3646 },
3647 {
@@ -3658,7 +3658,7 @@
3658 "ru": "Арабский (Оман)",
3659 "zh-chs": "阿拉伯文(阿曼)",
3660 "xloc": [
3661 - "default.handlebars->29->870"
3661 + "default.handlebars->29->872"
3662 ]
3663 },
3664 {
@@ -3675,7 +3675,7 @@
3675 "ru": "Арабский (Катар)",
3676 "zh-chs": "阿拉伯語(卡塔爾)",
3677 "xloc": [
3678 - "default.handlebars->29->871"
3678 + "default.handlebars->29->873"
3679 ]
3680 },
3681 {
@@ -3692,7 +3692,7 @@
3692 "ru": "Арабский (Саудовская Аравия)",
3693 "zh-chs": "阿拉伯語(沙特阿拉伯)",
3694 "xloc": [
3695 - "default.handlebars->29->872"
3695 + "default.handlebars->29->874"
3696 ]
3697 },
3698 {
@@ -3709,7 +3709,7 @@
3709 "ru": "Арабский (стандартный)",
3710 "zh-chs": "阿拉伯語(標準)",
3711 "xloc": [
3712 - "default.handlebars->29->860"
3712 + "default.handlebars->29->862"
3713 ]
3714 },
3715 {
@@ -3726,7 +3726,7 @@
3726 "ru": "Арабский (Сирия)",
3727 "zh-chs": "阿拉伯語(敘利亞)",
3728 "xloc": [
3729 - "default.handlebars->29->873"
3729 + "default.handlebars->29->875"
3730 ]
3731 },
3732 {
@@ -3743,7 +3743,7 @@
3743 "ru": "Арабский (Тунис)",
3744 "zh-chs": "阿拉伯文(突尼斯)",
3745 "xloc": [
3746 - "default.handlebars->29->874"
3746 + "default.handlebars->29->876"
3747 ]
3748 },
3749 {
@@ -3760,7 +3760,7 @@
3760 "ru": "Арабский (О.А.Э.)",
3761 "zh-chs": "阿拉伯文(阿聯酋)",
3762 "xloc": [
3763 - "default.handlebars->29->875"
3763 + "default.handlebars->29->877"
3764 ]
3765 },
3766 {
@@ -3777,7 +3777,7 @@
3777 "ru": "Арабский (Йемен)",
3778 "zh-chs": "阿拉伯文(也門)",
3779 "xloc": [
3780 - "default.handlebars->29->876"
3780 + "default.handlebars->29->878"
3781 ]
3782 },
3783 {
@@ -3794,7 +3794,7 @@
3794 "ru": "Арагонский",
3795 "zh-chs": "阿拉貢人",
3796 "xloc": [
3797 - "default.handlebars->29->877"
3797 + "default.handlebars->29->879"
3798 ]
3799 },
3800 {
@@ -3811,7 +3811,7 @@
3811 "ru": "Архитектура",
3812 "zh-chs": "建築",
3813 "xloc": [
3814 - "default.handlebars->29->762"
3814 + "default.handlebars->29->763"
3815 ]
3816 },
3817 {
@@ -3828,7 +3828,7 @@
3828 "ru": "Вы действительно хотите подключиться к {0} устройствам?",
3829 "zh-chs": "您確定要連接到{0}設備嗎?",
3830 "xloc": [
3831 - "default.handlebars->29->210"
3831 + "default.handlebars->29->211"
3832 ]
3833 },
3834 {
@@ -3846,7 +3846,7 @@
3846 "zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。",
3847 "xloc": [
3848 "default-mobile.handlebars->9->294",
3849 - "default.handlebars->29->1200"
3849 + "default.handlebars->29->1202"
3850 ]
3851 },
3852 {
@@ -3863,7 +3863,7 @@
3863 "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?",
3864 "zh-chs": "您確定要刪除節點{0}嗎?",
3865 "xloc": [
3866 - "default.handlebars->29->636"
3866 + "default.handlebars->29->637"
3867 ]
3868 },
3869 {
@@ -3880,7 +3880,7 @@
3880 "ru": "Вы действительно хотите деинсталировать выбранного агента?",
3881 "zh-chs": "您確定要卸載所選代理嗎?",
3882 "xloc": [
3883 - "default.handlebars->29->625"
3883 + "default.handlebars->29->626"
3884 ]
3885 },
3886 {
@@ -3897,7 +3897,7 @@
3897 "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?",
3898 "zh-chs": "您確定要卸載所選的{0}代理嗎?",
3899 "xloc": [
3900 - "default.handlebars->29->624"
3900 + "default.handlebars->29->625"
3901 ]
3902 },
3903 {
@@ -3914,7 +3914,7 @@
3914 "ru": "Вы уверенны, что {0} плагин: {1}",
3915 "zh-chs": "您確定要{0}插件嗎:{1}",
3916 "xloc": [
3917 - "default.handlebars->29->1714"
3917 + "default.handlebars->29->1721"
3918 ]
3919 },
3920 {
@@ -3931,7 +3931,7 @@
3931 "ru": "Армянский",
3932 "zh-chs": "亞美尼亞人",
3933 "xloc": [
3934 - "default.handlebars->29->878"
3934 + "default.handlebars->29->880"
3935 ]
3936 },
3937 {
@@ -3964,7 +3964,7 @@
3964 "ru": "Ассамский",
3965 "zh-chs": "阿薩姆語",
3966 "xloc": [
3967 - "default.handlebars->29->879"
3967 + "default.handlebars->29->881"
3968 ]
3969 },
3970 {
@@ -3981,7 +3981,7 @@
3981 "ru": "Астурии",
3982 "zh-chs": "阿斯圖里亞斯人",
3983 "xloc": [
3984 - "default.handlebars->29->880"
3984 + "default.handlebars->29->882"
3985 ]
3986 },
3987 {
@@ -3998,7 +3998,7 @@
3998 "ru": "Приложение аутентификации",
3999 "zh-chs": "身份驗證應用",
4000 "xloc": [
4001 - "default.handlebars->29->1568"
4001 + "default.handlebars->29->1571"
4002 ]
4003 },
4004 {
@@ -4021,8 +4021,8 @@
4021 "default-mobile.handlebars->9->42",
4022 "default.handlebars->29->109",
4023 "default.handlebars->29->114",
4024 - "default.handlebars->29->844",
4025 - "default.handlebars->29->846"
4024 + "default.handlebars->29->846",
4025 + "default.handlebars->29->848"
4026 ]
4027 },
4028 {
@@ -4090,7 +4090,7 @@
4090 "ru": "Автоудаление",
4091 "zh-chs": "自動刪除",
4092 "xloc": [
4093 - "default.handlebars->29->1124"
4093 + "default.handlebars->29->1126"
4094 ]
4095 },
4096 {
@@ -4144,7 +4144,7 @@
4144 "ru": "Азербайджанский",
4145 "zh-chs": "阿塞拜疆",
4146 "xloc": [
4147 - "default.handlebars->29->881"
4147 + "default.handlebars->29->883"
4148 ]
4149 },
4150 {
@@ -4161,7 +4161,7 @@
4161 "ru": "BIOS",
4162 "zh-chs": "的BIOS",
4163 "xloc": [
4164 - "default.handlebars->29->800"
4164 + "default.handlebars->29->801"
4165 ]
4166 },
4167 {
@@ -4241,7 +4241,7 @@
4241 "ru": "Фоновый и интерактивный",
4242 "zh-chs": "背景與互動",
4243 "xloc": [
4244 - "default.handlebars->29->316"
4244 + "default.handlebars->29->317"
4245 ]
4246 },
4247 {
@@ -4258,9 +4258,9 @@
4258 "ru": "Фоновый и интерактивный",
4259 "zh-chs": "背景與互動",
4260 "xloc": [
4261 - "default.handlebars->29->1300",
4262 - "default.handlebars->29->1307",
4263 - "default.handlebars->29->294"
4261 + "default.handlebars->29->1302",
4262 + "default.handlebars->29->1309",
4263 + "default.handlebars->29->295"
4264 ]
4265 },
4266 {
@@ -4277,10 +4277,10 @@
4277 "ru": "Только фоновый",
4278 "zh-chs": "僅背景",
4279 "xloc": [
4280 - "default.handlebars->29->1301",
4281 - "default.handlebars->29->1308",
4282 - "default.handlebars->29->295",
4283 - "default.handlebars->29->317"
4280 + "default.handlebars->29->1303",
4281 + "default.handlebars->29->1310",
4282 + "default.handlebars->29->296",
4283 + "default.handlebars->29->318"
4284 ]
4285 },
4286 {
@@ -4314,7 +4314,7 @@
4314 "ru": "Резервные коды",
4315 "zh-chs": "備用碼",
4316 "xloc": [
4317 - "default.handlebars->29->1570"
4317 + "default.handlebars->29->1573"
4318 ]
4319 },
4320 {
@@ -4331,7 +4331,7 @@
4331 "ru": "Плохой ключ",
4332 "zh-chs": "錯誤的簽名",
4333 "xloc": [
4334 - "default.handlebars->29->1652"
4334 + "default.handlebars->29->1659"
4335 ]
4336 },
4337 {
@@ -4348,7 +4348,7 @@
4348 "ru": "Плохой веб-сертификат",
4349 "zh-chs": "錯誤的網絡證書",
4350 "xloc": [
4351 - "default.handlebars->29->1651"
4351 + "default.handlebars->29->1658"
4352 ]
4353 },
4354 {
@@ -4365,7 +4365,7 @@
4365 "ru": "Баскский",
4366 "zh-chs": "巴斯克",
4367 "xloc": [
4368 - "default.handlebars->29->882"
4368 + "default.handlebars->29->884"
4369 ]
4370 },
4371 {
@@ -4399,7 +4399,7 @@
4399 "ru": "Белорусский",
4400 "zh-chs": "白俄羅斯語",
4401 "xloc": [
4402 - "default.handlebars->29->884"
4402 + "default.handlebars->29->886"
4403 ]
4404 },
4405 {
@@ -4416,7 +4416,7 @@
4416 "ru": "Бенгальский",
4417 "zh-chs": "孟加拉",
4418 "xloc": [
4419 - "default.handlebars->29->885"
4419 + "default.handlebars->29->887"
4420 ]
4421 },
4422 {
@@ -4450,7 +4450,7 @@
4450 "ru": "Боснийский",
4451 "zh-chs": "波斯尼亞人",
4452 "xloc": [
4453 - "default.handlebars->29->886"
4453 + "default.handlebars->29->888"
4454 ]
4455 },
4456 {
@@ -4467,7 +4467,7 @@
4467 "ru": "Бретонский",
4468 "zh-chs": "布列塔尼",
4469 "xloc": [
4470 - "default.handlebars->29->887"
4470 + "default.handlebars->29->889"
4471 ]
4472 },
4473 {
@@ -4484,7 +4484,7 @@
4484 "ru": "Отправить сообщение",
4485 "zh-chs": "廣播",
4486 "xloc": [
4487 - "default.handlebars->29->1492",
4487 + "default.handlebars->29->1494",
4488 "default.handlebars->container->column_l->p4->3->1->0->3->1"
4489 ]
4490 },
@@ -4502,7 +4502,7 @@
4502 "ru": "Отправить сообщение",
4503 "zh-chs": "廣播消息",
4504 "xloc": [
4505 - "default.handlebars->29->1437"
4505 + "default.handlebars->29->1439"
4506 ]
4507 },
4508 {
@@ -4519,7 +4519,7 @@
4519 "ru": "Отправить сообщение всем подключенным пользователям.",
4520 "zh-chs": "向所有連接的用戶廣播消息。",
4521 "xloc": [
4522 - "default.handlebars->29->1436"
4522 + "default.handlebars->29->1438"
4523 ]
4524 },
4525 {
@@ -4536,7 +4536,7 @@
4536 "ru": "Болгарский",
4537 "zh-chs": "保加利亞語",
4538 "xloc": [
4539 - "default.handlebars->29->883"
4539 + "default.handlebars->29->885"
4540 ]
4541 },
4542 {
@@ -4553,7 +4553,7 @@
4553 "ru": "Бирманский",
4554 "zh-chs": "緬甸人",
4555 "xloc": [
4556 - "default.handlebars->29->888"
4556 + "default.handlebars->29->890"
4557 ]
4558 },
4559 {
@@ -4571,7 +4571,7 @@
4571 "zh-chs": "CCM",
4572 "xloc": [
4573 "default-mobile.handlebars->9->191",
4574 - "default.handlebars->29->473"
4574 + "default.handlebars->29->474"
4575 ]
4576 },
4577 {
@@ -4589,10 +4589,10 @@
4589 "zh-chs": "CIRA",
4590 "xloc": [
4591 "default-mobile.handlebars->9->132",
4592 - "default.handlebars->29->1188",
4593 - "default.handlebars->29->1193",
4594 - "default.handlebars->29->178",
4595 - "default.handlebars->29->371"
4592 + "default.handlebars->29->1190",
4593 + "default.handlebars->29->1195",
4594 + "default.handlebars->29->179",
4595 + "default.handlebars->29->372"
4596 ]
4597 },
4598 {
@@ -4609,7 +4609,7 @@
4609 "ru": "CIRA Сервер",
4610 "zh-chs": "CIRA服務器",
4611 "xloc": [
4612 - "default.handlebars->29->1702"
4612 + "default.handlebars->29->1709"
4613 ]
4614 },
4615 {
@@ -4626,7 +4626,7 @@
4626 "ru": "CIRA Сервер команды",
4627 "zh-chs": "CIRA服務器命令",
4628 "xloc": [
4629 - "default.handlebars->29->1703"
4629 + "default.handlebars->29->1710"
4630 ]
4631 },
4632 {
@@ -4641,7 +4641,7 @@
4641 "ru": "CPU",
4642 "zh-chs": "CPU",
4643 "xloc": [
4644 - "default.handlebars->29->806"
4644 + "default.handlebars->29->807"
4645 ]
4646 },
4647 {
@@ -4658,7 +4658,7 @@
4658 "ru": "Загрузка CPU",
4659 "zh-chs": "CPU負載",
4660 "xloc": [
4661 - "default.handlebars->29->1666"
4661 + "default.handlebars->29->1673"
4662 ]
4663 },
4664 {
@@ -4675,7 +4675,7 @@
4675 "ru": "Загрузка CPU за последние 15 минут",
4676 "zh-chs": "最近15分鐘的CPU負載",
4677 "xloc": [
4678 - "default.handlebars->29->1669"
4678 + "default.handlebars->29->1676"
4679 ]
4680 },
4681 {
@@ -4692,7 +4692,7 @@
4692 "ru": "Загрузка CPU за последние 5 минут",
4693 "zh-chs": "最近5分鐘的CPU負載",
4694 "xloc": [
4695 - "default.handlebars->29->1668"
4695 + "default.handlebars->29->1675"
4696 ]
4697 },
4698 {
@@ -4709,7 +4709,7 @@
4709 "ru": "Загрузка CPU за последнюю минуту",
4710 "zh-chs": "最後一分鐘的CPU負載",
4711 "xloc": [
4712 - "default.handlebars->29->1667"
4712 + "default.handlebars->29->1674"
4713 ]
4714 },
4715 {
@@ -4726,8 +4726,8 @@
4726 "ru": "CR+LF",
4727 "zh-chs": "CR +低頻",
4728 "xloc": [
4729 - "default.handlebars->29->704",
4730 - "default.handlebars->29->713",
4729 + "default.handlebars->29->705",
4730 + "default.handlebars->29->714",
4731 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
4732 ]
4733 },
@@ -4745,9 +4745,9 @@
4745 "ru": "Формат CSV",
4746 "zh-chs": "CSV格式",
4747 "xloc": [
4748 - "default.handlebars->29->1371",
4749 - "default.handlebars->29->1428",
4750 - "default.handlebars->29->398"
4748 + "default.handlebars->29->1373",
4749 + "default.handlebars->29->1430",
4750 + "default.handlebars->29->399"
4751 ]
4752 },
4753 {
@@ -4764,7 +4764,7 @@
4764 "ru": "Ошибка вызова",
4765 "zh-chs": "通話錯誤",
4766 "xloc": [
4767 - "default.handlebars->29->1715"
4767 + "default.handlebars->29->1722"
4768 ]
4769 },
4770 {
@@ -4783,7 +4783,7 @@
4783 "xloc": [
4784 "default-mobile.handlebars->9->51",
4785 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
4786 - "default.handlebars->29->1108",
4786 + "default.handlebars->29->1110",
4787 "default.handlebars->container->dialog->idx_dlgButtonBar",
4788 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
4789 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -4795,8 +4795,8 @@
4795 "en": "Capacity",
4796 "nl": "Capaciteit",
4797 "xloc": [
4798 - "default.handlebars->29->814",
4799 - "default.handlebars->29->816"
4798 + "default.handlebars->29->815",
4799 + "default.handlebars->29->817"
4800 ]
4801 },
4802 {
@@ -4813,7 +4813,7 @@
4813 "ru": "Объем / Скорость",
4814 "zh-chs": "容量/速度",
4815 "xloc": [
4816 - "default.handlebars->29->809"
4816 + "default.handlebars->29->810"
4817 ]
4818 },
4819 {
@@ -4830,7 +4830,7 @@
4830 "ru": "Каталонский",
4831 "zh-chs": "加泰羅尼亞語",
4832 "xloc": [
4833 - "default.handlebars->29->889"
4833 + "default.handlebars->29->891"
4834 ]
4835 },
4836 {
@@ -4847,7 +4847,7 @@
4847 "ru": "Установить центр карты здесь",
4848 "zh-chs": "中心地圖在這裡",
4849 "xloc": [
4850 - "default.handlebars->29->438"
4850 + "default.handlebars->29->439"
4851 ]
4852 },
4853 {
@@ -4864,7 +4864,7 @@
4864 "ru": "Чаморро",
4865 "zh-chs": "查莫羅",
4866 "xloc": [
4867 - "default.handlebars->29->890"
4867 + "default.handlebars->29->892"
4868 ]
4869 },
4870 {
@@ -4889,7 +4889,7 @@
4889 "ru": "Смена email для {0}",
4890 "zh-chs": "更改{0}的電子郵件",
4891 "xloc": [
4892 - "default.handlebars->29->1590"
4892 + "default.handlebars->29->1597"
4893 ]
4894 },
4895 {
@@ -4906,9 +4906,9 @@
4906 "ru": "Смена группы",
4907 "zh-chs": "變更組",
4908 "xloc": [
4909 - "default.handlebars->29->526",
4910 - "default.handlebars->29->633",
4911 - "default.handlebars->29->634"
4909 + "default.handlebars->29->527",
4910 + "default.handlebars->29->634",
4911 + "default.handlebars->29->635"
4912 ]
4913 },
4914 {
@@ -4926,8 +4926,8 @@
4926 "zh-chs": "更改密碼",
4927 "xloc": [
4928 "default-mobile.handlebars->9->59",
4929 - "default.handlebars->29->1084",
4930 - "default.handlebars->29->1583"
4929 + "default.handlebars->29->1086",
4930 + "default.handlebars->29->1586"
4931 ]
4932 },
4933 {
@@ -4944,7 +4944,7 @@
4944 "ru": "Смена пароля для {0}",
4945 "zh-chs": "更改{0}的密碼",
4946 "xloc": [
4947 - "default.handlebars->29->1597"
4947 + "default.handlebars->29->1604"
4948 ]
4949 },
4950 {
@@ -5014,7 +5014,7 @@
5014 "ru": "Изменить пароль для этого пользователя",
5015 "zh-chs": "更改該用戶的密碼",
5016 "xloc": [
5017 - "default.handlebars->29->1582"
5017 + "default.handlebars->29->1585"
5018 ]
5019 },
5020 {
@@ -5048,7 +5048,7 @@
5048 "ru": "Измените адрес электронной почты вашей учетной записи здесь.",
5049 "zh-chs": "在此處更改您的帳戶電子郵件地址。",
5050 "xloc": [
5051 - "default.handlebars->29->1071"
5051 + "default.handlebars->29->1073"
5052 ]
5053 },
5054 {
@@ -5065,7 +5065,7 @@
5065 "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.",
5066 "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
5067 "xloc": [
5068 - "default.handlebars->29->1077"
5068 + "default.handlebars->29->1079"
5069 ]
5070 },
5071 {
@@ -5082,7 +5082,7 @@
5082 "ru": "Изменение языка потребует перезагрузить страницу.",
5083 "zh-chs": "更改語言將需要刷新頁面。",
5084 "xloc": [
5085 - "default.handlebars->29->1056"
5085 + "default.handlebars->29->1058"
5086 ]
5087 },
5088 {
@@ -5099,9 +5099,9 @@
5099 "ru": "Чат",
5100 "zh-chs": "聊天室",
5101 "xloc": [
5102 - "default.handlebars->29->1388",
5103 - "default.handlebars->29->575",
5104 - "default.handlebars->29->594"
5102 + "default.handlebars->29->1390",
5103 + "default.handlebars->29->576",
5104 + "default.handlebars->29->595"
5105 ]
5106 },
5107 {
@@ -5120,8 +5120,8 @@
5120 "xloc": [
5121 "default-mobile.handlebars->9->315",
5122 "default-mobile.handlebars->9->333",
5123 - "default.handlebars->29->1250",
5124 - "default.handlebars->29->1284"
5123 + "default.handlebars->29->1252",
5124 + "default.handlebars->29->1286"
5125 ]
5126 },
5127 {
@@ -5138,7 +5138,7 @@
5138 "ru": "Чеченский",
5139 "zh-chs": "車臣",
5140 "xloc": [
5141 - "default.handlebars->29->891"
5141 + "default.handlebars->29->893"
5142 ]
5143 },
5144 {
@@ -5192,6 +5192,12 @@
5192 "default.handlebars->container->column_l->p6->p6info->p2ServerActions->3->p2ServerActionsVersion->0"
5193 ]
5194 },
5195 + {
5196 + "en": "Check your phone and enter the verification code.",
5197 + "xloc": [
5198 + "default.handlebars->29->141"
5199 + ]
5200 + },
5201 {
5202 "cs": "Kontrola…",
5203 "de": "Überprüfen...",
@@ -5206,8 +5212,8 @@
5212 "ru": "Проверка...",
5213 "zh-chs": "檢查...",
5214 "xloc": [
5209 - "default.handlebars->29->1709",
5210 - "default.handlebars->29->857"
5215 + "default.handlebars->29->1716",
5216 + "default.handlebars->29->859"
5217 ]
5218 },
5219 {
@@ -5224,7 +5230,7 @@
5230 "ru": "Китайский",
5231 "zh-chs": "中文",
5232 "xloc": [
5227 - "default.handlebars->29->892"
5233 + "default.handlebars->29->894"
5234 ]
5235 },
5236 {
@@ -5241,7 +5247,7 @@
5247 "ru": "Китайский (Гонконг)",
5248 "zh-chs": "中文(香港)",
5249 "xloc": [
5244 - "default.handlebars->29->893"
5250 + "default.handlebars->29->895"
5251 ]
5252 },
5253 {
@@ -5258,7 +5264,7 @@
5264 "ru": "Китайский (КНР)",
5265 "zh-chs": "中文(中國)",
5266 "xloc": [
5261 - "default.handlebars->29->894"
5267 + "default.handlebars->29->896"
5268 ]
5269 },
5270 {
@@ -5273,7 +5279,7 @@
5279 "ru": "Упрощенный китайский)",
5280 "zh-chs": "简体中文)",
5281 "xloc": [
5276 - "default.handlebars->29->1054"
5282 + "default.handlebars->29->1056"
5283 ]
5284 },
5285 {
@@ -5290,7 +5296,7 @@
5296 "ru": "Китайский (Сингапур)",
5297 "zh-chs": "中文(新加坡)",
5298 "xloc": [
5293 - "default.handlebars->29->895"
5299 + "default.handlebars->29->897"
5300 ]
5301 },
5302 {
@@ -5307,7 +5313,7 @@
5313 "ru": "Китайский (Тайвань)",
5314 "zh-chs": "中文(台灣)",
5315 "xloc": [
5310 - "default.handlebars->29->896"
5316 + "default.handlebars->29->898"
5317 ]
5318 },
5319 {
@@ -5342,7 +5348,7 @@
5348 "ru": "Чувашский",
5349 "zh-chs": "楚瓦什",
5350 "xloc": [
5345 - "default.handlebars->29->897"
5351 + "default.handlebars->29->899"
5352 ]
5353 },
5354 {
@@ -5359,7 +5365,7 @@
5365 "ru": "Очистка CIRA",
5366 "zh-chs": "清理CIRA",
5367 "xloc": [
5362 - "default.handlebars->29->256"
5368 + "default.handlebars->29->257"
5369 ]
5370 },
5371 {
@@ -5382,11 +5388,11 @@
5388 "default-mobile.handlebars->9->274",
5389 "default-mobile.handlebars->9->276",
5390 "default-mobile.handlebars->9->28",
5385 - "default.handlebars->29->1365",
5386 - "default.handlebars->29->739",
5387 - "default.handlebars->29->741",
5388 - "default.handlebars->29->743",
5389 - "default.handlebars->29->745",
5391 + "default.handlebars->29->1367",
5392 + "default.handlebars->29->740",
5393 + "default.handlebars->29->742",
5394 + "default.handlebars->29->744",
5395 + "default.handlebars->29->746",
5396 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
5397 "default.handlebars->container->column_l->p41->3->1",
5398 "messenger.handlebars->xbottom"
@@ -5414,7 +5420,7 @@
5420 "en": "Clear all",
5421 "nl": "Wis alle meldingen",
5422 "xloc": [
5417 - "default.handlebars->29->1639"
5423 + "default.handlebars->29->1646"
5424 ]
5425 },
5426 {
@@ -5431,7 +5437,7 @@
5437 "ru": "Очистить ядро",
5438 "zh-chs": "清除核心",
5439 "xloc": [
5434 - "default.handlebars->29->830"
5440 + "default.handlebars->29->831"
5441 ]
5442 },
5443 {
@@ -5462,7 +5468,7 @@
5468 "ru": "Очистить это уведомление",
5469 "zh-chs": "清除此通知",
5470 "xloc": [
5465 - "default.handlebars->29->1638"
5471 + "default.handlebars->29->1645"
5472 ]
5473 },
5474 {
@@ -5497,8 +5503,8 @@
5503 "en": "Click here to edit the device group name",
5504 "nl": "Klik hier om de apparaatgroepsnaam te bewerken",
5505 "xloc": [
5500 - "default.handlebars->29->1117",
5501 - "default.handlebars->29->1321"
5506 + "default.handlebars->29->1119",
5507 + "default.handlebars->29->1323"
5508 ]
5509 },
5510 {
@@ -5515,14 +5521,14 @@
5521 "ru": "Для изменения имени устройства на сервере нажмите сюда",
5522 "zh-chs": "單擊此處編輯服務器端設備名稱",
5523 "xloc": [
5518 - "default.handlebars->29->452"
5524 + "default.handlebars->29->453"
5525 ]
5526 },
5527 {
5528 "en": "Click here to edit the user group name",
5529 "nl": "Klik hier om de gebruikersgroepsnaam te bewerken",
5530 "xloc": [
5525 - "default.handlebars->29->1485"
5531 + "default.handlebars->29->1487"
5532 ]
5533 },
5534 {
@@ -5568,7 +5574,7 @@
5574 "zh-chs": "單擊確定將驗證郵件發送到:",
5575 "xloc": [
5576 "default-mobile.handlebars->9->44",
5571 - "default.handlebars->29->1068"
5577 + "default.handlebars->29->1070"
5578 ]
5579 },
5580 {
@@ -5602,7 +5608,7 @@
5608 "ru": "Режим управления клиентом (CCM)",
5609 "zh-chs": "客戶端控制模式(CCM)",
5610 "xloc": [
5605 - "default.handlebars->29->787"
5611 + "default.handlebars->29->788"
5612 ]
5613 },
5614 {
@@ -5619,8 +5625,8 @@
5625 "ru": "Клиент инициировал удаленный доступ",
5626 "zh-chs": "客戶端啟動的遠程訪問",
5627 "xloc": [
5622 - "default.handlebars->29->1187",
5623 - "default.handlebars->29->1192"
5628 + "default.handlebars->29->1189",
5629 + "default.handlebars->29->1194"
5630 ]
5631 },
5632 {
@@ -5657,7 +5663,7 @@
5663 "default-mobile.handlebars->9->26",
5664 "default.handlebars->29->121",
5665 "default.handlebars->29->129",
5660 - "default.handlebars->29->697"
5666 + "default.handlebars->29->698"
5667 ]
5668 },
5669 {
@@ -5692,8 +5698,8 @@
5698 "ru": "Общие группы устройств",
5699 "zh-chs": "通用設備組",
5700 "xloc": [
5695 - "default.handlebars->29->1500",
5696 - "default.handlebars->29->1602"
5701 + "default.handlebars->29->1502",
5702 + "default.handlebars->29->1609"
5703 ]
5704 },
5705 {
@@ -5710,8 +5716,8 @@
5716 "ru": "Общие устройства",
5717 "zh-chs": "通用設備",
5718 "xloc": [
5713 - "default.handlebars->29->1506",
5714 - "default.handlebars->29->1614"
5719 + "default.handlebars->29->1508",
5720 + "default.handlebars->29->1621"
5721 ]
5722 },
5723 {
@@ -5729,7 +5735,7 @@
5735 "zh-chs": "將{1}入口{2}中的{0}限製到此位置?",
5736 "xloc": [
5737 "default-mobile.handlebars->9->96",
5732 - "default.handlebars->29->1360"
5738 + "default.handlebars->29->1362"
5739 ]
5740 },
5741 {
@@ -5748,14 +5754,14 @@
5754 "xloc": [
5755 "default-mobile.handlebars->9->230",
5756 "default-mobile.handlebars->9->295",
5751 - "default.handlebars->29->1201",
5752 - "default.handlebars->29->1414",
5753 - "default.handlebars->29->1477",
5754 - "default.handlebars->29->1520",
5755 - "default.handlebars->29->1600",
5756 - "default.handlebars->29->395",
5757 - "default.handlebars->29->628",
5758 - "default.handlebars->29->637"
5757 + "default.handlebars->29->1203",
5758 + "default.handlebars->29->1416",
5759 + "default.handlebars->29->1479",
5760 + "default.handlebars->29->1522",
5761 + "default.handlebars->29->1607",
5762 + "default.handlebars->29->396",
5763 + "default.handlebars->29->629",
5764 + "default.handlebars->29->638"
5765 ]
5766 },
5767 {
@@ -5773,7 +5779,7 @@
5779 "zh-chs": "確認將1個副本複製到此位置?",
5780 "xloc": [
5781 "default-mobile.handlebars->9->265",
5776 - "default.handlebars->29->734"
5782 + "default.handlebars->29->735"
5783 ]
5784 },
5785 {
@@ -5791,7 +5797,7 @@
5797 "zh-chs": "確認{0}個條目的副本到此位置?",
5798 "xloc": [
5799 "default-mobile.handlebars->9->264",
5794 - "default.handlebars->29->733"
5800 + "default.handlebars->29->734"
5801 ]
5802 },
5803 {
@@ -5799,7 +5805,7 @@
5805 "en": "Confirm delete selected account(s)?",
5806 "nl": "Bevestig verwijdering geselecteerde account(s)?",
5807 "xloc": [
5802 - "default.handlebars->29->1413"
5808 + "default.handlebars->29->1415"
5809 ]
5810 },
5811 {
@@ -5816,7 +5822,7 @@
5822 "ru": "Подтвердить удаление выбранных устройств?",
5823 "zh-chs": "確認刪除所選設備?",
5824 "xloc": [
5819 - "default.handlebars->29->394"
5825 + "default.handlebars->29->395"
5826 ]
5827 },
5828 {
@@ -5824,7 +5830,7 @@
5830 "en": "Confirm delete selected user groups(s)?",
5831 "nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?",
5832 "xloc": [
5827 - "default.handlebars->29->1476"
5833 + "default.handlebars->29->1478"
5834 ]
5835 },
5836 {
@@ -5841,7 +5847,7 @@
5847 "ru": "Подтвердить удаление пользователя {0}?",
5848 "zh-chs": "確認刪除用戶{0}?",
5849 "xloc": [
5844 - "default.handlebars->29->1599"
5850 + "default.handlebars->29->1606"
5851 ]
5852 },
5853 {
@@ -5849,7 +5855,7 @@
5855 "en": "Confirm membership removal of user \\\"{0}\\\"?",
5856 "nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?",
5857 "xloc": [
5852 - "default.handlebars->29->1523"
5858 + "default.handlebars->29->1525"
5859 ]
5860 },
5861 {
@@ -5857,7 +5863,7 @@
5863 "en": "Confirm membership removal of user group \\\"{0}\\\"?",
5864 "nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?",
5865 "xloc": [
5860 - "default.handlebars->29->1629"
5866 + "default.handlebars->29->1636"
5867 ]
5868 },
5869 {
@@ -5875,7 +5881,7 @@
5881 "zh-chs": "確認將1個入口移動到此位置?",
5882 "xloc": [
5883 "default-mobile.handlebars->9->267",
5878 - "default.handlebars->29->736"
5884 + "default.handlebars->29->737"
5885 ]
5886 },
5887 {
@@ -5893,7 +5899,7 @@
5899 "zh-chs": "確認將{0}個條目移到此位置?",
5900 "xloc": [
5901 "default-mobile.handlebars->9->266",
5896 - "default.handlebars->29->735"
5902 + "default.handlebars->29->736"
5903 ]
5904 },
5905 {
@@ -5910,7 +5916,7 @@
5916 "ru": "Подтвердить перезапись?",
5917 "zh-chs": "確認覆蓋?",
5918 "xloc": [
5913 - "default.handlebars->29->1359"
5919 + "default.handlebars->29->1361"
5920 ]
5921 },
5922 {
@@ -5918,8 +5924,8 @@
5924 "en": "Confirm removal of access rights for device \\\"{0}\\\"?",
5925 "nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?",
5926 "xloc": [
5921 - "default.handlebars->29->1513",
5922 - "default.handlebars->29->1620"
5927 + "default.handlebars->29->1515",
5928 + "default.handlebars->29->1627"
5929 ]
5930 },
5931 {
@@ -5927,8 +5933,8 @@
5933 "en": "Confirm removal of access rights for device group \\\"{0}\\\"?",
5934 "nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?",
5935 "xloc": [
5930 - "default.handlebars->29->1515",
5931 - "default.handlebars->29->1633"
5936 + "default.handlebars->29->1517",
5937 + "default.handlebars->29->1640"
5938 ]
5939 },
5940 {
@@ -5936,7 +5942,7 @@
5942 "en": "Confirm removal of access rights for user \\\"{0}\\\"?",
5943 "nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?",
5944 "xloc": [
5939 - "default.handlebars->29->1622"
5945 + "default.handlebars->29->1629"
5946 ]
5947 },
5948 {
@@ -5944,7 +5950,7 @@
5950 "en": "Confirm removal of access rights for user group \\\"{0}\\\"?",
5951 "nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?",
5952 "xloc": [
5947 - "default.handlebars->29->1625"
5953 + "default.handlebars->29->1632"
5954 ]
5955 },
5956 {
@@ -5952,8 +5958,8 @@
5958 "en": "Confirm removal of access rights?",
5959 "nl": "Verwijdering van toegangsrechten bevestigen?",
5960 "xloc": [
5955 - "default.handlebars->29->1623",
5956 - "default.handlebars->29->1626"
5961 + "default.handlebars->29->1630",
5962 + "default.handlebars->29->1633"
5963 ]
5964 },
5965 {
@@ -5971,7 +5977,7 @@
5977 "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?",
5978 "xloc": [
5979 "default-mobile.handlebars->9->43",
5974 - "default.handlebars->29->847"
5980 + "default.handlebars->29->849"
5981 ]
5982 },
5983 {
@@ -6018,7 +6024,7 @@
6024 "en": "Confirm removal of rights for user \\\"{0}\\\"?",
6025 "nl": "Bevestig de verwijdering van rechten voor gebruiker \\\"{0}\\\"?",
6026 "xloc": [
6021 - "default.handlebars->29->1293"
6027 + "default.handlebars->29->1295"
6028 ]
6029 },
6030 {
@@ -6026,7 +6032,7 @@
6032 "en": "Confirm removal of rights for user group \\\"{0}\\\"?",
6033 "nl": "Bevestig de verwijdering van rechten voor de gebruikergroep \\\"{0}\\\"?",
6034 "xloc": [
6029 - "default.handlebars->29->1295"
6035 + "default.handlebars->29->1297"
6036 ]
6037 },
6038 {
@@ -6068,8 +6074,8 @@
6074 "default-mobile.handlebars->9->244",
6075 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
6076 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
6071 - "default.handlebars->29->1140",
6072 - "default.handlebars->29->716",
6077 + "default.handlebars->29->1142",
6078 + "default.handlebars->29->717",
6079 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
6080 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
6081 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -6090,7 +6096,7 @@
6096 "ru": "Подключиться ко всем",
6097 "zh-chs": "全部連接",
6098 "xloc": [
6093 - "default.handlebars->29->209",
6099 + "default.handlebars->29->210",
6100 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
6101 ]
6102 },
@@ -6108,8 +6114,8 @@
6114 "ru": "Подключиться к серверу",
6115 "zh-chs": "連接到服務器",
6116 "xloc": [
6111 - "default.handlebars->29->1191",
6112 - "default.handlebars->29->1195"
6117 + "default.handlebars->29->1193",
6118 + "default.handlebars->29->1197"
6119 ]
6120 },
6121 {
@@ -6180,7 +6186,7 @@
6186 "ru": "Подключено Intel® AMT",
6187 "zh-chs": "連接的英特爾®AMT",
6188 "xloc": [
6183 - "default.handlebars->29->1657"
6189 + "default.handlebars->29->1664"
6190 ]
6191 },
6192 {
@@ -6197,7 +6203,7 @@
6203 "ru": "Подключенные пользователи",
6204 "zh-chs": "關聯用戶",
6205 "xloc": [
6200 - "default.handlebars->29->1662"
6206 + "default.handlebars->29->1669"
6207 ]
6208 },
6209 {
@@ -6214,7 +6220,7 @@
6220 "ru": "Подключено сейчас",
6221 "zh-chs": "現在已連接",
6222 "xloc": [
6217 - "default.handlebars->29->766"
6223 + "default.handlebars->29->767"
6224 ]
6225 },
6226 {
@@ -6251,10 +6257,10 @@
6257 "default-mobile.handlebars->9->2",
6258 "default-mobile.handlebars->9->280",
6259 "default-mobile.handlebars->9->6",
6254 - "default.handlebars->29->203",
6255 - "default.handlebars->29->206",
6256 - "default.handlebars->29->212",
6257 - "default.handlebars->29->757",
6260 + "default.handlebars->29->204",
6261 + "default.handlebars->29->207",
6262 + "default.handlebars->29->213",
6263 + "default.handlebars->29->758",
6264 "default.handlebars->29->9",
6265 "xterm.handlebars->9->2"
6266 ]
@@ -6273,7 +6279,7 @@
6279 "ru": "Подключений ",
6280 "zh-chs": "連接數",
6281 "xloc": [
6276 - "default.handlebars->29->1673"
6282 + "default.handlebars->29->1680"
6283 ]
6284 },
6285 {
@@ -6290,7 +6296,7 @@
6296 "ru": "Ретранслятор подключения",
6297 "zh-chs": "連接繼電器",
6298 "xloc": [
6293 - "default.handlebars->29->1701"
6299 + "default.handlebars->29->1708"
6300 ]
6301 },
6302 {
@@ -6342,9 +6348,9 @@
6348 "zh-chs": "連接性",
6349 "xloc": [
6350 "default-mobile.handlebars->9->205",
6345 - "default.handlebars->29->1328",
6346 - "default.handlebars->29->194",
6347 - "default.handlebars->29->517",
6351 + "default.handlebars->29->1330",
6352 + "default.handlebars->29->195",
6353 + "default.handlebars->29->518",
6354 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
6355 ]
6356 },
@@ -6362,8 +6368,8 @@
6368 "ru": "Консоль",
6369 "zh-chs": "安慰",
6370 "xloc": [
6365 - "default.handlebars->29->570",
6366 - "default.handlebars->29->589",
6371 + "default.handlebars->29->571",
6372 + "default.handlebars->29->590",
6373 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
6374 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
6375 "default.handlebars->contextMenu->cxconsole"
@@ -6383,7 +6389,7 @@
6389 "ru": "Консоль - ",
6390 "zh-chs": "安慰 -",
6391 "xloc": [
6386 - "default.handlebars->29->453"
6392 + "default.handlebars->29->454"
6393 ]
6394 },
6395 {
@@ -6397,8 +6403,8 @@
6403 "ru": "контроль",
6404 "zh-chs": "控制",
6405 "xloc": [
6400 - "default.handlebars->29->569",
6401 - "default.handlebars->29->588"
6406 + "default.handlebars->29->570",
6407 + "default.handlebars->29->589"
6408 ]
6409 },
6410 {
@@ -6415,7 +6421,7 @@
6421 "ru": "Cookie-кодировщик",
6422 "zh-chs": "Cookie編碼器",
6423 "xloc": [
6418 - "default.handlebars->29->1687"
6424 + "default.handlebars->29->1694"
6425 ]
6426 },
6427 {
@@ -6470,7 +6476,7 @@
6476 "ru": "Скопировать ссылку MacOS agent в буфер обмена",
6477 "zh-chs": "將MacOS代理URL複製到剪貼板",
6478 "xloc": [
6473 - "default.handlebars->29->335"
6479 + "default.handlebars->29->336"
6480 ]
6481 },
6482 {
@@ -6484,7 +6490,7 @@
6490 "ru": "Скопировать URL-адрес агента Windows 32bit в буфер обмена",
6491 "zh-chs": "将Windows 32位代理URL复制到剪贴板",
6492 "xloc": [
6487 - "default.handlebars->29->323"
6493 + "default.handlebars->29->324"
6494 ]
6495 },
6496 {
@@ -6498,7 +6504,7 @@
6504 "ru": "Скопировать URL-адрес агента Windows 64bit в буфер обмена",
6505 "zh-chs": "将Windows 64位代理URL复制到剪贴板",
6506 "xloc": [
6501 - "default.handlebars->29->327"
6507 + "default.handlebars->29->328"
6508 ]
6509 },
6510 {
@@ -6537,9 +6543,9 @@
6543 "ru": "Скопировать ссылку в буфер обмена",
6544 "zh-chs": "複製鏈接到剪貼板",
6545 "xloc": [
6540 - "default.handlebars->29->1333",
6541 - "default.handlebars->29->1347",
6542 - "default.handlebars->29->307"
6546 + "default.handlebars->29->1335",
6547 + "default.handlebars->29->1349",
6548 + "default.handlebars->29->308"
6549 ]
6550 },
6551 {
@@ -6716,7 +6722,7 @@
6722 "ru": "Основной сервер",
6723 "zh-chs": "核心服務器",
6724 "xloc": [
6719 - "default.handlebars->29->1686"
6725 + "default.handlebars->29->1693"
6726 ]
6727 },
6728 {
@@ -6733,7 +6739,7 @@
6739 "ru": "Kорсиканский",
6740 "zh-chs": "科西嘉人",
6741 "xloc": [
6736 - "default.handlebars->29->898"
6742 + "default.handlebars->29->900"
6743 ]
6744 },
6745 {
@@ -6750,7 +6756,7 @@
6756 "ru": "Создать учетную запись",
6757 "zh-chs": "創建帳號",
6758 "xloc": [
6753 - "default.handlebars->29->1448",
6759 + "default.handlebars->29->1450",
6760 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
6761 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
6762 ]
@@ -6786,7 +6792,7 @@
6792 "ru": "Создать группу пользователей",
6793 "zh-chs": "創建用戶組",
6794 "xloc": [
6789 - "default.handlebars->29->1482"
6795 + "default.handlebars->29->1484"
6796 ]
6797 },
6798 {
@@ -6803,7 +6809,7 @@
6809 "ru": "Создайте новую группу устройств, используя параметры ниже.",
6810 "zh-chs": "使用以下選項創建一個新的設備組。",
6811 "xloc": [
6806 - "default.handlebars->29->1091"
6812 + "default.handlebars->29->1093"
6813 ]
6814 },
6815 {
@@ -6820,7 +6826,7 @@
6826 "ru": "Создать новую группу устройств.",
6827 "zh-chs": "創建一個新的設備組。",
6828 "xloc": [
6823 - "default.handlebars->29->196"
6829 + "default.handlebars->29->197"
6830 ]
6831 },
6832 {
@@ -6837,7 +6843,7 @@
6843 "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:",
6844 "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:",
6845 "xloc": [
6840 - "default.handlebars->29->1419"
6846 + "default.handlebars->29->1421"
6847 ]
6848 },
6849 {
@@ -6872,7 +6878,7 @@
6878 "ru": "Создано",
6879 "zh-chs": "創建",
6880 "xloc": [
6875 - "default.handlebars->29->1544"
6881 + "default.handlebars->29->1547"
6882 ]
6883 },
6884 {
@@ -6907,7 +6913,7 @@
6913 "ru": "Кри (Канадский язык)",
6914 "zh-chs": "克里",
6915 "xloc": [
6910 - "default.handlebars->29->899"
6916 + "default.handlebars->29->901"
6917 ]
6918 },
6919 {
@@ -6924,7 +6930,7 @@
6930 "ru": "Хорватский",
6931 "zh-chs": "克羅地亞語",
6932 "xloc": [
6927 - "default.handlebars->29->900"
6933 + "default.handlebars->29->902"
6934 ]
6935 },
6936 {
@@ -7065,7 +7071,7 @@
7071 "ru": "Чешский",
7072 "zh-chs": "捷克文",
7073 "xloc": [
7068 - "default.handlebars->29->901"
7074 + "default.handlebars->29->903"
7075 ]
7076 },
7077 {
@@ -7099,7 +7105,7 @@
7105 "ru": "Датский",
7106 "zh-chs": "丹麥文",
7107 "xloc": [
7102 - "default.handlebars->29->902"
7108 + "default.handlebars->29->904"
7109 ]
7110 },
7111 {
@@ -7116,7 +7122,7 @@
7122 "ru": "DataChannel",
7123 "zh-chs": "數據通道",
7124 "xloc": [
7119 - "default.handlebars->29->673"
7125 + "default.handlebars->29->674"
7126 ]
7127 },
7128 {
@@ -7133,7 +7139,7 @@
7139 "ru": "Дата & Время",
7140 "zh-chs": "日期和時間",
7141 "xloc": [
7136 - "default.handlebars->29->1059"
7142 + "default.handlebars->29->1061"
7143 ]
7144 },
7145 {
@@ -7150,7 +7156,7 @@
7156 "ru": "День",
7157 "zh-chs": "天",
7158 "xloc": [
7153 - "default.handlebars->29->612"
7159 + "default.handlebars->29->613"
7160 ]
7161 },
7162 {
@@ -7167,7 +7173,7 @@
7173 "ru": "Деактивировать режим управления клиентом (CCM)",
7174 "zh-chs": "停用客戶端控制模式(CCM)",
7175 "xloc": [
7170 - "default.handlebars->29->1179"
7176 + "default.handlebars->29->1181"
7177 ]
7178 },
7179 {
@@ -7185,7 +7191,7 @@
7191 "zh-chs": "沉睡",
7192 "xloc": [
7193 "default-mobile.handlebars->9->120",
7188 - "default.handlebars->29->354"
7194 + "default.handlebars->29->355"
7195 ]
7196 },
7197 {
@@ -7206,9 +7212,9 @@
7212 "default-mobile.handlebars->9->91",
7213 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
7214 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
7209 - "default.handlebars->29->1354",
7210 - "default.handlebars->29->425",
7211 - "default.handlebars->29->726",
7215 + "default.handlebars->29->1356",
7216 + "default.handlebars->29->426",
7217 + "default.handlebars->29->727",
7218 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
7219 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
7220 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -7232,7 +7238,7 @@
7238 "zh-chs": "刪除帳戶",
7239 "xloc": [
7240 "default-mobile.handlebars->9->53",
7235 - "default.handlebars->29->1076"
7241 + "default.handlebars->29->1078"
7242 ]
7243 },
7244 {
@@ -7240,7 +7246,7 @@
7246 "en": "Delete Accounts",
7247 "nl": "Verwijder accounts",
7248 "xloc": [
7243 - "default.handlebars->29->1415"
7249 + "default.handlebars->29->1417"
7250 ]
7251 },
7252 {
@@ -7258,7 +7264,7 @@
7264 "zh-chs": "刪除裝置",
7265 "xloc": [
7266 "default-mobile.handlebars->9->209",
7261 - "default.handlebars->29->528"
7267 + "default.handlebars->29->529"
7268 ]
7269 },
7270 {
@@ -7277,8 +7283,8 @@
7283 "xloc": [
7284 "default-mobile.handlebars->9->293",
7285 "default-mobile.handlebars->9->296",
7280 - "default.handlebars->29->1172",
7281 - "default.handlebars->29->1202"
7286 + "default.handlebars->29->1174",
7287 + "default.handlebars->29->1204"
7288 ]
7289 },
7290 {
@@ -7296,7 +7302,7 @@
7302 "zh-chs": "刪除節點",
7303 "xloc": [
7304 "default-mobile.handlebars->9->228",
7299 - "default.handlebars->29->638"
7305 + "default.handlebars->29->639"
7306 ]
7307 },
7308 {
@@ -7313,7 +7319,7 @@
7319 "ru": "Удалить устройства",
7320 "zh-chs": "刪除節點",
7321 "xloc": [
7316 - "default.handlebars->29->396"
7322 + "default.handlebars->29->397"
7323 ]
7324 },
7325 {
@@ -7330,7 +7336,7 @@
7336 "ru": "Удалить пользователя",
7337 "zh-chs": "刪除用戶",
7338 "xloc": [
7333 - "default.handlebars->29->1581"
7339 + "default.handlebars->29->1584"
7340 ]
7341 },
7342 {
@@ -7347,8 +7353,8 @@
7353 "ru": "Удалить группу пользователей",
7354 "zh-chs": "刪除用戶組",
7355 "xloc": [
7350 - "default.handlebars->29->1511",
7351 - "default.handlebars->29->1521"
7356 + "default.handlebars->29->1513",
7357 + "default.handlebars->29->1523"
7358 ]
7359 },
7360 {
@@ -7356,7 +7362,7 @@
7362 "en": "Delete User Groups",
7363 "nl": "Gebruikersgroepen verwijderen",
7364 "xloc": [
7359 - "default.handlebars->29->1478"
7365 + "default.handlebars->29->1480"
7366 ]
7367 },
7368 {
@@ -7373,7 +7379,7 @@
7379 "ru": "Удалить пользователя {0}",
7380 "zh-chs": "刪除用戶{0}",
7381 "xloc": [
7376 - "default.handlebars->29->1598"
7382 + "default.handlebars->29->1605"
7383 ]
7384 },
7385 {
@@ -7391,7 +7397,7 @@
7397 "zh-chs": "刪除帳戶",
7398 "xloc": [
7399 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->9->0",
7394 - "default.handlebars->29->1411",
7400 + "default.handlebars->29->1413",
7401 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
7402 ]
7403 },
@@ -7409,7 +7415,7 @@
7415 "ru": "Удалить устройства",
7416 "zh-chs": "刪除設備",
7417 "xloc": [
7412 - "default.handlebars->29->391"
7418 + "default.handlebars->29->392"
7419 ]
7420 },
7421 {
@@ -7417,7 +7423,7 @@
7423 "en": "Delete group",
7424 "nl": "Verwijder groep",
7425 "xloc": [
7420 - "default.handlebars->29->1474"
7426 + "default.handlebars->29->1476"
7427 ]
7428 },
7429 {
@@ -7434,7 +7440,7 @@
7440 "ru": "Удалить пункт?",
7441 "zh-chs": "刪除項目?",
7442 "xloc": [
7437 - "default.handlebars->29->426"
7443 + "default.handlebars->29->427"
7444 ]
7445 },
7446 {
@@ -7453,8 +7459,8 @@
7459 "xloc": [
7460 "default-mobile.handlebars->9->259",
7461 "default-mobile.handlebars->9->93",
7456 - "default.handlebars->29->1356",
7457 - "default.handlebars->29->728"
7462 + "default.handlebars->29->1358",
7463 + "default.handlebars->29->729"
7464 ]
7465 },
7466 {
@@ -7471,7 +7477,7 @@
7477 "ru": "Удалить группу пользователей {0}?",
7478 "zh-chs": "刪除用戶組{0}?",
7479 "xloc": [
7474 - "default.handlebars->29->1519"
7480 + "default.handlebars->29->1521"
7481 ]
7482 },
7483 {
@@ -7490,8 +7496,8 @@
7496 "xloc": [
7497 "default-mobile.handlebars->9->258",
7498 "default-mobile.handlebars->9->92",
7493 - "default.handlebars->29->1355",
7494 - "default.handlebars->29->727"
7499 + "default.handlebars->29->1357",
7500 + "default.handlebars->29->728"
7501 ]
7502 },
7503 {
@@ -7591,17 +7597,17 @@
7597 "default-mobile.handlebars->9->285",
7598 "default-mobile.handlebars->9->298",
7599 "default-mobile.handlebars->9->70",
7594 - "default.handlebars->29->1096",
7595 - "default.handlebars->29->1121",
7596 - "default.handlebars->29->1204",
7597 - "default.handlebars->29->1481",
7598 - "default.handlebars->29->1487",
7599 - "default.handlebars->29->1488",
7600 - "default.handlebars->29->1517",
7601 - "default.handlebars->29->463",
7600 + "default.handlebars->29->1098",
7601 + "default.handlebars->29->1123",
7602 + "default.handlebars->29->1206",
7603 + "default.handlebars->29->1483",
7604 + "default.handlebars->29->1489",
7605 + "default.handlebars->29->1490",
7606 + "default.handlebars->29->1519",
7607 "default.handlebars->29->464",
7603 - "default.handlebars->29->669",
7604 - "default.handlebars->29->772",
7608 + "default.handlebars->29->465",
7609 + "default.handlebars->29->670",
7610 + "default.handlebars->29->773",
7611 "default.handlebars->29->78",
7612 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
7613 ]
@@ -7634,8 +7640,8 @@
7640 "ru": "Рабочий стол",
7641 "zh-chs": "桌面",
7642 "xloc": [
7637 - "default.handlebars->29->1209",
7638 - "default.handlebars->29->431",
7643 + "default.handlebars->29->1211",
7644 + "default.handlebars->29->432",
7645 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
7646 "default.handlebars->contextMenu->cxdesktop"
7647 ]
@@ -7671,9 +7677,9 @@
7677 "ru": "Уведомление на рабочем столе",
7678 "zh-chs": "桌面通知",
7679 "xloc": [
7674 - "default.handlebars->29->1131",
7675 - "default.handlebars->29->1559",
7676 - "default.handlebars->29->498"
7680 + "default.handlebars->29->1133",
7681 + "default.handlebars->29->1562",
7682 + "default.handlebars->29->499"
7683 ]
7684 },
7685 {
@@ -7690,9 +7696,9 @@
7696 "ru": "Запрос рабочего стола",
7697 "zh-chs": "桌面提示",
7698 "xloc": [
7693 - "default.handlebars->29->1130",
7694 - "default.handlebars->29->1558",
7695 - "default.handlebars->29->497"
7699 + "default.handlebars->29->1132",
7700 + "default.handlebars->29->1561",
7701 + "default.handlebars->29->498"
7702 ]
7703 },
7704 {
@@ -7709,9 +7715,9 @@
7715 "ru": "Запрос рабочего стола + панель инструментов",
7716 "zh-chs": "桌面提示+工具欄",
7717 "xloc": [
7712 - "default.handlebars->29->1128",
7713 - "default.handlebars->29->1556",
7714 - "default.handlebars->29->495"
7718 + "default.handlebars->29->1130",
7719 + "default.handlebars->29->1559",
7720 + "default.handlebars->29->496"
7721 ]
7722 },
7723 {
@@ -7736,9 +7742,9 @@
7742 "ru": "Панель инструментов рабочего стола",
7743 "zh-chs": "桌面工具欄",
7744 "xloc": [
7739 - "default.handlebars->29->1129",
7740 - "default.handlebars->29->1557",
7741 - "default.handlebars->29->496"
7745 + "default.handlebars->29->1131",
7746 + "default.handlebars->29->1560",
7747 + "default.handlebars->29->497"
7748 ]
7749 },
7750 {
@@ -7807,8 +7813,8 @@
7813 "ru": "Устройство",
7814 "zh-chs": "設備",
7815 "xloc": [
7810 - "default.handlebars->29->1231",
7811 - "default.handlebars->29->1617",
7816 + "default.handlebars->29->1233",
7817 + "default.handlebars->29->1624",
7818 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
7819 ]
7820 },
@@ -7827,7 +7833,7 @@
7833 "zh-chs": "設備動作",
7834 "xloc": [
7835 "default-mobile.handlebars->9->221",
7830 - "default.handlebars->29->611"
7836 + "default.handlebars->29->612"
7837 ]
7838 },
7839 {
@@ -7844,12 +7850,12 @@
7850 "ru": "Группа устройства",
7851 "zh-chs": "設備組",
7852 "xloc": [
7847 - "default.handlebars->29->1226",
7848 - "default.handlebars->29->1229",
7849 - "default.handlebars->29->1230",
7850 - "default.handlebars->29->1503",
7851 - "default.handlebars->29->1509",
7852 - "default.handlebars->29->1605"
7853 + "default.handlebars->29->1228",
7854 + "default.handlebars->29->1231",
7855 + "default.handlebars->29->1232",
7856 + "default.handlebars->29->1505",
7857 + "default.handlebars->29->1511",
7858 + "default.handlebars->29->1612"
7859 ]
7860 },
7861 {
@@ -7867,7 +7873,7 @@
7873 "zh-chs": "設備組用戶",
7874 "xloc": [
7875 "default-mobile.handlebars->9->339",
7870 - "default.handlebars->29->1291"
7876 + "default.handlebars->29->1293"
7877 ]
7878 },
7879 {
@@ -7885,11 +7891,11 @@
7891 "zh-chs": "設備組",
7892 "xloc": [
7893 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
7888 - "default.handlebars->29->1380",
7889 - "default.handlebars->29->1468",
7890 - "default.handlebars->29->1490",
7891 - "default.handlebars->29->1553",
7892 - "default.handlebars->29->1660",
7894 + "default.handlebars->29->1382",
7895 + "default.handlebars->29->1470",
7896 + "default.handlebars->29->1492",
7897 + "default.handlebars->29->1556",
7898 + "default.handlebars->29->1667",
7899 "default.handlebars->container->column_l->p2->p2info->7"
7900 ]
7901 },
@@ -7907,7 +7913,7 @@
7913 "ru": "Экспорт информации об устройстве",
7914 "zh-chs": "設備信息導出",
7915 "xloc": [
7910 - "default.handlebars->29->402"
7916 + "default.handlebars->29->403"
7917 ]
7918 },
7919 {
@@ -7924,7 +7930,7 @@
7930 "ru": "Местонахождение устройства",
7931 "zh-chs": "設備位置",
7932 "xloc": [
7927 - "default.handlebars->29->639"
7933 + "default.handlebars->29->640"
7934 ]
7935 },
7936 {
@@ -7942,8 +7948,8 @@
7948 "zh-chs": "設備名稱",
7949 "xloc": [
7950 "default-mobile.handlebars->9->232",
7945 - "default.handlebars->29->230",
7946 - "default.handlebars->29->667",
7951 + "default.handlebars->29->231",
7952 + "default.handlebars->29->668",
7953 "player.handlebars->3->9"
7954 ]
7955 },
@@ -7961,7 +7967,7 @@
7967 "ru": "Уведомление устройства",
7968 "zh-chs": "設備通知",
7969 "xloc": [
7964 - "default.handlebars->29->602"
7970 + "default.handlebars->29->603"
7971 ]
7972 },
7973 {
@@ -7995,8 +8001,8 @@
8001 "ru": "Подключения устройств.",
8002 "zh-chs": "設備連接。",
8003 "xloc": [
7998 - "default.handlebars->29->1064",
7999 - "default.handlebars->29->1312"
8004 + "default.handlebars->29->1066",
8005 + "default.handlebars->29->1314"
8006 ]
8007 },
8008 {
@@ -8013,8 +8019,8 @@
8019 "ru": "Отключения устройств.",
8020 "zh-chs": "設備斷開連接。",
8021 "xloc": [
8016 - "default.handlebars->29->1065",
8017 - "default.handlebars->29->1313"
8022 + "default.handlebars->29->1067",
8023 + "default.handlebars->29->1315"
8024 ]
8025 },
8026 {
@@ -8031,7 +8037,7 @@
8037 "ru": "Примечания могут быть просмотрены и изменены другими администраторами.",
8038 "zh-chs": "其他設備組管理員可以查看和更改設備組註釋。",
8039 "xloc": [
8034 - "default.handlebars->29->600"
8040 + "default.handlebars->29->601"
8041 ]
8042 },
8043 {
@@ -8048,7 +8054,7 @@
8054 "ru": "Устройство обнаружено, но состояние питания не может быть получено.",
8055 "zh-chs": "檢測到設備,但無法獲得電源狀態。",
8056 "xloc": [
8051 - "default.handlebars->29->359"
8057 + "default.handlebars->29->360"
8058 ]
8059 },
8060 {
@@ -8066,7 +8072,7 @@
8072 "zh-chs": "設備正在休眠(S4)",
8073 "xloc": [
8074 "default-mobile.handlebars->9->128",
8069 - "default.handlebars->29->365"
8075 + "default.handlebars->29->366"
8076 ]
8077 },
8078 {
@@ -8084,7 +8090,7 @@
8090 "zh-chs": "設備處於深度睡眠狀態(S3)",
8091 "xloc": [
8092 "default-mobile.handlebars->9->127",
8087 - "default.handlebars->29->364"
8093 + "default.handlebars->29->365"
8094 ]
8095 },
8096 {
@@ -8101,7 +8107,7 @@
8107 "ru": "Устройство находится в состоянии глубокого сна (S3).",
8108 "zh-chs": "設備處於深度睡眠狀態(S3)。",
8109 "xloc": [
8104 - "default.handlebars->29->353"
8110 + "default.handlebars->29->354"
8111 ]
8112 },
8113 {
@@ -8118,7 +8124,7 @@
8124 "ru": "Устройство находится в режиме гибернации (S4).",
8125 "zh-chs": "設備處於休眠狀態(S4)。",
8126 "xloc": [
8121 - "default.handlebars->29->355"
8127 + "default.handlebars->29->356"
8128 ]
8129 },
8130 {
@@ -8135,7 +8141,7 @@
8141 "ru": "Устройство находится в выключенном состоянии (S5).",
8142 "zh-chs": "設備處於關機狀態(S5)。",
8143 "xloc": [
8138 - "default.handlebars->29->357"
8144 + "default.handlebars->29->358"
8145 ]
8146 },
8147 {
@@ -8153,7 +8159,7 @@
8159 "zh-chs": "設備處於睡眠狀態(S1)",
8160 "xloc": [
8161 "default-mobile.handlebars->9->125",
8156 - "default.handlebars->29->362"
8162 + "default.handlebars->29->363"
8163 ]
8164 },
8165 {
@@ -8170,7 +8176,7 @@
8176 "ru": "Устройство находится в спящем режиме (S1).",
8177 "zh-chs": "設備處於睡眠狀態(S1)。",
8178 "xloc": [
8173 - "default.handlebars->29->349"
8179 + "default.handlebars->29->350"
8180 ]
8181 },
8182 {
@@ -8188,7 +8194,7 @@
8194 "zh-chs": "設備處於睡眠狀態(S2)",
8195 "xloc": [
8196 "default-mobile.handlebars->9->126",
8191 - "default.handlebars->29->363"
8197 + "default.handlebars->29->364"
8198 ]
8199 },
8200 {
@@ -8205,7 +8211,7 @@
8211 "ru": "Устройство находится в спящем режиме (S2).",
8212 "zh-chs": "設備處於睡眠狀態(S2)。",
8213 "xloc": [
8208 - "default.handlebars->29->351"
8214 + "default.handlebars->29->352"
8215 ]
8216 },
8217 {
@@ -8223,7 +8229,7 @@
8229 "zh-chs": "設備處於軟斷開狀態(S5)",
8230 "xloc": [
8231 "default-mobile.handlebars->9->129",
8226 - "default.handlebars->29->366"
8232 + "default.handlebars->29->367"
8233 ]
8234 },
8235 {
@@ -8241,7 +8247,7 @@
8247 "zh-chs": "設備已上電",
8248 "xloc": [
8249 "default-mobile.handlebars->9->124",
8244 - "default.handlebars->29->361"
8250 + "default.handlebars->29->362"
8251 ]
8252 },
8253 {
@@ -8258,7 +8264,7 @@
8264 "ru": "Устройство включено.",
8265 "zh-chs": "設備上電。",
8266 "xloc": [
8261 - "default.handlebars->29->347"
8267 + "default.handlebars->29->348"
8268 ]
8269 },
8270 {
@@ -8276,7 +8282,7 @@
8282 "zh-chs": "設備存在,但無法確定電源狀態",
8283 "xloc": [
8284 "default-mobile.handlebars->9->130",
8279 - "default.handlebars->29->367"
8285 + "default.handlebars->29->368"
8286 ]
8287 },
8288 {
@@ -8293,7 +8299,7 @@
8299 "ru": "Имя устройства",
8300 "zh-chs": "設備名稱",
8301 "xloc": [
8296 - "default.handlebars->29->443"
8302 + "default.handlebars->29->444"
8303 ]
8304 },
8305 {
@@ -8310,7 +8316,7 @@
8316 "ru": "DeviceCheckbox",
8317 "zh-chs": "設備複選框",
8318 "xloc": [
8313 - "default.handlebars->29->393"
8319 + "default.handlebars->29->394"
8320 ]
8321 },
8322 {
@@ -8318,8 +8324,8 @@
8324 "en": "Devices",
8325 "nl": "Apparaten",
8326 "xloc": [
8321 - "default.handlebars->29->1469",
8322 - "default.handlebars->29->1491"
8327 + "default.handlebars->29->1471",
8328 + "default.handlebars->29->1493"
8329 ]
8330 },
8331 {
@@ -8336,7 +8342,7 @@
8342 "ru": "Отключено",
8343 "zh-chs": "殘障人士",
8344 "xloc": [
8339 - "default.handlebars->29->490"
8345 + "default.handlebars->29->491"
8346 ]
8347 },
8348 {
@@ -8355,8 +8361,8 @@
8361 "xloc": [
8362 "default-mobile.handlebars->9->245",
8363 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8358 - "default.handlebars->29->1141",
8359 - "default.handlebars->29->717",
8364 + "default.handlebars->29->1143",
8365 + "default.handlebars->29->718",
8366 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
8367 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
8368 "xterm.handlebars->p11->deskarea0->deskarea1->3"
@@ -8396,10 +8402,10 @@
8402 "default-mobile.handlebars->9->1",
8403 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus",
8404 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status",
8399 - "default.handlebars->29->185",
8400 - "default.handlebars->29->202",
8401 - "default.handlebars->29->205",
8402 - "default.handlebars->29->211",
8405 + "default.handlebars->29->186",
8406 + "default.handlebars->29->203",
8407 + "default.handlebars->29->206",
8408 + "default.handlebars->29->212",
8409 "default.handlebars->29->8",
8410 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus",
8411 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus",
@@ -8438,7 +8444,7 @@
8444 "ru": "Отобразить имя группы устройств",
8445 "zh-chs": "顯示設備組名稱",
8446 "xloc": [
8441 - "default.handlebars->29->1063"
8447 + "default.handlebars->29->1065"
8448 ]
8449 },
8450 {
@@ -8455,7 +8461,7 @@
8461 "ru": "Отображаемое имя",
8462 "zh-chs": "顯示名稱",
8463 "xloc": [
8458 - "default.handlebars->29->688"
8464 + "default.handlebars->29->689"
8465 ]
8466 },
8467 {
@@ -8469,7 +8475,7 @@
8475 "ru": "Показать публичную ссылку",
8476 "zh-chs": "显示公共链接",
8477 "xloc": [
8472 - "default.handlebars->29->1332"
8478 + "default.handlebars->29->1334"
8479 ]
8480 },
8481 {
@@ -8486,7 +8492,7 @@
8492 "ru": "Ничего не делать",
8493 "zh-chs": "沒做什麼",
8494 "xloc": [
8489 - "default.handlebars->29->1185"
8495 + "default.handlebars->29->1187"
8496 ]
8497 },
8498 {
@@ -8521,8 +8527,8 @@
8527 "ru": "Не настраивать",
8528 "zh-chs": "不要配置",
8529 "xloc": [
8524 - "default.handlebars->29->1189",
8525 - "default.handlebars->29->1194"
8530 + "default.handlebars->29->1191",
8531 + "default.handlebars->29->1196"
8532 ]
8533 },
8534 {
@@ -8539,7 +8545,7 @@
8545 "ru": "Не подключаться к серверу",
8546 "zh-chs": "不連接服務器",
8547 "xloc": [
8542 - "default.handlebars->29->1190"
8548 + "default.handlebars->29->1192"
8549 ]
8550 },
8551 {
@@ -8593,7 +8599,7 @@
8599 "zh-chs": "下載文件",
8600 "xloc": [
8601 "default-mobile.handlebars->9->278",
8596 - "default.handlebars->29->746"
8602 + "default.handlebars->29->747"
8603 ]
8604 },
8605 {
@@ -8610,7 +8616,7 @@
8616 "ru": "Скачать MeshCentral Router, инструмент сопоставления TCP портов.",
8617 "zh-chs": "下載MeshCentral Router,一個TCP端口映射工具。",
8618 "xloc": [
8613 - "default.handlebars->29->200"
8619 + "default.handlebars->29->201"
8620 ]
8621 },
8622 {
@@ -8627,7 +8633,7 @@
8633 "ru": "Скачать MeshCmd",
8634 "zh-chs": "下載MeshCmd",
8635 "xloc": [
8630 - "default.handlebars->29->659"
8636 + "default.handlebars->29->660"
8637 ]
8638 },
8639 {
@@ -8644,7 +8650,7 @@
8650 "ru": "Скачать MeshCmd, инструмент командной строки, выполняющий множество функций.",
8651 "zh-chs": "下載MeshCmd,這是一個執行許多功能的命令行工具。",
8652 "xloc": [
8647 - "default.handlebars->29->198"
8653 + "default.handlebars->29->199"
8654 ]
8655 },
8656 {
@@ -8678,7 +8684,7 @@
8684 "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.",
8685 "zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。",
8686 "xloc": [
8681 - "default.handlebars->29->652"
8687 + "default.handlebars->29->653"
8688 ]
8689 },
8690 {
@@ -8746,7 +8752,7 @@
8752 "ru": "Скачать события состояния питания",
8753 "zh-chs": "下載電源事件",
8754 "xloc": [
8749 - "default.handlebars->29->613"
8755 + "default.handlebars->29->614"
8756 ]
8757 },
8758 {
@@ -8797,7 +8803,7 @@
8803 "ru": "Загрузите список устройств с одним из форматов файлов ниже.",
8804 "zh-chs": "使用以下一種文件格式下載設備列表。",
8805 "xloc": [
8800 - "default.handlebars->29->397"
8806 + "default.handlebars->29->398"
8807 ]
8808 },
8809 {
@@ -8814,7 +8820,7 @@
8820 "ru": "Скачать список событий в одном из форматов ниже.",
8821 "zh-chs": "使用以下一種文件格式下載事件列表。",
8822 "xloc": [
8817 - "default.handlebars->29->1370"
8823 + "default.handlebars->29->1372"
8824 ]
8825 },
8826 {
@@ -8831,7 +8837,7 @@
8837 "ru": "Скачать список пользователей в одном из форматов ниже.",
8838 "zh-chs": "使用以下一種文件格式下載用戶列表。",
8839 "xloc": [
8834 - "default.handlebars->29->1427"
8840 + "default.handlebars->29->1429"
8841 ]
8842 },
8843 {
@@ -8908,7 +8914,7 @@
8914 "en": "Duplicate Agent",
8915 "nl": "Dubbele agent",
8916 "xloc": [
8911 - "default.handlebars->29->1656"
8917 + "default.handlebars->29->1663"
8918 ]
8919 },
8920 {
@@ -8942,7 +8948,7 @@
8948 "ru": "Скопировать группу пользователей",
8949 "zh-chs": "重複的用戶組",
8950 "xloc": [
8945 - "default.handlebars->29->1483"
8951 + "default.handlebars->29->1485"
8952 ]
8953 },
8954 {
@@ -8990,7 +8996,7 @@
8996 "ru": "Во время активации агент будет иметь доступ к паролю администратора.",
8997 "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。",
8998 "xloc": [
8993 - "default.handlebars->29->1199"
8999 + "default.handlebars->29->1201"
9000 ]
9001 },
9002 {
@@ -9007,7 +9013,7 @@
9013 "ru": "Голландский (Бельгийский)",
9014 "zh-chs": "荷蘭語(比利時)",
9015 "xloc": [
9010 - "default.handlebars->29->904"
9016 + "default.handlebars->29->906"
9017 ]
9018 },
9019 {
@@ -9024,7 +9030,7 @@
9030 "ru": "Голландский (Стандартный)",
9031 "zh-chs": "荷蘭語(標準)",
9032 "xloc": [
9027 - "default.handlebars->29->903"
9033 + "default.handlebars->29->905"
9034 ]
9035 },
9036 {
@@ -9111,7 +9117,7 @@
9117 "zh-chs": "編輯裝置",
9118 "xloc": [
9119 "default-mobile.handlebars->9->237",
9114 - "default.handlebars->29->672"
9120 + "default.handlebars->29->673"
9121 ]
9122 },
9123 {
@@ -9131,10 +9137,10 @@
9137 "default-mobile.handlebars->9->299",
9138 "default-mobile.handlebars->9->301",
9139 "default-mobile.handlebars->9->319",
9134 - "default.handlebars->29->1205",
9135 - "default.handlebars->29->1235",
9136 - "default.handlebars->29->1257",
9137 - "default.handlebars->29->1269"
9140 + "default.handlebars->29->1207",
9141 + "default.handlebars->29->1237",
9142 + "default.handlebars->29->1259",
9143 + "default.handlebars->29->1271"
9144 ]
9145 },
9146 {
@@ -9151,7 +9157,7 @@
9157 "ru": "Редактировать функции группы устройств",
9158 "zh-chs": "編輯設備組功能",
9159 "xloc": [
9154 - "default.handlebars->29->1221"
9160 + "default.handlebars->29->1223"
9161 ]
9162 },
9163 {
@@ -9168,8 +9174,8 @@
9174 "ru": "Редактировать права группы устройств",
9175 "zh-chs": "編輯設備組權限",
9176 "xloc": [
9171 - "default.handlebars->29->1254",
9172 - "default.handlebars->29->1266"
9177 + "default.handlebars->29->1256",
9178 + "default.handlebars->29->1268"
9179 ]
9180 },
9181 {
@@ -9186,7 +9192,7 @@
9192 "ru": "Редактировать согласие пользователя группы устройств",
9193 "zh-chs": "編輯設備組用戶同意",
9194 "xloc": [
9189 - "default.handlebars->29->1206"
9195 + "default.handlebars->29->1208"
9196 ]
9197 },
9198 {
@@ -9204,7 +9210,7 @@
9210 "zh-chs": "編輯設備說明",
9211 "xloc": [
9212 "default-mobile.handlebars->9->313",
9207 - "default.handlebars->29->1248"
9213 + "default.handlebars->29->1250"
9214 ]
9215 },
9216 {
@@ -9218,8 +9224,8 @@
9224 "ru": "Изменить разрешения устройства",
9225 "zh-chs": "编辑设备权限",
9226 "xloc": [
9221 - "default.handlebars->29->1259",
9222 - "default.handlebars->29->1261"
9227 + "default.handlebars->29->1261",
9228 + "default.handlebars->29->1263"
9229 ]
9230 },
9231 {
@@ -9227,7 +9233,7 @@
9233 "en": "Edit Device User Consent",
9234 "nl": "Gebruikerstoestemming apparaat bewerken",
9235 "xloc": [
9230 - "default.handlebars->29->1208"
9236 + "default.handlebars->29->1210"
9237 ]
9238 },
9239 {
@@ -9241,7 +9247,7 @@
9247 "ru": "Редактировать группу",
9248 "zh-chs": "编辑组",
9249 "xloc": [
9244 - "default.handlebars->29->579"
9250 + "default.handlebars->29->580"
9251 ]
9252 },
9253 {
@@ -9259,9 +9265,9 @@
9265 "zh-chs": "編輯英特爾®AMT憑據",
9266 "xloc": [
9267 "default-mobile.handlebars->9->227",
9262 - "default.handlebars->29->478",
9263 - "default.handlebars->29->481",
9264 - "default.handlebars->29->620"
9268 + "default.handlebars->29->479",
9269 + "default.handlebars->29->482",
9270 + "default.handlebars->29->621"
9271 ]
9272 },
9273 {
@@ -9279,7 +9285,7 @@
9285 "zh-chs": "編輯筆記",
9286 "xloc": [
9287 "default-mobile.handlebars->9->326",
9282 - "default.handlebars->29->1276"
9288 + "default.handlebars->29->1278"
9289 ]
9290 },
9291 {
@@ -9287,7 +9293,7 @@
9293 "en": "Edit User Consent",
9294 "nl": "Gebruikerstoestemming bewerken",
9295 "xloc": [
9290 - "default.handlebars->29->1207"
9296 + "default.handlebars->29->1209"
9297 ]
9298 },
9299 {
@@ -9304,7 +9310,7 @@
9310 "ru": "Редактировать права пользователя для группы устройств",
9311 "zh-chs": "編輯用戶設備組權限",
9312 "xloc": [
9307 - "default.handlebars->29->1267"
9313 + "default.handlebars->29->1269"
9314 ]
9315 },
9316 {
@@ -9318,7 +9324,7 @@
9324 "ru": "Изменить разрешения для пользовательских устройств",
9325 "zh-chs": "编辑用户设备权限",
9326 "xloc": [
9321 - "default.handlebars->29->1262"
9327 + "default.handlebars->29->1264"
9328 ]
9329 },
9330 {
@@ -9335,7 +9341,7 @@
9341 "ru": "Редактировать группу пользователей",
9342 "zh-chs": "編輯用戶組",
9343 "xloc": [
9338 - "default.handlebars->29->1518"
9344 + "default.handlebars->29->1520"
9345 ]
9346 },
9347 {
@@ -9343,7 +9349,7 @@
9349 "en": "Edit User Group Device Permissions",
9350 "nl": "Gebruikersmachtigingen voor apparaatgroep bewerken",
9351 "xloc": [
9346 - "default.handlebars->29->1264"
9352 + "default.handlebars->29->1266"
9353 ]
9354 },
9355 {
@@ -9378,11 +9384,11 @@
9384 "zh-chs": "電子郵件",
9385 "xloc": [
9386 "default-mobile.handlebars->9->47",
9381 - "default.handlebars->29->1439",
9382 - "default.handlebars->29->1539",
9383 - "default.handlebars->29->1540",
9384 - "default.handlebars->29->1586",
9385 - "default.handlebars->29->278",
9387 + "default.handlebars->29->1441",
9388 + "default.handlebars->29->1541",
9389 + "default.handlebars->29->1542",
9390 + "default.handlebars->29->1593",
9391 + "default.handlebars->29->279",
9392 "login-mobile.handlebars->5->42",
9393 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
9394 "login.handlebars->5->43",
@@ -9404,7 +9410,7 @@
9410 "zh-chs": "電郵地址變更",
9411 "xloc": [
9412 "default-mobile.handlebars->9->48",
9407 - "default.handlebars->29->1072"
9413 + "default.handlebars->29->1074"
9414 ]
9415 },
9416 {
@@ -9422,7 +9428,7 @@
9428 "zh-chs": "郵件認證",
9429 "xloc": [
9430 "default-mobile.handlebars->9->37",
9425 - "default.handlebars->29->841"
9431 + "default.handlebars->29->843"
9432 ]
9433 },
9434 {
@@ -9459,7 +9465,7 @@
9465 "zh-chs": "電子郵件驗證",
9466 "xloc": [
9467 "default-mobile.handlebars->9->46",
9462 - "default.handlebars->29->1070"
9468 + "default.handlebars->29->1072"
9469 ]
9470 },
9471 {
@@ -9468,7 +9474,7 @@
9474 "es": "Email de invitación",
9475 "nl": "E-mail uitnodiging",
9476 "xloc": [
9471 - "default.handlebars->29->275"
9477 + "default.handlebars->29->276"
9478 ]
9479 },
9480 {
@@ -9482,7 +9488,7 @@
9488 "ru": "Электронная почта не подтверждена",
9489 "zh-chs": "邮件未验证",
9490 "xloc": [
9485 - "default.handlebars->29->1399"
9491 + "default.handlebars->29->1401"
9492 ]
9493 },
9494 {
@@ -9499,8 +9505,8 @@
9505 "ru": "Email подтвержден",
9506 "zh-chs": "電子郵件已驗證",
9507 "xloc": [
9502 - "default.handlebars->29->1400",
9503 - "default.handlebars->29->1536"
9508 + "default.handlebars->29->1402",
9509 + "default.handlebars->29->1538"
9510 ]
9511 },
9512 {
@@ -9517,7 +9523,7 @@
9523 "ru": "Email подтвержден.",
9524 "zh-chs": "電子郵件已驗證。",
9525 "xloc": [
9520 - "default.handlebars->29->1445"
9526 + "default.handlebars->29->1447"
9527 ]
9528 },
9529 {
@@ -9534,7 +9540,7 @@
9540 "ru": "Email не подтвержден",
9541 "zh-chs": "電子郵件未驗證",
9542 "xloc": [
9537 - "default.handlebars->29->1537"
9543 + "default.handlebars->29->1539"
9544 ]
9545 },
9546 {
@@ -9567,7 +9573,7 @@
9573 "en": "Email/SMS Traffic",
9574 "nl": "Email/SMS verkeer",
9575 "xloc": [
9570 - "default.handlebars->29->1695"
9576 + "default.handlebars->29->1702"
9577 ]
9578 },
9579 {
@@ -9606,7 +9612,7 @@
9612 "ru": "Включить коды приглашения",
9613 "zh-chs": "啟用邀請代碼",
9614 "xloc": [
9609 - "default.handlebars->29->1297"
9615 + "default.handlebars->29->1299"
9616 ]
9617 },
9618 {
@@ -9641,7 +9647,7 @@
9647 "zh-chs": "啟用電子郵件兩因素驗證。",
9648 "xloc": [
9649 "default-mobile.handlebars->9->39",
9644 - "default.handlebars->29->843"
9650 + "default.handlebars->29->845"
9651 ]
9652 },
9653 {
@@ -9692,7 +9698,7 @@
9698 "ru": "Английский",
9699 "zh-chs": "英語",
9700 "xloc": [
9695 - "default.handlebars->29->905"
9701 + "default.handlebars->29->907"
9702 ]
9703 },
9704 {
@@ -9709,7 +9715,7 @@
9715 "ru": "Английский (Австралия)",
9716 "zh-chs": "英文(澳洲)",
9717 "xloc": [
9712 - "default.handlebars->29->906"
9718 + "default.handlebars->29->908"
9719 ]
9720 },
9721 {
@@ -9726,7 +9732,7 @@
9732 "ru": "Английский (Белиз)",
9733 "zh-chs": "英語(伯利茲)",
9734 "xloc": [
9729 - "default.handlebars->29->907"
9735 + "default.handlebars->29->909"
9736 ]
9737 },
9738 {
@@ -9743,7 +9749,7 @@
9749 "ru": "Английский (Канада)",
9750 "zh-chs": "英文(加拿大)",
9751 "xloc": [
9746 - "default.handlebars->29->908"
9752 + "default.handlebars->29->910"
9753 ]
9754 },
9755 {
@@ -9760,7 +9766,7 @@
9766 "ru": "Английский (Ирландия)",
9767 "zh-chs": "英文(愛爾蘭)",
9768 "xloc": [
9763 - "default.handlebars->29->909"
9769 + "default.handlebars->29->911"
9770 ]
9771 },
9772 {
@@ -9777,7 +9783,7 @@
9783 "ru": "Английский (Ямайка)",
9784 "zh-chs": "英文(牙買加)",
9785 "xloc": [
9780 - "default.handlebars->29->910"
9786 + "default.handlebars->29->912"
9787 ]
9788 },
9789 {
@@ -9794,7 +9800,7 @@
9800 "ru": "Английский (Новая Зеландия)",
9801 "zh-chs": "英文(紐西蘭)",
9802 "xloc": [
9797 - "default.handlebars->29->911"
9803 + "default.handlebars->29->913"
9804 ]
9805 },
9806 {
@@ -9811,7 +9817,7 @@
9817 "ru": "Английский (Филиппины)",
9818 "zh-chs": "英文(菲律賓)",
9819 "xloc": [
9814 - "default.handlebars->29->912"
9820 + "default.handlebars->29->914"
9821 ]
9822 },
9823 {
@@ -9828,7 +9834,7 @@
9834 "ru": "Английский (Южная Африка)",
9835 "zh-chs": "英語(南非)",
9836 "xloc": [
9831 - "default.handlebars->29->913"
9837 + "default.handlebars->29->915"
9838 ]
9839 },
9840 {
@@ -9845,7 +9851,7 @@
9851 "ru": "Английский (Тринидад и Тобаго)",
9852 "zh-chs": "英文(特立尼達和多巴哥)",
9853 "xloc": [
9848 - "default.handlebars->29->914"
9854 + "default.handlebars->29->916"
9855 ]
9856 },
9857 {
@@ -9862,7 +9868,7 @@
9868 "ru": "Английский (Великобритания)",
9869 "zh-chs": "英文(英國)",
9870 "xloc": [
9865 - "default.handlebars->29->915"
9871 + "default.handlebars->29->917"
9872 ]
9873 },
9874 {
@@ -9879,7 +9885,7 @@
9885 "ru": "Английский (Соединенные Штаты)",
9886 "zh-chs": "美國英語)",
9887 "xloc": [
9882 - "default.handlebars->29->916"
9888 + "default.handlebars->29->918"
9889 ]
9890 },
9891 {
@@ -9896,7 +9902,7 @@
9902 "ru": "Английский (Зимбабве)",
9903 "zh-chs": "英文(津巴布韋)",
9904 "xloc": [
9899 - "default.handlebars->29->917"
9905 + "default.handlebars->29->919"
9906 ]
9907 },
9908 {
@@ -9913,8 +9919,8 @@
9919 "ru": "Ввод",
9920 "zh-chs": "輸入",
9921 "xloc": [
9916 - "default.handlebars->29->1098",
9917 - "default.handlebars->29->1099"
9922 + "default.handlebars->29->1100",
9923 + "default.handlebars->29->1101"
9924 ]
9925 },
9926 {
@@ -9931,7 +9937,7 @@
9937 "ru": "Введите разделенный запятыми список имен административных областей.",
9938 "zh-chs": "輸入管理領域名稱的逗號分隔列表。",
9939 "xloc": [
9934 - "default.handlebars->29->1449"
9940 + "default.handlebars->29->1451"
9941 ]
9942 },
9943 {
@@ -9948,7 +9954,7 @@
9954 "ru": "Введите диапазон IP-адресов для сканирования Intel AMT устройств.",
9955 "zh-chs": "輸入IP地址範圍以掃描Intel AMT設備。",
9956 "xloc": [
9951 - "default.handlebars->29->245"
9957 + "default.handlebars->29->246"
9958 ]
9959 },
9960 {
@@ -9965,7 +9971,7 @@
9971 "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.",
9972 "zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
9973 "xloc": [
9968 - "default.handlebars->29->682"
9974 + "default.handlebars->29->683"
9975 ]
9976 },
9977 {
@@ -10003,6 +10009,12 @@
10009 "default.handlebars->29->108"
10010 ]
10011 },
10012 + {
10013 + "en": "Enter your SMS capable phone number. Once verified, the number may be used for login verification and other notifications.",
10014 + "xloc": [
10015 + "default.handlebars->29->840"
10016 + ]
10017 + },
10018 {
10019 "cs": "Chyba, klíč nelze přidat.",
10020 "de": "Fehler, Schlüssel kann nicht hinzugefügt werden.",
@@ -10051,7 +10063,7 @@
10063 "ru": "Эсперанто",
10064 "zh-chs": "世界語",
10065 "xloc": [
10054 - "default.handlebars->29->918"
10066 + "default.handlebars->29->920"
10067 ]
10068 },
10069 {
@@ -10068,7 +10080,7 @@
10080 "ru": "Эстонский",
10081 "zh-chs": "愛沙尼亞語",
10082 "xloc": [
10071 - "default.handlebars->29->919"
10083 + "default.handlebars->29->921"
10084 ]
10085 },
10086 {
@@ -10085,7 +10097,7 @@
10097 "ru": "Детали события",
10098 "zh-chs": "活動詳情",
10099 "xloc": [
10088 - "default.handlebars->29->759"
10100 + "default.handlebars->29->760"
10101 ]
10102 },
10103 {
@@ -10102,7 +10114,7 @@
10114 "ru": "Экспорт списка событий",
10115 "zh-chs": "活動列表導出",
10116 "xloc": [
10105 - "default.handlebars->29->1375"
10117 + "default.handlebars->29->1377"
10118 ]
10119 },
10120 {
@@ -10174,7 +10186,7 @@
10186 "ru": "Экспорт информации об устройстве",
10187 "zh-chs": "導出設備信息",
10188 "xloc": [
10177 - "default.handlebars->29->389"
10189 + "default.handlebars->29->390"
10190 ]
10191 },
10192 {
@@ -10191,7 +10203,7 @@
10203 "ru": "Расширенный ASCII",
10204 "zh-chs": "擴展ASCII",
10205 "xloc": [
10194 - "default.handlebars->29->708"
10206 + "default.handlebars->29->709"
10207 ]
10208 },
10209 {
@@ -10225,7 +10237,7 @@
10237 "ru": "Внешний",
10238 "zh-chs": "外部",
10239 "xloc": [
10228 - "default.handlebars->29->1680"
10240 + "default.handlebars->29->1687"
10241 ]
10242 },
10243 {
@@ -10242,7 +10254,7 @@
10254 "ru": "Mакедонский (БЮР)",
10255 "zh-chs": "FYRO馬其頓語",
10256 "xloc": [
10245 - "default.handlebars->29->969"
10257 + "default.handlebars->29->971"
10258 ]
10259 },
10260 {
@@ -10259,7 +10271,7 @@
10271 "ru": "Фарерский",
10272 "zh-chs": "法羅語",
10273 "xloc": [
10262 - "default.handlebars->29->920"
10274 + "default.handlebars->29->922"
10275 ]
10276 },
10277 {
@@ -10293,7 +10305,7 @@
10305 "ru": "Фарси (Персидский)",
10306 "zh-chs": "波斯語(波斯語)",
10307 "xloc": [
10296 - "default.handlebars->29->921"
10308 + "default.handlebars->29->923"
10309 ]
10310 },
10311 {
@@ -10328,7 +10340,7 @@
10340 "ru": "Функции",
10341 "zh-chs": "特徵",
10342 "xloc": [
10331 - "default.handlebars->29->1127"
10343 + "default.handlebars->29->1129"
10344 ]
10345 },
10346 {
@@ -10345,7 +10357,7 @@
10357 "ru": "Фиджи",
10358 "zh-chs": "斐濟",
10359 "xloc": [
10348 - "default.handlebars->29->922"
10360 + "default.handlebars->29->924"
10361 ]
10362 },
10363 {
@@ -10363,8 +10375,8 @@
10375 "zh-chs": "文件編輯器",
10376 "xloc": [
10377 "default-mobile.handlebars->9->262",
10366 - "default.handlebars->29->423",
10367 - "default.handlebars->29->731"
10378 + "default.handlebars->29->424",
10379 + "default.handlebars->29->732"
10380 ]
10381 },
10382 {
@@ -10398,7 +10410,7 @@
10410 "ru": "Драйвер файловой системы",
10411 "zh-chs": "FileSystemDriver",
10412 "xloc": [
10401 - "default.handlebars->29->691"
10413 + "default.handlebars->29->692"
10414 ]
10415 },
10416 {
@@ -10415,7 +10427,7 @@
10427 "ru": "Файлы",
10428 "zh-chs": "檔案",
10429 "xloc": [
10418 - "default.handlebars->29->1216",
10430 + "default.handlebars->29->1218",
10431 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
10432 "default.handlebars->contextMenu->cxfiles"
10433 ]
@@ -10451,9 +10463,9 @@
10463 "ru": "Уведомление файлов",
10464 "zh-chs": "文件通知",
10465 "xloc": [
10454 - "default.handlebars->29->1135",
10455 - "default.handlebars->29->1563",
10456 - "default.handlebars->29->502"
10466 + "default.handlebars->29->1137",
10467 + "default.handlebars->29->1566",
10468 + "default.handlebars->29->503"
10469 ]
10470 },
10471 {
@@ -10470,9 +10482,9 @@
10482 "ru": "Запрос файлов",
10483 "zh-chs": "文件提示",
10484 "xloc": [
10473 - "default.handlebars->29->1134",
10474 - "default.handlebars->29->1562",
10475 - "default.handlebars->29->501"
10485 + "default.handlebars->29->1136",
10486 + "default.handlebars->29->1565",
10487 + "default.handlebars->29->502"
10488 ]
10489 },
10490 {
@@ -10507,7 +10519,7 @@
10519 "ru": "Финский",
10520 "zh-chs": "芬蘭",
10521 "xloc": [
10510 - "default.handlebars->29->923"
10522 + "default.handlebars->29->925"
10523 ]
10524 },
10525 {
@@ -10624,8 +10636,8 @@
10636 "ru": "Принудительно сбросить пароль при следующем входе в систему.",
10637 "zh-chs": "下次登錄時強制重置密碼。",
10638 "xloc": [
10627 - "default.handlebars->29->1443",
10628 - "default.handlebars->29->1595"
10639 + "default.handlebars->29->1445",
10640 + "default.handlebars->29->1602"
10641 ]
10642 },
10643 {
@@ -10711,8 +10723,8 @@
10723 "ru": "Свободно",
10724 "zh-chs": "自由",
10725 "xloc": [
10714 - "default.handlebars->29->1641",
10715 - "default.handlebars->29->1643"
10726 + "default.handlebars->29->1648",
10727 + "default.handlebars->29->1650"
10728 ]
10729 },
10730 {
@@ -10747,7 +10759,7 @@
10759 "ru": "Французский (Бельгия)",
10760 "zh-chs": "法語(比利時)",
10761 "xloc": [
10750 - "default.handlebars->29->925"
10762 + "default.handlebars->29->927"
10763 ]
10764 },
10765 {
@@ -10764,7 +10776,7 @@
10776 "ru": "Французский (Канада)",
10777 "zh-chs": "法語(加拿大)",
10778 "xloc": [
10767 - "default.handlebars->29->926"
10779 + "default.handlebars->29->928"
10780 ]
10781 },
10782 {
@@ -10781,7 +10793,7 @@
10793 "ru": "Французский (Франция)",
10794 "zh-chs": "法語(法國)",
10795 "xloc": [
10784 - "default.handlebars->29->927"
10796 + "default.handlebars->29->929"
10797 ]
10798 },
10799 {
@@ -10798,7 +10810,7 @@
10810 "ru": "Французский (Люксембург)",
10811 "zh-chs": "法語(盧森堡)",
10812 "xloc": [
10801 - "default.handlebars->29->928"
10813 + "default.handlebars->29->930"
10814 ]
10815 },
10816 {
@@ -10815,7 +10827,7 @@
10827 "ru": "Французский (Монако)",
10828 "zh-chs": "法語(摩納哥)",
10829 "xloc": [
10818 - "default.handlebars->29->929"
10830 + "default.handlebars->29->931"
10831 ]
10832 },
10833 {
@@ -10832,7 +10844,7 @@
10844 "ru": "Французский (Стандартный)",
10845 "zh-chs": "法語(標準)",
10846 "xloc": [
10835 - "default.handlebars->29->924"
10847 + "default.handlebars->29->926"
10848 ]
10849 },
10850 {
@@ -10849,7 +10861,7 @@
10861 "ru": "Французский (Швейцария)",
10862 "zh-chs": "法語(瑞士)",
10863 "xloc": [
10852 - "default.handlebars->29->930"
10864 + "default.handlebars->29->932"
10865 ]
10866 },
10867 {
@@ -10866,7 +10878,7 @@
10878 "ru": "Фризский",
10879 "zh-chs": "弗里斯蘭語",
10880 "xloc": [
10869 - "default.handlebars->29->931"
10881 + "default.handlebars->29->933"
10882 ]
10883 },
10884 {
@@ -10883,7 +10895,7 @@
10895 "ru": "Фриульский",
10896 "zh-chs": "弗留利",
10897 "xloc": [
10886 - "default.handlebars->29->932"
10898 + "default.handlebars->29->934"
10899 ]
10900 },
10901 {
@@ -10904,9 +10916,9 @@
10916 "default-mobile.handlebars->9->300",
10917 "default-mobile.handlebars->9->318",
10918 "default-mobile.handlebars->9->74",
10907 - "default.handlebars->29->1105",
10908 - "default.handlebars->29->1234",
10909 - "default.handlebars->29->1455"
10919 + "default.handlebars->29->1107",
10920 + "default.handlebars->29->1236",
10921 + "default.handlebars->29->1457"
10922 ]
10923 },
10924 {
@@ -10923,7 +10935,7 @@
10935 "ru": "Администратор с полным доступом (все права)",
10936 "zh-chs": "正式管理員(保留所有權利)",
10937 "xloc": [
10926 - "default.handlebars->29->1268"
10938 + "default.handlebars->29->1270"
10939 ]
10940 },
10941 {
@@ -10954,7 +10966,7 @@
10966 "ru": "Полные права на устройство",
10967 "zh-chs": "完整的設備權限",
10968 "xloc": [
10957 - "default.handlebars->29->562"
10969 + "default.handlebars->29->563"
10970 ]
10971 },
10972 {
@@ -10968,7 +10980,7 @@
10980 "ru": "Полные права",
10981 "zh-chs": "完全权利",
10982 "xloc": [
10971 - "default.handlebars->29->578"
10983 + "default.handlebars->29->579"
10984 ]
10985 },
10986 {
@@ -11004,14 +11016,14 @@
11016 "ru": "Администратор с полным доступом",
11017 "zh-chs": "正式管理員",
11018 "xloc": [
11007 - "default.handlebars->29->1532"
11019 + "default.handlebars->29->1534"
11020 ]
11021 },
11022 {
11023 "en": "GPU",
11024 "nl": "GPU",
11025 "xloc": [
11014 - "default.handlebars->29->807"
11026 + "default.handlebars->29->808"
11027 ]
11028 },
11029 {
@@ -11028,7 +11040,7 @@
11040 "ru": "Гэльский (Ирландский)",
11041 "zh-chs": "蓋爾語(愛爾蘭)",
11042 "xloc": [
11031 - "default.handlebars->29->934"
11043 + "default.handlebars->29->936"
11044 ]
11045 },
11046 {
@@ -11045,7 +11057,7 @@
11057 "ru": "Гэльский (Шотландия)",
11058 "zh-chs": "蓋爾語(蘇格蘭語)",
11059 "xloc": [
11048 - "default.handlebars->29->933"
11060 + "default.handlebars->29->935"
11061 ]
11062 },
11063 {
@@ -11062,7 +11074,7 @@
11074 "ru": "Галицкий",
11075 "zh-chs": "加拉契人",
11076 "xloc": [
11065 - "default.handlebars->29->935"
11077 + "default.handlebars->29->937"
11078 ]
11079 },
11080 {
@@ -11135,7 +11147,7 @@
11147 "ru": "Общая информация",
11148 "zh-chs": "一般信息",
11149 "xloc": [
11138 - "default.handlebars->29->430"
11150 + "default.handlebars->29->431"
11151 ]
11152 },
11153 {
@@ -11169,7 +11181,7 @@
11181 "ru": "Грузинский",
11182 "zh-chs": "格魯吉亞人",
11183 "xloc": [
11172 - "default.handlebars->29->936"
11184 + "default.handlebars->29->938"
11185 ]
11186 },
11187 {
@@ -11186,7 +11198,7 @@
11198 "ru": "Немецкий (Австрия)",
11199 "zh-chs": "德語(奧地利)",
11200 "xloc": [
11189 - "default.handlebars->29->938"
11201 + "default.handlebars->29->940"
11202 ]
11203 },
11204 {
@@ -11203,7 +11215,7 @@
11215 "ru": "Немецкий (Германия)",
11216 "zh-chs": "德文(德國)",
11217 "xloc": [
11206 - "default.handlebars->29->939"
11218 + "default.handlebars->29->941"
11219 ]
11220 },
11221 {
@@ -11220,7 +11232,7 @@
11232 "ru": "Немецкий (Лихтенштейн)",
11233 "zh-chs": "德文(列支敦士登)",
11234 "xloc": [
11223 - "default.handlebars->29->940"
11235 + "default.handlebars->29->942"
11236 ]
11237 },
11238 {
@@ -11237,7 +11249,7 @@
11249 "ru": "Немецкий (Люксембург)",
11250 "zh-chs": "德語(盧森堡)",
11251 "xloc": [
11240 - "default.handlebars->29->941"
11252 + "default.handlebars->29->943"
11253 ]
11254 },
11255 {
@@ -11254,7 +11266,7 @@
11266 "ru": "Немецкий (Стандартный)",
11267 "zh-chs": "德語(標準)",
11268 "xloc": [
11257 - "default.handlebars->29->937"
11269 + "default.handlebars->29->939"
11270 ]
11271 },
11272 {
@@ -11271,7 +11283,7 @@
11283 "ru": "Немецкий (Швейцария)",
11284 "zh-chs": "德語(瑞士)",
11285 "xloc": [
11274 - "default.handlebars->29->942"
11286 + "default.handlebars->29->944"
11287 ]
11288 },
11289 {
@@ -11288,7 +11300,7 @@
11300 "ru": "Получить учетные данные MQTT для этого устройства.",
11301 "zh-chs": "獲取此設備的MQTT登錄憑據。",
11302 "xloc": [
11291 - "default.handlebars->29->543"
11303 + "default.handlebars->29->544"
11304 ]
11305 },
11306 {
@@ -11341,7 +11353,7 @@
11353 "ru": "Хорошо",
11354 "zh-chs": "好",
11355 "xloc": [
11344 - "default.handlebars->29->1101"
11356 + "default.handlebars->29->1103"
11357 ]
11358 },
11359 {
@@ -11378,7 +11390,7 @@
11390 "ru": "Греческий",
11391 "zh-chs": "希臘語",
11392 "xloc": [
11381 - "default.handlebars->29->943"
11393 + "default.handlebars->29->945"
11394 ]
11395 },
11396 {
@@ -11396,7 +11408,7 @@
11408 "zh-chs": "組",
11409 "xloc": [
11410 "default-mobile.handlebars->9->144",
11399 - "default.handlebars->29->455",
11411 + "default.handlebars->29->456",
11412 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
11413 ]
11414 },
@@ -11414,9 +11426,9 @@
11426 "ru": "Групповое действие",
11427 "zh-chs": "集體行動",
11428 "xloc": [
11417 - "default.handlebars->29->1412",
11418 - "default.handlebars->29->1475",
11419 - "default.handlebars->29->392",
11429 + "default.handlebars->29->1414",
11430 + "default.handlebars->29->1477",
11431 + "default.handlebars->29->393",
11432 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
11433 "default.handlebars->container->column_l->p4->3->1->0->3->3",
11434 "default.handlebars->container->column_l->p50->3->1->0->3->3"
@@ -11436,7 +11448,7 @@
11448 "ru": "Члены группы",
11449 "zh-chs": "小組成員",
11450 "xloc": [
11439 - "default.handlebars->29->1495"
11451 + "default.handlebars->29->1497"
11452 ]
11453 },
11454 {
@@ -11453,7 +11465,7 @@
11465 "ru": "Права на группу для пользователя {0}.",
11466 "zh-chs": "用戶{0}的組權限。",
11467 "xloc": [
11456 - "default.handlebars->29->1233"
11468 + "default.handlebars->29->1235"
11469 ]
11470 },
11471 {
@@ -11470,7 +11482,7 @@
11482 "ru": "Права на группу для {0}.",
11483 "zh-chs": "{0}的組權限。",
11484 "xloc": [
11473 - "default.handlebars->29->1232"
11485 + "default.handlebars->29->1234"
11486 ]
11487 },
11488 {
@@ -11521,7 +11533,7 @@
11533 "ru": "Гуджарати",
11534 "zh-chs": "古久拉提",
11535 "xloc": [
11524 - "default.handlebars->29->944"
11536 + "default.handlebars->29->946"
11537 ]
11538 },
11539 {
@@ -11557,7 +11569,7 @@
11569 "ru": "Гаитянский",
11570 "zh-chs": "海地",
11571 "xloc": [
11560 - "default.handlebars->29->945"
11572 + "default.handlebars->29->947"
11573 ]
11574 },
11575 {
@@ -11591,7 +11603,7 @@
11603 "ru": "Жесткое отключение агента",
11604 "zh-chs": "硬斷開劑",
11605 "xloc": [
11594 - "default.handlebars->29->834"
11606 + "default.handlebars->29->835"
11607 ]
11608 },
11609 {
@@ -11608,7 +11620,7 @@
11620 "ru": "Всего кучи",
11621 "zh-chs": "堆總數",
11622 "xloc": [
11611 - "default.handlebars->29->1682"
11623 + "default.handlebars->29->1689"
11624 ]
11625 },
11626 {
@@ -11625,7 +11637,7 @@
11637 "ru": "Куча используется",
11638 "zh-chs": "堆使用",
11639 "xloc": [
11628 - "default.handlebars->29->1681"
11640 + "default.handlebars->29->1688"
11641 ]
11642 },
11643 {
@@ -11642,7 +11654,7 @@
11654 "ru": "Иврит",
11655 "zh-chs": "希伯來語",
11656 "xloc": [
11645 - "default.handlebars->29->946"
11657 + "default.handlebars->29->948"
11658 ]
11659 },
11660 {
@@ -11674,7 +11686,7 @@
11686 "ru": "Помочь перевести MeshCentral",
11687 "zh-chs": "幫助翻譯MeshCentral",
11688 "xloc": [
11677 - "default.handlebars->29->1060"
11689 + "default.handlebars->29->1062"
11690 ]
11691 },
11692 {
@@ -11736,7 +11748,7 @@
11748 "xloc": [
11749 "default-mobile.handlebars->9->114",
11750 "default-mobile.handlebars->9->121",
11739 - "default.handlebars->29->356",
11751 + "default.handlebars->29->357",
11752 "default.handlebars->29->5"
11753 ]
11754 },
@@ -11754,7 +11766,7 @@
11766 "ru": "Хинди",
11767 "zh-chs": "印地語",
11768 "xloc": [
11757 - "default.handlebars->29->947"
11769 + "default.handlebars->29->949"
11770 ]
11771 },
11772 {
@@ -11790,7 +11802,7 @@
11802 "zh-chs": "持有1份副本",
11803 "xloc": [
11804 "default-mobile.handlebars->9->271",
11793 - "default.handlebars->29->740"
11805 + "default.handlebars->29->741"
11806 ]
11807 },
11808 {
@@ -11808,7 +11820,7 @@
11820 "zh-chs": "持有1個搬家公司",
11821 "xloc": [
11822 "default-mobile.handlebars->9->275",
11811 - "default.handlebars->29->744"
11823 + "default.handlebars->29->745"
11824 ]
11825 },
11826 {
@@ -11826,7 +11838,7 @@
11838 "zh-chs": "保留{0}個條目進行複制",
11839 "xloc": [
11840 "default-mobile.handlebars->9->269",
11829 - "default.handlebars->29->738"
11841 + "default.handlebars->29->739"
11842 ]
11843 },
11844 {
@@ -11844,7 +11856,7 @@
11856 "zh-chs": "保留{0}個條目以進行移動",
11857 "xloc": [
11858 "default-mobile.handlebars->9->273",
11847 - "default.handlebars->29->742"
11859 + "default.handlebars->29->743"
11860 ]
11861 },
11862 {
@@ -11862,7 +11874,7 @@
11874 "zh-chs": "保持{2}的{0}入口{1}",
11875 "xloc": [
11876 "default-mobile.handlebars->9->98",
11865 - "default.handlebars->29->1362"
11877 + "default.handlebars->29->1364"
11878 ]
11879 },
11880 {
@@ -11883,9 +11895,9 @@
11895 "default-mobile.handlebars->9->147",
11896 "default-mobile.handlebars->9->149",
11897 "default-mobile.handlebars->9->233",
11886 - "default.handlebars->29->231",
11887 - "default.handlebars->29->460",
11888 - "default.handlebars->29->668"
11898 + "default.handlebars->29->232",
11899 + "default.handlebars->29->461",
11900 + "default.handlebars->29->669"
11901 ]
11902 },
11903 {
@@ -11902,7 +11914,7 @@
11914 "ru": "Синхронизация имени хоста",
11915 "zh-chs": "主機名同步",
11916 "xloc": [
11905 - "default.handlebars->29->1125"
11917 + "default.handlebars->29->1127"
11918 ]
11919 },
11920 {
@@ -11919,7 +11931,7 @@
11931 "ru": "Венгерский",
11932 "zh-chs": "匈牙利",
11933 "xloc": [
11922 - "default.handlebars->29->948"
11934 + "default.handlebars->29->950"
11935 ]
11936 },
11937 {
@@ -11936,7 +11948,7 @@
11948 "ru": "Диапазон IP",
11949 "zh-chs": "IP範圍",
11950 "xloc": [
11939 - "default.handlebars->29->246"
11951 + "default.handlebars->29->247"
11952 ]
11953 },
11954 {
@@ -11971,7 +11983,7 @@
11983 "ru": "IP: {0}",
11984 "zh-chs": "IP:{0}",
11985 "xloc": [
11974 - "default.handlebars->29->780"
11986 + "default.handlebars->29->781"
11987 ]
11988 },
11989 {
@@ -11988,7 +12000,7 @@
12000 "ru": "IP: {0}, маска: {1}, шлюз: {2}",
12001 "zh-chs": "IP:{0},掩碼:{1},網關:{2}",
12002 "xloc": [
11991 - "default.handlebars->29->778"
12003 + "default.handlebars->29->779"
12004 ]
12005 },
12006 {
@@ -12005,8 +12017,8 @@
12017 "ru": "Уровень IPv4",
12018 "zh-chs": "IPv4層",
12019 "xloc": [
12008 - "default.handlebars->29->777",
12009 - "default.handlebars->29->779"
12020 + "default.handlebars->29->778",
12021 + "default.handlebars->29->780"
12022 ]
12023 },
12024 {
@@ -12074,7 +12086,7 @@
12086 "ru": "Исландский",
12087 "zh-chs": "冰島的",
12088 "xloc": [
12077 - "default.handlebars->29->949"
12089 + "default.handlebars->29->951"
12090 ]
12091 },
12092 {
@@ -12092,7 +12104,7 @@
12104 "zh-chs": "圖標選擇",
12105 "xloc": [
12106 "default-mobile.handlebars->9->231",
12095 - "default.handlebars->29->666"
12107 + "default.handlebars->29->667"
12108 ]
12109 },
12110 {
@@ -12109,7 +12121,7 @@
12121 "ru": "Идентификатор",
12122 "zh-chs": "識別碼",
12123 "xloc": [
12112 - "default.handlebars->29->805"
12124 + "default.handlebars->29->806"
12125 ]
12126 },
12127 {
@@ -12191,7 +12203,7 @@
12203 "zh-chs": "个别装置",
12204 "xloc": [
12205 "default-mobile.handlebars->9->103",
12194 - "default.handlebars->29->172"
12206 + "default.handlebars->29->173"
12207 ]
12208 },
12209 {
@@ -12208,7 +12220,7 @@
12220 "ru": "Индонезийский",
12221 "zh-chs": "印度尼西亞",
12222 "xloc": [
12211 - "default.handlebars->29->950"
12223 + "default.handlebars->29->952"
12224 ]
12225 },
12226 {
@@ -12323,7 +12335,7 @@
12335 "ru": "Установка CIRA",
12336 "zh-chs": "安裝CIRA",
12337 "xloc": [
12326 - "default.handlebars->29->1158"
12338 + "default.handlebars->29->1160"
12339 ]
12340 },
12341 {
@@ -12340,7 +12352,7 @@
12352 "ru": "Локальная установка",
12353 "zh-chs": "安裝本地",
12354 "xloc": [
12343 - "default.handlebars->29->1160"
12355 + "default.handlebars->29->1162"
12356 ]
12357 },
12358 {
@@ -12357,10 +12369,10 @@
12369 "ru": "Тип установки",
12370 "zh-chs": "安裝類型",
12371 "xloc": [
12360 - "default.handlebars->29->1299",
12361 - "default.handlebars->29->1306",
12362 - "default.handlebars->29->293",
12363 - "default.handlebars->29->315"
12372 + "default.handlebars->29->1301",
12373 + "default.handlebars->29->1308",
12374 + "default.handlebars->29->294",
12375 + "default.handlebars->29->316"
12376 ]
12377 },
12378 {
@@ -12377,7 +12389,7 @@
12389 "ru": "Intel (F10 = ESC+[OM)",
12390 "zh-chs": "英特爾(F10 = ESC + [OM)",
12391 "xloc": [
12380 - "default.handlebars->29->710",
12392 + "default.handlebars->29->711",
12393 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
12394 ]
12395 },
@@ -12395,10 +12407,10 @@
12407 "ru": "Intel AMT",
12408 "zh-chs": "英特爾AMT",
12409 "xloc": [
12398 - "default.handlebars->29->1318",
12399 - "default.handlebars->29->1326",
12400 - "default.handlebars->29->1678",
12401 - "default.handlebars->29->1700"
12410 + "default.handlebars->29->1320",
12411 + "default.handlebars->29->1328",
12412 + "default.handlebars->29->1685",
12413 + "default.handlebars->29->1707"
12414 ]
12415 },
12416 {
@@ -12415,7 +12427,7 @@
12427 "ru": "Подключен Intel AMT CIRA",
12428 "zh-chs": "英特爾AMT CIRA已連接",
12429 "xloc": [
12418 - "default.handlebars->29->145"
12430 + "default.handlebars->29->146"
12431 ]
12432 },
12433 {
@@ -12432,7 +12444,7 @@
12444 "ru": "Отключен Intel AMT CIRA",
12445 "zh-chs": "英特爾AMT CIRA斷開連接",
12446 "xloc": [
12435 - "default.handlebars->29->149"
12447 + "default.handlebars->29->150"
12448 ]
12449 },
12450 {
@@ -12449,7 +12461,7 @@
12461 "ru": "Обнаружен Intel AMT",
12462 "zh-chs": "檢測到英特爾AMT",
12463 "xloc": [
12452 - "default.handlebars->29->144"
12464 + "default.handlebars->29->145"
12465 ]
12466 },
12467 {
@@ -12466,7 +12478,7 @@
12478 "ru": "Intel AMT активирован в режиме администратора",
12479 "zh-chs": "在管理控制模式下激活了Intel AMT",
12480 "xloc": [
12469 - "default.handlebars->29->474"
12481 + "default.handlebars->29->475"
12482 ]
12483 },
12484 {
@@ -12483,7 +12495,7 @@
12495 "ru": "Intel AMT активирован в режиме клиента",
12496 "zh-chs": "英特爾AMT在客戶端控制模式下被激活",
12497 "xloc": [
12486 - "default.handlebars->29->472"
12498 + "default.handlebars->29->473"
12499 ]
12500 },
12501 {
@@ -12500,7 +12512,7 @@
12512 "ru": "Intel AMT настроен с TLS безопасностью сети",
12513 "zh-chs": "英特爾AMT已設置TLS網絡安全性",
12514 "xloc": [
12503 - "default.handlebars->29->476"
12515 + "default.handlebars->29->477"
12516 ]
12517 },
12518 {
@@ -12517,7 +12529,7 @@
12529 "ru": "Intel AMT не обнаружен",
12530 "zh-chs": "未檢測到英特爾AMT",
12531 "xloc": [
12520 - "default.handlebars->29->148"
12532 + "default.handlebars->29->149"
12533 ]
12534 },
12535 {
@@ -12534,7 +12546,7 @@
12546 "ru": "Intel AMT необходимо установить с доверенным FQDN в MEBx или иметь кабельное подключение к локальной сети:",
12547 "zh-chs": "英特爾AMT將需要在MEBx中設置為受信任的FQDN,或者在網絡上具有有線局域網:",
12548 "xloc": [
12537 - "default.handlebars->29->243"
12549 + "default.handlebars->29->244"
12550 ]
12551 },
12552 {
@@ -12551,7 +12563,7 @@
12563 "ru": "Intel ASCII",
12564 "zh-chs": "英特爾ASCII",
12565 "xloc": [
12554 - "default.handlebars->29->709"
12566 + "default.handlebars->29->710"
12567 ]
12568 },
12569 {
@@ -12571,11 +12583,11 @@
12583 "default-mobile.handlebars->9->133",
12584 "default-mobile.handlebars->9->197",
12585 "default-mobile.handlebars->9->202",
12574 - "default.handlebars->29->1142",
12575 - "default.handlebars->29->1152",
12576 - "default.handlebars->29->433",
12577 - "default.handlebars->29->484",
12578 - "default.handlebars->29->512"
12586 + "default.handlebars->29->1144",
12587 + "default.handlebars->29->1154",
12588 + "default.handlebars->29->434",
12589 + "default.handlebars->29->485",
12590 + "default.handlebars->29->513"
12591 ]
12592 },
12593 {
@@ -12593,7 +12605,7 @@
12605 "zh-chs": "英特爾®AMT CIRA",
12606 "xloc": [
12607 "default-mobile.handlebars->9->201",
12596 - "default.handlebars->29->510"
12608 + "default.handlebars->29->511"
12609 ]
12610 },
12611 {
@@ -12610,9 +12622,9 @@
12622 "ru": "Intel® AMT CIRA подключен и готов к использованию.",
12623 "zh-chs": "英特爾®AMT CIRA已連接並可以使用。",
12624 "xloc": [
12613 - "default.handlebars->29->177",
12614 - "default.handlebars->29->370",
12615 - "default.handlebars->29->509"
12625 + "default.handlebars->29->178",
12626 + "default.handlebars->29->371",
12627 + "default.handlebars->29->510"
12628 ]
12629 },
12630 {
@@ -12648,7 +12660,7 @@
12660 "ru": "Политика Intel® AMT",
12661 "zh-chs": "英特爾®AMT政策",
12662 "xloc": [
12651 - "default.handlebars->29->1181"
12663 + "default.handlebars->29->1183"
12664 ]
12665 },
12666 {
@@ -12682,7 +12694,7 @@
12694 "ru": "Intel® AMT Тег",
12695 "zh-chs": "英特爾®AMT標籤",
12696 "xloc": [
12685 - "default.handlebars->29->488"
12697 + "default.handlebars->29->489"
12698 ]
12699 },
12700 {
@@ -12716,8 +12728,8 @@
12728 "ru": "Активация Intel® AMT",
12729 "zh-chs": "英特爾®AMT激活",
12730 "xloc": [
12719 - "default.handlebars->29->241",
12720 - "default.handlebars->29->244"
12731 + "default.handlebars->29->242",
12732 + "default.handlebars->29->245"
12733 ]
12734 },
12735 {
@@ -12735,8 +12747,8 @@
12747 "zh-chs": "英特爾®AMT已連接",
12748 "xloc": [
12749 "default-mobile.handlebars->9->211",
12738 - "default.handlebars->29->547",
12739 - "default.handlebars->29->548"
12750 + "default.handlebars->29->548",
12751 + "default.handlebars->29->549"
12752 ]
12753 },
12754 {
@@ -12753,8 +12765,8 @@
12765 "ru": "События Intel® AMT desktop или serial.",
12766 "zh-chs": "英特爾®AMT桌面和串行事件。",
12767 "xloc": [
12756 - "default.handlebars->29->1066",
12757 - "default.handlebars->29->1314"
12768 + "default.handlebars->29->1068",
12769 + "default.handlebars->29->1316"
12770 ]
12771 },
12772 {
@@ -12772,8 +12784,8 @@
12784 "zh-chs": "檢測到英特爾®AMT",
12785 "xloc": [
12786 "default-mobile.handlebars->9->212",
12775 - "default.handlebars->29->549",
12776 - "default.handlebars->29->550"
12787 + "default.handlebars->29->550",
12788 + "default.handlebars->29->551"
12789 ]
12790 },
12791 {
@@ -12790,7 +12802,7 @@
12802 "ru": "Intel® AMT маршрутизируется и готов к использованию.",
12803 "zh-chs": "英特爾®AMT可路由並可以使用。",
12804 "xloc": [
12793 - "default.handlebars->29->511"
12805 + "default.handlebars->29->512"
12806 ]
12807 },
12808 {
@@ -12807,8 +12819,8 @@
12819 "ru": "Intel® AMT маршрутизируется.",
12820 "zh-chs": "英特爾®AMT是可路由的。",
12821 "xloc": [
12810 - "default.handlebars->29->179",
12811 - "default.handlebars->29->372"
12822 + "default.handlebars->29->180",
12823 + "default.handlebars->29->373"
12824 ]
12825 },
12826 {
@@ -12843,8 +12855,8 @@
12855 "zh-chs": "僅限英特爾®AMT,無代理",
12856 "xloc": [
12857 "default-mobile.handlebars->9->282",
12846 - "default.handlebars->29->1095",
12847 - "default.handlebars->29->1119"
12858 + "default.handlebars->29->1097",
12859 + "default.handlebars->29->1121"
12860 ]
12861 },
12862 {
@@ -12861,7 +12873,7 @@
12873 "ru": "Технология Intel® Active Management",
12874 "zh-chs": "英特爾®主動管理技術",
12875 "xloc": [
12864 - "default.handlebars->29->483"
12876 + "default.handlebars->29->484"
12877 ]
12878 },
12879 {
@@ -12878,7 +12890,7 @@
12890 "ru": "Intel® Active Management Technology (Intel® AMT)",
12891 "zh-chs": "英特爾®主動管理技術(英特爾®AMT)",
12892 "xloc": [
12881 - "default.handlebars->29->797"
12893 + "default.handlebars->29->798"
12894 ]
12895 },
12896 {
@@ -12896,7 +12908,7 @@
12908 "zh-chs": "英特爾®ME",
12909 "xloc": [
12910 "default-mobile.handlebars->9->196",
12899 - "default.handlebars->29->482"
12911 + "default.handlebars->29->483"
12912 ]
12913 },
12914 {
@@ -12914,7 +12926,7 @@
12926 "zh-chs": "英特爾®SM",
12927 "xloc": [
12928 "default-mobile.handlebars->9->198",
12917 - "default.handlebars->29->486"
12929 + "default.handlebars->29->487"
12930 ]
12931 },
12932 {
@@ -12931,7 +12943,7 @@
12943 "ru": "Intel® Standard Manageability",
12944 "zh-chs": "英特爾®標準可管理性",
12945 "xloc": [
12934 - "default.handlebars->29->485"
12946 + "default.handlebars->29->486"
12947 ]
12948 },
12949 {
@@ -13032,7 +13044,7 @@
13044 "ru": "Интерактивный",
13045 "zh-chs": "互動",
13046 "xloc": [
13035 - "default.handlebars->29->692"
13047 + "default.handlebars->29->693"
13048 ]
13049 },
13050 {
@@ -13049,10 +13061,10 @@
13061 "ru": "Только интерактивный режим",
13062 "zh-chs": "僅限互動",
13063 "xloc": [
13052 - "default.handlebars->29->1302",
13053 - "default.handlebars->29->1309",
13054 - "default.handlebars->29->296",
13055 - "default.handlebars->29->318"
13064 + "default.handlebars->29->1304",
13065 + "default.handlebars->29->1311",
13066 + "default.handlebars->29->297",
13067 + "default.handlebars->29->319"
13068 ]
13069 },
13070 {
@@ -13069,7 +13081,7 @@
13081 "ru": "Интерфейсы",
13082 "zh-chs": "介面",
13083 "xloc": [
13072 - "default.handlebars->29->530"
13084 + "default.handlebars->29->531"
13085 ]
13086 },
13087 {
@@ -13086,7 +13098,7 @@
13098 "ru": "Инуктитут",
13099 "zh-chs": "因紐特人",
13100 "xloc": [
13089 - "default.handlebars->29->951"
13101 + "default.handlebars->29->953"
13102 ]
13103 },
13104 {
@@ -13103,7 +13115,7 @@
13115 "ru": "Некорректный тип группы устройств",
13116 "zh-chs": "無效的設備組類型",
13117 "xloc": [
13106 - "default.handlebars->29->1655"
13118 + "default.handlebars->29->1662"
13119 ]
13120 },
13121 {
@@ -13120,7 +13132,7 @@
13132 "ru": "Некорректный JSON",
13133 "zh-chs": "無效的JSON",
13134 "xloc": [
13123 - "default.handlebars->29->1649"
13135 + "default.handlebars->29->1656"
13136 ]
13137 },
13138 {
@@ -13137,8 +13149,8 @@
13149 "ru": "Некорректный формат файла JSON.",
13150 "zh-chs": "無效的JSON文件格式。",
13151 "xloc": [
13140 - "default.handlebars->29->1424",
13141 - "default.handlebars->29->1426"
13152 + "default.handlebars->29->1426",
13153 + "default.handlebars->29->1428"
13154 ]
13155 },
13156 {
@@ -13155,7 +13167,7 @@
13167 "ru": "Некорректный файл JSON: {0}.",
13168 "zh-chs": "無效的JSON文件:{0}。",
13169 "xloc": [
13158 - "default.handlebars->29->1422"
13170 + "default.handlebars->29->1424"
13171 ]
13172 },
13173 {
@@ -13172,7 +13184,7 @@
13184 "ru": "Некорректная сигнатура PKCS",
13185 "zh-chs": "無效的PKCS簽名",
13186 "xloc": [
13175 - "default.handlebars->29->1647"
13187 + "default.handlebars->29->1654"
13188 ]
13189 },
13190 {
@@ -13189,7 +13201,7 @@
13201 "ru": "Некорректная сигнатура RSA",
13202 "zh-chs": "無效的RSA密碼",
13203 "xloc": [
13192 - "default.handlebars->29->1648"
13204 + "default.handlebars->29->1655"
13205 ]
13206 },
13207 {
@@ -13291,7 +13303,7 @@
13303 "ru": "Ссылка для приглашения ({0})",
13304 "zh-chs": "邀請鏈接({0})",
13305 "xloc": [
13294 - "default.handlebars->29->165"
13306 + "default.handlebars->29->166"
13307 ]
13308 },
13309 {
@@ -13308,7 +13320,7 @@
13320 "ru": "Тип приглашения",
13321 "zh-chs": "邀請類型",
13322 "xloc": [
13311 - "default.handlebars->29->273"
13323 + "default.handlebars->29->274"
13324 ]
13325 },
13326 {
@@ -13325,7 +13337,7 @@
13337 "ru": "Коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:",
13338 "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:",
13339 "xloc": [
13328 - "default.handlebars->29->1304"
13340 + "default.handlebars->29->1306"
13341 ]
13342 },
13343 {
@@ -13356,9 +13368,9 @@
13368 "ru": "Пригласить",
13369 "zh-chs": "邀請",
13370 "xloc": [
13359 - "default.handlebars->29->1168",
13360 - "default.handlebars->29->228",
13361 - "default.handlebars->29->308"
13371 + "default.handlebars->29->1170",
13372 + "default.handlebars->29->229",
13373 + "default.handlebars->29->309"
13374 ]
13375 },
13376 {
@@ -13375,11 +13387,11 @@
13387 "ru": "Пригласительные коды",
13388 "zh-chs": "邀請碼",
13389 "xloc": [
13378 - "default.handlebars->29->1146",
13379 - "default.handlebars->29->1298",
13380 - "default.handlebars->29->1303",
13390 + "default.handlebars->29->1148",
13391 + "default.handlebars->29->1300",
13392 "default.handlebars->29->1305",
13382 - "default.handlebars->29->1310"
13393 + "default.handlebars->29->1307",
13394 + "default.handlebars->29->1312"
13395 ]
13396 },
13397 {
@@ -13396,7 +13408,7 @@
13408 "ru": "Пригласите установить Mesh Agent поделившись ссылкой. Эта ссылка ведет на инструкции для установки для группы устройств \\\"{0}\\\". Ссылка общедоступна и не требует наличия учетной записи на сервере.",
13409 "zh-chs": "通過共享邀請鏈接來邀請某人安裝網格代理。該鏈接為用戶提供 “{0}” 設備組的安裝說明。該鏈接是公共的,不需要該服務器的帳戶。",
13410 "xloc": [
13399 - "default.handlebars->29->299"
13411 + "default.handlebars->29->300"
13412 ]
13413 },
13414 {
@@ -13404,8 +13416,8 @@
13416 "en": "Invite someone to install the mesh agent on this device group.",
13417 "nl": "Nodig iemand uit om de mesh-agent in deze apparaatgroep te installeren.",
13418 "xloc": [
13407 - "default.handlebars->29->1167",
13408 - "default.handlebars->29->227"
13419 + "default.handlebars->29->1169",
13420 + "default.handlebars->29->228"
13421 ]
13422 },
13423 {
@@ -13422,7 +13434,7 @@
13434 "ru": "Пригласите установить Mesh Agent. Ссылка на установку для группы \\\"{0}\\\" будет отправлена по электронной почте.",
13435 "zh-chs": "邀請某人安裝網狀代理。將發送一封電子郵件,其中包含指向 “{0}” 設備組的網狀代理安裝的鏈接。",
13436 "xloc": [
13425 - "default.handlebars->29->276"
13437 + "default.handlebars->29->277"
13438 ]
13439 },
13440 {
@@ -13439,7 +13451,7 @@
13451 "ru": "Ирландский",
13452 "zh-chs": "愛爾蘭人",
13453 "xloc": [
13442 - "default.handlebars->29->952"
13454 + "default.handlebars->29->954"
13455 ]
13456 },
13457 {
@@ -13456,7 +13468,7 @@
13468 "ru": "Итальянский (Стандартный)",
13469 "zh-chs": "意大利語(標準)",
13470 "xloc": [
13459 - "default.handlebars->29->953"
13471 + "default.handlebars->29->955"
13472 ]
13473 },
13474 {
@@ -13473,7 +13485,7 @@
13485 "ru": "Итальянский (Швейцария)",
13486 "zh-chs": "義大利文(瑞士)",
13487 "xloc": [
13476 - "default.handlebars->29->954"
13488 + "default.handlebars->29->956"
13489 ]

This file is too large to show in full.

views/default.handlebars
+35 -18
@@ -2213,7 +2213,7 @@
2213 case 'verifyPhone': {
2214 if (xxdialogMode && (xxdialogTag != 'verifyPhone')) return;
2215 var x = '<table><tr><td><img src="images/phone80.png" style=padding:8px>';
2216 - x += '<td>Check your phone and enter the verification code.';
2216 + x += '<td>' + "Check your phone and enter the verification code.";
2217 x += '<br /><br /><div style=width:100%;text-align:center>' + "Verification code:" + ' <input type=tel pattern="[0-9]" inputmode="number" maxlength=6 id=d2phoneCodeInput onKeyUp=account_managePhoneCodeValidate() onkeypress="if (event.key==\'Enter\') account_managePhoneCodeValidate(1)"></div></table>';
2218 setDialogMode(2, "Phone Notifications", 3, account_managePhoneConfirm, x, message.cookie);
2219 Q('d2phoneCodeInput').focus();
@@ -7943,7 +7943,7 @@
7943 account_managePhoneRemoveValidate();
7944 } else {
7945 x = '<table style=width:100%><tr><td style=width:56px><img src="images/phone80.png" style=padding:8px>';
7946 - x += '<td>Enter your SMS capable phone number. Once verified, the number may be used for login verification and other notifications.';
7946 + x += '<td>' + "Enter your SMS capable phone number. Once verified, the number may be used for login verification and other notifications.";
7947 x += '<br /><br /><div style=width:100%;text-align:center>' + "Phone number:" + ' <input type=tel pattern="[0-9]" autocomplete="tel" inputmode="tel" maxlength=18 id=d2phoneinput onKeyUp=account_managePhoneValidate() onkeypress="if (event.key==\'Enter\') account_managePhoneValidate(1)"></div></table>';
7948 setDialogMode(2, "Phone Notifications", 3, account_managePhoneAdd, x, 'verifyPhone');
7949 Q('d2phoneinput').focus();
@@ -9839,10 +9839,10 @@
9839 if (user.email != null) {
9840 if (((features & 0x200000) == 0) || (user.email.toLowerCase() != user.name.toLowerCase())) {
9841 // Username & email are different
9842 - username += ', <a href=# onclick=\'return doemail(event,\"' + user.email + '\")\'>' + user.email + '</a>' + emailVerified;
9842 + username += ', <a href="mailto:' + user.email + '" \'>' + user.email + '</a>' + emailVerified;
9843 } else {
9844 // Username & email are the same
9845 - username += ' <a href=# onclick=\'return doemail(event,\"' + user.email + '\")\'><img src="images/mail12.png" height=9 width=12 title="' + "Send email to user" + '" style="margin-top:2px" /></a>' + emailVerified;
9845 + username += ' <a href="mailto:' + user.email + '" \'><img src="images/mail12.png" height=9 width=12 title="' + "Send email to user" + '" style="margin-top:2px" /></a>' + emailVerified;
9846 }
9847 }
9848
@@ -9851,7 +9851,7 @@
9851 if ((user.siteadmin != null) && ((user.siteadmin & 32) != 0) && (user.siteadmin != 0xFFFFFFFF)) { username += ' <img src="images/padlock12.png" height=12 width=8 title="' + "Account is locked" + '" style="margin-top:2px" />'; }
9852 x += '<tr tabindex=0 onmouseover=userMouseHover(this,1) onmouseout=userMouseHover(this,0) onkeypress="if (event.key==\'Enter\') gotoUser(\'' + encodeURIComponent(user._id) + '\')"><td>';
9853 x += '<div class=bar>';
9854 - x += '<div class=baricon><input class=UserCheckbox value=' + encodeURIComponent(user._id) + ' onclick=p3updateInfo() type=checkbox' + ((user._id == userinfo._id)?' disabled':'') + '></div><div style=cursor:pointer onclick=gotoUser(\"' + encodeURIComponent(user._id) + '\")>';
9854 + x += '<div class=baricon><input class=UserCheckbox value=' + encodeURIComponent(user._id) + ' onclick=p3updateInfo() type=checkbox' + ((user._id == userinfo._id)?' disabled':'') + '></div><div style=cursor:pointer onclick=gotoUser(\"' + encodeURIComponent(user._id) + '\",false,event)>';
9855 x += '<div class=baricon><div class="' + icon + gray + '"></div></div>';
9856 x += '<div class=g1></div><div class=g2></div><div>';
9857 x += '<div><span>' + username + '</span>' + msg + '</div></div><td style=text-align:center>' + groups + '<td style=text-align:center>' + lastAccess + '<td style=text-align:center>' + permissions;
@@ -9975,13 +9975,6 @@
9975
9976 function showUserAlertDialogEx(button, userid) { meshserver.send({ action: 'notifyuser', userid: decodeURIComponent(userid), msg: Q('d2notifyText').value }); }
9977
9978 - function doemail(e, addr) {
9979 - if (xxdialogMode) return false;
9980 - haltEvent(e);
9981 - window.open('mailto:' + addr);
9982 - return false;
9983 - }
9984 -
9978 function p4batchAccountCreate() {
9979 if (xxdialogMode) return;
9980 var x = "Create many accounts at once by importing a JSON file with the following format:" + '<br /><pre>[\r\n {"user":"x1","pass":"x","email":"x1@x"},\r\n {"user":"x2","pass":"x","resetNextLogin":true}\r\n]</pre><input style=width:370px type=file id=d4importFile accept=".json" onchange=p4batchAccountCreateValidate() />';
@@ -10633,8 +10626,9 @@
10626 //
10627
10628 var currentUser = null;
10636 - function gotoUser(userid, force) {
10629 + function gotoUser(userid, force, event) {
10630 if (xxdialogMode && !force) return;
10631 + if ((event != null) && (event.originalTarget != null) && (event.originalTarget.href != null)) return;
10632 var user = currentUser = users[decodeURIComponent(userid)];
10633 if (user == null) { setDialogMode(0); go(4); return; }
10634 QH('p30userName', user.name);
@@ -10657,13 +10651,17 @@
10651 var email = user.email?EscapeHtml(user.email):'<i>' + "Not set" + '</i>', everify = '';
10652 if (serverinfo.emailcheck) { everify = ((user.emailVerified == true) ? '<b style=color:green;cursor:pointer title=\"' + "Email is verified" + '\">&#x2713</b> ' : '<b style=color:red;cursor:pointer title=\"' + "Email not verified" + '\">&#x2717;</b> '); }
10653 if (user.name.toLowerCase() != user._id.split('/')[2]) { x += addDeviceAttribute("User Identifier", user._id.split('/')[2]); }
10660 - if (((features & 0x200000) == 0) && ((user.siteadmin != 0xFFFFFFFF) || (userinfo.siteadmin == 0xFFFFFFFF))) { // If we are not site admin, we can't change a admin email.
10661 - x += addDeviceAttribute("Email", everify + '<a href=# style=cursor:pointer onclick=p30showUserEmailChangeDialog(event,\"' + userid + '\")>' + email + '</a> <a href=# style=cursor:pointer onclick=\'return doemail(event,\"' + user.email + '\")\'><img class=hoverButton src="images/link1.png" /></a>');
10654 + if (((user.siteadmin != 0xFFFFFFFF) || (userinfo.siteadmin == 0xFFFFFFFF))) { // If we are not site admin, we can't change a admin email.
10655 + x += addDeviceAttribute("Email", everify + email + ' <a href="mailto:' + user.email + '" \'><img class=hoverButton src="images/link1.png" /></a>' + ' <img class=hoverButton style=cursor:pointer src="images/link5.png" onclick=p30showUserEmailChangeDialog(event,\"' + userid + '\") />');
10656 } else {
10663 - x += addDeviceAttribute("Email", everify + email + ' <a href=# style=cursor:pointer onclick=\'return doemail(event,\"' + user.email + '\")\'><img class=hoverButton src="images/link1.png" /></a>');
10657 + x += addDeviceAttribute("Email", everify + email + ' <a href="mailto:' + user.email + '" \'><img class=hoverButton src="images/link1.png" /></a>');
10658 + }
10659 +
10660 + if ((features & 0x02000000) || (user.phone != null)) { // If SMS is enabled on the server or user has a phone number
10661 + x += addDeviceAttribute("Phone Number", (user.phone?user.phone:('<i>' + "None" + '</i>')) + ' <img class=hoverButton style=cursor:pointer src="images/link5.png" onclick=p30editPhone() />');
10662 }
10665 - if (user.phone != null) { x += addDeviceAttribute("Phone Number", user.phone); }
10666 - x += addDeviceAttribute("Server Rights", premsg + '<a href=# style=cursor:pointer onclick=\'return showUserAdminDialog(event,\"' + userid + '\")\'>' + msg.join(', ') + '</a>');
10663 +
10664 + x += addDeviceAttribute("Server Rights", premsg + msg.join(', ') + ' <img style=cursor:pointer class=hoverButton onclick=\'return showUserAdminDialog(event,\"' + userid + '\")\' src="images/link5.png" />');
10665 if (user.quota) x += addDeviceAttribute("Server Quota", EscapeHtml(parseInt(user.quota) / 1024) + ' k');
10666 x += addDeviceAttribute("Creation", printDateTime(new Date(user.creation * 1000)));
10667 if (user.login) x += addDeviceAttribute("Last Login", printDateTime(new Date(user.login * 1000)));
@@ -10756,6 +10754,25 @@
10754 }
10755 }
10756
10757 + function p30editPhone() {
10758 + if (xxdialogMode) return;
10759 + var x = '<table style=width:100%><tr><td style=width:56px><img src="images/phone80.png" style=padding:8px>';
10760 + x += '<td style=width:100%;text-align:center>' + "SMS capable phone number for this user." + '<br />' + "Leave blank for none.";
10761 + x += '<br /><br /><div style=width:100%;text-align:center>' + "Phone number:" + ' <input type=tel pattern="[0-9]" autocomplete="tel" value="' + (currentUser.phone?currentUser.phone:'') + '" inputmode="tel" maxlength=18 id=d2phoneinput onKeyUp=p30editPhoneValidate() onkeypress="if (event.key==\'Enter\') p30editPhoneValidate(1)"></div></table>';
10762 + setDialogMode(2, "Phone Notifications", 3, p30editPhoneEx, x, 'verifyPhone');
10763 + Q('d2phoneinput').focus();
10764 + p30editPhoneValidate();
10765 + }
10766 +
10767 + function p30editPhoneValidate(x) {
10768 + var ok = (Q('d2phoneinput').value == '') || (isPhoneNumber(Q('d2phoneinput').value));
10769 + QE('idx_dlgOkButton', ok);
10770 + if ((x == 1) && ok) { dialogclose(1); }
10771 + }
10772 +
10773 + // Send to the server the user's new phone number
10774 + function p30editPhoneEx() { meshserver.send({ action: 'edituser', id: currentUser._id, phone: Q('d2phoneinput').value }); }
10775 +
10776 // Display the user's email change dialog box
10777 function p30showUserEmailChangeDialog(event) {
10778 if (xxdialogMode) return false;