From 20f07844c5d1627bf2d94a75415d6cd772831450 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Wed, 6 May 2020 23:23:27 -0700 Subject: [PATCH] Added remote desktop metadata support. --- agents/meshcore.js | 32 +- meshdesktopmultiplex.js | 23 +- meshuser.js | 2 +- package.json | 2 +- public/scripts/agent-redir-ws-0.1.1-min.js | 2 +- public/scripts/agent-redir-ws-0.1.1.js | 9 +- public/scripts/meshcentral-min.js | 2 +- translate/translate.json | 2189 ++++++++++---------- views/default.handlebars | 36 +- 9 files changed, 1198 insertions(+), 1099 deletions(-) diff --git a/agents/meshcore.js b/agents/meshcore.js index 60b19668..96e08531 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -228,8 +228,7 @@ function createMeshCore(agent) { if (cert.tls) { ddb.Put('SelfNodeTlsCert', cert.tls.pfx); } if (proxyConfig) { ddb.Put('WebProxy', proxyConfig.host + ':' + proxyConfig.port); - } - else { + } else { ddb.Put('ignoreProxyFile', '1'); } @@ -1395,18 +1394,34 @@ function createMeshCore(agent) { this.httprequest.desktop.kvm.parent = this.httprequest.desktop; this.desktop = this.httprequest.desktop; + // Add ourself to the list of remote desktop sessions + if (this.httprequest.desktop.kvm.tunnels == null) { this.httprequest.desktop.kvm.tunnels = []; } + this.httprequest.desktop.kvm.tunnels.push(this); + + // Send a metadata update to all desktop sessions + var users = {}; + for (var i in this.httprequest.desktop.kvm.tunnels) { var userid = this.httprequest.desktop.kvm.tunnels[i].httprequest.userid; if (users[userid] == null) { users[userid] = 1; } else { users[userid]++; } } + for (var i in this.httprequest.desktop.kvm.tunnels) { this.httprequest.desktop.kvm.tunnels[i].write(JSON.stringify({ ctrlChannel: '102938', type: 'metadata', users: users })); } + this.end = function () { --this.desktop.kvm.connectionCount; + // Remove ourself from the list of remote desktop session + var i = this.desktop.kvm.tunnels.indexOf(this); + if (i >= 0) { this.desktop.kvm.tunnels.splice(i, 1); } + + // Send a metadata update to all desktop sessions + var users = {}; + for (var i in this.httprequest.desktop.kvm.tunnels) { var userid = this.httprequest.desktop.kvm.tunnels[i].httprequest.userid; if (users[userid] == null) { users[userid] = 1; } else { users[userid]++; } } + for (var i in this.httprequest.desktop.kvm.tunnels) { this.httprequest.desktop.kvm.tunnels[i].write(JSON.stringify({ ctrlChannel: '102938', type: 'metadata', users: users })); } + // Unpipe the web socket try { this.unpipe(this.httprequest.desktop.kvm); this.httprequest.desktop.kvm.unpipe(this); } - catch(xx) - { - } + catch(ex) { } // Unpipe the WebRTC channel if needed (This will also be done when the WebRTC channel ends). if (this.rtcchannel) @@ -1416,9 +1431,7 @@ function createMeshCore(agent) { this.rtcchannel.unpipe(this.httprequest.desktop.kvm); this.httprequest.desktop.kvm.unpipe(this.rtcchannel); } - catch(xx) - { - } + catch(ex) { } } // Place wallpaper back if needed @@ -1434,8 +1447,7 @@ function createMeshCore(agent) { this.httprequest.desktop.kvm.connectionBar.close(); this.httprequest.desktop.kvm.connectionBar = null; } - } - else { + } else { for (var i in this.httprequest.desktop.kvm.users) { if (this.httprequest.desktop.kvm.users[i] == this.httprequest.username && this.httprequest.desktop.kvm.connectionBar) { this.httprequest.desktop.kvm.users.splice(i, 1); diff --git a/meshdesktopmultiplex.js b/meshdesktopmultiplex.js index 0e2ca9b7..336c2808 100644 --- a/meshdesktopmultiplex.js +++ b/meshdesktopmultiplex.js @@ -132,6 +132,9 @@ function CreateDesktopMultiplexor(parent, domain, nodeid, func) { var event = { etype: 'relay', action: 'relaylog', domain: domain.id, nodeid: obj.nodeid, userid: peer.user._id, username: peer.user.name, msg: "Joined desktop multiplex session", protocol: 2 }; parent.parent.DispatchEvent(['*', obj.nodeid, peer.user._id, obj.meshid], obj, event); } + + // Send an updated list of all peers to all viewers + obj.sendSessionMetadata(); } else { //console.log('addPeer-agent', obj.nodeid); if (obj.agent != null) return false; @@ -169,15 +172,17 @@ function CreateDesktopMultiplexor(parent, domain, nodeid, func) { obj.agent = null; // Agent has disconnected, disconnect everyone. - for (var i in obj.viewers) { obj.viewers[i].close(); } + if (obj.viewers != null) { for (var i in obj.viewers) { obj.viewers[i].close(); } } dispose(); return true; } else { //console.log('removePeer-viewer', obj.nodeid); // Remove a viewer - var i = obj.viewers.indexOf(peer); - if (i == -1) return false; - obj.viewers.splice(i, 1); + if (obj.viewers != null) { + var i = obj.viewers.indexOf(peer); + if (i == -1) return false; + obj.viewers.splice(i, 1); + } // Resume flow control if this was the peer that was limiting traffic (because it was the fastest one). if (peer.overflow == true) { @@ -205,6 +210,9 @@ function CreateDesktopMultiplexor(parent, domain, nodeid, func) { // If this is the last viewer, disconnect the agent if ((obj.viewers.length == 0) && (obj.agent != null)) { obj.agent.close(); dispose(); return true; } + + // Send an updated list of all peers to all viewers + obj.sendSessionMetadata(); } return false; } @@ -294,6 +302,13 @@ function CreateDesktopMultiplexor(parent, domain, nodeid, func) { } } + // Send the list of all users currently vieweing this session to all viewers + obj.sendSessionMetadata = function () { + var allUsers = {}; + for (var i in obj.viewers) { var v = obj.viewers[i]; if ((v.user != null) && (v.user._id != null)) { if (allUsers[v.user._id] == null) { allUsers[v.user._id] = 1; } else { allUsers[v.user._id]++; } } } + obj.sendToAllViewers(JSON.stringify({ type: 'metadata', 'ctrlChannel': '102938', users: allUsers, startTime: obj.startTime })); + } + // Send this command to all viewers obj.sendToAllViewers = function (data) { for (var i in obj.viewers) { obj.sendToViewer(obj.viewers[i], data); } diff --git a/meshuser.js b/meshuser.js index ebed13ba..38162deb 100644 --- a/meshuser.js +++ b/meshuser.js @@ -431,7 +431,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use switch (command.action) { case 'pong': { break; } // NOP - case 'ping': { try { ws.send(JSON.stringify({ action: 'pong' })); } catch (ex) { } break; } + case 'ping': { try { ws.send('{action:"pong"}'); } catch (ex) { } break; } case 'intersession': { // Sends data between sessions of the same user diff --git a/package.json b/package.json index 352c3470..ce6dac42 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "meshcentral", - "version": "0.5.24", + "version": "0.5.25", "keywords": [ "Remote Management", "Intel AMT", diff --git a/public/scripts/agent-redir-ws-0.1.1-min.js b/public/scripts/agent-redir-ws-0.1.1-min.js index b0a68af2..2eed7a2a 100644 --- a/public/scripts/agent-redir-ws-0.1.1-min.js +++ b/public/scripts/agent-redir-ws-0.1.1-min.js @@ -1 +1 @@ -var CreateAgentRedirect=function(e,t,n,o,a,r){var c={};function s(){1==c.webSwitchOk&&1==c.webRtcActive&&(c.latency.current=-1,c.sendCtrlMsg('{"ctrlChannel":"102938","type":"webrtc0"}'),c.sendCtrlMsg('{"ctrlChannel":"102938","type":"webrtc1"}'),null!=c.onStateChanged&&c.onStateChanged(c,c.State))}((c.m=t).parent=c).meshserver=e,c.authCookie=o,c.rauthCookie=a,c.State=0,c.nodeid=null,c.options=null,c.socket=null,c.connectstate=-1,c.tunnelid=Math.random().toString(36).substring(2),c.protocol=t.protocol,c.onStateChanged=null,c.ctrlMsgAllowed=!0,c.attemptWebRTC=!1,c.webRtcActive=!1,c.webSwitchOk=!1,c.webchannel=null,c.webrtc=null,c.debugmode=0,c.serverIsRecording=!1,c.latency={lastSend:null,current:-1,callback:null},null==r&&(r="/"),c.consoleMessage=null,c.onConsoleMessageChange=null,c.Start=function(e){var t=window.location.protocol.replace("http","ws")+"//"+window.location.host+window.location.pathname.substring(0,window.location.pathname.lastIndexOf("/"))+"/meshrelay.ashx?browser=1&p="+c.protocol+"&nodeid="+e+"&id="+c.tunnelid;null!=o&&""!=o&&(t+="&auth="+o),null!=urlargs&&null!=urlargs.slowrelay&&(t+="&slowrelay="+urlargs.slowrelay),c.nodeid=e,c.connectstate=0,c.socket=new WebSocket(t),c.socket.onopen=c.xxOnSocketConnected,c.socket.onmessage=c.xxOnMessage,c.socket.onerror=function(e){},c.socket.onclose=c.xxOnSocketClosed,c.xxStateChange(1);var n="*"+r+"meshrelay.ashx?p="+c.protocol+"&nodeid="+e+"&id="+c.tunnelid;null!=a&&""!=a&&(n+="&rauth="+a),c.meshserver.send({action:"msg",type:"tunnel",nodeid:c.nodeid,value:n,usage:c.protocol})},c.xxOnSocketConnected=function(){1==c.debugmode&&console.log("onSocketConnected"),c.xxStateChange(2)},c.xxOnControlCommand=function(e){var t;try{t=JSON.parse(e)}catch(e){return}"102938"==t.ctrlChannel?("undefined"!=typeof args&&args.redirtrace&&console.log("RedirRecv",t),"console"==t.type?c.setConsoleMessage(t.msg,t.msgid,t.msgargs,t.timeout):"rtt"==t.type&&"number"==typeof t.time?(c.latency.current=(new Date).getTime()-t.time,null!=c.latency.callbacks&&c.latency.callback(c.latency.current)):null!=c.webrtc&&("answer"==t.type?c.webrtc.setRemoteDescription(new RTCSessionDescription(t),function(){},c.xxCloseWebRTC):"webrtc0"==t.type?(c.webSwitchOk=!0,s()):"webrtc1"==t.type?c.sendCtrlMsg('{"ctrlChannel":"102938","type":"webrtc2"}'):t.type)):c.xxOnSocketData(e)},c.setConsoleMessage=function(e,t,n,o){c.consoleMessage!=e&&(c.consoleMessage=e,c.consoleMessageId=t,c.consoleMessageArgs=n,c.consoleMessageTimeout=o,c.onConsoleMessageChange&&c.onConsoleMessageChange(c,c.consoleMessage,c.consoleMessageId))},c.sendCtrlMsg=function(e){if(1==c.ctrlMsgAllowed){"undefined"!=typeof args&&args.redirtrace&&console.log("RedirSend",typeof e,e);try{c.socket.send(e)}catch(e){}}},c.xxOnMessage=function(e){if(c.State<3&&("c"==e.data||"cr"==e.data)){if("cr"==e.data&&(c.serverIsRecording=!0),null!=c.options){delete c.options.action,c.options.type="options";try{c.sendCtrlMsg(JSON.stringify(c.options))}catch(e){}}try{c.socket.send(c.protocol)}catch(e){}if(c.xxStateChange(3),1==c.attemptWebRTC){"undefined"!=typeof RTCPeerConnection?c.webrtc=new RTCPeerConnection(null):"undefined"!=typeof webkitRTCPeerConnection&&(c.webrtc=new webkitRTCPeerConnection(null)),null!=c.webrtc&&c.webrtc.createDataChannel&&(c.webchannel=c.webrtc.createDataChannel("DataChannel",{}),c.webchannel.onmessage=c.xxOnMessage,c.webchannel.onopen=function(){c.webRtcActive=!0,s()},c.webchannel.onclose=function(e){c.webRtcActive&&c.Stop()},c.webrtc.onicecandidate=function(e){if(null==e.candidate)try{c.sendCtrlMsg(JSON.stringify(c.webrtcoffer))}catch(e){}else c.webrtcoffer.sdp+="a="+e.candidate.candidate+"\r\n"},c.webrtc.oniceconnectionstatechange=function(){null!=c.webrtc&&("disconnected"==c.webrtc.iceConnectionState?1==c.webRtcActive?c.Stop():c.xxCloseWebRTC():"failed"==c.webrtc.iceConnectionState&&c.xxCloseWebRTC())},c.webrtc.createOffer(function(e){c.webrtcoffer=e,c.webrtc.setLocalDescription(e,function(){},c.xxCloseWebRTC)},c.xxCloseWebRTC,{mandatory:{OfferToReceiveAudio:!1,OfferToReceiveVideo:!1}}))}}else if("string"!=typeof e.data){if("object"==typeof e.data){if(1==i)return void d.push(e.data);if(l.readAsBinaryString&&null==c.m.ProcessBinaryData)i=!0,l.readAsBinaryString(new Blob([e.data]));else if(l.readAsArrayBuffer)i=!0,l.readAsArrayBuffer(e.data);else{for(var t="",n=new Uint8Array(e.data),o=n.byteLength,a=0;a25->1159", - "default.handlebars->25->1161" + "default.handlebars->25->1165", + "default.handlebars->25->1167" ] }, { @@ -174,7 +174,7 @@ "ru": " Может быть использована подсказка пароля, но не рекоммендуется.", "zh-chs": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->25->1087" + "default.handlebars->25->1093" ] }, { @@ -191,8 +191,8 @@ "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.", "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。", "xloc": [ - "default.handlebars->25->1234", - "default.handlebars->25->1537" + "default.handlebars->25->1240", + "default.handlebars->25->1543" ] }, { @@ -375,7 +375,7 @@ "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.", "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。", "xloc": [ - "default.handlebars->25->1206" + "default.handlebars->25->1212" ] }, { @@ -408,7 +408,7 @@ "zh-chs": ",", "xloc": [ "default-mobile.handlebars->9->335", - "default.handlebars->25->1300" + "default.handlebars->25->1306" ] }, { @@ -443,7 +443,7 @@ "ru": ", MQTT онлайн", "zh-chs": ",MQTT在線", "xloc": [ - "default.handlebars->25->830" + "default.handlebars->25->836" ] }, { @@ -479,9 +479,9 @@ "xloc": [ "default-mobile.handlebars->9->238", "default-mobile.handlebars->9->246", - "default.handlebars->25->683", - "default.handlebars->25->714", - "default.handlebars->25->726", + "default.handlebars->25->689", + "default.handlebars->25->720", + "default.handlebars->25->732", "xterm.handlebars->9->6" ] }, @@ -554,6 +554,12 @@ "account-invite.html->2->3" ] }, + { + "en": ", {0} watching", + "xloc": [ + "default.handlebars->25->683" + ] + }, { "cs": "–", "de": "-", @@ -606,9 +612,9 @@ "xloc": [ "default-mobile.handlebars->9->248", "default-mobile.handlebars->9->77", - "default.handlebars->25->1341", - "default.handlebars->25->1680", - "default.handlebars->25->728" + "default.handlebars->25->1347", + "default.handlebars->25->1686", + "default.handlebars->25->734" ] }, { @@ -656,7 +662,7 @@ "ru": "1 активная сессия", "zh-chs": "1個活動會話", "xloc": [ - "default.handlebars->25->1598" + "default.handlebars->25->1604" ] }, { @@ -675,7 +681,13 @@ "xloc": [ "default-mobile.handlebars->9->339", "default-mobile.handlebars->9->87", - "default.handlebars->25->1360" + "default.handlebars->25->1366" + ] + }, + { + "en": "1 connection", + "xloc": [ + "default.handlebars->25->685" ] }, { @@ -711,7 +723,7 @@ "ru": "1 группа", "zh-chs": "1組", "xloc": [ - "default.handlebars->25->1565" + "default.handlebars->25->1571" ] }, { @@ -783,7 +795,7 @@ "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...", "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->25->1395" + "default.handlebars->25->1401" ] }, { @@ -834,7 +846,7 @@ "ru": "1 сессия", "zh-chs": "1節", "xloc": [ - "default.handlebars->25->1399" + "default.handlebars->25->1405" ] }, { @@ -1102,8 +1114,8 @@ "ru": "двухфакторная аутентификация включена", "zh-chs": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->25->1412", - "default.handlebars->25->1587" + "default.handlebars->25->1418", + "default.handlebars->25->1593" ] }, { @@ -1814,7 +1826,7 @@ "ru": "Отказано в доступе", "zh-chs": "拒絕訪問", "xloc": [ - "default.handlebars->25->831" + "default.handlebars->25->837" ] }, { @@ -1849,7 +1861,7 @@ "ru": "Доступ к файлам сервера", "zh-chs": "訪問服務器文件", "xloc": [ - "default.handlebars->25->1543" + "default.handlebars->25->1549" ] }, { @@ -1924,8 +1936,8 @@ "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->25->1096", - "default.handlebars->25->1098", + "default.handlebars->25->1102", + "default.handlebars->25->1104", "default.handlebars->25->448", "default.handlebars->25->450" ] @@ -1973,8 +1985,8 @@ "ru": "Аккаунт заблокирован", "zh-chs": "帐户已被锁定", "xloc": [ - "default.handlebars->25->1414", - "default.handlebars->25->1540" + "default.handlebars->25->1420", + "default.handlebars->25->1546" ] }, { @@ -2062,7 +2074,7 @@ "ru": "Действиe", "zh-chs": "行動", "xloc": [ - "default.handlebars->25->836", + "default.handlebars->25->842", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -2158,7 +2170,7 @@ "default-mobile.handlebars->9->189", "default.handlebars->25->470", "default.handlebars->25->472", - "default.handlebars->25->794" + "default.handlebars->25->800" ] }, { @@ -2175,8 +2187,8 @@ "ru": "Активация", "zh-chs": "激活", "xloc": [ - "default.handlebars->25->1172", - "default.handlebars->25->1174", + "default.handlebars->25->1178", + "default.handlebars->25->1180", "default.handlebars->25->223", "default.handlebars->25->225" ] @@ -2212,7 +2224,7 @@ "ru": "Добавить агент", "zh-chs": "添加代理", "xloc": [ - "default.handlebars->25->1176", + "default.handlebars->25->1182", "default.handlebars->25->227" ] }, @@ -2247,8 +2259,8 @@ "ru": "Добавить устройство", "zh-chs": "添加設備", "xloc": [ - "default.handlebars->25->1517", - "default.handlebars->25->1631" + "default.handlebars->25->1523", + "default.handlebars->25->1637" ] }, { @@ -2282,9 +2294,9 @@ "ru": "Добавить группу устройств", "zh-chs": "添加設備組", "xloc": [ - "default.handlebars->25->1266", - "default.handlebars->25->1511", - "default.handlebars->25->1619", + "default.handlebars->25->1272", + "default.handlebars->25->1517", + "default.handlebars->25->1625", "default.handlebars->25->198" ] }, @@ -2299,7 +2311,7 @@ "nl": "Machtigingen voor apparaatgroep toevoegen", "zh-chs": "添加设备组权限", "xloc": [ - "default.handlebars->25->1263" + "default.handlebars->25->1269" ] }, { @@ -2315,8 +2327,8 @@ "ru": "Добавить разрешения для устройства", "zh-chs": "添加设备权限", "xloc": [ - "default.handlebars->25->1268", - "default.handlebars->25->1270" + "default.handlebars->25->1274", + "default.handlebars->25->1276" ] }, { @@ -2401,7 +2413,7 @@ "ru": "Добавить участие", "zh-chs": "添加會員", "xloc": [ - "default.handlebars->25->1649" + "default.handlebars->25->1655" ] }, { @@ -2439,8 +2451,8 @@ "default.handlebars->25->135", "default.handlebars->25->138", "default.handlebars->25->139", - "default.handlebars->25->864", - "default.handlebars->25->865" + "default.handlebars->25->870", + "default.handlebars->25->871" ] }, { @@ -2474,7 +2486,7 @@ "ru": "Добавить разрешения для пользовательских устройств", "zh-chs": "添加用户设备权限", "xloc": [ - "default.handlebars->25->1273" + "default.handlebars->25->1279" ] }, { @@ -2491,9 +2503,9 @@ "ru": "Добавить группу пользователей", "zh-chs": "添加用戶組", "xloc": [ - "default.handlebars->25->1166", - "default.handlebars->25->1265", - "default.handlebars->25->1625", + "default.handlebars->25->1172", + "default.handlebars->25->1271", + "default.handlebars->25->1631", "default.handlebars->25->558" ] }, @@ -2508,7 +2520,7 @@ "nl": "Gebruikersmachtigingen voor apparaatgroep toevoegen", "zh-chs": "添加用户组设备权限", "xloc": [ - "default.handlebars->25->1275" + "default.handlebars->25->1281" ] }, { @@ -2553,8 +2565,8 @@ "ru": "Добавить пользователей", "zh-chs": "添加用戶", "xloc": [ - "default.handlebars->25->1165", - "default.handlebars->25->1506" + "default.handlebars->25->1171", + "default.handlebars->25->1512" ] }, { @@ -2571,7 +2583,7 @@ "ru": "Добавить пользователей в группу устройств", "zh-chs": "將用戶添加到設備組", "xloc": [ - "default.handlebars->25->1262" + "default.handlebars->25->1268" ] }, { @@ -2588,7 +2600,7 @@ "ru": "Добавить пользователей в группу", "zh-chs": "將用戶添加到用戶組", "xloc": [ - "default.handlebars->25->1539" + "default.handlebars->25->1545" ] }, { @@ -2639,7 +2651,7 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.", "zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->25->1167", + "default.handlebars->25->1173", "default.handlebars->25->216" ] }, @@ -2657,7 +2669,7 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.", "zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->25->1169", + "default.handlebars->25->1175", "default.handlebars->25->218" ] }, @@ -2689,7 +2701,7 @@ "nl": "Voeg een nieuwe computer toe aan deze apparaatgroep door de mesh-agent te installeren.", "zh-chs": "通过安装网状代理,将新计算机添加到该设备组。", "xloc": [ - "default.handlebars->25->1175", + "default.handlebars->25->1181", "default.handlebars->25->226" ] }, @@ -2741,7 +2753,7 @@ "ru": "Режим управления администратора (ACM)", "zh-chs": "管理員控制模式(ACM)", "xloc": [ - "default.handlebars->25->796" + "default.handlebars->25->802" ] }, { @@ -2758,7 +2770,7 @@ "ru": "Учетные данные администратора", "zh-chs": "管理員憑證", "xloc": [ - "default.handlebars->25->802" + "default.handlebars->25->808" ] }, { @@ -2793,7 +2805,7 @@ "ru": "Области администратора", "zh-chs": "管理領域", "xloc": [ - "default.handlebars->25->1569" + "default.handlebars->25->1575" ] }, { @@ -2828,7 +2840,7 @@ "ru": "Административные области", "zh-chs": "行政領域", "xloc": [ - "default.handlebars->25->1462" + "default.handlebars->25->1468" ] }, { @@ -2845,7 +2857,7 @@ "ru": "Администратор", "zh-chs": "管理員", "xloc": [ - "default.handlebars->25->1406" + "default.handlebars->25->1412" ] }, { @@ -2862,7 +2874,7 @@ "ru": "Африканский", "zh-chs": "南非語", "xloc": [ - "default.handlebars->25->867" + "default.handlebars->25->873" ] }, { @@ -2882,8 +2894,8 @@ "default-mobile.handlebars->9->131", "default-mobile.handlebars->9->184", "default-mobile.handlebars->9->200", - "default.handlebars->25->1327", - "default.handlebars->25->1335", + "default.handlebars->25->1333", + "default.handlebars->25->1341", "default.handlebars->25->177", "default.handlebars->25->370", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" @@ -2903,8 +2915,8 @@ "ru": "Агент + Intel AMT", "zh-chs": "代理+英特爾AMT", "xloc": [ - "default.handlebars->25->1329", - "default.handlebars->25->1337" + "default.handlebars->25->1335", + "default.handlebars->25->1343" ] }, { @@ -2939,7 +2951,7 @@ "zh-chs": "代理控制台", "xloc": [ "default-mobile.handlebars->9->320", - "default.handlebars->25->1283" + "default.handlebars->25->1289" ] }, { @@ -2956,7 +2968,7 @@ "ru": "Счетчик ошибок агента", "zh-chs": "座席錯誤計數器", "xloc": [ - "default.handlebars->25->1690" + "default.handlebars->25->1696" ] }, { @@ -3025,7 +3037,7 @@ "ru": "Сессии агентов", "zh-chs": "座席會議", "xloc": [ - "default.handlebars->25->1706" + "default.handlebars->25->1712" ] }, { @@ -3060,7 +3072,7 @@ "ru": "Типы агента", "zh-chs": "代理類型", "xloc": [ - "default.handlebars->25->1333", + "default.handlebars->25->1339", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -3114,7 +3126,7 @@ "ru": "Агент оффлайн", "zh-chs": "代理離線", "xloc": [ - "default.handlebars->25->829" + "default.handlebars->25->835" ] }, { @@ -3131,7 +3143,7 @@ "ru": "Агент онлайн", "zh-chs": "代理在線", "xloc": [ - "default.handlebars->25->828" + "default.handlebars->25->834" ] }, { @@ -3148,7 +3160,7 @@ "ru": "Агенты", "zh-chs": "代理商", "xloc": [ - "default.handlebars->25->1719" + "default.handlebars->25->1725" ] }, { @@ -3165,7 +3177,7 @@ "ru": "Албанский", "zh-chs": "阿爾巴尼亞語", "xloc": [ - "default.handlebars->25->868" + "default.handlebars->25->874" ] }, { @@ -3218,9 +3230,9 @@ "ru": "Фокусирование всех", "zh-chs": "全部聚焦", "xloc": [ - "default.handlebars->25->684", - "default.handlebars->25->686", - "default.handlebars->25->687" + "default.handlebars->25->690", + "default.handlebars->25->692", + "default.handlebars->25->693" ] }, { @@ -3237,8 +3249,8 @@ "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.", "zh-chs": "允許用戶管理此設備組和該組中的設備。", "xloc": [ - "default.handlebars->25->1232", - "default.handlebars->25->1536" + "default.handlebars->25->1238", + "default.handlebars->25->1542" ] }, { @@ -3254,7 +3266,7 @@ "ru": "Разрешить пользователям управлять этим устройством.", "zh-chs": "允许用户管理此设备。", "xloc": [ - "default.handlebars->25->1233" + "default.handlebars->25->1239" ] }, { @@ -3307,7 +3319,7 @@ "ru": "Поменять (F10 = ESC+0)", "zh-chs": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->25->719" + "default.handlebars->25->725" ] }, { @@ -3341,8 +3353,8 @@ "ru": "Всегда уведомлять", "zh-chs": "始終通知", "xloc": [ - "default.handlebars->25->1146", - "default.handlebars->25->1578", + "default.handlebars->25->1152", + "default.handlebars->25->1584", "default.handlebars->25->506" ] }, @@ -3360,8 +3372,8 @@ "ru": "Всегда запрашивать", "zh-chs": "總是提示", "xloc": [ - "default.handlebars->25->1147", - "default.handlebars->25->1579", + "default.handlebars->25->1153", + "default.handlebars->25->1585", "default.handlebars->25->507" ] }, @@ -3561,7 +3573,7 @@ "ru": "Арабский (Алжир)", "zh-chs": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->25->870" + "default.handlebars->25->876" ] }, { @@ -3578,7 +3590,7 @@ "ru": "Арабский (Бахрейн)", "zh-chs": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->25->871" + "default.handlebars->25->877" ] }, { @@ -3595,7 +3607,7 @@ "ru": "Арабский (Египет)", "zh-chs": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->25->872" + "default.handlebars->25->878" ] }, { @@ -3612,7 +3624,7 @@ "ru": "Арабский (Ирак)", "zh-chs": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->25->873" + "default.handlebars->25->879" ] }, { @@ -3629,7 +3641,7 @@ "ru": "Арабский (Иордания)", "zh-chs": "阿拉伯語(約旦)", "xloc": [ - "default.handlebars->25->874" + "default.handlebars->25->880" ] }, { @@ -3646,7 +3658,7 @@ "ru": "Арабский (Кувейт)", "zh-chs": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->25->875" + "default.handlebars->25->881" ] }, { @@ -3663,7 +3675,7 @@ "ru": "Арабский (Ливан)", "zh-chs": "阿拉伯語(黎巴嫩)", "xloc": [ - "default.handlebars->25->876" + "default.handlebars->25->882" ] }, { @@ -3680,7 +3692,7 @@ "ru": "Арабский (Ливия)", "zh-chs": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->25->877" + "default.handlebars->25->883" ] }, { @@ -3697,7 +3709,7 @@ "ru": "Арабский (Марокко)", "zh-chs": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->25->878" + "default.handlebars->25->884" ] }, { @@ -3714,7 +3726,7 @@ "ru": "Арабский (Оман)", "zh-chs": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->25->879" + "default.handlebars->25->885" ] }, { @@ -3731,7 +3743,7 @@ "ru": "Арабский (Катар)", "zh-chs": "阿拉伯語(卡塔爾)", "xloc": [ - "default.handlebars->25->880" + "default.handlebars->25->886" ] }, { @@ -3748,7 +3760,7 @@ "ru": "Арабский (Саудовская Аравия)", "zh-chs": "阿拉伯語(沙特阿拉伯)", "xloc": [ - "default.handlebars->25->881" + "default.handlebars->25->887" ] }, { @@ -3765,7 +3777,7 @@ "ru": "Арабский (стандартный)", "zh-chs": "阿拉伯語(標準)", "xloc": [ - "default.handlebars->25->869" + "default.handlebars->25->875" ] }, { @@ -3782,7 +3794,7 @@ "ru": "Арабский (Сирия)", "zh-chs": "阿拉伯語(敘利亞)", "xloc": [ - "default.handlebars->25->882" + "default.handlebars->25->888" ] }, { @@ -3799,7 +3811,7 @@ "ru": "Арабский (Тунис)", "zh-chs": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->25->883" + "default.handlebars->25->889" ] }, { @@ -3816,7 +3828,7 @@ "ru": "Арабский (О.А.Э.)", "zh-chs": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->25->884" + "default.handlebars->25->890" ] }, { @@ -3833,7 +3845,7 @@ "ru": "Арабский (Йемен)", "zh-chs": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->25->885" + "default.handlebars->25->891" ] }, { @@ -3850,7 +3862,7 @@ "ru": "Арагонский", "zh-chs": "阿拉貢人", "xloc": [ - "default.handlebars->25->886" + "default.handlebars->25->892" ] }, { @@ -3867,7 +3879,7 @@ "ru": "Архитектура", "zh-chs": "建築", "xloc": [ - "default.handlebars->25->770" + "default.handlebars->25->776" ] }, { @@ -3902,7 +3914,7 @@ "zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。", "xloc": [ "default-mobile.handlebars->9->291", - "default.handlebars->25->1210" + "default.handlebars->25->1216" ] }, { @@ -3970,7 +3982,7 @@ "ru": "Вы уверенны, что {0} плагин: {1}", "zh-chs": "您確定要{0}插件嗎:{1}", "xloc": [ - "default.handlebars->25->1759" + "default.handlebars->25->1765" ] }, { @@ -3987,7 +3999,7 @@ "ru": "Армянский", "zh-chs": "亞美尼亞人", "xloc": [ - "default.handlebars->25->887" + "default.handlebars->25->893" ] }, { @@ -4032,7 +4044,7 @@ "ru": "Ассамский", "zh-chs": "阿薩姆語", "xloc": [ - "default.handlebars->25->888" + "default.handlebars->25->894" ] }, { @@ -4049,7 +4061,7 @@ "ru": "Астурии", "zh-chs": "阿斯圖里亞斯人", "xloc": [ - "default.handlebars->25->889" + "default.handlebars->25->895" ] }, { @@ -4066,7 +4078,7 @@ "ru": "Приложение аутентификации", "zh-chs": "身份驗證應用", "xloc": [ - "default.handlebars->25->1582" + "default.handlebars->25->1588" ] }, { @@ -4089,8 +4101,8 @@ "default-mobile.handlebars->9->42", "default.handlebars->25->109", "default.handlebars->25->114", - "default.handlebars->25->853", - "default.handlebars->25->855" + "default.handlebars->25->859", + "default.handlebars->25->861" ] }, { @@ -4158,7 +4170,7 @@ "ru": "Автоудаление", "zh-chs": "自動刪除", "xloc": [ - "default.handlebars->25->1134" + "default.handlebars->25->1140" ] }, { @@ -4212,7 +4224,7 @@ "ru": "Азербайджанский", "zh-chs": "阿塞拜疆", "xloc": [ - "default.handlebars->25->890" + "default.handlebars->25->896" ] }, { @@ -4229,7 +4241,7 @@ "ru": "BIOS", "zh-chs": "的BIOS", "xloc": [ - "default.handlebars->25->808" + "default.handlebars->25->814" ] }, { @@ -4326,8 +4338,8 @@ "ru": "Фоновый и интерактивный", "zh-chs": "背景與互動", "xloc": [ - "default.handlebars->25->1310", - "default.handlebars->25->1317", + "default.handlebars->25->1316", + "default.handlebars->25->1323", "default.handlebars->25->295" ] }, @@ -4345,8 +4357,8 @@ "ru": "Только фоновый", "zh-chs": "僅背景", "xloc": [ - "default.handlebars->25->1311", - "default.handlebars->25->1318", + "default.handlebars->25->1317", + "default.handlebars->25->1324", "default.handlebars->25->296", "default.handlebars->25->318" ] @@ -4382,7 +4394,7 @@ "ru": "Резервные коды", "zh-chs": "備用碼", "xloc": [ - "default.handlebars->25->1584" + "default.handlebars->25->1590" ] }, { @@ -4399,7 +4411,7 @@ "ru": "Плохой ключ", "zh-chs": "錯誤的簽名", "xloc": [ - "default.handlebars->25->1697" + "default.handlebars->25->1703" ] }, { @@ -4416,7 +4428,7 @@ "ru": "Плохой веб-сертификат", "zh-chs": "錯誤的網絡證書", "xloc": [ - "default.handlebars->25->1696" + "default.handlebars->25->1702" ] }, { @@ -4433,7 +4445,7 @@ "ru": "Баскский", "zh-chs": "巴斯克", "xloc": [ - "default.handlebars->25->891" + "default.handlebars->25->897" ] }, { @@ -4467,7 +4479,7 @@ "ru": "Белорусский", "zh-chs": "白俄羅斯語", "xloc": [ - "default.handlebars->25->893" + "default.handlebars->25->899" ] }, { @@ -4484,7 +4496,7 @@ "ru": "Бенгальский", "zh-chs": "孟加拉", "xloc": [ - "default.handlebars->25->894" + "default.handlebars->25->900" ] }, { @@ -4520,7 +4532,7 @@ "ru": "Боснийский", "zh-chs": "波斯尼亞人", "xloc": [ - "default.handlebars->25->895" + "default.handlebars->25->901" ] }, { @@ -4537,7 +4549,7 @@ "ru": "Бретонский", "zh-chs": "布列塔尼", "xloc": [ - "default.handlebars->25->896" + "default.handlebars->25->902" ] }, { @@ -4554,7 +4566,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播", "xloc": [ - "default.handlebars->25->1504", + "default.handlebars->25->1510", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -4572,7 +4584,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播消息", "xloc": [ - "default.handlebars->25->1447" + "default.handlebars->25->1453" ] }, { @@ -4589,7 +4601,7 @@ "ru": "Отправить сообщение всем подключенным пользователям.", "zh-chs": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->25->1446" + "default.handlebars->25->1452" ] }, { @@ -4606,7 +4618,7 @@ "ru": "Болгарский", "zh-chs": "保加利亞語", "xloc": [ - "default.handlebars->25->892" + "default.handlebars->25->898" ] }, { @@ -4623,7 +4635,7 @@ "ru": "Бирманский", "zh-chs": "緬甸人", "xloc": [ - "default.handlebars->25->897" + "default.handlebars->25->903" ] }, { @@ -4659,8 +4671,8 @@ "zh-chs": "CIRA", "xloc": [ "default-mobile.handlebars->9->132", - "default.handlebars->25->1198", - "default.handlebars->25->1203", + "default.handlebars->25->1204", + "default.handlebars->25->1209", "default.handlebars->25->179", "default.handlebars->25->372" ] @@ -4679,7 +4691,7 @@ "ru": "CIRA Сервер", "zh-chs": "CIRA服務器", "xloc": [ - "default.handlebars->25->1747" + "default.handlebars->25->1753" ] }, { @@ -4696,7 +4708,7 @@ "ru": "CIRA Сервер команды", "zh-chs": "CIRA服務器命令", "xloc": [ - "default.handlebars->25->1748" + "default.handlebars->25->1754" ] }, { @@ -4712,7 +4724,7 @@ "ru": "CPU", "zh-chs": "CPU", "xloc": [ - "default.handlebars->25->814" + "default.handlebars->25->820" ] }, { @@ -4729,7 +4741,7 @@ "ru": "Загрузка CPU", "zh-chs": "CPU負載", "xloc": [ - "default.handlebars->25->1711" + "default.handlebars->25->1717" ] }, { @@ -4746,7 +4758,7 @@ "ru": "Загрузка CPU за последние 15 минут", "zh-chs": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->25->1714" + "default.handlebars->25->1720" ] }, { @@ -4763,7 +4775,7 @@ "ru": "Загрузка CPU за последние 5 минут", "zh-chs": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->25->1713" + "default.handlebars->25->1719" ] }, { @@ -4780,7 +4792,7 @@ "ru": "Загрузка CPU за последнюю минуту", "zh-chs": "最後一分鐘的CPU負載", "xloc": [ - "default.handlebars->25->1712" + "default.handlebars->25->1718" ] }, { @@ -4797,8 +4809,8 @@ "ru": "CR+LF", "zh-chs": "CR +低頻", "xloc": [ - "default.handlebars->25->712", - "default.handlebars->25->721", + "default.handlebars->25->718", + "default.handlebars->25->727", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -4816,8 +4828,8 @@ "ru": "Формат CSV", "zh-chs": "CSV格式", "xloc": [ - "default.handlebars->25->1381", - "default.handlebars->25->1438", + "default.handlebars->25->1387", + "default.handlebars->25->1444", "default.handlebars->25->399" ] }, @@ -4835,7 +4847,7 @@ "ru": "Ошибка вызова", "zh-chs": "通話錯誤", "xloc": [ - "default.handlebars->25->1760" + "default.handlebars->25->1766" ] }, { @@ -4854,7 +4866,7 @@ "xloc": [ "default-mobile.handlebars->9->51", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->25->1117", + "default.handlebars->25->1123", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -4872,8 +4884,8 @@ "nl": "Capaciteit", "zh-chs": "容量", "xloc": [ - "default.handlebars->25->822", - "default.handlebars->25->824" + "default.handlebars->25->828", + "default.handlebars->25->830" ] }, { @@ -4890,7 +4902,7 @@ "ru": "Объем / Скорость", "zh-chs": "容量/速度", "xloc": [ - "default.handlebars->25->817" + "default.handlebars->25->823" ] }, { @@ -4907,7 +4919,7 @@ "ru": "Каталонский", "zh-chs": "加泰羅尼亞語", "xloc": [ - "default.handlebars->25->898" + "default.handlebars->25->904" ] }, { @@ -4941,7 +4953,7 @@ "ru": "Чаморро", "zh-chs": "查莫羅", "xloc": [ - "default.handlebars->25->899" + "default.handlebars->25->905" ] }, { @@ -4972,7 +4984,7 @@ "ru": "Смена email для {0}", "zh-chs": "更改{0}的電子郵件", "xloc": [ - "default.handlebars->25->1608" + "default.handlebars->25->1614" ] }, { @@ -5009,8 +5021,8 @@ "zh-chs": "更改密碼", "xloc": [ "default-mobile.handlebars->9->59", - "default.handlebars->25->1093", - "default.handlebars->25->1597" + "default.handlebars->25->1099", + "default.handlebars->25->1603" ] }, { @@ -5027,7 +5039,7 @@ "ru": "Смена пароля для {0}", "zh-chs": "更改{0}的密碼", "xloc": [ - "default.handlebars->25->1615" + "default.handlebars->25->1621" ] }, { @@ -5097,7 +5109,7 @@ "ru": "Изменить пароль для этого пользователя", "zh-chs": "更改該用戶的密碼", "xloc": [ - "default.handlebars->25->1596" + "default.handlebars->25->1602" ] }, { @@ -5131,7 +5143,7 @@ "ru": "Измените адрес электронной почты вашей учетной записи здесь.", "zh-chs": "在此處更改您的帳戶電子郵件地址。", "xloc": [ - "default.handlebars->25->1080" + "default.handlebars->25->1086" ] }, { @@ -5148,7 +5160,7 @@ "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.", "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->25->1086" + "default.handlebars->25->1092" ] }, { @@ -5165,7 +5177,7 @@ "ru": "Изменение языка потребует перезагрузить страницу.", "zh-chs": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->25->1065" + "default.handlebars->25->1071" ] }, { @@ -5182,7 +5194,7 @@ "ru": "Чат", "zh-chs": "聊天室", "xloc": [ - "default.handlebars->25->1398", + "default.handlebars->25->1404", "default.handlebars->25->578", "default.handlebars->25->597" ] @@ -5203,8 +5215,8 @@ "xloc": [ "default-mobile.handlebars->9->312", "default-mobile.handlebars->9->330", - "default.handlebars->25->1260", - "default.handlebars->25->1294" + "default.handlebars->25->1266", + "default.handlebars->25->1300" ] }, { @@ -5221,7 +5233,7 @@ "ru": "Чеченский", "zh-chs": "車臣", "xloc": [ - "default.handlebars->25->900" + "default.handlebars->25->906" ] }, { @@ -5302,8 +5314,8 @@ "ru": "Проверка...", "zh-chs": "檢查...", "xloc": [ - "default.handlebars->25->1754", - "default.handlebars->25->866" + "default.handlebars->25->1760", + "default.handlebars->25->872" ] }, { @@ -5320,7 +5332,7 @@ "ru": "Китайский", "zh-chs": "中文", "xloc": [ - "default.handlebars->25->901" + "default.handlebars->25->907" ] }, { @@ -5337,7 +5349,7 @@ "ru": "Китайский (Гонконг)", "zh-chs": "中文(香港)", "xloc": [ - "default.handlebars->25->902" + "default.handlebars->25->908" ] }, { @@ -5354,7 +5366,7 @@ "ru": "Китайский (КНР)", "zh-chs": "中文(中國)", "xloc": [ - "default.handlebars->25->903" + "default.handlebars->25->909" ] }, { @@ -5371,7 +5383,7 @@ "ru": "Упрощенный китайский)", "zh-chs": "简体中文)", "xloc": [ - "default.handlebars->25->1063" + "default.handlebars->25->1069" ] }, { @@ -5388,7 +5400,7 @@ "ru": "Китайский (Сингапур)", "zh-chs": "中文(新加坡)", "xloc": [ - "default.handlebars->25->904" + "default.handlebars->25->910" ] }, { @@ -5405,7 +5417,7 @@ "ru": "Китайский (Тайвань)", "zh-chs": "中文(台灣)", "xloc": [ - "default.handlebars->25->905" + "default.handlebars->25->911" ] }, { @@ -5440,7 +5452,7 @@ "ru": "Чувашский", "zh-chs": "楚瓦什", "xloc": [ - "default.handlebars->25->906" + "default.handlebars->25->912" ] }, { @@ -5480,11 +5492,11 @@ "default-mobile.handlebars->9->271", "default-mobile.handlebars->9->273", "default-mobile.handlebars->9->28", - "default.handlebars->25->1375", - "default.handlebars->25->747", - "default.handlebars->25->749", - "default.handlebars->25->751", + "default.handlebars->25->1381", "default.handlebars->25->753", + "default.handlebars->25->755", + "default.handlebars->25->757", + "default.handlebars->25->759", "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" @@ -5518,7 +5530,7 @@ "nl": "Wis alle meldingen", "zh-chs": "全部清除", "xloc": [ - "default.handlebars->25->1684" + "default.handlebars->25->1690" ] }, { @@ -5535,7 +5547,7 @@ "ru": "Очистить ядро", "zh-chs": "清除核心", "xloc": [ - "default.handlebars->25->838" + "default.handlebars->25->844" ] }, { @@ -5568,7 +5580,7 @@ "ru": "Очистить это уведомление", "zh-chs": "清除此通知", "xloc": [ - "default.handlebars->25->1683" + "default.handlebars->25->1689" ] }, { @@ -5613,8 +5625,8 @@ "nl": "Klik hier om de apparaatgroepsnaam te bewerken", "zh-chs": "单击此处编辑设备组名称", "xloc": [ - "default.handlebars->25->1126", - "default.handlebars->25->1331" + "default.handlebars->25->1132", + "default.handlebars->25->1337" ] }, { @@ -5644,7 +5656,7 @@ "nl": "Klik hier om de gebruikersgroepsnaam te bewerken", "zh-chs": "单击此处编辑用户组名称", "xloc": [ - "default.handlebars->25->1496" + "default.handlebars->25->1502" ] }, { @@ -5694,7 +5706,7 @@ "zh-chs": "單擊確定將驗證郵件發送到:", "xloc": [ "default-mobile.handlebars->9->44", - "default.handlebars->25->1077" + "default.handlebars->25->1083" ] }, { @@ -5728,7 +5740,7 @@ "ru": "Режим управления клиентом (CCM)", "zh-chs": "客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->25->795" + "default.handlebars->25->801" ] }, { @@ -5745,8 +5757,8 @@ "ru": "Клиент инициировал удаленный доступ", "zh-chs": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->25->1197", - "default.handlebars->25->1202" + "default.handlebars->25->1203", + "default.handlebars->25->1208" ] }, { @@ -5783,7 +5795,7 @@ "default-mobile.handlebars->9->26", "default.handlebars->25->121", "default.handlebars->25->129", - "default.handlebars->25->705" + "default.handlebars->25->711" ] }, { @@ -5818,8 +5830,8 @@ "ru": "Общие группы устройств", "zh-chs": "通用設備組", "xloc": [ - "default.handlebars->25->1512", - "default.handlebars->25->1620" + "default.handlebars->25->1518", + "default.handlebars->25->1626" ] }, { @@ -5836,8 +5848,8 @@ "ru": "Общие устройства", "zh-chs": "通用設備", "xloc": [ - "default.handlebars->25->1518", - "default.handlebars->25->1632" + "default.handlebars->25->1524", + "default.handlebars->25->1638" ] }, { @@ -5855,7 +5867,7 @@ "zh-chs": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->9->96", - "default.handlebars->25->1370" + "default.handlebars->25->1376" ] }, { @@ -5874,11 +5886,11 @@ "xloc": [ "default-mobile.handlebars->9->230", "default-mobile.handlebars->9->292", - "default.handlebars->25->1211", - "default.handlebars->25->1424", - "default.handlebars->25->1488", - "default.handlebars->25->1532", - "default.handlebars->25->1618", + "default.handlebars->25->1217", + "default.handlebars->25->1430", + "default.handlebars->25->1494", + "default.handlebars->25->1538", + "default.handlebars->25->1624", "default.handlebars->25->396", "default.handlebars->25->631", "default.handlebars->25->640" @@ -5899,7 +5911,7 @@ "zh-chs": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->9->262", - "default.handlebars->25->742" + "default.handlebars->25->748" ] }, { @@ -5917,7 +5929,7 @@ "zh-chs": "確認{0}個條目的副本到此位置?", "xloc": [ "default-mobile.handlebars->9->261", - "default.handlebars->25->741" + "default.handlebars->25->747" ] }, { @@ -5931,7 +5943,7 @@ "nl": "Bevestig verwijdering geselecteerde account(s)?", "zh-chs": "确认删除选定的帐户?", "xloc": [ - "default.handlebars->25->1423" + "default.handlebars->25->1429" ] }, { @@ -5962,7 +5974,7 @@ "nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?", "zh-chs": "确认删除选定的用户组?", "xloc": [ - "default.handlebars->25->1487" + "default.handlebars->25->1493" ] }, { @@ -5979,7 +5991,7 @@ "ru": "Подтвердить удаление пользователя {0}?", "zh-chs": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->25->1617" + "default.handlebars->25->1623" ] }, { @@ -5993,7 +6005,7 @@ "nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户\\“ {0} \\”的成员身份?", "xloc": [ - "default.handlebars->25->1535" + "default.handlebars->25->1541" ] }, { @@ -6007,7 +6019,7 @@ "nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组 “{0}” 的成员身份?", "xloc": [ - "default.handlebars->25->1647" + "default.handlebars->25->1653" ] }, { @@ -6025,7 +6037,7 @@ "zh-chs": "確認將1個入口移動到此位置?", "xloc": [ "default-mobile.handlebars->9->264", - "default.handlebars->25->744" + "default.handlebars->25->750" ] }, { @@ -6043,7 +6055,7 @@ "zh-chs": "確認將{0}個條目移到此位置?", "xloc": [ "default-mobile.handlebars->9->263", - "default.handlebars->25->743" + "default.handlebars->25->749" ] }, { @@ -6060,7 +6072,7 @@ "ru": "Подтвердить перезапись?", "zh-chs": "確認覆蓋?", "xloc": [ - "default.handlebars->25->1369" + "default.handlebars->25->1375" ] }, { @@ -6074,8 +6086,8 @@ "nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?", "zh-chs": "确认删除设备“ {0} ”的访问权限?", "xloc": [ - "default.handlebars->25->1525", - "default.handlebars->25->1638" + "default.handlebars->25->1531", + "default.handlebars->25->1644" ] }, { @@ -6089,8 +6101,8 @@ "nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?", "zh-chs": "是否确认删除设备组“ {0}”的访问权限?", "xloc": [ - "default.handlebars->25->1527", - "default.handlebars->25->1651" + "default.handlebars->25->1533", + "default.handlebars->25->1657" ] }, { @@ -6104,7 +6116,7 @@ "nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户\\“ {0} \\”的访问权限?", "xloc": [ - "default.handlebars->25->1640" + "default.handlebars->25->1646" ] }, { @@ -6118,7 +6130,7 @@ "nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组“ {0}”的访问权限?", "xloc": [ - "default.handlebars->25->1643" + "default.handlebars->25->1649" ] }, { @@ -6132,8 +6144,8 @@ "nl": "Verwijdering van toegangsrechten bevestigen?", "zh-chs": "确认删除访问权限?", "xloc": [ - "default.handlebars->25->1641", - "default.handlebars->25->1644" + "default.handlebars->25->1647", + "default.handlebars->25->1650" ] }, { @@ -6151,7 +6163,7 @@ "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?", "xloc": [ "default-mobile.handlebars->9->43", - "default.handlebars->25->856" + "default.handlebars->25->862" ] }, { @@ -6206,7 +6218,7 @@ "nl": "Bevestig de verwijdering van rechten voor gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户“ {0} ”的权限?", "xloc": [ - "default.handlebars->25->1303" + "default.handlebars->25->1309" ] }, { @@ -6220,7 +6232,7 @@ "nl": "Bevestig de verwijdering van rechten voor de gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组“ {0} ”的权限?", "xloc": [ - "default.handlebars->25->1305" + "default.handlebars->25->1311" ] }, { @@ -6268,8 +6280,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->25->1150", - "default.handlebars->25->724", + "default.handlebars->25->1156", + "default.handlebars->25->730", "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", @@ -6308,8 +6320,8 @@ "ru": "Подключиться к серверу", "zh-chs": "連接到服務器", "xloc": [ - "default.handlebars->25->1201", - "default.handlebars->25->1205" + "default.handlebars->25->1207", + "default.handlebars->25->1211" ] }, { @@ -6380,7 +6392,7 @@ "ru": "Подключено Intel® AMT", "zh-chs": "連接的英特爾®AMT", "xloc": [ - "default.handlebars->25->1702" + "default.handlebars->25->1708" ] }, { @@ -6397,7 +6409,7 @@ "ru": "Подключенные пользователи", "zh-chs": "關聯用戶", "xloc": [ - "default.handlebars->25->1707" + "default.handlebars->25->1713" ] }, { @@ -6414,7 +6426,7 @@ "ru": "Подключено сейчас", "zh-chs": "現在已連接", "xloc": [ - "default.handlebars->25->774" + "default.handlebars->25->780" ] }, { @@ -6454,7 +6466,7 @@ "default.handlebars->25->204", "default.handlebars->25->207", "default.handlebars->25->213", - "default.handlebars->25->765", + "default.handlebars->25->771", "default.handlebars->25->9", "xterm.handlebars->9->2" ] @@ -6473,7 +6485,7 @@ "ru": "Подключений ", "zh-chs": "連接數", "xloc": [ - "default.handlebars->25->1718" + "default.handlebars->25->1724" ] }, { @@ -6490,7 +6502,7 @@ "ru": "Ретранслятор подключения", "zh-chs": "連接繼電器", "xloc": [ - "default.handlebars->25->1746" + "default.handlebars->25->1752" ] }, { @@ -6542,7 +6554,7 @@ "zh-chs": "連接性", "xloc": [ "default-mobile.handlebars->9->205", - "default.handlebars->25->1338", + "default.handlebars->25->1344", "default.handlebars->25->195", "default.handlebars->25->520", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" @@ -6617,7 +6629,7 @@ "ru": "Cookie-кодировщик", "zh-chs": "Cookie編碼器", "xloc": [ - "default.handlebars->25->1732" + "default.handlebars->25->1738" ] }, { @@ -6743,8 +6755,8 @@ "ru": "Скопировать ссылку в буфер обмена", "zh-chs": "複製鏈接到剪貼板", "xloc": [ - "default.handlebars->25->1343", - "default.handlebars->25->1357", + "default.handlebars->25->1349", + "default.handlebars->25->1363", "default.handlebars->25->308" ] }, @@ -6922,7 +6934,7 @@ "ru": "Основной сервер", "zh-chs": "核心服務器", "xloc": [ - "default.handlebars->25->1731" + "default.handlebars->25->1737" ] }, { @@ -6939,7 +6951,7 @@ "ru": "Kорсиканский", "zh-chs": "科西嘉人", "xloc": [ - "default.handlebars->25->907" + "default.handlebars->25->913" ] }, { @@ -6956,7 +6968,7 @@ "ru": "Создать учетную запись", "zh-chs": "創建帳號", "xloc": [ - "default.handlebars->25->1458", + "default.handlebars->25->1464", "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" ] @@ -6992,7 +7004,7 @@ "ru": "Создать группу пользователей", "zh-chs": "創建用戶組", "xloc": [ - "default.handlebars->25->1493" + "default.handlebars->25->1499" ] }, { @@ -7009,7 +7021,7 @@ "ru": "Создайте новую группу устройств, используя параметры ниже.", "zh-chs": "使用以下選項創建一個新的設備組。", "xloc": [ - "default.handlebars->25->1100" + "default.handlebars->25->1106" ] }, { @@ -7043,7 +7055,7 @@ "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:", "xloc": [ - "default.handlebars->25->1429" + "default.handlebars->25->1435" ] }, { @@ -7078,7 +7090,7 @@ "ru": "Создано", "zh-chs": "創建", "xloc": [ - "default.handlebars->25->1558" + "default.handlebars->25->1564" ] }, { @@ -7113,7 +7125,7 @@ "ru": "Кри (Канадский язык)", "zh-chs": "克里", "xloc": [ - "default.handlebars->25->908" + "default.handlebars->25->914" ] }, { @@ -7130,7 +7142,7 @@ "ru": "Хорватский", "zh-chs": "克羅地亞語", "xloc": [ - "default.handlebars->25->909" + "default.handlebars->25->915" ] }, { @@ -7271,7 +7283,7 @@ "ru": "Чешский", "zh-chs": "捷克文", "xloc": [ - "default.handlebars->25->910" + "default.handlebars->25->916" ] }, { @@ -7305,7 +7317,7 @@ "ru": "Датский", "zh-chs": "丹麥文", "xloc": [ - "default.handlebars->25->911" + "default.handlebars->25->917" ] }, { @@ -7339,7 +7351,7 @@ "ru": "Дата & Время", "zh-chs": "日期和時間", "xloc": [ - "default.handlebars->25->1068" + "default.handlebars->25->1074" ] }, { @@ -7373,7 +7385,7 @@ "ru": "Деактивировать режим управления клиентом (CCM)", "zh-chs": "停用客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->25->1189" + "default.handlebars->25->1195" ] }, { @@ -7412,9 +7424,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->25->1364", + "default.handlebars->25->1370", "default.handlebars->25->426", - "default.handlebars->25->734", + "default.handlebars->25->740", "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", @@ -7438,7 +7450,7 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->9->53", - "default.handlebars->25->1085" + "default.handlebars->25->1091" ] }, { @@ -7452,7 +7464,7 @@ "nl": "Verwijder accounts", "zh-chs": "删除帐号", "xloc": [ - "default.handlebars->25->1425" + "default.handlebars->25->1431" ] }, { @@ -7489,8 +7501,8 @@ "xloc": [ "default-mobile.handlebars->9->290", "default-mobile.handlebars->9->293", - "default.handlebars->25->1182", - "default.handlebars->25->1212" + "default.handlebars->25->1188", + "default.handlebars->25->1218" ] }, { @@ -7542,7 +7554,7 @@ "ru": "Удалить пользователя", "zh-chs": "刪除用戶", "xloc": [ - "default.handlebars->25->1595" + "default.handlebars->25->1601" ] }, { @@ -7559,8 +7571,8 @@ "ru": "Удалить группу пользователей", "zh-chs": "刪除用戶組", "xloc": [ - "default.handlebars->25->1523", - "default.handlebars->25->1533" + "default.handlebars->25->1529", + "default.handlebars->25->1539" ] }, { @@ -7574,7 +7586,7 @@ "nl": "Gebruikersgroepen verwijderen", "zh-chs": "删除用户组", "xloc": [ - "default.handlebars->25->1489" + "default.handlebars->25->1495" ] }, { @@ -7591,7 +7603,7 @@ "ru": "Удалить пользователя {0}", "zh-chs": "刪除用戶{0}", "xloc": [ - "default.handlebars->25->1616" + "default.handlebars->25->1622" ] }, { @@ -7609,7 +7621,7 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->9->0", - "default.handlebars->25->1421", + "default.handlebars->25->1427", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -7641,7 +7653,7 @@ "nl": "Verwijder groep", "zh-chs": "删除群组", "xloc": [ - "default.handlebars->25->1485" + "default.handlebars->25->1491" ] }, { @@ -7677,8 +7689,8 @@ "xloc": [ "default-mobile.handlebars->9->256", "default-mobile.handlebars->9->93", - "default.handlebars->25->1366", - "default.handlebars->25->736" + "default.handlebars->25->1372", + "default.handlebars->25->742" ] }, { @@ -7695,7 +7707,7 @@ "ru": "Удалить группу пользователей {0}?", "zh-chs": "刪除用戶組{0}?", "xloc": [ - "default.handlebars->25->1531" + "default.handlebars->25->1537" ] }, { @@ -7714,8 +7726,8 @@ "xloc": [ "default-mobile.handlebars->9->255", "default-mobile.handlebars->9->92", - "default.handlebars->25->1365", - "default.handlebars->25->735" + "default.handlebars->25->1371", + "default.handlebars->25->741" ] }, { @@ -7828,18 +7840,18 @@ "default-mobile.handlebars->9->282", "default-mobile.handlebars->9->295", "default-mobile.handlebars->9->70", - "default.handlebars->25->1105", - "default.handlebars->25->1131", - "default.handlebars->25->1214", - "default.handlebars->25->1492", - "default.handlebars->25->1499", - "default.handlebars->25->1500", - "default.handlebars->25->1529", + "default.handlebars->25->1111", + "default.handlebars->25->1137", + "default.handlebars->25->1220", + "default.handlebars->25->1498", + "default.handlebars->25->1505", + "default.handlebars->25->1506", + "default.handlebars->25->1535", "default.handlebars->25->465", "default.handlebars->25->466", "default.handlebars->25->672", "default.handlebars->25->78", - "default.handlebars->25->780", + "default.handlebars->25->786", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] }, @@ -7871,8 +7883,8 @@ "ru": "Рабочий стол", "zh-chs": "桌面", "xloc": [ - "default.handlebars->25->1219", - "default.handlebars->25->1661", + "default.handlebars->25->1225", + "default.handlebars->25->1667", "default.handlebars->25->432", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop" @@ -7909,8 +7921,8 @@ "ru": "Уведомление на рабочем столе", "zh-chs": "桌面通知", "xloc": [ - "default.handlebars->25->1141", - "default.handlebars->25->1573", + "default.handlebars->25->1147", + "default.handlebars->25->1579", "default.handlebars->25->501" ] }, @@ -7928,8 +7940,8 @@ "ru": "Запрос рабочего стола", "zh-chs": "桌面提示", "xloc": [ - "default.handlebars->25->1140", - "default.handlebars->25->1572", + "default.handlebars->25->1146", + "default.handlebars->25->1578", "default.handlebars->25->500" ] }, @@ -7947,8 +7959,8 @@ "ru": "Запрос рабочего стола + панель инструментов", "zh-chs": "桌面提示+工具欄", "xloc": [ - "default.handlebars->25->1138", - "default.handlebars->25->1570", + "default.handlebars->25->1144", + "default.handlebars->25->1576", "default.handlebars->25->498" ] }, @@ -7980,8 +7992,8 @@ "ru": "Панель инструментов рабочего стола", "zh-chs": "桌面工具欄", "xloc": [ - "default.handlebars->25->1139", - "default.handlebars->25->1571", + "default.handlebars->25->1145", + "default.handlebars->25->1577", "default.handlebars->25->499" ] }, @@ -8052,8 +8064,8 @@ "ru": "Устройство", "zh-chs": "設備", "xloc": [ - "default.handlebars->25->1241", - "default.handlebars->25->1635", + "default.handlebars->25->1247", + "default.handlebars->25->1641", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -8089,13 +8101,13 @@ "ru": "Группа устройства", "zh-chs": "設備組", "xloc": [ - "default.handlebars->25->1236", - "default.handlebars->25->1239", - "default.handlebars->25->1240", - "default.handlebars->25->1515", + "default.handlebars->25->1242", + "default.handlebars->25->1245", + "default.handlebars->25->1246", "default.handlebars->25->1521", - "default.handlebars->25->1623", - "default.handlebars->25->1670" + "default.handlebars->25->1527", + "default.handlebars->25->1629", + "default.handlebars->25->1676" ] }, { @@ -8113,7 +8125,7 @@ "zh-chs": "設備組用戶", "xloc": [ "default-mobile.handlebars->9->336", - "default.handlebars->25->1301" + "default.handlebars->25->1307" ] }, { @@ -8131,11 +8143,11 @@ "zh-chs": "設備組", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->25->1390", - "default.handlebars->25->1479", - "default.handlebars->25->1502", - "default.handlebars->25->1567", - "default.handlebars->25->1705", + "default.handlebars->25->1396", + "default.handlebars->25->1485", + "default.handlebars->25->1508", + "default.handlebars->25->1573", + "default.handlebars->25->1711", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -8188,7 +8200,7 @@ "zh-chs": "設備名稱", "xloc": [ "default-mobile.handlebars->9->232", - "default.handlebars->25->1669", + "default.handlebars->25->1675", "default.handlebars->25->231", "default.handlebars->25->670", "player.handlebars->3->9" @@ -8242,8 +8254,8 @@ "ru": "Подключения устройств.", "zh-chs": "設備連接。", "xloc": [ - "default.handlebars->25->1073", - "default.handlebars->25->1322" + "default.handlebars->25->1079", + "default.handlebars->25->1328" ] }, { @@ -8260,8 +8272,8 @@ "ru": "Отключения устройств.", "zh-chs": "設備斷開連接。", "xloc": [ - "default.handlebars->25->1074", - "default.handlebars->25->1323" + "default.handlebars->25->1080", + "default.handlebars->25->1329" ] }, { @@ -8571,8 +8583,8 @@ "nl": "Apparaten", "zh-chs": "设备", "xloc": [ - "default.handlebars->25->1480", - "default.handlebars->25->1503" + "default.handlebars->25->1486", + "default.handlebars->25->1509" ] }, { @@ -8608,8 +8620,8 @@ "xloc": [ "default-mobile.handlebars->9->245", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->25->1151", - "default.handlebars->25->725", + "default.handlebars->25->1157", + "default.handlebars->25->731", "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" @@ -8691,7 +8703,7 @@ "ru": "Отобразить имя группы устройств", "zh-chs": "顯示設備組名稱", "xloc": [ - "default.handlebars->25->1072" + "default.handlebars->25->1078" ] }, { @@ -8708,7 +8720,7 @@ "ru": "Отображаемое имя", "zh-chs": "顯示名稱", "xloc": [ - "default.handlebars->25->696" + "default.handlebars->25->702" ] }, { @@ -8724,7 +8736,7 @@ "ru": "Показать публичную ссылку", "zh-chs": "显示公共链接", "xloc": [ - "default.handlebars->25->1342" + "default.handlebars->25->1348" ] }, { @@ -8741,7 +8753,7 @@ "ru": "Ничего не делать", "zh-chs": "沒做什麼", "xloc": [ - "default.handlebars->25->1195" + "default.handlebars->25->1201" ] }, { @@ -8754,8 +8766,8 @@ "nl": "Niet configureren", "zh-chs": "不要配置", "xloc": [ - "default.handlebars->25->1199", - "default.handlebars->25->1204" + "default.handlebars->25->1205", + "default.handlebars->25->1210" ] }, { @@ -8768,7 +8780,7 @@ "nl": "Maak geen verbinding met de server", "zh-chs": "不要连接到服务器", "xloc": [ - "default.handlebars->25->1200" + "default.handlebars->25->1206" ] }, { @@ -8868,7 +8880,7 @@ "zh-chs": "下載文件", "xloc": [ "default-mobile.handlebars->9->275", - "default.handlebars->25->754" + "default.handlebars->25->760" ] }, { @@ -9089,7 +9101,7 @@ "ru": "Скачать список событий в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載事件列表。", "xloc": [ - "default.handlebars->25->1380" + "default.handlebars->25->1386" ] }, { @@ -9106,7 +9118,7 @@ "ru": "Скачать список пользователей в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載用戶列表。", "xloc": [ - "default.handlebars->25->1437" + "default.handlebars->25->1443" ] }, { @@ -9189,7 +9201,7 @@ "nl": "Dubbele agent", "zh-chs": "代理重复", "xloc": [ - "default.handlebars->25->1701" + "default.handlebars->25->1707" ] }, { @@ -9223,7 +9235,7 @@ "ru": "Скопировать группу пользователей", "zh-chs": "重複的用戶組", "xloc": [ - "default.handlebars->25->1494" + "default.handlebars->25->1500" ] }, { @@ -9254,8 +9266,8 @@ "ru": "Длительность", "zh-chs": "持續時間", "xloc": [ - "default.handlebars->25->1655", - "default.handlebars->25->1675", + "default.handlebars->25->1661", + "default.handlebars->25->1681", "player.handlebars->3->2" ] }, @@ -9273,7 +9285,7 @@ "ru": "Во время активации агент будет иметь доступ к паролю администратора.", "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。", "xloc": [ - "default.handlebars->25->1209" + "default.handlebars->25->1215" ] }, { @@ -9290,7 +9302,7 @@ "ru": "Голландский (Бельгийский)", "zh-chs": "荷蘭語(比利時)", "xloc": [ - "default.handlebars->25->913" + "default.handlebars->25->919" ] }, { @@ -9307,7 +9319,7 @@ "ru": "Голландский (Стандартный)", "zh-chs": "荷蘭語(標準)", "xloc": [ - "default.handlebars->25->912" + "default.handlebars->25->918" ] }, { @@ -9518,10 +9530,10 @@ "default-mobile.handlebars->9->296", "default-mobile.handlebars->9->298", "default-mobile.handlebars->9->316", - "default.handlebars->25->1215", - "default.handlebars->25->1245", - "default.handlebars->25->1267", - "default.handlebars->25->1279" + "default.handlebars->25->1221", + "default.handlebars->25->1251", + "default.handlebars->25->1273", + "default.handlebars->25->1285" ] }, { @@ -9538,7 +9550,7 @@ "ru": "Редактировать функции группы устройств", "zh-chs": "編輯設備組功能", "xloc": [ - "default.handlebars->25->1231" + "default.handlebars->25->1237" ] }, { @@ -9555,8 +9567,8 @@ "ru": "Редактировать права группы устройств", "zh-chs": "編輯設備組權限", "xloc": [ - "default.handlebars->25->1264", - "default.handlebars->25->1276" + "default.handlebars->25->1270", + "default.handlebars->25->1282" ] }, { @@ -9573,7 +9585,7 @@ "ru": "Редактировать согласие пользователя группы устройств", "zh-chs": "編輯設備組用戶同意", "xloc": [ - "default.handlebars->25->1216" + "default.handlebars->25->1222" ] }, { @@ -9591,7 +9603,7 @@ "zh-chs": "編輯設備說明", "xloc": [ "default-mobile.handlebars->9->310", - "default.handlebars->25->1258" + "default.handlebars->25->1264" ] }, { @@ -9607,8 +9619,8 @@ "ru": "Изменить разрешения устройства", "zh-chs": "编辑设备权限", "xloc": [ - "default.handlebars->25->1269", - "default.handlebars->25->1271" + "default.handlebars->25->1275", + "default.handlebars->25->1277" ] }, { @@ -9622,7 +9634,7 @@ "nl": "Gebruikerstoestemming apparaat bewerken", "zh-chs": "编辑设备用户同意", "xloc": [ - "default.handlebars->25->1218" + "default.handlebars->25->1224" ] }, { @@ -9676,7 +9688,7 @@ "zh-chs": "編輯筆記", "xloc": [ "default-mobile.handlebars->9->323", - "default.handlebars->25->1286" + "default.handlebars->25->1292" ] }, { @@ -9690,7 +9702,7 @@ "nl": "Gebruikerstoestemming bewerken", "zh-chs": "编辑用户同意", "xloc": [ - "default.handlebars->25->1217" + "default.handlebars->25->1223" ] }, { @@ -9707,7 +9719,7 @@ "ru": "Редактировать права пользователя для группы устройств", "zh-chs": "編輯用戶設備組權限", "xloc": [ - "default.handlebars->25->1277" + "default.handlebars->25->1283" ] }, { @@ -9723,7 +9735,7 @@ "ru": "Изменить разрешения для пользовательских устройств", "zh-chs": "编辑用户设备权限", "xloc": [ - "default.handlebars->25->1272" + "default.handlebars->25->1278" ] }, { @@ -9740,7 +9752,7 @@ "ru": "Редактировать группу пользователей", "zh-chs": "編輯用戶組", "xloc": [ - "default.handlebars->25->1530" + "default.handlebars->25->1536" ] }, { @@ -9754,7 +9766,7 @@ "nl": "Gebruikersmachtigingen voor apparaatgroep bewerken", "zh-chs": "编辑用户组设备权限", "xloc": [ - "default.handlebars->25->1274" + "default.handlebars->25->1280" ] }, { @@ -9789,10 +9801,10 @@ "zh-chs": "電子郵件", "xloc": [ "default-mobile.handlebars->9->47", - "default.handlebars->25->1449", - "default.handlebars->25->1552", - "default.handlebars->25->1553", - "default.handlebars->25->1604", + "default.handlebars->25->1455", + "default.handlebars->25->1558", + "default.handlebars->25->1559", + "default.handlebars->25->1610", "default.handlebars->25->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", @@ -9815,7 +9827,7 @@ "zh-chs": "電郵地址變更", "xloc": [ "default-mobile.handlebars->9->48", - "default.handlebars->25->1081" + "default.handlebars->25->1087" ] }, { @@ -9833,7 +9845,7 @@ "zh-chs": "郵件認證", "xloc": [ "default-mobile.handlebars->9->37", - "default.handlebars->25->850" + "default.handlebars->25->856" ] }, { @@ -9878,7 +9890,7 @@ "zh-chs": "電子郵件驗證", "xloc": [ "default-mobile.handlebars->9->46", - "default.handlebars->25->1079" + "default.handlebars->25->1085" ] }, { @@ -9908,7 +9920,7 @@ "ru": "Электронная почта не подтверждена", "zh-chs": "邮件未验证", "xloc": [ - "default.handlebars->25->1409" + "default.handlebars->25->1415" ] }, { @@ -9925,8 +9937,8 @@ "ru": "Email подтвержден", "zh-chs": "電子郵件已驗證", "xloc": [ - "default.handlebars->25->1410", - "default.handlebars->25->1549" + "default.handlebars->25->1416", + "default.handlebars->25->1555" ] }, { @@ -9943,7 +9955,7 @@ "ru": "Email подтвержден.", "zh-chs": "電子郵件已驗證。", "xloc": [ - "default.handlebars->25->1455" + "default.handlebars->25->1461" ] }, { @@ -9960,7 +9972,7 @@ "ru": "Email не подтвержден", "zh-chs": "電子郵件未驗證", "xloc": [ - "default.handlebars->25->1550" + "default.handlebars->25->1556" ] }, { @@ -10005,7 +10017,7 @@ "nl": "Email/SMS verkeer", "zh-chs": "电子邮件/短信流量", "xloc": [ - "default.handlebars->25->1740" + "default.handlebars->25->1746" ] }, { @@ -10044,7 +10056,7 @@ "ru": "Включить коды приглашения", "zh-chs": "啟用邀請代碼", "xloc": [ - "default.handlebars->25->1307" + "default.handlebars->25->1313" ] }, { @@ -10079,7 +10091,7 @@ "zh-chs": "啟用電子郵件兩因素驗證。", "xloc": [ "default-mobile.handlebars->9->39", - "default.handlebars->25->852" + "default.handlebars->25->858" ] }, { @@ -10103,7 +10115,7 @@ "en": "Enabled", "nl": "Ingeschakeld", "xloc": [ - "default.handlebars->25->1677" + "default.handlebars->25->1683" ] }, { @@ -10127,7 +10139,7 @@ "en": "End Time", "nl": "Eindtijd", "xloc": [ - "default.handlebars->25->1674" + "default.handlebars->25->1680" ] }, { @@ -10144,7 +10156,7 @@ "ru": "Английский", "zh-chs": "英語", "xloc": [ - "default.handlebars->25->914" + "default.handlebars->25->920" ] }, { @@ -10161,7 +10173,7 @@ "ru": "Английский (Австралия)", "zh-chs": "英文(澳洲)", "xloc": [ - "default.handlebars->25->915" + "default.handlebars->25->921" ] }, { @@ -10178,7 +10190,7 @@ "ru": "Английский (Белиз)", "zh-chs": "英語(伯利茲)", "xloc": [ - "default.handlebars->25->916" + "default.handlebars->25->922" ] }, { @@ -10195,7 +10207,7 @@ "ru": "Английский (Канада)", "zh-chs": "英文(加拿大)", "xloc": [ - "default.handlebars->25->917" + "default.handlebars->25->923" ] }, { @@ -10212,7 +10224,7 @@ "ru": "Английский (Ирландия)", "zh-chs": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->25->918" + "default.handlebars->25->924" ] }, { @@ -10229,7 +10241,7 @@ "ru": "Английский (Ямайка)", "zh-chs": "英文(牙買加)", "xloc": [ - "default.handlebars->25->919" + "default.handlebars->25->925" ] }, { @@ -10246,7 +10258,7 @@ "ru": "Английский (Новая Зеландия)", "zh-chs": "英文(紐西蘭)", "xloc": [ - "default.handlebars->25->920" + "default.handlebars->25->926" ] }, { @@ -10263,7 +10275,7 @@ "ru": "Английский (Филиппины)", "zh-chs": "英文(菲律賓)", "xloc": [ - "default.handlebars->25->921" + "default.handlebars->25->927" ] }, { @@ -10280,7 +10292,7 @@ "ru": "Английский (Южная Африка)", "zh-chs": "英語(南非)", "xloc": [ - "default.handlebars->25->922" + "default.handlebars->25->928" ] }, { @@ -10297,7 +10309,7 @@ "ru": "Английский (Тринидад и Тобаго)", "zh-chs": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->25->923" + "default.handlebars->25->929" ] }, { @@ -10314,7 +10326,7 @@ "ru": "Английский (Великобритания)", "zh-chs": "英文(英國)", "xloc": [ - "default.handlebars->25->924" + "default.handlebars->25->930" ] }, { @@ -10331,7 +10343,7 @@ "ru": "Английский (Соединенные Штаты)", "zh-chs": "美國英語)", "xloc": [ - "default.handlebars->25->925" + "default.handlebars->25->931" ] }, { @@ -10348,7 +10360,7 @@ "ru": "Английский (Зимбабве)", "zh-chs": "英文(津巴布韋)", "xloc": [ - "default.handlebars->25->926" + "default.handlebars->25->932" ] }, { @@ -10365,8 +10377,8 @@ "ru": "Ввод", "zh-chs": "輸入", "xloc": [ - "default.handlebars->25->1107", - "default.handlebars->25->1108" + "default.handlebars->25->1113", + "default.handlebars->25->1114" ] }, { @@ -10383,7 +10395,7 @@ "ru": "Введите разделенный запятыми список имен административных областей.", "zh-chs": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->25->1459" + "default.handlebars->25->1465" ] }, { @@ -10417,7 +10429,7 @@ "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.", "zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->25->690" + "default.handlebars->25->696" ] }, { @@ -10465,7 +10477,7 @@ "nl": "Voer uw telefoonnummer in dat geschikt is voor SMS. Na verificatie kan het nummer worden gebruikt voor inlogverificatie en andere meldingen.", "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "xloc": [ - "default.handlebars->25->847" + "default.handlebars->25->853" ] }, { @@ -10516,7 +10528,7 @@ "ru": "Эсперанто", "zh-chs": "世界語", "xloc": [ - "default.handlebars->25->927" + "default.handlebars->25->933" ] }, { @@ -10533,7 +10545,7 @@ "ru": "Эстонский", "zh-chs": "愛沙尼亞語", "xloc": [ - "default.handlebars->25->928" + "default.handlebars->25->934" ] }, { @@ -10550,7 +10562,7 @@ "ru": "Детали события", "zh-chs": "活動詳情", "xloc": [ - "default.handlebars->25->767" + "default.handlebars->25->773" ] }, { @@ -10567,7 +10579,7 @@ "ru": "Экспорт списка событий", "zh-chs": "活動列表導出", "xloc": [ - "default.handlebars->25->1385" + "default.handlebars->25->1391" ] }, { @@ -10656,7 +10668,7 @@ "ru": "Расширенный ASCII", "zh-chs": "擴展ASCII", "xloc": [ - "default.handlebars->25->716" + "default.handlebars->25->722" ] }, { @@ -10690,7 +10702,7 @@ "ru": "Внешний", "zh-chs": "外部", "xloc": [ - "default.handlebars->25->1725" + "default.handlebars->25->1731" ] }, { @@ -10707,7 +10719,7 @@ "ru": "Mакедонский (БЮР)", "zh-chs": "FYRO馬其頓語", "xloc": [ - "default.handlebars->25->978" + "default.handlebars->25->984" ] }, { @@ -10724,7 +10736,7 @@ "ru": "Фарерский", "zh-chs": "法羅語", "xloc": [ - "default.handlebars->25->929" + "default.handlebars->25->935" ] }, { @@ -10771,7 +10783,7 @@ "ru": "Фарси (Персидский)", "zh-chs": "波斯語(波斯語)", "xloc": [ - "default.handlebars->25->930" + "default.handlebars->25->936" ] }, { @@ -10806,7 +10818,7 @@ "ru": "Функции", "zh-chs": "特徵", "xloc": [ - "default.handlebars->25->1137" + "default.handlebars->25->1143" ] }, { @@ -10823,7 +10835,7 @@ "ru": "Фиджи", "zh-chs": "斐濟", "xloc": [ - "default.handlebars->25->931" + "default.handlebars->25->937" ] }, { @@ -10842,7 +10854,7 @@ "xloc": [ "default-mobile.handlebars->9->259", "default.handlebars->25->424", - "default.handlebars->25->739" + "default.handlebars->25->745" ] }, { @@ -10876,7 +10888,7 @@ "ru": "Драйвер файловой системы", "zh-chs": "FileSystemDriver", "xloc": [ - "default.handlebars->25->699" + "default.handlebars->25->705" ] }, { @@ -10893,8 +10905,8 @@ "ru": "Файлы", "zh-chs": "檔案", "xloc": [ - "default.handlebars->25->1226", - "default.handlebars->25->1662", + "default.handlebars->25->1232", + "default.handlebars->25->1668", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" ] @@ -10930,8 +10942,8 @@ "ru": "Уведомление файлов", "zh-chs": "文件通知", "xloc": [ - "default.handlebars->25->1145", - "default.handlebars->25->1577", + "default.handlebars->25->1151", + "default.handlebars->25->1583", "default.handlebars->25->505" ] }, @@ -10949,8 +10961,8 @@ "ru": "Запрос файлов", "zh-chs": "文件提示", "xloc": [ - "default.handlebars->25->1144", - "default.handlebars->25->1576", + "default.handlebars->25->1150", + "default.handlebars->25->1582", "default.handlebars->25->504" ] }, @@ -10987,7 +10999,7 @@ "ru": "Финский", "zh-chs": "芬蘭", "xloc": [ - "default.handlebars->25->932" + "default.handlebars->25->938" ] }, { @@ -11110,8 +11122,8 @@ "ru": "Принудительно сбросить пароль при следующем входе в систему.", "zh-chs": "下次登錄時強制重置密碼。", "xloc": [ - "default.handlebars->25->1453", - "default.handlebars->25->1613" + "default.handlebars->25->1459", + "default.handlebars->25->1619" ] }, { @@ -11197,8 +11209,8 @@ "ru": "Свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->25->1686", - "default.handlebars->25->1688" + "default.handlebars->25->1692", + "default.handlebars->25->1694" ] }, { @@ -11233,7 +11245,7 @@ "ru": "Французский (Бельгия)", "zh-chs": "法語(比利時)", "xloc": [ - "default.handlebars->25->934" + "default.handlebars->25->940" ] }, { @@ -11250,7 +11262,7 @@ "ru": "Французский (Канада)", "zh-chs": "法語(加拿大)", "xloc": [ - "default.handlebars->25->935" + "default.handlebars->25->941" ] }, { @@ -11267,7 +11279,7 @@ "ru": "Французский (Франция)", "zh-chs": "法語(法國)", "xloc": [ - "default.handlebars->25->936" + "default.handlebars->25->942" ] }, { @@ -11284,7 +11296,7 @@ "ru": "Французский (Люксембург)", "zh-chs": "法語(盧森堡)", "xloc": [ - "default.handlebars->25->937" + "default.handlebars->25->943" ] }, { @@ -11301,7 +11313,7 @@ "ru": "Французский (Монако)", "zh-chs": "法語(摩納哥)", "xloc": [ - "default.handlebars->25->938" + "default.handlebars->25->944" ] }, { @@ -11318,7 +11330,7 @@ "ru": "Французский (Стандартный)", "zh-chs": "法語(標準)", "xloc": [ - "default.handlebars->25->933" + "default.handlebars->25->939" ] }, { @@ -11335,7 +11347,7 @@ "ru": "Французский (Швейцария)", "zh-chs": "法語(瑞士)", "xloc": [ - "default.handlebars->25->939" + "default.handlebars->25->945" ] }, { @@ -11352,7 +11364,7 @@ "ru": "Фризский", "zh-chs": "弗里斯蘭語", "xloc": [ - "default.handlebars->25->940" + "default.handlebars->25->946" ] }, { @@ -11369,7 +11381,7 @@ "ru": "Фриульский", "zh-chs": "弗留利", "xloc": [ - "default.handlebars->25->941" + "default.handlebars->25->947" ] }, { @@ -11390,9 +11402,9 @@ "default-mobile.handlebars->9->297", "default-mobile.handlebars->9->315", "default-mobile.handlebars->9->74", - "default.handlebars->25->1114", - "default.handlebars->25->1244", - "default.handlebars->25->1465" + "default.handlebars->25->1120", + "default.handlebars->25->1250", + "default.handlebars->25->1471" ] }, { @@ -11409,7 +11421,7 @@ "ru": "Администратор с полным доступом (все права)", "zh-chs": "正式管理員(保留所有權利)", "xloc": [ - "default.handlebars->25->1278" + "default.handlebars->25->1284" ] }, { @@ -11492,7 +11504,7 @@ "ru": "Администратор с полным доступом", "zh-chs": "正式管理員", "xloc": [ - "default.handlebars->25->1544" + "default.handlebars->25->1550" ] }, { @@ -11505,7 +11517,7 @@ "nl": "GPU", "zh-chs": "显卡", "xloc": [ - "default.handlebars->25->815" + "default.handlebars->25->821" ] }, { @@ -11522,7 +11534,7 @@ "ru": "Гэльский (Ирландский)", "zh-chs": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->25->943" + "default.handlebars->25->949" ] }, { @@ -11539,7 +11551,7 @@ "ru": "Гэльский (Шотландия)", "zh-chs": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->25->942" + "default.handlebars->25->948" ] }, { @@ -11556,7 +11568,7 @@ "ru": "Галицкий", "zh-chs": "加拉契人", "xloc": [ - "default.handlebars->25->944" + "default.handlebars->25->950" ] }, { @@ -11663,7 +11675,7 @@ "ru": "Грузинский", "zh-chs": "格魯吉亞人", "xloc": [ - "default.handlebars->25->945" + "default.handlebars->25->951" ] }, { @@ -11680,7 +11692,7 @@ "ru": "Немецкий (Австрия)", "zh-chs": "德語(奧地利)", "xloc": [ - "default.handlebars->25->947" + "default.handlebars->25->953" ] }, { @@ -11697,7 +11709,7 @@ "ru": "Немецкий (Германия)", "zh-chs": "德文(德國)", "xloc": [ - "default.handlebars->25->948" + "default.handlebars->25->954" ] }, { @@ -11714,7 +11726,7 @@ "ru": "Немецкий (Лихтенштейн)", "zh-chs": "德文(列支敦士登)", "xloc": [ - "default.handlebars->25->949" + "default.handlebars->25->955" ] }, { @@ -11731,7 +11743,7 @@ "ru": "Немецкий (Люксембург)", "zh-chs": "德語(盧森堡)", "xloc": [ - "default.handlebars->25->950" + "default.handlebars->25->956" ] }, { @@ -11748,7 +11760,7 @@ "ru": "Немецкий (Стандартный)", "zh-chs": "德語(標準)", "xloc": [ - "default.handlebars->25->946" + "default.handlebars->25->952" ] }, { @@ -11765,7 +11777,7 @@ "ru": "Немецкий (Швейцария)", "zh-chs": "德語(瑞士)", "xloc": [ - "default.handlebars->25->951" + "default.handlebars->25->957" ] }, { @@ -11848,7 +11860,7 @@ "ru": "Хорошо", "zh-chs": "好", "xloc": [ - "default.handlebars->25->1110" + "default.handlebars->25->1116" ] }, { @@ -11885,7 +11897,7 @@ "ru": "Греческий", "zh-chs": "希臘語", "xloc": [ - "default.handlebars->25->952" + "default.handlebars->25->958" ] }, { @@ -11921,8 +11933,8 @@ "ru": "Групповое действие", "zh-chs": "集體行動", "xloc": [ - "default.handlebars->25->1422", - "default.handlebars->25->1486", + "default.handlebars->25->1428", + "default.handlebars->25->1492", "default.handlebars->25->393", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -11943,7 +11955,7 @@ "ru": "Члены группы", "zh-chs": "小組成員", "xloc": [ - "default.handlebars->25->1507" + "default.handlebars->25->1513" ] }, { @@ -11960,7 +11972,7 @@ "ru": "Права на группу для пользователя {0}.", "zh-chs": "用戶{0}的組權限。", "xloc": [ - "default.handlebars->25->1243" + "default.handlebars->25->1249" ] }, { @@ -11977,7 +11989,7 @@ "ru": "Права на группу для {0}.", "zh-chs": "{0}的組權限。", "xloc": [ - "default.handlebars->25->1242" + "default.handlebars->25->1248" ] }, { @@ -12028,7 +12040,7 @@ "ru": "Гуджарати", "zh-chs": "古久拉提", "xloc": [ - "default.handlebars->25->953" + "default.handlebars->25->959" ] }, { @@ -12064,7 +12076,7 @@ "ru": "Гаитянский", "zh-chs": "海地", "xloc": [ - "default.handlebars->25->954" + "default.handlebars->25->960" ] }, { @@ -12098,7 +12110,7 @@ "ru": "Жесткое отключение агента", "zh-chs": "硬斷開劑", "xloc": [ - "default.handlebars->25->842" + "default.handlebars->25->848" ] }, { @@ -12115,7 +12127,7 @@ "ru": "Всего кучи", "zh-chs": "堆總數", "xloc": [ - "default.handlebars->25->1727" + "default.handlebars->25->1733" ] }, { @@ -12132,7 +12144,7 @@ "ru": "Куча используется", "zh-chs": "堆使用", "xloc": [ - "default.handlebars->25->1726" + "default.handlebars->25->1732" ] }, { @@ -12149,7 +12161,7 @@ "ru": "Иврит", "zh-chs": "希伯來語", "xloc": [ - "default.handlebars->25->955" + "default.handlebars->25->961" ] }, { @@ -12183,7 +12195,7 @@ "ru": "Помочь перевести MeshCentral", "zh-chs": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->25->1069" + "default.handlebars->25->1075" ] }, { @@ -12269,7 +12281,7 @@ "ru": "Хинди", "zh-chs": "印地語", "xloc": [ - "default.handlebars->25->956" + "default.handlebars->25->962" ] }, { @@ -12305,7 +12317,7 @@ "zh-chs": "持有1份副本", "xloc": [ "default-mobile.handlebars->9->268", - "default.handlebars->25->748" + "default.handlebars->25->754" ] }, { @@ -12323,7 +12335,7 @@ "zh-chs": "持有1個搬家公司", "xloc": [ "default-mobile.handlebars->9->272", - "default.handlebars->25->752" + "default.handlebars->25->758" ] }, { @@ -12341,7 +12353,7 @@ "zh-chs": "保留{0}個條目進行複制", "xloc": [ "default-mobile.handlebars->9->266", - "default.handlebars->25->746" + "default.handlebars->25->752" ] }, { @@ -12359,7 +12371,7 @@ "zh-chs": "保留{0}個條目以進行移動", "xloc": [ "default-mobile.handlebars->9->270", - "default.handlebars->25->750" + "default.handlebars->25->756" ] }, { @@ -12377,7 +12389,7 @@ "zh-chs": "保持{2}的{0}入口{1}", "xloc": [ "default-mobile.handlebars->9->98", - "default.handlebars->25->1372" + "default.handlebars->25->1378" ] }, { @@ -12417,7 +12429,7 @@ "ru": "Синхронизация имени хоста", "zh-chs": "主機名同步", "xloc": [ - "default.handlebars->25->1135" + "default.handlebars->25->1141" ] }, { @@ -12434,7 +12446,7 @@ "ru": "Венгерский", "zh-chs": "匈牙利", "xloc": [ - "default.handlebars->25->957" + "default.handlebars->25->963" ] }, { @@ -12486,7 +12498,7 @@ "ru": "IP: {0}", "zh-chs": "IP:{0}", "xloc": [ - "default.handlebars->25->788" + "default.handlebars->25->794" ] }, { @@ -12503,7 +12515,7 @@ "ru": "IP: {0}, маска: {1}, шлюз: {2}", "zh-chs": "IP:{0},掩碼:{1},網關:{2}", "xloc": [ - "default.handlebars->25->786" + "default.handlebars->25->792" ] }, { @@ -12520,8 +12532,8 @@ "ru": "Уровень IPv4", "zh-chs": "IPv4層", "xloc": [ - "default.handlebars->25->785", - "default.handlebars->25->787" + "default.handlebars->25->791", + "default.handlebars->25->793" ] }, { @@ -12589,7 +12601,7 @@ "ru": "Исландский", "zh-chs": "冰島的", "xloc": [ - "default.handlebars->25->958" + "default.handlebars->25->964" ] }, { @@ -12624,7 +12636,7 @@ "ru": "Идентификатор", "zh-chs": "識別碼", "xloc": [ - "default.handlebars->25->813" + "default.handlebars->25->819" ] }, { @@ -12727,7 +12739,7 @@ "ru": "Индонезийский", "zh-chs": "印度尼西亞", "xloc": [ - "default.handlebars->25->959" + "default.handlebars->25->965" ] }, { @@ -12844,7 +12856,7 @@ "ru": "Установка CIRA", "zh-chs": "安裝CIRA", "xloc": [ - "default.handlebars->25->1168" + "default.handlebars->25->1174" ] }, { @@ -12861,7 +12873,7 @@ "ru": "Локальная установка", "zh-chs": "安裝本地", "xloc": [ - "default.handlebars->25->1170" + "default.handlebars->25->1176" ] }, { @@ -12878,8 +12890,8 @@ "ru": "Тип установки", "zh-chs": "安裝類型", "xloc": [ - "default.handlebars->25->1309", - "default.handlebars->25->1316", + "default.handlebars->25->1315", + "default.handlebars->25->1322", "default.handlebars->25->294", "default.handlebars->25->316" ] @@ -12898,7 +12910,7 @@ "ru": "Intel (F10 = ESC+[OM)", "zh-chs": "英特爾(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->25->718", + "default.handlebars->25->724", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -12916,10 +12928,10 @@ "ru": "Intel AMT", "zh-chs": "英特爾AMT", "xloc": [ - "default.handlebars->25->1328", - "default.handlebars->25->1336", - "default.handlebars->25->1723", - "default.handlebars->25->1745" + "default.handlebars->25->1334", + "default.handlebars->25->1342", + "default.handlebars->25->1729", + "default.handlebars->25->1751" ] }, { @@ -12960,14 +12972,14 @@ "en": "Intel AMT Redirection", "nl": "Intel AMT omleiding", "xloc": [ - "default.handlebars->25->1664" + "default.handlebars->25->1670" ] }, { "en": "Intel AMT WSMAN", "nl": "Intel AMT WSMAN", "xloc": [ - "default.handlebars->25->1663" + "default.handlebars->25->1669" ] }, { @@ -13086,7 +13098,7 @@ "ru": "Intel ASCII", "zh-chs": "英特爾ASCII", "xloc": [ - "default.handlebars->25->717" + "default.handlebars->25->723" ] }, { @@ -13106,8 +13118,8 @@ "default-mobile.handlebars->9->133", "default-mobile.handlebars->9->197", "default-mobile.handlebars->9->202", - "default.handlebars->25->1152", - "default.handlebars->25->1162", + "default.handlebars->25->1158", + "default.handlebars->25->1168", "default.handlebars->25->434", "default.handlebars->25->487", "default.handlebars->25->515" @@ -13183,7 +13195,7 @@ "ru": "Политика Intel® AMT", "zh-chs": "英特爾®AMT政策", "xloc": [ - "default.handlebars->25->1191" + "default.handlebars->25->1197" ] }, { @@ -13288,8 +13300,8 @@ "ru": "События Intel® AMT desktop или serial.", "zh-chs": "英特爾®AMT桌面和串行事件。", "xloc": [ - "default.handlebars->25->1075", - "default.handlebars->25->1324" + "default.handlebars->25->1081", + "default.handlebars->25->1330" ] }, { @@ -13378,8 +13390,8 @@ "zh-chs": "僅限英特爾®AMT,無代理", "xloc": [ "default-mobile.handlebars->9->279", - "default.handlebars->25->1104", - "default.handlebars->25->1128" + "default.handlebars->25->1110", + "default.handlebars->25->1134" ] }, { @@ -13413,7 +13425,7 @@ "ru": "Intel® Active Management Technology (Intel® AMT)", "zh-chs": "英特爾®主動管理技術(英特爾®AMT)", "xloc": [ - "default.handlebars->25->805" + "default.handlebars->25->811" ] }, { @@ -13580,7 +13592,7 @@ "ru": "Интерактивный", "zh-chs": "互動", "xloc": [ - "default.handlebars->25->700" + "default.handlebars->25->706" ] }, { @@ -13597,8 +13609,8 @@ "ru": "Только интерактивный режим", "zh-chs": "僅限互動", "xloc": [ - "default.handlebars->25->1312", - "default.handlebars->25->1319", + "default.handlebars->25->1318", + "default.handlebars->25->1325", "default.handlebars->25->297", "default.handlebars->25->319" ] @@ -13634,7 +13646,7 @@ "ru": "Инуктитут", "zh-chs": "因紐特人", "xloc": [ - "default.handlebars->25->960" + "default.handlebars->25->966" ] }, { @@ -13651,7 +13663,7 @@ "ru": "Некорректный тип группы устройств", "zh-chs": "無效的設備組類型", "xloc": [ - "default.handlebars->25->1700" + "default.handlebars->25->1706" ] }, { @@ -13668,7 +13680,7 @@ "ru": "Некорректный JSON", "zh-chs": "無效的JSON", "xloc": [ - "default.handlebars->25->1694" + "default.handlebars->25->1700" ] }, { @@ -13685,8 +13697,8 @@ "ru": "Некорректный формат файла JSON.", "zh-chs": "無效的JSON文件格式。", "xloc": [ - "default.handlebars->25->1434", - "default.handlebars->25->1436" + "default.handlebars->25->1440", + "default.handlebars->25->1442" ] }, { @@ -13703,7 +13715,7 @@ "ru": "Некорректный файл JSON: {0}.", "zh-chs": "無效的JSON文件:{0}。", "xloc": [ - "default.handlebars->25->1432" + "default.handlebars->25->1438" ] }, { @@ -13720,7 +13732,7 @@ "ru": "Некорректная сигнатура PKCS", "zh-chs": "無效的PKCS簽名", "xloc": [ - "default.handlebars->25->1692" + "default.handlebars->25->1698" ] }, { @@ -13737,7 +13749,7 @@ "ru": "Некорректная сигнатура RSA", "zh-chs": "無效的RSA密碼", "xloc": [ - "default.handlebars->25->1693" + "default.handlebars->25->1699" ] }, { @@ -13873,7 +13885,7 @@ "ru": "Коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->25->1314" + "default.handlebars->25->1320" ] }, { @@ -13906,7 +13918,7 @@ "ru": "Пригласить", "zh-chs": "邀請", "xloc": [ - "default.handlebars->25->1178", + "default.handlebars->25->1184", "default.handlebars->25->229", "default.handlebars->25->309" ] @@ -13925,11 +13937,11 @@ "ru": "Пригласительные коды", "zh-chs": "邀請碼", "xloc": [ - "default.handlebars->25->1156", - "default.handlebars->25->1308", - "default.handlebars->25->1313", - "default.handlebars->25->1315", - "default.handlebars->25->1320" + "default.handlebars->25->1162", + "default.handlebars->25->1314", + "default.handlebars->25->1319", + "default.handlebars->25->1321", + "default.handlebars->25->1326" ] }, { @@ -13960,7 +13972,7 @@ "nl": "Nodig iemand uit om de mesh-agent in deze apparaatgroep te installeren.", "zh-chs": "邀请某人在该设备组上安装网状代理。", "xloc": [ - "default.handlebars->25->1177", + "default.handlebars->25->1183", "default.handlebars->25->228" ] }, @@ -13995,7 +14007,7 @@ "ru": "Ирландский", "zh-chs": "愛爾蘭人", "xloc": [ - "default.handlebars->25->961" + "default.handlebars->25->967" ] }, { @@ -14012,7 +14024,7 @@ "ru": "Итальянский (Стандартный)", "zh-chs": "意大利語(標準)", "xloc": [ - "default.handlebars->25->962" + "default.handlebars->25->968" ] }, { @@ -14029,7 +14041,7 @@ "ru": "Итальянский (Швейцария)", "zh-chs": "義大利文(瑞士)", "xloc": [ - "default.handlebars->25->963" + "default.handlebars->25->969" ] }, { @@ -14046,8 +14058,8 @@ "ru": "Формат JSON", "zh-chs": "JSON格式", "xloc": [ - "default.handlebars->25->1383", - "default.handlebars->25->1440", + "default.handlebars->25->1389", + "default.handlebars->25->1446", "default.handlebars->25->401" ] }, @@ -14065,7 +14077,7 @@ "ru": "Японский", "zh-chs": "日本", "xloc": [ - "default.handlebars->25->964" + "default.handlebars->25->970" ] }, { @@ -14082,7 +14094,7 @@ "ru": "Каннада", "zh-chs": "卡納達語", "xloc": [ - "default.handlebars->25->965" + "default.handlebars->25->971" ] }, { @@ -14099,7 +14111,7 @@ "ru": "Кашмирский", "zh-chs": "克什米爾語", "xloc": [ - "default.handlebars->25->966" + "default.handlebars->25->972" ] }, { @@ -14116,7 +14128,7 @@ "ru": "Казахский", "zh-chs": "哈薩克語", "xloc": [ - "default.handlebars->25->967" + "default.handlebars->25->973" ] }, { @@ -14133,7 +14145,7 @@ "ru": "Драйвер ядра", "zh-chs": "內核驅動程序", "xloc": [ - "default.handlebars->25->701" + "default.handlebars->25->707" ] }, { @@ -14150,8 +14162,8 @@ "ru": "Имя ключа", "zh-chs": "鍵名", "xloc": [ - "default.handlebars->25->858", - "default.handlebars->25->861" + "default.handlebars->25->864", + "default.handlebars->25->867" ] }, { @@ -14185,7 +14197,7 @@ "ru": "Кхмерский", "zh-chs": "高棉語", "xloc": [ - "default.handlebars->25->968" + "default.handlebars->25->974" ] }, { @@ -14202,7 +14214,7 @@ "ru": "Киргизский", "zh-chs": "吉爾吉斯", "xloc": [ - "default.handlebars->25->969" + "default.handlebars->25->975" ] }, { @@ -14219,7 +14231,7 @@ "ru": "Клингонский", "zh-chs": "克林貢", "xloc": [ - "default.handlebars->25->970" + "default.handlebars->25->976" ] }, { @@ -14236,7 +14248,7 @@ "ru": "Известный", "zh-chs": "已知的", "xloc": [ - "default.handlebars->25->804" + "default.handlebars->25->810" ] }, { @@ -14253,7 +14265,7 @@ "ru": "Korean", "zh-chs": "韓語", "xloc": [ - "default.handlebars->25->971" + "default.handlebars->25->977" ] }, { @@ -14270,7 +14282,7 @@ "ru": "Корейский (Северная Корея)", "zh-chs": "韓語(朝鮮)", "xloc": [ - "default.handlebars->25->972" + "default.handlebars->25->978" ] }, { @@ -14287,7 +14299,7 @@ "ru": "Корейский (Южная Корея)", "zh-chs": "韓語(韓國)", "xloc": [ - "default.handlebars->25->973" + "default.handlebars->25->979" ] }, { @@ -14304,8 +14316,8 @@ "ru": "LF", "zh-chs": "如果", "xloc": [ - "default.handlebars->25->713", - "default.handlebars->25->722" + "default.handlebars->25->719", + "default.handlebars->25->728" ] }, { @@ -14322,7 +14334,7 @@ "ru": "Язык", "zh-chs": "語言", "xloc": [ - "default.handlebars->25->1067" + "default.handlebars->25->1073" ] }, { @@ -14356,7 +14368,7 @@ "ru": "Большой Фокус", "zh-chs": "大焦點", "xloc": [ - "default.handlebars->25->689" + "default.handlebars->25->695" ] }, { @@ -14539,7 +14551,7 @@ "ru": "Последний доступ", "zh-chs": "最後訪問", "xloc": [ - "default.handlebars->25->1391" + "default.handlebars->25->1397" ] }, { @@ -14556,7 +14568,7 @@ "ru": "Последний вход в систему", "zh-chs": "上次登錄", "xloc": [ - "default.handlebars->25->1559" + "default.handlebars->25->1565" ] }, { @@ -14576,9 +14588,9 @@ "default.handlebars->25->70", "default.handlebars->25->72", "default.handlebars->25->74", - "default.handlebars->25->776", - "default.handlebars->25->777", - "default.handlebars->25->778" + "default.handlebars->25->782", + "default.handlebars->25->783", + "default.handlebars->25->784" ] }, { @@ -14596,8 +14608,8 @@ "zh-chs": "上次代理連接", "xloc": [ "default.handlebars->25->69", - "default.handlebars->25->773", - "default.handlebars->25->775" + "default.handlebars->25->779", + "default.handlebars->25->781" ] }, { @@ -14614,7 +14626,7 @@ "ru": "Последнее изменение: {0}", "zh-chs": "上次更改:{0}", "xloc": [ - "default.handlebars->25->1563" + "default.handlebars->25->1569" ] }, { @@ -14665,7 +14677,7 @@ "ru": "Последний вход в систему: {0}", "zh-chs": "上次登錄:{0}", "xloc": [ - "default.handlebars->25->1401" + "default.handlebars->25->1407" ] }, { @@ -14751,7 +14763,7 @@ "ru": "Латинский", "zh-chs": "拉丁", "xloc": [ - "default.handlebars->25->974" + "default.handlebars->25->980" ] }, { @@ -14768,7 +14780,7 @@ "ru": "Латышский", "zh-chs": "拉脫維亞語", "xloc": [ - "default.handlebars->25->975" + "default.handlebars->25->981" ] }, { @@ -14781,7 +14793,7 @@ "nl": "Leeg laten voor geen.", "zh-chs": "一无所有。", "xloc": [ - "default.handlebars->25->1601" + "default.handlebars->25->1607" ] }, { @@ -14820,7 +14832,7 @@ "ru": "Меньше", "zh-chs": "減", "xloc": [ - "default.handlebars->25->1762" + "default.handlebars->25->1768" ] }, { @@ -14873,7 +14885,7 @@ "zh-chs": "有限輸入", "xloc": [ "default-mobile.handlebars->9->328", - "default.handlebars->25->1292", + "default.handlebars->25->1298", "default.handlebars->25->570", "default.handlebars->25->589" ] @@ -14893,7 +14905,7 @@ "zh-chs": "僅限於輸入", "xloc": [ "default-mobile.handlebars->9->303", - "default.handlebars->25->1250" + "default.handlebars->25->1256" ] }, { @@ -15224,7 +15236,7 @@ "ru": "Литовский", "zh-chs": "立陶宛語", "xloc": [ - "default.handlebars->25->976" + "default.handlebars->25->982" ] }, { @@ -15242,10 +15254,10 @@ "zh-chs": "載入中...", "xloc": [ "default-mobile.handlebars->9->41", - "default.handlebars->25->1121", - "default.handlebars->25->1123", + "default.handlebars->25->1127", + "default.handlebars->25->1129", "default.handlebars->25->644", - "default.handlebars->25->854" + "default.handlebars->25->860" ] }, { @@ -15313,7 +15325,7 @@ "ru": "Настройки локализации", "zh-chs": "本地化設置", "xloc": [ - "default.handlebars->25->1070", + "default.handlebars->25->1076", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -15365,7 +15377,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->25->1472" + "default.handlebars->25->1478" ] }, { @@ -15382,7 +15394,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->25->1419" + "default.handlebars->25->1425" ] }, { @@ -15399,7 +15411,7 @@ "ru": "Заблокирован", "zh-chs": "已鎖定", "xloc": [ - "default.handlebars->25->1402" + "default.handlebars->25->1408" ] }, { @@ -15416,7 +15428,7 @@ "ru": "Заблокированная учетная запись", "zh-chs": "賬戶鎖定", "xloc": [ - "default.handlebars->25->1541" + "default.handlebars->25->1547" ] }, { @@ -15595,7 +15607,7 @@ "ru": "Люксембургский", "zh-chs": "盧森堡語", "xloc": [ - "default.handlebars->25->977" + "default.handlebars->25->983" ] }, { @@ -15612,8 +15624,8 @@ "ru": "MAC-уровень", "zh-chs": "MAC層", "xloc": [ - "default.handlebars->25->781", - "default.handlebars->25->783" + "default.handlebars->25->787", + "default.handlebars->25->789" ] }, { @@ -15647,7 +15659,7 @@ "ru": "MAC: {0}", "zh-chs": "MAC:{0}", "xloc": [ - "default.handlebars->25->784" + "default.handlebars->25->790" ] }, { @@ -15664,7 +15676,7 @@ "ru": "MAC: {0}, шлюз: {1}", "zh-chs": "MAC:{0},網關:{1}", "xloc": [ - "default.handlebars->25->782" + "default.handlebars->25->788" ] }, { @@ -15722,8 +15734,8 @@ "default.handlebars->25->185", "default.handlebars->25->378", "default.handlebars->25->519", - "default.handlebars->25->832", - "default.handlebars->25->833", + "default.handlebars->25->838", + "default.handlebars->25->839", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -15917,7 +15929,7 @@ "ru": "Сообщения главного сервера", "zh-chs": "主服務器消息", "xloc": [ - "default.handlebars->25->1734" + "default.handlebars->25->1740" ] }, { @@ -15934,7 +15946,7 @@ "ru": "Малайский", "zh-chs": "馬來語", "xloc": [ - "default.handlebars->25->979" + "default.handlebars->25->985" ] }, { @@ -15951,7 +15963,7 @@ "ru": "Малаяламский", "zh-chs": "馬拉雅拉姆語", "xloc": [ - "default.handlebars->25->980" + "default.handlebars->25->986" ] }, { @@ -15968,7 +15980,7 @@ "ru": "Мальтийский", "zh-chs": "馬耳他語", "xloc": [ - "default.handlebars->25->981" + "default.handlebars->25->987" ] }, { @@ -16005,8 +16017,8 @@ "xloc": [ "default-mobile.handlebars->9->300", "default-mobile.handlebars->9->318", - "default.handlebars->25->1247", - "default.handlebars->25->1281" + "default.handlebars->25->1253", + "default.handlebars->25->1287" ] }, { @@ -16025,8 +16037,8 @@ "xloc": [ "default-mobile.handlebars->9->299", "default-mobile.handlebars->9->317", - "default.handlebars->25->1246", - "default.handlebars->25->1280" + "default.handlebars->25->1252", + "default.handlebars->25->1286" ] }, { @@ -16049,7 +16061,7 @@ "en": "Manage Recordings", "nl": "Beheeer opnames", "xloc": [ - "default.handlebars->25->1471" + "default.handlebars->25->1477" ] }, { @@ -16083,7 +16095,7 @@ "ru": "Управление группами пользователя", "zh-chs": "管理用戶組", "xloc": [ - "default.handlebars->25->1470" + "default.handlebars->25->1476" ] }, { @@ -16100,7 +16112,7 @@ "ru": "Управление пользователями", "zh-chs": "管理用戶", "xloc": [ - "default.handlebars->25->1469", + "default.handlebars->25->1475", "default.handlebars->25->583" ] }, @@ -16205,7 +16217,7 @@ "ru": "Управление с помощью программного агента", "zh-chs": "使用軟件代理進行管理", "xloc": [ - "default.handlebars->25->1103" + "default.handlebars->25->1109" ] }, { @@ -16223,7 +16235,7 @@ "zh-chs": "使用軟件代理進行管理", "xloc": [ "default-mobile.handlebars->9->280", - "default.handlebars->25->1129" + "default.handlebars->25->1135" ] }, { @@ -16240,7 +16252,7 @@ "ru": "Менеджер", "zh-chs": "經理", "xloc": [ - "default.handlebars->25->1407" + "default.handlebars->25->1413" ] }, { @@ -16291,7 +16303,7 @@ "ru": "Маори", "zh-chs": "毛利人", "xloc": [ - "default.handlebars->25->982" + "default.handlebars->25->988" ] }, { @@ -16326,7 +16338,7 @@ "ru": "Маратхи", "zh-chs": "馬拉地語", "xloc": [ - "default.handlebars->25->983" + "default.handlebars->25->989" ] }, { @@ -16343,7 +16355,7 @@ "ru": "Достигнуто максимальное число сессий", "zh-chs": "達到的會話數上限", "xloc": [ - "default.handlebars->25->1698" + "default.handlebars->25->1704" ] }, { @@ -16397,7 +16409,7 @@ "ru": "Мегабайт", "zh-chs": "兆字節", "xloc": [ - "default.handlebars->25->1724" + "default.handlebars->25->1730" ] }, { @@ -16414,8 +16426,8 @@ "ru": "ОЗУ", "zh-chs": "記憶", "xloc": [ - "default.handlebars->25->1715", - "default.handlebars->25->820", + "default.handlebars->25->1721", + "default.handlebars->25->826", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -16441,8 +16453,8 @@ "default.handlebars->25->341", "default.handlebars->25->467", "default.handlebars->25->511", - "default.handlebars->25->772", - "default.handlebars->25->779" + "default.handlebars->25->778", + "default.handlebars->25->785" ] }, { @@ -16460,7 +16472,7 @@ "zh-chs": "網格代理控制台", "xloc": [ "default-mobile.handlebars->9->307", - "default.handlebars->25->1255" + "default.handlebars->25->1261" ] }, { @@ -16550,7 +16562,7 @@ "ru": "Трафик MeshAgent", "zh-chs": "MeshAgent流量", "xloc": [ - "default.handlebars->25->1736" + "default.handlebars->25->1742" ] }, { @@ -16567,7 +16579,7 @@ "ru": "Обновление MeshAgent", "zh-chs": "MeshAgent更新", "xloc": [ - "default.handlebars->25->1737" + "default.handlebars->25->1743" ] }, { @@ -16601,7 +16613,7 @@ "ru": "Ошибки MeshCentral", "zh-chs": "網格中心錯誤", "xloc": [ - "default.handlebars->25->1122" + "default.handlebars->25->1128" ] }, { @@ -16670,7 +16682,7 @@ "ru": "Соединения сервера MeshCentral", "zh-chs": "MeshCentral服務器對等", "xloc": [ - "default.handlebars->25->1735" + "default.handlebars->25->1741" ] }, { @@ -16705,7 +16717,7 @@ "zh-chs": "MeshCentral版本", "xloc": [ "default.handlebars->25->101", - "default.handlebars->25->1120", + "default.handlebars->25->1126", "default.handlebars->25->99" ] }, @@ -16933,7 +16945,7 @@ "ru": "Диспетчер сообщения", "zh-chs": "郵件調度程序", "xloc": [ - "default.handlebars->25->1733" + "default.handlebars->25->1739" ] }, { @@ -17030,7 +17042,7 @@ "nl": "Model", "zh-chs": "模型", "xloc": [ - "default.handlebars->25->821" + "default.handlebars->25->827" ] }, { @@ -17064,7 +17076,7 @@ "ru": "Молдавский", "zh-chs": "摩爾達維亞人", "xloc": [ - "default.handlebars->25->984" + "default.handlebars->25->990" ] }, { @@ -17081,7 +17093,7 @@ "ru": "Еще", "zh-chs": "更多", "xloc": [ - "default.handlebars->25->1761" + "default.handlebars->25->1767" ] }, { @@ -17098,7 +17110,7 @@ "ru": "Материнская плата", "zh-chs": "母板", "xloc": [ - "default.handlebars->25->816" + "default.handlebars->25->822" ] }, { @@ -17156,7 +17168,7 @@ "en": "Multiplexor", "nl": "Multiplexor", "xloc": [ - "default.handlebars->25->1676" + "default.handlebars->25->1682" ] }, { @@ -17271,7 +17283,7 @@ "ru": "Консоль моего сервера", "zh-chs": "我的服務器控制台", "xloc": [ - "default.handlebars->25->827" + "default.handlebars->25->833" ] }, { @@ -17399,8 +17411,8 @@ "ru": "Мой ключ", "zh-chs": "我的鑰匙", "xloc": [ - "default.handlebars->25->859", - "default.handlebars->25->862" + "default.handlebars->25->865", + "default.handlebars->25->868" ] }, { @@ -17422,20 +17434,20 @@ "default-mobile.handlebars->9->294", "default-mobile.handlebars->9->66", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->25->1101", - "default.handlebars->25->1130", - "default.handlebars->25->1213", - "default.handlebars->25->1389", - "default.handlebars->25->1477", - "default.handlebars->25->1491", - "default.handlebars->25->1498", - "default.handlebars->25->1528", - "default.handlebars->25->1547", + "default.handlebars->25->1107", + "default.handlebars->25->1136", + "default.handlebars->25->1219", + "default.handlebars->25->1395", + "default.handlebars->25->1483", + "default.handlebars->25->1497", + "default.handlebars->25->1504", + "default.handlebars->25->1534", + "default.handlebars->25->1553", "default.handlebars->25->455", - "default.handlebars->25->695", - "default.handlebars->25->768", + "default.handlebars->25->701", "default.handlebars->25->77", - "default.handlebars->25->810", + "default.handlebars->25->774", + "default.handlebars->25->816", "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" @@ -17472,7 +17484,7 @@ "ru": "Имя1, Имя2, Имя3", "zh-chs": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->25->1461" + "default.handlebars->25->1467" ] }, { @@ -17489,7 +17501,7 @@ "ru": "Навахо", "zh-chs": "納瓦霍人", "xloc": [ - "default.handlebars->25->985" + "default.handlebars->25->991" ] }, { @@ -17506,7 +17518,7 @@ "ru": "Ндонга", "zh-chs": "恩東加", "xloc": [ - "default.handlebars->25->986" + "default.handlebars->25->992" ] }, { @@ -17523,7 +17535,7 @@ "ru": "Непальский", "zh-chs": "尼泊爾文", "xloc": [ - "default.handlebars->25->987" + "default.handlebars->25->993" ] }, { @@ -17571,7 +17583,7 @@ "ru": "сетей", "zh-chs": "聯網", "xloc": [ - "default.handlebars->25->789" + "default.handlebars->25->795" ] }, { @@ -17624,8 +17636,8 @@ "zh-chs": "新設備組", "xloc": [ "default-mobile.handlebars->9->60", - "default.handlebars->25->1094", - "default.handlebars->25->1106", + "default.handlebars->25->1100", + "default.handlebars->25->1112", "default.handlebars->25->635" ] }, @@ -17645,8 +17657,8 @@ "xloc": [ "default-mobile.handlebars->9->252", "default-mobile.handlebars->9->89", - "default.handlebars->25->1362", - "default.handlebars->25->732", + "default.handlebars->25->1368", + "default.handlebars->25->738", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -17701,8 +17713,8 @@ "xloc": [ "default-mobile.handlebars->9->55", "default-mobile.handlebars->9->56", - "default.handlebars->25->1089", - "default.handlebars->25->1090" + "default.handlebars->25->1095", + "default.handlebars->25->1096" ] }, { @@ -17788,7 +17800,7 @@ "ru": "Нет рабочего стола", "zh-chs": "沒有桌面", "xloc": [ - "default.handlebars->25->1288", + "default.handlebars->25->1294", "default.handlebars->25->571", "default.handlebars->25->590" ] @@ -17807,7 +17819,7 @@ "ru": "Нет доступа к рабочему столу", "zh-chs": "沒有桌面訪問", "xloc": [ - "default.handlebars->25->1251" + "default.handlebars->25->1257" ] }, { @@ -17824,9 +17836,9 @@ "ru": "События не найдены", "zh-chs": "找不到活動", "xloc": [ - "default.handlebars->25->1379", - "default.handlebars->25->1652", - "default.handlebars->25->766" + "default.handlebars->25->1385", + "default.handlebars->25->1658", + "default.handlebars->25->772" ] }, { @@ -17844,7 +17856,7 @@ "zh-chs": "沒有文件訪問", "xloc": [ "default-mobile.handlebars->9->305", - "default.handlebars->25->1253" + "default.handlebars->25->1259" ] }, { @@ -17862,7 +17874,7 @@ "zh-chs": "沒有文件", "xloc": [ "default-mobile.handlebars->9->326", - "default.handlebars->25->1290", + "default.handlebars->25->1296", "default.handlebars->25->568", "default.handlebars->25->587" ] @@ -17900,8 +17912,8 @@ "xloc": [ "default-mobile.handlebars->9->306", "default-mobile.handlebars->9->327", - "default.handlebars->25->1254", - "default.handlebars->25->1291" + "default.handlebars->25->1260", + "default.handlebars->25->1297" ] }, { @@ -17969,7 +17981,7 @@ "ru": "Нет членов", "zh-chs": "沒有會員", "xloc": [ - "default.handlebars->25->1510" + "default.handlebars->25->1516" ] }, { @@ -17986,7 +17998,7 @@ "ru": "Запретить создание групп устройств", "zh-chs": "沒有新的設備組", "xloc": [ - "default.handlebars->25->1473" + "default.handlebars->25->1479" ] }, { @@ -18003,9 +18015,9 @@ "ru": "Политик нет", "zh-chs": "沒有政策", "xloc": [ - "default.handlebars->25->1157", - "default.handlebars->25->1185", - "default.handlebars->25->1188" + "default.handlebars->25->1163", + "default.handlebars->25->1191", + "default.handlebars->25->1194" ] }, { @@ -18025,8 +18037,8 @@ "default-mobile.handlebars->9->289", "default-mobile.handlebars->9->332", "default-mobile.handlebars->9->75", - "default.handlebars->25->1115", - "default.handlebars->25->1296", + "default.handlebars->25->1121", + "default.handlebars->25->1302", "default.handlebars->25->580", "default.handlebars->25->599" ] @@ -18065,7 +18077,7 @@ "zh-chs": "沒有終端", "xloc": [ "default-mobile.handlebars->9->325", - "default.handlebars->25->1289", + "default.handlebars->25->1295", "default.handlebars->25->567", "default.handlebars->25->586" ] @@ -18085,7 +18097,7 @@ "zh-chs": "沒有終端訪問", "xloc": [ "default-mobile.handlebars->9->304", - "default.handlebars->25->1252" + "default.handlebars->25->1258" ] }, { @@ -18102,7 +18114,7 @@ "ru": "Нет инструментов (MeshCmd/Router)", "zh-chs": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->25->1474" + "default.handlebars->25->1480" ] }, { @@ -18119,8 +18131,8 @@ "ru": "Нет общих групп устройств", "zh-chs": "沒有共同的設備組", "xloc": [ - "default.handlebars->25->1516", - "default.handlebars->25->1624" + "default.handlebars->25->1522", + "default.handlebars->25->1630" ] }, { @@ -18216,8 +18228,8 @@ "ru": "Нет общих устройств", "zh-chs": "沒有共同的設備", "xloc": [ - "default.handlebars->25->1522", - "default.handlebars->25->1636" + "default.handlebars->25->1528", + "default.handlebars->25->1642" ] }, { @@ -18234,7 +18246,7 @@ "ru": "В группе нет устройств.", "zh-chs": "該設備組中沒有設備。", "xloc": [ - "default.handlebars->25->1339" + "default.handlebars->25->1345" ] }, { @@ -18303,7 +18315,7 @@ "ru": "Группы не найдены.", "zh-chs": "找不到群組。", "xloc": [ - "default.handlebars->25->1476" + "default.handlebars->25->1482" ] }, { @@ -18320,7 +18332,7 @@ "ru": "Информации об этом устройстве нет", "zh-chs": "沒有此設備的信息。", "xloc": [ - "default.handlebars->25->826" + "default.handlebars->25->832" ] }, { @@ -18405,7 +18417,7 @@ "ru": "Нет серверных прав", "zh-chs": "沒有服務器權限", "xloc": [ - "default.handlebars->25->1542" + "default.handlebars->25->1548" ] }, { @@ -18422,7 +18434,7 @@ "ru": "Нет членства в группах пользователей", "zh-chs": "沒有用戶組成員身份", "xloc": [ - "default.handlebars->25->1630" + "default.handlebars->25->1636" ] }, { @@ -18439,7 +18451,7 @@ "ru": "Пользователи не найдены.", "zh-chs": "未找到相應的用戶。", "xloc": [ - "default.handlebars->25->1397" + "default.handlebars->25->1403" ] }, { @@ -18516,21 +18528,21 @@ "default-mobile.handlebars->9->250", "default-mobile.handlebars->9->283", "default-mobile.handlebars->9->85", - "default.handlebars->25->1125", - "default.handlebars->25->1132", - "default.handlebars->25->1136", - "default.handlebars->25->1148", - "default.handlebars->25->1153", - "default.handlebars->25->1155", - "default.handlebars->25->1330", - "default.handlebars->25->1349", - "default.handlebars->25->1495", - "default.handlebars->25->1497", - "default.handlebars->25->1555", - "default.handlebars->25->1564", - "default.handlebars->25->1568", + "default.handlebars->25->1131", + "default.handlebars->25->1138", + "default.handlebars->25->1142", + "default.handlebars->25->1154", + "default.handlebars->25->1159", + "default.handlebars->25->1161", + "default.handlebars->25->1336", + "default.handlebars->25->1355", + "default.handlebars->25->1501", + "default.handlebars->25->1503", + "default.handlebars->25->1561", + "default.handlebars->25->1570", + "default.handlebars->25->1574", "default.handlebars->25->158", - "default.handlebars->25->1580", + "default.handlebars->25->1586", "default.handlebars->25->174", "default.handlebars->25->175", "default.handlebars->25->452", @@ -18573,7 +18585,7 @@ "ru": "Норвежский", "zh-chs": "挪威", "xloc": [ - "default.handlebars->25->988" + "default.handlebars->25->994" ] }, { @@ -18590,7 +18602,7 @@ "ru": "Норвежский (Букмол)", "zh-chs": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->25->989" + "default.handlebars->25->995" ] }, { @@ -18607,7 +18619,7 @@ "ru": "Норвежский (Нюнорск)", "zh-chs": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->25->990" + "default.handlebars->25->996" ] }, { @@ -18626,7 +18638,7 @@ "xloc": [ "default-mobile.handlebars->9->186", "default.handlebars->25->469", - "default.handlebars->25->793" + "default.handlebars->25->799" ] }, { @@ -18645,7 +18657,7 @@ "xloc": [ "default-mobile.handlebars->9->185", "default.handlebars->25->468", - "default.handlebars->25->792" + "default.handlebars->25->798" ] }, { @@ -18662,8 +18674,8 @@ "ru": "Не подключен", "zh-chs": "未連接", "xloc": [ - "default.handlebars->25->1326", - "default.handlebars->25->1334" + "default.handlebars->25->1332", + "default.handlebars->25->1340" ] }, { @@ -18680,14 +18692,14 @@ "ru": "Неизвестный", "zh-chs": "未知", "xloc": [ - "default.handlebars->25->803" + "default.handlebars->25->809" ] }, { "en": "Not on server", "nl": "Niet op de server", "xloc": [ - "default.handlebars->25->1668" + "default.handlebars->25->1674" ] }, { @@ -18704,7 +18716,7 @@ "ru": "Не задано", "zh-chs": "沒有設置", "xloc": [ - "default.handlebars->25->1548" + "default.handlebars->25->1554" ] }, { @@ -18721,7 +18733,7 @@ "ru": "не подтверждено", "zh-chs": "未經審核的", "xloc": [ - "default.handlebars->25->1606" + "default.handlebars->25->1612" ] }, { @@ -18738,8 +18750,8 @@ "ru": "Примечания", "zh-chs": "筆記", "xloc": [ - "default.handlebars->25->1163", - "default.handlebars->25->1588", + "default.handlebars->25->1169", + "default.handlebars->25->1594", "default.handlebars->25->524", "default.handlebars->25->576", "default.handlebars->25->595", @@ -18777,8 +18789,8 @@ "ru": "Настройки уведомлений", "zh-chs": "通知設置", "xloc": [ - "default.handlebars->25->1076", - "default.handlebars->25->1325", + "default.handlebars->25->1082", + "default.handlebars->25->1331", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -18796,7 +18808,7 @@ "ru": "Уведомления также должны быть включены в настройках учетной записи.", "zh-chs": "通知設置還必須在帳戶設置中啟用。", "xloc": [ - "default.handlebars->25->1321" + "default.handlebars->25->1327" ] }, { @@ -18813,7 +18825,7 @@ "ru": "Звук уведомления", "zh-chs": "通知聲音。", "xloc": [ - "default.handlebars->25->1071" + "default.handlebars->25->1077" ] }, { @@ -18830,7 +18842,7 @@ "ru": "Уведомления", "zh-chs": "通知事項", "xloc": [ - "default.handlebars->25->1154" + "default.handlebars->25->1160" ] }, { @@ -18847,7 +18859,7 @@ "ru": "Уведомить", "zh-chs": "通知", "xloc": [ - "default.handlebars->25->1592" + "default.handlebars->25->1598" ] }, { @@ -18864,9 +18876,9 @@ "ru": "Уведомить пользователя", "zh-chs": "通知使用者", "xloc": [ - "default.handlebars->25->1220", - "default.handlebars->25->1224", - "default.handlebars->25->1227" + "default.handlebars->25->1226", + "default.handlebars->25->1230", + "default.handlebars->25->1233" ] }, { @@ -18883,7 +18895,7 @@ "ru": "Уведомить {0}", "zh-chs": "通知{0}", "xloc": [ - "default.handlebars->25->1427" + "default.handlebars->25->1433" ] }, { @@ -18902,7 +18914,7 @@ "xloc": [ "default-mobile.handlebars->9->52", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->25->1118", + "default.handlebars->25->1124", "default.handlebars->25->495", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -18943,7 +18955,7 @@ "ru": "Окситанский", "zh-chs": "歐舒丹", "xloc": [ - "default.handlebars->25->991" + "default.handlebars->25->997" ] }, { @@ -18960,7 +18972,7 @@ "ru": "Произошло в {0}", "zh-chs": "發生在{0}", "xloc": [ - "default.handlebars->25->1682" + "default.handlebars->25->1688" ] }, { @@ -18977,7 +18989,7 @@ "ru": "Оффлайн пользователи", "zh-chs": "離線用戶", "xloc": [ - "default.handlebars->25->1394" + "default.handlebars->25->1400" ] }, { @@ -18995,7 +19007,7 @@ "zh-chs": "舊密碼:", "xloc": [ "default-mobile.handlebars->9->54", - "default.handlebars->25->1088" + "default.handlebars->25->1094" ] }, { @@ -19030,7 +19042,7 @@ "ru": "Онлайн пользователи", "zh-chs": "在線用戶", "xloc": [ - "default.handlebars->25->1393" + "default.handlebars->25->1399" ] }, { @@ -19049,7 +19061,7 @@ "xloc": [ "default-mobile.handlebars->9->260", "default.handlebars->25->425", - "default.handlebars->25->740" + "default.handlebars->25->746" ] }, { @@ -19170,7 +19182,7 @@ "default.handlebars->25->310", "default.handlebars->25->492", "default.handlebars->25->656", - "default.handlebars->25->771" + "default.handlebars->25->777" ] }, { @@ -19188,8 +19200,8 @@ "zh-chs": "運作方式", "xloc": [ "default-mobile.handlebars->9->220", - "default.handlebars->25->1418", - "default.handlebars->25->1484", + "default.handlebars->25->1424", + "default.handlebars->25->1490", "default.handlebars->25->385", "default.handlebars->25->613" ] @@ -19225,7 +19237,7 @@ "ru": "Ория", "zh-chs": "奧里亞", "xloc": [ - "default.handlebars->25->992" + "default.handlebars->25->998" ] }, { @@ -19242,7 +19254,7 @@ "ru": "Оромо", "zh-chs": "奧羅莫", "xloc": [ - "default.handlebars->25->993" + "default.handlebars->25->999" ] }, { @@ -19310,7 +19322,7 @@ "ru": "Собственный процесс", "zh-chs": "自己的過程", "xloc": [ - "default.handlebars->25->702" + "default.handlebars->25->708" ] }, { @@ -19328,7 +19340,7 @@ "zh-chs": "PID", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", - "default.handlebars->25->698", + "default.handlebars->25->704", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -19346,7 +19358,7 @@ "ru": "Part Number", "zh-chs": "零件號", "xloc": [ - "default.handlebars->25->819" + "default.handlebars->25->825" ] }, { @@ -19363,7 +19375,7 @@ "ru": "Частично", "zh-chs": "部分的", "xloc": [ - "default.handlebars->25->1408" + "default.handlebars->25->1414" ] }, { @@ -19410,7 +19422,7 @@ "xloc": [ "default-mobile.handlebars->9->287", "default-mobile.handlebars->9->73", - "default.handlebars->25->1113" + "default.handlebars->25->1119" ] }, { @@ -19427,7 +19439,7 @@ "ru": "Частичные права", "zh-chs": "部分權利", "xloc": [ - "default.handlebars->25->1545" + "default.handlebars->25->1551" ] }, { @@ -19462,12 +19474,12 @@ "zh-chs": "密碼", "xloc": [ "default-mobile.handlebars->9->223", - "default.handlebars->25->1450", - "default.handlebars->25->1451", - "default.handlebars->25->1560", - "default.handlebars->25->1562", - "default.handlebars->25->1609", - "default.handlebars->25->1610", + "default.handlebars->25->1456", + "default.handlebars->25->1457", + "default.handlebars->25->1566", + "default.handlebars->25->1568", + "default.handlebars->25->1615", + "default.handlebars->25->1616", "default.handlebars->25->236", "default.handlebars->25->265", "default.handlebars->25->619" @@ -19576,7 +19588,7 @@ "ru": "Подсказка пароля", "zh-chs": "密碼提示", "xloc": [ - "default.handlebars->25->1611" + "default.handlebars->25->1617" ] }, { @@ -19594,7 +19606,7 @@ "zh-chs": "密碼提示:", "xloc": [ "default-mobile.handlebars->9->57", - "default.handlebars->25->1091" + "default.handlebars->25->1097" ] }, { @@ -19611,7 +19623,7 @@ "ru": "Пароль не совпадает", "zh-chs": "密碼不符合", "xloc": [ - "default.handlebars->25->1194" + "default.handlebars->25->1200" ] }, { @@ -19646,8 +19658,8 @@ "ru": "Пароль*", "zh-chs": "密碼*", "xloc": [ - "default.handlebars->25->1192", - "default.handlebars->25->1193" + "default.handlebars->25->1198", + "default.handlebars->25->1199" ] }, { @@ -19667,8 +19679,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->9->49", "default-mobile.handlebars->9->50", - "default.handlebars->25->1083", - "default.handlebars->25->1084", + "default.handlebars->25->1089", + "default.handlebars->25->1090", "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", @@ -19699,9 +19711,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->25->1371", - "default.handlebars->25->723", - "default.handlebars->25->745", + "default.handlebars->25->1377", + "default.handlebars->25->729", + "default.handlebars->25->751", "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" @@ -19755,7 +19767,7 @@ "ru": "Произвести действие агента", "zh-chs": "執行代理動作", "xloc": [ - "default.handlebars->25->835" + "default.handlebars->25->841" ] }, { @@ -19789,7 +19801,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).", "zh-chs": "執行英特爾AMT管理員控制模式(ACM)激活。", "xloc": [ - "default.handlebars->25->1173", + "default.handlebars->25->1179", "default.handlebars->25->224" ] }, @@ -19824,7 +19836,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).", "zh-chs": "執行英特爾AMT客戶端控制模式(CCM)激活。", "xloc": [ - "default.handlebars->25->1171", + "default.handlebars->25->1177", "default.handlebars->25->222" ] }, @@ -19863,8 +19875,8 @@ "zh-chs": "權限", "xloc": [ "default-mobile.handlebars->9->334", - "default.handlebars->25->1299", - "default.handlebars->25->1392" + "default.handlebars->25->1305", + "default.handlebars->25->1398" ] }, { @@ -19881,7 +19893,7 @@ "ru": "Персидский/Иран", "zh-chs": "波斯/伊朗", "xloc": [ - "default.handlebars->25->994" + "default.handlebars->25->1000" ] }, { @@ -19898,9 +19910,9 @@ "default-mobile.handlebars->9->34", "default-mobile.handlebars->9->36", "default.handlebars->25->143", - "default.handlebars->25->1603", - "default.handlebars->25->846", - "default.handlebars->25->849" + "default.handlebars->25->1609", + "default.handlebars->25->852", + "default.handlebars->25->855" ] }, { @@ -19913,7 +19925,7 @@ "nl": "Telefoonnummer", "zh-chs": "电话号码", "xloc": [ - "default.handlebars->25->1554" + "default.handlebars->25->1560" ] }, { @@ -19927,8 +19939,8 @@ "zh-chs": "电话号码:", "xloc": [ "default-mobile.handlebars->9->35", - "default.handlebars->25->1602", - "default.handlebars->25->848" + "default.handlebars->25->1608", + "default.handlebars->25->854" ] }, { @@ -20046,7 +20058,7 @@ "zh-chs": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->9->45", - "default.handlebars->25->1078" + "default.handlebars->25->1084" ] }, { @@ -20064,7 +20076,7 @@ "zh-chs": "插件動作", "xloc": [ "default.handlebars->25->169", - "default.handlebars->25->1758" + "default.handlebars->25->1764" ] }, { @@ -20187,7 +20199,7 @@ "zh-chs": "政策", "xloc": [ "default-mobile.handlebars->9->72", - "default.handlebars->25->1112" + "default.handlebars->25->1118" ] }, { @@ -20204,7 +20216,7 @@ "ru": "Польский", "zh-chs": "拋光", "xloc": [ - "default.handlebars->25->995" + "default.handlebars->25->1001" ] }, { @@ -20221,7 +20233,7 @@ "ru": "Португальский", "zh-chs": "葡萄牙語", "xloc": [ - "default.handlebars->25->996" + "default.handlebars->25->1002" ] }, { @@ -20238,7 +20250,7 @@ "ru": "Португальский (Бразилия)", "zh-chs": "葡萄牙語(巴西)", "xloc": [ - "default.handlebars->25->997" + "default.handlebars->25->1003" ] }, { @@ -20290,7 +20302,7 @@ "ru": "Состояния питания", "zh-chs": "電力國", "xloc": [ - "default.handlebars->25->1332", + "default.handlebars->25->1338", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -20375,7 +20387,7 @@ "en": "Present on server", "nl": "Aanwezig op de server", "xloc": [ - "default.handlebars->25->1667" + "default.handlebars->25->1673" ] }, { @@ -20428,7 +20440,7 @@ "zh-chs": "過程控制", "xloc": [ "default-mobile.handlebars->9->242", - "default.handlebars->25->710" + "default.handlebars->25->716" ] }, { @@ -20463,9 +20475,9 @@ "ru": "Запрос согласия пользователя", "zh-chs": "提示用戶同意", "xloc": [ - "default.handlebars->25->1221", - "default.handlebars->25->1225", - "default.handlebars->25->1228" + "default.handlebars->25->1227", + "default.handlebars->25->1231", + "default.handlebars->25->1234" ] }, { @@ -20482,7 +20494,7 @@ "ru": "Протокол", "zh-chs": "協議", "xloc": [ - "default.handlebars->25->1665", + "default.handlebars->25->1671", "player.handlebars->3->15" ] }, @@ -20514,7 +20526,7 @@ "ru": "Предоставление государства", "zh-chs": "供應國", "xloc": [ - "default.handlebars->25->797" + "default.handlebars->25->803" ] }, { @@ -20532,7 +20544,7 @@ "zh-chs": "公開連結", "xloc": [ "default-mobile.handlebars->9->84", - "default.handlebars->25->1356" + "default.handlebars->25->1362" ] }, { @@ -20549,7 +20561,7 @@ "ru": "Пенджаби", "zh-chs": "旁遮普語", "xloc": [ - "default.handlebars->25->998" + "default.handlebars->25->1004" ] }, { @@ -20566,7 +20578,7 @@ "ru": "Пенджаби (Индия)", "zh-chs": "旁遮普(印度)", "xloc": [ - "default.handlebars->25->999" + "default.handlebars->25->1005" ] }, { @@ -20583,7 +20595,7 @@ "ru": "Пенджаби (Пакистан)", "zh-chs": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->25->1000" + "default.handlebars->25->1006" ] }, { @@ -20635,7 +20647,7 @@ "ru": "Кечуа", "zh-chs": "蓋丘亞族", "xloc": [ - "default.handlebars->25->1001" + "default.handlebars->25->1007" ] }, { @@ -20789,7 +20801,7 @@ "ru": "RSS", "zh-chs": "的RSS", "xloc": [ - "default.handlebars->25->1728" + "default.handlebars->25->1734" ] }, { @@ -20806,7 +20818,7 @@ "ru": "Случайный пароль.", "zh-chs": "隨機化密碼。", "xloc": [ - "default.handlebars->25->1452" + "default.handlebars->25->1458" ] }, { @@ -20840,7 +20852,7 @@ "ru": "Реактивировать Intel® AMT", "zh-chs": "重新激活英特爾®AMT", "xloc": [ - "default.handlebars->25->1196" + "default.handlebars->25->1202" ] }, { @@ -20857,7 +20869,7 @@ "ru": "Области", "zh-chs": "境界", "xloc": [ - "default.handlebars->25->1460" + "default.handlebars->25->1466" ] }, { @@ -20884,7 +20896,7 @@ "en": "Recording Details", "nl": "Opname details", "xloc": [ - "default.handlebars->25->1679" + "default.handlebars->25->1685" ] }, { @@ -20910,8 +20922,8 @@ "xloc": [ "default-mobile.handlebars->9->253", "default-mobile.handlebars->9->90", - "default.handlebars->25->1363", - "default.handlebars->25->733" + "default.handlebars->25->1369", + "default.handlebars->25->739" ] }, { @@ -21008,7 +21020,7 @@ "ru": "Число ретрансляций", "zh-chs": "中繼計數", "xloc": [ - "default.handlebars->25->1710" + "default.handlebars->25->1716" ] }, { @@ -21025,7 +21037,7 @@ "ru": "Ошибки ретранслятора", "zh-chs": "中繼錯誤", "xloc": [ - "default.handlebars->25->1703" + "default.handlebars->25->1709" ] }, { @@ -21042,8 +21054,8 @@ "ru": "Сессии ретранслятора", "zh-chs": "接力會議", "xloc": [ - "default.handlebars->25->1709", - "default.handlebars->25->1722" + "default.handlebars->25->1715", + "default.handlebars->25->1728" ] }, { @@ -21153,7 +21165,7 @@ "ru": "Удаленный буфер обмена", "zh-chs": "遠程剪貼板", "xloc": [ - "default.handlebars->25->693" + "default.handlebars->25->699" ] }, { @@ -21172,8 +21184,8 @@ "xloc": [ "default-mobile.handlebars->9->301", "default-mobile.handlebars->9->319", - "default.handlebars->25->1248", - "default.handlebars->25->1282" + "default.handlebars->25->1254", + "default.handlebars->25->1288" ] }, { @@ -21192,7 +21204,7 @@ "xloc": [ "default-mobile.handlebars->9->239", "default.handlebars->25->215", - "default.handlebars->25->685" + "default.handlebars->25->691" ] }, { @@ -21209,7 +21221,7 @@ "ru": "Ввод с удаленной клавиатуры", "zh-chs": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->25->691" + "default.handlebars->25->697" ] }, { @@ -21259,8 +21271,8 @@ "xloc": [ "default-mobile.handlebars->9->302", "default-mobile.handlebars->9->324", - "default.handlebars->25->1249", - "default.handlebars->25->1287" + "default.handlebars->25->1255", + "default.handlebars->25->1293" ] }, { @@ -21277,7 +21289,7 @@ "ru": "Удаленный буфер обмена действителен в течении 60 секунд.", "zh-chs": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->25->692" + "default.handlebars->25->698" ] }, { @@ -21353,8 +21365,8 @@ "nl": "Apparaatgroepmachtigingen verwijderen", "zh-chs": "删除设备组权限", "xloc": [ - "default.handlebars->25->1526", - "default.handlebars->25->1650" + "default.handlebars->25->1532", + "default.handlebars->25->1656" ] }, { @@ -21368,8 +21380,8 @@ "nl": "Apparaatmachtigingen verwijderen", "zh-chs": "删除设备权限", "xloc": [ - "default.handlebars->25->1524", - "default.handlebars->25->1637" + "default.handlebars->25->1530", + "default.handlebars->25->1643" ] }, { @@ -21397,7 +21409,7 @@ "nl": "Lidmaatschap van gebruikersgroep verwijderen", "zh-chs": "删除用户组成员身份", "xloc": [ - "default.handlebars->25->1646" + "default.handlebars->25->1652" ] }, { @@ -21411,8 +21423,8 @@ "nl": "Gebruikersgroepmachtigingen verwijderen", "zh-chs": "删除用户组权限", "xloc": [ - "default.handlebars->25->1304", - "default.handlebars->25->1642" + "default.handlebars->25->1310", + "default.handlebars->25->1648" ] }, { @@ -21426,7 +21438,7 @@ "nl": "Gebruikerslidmaatschap verwijderen", "zh-chs": "删除用户成员资格", "xloc": [ - "default.handlebars->25->1534" + "default.handlebars->25->1540" ] }, { @@ -21440,8 +21452,8 @@ "nl": "Gebruikersmachtigingen verwijderen", "zh-chs": "删除用户权限", "xloc": [ - "default.handlebars->25->1302", - "default.handlebars->25->1639" + "default.handlebars->25->1308", + "default.handlebars->25->1645" ] }, { @@ -21458,7 +21470,7 @@ "ru": "Удалить все двухфакторные аутентификации.", "zh-chs": "刪除所有第二因素驗證。", "xloc": [ - "default.handlebars->25->1614" + "default.handlebars->25->1620" ] }, { @@ -21475,7 +21487,7 @@ "ru": "Удалить все прошлые события для этого userid.", "zh-chs": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->25->1454" + "default.handlebars->25->1460" ] }, { @@ -21492,7 +21504,7 @@ "ru": "Удалить устройство при отключении", "zh-chs": "斷開連接後移除設備", "xloc": [ - "default.handlebars->25->1229" + "default.handlebars->25->1235" ] }, { @@ -21523,7 +21535,7 @@ "zh-chs": "删除电话号码", "xloc": [ "default-mobile.handlebars->9->33", - "default.handlebars->25->845" + "default.handlebars->25->851" ] }, { @@ -21556,7 +21568,7 @@ "ru": "Удалить этого пользователя", "zh-chs": "删除该用户", "xloc": [ - "default.handlebars->25->1594" + "default.handlebars->25->1600" ] }, { @@ -21573,7 +21585,7 @@ "ru": "Удалить членство пользователя в группе", "zh-chs": "刪除用戶組成員身份", "xloc": [ - "default.handlebars->25->1628" + "default.handlebars->25->1634" ] }, { @@ -21587,7 +21599,7 @@ "nl": "Gebruikersrechten voor dit apparaat verwijderen", "zh-chs": "删除此设备的用户组权限", "xloc": [ - "default.handlebars->25->1520" + "default.handlebars->25->1526" ] }, { @@ -21604,7 +21616,7 @@ "ru": "Удалить права группы пользователей для этой группы устройств", "zh-chs": "刪除該設備組的用戶組權限", "xloc": [ - "default.handlebars->25->1514", + "default.handlebars->25->1520", "default.handlebars->25->560" ] }, @@ -21622,10 +21634,10 @@ "ru": "Удалить права пользователя для этой группы устройств", "zh-chs": "刪除此設備組的用戶權限", "xloc": [ - "default.handlebars->25->1180", - "default.handlebars->25->1508", - "default.handlebars->25->1622", - "default.handlebars->25->1634", + "default.handlebars->25->1186", + "default.handlebars->25->1514", + "default.handlebars->25->1628", + "default.handlebars->25->1640", "default.handlebars->25->561" ] }, @@ -21647,9 +21659,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->25->1367", + "default.handlebars->25->1373", "default.handlebars->25->423", - "default.handlebars->25->737", + "default.handlebars->25->743", "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" @@ -21669,7 +21681,7 @@ "ru": "Требования: ", "zh-chs": "要求:", "xloc": [ - "default.handlebars->25->1092" + "default.handlebars->25->1098" ] }, { @@ -21687,8 +21699,8 @@ "zh-chs": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->58", - "default.handlebars->25->1457", - "default.handlebars->25->1612" + "default.handlebars->25->1463", + "default.handlebars->25->1618" ] }, { @@ -21861,7 +21873,7 @@ "ru": "Перезапуск", "zh-chs": "重新開始", "xloc": [ - "default.handlebars->25->708", + "default.handlebars->25->714", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -21879,7 +21891,7 @@ "ru": "Восстановить сервер", "zh-chs": "還原伺服器", "xloc": [ - "default.handlebars->25->1119" + "default.handlebars->25->1125" ] }, { @@ -21913,7 +21925,7 @@ "ru": "Восстановить сервер из резервной копии, это удалит существующие данные сервера . Продолжайте дальше только если знаете, что делаете.", "zh-chs": "使用備份還原服務器,這將刪除現有服務器數據。僅當您知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->25->1116" + "default.handlebars->25->1122" ] }, { @@ -21930,7 +21942,7 @@ "ru": "Ограничения", "zh-chs": "限制條件", "xloc": [ - "default.handlebars->25->1546" + "default.handlebars->25->1552" ] }, { @@ -21947,7 +21959,7 @@ "ru": "Ретороманский", "zh-chs": "修羅羅馬式", "xloc": [ - "default.handlebars->25->1002" + "default.handlebars->25->1008" ] }, { @@ -21964,7 +21976,7 @@ "ru": "Румынский", "zh-chs": "羅馬尼亞語", "xloc": [ - "default.handlebars->25->1003" + "default.handlebars->25->1009" ] }, { @@ -21981,7 +21993,7 @@ "ru": "Румынский (Молдавия)", "zh-chs": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->25->1004" + "default.handlebars->25->1010" ] }, { @@ -22000,8 +22012,8 @@ "xloc": [ "default-mobile.handlebars->9->247", "default-mobile.handlebars->9->76", - "default.handlebars->25->1340", - "default.handlebars->25->727" + "default.handlebars->25->1346", + "default.handlebars->25->733" ] }, { @@ -22123,7 +22135,7 @@ "ru": "Русский", "zh-chs": "俄語", "xloc": [ - "default.handlebars->25->1005" + "default.handlebars->25->1011" ] }, { @@ -22140,7 +22152,7 @@ "ru": "Русский (Молдавия)", "zh-chs": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->25->1006" + "default.handlebars->25->1012" ] }, { @@ -22153,8 +22165,8 @@ "nl": "SMS", "zh-chs": "短信", "xloc": [ - "default.handlebars->25->1585", - "default.handlebars->25->1590", + "default.handlebars->25->1591", + "default.handlebars->25->1596", "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" ] @@ -22169,7 +22181,7 @@ "nl": "SMS geschikt telefoonnummer voor deze gebruiker.", "zh-chs": "此用户的短信功能电话号码。", "xloc": [ - "default.handlebars->25->1600" + "default.handlebars->25->1606" ] }, { @@ -22217,7 +22229,7 @@ "ru": "Саамский", "zh-chs": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->25->1007" + "default.handlebars->25->1013" ] }, { @@ -22262,7 +22274,7 @@ "ru": "Санго", "zh-chs": "三鄉", "xloc": [ - "default.handlebars->25->1008" + "default.handlebars->25->1014" ] }, { @@ -22279,7 +22291,7 @@ "ru": "Санскритский", "zh-chs": "梵文", "xloc": [ - "default.handlebars->25->1009" + "default.handlebars->25->1015" ] }, { @@ -22296,7 +22308,7 @@ "ru": "Сардинский", "zh-chs": "撒丁島", "xloc": [ - "default.handlebars->25->1010" + "default.handlebars->25->1016" ] }, { @@ -22532,7 +22544,7 @@ "ru": "Защищено с помощью TLS", "zh-chs": "使用TLS保護", "xloc": [ - "default.handlebars->25->800" + "default.handlebars->25->806" ] }, { @@ -22550,10 +22562,10 @@ "zh-chs": "安全", "xloc": [ "default-mobile.handlebars->9->224", - "default.handlebars->25->1586", + "default.handlebars->25->1592", "default.handlebars->25->237", "default.handlebars->25->620", - "default.handlebars->25->799" + "default.handlebars->25->805" ] }, { @@ -22570,7 +22582,7 @@ "ru": "Ключ безопасности", "zh-chs": "安全密鑰", "xloc": [ - "default.handlebars->25->1583" + "default.handlebars->25->1589" ] }, { @@ -22604,12 +22616,12 @@ "ru": "Выбрать все", "zh-chs": "全選", "xloc": [ - "default.handlebars->25->1359", - "default.handlebars->25->1416", - "default.handlebars->25->1482", + "default.handlebars->25->1365", + "default.handlebars->25->1422", + "default.handlebars->25->1488", "default.handlebars->25->381", - "default.handlebars->25->729", - "default.handlebars->25->731", + "default.handlebars->25->735", + "default.handlebars->25->737", "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", @@ -22632,11 +22644,11 @@ "ru": "Очистить все", "zh-chs": "選擇無", "xloc": [ - "default.handlebars->25->1358", - "default.handlebars->25->1415", - "default.handlebars->25->1481", + "default.handlebars->25->1364", + "default.handlebars->25->1421", + "default.handlebars->25->1487", "default.handlebars->25->380", - "default.handlebars->25->730", + "default.handlebars->25->736", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -22719,8 +22731,8 @@ "nl": "Selecteer een bewerking die u op alle geselecteerde gebruikers wilt uitvoeren.", "zh-chs": "选择要对所有选定用户执行的操作。", "xloc": [ - "default.handlebars->25->1417", - "default.handlebars->25->1483" + "default.handlebars->25->1423", + "default.handlebars->25->1489" ] }, { @@ -22774,7 +22786,7 @@ "zh-chs": "僅自我事件", "xloc": [ "default-mobile.handlebars->9->329", - "default.handlebars->25->1293" + "default.handlebars->25->1299" ] }, { @@ -22841,7 +22853,7 @@ "nl": "verstuur SMS", "zh-chs": "发送短信", "xloc": [ - "default.handlebars->25->1426" + "default.handlebars->25->1432" ] }, { @@ -22854,7 +22866,7 @@ "nl": "Stuur een SMS bericht naar deze gebruiker", "zh-chs": "发送短信给该用户", "xloc": [ - "default.handlebars->25->1591" + "default.handlebars->25->1597" ] }, { @@ -22871,7 +22883,7 @@ "ru": "Отправить уведомление всем пользователям этой группы.", "zh-chs": "向該組中的所有用戶發送通知。", "xloc": [ - "default.handlebars->25->1505" + "default.handlebars->25->1511" ] }, { @@ -22888,7 +22900,7 @@ "ru": "Отправить текстовое уведомление этому пользователю.", "zh-chs": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->25->1428" + "default.handlebars->25->1434" ] }, { @@ -22904,7 +22916,7 @@ "ru": "Отправить письмо пользователю", "zh-chs": "发送电子邮件给用户", "xloc": [ - "default.handlebars->25->1411" + "default.handlebars->25->1417" ] }, { @@ -22938,7 +22950,7 @@ "ru": "Отправить приглашение по email.", "zh-chs": "發送邀請電子郵件。", "xloc": [ - "default.handlebars->25->1456" + "default.handlebars->25->1462" ] }, { @@ -23004,7 +23016,7 @@ "ru": "Отправить уведомление пользователю", "zh-chs": "發送用戶通知", "xloc": [ - "default.handlebars->25->1593" + "default.handlebars->25->1599" ] }, { @@ -23021,7 +23033,7 @@ "ru": "Сербский", "zh-chs": "塞爾維亞", "xloc": [ - "default.handlebars->25->1013" + "default.handlebars->25->1019" ] }, { @@ -23038,7 +23050,7 @@ "ru": "Серийный номер", "zh-chs": "序列號", "xloc": [ - "default.handlebars->25->811" + "default.handlebars->25->817" ] }, { @@ -23055,7 +23067,7 @@ "ru": "Резервное копирование сервера", "zh-chs": "服務器備份", "xloc": [ - "default.handlebars->25->1466" + "default.handlebars->25->1472" ] }, { @@ -23072,7 +23084,7 @@ "ru": "Сертификат сервера", "zh-chs": "服務器證書", "xloc": [ - "default.handlebars->25->1738" + "default.handlebars->25->1744" ] }, { @@ -23089,7 +23101,7 @@ "ru": "База данных сервера", "zh-chs": "服務器數據庫", "xloc": [ - "default.handlebars->25->1739" + "default.handlebars->25->1745" ] }, { @@ -23108,9 +23120,9 @@ "xloc": [ "default-mobile.handlebars->9->308", "default-mobile.handlebars->9->321", - "default.handlebars->25->1256", - "default.handlebars->25->1284", - "default.handlebars->25->1463", + "default.handlebars->25->1262", + "default.handlebars->25->1290", + "default.handlebars->25->1469", "default.handlebars->25->574", "default.handlebars->25->593" ] @@ -23129,8 +23141,8 @@ "ru": "Разрешения сервера", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->25->1403", - "default.handlebars->25->1475" + "default.handlebars->25->1409", + "default.handlebars->25->1481" ] }, { @@ -23147,7 +23159,7 @@ "ru": "Квота сервера", "zh-chs": "服務器配額", "xloc": [ - "default.handlebars->25->1557" + "default.handlebars->25->1563" ] }, { @@ -23164,7 +23176,7 @@ "ru": "Восстановление сервера", "zh-chs": "服務器還原", "xloc": [ - "default.handlebars->25->1467" + "default.handlebars->25->1473" ] }, { @@ -23181,7 +23193,7 @@ "ru": "Права", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->25->1556" + "default.handlebars->25->1562" ] }, { @@ -23198,7 +23210,7 @@ "ru": "Состояние сервера", "zh-chs": "服務器狀態", "xloc": [ - "default.handlebars->25->1689" + "default.handlebars->25->1695" ] }, { @@ -23232,7 +23244,7 @@ "ru": "Трассировка сервера", "zh-chs": "服務器跟踪", "xloc": [ - "default.handlebars->25->1749" + "default.handlebars->25->1755" ] }, { @@ -23249,7 +23261,7 @@ "ru": "Обновление сервера", "zh-chs": "服務器更新", "xloc": [ - "default.handlebars->25->1468" + "default.handlebars->25->1474" ] }, { @@ -23371,7 +23383,7 @@ "ru": "ServerStats.csv", "zh-chs": "ServerStats.csv", "xloc": [ - "default.handlebars->25->1730" + "default.handlebars->25->1736" ] }, { @@ -23388,7 +23400,7 @@ "ru": "Детали службы", "zh-chs": "服務詳情", "xloc": [ - "default.handlebars->25->709" + "default.handlebars->25->715" ] }, { @@ -23412,7 +23424,13 @@ "en": "Session", "nl": "Sessie", "xloc": [ - "default.handlebars->25->1653" + "default.handlebars->25->1659" + ] + }, + { + "en": "Session Information", + "xloc": [ + "default.handlebars->25->688" ] }, { @@ -23589,7 +23607,7 @@ "ru": "Общий процесс", "zh-chs": "共享過程", "xloc": [ - "default.handlebars->25->703" + "default.handlebars->25->709" ] }, { @@ -23699,7 +23717,7 @@ "zh-chs": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->9->311", - "default.handlebars->25->1259" + "default.handlebars->25->1265" ] }, { @@ -23716,7 +23734,7 @@ "ru": "Показывать панель-уведомление", "zh-chs": "顯示連接工具欄", "xloc": [ - "default.handlebars->25->1222" + "default.handlebars->25->1228" ] }, { @@ -23801,8 +23819,8 @@ "ru": "Простой режим управления администратора (ACM)", "zh-chs": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->25->1160", - "default.handlebars->25->1183" + "default.handlebars->25->1166", + "default.handlebars->25->1189" ] }, { @@ -23819,9 +23837,9 @@ "ru": "Простой режим управления клиента (CCM)", "zh-chs": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->25->1158", - "default.handlebars->25->1186", - "default.handlebars->25->1190" + "default.handlebars->25->1164", + "default.handlebars->25->1192", + "default.handlebars->25->1196" ] }, { @@ -23838,7 +23856,7 @@ "ru": "Синдхи", "zh-chs": "信地", "xloc": [ - "default.handlebars->25->1011" + "default.handlebars->25->1017" ] }, { @@ -23855,7 +23873,7 @@ "ru": "Сингальский", "zh-chs": "僧伽羅語", "xloc": [ - "default.handlebars->25->1012" + "default.handlebars->25->1018" ] }, { @@ -23872,8 +23890,8 @@ "ru": "Размер", "zh-chs": "尺寸", "xloc": [ - "default.handlebars->25->1656", - "default.handlebars->25->1671", + "default.handlebars->25->1662", + "default.handlebars->25->1677", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -23891,7 +23909,7 @@ "ru": "Размер: 100%", "zh-chs": "尺寸:100%", "xloc": [ - "default.handlebars->25->757" + "default.handlebars->25->763" ] }, { @@ -23908,7 +23926,7 @@ "ru": "Размер: 125%", "zh-chs": "尺寸:125%", "xloc": [ - "default.handlebars->25->758" + "default.handlebars->25->764" ] }, { @@ -23925,7 +23943,7 @@ "ru": "Размер: 150%", "zh-chs": "尺寸:150%", "xloc": [ - "default.handlebars->25->759" + "default.handlebars->25->765" ] }, { @@ -23942,7 +23960,7 @@ "ru": "Размер: 200%", "zh-chs": "尺寸:200%", "xloc": [ - "default.handlebars->25->760" + "default.handlebars->25->766" ] }, { @@ -24020,7 +24038,7 @@ "ru": "Словацкий", "zh-chs": "斯洛伐克文", "xloc": [ - "default.handlebars->25->1014" + "default.handlebars->25->1020" ] }, { @@ -24037,7 +24055,7 @@ "ru": "Словенский", "zh-chs": "斯洛文尼亞文", "xloc": [ - "default.handlebars->25->1015" + "default.handlebars->25->1021" ] }, { @@ -24090,7 +24108,7 @@ "ru": "Малая фокусировка", "zh-chs": "小焦點", "xloc": [ - "default.handlebars->25->688" + "default.handlebars->25->694" ] }, { @@ -24107,7 +24125,7 @@ "ru": "Програмное отключение агента", "zh-chs": "軟斷開劑", "xloc": [ - "default.handlebars->25->841" + "default.handlebars->25->847" ] }, { @@ -24159,7 +24177,7 @@ "ru": "Сомани", "zh-chs": "索馬尼", "xloc": [ - "default.handlebars->25->1016" + "default.handlebars->25->1022" ] }, { @@ -24176,7 +24194,7 @@ "ru": "Сорбский", "zh-chs": "索比亞人", "xloc": [ - "default.handlebars->25->1017" + "default.handlebars->25->1023" ] }, { @@ -24306,7 +24324,7 @@ "ru": "Испанский", "zh-chs": "西班牙文", "xloc": [ - "default.handlebars->25->1018" + "default.handlebars->25->1024" ] }, { @@ -24323,7 +24341,7 @@ "ru": "Испанский (Аргентина)", "zh-chs": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->25->1019" + "default.handlebars->25->1025" ] }, { @@ -24340,7 +24358,7 @@ "ru": "Испанский (Боливия)", "zh-chs": "西班牙語(玻利維亞)", "xloc": [ - "default.handlebars->25->1020" + "default.handlebars->25->1026" ] }, { @@ -24357,7 +24375,7 @@ "ru": "Испанский (Чили)", "zh-chs": "西班牙語(智利)", "xloc": [ - "default.handlebars->25->1021" + "default.handlebars->25->1027" ] }, { @@ -24374,7 +24392,7 @@ "ru": "Испанский (Колумбия)", "zh-chs": "西班牙語(哥倫比亞)", "xloc": [ - "default.handlebars->25->1022" + "default.handlebars->25->1028" ] }, { @@ -24391,7 +24409,7 @@ "ru": "Испанский (Коста-Рика)", "zh-chs": "西班牙語(哥斯達黎加)", "xloc": [ - "default.handlebars->25->1023" + "default.handlebars->25->1029" ] }, { @@ -24408,7 +24426,7 @@ "ru": "Испанский (Доминиканская Республика)", "zh-chs": "西班牙語(多米尼加共和國)", "xloc": [ - "default.handlebars->25->1024" + "default.handlebars->25->1030" ] }, { @@ -24425,7 +24443,7 @@ "ru": "Испанский (Эквадор)", "zh-chs": "西班牙語(厄瓜多爾)", "xloc": [ - "default.handlebars->25->1025" + "default.handlebars->25->1031" ] }, { @@ -24442,7 +24460,7 @@ "ru": "Испанский (Сальвадор)", "zh-chs": "西班牙語(薩爾瓦多)", "xloc": [ - "default.handlebars->25->1026" + "default.handlebars->25->1032" ] }, { @@ -24459,7 +24477,7 @@ "ru": "Испанский (Гватемала)", "zh-chs": "西班牙語(危地馬拉)", "xloc": [ - "default.handlebars->25->1027" + "default.handlebars->25->1033" ] }, { @@ -24476,7 +24494,7 @@ "ru": "Испанский (Гондурас)", "zh-chs": "西班牙語(洪都拉斯)", "xloc": [ - "default.handlebars->25->1028" + "default.handlebars->25->1034" ] }, { @@ -24493,7 +24511,7 @@ "ru": "Испанский (Мексика)", "zh-chs": "西班牙語(墨西哥)", "xloc": [ - "default.handlebars->25->1029" + "default.handlebars->25->1035" ] }, { @@ -24510,7 +24528,7 @@ "ru": "Испанский (Никарагуа)", "zh-chs": "西班牙語(尼加拉瓜)", "xloc": [ - "default.handlebars->25->1030" + "default.handlebars->25->1036" ] }, { @@ -24527,7 +24545,7 @@ "ru": "Испанский (Панама)", "zh-chs": "西班牙語(巴拿馬)", "xloc": [ - "default.handlebars->25->1031" + "default.handlebars->25->1037" ] }, { @@ -24544,7 +24562,7 @@ "ru": "Испанский (Парагвай)", "zh-chs": "西班牙語(巴拉圭)", "xloc": [ - "default.handlebars->25->1032" + "default.handlebars->25->1038" ] }, { @@ -24561,7 +24579,7 @@ "ru": "Испанский (Перу)", "zh-chs": "西班牙語(秘魯)", "xloc": [ - "default.handlebars->25->1033" + "default.handlebars->25->1039" ] }, { @@ -24578,7 +24596,7 @@ "ru": "Испанский (Пуэрто-Рико)", "zh-chs": "西班牙語(波多黎各)", "xloc": [ - "default.handlebars->25->1034" + "default.handlebars->25->1040" ] }, { @@ -24595,7 +24613,7 @@ "ru": "Испанский (Испания)", "zh-chs": "西班牙語(西班牙)", "xloc": [ - "default.handlebars->25->1035" + "default.handlebars->25->1041" ] }, { @@ -24612,7 +24630,7 @@ "ru": "Испанский (Уругвай)", "zh-chs": "西班牙語(烏拉圭)", "xloc": [ - "default.handlebars->25->1036" + "default.handlebars->25->1042" ] }, { @@ -24629,7 +24647,7 @@ "ru": "Испанский (Венесуэла)", "zh-chs": "西班牙語(委內瑞拉)", "xloc": [ - "default.handlebars->25->1037" + "default.handlebars->25->1043" ] }, { @@ -24678,15 +24696,16 @@ "ru": "Старт", "zh-chs": "開始", "xloc": [ - "default.handlebars->25->706" + "default.handlebars->25->712" ] }, { "en": "Start Time", "nl": "Start tijd", "xloc": [ - "default.handlebars->25->1654", - "default.handlebars->25->1673" + "default.handlebars->25->1660", + "default.handlebars->25->1679", + "default.handlebars->25->684" ] }, { @@ -24703,7 +24722,7 @@ "ru": "Состояние", "zh-chs": "州", "xloc": [ - "default.handlebars->25->697", + "default.handlebars->25->703", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -24738,8 +24757,8 @@ "ru": "Статус", "zh-chs": "狀態", "xloc": [ - "default.handlebars->25->1605", - "default.handlebars->25->1666", + "default.handlebars->25->1611", + "default.handlebars->25->1672", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -24757,7 +24776,7 @@ "ru": "Стоп", "zh-chs": "停止", "xloc": [ - "default.handlebars->25->707" + "default.handlebars->25->713" ] }, { @@ -24773,7 +24792,7 @@ "ru": "Остановить процесс", "zh-chs": "停止程序", "xloc": [ - "default.handlebars->25->694" + "default.handlebars->25->700" ] }, { @@ -24791,7 +24810,7 @@ "zh-chs": "停止進程#{0} \\“ {1} \\”?", "xloc": [ "default-mobile.handlebars->9->243", - "default.handlebars->25->711" + "default.handlebars->25->717" ] }, { @@ -24804,7 +24823,7 @@ "nl": "Opslag", "zh-chs": "存储", "xloc": [ - "default.handlebars->25->825" + "default.handlebars->25->831" ] }, { @@ -24838,7 +24857,7 @@ "ru": "Превышен лимит места для хранения", "zh-chs": "儲存空間超過", "xloc": [ - "default.handlebars->25->1344" + "default.handlebars->25->1350" ] }, { @@ -24855,7 +24874,7 @@ "ru": "Надежный", "zh-chs": "強大", "xloc": [ - "default.handlebars->25->1109" + "default.handlebars->25->1115" ] }, { @@ -24960,7 +24979,7 @@ "ru": "Суту", "zh-chs": "蘇圖", "xloc": [ - "default.handlebars->25->1038" + "default.handlebars->25->1044" ] }, { @@ -24977,7 +24996,7 @@ "ru": "Суахили", "zh-chs": "斯瓦希里語", "xloc": [ - "default.handlebars->25->1039" + "default.handlebars->25->1045" ] }, { @@ -24994,7 +25013,7 @@ "ru": "Шведский", "zh-chs": "瑞典", "xloc": [ - "default.handlebars->25->1040" + "default.handlebars->25->1046" ] }, { @@ -25011,7 +25030,7 @@ "ru": "Шведский (Финляндия)", "zh-chs": "瑞典語(芬蘭)", "xloc": [ - "default.handlebars->25->1041" + "default.handlebars->25->1047" ] }, { @@ -25028,7 +25047,7 @@ "ru": "Шведский (Швеция)", "zh-chs": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->25->1042" + "default.handlebars->25->1048" ] }, { @@ -25045,7 +25064,7 @@ "ru": "Синхронизировать имя устройства на сервере с именем хоста", "zh-chs": "將服務器設備名稱同步到主機名", "xloc": [ - "default.handlebars->25->1230" + "default.handlebars->25->1236" ] }, { @@ -25138,7 +25157,7 @@ "ru": "TLS не настроен", "zh-chs": "未設置TLS", "xloc": [ - "default.handlebars->25->801" + "default.handlebars->25->807" ] }, { @@ -25229,7 +25248,7 @@ "ru": "Тамильский", "zh-chs": "泰米爾語", "xloc": [ - "default.handlebars->25->1043" + "default.handlebars->25->1049" ] }, { @@ -25246,7 +25265,7 @@ "ru": "Татарский", "zh-chs": "塔塔爾族", "xloc": [ - "default.handlebars->25->1044" + "default.handlebars->25->1050" ] }, { @@ -25263,7 +25282,7 @@ "ru": "Телугу", "zh-chs": "泰盧加", "xloc": [ - "default.handlebars->25->1045" + "default.handlebars->25->1051" ] }, { @@ -25280,8 +25299,8 @@ "ru": "Терминал", "zh-chs": "終奌站", "xloc": [ - "default.handlebars->25->1223", - "default.handlebars->25->1660", + "default.handlebars->25->1229", + "default.handlebars->25->1666", "default.handlebars->25->433", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal" @@ -25318,8 +25337,8 @@ "ru": "Терминал уведомление", "zh-chs": "終端通知", "xloc": [ - "default.handlebars->25->1143", - "default.handlebars->25->1575", + "default.handlebars->25->1149", + "default.handlebars->25->1581", "default.handlebars->25->503" ] }, @@ -25337,8 +25356,8 @@ "ru": "Запрос терминала", "zh-chs": "終端提示", "xloc": [ - "default.handlebars->25->1142", - "default.handlebars->25->1574", + "default.handlebars->25->1148", + "default.handlebars->25->1580", "default.handlebars->25->502" ] }, @@ -25395,7 +25414,7 @@ "ru": "Тайский", "zh-chs": "泰國", "xloc": [ - "default.handlebars->25->1046" + "default.handlebars->25->1052" ] }, { @@ -25482,7 +25501,7 @@ "ru": "На данный момент уведомлений нет", "zh-chs": "目前沒有任何通知", "xloc": [ - "default.handlebars->25->1681" + "default.handlebars->25->1687" ] }, { @@ -25534,7 +25553,7 @@ "zh-chs": "該帳戶無權創建新的設備組。", "xloc": [ "default-mobile.handlebars->9->61", - "default.handlebars->25->1095" + "default.handlebars->25->1101" ] }, { @@ -25568,7 +25587,7 @@ "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.", "zh-chs": "這不是安全的策略,因為代理將執行激活。", "xloc": [ - "default.handlebars->25->1208" + "default.handlebars->25->1214" ] }, { @@ -25603,7 +25622,7 @@ "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.", "zh-chs": "該策略不會影響採用ACM模式的英特爾®AMT的設備。", "xloc": [ - "default.handlebars->25->1207" + "default.handlebars->25->1213" ] }, { @@ -25734,7 +25753,7 @@ "ru": "Тигровый", "zh-chs": "蒂格雷", "xloc": [ - "default.handlebars->25->1047" + "default.handlebars->25->1053" ] }, { @@ -25877,7 +25896,7 @@ "ru": "Чтобы удалить эту учетную запись, введите пароль учетной записи в оба поля и нажмите ОК.", "zh-chs": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->25->1082" + "default.handlebars->25->1088" ] }, { @@ -26311,7 +26330,7 @@ "ru": "Тсонга", "zh-chs": "特松加", "xloc": [ - "default.handlebars->25->1048" + "default.handlebars->25->1054" ] }, { @@ -26328,7 +26347,7 @@ "ru": "Тсвана", "zh-chs": "茨瓦納", "xloc": [ - "default.handlebars->25->1049" + "default.handlebars->25->1055" ] }, { @@ -26345,7 +26364,7 @@ "ru": "Турецкий", "zh-chs": "土耳其", "xloc": [ - "default.handlebars->25->1050" + "default.handlebars->25->1056" ] }, { @@ -26362,7 +26381,7 @@ "ru": "Туркменский", "zh-chs": "土庫曼人", "xloc": [ - "default.handlebars->25->1051" + "default.handlebars->25->1057" ] }, { @@ -26398,11 +26417,11 @@ "xloc": [ "default-mobile.handlebars->9->284", "default-mobile.handlebars->9->67", - "default.handlebars->25->1102", - "default.handlebars->25->1133", - "default.handlebars->25->1184", - "default.handlebars->25->1187", - "default.handlebars->25->704", + "default.handlebars->25->1108", + "default.handlebars->25->1139", + "default.handlebars->25->1190", + "default.handlebars->25->1193", + "default.handlebars->25->710", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, @@ -26420,7 +26439,7 @@ "ru": "Введите имя ключа, выберите поле OTP и нажмите кнопку на YubiKey™.", "zh-chs": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->25->860" + "default.handlebars->25->866" ] }, { @@ -26437,7 +26456,7 @@ "ru": "Введите имя ключа для добавления.", "zh-chs": "輸入要添加的密鑰的名稱。", "xloc": [ - "default.handlebars->25->857" + "default.handlebars->25->863" ] }, { @@ -26454,7 +26473,7 @@ "ru": "Терминал UTF8", "zh-chs": "UTF8終端", "xloc": [ - "default.handlebars->25->715" + "default.handlebars->25->721" ] }, { @@ -26471,7 +26490,7 @@ "ru": "Украинский", "zh-chs": "烏克蘭", "xloc": [ - "default.handlebars->25->1052" + "default.handlebars->25->1058" ] }, { @@ -26488,7 +26507,7 @@ "ru": "Невозможно получить доступ к устройству, пока адрес email не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес email.", "zh-chs": "在驗證電子郵件地址之前,無法訪問設備。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "xloc": [ - "default.handlebars->25->1097", + "default.handlebars->25->1103", "default.handlebars->25->449" ] }, @@ -26542,7 +26561,7 @@ "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите на вкладку \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "zh-chs": "在啟用兩因素身份驗證之前,無法訪問設備。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->25->1099", + "default.handlebars->25->1105", "default.handlebars->25->451" ] }, @@ -26650,7 +26669,7 @@ "zh-chs": "卸載", "xloc": [ "default-mobile.handlebars->9->331", - "default.handlebars->25->1295", + "default.handlebars->25->1301", "default.handlebars->25->579", "default.handlebars->25->598" ] @@ -26670,7 +26689,7 @@ "zh-chs": "卸載代理", "xloc": [ "default-mobile.handlebars->9->313", - "default.handlebars->25->1261", + "default.handlebars->25->1267", "default.handlebars->25->383", "default.handlebars->25->612" ] @@ -26711,14 +26730,14 @@ "default-mobile.handlebars->9->181", "default-mobile.handlebars->9->182", "default.handlebars->25->13", - "default.handlebars->25->1645", - "default.handlebars->25->1658", - "default.handlebars->25->1659", + "default.handlebars->25->1651", + "default.handlebars->25->1664", + "default.handlebars->25->1665", "default.handlebars->25->379", "default.handlebars->25->41", "default.handlebars->25->42", - "default.handlebars->25->791", - "default.handlebars->25->798", + "default.handlebars->25->797", + "default.handlebars->25->804", "default.handlebars->25->91", "default.handlebars->25->92", "default.handlebars->25->93", @@ -26741,7 +26760,7 @@ "zh-chs": "未知#{0}", "xloc": [ "default-mobile.handlebars->9->278", - "default.handlebars->25->1127" + "default.handlebars->25->1133" ] }, { @@ -26758,7 +26777,7 @@ "ru": "Неизвестное действие", "zh-chs": "未知動作", "xloc": [ - "default.handlebars->25->1695" + "default.handlebars->25->1701" ] }, { @@ -26775,8 +26794,8 @@ "ru": "Неизвестное устройство", "zh-chs": "未知設備", "xloc": [ - "default.handlebars->25->1519", - "default.handlebars->25->1633" + "default.handlebars->25->1525", + "default.handlebars->25->1639" ] }, { @@ -26793,9 +26812,9 @@ "ru": "Неизвестная группа устройств", "zh-chs": "未知設備組", "xloc": [ - "default.handlebars->25->1513", - "default.handlebars->25->1621", - "default.handlebars->25->1699" + "default.handlebars->25->1519", + "default.handlebars->25->1627", + "default.handlebars->25->1705" ] }, { @@ -26812,7 +26831,7 @@ "ru": "Неизвестная группа", "zh-chs": "未知群組", "xloc": [ - "default.handlebars->25->1691" + "default.handlebars->25->1697" ] }, { @@ -26847,7 +26866,7 @@ "ru": "Неизвестная группа пользователей", "zh-chs": "未知用戶組", "xloc": [ - "default.handlebars->25->1627" + "default.handlebars->25->1633" ] }, { @@ -26898,7 +26917,7 @@ "nl": "Account ontgrendelen", "zh-chs": "解锁帐号", "xloc": [ - "default.handlebars->25->1420" + "default.handlebars->25->1426" ] }, { @@ -26936,7 +26955,7 @@ "ru": "Актуально", "zh-chs": "最新", "xloc": [ - "default.handlebars->25->1756" + "default.handlebars->25->1762" ] }, { @@ -26976,11 +26995,11 @@ "default-mobile.handlebars->9->258", "default-mobile.handlebars->9->276", "default-mobile.handlebars->9->95", - "default.handlebars->25->1368", - "default.handlebars->25->1376", - "default.handlebars->25->738", - "default.handlebars->25->761", - "default.handlebars->25->764", + "default.handlebars->25->1374", + "default.handlebars->25->1382", + "default.handlebars->25->744", + "default.handlebars->25->767", + "default.handlebars->25->770", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -26998,7 +27017,7 @@ "ru": "Загрузить ядро Mesh Agent", "zh-chs": "上傳網格代理核心", "xloc": [ - "default.handlebars->25->843" + "default.handlebars->25->849" ] }, { @@ -27015,7 +27034,7 @@ "ru": "Загрузить файл ядра", "zh-chs": "上載核心文件", "xloc": [ - "default.handlebars->25->840" + "default.handlebars->25->846" ] }, { @@ -27032,7 +27051,7 @@ "ru": "Загрузить ядро по умолчанию с сервера ", "zh-chs": "上載默認服務器核心", "xloc": [ - "default.handlebars->25->837" + "default.handlebars->25->843" ] }, { @@ -27049,7 +27068,7 @@ "ru": "Загрузить ядро восстановления", "zh-chs": "上傳恢復核心", "xloc": [ - "default.handlebars->25->839" + "default.handlebars->25->845" ] }, { @@ -27066,8 +27085,8 @@ "ru": "Загрузка перезапишет 1 файл. Продолжить?", "zh-chs": "上傳將覆蓋1個文件。繼續?", "xloc": [ - "default.handlebars->25->1377", - "default.handlebars->25->762" + "default.handlebars->25->1383", + "default.handlebars->25->768" ] }, { @@ -27084,8 +27103,8 @@ "ru": "Загрузка перезапишет {0} файлов. Продолжить?", "zh-chs": "上傳將覆蓋{0}個文件。繼續?", "xloc": [ - "default.handlebars->25->1378", - "default.handlebars->25->763" + "default.handlebars->25->1384", + "default.handlebars->25->769" ] }, { @@ -27116,7 +27135,7 @@ "ru": "Верхний Сорбский", "zh-chs": "上索布族", "xloc": [ - "default.handlebars->25->1053" + "default.handlebars->25->1059" ] }, { @@ -27133,7 +27152,7 @@ "ru": "Урду", "zh-chs": "烏爾都語", "xloc": [ - "default.handlebars->25->1054" + "default.handlebars->25->1060" ] }, { @@ -27185,8 +27204,8 @@ "ru": "Использовано", "zh-chs": "用過的", "xloc": [ - "default.handlebars->25->1685", - "default.handlebars->25->1687" + "default.handlebars->25->1691", + "default.handlebars->25->1693" ] }, { @@ -27204,10 +27223,10 @@ "zh-chs": "用戶", "xloc": [ "default-mobile.handlebars->9->333", - "default.handlebars->25->1181", - "default.handlebars->25->1404", - "default.handlebars->25->1509", - "default.handlebars->25->1678", + "default.handlebars->25->1187", + "default.handlebars->25->1410", + "default.handlebars->25->1515", + "default.handlebars->25->1684", "default.handlebars->25->193", "default.handlebars->25->563" ] @@ -27226,7 +27245,7 @@ "ru": "Пользователь + Файлы", "zh-chs": "用戶+文件", "xloc": [ - "default.handlebars->25->1405" + "default.handlebars->25->1411" ] }, { @@ -27243,10 +27262,10 @@ "ru": "Импорт учетной записи пользователя", "zh-chs": "用戶帳戶導入", "xloc": [ - "default.handlebars->25->1430", - "default.handlebars->25->1431", - "default.handlebars->25->1433", - "default.handlebars->25->1435" + "default.handlebars->25->1436", + "default.handlebars->25->1437", + "default.handlebars->25->1439", + "default.handlebars->25->1441" ] }, { @@ -27263,7 +27282,7 @@ "ru": "Учетные записи пользователей", "zh-chs": "用戶帳號", "xloc": [ - "default.handlebars->25->1704" + "default.handlebars->25->1710" ] }, { @@ -27281,7 +27300,7 @@ "zh-chs": "用戶授權", "xloc": [ "default-mobile.handlebars->9->286", - "default.handlebars->25->1179", + "default.handlebars->25->1185", "default.handlebars->25->559" ] }, @@ -27299,8 +27318,8 @@ "ru": "Согласие пользователя", "zh-chs": "用戶同意", "xloc": [ - "default.handlebars->25->1149", - "default.handlebars->25->1581", + "default.handlebars->25->1155", + "default.handlebars->25->1587", "default.handlebars->25->509" ] }, @@ -27318,11 +27337,11 @@ "ru": "Группа пользователей", "zh-chs": "用戶組", "xloc": [ - "default.handlebars->25->1237", - "default.handlebars->25->1238", - "default.handlebars->25->1490", - "default.handlebars->25->1629", - "default.handlebars->25->1648", + "default.handlebars->25->1243", + "default.handlebars->25->1244", + "default.handlebars->25->1496", + "default.handlebars->25->1635", + "default.handlebars->25->1654", "default.handlebars->25->562" ] }, @@ -27357,7 +27376,7 @@ "ru": "Членство в группах пользователей", "zh-chs": "用戶組成員資格", "xloc": [ - "default.handlebars->25->1626" + "default.handlebars->25->1632" ] }, { @@ -27374,8 +27393,8 @@ "ru": "Идентификатор пользователя", "zh-chs": "用戶標識", "xloc": [ - "default.handlebars->25->1298", - "default.handlebars->25->1551" + "default.handlebars->25->1304", + "default.handlebars->25->1557" ] }, { @@ -27392,7 +27411,7 @@ "ru": "Экспортировать список пользователей", "zh-chs": "用戶列表導出", "xloc": [ - "default.handlebars->25->1442" + "default.handlebars->25->1448" ] }, { @@ -27409,7 +27428,7 @@ "ru": "Имя пользователя", "zh-chs": "用戶名", "xloc": [ - "default.handlebars->25->1297" + "default.handlebars->25->1303" ] }, { @@ -27426,8 +27445,8 @@ "ru": "Имена пользователей", "zh-chs": "用戶名", "xloc": [ - "default.handlebars->25->1235", - "default.handlebars->25->1538" + "default.handlebars->25->1241", + "default.handlebars->25->1544" ] }, { @@ -27475,7 +27494,7 @@ "ru": "Сессии пользователя", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->25->1721" + "default.handlebars->25->1727" ] }, { @@ -27530,6 +27549,12 @@ "mesh-invite.txt" ] }, + { + "en": "User \\\"{0}\\\"", + "xloc": [ + "default.handlebars->25->687" + ] + }, { "cs": "Převzít z webového prohlížeče", "de": "Browsereinstellung des Benutzers", @@ -27544,8 +27569,8 @@ "ru": "Использовать настройки браузера", "zh-chs": "用戶瀏覽器價值", "xloc": [ - "default.handlebars->25->1064", - "default.handlebars->25->1066" + "default.handlebars->25->1070", + "default.handlebars->25->1072" ] }, { @@ -27602,7 +27627,7 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->222", - "default.handlebars->25->1448", + "default.handlebars->25->1454", "default.handlebars->25->234", "default.handlebars->25->264", "default.handlebars->25->618", @@ -27662,9 +27687,9 @@ "ru": "Пользователи", "zh-chs": "用戶數", "xloc": [ - "default.handlebars->25->1478", - "default.handlebars->25->1501", - "default.handlebars->25->1720", + "default.handlebars->25->1484", + "default.handlebars->25->1507", + "default.handlebars->25->1726", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -27682,7 +27707,7 @@ "ru": "Сессии пользователей", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->25->1708" + "default.handlebars->25->1714" ] }, { @@ -27699,7 +27724,7 @@ "ru": "VT100+ (F10 = ESC+[OY)", "zh-chs": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->25->720" + "default.handlebars->25->726" ] }, { @@ -27716,7 +27741,7 @@ "ru": "Венда", "zh-chs": "文達", "xloc": [ - "default.handlebars->25->1055" + "default.handlebars->25->1061" ] }, { @@ -27733,8 +27758,8 @@ "ru": "Вендор", "zh-chs": "供應商", "xloc": [ - "default.handlebars->25->806", - "default.handlebars->25->809" + "default.handlebars->25->812", + "default.handlebars->25->815" ] }, { @@ -27765,7 +27790,7 @@ "ru": "Проверенный", "zh-chs": "已驗證", "xloc": [ - "default.handlebars->25->1607" + "default.handlebars->25->1613" ] }, { @@ -27792,8 +27817,8 @@ "zh-chs": "验证电话号码", "xloc": [ "default-mobile.handlebars->9->32", - "default.handlebars->25->1413", - "default.handlebars->25->844" + "default.handlebars->25->1419", + "default.handlebars->25->850" ] }, { @@ -27845,10 +27870,10 @@ "ru": "Версия", "zh-chs": "版", "xloc": [ - "default.handlebars->25->769", - "default.handlebars->25->790", - "default.handlebars->25->807", - "default.handlebars->25->812", + "default.handlebars->25->775", + "default.handlebars->25->796", + "default.handlebars->25->813", + "default.handlebars->25->818", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -27865,7 +27890,7 @@ "ru": "Версия несовместима, пожалуйста, сначала обновите установку MeshCentral", "zh-chs": "版本不兼容,请先升级您的MeshCentral安装", "xloc": [ - "default.handlebars->25->1752" + "default.handlebars->25->1758" ] }, { @@ -27900,7 +27925,7 @@ "ru": "Вьетнамский", "zh-chs": "越南文", "xloc": [ - "default.handlebars->25->1056" + "default.handlebars->25->1062" ] }, { @@ -27933,8 +27958,8 @@ "ru": "Просмотр журнала изменений", "zh-chs": "查看变更日志", "xloc": [ - "default.handlebars->25->1755", - "default.handlebars->25->1757" + "default.handlebars->25->1761", + "default.handlebars->25->1763" ] }, { @@ -27968,7 +27993,7 @@ "ru": "Посмотреть примечания этой группы устройств", "zh-chs": "查看有關此設備組的註釋", "xloc": [ - "default.handlebars->25->1164" + "default.handlebars->25->1170" ] }, { @@ -27985,7 +28010,7 @@ "ru": "Посмотреть примечания об этом пользователе", "zh-chs": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->25->1589" + "default.handlebars->25->1595" ] }, { @@ -28002,7 +28027,7 @@ "ru": "Волапукский", "zh-chs": "沃拉普克", "xloc": [ - "default.handlebars->25->1057" + "default.handlebars->25->1063" ] }, { @@ -28085,8 +28110,8 @@ "xloc": [ "default-mobile.handlebars->9->309", "default-mobile.handlebars->9->322", - "default.handlebars->25->1257", - "default.handlebars->25->1285" + "default.handlebars->25->1263", + "default.handlebars->25->1291" ] }, { @@ -28138,7 +28163,7 @@ "ru": "Валлонский", "zh-chs": "瓦隆", "xloc": [ - "default.handlebars->25->1058" + "default.handlebars->25->1064" ] }, { @@ -28155,7 +28180,7 @@ "ru": "Слабый", "zh-chs": "弱", "xloc": [ - "default.handlebars->25->1111" + "default.handlebars->25->1117" ] }, { @@ -28192,8 +28217,8 @@ "ru": "Веб-сервер", "zh-chs": "網絡服務器", "xloc": [ - "default.handlebars->25->1741", - "default.handlebars->25->1742" + "default.handlebars->25->1747", + "default.handlebars->25->1748" ] }, { @@ -28210,7 +28235,7 @@ "ru": "Запросы веб-сервера", "zh-chs": "Web服務器請求", "xloc": [ - "default.handlebars->25->1743" + "default.handlebars->25->1749" ] }, { @@ -28227,7 +28252,7 @@ "ru": "Ретранслятор Web Socket", "zh-chs": "Web套接字中繼", "xloc": [ - "default.handlebars->25->1744" + "default.handlebars->25->1750" ] }, { @@ -28280,7 +28305,7 @@ "ru": "Уэльский", "zh-chs": "威爾士語", "xloc": [ - "default.handlebars->25->1059" + "default.handlebars->25->1065" ] }, { @@ -28297,7 +28322,7 @@ "ru": "Когда этот параметр включен, коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->25->1306" + "default.handlebars->25->1312" ] }, { @@ -28315,7 +28340,7 @@ "zh-chs": "啟用後,每次登錄時,您都可以選擇向電子郵件帳戶接收登錄令牌,以提高安全性。", "xloc": [ "default-mobile.handlebars->9->38", - "default.handlebars->25->851" + "default.handlebars->25->857" ] }, { @@ -28332,7 +28357,7 @@ "ru": "Будет изменено при следующем входе в систему.", "zh-chs": "下次登錄時將更改。", "xloc": [ - "default.handlebars->25->1561" + "default.handlebars->25->1567" ] }, { @@ -28805,7 +28830,7 @@ "ru": "Перенос строк: ВЫКЛ", "zh-chs": "包裝:關閉", "xloc": [ - "default.handlebars->25->756" + "default.handlebars->25->762" ] }, { @@ -28822,7 +28847,7 @@ "ru": "Перенос строк: ВКЛ", "zh-chs": "包裝:開", "xloc": [ - "default.handlebars->25->755" + "default.handlebars->25->761" ] }, { @@ -28908,7 +28933,7 @@ "ru": "Кос", "zh-chs": "科薩", "xloc": [ - "default.handlebars->25->1060" + "default.handlebars->25->1066" ] }, { @@ -28925,7 +28950,7 @@ "ru": "Идиш", "zh-chs": "意第緒語", "xloc": [ - "default.handlebars->25->1061" + "default.handlebars->25->1067" ] }, { @@ -29009,7 +29034,7 @@ "ru": "YubiKey™ OTP", "zh-chs": "YubiKey™ OTP", "xloc": [ - "default.handlebars->25->863" + "default.handlebars->25->869" ] }, { @@ -29079,7 +29104,7 @@ "ru": "Зулусский", "zh-chs": "祖魯族", "xloc": [ - "default.handlebars->25->1062" + "default.handlebars->25->1068" ] }, { @@ -29292,7 +29317,7 @@ "ru": "\\\\'", "zh-chs": "\\\\'", "xloc": [ - "default.handlebars->25->1753" + "default.handlebars->25->1759" ] }, { @@ -29429,7 +29454,7 @@ "ru": "console.txt", "zh-chs": "console.txt", "xloc": [ - "default.handlebars->25->834" + "default.handlebars->25->840" ] }, { @@ -29447,7 +29472,7 @@ "zh-chs": "複製", "xloc": [ "default-mobile.handlebars->9->99", - "default.handlebars->25->1373" + "default.handlebars->25->1379" ] }, { @@ -29514,8 +29539,8 @@ "ru": "eventslist.csv", "zh-chs": "eventslist.csv", "xloc": [ - "default.handlebars->25->1382", - "default.handlebars->25->1387" + "default.handlebars->25->1388", + "default.handlebars->25->1393" ] }, { @@ -29532,8 +29557,8 @@ "ru": "eventslist.json", "zh-chs": "eventslist.json", "xloc": [ - "default.handlebars->25->1384", - "default.handlebars->25->1388" + "default.handlebars->25->1390", + "default.handlebars->25->1394" ] }, { @@ -29567,7 +29592,7 @@ "ru": "свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->25->1716" + "default.handlebars->25->1722" ] }, { @@ -29748,7 +29773,7 @@ "ru": "id, name, email, creation, lastlogin, groups, authfactors", "zh-chs": "id,名稱,電子郵件,創建,lastlogin,組,authfactors", "xloc": [ - "default.handlebars->25->1443" + "default.handlebars->25->1449" ] }, { @@ -29847,7 +29872,7 @@ "ru": "k max, пусто по умолчанию", "zh-chs": "k max,默认为空白", "xloc": [ - "default.handlebars->25->1464" + "default.handlebars->25->1470" ] }, { @@ -29883,7 +29908,7 @@ "zh-chs": "移動", "xloc": [ "default-mobile.handlebars->9->100", - "default.handlebars->25->1374" + "default.handlebars->25->1380" ] }, { @@ -29914,7 +29939,7 @@ "ru": "servererrors.txt", "zh-chs": "servererrors.txt", "xloc": [ - "default.handlebars->25->1124" + "default.handlebars->25->1130" ] }, { @@ -29931,7 +29956,7 @@ "ru": "servertrace.csv", "zh-chs": "servertrace.csv", "xloc": [ - "default.handlebars->25->1751" + "default.handlebars->25->1757" ] }, { @@ -29984,7 +30009,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->25->1729" + "default.handlebars->25->1735" ] }, { @@ -30001,7 +30026,7 @@ "ru": "time, source, message", "zh-chs": "時間,來源,訊息", "xloc": [ - "default.handlebars->25->1750" + "default.handlebars->25->1756" ] }, { @@ -30032,7 +30057,7 @@ "ru": "всего", "zh-chs": "總", "xloc": [ - "default.handlebars->25->1717" + "default.handlebars->25->1723" ] }, { @@ -30099,8 +30124,8 @@ "ru": "userlist.csv", "zh-chs": "userlist.csv", "xloc": [ - "default.handlebars->25->1439", - "default.handlebars->25->1444" + "default.handlebars->25->1445", + "default.handlebars->25->1450" ] }, { @@ -30117,8 +30142,8 @@ "ru": "userlist.json", "zh-chs": "userlist.json", "xloc": [ - "default.handlebars->25->1441", - "default.handlebars->25->1445" + "default.handlebars->25->1447", + "default.handlebars->25->1451" ] }, { @@ -30135,7 +30160,7 @@ "ru": "utc, время, тип, действие, пользователь, устройство, сообщение", "zh-chs": "utc,時間,類型,操作,用戶,設備,消息", "xloc": [ - "default.handlebars->25->1386" + "default.handlebars->25->1392" ] }, { @@ -30169,7 +30194,7 @@ "ru": "{0} Гб", "zh-chs": "{0} Gb", "xloc": [ - "default.handlebars->25->1353" + "default.handlebars->25->1359" ] }, { @@ -30186,8 +30211,8 @@ "ru": "{0} Kб", "zh-chs": "{0} Kb", "xloc": [ - "default.handlebars->25->1351", - "default.handlebars->25->1657" + "default.handlebars->25->1357", + "default.handlebars->25->1663" ] }, { @@ -30204,8 +30229,8 @@ "ru": "{0} Mб", "zh-chs": "{0} Mb", "xloc": [ - "default.handlebars->25->1352", - "default.handlebars->25->823" + "default.handlebars->25->1358", + "default.handlebars->25->829" ] }, { @@ -30222,7 +30247,7 @@ "ru": "{0} Мб, {1} Мгц", "zh-chs": "{0} Mb,{1} Mhz", "xloc": [ - "default.handlebars->25->818" + "default.handlebars->25->824" ] }, { @@ -30239,7 +30264,7 @@ "ru": "{0} активных сессий", "zh-chs": "{0}個活動會話", "xloc": [ - "default.handlebars->25->1599" + "default.handlebars->25->1605" ] }, { @@ -30256,7 +30281,7 @@ "ru": "{0} байт", "zh-chs": "{0} b", "xloc": [ - "default.handlebars->25->1350" + "default.handlebars->25->1356" ] }, { @@ -30274,8 +30299,8 @@ "zh-chs": "{0}個字節", "xloc": [ "default-mobile.handlebars->9->88", - "default.handlebars->25->1361", - "default.handlebars->25->1672" + "default.handlebars->25->1367", + "default.handlebars->25->1678" ] }, { @@ -30292,7 +30317,13 @@ "ru": "{0} байт осталось", "zh-chs": "剩餘{0}個字節", "xloc": [ - "default.handlebars->25->1345" + "default.handlebars->25->1351" + ] + }, + { + "en": "{0} connections", + "xloc": [ + "default.handlebars->25->686" ] }, { @@ -30309,7 +30340,7 @@ "ru": "{0} гигабайт осталось", "zh-chs": "剩餘{0} GB", "xloc": [ - "default.handlebars->25->1348" + "default.handlebars->25->1354" ] }, { @@ -30326,7 +30357,7 @@ "ru": "{0} групп", "zh-chs": "{0}個群組", "xloc": [ - "default.handlebars->25->1566" + "default.handlebars->25->1572" ] }, { @@ -30374,7 +30405,7 @@ "ru": "{0} килобайт осталось", "zh-chs": "剩餘{0}千字節", "xloc": [ - "default.handlebars->25->1346" + "default.handlebars->25->1352" ] }, { @@ -30409,7 +30440,7 @@ "ru": "{0} мегабайт осталось", "zh-chs": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->25->1347" + "default.handlebars->25->1353" ] }, { @@ -30443,7 +30474,7 @@ "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей...", "zh-chs": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->25->1396" + "default.handlebars->25->1402" ] }, { @@ -30575,7 +30606,7 @@ "ru": "{0} сессий", "zh-chs": "{0}個會話", "xloc": [ - "default.handlebars->25->1400" + "default.handlebars->25->1406" ] }, { @@ -30695,7 +30726,7 @@ "ru": "{0}k в 1 файле. {1}k максимум", "zh-chs": "{0} k合1檔案。最多{1} k", "xloc": [ - "default.handlebars->25->1355" + "default.handlebars->25->1361" ] }, { @@ -30712,7 +30743,7 @@ "ru": "{0}k в {1} файлах. {2}k максимум", "zh-chs": "{1}個文件中有{0}個。最多{2} k", "xloc": [ - "default.handlebars->25->1354" + "default.handlebars->25->1360" ] }, { @@ -30890,4 +30921,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/views/default.handlebars b/views/default.handlebars index 7189e25e..5b56c66a 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -530,7 +530,7 @@     -  Disconnected +  Disconnected
@@ -5803,6 +5803,7 @@ desktop = xdesk; if (desktop.m.SendCompressionLevel) { desktop.m.SendCompressionLevel(1, desktopsettings.quality, desktopsettings.scaling, desktopsettings.framerate); } desktop.onStateChanged = onDesktopStateChange; + desktop.onMetadataChange = function(metadata) { updateMetadata(desktop, 'deskmetadata'); } desktopNode = currentNode; onDesktopStateChange(desktop, desktop.State); delete multiDesktop[currentNode._id]; @@ -5818,6 +5819,7 @@ desktopNode = currentNode; updateDesktopButtons(); deskAdjust(); + updateMetadata(desktop, 'deskmetadata'); } // Show and enable the right buttons @@ -6005,6 +6007,7 @@ p11clearConsoleMsg(); } } + desktop.onMetadataChange = function(metadata) { updateMetadata(desktop, 'deskmetadata'); } desktop.m.CompressionLevel = desktopsettings.quality; // Number from 1 to 100. 50 or less is best. desktop.m.ScalingLevel = desktopsettings.scaling; if (desktopsettings.framerate) { desktop.m.FrameRateTimer = desktopsettings.framerate; } @@ -6026,6 +6029,36 @@ } } + function updateMetadata(conn, elementid) { + var str = '', viewerCount = 0; + if (conn && (conn.State == 3)) { + if (conn.metadata && conn.metadata.users) { for (var i in conn.metadata.users) { viewerCount++; } } + if (viewerCount > 1) { str = '' + format(", {0} watching", viewerCount) + ''; } + } + QH('deskmetadata', str); + if ((conn == desktop) && (xxdialogTag == ('sessionMetadata1'))) { showSessionMetadata(1); } + } + + function showSessionMetadata(cid) { + if (xxdialogMode && (xxdialogTag != ('sessionMetadata' + cid))) return; + if (xxdialogMode) { setDialogMode(0); } + var conn = null; + if (cid == 1) { conn = desktop; } + if (conn && conn.metadata) { + var x = ''; + if (conn.metadata.startTime) { x += addHtmlValue4("Start Time", printDateTime(new Date(conn.metadata.startTime))); } + if (conn.metadata.users) { + for (var i in conn.metadata.users) { + var val = (conn.metadata.users[i] == 1)?"1 connection":format("{0} connections", conn.metadata.users[i]); + var username = i.split('/')[2]; + if ((users != null) && (users[i] != null)) { username = users[i].name; } + x += addHtmlValue4(format("User \"{0}\"", username), val); + } + } + setDialogMode(2, "Session Information", 1, null, x, 'sessionMetadata' + cid); + } + } + function p11clearConsoleMsg() { QH('p11DeskConsoleMsg', ''); QV('p11DeskConsoleMsg', false); if (p11DeskConsoleMsgTimer) { clearTimeout(p11DeskConsoleMsgTimer); p11DeskConsoleMsgTimer = null; } } function p12clearConsoleMsg() { QH('p12TermConsoleMsg', ''); QV('p12TermConsoleMsg', false); if (p12TermConsoleMsgTimer) { clearTimeout(p12TermConsoleMsgTimer); p12TermConsoleMsgTimer = null; } } function p13clearConsoleMsg() { QH('p13FilesConsoleMsg', ''); QV('p13FilesConsoleMsg', false); if (p13FilesConsoleMsgTimer) { clearTimeout(p13FilesConsoleMsgTimer); p13FilesConsoleMsgTimer = null; } } @@ -6090,6 +6123,7 @@ updateDesktopButtons(); deskAdjust(); setTimeout(deskAdjust, 50); + updateMetadata(desktop, 'deskmetadata'); } function updateSessionTime() {