diff --git a/meshdesktopmultiplex.js b/meshdesktopmultiplex.js index 8a0fc317..4c8468d0 100644 --- a/meshdesktopmultiplex.js +++ b/meshdesktopmultiplex.js @@ -203,6 +203,7 @@ function CreateDesktopMultiplexor(parent, domain, nodeid, func) { // Clean up ourselves function dispose() { + if (obj.viewers == null) return; //console.log('dispose', obj.nodeid); delete obj.viewers; delete obj.imagesCounters; @@ -226,6 +227,8 @@ function CreateDesktopMultiplexor(parent, domain, nodeid, func) { parent.parent.DispatchEvent(['*', obj.nodeid], obj, event); // TODO: Add Node MeshID to targets obj.startTime = null; } + + parent.parent.debug('relay', 'DesktopRelay: Disposing desktop multiplexor'); } // 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 } // If there is no authentication, drop this connection - 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; } + 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; } // Relay session count (we may remove this in the future) obj.relaySessionCounted = true; @@ -748,8 +751,8 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie if (obj.ws == null) return; // Already closed. // Close the connection - 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 - 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 + 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 + 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 if (obj.relaySessionCounted) { parent.relaySessionCount--; delete obj.relaySessionCounted; } if (obj.deskDecoder != null) { if (obj.deskDecoder.removePeer(obj) == true) { delete parent.desktoprelays[obj.nodeid]; } } @@ -826,9 +829,9 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie try { if (obj.peer != null) { obj.peer.ws.send('{"ctrlChannel":"102938","type":"pong"}'); } } catch (ex) { } } - function performRelay() { - if (obj.id == null) { try { obj.close(); } catch (e) { } return null; } // Attempt to connect without id, drop this. - ws._socket.setKeepAlive(true, 240000); // Set TCP keep alive + function performRelay(retryCount) { + if ((obj.id == null) || (retryCount > 20)) { try { obj.close(); } catch (e) { } return null; } // Attempt to connect without id, drop this. + if (retryCount == 0) { ws._socket.setKeepAlive(true, 240000); } // Set TCP keep alive /* // 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 } */ - // Setup the agent PING/PONG timers - if ((typeof parent.parent.args.agentping == 'number') && (obj.pingtimer == null)) { obj.pingtimer = setInterval(sendPing, parent.parent.args.agentping * 1000); } - else if ((typeof parent.parent.args.agentpong == 'number') && (obj.pongtimer == null)) { obj.pongtimer = setInterval(sendPong, parent.parent.args.agentpong * 1000); } + if (retryCount == 0) { + // Setup the agent PING/PONG timers + if ((typeof parent.parent.args.agentping == 'number') && (obj.pingtimer == null)) { obj.pingtimer = setInterval(sendPing, parent.parent.args.agentping * 1000); } + else if ((typeof parent.parent.args.agentpong == 'number') && (obj.pongtimer == null)) { obj.pongtimer = setInterval(sendPong, parent.parent.args.agentpong * 1000); } + + parent.parent.debug('relay', 'DesktopRelay: Connection (' + cleanRemoteAddr(obj.req.ip) + ')'); + } // Create if needed and add this peer to the desktop multiplexor obj.deskDecoder = parent.desktoprelays[obj.nodeid]; if (obj.deskDecoder == null) { + parent.desktoprelays[obj.nodeid] = 1; // Indicate that the creating of the desktop multiplexor is pending. + parent.parent.debug('relay', 'DesktopRelay: Creating new desktop multiplexor'); CreateDesktopMultiplexor(parent, domain, obj.nodeid, function (deskDecoder) { obj.deskDecoder = deskDecoder; parent.desktoprelays[obj.nodeid] = obj.deskDecoder; @@ -857,8 +866,14 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie ws._socket.resume(); // Release the traffic }); } else { - obj.deskDecoder.addPeer(obj); - ws._socket.resume(); // Release the traffic + if (obj.deskDecoder == 1) { + // The multiplexor is being created, hold a little and try again. This is to prevent a possible race condition. + setTimeout(function () { performRelay(++retryCount); }, 50); + } else { + // Hook up this peer to the multiplexor and release the traffic + obj.deskDecoder.addPeer(obj); + ws._socket.resume(); + } } } @@ -902,7 +917,7 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie const command = { nodeid: cookie.nodeid, action: 'msg', type: 'tunnel', value: '*/meshrelay.ashx?id=' + obj.id + '&rauth=' + rcookie, tcpport: cookie.tcpport, tcpaddr: cookie.tcpaddr }; parent.parent.debug('relay', 'Relay: Sending agent tunnel command: ' + JSON.stringify(command)); 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) + ')'); } - performRelay(); + performRelay(0); }); return obj; } 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 parent.parent.debug('relay', 'Relay: Sending agent UDP tunnel command: ' + JSON.stringify(command)); 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) + ')'); } } - performRelay(); + performRelay(0); }); return obj; } } // If this is not an authenticated session, or the session does not have routing instructions, just go ahead an connect to existing session. - performRelay(); + performRelay(0); return obj; }; diff --git a/meshuser.js b/meshuser.js index 3d8e043d..059cfdc1 100644 --- a/meshuser.js +++ b/meshuser.js @@ -1666,6 +1666,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use if ((command.emailVerified === true || command.emailVerified === false) && (chguser.emailVerified != command.emailVerified)) { chguser.emailVerified = command.emailVerified; change = 1; } 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; } if ((command.consent != null) && (typeof command.consent == 'number')) { if (command.consent == 0) { delete chguser.consent; } else { chguser.consent = command.consent; } change = 1; } + 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; } // Site admins can change any server rights, user managers can only change AccountLock, NoMeshCmd and NoNewGroups 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 // Split a string taking into account the quoats. Used for command line parsing 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; } function toNumberIfNumber(x) { if ((typeof x == 'string') && (+parseInt(x) === x)) { x = parseInt(x); } return x; } + function isPhoneNumber(x) { return x.match(/^\(?([0-9]{3,4})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/) } function removeAllUnderScore(obj) { if (typeof obj != 'object') return obj; diff --git a/package.json b/package.json index 76f745e6..08f6b3ba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "meshcentral", - "version": "0.5.18", + "version": "0.5.19", "keywords": [ "Remote Management", "Intel AMT", diff --git a/translate/translate.json b/translate/translate.json index 4fcd62be..e3502ce6 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -14,8 +14,8 @@ "ru": " + CIRA", "zh-chs": " + CIRA", "xloc": [ - "default.handlebars->29->1149", - "default.handlebars->29->1151" + "default.handlebars->29->1151", + "default.handlebars->29->1153" ] }, { @@ -174,7 +174,7 @@ "ru": " Может быть использована подсказка пароля, но не рекоммендуется.", "zh-chs": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->29->1078" + "default.handlebars->29->1080" ] }, { @@ -191,8 +191,8 @@ "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.", "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。", "xloc": [ - "default.handlebars->29->1224", - "default.handlebars->29->1525" + "default.handlebars->29->1226", + "default.handlebars->29->1527" ] }, { @@ -209,7 +209,7 @@ "ru": " и задайте указанное ниже имя пользователя и любой пароль.", "zh-chs": " 並使用該用戶名和任何密碼對服務器進行身份驗證。", "xloc": [ - "default.handlebars->29->259" + "default.handlebars->29->260" ] }, { @@ -226,7 +226,7 @@ "ru": " и задайте указанные ниже имя пользователя и пароль.", "zh-chs": " 並使用該用戶名和密碼向服務器驗證身份。", "xloc": [ - "default.handlebars->29->258" + "default.handlebars->29->259" ] }, { @@ -277,7 +277,7 @@ "ru": " с TLS.", "zh-chs": " TLS。", "xloc": [ - "default.handlebars->29->153" + "default.handlebars->29->154" ] }, { @@ -294,7 +294,7 @@ "ru": " без TLS", "zh-chs": " 沒有TLS。", "xloc": [ - "default.handlebars->29->154" + "default.handlebars->29->155" ] }, { @@ -326,7 +326,7 @@ "ru": "(необязательно)", "zh-chs": "(可選的)", "xloc": [ - "default.handlebars->29->298" + "default.handlebars->29->299" ] }, { @@ -358,7 +358,7 @@ "ru": "* Для BSD сначала запустите \\\"pkg install wget sudo bash\\\".", "zh-chs": "*對於BSD,首先運行 “pkg install wget sudo bash”。", "xloc": [ - "default.handlebars->29->331" + "default.handlebars->29->332" ] }, { @@ -375,7 +375,7 @@ "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.", "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。", "xloc": [ - "default.handlebars->29->1196" + "default.handlebars->29->1198" ] }, { @@ -408,7 +408,7 @@ "zh-chs": ",", "xloc": [ "default-mobile.handlebars->9->338", - "default.handlebars->29->1290" + "default.handlebars->29->1292" ] }, { @@ -426,7 +426,7 @@ "zh-chs": ",僅限Intel®AMT", "xloc": [ "default-mobile.handlebars->9->102", - "default.handlebars->29->171" + "default.handlebars->29->172" ] }, { @@ -443,7 +443,7 @@ "ru": ", MQTT онлайн", "zh-chs": ",MQTT在線", "xloc": [ - "default.handlebars->29->822" + "default.handlebars->29->823" ] }, { @@ -460,7 +460,7 @@ "ru": ", Soft-KVM", "zh-chs": ",軟KVM", "xloc": [ - "default.handlebars->29->674" + "default.handlebars->29->675" ] }, { @@ -479,9 +479,9 @@ "xloc": [ "default-mobile.handlebars->9->238", "default-mobile.handlebars->9->246", - "default.handlebars->29->675", - "default.handlebars->29->706", - "default.handlebars->29->718", + "default.handlebars->29->676", + "default.handlebars->29->707", + "default.handlebars->29->719", "xterm.handlebars->9->6" ] }, @@ -604,9 +604,9 @@ "xloc": [ "default-mobile.handlebars->9->251", "default-mobile.handlebars->9->77", - "default.handlebars->29->1331", - "default.handlebars->29->1635", - "default.handlebars->29->720" + "default.handlebars->29->1333", + "default.handlebars->29->1642", + "default.handlebars->29->721" ] }, { @@ -654,7 +654,7 @@ "ru": "1 активная сессия", "zh-chs": "1個活動會話", "xloc": [ - "default.handlebars->29->1584" + "default.handlebars->29->1587" ] }, { @@ -673,7 +673,7 @@ "xloc": [ "default-mobile.handlebars->9->342", "default-mobile.handlebars->9->87", - "default.handlebars->29->1350" + "default.handlebars->29->1352" ] }, { @@ -690,9 +690,9 @@ "ru": "1 день", "zh-chs": "1天", "xloc": [ - "default.handlebars->29->161", - "default.handlebars->29->289", - "default.handlebars->29->303" + "default.handlebars->29->162", + "default.handlebars->29->290", + "default.handlebars->29->304" ] }, { @@ -709,7 +709,7 @@ "ru": "1 группа", "zh-chs": "1組", "xloc": [ - "default.handlebars->29->1551" + "default.handlebars->29->1554" ] }, { @@ -726,9 +726,9 @@ "ru": "1 час", "zh-chs": "1小時", "xloc": [ - "default.handlebars->29->159", - "default.handlebars->29->287", - "default.handlebars->29->301" + "default.handlebars->29->160", + "default.handlebars->29->288", + "default.handlebars->29->302" ] }, { @@ -762,9 +762,9 @@ "ru": "1 месяц", "zh-chs": "1個月", "xloc": [ - "default.handlebars->29->163", - "default.handlebars->29->291", - "default.handlebars->29->305" + "default.handlebars->29->164", + "default.handlebars->29->292", + "default.handlebars->29->306" ] }, { @@ -781,7 +781,7 @@ "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...", "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->29->1385" + "default.handlebars->29->1387" ] }, { @@ -798,7 +798,7 @@ "ru": "1 устройство", "zh-chs": "1個節點", "xloc": [ - "default.handlebars->29->345" + "default.handlebars->29->346" ] }, { @@ -832,7 +832,7 @@ "ru": "1 сессия", "zh-chs": "1節", "xloc": [ - "default.handlebars->29->1389" + "default.handlebars->29->1391" ] }, { @@ -849,9 +849,9 @@ "ru": "1 неделя", "zh-chs": "1週", "xloc": [ - "default.handlebars->29->162", - "default.handlebars->29->290", - "default.handlebars->29->304" + "default.handlebars->29->163", + "default.handlebars->29->291", + "default.handlebars->29->305" ] }, { @@ -1100,8 +1100,8 @@ "ru": "двухфакторная аутентификация включена", "zh-chs": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->29->1402", - "default.handlebars->29->1573" + "default.handlebars->29->1404", + "default.handlebars->29->1576" ] }, { @@ -1202,8 +1202,8 @@ "ru": "32-разрядная версия MeshAgent", "zh-chs": "MeshAgent的32位版本", "xloc": [ - "default.handlebars->29->321", - "default.handlebars->29->338" + "default.handlebars->29->322", + "default.handlebars->29->339" ] }, { @@ -1416,7 +1416,7 @@ "ru": "64-битная версия MacOS Mesh Agent", "zh-chs": "64位版本的MacOS Mesh Agent", "xloc": [ - "default.handlebars->29->334" + "default.handlebars->29->335" ] }, { @@ -1433,8 +1433,8 @@ "ru": "64-разрядная версия MeshAgent", "zh-chs": "MeshAgent的64位版本", "xloc": [ - "default.handlebars->29->325", - "default.handlebars->29->341" + "default.handlebars->29->326", + "default.handlebars->29->342" ] }, { @@ -1465,7 +1465,7 @@ "ru": "7-дневная статистика работы", "zh-chs": "7天電源狀態", "xloc": [ - "default.handlebars->29->614" + "default.handlebars->29->615" ] }, { @@ -1518,8 +1518,8 @@ "ru": "8 часов", "zh-chs": "8小時", "xloc": [ - "default.handlebars->29->288", - "default.handlebars->29->302" + "default.handlebars->29->289", + "default.handlebars->29->303" ] }, { @@ -1705,7 +1705,7 @@ "zh-chs": "ACM", "xloc": [ "default-mobile.handlebars->9->192", - "default.handlebars->29->475" + "default.handlebars->29->476" ] }, { @@ -1722,8 +1722,8 @@ "ru": "AMT", "zh-chs": "AMT", "xloc": [ - "default.handlebars->29->180", - "default.handlebars->29->373" + "default.handlebars->29->181", + "default.handlebars->29->374" ] }, { @@ -1812,7 +1812,7 @@ "ru": "Отказано в доступе", "zh-chs": "拒絕訪問", "xloc": [ - "default.handlebars->29->823" + "default.handlebars->29->824" ] }, { @@ -1847,7 +1847,7 @@ "ru": "Доступ к файлам сервера", "zh-chs": "訪問服務器文件", "xloc": [ - "default.handlebars->29->1531" + "default.handlebars->29->1533" ] }, { @@ -1922,10 +1922,10 @@ "default-mobile.handlebars->9->62", "default-mobile.handlebars->9->64", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0", - "default.handlebars->29->1087", "default.handlebars->29->1089", - "default.handlebars->29->447", - "default.handlebars->29->449" + "default.handlebars->29->1091", + "default.handlebars->29->448", + "default.handlebars->29->450" ] }, { @@ -1956,8 +1956,8 @@ "ru": "Аккаунт заблокирован", "zh-chs": "帐户已被锁定", "xloc": [ - "default.handlebars->29->1404", - "default.handlebars->29->1528" + "default.handlebars->29->1406", + "default.handlebars->29->1530" ] }, { @@ -2045,7 +2045,7 @@ "ru": "Действиe", "zh-chs": "行動", "xloc": [ - "default.handlebars->29->828", + "default.handlebars->29->829", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -2063,8 +2063,8 @@ "ru": "Файл действий", "zh-chs": "動作文件", "xloc": [ - "default.handlebars->29->655", - "default.handlebars->29->657" + "default.handlebars->29->656", + "default.handlebars->29->658" ] }, { @@ -2083,7 +2083,7 @@ "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1", - "default.handlebars->29->519", + "default.handlebars->29->520", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -2139,9 +2139,9 @@ "xloc": [ "default-mobile.handlebars->9->187", "default-mobile.handlebars->9->189", - "default.handlebars->29->468", - "default.handlebars->29->470", - "default.handlebars->29->786" + "default.handlebars->29->469", + "default.handlebars->29->471", + "default.handlebars->29->787" ] }, { @@ -2158,10 +2158,10 @@ "ru": "Активация", "zh-chs": "激活", "xloc": [ - "default.handlebars->29->1162", "default.handlebars->29->1164", - "default.handlebars->29->222", - "default.handlebars->29->224" + "default.handlebars->29->1166", + "default.handlebars->29->223", + "default.handlebars->29->225" ] }, { @@ -2178,7 +2178,7 @@ "ru": "Активный пользователь", "zh-chs": "活動用戶{0}", "xloc": [ - "default.handlebars->29->494" + "default.handlebars->29->495" ] }, { @@ -2195,8 +2195,8 @@ "ru": "Добавить агент", "zh-chs": "添加代理", "xloc": [ - "default.handlebars->29->1166", - "default.handlebars->29->226" + "default.handlebars->29->1168", + "default.handlebars->29->227" ] }, { @@ -2213,7 +2213,7 @@ "ru": "Добавить CIRA", "zh-chs": "添加CIRA", "xloc": [ - "default.handlebars->29->216" + "default.handlebars->29->217" ] }, { @@ -2230,8 +2230,8 @@ "ru": "Добавить устройство", "zh-chs": "添加設備", "xloc": [ - "default.handlebars->29->1505", - "default.handlebars->29->1613" + "default.handlebars->29->1507", + "default.handlebars->29->1620" ] }, { @@ -2248,7 +2248,7 @@ "ru": "Добавить событие к устройству", "zh-chs": "添加設備事件", "xloc": [ - "default.handlebars->29->597" + "default.handlebars->29->598" ] }, { @@ -2265,10 +2265,10 @@ "ru": "Добавить группу устройств", "zh-chs": "添加設備組", "xloc": [ - "default.handlebars->29->1256", - "default.handlebars->29->1499", - "default.handlebars->29->1601", - "default.handlebars->29->197" + "default.handlebars->29->1258", + "default.handlebars->29->1501", + "default.handlebars->29->1608", + "default.handlebars->29->198" ] }, { @@ -2276,7 +2276,7 @@ "en": "Add Device Group Permissions", "nl": "Machtigingen voor apparaatgroep toevoegen", "xloc": [ - "default.handlebars->29->1253" + "default.handlebars->29->1255" ] }, { @@ -2290,8 +2290,8 @@ "ru": "Добавить разрешения для устройства", "zh-chs": "添加设备权限", "xloc": [ - "default.handlebars->29->1258", - "default.handlebars->29->1260" + "default.handlebars->29->1260", + "default.handlebars->29->1262" ] }, { @@ -2308,7 +2308,7 @@ "ru": "Добавить Intel® AMT CIRA устройство", "zh-chs": "添加英特爾®AMT CIRA設備", "xloc": [ - "default.handlebars->29->272" + "default.handlebars->29->273" ] }, { @@ -2325,7 +2325,7 @@ "ru": "Добавить Intel® AMT устройство", "zh-chs": "添加英特爾®AMT設備", "xloc": [ - "default.handlebars->29->239" + "default.handlebars->29->240" ] }, { @@ -2359,7 +2359,7 @@ "ru": "Добавить локально", "zh-chs": "添加本地", "xloc": [ - "default.handlebars->29->218" + "default.handlebars->29->219" ] }, { @@ -2376,7 +2376,7 @@ "ru": "Добавить участие", "zh-chs": "添加會員", "xloc": [ - "default.handlebars->29->1631" + "default.handlebars->29->1638" ] }, { @@ -2393,7 +2393,7 @@ "ru": "Добавить Mesh Agent", "zh-chs": "添加網格代理", "xloc": [ - "default.handlebars->29->344" + "default.handlebars->29->345" ] }, { @@ -2414,8 +2414,8 @@ "default.handlebars->29->135", "default.handlebars->29->138", "default.handlebars->29->139", - "default.handlebars->29->855", - "default.handlebars->29->856" + "default.handlebars->29->857", + "default.handlebars->29->858" ] }, { @@ -2433,7 +2433,7 @@ "zh-chs": "添加用戶", "xloc": [ "default-mobile.handlebars->9->288", - "default.handlebars->29->554" + "default.handlebars->29->555" ] }, { @@ -2447,7 +2447,7 @@ "ru": "Добавить разрешения для пользовательских устройств", "zh-chs": "添加用户设备权限", "xloc": [ - "default.handlebars->29->1263" + "default.handlebars->29->1265" ] }, { @@ -2464,10 +2464,10 @@ "ru": "Добавить группу пользователей", "zh-chs": "添加用戶組", "xloc": [ - "default.handlebars->29->1156", - "default.handlebars->29->1255", - "default.handlebars->29->1607", - "default.handlebars->29->555" + "default.handlebars->29->1158", + "default.handlebars->29->1257", + "default.handlebars->29->1614", + "default.handlebars->29->556" ] }, { @@ -2475,7 +2475,7 @@ "en": "Add User Group Device Permissions", "nl": "Gebruikersmachtigingen voor apparaatgroep toevoegen", "xloc": [ - "default.handlebars->29->1265" + "default.handlebars->29->1267" ] }, { @@ -2514,8 +2514,8 @@ "ru": "Добавить пользователей", "zh-chs": "添加用戶", "xloc": [ - "default.handlebars->29->1155", - "default.handlebars->29->1494" + "default.handlebars->29->1157", + "default.handlebars->29->1496" ] }, { @@ -2532,7 +2532,7 @@ "ru": "Добавить пользователей в группу устройств", "zh-chs": "將用戶添加到設備組", "xloc": [ - "default.handlebars->29->1252" + "default.handlebars->29->1254" ] }, { @@ -2549,7 +2549,7 @@ "ru": "Добавить пользователей в группу", "zh-chs": "將用戶添加到用戶組", "xloc": [ - "default.handlebars->29->1527" + "default.handlebars->29->1529" ] }, { @@ -2583,7 +2583,7 @@ "ru": "Добавить новый Intel® AMT компьютер сканированием локальной сети.", "zh-chs": "通過掃描本地網絡添加新的英特爾®AMT計算機。", "xloc": [ - "default.handlebars->29->219" + "default.handlebars->29->220" ] }, { @@ -2600,8 +2600,8 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.", "zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->29->1157", - "default.handlebars->29->215" + "default.handlebars->29->1159", + "default.handlebars->29->216" ] }, { @@ -2618,8 +2618,8 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.", "zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->29->1159", - "default.handlebars->29->217" + "default.handlebars->29->1161", + "default.handlebars->29->218" ] }, { @@ -2636,7 +2636,7 @@ "ru": "Добавить новое Intel® AMT устройство к группе устройств \\\"{0}\\\".", "zh-chs": "將新的英特爾®AMT設備添加到設備組“{0}”。", "xloc": [ - "default.handlebars->29->229" + "default.handlebars->29->230" ] }, { @@ -2644,8 +2644,8 @@ "en": "Add a new computer to this device group by installing the mesh agent.", "nl": "Voeg een nieuwe computer toe aan deze apparaatgroep door de mesh-agent te installeren.", "xloc": [ - "default.handlebars->29->1165", - "default.handlebars->29->225" + "default.handlebars->29->1167", + "default.handlebars->29->226" ] }, { @@ -2662,7 +2662,7 @@ "ru": "Адрес", "zh-chs": "地址", "xloc": [ - "default.handlebars->29->193" + "default.handlebars->29->194" ] }, { @@ -2696,7 +2696,7 @@ "ru": "Режим управления администратора (ACM)", "zh-chs": "管理員控制模式(ACM)", "xloc": [ - "default.handlebars->29->788" + "default.handlebars->29->789" ] }, { @@ -2713,7 +2713,7 @@ "ru": "Учетные данные администратора", "zh-chs": "管理員憑證", "xloc": [ - "default.handlebars->29->794" + "default.handlebars->29->795" ] }, { @@ -2748,7 +2748,7 @@ "ru": "Области администратора", "zh-chs": "管理領域", "xloc": [ - "default.handlebars->29->1555" + "default.handlebars->29->1558" ] }, { @@ -2783,7 +2783,7 @@ "ru": "Административные области", "zh-chs": "行政領域", "xloc": [ - "default.handlebars->29->1452" + "default.handlebars->29->1454" ] }, { @@ -2800,7 +2800,7 @@ "ru": "Администратор", "zh-chs": "管理員", "xloc": [ - "default.handlebars->29->1396" + "default.handlebars->29->1398" ] }, { @@ -2817,7 +2817,7 @@ "ru": "Африканский", "zh-chs": "南非語", "xloc": [ - "default.handlebars->29->858" + "default.handlebars->29->860" ] }, { @@ -2837,10 +2837,10 @@ "default-mobile.handlebars->9->131", "default-mobile.handlebars->9->184", "default-mobile.handlebars->9->200", - "default.handlebars->29->1317", - "default.handlebars->29->1325", - "default.handlebars->29->176", - "default.handlebars->29->369", + "default.handlebars->29->1319", + "default.handlebars->29->1327", + "default.handlebars->29->177", + "default.handlebars->29->370", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" ] }, @@ -2858,8 +2858,8 @@ "ru": "Агент + Intel AMT", "zh-chs": "代理+英特爾AMT", "xloc": [ - "default.handlebars->29->1319", - "default.handlebars->29->1327" + "default.handlebars->29->1321", + "default.handlebars->29->1329" ] }, { @@ -2894,7 +2894,7 @@ "zh-chs": "代理控制台", "xloc": [ "default-mobile.handlebars->9->323", - "default.handlebars->29->1273" + "default.handlebars->29->1275" ] }, { @@ -2911,7 +2911,7 @@ "ru": "Счетчик ошибок агента", "zh-chs": "座席錯誤計數器", "xloc": [ - "default.handlebars->29->1645" + "default.handlebars->29->1652" ] }, { @@ -2980,7 +2980,7 @@ "ru": "Сессии агентов", "zh-chs": "座席會議", "xloc": [ - "default.handlebars->29->1661" + "default.handlebars->29->1668" ] }, { @@ -2998,7 +2998,7 @@ "zh-chs": "代理商標籤", "xloc": [ "default-mobile.handlebars->9->199", - "default.handlebars->29->487" + "default.handlebars->29->488" ] }, { @@ -3015,7 +3015,7 @@ "ru": "Типы агента", "zh-chs": "代理類型", "xloc": [ - "default.handlebars->29->1323", + "default.handlebars->29->1325", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -3033,9 +3033,9 @@ "ru": "Агент подключен", "zh-chs": "代理已連接", "xloc": [ - "default.handlebars->29->143", - "default.handlebars->29->545", - "default.handlebars->29->546" + "default.handlebars->29->144", + "default.handlebars->29->546", + "default.handlebars->29->547" ] }, { @@ -3052,7 +3052,7 @@ "ru": "Агент отключился", "zh-chs": "代理已斷開連接", "xloc": [ - "default.handlebars->29->147" + "default.handlebars->29->148" ] }, { @@ -3069,7 +3069,7 @@ "ru": "Агент оффлайн", "zh-chs": "代理離線", "xloc": [ - "default.handlebars->29->821" + "default.handlebars->29->822" ] }, { @@ -3086,7 +3086,7 @@ "ru": "Агент онлайн", "zh-chs": "代理在線", "xloc": [ - "default.handlebars->29->820" + "default.handlebars->29->821" ] }, { @@ -3103,7 +3103,7 @@ "ru": "Агенты", "zh-chs": "代理商", "xloc": [ - "default.handlebars->29->1674" + "default.handlebars->29->1681" ] }, { @@ -3120,7 +3120,7 @@ "ru": "Албанский", "zh-chs": "阿爾巴尼亞語", "xloc": [ - "default.handlebars->29->859" + "default.handlebars->29->861" ] }, { @@ -3173,9 +3173,9 @@ "ru": "Фокусирование всех", "zh-chs": "全部聚焦", "xloc": [ - "default.handlebars->29->676", - "default.handlebars->29->678", - "default.handlebars->29->679" + "default.handlebars->29->677", + "default.handlebars->29->679", + "default.handlebars->29->680" ] }, { @@ -3192,8 +3192,8 @@ "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.", "zh-chs": "允許用戶管理此設備組和該組中的設備。", "xloc": [ - "default.handlebars->29->1222", - "default.handlebars->29->1524" + "default.handlebars->29->1224", + "default.handlebars->29->1526" ] }, { @@ -3207,7 +3207,7 @@ "ru": "Разрешить пользователям управлять этим устройством.", "zh-chs": "允许用户管理此设备。", "xloc": [ - "default.handlebars->29->1223" + "default.handlebars->29->1225" ] }, { @@ -3260,7 +3260,7 @@ "ru": "Поменять (F10 = ESC+0)", "zh-chs": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->29->711" + "default.handlebars->29->712" ] }, { @@ -3294,9 +3294,9 @@ "ru": "Всегда уведомлять", "zh-chs": "始終通知", "xloc": [ - "default.handlebars->29->1136", - "default.handlebars->29->1564", - "default.handlebars->29->503" + "default.handlebars->29->1138", + "default.handlebars->29->1567", + "default.handlebars->29->504" ] }, { @@ -3313,9 +3313,9 @@ "ru": "Всегда запрашивать", "zh-chs": "總是提示", "xloc": [ - "default.handlebars->29->1137", - "default.handlebars->29->1565", - "default.handlebars->29->504" + "default.handlebars->29->1139", + "default.handlebars->29->1568", + "default.handlebars->29->505" ] }, { @@ -3420,7 +3420,7 @@ "ru": "Антивирус", "zh-chs": "防毒軟件", "xloc": [ - "default.handlebars->29->493" + "default.handlebars->29->494" ] }, { @@ -3437,7 +3437,7 @@ "ru": "Любые поддерживаемые", "zh-chs": "任何支持", "xloc": [ - "default.handlebars->29->282" + "default.handlebars->29->283" ] }, { @@ -3454,7 +3454,7 @@ "ru": "Apple MacOS", "zh-chs": "蘋果MacOS", "xloc": [ - "default.handlebars->29->312" + "default.handlebars->29->313" ] }, { @@ -3471,7 +3471,7 @@ "ru": "Только Apple MacOS", "zh-chs": "僅限Apple MacOS", "xloc": [ - "default.handlebars->29->284" + "default.handlebars->29->285" ] }, { @@ -3505,7 +3505,7 @@ "ru": "Арабский (Алжир)", "zh-chs": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->29->861" + "default.handlebars->29->863" ] }, { @@ -3522,7 +3522,7 @@ "ru": "Арабский (Бахрейн)", "zh-chs": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->29->862" + "default.handlebars->29->864" ] }, { @@ -3539,7 +3539,7 @@ "ru": "Арабский (Египет)", "zh-chs": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->29->863" + "default.handlebars->29->865" ] }, { @@ -3556,7 +3556,7 @@ "ru": "Арабский (Ирак)", "zh-chs": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->29->864" + "default.handlebars->29->866" ] }, { @@ -3573,7 +3573,7 @@ "ru": "Арабский (Иордания)", "zh-chs": "阿拉伯語(約旦)", "xloc": [ - "default.handlebars->29->865" + "default.handlebars->29->867" ] }, { @@ -3590,7 +3590,7 @@ "ru": "Арабский (Кувейт)", "zh-chs": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->29->866" + "default.handlebars->29->868" ] }, { @@ -3607,7 +3607,7 @@ "ru": "Арабский (Ливан)", "zh-chs": "阿拉伯語(黎巴嫩)", "xloc": [ - "default.handlebars->29->867" + "default.handlebars->29->869" ] }, { @@ -3624,7 +3624,7 @@ "ru": "Арабский (Ливия)", "zh-chs": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->29->868" + "default.handlebars->29->870" ] }, { @@ -3641,7 +3641,7 @@ "ru": "Арабский (Марокко)", "zh-chs": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->29->869" + "default.handlebars->29->871" ] }, { @@ -3658,7 +3658,7 @@ "ru": "Арабский (Оман)", "zh-chs": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->29->870" + "default.handlebars->29->872" ] }, { @@ -3675,7 +3675,7 @@ "ru": "Арабский (Катар)", "zh-chs": "阿拉伯語(卡塔爾)", "xloc": [ - "default.handlebars->29->871" + "default.handlebars->29->873" ] }, { @@ -3692,7 +3692,7 @@ "ru": "Арабский (Саудовская Аравия)", "zh-chs": "阿拉伯語(沙特阿拉伯)", "xloc": [ - "default.handlebars->29->872" + "default.handlebars->29->874" ] }, { @@ -3709,7 +3709,7 @@ "ru": "Арабский (стандартный)", "zh-chs": "阿拉伯語(標準)", "xloc": [ - "default.handlebars->29->860" + "default.handlebars->29->862" ] }, { @@ -3726,7 +3726,7 @@ "ru": "Арабский (Сирия)", "zh-chs": "阿拉伯語(敘利亞)", "xloc": [ - "default.handlebars->29->873" + "default.handlebars->29->875" ] }, { @@ -3743,7 +3743,7 @@ "ru": "Арабский (Тунис)", "zh-chs": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->29->874" + "default.handlebars->29->876" ] }, { @@ -3760,7 +3760,7 @@ "ru": "Арабский (О.А.Э.)", "zh-chs": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->29->875" + "default.handlebars->29->877" ] }, { @@ -3777,7 +3777,7 @@ "ru": "Арабский (Йемен)", "zh-chs": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->29->876" + "default.handlebars->29->878" ] }, { @@ -3794,7 +3794,7 @@ "ru": "Арагонский", "zh-chs": "阿拉貢人", "xloc": [ - "default.handlebars->29->877" + "default.handlebars->29->879" ] }, { @@ -3811,7 +3811,7 @@ "ru": "Архитектура", "zh-chs": "建築", "xloc": [ - "default.handlebars->29->762" + "default.handlebars->29->763" ] }, { @@ -3828,7 +3828,7 @@ "ru": "Вы действительно хотите подключиться к {0} устройствам?", "zh-chs": "您確定要連接到{0}設備嗎?", "xloc": [ - "default.handlebars->29->210" + "default.handlebars->29->211" ] }, { @@ -3846,7 +3846,7 @@ "zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。", "xloc": [ "default-mobile.handlebars->9->294", - "default.handlebars->29->1200" + "default.handlebars->29->1202" ] }, { @@ -3863,7 +3863,7 @@ "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?", "zh-chs": "您確定要刪除節點{0}嗎?", "xloc": [ - "default.handlebars->29->636" + "default.handlebars->29->637" ] }, { @@ -3880,7 +3880,7 @@ "ru": "Вы действительно хотите деинсталировать выбранного агента?", "zh-chs": "您確定要卸載所選代理嗎?", "xloc": [ - "default.handlebars->29->625" + "default.handlebars->29->626" ] }, { @@ -3897,7 +3897,7 @@ "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?", "zh-chs": "您確定要卸載所選的{0}代理嗎?", "xloc": [ - "default.handlebars->29->624" + "default.handlebars->29->625" ] }, { @@ -3914,7 +3914,7 @@ "ru": "Вы уверенны, что {0} плагин: {1}", "zh-chs": "您確定要{0}插件嗎:{1}", "xloc": [ - "default.handlebars->29->1714" + "default.handlebars->29->1721" ] }, { @@ -3931,7 +3931,7 @@ "ru": "Армянский", "zh-chs": "亞美尼亞人", "xloc": [ - "default.handlebars->29->878" + "default.handlebars->29->880" ] }, { @@ -3964,7 +3964,7 @@ "ru": "Ассамский", "zh-chs": "阿薩姆語", "xloc": [ - "default.handlebars->29->879" + "default.handlebars->29->881" ] }, { @@ -3981,7 +3981,7 @@ "ru": "Астурии", "zh-chs": "阿斯圖里亞斯人", "xloc": [ - "default.handlebars->29->880" + "default.handlebars->29->882" ] }, { @@ -3998,7 +3998,7 @@ "ru": "Приложение аутентификации", "zh-chs": "身份驗證應用", "xloc": [ - "default.handlebars->29->1568" + "default.handlebars->29->1571" ] }, { @@ -4021,8 +4021,8 @@ "default-mobile.handlebars->9->42", "default.handlebars->29->109", "default.handlebars->29->114", - "default.handlebars->29->844", - "default.handlebars->29->846" + "default.handlebars->29->846", + "default.handlebars->29->848" ] }, { @@ -4090,7 +4090,7 @@ "ru": "Автоудаление", "zh-chs": "自動刪除", "xloc": [ - "default.handlebars->29->1124" + "default.handlebars->29->1126" ] }, { @@ -4144,7 +4144,7 @@ "ru": "Азербайджанский", "zh-chs": "阿塞拜疆", "xloc": [ - "default.handlebars->29->881" + "default.handlebars->29->883" ] }, { @@ -4161,7 +4161,7 @@ "ru": "BIOS", "zh-chs": "的BIOS", "xloc": [ - "default.handlebars->29->800" + "default.handlebars->29->801" ] }, { @@ -4241,7 +4241,7 @@ "ru": "Фоновый и интерактивный", "zh-chs": "背景與互動", "xloc": [ - "default.handlebars->29->316" + "default.handlebars->29->317" ] }, { @@ -4258,9 +4258,9 @@ "ru": "Фоновый и интерактивный", "zh-chs": "背景與互動", "xloc": [ - "default.handlebars->29->1300", - "default.handlebars->29->1307", - "default.handlebars->29->294" + "default.handlebars->29->1302", + "default.handlebars->29->1309", + "default.handlebars->29->295" ] }, { @@ -4277,10 +4277,10 @@ "ru": "Только фоновый", "zh-chs": "僅背景", "xloc": [ - "default.handlebars->29->1301", - "default.handlebars->29->1308", - "default.handlebars->29->295", - "default.handlebars->29->317" + "default.handlebars->29->1303", + "default.handlebars->29->1310", + "default.handlebars->29->296", + "default.handlebars->29->318" ] }, { @@ -4314,7 +4314,7 @@ "ru": "Резервные коды", "zh-chs": "備用碼", "xloc": [ - "default.handlebars->29->1570" + "default.handlebars->29->1573" ] }, { @@ -4331,7 +4331,7 @@ "ru": "Плохой ключ", "zh-chs": "錯誤的簽名", "xloc": [ - "default.handlebars->29->1652" + "default.handlebars->29->1659" ] }, { @@ -4348,7 +4348,7 @@ "ru": "Плохой веб-сертификат", "zh-chs": "錯誤的網絡證書", "xloc": [ - "default.handlebars->29->1651" + "default.handlebars->29->1658" ] }, { @@ -4365,7 +4365,7 @@ "ru": "Баскский", "zh-chs": "巴斯克", "xloc": [ - "default.handlebars->29->882" + "default.handlebars->29->884" ] }, { @@ -4399,7 +4399,7 @@ "ru": "Белорусский", "zh-chs": "白俄羅斯語", "xloc": [ - "default.handlebars->29->884" + "default.handlebars->29->886" ] }, { @@ -4416,7 +4416,7 @@ "ru": "Бенгальский", "zh-chs": "孟加拉", "xloc": [ - "default.handlebars->29->885" + "default.handlebars->29->887" ] }, { @@ -4450,7 +4450,7 @@ "ru": "Боснийский", "zh-chs": "波斯尼亞人", "xloc": [ - "default.handlebars->29->886" + "default.handlebars->29->888" ] }, { @@ -4467,7 +4467,7 @@ "ru": "Бретонский", "zh-chs": "布列塔尼", "xloc": [ - "default.handlebars->29->887" + "default.handlebars->29->889" ] }, { @@ -4484,7 +4484,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播", "xloc": [ - "default.handlebars->29->1492", + "default.handlebars->29->1494", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -4502,7 +4502,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播消息", "xloc": [ - "default.handlebars->29->1437" + "default.handlebars->29->1439" ] }, { @@ -4519,7 +4519,7 @@ "ru": "Отправить сообщение всем подключенным пользователям.", "zh-chs": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->29->1436" + "default.handlebars->29->1438" ] }, { @@ -4536,7 +4536,7 @@ "ru": "Болгарский", "zh-chs": "保加利亞語", "xloc": [ - "default.handlebars->29->883" + "default.handlebars->29->885" ] }, { @@ -4553,7 +4553,7 @@ "ru": "Бирманский", "zh-chs": "緬甸人", "xloc": [ - "default.handlebars->29->888" + "default.handlebars->29->890" ] }, { @@ -4571,7 +4571,7 @@ "zh-chs": "CCM", "xloc": [ "default-mobile.handlebars->9->191", - "default.handlebars->29->473" + "default.handlebars->29->474" ] }, { @@ -4589,10 +4589,10 @@ "zh-chs": "CIRA", "xloc": [ "default-mobile.handlebars->9->132", - "default.handlebars->29->1188", - "default.handlebars->29->1193", - "default.handlebars->29->178", - "default.handlebars->29->371" + "default.handlebars->29->1190", + "default.handlebars->29->1195", + "default.handlebars->29->179", + "default.handlebars->29->372" ] }, { @@ -4609,7 +4609,7 @@ "ru": "CIRA Сервер", "zh-chs": "CIRA服務器", "xloc": [ - "default.handlebars->29->1702" + "default.handlebars->29->1709" ] }, { @@ -4626,7 +4626,7 @@ "ru": "CIRA Сервер команды", "zh-chs": "CIRA服務器命令", "xloc": [ - "default.handlebars->29->1703" + "default.handlebars->29->1710" ] }, { @@ -4641,7 +4641,7 @@ "ru": "CPU", "zh-chs": "CPU", "xloc": [ - "default.handlebars->29->806" + "default.handlebars->29->807" ] }, { @@ -4658,7 +4658,7 @@ "ru": "Загрузка CPU", "zh-chs": "CPU負載", "xloc": [ - "default.handlebars->29->1666" + "default.handlebars->29->1673" ] }, { @@ -4675,7 +4675,7 @@ "ru": "Загрузка CPU за последние 15 минут", "zh-chs": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->29->1669" + "default.handlebars->29->1676" ] }, { @@ -4692,7 +4692,7 @@ "ru": "Загрузка CPU за последние 5 минут", "zh-chs": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->29->1668" + "default.handlebars->29->1675" ] }, { @@ -4709,7 +4709,7 @@ "ru": "Загрузка CPU за последнюю минуту", "zh-chs": "最後一分鐘的CPU負載", "xloc": [ - "default.handlebars->29->1667" + "default.handlebars->29->1674" ] }, { @@ -4726,8 +4726,8 @@ "ru": "CR+LF", "zh-chs": "CR +低頻", "xloc": [ - "default.handlebars->29->704", - "default.handlebars->29->713", + "default.handlebars->29->705", + "default.handlebars->29->714", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -4745,9 +4745,9 @@ "ru": "Формат CSV", "zh-chs": "CSV格式", "xloc": [ - "default.handlebars->29->1371", - "default.handlebars->29->1428", - "default.handlebars->29->398" + "default.handlebars->29->1373", + "default.handlebars->29->1430", + "default.handlebars->29->399" ] }, { @@ -4764,7 +4764,7 @@ "ru": "Ошибка вызова", "zh-chs": "通話錯誤", "xloc": [ - "default.handlebars->29->1715" + "default.handlebars->29->1722" ] }, { @@ -4783,7 +4783,7 @@ "xloc": [ "default-mobile.handlebars->9->51", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->29->1108", + "default.handlebars->29->1110", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -4795,8 +4795,8 @@ "en": "Capacity", "nl": "Capaciteit", "xloc": [ - "default.handlebars->29->814", - "default.handlebars->29->816" + "default.handlebars->29->815", + "default.handlebars->29->817" ] }, { @@ -4813,7 +4813,7 @@ "ru": "Объем / Скорость", "zh-chs": "容量/速度", "xloc": [ - "default.handlebars->29->809" + "default.handlebars->29->810" ] }, { @@ -4830,7 +4830,7 @@ "ru": "Каталонский", "zh-chs": "加泰羅尼亞語", "xloc": [ - "default.handlebars->29->889" + "default.handlebars->29->891" ] }, { @@ -4847,7 +4847,7 @@ "ru": "Установить центр карты здесь", "zh-chs": "中心地圖在這裡", "xloc": [ - "default.handlebars->29->438" + "default.handlebars->29->439" ] }, { @@ -4864,7 +4864,7 @@ "ru": "Чаморро", "zh-chs": "查莫羅", "xloc": [ - "default.handlebars->29->890" + "default.handlebars->29->892" ] }, { @@ -4889,7 +4889,7 @@ "ru": "Смена email для {0}", "zh-chs": "更改{0}的電子郵件", "xloc": [ - "default.handlebars->29->1590" + "default.handlebars->29->1597" ] }, { @@ -4906,9 +4906,9 @@ "ru": "Смена группы", "zh-chs": "變更組", "xloc": [ - "default.handlebars->29->526", - "default.handlebars->29->633", - "default.handlebars->29->634" + "default.handlebars->29->527", + "default.handlebars->29->634", + "default.handlebars->29->635" ] }, { @@ -4926,8 +4926,8 @@ "zh-chs": "更改密碼", "xloc": [ "default-mobile.handlebars->9->59", - "default.handlebars->29->1084", - "default.handlebars->29->1583" + "default.handlebars->29->1086", + "default.handlebars->29->1586" ] }, { @@ -4944,7 +4944,7 @@ "ru": "Смена пароля для {0}", "zh-chs": "更改{0}的密碼", "xloc": [ - "default.handlebars->29->1597" + "default.handlebars->29->1604" ] }, { @@ -5014,7 +5014,7 @@ "ru": "Изменить пароль для этого пользователя", "zh-chs": "更改該用戶的密碼", "xloc": [ - "default.handlebars->29->1582" + "default.handlebars->29->1585" ] }, { @@ -5048,7 +5048,7 @@ "ru": "Измените адрес электронной почты вашей учетной записи здесь.", "zh-chs": "在此處更改您的帳戶電子郵件地址。", "xloc": [ - "default.handlebars->29->1071" + "default.handlebars->29->1073" ] }, { @@ -5065,7 +5065,7 @@ "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.", "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->29->1077" + "default.handlebars->29->1079" ] }, { @@ -5082,7 +5082,7 @@ "ru": "Изменение языка потребует перезагрузить страницу.", "zh-chs": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->29->1056" + "default.handlebars->29->1058" ] }, { @@ -5099,9 +5099,9 @@ "ru": "Чат", "zh-chs": "聊天室", "xloc": [ - "default.handlebars->29->1388", - "default.handlebars->29->575", - "default.handlebars->29->594" + "default.handlebars->29->1390", + "default.handlebars->29->576", + "default.handlebars->29->595" ] }, { @@ -5120,8 +5120,8 @@ "xloc": [ "default-mobile.handlebars->9->315", "default-mobile.handlebars->9->333", - "default.handlebars->29->1250", - "default.handlebars->29->1284" + "default.handlebars->29->1252", + "default.handlebars->29->1286" ] }, { @@ -5138,7 +5138,7 @@ "ru": "Чеченский", "zh-chs": "車臣", "xloc": [ - "default.handlebars->29->891" + "default.handlebars->29->893" ] }, { @@ -5192,6 +5192,12 @@ "default.handlebars->container->column_l->p6->p6info->p2ServerActions->3->p2ServerActionsVersion->0" ] }, + { + "en": "Check your phone and enter the verification code.", + "xloc": [ + "default.handlebars->29->141" + ] + }, { "cs": "Kontrola…", "de": "Überprüfen...", @@ -5206,8 +5212,8 @@ "ru": "Проверка...", "zh-chs": "檢查...", "xloc": [ - "default.handlebars->29->1709", - "default.handlebars->29->857" + "default.handlebars->29->1716", + "default.handlebars->29->859" ] }, { @@ -5224,7 +5230,7 @@ "ru": "Китайский", "zh-chs": "中文", "xloc": [ - "default.handlebars->29->892" + "default.handlebars->29->894" ] }, { @@ -5241,7 +5247,7 @@ "ru": "Китайский (Гонконг)", "zh-chs": "中文(香港)", "xloc": [ - "default.handlebars->29->893" + "default.handlebars->29->895" ] }, { @@ -5258,7 +5264,7 @@ "ru": "Китайский (КНР)", "zh-chs": "中文(中國)", "xloc": [ - "default.handlebars->29->894" + "default.handlebars->29->896" ] }, { @@ -5273,7 +5279,7 @@ "ru": "Упрощенный китайский)", "zh-chs": "简体中文)", "xloc": [ - "default.handlebars->29->1054" + "default.handlebars->29->1056" ] }, { @@ -5290,7 +5296,7 @@ "ru": "Китайский (Сингапур)", "zh-chs": "中文(新加坡)", "xloc": [ - "default.handlebars->29->895" + "default.handlebars->29->897" ] }, { @@ -5307,7 +5313,7 @@ "ru": "Китайский (Тайвань)", "zh-chs": "中文(台灣)", "xloc": [ - "default.handlebars->29->896" + "default.handlebars->29->898" ] }, { @@ -5342,7 +5348,7 @@ "ru": "Чувашский", "zh-chs": "楚瓦什", "xloc": [ - "default.handlebars->29->897" + "default.handlebars->29->899" ] }, { @@ -5359,7 +5365,7 @@ "ru": "Очистка CIRA", "zh-chs": "清理CIRA", "xloc": [ - "default.handlebars->29->256" + "default.handlebars->29->257" ] }, { @@ -5382,11 +5388,11 @@ "default-mobile.handlebars->9->274", "default-mobile.handlebars->9->276", "default-mobile.handlebars->9->28", - "default.handlebars->29->1365", - "default.handlebars->29->739", - "default.handlebars->29->741", - "default.handlebars->29->743", - "default.handlebars->29->745", + "default.handlebars->29->1367", + "default.handlebars->29->740", + "default.handlebars->29->742", + "default.handlebars->29->744", + "default.handlebars->29->746", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default.handlebars->container->column_l->p41->3->1", "messenger.handlebars->xbottom" @@ -5414,7 +5420,7 @@ "en": "Clear all", "nl": "Wis alle meldingen", "xloc": [ - "default.handlebars->29->1639" + "default.handlebars->29->1646" ] }, { @@ -5431,7 +5437,7 @@ "ru": "Очистить ядро", "zh-chs": "清除核心", "xloc": [ - "default.handlebars->29->830" + "default.handlebars->29->831" ] }, { @@ -5462,7 +5468,7 @@ "ru": "Очистить это уведомление", "zh-chs": "清除此通知", "xloc": [ - "default.handlebars->29->1638" + "default.handlebars->29->1645" ] }, { @@ -5497,8 +5503,8 @@ "en": "Click here to edit the device group name", "nl": "Klik hier om de apparaatgroepsnaam te bewerken", "xloc": [ - "default.handlebars->29->1117", - "default.handlebars->29->1321" + "default.handlebars->29->1119", + "default.handlebars->29->1323" ] }, { @@ -5515,14 +5521,14 @@ "ru": "Для изменения имени устройства на сервере нажмите сюда", "zh-chs": "單擊此處編輯服務器端設備名稱", "xloc": [ - "default.handlebars->29->452" + "default.handlebars->29->453" ] }, { "en": "Click here to edit the user group name", "nl": "Klik hier om de gebruikersgroepsnaam te bewerken", "xloc": [ - "default.handlebars->29->1485" + "default.handlebars->29->1487" ] }, { @@ -5568,7 +5574,7 @@ "zh-chs": "單擊確定將驗證郵件發送到:", "xloc": [ "default-mobile.handlebars->9->44", - "default.handlebars->29->1068" + "default.handlebars->29->1070" ] }, { @@ -5602,7 +5608,7 @@ "ru": "Режим управления клиентом (CCM)", "zh-chs": "客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->29->787" + "default.handlebars->29->788" ] }, { @@ -5619,8 +5625,8 @@ "ru": "Клиент инициировал удаленный доступ", "zh-chs": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->29->1187", - "default.handlebars->29->1192" + "default.handlebars->29->1189", + "default.handlebars->29->1194" ] }, { @@ -5657,7 +5663,7 @@ "default-mobile.handlebars->9->26", "default.handlebars->29->121", "default.handlebars->29->129", - "default.handlebars->29->697" + "default.handlebars->29->698" ] }, { @@ -5692,8 +5698,8 @@ "ru": "Общие группы устройств", "zh-chs": "通用設備組", "xloc": [ - "default.handlebars->29->1500", - "default.handlebars->29->1602" + "default.handlebars->29->1502", + "default.handlebars->29->1609" ] }, { @@ -5710,8 +5716,8 @@ "ru": "Общие устройства", "zh-chs": "通用設備", "xloc": [ - "default.handlebars->29->1506", - "default.handlebars->29->1614" + "default.handlebars->29->1508", + "default.handlebars->29->1621" ] }, { @@ -5729,7 +5735,7 @@ "zh-chs": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->9->96", - "default.handlebars->29->1360" + "default.handlebars->29->1362" ] }, { @@ -5748,14 +5754,14 @@ "xloc": [ "default-mobile.handlebars->9->230", "default-mobile.handlebars->9->295", - "default.handlebars->29->1201", - "default.handlebars->29->1414", - "default.handlebars->29->1477", - "default.handlebars->29->1520", - "default.handlebars->29->1600", - "default.handlebars->29->395", - "default.handlebars->29->628", - "default.handlebars->29->637" + "default.handlebars->29->1203", + "default.handlebars->29->1416", + "default.handlebars->29->1479", + "default.handlebars->29->1522", + "default.handlebars->29->1607", + "default.handlebars->29->396", + "default.handlebars->29->629", + "default.handlebars->29->638" ] }, { @@ -5773,7 +5779,7 @@ "zh-chs": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->9->265", - "default.handlebars->29->734" + "default.handlebars->29->735" ] }, { @@ -5791,7 +5797,7 @@ "zh-chs": "確認{0}個條目的副本到此位置?", "xloc": [ "default-mobile.handlebars->9->264", - "default.handlebars->29->733" + "default.handlebars->29->734" ] }, { @@ -5799,7 +5805,7 @@ "en": "Confirm delete selected account(s)?", "nl": "Bevestig verwijdering geselecteerde account(s)?", "xloc": [ - "default.handlebars->29->1413" + "default.handlebars->29->1415" ] }, { @@ -5816,7 +5822,7 @@ "ru": "Подтвердить удаление выбранных устройств?", "zh-chs": "確認刪除所選設備?", "xloc": [ - "default.handlebars->29->394" + "default.handlebars->29->395" ] }, { @@ -5824,7 +5830,7 @@ "en": "Confirm delete selected user groups(s)?", "nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?", "xloc": [ - "default.handlebars->29->1476" + "default.handlebars->29->1478" ] }, { @@ -5841,7 +5847,7 @@ "ru": "Подтвердить удаление пользователя {0}?", "zh-chs": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->29->1599" + "default.handlebars->29->1606" ] }, { @@ -5849,7 +5855,7 @@ "en": "Confirm membership removal of user \\\"{0}\\\"?", "nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1523" + "default.handlebars->29->1525" ] }, { @@ -5857,7 +5863,7 @@ "en": "Confirm membership removal of user group \\\"{0}\\\"?", "nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1629" + "default.handlebars->29->1636" ] }, { @@ -5875,7 +5881,7 @@ "zh-chs": "確認將1個入口移動到此位置?", "xloc": [ "default-mobile.handlebars->9->267", - "default.handlebars->29->736" + "default.handlebars->29->737" ] }, { @@ -5893,7 +5899,7 @@ "zh-chs": "確認將{0}個條目移到此位置?", "xloc": [ "default-mobile.handlebars->9->266", - "default.handlebars->29->735" + "default.handlebars->29->736" ] }, { @@ -5910,7 +5916,7 @@ "ru": "Подтвердить перезапись?", "zh-chs": "確認覆蓋?", "xloc": [ - "default.handlebars->29->1359" + "default.handlebars->29->1361" ] }, { @@ -5918,8 +5924,8 @@ "en": "Confirm removal of access rights for device \\\"{0}\\\"?", "nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1513", - "default.handlebars->29->1620" + "default.handlebars->29->1515", + "default.handlebars->29->1627" ] }, { @@ -5927,8 +5933,8 @@ "en": "Confirm removal of access rights for device group \\\"{0}\\\"?", "nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1515", - "default.handlebars->29->1633" + "default.handlebars->29->1517", + "default.handlebars->29->1640" ] }, { @@ -5936,7 +5942,7 @@ "en": "Confirm removal of access rights for user \\\"{0}\\\"?", "nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1622" + "default.handlebars->29->1629" ] }, { @@ -5944,7 +5950,7 @@ "en": "Confirm removal of access rights for user group \\\"{0}\\\"?", "nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1625" + "default.handlebars->29->1632" ] }, { @@ -5952,8 +5958,8 @@ "en": "Confirm removal of access rights?", "nl": "Verwijdering van toegangsrechten bevestigen?", "xloc": [ - "default.handlebars->29->1623", - "default.handlebars->29->1626" + "default.handlebars->29->1630", + "default.handlebars->29->1633" ] }, { @@ -5971,7 +5977,7 @@ "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?", "xloc": [ "default-mobile.handlebars->9->43", - "default.handlebars->29->847" + "default.handlebars->29->849" ] }, { @@ -6018,7 +6024,7 @@ "en": "Confirm removal of rights for user \\\"{0}\\\"?", "nl": "Bevestig de verwijdering van rechten voor gebruiker \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1293" + "default.handlebars->29->1295" ] }, { @@ -6026,7 +6032,7 @@ "en": "Confirm removal of rights for user group \\\"{0}\\\"?", "nl": "Bevestig de verwijdering van rechten voor de gebruikergroep \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1295" + "default.handlebars->29->1297" ] }, { @@ -6068,8 +6074,8 @@ "default-mobile.handlebars->9->244", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", - "default.handlebars->29->1140", - "default.handlebars->29->716", + "default.handlebars->29->1142", + "default.handlebars->29->717", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3", @@ -6090,7 +6096,7 @@ "ru": "Подключиться ко всем", "zh-chs": "全部連接", "xloc": [ - "default.handlebars->29->209", + "default.handlebars->29->210", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar" ] }, @@ -6108,8 +6114,8 @@ "ru": "Подключиться к серверу", "zh-chs": "連接到服務器", "xloc": [ - "default.handlebars->29->1191", - "default.handlebars->29->1195" + "default.handlebars->29->1193", + "default.handlebars->29->1197" ] }, { @@ -6180,7 +6186,7 @@ "ru": "Подключено Intel® AMT", "zh-chs": "連接的英特爾®AMT", "xloc": [ - "default.handlebars->29->1657" + "default.handlebars->29->1664" ] }, { @@ -6197,7 +6203,7 @@ "ru": "Подключенные пользователи", "zh-chs": "關聯用戶", "xloc": [ - "default.handlebars->29->1662" + "default.handlebars->29->1669" ] }, { @@ -6214,7 +6220,7 @@ "ru": "Подключено сейчас", "zh-chs": "現在已連接", "xloc": [ - "default.handlebars->29->766" + "default.handlebars->29->767" ] }, { @@ -6251,10 +6257,10 @@ "default-mobile.handlebars->9->2", "default-mobile.handlebars->9->280", "default-mobile.handlebars->9->6", - "default.handlebars->29->203", - "default.handlebars->29->206", - "default.handlebars->29->212", - "default.handlebars->29->757", + "default.handlebars->29->204", + "default.handlebars->29->207", + "default.handlebars->29->213", + "default.handlebars->29->758", "default.handlebars->29->9", "xterm.handlebars->9->2" ] @@ -6273,7 +6279,7 @@ "ru": "Подключений ", "zh-chs": "連接數", "xloc": [ - "default.handlebars->29->1673" + "default.handlebars->29->1680" ] }, { @@ -6290,7 +6296,7 @@ "ru": "Ретранслятор подключения", "zh-chs": "連接繼電器", "xloc": [ - "default.handlebars->29->1701" + "default.handlebars->29->1708" ] }, { @@ -6342,9 +6348,9 @@ "zh-chs": "連接性", "xloc": [ "default-mobile.handlebars->9->205", - "default.handlebars->29->1328", - "default.handlebars->29->194", - "default.handlebars->29->517", + "default.handlebars->29->1330", + "default.handlebars->29->195", + "default.handlebars->29->518", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" ] }, @@ -6362,8 +6368,8 @@ "ru": "Консоль", "zh-chs": "安慰", "xloc": [ - "default.handlebars->29->570", - "default.handlebars->29->589", + "default.handlebars->29->571", + "default.handlebars->29->590", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole", "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole", "default.handlebars->contextMenu->cxconsole" @@ -6383,7 +6389,7 @@ "ru": "Консоль - ", "zh-chs": "安慰 -", "xloc": [ - "default.handlebars->29->453" + "default.handlebars->29->454" ] }, { @@ -6397,8 +6403,8 @@ "ru": "контроль", "zh-chs": "控制", "xloc": [ - "default.handlebars->29->569", - "default.handlebars->29->588" + "default.handlebars->29->570", + "default.handlebars->29->589" ] }, { @@ -6415,7 +6421,7 @@ "ru": "Cookie-кодировщик", "zh-chs": "Cookie編碼器", "xloc": [ - "default.handlebars->29->1687" + "default.handlebars->29->1694" ] }, { @@ -6470,7 +6476,7 @@ "ru": "Скопировать ссылку MacOS agent в буфер обмена", "zh-chs": "將MacOS代理URL複製到剪貼板", "xloc": [ - "default.handlebars->29->335" + "default.handlebars->29->336" ] }, { @@ -6484,7 +6490,7 @@ "ru": "Скопировать URL-адрес агента Windows 32bit в буфер обмена", "zh-chs": "将Windows 32位代理URL复制到剪贴板", "xloc": [ - "default.handlebars->29->323" + "default.handlebars->29->324" ] }, { @@ -6498,7 +6504,7 @@ "ru": "Скопировать URL-адрес агента Windows 64bit в буфер обмена", "zh-chs": "将Windows 64位代理URL复制到剪贴板", "xloc": [ - "default.handlebars->29->327" + "default.handlebars->29->328" ] }, { @@ -6537,9 +6543,9 @@ "ru": "Скопировать ссылку в буфер обмена", "zh-chs": "複製鏈接到剪貼板", "xloc": [ - "default.handlebars->29->1333", - "default.handlebars->29->1347", - "default.handlebars->29->307" + "default.handlebars->29->1335", + "default.handlebars->29->1349", + "default.handlebars->29->308" ] }, { @@ -6716,7 +6722,7 @@ "ru": "Основной сервер", "zh-chs": "核心服務器", "xloc": [ - "default.handlebars->29->1686" + "default.handlebars->29->1693" ] }, { @@ -6733,7 +6739,7 @@ "ru": "Kорсиканский", "zh-chs": "科西嘉人", "xloc": [ - "default.handlebars->29->898" + "default.handlebars->29->900" ] }, { @@ -6750,7 +6756,7 @@ "ru": "Создать учетную запись", "zh-chs": "創建帳號", "xloc": [ - "default.handlebars->29->1448", + "default.handlebars->29->1450", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1" ] @@ -6786,7 +6792,7 @@ "ru": "Создать группу пользователей", "zh-chs": "創建用戶組", "xloc": [ - "default.handlebars->29->1482" + "default.handlebars->29->1484" ] }, { @@ -6803,7 +6809,7 @@ "ru": "Создайте новую группу устройств, используя параметры ниже.", "zh-chs": "使用以下選項創建一個新的設備組。", "xloc": [ - "default.handlebars->29->1091" + "default.handlebars->29->1093" ] }, { @@ -6820,7 +6826,7 @@ "ru": "Создать новую группу устройств.", "zh-chs": "創建一個新的設備組。", "xloc": [ - "default.handlebars->29->196" + "default.handlebars->29->197" ] }, { @@ -6837,7 +6843,7 @@ "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:", "xloc": [ - "default.handlebars->29->1419" + "default.handlebars->29->1421" ] }, { @@ -6872,7 +6878,7 @@ "ru": "Создано", "zh-chs": "創建", "xloc": [ - "default.handlebars->29->1544" + "default.handlebars->29->1547" ] }, { @@ -6907,7 +6913,7 @@ "ru": "Кри (Канадский язык)", "zh-chs": "克里", "xloc": [ - "default.handlebars->29->899" + "default.handlebars->29->901" ] }, { @@ -6924,7 +6930,7 @@ "ru": "Хорватский", "zh-chs": "克羅地亞語", "xloc": [ - "default.handlebars->29->900" + "default.handlebars->29->902" ] }, { @@ -7065,7 +7071,7 @@ "ru": "Чешский", "zh-chs": "捷克文", "xloc": [ - "default.handlebars->29->901" + "default.handlebars->29->903" ] }, { @@ -7099,7 +7105,7 @@ "ru": "Датский", "zh-chs": "丹麥文", "xloc": [ - "default.handlebars->29->902" + "default.handlebars->29->904" ] }, { @@ -7116,7 +7122,7 @@ "ru": "DataChannel", "zh-chs": "數據通道", "xloc": [ - "default.handlebars->29->673" + "default.handlebars->29->674" ] }, { @@ -7133,7 +7139,7 @@ "ru": "Дата & Время", "zh-chs": "日期和時間", "xloc": [ - "default.handlebars->29->1059" + "default.handlebars->29->1061" ] }, { @@ -7150,7 +7156,7 @@ "ru": "День", "zh-chs": "天", "xloc": [ - "default.handlebars->29->612" + "default.handlebars->29->613" ] }, { @@ -7167,7 +7173,7 @@ "ru": "Деактивировать режим управления клиентом (CCM)", "zh-chs": "停用客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->29->1179" + "default.handlebars->29->1181" ] }, { @@ -7185,7 +7191,7 @@ "zh-chs": "沉睡", "xloc": [ "default-mobile.handlebars->9->120", - "default.handlebars->29->354" + "default.handlebars->29->355" ] }, { @@ -7206,9 +7212,9 @@ "default-mobile.handlebars->9->91", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->29->1354", - "default.handlebars->29->425", - "default.handlebars->29->726", + "default.handlebars->29->1356", + "default.handlebars->29->426", + "default.handlebars->29->727", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->container->dialog->idx_dlgButtonBar->5", @@ -7232,7 +7238,7 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->9->53", - "default.handlebars->29->1076" + "default.handlebars->29->1078" ] }, { @@ -7240,7 +7246,7 @@ "en": "Delete Accounts", "nl": "Verwijder accounts", "xloc": [ - "default.handlebars->29->1415" + "default.handlebars->29->1417" ] }, { @@ -7258,7 +7264,7 @@ "zh-chs": "刪除裝置", "xloc": [ "default-mobile.handlebars->9->209", - "default.handlebars->29->528" + "default.handlebars->29->529" ] }, { @@ -7277,8 +7283,8 @@ "xloc": [ "default-mobile.handlebars->9->293", "default-mobile.handlebars->9->296", - "default.handlebars->29->1172", - "default.handlebars->29->1202" + "default.handlebars->29->1174", + "default.handlebars->29->1204" ] }, { @@ -7296,7 +7302,7 @@ "zh-chs": "刪除節點", "xloc": [ "default-mobile.handlebars->9->228", - "default.handlebars->29->638" + "default.handlebars->29->639" ] }, { @@ -7313,7 +7319,7 @@ "ru": "Удалить устройства", "zh-chs": "刪除節點", "xloc": [ - "default.handlebars->29->396" + "default.handlebars->29->397" ] }, { @@ -7330,7 +7336,7 @@ "ru": "Удалить пользователя", "zh-chs": "刪除用戶", "xloc": [ - "default.handlebars->29->1581" + "default.handlebars->29->1584" ] }, { @@ -7347,8 +7353,8 @@ "ru": "Удалить группу пользователей", "zh-chs": "刪除用戶組", "xloc": [ - "default.handlebars->29->1511", - "default.handlebars->29->1521" + "default.handlebars->29->1513", + "default.handlebars->29->1523" ] }, { @@ -7356,7 +7362,7 @@ "en": "Delete User Groups", "nl": "Gebruikersgroepen verwijderen", "xloc": [ - "default.handlebars->29->1478" + "default.handlebars->29->1480" ] }, { @@ -7373,7 +7379,7 @@ "ru": "Удалить пользователя {0}", "zh-chs": "刪除用戶{0}", "xloc": [ - "default.handlebars->29->1598" + "default.handlebars->29->1605" ] }, { @@ -7391,7 +7397,7 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->9->0", - "default.handlebars->29->1411", + "default.handlebars->29->1413", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -7409,7 +7415,7 @@ "ru": "Удалить устройства", "zh-chs": "刪除設備", "xloc": [ - "default.handlebars->29->391" + "default.handlebars->29->392" ] }, { @@ -7417,7 +7423,7 @@ "en": "Delete group", "nl": "Verwijder groep", "xloc": [ - "default.handlebars->29->1474" + "default.handlebars->29->1476" ] }, { @@ -7434,7 +7440,7 @@ "ru": "Удалить пункт?", "zh-chs": "刪除項目?", "xloc": [ - "default.handlebars->29->426" + "default.handlebars->29->427" ] }, { @@ -7453,8 +7459,8 @@ "xloc": [ "default-mobile.handlebars->9->259", "default-mobile.handlebars->9->93", - "default.handlebars->29->1356", - "default.handlebars->29->728" + "default.handlebars->29->1358", + "default.handlebars->29->729" ] }, { @@ -7471,7 +7477,7 @@ "ru": "Удалить группу пользователей {0}?", "zh-chs": "刪除用戶組{0}?", "xloc": [ - "default.handlebars->29->1519" + "default.handlebars->29->1521" ] }, { @@ -7490,8 +7496,8 @@ "xloc": [ "default-mobile.handlebars->9->258", "default-mobile.handlebars->9->92", - "default.handlebars->29->1355", - "default.handlebars->29->727" + "default.handlebars->29->1357", + "default.handlebars->29->728" ] }, { @@ -7591,17 +7597,17 @@ "default-mobile.handlebars->9->285", "default-mobile.handlebars->9->298", "default-mobile.handlebars->9->70", - "default.handlebars->29->1096", - "default.handlebars->29->1121", - "default.handlebars->29->1204", - "default.handlebars->29->1481", - "default.handlebars->29->1487", - "default.handlebars->29->1488", - "default.handlebars->29->1517", - "default.handlebars->29->463", + "default.handlebars->29->1098", + "default.handlebars->29->1123", + "default.handlebars->29->1206", + "default.handlebars->29->1483", + "default.handlebars->29->1489", + "default.handlebars->29->1490", + "default.handlebars->29->1519", "default.handlebars->29->464", - "default.handlebars->29->669", - "default.handlebars->29->772", + "default.handlebars->29->465", + "default.handlebars->29->670", + "default.handlebars->29->773", "default.handlebars->29->78", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] @@ -7634,8 +7640,8 @@ "ru": "Рабочий стол", "zh-chs": "桌面", "xloc": [ - "default.handlebars->29->1209", - "default.handlebars->29->431", + "default.handlebars->29->1211", + "default.handlebars->29->432", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop" ] @@ -7671,9 +7677,9 @@ "ru": "Уведомление на рабочем столе", "zh-chs": "桌面通知", "xloc": [ - "default.handlebars->29->1131", - "default.handlebars->29->1559", - "default.handlebars->29->498" + "default.handlebars->29->1133", + "default.handlebars->29->1562", + "default.handlebars->29->499" ] }, { @@ -7690,9 +7696,9 @@ "ru": "Запрос рабочего стола", "zh-chs": "桌面提示", "xloc": [ - "default.handlebars->29->1130", - "default.handlebars->29->1558", - "default.handlebars->29->497" + "default.handlebars->29->1132", + "default.handlebars->29->1561", + "default.handlebars->29->498" ] }, { @@ -7709,9 +7715,9 @@ "ru": "Запрос рабочего стола + панель инструментов", "zh-chs": "桌面提示+工具欄", "xloc": [ - "default.handlebars->29->1128", - "default.handlebars->29->1556", - "default.handlebars->29->495" + "default.handlebars->29->1130", + "default.handlebars->29->1559", + "default.handlebars->29->496" ] }, { @@ -7736,9 +7742,9 @@ "ru": "Панель инструментов рабочего стола", "zh-chs": "桌面工具欄", "xloc": [ - "default.handlebars->29->1129", - "default.handlebars->29->1557", - "default.handlebars->29->496" + "default.handlebars->29->1131", + "default.handlebars->29->1560", + "default.handlebars->29->497" ] }, { @@ -7807,8 +7813,8 @@ "ru": "Устройство", "zh-chs": "設備", "xloc": [ - "default.handlebars->29->1231", - "default.handlebars->29->1617", + "default.handlebars->29->1233", + "default.handlebars->29->1624", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -7827,7 +7833,7 @@ "zh-chs": "設備動作", "xloc": [ "default-mobile.handlebars->9->221", - "default.handlebars->29->611" + "default.handlebars->29->612" ] }, { @@ -7844,12 +7850,12 @@ "ru": "Группа устройства", "zh-chs": "設備組", "xloc": [ - "default.handlebars->29->1226", - "default.handlebars->29->1229", - "default.handlebars->29->1230", - "default.handlebars->29->1503", - "default.handlebars->29->1509", - "default.handlebars->29->1605" + "default.handlebars->29->1228", + "default.handlebars->29->1231", + "default.handlebars->29->1232", + "default.handlebars->29->1505", + "default.handlebars->29->1511", + "default.handlebars->29->1612" ] }, { @@ -7867,7 +7873,7 @@ "zh-chs": "設備組用戶", "xloc": [ "default-mobile.handlebars->9->339", - "default.handlebars->29->1291" + "default.handlebars->29->1293" ] }, { @@ -7885,11 +7891,11 @@ "zh-chs": "設備組", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->29->1380", - "default.handlebars->29->1468", - "default.handlebars->29->1490", - "default.handlebars->29->1553", - "default.handlebars->29->1660", + "default.handlebars->29->1382", + "default.handlebars->29->1470", + "default.handlebars->29->1492", + "default.handlebars->29->1556", + "default.handlebars->29->1667", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -7907,7 +7913,7 @@ "ru": "Экспорт информации об устройстве", "zh-chs": "設備信息導出", "xloc": [ - "default.handlebars->29->402" + "default.handlebars->29->403" ] }, { @@ -7924,7 +7930,7 @@ "ru": "Местонахождение устройства", "zh-chs": "設備位置", "xloc": [ - "default.handlebars->29->639" + "default.handlebars->29->640" ] }, { @@ -7942,8 +7948,8 @@ "zh-chs": "設備名稱", "xloc": [ "default-mobile.handlebars->9->232", - "default.handlebars->29->230", - "default.handlebars->29->667", + "default.handlebars->29->231", + "default.handlebars->29->668", "player.handlebars->3->9" ] }, @@ -7961,7 +7967,7 @@ "ru": "Уведомление устройства", "zh-chs": "設備通知", "xloc": [ - "default.handlebars->29->602" + "default.handlebars->29->603" ] }, { @@ -7995,8 +8001,8 @@ "ru": "Подключения устройств.", "zh-chs": "設備連接。", "xloc": [ - "default.handlebars->29->1064", - "default.handlebars->29->1312" + "default.handlebars->29->1066", + "default.handlebars->29->1314" ] }, { @@ -8013,8 +8019,8 @@ "ru": "Отключения устройств.", "zh-chs": "設備斷開連接。", "xloc": [ - "default.handlebars->29->1065", - "default.handlebars->29->1313" + "default.handlebars->29->1067", + "default.handlebars->29->1315" ] }, { @@ -8031,7 +8037,7 @@ "ru": "Примечания могут быть просмотрены и изменены другими администраторами.", "zh-chs": "其他設備組管理員可以查看和更改設備組註釋。", "xloc": [ - "default.handlebars->29->600" + "default.handlebars->29->601" ] }, { @@ -8048,7 +8054,7 @@ "ru": "Устройство обнаружено, но состояние питания не может быть получено.", "zh-chs": "檢測到設備,但無法獲得電源狀態。", "xloc": [ - "default.handlebars->29->359" + "default.handlebars->29->360" ] }, { @@ -8066,7 +8072,7 @@ "zh-chs": "設備正在休眠(S4)", "xloc": [ "default-mobile.handlebars->9->128", - "default.handlebars->29->365" + "default.handlebars->29->366" ] }, { @@ -8084,7 +8090,7 @@ "zh-chs": "設備處於深度睡眠狀態(S3)", "xloc": [ "default-mobile.handlebars->9->127", - "default.handlebars->29->364" + "default.handlebars->29->365" ] }, { @@ -8101,7 +8107,7 @@ "ru": "Устройство находится в состоянии глубокого сна (S3).", "zh-chs": "設備處於深度睡眠狀態(S3)。", "xloc": [ - "default.handlebars->29->353" + "default.handlebars->29->354" ] }, { @@ -8118,7 +8124,7 @@ "ru": "Устройство находится в режиме гибернации (S4).", "zh-chs": "設備處於休眠狀態(S4)。", "xloc": [ - "default.handlebars->29->355" + "default.handlebars->29->356" ] }, { @@ -8135,7 +8141,7 @@ "ru": "Устройство находится в выключенном состоянии (S5).", "zh-chs": "設備處於關機狀態(S5)。", "xloc": [ - "default.handlebars->29->357" + "default.handlebars->29->358" ] }, { @@ -8153,7 +8159,7 @@ "zh-chs": "設備處於睡眠狀態(S1)", "xloc": [ "default-mobile.handlebars->9->125", - "default.handlebars->29->362" + "default.handlebars->29->363" ] }, { @@ -8170,7 +8176,7 @@ "ru": "Устройство находится в спящем режиме (S1).", "zh-chs": "設備處於睡眠狀態(S1)。", "xloc": [ - "default.handlebars->29->349" + "default.handlebars->29->350" ] }, { @@ -8188,7 +8194,7 @@ "zh-chs": "設備處於睡眠狀態(S2)", "xloc": [ "default-mobile.handlebars->9->126", - "default.handlebars->29->363" + "default.handlebars->29->364" ] }, { @@ -8205,7 +8211,7 @@ "ru": "Устройство находится в спящем режиме (S2).", "zh-chs": "設備處於睡眠狀態(S2)。", "xloc": [ - "default.handlebars->29->351" + "default.handlebars->29->352" ] }, { @@ -8223,7 +8229,7 @@ "zh-chs": "設備處於軟斷開狀態(S5)", "xloc": [ "default-mobile.handlebars->9->129", - "default.handlebars->29->366" + "default.handlebars->29->367" ] }, { @@ -8241,7 +8247,7 @@ "zh-chs": "設備已上電", "xloc": [ "default-mobile.handlebars->9->124", - "default.handlebars->29->361" + "default.handlebars->29->362" ] }, { @@ -8258,7 +8264,7 @@ "ru": "Устройство включено.", "zh-chs": "設備上電。", "xloc": [ - "default.handlebars->29->347" + "default.handlebars->29->348" ] }, { @@ -8276,7 +8282,7 @@ "zh-chs": "設備存在,但無法確定電源狀態", "xloc": [ "default-mobile.handlebars->9->130", - "default.handlebars->29->367" + "default.handlebars->29->368" ] }, { @@ -8293,7 +8299,7 @@ "ru": "Имя устройства", "zh-chs": "設備名稱", "xloc": [ - "default.handlebars->29->443" + "default.handlebars->29->444" ] }, { @@ -8310,7 +8316,7 @@ "ru": "DeviceCheckbox", "zh-chs": "設備複選框", "xloc": [ - "default.handlebars->29->393" + "default.handlebars->29->394" ] }, { @@ -8318,8 +8324,8 @@ "en": "Devices", "nl": "Apparaten", "xloc": [ - "default.handlebars->29->1469", - "default.handlebars->29->1491" + "default.handlebars->29->1471", + "default.handlebars->29->1493" ] }, { @@ -8336,7 +8342,7 @@ "ru": "Отключено", "zh-chs": "殘障人士", "xloc": [ - "default.handlebars->29->490" + "default.handlebars->29->491" ] }, { @@ -8355,8 +8361,8 @@ "xloc": [ "default-mobile.handlebars->9->245", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->29->1141", - "default.handlebars->29->717", + "default.handlebars->29->1143", + "default.handlebars->29->718", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", "xterm.handlebars->p11->deskarea0->deskarea1->3" @@ -8396,10 +8402,10 @@ "default-mobile.handlebars->9->1", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status", - "default.handlebars->29->185", - "default.handlebars->29->202", - "default.handlebars->29->205", - "default.handlebars->29->211", + "default.handlebars->29->186", + "default.handlebars->29->203", + "default.handlebars->29->206", + "default.handlebars->29->212", "default.handlebars->29->8", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus", @@ -8438,7 +8444,7 @@ "ru": "Отобразить имя группы устройств", "zh-chs": "顯示設備組名稱", "xloc": [ - "default.handlebars->29->1063" + "default.handlebars->29->1065" ] }, { @@ -8455,7 +8461,7 @@ "ru": "Отображаемое имя", "zh-chs": "顯示名稱", "xloc": [ - "default.handlebars->29->688" + "default.handlebars->29->689" ] }, { @@ -8469,7 +8475,7 @@ "ru": "Показать публичную ссылку", "zh-chs": "显示公共链接", "xloc": [ - "default.handlebars->29->1332" + "default.handlebars->29->1334" ] }, { @@ -8486,7 +8492,7 @@ "ru": "Ничего не делать", "zh-chs": "沒做什麼", "xloc": [ - "default.handlebars->29->1185" + "default.handlebars->29->1187" ] }, { @@ -8521,8 +8527,8 @@ "ru": "Не настраивать", "zh-chs": "不要配置", "xloc": [ - "default.handlebars->29->1189", - "default.handlebars->29->1194" + "default.handlebars->29->1191", + "default.handlebars->29->1196" ] }, { @@ -8539,7 +8545,7 @@ "ru": "Не подключаться к серверу", "zh-chs": "不連接服務器", "xloc": [ - "default.handlebars->29->1190" + "default.handlebars->29->1192" ] }, { @@ -8593,7 +8599,7 @@ "zh-chs": "下載文件", "xloc": [ "default-mobile.handlebars->9->278", - "default.handlebars->29->746" + "default.handlebars->29->747" ] }, { @@ -8610,7 +8616,7 @@ "ru": "Скачать MeshCentral Router, инструмент сопоставления TCP портов.", "zh-chs": "下載MeshCentral Router,一個TCP端口映射工具。", "xloc": [ - "default.handlebars->29->200" + "default.handlebars->29->201" ] }, { @@ -8627,7 +8633,7 @@ "ru": "Скачать MeshCmd", "zh-chs": "下載MeshCmd", "xloc": [ - "default.handlebars->29->659" + "default.handlebars->29->660" ] }, { @@ -8644,7 +8650,7 @@ "ru": "Скачать MeshCmd, инструмент командной строки, выполняющий множество функций.", "zh-chs": "下載MeshCmd,這是一個執行許多功能的命令行工具。", "xloc": [ - "default.handlebars->29->198" + "default.handlebars->29->199" ] }, { @@ -8678,7 +8684,7 @@ "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.", "zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。", "xloc": [ - "default.handlebars->29->652" + "default.handlebars->29->653" ] }, { @@ -8746,7 +8752,7 @@ "ru": "Скачать события состояния питания", "zh-chs": "下載電源事件", "xloc": [ - "default.handlebars->29->613" + "default.handlebars->29->614" ] }, { @@ -8797,7 +8803,7 @@ "ru": "Загрузите список устройств с одним из форматов файлов ниже.", "zh-chs": "使用以下一種文件格式下載設備列表。", "xloc": [ - "default.handlebars->29->397" + "default.handlebars->29->398" ] }, { @@ -8814,7 +8820,7 @@ "ru": "Скачать список событий в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載事件列表。", "xloc": [ - "default.handlebars->29->1370" + "default.handlebars->29->1372" ] }, { @@ -8831,7 +8837,7 @@ "ru": "Скачать список пользователей в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載用戶列表。", "xloc": [ - "default.handlebars->29->1427" + "default.handlebars->29->1429" ] }, { @@ -8908,7 +8914,7 @@ "en": "Duplicate Agent", "nl": "Dubbele agent", "xloc": [ - "default.handlebars->29->1656" + "default.handlebars->29->1663" ] }, { @@ -8942,7 +8948,7 @@ "ru": "Скопировать группу пользователей", "zh-chs": "重複的用戶組", "xloc": [ - "default.handlebars->29->1483" + "default.handlebars->29->1485" ] }, { @@ -8990,7 +8996,7 @@ "ru": "Во время активации агент будет иметь доступ к паролю администратора.", "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。", "xloc": [ - "default.handlebars->29->1199" + "default.handlebars->29->1201" ] }, { @@ -9007,7 +9013,7 @@ "ru": "Голландский (Бельгийский)", "zh-chs": "荷蘭語(比利時)", "xloc": [ - "default.handlebars->29->904" + "default.handlebars->29->906" ] }, { @@ -9024,7 +9030,7 @@ "ru": "Голландский (Стандартный)", "zh-chs": "荷蘭語(標準)", "xloc": [ - "default.handlebars->29->903" + "default.handlebars->29->905" ] }, { @@ -9111,7 +9117,7 @@ "zh-chs": "編輯裝置", "xloc": [ "default-mobile.handlebars->9->237", - "default.handlebars->29->672" + "default.handlebars->29->673" ] }, { @@ -9131,10 +9137,10 @@ "default-mobile.handlebars->9->299", "default-mobile.handlebars->9->301", "default-mobile.handlebars->9->319", - "default.handlebars->29->1205", - "default.handlebars->29->1235", - "default.handlebars->29->1257", - "default.handlebars->29->1269" + "default.handlebars->29->1207", + "default.handlebars->29->1237", + "default.handlebars->29->1259", + "default.handlebars->29->1271" ] }, { @@ -9151,7 +9157,7 @@ "ru": "Редактировать функции группы устройств", "zh-chs": "編輯設備組功能", "xloc": [ - "default.handlebars->29->1221" + "default.handlebars->29->1223" ] }, { @@ -9168,8 +9174,8 @@ "ru": "Редактировать права группы устройств", "zh-chs": "編輯設備組權限", "xloc": [ - "default.handlebars->29->1254", - "default.handlebars->29->1266" + "default.handlebars->29->1256", + "default.handlebars->29->1268" ] }, { @@ -9186,7 +9192,7 @@ "ru": "Редактировать согласие пользователя группы устройств", "zh-chs": "編輯設備組用戶同意", "xloc": [ - "default.handlebars->29->1206" + "default.handlebars->29->1208" ] }, { @@ -9204,7 +9210,7 @@ "zh-chs": "編輯設備說明", "xloc": [ "default-mobile.handlebars->9->313", - "default.handlebars->29->1248" + "default.handlebars->29->1250" ] }, { @@ -9218,8 +9224,8 @@ "ru": "Изменить разрешения устройства", "zh-chs": "编辑设备权限", "xloc": [ - "default.handlebars->29->1259", - "default.handlebars->29->1261" + "default.handlebars->29->1261", + "default.handlebars->29->1263" ] }, { @@ -9227,7 +9233,7 @@ "en": "Edit Device User Consent", "nl": "Gebruikerstoestemming apparaat bewerken", "xloc": [ - "default.handlebars->29->1208" + "default.handlebars->29->1210" ] }, { @@ -9241,7 +9247,7 @@ "ru": "Редактировать группу", "zh-chs": "编辑组", "xloc": [ - "default.handlebars->29->579" + "default.handlebars->29->580" ] }, { @@ -9259,9 +9265,9 @@ "zh-chs": "編輯英特爾®AMT憑據", "xloc": [ "default-mobile.handlebars->9->227", - "default.handlebars->29->478", - "default.handlebars->29->481", - "default.handlebars->29->620" + "default.handlebars->29->479", + "default.handlebars->29->482", + "default.handlebars->29->621" ] }, { @@ -9279,7 +9285,7 @@ "zh-chs": "編輯筆記", "xloc": [ "default-mobile.handlebars->9->326", - "default.handlebars->29->1276" + "default.handlebars->29->1278" ] }, { @@ -9287,7 +9293,7 @@ "en": "Edit User Consent", "nl": "Gebruikerstoestemming bewerken", "xloc": [ - "default.handlebars->29->1207" + "default.handlebars->29->1209" ] }, { @@ -9304,7 +9310,7 @@ "ru": "Редактировать права пользователя для группы устройств", "zh-chs": "編輯用戶設備組權限", "xloc": [ - "default.handlebars->29->1267" + "default.handlebars->29->1269" ] }, { @@ -9318,7 +9324,7 @@ "ru": "Изменить разрешения для пользовательских устройств", "zh-chs": "编辑用户设备权限", "xloc": [ - "default.handlebars->29->1262" + "default.handlebars->29->1264" ] }, { @@ -9335,7 +9341,7 @@ "ru": "Редактировать группу пользователей", "zh-chs": "編輯用戶組", "xloc": [ - "default.handlebars->29->1518" + "default.handlebars->29->1520" ] }, { @@ -9343,7 +9349,7 @@ "en": "Edit User Group Device Permissions", "nl": "Gebruikersmachtigingen voor apparaatgroep bewerken", "xloc": [ - "default.handlebars->29->1264" + "default.handlebars->29->1266" ] }, { @@ -9378,11 +9384,11 @@ "zh-chs": "電子郵件", "xloc": [ "default-mobile.handlebars->9->47", - "default.handlebars->29->1439", - "default.handlebars->29->1539", - "default.handlebars->29->1540", - "default.handlebars->29->1586", - "default.handlebars->29->278", + "default.handlebars->29->1441", + "default.handlebars->29->1541", + "default.handlebars->29->1542", + "default.handlebars->29->1593", + "default.handlebars->29->279", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", "login.handlebars->5->43", @@ -9404,7 +9410,7 @@ "zh-chs": "電郵地址變更", "xloc": [ "default-mobile.handlebars->9->48", - "default.handlebars->29->1072" + "default.handlebars->29->1074" ] }, { @@ -9422,7 +9428,7 @@ "zh-chs": "郵件認證", "xloc": [ "default-mobile.handlebars->9->37", - "default.handlebars->29->841" + "default.handlebars->29->843" ] }, { @@ -9459,7 +9465,7 @@ "zh-chs": "電子郵件驗證", "xloc": [ "default-mobile.handlebars->9->46", - "default.handlebars->29->1070" + "default.handlebars->29->1072" ] }, { @@ -9468,7 +9474,7 @@ "es": "Email de invitación", "nl": "E-mail uitnodiging", "xloc": [ - "default.handlebars->29->275" + "default.handlebars->29->276" ] }, { @@ -9482,7 +9488,7 @@ "ru": "Электронная почта не подтверждена", "zh-chs": "邮件未验证", "xloc": [ - "default.handlebars->29->1399" + "default.handlebars->29->1401" ] }, { @@ -9499,8 +9505,8 @@ "ru": "Email подтвержден", "zh-chs": "電子郵件已驗證", "xloc": [ - "default.handlebars->29->1400", - "default.handlebars->29->1536" + "default.handlebars->29->1402", + "default.handlebars->29->1538" ] }, { @@ -9517,7 +9523,7 @@ "ru": "Email подтвержден.", "zh-chs": "電子郵件已驗證。", "xloc": [ - "default.handlebars->29->1445" + "default.handlebars->29->1447" ] }, { @@ -9534,7 +9540,7 @@ "ru": "Email не подтвержден", "zh-chs": "電子郵件未驗證", "xloc": [ - "default.handlebars->29->1537" + "default.handlebars->29->1539" ] }, { @@ -9567,7 +9573,7 @@ "en": "Email/SMS Traffic", "nl": "Email/SMS verkeer", "xloc": [ - "default.handlebars->29->1695" + "default.handlebars->29->1702" ] }, { @@ -9606,7 +9612,7 @@ "ru": "Включить коды приглашения", "zh-chs": "啟用邀請代碼", "xloc": [ - "default.handlebars->29->1297" + "default.handlebars->29->1299" ] }, { @@ -9641,7 +9647,7 @@ "zh-chs": "啟用電子郵件兩因素驗證。", "xloc": [ "default-mobile.handlebars->9->39", - "default.handlebars->29->843" + "default.handlebars->29->845" ] }, { @@ -9692,7 +9698,7 @@ "ru": "Английский", "zh-chs": "英語", "xloc": [ - "default.handlebars->29->905" + "default.handlebars->29->907" ] }, { @@ -9709,7 +9715,7 @@ "ru": "Английский (Австралия)", "zh-chs": "英文(澳洲)", "xloc": [ - "default.handlebars->29->906" + "default.handlebars->29->908" ] }, { @@ -9726,7 +9732,7 @@ "ru": "Английский (Белиз)", "zh-chs": "英語(伯利茲)", "xloc": [ - "default.handlebars->29->907" + "default.handlebars->29->909" ] }, { @@ -9743,7 +9749,7 @@ "ru": "Английский (Канада)", "zh-chs": "英文(加拿大)", "xloc": [ - "default.handlebars->29->908" + "default.handlebars->29->910" ] }, { @@ -9760,7 +9766,7 @@ "ru": "Английский (Ирландия)", "zh-chs": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->29->909" + "default.handlebars->29->911" ] }, { @@ -9777,7 +9783,7 @@ "ru": "Английский (Ямайка)", "zh-chs": "英文(牙買加)", "xloc": [ - "default.handlebars->29->910" + "default.handlebars->29->912" ] }, { @@ -9794,7 +9800,7 @@ "ru": "Английский (Новая Зеландия)", "zh-chs": "英文(紐西蘭)", "xloc": [ - "default.handlebars->29->911" + "default.handlebars->29->913" ] }, { @@ -9811,7 +9817,7 @@ "ru": "Английский (Филиппины)", "zh-chs": "英文(菲律賓)", "xloc": [ - "default.handlebars->29->912" + "default.handlebars->29->914" ] }, { @@ -9828,7 +9834,7 @@ "ru": "Английский (Южная Африка)", "zh-chs": "英語(南非)", "xloc": [ - "default.handlebars->29->913" + "default.handlebars->29->915" ] }, { @@ -9845,7 +9851,7 @@ "ru": "Английский (Тринидад и Тобаго)", "zh-chs": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->29->914" + "default.handlebars->29->916" ] }, { @@ -9862,7 +9868,7 @@ "ru": "Английский (Великобритания)", "zh-chs": "英文(英國)", "xloc": [ - "default.handlebars->29->915" + "default.handlebars->29->917" ] }, { @@ -9879,7 +9885,7 @@ "ru": "Английский (Соединенные Штаты)", "zh-chs": "美國英語)", "xloc": [ - "default.handlebars->29->916" + "default.handlebars->29->918" ] }, { @@ -9896,7 +9902,7 @@ "ru": "Английский (Зимбабве)", "zh-chs": "英文(津巴布韋)", "xloc": [ - "default.handlebars->29->917" + "default.handlebars->29->919" ] }, { @@ -9913,8 +9919,8 @@ "ru": "Ввод", "zh-chs": "輸入", "xloc": [ - "default.handlebars->29->1098", - "default.handlebars->29->1099" + "default.handlebars->29->1100", + "default.handlebars->29->1101" ] }, { @@ -9931,7 +9937,7 @@ "ru": "Введите разделенный запятыми список имен административных областей.", "zh-chs": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->29->1449" + "default.handlebars->29->1451" ] }, { @@ -9948,7 +9954,7 @@ "ru": "Введите диапазон IP-адресов для сканирования Intel AMT устройств.", "zh-chs": "輸入IP地址範圍以掃描Intel AMT設備。", "xloc": [ - "default.handlebars->29->245" + "default.handlebars->29->246" ] }, { @@ -9965,7 +9971,7 @@ "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.", "zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->29->682" + "default.handlebars->29->683" ] }, { @@ -10003,6 +10009,12 @@ "default.handlebars->29->108" ] }, + { + "en": "Enter your SMS capable phone number. Once verified, the number may be used for login verification and other notifications.", + "xloc": [ + "default.handlebars->29->840" + ] + }, { "cs": "Chyba, klíč nelze přidat.", "de": "Fehler, Schlüssel kann nicht hinzugefügt werden.", @@ -10051,7 +10063,7 @@ "ru": "Эсперанто", "zh-chs": "世界語", "xloc": [ - "default.handlebars->29->918" + "default.handlebars->29->920" ] }, { @@ -10068,7 +10080,7 @@ "ru": "Эстонский", "zh-chs": "愛沙尼亞語", "xloc": [ - "default.handlebars->29->919" + "default.handlebars->29->921" ] }, { @@ -10085,7 +10097,7 @@ "ru": "Детали события", "zh-chs": "活動詳情", "xloc": [ - "default.handlebars->29->759" + "default.handlebars->29->760" ] }, { @@ -10102,7 +10114,7 @@ "ru": "Экспорт списка событий", "zh-chs": "活動列表導出", "xloc": [ - "default.handlebars->29->1375" + "default.handlebars->29->1377" ] }, { @@ -10174,7 +10186,7 @@ "ru": "Экспорт информации об устройстве", "zh-chs": "導出設備信息", "xloc": [ - "default.handlebars->29->389" + "default.handlebars->29->390" ] }, { @@ -10191,7 +10203,7 @@ "ru": "Расширенный ASCII", "zh-chs": "擴展ASCII", "xloc": [ - "default.handlebars->29->708" + "default.handlebars->29->709" ] }, { @@ -10225,7 +10237,7 @@ "ru": "Внешний", "zh-chs": "外部", "xloc": [ - "default.handlebars->29->1680" + "default.handlebars->29->1687" ] }, { @@ -10242,7 +10254,7 @@ "ru": "Mакедонский (БЮР)", "zh-chs": "FYRO馬其頓語", "xloc": [ - "default.handlebars->29->969" + "default.handlebars->29->971" ] }, { @@ -10259,7 +10271,7 @@ "ru": "Фарерский", "zh-chs": "法羅語", "xloc": [ - "default.handlebars->29->920" + "default.handlebars->29->922" ] }, { @@ -10293,7 +10305,7 @@ "ru": "Фарси (Персидский)", "zh-chs": "波斯語(波斯語)", "xloc": [ - "default.handlebars->29->921" + "default.handlebars->29->923" ] }, { @@ -10328,7 +10340,7 @@ "ru": "Функции", "zh-chs": "特徵", "xloc": [ - "default.handlebars->29->1127" + "default.handlebars->29->1129" ] }, { @@ -10345,7 +10357,7 @@ "ru": "Фиджи", "zh-chs": "斐濟", "xloc": [ - "default.handlebars->29->922" + "default.handlebars->29->924" ] }, { @@ -10363,8 +10375,8 @@ "zh-chs": "文件編輯器", "xloc": [ "default-mobile.handlebars->9->262", - "default.handlebars->29->423", - "default.handlebars->29->731" + "default.handlebars->29->424", + "default.handlebars->29->732" ] }, { @@ -10398,7 +10410,7 @@ "ru": "Драйвер файловой системы", "zh-chs": "FileSystemDriver", "xloc": [ - "default.handlebars->29->691" + "default.handlebars->29->692" ] }, { @@ -10415,7 +10427,7 @@ "ru": "Файлы", "zh-chs": "檔案", "xloc": [ - "default.handlebars->29->1216", + "default.handlebars->29->1218", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" ] @@ -10451,9 +10463,9 @@ "ru": "Уведомление файлов", "zh-chs": "文件通知", "xloc": [ - "default.handlebars->29->1135", - "default.handlebars->29->1563", - "default.handlebars->29->502" + "default.handlebars->29->1137", + "default.handlebars->29->1566", + "default.handlebars->29->503" ] }, { @@ -10470,9 +10482,9 @@ "ru": "Запрос файлов", "zh-chs": "文件提示", "xloc": [ - "default.handlebars->29->1134", - "default.handlebars->29->1562", - "default.handlebars->29->501" + "default.handlebars->29->1136", + "default.handlebars->29->1565", + "default.handlebars->29->502" ] }, { @@ -10507,7 +10519,7 @@ "ru": "Финский", "zh-chs": "芬蘭", "xloc": [ - "default.handlebars->29->923" + "default.handlebars->29->925" ] }, { @@ -10624,8 +10636,8 @@ "ru": "Принудительно сбросить пароль при следующем входе в систему.", "zh-chs": "下次登錄時強制重置密碼。", "xloc": [ - "default.handlebars->29->1443", - "default.handlebars->29->1595" + "default.handlebars->29->1445", + "default.handlebars->29->1602" ] }, { @@ -10711,8 +10723,8 @@ "ru": "Свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->29->1641", - "default.handlebars->29->1643" + "default.handlebars->29->1648", + "default.handlebars->29->1650" ] }, { @@ -10747,7 +10759,7 @@ "ru": "Французский (Бельгия)", "zh-chs": "法語(比利時)", "xloc": [ - "default.handlebars->29->925" + "default.handlebars->29->927" ] }, { @@ -10764,7 +10776,7 @@ "ru": "Французский (Канада)", "zh-chs": "法語(加拿大)", "xloc": [ - "default.handlebars->29->926" + "default.handlebars->29->928" ] }, { @@ -10781,7 +10793,7 @@ "ru": "Французский (Франция)", "zh-chs": "法語(法國)", "xloc": [ - "default.handlebars->29->927" + "default.handlebars->29->929" ] }, { @@ -10798,7 +10810,7 @@ "ru": "Французский (Люксембург)", "zh-chs": "法語(盧森堡)", "xloc": [ - "default.handlebars->29->928" + "default.handlebars->29->930" ] }, { @@ -10815,7 +10827,7 @@ "ru": "Французский (Монако)", "zh-chs": "法語(摩納哥)", "xloc": [ - "default.handlebars->29->929" + "default.handlebars->29->931" ] }, { @@ -10832,7 +10844,7 @@ "ru": "Французский (Стандартный)", "zh-chs": "法語(標準)", "xloc": [ - "default.handlebars->29->924" + "default.handlebars->29->926" ] }, { @@ -10849,7 +10861,7 @@ "ru": "Французский (Швейцария)", "zh-chs": "法語(瑞士)", "xloc": [ - "default.handlebars->29->930" + "default.handlebars->29->932" ] }, { @@ -10866,7 +10878,7 @@ "ru": "Фризский", "zh-chs": "弗里斯蘭語", "xloc": [ - "default.handlebars->29->931" + "default.handlebars->29->933" ] }, { @@ -10883,7 +10895,7 @@ "ru": "Фриульский", "zh-chs": "弗留利", "xloc": [ - "default.handlebars->29->932" + "default.handlebars->29->934" ] }, { @@ -10904,9 +10916,9 @@ "default-mobile.handlebars->9->300", "default-mobile.handlebars->9->318", "default-mobile.handlebars->9->74", - "default.handlebars->29->1105", - "default.handlebars->29->1234", - "default.handlebars->29->1455" + "default.handlebars->29->1107", + "default.handlebars->29->1236", + "default.handlebars->29->1457" ] }, { @@ -10923,7 +10935,7 @@ "ru": "Администратор с полным доступом (все права)", "zh-chs": "正式管理員(保留所有權利)", "xloc": [ - "default.handlebars->29->1268" + "default.handlebars->29->1270" ] }, { @@ -10954,7 +10966,7 @@ "ru": "Полные права на устройство", "zh-chs": "完整的設備權限", "xloc": [ - "default.handlebars->29->562" + "default.handlebars->29->563" ] }, { @@ -10968,7 +10980,7 @@ "ru": "Полные права", "zh-chs": "完全权利", "xloc": [ - "default.handlebars->29->578" + "default.handlebars->29->579" ] }, { @@ -11004,14 +11016,14 @@ "ru": "Администратор с полным доступом", "zh-chs": "正式管理員", "xloc": [ - "default.handlebars->29->1532" + "default.handlebars->29->1534" ] }, { "en": "GPU", "nl": "GPU", "xloc": [ - "default.handlebars->29->807" + "default.handlebars->29->808" ] }, { @@ -11028,7 +11040,7 @@ "ru": "Гэльский (Ирландский)", "zh-chs": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->29->934" + "default.handlebars->29->936" ] }, { @@ -11045,7 +11057,7 @@ "ru": "Гэльский (Шотландия)", "zh-chs": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->29->933" + "default.handlebars->29->935" ] }, { @@ -11062,7 +11074,7 @@ "ru": "Галицкий", "zh-chs": "加拉契人", "xloc": [ - "default.handlebars->29->935" + "default.handlebars->29->937" ] }, { @@ -11135,7 +11147,7 @@ "ru": "Общая информация", "zh-chs": "一般信息", "xloc": [ - "default.handlebars->29->430" + "default.handlebars->29->431" ] }, { @@ -11169,7 +11181,7 @@ "ru": "Грузинский", "zh-chs": "格魯吉亞人", "xloc": [ - "default.handlebars->29->936" + "default.handlebars->29->938" ] }, { @@ -11186,7 +11198,7 @@ "ru": "Немецкий (Австрия)", "zh-chs": "德語(奧地利)", "xloc": [ - "default.handlebars->29->938" + "default.handlebars->29->940" ] }, { @@ -11203,7 +11215,7 @@ "ru": "Немецкий (Германия)", "zh-chs": "德文(德國)", "xloc": [ - "default.handlebars->29->939" + "default.handlebars->29->941" ] }, { @@ -11220,7 +11232,7 @@ "ru": "Немецкий (Лихтенштейн)", "zh-chs": "德文(列支敦士登)", "xloc": [ - "default.handlebars->29->940" + "default.handlebars->29->942" ] }, { @@ -11237,7 +11249,7 @@ "ru": "Немецкий (Люксембург)", "zh-chs": "德語(盧森堡)", "xloc": [ - "default.handlebars->29->941" + "default.handlebars->29->943" ] }, { @@ -11254,7 +11266,7 @@ "ru": "Немецкий (Стандартный)", "zh-chs": "德語(標準)", "xloc": [ - "default.handlebars->29->937" + "default.handlebars->29->939" ] }, { @@ -11271,7 +11283,7 @@ "ru": "Немецкий (Швейцария)", "zh-chs": "德語(瑞士)", "xloc": [ - "default.handlebars->29->942" + "default.handlebars->29->944" ] }, { @@ -11288,7 +11300,7 @@ "ru": "Получить учетные данные MQTT для этого устройства.", "zh-chs": "獲取此設備的MQTT登錄憑據。", "xloc": [ - "default.handlebars->29->543" + "default.handlebars->29->544" ] }, { @@ -11341,7 +11353,7 @@ "ru": "Хорошо", "zh-chs": "好", "xloc": [ - "default.handlebars->29->1101" + "default.handlebars->29->1103" ] }, { @@ -11378,7 +11390,7 @@ "ru": "Греческий", "zh-chs": "希臘語", "xloc": [ - "default.handlebars->29->943" + "default.handlebars->29->945" ] }, { @@ -11396,7 +11408,7 @@ "zh-chs": "組", "xloc": [ "default-mobile.handlebars->9->144", - "default.handlebars->29->455", + "default.handlebars->29->456", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, @@ -11414,9 +11426,9 @@ "ru": "Групповое действие", "zh-chs": "集體行動", "xloc": [ - "default.handlebars->29->1412", - "default.handlebars->29->1475", - "default.handlebars->29->392", + "default.handlebars->29->1414", + "default.handlebars->29->1477", + "default.handlebars->29->393", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", "default.handlebars->container->column_l->p50->3->1->0->3->3" @@ -11436,7 +11448,7 @@ "ru": "Члены группы", "zh-chs": "小組成員", "xloc": [ - "default.handlebars->29->1495" + "default.handlebars->29->1497" ] }, { @@ -11453,7 +11465,7 @@ "ru": "Права на группу для пользователя {0}.", "zh-chs": "用戶{0}的組權限。", "xloc": [ - "default.handlebars->29->1233" + "default.handlebars->29->1235" ] }, { @@ -11470,7 +11482,7 @@ "ru": "Права на группу для {0}.", "zh-chs": "{0}的組權限。", "xloc": [ - "default.handlebars->29->1232" + "default.handlebars->29->1234" ] }, { @@ -11521,7 +11533,7 @@ "ru": "Гуджарати", "zh-chs": "古久拉提", "xloc": [ - "default.handlebars->29->944" + "default.handlebars->29->946" ] }, { @@ -11557,7 +11569,7 @@ "ru": "Гаитянский", "zh-chs": "海地", "xloc": [ - "default.handlebars->29->945" + "default.handlebars->29->947" ] }, { @@ -11591,7 +11603,7 @@ "ru": "Жесткое отключение агента", "zh-chs": "硬斷開劑", "xloc": [ - "default.handlebars->29->834" + "default.handlebars->29->835" ] }, { @@ -11608,7 +11620,7 @@ "ru": "Всего кучи", "zh-chs": "堆總數", "xloc": [ - "default.handlebars->29->1682" + "default.handlebars->29->1689" ] }, { @@ -11625,7 +11637,7 @@ "ru": "Куча используется", "zh-chs": "堆使用", "xloc": [ - "default.handlebars->29->1681" + "default.handlebars->29->1688" ] }, { @@ -11642,7 +11654,7 @@ "ru": "Иврит", "zh-chs": "希伯來語", "xloc": [ - "default.handlebars->29->946" + "default.handlebars->29->948" ] }, { @@ -11674,7 +11686,7 @@ "ru": "Помочь перевести MeshCentral", "zh-chs": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->29->1060" + "default.handlebars->29->1062" ] }, { @@ -11736,7 +11748,7 @@ "xloc": [ "default-mobile.handlebars->9->114", "default-mobile.handlebars->9->121", - "default.handlebars->29->356", + "default.handlebars->29->357", "default.handlebars->29->5" ] }, @@ -11754,7 +11766,7 @@ "ru": "Хинди", "zh-chs": "印地語", "xloc": [ - "default.handlebars->29->947" + "default.handlebars->29->949" ] }, { @@ -11790,7 +11802,7 @@ "zh-chs": "持有1份副本", "xloc": [ "default-mobile.handlebars->9->271", - "default.handlebars->29->740" + "default.handlebars->29->741" ] }, { @@ -11808,7 +11820,7 @@ "zh-chs": "持有1個搬家公司", "xloc": [ "default-mobile.handlebars->9->275", - "default.handlebars->29->744" + "default.handlebars->29->745" ] }, { @@ -11826,7 +11838,7 @@ "zh-chs": "保留{0}個條目進行複制", "xloc": [ "default-mobile.handlebars->9->269", - "default.handlebars->29->738" + "default.handlebars->29->739" ] }, { @@ -11844,7 +11856,7 @@ "zh-chs": "保留{0}個條目以進行移動", "xloc": [ "default-mobile.handlebars->9->273", - "default.handlebars->29->742" + "default.handlebars->29->743" ] }, { @@ -11862,7 +11874,7 @@ "zh-chs": "保持{2}的{0}入口{1}", "xloc": [ "default-mobile.handlebars->9->98", - "default.handlebars->29->1362" + "default.handlebars->29->1364" ] }, { @@ -11883,9 +11895,9 @@ "default-mobile.handlebars->9->147", "default-mobile.handlebars->9->149", "default-mobile.handlebars->9->233", - "default.handlebars->29->231", - "default.handlebars->29->460", - "default.handlebars->29->668" + "default.handlebars->29->232", + "default.handlebars->29->461", + "default.handlebars->29->669" ] }, { @@ -11902,7 +11914,7 @@ "ru": "Синхронизация имени хоста", "zh-chs": "主機名同步", "xloc": [ - "default.handlebars->29->1125" + "default.handlebars->29->1127" ] }, { @@ -11919,7 +11931,7 @@ "ru": "Венгерский", "zh-chs": "匈牙利", "xloc": [ - "default.handlebars->29->948" + "default.handlebars->29->950" ] }, { @@ -11936,7 +11948,7 @@ "ru": "Диапазон IP", "zh-chs": "IP範圍", "xloc": [ - "default.handlebars->29->246" + "default.handlebars->29->247" ] }, { @@ -11971,7 +11983,7 @@ "ru": "IP: {0}", "zh-chs": "IP:{0}", "xloc": [ - "default.handlebars->29->780" + "default.handlebars->29->781" ] }, { @@ -11988,7 +12000,7 @@ "ru": "IP: {0}, маска: {1}, шлюз: {2}", "zh-chs": "IP:{0},掩碼:{1},網關:{2}", "xloc": [ - "default.handlebars->29->778" + "default.handlebars->29->779" ] }, { @@ -12005,8 +12017,8 @@ "ru": "Уровень IPv4", "zh-chs": "IPv4層", "xloc": [ - "default.handlebars->29->777", - "default.handlebars->29->779" + "default.handlebars->29->778", + "default.handlebars->29->780" ] }, { @@ -12074,7 +12086,7 @@ "ru": "Исландский", "zh-chs": "冰島的", "xloc": [ - "default.handlebars->29->949" + "default.handlebars->29->951" ] }, { @@ -12092,7 +12104,7 @@ "zh-chs": "圖標選擇", "xloc": [ "default-mobile.handlebars->9->231", - "default.handlebars->29->666" + "default.handlebars->29->667" ] }, { @@ -12109,7 +12121,7 @@ "ru": "Идентификатор", "zh-chs": "識別碼", "xloc": [ - "default.handlebars->29->805" + "default.handlebars->29->806" ] }, { @@ -12191,7 +12203,7 @@ "zh-chs": "个别装置", "xloc": [ "default-mobile.handlebars->9->103", - "default.handlebars->29->172" + "default.handlebars->29->173" ] }, { @@ -12208,7 +12220,7 @@ "ru": "Индонезийский", "zh-chs": "印度尼西亞", "xloc": [ - "default.handlebars->29->950" + "default.handlebars->29->952" ] }, { @@ -12323,7 +12335,7 @@ "ru": "Установка CIRA", "zh-chs": "安裝CIRA", "xloc": [ - "default.handlebars->29->1158" + "default.handlebars->29->1160" ] }, { @@ -12340,7 +12352,7 @@ "ru": "Локальная установка", "zh-chs": "安裝本地", "xloc": [ - "default.handlebars->29->1160" + "default.handlebars->29->1162" ] }, { @@ -12357,10 +12369,10 @@ "ru": "Тип установки", "zh-chs": "安裝類型", "xloc": [ - "default.handlebars->29->1299", - "default.handlebars->29->1306", - "default.handlebars->29->293", - "default.handlebars->29->315" + "default.handlebars->29->1301", + "default.handlebars->29->1308", + "default.handlebars->29->294", + "default.handlebars->29->316" ] }, { @@ -12377,7 +12389,7 @@ "ru": "Intel (F10 = ESC+[OM)", "zh-chs": "英特爾(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->29->710", + "default.handlebars->29->711", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -12395,10 +12407,10 @@ "ru": "Intel AMT", "zh-chs": "英特爾AMT", "xloc": [ - "default.handlebars->29->1318", - "default.handlebars->29->1326", - "default.handlebars->29->1678", - "default.handlebars->29->1700" + "default.handlebars->29->1320", + "default.handlebars->29->1328", + "default.handlebars->29->1685", + "default.handlebars->29->1707" ] }, { @@ -12415,7 +12427,7 @@ "ru": "Подключен Intel AMT CIRA", "zh-chs": "英特爾AMT CIRA已連接", "xloc": [ - "default.handlebars->29->145" + "default.handlebars->29->146" ] }, { @@ -12432,7 +12444,7 @@ "ru": "Отключен Intel AMT CIRA", "zh-chs": "英特爾AMT CIRA斷開連接", "xloc": [ - "default.handlebars->29->149" + "default.handlebars->29->150" ] }, { @@ -12449,7 +12461,7 @@ "ru": "Обнаружен Intel AMT", "zh-chs": "檢測到英特爾AMT", "xloc": [ - "default.handlebars->29->144" + "default.handlebars->29->145" ] }, { @@ -12466,7 +12478,7 @@ "ru": "Intel AMT активирован в режиме администратора", "zh-chs": "在管理控制模式下激活了Intel AMT", "xloc": [ - "default.handlebars->29->474" + "default.handlebars->29->475" ] }, { @@ -12483,7 +12495,7 @@ "ru": "Intel AMT активирован в режиме клиента", "zh-chs": "英特爾AMT在客戶端控制模式下被激活", "xloc": [ - "default.handlebars->29->472" + "default.handlebars->29->473" ] }, { @@ -12500,7 +12512,7 @@ "ru": "Intel AMT настроен с TLS безопасностью сети", "zh-chs": "英特爾AMT已設置TLS網絡安全性", "xloc": [ - "default.handlebars->29->476" + "default.handlebars->29->477" ] }, { @@ -12517,7 +12529,7 @@ "ru": "Intel AMT не обнаружен", "zh-chs": "未檢測到英特爾AMT", "xloc": [ - "default.handlebars->29->148" + "default.handlebars->29->149" ] }, { @@ -12534,7 +12546,7 @@ "ru": "Intel AMT необходимо установить с доверенным FQDN в MEBx или иметь кабельное подключение к локальной сети:", "zh-chs": "英特爾AMT將需要在MEBx中設置為受信任的FQDN,或者在網絡上具有有線局域網:", "xloc": [ - "default.handlebars->29->243" + "default.handlebars->29->244" ] }, { @@ -12551,7 +12563,7 @@ "ru": "Intel ASCII", "zh-chs": "英特爾ASCII", "xloc": [ - "default.handlebars->29->709" + "default.handlebars->29->710" ] }, { @@ -12571,11 +12583,11 @@ "default-mobile.handlebars->9->133", "default-mobile.handlebars->9->197", "default-mobile.handlebars->9->202", - "default.handlebars->29->1142", - "default.handlebars->29->1152", - "default.handlebars->29->433", - "default.handlebars->29->484", - "default.handlebars->29->512" + "default.handlebars->29->1144", + "default.handlebars->29->1154", + "default.handlebars->29->434", + "default.handlebars->29->485", + "default.handlebars->29->513" ] }, { @@ -12593,7 +12605,7 @@ "zh-chs": "英特爾®AMT CIRA", "xloc": [ "default-mobile.handlebars->9->201", - "default.handlebars->29->510" + "default.handlebars->29->511" ] }, { @@ -12610,9 +12622,9 @@ "ru": "Intel® AMT CIRA подключен и готов к использованию.", "zh-chs": "英特爾®AMT CIRA已連接並可以使用。", "xloc": [ - "default.handlebars->29->177", - "default.handlebars->29->370", - "default.handlebars->29->509" + "default.handlebars->29->178", + "default.handlebars->29->371", + "default.handlebars->29->510" ] }, { @@ -12648,7 +12660,7 @@ "ru": "Политика Intel® AMT", "zh-chs": "英特爾®AMT政策", "xloc": [ - "default.handlebars->29->1181" + "default.handlebars->29->1183" ] }, { @@ -12682,7 +12694,7 @@ "ru": "Intel® AMT Тег", "zh-chs": "英特爾®AMT標籤", "xloc": [ - "default.handlebars->29->488" + "default.handlebars->29->489" ] }, { @@ -12716,8 +12728,8 @@ "ru": "Активация Intel® AMT", "zh-chs": "英特爾®AMT激活", "xloc": [ - "default.handlebars->29->241", - "default.handlebars->29->244" + "default.handlebars->29->242", + "default.handlebars->29->245" ] }, { @@ -12735,8 +12747,8 @@ "zh-chs": "英特爾®AMT已連接", "xloc": [ "default-mobile.handlebars->9->211", - "default.handlebars->29->547", - "default.handlebars->29->548" + "default.handlebars->29->548", + "default.handlebars->29->549" ] }, { @@ -12753,8 +12765,8 @@ "ru": "События Intel® AMT desktop или serial.", "zh-chs": "英特爾®AMT桌面和串行事件。", "xloc": [ - "default.handlebars->29->1066", - "default.handlebars->29->1314" + "default.handlebars->29->1068", + "default.handlebars->29->1316" ] }, { @@ -12772,8 +12784,8 @@ "zh-chs": "檢測到英特爾®AMT", "xloc": [ "default-mobile.handlebars->9->212", - "default.handlebars->29->549", - "default.handlebars->29->550" + "default.handlebars->29->550", + "default.handlebars->29->551" ] }, { @@ -12790,7 +12802,7 @@ "ru": "Intel® AMT маршрутизируется и готов к использованию.", "zh-chs": "英特爾®AMT可路由並可以使用。", "xloc": [ - "default.handlebars->29->511" + "default.handlebars->29->512" ] }, { @@ -12807,8 +12819,8 @@ "ru": "Intel® AMT маршрутизируется.", "zh-chs": "英特爾®AMT是可路由的。", "xloc": [ - "default.handlebars->29->179", - "default.handlebars->29->372" + "default.handlebars->29->180", + "default.handlebars->29->373" ] }, { @@ -12843,8 +12855,8 @@ "zh-chs": "僅限英特爾®AMT,無代理", "xloc": [ "default-mobile.handlebars->9->282", - "default.handlebars->29->1095", - "default.handlebars->29->1119" + "default.handlebars->29->1097", + "default.handlebars->29->1121" ] }, { @@ -12861,7 +12873,7 @@ "ru": "Технология Intel® Active Management", "zh-chs": "英特爾®主動管理技術", "xloc": [ - "default.handlebars->29->483" + "default.handlebars->29->484" ] }, { @@ -12878,7 +12890,7 @@ "ru": "Intel® Active Management Technology (Intel® AMT)", "zh-chs": "英特爾®主動管理技術(英特爾®AMT)", "xloc": [ - "default.handlebars->29->797" + "default.handlebars->29->798" ] }, { @@ -12896,7 +12908,7 @@ "zh-chs": "英特爾®ME", "xloc": [ "default-mobile.handlebars->9->196", - "default.handlebars->29->482" + "default.handlebars->29->483" ] }, { @@ -12914,7 +12926,7 @@ "zh-chs": "英特爾®SM", "xloc": [ "default-mobile.handlebars->9->198", - "default.handlebars->29->486" + "default.handlebars->29->487" ] }, { @@ -12931,7 +12943,7 @@ "ru": "Intel® Standard Manageability", "zh-chs": "英特爾®標準可管理性", "xloc": [ - "default.handlebars->29->485" + "default.handlebars->29->486" ] }, { @@ -13032,7 +13044,7 @@ "ru": "Интерактивный", "zh-chs": "互動", "xloc": [ - "default.handlebars->29->692" + "default.handlebars->29->693" ] }, { @@ -13049,10 +13061,10 @@ "ru": "Только интерактивный режим", "zh-chs": "僅限互動", "xloc": [ - "default.handlebars->29->1302", - "default.handlebars->29->1309", - "default.handlebars->29->296", - "default.handlebars->29->318" + "default.handlebars->29->1304", + "default.handlebars->29->1311", + "default.handlebars->29->297", + "default.handlebars->29->319" ] }, { @@ -13069,7 +13081,7 @@ "ru": "Интерфейсы", "zh-chs": "介面", "xloc": [ - "default.handlebars->29->530" + "default.handlebars->29->531" ] }, { @@ -13086,7 +13098,7 @@ "ru": "Инуктитут", "zh-chs": "因紐特人", "xloc": [ - "default.handlebars->29->951" + "default.handlebars->29->953" ] }, { @@ -13103,7 +13115,7 @@ "ru": "Некорректный тип группы устройств", "zh-chs": "無效的設備組類型", "xloc": [ - "default.handlebars->29->1655" + "default.handlebars->29->1662" ] }, { @@ -13120,7 +13132,7 @@ "ru": "Некорректный JSON", "zh-chs": "無效的JSON", "xloc": [ - "default.handlebars->29->1649" + "default.handlebars->29->1656" ] }, { @@ -13137,8 +13149,8 @@ "ru": "Некорректный формат файла JSON.", "zh-chs": "無效的JSON文件格式。", "xloc": [ - "default.handlebars->29->1424", - "default.handlebars->29->1426" + "default.handlebars->29->1426", + "default.handlebars->29->1428" ] }, { @@ -13155,7 +13167,7 @@ "ru": "Некорректный файл JSON: {0}.", "zh-chs": "無效的JSON文件:{0}。", "xloc": [ - "default.handlebars->29->1422" + "default.handlebars->29->1424" ] }, { @@ -13172,7 +13184,7 @@ "ru": "Некорректная сигнатура PKCS", "zh-chs": "無效的PKCS簽名", "xloc": [ - "default.handlebars->29->1647" + "default.handlebars->29->1654" ] }, { @@ -13189,7 +13201,7 @@ "ru": "Некорректная сигнатура RSA", "zh-chs": "無效的RSA密碼", "xloc": [ - "default.handlebars->29->1648" + "default.handlebars->29->1655" ] }, { @@ -13291,7 +13303,7 @@ "ru": "Ссылка для приглашения ({0})", "zh-chs": "邀請鏈接({0})", "xloc": [ - "default.handlebars->29->165" + "default.handlebars->29->166" ] }, { @@ -13308,7 +13320,7 @@ "ru": "Тип приглашения", "zh-chs": "邀請類型", "xloc": [ - "default.handlebars->29->273" + "default.handlebars->29->274" ] }, { @@ -13325,7 +13337,7 @@ "ru": "Коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->29->1304" + "default.handlebars->29->1306" ] }, { @@ -13356,9 +13368,9 @@ "ru": "Пригласить", "zh-chs": "邀請", "xloc": [ - "default.handlebars->29->1168", - "default.handlebars->29->228", - "default.handlebars->29->308" + "default.handlebars->29->1170", + "default.handlebars->29->229", + "default.handlebars->29->309" ] }, { @@ -13375,11 +13387,11 @@ "ru": "Пригласительные коды", "zh-chs": "邀請碼", "xloc": [ - "default.handlebars->29->1146", - "default.handlebars->29->1298", - "default.handlebars->29->1303", + "default.handlebars->29->1148", + "default.handlebars->29->1300", "default.handlebars->29->1305", - "default.handlebars->29->1310" + "default.handlebars->29->1307", + "default.handlebars->29->1312" ] }, { @@ -13396,7 +13408,7 @@ "ru": "Пригласите установить Mesh Agent поделившись ссылкой. Эта ссылка ведет на инструкции для установки для группы устройств \\\"{0}\\\". Ссылка общедоступна и не требует наличия учетной записи на сервере.", "zh-chs": "通過共享邀請鏈接來邀請某人安裝網格代理。該鏈接為用戶提供 “{0}” 設備組的安裝說明。該鏈接是公共的,不需要該服務器的帳戶。", "xloc": [ - "default.handlebars->29->299" + "default.handlebars->29->300" ] }, { @@ -13404,8 +13416,8 @@ "en": "Invite someone to install the mesh agent on this device group.", "nl": "Nodig iemand uit om de mesh-agent in deze apparaatgroep te installeren.", "xloc": [ - "default.handlebars->29->1167", - "default.handlebars->29->227" + "default.handlebars->29->1169", + "default.handlebars->29->228" ] }, { @@ -13422,7 +13434,7 @@ "ru": "Пригласите установить Mesh Agent. Ссылка на установку для группы \\\"{0}\\\" будет отправлена по электронной почте.", "zh-chs": "邀請某人安裝網狀代理。將發送一封電子郵件,其中包含指向 “{0}” 設備組的網狀代理安裝的鏈接。", "xloc": [ - "default.handlebars->29->276" + "default.handlebars->29->277" ] }, { @@ -13439,7 +13451,7 @@ "ru": "Ирландский", "zh-chs": "愛爾蘭人", "xloc": [ - "default.handlebars->29->952" + "default.handlebars->29->954" ] }, { @@ -13456,7 +13468,7 @@ "ru": "Итальянский (Стандартный)", "zh-chs": "意大利語(標準)", "xloc": [ - "default.handlebars->29->953" + "default.handlebars->29->955" ] }, { @@ -13473,7 +13485,7 @@ "ru": "Итальянский (Швейцария)", "zh-chs": "義大利文(瑞士)", "xloc": [ - "default.handlebars->29->954" + "default.handlebars->29->956" ] }, { @@ -13490,9 +13502,9 @@ "ru": "Формат JSON", "zh-chs": "JSON格式", "xloc": [ - "default.handlebars->29->1373", - "default.handlebars->29->1430", - "default.handlebars->29->400" + "default.handlebars->29->1375", + "default.handlebars->29->1432", + "default.handlebars->29->401" ] }, { @@ -13509,7 +13521,7 @@ "ru": "Японский", "zh-chs": "日本", "xloc": [ - "default.handlebars->29->955" + "default.handlebars->29->957" ] }, { @@ -13526,7 +13538,7 @@ "ru": "Каннада", "zh-chs": "卡納達語", "xloc": [ - "default.handlebars->29->956" + "default.handlebars->29->958" ] }, { @@ -13543,7 +13555,7 @@ "ru": "Кашмирский", "zh-chs": "克什米爾語", "xloc": [ - "default.handlebars->29->957" + "default.handlebars->29->959" ] }, { @@ -13560,7 +13572,7 @@ "ru": "Казахский", "zh-chs": "哈薩克語", "xloc": [ - "default.handlebars->29->958" + "default.handlebars->29->960" ] }, { @@ -13577,7 +13589,7 @@ "ru": "Драйвер ядра", "zh-chs": "內核驅動程序", "xloc": [ - "default.handlebars->29->693" + "default.handlebars->29->694" ] }, { @@ -13594,8 +13606,8 @@ "ru": "Имя ключа", "zh-chs": "鍵名", "xloc": [ - "default.handlebars->29->849", - "default.handlebars->29->852" + "default.handlebars->29->851", + "default.handlebars->29->854" ] }, { @@ -13629,7 +13641,7 @@ "ru": "Кхмерский", "zh-chs": "高棉語", "xloc": [ - "default.handlebars->29->959" + "default.handlebars->29->961" ] }, { @@ -13646,7 +13658,7 @@ "ru": "Киргизский", "zh-chs": "吉爾吉斯", "xloc": [ - "default.handlebars->29->960" + "default.handlebars->29->962" ] }, { @@ -13663,7 +13675,7 @@ "ru": "Клингонский", "zh-chs": "克林貢", "xloc": [ - "default.handlebars->29->961" + "default.handlebars->29->963" ] }, { @@ -13680,7 +13692,7 @@ "ru": "Известный", "zh-chs": "已知的", "xloc": [ - "default.handlebars->29->796" + "default.handlebars->29->797" ] }, { @@ -13697,7 +13709,7 @@ "ru": "Korean", "zh-chs": "韓語", "xloc": [ - "default.handlebars->29->962" + "default.handlebars->29->964" ] }, { @@ -13714,7 +13726,7 @@ "ru": "Корейский (Северная Корея)", "zh-chs": "韓語(朝鮮)", "xloc": [ - "default.handlebars->29->963" + "default.handlebars->29->965" ] }, { @@ -13731,7 +13743,7 @@ "ru": "Корейский (Южная Корея)", "zh-chs": "韓語(韓國)", "xloc": [ - "default.handlebars->29->964" + "default.handlebars->29->966" ] }, { @@ -13748,8 +13760,8 @@ "ru": "LF", "zh-chs": "如果", "xloc": [ - "default.handlebars->29->705", - "default.handlebars->29->714" + "default.handlebars->29->706", + "default.handlebars->29->715" ] }, { @@ -13766,7 +13778,7 @@ "ru": "Язык", "zh-chs": "語言", "xloc": [ - "default.handlebars->29->1058" + "default.handlebars->29->1060" ] }, { @@ -13800,7 +13812,7 @@ "ru": "Большой Фокус", "zh-chs": "大焦點", "xloc": [ - "default.handlebars->29->681" + "default.handlebars->29->682" ] }, { @@ -13983,7 +13995,7 @@ "ru": "Последний доступ", "zh-chs": "最後訪問", "xloc": [ - "default.handlebars->29->1381" + "default.handlebars->29->1383" ] }, { @@ -14000,7 +14012,7 @@ "ru": "Последний вход в систему", "zh-chs": "上次登錄", "xloc": [ - "default.handlebars->29->1545" + "default.handlebars->29->1548" ] }, { @@ -14020,9 +14032,9 @@ "default.handlebars->29->70", "default.handlebars->29->72", "default.handlebars->29->74", - "default.handlebars->29->768", "default.handlebars->29->769", - "default.handlebars->29->770" + "default.handlebars->29->770", + "default.handlebars->29->771" ] }, { @@ -14040,8 +14052,8 @@ "zh-chs": "上次代理連接", "xloc": [ "default.handlebars->29->69", - "default.handlebars->29->765", - "default.handlebars->29->767" + "default.handlebars->29->766", + "default.handlebars->29->768" ] }, { @@ -14058,7 +14070,7 @@ "ru": "Последнее изменение: {0}", "zh-chs": "上次更改:{0}", "xloc": [ - "default.handlebars->29->1549" + "default.handlebars->29->1552" ] }, { @@ -14109,7 +14121,7 @@ "ru": "Последний вход в систему: {0}", "zh-chs": "上次登錄:{0}", "xloc": [ - "default.handlebars->29->1391" + "default.handlebars->29->1393" ] }, { @@ -14126,7 +14138,7 @@ "ru": "Последнее посещение:", "zh-chs": "最後一次露面:", "xloc": [ - "default.handlebars->29->553", + "default.handlebars->29->554", "default.handlebars->29->65" ] }, @@ -14195,7 +14207,7 @@ "ru": "Латинский", "zh-chs": "拉丁", "xloc": [ - "default.handlebars->29->965" + "default.handlebars->29->967" ] }, { @@ -14212,7 +14224,13 @@ "ru": "Латышский", "zh-chs": "拉脫維亞語", "xloc": [ - "default.handlebars->29->966" + "default.handlebars->29->968" + ] + }, + { + "en": "Leave blank for none.", + "xloc": [ + "default.handlebars->29->1590" ] }, { @@ -14251,7 +14269,7 @@ "ru": "Меньше", "zh-chs": "減", "xloc": [ - "default.handlebars->29->1717" + "default.handlebars->29->1724" ] }, { @@ -14265,8 +14283,8 @@ "ru": "Предельные события", "zh-chs": "极限赛事", "xloc": [ - "default.handlebars->29->574", - "default.handlebars->29->593" + "default.handlebars->29->575", + "default.handlebars->29->594" ] }, { @@ -14302,9 +14320,9 @@ "zh-chs": "有限輸入", "xloc": [ "default-mobile.handlebars->9->331", - "default.handlebars->29->1282", - "default.handlebars->29->567", - "default.handlebars->29->586" + "default.handlebars->29->1284", + "default.handlebars->29->568", + "default.handlebars->29->587" ] }, { @@ -14322,7 +14340,7 @@ "zh-chs": "僅限於輸入", "xloc": [ "default-mobile.handlebars->9->306", - "default.handlebars->29->1240" + "default.handlebars->29->1242" ] }, { @@ -14357,8 +14375,8 @@ "ru": "Срок действия ссылки", "zh-chs": "鏈接過期", "xloc": [ - "default.handlebars->29->286", - "default.handlebars->29->300" + "default.handlebars->29->287", + "default.handlebars->29->301" ] }, { @@ -14367,7 +14385,7 @@ "es": "Enlace de invitación", "nl": "Uitnodigingslink", "xloc": [ - "default.handlebars->29->274" + "default.handlebars->29->275" ] }, { @@ -14402,7 +14420,7 @@ "ru": "Linux / BSD", "zh-chs": "Linux / BSD", "xloc": [ - "default.handlebars->29->311" + "default.handlebars->29->312" ] }, { @@ -14419,7 +14437,7 @@ "ru": "Linux / BSD (Удаление)", "zh-chs": "Linux / BSD(卸載)", "xloc": [ - "default.handlebars->29->314" + "default.handlebars->29->315" ] }, { @@ -14490,7 +14508,7 @@ "ru": "Linux ARM, Raspberry Pi (32bit)", "zh-chs": "Linux ARM,Raspberry Pi(32位)", "xloc": [ - "default.handlebars->29->650" + "default.handlebars->29->651" ] }, { @@ -14579,7 +14597,7 @@ "ru": "Только Linux", "zh-chs": "僅Linux", "xloc": [ - "default.handlebars->29->285" + "default.handlebars->29->286" ] }, { @@ -14596,7 +14614,7 @@ "ru": "Linux x86 (32bit)", "zh-chs": "Linux x86(32位)", "xloc": [ - "default.handlebars->29->647" + "default.handlebars->29->648" ] }, { @@ -14613,7 +14631,7 @@ "ru": "Linux x86 (64bit)", "zh-chs": "Linux x86(64位)", "xloc": [ - "default.handlebars->29->648" + "default.handlebars->29->649" ] }, { @@ -14648,7 +14666,7 @@ "ru": "Литовский", "zh-chs": "立陶宛語", "xloc": [ - "default.handlebars->29->967" + "default.handlebars->29->969" ] }, { @@ -14666,10 +14684,10 @@ "zh-chs": "載入中...", "xloc": [ "default-mobile.handlebars->9->41", - "default.handlebars->29->1112", "default.handlebars->29->1114", - "default.handlebars->29->641", - "default.handlebars->29->845" + "default.handlebars->29->1116", + "default.handlebars->29->642", + "default.handlebars->29->847" ] }, { @@ -14737,7 +14755,7 @@ "ru": "Настройки локализации", "zh-chs": "本地化設置", "xloc": [ - "default.handlebars->29->1061", + "default.handlebars->29->1063", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -14755,7 +14773,7 @@ "ru": "Местонахождение", "zh-chs": "位置", "xloc": [ - "default.handlebars->29->532" + "default.handlebars->29->533" ] }, { @@ -14789,7 +14807,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->29->1461" + "default.handlebars->29->1463" ] }, { @@ -14806,7 +14824,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->29->1409" + "default.handlebars->29->1411" ] }, { @@ -14823,7 +14841,7 @@ "ru": "Заблокирован", "zh-chs": "已鎖定", "xloc": [ - "default.handlebars->29->1392" + "default.handlebars->29->1394" ] }, { @@ -14840,7 +14858,7 @@ "ru": "Заблокированная учетная запись", "zh-chs": "賬戶鎖定", "xloc": [ - "default.handlebars->29->1529" + "default.handlebars->29->1531" ] }, { @@ -14857,7 +14875,7 @@ "ru": "Добавить событие", "zh-chs": "記錄事件", "xloc": [ - "default.handlebars->29->523" + "default.handlebars->29->524" ] }, { @@ -15006,7 +15024,7 @@ "ru": "Люксембургский", "zh-chs": "盧森堡語", "xloc": [ - "default.handlebars->29->968" + "default.handlebars->29->970" ] }, { @@ -15023,8 +15041,8 @@ "ru": "MAC-уровень", "zh-chs": "MAC層", "xloc": [ - "default.handlebars->29->773", - "default.handlebars->29->775" + "default.handlebars->29->774", + "default.handlebars->29->776" ] }, { @@ -15058,7 +15076,7 @@ "ru": "MAC: {0}", "zh-chs": "MAC:{0}", "xloc": [ - "default.handlebars->29->776" + "default.handlebars->29->777" ] }, { @@ -15075,7 +15093,7 @@ "ru": "MAC: {0}, шлюз: {1}", "zh-chs": "MAC:{0},網關:{1}", "xloc": [ - "default.handlebars->29->774" + "default.handlebars->29->775" ] }, { @@ -15110,8 +15128,8 @@ "ru": "MPS Сервер", "zh-chs": "MPS服務器", "xloc": [ - "default.handlebars->29->265", - "default.handlebars->29->271" + "default.handlebars->29->266", + "default.handlebars->29->272" ] }, { @@ -15130,11 +15148,11 @@ "xloc": [ "default-mobile.handlebars->9->135", "default-mobile.handlebars->9->204", - "default.handlebars->29->184", - "default.handlebars->29->377", - "default.handlebars->29->516", - "default.handlebars->29->824", + "default.handlebars->29->185", + "default.handlebars->29->378", + "default.handlebars->29->517", "default.handlebars->29->825", + "default.handlebars->29->826", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -15152,7 +15170,7 @@ "ru": "MQTT Учетные данные", "zh-chs": "MQTT憑證", "xloc": [ - "default.handlebars->29->167" + "default.handlebars->29->168" ] }, { @@ -15169,7 +15187,7 @@ "ru": "MQTT Вход", "zh-chs": "MQTT登錄", "xloc": [ - "default.handlebars->29->544" + "default.handlebars->29->545" ] }, { @@ -15187,7 +15205,7 @@ "zh-chs": "MQTT通道已連接", "xloc": [ "default-mobile.handlebars->9->213", - "default.handlebars->29->552" + "default.handlebars->29->553" ] }, { @@ -15204,8 +15222,8 @@ "ru": "Подключен MQTT", "zh-chs": "MQTT已連接", "xloc": [ - "default.handlebars->29->146", - "default.handlebars->29->551" + "default.handlebars->29->147", + "default.handlebars->29->552" ] }, { @@ -15222,9 +15240,9 @@ "ru": "MQTT подключение к устройству активно.", "zh-chs": "與設備的MQTT連接已激活。", "xloc": [ - "default.handlebars->29->183", - "default.handlebars->29->376", - "default.handlebars->29->515" + "default.handlebars->29->184", + "default.handlebars->29->377", + "default.handlebars->29->516" ] }, { @@ -15241,7 +15259,7 @@ "ru": "MQTT отключено", "zh-chs": "MQTT已斷開連接", "xloc": [ - "default.handlebars->29->150" + "default.handlebars->29->151" ] }, { @@ -15275,7 +15293,7 @@ "ru": "MacOS (64bit)", "zh-chs": "MacOS(64位)", "xloc": [ - "default.handlebars->29->649" + "default.handlebars->29->650" ] }, { @@ -15328,7 +15346,7 @@ "ru": "Сообщения главного сервера", "zh-chs": "主服務器消息", "xloc": [ - "default.handlebars->29->1689" + "default.handlebars->29->1696" ] }, { @@ -15345,7 +15363,7 @@ "ru": "Малайский", "zh-chs": "馬來語", "xloc": [ - "default.handlebars->29->970" + "default.handlebars->29->972" ] }, { @@ -15362,7 +15380,7 @@ "ru": "Малаяламский", "zh-chs": "馬拉雅拉姆語", "xloc": [ - "default.handlebars->29->971" + "default.handlebars->29->973" ] }, { @@ -15379,7 +15397,7 @@ "ru": "Мальтийский", "zh-chs": "馬耳他語", "xloc": [ - "default.handlebars->29->972" + "default.handlebars->29->974" ] }, { @@ -15416,8 +15434,8 @@ "xloc": [ "default-mobile.handlebars->9->303", "default-mobile.handlebars->9->321", - "default.handlebars->29->1237", - "default.handlebars->29->1271" + "default.handlebars->29->1239", + "default.handlebars->29->1273" ] }, { @@ -15436,8 +15454,8 @@ "xloc": [ "default-mobile.handlebars->9->302", "default-mobile.handlebars->9->320", - "default.handlebars->29->1236", - "default.handlebars->29->1270" + "default.handlebars->29->1238", + "default.handlebars->29->1272" ] }, { @@ -15451,7 +15469,7 @@ "ru": "Управление устройствами", "zh-chs": "管理设备", "xloc": [ - "default.handlebars->29->581" + "default.handlebars->29->582" ] }, { @@ -15485,7 +15503,7 @@ "ru": "Управление группами пользователя", "zh-chs": "管理用戶組", "xloc": [ - "default.handlebars->29->1460" + "default.handlebars->29->1462" ] }, { @@ -15502,8 +15520,8 @@ "ru": "Управление пользователями", "zh-chs": "管理用戶", "xloc": [ - "default.handlebars->29->1459", - "default.handlebars->29->580" + "default.handlebars->29->1461", + "default.handlebars->29->581" ] }, { @@ -15601,7 +15619,7 @@ "ru": "Управление с помощью программного агента", "zh-chs": "使用軟件代理進行管理", "xloc": [ - "default.handlebars->29->1094" + "default.handlebars->29->1096" ] }, { @@ -15619,7 +15637,7 @@ "zh-chs": "使用軟件代理進行管理", "xloc": [ "default-mobile.handlebars->9->283", - "default.handlebars->29->1120" + "default.handlebars->29->1122" ] }, { @@ -15636,7 +15654,7 @@ "ru": "Менеджер", "zh-chs": "經理", "xloc": [ - "default.handlebars->29->1397" + "default.handlebars->29->1399" ] }, { @@ -15653,7 +15671,7 @@ "ru": "Ручной Сертификат", "zh-chs": "手動證書", "xloc": [ - "default.handlebars->29->252" + "default.handlebars->29->253" ] }, { @@ -15670,7 +15688,7 @@ "ru": "Ручной Имя пользователя/Пароль", "zh-chs": "手動用戶名/密碼", "xloc": [ - "default.handlebars->29->251" + "default.handlebars->29->252" ] }, { @@ -15687,7 +15705,7 @@ "ru": "Маори", "zh-chs": "毛利人", "xloc": [ - "default.handlebars->29->973" + "default.handlebars->29->975" ] }, { @@ -15722,7 +15740,7 @@ "ru": "Маратхи", "zh-chs": "馬拉地語", "xloc": [ - "default.handlebars->29->974" + "default.handlebars->29->976" ] }, { @@ -15739,7 +15757,7 @@ "ru": "Достигнуто максимальное число сессий", "zh-chs": "達到的會話數上限", "xloc": [ - "default.handlebars->29->1653" + "default.handlebars->29->1660" ] }, { @@ -15793,7 +15811,7 @@ "ru": "Мегабайт", "zh-chs": "兆字節", "xloc": [ - "default.handlebars->29->1679" + "default.handlebars->29->1686" ] }, { @@ -15810,8 +15828,8 @@ "ru": "ОЗУ", "zh-chs": "記憶", "xloc": [ - "default.handlebars->29->1670", - "default.handlebars->29->812", + "default.handlebars->29->1677", + "default.handlebars->29->813", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -15830,15 +15848,15 @@ "zh-chs": "網格代理", "xloc": [ "default-mobile.handlebars->9->210", - "default.handlebars->29->320", - "default.handlebars->29->324", - "default.handlebars->29->333", - "default.handlebars->29->337", - "default.handlebars->29->340", - "default.handlebars->29->465", - "default.handlebars->29->508", - "default.handlebars->29->764", - "default.handlebars->29->771" + "default.handlebars->29->321", + "default.handlebars->29->325", + "default.handlebars->29->334", + "default.handlebars->29->338", + "default.handlebars->29->341", + "default.handlebars->29->466", + "default.handlebars->29->509", + "default.handlebars->29->765", + "default.handlebars->29->772" ] }, { @@ -15856,7 +15874,7 @@ "zh-chs": "網格代理控制台", "xloc": [ "default-mobile.handlebars->9->310", - "default.handlebars->29->1245" + "default.handlebars->29->1247" ] }, { @@ -15873,7 +15891,7 @@ "ru": "Ретранслятор Mesh", "zh-chs": "網狀中繼", "xloc": [ - "default.handlebars->29->514" + "default.handlebars->29->515" ] }, { @@ -15890,9 +15908,9 @@ "ru": "Mesh Agent подключен и готов к использованию.", "zh-chs": "已連接網狀代理並準備使用。", "xloc": [ - "default.handlebars->29->175", - "default.handlebars->29->368", - "default.handlebars->29->507" + "default.handlebars->29->176", + "default.handlebars->29->369", + "default.handlebars->29->508" ] }, { @@ -15909,9 +15927,9 @@ "ru": "Mesh Agent доступен с использованием другого агента в качестве ретранслятора.", "zh-chs": "使用其他代理作為中繼可以訪問網狀代理。", "xloc": [ - "default.handlebars->29->181", - "default.handlebars->29->374", - "default.handlebars->29->513" + "default.handlebars->29->182", + "default.handlebars->29->375", + "default.handlebars->29->514" ] }, { @@ -15928,8 +15946,8 @@ "ru": "MeshAction (.txt)", "zh-chs": "MeshAction(.txt)", "xloc": [ - "default.handlebars->29->656", - "default.handlebars->29->658" + "default.handlebars->29->657", + "default.handlebars->29->659" ] }, { @@ -15946,7 +15964,7 @@ "ru": "Трафик MeshAgent", "zh-chs": "MeshAgent流量", "xloc": [ - "default.handlebars->29->1691" + "default.handlebars->29->1698" ] }, { @@ -15963,7 +15981,7 @@ "ru": "Обновление MeshAgent", "zh-chs": "MeshAgent更新", "xloc": [ - "default.handlebars->29->1692" + "default.handlebars->29->1699" ] }, { @@ -15997,7 +16015,7 @@ "ru": "Ошибки MeshCentral", "zh-chs": "網格中心錯誤", "xloc": [ - "default.handlebars->29->1113" + "default.handlebars->29->1115" ] }, { @@ -16014,7 +16032,7 @@ "ru": "MeshCentral Router ", "zh-chs": "MeshCentral路由器", "xloc": [ - "default.handlebars->29->644" + "default.handlebars->29->645" ] }, { @@ -16031,7 +16049,7 @@ "ru": "MeshCentral Router это инструмент Windows для сопоставления портов TCP. Например, через этот сервер можно установить подключение по RDP к удаленному устройству.", "zh-chs": "MeshCentral Router是Windows工具,用於TCP端口映射。例如,您可以通過該服務器將RDP放入遠程設備。", "xloc": [ - "default.handlebars->29->642" + "default.handlebars->29->643" ] }, { @@ -16066,7 +16084,7 @@ "ru": "Соединения сервера MeshCentral", "zh-chs": "MeshCentral服務器對等", "xloc": [ - "default.handlebars->29->1690" + "default.handlebars->29->1697" ] }, { @@ -16101,7 +16119,7 @@ "zh-chs": "MeshCentral版本", "xloc": [ "default.handlebars->29->101", - "default.handlebars->29->1111", + "default.handlebars->29->1113", "default.handlebars->29->99" ] }, @@ -16119,9 +16137,9 @@ "ru": "MeshCmd", "zh-chs": "MeshCmd", "xloc": [ - "default.handlebars->29->199", - "default.handlebars->29->534", - "default.handlebars->29->654" + "default.handlebars->29->200", + "default.handlebars->29->535", + "default.handlebars->29->655" ] }, { @@ -16138,7 +16156,7 @@ "ru": "MeshCmd (Linux ARM, 32bit)", "zh-chs": "MeshCmd(Linux ARM,32位)", "xloc": [ - "default.handlebars->29->665" + "default.handlebars->29->666" ] }, { @@ -16155,7 +16173,7 @@ "ru": "MeshCmd (Linux x86, 32bit)", "zh-chs": "MeshCmd(Linux x86,32bit)", "xloc": [ - "default.handlebars->29->662" + "default.handlebars->29->663" ] }, { @@ -16172,7 +16190,7 @@ "ru": "MeshCmd (Linux x86, 64bit)", "zh-chs": "MeshCmd(Linux x86,64bit)", "xloc": [ - "default.handlebars->29->663" + "default.handlebars->29->664" ] }, { @@ -16189,7 +16207,7 @@ "ru": "MeshCmd (MacOS, 64bit)", "zh-chs": "MeshCmd(MacOS,64位)", "xloc": [ - "default.handlebars->29->664" + "default.handlebars->29->665" ] }, { @@ -16206,7 +16224,7 @@ "ru": "MeshCmd (приложение Win32)", "zh-chs": "MeshCmd(Win32可執行文件)", "xloc": [ - "default.handlebars->29->660" + "default.handlebars->29->661" ] }, { @@ -16223,7 +16241,7 @@ "ru": "MeshCmd (приложение Win64)", "zh-chs": "MeshCmd(Win64可執行文件)", "xloc": [ - "default.handlebars->29->661" + "default.handlebars->29->662" ] }, { @@ -16240,7 +16258,7 @@ "ru": "MeshCmd это утилита с командной строкой, которая позволяет выполнить множество операций. Файл с командами может быть опционально скачан и отредактирован для указания информации о сервере и учетных данных.", "zh-chs": "MeshCmd是執行許多不同操作的命令行工具。可以選擇下載和編輯操作文件以提供服務器信息和憑據。", "xloc": [ - "default.handlebars->29->651" + "default.handlebars->29->652" ] }, { @@ -16257,7 +16275,7 @@ "ru": "MeshCommander Script", "zh-chs": "MeshCommander腳本", "xloc": [ - "default.handlebars->29->250" + "default.handlebars->29->251" ] }, { @@ -16293,8 +16311,8 @@ "ru": "MeshServerRootCert.cer", "zh-chs": "MeshServerRootCert.cer", "xloc": [ - "default.handlebars->29->261", - "default.handlebars->29->268" + "default.handlebars->29->262", + "default.handlebars->29->269" ] }, { @@ -16311,8 +16329,8 @@ "ru": "Сообщение", "zh-chs": "信息", "xloc": [ - "default.handlebars->29->297", - "default.handlebars->29->622" + "default.handlebars->29->298", + "default.handlebars->29->623" ] }, { @@ -16329,7 +16347,7 @@ "ru": "Диспетчер сообщения", "zh-chs": "郵件調度程序", "xloc": [ - "default.handlebars->29->1688" + "default.handlebars->29->1695" ] }, { @@ -16416,7 +16434,7 @@ "en": "Model", "nl": "Model", "xloc": [ - "default.handlebars->29->813" + "default.handlebars->29->814" ] }, { @@ -16433,7 +16451,7 @@ "ru": "Изменить позицию узла", "zh-chs": "修改節點位置", "xloc": [ - "default.handlebars->29->427" + "default.handlebars->29->428" ] }, { @@ -16450,7 +16468,7 @@ "ru": "Молдавский", "zh-chs": "摩爾達維亞人", "xloc": [ - "default.handlebars->29->975" + "default.handlebars->29->977" ] }, { @@ -16467,7 +16485,7 @@ "ru": "Еще", "zh-chs": "更多", "xloc": [ - "default.handlebars->29->1716" + "default.handlebars->29->1723" ] }, { @@ -16484,7 +16502,7 @@ "ru": "Материнская плата", "zh-chs": "母板", "xloc": [ - "default.handlebars->29->808" + "default.handlebars->29->809" ] }, { @@ -16501,7 +16519,7 @@ "ru": "Переместить это устройство в другую группу устройств", "zh-chs": "將此設備移到其他設備組", "xloc": [ - "default.handlebars->29->525" + "default.handlebars->29->526" ] }, { @@ -16518,7 +16536,7 @@ "ru": "Переместить в группу устройств", "zh-chs": "移至設備組", "xloc": [ - "default.handlebars->29->390" + "default.handlebars->29->391" ] }, { @@ -16650,7 +16668,7 @@ "ru": "Консоль моего сервера", "zh-chs": "我的服務器控制台", "xloc": [ - "default.handlebars->29->819" + "default.handlebars->29->820" ] }, { @@ -16771,8 +16789,8 @@ "ru": "Мой ключ", "zh-chs": "我的鑰匙", "xloc": [ - "default.handlebars->29->850", - "default.handlebars->29->853" + "default.handlebars->29->852", + "default.handlebars->29->855" ] }, { @@ -16794,17 +16812,17 @@ "default-mobile.handlebars->9->297", "default-mobile.handlebars->9->66", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->29->1092", - "default.handlebars->29->1203", - "default.handlebars->29->1379", - "default.handlebars->29->1466", - "default.handlebars->29->1480", - "default.handlebars->29->1516", - "default.handlebars->29->458", - "default.handlebars->29->687", - "default.handlebars->29->760", + "default.handlebars->29->1094", + "default.handlebars->29->1205", + "default.handlebars->29->1381", + "default.handlebars->29->1468", + "default.handlebars->29->1482", + "default.handlebars->29->1518", + "default.handlebars->29->459", + "default.handlebars->29->688", + "default.handlebars->29->761", "default.handlebars->29->77", - "default.handlebars->29->802", + "default.handlebars->29->803", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default.handlebars->container->column_l->p42->p42tbl->1->0->2" @@ -16824,7 +16842,7 @@ "ru": "Имя (не обязательно)", "zh-chs": "名稱(可選)", "xloc": [ - "default.handlebars->29->277" + "default.handlebars->29->278" ] }, { @@ -16841,7 +16859,7 @@ "ru": "Имя1, Имя2, Имя3", "zh-chs": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->29->1451" + "default.handlebars->29->1453" ] }, { @@ -16858,7 +16876,7 @@ "ru": "Навахо", "zh-chs": "納瓦霍人", "xloc": [ - "default.handlebars->29->976" + "default.handlebars->29->978" ] }, { @@ -16875,7 +16893,7 @@ "ru": "Ндонга", "zh-chs": "恩東加", "xloc": [ - "default.handlebars->29->977" + "default.handlebars->29->979" ] }, { @@ -16892,7 +16910,7 @@ "ru": "Непальский", "zh-chs": "尼泊爾文", "xloc": [ - "default.handlebars->29->978" + "default.handlebars->29->980" ] }, { @@ -16909,7 +16927,7 @@ "ru": "Сетевые интерфейсы", "zh-chs": "網絡接口", "xloc": [ - "default.handlebars->29->640" + "default.handlebars->29->641" ] }, { @@ -16940,7 +16958,7 @@ "ru": "сетей", "zh-chs": "聯網", "xloc": [ - "default.handlebars->29->781" + "default.handlebars->29->782" ] }, { @@ -16993,9 +17011,9 @@ "zh-chs": "新設備組", "xloc": [ "default-mobile.handlebars->9->60", - "default.handlebars->29->1085", - "default.handlebars->29->1097", - "default.handlebars->29->632" + "default.handlebars->29->1087", + "default.handlebars->29->1099", + "default.handlebars->29->633" ] }, { @@ -17014,8 +17032,8 @@ "xloc": [ "default-mobile.handlebars->9->255", "default-mobile.handlebars->9->89", - "default.handlebars->29->1352", - "default.handlebars->29->724", + "default.handlebars->29->1354", + "default.handlebars->29->725", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -17070,8 +17088,8 @@ "xloc": [ "default-mobile.handlebars->9->55", "default-mobile.handlebars->9->56", - "default.handlebars->29->1080", - "default.handlebars->29->1081" + "default.handlebars->29->1082", + "default.handlebars->29->1083" ] }, { @@ -17086,8 +17104,8 @@ "ru": "Нет AMT", "zh-chs": "没有AMT", "xloc": [ - "default.handlebars->29->566", - "default.handlebars->29->585" + "default.handlebars->29->567", + "default.handlebars->29->586" ] }, { @@ -17135,8 +17153,8 @@ "xloc": [ "default-mobile.handlebars->9->194", "default-mobile.handlebars->9->195", - "default.handlebars->29->479", - "default.handlebars->29->480" + "default.handlebars->29->480", + "default.handlebars->29->481" ] }, { @@ -17153,9 +17171,9 @@ "ru": "Нет рабочего стола", "zh-chs": "沒有桌面", "xloc": [ - "default.handlebars->29->1278", - "default.handlebars->29->568", - "default.handlebars->29->587" + "default.handlebars->29->1280", + "default.handlebars->29->569", + "default.handlebars->29->588" ] }, { @@ -17172,7 +17190,7 @@ "ru": "Нет доступа к рабочему столу", "zh-chs": "沒有桌面訪問", "xloc": [ - "default.handlebars->29->1241" + "default.handlebars->29->1243" ] }, { @@ -17189,9 +17207,9 @@ "ru": "События не найдены", "zh-chs": "找不到活動", "xloc": [ - "default.handlebars->29->1369", - "default.handlebars->29->1634", - "default.handlebars->29->758" + "default.handlebars->29->1371", + "default.handlebars->29->1641", + "default.handlebars->29->759" ] }, { @@ -17209,7 +17227,7 @@ "zh-chs": "沒有文件訪問", "xloc": [ "default-mobile.handlebars->9->308", - "default.handlebars->29->1243" + "default.handlebars->29->1245" ] }, { @@ -17227,9 +17245,9 @@ "zh-chs": "沒有文件", "xloc": [ "default-mobile.handlebars->9->329", - "default.handlebars->29->1280", - "default.handlebars->29->565", - "default.handlebars->29->584" + "default.handlebars->29->1282", + "default.handlebars->29->566", + "default.handlebars->29->585" ] }, { @@ -17243,8 +17261,8 @@ "ru": "Нет ввода", "zh-chs": "无输入", "xloc": [ - "default.handlebars->29->563", - "default.handlebars->29->582" + "default.handlebars->29->564", + "default.handlebars->29->583" ] }, { @@ -17263,8 +17281,8 @@ "xloc": [ "default-mobile.handlebars->9->309", "default-mobile.handlebars->9->330", - "default.handlebars->29->1244", - "default.handlebars->29->1281" + "default.handlebars->29->1246", + "default.handlebars->29->1283" ] }, { @@ -17298,7 +17316,7 @@ "ru": "Intel® AMT устройств в этой сети нет", "zh-chs": "此網格中沒有英特爾®AMT設備", "xloc": [ - "default.handlebars->29->188" + "default.handlebars->29->189" ] }, { @@ -17332,7 +17350,7 @@ "ru": "Нет членов", "zh-chs": "沒有會員", "xloc": [ - "default.handlebars->29->1498" + "default.handlebars->29->1500" ] }, { @@ -17349,7 +17367,7 @@ "ru": "Запретить создание групп устройств", "zh-chs": "沒有新的設備組", "xloc": [ - "default.handlebars->29->1462" + "default.handlebars->29->1464" ] }, { @@ -17366,9 +17384,9 @@ "ru": "Политик нет", "zh-chs": "沒有政策", "xloc": [ - "default.handlebars->29->1147", - "default.handlebars->29->1175", - "default.handlebars->29->1178" + "default.handlebars->29->1149", + "default.handlebars->29->1177", + "default.handlebars->29->1180" ] }, { @@ -17388,10 +17406,10 @@ "default-mobile.handlebars->9->292", "default-mobile.handlebars->9->335", "default-mobile.handlebars->9->75", - "default.handlebars->29->1106", - "default.handlebars->29->1286", - "default.handlebars->29->577", - "default.handlebars->29->596" + "default.handlebars->29->1108", + "default.handlebars->29->1288", + "default.handlebars->29->578", + "default.handlebars->29->597" ] }, { @@ -17409,8 +17427,8 @@ "zh-chs": "沒有TLS安全性", "xloc": [ "default-mobile.handlebars->9->225", - "default.handlebars->29->237", - "default.handlebars->29->618" + "default.handlebars->29->238", + "default.handlebars->29->619" ] }, { @@ -17428,9 +17446,9 @@ "zh-chs": "沒有終端", "xloc": [ "default-mobile.handlebars->9->328", - "default.handlebars->29->1279", - "default.handlebars->29->564", - "default.handlebars->29->583" + "default.handlebars->29->1281", + "default.handlebars->29->565", + "default.handlebars->29->584" ] }, { @@ -17448,7 +17466,7 @@ "zh-chs": "沒有終端訪問", "xloc": [ "default-mobile.handlebars->9->307", - "default.handlebars->29->1242" + "default.handlebars->29->1244" ] }, { @@ -17465,7 +17483,7 @@ "ru": "Нет инструментов (MeshCmd/Router)", "zh-chs": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->29->1463" + "default.handlebars->29->1465" ] }, { @@ -17482,8 +17500,8 @@ "ru": "Нет общих групп устройств", "zh-chs": "沒有共同的設備組", "xloc": [ - "default.handlebars->29->1504", - "default.handlebars->29->1606" + "default.handlebars->29->1506", + "default.handlebars->29->1613" ] }, { @@ -17536,7 +17554,7 @@ "ru": "Ни одно устройство не включено ни в одну из групп, чтобы добавить группу нажмите \\\"Группы\\\" устройств.", "zh-chs": "任何組中均不包含任何設備,請單擊設備的“組”以添加到組中。", "xloc": [ - "default.handlebars->29->186" + "default.handlebars->29->187" ] }, { @@ -17553,7 +17571,7 @@ "ru": "Устройства не найдены.", "zh-chs": "找不到設備。", "xloc": [ - "default.handlebars->29->444" + "default.handlebars->29->445" ] }, { @@ -17570,8 +17588,8 @@ "ru": "Нет общих устройств", "zh-chs": "沒有共同的設備", "xloc": [ - "default.handlebars->29->1510", - "default.handlebars->29->1618" + "default.handlebars->29->1512", + "default.handlebars->29->1625" ] }, { @@ -17588,7 +17606,7 @@ "ru": "В группе нет устройств.", "zh-chs": "該設備組中沒有設備。", "xloc": [ - "default.handlebars->29->1329" + "default.handlebars->29->1331" ] }, { @@ -17606,7 +17624,7 @@ "zh-chs": "該組中沒有設備", "xloc": [ "default-mobile.handlebars->9->107", - "default.handlebars->29->190" + "default.handlebars->29->191" ] }, { @@ -17623,7 +17641,7 @@ "ru": "Нет устройств, соответствующих этому запросу.", "zh-chs": "沒有與此搜索匹配的設備。", "xloc": [ - "default.handlebars->29->187" + "default.handlebars->29->188" ] }, { @@ -17640,7 +17658,7 @@ "ru": "Не найдено устройств с тегом.", "zh-chs": "找不到帶有標籤的設備。", "xloc": [ - "default.handlebars->29->195" + "default.handlebars->29->196" ] }, { @@ -17657,7 +17675,7 @@ "ru": "Группы не найдены.", "zh-chs": "找不到群組。", "xloc": [ - "default.handlebars->29->1465" + "default.handlebars->29->1467" ] }, { @@ -17674,7 +17692,7 @@ "ru": "Информации об этом устройстве нет", "zh-chs": "沒有此設備的信息。", "xloc": [ - "default.handlebars->29->818" + "default.handlebars->29->819" ] }, { @@ -17691,7 +17709,7 @@ "ru": "Местоположение не найдено.", "zh-chs": "找不到位置。", "xloc": [ - "default.handlebars->29->446" + "default.handlebars->29->447" ] }, { @@ -17725,7 +17743,7 @@ "ru": "Других групп устройств такого же типа не существует.", "zh-chs": "沒有其他相同類型的設備組。", "xloc": [ - "default.handlebars->29->635" + "default.handlebars->29->636" ] }, { @@ -17759,7 +17777,7 @@ "ru": "Нет серверных прав", "zh-chs": "沒有服務器權限", "xloc": [ - "default.handlebars->29->1530" + "default.handlebars->29->1532" ] }, { @@ -17776,7 +17794,7 @@ "ru": "Нет членства в группах пользователей", "zh-chs": "沒有用戶組成員身份", "xloc": [ - "default.handlebars->29->1612" + "default.handlebars->29->1619" ] }, { @@ -17793,7 +17811,7 @@ "ru": "Пользователи не найдены.", "zh-chs": "未找到相應的用戶。", "xloc": [ - "default.handlebars->29->1387" + "default.handlebars->29->1389" ] }, { @@ -17807,7 +17825,7 @@ "ru": "Нет пользователей со специальными правами доступа к устройству", "zh-chs": "没有拥有特殊设备权限的用户", "xloc": [ - "default.handlebars->29->561" + "default.handlebars->29->562" ] }, { @@ -17868,27 +17886,28 @@ "default-mobile.handlebars->9->253", "default-mobile.handlebars->9->286", "default-mobile.handlebars->9->85", - "default.handlebars->29->1116", - "default.handlebars->29->1122", - "default.handlebars->29->1126", - "default.handlebars->29->1138", - "default.handlebars->29->1143", + "default.handlebars->29->1118", + "default.handlebars->29->1124", + "default.handlebars->29->1128", + "default.handlebars->29->1140", "default.handlebars->29->1145", - "default.handlebars->29->1320", - "default.handlebars->29->1339", - "default.handlebars->29->1484", + "default.handlebars->29->1147", + "default.handlebars->29->1322", + "default.handlebars->29->1341", "default.handlebars->29->1486", - "default.handlebars->29->1550", - "default.handlebars->29->1554", - "default.handlebars->29->1566", - "default.handlebars->29->157", - "default.handlebars->29->173", + "default.handlebars->29->1488", + "default.handlebars->29->1544", + "default.handlebars->29->1553", + "default.handlebars->29->1557", + "default.handlebars->29->1569", + "default.handlebars->29->158", "default.handlebars->29->174", - "default.handlebars->29->451", - "default.handlebars->29->461", + "default.handlebars->29->175", + "default.handlebars->29->452", "default.handlebars->29->462", - "default.handlebars->29->505", - "default.handlebars->29->518", + "default.handlebars->29->463", + "default.handlebars->29->506", + "default.handlebars->29->519", "default.handlebars->29->63", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] @@ -17924,7 +17943,7 @@ "ru": "Норвежский", "zh-chs": "挪威", "xloc": [ - "default.handlebars->29->979" + "default.handlebars->29->981" ] }, { @@ -17941,7 +17960,7 @@ "ru": "Норвежский (Букмол)", "zh-chs": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->29->980" + "default.handlebars->29->982" ] }, { @@ -17958,7 +17977,7 @@ "ru": "Норвежский (Нюнорск)", "zh-chs": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->29->981" + "default.handlebars->29->983" ] }, { @@ -17976,8 +17995,8 @@ "zh-chs": "未激活(輸入)", "xloc": [ "default-mobile.handlebars->9->186", - "default.handlebars->29->467", - "default.handlebars->29->785" + "default.handlebars->29->468", + "default.handlebars->29->786" ] }, { @@ -17995,8 +18014,8 @@ "zh-chs": "未激活(預)", "xloc": [ "default-mobile.handlebars->9->185", - "default.handlebars->29->466", - "default.handlebars->29->784" + "default.handlebars->29->467", + "default.handlebars->29->785" ] }, { @@ -18013,8 +18032,8 @@ "ru": "Не подключен", "zh-chs": "未連接", "xloc": [ - "default.handlebars->29->1316", - "default.handlebars->29->1324" + "default.handlebars->29->1318", + "default.handlebars->29->1326" ] }, { @@ -18031,7 +18050,7 @@ "ru": "Неизвестный", "zh-chs": "未知", "xloc": [ - "default.handlebars->29->795" + "default.handlebars->29->796" ] }, { @@ -18048,7 +18067,7 @@ "ru": "Не задано", "zh-chs": "沒有設置", "xloc": [ - "default.handlebars->29->1535" + "default.handlebars->29->1537" ] }, { @@ -18065,7 +18084,7 @@ "ru": "не подтверждено", "zh-chs": "未經審核的", "xloc": [ - "default.handlebars->29->1588" + "default.handlebars->29->1595" ] }, { @@ -18082,12 +18101,12 @@ "ru": "Примечания", "zh-chs": "筆記", "xloc": [ - "default.handlebars->29->1153", - "default.handlebars->29->1574", - "default.handlebars->29->521", - "default.handlebars->29->573", - "default.handlebars->29->592", - "default.handlebars->29->599" + "default.handlebars->29->1155", + "default.handlebars->29->1577", + "default.handlebars->29->522", + "default.handlebars->29->574", + "default.handlebars->29->593", + "default.handlebars->29->600" ] }, { @@ -18121,8 +18140,8 @@ "ru": "Настройки уведомлений", "zh-chs": "通知設置", "xloc": [ - "default.handlebars->29->1067", - "default.handlebars->29->1315", + "default.handlebars->29->1069", + "default.handlebars->29->1317", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -18140,7 +18159,7 @@ "ru": "Уведомления также должны быть включены в настройках учетной записи.", "zh-chs": "通知設置還必須在帳戶設置中啟用。", "xloc": [ - "default.handlebars->29->1311" + "default.handlebars->29->1313" ] }, { @@ -18157,7 +18176,7 @@ "ru": "Звук уведомления", "zh-chs": "通知聲音。", "xloc": [ - "default.handlebars->29->1062" + "default.handlebars->29->1064" ] }, { @@ -18174,7 +18193,7 @@ "ru": "Уведомления", "zh-chs": "通知事項", "xloc": [ - "default.handlebars->29->1144" + "default.handlebars->29->1146" ] }, { @@ -18191,7 +18210,7 @@ "ru": "Уведомить", "zh-chs": "通知", "xloc": [ - "default.handlebars->29->1578" + "default.handlebars->29->1581" ] }, { @@ -18208,9 +18227,9 @@ "ru": "Уведомить пользователя", "zh-chs": "通知使用者", "xloc": [ - "default.handlebars->29->1210", - "default.handlebars->29->1214", - "default.handlebars->29->1217" + "default.handlebars->29->1212", + "default.handlebars->29->1216", + "default.handlebars->29->1219" ] }, { @@ -18227,7 +18246,7 @@ "ru": "Уведомить {0}", "zh-chs": "通知{0}", "xloc": [ - "default.handlebars->29->1417" + "default.handlebars->29->1419" ] }, { @@ -18246,8 +18265,8 @@ "xloc": [ "default-mobile.handlebars->9->52", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->29->1109", - "default.handlebars->29->492", + "default.handlebars->29->1111", + "default.handlebars->29->493", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -18286,7 +18305,7 @@ "ru": "Окситанский", "zh-chs": "歐舒丹", "xloc": [ - "default.handlebars->29->982" + "default.handlebars->29->984" ] }, { @@ -18303,7 +18322,7 @@ "ru": "Произошло в {0}", "zh-chs": "發生在{0}", "xloc": [ - "default.handlebars->29->1637" + "default.handlebars->29->1644" ] }, { @@ -18320,7 +18339,7 @@ "ru": "Оффлайн пользователи", "zh-chs": "離線用戶", "xloc": [ - "default.handlebars->29->1384" + "default.handlebars->29->1386" ] }, { @@ -18338,7 +18357,7 @@ "zh-chs": "舊密碼:", "xloc": [ "default-mobile.handlebars->9->54", - "default.handlebars->29->1079" + "default.handlebars->29->1081" ] }, { @@ -18373,7 +18392,7 @@ "ru": "Онлайн пользователи", "zh-chs": "在線用戶", "xloc": [ - "default.handlebars->29->1383" + "default.handlebars->29->1385" ] }, { @@ -18391,8 +18410,8 @@ "zh-chs": "只能編輯小於200k的文件。", "xloc": [ "default-mobile.handlebars->9->263", - "default.handlebars->29->424", - "default.handlebars->29->732" + "default.handlebars->29->425", + "default.handlebars->29->733" ] }, { @@ -18427,7 +18446,7 @@ "ru": "Открыть страницу на устройстве", "zh-chs": "在設備上打開頁面", "xloc": [ - "default.handlebars->29->601" + "default.handlebars->29->602" ] }, { @@ -18444,7 +18463,7 @@ "ru": "Открыть терминал XTerm", "zh-chs": "打開XTerm終端", "xloc": [ - "default.handlebars->29->535" + "default.handlebars->29->536" ] }, { @@ -18495,11 +18514,11 @@ "ru": "Операционная система", "zh-chs": "操作系統", "xloc": [ - "default.handlebars->29->280", - "default.handlebars->29->309", - "default.handlebars->29->489", - "default.handlebars->29->653", - "default.handlebars->29->763" + "default.handlebars->29->281", + "default.handlebars->29->310", + "default.handlebars->29->490", + "default.handlebars->29->654", + "default.handlebars->29->764" ] }, { @@ -18517,10 +18536,10 @@ "zh-chs": "運作方式", "xloc": [ "default-mobile.handlebars->9->220", - "default.handlebars->29->1408", - "default.handlebars->29->1473", - "default.handlebars->29->384", - "default.handlebars->29->610" + "default.handlebars->29->1410", + "default.handlebars->29->1475", + "default.handlebars->29->385", + "default.handlebars->29->611" ] }, { @@ -18537,7 +18556,7 @@ "ru": "Организация", "zh-chs": "組織", "xloc": [ - "default.handlebars->29->270" + "default.handlebars->29->271" ] }, { @@ -18554,7 +18573,7 @@ "ru": "Ория", "zh-chs": "奧里亞", "xloc": [ - "default.handlebars->29->983" + "default.handlebars->29->985" ] }, { @@ -18571,7 +18590,7 @@ "ru": "Оромо", "zh-chs": "奧羅莫", "xloc": [ - "default.handlebars->29->984" + "default.handlebars->29->986" ] }, { @@ -18622,7 +18641,7 @@ "ru": "Устаревший", "zh-chs": "過時的", "xloc": [ - "default.handlebars->29->491" + "default.handlebars->29->492" ] }, { @@ -18639,7 +18658,7 @@ "ru": "Собственный процесс", "zh-chs": "自己的過程", "xloc": [ - "default.handlebars->29->694" + "default.handlebars->29->695" ] }, { @@ -18657,7 +18676,7 @@ "zh-chs": "PID", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", - "default.handlebars->29->690", + "default.handlebars->29->691", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -18675,7 +18694,7 @@ "ru": "Part Number", "zh-chs": "零件號", "xloc": [ - "default.handlebars->29->811" + "default.handlebars->29->812" ] }, { @@ -18692,7 +18711,7 @@ "ru": "Частично", "zh-chs": "部分的", "xloc": [ - "default.handlebars->29->1398" + "default.handlebars->29->1400" ] }, { @@ -18739,7 +18758,7 @@ "xloc": [ "default-mobile.handlebars->9->290", "default-mobile.handlebars->9->73", - "default.handlebars->29->1104" + "default.handlebars->29->1106" ] }, { @@ -18756,7 +18775,7 @@ "ru": "Частичные права", "zh-chs": "部分權利", "xloc": [ - "default.handlebars->29->1533" + "default.handlebars->29->1535" ] }, { @@ -18791,15 +18810,15 @@ "zh-chs": "密碼", "xloc": [ "default-mobile.handlebars->9->223", - "default.handlebars->29->1440", - "default.handlebars->29->1441", - "default.handlebars->29->1546", - "default.handlebars->29->1548", - "default.handlebars->29->1591", - "default.handlebars->29->1592", - "default.handlebars->29->235", - "default.handlebars->29->264", - "default.handlebars->29->616" + "default.handlebars->29->1442", + "default.handlebars->29->1443", + "default.handlebars->29->1549", + "default.handlebars->29->1551", + "default.handlebars->29->1598", + "default.handlebars->29->1599", + "default.handlebars->29->236", + "default.handlebars->29->265", + "default.handlebars->29->617" ] }, { @@ -18892,7 +18911,7 @@ "ru": "Подсказка пароля", "zh-chs": "密碼提示", "xloc": [ - "default.handlebars->29->1593" + "default.handlebars->29->1600" ] }, { @@ -18910,7 +18929,7 @@ "zh-chs": "密碼提示:", "xloc": [ "default-mobile.handlebars->9->57", - "default.handlebars->29->1082" + "default.handlebars->29->1084" ] }, { @@ -18927,7 +18946,7 @@ "ru": "Пароль не совпадает", "zh-chs": "密碼不符合", "xloc": [ - "default.handlebars->29->1184" + "default.handlebars->29->1186" ] }, { @@ -18962,8 +18981,8 @@ "ru": "Пароль*", "zh-chs": "密碼*", "xloc": [ - "default.handlebars->29->1182", - "default.handlebars->29->1183" + "default.handlebars->29->1184", + "default.handlebars->29->1185" ] }, { @@ -18983,8 +19002,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->9->49", "default-mobile.handlebars->9->50", - "default.handlebars->29->1074", - "default.handlebars->29->1075", + "default.handlebars->29->1076", + "default.handlebars->29->1077", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1", @@ -19015,9 +19034,9 @@ "default-mobile.handlebars->9->97", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->29->1361", - "default.handlebars->29->715", - "default.handlebars->29->737", + "default.handlebars->29->1363", + "default.handlebars->29->716", + "default.handlebars->29->738", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" @@ -19071,7 +19090,7 @@ "ru": "Произвести действие агента", "zh-chs": "執行代理動作", "xloc": [ - "default.handlebars->29->827" + "default.handlebars->29->828" ] }, { @@ -19088,7 +19107,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM) для группы \\\"{0}\\\",скачав инструмент MeshCMD и запустив его следующим образом:", "zh-chs": "通過下載MeshCMD工具並像下面這樣運行它,以執行Intel AMT管理員控制模式(ACM)激活以將 “{0}” 組:", "xloc": [ - "default.handlebars->29->242" + "default.handlebars->29->243" ] }, { @@ -19105,8 +19124,8 @@ "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).", "zh-chs": "執行英特爾AMT管理員控制模式(ACM)激活。", "xloc": [ - "default.handlebars->29->1163", - "default.handlebars->29->223" + "default.handlebars->29->1165", + "default.handlebars->29->224" ] }, { @@ -19123,7 +19142,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM) для группы \\\"{0}\\\",скачав инструмент MeshCMD и запустив его следующим образом:", "zh-chs": "通過下載MeshCMD工具並像下面這樣運行,來執行Intel AMT客戶端控制模式(CCM)激活以將\\“{0}\\”分組:", "xloc": [ - "default.handlebars->29->240" + "default.handlebars->29->241" ] }, { @@ -19140,8 +19159,8 @@ "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).", "zh-chs": "執行英特爾AMT客戶端控制模式(CCM)激活。", "xloc": [ - "default.handlebars->29->1161", - "default.handlebars->29->221" + "default.handlebars->29->1163", + "default.handlebars->29->222" ] }, { @@ -19158,7 +19177,7 @@ "ru": "Управление питанием устройства", "zh-chs": "在設備上執行電源操作", "xloc": [ - "default.handlebars->29->520", + "default.handlebars->29->521", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -19179,8 +19198,8 @@ "zh-chs": "權限", "xloc": [ "default-mobile.handlebars->9->337", - "default.handlebars->29->1289", - "default.handlebars->29->1382" + "default.handlebars->29->1291", + "default.handlebars->29->1384" ] }, { @@ -19197,7 +19216,7 @@ "ru": "Персидский/Иран", "zh-chs": "波斯/伊朗", "xloc": [ - "default.handlebars->29->985" + "default.handlebars->29->987" ] }, { @@ -19207,16 +19226,17 @@ "default-mobile.handlebars->9->31", "default-mobile.handlebars->9->34", "default-mobile.handlebars->9->36", - "default.handlebars->29->142", - "default.handlebars->29->838", - "default.handlebars->29->840" + "default.handlebars->29->143", + "default.handlebars->29->1592", + "default.handlebars->29->839", + "default.handlebars->29->842" ] }, { "en": "Phone Number", "nl": "Telefoonnummer", "xloc": [ - "default.handlebars->29->1541" + "default.handlebars->29->1543" ] }, { @@ -19224,7 +19244,8 @@ "nl": "Telefoonnummer", "xloc": [ "default-mobile.handlebars->9->35", - "default.handlebars->29->839" + "default.handlebars->29->1591", + "default.handlebars->29->841" ] }, { @@ -19255,7 +19276,7 @@ "ru": "Поместить узел сюда", "zh-chs": "將節點放在這裡", "xloc": [ - "default.handlebars->29->439" + "default.handlebars->29->440" ] }, { @@ -19306,7 +19327,7 @@ "ru": "Внимание, понижение версии не рекомендуется. Делайте это только в том случае, если недавнее обновление что-то сломало.", "zh-chs": "請注意,不建議降級。請僅在最近的升級損壞了某些情況時才這樣做。", "xloc": [ - "default.handlebars->29->169" + "default.handlebars->29->170" ] }, { @@ -19342,7 +19363,7 @@ "zh-chs": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->9->45", - "default.handlebars->29->1069" + "default.handlebars->29->1071" ] }, { @@ -19359,8 +19380,8 @@ "ru": "Действие плагина", "zh-chs": "插件動作", "xloc": [ - "default.handlebars->29->168", - "default.handlebars->29->1713" + "default.handlebars->29->169", + "default.handlebars->29->1720" ] }, { @@ -19377,7 +19398,7 @@ "ru": "Ошибка плагина", "zh-chs": "插件錯誤", "xloc": [ - "default.handlebars->29->170" + "default.handlebars->29->171" ] }, { @@ -19394,7 +19415,7 @@ "ru": "PluginHandler не смог сообщение о событии:", "zh-chs": "PluginHandler無法事件消息:", "xloc": [ - "default.handlebars->29->158" + "default.handlebars->29->159" ] }, { @@ -19482,7 +19503,7 @@ "zh-chs": "政策", "xloc": [ "default-mobile.handlebars->9->72", - "default.handlebars->29->1103" + "default.handlebars->29->1105" ] }, { @@ -19499,7 +19520,7 @@ "ru": "Польский", "zh-chs": "拋光", "xloc": [ - "default.handlebars->29->986" + "default.handlebars->29->988" ] }, { @@ -19516,7 +19537,7 @@ "ru": "Португальский", "zh-chs": "葡萄牙語", "xloc": [ - "default.handlebars->29->987" + "default.handlebars->29->989" ] }, { @@ -19533,7 +19554,7 @@ "ru": "Португальский (Бразилия)", "zh-chs": "葡萄牙語(巴西)", "xloc": [ - "default.handlebars->29->988" + "default.handlebars->29->990" ] }, { @@ -19585,7 +19606,7 @@ "ru": "Состояния питания", "zh-chs": "電力國", "xloc": [ - "default.handlebars->29->1322", + "default.handlebars->29->1324", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -19606,7 +19627,7 @@ "default-mobile.handlebars->9->115", "default-mobile.handlebars->9->219", "default.handlebars->29->6", - "default.handlebars->29->607" + "default.handlebars->29->608" ] }, { @@ -19623,7 +19644,7 @@ "ru": "Выключить устройства", "zh-chs": "關閉設備電源", "xloc": [ - "default.handlebars->29->388" + "default.handlebars->29->389" ] }, { @@ -19643,7 +19664,7 @@ "default-mobile.handlebars->9->110", "default-mobile.handlebars->9->117", "default.handlebars->29->1", - "default.handlebars->29->348" + "default.handlebars->29->349" ] }, { @@ -19662,7 +19683,7 @@ "xloc": [ "default-mobile.handlebars->9->116", "default-mobile.handlebars->9->123", - "default.handlebars->29->360", + "default.handlebars->29->361", "default.handlebars->29->7" ] }, @@ -19716,7 +19737,7 @@ "zh-chs": "過程控制", "xloc": [ "default-mobile.handlebars->9->242", - "default.handlebars->29->702" + "default.handlebars->29->703" ] }, { @@ -19751,9 +19772,9 @@ "ru": "Запрос согласия пользователя", "zh-chs": "提示用戶同意", "xloc": [ - "default.handlebars->29->1211", - "default.handlebars->29->1215", - "default.handlebars->29->1218" + "default.handlebars->29->1213", + "default.handlebars->29->1217", + "default.handlebars->29->1220" ] }, { @@ -19801,7 +19822,7 @@ "ru": "Предоставление государства", "zh-chs": "供應國", "xloc": [ - "default.handlebars->29->789" + "default.handlebars->29->790" ] }, { @@ -19819,7 +19840,7 @@ "zh-chs": "公開連結", "xloc": [ "default-mobile.handlebars->9->84", - "default.handlebars->29->1346" + "default.handlebars->29->1348" ] }, { @@ -19836,7 +19857,7 @@ "ru": "Пенджаби", "zh-chs": "旁遮普語", "xloc": [ - "default.handlebars->29->989" + "default.handlebars->29->991" ] }, { @@ -19853,7 +19874,7 @@ "ru": "Пенджаби (Индия)", "zh-chs": "旁遮普(印度)", "xloc": [ - "default.handlebars->29->990" + "default.handlebars->29->992" ] }, { @@ -19870,7 +19891,7 @@ "ru": "Пенджаби (Пакистан)", "zh-chs": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->29->991" + "default.handlebars->29->993" ] }, { @@ -19887,7 +19908,7 @@ "ru": "Putty", "zh-chs": "油灰", "xloc": [ - "default.handlebars->29->540" + "default.handlebars->29->541" ] }, { @@ -19922,7 +19943,7 @@ "ru": "Кечуа", "zh-chs": "蓋丘亞族", "xloc": [ - "default.handlebars->29->992" + "default.handlebars->29->994" ] }, { @@ -19975,7 +19996,7 @@ "ru": "RDP", "zh-chs": "RDP", "xloc": [ - "default.handlebars->29->538" + "default.handlebars->29->539" ] }, { @@ -19992,7 +20013,7 @@ "ru": "Подключение RDP", "zh-chs": "RDP連接", "xloc": [ - "default.handlebars->29->421" + "default.handlebars->29->422" ] }, { @@ -20009,7 +20030,7 @@ "ru": "Порт RDP:", "zh-chs": "RDP遠程連接端口:", "xloc": [ - "default.handlebars->29->420" + "default.handlebars->29->421" ] }, { @@ -20076,7 +20097,7 @@ "ru": "RSS", "zh-chs": "的RSS", "xloc": [ - "default.handlebars->29->1683" + "default.handlebars->29->1690" ] }, { @@ -20093,7 +20114,7 @@ "ru": "Случайный пароль.", "zh-chs": "隨機化密碼。", "xloc": [ - "default.handlebars->29->1442" + "default.handlebars->29->1444" ] }, { @@ -20127,7 +20148,7 @@ "ru": "Реактивировать Intel® AMT", "zh-chs": "重新激活英特爾®AMT", "xloc": [ - "default.handlebars->29->1186" + "default.handlebars->29->1188" ] }, { @@ -20144,7 +20165,7 @@ "ru": "Области", "zh-chs": "境界", "xloc": [ - "default.handlebars->29->1450" + "default.handlebars->29->1452" ] }, { @@ -20163,8 +20184,8 @@ "xloc": [ "default-mobile.handlebars->9->256", "default-mobile.handlebars->9->90", - "default.handlebars->29->1353", - "default.handlebars->29->725" + "default.handlebars->29->1355", + "default.handlebars->29->726" ] }, { @@ -20204,7 +20225,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->DeskToolsRefreshButton", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->29->436", + "default.handlebars->29->437", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->DeskToolsRefreshButton", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p40->3->3" @@ -20242,8 +20263,8 @@ "zh-chs": "中繼", "xloc": [ "default-mobile.handlebars->9->134", - "default.handlebars->29->182", - "default.handlebars->29->375" + "default.handlebars->29->183", + "default.handlebars->29->376" ] }, { @@ -20260,7 +20281,7 @@ "ru": "Число ретрансляций", "zh-chs": "中繼計數", "xloc": [ - "default.handlebars->29->1665" + "default.handlebars->29->1672" ] }, { @@ -20277,7 +20298,7 @@ "ru": "Ошибки ретранслятора", "zh-chs": "中繼錯誤", "xloc": [ - "default.handlebars->29->1658" + "default.handlebars->29->1665" ] }, { @@ -20294,8 +20315,8 @@ "ru": "Сессии ретранслятора", "zh-chs": "接力會議", "xloc": [ - "default.handlebars->29->1664", - "default.handlebars->29->1677" + "default.handlebars->29->1671", + "default.handlebars->29->1684" ] }, { @@ -20398,7 +20419,7 @@ "ru": "Удаленный буфер обмена", "zh-chs": "遠程剪貼板", "xloc": [ - "default.handlebars->29->685" + "default.handlebars->29->686" ] }, { @@ -20417,8 +20438,8 @@ "xloc": [ "default-mobile.handlebars->9->304", "default-mobile.handlebars->9->322", - "default.handlebars->29->1238", - "default.handlebars->29->1272" + "default.handlebars->29->1240", + "default.handlebars->29->1274" ] }, { @@ -20436,8 +20457,8 @@ "zh-chs": "遠程桌面設置", "xloc": [ "default-mobile.handlebars->9->239", - "default.handlebars->29->214", - "default.handlebars->29->677" + "default.handlebars->29->215", + "default.handlebars->29->678" ] }, { @@ -20454,7 +20475,7 @@ "ru": "Ввод с удаленной клавиатуры", "zh-chs": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->29->683" + "default.handlebars->29->684" ] }, { @@ -20504,8 +20525,8 @@ "xloc": [ "default-mobile.handlebars->9->305", "default-mobile.handlebars->9->327", - "default.handlebars->29->1239", - "default.handlebars->29->1277" + "default.handlebars->29->1241", + "default.handlebars->29->1279" ] }, { @@ -20522,7 +20543,7 @@ "ru": "Удаленный буфер обмена действителен в течении 60 секунд.", "zh-chs": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->29->684" + "default.handlebars->29->685" ] }, { @@ -20590,8 +20611,8 @@ "en": "Remove Device Group Permissions", "nl": "Apparaatgroepmachtigingen verwijderen", "xloc": [ - "default.handlebars->29->1514", - "default.handlebars->29->1632" + "default.handlebars->29->1516", + "default.handlebars->29->1639" ] }, { @@ -20599,8 +20620,8 @@ "en": "Remove Device Permissions", "nl": "Apparaatmachtigingen verwijderen", "xloc": [ - "default.handlebars->29->1512", - "default.handlebars->29->1619" + "default.handlebars->29->1514", + "default.handlebars->29->1626" ] }, { @@ -20622,7 +20643,7 @@ "en": "Remove User Group Membership", "nl": "Lidmaatschap van gebruikersgroep verwijderen", "xloc": [ - "default.handlebars->29->1628" + "default.handlebars->29->1635" ] }, { @@ -20630,8 +20651,8 @@ "en": "Remove User Group Permissions", "nl": "Gebruikersgroepmachtigingen verwijderen", "xloc": [ - "default.handlebars->29->1294", - "default.handlebars->29->1624" + "default.handlebars->29->1296", + "default.handlebars->29->1631" ] }, { @@ -20639,7 +20660,7 @@ "en": "Remove User Membership", "nl": "Gebruikerslidmaatschap verwijderen", "xloc": [ - "default.handlebars->29->1522" + "default.handlebars->29->1524" ] }, { @@ -20647,8 +20668,8 @@ "en": "Remove User Permissions", "nl": "Gebruikersmachtigingen verwijderen", "xloc": [ - "default.handlebars->29->1292", - "default.handlebars->29->1621" + "default.handlebars->29->1294", + "default.handlebars->29->1628" ] }, { @@ -20665,7 +20686,7 @@ "ru": "Удалить все двухфакторные аутентификации.", "zh-chs": "刪除所有第二因素驗證。", "xloc": [ - "default.handlebars->29->1596" + "default.handlebars->29->1603" ] }, { @@ -20682,7 +20703,7 @@ "ru": "Удалить все прошлые события для этого userid.", "zh-chs": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->29->1444" + "default.handlebars->29->1446" ] }, { @@ -20699,7 +20720,7 @@ "ru": "Удалить устройство при отключении", "zh-chs": "斷開連接後移除設備", "xloc": [ - "default.handlebars->29->1219" + "default.handlebars->29->1221" ] }, { @@ -20716,7 +20737,7 @@ "ru": "Удалить местоположение узла", "zh-chs": "刪除節點位置", "xloc": [ - "default.handlebars->29->428" + "default.handlebars->29->429" ] }, { @@ -20724,7 +20745,7 @@ "nl": "Verwijder telefoonnummer", "xloc": [ "default-mobile.handlebars->9->33", - "default.handlebars->29->837" + "default.handlebars->29->838" ] }, { @@ -20741,7 +20762,7 @@ "ru": "Удалить это устройство", "zh-chs": "刪除此設備", "xloc": [ - "default.handlebars->29->527" + "default.handlebars->29->528" ] }, { @@ -20755,7 +20776,7 @@ "ru": "Удалить этого пользователя", "zh-chs": "删除该用户", "xloc": [ - "default.handlebars->29->1580" + "default.handlebars->29->1583" ] }, { @@ -20772,7 +20793,7 @@ "ru": "Удалить членство пользователя в группе", "zh-chs": "刪除用戶組成員身份", "xloc": [ - "default.handlebars->29->1610" + "default.handlebars->29->1617" ] }, { @@ -20780,7 +20801,7 @@ "en": "Remove user group rights to this device", "nl": "Gebruikersrechten voor dit apparaat verwijderen", "xloc": [ - "default.handlebars->29->1508" + "default.handlebars->29->1510" ] }, { @@ -20797,8 +20818,8 @@ "ru": "Удалить права группы пользователей для этой группы устройств", "zh-chs": "刪除該設備組的用戶組權限", "xloc": [ - "default.handlebars->29->1502", - "default.handlebars->29->557" + "default.handlebars->29->1504", + "default.handlebars->29->558" ] }, { @@ -20815,11 +20836,11 @@ "ru": "Удалить права пользователя для этой группы устройств", "zh-chs": "刪除此設備組的用戶權限", "xloc": [ - "default.handlebars->29->1170", - "default.handlebars->29->1496", - "default.handlebars->29->1604", - "default.handlebars->29->1616", - "default.handlebars->29->558" + "default.handlebars->29->1172", + "default.handlebars->29->1498", + "default.handlebars->29->1611", + "default.handlebars->29->1623", + "default.handlebars->29->559" ] }, { @@ -20840,9 +20861,9 @@ "default-mobile.handlebars->9->94", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->29->1357", - "default.handlebars->29->422", - "default.handlebars->29->729", + "default.handlebars->29->1359", + "default.handlebars->29->423", + "default.handlebars->29->730", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->filesContextMenu->cxfilerename->0" @@ -20862,7 +20883,7 @@ "ru": "Требования: ", "zh-chs": "要求:", "xloc": [ - "default.handlebars->29->1083" + "default.handlebars->29->1085" ] }, { @@ -20880,8 +20901,8 @@ "zh-chs": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->58", - "default.handlebars->29->1447", - "default.handlebars->29->1594" + "default.handlebars->29->1449", + "default.handlebars->29->1601" ] }, { @@ -20898,7 +20919,7 @@ "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере", "zh-chs": "需要瀏覽器中的Microsoft ClickOnce支持", "xloc": [ - "default.handlebars->29->537" + "default.handlebars->29->538" ] }, { @@ -20915,8 +20936,8 @@ "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере.", "zh-chs": "在瀏覽器中需要Microsoft ClickOnce支持。", "xloc": [ - "default.handlebars->29->539", - "default.handlebars->29->541" + "default.handlebars->29->540", + "default.handlebars->29->542" ] }, { @@ -20942,7 +20963,7 @@ "zh-chs": "重啟", "xloc": [ "default-mobile.handlebars->9->218", - "default.handlebars->29->606", + "default.handlebars->29->607", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -21014,7 +21035,7 @@ "ru": "Отправить в перезагрузку", "zh-chs": "重置設備", "xloc": [ - "default.handlebars->29->387" + "default.handlebars->29->388" ] }, { @@ -21048,7 +21069,7 @@ "ru": "Перезапуск", "zh-chs": "重新開始", "xloc": [ - "default.handlebars->29->700", + "default.handlebars->29->701", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -21066,7 +21087,7 @@ "ru": "Восстановить сервер", "zh-chs": "還原伺服器", "xloc": [ - "default.handlebars->29->1110" + "default.handlebars->29->1112" ] }, { @@ -21100,7 +21121,7 @@ "ru": "Восстановить сервер из резервной копии, это удалит существующие данные сервера . Продолжайте дальше только если знаете, что делаете.", "zh-chs": "使用備份還原服務器,這將刪除現有服務器數據。僅當您知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->29->1107" + "default.handlebars->29->1109" ] }, { @@ -21117,7 +21138,7 @@ "ru": "Ограничения", "zh-chs": "限制條件", "xloc": [ - "default.handlebars->29->1534" + "default.handlebars->29->1536" ] }, { @@ -21134,7 +21155,7 @@ "ru": "Ретороманский", "zh-chs": "修羅羅馬式", "xloc": [ - "default.handlebars->29->993" + "default.handlebars->29->995" ] }, { @@ -21151,7 +21172,7 @@ "ru": "Румынский", "zh-chs": "羅馬尼亞語", "xloc": [ - "default.handlebars->29->994" + "default.handlebars->29->996" ] }, { @@ -21168,7 +21189,7 @@ "ru": "Румынский (Молдавия)", "zh-chs": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->29->995" + "default.handlebars->29->997" ] }, { @@ -21187,8 +21208,8 @@ "xloc": [ "default-mobile.handlebars->9->250", "default-mobile.handlebars->9->76", - "default.handlebars->29->1330", - "default.handlebars->29->719" + "default.handlebars->29->1332", + "default.handlebars->29->720" ] }, { @@ -21205,8 +21226,8 @@ "ru": "Корневой сертификат", "zh-chs": "根證書", "xloc": [ - "default.handlebars->29->260", - "default.handlebars->29->267" + "default.handlebars->29->261", + "default.handlebars->29->268" ] }, { @@ -21223,8 +21244,8 @@ "ru": "Файл корневого сертификата", "zh-chs": "根證書文件", "xloc": [ - "default.handlebars->29->262", - "default.handlebars->29->269" + "default.handlebars->29->263", + "default.handlebars->29->270" ] }, { @@ -21293,7 +21314,7 @@ "ru": "Router", "zh-chs": "路由器", "xloc": [ - "default.handlebars->29->201" + "default.handlebars->29->202" ] }, { @@ -21310,7 +21331,7 @@ "ru": "Русский", "zh-chs": "俄語", "xloc": [ - "default.handlebars->29->996" + "default.handlebars->29->998" ] }, { @@ -21327,19 +21348,25 @@ "ru": "Русский (Молдавия)", "zh-chs": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->29->997" + "default.handlebars->29->999" ] }, { "en": "SMS", "nl": "SMS", "xloc": [ - "default.handlebars->29->1571", - "default.handlebars->29->1576", + "default.handlebars->29->1574", + "default.handlebars->29->1579", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3" ] }, + { + "en": "SMS capable phone number for this user.", + "xloc": [ + "default.handlebars->29->1589" + ] + }, { "en": "SMS sent.", "nl": "SMS verzonden.", @@ -21362,7 +21389,7 @@ "ru": "Такое же как имя устройства", "zh-chs": "與設備名稱相同", "xloc": [ - "default.handlebars->29->232" + "default.handlebars->29->233" ] }, { @@ -21379,15 +21406,15 @@ "ru": "Саамский", "zh-chs": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->29->998" + "default.handlebars->29->1000" ] }, { "en": "Sample IP range values", "nl": "Voorbeeld IP bereikwaarden", "xloc": [ - "default.handlebars->29->152", - "default.handlebars->29->156" + "default.handlebars->29->153", + "default.handlebars->29->157" ] }, { @@ -21418,7 +21445,7 @@ "ru": "Санго", "zh-chs": "三鄉", "xloc": [ - "default.handlebars->29->999" + "default.handlebars->29->1001" ] }, { @@ -21435,7 +21462,7 @@ "ru": "Санскритский", "zh-chs": "梵文", "xloc": [ - "default.handlebars->29->1000" + "default.handlebars->29->1002" ] }, { @@ -21452,7 +21479,7 @@ "ru": "Сардинский", "zh-chs": "撒丁島", "xloc": [ - "default.handlebars->29->1001" + "default.handlebars->29->1003" ] }, { @@ -21486,7 +21513,7 @@ "ru": "Сохранить расположение узла", "zh-chs": "保存節點位置", "xloc": [ - "default.handlebars->29->429" + "default.handlebars->29->430" ] }, { @@ -21538,7 +21565,7 @@ "ru": "Сканировать", "zh-chs": "掃瞄", "xloc": [ - "default.handlebars->29->247" + "default.handlebars->29->248" ] }, { @@ -21555,7 +21582,7 @@ "ru": "Сканировать сеть", "zh-chs": "掃描網絡", "xloc": [ - "default.handlebars->29->220" + "default.handlebars->29->221" ] }, { @@ -21572,14 +21599,14 @@ "ru": "Сканировать на наличие Intel® AMT устройств", "zh-chs": "掃描英特爾®AMT設備", "xloc": [ - "default.handlebars->29->248" + "default.handlebars->29->249" ] }, { "en": "Scan returned no results.", "nl": "Scan leverde geen resultaten op.", "xloc": [ - "default.handlebars->29->155" + "default.handlebars->29->156" ] }, { @@ -21596,7 +21623,7 @@ "ru": "Сканирование...", "zh-chs": "掃描...", "xloc": [ - "default.handlebars->29->249" + "default.handlebars->29->250" ] }, { @@ -21613,7 +21640,7 @@ "ru": "Поиск", "zh-chs": "搜索", "xloc": [ - "default.handlebars->29->442", + "default.handlebars->29->443", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -21685,7 +21712,7 @@ "ru": "Защищено с помощью TLS", "zh-chs": "使用TLS保護", "xloc": [ - "default.handlebars->29->792" + "default.handlebars->29->793" ] }, { @@ -21703,10 +21730,10 @@ "zh-chs": "安全", "xloc": [ "default-mobile.handlebars->9->224", - "default.handlebars->29->1572", - "default.handlebars->29->236", - "default.handlebars->29->617", - "default.handlebars->29->791" + "default.handlebars->29->1575", + "default.handlebars->29->237", + "default.handlebars->29->618", + "default.handlebars->29->792" ] }, { @@ -21723,7 +21750,7 @@ "ru": "Ключ безопасности", "zh-chs": "安全密鑰", "xloc": [ - "default.handlebars->29->1569" + "default.handlebars->29->1572" ] }, { @@ -21757,12 +21784,12 @@ "ru": "Выбрать все", "zh-chs": "全選", "xloc": [ - "default.handlebars->29->1349", - "default.handlebars->29->1406", - "default.handlebars->29->1471", - "default.handlebars->29->380", - "default.handlebars->29->721", - "default.handlebars->29->723", + "default.handlebars->29->1351", + "default.handlebars->29->1408", + "default.handlebars->29->1473", + "default.handlebars->29->381", + "default.handlebars->29->722", + "default.handlebars->29->724", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -21785,11 +21812,11 @@ "ru": "Очистить все", "zh-chs": "選擇無", "xloc": [ - "default.handlebars->29->1348", - "default.handlebars->29->1405", - "default.handlebars->29->1470", - "default.handlebars->29->379", - "default.handlebars->29->722", + "default.handlebars->29->1350", + "default.handlebars->29->1407", + "default.handlebars->29->1472", + "default.handlebars->29->380", + "default.handlebars->29->723", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -21807,7 +21834,7 @@ "ru": "Выберите новую группу для выбранных устройств", "zh-chs": "為所選設備選擇一個新組", "xloc": [ - "default.handlebars->29->631" + "default.handlebars->29->632" ] }, { @@ -21824,7 +21851,7 @@ "ru": "Выберите новую группу для этого устройства", "zh-chs": "選擇此設備的新組", "xloc": [ - "default.handlebars->29->630" + "default.handlebars->29->631" ] }, { @@ -21841,7 +21868,7 @@ "ru": "Выберите узел для размещения", "zh-chs": "選擇要放置的節點", "xloc": [ - "default.handlebars->29->445" + "default.handlebars->29->446" ] }, { @@ -21858,7 +21885,7 @@ "ru": "Выберите действие для осуществления на всех выбранных устройствах. Действия будут выполнены только при наличии соответствующих прав.", "zh-chs": "選擇要在所有選定設備上執行的操作。僅在擁有適當權限的情況下才能執行操作。", "xloc": [ - "default.handlebars->29->383" + "default.handlebars->29->384" ] }, { @@ -21866,8 +21893,8 @@ "en": "Select an operation to perform on all selected users.", "nl": "Selecteer een bewerking die u op alle geselecteerde gebruikers wilt uitvoeren.", "xloc": [ - "default.handlebars->29->1407", - "default.handlebars->29->1472" + "default.handlebars->29->1409", + "default.handlebars->29->1474" ] }, { @@ -21885,7 +21912,7 @@ "zh-chs": "選擇要在此設備上執行的操作。", "xloc": [ "default-mobile.handlebars->9->215", - "default.handlebars->29->603" + "default.handlebars->29->604" ] }, { @@ -21921,7 +21948,7 @@ "zh-chs": "僅自我事件", "xloc": [ "default-mobile.handlebars->9->332", - "default.handlebars->29->1283" + "default.handlebars->29->1285" ] }, { @@ -21957,8 +21984,8 @@ "ru": "Отправить MQTT сообщение", "zh-chs": "發送MQTT消息", "xloc": [ - "default.handlebars->29->381", - "default.handlebars->29->608" + "default.handlebars->29->382", + "default.handlebars->29->609" ] }, { @@ -21975,21 +22002,21 @@ "ru": "Отправить MQTT сообщение", "zh-chs": "發送MQTT消息", "xloc": [ - "default.handlebars->29->623" + "default.handlebars->29->624" ] }, { "en": "Send SMS", "nl": "verstuur SMS", "xloc": [ - "default.handlebars->29->1416" + "default.handlebars->29->1418" ] }, { "en": "Send a SMS message to this user", "nl": "Stuur een SMS bericht naar deze gebruiker", "xloc": [ - "default.handlebars->29->1577" + "default.handlebars->29->1580" ] }, { @@ -22006,7 +22033,7 @@ "ru": "Отправить уведомление всем пользователям этой группы.", "zh-chs": "向該組中的所有用戶發送通知。", "xloc": [ - "default.handlebars->29->1493" + "default.handlebars->29->1495" ] }, { @@ -22023,7 +22050,7 @@ "ru": "Отправить текстовое уведомление этому пользователю.", "zh-chs": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->29->1418" + "default.handlebars->29->1420" ] }, { @@ -22037,7 +22064,7 @@ "ru": "Отправить письмо пользователю", "zh-chs": "发送电子邮件给用户", "xloc": [ - "default.handlebars->29->1401" + "default.handlebars->29->1403" ] }, { @@ -22054,7 +22081,7 @@ "ru": "Отправить ссылку для установки", "zh-chs": "發送安裝鏈接", "xloc": [ - "default.handlebars->29->281" + "default.handlebars->29->282" ] }, { @@ -22071,7 +22098,7 @@ "ru": "Отправить приглашение по email.", "zh-chs": "發送邀請電子郵件。", "xloc": [ - "default.handlebars->29->1446" + "default.handlebars->29->1448" ] }, { @@ -22131,7 +22158,7 @@ "ru": "Отправить уведомление пользователю", "zh-chs": "發送用戶通知", "xloc": [ - "default.handlebars->29->1579" + "default.handlebars->29->1582" ] }, { @@ -22148,7 +22175,7 @@ "ru": "Сербский", "zh-chs": "塞爾維亞", "xloc": [ - "default.handlebars->29->1004" + "default.handlebars->29->1006" ] }, { @@ -22165,7 +22192,7 @@ "ru": "Серийный номер", "zh-chs": "序列號", "xloc": [ - "default.handlebars->29->803" + "default.handlebars->29->804" ] }, { @@ -22182,7 +22209,7 @@ "ru": "Резервное копирование сервера", "zh-chs": "服務器備份", "xloc": [ - "default.handlebars->29->1456" + "default.handlebars->29->1458" ] }, { @@ -22199,7 +22226,7 @@ "ru": "Сертификат сервера", "zh-chs": "服務器證書", "xloc": [ - "default.handlebars->29->1693" + "default.handlebars->29->1700" ] }, { @@ -22216,7 +22243,7 @@ "ru": "База данных сервера", "zh-chs": "服務器數據庫", "xloc": [ - "default.handlebars->29->1694" + "default.handlebars->29->1701" ] }, { @@ -22235,11 +22262,11 @@ "xloc": [ "default-mobile.handlebars->9->311", "default-mobile.handlebars->9->324", - "default.handlebars->29->1246", - "default.handlebars->29->1274", - "default.handlebars->29->1453", - "default.handlebars->29->571", - "default.handlebars->29->590" + "default.handlebars->29->1248", + "default.handlebars->29->1276", + "default.handlebars->29->1455", + "default.handlebars->29->572", + "default.handlebars->29->591" ] }, { @@ -22256,8 +22283,8 @@ "ru": "Разрешения сервера", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->29->1393", - "default.handlebars->29->1464" + "default.handlebars->29->1395", + "default.handlebars->29->1466" ] }, { @@ -22274,7 +22301,7 @@ "ru": "Квота сервера", "zh-chs": "服務器配額", "xloc": [ - "default.handlebars->29->1543" + "default.handlebars->29->1546" ] }, { @@ -22291,7 +22318,7 @@ "ru": "Восстановление сервера", "zh-chs": "服務器還原", "xloc": [ - "default.handlebars->29->1457" + "default.handlebars->29->1459" ] }, { @@ -22308,7 +22335,7 @@ "ru": "Права", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->29->1542" + "default.handlebars->29->1545" ] }, { @@ -22325,7 +22352,7 @@ "ru": "Состояние сервера", "zh-chs": "服務器狀態", "xloc": [ - "default.handlebars->29->1644" + "default.handlebars->29->1651" ] }, { @@ -22359,7 +22386,7 @@ "ru": "Трассировка сервера", "zh-chs": "服務器跟踪", "xloc": [ - "default.handlebars->29->1704" + "default.handlebars->29->1711" ] }, { @@ -22376,7 +22403,7 @@ "ru": "Обновление сервера", "zh-chs": "服務器更新", "xloc": [ - "default.handlebars->29->1458" + "default.handlebars->29->1460" ] }, { @@ -22498,7 +22525,7 @@ "ru": "ServerStats.csv", "zh-chs": "ServerStats.csv", "xloc": [ - "default.handlebars->29->1685" + "default.handlebars->29->1692" ] }, { @@ -22515,7 +22542,7 @@ "ru": "Детали службы", "zh-chs": "服務詳情", "xloc": [ - "default.handlebars->29->701" + "default.handlebars->29->702" ] }, { @@ -22602,7 +22629,7 @@ "ru": "Файл с настройками", "zh-chs": "設定文件", "xloc": [ - "default.handlebars->29->328" + "default.handlebars->29->329" ] }, { @@ -22636,7 +22663,7 @@ "ru": "Установить CIRA", "zh-chs": "設置CIRA", "xloc": [ - "default.handlebars->29->255" + "default.handlebars->29->256" ] }, { @@ -22653,7 +22680,7 @@ "ru": "Метод установки", "zh-chs": "設定方法", "xloc": [ - "default.handlebars->29->253" + "default.handlebars->29->254" ] }, { @@ -22672,9 +22699,9 @@ "xloc": [ "default-mobile.handlebars->9->3", "default.handlebars->29->10", - "default.handlebars->29->204", - "default.handlebars->29->207", - "default.handlebars->29->213", + "default.handlebars->29->205", + "default.handlebars->29->208", + "default.handlebars->29->214", "xterm.handlebars->9->3" ] }, @@ -22709,7 +22736,7 @@ "ru": "Общий процесс", "zh-chs": "共享過程", "xloc": [ - "default.handlebars->29->695" + "default.handlebars->29->696" ] }, { @@ -22819,7 +22846,7 @@ "zh-chs": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->9->314", - "default.handlebars->29->1249" + "default.handlebars->29->1251" ] }, { @@ -22836,7 +22863,7 @@ "ru": "Показывать панель-уведомление", "zh-chs": "顯示連接工具欄", "xloc": [ - "default.handlebars->29->1212" + "default.handlebars->29->1214" ] }, { @@ -22853,7 +22880,7 @@ "ru": "Показать информацию о расположении устройства", "zh-chs": "顯示設備位置信息", "xloc": [ - "default.handlebars->29->531" + "default.handlebars->29->532" ] }, { @@ -22870,7 +22897,7 @@ "ru": "Показать информацию о сетевом интерфейсе устройства", "zh-chs": "顯示設備網絡接口信息", "xloc": [ - "default.handlebars->29->529" + "default.handlebars->29->530" ] }, { @@ -22921,8 +22948,8 @@ "ru": "Простой режим управления администратора (ACM)", "zh-chs": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->29->1150", - "default.handlebars->29->1173" + "default.handlebars->29->1152", + "default.handlebars->29->1175" ] }, { @@ -22939,9 +22966,9 @@ "ru": "Простой режим управления клиента (CCM)", "zh-chs": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->29->1148", - "default.handlebars->29->1176", - "default.handlebars->29->1180" + "default.handlebars->29->1150", + "default.handlebars->29->1178", + "default.handlebars->29->1182" ] }, { @@ -22958,7 +22985,7 @@ "ru": "Синдхи", "zh-chs": "信地", "xloc": [ - "default.handlebars->29->1002" + "default.handlebars->29->1004" ] }, { @@ -22975,7 +23002,7 @@ "ru": "Сингальский", "zh-chs": "僧伽羅語", "xloc": [ - "default.handlebars->29->1003" + "default.handlebars->29->1005" ] }, { @@ -23009,7 +23036,7 @@ "ru": "Размер: 100%", "zh-chs": "尺寸:100%", "xloc": [ - "default.handlebars->29->749" + "default.handlebars->29->750" ] }, { @@ -23026,7 +23053,7 @@ "ru": "Размер: 125%", "zh-chs": "尺寸:125%", "xloc": [ - "default.handlebars->29->750" + "default.handlebars->29->751" ] }, { @@ -23043,7 +23070,7 @@ "ru": "Размер: 150%", "zh-chs": "尺寸:150%", "xloc": [ - "default.handlebars->29->751" + "default.handlebars->29->752" ] }, { @@ -23060,7 +23087,7 @@ "ru": "Размер: 200%", "zh-chs": "尺寸:200%", "xloc": [ - "default.handlebars->29->752" + "default.handlebars->29->753" ] }, { @@ -23084,7 +23111,7 @@ "default.handlebars->29->2", "default.handlebars->29->3", "default.handlebars->29->4", - "default.handlebars->29->605" + "default.handlebars->29->606" ] }, { @@ -23101,7 +23128,7 @@ "ru": "Отправить в сон", "zh-chs": "睡眠裝置", "xloc": [ - "default.handlebars->29->386" + "default.handlebars->29->387" ] }, { @@ -23120,8 +23147,8 @@ "xloc": [ "default-mobile.handlebars->9->118", "default-mobile.handlebars->9->119", - "default.handlebars->29->350", - "default.handlebars->29->352" + "default.handlebars->29->351", + "default.handlebars->29->353" ] }, { @@ -23138,7 +23165,7 @@ "ru": "Словацкий", "zh-chs": "斯洛伐克文", "xloc": [ - "default.handlebars->29->1005" + "default.handlebars->29->1007" ] }, { @@ -23155,7 +23182,7 @@ "ru": "Словенский", "zh-chs": "斯洛文尼亞文", "xloc": [ - "default.handlebars->29->1006" + "default.handlebars->29->1008" ] }, { @@ -23208,7 +23235,7 @@ "ru": "Малая фокусировка", "zh-chs": "小焦點", "xloc": [ - "default.handlebars->29->680" + "default.handlebars->29->681" ] }, { @@ -23225,7 +23252,7 @@ "ru": "Програмное отключение агента", "zh-chs": "軟斷開劑", "xloc": [ - "default.handlebars->29->833" + "default.handlebars->29->834" ] }, { @@ -23243,7 +23270,7 @@ "zh-chs": "軟關", "xloc": [ "default-mobile.handlebars->9->122", - "default.handlebars->29->358" + "default.handlebars->29->359" ] }, { @@ -23277,7 +23304,7 @@ "ru": "Сомани", "zh-chs": "索馬尼", "xloc": [ - "default.handlebars->29->1007" + "default.handlebars->29->1009" ] }, { @@ -23294,7 +23321,7 @@ "ru": "Сорбский", "zh-chs": "索比亞人", "xloc": [ - "default.handlebars->29->1008" + "default.handlebars->29->1010" ] }, { @@ -23424,7 +23451,7 @@ "ru": "Испанский", "zh-chs": "西班牙文", "xloc": [ - "default.handlebars->29->1009" + "default.handlebars->29->1011" ] }, { @@ -23441,7 +23468,7 @@ "ru": "Испанский (Аргентина)", "zh-chs": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->29->1010" + "default.handlebars->29->1012" ] }, { @@ -23458,7 +23485,7 @@ "ru": "Испанский (Боливия)", "zh-chs": "西班牙語(玻利維亞)", "xloc": [ - "default.handlebars->29->1011" + "default.handlebars->29->1013" ] }, { @@ -23475,7 +23502,7 @@ "ru": "Испанский (Чили)", "zh-chs": "西班牙語(智利)", "xloc": [ - "default.handlebars->29->1012" + "default.handlebars->29->1014" ] }, { @@ -23492,7 +23519,7 @@ "ru": "Испанский (Колумбия)", "zh-chs": "西班牙語(哥倫比亞)", "xloc": [ - "default.handlebars->29->1013" + "default.handlebars->29->1015" ] }, { @@ -23509,7 +23536,7 @@ "ru": "Испанский (Коста-Рика)", "zh-chs": "西班牙語(哥斯達黎加)", "xloc": [ - "default.handlebars->29->1014" + "default.handlebars->29->1016" ] }, { @@ -23526,7 +23553,7 @@ "ru": "Испанский (Доминиканская Республика)", "zh-chs": "西班牙語(多米尼加共和國)", "xloc": [ - "default.handlebars->29->1015" + "default.handlebars->29->1017" ] }, { @@ -23543,7 +23570,7 @@ "ru": "Испанский (Эквадор)", "zh-chs": "西班牙語(厄瓜多爾)", "xloc": [ - "default.handlebars->29->1016" + "default.handlebars->29->1018" ] }, { @@ -23560,7 +23587,7 @@ "ru": "Испанский (Сальвадор)", "zh-chs": "西班牙語(薩爾瓦多)", "xloc": [ - "default.handlebars->29->1017" + "default.handlebars->29->1019" ] }, { @@ -23577,7 +23604,7 @@ "ru": "Испанский (Гватемала)", "zh-chs": "西班牙語(危地馬拉)", "xloc": [ - "default.handlebars->29->1018" + "default.handlebars->29->1020" ] }, { @@ -23594,7 +23621,7 @@ "ru": "Испанский (Гондурас)", "zh-chs": "西班牙語(洪都拉斯)", "xloc": [ - "default.handlebars->29->1019" + "default.handlebars->29->1021" ] }, { @@ -23611,7 +23638,7 @@ "ru": "Испанский (Мексика)", "zh-chs": "西班牙語(墨西哥)", "xloc": [ - "default.handlebars->29->1020" + "default.handlebars->29->1022" ] }, { @@ -23628,7 +23655,7 @@ "ru": "Испанский (Никарагуа)", "zh-chs": "西班牙語(尼加拉瓜)", "xloc": [ - "default.handlebars->29->1021" + "default.handlebars->29->1023" ] }, { @@ -23645,7 +23672,7 @@ "ru": "Испанский (Панама)", "zh-chs": "西班牙語(巴拿馬)", "xloc": [ - "default.handlebars->29->1022" + "default.handlebars->29->1024" ] }, { @@ -23662,7 +23689,7 @@ "ru": "Испанский (Парагвай)", "zh-chs": "西班牙語(巴拉圭)", "xloc": [ - "default.handlebars->29->1023" + "default.handlebars->29->1025" ] }, { @@ -23679,7 +23706,7 @@ "ru": "Испанский (Перу)", "zh-chs": "西班牙語(秘魯)", "xloc": [ - "default.handlebars->29->1024" + "default.handlebars->29->1026" ] }, { @@ -23696,7 +23723,7 @@ "ru": "Испанский (Пуэрто-Рико)", "zh-chs": "西班牙語(波多黎各)", "xloc": [ - "default.handlebars->29->1025" + "default.handlebars->29->1027" ] }, { @@ -23713,7 +23740,7 @@ "ru": "Испанский (Испания)", "zh-chs": "西班牙語(西班牙)", "xloc": [ - "default.handlebars->29->1026" + "default.handlebars->29->1028" ] }, { @@ -23730,7 +23757,7 @@ "ru": "Испанский (Уругвай)", "zh-chs": "西班牙語(烏拉圭)", "xloc": [ - "default.handlebars->29->1027" + "default.handlebars->29->1029" ] }, { @@ -23747,7 +23774,7 @@ "ru": "Испанский (Венесуэла)", "zh-chs": "西班牙語(委內瑞拉)", "xloc": [ - "default.handlebars->29->1028" + "default.handlebars->29->1030" ] }, { @@ -23790,7 +23817,7 @@ "ru": "Старт", "zh-chs": "開始", "xloc": [ - "default.handlebars->29->698" + "default.handlebars->29->699" ] }, { @@ -23807,7 +23834,7 @@ "ru": "Состояние", "zh-chs": "州", "xloc": [ - "default.handlebars->29->689", + "default.handlebars->29->690", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -23842,7 +23869,7 @@ "ru": "Статус", "zh-chs": "狀態", "xloc": [ - "default.handlebars->29->1587", + "default.handlebars->29->1594", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -23860,7 +23887,7 @@ "ru": "Стоп", "zh-chs": "停止", "xloc": [ - "default.handlebars->29->699" + "default.handlebars->29->700" ] }, { @@ -23874,7 +23901,7 @@ "ru": "Остановить процесс", "zh-chs": "停止程序", "xloc": [ - "default.handlebars->29->686" + "default.handlebars->29->687" ] }, { @@ -23892,14 +23919,14 @@ "zh-chs": "停止進程#{0} \\“ {1} \\”?", "xloc": [ "default-mobile.handlebars->9->243", - "default.handlebars->29->703" + "default.handlebars->29->704" ] }, { "en": "Storage", "nl": "Opslag", "xloc": [ - "default.handlebars->29->817" + "default.handlebars->29->818" ] }, { @@ -23933,7 +23960,7 @@ "ru": "Превышен лимит места для хранения", "zh-chs": "儲存空間超過", "xloc": [ - "default.handlebars->29->1334" + "default.handlebars->29->1336" ] }, { @@ -23950,7 +23977,7 @@ "ru": "Надежный", "zh-chs": "強大", "xloc": [ - "default.handlebars->29->1100" + "default.handlebars->29->1102" ] }, { @@ -24055,7 +24082,7 @@ "ru": "Суту", "zh-chs": "蘇圖", "xloc": [ - "default.handlebars->29->1029" + "default.handlebars->29->1031" ] }, { @@ -24072,7 +24099,7 @@ "ru": "Суахили", "zh-chs": "斯瓦希里語", "xloc": [ - "default.handlebars->29->1030" + "default.handlebars->29->1032" ] }, { @@ -24089,7 +24116,7 @@ "ru": "Шведский", "zh-chs": "瑞典", "xloc": [ - "default.handlebars->29->1031" + "default.handlebars->29->1033" ] }, { @@ -24106,7 +24133,7 @@ "ru": "Шведский (Финляндия)", "zh-chs": "瑞典語(芬蘭)", "xloc": [ - "default.handlebars->29->1032" + "default.handlebars->29->1034" ] }, { @@ -24123,7 +24150,7 @@ "ru": "Шведский (Швеция)", "zh-chs": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->29->1033" + "default.handlebars->29->1035" ] }, { @@ -24140,7 +24167,7 @@ "ru": "Синхронизировать имя устройства на сервере с именем хоста", "zh-chs": "將服務器設備名稱同步到主機名", "xloc": [ - "default.handlebars->29->1220" + "default.handlebars->29->1222" ] }, { @@ -24216,7 +24243,7 @@ "zh-chs": "TLS", "xloc": [ "default-mobile.handlebars->9->193", - "default.handlebars->29->477" + "default.handlebars->29->478" ] }, { @@ -24233,7 +24260,7 @@ "ru": "TLS не настроен", "zh-chs": "未設置TLS", "xloc": [ - "default.handlebars->29->793" + "default.handlebars->29->794" ] }, { @@ -24251,8 +24278,8 @@ "zh-chs": "需要TLS安全", "xloc": [ "default-mobile.handlebars->9->226", - "default.handlebars->29->238", - "default.handlebars->29->619" + "default.handlebars->29->239", + "default.handlebars->29->620" ] }, { @@ -24286,7 +24313,7 @@ "ru": "Тег1, Тег2, Тег3", "zh-chs": "標籤1,標籤2,標籤3", "xloc": [ - "default.handlebars->29->671" + "default.handlebars->29->672" ] }, { @@ -24306,7 +24333,7 @@ "default-mobile.handlebars->9->207", "default-mobile.handlebars->9->208", "default-mobile.handlebars->9->235", - "default.handlebars->29->670", + "default.handlebars->29->671", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -24324,7 +24351,7 @@ "ru": "Тамильский", "zh-chs": "泰米爾語", "xloc": [ - "default.handlebars->29->1034" + "default.handlebars->29->1036" ] }, { @@ -24341,7 +24368,7 @@ "ru": "Татарский", "zh-chs": "塔塔爾族", "xloc": [ - "default.handlebars->29->1035" + "default.handlebars->29->1037" ] }, { @@ -24358,7 +24385,7 @@ "ru": "Телугу", "zh-chs": "泰盧加", "xloc": [ - "default.handlebars->29->1036" + "default.handlebars->29->1038" ] }, { @@ -24375,8 +24402,8 @@ "ru": "Терминал", "zh-chs": "終奌站", "xloc": [ - "default.handlebars->29->1213", - "default.handlebars->29->432", + "default.handlebars->29->1215", + "default.handlebars->29->433", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal" ] @@ -24412,9 +24439,9 @@ "ru": "Терминал уведомление", "zh-chs": "終端通知", "xloc": [ - "default.handlebars->29->1133", - "default.handlebars->29->1561", - "default.handlebars->29->500" + "default.handlebars->29->1135", + "default.handlebars->29->1564", + "default.handlebars->29->501" ] }, { @@ -24431,9 +24458,9 @@ "ru": "Запрос терминала", "zh-chs": "終端提示", "xloc": [ - "default.handlebars->29->1132", - "default.handlebars->29->1560", - "default.handlebars->29->499" + "default.handlebars->29->1134", + "default.handlebars->29->1563", + "default.handlebars->29->500" ] }, { @@ -24489,7 +24516,7 @@ "ru": "Тайский", "zh-chs": "泰國", "xloc": [ - "default.handlebars->29->1037" + "default.handlebars->29->1039" ] }, { @@ -24524,7 +24551,7 @@ "ru": "Имя группы устройств, к которой принадлежит этот компьютер", "zh-chs": "該計算機所屬的設備組的名稱", "xloc": [ - "default.handlebars->29->456" + "default.handlebars->29->457" ] }, { @@ -24541,7 +24568,7 @@ "ru": "Имя группы устройств, к которой принадлежит этот компьютер.", "zh-chs": "該計算機所屬的設備組的名稱。", "xloc": [ - "default.handlebars->29->454" + "default.handlebars->29->455" ] }, { @@ -24558,8 +24585,8 @@ "ru": "Имя этого компьютера, указанное в операционной системе", "zh-chs": "在操作系統中設置的此計算機的名稱", "xloc": [ - "default.handlebars->29->457", - "default.handlebars->29->459" + "default.handlebars->29->458", + "default.handlebars->29->460" ] }, { @@ -24576,7 +24603,7 @@ "ru": "На данный момент уведомлений нет", "zh-chs": "目前沒有任何通知", "xloc": [ - "default.handlebars->29->1636" + "default.handlebars->29->1643" ] }, { @@ -24610,7 +24637,7 @@ "ru": "Эти настройки можно использовать для подключения MQTT для этого устройства.", "zh-chs": "這些設置可用於連接該設備的MQTT。", "xloc": [ - "default.handlebars->29->166" + "default.handlebars->29->167" ] }, { @@ -24628,7 +24655,7 @@ "zh-chs": "該帳戶無權創建新的設備組。", "xloc": [ "default-mobile.handlebars->9->61", - "default.handlebars->29->1086" + "default.handlebars->29->1088" ] }, { @@ -24662,7 +24689,7 @@ "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.", "zh-chs": "這不是安全的策略,因為代理將執行激活。", "xloc": [ - "default.handlebars->29->1198" + "default.handlebars->29->1200" ] }, { @@ -24697,7 +24724,7 @@ "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.", "zh-chs": "該策略不會影響採用ACM模式的英特爾®AMT的設備。", "xloc": [ - "default.handlebars->29->1197" + "default.handlebars->29->1199" ] }, { @@ -24765,7 +24792,7 @@ "ru": "Это добавит запись в журнал событий данного устройства.", "zh-chs": "這會將條目添加到該設備的事件日誌中。", "xloc": [ - "default.handlebars->29->598" + "default.handlebars->29->599" ] }, { @@ -24782,7 +24809,7 @@ "ru": "Это не приведет к удалению устройств с сервера, но они больше не смогут подключаться к серверу. Весь удаленный доступ к устройствам будет потерян. Устройства должны быть подключены, чтобы эта команда работала.", "zh-chs": "這不會從服務器上刪除設備,但是設備將不再能夠連接到服務器。對設備的所有遠程訪問都將丟失。必須連接設備,此命令才能起作用。", "xloc": [ - "default.handlebars->29->626" + "default.handlebars->29->627" ] }, { @@ -24799,7 +24826,7 @@ "ru": "Это не приведет к удалению этого устройства с сервера, но оно больше не сможет подключаться к серверу. Весь удаленный доступ к устройству будет потерян. Для работы этой команды устройство должно быть подключено.", "zh-chs": "這不會將該設備從服務器上刪除,但是該設備將不再能夠連接到服務器。對設備的所有遠程訪問都將丟失。必須連接設備,此命令才能起作用。", "xloc": [ - "default.handlebars->29->627" + "default.handlebars->29->628" ] }, { @@ -24816,7 +24843,7 @@ "ru": "Тигровый", "zh-chs": "蒂格雷", "xloc": [ - "default.handlebars->29->1038" + "default.handlebars->29->1040" ] }, { @@ -24850,7 +24877,7 @@ "ru": "Чтобы добавить компьютер в группу \\\"{0}\\\", выполните следующую команду. Потребуются права root.", "zh-chs": "要將計算機添加到{0},請運行以下命令。需要根憑證。", "xloc": [ - "default.handlebars->29->330" + "default.handlebars->29->331" ] }, { @@ -24867,7 +24894,7 @@ "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующие файлы со скриптами и используйте MeshCommander, чтобы запустить скрипт для настройки компьютеров.", "zh-chs": "要將新的英特爾®AMT設備添加到具有CIRA的設備組“ {0} \\”中,請下載以下腳本文件,並使用 MeshCommander 來運行腳本來配置計算機。", "xloc": [ - "default.handlebars->29->254" + "default.handlebars->29->255" ] }, { @@ -24884,7 +24911,7 @@ "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующий сертификат в качестве доверенного в Intel AMT", "zh-chs": "要將新的英特爾®AMT設備添加到具有CIRA的設備組“ {0} \\”,請在英特爾AMT中將以下證書作為受信任的根加載", "xloc": [ - "default.handlebars->29->257" + "default.handlebars->29->258" ] }, { @@ -24901,7 +24928,7 @@ "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующий сертификат в качестве доверенного в Intel AMT, выполните аутентификацию с использованием сертификата клиента со следующим общим именем и подключитесь к серверу.", "zh-chs": "要將新的英特爾®AMT設備添加到具有CIRA的設備組“ {0} \\”中,請將以下證書作為受信任的根加載到英特爾AMT中,使用具有以下通用名稱的客戶端證書進行身份驗證並連接到以下服務器。", "xloc": [ - "default.handlebars->29->266" + "default.handlebars->29->267" ] }, { @@ -24918,7 +24945,7 @@ "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Agent и установите его для управления этим компьютером. В этот агент встроена информация о текущем сервере и группе устройств.", "zh-chs": "要將新計算機添加到設備組\\“ {0} \\”,請下載網狀代理並安裝該計算機以進行管理。該代理中嵌入了服務器和設備組信息。", "xloc": [ - "default.handlebars->29->319" + "default.handlebars->29->320" ] }, { @@ -24935,7 +24962,7 @@ "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Agent и установите его для управления этим компьютером. В этот установщик агента встроена информация о текущем сервере и группе устройств.", "zh-chs": "要將新計算機添加到設備組\\“ {0} \\”,請下載網狀代理並安裝該計算機以進行管理。該代理安裝程序中嵌入了服務器和設備組信息。", "xloc": [ - "default.handlebars->29->332" + "default.handlebars->29->333" ] }, { @@ -24952,7 +24979,7 @@ "ru": "Чтобы удалить эту учетную запись, введите пароль учетной записи в оба поля и нажмите ОК.", "zh-chs": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->29->1073" + "default.handlebars->29->1075" ] }, { @@ -25031,7 +25058,7 @@ "ru": "Для удаления Mesh Agent скачайте файл ниже, запустите его и нажмите \\\"удалить\\\".", "zh-chs": "要刪除網格代理,請下載以下文件,運行並單擊\\“卸載\\”。", "xloc": [ - "default.handlebars->29->336" + "default.handlebars->29->337" ] }, { @@ -25048,7 +25075,7 @@ "ru": "Для удаления Mesh Agent выполните следующую команду. Потребуются учетные данные root.", "zh-chs": "要刪除網格代理,請運行以下命令。需要根憑證。", "xloc": [ - "default.handlebars->29->343" + "default.handlebars->29->344" ] }, { @@ -25297,7 +25324,7 @@ "ru": "Тема", "zh-chs": "話題", "xloc": [ - "default.handlebars->29->621" + "default.handlebars->29->622" ] }, { @@ -25348,7 +25375,7 @@ "ru": "Router используется для подключения к различным портам устройства через этот сервер", "zh-chs": "用於通過此服務器連接到設備的流量路由器", "xloc": [ - "default.handlebars->29->533" + "default.handlebars->29->534" ] }, { @@ -25382,7 +25409,7 @@ "ru": "Тсонга", "zh-chs": "特松加", "xloc": [ - "default.handlebars->29->1039" + "default.handlebars->29->1041" ] }, { @@ -25399,7 +25426,7 @@ "ru": "Тсвана", "zh-chs": "茨瓦納", "xloc": [ - "default.handlebars->29->1040" + "default.handlebars->29->1042" ] }, { @@ -25416,7 +25443,7 @@ "ru": "Турецкий", "zh-chs": "土耳其", "xloc": [ - "default.handlebars->29->1041" + "default.handlebars->29->1043" ] }, { @@ -25433,7 +25460,7 @@ "ru": "Туркменский", "zh-chs": "土庫曼人", "xloc": [ - "default.handlebars->29->1042" + "default.handlebars->29->1044" ] }, { @@ -25469,11 +25496,11 @@ "xloc": [ "default-mobile.handlebars->9->287", "default-mobile.handlebars->9->67", - "default.handlebars->29->1093", - "default.handlebars->29->1123", - "default.handlebars->29->1174", - "default.handlebars->29->1177", - "default.handlebars->29->696", + "default.handlebars->29->1095", + "default.handlebars->29->1125", + "default.handlebars->29->1176", + "default.handlebars->29->1179", + "default.handlebars->29->697", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, @@ -25491,7 +25518,7 @@ "ru": "Введите имя ключа, выберите поле OTP и нажмите кнопку на YubiKey™.", "zh-chs": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->29->851" + "default.handlebars->29->853" ] }, { @@ -25508,7 +25535,7 @@ "ru": "Введите имя ключа для добавления.", "zh-chs": "輸入要添加的密鑰的名稱。", "xloc": [ - "default.handlebars->29->848" + "default.handlebars->29->850" ] }, { @@ -25525,7 +25552,7 @@ "ru": "Терминал UTF8", "zh-chs": "UTF8終端", "xloc": [ - "default.handlebars->29->707" + "default.handlebars->29->708" ] }, { @@ -25542,7 +25569,7 @@ "ru": "Украинский", "zh-chs": "烏克蘭", "xloc": [ - "default.handlebars->29->1043" + "default.handlebars->29->1045" ] }, { @@ -25559,8 +25586,8 @@ "ru": "Невозможно получить доступ к устройству, пока адрес email не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес email.", "zh-chs": "在驗證電子郵件地址之前,無法訪問設備。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "xloc": [ - "default.handlebars->29->1088", - "default.handlebars->29->448" + "default.handlebars->29->1090", + "default.handlebars->29->449" ] }, { @@ -25613,8 +25640,8 @@ "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите на вкладку \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "zh-chs": "在啟用兩因素身份驗證之前,無法訪問設備。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->29->1090", - "default.handlebars->29->450" + "default.handlebars->29->1092", + "default.handlebars->29->451" ] }, { @@ -25685,7 +25712,7 @@ "ru": "Невозможно отсканировать этот диапазон адресов.", "zh-chs": "無法掃描該地址範圍。", "xloc": [ - "default.handlebars->29->151" + "default.handlebars->29->152" ] }, { @@ -25721,9 +25748,9 @@ "zh-chs": "卸載", "xloc": [ "default-mobile.handlebars->9->334", - "default.handlebars->29->1285", - "default.handlebars->29->576", - "default.handlebars->29->595" + "default.handlebars->29->1287", + "default.handlebars->29->577", + "default.handlebars->29->596" ] }, { @@ -25741,9 +25768,9 @@ "zh-chs": "卸載代理", "xloc": [ "default-mobile.handlebars->9->316", - "default.handlebars->29->1251", - "default.handlebars->29->382", - "default.handlebars->29->609" + "default.handlebars->29->1253", + "default.handlebars->29->383", + "default.handlebars->29->610" ] }, { @@ -25760,7 +25787,7 @@ "ru": "Удалить агент", "zh-chs": "卸載代理", "xloc": [ - "default.handlebars->29->629" + "default.handlebars->29->630" ] }, { @@ -25782,12 +25809,12 @@ "default-mobile.handlebars->9->181", "default-mobile.handlebars->9->182", "default.handlebars->29->13", - "default.handlebars->29->1627", - "default.handlebars->29->378", + "default.handlebars->29->1634", + "default.handlebars->29->379", "default.handlebars->29->41", "default.handlebars->29->42", - "default.handlebars->29->783", - "default.handlebars->29->790", + "default.handlebars->29->784", + "default.handlebars->29->791", "default.handlebars->29->91", "default.handlebars->29->92", "default.handlebars->29->93", @@ -25810,7 +25837,7 @@ "zh-chs": "未知#{0}", "xloc": [ "default-mobile.handlebars->9->281", - "default.handlebars->29->1118" + "default.handlebars->29->1120" ] }, { @@ -25827,7 +25854,7 @@ "ru": "Неизвестное действие", "zh-chs": "未知動作", "xloc": [ - "default.handlebars->29->1650" + "default.handlebars->29->1657" ] }, { @@ -25844,8 +25871,8 @@ "ru": "Неизвестное устройство", "zh-chs": "未知設備", "xloc": [ - "default.handlebars->29->1507", - "default.handlebars->29->1615" + "default.handlebars->29->1509", + "default.handlebars->29->1622" ] }, { @@ -25862,9 +25889,9 @@ "ru": "Неизвестная группа устройств", "zh-chs": "未知設備組", "xloc": [ - "default.handlebars->29->1501", - "default.handlebars->29->1603", - "default.handlebars->29->1654" + "default.handlebars->29->1503", + "default.handlebars->29->1610", + "default.handlebars->29->1661" ] }, { @@ -25881,7 +25908,7 @@ "ru": "Неизвестная группа", "zh-chs": "未知群組", "xloc": [ - "default.handlebars->29->1646" + "default.handlebars->29->1653" ] }, { @@ -25899,7 +25926,7 @@ "zh-chs": "未知狀態", "xloc": [ "default-mobile.handlebars->9->188", - "default.handlebars->29->469" + "default.handlebars->29->470" ] }, { @@ -25916,7 +25943,7 @@ "ru": "Неизвестная группа пользователей", "zh-chs": "未知用戶組", "xloc": [ - "default.handlebars->29->1609" + "default.handlebars->29->1616" ] }, { @@ -25934,7 +25961,7 @@ "zh-chs": "未知版本和狀態", "xloc": [ "default-mobile.handlebars->9->190", - "default.handlebars->29->471" + "default.handlebars->29->472" ] }, { @@ -25951,9 +25978,9 @@ "ru": "Неограниченно", "zh-chs": "無限", "xloc": [ - "default.handlebars->29->164", - "default.handlebars->29->292", - "default.handlebars->29->306" + "default.handlebars->29->165", + "default.handlebars->29->293", + "default.handlebars->29->307" ] }, { @@ -25961,7 +25988,7 @@ "en": "Unlock account", "nl": "Account ontgrendelen", "xloc": [ - "default.handlebars->29->1410" + "default.handlebars->29->1412" ] }, { @@ -25999,7 +26026,7 @@ "ru": "Актуально", "zh-chs": "最新", "xloc": [ - "default.handlebars->29->1711" + "default.handlebars->29->1718" ] }, { @@ -26039,11 +26066,11 @@ "default-mobile.handlebars->9->261", "default-mobile.handlebars->9->279", "default-mobile.handlebars->9->95", - "default.handlebars->29->1358", - "default.handlebars->29->1366", - "default.handlebars->29->730", - "default.handlebars->29->753", - "default.handlebars->29->756", + "default.handlebars->29->1360", + "default.handlebars->29->1368", + "default.handlebars->29->731", + "default.handlebars->29->754", + "default.handlebars->29->757", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -26061,7 +26088,7 @@ "ru": "Загрузить ядро Mesh Agent", "zh-chs": "上傳網格代理核心", "xloc": [ - "default.handlebars->29->835" + "default.handlebars->29->836" ] }, { @@ -26078,7 +26105,7 @@ "ru": "Загрузить файл ядра", "zh-chs": "上載核心文件", "xloc": [ - "default.handlebars->29->832" + "default.handlebars->29->833" ] }, { @@ -26095,7 +26122,7 @@ "ru": "Загрузить ядро по умолчанию с сервера ", "zh-chs": "上載默認服務器核心", "xloc": [ - "default.handlebars->29->829" + "default.handlebars->29->830" ] }, { @@ -26112,7 +26139,7 @@ "ru": "Загрузить ядро восстановления", "zh-chs": "上傳恢復核心", "xloc": [ - "default.handlebars->29->831" + "default.handlebars->29->832" ] }, { @@ -26129,8 +26156,8 @@ "ru": "Загрузка перезапишет 1 файл. Продолжить?", "zh-chs": "上傳將覆蓋1個文件。繼續?", "xloc": [ - "default.handlebars->29->1367", - "default.handlebars->29->754" + "default.handlebars->29->1369", + "default.handlebars->29->755" ] }, { @@ -26147,8 +26174,8 @@ "ru": "Загрузка перезапишет {0} файлов. Продолжить?", "zh-chs": "上傳將覆蓋{0}個文件。繼續?", "xloc": [ - "default.handlebars->29->1368", - "default.handlebars->29->755" + "default.handlebars->29->1370", + "default.handlebars->29->756" ] }, { @@ -26179,7 +26206,7 @@ "ru": "Верхний Сорбский", "zh-chs": "上索布族", "xloc": [ - "default.handlebars->29->1044" + "default.handlebars->29->1046" ] }, { @@ -26196,7 +26223,7 @@ "ru": "Урду", "zh-chs": "烏爾都語", "xloc": [ - "default.handlebars->29->1045" + "default.handlebars->29->1047" ] }, { @@ -26248,8 +26275,8 @@ "ru": "Использовано", "zh-chs": "用過的", "xloc": [ - "default.handlebars->29->1640", - "default.handlebars->29->1642" + "default.handlebars->29->1647", + "default.handlebars->29->1649" ] }, { @@ -26267,11 +26294,11 @@ "zh-chs": "用戶", "xloc": [ "default-mobile.handlebars->9->336", - "default.handlebars->29->1171", - "default.handlebars->29->1394", - "default.handlebars->29->1497", - "default.handlebars->29->192", - "default.handlebars->29->560" + "default.handlebars->29->1173", + "default.handlebars->29->1396", + "default.handlebars->29->1499", + "default.handlebars->29->193", + "default.handlebars->29->561" ] }, { @@ -26288,7 +26315,7 @@ "ru": "Пользователь + Файлы", "zh-chs": "用戶+文件", "xloc": [ - "default.handlebars->29->1395" + "default.handlebars->29->1397" ] }, { @@ -26305,10 +26332,10 @@ "ru": "Импорт учетной записи пользователя", "zh-chs": "用戶帳戶導入", "xloc": [ - "default.handlebars->29->1420", - "default.handlebars->29->1421", + "default.handlebars->29->1422", "default.handlebars->29->1423", - "default.handlebars->29->1425" + "default.handlebars->29->1425", + "default.handlebars->29->1427" ] }, { @@ -26325,7 +26352,7 @@ "ru": "Учетные записи пользователей", "zh-chs": "用戶帳號", "xloc": [ - "default.handlebars->29->1659" + "default.handlebars->29->1666" ] }, { @@ -26343,8 +26370,8 @@ "zh-chs": "用戶授權", "xloc": [ "default-mobile.handlebars->9->289", - "default.handlebars->29->1169", - "default.handlebars->29->556" + "default.handlebars->29->1171", + "default.handlebars->29->557" ] }, { @@ -26361,9 +26388,9 @@ "ru": "Согласие пользователя", "zh-chs": "用戶同意", "xloc": [ - "default.handlebars->29->1139", - "default.handlebars->29->1567", - "default.handlebars->29->506" + "default.handlebars->29->1141", + "default.handlebars->29->1570", + "default.handlebars->29->507" ] }, { @@ -26380,12 +26407,12 @@ "ru": "Группа пользователей", "zh-chs": "用戶組", "xloc": [ - "default.handlebars->29->1227", - "default.handlebars->29->1228", - "default.handlebars->29->1479", - "default.handlebars->29->1611", - "default.handlebars->29->1630", - "default.handlebars->29->559" + "default.handlebars->29->1229", + "default.handlebars->29->1230", + "default.handlebars->29->1481", + "default.handlebars->29->1618", + "default.handlebars->29->1637", + "default.handlebars->29->560" ] }, { @@ -26419,7 +26446,7 @@ "ru": "Членство в группах пользователей", "zh-chs": "用戶組成員資格", "xloc": [ - "default.handlebars->29->1608" + "default.handlebars->29->1615" ] }, { @@ -26436,8 +26463,8 @@ "ru": "Идентификатор пользователя", "zh-chs": "用戶標識", "xloc": [ - "default.handlebars->29->1288", - "default.handlebars->29->1538" + "default.handlebars->29->1290", + "default.handlebars->29->1540" ] }, { @@ -26454,7 +26481,7 @@ "ru": "Экспортировать список пользователей", "zh-chs": "用戶列表導出", "xloc": [ - "default.handlebars->29->1432" + "default.handlebars->29->1434" ] }, { @@ -26471,7 +26498,7 @@ "ru": "Имя пользователя", "zh-chs": "用戶名", "xloc": [ - "default.handlebars->29->1287" + "default.handlebars->29->1289" ] }, { @@ -26488,8 +26515,8 @@ "ru": "Имена пользователей", "zh-chs": "用戶名", "xloc": [ - "default.handlebars->29->1225", - "default.handlebars->29->1526" + "default.handlebars->29->1227", + "default.handlebars->29->1528" ] }, { @@ -26535,7 +26562,7 @@ "ru": "Сессии пользователя", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->29->1676" + "default.handlebars->29->1683" ] }, { @@ -26600,8 +26627,8 @@ "ru": "Использовать настройки браузера", "zh-chs": "用戶瀏覽器價值", "xloc": [ - "default.handlebars->29->1055", - "default.handlebars->29->1057" + "default.handlebars->29->1057", + "default.handlebars->29->1059" ] }, { @@ -26658,10 +26685,10 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->222", - "default.handlebars->29->1438", - "default.handlebars->29->233", - "default.handlebars->29->263", - "default.handlebars->29->615", + "default.handlebars->29->1440", + "default.handlebars->29->234", + "default.handlebars->29->264", + "default.handlebars->29->616", "player.handlebars->3->4" ] }, @@ -26718,9 +26745,9 @@ "ru": "Пользователи", "zh-chs": "用戶數", "xloc": [ - "default.handlebars->29->1467", - "default.handlebars->29->1489", - "default.handlebars->29->1675", + "default.handlebars->29->1469", + "default.handlebars->29->1491", + "default.handlebars->29->1682", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -26738,7 +26765,7 @@ "ru": "Сессии пользователей", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->29->1663" + "default.handlebars->29->1670" ] }, { @@ -26755,7 +26782,7 @@ "ru": "VT100+ (F10 = ESC+[OY)", "zh-chs": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->29->712" + "default.handlebars->29->713" ] }, { @@ -26772,7 +26799,7 @@ "ru": "Венда", "zh-chs": "文達", "xloc": [ - "default.handlebars->29->1046" + "default.handlebars->29->1048" ] }, { @@ -26789,8 +26816,8 @@ "ru": "Вендор", "zh-chs": "供應商", "xloc": [ - "default.handlebars->29->798", - "default.handlebars->29->801" + "default.handlebars->29->799", + "default.handlebars->29->802" ] }, { @@ -26798,7 +26825,7 @@ "nl": "Verificatie code:", "xloc": [ "default-mobile.handlebars->9->30", - "default.handlebars->29->141" + "default.handlebars->29->142" ] }, { @@ -26815,7 +26842,7 @@ "ru": "Проверенный", "zh-chs": "已驗證", "xloc": [ - "default.handlebars->29->1589" + "default.handlebars->29->1596" ] }, { @@ -26823,8 +26850,8 @@ "nl": "Geverifieerd telefoonnummer", "xloc": [ "default-mobile.handlebars->9->32", - "default.handlebars->29->1403", - "default.handlebars->29->836" + "default.handlebars->29->1405", + "default.handlebars->29->837" ] }, { @@ -26876,10 +26903,10 @@ "ru": "Версия", "zh-chs": "版", "xloc": [ - "default.handlebars->29->761", - "default.handlebars->29->782", - "default.handlebars->29->799", - "default.handlebars->29->804", + "default.handlebars->29->762", + "default.handlebars->29->783", + "default.handlebars->29->800", + "default.handlebars->29->805", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -26894,7 +26921,7 @@ "ru": "Версия несовместима, пожалуйста, сначала обновите установку MeshCentral", "zh-chs": "版本不兼容,请先升级您的MeshCentral安装", "xloc": [ - "default.handlebars->29->1707" + "default.handlebars->29->1714" ] }, { @@ -26929,7 +26956,7 @@ "ru": "Вьетнамский", "zh-chs": "越南文", "xloc": [ - "default.handlebars->29->1047" + "default.handlebars->29->1049" ] }, { @@ -26960,8 +26987,8 @@ "ru": "Просмотр журнала изменений", "zh-chs": "查看变更日志", "xloc": [ - "default.handlebars->29->1710", - "default.handlebars->29->1712" + "default.handlebars->29->1717", + "default.handlebars->29->1719" ] }, { @@ -26978,7 +27005,7 @@ "ru": "Посмотреть примечания этого устройства", "zh-chs": "查看有關此設備的註釋", "xloc": [ - "default.handlebars->29->522" + "default.handlebars->29->523" ] }, { @@ -26995,7 +27022,7 @@ "ru": "Посмотреть примечания этой группы устройств", "zh-chs": "查看有關此設備組的註釋", "xloc": [ - "default.handlebars->29->1154" + "default.handlebars->29->1156" ] }, { @@ -27012,7 +27039,7 @@ "ru": "Посмотреть примечания об этом пользователе", "zh-chs": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->29->1575" + "default.handlebars->29->1578" ] }, { @@ -27029,7 +27056,7 @@ "ru": "Волапукский", "zh-chs": "沃拉普克", "xloc": [ - "default.handlebars->29->1048" + "default.handlebars->29->1050" ] }, { @@ -27077,8 +27104,8 @@ "ru": "Услуга", "zh-chs": "唤醒", "xloc": [ - "default.handlebars->29->572", - "default.handlebars->29->591" + "default.handlebars->29->573", + "default.handlebars->29->592" ] }, { @@ -27097,8 +27124,8 @@ "xloc": [ "default-mobile.handlebars->9->312", "default-mobile.handlebars->9->325", - "default.handlebars->29->1247", - "default.handlebars->29->1275" + "default.handlebars->29->1249", + "default.handlebars->29->1277" ] }, { @@ -27116,7 +27143,7 @@ "zh-chs": "醒來", "xloc": [ "default-mobile.handlebars->9->216", - "default.handlebars->29->604" + "default.handlebars->29->605" ] }, { @@ -27133,7 +27160,7 @@ "ru": "Разбудить устройства", "zh-chs": "喚醒設備", "xloc": [ - "default.handlebars->29->385" + "default.handlebars->29->386" ] }, { @@ -27150,7 +27177,7 @@ "ru": "Валлонский", "zh-chs": "瓦隆", "xloc": [ - "default.handlebars->29->1049" + "default.handlebars->29->1051" ] }, { @@ -27167,7 +27194,7 @@ "ru": "Слабый", "zh-chs": "弱", "xloc": [ - "default.handlebars->29->1102" + "default.handlebars->29->1104" ] }, { @@ -27204,8 +27231,8 @@ "ru": "Веб-сервер", "zh-chs": "網絡服務器", "xloc": [ - "default.handlebars->29->1696", - "default.handlebars->29->1697" + "default.handlebars->29->1703", + "default.handlebars->29->1704" ] }, { @@ -27222,7 +27249,7 @@ "ru": "Запросы веб-сервера", "zh-chs": "Web服務器請求", "xloc": [ - "default.handlebars->29->1698" + "default.handlebars->29->1705" ] }, { @@ -27239,7 +27266,7 @@ "ru": "Ретранслятор Web Socket", "zh-chs": "Web套接字中繼", "xloc": [ - "default.handlebars->29->1699" + "default.handlebars->29->1706" ] }, { @@ -27292,7 +27319,7 @@ "ru": "Уэльский", "zh-chs": "威爾士語", "xloc": [ - "default.handlebars->29->1050" + "default.handlebars->29->1052" ] }, { @@ -27309,7 +27336,7 @@ "ru": "Когда этот параметр включен, коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->29->1296" + "default.handlebars->29->1298" ] }, { @@ -27327,7 +27354,7 @@ "zh-chs": "啟用後,每次登錄時,您都可以選擇向電子郵件帳戶接收登錄令牌,以提高安全性。", "xloc": [ "default-mobile.handlebars->9->38", - "default.handlebars->29->842" + "default.handlebars->29->844" ] }, { @@ -27344,7 +27371,7 @@ "ru": "Будет изменено при следующем входе в систему.", "zh-chs": "下次登錄時將更改。", "xloc": [ - "default.handlebars->29->1547" + "default.handlebars->29->1550" ] }, { @@ -27503,7 +27530,7 @@ "ru": "Исполняемый файл Win32", "zh-chs": "Win32可執行文件", "xloc": [ - "default.handlebars->29->643" + "default.handlebars->29->644" ] }, { @@ -27520,7 +27547,7 @@ "ru": "WinSCP", "zh-chs": "WinSCP", "xloc": [ - "default.handlebars->29->542" + "default.handlebars->29->543" ] }, { @@ -27537,7 +27564,7 @@ "ru": "Windows", "zh-chs": "視窗", "xloc": [ - "default.handlebars->29->310" + "default.handlebars->29->311" ] }, { @@ -27554,8 +27581,8 @@ "ru": "Windows (.exe)", "zh-chs": "Windows(.exe)", "xloc": [ - "default.handlebars->29->322", - "default.handlebars->29->339" + "default.handlebars->29->323", + "default.handlebars->29->340" ] }, { @@ -27572,7 +27599,7 @@ "ru": "Windows (32bit)", "zh-chs": "Windows(32位)", "xloc": [ - "default.handlebars->29->645" + "default.handlebars->29->646" ] }, { @@ -27589,7 +27616,7 @@ "ru": "Windows (64bit)", "zh-chs": "Windows(64位)", "xloc": [ - "default.handlebars->29->646" + "default.handlebars->29->647" ] }, { @@ -27606,7 +27633,7 @@ "ru": "Windows (Удаление)", "zh-chs": "Windows(卸載)", "xloc": [ - "default.handlebars->29->313" + "default.handlebars->29->314" ] }, { @@ -27765,7 +27792,7 @@ "ru": "Только Windows", "zh-chs": "僅Windows", "xloc": [ - "default.handlebars->29->283" + "default.handlebars->29->284" ] }, { @@ -27782,8 +27809,8 @@ "ru": "Windows x64 (.exe)", "zh-chs": "Windows x64(.exe)", "xloc": [ - "default.handlebars->29->326", - "default.handlebars->29->342" + "default.handlebars->29->327", + "default.handlebars->29->343" ] }, { @@ -27817,7 +27844,7 @@ "ru": "Перенос строк: ВЫКЛ", "zh-chs": "包裝:關閉", "xloc": [ - "default.handlebars->29->748" + "default.handlebars->29->749" ] }, { @@ -27834,7 +27861,7 @@ "ru": "Перенос строк: ВКЛ", "zh-chs": "包裝:開", "xloc": [ - "default.handlebars->29->747" + "default.handlebars->29->748" ] }, { @@ -27851,7 +27878,7 @@ "ru": "Записать событие к этому устройству", "zh-chs": "為此設備寫一個事件", "xloc": [ - "default.handlebars->29->524" + "default.handlebars->29->525" ] }, { @@ -27903,7 +27930,7 @@ "ru": "XTerm", "zh-chs": "XTerm", "xloc": [ - "default.handlebars->29->536" + "default.handlebars->29->537" ] }, { @@ -27920,7 +27947,7 @@ "ru": "Кос", "zh-chs": "科薩", "xloc": [ - "default.handlebars->29->1051" + "default.handlebars->29->1053" ] }, { @@ -27937,7 +27964,7 @@ "ru": "Идиш", "zh-chs": "意第緒語", "xloc": [ - "default.handlebars->29->1052" + "default.handlebars->29->1054" ] }, { @@ -28017,7 +28044,7 @@ "ru": "YubiKey™ OTP", "zh-chs": "YubiKey™ OTP", "xloc": [ - "default.handlebars->29->854" + "default.handlebars->29->856" ] }, { @@ -28034,7 +28061,7 @@ "ru": "Масштабирование по размеру", "zh-chs": "縮放至適合範圍", "xloc": [ - "default.handlebars->29->437" + "default.handlebars->29->438" ] }, { @@ -28051,8 +28078,8 @@ "ru": "Масштабирование +", "zh-chs": "放大到一定程度", "xloc": [ - "default.handlebars->29->434", - "default.handlebars->29->440" + "default.handlebars->29->435", + "default.handlebars->29->441" ] }, { @@ -28069,8 +28096,8 @@ "ru": "Масштабирование -", "zh-chs": "縮小到一定程度", "xloc": [ - "default.handlebars->29->435", - "default.handlebars->29->441" + "default.handlebars->29->436", + "default.handlebars->29->442" ] }, { @@ -28087,7 +28114,7 @@ "ru": "Зулусский", "zh-chs": "祖魯族", "xloc": [ - "default.handlebars->29->1053" + "default.handlebars->29->1055" ] }, { @@ -28275,7 +28302,7 @@ "ru": "\\\\'", "zh-chs": "\\\\'", "xloc": [ - "default.handlebars->29->1708" + "default.handlebars->29->1715" ] }, { @@ -28292,8 +28319,8 @@ "ru": "добавить", "zh-chs": "加一", "xloc": [ - "default.handlebars->29->189", - "default.handlebars->29->191" + "default.handlebars->29->190", + "default.handlebars->29->192" ] }, { @@ -28310,7 +28337,7 @@ "ru": "админ", "zh-chs": "管理員", "xloc": [ - "default.handlebars->29->234" + "default.handlebars->29->235" ] }, { @@ -28408,7 +28435,7 @@ "ru": "console.txt", "zh-chs": "console.txt", "xloc": [ - "default.handlebars->29->826" + "default.handlebars->29->827" ] }, { @@ -28426,7 +28453,7 @@ "zh-chs": "複製", "xloc": [ "default-mobile.handlebars->9->99", - "default.handlebars->29->1363" + "default.handlebars->29->1365" ] }, { @@ -28443,8 +28470,8 @@ "ru": "devicelist.csv", "zh-chs": "devicelist.csv", "xloc": [ - "default.handlebars->29->399", - "default.handlebars->29->404" + "default.handlebars->29->400", + "default.handlebars->29->405" ] }, { @@ -28461,8 +28488,8 @@ "ru": "devicelist.json", "zh-chs": "devicelist.json", "xloc": [ - "default.handlebars->29->401", - "default.handlebars->29->405" + "default.handlebars->29->402", + "default.handlebars->29->406" ] }, { @@ -28493,8 +28520,8 @@ "ru": "eventslist.csv", "zh-chs": "eventslist.csv", "xloc": [ - "default.handlebars->29->1372", - "default.handlebars->29->1377" + "default.handlebars->29->1374", + "default.handlebars->29->1379" ] }, { @@ -28511,8 +28538,8 @@ "ru": "eventslist.json", "zh-chs": "eventslist.json", "xloc": [ - "default.handlebars->29->1374", - "default.handlebars->29->1378" + "default.handlebars->29->1376", + "default.handlebars->29->1380" ] }, { @@ -28529,7 +28556,7 @@ "ru": "example@email.com", "zh-chs": "example@email.com", "xloc": [ - "default.handlebars->29->279" + "default.handlebars->29->280" ] }, { @@ -28546,7 +28573,7 @@ "ru": "свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->29->1671" + "default.handlebars->29->1678" ] }, { @@ -28563,8 +28590,8 @@ "ru": "г:", "zh-chs": "G:", "xloc": [ - "default.handlebars->29->414", - "default.handlebars->29->415" + "default.handlebars->29->415", + "default.handlebars->29->416" ] }, { @@ -28581,8 +28608,8 @@ "ru": "группа:", "zh-chs": "組:", "xloc": [ - "default.handlebars->29->412", - "default.handlebars->29->413" + "default.handlebars->29->413", + "default.handlebars->29->414" ] }, { @@ -28727,7 +28754,7 @@ "ru": "id, name, email, creation, lastlogin, groups, authfactors", "zh-chs": "id,名稱,電子郵件,創建,lastlogin,組,authfactors", "xloc": [ - "default.handlebars->29->1433" + "default.handlebars->29->1435" ] }, { @@ -28744,7 +28771,7 @@ "ru": "идентификатор, имя, имя, хост, значок, ip, osdesc, состояние, имя группы, conn, pwr", "zh-chs": "id,名稱,rname,主機,圖標,ip,osdesc,狀態,組名,conn,pwr", "xloc": [ - "default.handlebars->29->403" + "default.handlebars->29->404" ] }, { @@ -28761,8 +28788,8 @@ "ru": "ip:", "zh-chs": "ip:", "xloc": [ - "default.handlebars->29->410", - "default.handlebars->29->411" + "default.handlebars->29->411", + "default.handlebars->29->412" ] }, { @@ -28818,7 +28845,7 @@ "ru": "k max, пусто по умолчанию", "zh-chs": "k max,默认为空白", "xloc": [ - "default.handlebars->29->1454" + "default.handlebars->29->1456" ] }, { @@ -28854,7 +28881,7 @@ "zh-chs": "移動", "xloc": [ "default-mobile.handlebars->9->100", - "default.handlebars->29->1364" + "default.handlebars->29->1366" ] }, { @@ -28885,7 +28912,7 @@ "ru": "servererrors.txt", "zh-chs": "servererrors.txt", "xloc": [ - "default.handlebars->29->1115" + "default.handlebars->29->1117" ] }, { @@ -28902,7 +28929,7 @@ "ru": "servertrace.csv", "zh-chs": "servertrace.csv", "xloc": [ - "default.handlebars->29->1706" + "default.handlebars->29->1713" ] }, { @@ -28919,8 +28946,8 @@ "ru": "т:", "zh-chs": "t:", "xloc": [ - "default.handlebars->29->418", - "default.handlebars->29->419" + "default.handlebars->29->419", + "default.handlebars->29->420" ] }, { @@ -28937,8 +28964,8 @@ "ru": "тег:", "zh-chs": "標籤:", "xloc": [ - "default.handlebars->29->416", - "default.handlebars->29->417" + "default.handlebars->29->417", + "default.handlebars->29->418" ] }, { @@ -28955,7 +28982,7 @@ "ru": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "zh-chs": "時間,conn.agent,conn.users,conn.usersessions,conn.relaysession,conn.intelamt,mem.external,mem.heapused,mem.heaptotal,mem.rss", "xloc": [ - "default.handlebars->29->1684" + "default.handlebars->29->1691" ] }, { @@ -28972,7 +28999,7 @@ "ru": "time, source, message", "zh-chs": "時間,來源,訊息", "xloc": [ - "default.handlebars->29->1705" + "default.handlebars->29->1712" ] }, { @@ -29003,7 +29030,7 @@ "ru": "всего", "zh-chs": "總", "xloc": [ - "default.handlebars->29->1672" + "default.handlebars->29->1679" ] }, { @@ -29020,8 +29047,8 @@ "ru": "п:", "zh-chs": "你:", "xloc": [ - "default.handlebars->29->408", - "default.handlebars->29->409" + "default.handlebars->29->409", + "default.handlebars->29->410" ] }, { @@ -29052,8 +29079,8 @@ "ru": "пользователь:", "zh-chs": "用戶:", "xloc": [ - "default.handlebars->29->406", - "default.handlebars->29->407" + "default.handlebars->29->407", + "default.handlebars->29->408" ] }, { @@ -29070,8 +29097,8 @@ "ru": "userlist.csv", "zh-chs": "userlist.csv", "xloc": [ - "default.handlebars->29->1429", - "default.handlebars->29->1434" + "default.handlebars->29->1431", + "default.handlebars->29->1436" ] }, { @@ -29088,8 +29115,8 @@ "ru": "userlist.json", "zh-chs": "userlist.json", "xloc": [ - "default.handlebars->29->1431", - "default.handlebars->29->1435" + "default.handlebars->29->1433", + "default.handlebars->29->1437" ] }, { @@ -29106,7 +29133,7 @@ "ru": "utc, время, тип, действие, пользователь, устройство, сообщение", "zh-chs": "utc,時間,類型,操作,用戶,設備,消息", "xloc": [ - "default.handlebars->29->1376" + "default.handlebars->29->1378" ] }, { @@ -29140,7 +29167,7 @@ "ru": "{0} Гб", "zh-chs": "{0} Gb", "xloc": [ - "default.handlebars->29->1343" + "default.handlebars->29->1345" ] }, { @@ -29157,7 +29184,7 @@ "ru": "{0} Kб", "zh-chs": "{0} Kb", "xloc": [ - "default.handlebars->29->1341" + "default.handlebars->29->1343" ] }, { @@ -29174,8 +29201,8 @@ "ru": "{0} Mб", "zh-chs": "{0} Mb", "xloc": [ - "default.handlebars->29->1342", - "default.handlebars->29->815" + "default.handlebars->29->1344", + "default.handlebars->29->816" ] }, { @@ -29192,7 +29219,7 @@ "ru": "{0} Мб, {1} Мгц", "zh-chs": "{0} Mb,{1} Mhz", "xloc": [ - "default.handlebars->29->810" + "default.handlebars->29->811" ] }, { @@ -29209,7 +29236,7 @@ "ru": "{0} активных сессий", "zh-chs": "{0}個活動會話", "xloc": [ - "default.handlebars->29->1585" + "default.handlebars->29->1588" ] }, { @@ -29226,7 +29253,7 @@ "ru": "{0} байт", "zh-chs": "{0} b", "xloc": [ - "default.handlebars->29->1340" + "default.handlebars->29->1342" ] }, { @@ -29244,7 +29271,7 @@ "zh-chs": "{0}個字節", "xloc": [ "default-mobile.handlebars->9->88", - "default.handlebars->29->1351" + "default.handlebars->29->1353" ] }, { @@ -29261,7 +29288,7 @@ "ru": "{0} байт осталось", "zh-chs": "剩餘{0}個字節", "xloc": [ - "default.handlebars->29->1335" + "default.handlebars->29->1337" ] }, { @@ -29278,7 +29305,7 @@ "ru": "{0} гигабайт осталось", "zh-chs": "剩餘{0} GB", "xloc": [ - "default.handlebars->29->1338" + "default.handlebars->29->1340" ] }, { @@ -29295,7 +29322,7 @@ "ru": "{0} групп", "zh-chs": "{0}個群組", "xloc": [ - "default.handlebars->29->1552" + "default.handlebars->29->1555" ] }, { @@ -29312,7 +29339,7 @@ "ru": "{0} часов", "zh-chs": "{0}小時", "xloc": [ - "default.handlebars->29->160" + "default.handlebars->29->161" ] }, { @@ -29343,7 +29370,7 @@ "ru": "{0} килобайт осталось", "zh-chs": "剩餘{0}千字節", "xloc": [ - "default.handlebars->29->1336" + "default.handlebars->29->1338" ] }, { @@ -29378,7 +29405,7 @@ "ru": "{0} мегабайт осталось", "zh-chs": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->29->1337" + "default.handlebars->29->1339" ] }, { @@ -29412,7 +29439,7 @@ "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей...", "zh-chs": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->29->1386" + "default.handlebars->29->1388" ] }, { @@ -29429,7 +29456,7 @@ "ru": "{0} устройств", "zh-chs": "{0}個節點", "xloc": [ - "default.handlebars->29->346" + "default.handlebars->29->347" ] }, { @@ -29544,7 +29571,7 @@ "ru": "{0} сессий", "zh-chs": "{0}個會話", "xloc": [ - "default.handlebars->29->1390" + "default.handlebars->29->1392" ] }, { @@ -29561,7 +29588,7 @@ "ru": "{0} настройки (.msh)", "zh-chs": "{0}設置(.msh)", "xloc": [ - "default.handlebars->29->329" + "default.handlebars->29->330" ] }, { @@ -29613,7 +29640,7 @@ "ru": "{0} пользователей", "zh-chs": "{0}個用戶", "xloc": [ - "default.handlebars->29->208" + "default.handlebars->29->209" ] }, { @@ -29664,7 +29691,7 @@ "ru": "{0}k в 1 файле. {1}k максимум", "zh-chs": "{0} k合1檔案。最多{1} k", "xloc": [ - "default.handlebars->29->1345" + "default.handlebars->29->1347" ] }, { @@ -29680,7 +29707,7 @@ "ru": "{0}k в {1} файлах. {2}k максимум", "zh-chs": "{1}個文件中有{0}個。最多{2} k", "xloc": [ - "default.handlebars->29->1344" + "default.handlebars->29->1346" ] }, { diff --git a/views/default.handlebars b/views/default.handlebars index a34a0c8d..3854f5df 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -2213,7 +2213,7 @@ case 'verifyPhone': { if (xxdialogMode && (xxdialogTag != 'verifyPhone')) return; var x = '
'; - x += 'Check your phone and enter the verification code.'; + x += '' + "Check your phone and enter the verification code."; x += '

' + "Verification code:" + '
'; setDialogMode(2, "Phone Notifications", 3, account_managePhoneConfirm, x, message.cookie); Q('d2phoneCodeInput').focus(); @@ -7943,7 +7943,7 @@ account_managePhoneRemoveValidate(); } else { x = '
'; - x += 'Enter your SMS capable phone number. Once verified, the number may be used for login verification and other notifications.'; + x += '' + "Enter your SMS capable phone number. Once verified, the number may be used for login verification and other notifications."; x += '

' + "Phone number:" + '
'; setDialogMode(2, "Phone Notifications", 3, account_managePhoneAdd, x, 'verifyPhone'); Q('d2phoneinput').focus(); @@ -9839,10 +9839,10 @@ if (user.email != null) { if (((features & 0x200000) == 0) || (user.email.toLowerCase() != user.name.toLowerCase())) { // Username & email are different - username += ', ' + user.email + '' + emailVerified; + username += ', ' + user.email + '' + emailVerified; } else { // Username & email are the same - username += ' ' + emailVerified; + username += ' ' + emailVerified; } } @@ -9851,7 +9851,7 @@ if ((user.siteadmin != null) && ((user.siteadmin & 32) != 0) && (user.siteadmin != 0xFFFFFFFF)) { username += ' '; } x += ''; x += '
'; - x += '
'; + x += '
'; x += '
'; x += '
'; x += '
' + username + '' + msg + '
' + groups + '' + lastAccess + '' + permissions; @@ -9975,13 +9975,6 @@ function showUserAlertDialogEx(button, userid) { meshserver.send({ action: 'notifyuser', userid: decodeURIComponent(userid), msg: Q('d2notifyText').value }); } - function doemail(e, addr) { - if (xxdialogMode) return false; - haltEvent(e); - window.open('mailto:' + addr); - return false; - } - function p4batchAccountCreate() { if (xxdialogMode) return; var x = "Create many accounts at once by importing a JSON file with the following format:" + '
[\r\n {"user":"x1","pass":"x","email":"x1@x"},\r\n {"user":"x2","pass":"x","resetNextLogin":true}\r\n]
'; @@ -10633,8 +10626,9 @@ // var currentUser = null; - function gotoUser(userid, force) { + function gotoUser(userid, force, event) { if (xxdialogMode && !force) return; + if ((event != null) && (event.originalTarget != null) && (event.originalTarget.href != null)) return; var user = currentUser = users[decodeURIComponent(userid)]; if (user == null) { setDialogMode(0); go(4); return; } QH('p30userName', user.name); @@ -10657,13 +10651,17 @@ var email = user.email?EscapeHtml(user.email):'' + "Not set" + '', everify = ''; if (serverinfo.emailcheck) { everify = ((user.emailVerified == true) ? ' ' : ' '); } if (user.name.toLowerCase() != user._id.split('/')[2]) { x += addDeviceAttribute("User Identifier", user._id.split('/')[2]); } - if (((features & 0x200000) == 0) && ((user.siteadmin != 0xFFFFFFFF) || (userinfo.siteadmin == 0xFFFFFFFF))) { // If we are not site admin, we can't change a admin email. - x += addDeviceAttribute("Email", everify + '' + email + ' '); + if (((user.siteadmin != 0xFFFFFFFF) || (userinfo.siteadmin == 0xFFFFFFFF))) { // If we are not site admin, we can't change a admin email. + x += addDeviceAttribute("Email", everify + email + ' ' + ' '); } else { - x += addDeviceAttribute("Email", everify + email + ' '); + x += addDeviceAttribute("Email", everify + email + ' '); } - if (user.phone != null) { x += addDeviceAttribute("Phone Number", user.phone); } - x += addDeviceAttribute("Server Rights", premsg + '' + msg.join(', ') + ''); + + if ((features & 0x02000000) || (user.phone != null)) { // If SMS is enabled on the server or user has a phone number + x += addDeviceAttribute("Phone Number", (user.phone?user.phone:('' + "None" + '')) + ' '); + } + + x += addDeviceAttribute("Server Rights", premsg + msg.join(', ') + ' '); if (user.quota) x += addDeviceAttribute("Server Quota", EscapeHtml(parseInt(user.quota) / 1024) + ' k'); x += addDeviceAttribute("Creation", printDateTime(new Date(user.creation * 1000))); if (user.login) x += addDeviceAttribute("Last Login", printDateTime(new Date(user.login * 1000))); @@ -10756,6 +10754,25 @@ } } + function p30editPhone() { + if (xxdialogMode) return; + var x = '
'; + x += '' + "SMS capable phone number for this user." + '
' + "Leave blank for none."; + x += '

' + "Phone number:" + '
'; + setDialogMode(2, "Phone Notifications", 3, p30editPhoneEx, x, 'verifyPhone'); + Q('d2phoneinput').focus(); + p30editPhoneValidate(); + } + + function p30editPhoneValidate(x) { + var ok = (Q('d2phoneinput').value == '') || (isPhoneNumber(Q('d2phoneinput').value)); + QE('idx_dlgOkButton', ok); + if ((x == 1) && ok) { dialogclose(1); } + } + + // Send to the server the user's new phone number + function p30editPhoneEx() { meshserver.send({ action: 'edituser', id: currentUser._id, phone: Q('d2phoneinput').value }); } + // Display the user's email change dialog box function p30showUserEmailChangeDialog(event) { if (xxdialogMode) return false;