From edaaf5cf0f9704450064d5d8bae970c1d8625b35 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Mon, 27 Jan 2020 15:26:13 -0800 Subject: [PATCH] Improved usersessions and added closeusersessions server console commands. --- meshuser.js | 56 +- package.json | 2 +- translate/translate.json | 2934 +++++++++++++++++++------------------- views/xterm.handlebars | 2 +- 4 files changed, 1524 insertions(+), 1470 deletions(-) diff --git a/meshuser.js b/meshuser.js index 5812de82..ffd8ae7c 100644 --- a/meshuser.js +++ b/meshuser.js @@ -685,7 +685,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use switch (cmd) { case 'help': { - var fin = '', f = '', availcommands = 'help,info,versions,args,resetserver,showconfig,usersessions,tasklimiter,setmaxtasks,cores,migrationagents,agentstats,webstats,mpsstats,swarmstats,acceleratorsstats,updatecheck,serverupdate,nodeconfig,heapdump,relays,autobackup,backupconfig,dupagents,dispatchtable,badlogins,showpaths'; + var fin = '', f = '', availcommands = 'help,info,versions,args,resetserver,showconfig,usersessions,closeusersessions,tasklimiter,setmaxtasks,cores,migrationagents,agentstats,webstats,mpsstats,swarmstats,acceleratorsstats,updatecheck,serverupdate,nodeconfig,heapdump,relays,autobackup,backupconfig,dupagents,dispatchtable,badlogins,showpaths'; availcommands = availcommands.split(',').sort(); while (availcommands.length > 0) { if (f.length > 80) { fin += (f + ',\r\n'); f = ''; } @@ -808,18 +808,48 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use break; } case 'usersessions': { + var userSessionCount = 0; + var filter = null; + var arg = cmdargs['_'][0]; + if (typeof arg == 'string') { if (arg.indexOf('/') >= 0) { filter = arg; } else { filter = ('user/' + domain.id + '/' + arg); } } for (var i in parent.wssessions) { - r += (i + ', ' + parent.wssessions[i].length + ' session' + ((parent.wssessions[i].length > 1) ? 'a' : '') + '.
'); - for (var j in parent.wssessions[i]) { - var addr = parent.wssessions[i][j]._socket.remoteAddress; - if (addr.startsWith('::ffff:')) { addr = addr.substring(7); } - r += ' ' + addr + ' --> ' + parent.wssessions[i][j].sessionId + '.
'; + if ((filter == null) || (filter == i)) { + userSessionCount++; + r += (i + ', ' + parent.wssessions[i].length + ' session' + ((parent.wssessions[i].length > 1) ? 's' : '') + '.\r\n'); + for (var j in parent.wssessions[i]) { + var addr = parent.wssessions[i][j]._socket.remoteAddress; + if (addr.startsWith('::ffff:')) { addr = addr.substring(7); } + r += ' ' + addr + ' --> ' + parent.wssessions[i][j].sessionId + '\r\n'; + } } } + if (userSessionCount == 0) { r = 'None.'; } + break; + } + case 'closeusersessions': { + var userSessionCount = 0; + var filter = null; + var arg = cmdargs['_'][0]; + if (typeof arg == 'string') { if (arg.indexOf('/') >= 0) { filter = arg; } else { filter = ('user/' + domain.id + '/' + arg); } } + if (filter == null) { + r += "Usage: closeusersessions "; + } else { + r += "Closing user sessions for: " + filter + '\r\n'; + for (var i in parent.wssessions) { + if (filter == i) { + userSessionCount++; + for (var j in parent.wssessions[i]) { + parent.wssessions[i][j].send(JSON.stringify({ action: 'stopped', msg: "Administrator forced disconnection" })); + parent.wssessions[i][j].close(); + } + } + } + if (userSessionCount < 2) { r += 'Disconnected ' + userSessionCount + ' session.'; } else { r += 'Disconnected ' + userSessionCount + ' sessions.'; }; + } break; } case 'resetserver': { - console.log('Server restart...'); + console.log("Server restart..."); process.exit(0); break; } @@ -827,12 +857,12 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use if (parent.parent.taskLimiter != null) { //var obj = { maxTasks: maxTasks, maxTaskTime: (maxTaskTime * 1000), nextTaskId: 0, currentCount: 0, current: {}, pending: [[], [], []], timer: null }; const tl = parent.parent.taskLimiter; - r += 'MaxTasks: ' + tl.maxTasks + ', NextTaskId: ' + tl.nextTaskId + '
'; - r += 'MaxTaskTime: ' + (tl.maxTaskTime / 1000) + ' seconds, Timer: ' + (tl.timer != null) + '
'; + r += 'MaxTasks: ' + tl.maxTasks + ', NextTaskId: ' + tl.nextTaskId + '\r\n'; + r += 'MaxTaskTime: ' + (tl.maxTaskTime / 1000) + ' seconds, Timer: ' + (tl.timer != null) + '\r\n'; var c = []; for (var i in tl.current) { c.push(i); } - r += 'Current (' + tl.currentCount + '): [' + c.join(', ') + ']
'; - r += 'Pending (High/Med/Low): ' + tl.pending[0].length + ', ' + tl.pending[1].length + ', ' + tl.pending[2].length + '
'; + r += 'Current (' + tl.currentCount + '): [' + c.join(', ') + ']\r\n'; + r += 'Pending (High/Med/Low): ' + tl.pending[0].length + ', ' + tl.pending[1].length + ', ' + tl.pending[2].length + '\r\n'; } break; } @@ -846,7 +876,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use break; } case 'cores': { - if (parent.parent.defaultMeshCores != null) { for (var i in parent.parent.defaultMeshCores) { r += i + ': ' + parent.parent.defaultMeshCores[i].length + ' bytes
'; } } + if (parent.parent.defaultMeshCores != null) { for (var i in parent.parent.defaultMeshCores) { r += i + ': ' + parent.parent.defaultMeshCores[i].length + ' bytes\r\n'; } } break; } case 'showpaths': { @@ -924,7 +954,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use r += 'id: ' + i + ', state: ' + parent.wsrelays[i].state; if (parent.wsrelays[i].peer1 != null) { r += ', peer1: ' + cleanRemoteAddr(parent.wsrelays[i].peer1.req.ip); } if (parent.wsrelays[i].peer2 != null) { r += ', peer2: ' + cleanRemoteAddr(parent.wsrelays[i].peer2.req.ip); } - r += '
'; + r += '\r\n'; } if (r == '') { r = 'No relays.'; } break; diff --git a/package.json b/package.json index 61745318..7e5eb30c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "meshcentral", - "version": "0.4.7-z", + "version": "0.4.8-a", "keywords": [ "Remote Management", "Intel AMT", diff --git a/translate/translate.json b/translate/translate.json index 4096e3f7..0efe9bb6 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -10,8 +10,8 @@ "pt": " + CIRA", "ru": " + CIRA", "xloc": [ - "default.handlebars->23->1001", - "default.handlebars->23->999" + "default.handlebars->25->1002", + "default.handlebars->25->1004" ] }, { @@ -21,7 +21,7 @@ "nl": " - Herstart in {0} dag.", "xloc": [ "default-mobile.handlebars->9->15", - "default.handlebars->23->57" + "default.handlebars->25->57" ] }, { @@ -31,7 +31,7 @@ "nl": " - Herstart in 1 uur.", "xloc": [ "default-mobile.handlebars->9->13", - "default.handlebars->23->55" + "default.handlebars->25->55" ] }, { @@ -41,7 +41,7 @@ "nl": " - Herstart in {0} days.", "xloc": [ "default-mobile.handlebars->9->11", - "default.handlebars->23->53" + "default.handlebars->25->53" ] }, { @@ -51,7 +51,7 @@ "nl": " - Herstart in {0} dagen.", "xloc": [ "default-mobile.handlebars->9->16", - "default.handlebars->23->58" + "default.handlebars->25->58" ] }, { @@ -71,7 +71,7 @@ "nl": " - Herstart in {0} uren.", "xloc": [ "default-mobile.handlebars->9->14", - "default.handlebars->23->56" + "default.handlebars->25->56" ] }, { @@ -91,7 +91,7 @@ "nl": " - Herstart in {0} minuten.", "xloc": [ "default-mobile.handlebars->9->12", - "default.handlebars->23->54" + "default.handlebars->25->54" ] }, { @@ -116,8 +116,8 @@ "xloc": [ "default-mobile.handlebars->9->10", "default-mobile.handlebars->9->9", - "default.handlebars->23->51", - "default.handlebars->23->52" + "default.handlebars->25->51", + "default.handlebars->25->52" ] }, { @@ -155,7 +155,7 @@ "pt": " Dica de senha pode ser usada, mas não é recomendada.", "ru": "Может быть использована подсказка пароля, но не рекоммендуется.", "xloc": [ - "default.handlebars->23->931" + "default.handlebars->25->934" ] }, { @@ -168,8 +168,8 @@ "pt": " Os usuários precisam fazer login neste servidor uma vez antes de poderem ser adicionados a um grupo de dispositivos.", "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хоть один раз.", "xloc": [ - "default.handlebars->23->1074", - "default.handlebars->23->1304" + "default.handlebars->25->1077", + "default.handlebars->25->1307" ] }, { @@ -182,7 +182,7 @@ "pt": " e autenticar no servidor usando esse nome de usuário e qualquer senha.", "ru": " и разрешить серверу использовать это имя и любой пароль", "xloc": [ - "default.handlebars->23->267" + "default.handlebars->25->267" ] }, { @@ -195,7 +195,7 @@ "pt": " e autenticar no servidor usando esse nome de usuário e senha.", "ru": " и разрешить серверу использовать это имя и пароль", "xloc": [ - "default.handlebars->23->266" + "default.handlebars->25->266" ] }, { @@ -234,7 +234,7 @@ "pt": " com TLS.", "ru": " с TLS.", "xloc": [ - "default.handlebars->23->164" + "default.handlebars->25->164" ] }, { @@ -247,7 +247,7 @@ "pt": " sem TLS.", "ru": " без TLS", "xloc": [ - "default.handlebars->23->165" + "default.handlebars->25->165" ] }, { @@ -272,7 +272,7 @@ "pt": "(opcional)", "ru": "(необязательно)", "xloc": [ - "default.handlebars->23->303" + "default.handlebars->25->303" ] }, { @@ -297,7 +297,7 @@ "pt": "* Para o BSD, execute \\\"pkg install wget sudo bash\\\".", "ru": "* Для BSD, сначала запустите \\\"pkg install wget sudo bash\\\".", "xloc": [ - "default.handlebars->23->334" + "default.handlebars->25->334" ] }, { @@ -309,7 +309,7 @@ "pt": "* Deixe em branco para atribuir uma senha aleatória a cada dispositivo.", "ru": "* Для установления случайного пароля каждому устройству - оставьте пустым.", "xloc": [ - "default.handlebars->23->1049" + "default.handlebars->25->1052" ] }, { @@ -335,7 +335,7 @@ "ru": ", ", "xloc": [ "default-mobile.handlebars->9->330", - "default.handlebars->23->1125" + "default.handlebars->25->1128" ] }, { @@ -348,7 +348,7 @@ "ru": ", только для Intel® AMT", "xloc": [ "default-mobile.handlebars->9->92", - "default.handlebars->23->180" + "default.handlebars->25->180" ] }, { @@ -360,7 +360,7 @@ "pt": ", O MQTT está online", "ru": ", MQTT онлайн", "xloc": [ - "default.handlebars->23->684" + "default.handlebars->25->687" ] }, { @@ -372,7 +372,7 @@ "pt": ", Soft-KVM", "ru": ", Soft-KVM", "xloc": [ - "default.handlebars->23->596" + "default.handlebars->25->599" ] }, { @@ -386,9 +386,9 @@ "xloc": [ "default-mobile.handlebars->9->228", "default-mobile.handlebars->9->238", - "default.handlebars->23->597", - "default.handlebars->23->627", - "default.handlebars->23->639", + "default.handlebars->25->600", + "default.handlebars->25->630", + "default.handlebars->25->642", "xterm.handlebars->9->6" ] }, @@ -474,9 +474,9 @@ "xloc": [ "default-mobile.handlebars->9->243", "default-mobile.handlebars->9->67", - "default.handlebars->23->1147", - "default.handlebars->23->1380", - "default.handlebars->23->641" + "default.handlebars->25->1150", + "default.handlebars->25->1383", + "default.handlebars->25->644" ] }, { @@ -514,7 +514,7 @@ "pt": "1 sessão ativa", "ru": "1 активная сессия", "xloc": [ - "default.handlebars->23->1344" + "default.handlebars->25->1347" ] }, { @@ -529,7 +529,7 @@ "xloc": [ "default-mobile.handlebars->9->334", "default-mobile.handlebars->9->77", - "default.handlebars->23->1164" + "default.handlebars->25->1167" ] }, { @@ -542,9 +542,9 @@ "pt": "1 dia", "ru": "1 день", "xloc": [ - "default.handlebars->23->170", - "default.handlebars->23->294", - "default.handlebars->23->308" + "default.handlebars->25->170", + "default.handlebars->25->294", + "default.handlebars->25->308" ] }, { @@ -557,7 +557,7 @@ "pt": "1 grupo", "ru": "1 группа", "xloc": [ - "default.handlebars->23->1328" + "default.handlebars->25->1331" ] }, { @@ -570,9 +570,9 @@ "pt": "1 hora", "ru": "1 час", "xloc": [ - "default.handlebars->23->168", - "default.handlebars->23->292", - "default.handlebars->23->306" + "default.handlebars->25->168", + "default.handlebars->25->292", + "default.handlebars->25->306" ] }, { @@ -581,7 +581,7 @@ "en": "1 minute until disconnect", "nl": "1 minuut totdat de verbinding wordt verbroken", "xloc": [ - "default.handlebars->23->61" + "default.handlebars->25->61" ] }, { @@ -594,9 +594,9 @@ "pt": "1 mês", "ru": "1 месяц", "xloc": [ - "default.handlebars->23->172", - "default.handlebars->23->296", - "default.handlebars->23->310" + "default.handlebars->25->172", + "default.handlebars->25->296", + "default.handlebars->25->310" ] }, { @@ -608,7 +608,7 @@ "pt": "Mais 1 usuário não mostrado, use a caixa de pesquisa para procurar usuários...", "ru": "Еще 1 пользователь не показан, используйте \\\"Поиск\\\" чтобы найти пользователей...", "xloc": [ - "default.handlebars->23->1199" + "default.handlebars->25->1202" ] }, { @@ -621,7 +621,7 @@ "pt": "1 nó", "ru": "1 устройство", "xloc": [ - "default.handlebars->23->347" + "default.handlebars->25->347" ] }, { @@ -630,7 +630,7 @@ "en": "1 second until disconnect", "nl": "1 seconde totdat de verbinding wordt verbroken", "xloc": [ - "default.handlebars->23->59" + "default.handlebars->25->59" ] }, { @@ -643,7 +643,7 @@ "pt": "1 sessão", "ru": "1 сессия", "xloc": [ - "default.handlebars->23->1203" + "default.handlebars->25->1206" ] }, { @@ -656,9 +656,9 @@ "pt": "1 semana", "ru": "1 неделя", "xloc": [ - "default.handlebars->23->171", - "default.handlebars->23->295", - "default.handlebars->23->309" + "default.handlebars->25->171", + "default.handlebars->25->295", + "default.handlebars->25->309" ] }, { @@ -773,7 +773,7 @@ "pt": "Falha na ativação do login em duas etapas.", "ru": "Активация двухэтапного входа не удалась.", "xloc": [ - "default.handlebars->23->125" + "default.handlebars->25->125" ] }, { @@ -785,7 +785,7 @@ "pt": "A remoção da ativação do login em duas etapas falhou.", "ru": "Удаление активации двуэтапного входа не удалась.", "xloc": [ - "default.handlebars->23->130" + "default.handlebars->25->130" ] }, { @@ -836,7 +836,7 @@ "pt": "Autenticação de segundo fator ativada", "ru": "двухфакторная аутентификация включена", "xloc": [ - "default.handlebars->23->1337" + "default.handlebars->25->1340" ] }, { @@ -909,8 +909,8 @@ "pt": "Versão de 32 bits do MeshAgent", "ru": "32-разрядная версия MeshAgent-а", "xloc": [ - "default.handlebars->23->326", - "default.handlebars->23->340" + "default.handlebars->25->326", + "default.handlebars->25->340" ] }, { @@ -1057,8 +1057,8 @@ "pt": "Versão de 64 bits do MeshAgent", "ru": "64-разрядная версия MeshAgent-а", "xloc": [ - "default.handlebars->23->329", - "default.handlebars->23->343" + "default.handlebars->25->329", + "default.handlebars->25->343" ] }, { @@ -1076,7 +1076,7 @@ "pt": "Estado de energia de 7 dias", "ru": "7-дневная статистика работы", "xloc": [ - "default.handlebars->23->536" + "default.handlebars->25->539" ] }, { @@ -1114,8 +1114,8 @@ "pt": "8 horas", "ru": "8 часов", "xloc": [ - "default.handlebars->23->293", - "default.handlebars->23->307" + "default.handlebars->25->293", + "default.handlebars->25->307" ] }, { @@ -1164,7 +1164,7 @@ "pt": "Chaves Hardware são usados como autenticação de login secundária.", "ru": "Аппаратные ключи используются в качестве дополнительной аутентификации.", "xloc": [ - "default.handlebars->23->139" + "default.handlebars->25->139" ] }, { @@ -1225,7 +1225,7 @@ "ru": "ACM", "xloc": [ "default-mobile.handlebars->9->182", - "default.handlebars->23->452" + "default.handlebars->25->455" ] }, { @@ -1237,8 +1237,8 @@ "pt": "AMT", "ru": "AMT", "xloc": [ - "default.handlebars->23->188", - "default.handlebars->23->375" + "default.handlebars->25->188", + "default.handlebars->25->375" ] }, { @@ -1251,7 +1251,7 @@ "ru": "ARM-Linaro", "xloc": [ "default-mobile.handlebars->9->167", - "default.handlebars->23->37" + "default.handlebars->25->37" ] }, { @@ -1264,7 +1264,7 @@ "ru": "ARMv6l / ARMv7l", "xloc": [ "default-mobile.handlebars->9->168", - "default.handlebars->23->38" + "default.handlebars->25->38" ] }, { @@ -1277,7 +1277,7 @@ "ru": "ARMv6l / ARMv7l / NoKVM", "xloc": [ "default-mobile.handlebars->9->170", - "default.handlebars->23->40" + "default.handlebars->25->40" ] }, { @@ -1290,7 +1290,7 @@ "ru": "ARMv8 64-разрадная", "xloc": [ "default-mobile.handlebars->9->169", - "default.handlebars->23->39" + "default.handlebars->25->39" ] }, { @@ -1303,7 +1303,7 @@ "pt": "Acesso Negado", "ru": "Отказано в доступе", "xloc": [ - "default.handlebars->23->685" + "default.handlebars->25->688" ] }, { @@ -1327,7 +1327,7 @@ "pt": "Acesso aos arquivos do servidor", "ru": "Доступ в файлам сервера", "xloc": [ - "default.handlebars->23->1309" + "default.handlebars->25->1312" ] }, { @@ -1382,10 +1382,10 @@ "default-mobile.handlebars->9->52", "default-mobile.handlebars->9->54", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0", - "default.handlebars->23->425", - "default.handlebars->23->427", - "default.handlebars->23->940", - "default.handlebars->23->942" + "default.handlebars->25->428", + "default.handlebars->25->430", + "default.handlebars->25->943", + "default.handlebars->25->945" ] }, { @@ -1457,15 +1457,15 @@ "pt": "Ação", "ru": "Действиe", "xloc": [ - "default.handlebars->23->690", + "default.handlebars->25->693", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, { "en": "Action File", "xloc": [ - "default.handlebars->23->576", - "default.handlebars->23->578" + "default.handlebars->25->579", + "default.handlebars->25->581" ] }, { @@ -1479,7 +1479,7 @@ "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1", - "default.handlebars->23->484", + "default.handlebars->25->487", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -1523,8 +1523,8 @@ "xloc": [ "default-mobile.handlebars->9->177", "default-mobile.handlebars->9->179", - "default.handlebars->23->445", - "default.handlebars->23->447" + "default.handlebars->25->448", + "default.handlebars->25->450" ] }, { @@ -1536,10 +1536,10 @@ "pt": "Ativação", "ru": "Активация", "xloc": [ - "default.handlebars->23->1012", - "default.handlebars->23->1014", - "default.handlebars->23->230", - "default.handlebars->23->232" + "default.handlebars->25->1015", + "default.handlebars->25->1017", + "default.handlebars->25->230", + "default.handlebars->25->232" ] }, { @@ -1551,7 +1551,7 @@ "pt": "Usuário ativo {0}", "ru": "Активный ползьзователь{0}", "xloc": [ - "default.handlebars->23->471" + "default.handlebars->25->474" ] }, { @@ -1564,7 +1564,7 @@ "pt": "Adicionar agente", "ru": "Добавить агент", "xloc": [ - "default.handlebars->23->234" + "default.handlebars->25->234" ] }, { @@ -1577,7 +1577,7 @@ "pt": "Adicionar CIRA", "ru": "Добавить CIRA", "xloc": [ - "default.handlebars->23->224" + "default.handlebars->25->224" ] }, { @@ -1590,7 +1590,7 @@ "pt": "Adicionar evento do dispositivo", "ru": "Добавить событие к устройству", "xloc": [ - "default.handlebars->23->519" + "default.handlebars->25->522" ] }, { @@ -1603,11 +1603,11 @@ "pt": "Adicionar grupo de dispositivos", "ru": "Добавить группу устройств", "xloc": [ - "default.handlebars->23->1099", - "default.handlebars->23->1101", - "default.handlebars->23->1283", - "default.handlebars->23->1357", - "default.handlebars->23->205" + "default.handlebars->25->1102", + "default.handlebars->25->1104", + "default.handlebars->25->1286", + "default.handlebars->25->1360", + "default.handlebars->25->205" ] }, { @@ -1619,7 +1619,7 @@ "pt": "Adicione Intelreg; AMT", "ru": "Добавить Intel® AMT CIRA устройство", "xloc": [ - "default.handlebars->23->279" + "default.handlebars->25->279" ] }, { @@ -1631,7 +1631,7 @@ "pt": "Adicione Intelreg; dispositivo AMT", "ru": "Добавить Intel® AMT устройство", "xloc": [ - "default.handlebars->23->247" + "default.handlebars->25->247" ] }, { @@ -1643,7 +1643,7 @@ "pt": "Adicionar chave", "ru": "Добавить ключ", "xloc": [ - "default.handlebars->23->143" + "default.handlebars->25->143" ] }, { @@ -1655,7 +1655,7 @@ "pt": "Adicionar local", "ru": "Добавить локально", "xloc": [ - "default.handlebars->23->226" + "default.handlebars->25->226" ] }, { @@ -1664,7 +1664,7 @@ "en": "Add Membership", "nl": "Lidmaatschap toevoegen", "xloc": [ - "default.handlebars->23->1376" + "default.handlebars->25->1379" ] }, { @@ -1676,7 +1676,7 @@ "pt": "Adicionar agente de malha", "ru": "Добавить Mesh Агент", "xloc": [ - "default.handlebars->23->346" + "default.handlebars->25->346" ] }, { @@ -1689,12 +1689,12 @@ "pt": "Adicionar chave de segurança", "ru": "Добавить ключ безопасности", "xloc": [ - "default.handlebars->23->146", - "default.handlebars->23->148", - "default.handlebars->23->151", - "default.handlebars->23->152", - "default.handlebars->23->709", - "default.handlebars->23->710" + "default.handlebars->25->146", + "default.handlebars->25->148", + "default.handlebars->25->151", + "default.handlebars->25->152", + "default.handlebars->25->712", + "default.handlebars->25->713" ] }, { @@ -1703,9 +1703,9 @@ "en": "Add User Group", "nl": "Gebruikersgroep toevoegen", "xloc": [ - "default.handlebars->23->1006", - "default.handlebars->23->1100", - "default.handlebars->23->1366" + "default.handlebars->25->1009", + "default.handlebars->25->1103", + "default.handlebars->25->1369" ] }, { @@ -1731,8 +1731,8 @@ "pt": "Adicionar usuários", "ru": "Добавить пользователей", "xloc": [ - "default.handlebars->23->1005", - "default.handlebars->23->1278" + "default.handlebars->25->1008", + "default.handlebars->25->1281" ] }, { @@ -1744,7 +1744,7 @@ "pt": "Adicionar usuários ao grupo de dispositivos", "ru": "Добавить пользователей к Группам устройств", "xloc": [ - "default.handlebars->23->1098" + "default.handlebars->25->1101" ] }, { @@ -1753,7 +1753,7 @@ "en": "Add Users to User Group", "nl": "Voeg gebruikers toe aan de gebruikersgroep", "xloc": [ - "default.handlebars->23->1306" + "default.handlebars->25->1309" ] }, { @@ -1765,7 +1765,7 @@ "pt": "Adicione YubiKeyreg; OTP", "ru": "Добавить YubiKey® OTP", "xloc": [ - "default.handlebars->23->144" + "default.handlebars->25->144" ] }, { @@ -1777,7 +1777,7 @@ "pt": "Adicione um novo Intelreg; Computador AMT digitalizando a rede local.", "ru": "Добавить новый Intel® AMT компьютер сканированием локальной сети.", "xloc": [ - "default.handlebars->23->227" + "default.handlebars->25->227" ] }, { @@ -1789,8 +1789,8 @@ "pt": "Adicione um novo Intel® Computador AMT localizado na Internet.", "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.", "xloc": [ - "default.handlebars->23->1007", - "default.handlebars->23->223" + "default.handlebars->25->1010", + "default.handlebars->25->223" ] }, { @@ -1802,8 +1802,8 @@ "pt": "Adicione um novo Intel® AMT computer that is located on the local network.", "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.", "xloc": [ - "default.handlebars->23->1009", - "default.handlebars->23->225" + "default.handlebars->25->1012", + "default.handlebars->25->225" ] }, { @@ -1815,7 +1815,7 @@ "pt": "Adicione um novo Intel® Dispositivo AMT para grupo de dispositivos \\\"{0}\\\".", "ru": "Добавить новое Intel® AMT устройство к группе устройств \\\"{0}\\\".", "xloc": [ - "default.handlebars->23->237" + "default.handlebars->25->237" ] }, { @@ -1827,8 +1827,8 @@ "pt": "Adicione um novo computador a essa malha instalando o agente de malha.", "ru": "Добавить новый компьютер к этой сети инсталированием меш агента.", "xloc": [ - "default.handlebars->23->1015", - "default.handlebars->23->233" + "default.handlebars->25->1018", + "default.handlebars->25->233" ] }, { @@ -1840,7 +1840,7 @@ "pt": "Endereço", "ru": "Адрес", "xloc": [ - "default.handlebars->23->201" + "default.handlebars->25->201" ] }, { @@ -1876,7 +1876,7 @@ "pt": "Admin Realms", "ru": "Oбласти Aдминистратора", "xloc": [ - "default.handlebars->23->1332" + "default.handlebars->25->1335" ] }, { @@ -1900,7 +1900,7 @@ "pt": "Domínios Administrativos", "ru": "Административные Области", "xloc": [ - "default.handlebars->23->1248" + "default.handlebars->25->1251" ] }, { @@ -1912,7 +1912,7 @@ "pt": "Administrador", "ru": "Администратор", "xloc": [ - "default.handlebars->23->1210" + "default.handlebars->25->1213" ] }, { @@ -1924,7 +1924,7 @@ "pt": "afrikaans", "ru": "Африканский", "xloc": [ - "default.handlebars->23->712" + "default.handlebars->25->715" ] }, { @@ -1940,10 +1940,10 @@ "default-mobile.handlebars->9->121", "default-mobile.handlebars->9->174", "default-mobile.handlebars->9->190", - "default.handlebars->23->1135", - "default.handlebars->23->1141", - "default.handlebars->23->184", - "default.handlebars->23->371", + "default.handlebars->25->1138", + "default.handlebars->25->1144", + "default.handlebars->25->184", + "default.handlebars->25->371", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" ] }, @@ -1953,8 +1953,8 @@ "en": "Agent + Intel AMT", "nl": "Agent + Intel AMT", "xloc": [ - "default.handlebars->23->1137", - "default.handlebars->23->1143" + "default.handlebars->25->1140", + "default.handlebars->25->1146" ] }, { @@ -1979,7 +1979,7 @@ "ru": "Консоль агента", "xloc": [ "default-mobile.handlebars->9->315", - "default.handlebars->23->1109" + "default.handlebars->25->1112" ] }, { @@ -1988,7 +1988,7 @@ "en": "Agent Error Counters", "nl": "Agent fout tellers", "xloc": [ - "default.handlebars->23->1388" + "default.handlebars->25->1391" ] }, { @@ -2022,7 +2022,7 @@ "en": "Agent Sessions", "nl": "Agent Sessies", "xloc": [ - "default.handlebars->23->1404" + "default.handlebars->25->1407" ] }, { @@ -2035,7 +2035,7 @@ "ru": "Тег агента", "xloc": [ "default-mobile.handlebars->9->189", - "default.handlebars->23->464" + "default.handlebars->25->467" ] }, { @@ -2044,7 +2044,7 @@ "en": "Agent Types", "nl": "Agent Type", "xloc": [ - "default.handlebars->23->1139", + "default.handlebars->25->1142", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -2057,9 +2057,9 @@ "pt": "Agente conectado", "ru": "Агент подключен", "xloc": [ - "default.handlebars->23->154", - "default.handlebars->23->510", - "default.handlebars->23->511" + "default.handlebars->25->154", + "default.handlebars->25->513", + "default.handlebars->25->514" ] }, { @@ -2071,7 +2071,7 @@ "pt": "Agente desconectado", "ru": "Агент отключился", "xloc": [ - "default.handlebars->23->158" + "default.handlebars->25->158" ] }, { @@ -2083,7 +2083,7 @@ "pt": "O agente está offline", "ru": "Агент оффлайн", "xloc": [ - "default.handlebars->23->683" + "default.handlebars->25->686" ] }, { @@ -2095,7 +2095,7 @@ "pt": "Agente está online", "ru": "Агент онлайн", "xloc": [ - "default.handlebars->23->682" + "default.handlebars->25->685" ] }, { @@ -2107,7 +2107,7 @@ "pt": "Agentes", "ru": "Агенты", "xloc": [ - "default.handlebars->23->1417" + "default.handlebars->25->1420" ] }, { @@ -2119,7 +2119,7 @@ "pt": "albanês", "ru": "Албанский", "xloc": [ - "default.handlebars->23->713" + "default.handlebars->25->716" ] }, { @@ -2158,9 +2158,9 @@ "pt": "All Focus", "ru": "Фокусирование всех", "xloc": [ - "default.handlebars->23->598", - "default.handlebars->23->600", - "default.handlebars->23->601" + "default.handlebars->25->601", + "default.handlebars->25->603", + "default.handlebars->25->604" ] }, { @@ -2173,8 +2173,8 @@ "pt": "Permitir que os usuários gerenciem esse grupo de dispositivos e dispositivos neste grupo.", "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.", "xloc": [ - "default.handlebars->23->1073", - "default.handlebars->23->1303" + "default.handlebars->25->1076", + "default.handlebars->25->1306" ] }, { @@ -2212,7 +2212,13 @@ "pt": "Alternativo (F10 = ESC + 0)", "ru": "Поменять (F10 = ESC+0)", "xloc": [ - "default.handlebars->23->632" + "default.handlebars->25->635" + ] + }, + { + "en": "Alternate Port", + "xloc": [ + "default.handlebars->altPortContextMenu->cxaltport->0" ] }, { @@ -2225,7 +2231,7 @@ "pt": "Notificar sempre", "ru": "Всегда уведомлять", "xloc": [ - "default.handlebars->23->988" + "default.handlebars->25->991" ] }, { @@ -2237,7 +2243,7 @@ "pt": "Sempre alerta", "ru": "Всегда напоминать", "xloc": [ - "default.handlebars->23->989" + "default.handlebars->25->992" ] }, { @@ -2250,7 +2256,7 @@ "ru": "Андроид APK", "xloc": [ "default-mobile.handlebars->9->157", - "default.handlebars->23->27" + "default.handlebars->25->27" ] }, { @@ -2263,7 +2269,7 @@ "ru": "Андроид ARM", "xloc": [ "default-mobile.handlebars->9->152", - "default.handlebars->23->22" + "default.handlebars->25->22" ] }, { @@ -2276,7 +2282,7 @@ "ru": "Андроид x86", "xloc": [ "default-mobile.handlebars->9->155", - "default.handlebars->23->25" + "default.handlebars->25->25" ] }, { @@ -2289,7 +2295,7 @@ "pt": "Antivírus", "ru": "Антивирус", "xloc": [ - "default.handlebars->23->470" + "default.handlebars->25->473" ] }, { @@ -2301,7 +2307,7 @@ "pt": "Qualquer suportado", "ru": "Все поддерживаемые", "xloc": [ - "default.handlebars->23->287" + "default.handlebars->25->287" ] }, { @@ -2313,7 +2319,7 @@ "pt": "Apple MacOS", "ru": "Apple MacOS", "xloc": [ - "default.handlebars->23->317" + "default.handlebars->25->317" ] }, { @@ -2325,7 +2331,7 @@ "pt": "Apenas Apple MacOS ", "ru": "Только Apple MacOS", "xloc": [ - "default.handlebars->23->289" + "default.handlebars->25->289" ] }, { @@ -2349,7 +2355,7 @@ "pt": "Árabe (Argélia)", "ru": "Арабский (Алжир)", "xloc": [ - "default.handlebars->23->715" + "default.handlebars->25->718" ] }, { @@ -2361,7 +2367,7 @@ "pt": "Árabe (Bahrain)", "ru": "Арабский (Бахрейн)", "xloc": [ - "default.handlebars->23->716" + "default.handlebars->25->719" ] }, { @@ -2373,7 +2379,7 @@ "pt": "Árabe (Egito)", "ru": "Арабский (Египет)", "xloc": [ - "default.handlebars->23->717" + "default.handlebars->25->720" ] }, { @@ -2385,7 +2391,7 @@ "pt": "Árabe (Iraque)", "ru": "Арабский (Ирак)", "xloc": [ - "default.handlebars->23->718" + "default.handlebars->25->721" ] }, { @@ -2397,7 +2403,7 @@ "pt": "Árabe (Jordânia)", "ru": "Арабский (Иордания)", "xloc": [ - "default.handlebars->23->719" + "default.handlebars->25->722" ] }, { @@ -2409,7 +2415,7 @@ "pt": "Árabe (Kuwait)", "ru": "Арабский (Кувейт)", "xloc": [ - "default.handlebars->23->720" + "default.handlebars->25->723" ] }, { @@ -2421,7 +2427,7 @@ "pt": "Árabe (Líbano)", "ru": "Арабский (Ливан)", "xloc": [ - "default.handlebars->23->721" + "default.handlebars->25->724" ] }, { @@ -2433,7 +2439,7 @@ "pt": "Árabe (Líbia)", "ru": "Арабский (Ливия)", "xloc": [ - "default.handlebars->23->722" + "default.handlebars->25->725" ] }, { @@ -2445,7 +2451,7 @@ "pt": "Árabe (Marrocos)", "ru": "Арабский (Марокко)", "xloc": [ - "default.handlebars->23->723" + "default.handlebars->25->726" ] }, { @@ -2457,7 +2463,7 @@ "pt": "Árabe (Omã)", "ru": "Арабский (Оман)", "xloc": [ - "default.handlebars->23->724" + "default.handlebars->25->727" ] }, { @@ -2469,7 +2475,7 @@ "pt": "Árabe (Catar)", "ru": "Арабский (Катар)", "xloc": [ - "default.handlebars->23->725" + "default.handlebars->25->728" ] }, { @@ -2481,7 +2487,7 @@ "pt": "Árabe (Arábia Saudita)", "ru": "Арабский (Саудовская Аравия)", "xloc": [ - "default.handlebars->23->726" + "default.handlebars->25->729" ] }, { @@ -2493,7 +2499,7 @@ "pt": "Árabe (padrão)", "ru": "Арабский (стандартный)", "xloc": [ - "default.handlebars->23->714" + "default.handlebars->25->717" ] }, { @@ -2505,7 +2511,7 @@ "pt": "Árabe (Síria)", "ru": "Арабский (Сирия)", "xloc": [ - "default.handlebars->23->727" + "default.handlebars->25->730" ] }, { @@ -2517,7 +2523,7 @@ "pt": "Árabe (Tunísia)", "ru": "Арабский (Тунис)", "xloc": [ - "default.handlebars->23->728" + "default.handlebars->25->731" ] }, { @@ -2529,7 +2535,7 @@ "pt": "Árabe (U.A.E)", "ru": "Арабский (О.А.Э.)", "xloc": [ - "default.handlebars->23->729" + "default.handlebars->25->732" ] }, { @@ -2541,7 +2547,7 @@ "pt": "Árabe (Iêmen)", "ru": "Арабский (Йемен)", "xloc": [ - "default.handlebars->23->730" + "default.handlebars->25->733" ] }, { @@ -2553,7 +2559,7 @@ "pt": "Aragonês", "ru": "Арагонский", "xloc": [ - "default.handlebars->23->731" + "default.handlebars->25->734" ] }, { @@ -2566,7 +2572,7 @@ "pt": "Arquitetura", "ru": "Архитектура", "xloc": [ - "default.handlebars->23->82" + "default.handlebars->25->82" ] }, { @@ -2577,7 +2583,7 @@ "nl": "Weet u zeker dat u verbinding wilt maken met {0} apparaten?", "ru": "Вы уверенны, что хотите подключиться к {0} устройствам?", "xloc": [ - "default.handlebars->23->218" + "default.handlebars->25->218" ] }, { @@ -2591,7 +2597,7 @@ "ru": "Вы уверенны, что хотите удалить группу {0}? Удаление группы приведет к удалению всей информации связанной с устройствами в этой группе.", "xloc": [ "default-mobile.handlebars->9->286", - "default.handlebars->23->1053" + "default.handlebars->25->1056" ] }, { @@ -2604,7 +2610,7 @@ "pt": "Tem certeza de que deseja excluir o nó {0}?", "ru": "Вы уверенны, что хотите удалить узел {0}?", "xloc": [ - "default.handlebars->23->558" + "default.handlebars->25->561" ] }, { @@ -2615,7 +2621,7 @@ "nl": "Weet u zeker dat u de geselecteerde agent wilt verwijderen?", "ru": "Вы уверенны, что хотите деинсталировать избранного агента?", "xloc": [ - "default.handlebars->23->547" + "default.handlebars->25->550" ] }, { @@ -2626,7 +2632,7 @@ "nl": "Weet u zeker dat u de geselecteerde {0} agenten wilt verwijderen?", "ru": "Вы уверенны, что хотите деинсталировать избранных {0} агентов?", "xloc": [ - "default.handlebars->23->546" + "default.handlebars->25->549" ] }, { @@ -2637,7 +2643,7 @@ "nl": "Weet u zeker dat u de plug-in {0} wilt gebruiken: {1}", "ru": "Вы уверенны, что {0} плагин: {1}", "xloc": [ - "default.handlebars->23->1452" + "default.handlebars->25->1455" ] }, { @@ -2649,7 +2655,7 @@ "pt": "Armênio", "ru": "Арменский", "xloc": [ - "default.handlebars->23->732" + "default.handlebars->25->735" ] }, { @@ -2661,7 +2667,7 @@ "pt": "Assamese", "ru": "Ассамский", "xloc": [ - "default.handlebars->23->733" + "default.handlebars->25->736" ] }, { @@ -2673,7 +2679,7 @@ "pt": "Asturiano", "ru": "Астурии", "xloc": [ - "default.handlebars->23->734" + "default.handlebars->25->737" ] }, { @@ -2685,7 +2691,7 @@ "pt": "Aplicativo de autenticação", "ru": "Приложение аутентификации", "xloc": [ - "default.handlebars->23->1333" + "default.handlebars->25->1336" ] }, { @@ -2701,10 +2707,10 @@ "default-mobile.handlebars->9->21", "default-mobile.handlebars->9->30", "default-mobile.handlebars->9->32", - "default.handlebars->23->122", - "default.handlebars->23->127", - "default.handlebars->23->698", - "default.handlebars->23->700" + "default.handlebars->25->122", + "default.handlebars->25->127", + "default.handlebars->25->701", + "default.handlebars->25->703" ] }, { @@ -2716,7 +2722,7 @@ "pt": "Ativação do aplicativo autenticador bem-sucedida.", "ru": "Приложение для аутентификации активированно успешно.", "xloc": [ - "default.handlebars->23->123" + "default.handlebars->25->123" ] }, { @@ -2728,7 +2734,7 @@ "pt": "Aplicativo autenticador removido.", "ru": "Приложение для аутентификации удалено.", "xloc": [ - "default.handlebars->23->128" + "default.handlebars->25->128" ] }, { @@ -2754,7 +2760,7 @@ "pt": "Remover automaticamente", "ru": "Авто-Удаление", "xloc": [ - "default.handlebars->23->976" + "default.handlebars->25->979" ] }, { @@ -2794,7 +2800,7 @@ "pt": "Azerbaijão", "ru": "Азербайджанский", "xloc": [ - "default.handlebars->23->735" + "default.handlebars->25->738" ] }, { @@ -2806,7 +2812,7 @@ "pt": "BIOS", "ru": "BIOS", "xloc": [ - "default.handlebars->23->66" + "default.handlebars->25->66" ] }, { @@ -2870,7 +2876,7 @@ "pt": "Segundo plano e interativo", "ru": "Фоновый и интерактивный режимы", "xloc": [ - "default.handlebars->23->321" + "default.handlebars->25->321" ] }, { @@ -2882,7 +2888,7 @@ "pt": "Segundo plano e interativo", "ru": "Фоновый и интерактивный режимы", "xloc": [ - "default.handlebars->23->299" + "default.handlebars->25->299" ] }, { @@ -2894,8 +2900,8 @@ "pt": "Apenas em segundo plano", "ru": "Только в фоновом режиме", "xloc": [ - "default.handlebars->23->300", - "default.handlebars->23->322" + "default.handlebars->25->300", + "default.handlebars->25->322" ] }, { @@ -2920,7 +2926,7 @@ "pt": "Códigos de backup", "ru": "Коды бэкапа", "xloc": [ - "default.handlebars->23->1335" + "default.handlebars->25->1338" ] }, { @@ -2929,7 +2935,7 @@ "en": "Bad Signature", "nl": "Ongeldige handtening", "xloc": [ - "default.handlebars->23->1395" + "default.handlebars->25->1398" ] }, { @@ -2938,7 +2944,7 @@ "en": "Bad Web Certificate", "nl": "Onjuist webcertificaat", "xloc": [ - "default.handlebars->23->1394" + "default.handlebars->25->1397" ] }, { @@ -2950,7 +2956,7 @@ "pt": "Basco", "ru": "Баскский", "xloc": [ - "default.handlebars->23->736" + "default.handlebars->25->739" ] }, { @@ -2974,7 +2980,7 @@ "pt": "Bielorrusso", "ru": "Белорусский", "xloc": [ - "default.handlebars->23->738" + "default.handlebars->25->741" ] }, { @@ -2986,7 +2992,7 @@ "pt": "Bengali", "ru": "Бенгальский", "xloc": [ - "default.handlebars->23->739" + "default.handlebars->25->742" ] }, { @@ -2998,7 +3004,7 @@ "pt": "Bósnia", "ru": "Боснийский", "xloc": [ - "default.handlebars->23->740" + "default.handlebars->25->743" ] }, { @@ -3010,7 +3016,7 @@ "pt": "Breton", "ru": "Бретонский", "xloc": [ - "default.handlebars->23->741" + "default.handlebars->25->744" ] }, { @@ -3023,7 +3029,7 @@ "pt": "Broadcast", "ru": "Отправить сообщение...", "xloc": [ - "default.handlebars->23->1276", + "default.handlebars->25->1279", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -3037,7 +3043,7 @@ "pt": "Mensagem de transmissão", "ru": "Отправить сообщение", "xloc": [ - "default.handlebars->23->1233" + "default.handlebars->25->1236" ] }, { @@ -3049,7 +3055,7 @@ "pt": "Transmita uma mensagem para todos os usuários conectados.", "ru": "Отправить сообщение всем подключенным пользователям.", "xloc": [ - "default.handlebars->23->1232" + "default.handlebars->25->1235" ] }, { @@ -3061,7 +3067,7 @@ "pt": "Búlgaria", "ru": "Болгарский", "xloc": [ - "default.handlebars->23->737" + "default.handlebars->25->740" ] }, { @@ -3073,7 +3079,7 @@ "pt": "Birmanês", "ru": "Бирманский", "xloc": [ - "default.handlebars->23->742" + "default.handlebars->25->745" ] }, { @@ -3086,7 +3092,7 @@ "ru": "CCM", "xloc": [ "default-mobile.handlebars->9->181", - "default.handlebars->23->450" + "default.handlebars->25->453" ] }, { @@ -3099,10 +3105,10 @@ "ru": "CIRA", "xloc": [ "default-mobile.handlebars->9->122", - "default.handlebars->23->1041", - "default.handlebars->23->1046", - "default.handlebars->23->186", - "default.handlebars->23->373" + "default.handlebars->25->1044", + "default.handlebars->25->1049", + "default.handlebars->25->186", + "default.handlebars->25->373" ] }, { @@ -3114,7 +3120,7 @@ "pt": "Servidor CIRA", "ru": "CIRA Сервер", "xloc": [ - "default.handlebars->23->1443" + "default.handlebars->25->1446" ] }, { @@ -3126,7 +3132,7 @@ "pt": "Comandos do servidor CIRA", "ru": "CIRA Сервер комманды", "xloc": [ - "default.handlebars->23->1444" + "default.handlebars->25->1447" ] }, { @@ -3135,7 +3141,7 @@ "en": "CPU Load", "nl": "CPU gebruik", "xloc": [ - "default.handlebars->23->1409" + "default.handlebars->25->1412" ] }, { @@ -3147,7 +3153,7 @@ "pt": "Carga da CPU nos últimos 15 minutos", "ru": "Загрузка ЦПУ за последние 15 минут", "xloc": [ - "default.handlebars->23->1412" + "default.handlebars->25->1415" ] }, { @@ -3159,7 +3165,7 @@ "pt": "Carga da CPU nos últimos 5 minutos", "ru": "Загрузка ЦПУ за последние 5 минут", "xloc": [ - "default.handlebars->23->1411" + "default.handlebars->25->1414" ] }, { @@ -3171,7 +3177,7 @@ "pt": "Carga da CPU no último minuto", "ru": "Загрузка ЦПУ за последнюю минуту", "xloc": [ - "default.handlebars->23->1410" + "default.handlebars->25->1413" ] }, { @@ -3183,8 +3189,8 @@ "pt": "CR + LF", "ru": "CR+LF", "xloc": [ - "default.handlebars->23->625", - "default.handlebars->23->634", + "default.handlebars->25->628", + "default.handlebars->25->637", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -3197,8 +3203,8 @@ "pt": "Formato CSV", "ru": "Формат CSV", "xloc": [ - "default.handlebars->23->1185", - "default.handlebars->23->1224" + "default.handlebars->25->1188", + "default.handlebars->25->1227" ] }, { @@ -3211,7 +3217,7 @@ "pt": "Erro de chamada", "ru": "Ошибка вызова", "xloc": [ - "default.handlebars->23->1453" + "default.handlebars->25->1456" ] }, { @@ -3226,7 +3232,7 @@ "xloc": [ "default-mobile.handlebars->9->41", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->23->961", + "default.handlebars->25->964", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -3243,7 +3249,7 @@ "pt": "Capacidade / velocidade", "ru": "Объем / Скорость", "xloc": [ - "default.handlebars->23->76" + "default.handlebars->25->76" ] }, { @@ -3255,7 +3261,7 @@ "pt": "Catalão", "ru": "Каталонский", "xloc": [ - "default.handlebars->23->743" + "default.handlebars->25->746" ] }, { @@ -3268,7 +3274,7 @@ "pt": "Centralize o mapa aqui", "ru": "Установить центр карты здесь", "xloc": [ - "default.handlebars->23->416" + "default.handlebars->25->419" ] }, { @@ -3280,7 +3286,7 @@ "pt": "Chamorro", "ru": "Чаморро", "xloc": [ - "default.handlebars->23->744" + "default.handlebars->25->747" ] }, { @@ -3292,7 +3298,7 @@ "pt": "Alterar email para {0}", "ru": "Смена е-мейла для {0}", "xloc": [ - "default.handlebars->23->1348" + "default.handlebars->25->1351" ] }, { @@ -3304,9 +3310,9 @@ "pt": "Alterar grupo", "ru": "Смена группы", "xloc": [ - "default.handlebars->23->491", - "default.handlebars->23->555", - "default.handlebars->23->556" + "default.handlebars->25->494", + "default.handlebars->25->558", + "default.handlebars->25->559" ] }, { @@ -3319,8 +3325,8 @@ "ru": "Смена Пароля", "xloc": [ "default-mobile.handlebars->9->49", - "default.handlebars->23->1343", - "default.handlebars->23->937" + "default.handlebars->25->1346", + "default.handlebars->25->940" ] }, { @@ -3332,7 +3338,7 @@ "pt": "Alterar senha para {0}", "ru": "Смена пароля для {0}", "xloc": [ - "default.handlebars->23->1355" + "default.handlebars->25->1358" ] }, { @@ -3394,7 +3400,7 @@ "pt": "Mude o endereço de e-mail da sua conta aqui.", "ru": "Измените адрес электронной почты вашей учетной записи здесь.", "xloc": [ - "default.handlebars->23->924" + "default.handlebars->25->927" ] }, { @@ -3406,7 +3412,7 @@ "pt": "Altere a senha da sua conta digitando a senha antiga e a nova senha duas vezes nas caixas abaixo.", "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.", "xloc": [ - "default.handlebars->23->930" + "default.handlebars->25->933" ] }, { @@ -3418,7 +3424,7 @@ "pt": "Alterar o idioma exigirá uma atualização da página.", "ru": "Изменение языка потребует обновления страницы.", "xloc": [ - "default.handlebars->23->909" + "default.handlebars->25->912" ] }, { @@ -3430,7 +3436,7 @@ "pt": "Chat", "ru": "Чат", "xloc": [ - "default.handlebars->23->1202" + "default.handlebars->25->1205" ] }, { @@ -3444,8 +3450,8 @@ "xloc": [ "default-mobile.handlebars->9->307", "default-mobile.handlebars->9->325", - "default.handlebars->23->1096", - "default.handlebars->23->1119" + "default.handlebars->25->1099", + "default.handlebars->25->1122" ] }, { @@ -3457,7 +3463,7 @@ "pt": "Checheno", "ru": "Чеченский", "xloc": [ - "default.handlebars->23->745" + "default.handlebars->25->748" ] }, { @@ -3469,7 +3475,7 @@ "pt": "Verifique e clique em OK para limpar o log de erros.", "ru": "Поставьте отметку и жмите ОК для очищения журнала ошибок.", "xloc": [ - "default.handlebars->23->119" + "default.handlebars->25->119" ] }, { @@ -3481,7 +3487,7 @@ "pt": "Marque e clique em OK para iniciar a atualização automática do servidor.", "ru": "Поставьте отметку и жмите ОК для начала само-обновления.", "xloc": [ - "default.handlebars->23->114" + "default.handlebars->25->114" ] }, { @@ -3505,8 +3511,8 @@ "pt": "Verificando ...", "ru": "Проверка...", "xloc": [ - "default.handlebars->23->1449", - "default.handlebars->23->711" + "default.handlebars->25->1452", + "default.handlebars->25->714" ] }, { @@ -3518,7 +3524,7 @@ "pt": "Chinês", "ru": "Китайский", "xloc": [ - "default.handlebars->23->746" + "default.handlebars->25->749" ] }, { @@ -3530,7 +3536,7 @@ "pt": "Chinês (Hong Kong)", "ru": "Китайский (Гонконг)", "xloc": [ - "default.handlebars->23->747" + "default.handlebars->25->750" ] }, { @@ -3542,7 +3548,7 @@ "pt": "Chinês (PRC)", "ru": "Китайский (КНР)", "xloc": [ - "default.handlebars->23->748" + "default.handlebars->25->751" ] }, { @@ -3554,7 +3560,7 @@ "pt": "Chinês (Singapura)", "ru": "Китайский (Сингапур)", "xloc": [ - "default.handlebars->23->749" + "default.handlebars->25->752" ] }, { @@ -3566,7 +3572,7 @@ "pt": "Chinês (Taiwan)", "ru": "Китайский (Тайвань)", "xloc": [ - "default.handlebars->23->750" + "default.handlebars->25->753" ] }, { @@ -3579,7 +3585,7 @@ "ru": "ХромеОС", "xloc": [ "default-mobile.handlebars->9->160", - "default.handlebars->23->30" + "default.handlebars->25->30" ] }, { @@ -3591,7 +3597,7 @@ "pt": "Chuvash", "ru": "Чувашский", "xloc": [ - "default.handlebars->23->751" + "default.handlebars->25->754" ] }, { @@ -3603,7 +3609,7 @@ "pt": "Limpeza CIRA", "ru": "Очистка CIRA", "xloc": [ - "default.handlebars->23->264" + "default.handlebars->25->264" ] }, { @@ -3621,11 +3627,11 @@ "default-mobile.handlebars->9->268", "default-mobile.handlebars->9->28", "default-mobile.handlebars->9->91", - "default.handlebars->23->1179", - "default.handlebars->23->660", - "default.handlebars->23->662", - "default.handlebars->23->664", - "default.handlebars->23->666", + "default.handlebars->25->1182", + "default.handlebars->25->663", + "default.handlebars->25->665", + "default.handlebars->25->667", + "default.handlebars->25->669", "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" @@ -3640,7 +3646,7 @@ "pt": "Limpar Tokens", "ru": "Очистить Токены", "xloc": [ - "default.handlebars->23->136" + "default.handlebars->25->136" ] }, { @@ -3652,7 +3658,7 @@ "pt": "Limpe o núcleo", "ru": "Очистить ядро", "xloc": [ - "default.handlebars->23->692" + "default.handlebars->25->695" ] }, { @@ -3664,7 +3670,7 @@ "pt": "Limpe o segredo do aplicativo e tente novamente. Você tem apenas alguns minutos para inserir o código correto.", "ru": "Удалите ключ из приложения и попробуйте еще раз. У вас есть всего несколько минут, чтобы ввести правильный код.", "xloc": [ - "default.handlebars->23->126" + "default.handlebars->25->126" ] }, { @@ -3676,7 +3682,7 @@ "pt": "clique aqui para criar um grupo de dispositivos", "ru": "Для изменения имени устройства на сервере жмите сюда", "xloc": [ - "default.handlebars->23->430" + "default.handlebars->25->433" ] }, { @@ -3689,7 +3695,7 @@ "ru": "Нажмите ок для отправки подтверждения по електронной почте:", "xloc": [ "default-mobile.handlebars->9->34", - "default.handlebars->23->921" + "default.handlebars->25->924" ] }, { @@ -3713,8 +3719,8 @@ "pt": "Acesso remoto iniciado pelo cliente", "ru": "Удаленная Связь Установленая Клиентом", "xloc": [ - "default.handlebars->23->1040", - "default.handlebars->23->1045" + "default.handlebars->25->1043", + "default.handlebars->25->1048" ] }, { @@ -3739,9 +3745,9 @@ "ru": "Закрыть", "xloc": [ "default-mobile.handlebars->9->26", - "default.handlebars->23->134", - "default.handlebars->23->142", - "default.handlebars->23->618" + "default.handlebars->25->134", + "default.handlebars->25->142", + "default.handlebars->25->621" ] }, { @@ -3763,8 +3769,8 @@ "en": "Common Device Groups", "nl": "Gemeenschappelijke apparaatgroepen", "xloc": [ - "default.handlebars->23->1284", - "default.handlebars->23->1358" + "default.handlebars->25->1287", + "default.handlebars->25->1361" ] }, { @@ -3777,7 +3783,7 @@ "ru": "Подтвердить {0} из {1} записи {2} в это местоположение?", "xloc": [ "default-mobile.handlebars->9->86", - "default.handlebars->23->1174" + "default.handlebars->25->1177" ] }, { @@ -3791,11 +3797,11 @@ "xloc": [ "default-mobile.handlebars->9->220", "default-mobile.handlebars->9->287", - "default.handlebars->23->1054", - "default.handlebars->23->1299", - "default.handlebars->23->396", - "default.handlebars->23->550", - "default.handlebars->23->559" + "default.handlebars->25->1057", + "default.handlebars->25->1302", + "default.handlebars->25->396", + "default.handlebars->25->553", + "default.handlebars->25->562" ] }, { @@ -3808,7 +3814,7 @@ "ru": "Подтвердить копию 1 записи в это место?", "xloc": [ "default-mobile.handlebars->9->257", - "default.handlebars->23->655" + "default.handlebars->25->658" ] }, { @@ -3821,7 +3827,7 @@ "ru": "Подтвердить копию {0} записей в этом месте?", "xloc": [ "default-mobile.handlebars->9->256", - "default.handlebars->23->654" + "default.handlebars->25->657" ] }, { @@ -3833,7 +3839,7 @@ "pt": "Confirmar a exclusão dos dispositivos selecionados?", "ru": "Подтвердить удаление выбранных устройств?", "xloc": [ - "default.handlebars->23->395" + "default.handlebars->25->395" ] }, { @@ -3846,7 +3852,7 @@ "ru": "Подтвердить перемещение 1 записи в это место?", "xloc": [ "default-mobile.handlebars->9->259", - "default.handlebars->23->657" + "default.handlebars->25->660" ] }, { @@ -3859,7 +3865,7 @@ "ru": "Подтвердить перемещение {0} записей в это место?", "xloc": [ "default-mobile.handlebars->9->258", - "default.handlebars->23->656" + "default.handlebars->25->659" ] }, { @@ -3870,7 +3876,7 @@ "nl": "Bevestig overschrijven?", "ru": "Подтвердить перезапись?", "xloc": [ - "default.handlebars->23->1173" + "default.handlebars->25->1176" ] }, { @@ -3883,7 +3889,7 @@ "ru": "Подтвердите удаление приложения аутентификации 2-хэтапного входа в систему.", "xloc": [ "default-mobile.handlebars->9->33", - "default.handlebars->23->701" + "default.handlebars->25->704" ] }, { @@ -3892,8 +3898,8 @@ "en": "Confirm removal of device group {0}?", "nl": "Bevestig het verwijderen van de apparaatgroep {0}?", "xloc": [ - "default.handlebars->23->1294", - "default.handlebars->23->1378" + "default.handlebars->25->1297", + "default.handlebars->25->1381" ] }, { @@ -3902,7 +3908,7 @@ "en": "Confirm removal of group {0}?", "nl": "Bevestig het verwijderen van de groep {0}?", "xloc": [ - "default.handlebars->23->1374" + "default.handlebars->25->1377" ] }, { @@ -3915,8 +3921,8 @@ "ru": "Подтвердить удаление пользователя {0}?", "xloc": [ "default-mobile.handlebars->9->333", - "default.handlebars->23->1128", - "default.handlebars->23->1302" + "default.handlebars->25->1131", + "default.handlebars->25->1305" ] }, { @@ -3931,8 +3937,8 @@ "default-mobile.handlebars->9->236", "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->23->637", - "default.handlebars->23->992", + "default.handlebars->25->640", + "default.handlebars->25->995", "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", @@ -3948,7 +3954,7 @@ "pt": "Conectar todos", "ru": "Подключиться ко всем", "xloc": [ - "default.handlebars->23->217", + "default.handlebars->25->217", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar" ] }, @@ -3961,8 +3967,8 @@ "pt": "Conecte-se ao servidor", "ru": "Подключиться к серверу", "xloc": [ - "default.handlebars->23->1044", - "default.handlebars->23->1048" + "default.handlebars->25->1047", + "default.handlebars->25->1051" ] }, { @@ -3999,7 +4005,7 @@ "ru": "Подключено", "xloc": [ "default-mobile.handlebars->9->4", - "default.handlebars->23->11", + "default.handlebars->25->11", "xterm.handlebars->9->4" ] }, @@ -4009,7 +4015,7 @@ "en": "Connected Intel® AMT", "nl": "Verbonden Intel® AMT", "xloc": [ - "default.handlebars->23->1400" + "default.handlebars->25->1403" ] }, { @@ -4018,7 +4024,7 @@ "en": "Connected Users", "nl": "Verbonden gebruikers", "xloc": [ - "default.handlebars->23->1405" + "default.handlebars->25->1408" ] }, { @@ -4045,11 +4051,11 @@ "default-mobile.handlebars->9->2", "default-mobile.handlebars->9->272", "default-mobile.handlebars->9->6", - "default.handlebars->23->211", - "default.handlebars->23->214", - "default.handlebars->23->220", - "default.handlebars->23->678", - "default.handlebars->23->9", + "default.handlebars->25->211", + "default.handlebars->25->214", + "default.handlebars->25->220", + "default.handlebars->25->681", + "default.handlebars->25->9", "xterm.handlebars->9->2" ] }, @@ -4062,7 +4068,7 @@ "pt": "Contagem de conexões", "ru": "Подключений ", "xloc": [ - "default.handlebars->23->1416" + "default.handlebars->25->1419" ] }, { @@ -4074,7 +4080,7 @@ "pt": "Encaminhador de conexão", "ru": "Реле подключения", "xloc": [ - "default.handlebars->23->1442" + "default.handlebars->25->1445" ] }, { @@ -4111,9 +4117,9 @@ "ru": "Связь", "xloc": [ "default-mobile.handlebars->9->195", - "default.handlebars->23->1144", - "default.handlebars->23->202", - "default.handlebars->23->482", + "default.handlebars->25->1147", + "default.handlebars->25->202", + "default.handlebars->25->485", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" ] }, @@ -4140,7 +4146,7 @@ "pt": "Console - ", "ru": "Консоль - ", "xloc": [ - "default.handlebars->23->431" + "default.handlebars->25->434" ] }, { @@ -4152,7 +4158,7 @@ "pt": "Codificador de cookies", "ru": "Cookie-кодировщик", "xloc": [ - "default.handlebars->23->1430" + "default.handlebars->25->1433" ] }, { @@ -4179,8 +4185,8 @@ "pt": "Copiar endereço MAC para a área de transferência", "ru": "Скопировать МАС адрес в буфер обмена", "xloc": [ - "default.handlebars->23->107", - "default.handlebars->23->99" + "default.handlebars->25->107", + "default.handlebars->25->99" ] }, { @@ -4192,7 +4198,7 @@ "pt": "Copiar o URL do agente MacOS para a área de transferência", "ru": "Скопировать ссылку МасОС агента в буфер обмена", "xloc": [ - "default.handlebars->23->337" + "default.handlebars->25->337" ] }, { @@ -4204,11 +4210,11 @@ "pt": "Copiar endereço para a área de transferência", "ru": "Скопировать адрес в буфер обмена", "xloc": [ - "default.handlebars->23->101", - "default.handlebars->23->103", - "default.handlebars->23->105", - "default.handlebars->23->90", - "default.handlebars->23->92" + "default.handlebars->25->101", + "default.handlebars->25->103", + "default.handlebars->25->105", + "default.handlebars->25->90", + "default.handlebars->25->92" ] }, { @@ -4220,7 +4226,7 @@ "pt": "Copiar link para a área de transferência", "ru": "Скопировать ссылку в буфер обмена", "xloc": [ - "default.handlebars->23->312" + "default.handlebars->25->312" ] }, { @@ -4232,7 +4238,7 @@ "pt": "Copiar nome para a área de transferência", "ru": "Скопировать имя в буфер обмена", "xloc": [ - "default.handlebars->23->97" + "default.handlebars->25->97" ] }, { @@ -4257,7 +4263,7 @@ "pt": "Copiar códigos válidos para a área de transferência", "ru": "Скопировать действительные коды в буфер обмена", "xloc": [ - "default.handlebars->23->137" + "default.handlebars->25->137" ] }, { @@ -4341,7 +4347,7 @@ "pt": "Servidor Core", "ru": "Основной сервер", "xloc": [ - "default.handlebars->23->1429" + "default.handlebars->25->1432" ] }, { @@ -4353,7 +4359,7 @@ "pt": "Corso", "ru": "Kорсиканский", "xloc": [ - "default.handlebars->23->752" + "default.handlebars->25->755" ] }, { @@ -4365,7 +4371,7 @@ "pt": "Criar conta", "ru": "Создать учетную запись", "xloc": [ - "default.handlebars->23->1244", + "default.handlebars->25->1247", "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" ] @@ -4388,7 +4394,7 @@ "en": "Create User Group", "nl": "Maak een gebruikersgroep.", "xloc": [ - "default.handlebars->23->1267" + "default.handlebars->25->1270" ] }, { @@ -4400,7 +4406,7 @@ "pt": "Crie um novo grupo de dispositivos usando as opções abaixo.", "ru": "Создайте новую группу устройств, используя параметры ниже.", "xloc": [ - "default.handlebars->23->944" + "default.handlebars->25->947" ] }, { @@ -4412,7 +4418,7 @@ "pt": "Crie um novo grupo de dispositivos.", "ru": "Создать новую группу устройств.", "xloc": [ - "default.handlebars->23->204" + "default.handlebars->25->204" ] }, { @@ -4424,7 +4430,7 @@ "pt": "Crie várias contas ao mesmo tempo importando um arquivo JSON com o seguinte formato:", "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "xloc": [ - "default.handlebars->23->1215" + "default.handlebars->25->1218" ] }, { @@ -4449,7 +4455,7 @@ "pt": "Criação", "ru": "Создание", "xloc": [ - "default.handlebars->23->1321" + "default.handlebars->25->1324" ] }, { @@ -4474,7 +4480,7 @@ "pt": "Cree", "ru": "Кри (Канадский язык)", "xloc": [ - "default.handlebars->23->753" + "default.handlebars->25->756" ] }, { @@ -4486,7 +4492,7 @@ "pt": "Croata", "ru": "Хорватский", "xloc": [ - "default.handlebars->23->754" + "default.handlebars->25->757" ] }, { @@ -4522,7 +4528,7 @@ "pt": "CTRL", "ru": "Ctrl", "xloc": [ - "default.handlebars->23->46" + "default.handlebars->25->46" ] }, { @@ -4560,7 +4566,7 @@ "pt": "Versão Atual", "ru": "Текущшая версия", "xloc": [ - "default.handlebars->23->110" + "default.handlebars->25->110" ] }, { @@ -4587,7 +4593,7 @@ "pt": "Tcheco", "ru": "Чешский", "xloc": [ - "default.handlebars->23->755" + "default.handlebars->25->758" ] }, { @@ -4599,7 +4605,7 @@ "pt": "Sufixo DNS", "ru": "DNS суффикс", "xloc": [ - "default.handlebars->23->96" + "default.handlebars->25->96" ] }, { @@ -4611,7 +4617,7 @@ "pt": "Dinamarquês", "ru": "Датский", "xloc": [ - "default.handlebars->23->756" + "default.handlebars->25->759" ] }, { @@ -4623,7 +4629,7 @@ "pt": "DataChannel", "ru": "DataChannel", "xloc": [ - "default.handlebars->23->595" + "default.handlebars->25->598" ] }, { @@ -4635,7 +4641,7 @@ "pt": "Datas e Horário", "ru": "Даты & Время", "xloc": [ - "default.handlebars->23->912" + "default.handlebars->25->915" ] }, { @@ -4647,7 +4653,7 @@ "pt": "Dia", "ru": "День", "xloc": [ - "default.handlebars->23->534" + "default.handlebars->25->537" ] }, { @@ -4659,7 +4665,7 @@ "pt": "Desativar o modo de controle do cliente (CCM)", "ru": "Деактивировать режим управления клиентом (CCM)", "xloc": [ - "default.handlebars->23->1032" + "default.handlebars->25->1035" ] }, { @@ -4672,7 +4678,7 @@ "ru": "Глубокий сон", "xloc": [ "default-mobile.handlebars->9->110", - "default.handlebars->23->356" + "default.handlebars->25->356" ] }, { @@ -4688,8 +4694,8 @@ "default-mobile.handlebars->9->81", "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->23->1168", - "default.handlebars->23->647", + "default.handlebars->25->1171", + "default.handlebars->25->650", "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", @@ -4707,7 +4713,7 @@ "ru": "Удалить Пользователя", "xloc": [ "default-mobile.handlebars->9->43", - "default.handlebars->23->929" + "default.handlebars->25->932" ] }, { @@ -4720,7 +4726,7 @@ "ru": "Удалить Устройство", "xloc": [ "default-mobile.handlebars->9->199", - "default.handlebars->23->493" + "default.handlebars->25->496" ] }, { @@ -4734,8 +4740,8 @@ "xloc": [ "default-mobile.handlebars->9->285", "default-mobile.handlebars->9->288", - "default.handlebars->23->1025", - "default.handlebars->23->1055" + "default.handlebars->25->1028", + "default.handlebars->25->1058" ] }, { @@ -4748,7 +4754,7 @@ "ru": "Удалить Узел", "xloc": [ "default-mobile.handlebars->9->218", - "default.handlebars->23->560" + "default.handlebars->25->563" ] }, { @@ -4760,7 +4766,7 @@ "pt": "Excluir nós", "ru": "Удалить Узлы", "xloc": [ - "default.handlebars->23->397" + "default.handlebars->25->397" ] }, { @@ -4769,7 +4775,7 @@ "en": "Delete User", "nl": "Verwijder gebruiker", "xloc": [ - "default.handlebars->23->1342" + "default.handlebars->25->1345" ] }, { @@ -4778,8 +4784,8 @@ "en": "Delete User Group", "nl": "Verwijder de gebruikersgroep", "xloc": [ - "default.handlebars->23->1292", - "default.handlebars->23->1300" + "default.handlebars->25->1295", + "default.handlebars->25->1303" ] }, { @@ -4791,7 +4797,7 @@ "pt": "Excluir usuário {0}", "ru": "Удалить Пользователя {0}", "xloc": [ - "default.handlebars->23->1356" + "default.handlebars->25->1359" ] }, { @@ -4816,7 +4822,7 @@ "pt": "Excluir Dispositivos", "ru": "Удалить устройства", "xloc": [ - "default.handlebars->23->392" + "default.handlebars->25->392" ] }, { @@ -4830,8 +4836,8 @@ "xloc": [ "default-mobile.handlebars->9->251", "default-mobile.handlebars->9->83", - "default.handlebars->23->1170", - "default.handlebars->23->649" + "default.handlebars->25->1173", + "default.handlebars->25->652" ] }, { @@ -4840,7 +4846,7 @@ "en": "Delete user group {0}?", "nl": "Verwijder gebruikersgroep {0}?", "xloc": [ - "default.handlebars->23->1298" + "default.handlebars->25->1301" ] }, { @@ -4854,8 +4860,8 @@ "xloc": [ "default-mobile.handlebars->9->250", "default-mobile.handlebars->9->82", - "default.handlebars->23->1169", - "default.handlebars->23->648" + "default.handlebars->25->1172", + "default.handlebars->25->651" ] }, { @@ -4930,17 +4936,17 @@ "default-mobile.handlebars->9->277", "default-mobile.handlebars->9->290", "default-mobile.handlebars->9->60", - "default.handlebars->23->1057", - "default.handlebars->23->1266", - "default.handlebars->23->1271", - "default.handlebars->23->1273", - "default.handlebars->23->1296", - "default.handlebars->23->440", - "default.handlebars->23->441", - "default.handlebars->23->591", - "default.handlebars->23->949", - "default.handlebars->23->95", - "default.handlebars->23->973", + "default.handlebars->25->1060", + "default.handlebars->25->1269", + "default.handlebars->25->1274", + "default.handlebars->25->1276", + "default.handlebars->25->1299", + "default.handlebars->25->443", + "default.handlebars->25->444", + "default.handlebars->25->594", + "default.handlebars->25->95", + "default.handlebars->25->952", + "default.handlebars->25->976", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] }, @@ -4962,8 +4968,8 @@ "pt": "Área de Trabalho", "ru": "Рабочий стол", "xloc": [ - "default.handlebars->23->1059", - "default.handlebars->23->409", + "default.handlebars->25->1062", + "default.handlebars->25->412", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop" ] @@ -4989,7 +4995,7 @@ "pt": "Notificação na área de trabalho", "ru": "Уведомление на рабочем столе", "xloc": [ - "default.handlebars->23->983" + "default.handlebars->25->986" ] }, { @@ -5001,7 +5007,7 @@ "pt": "Prompt da área de trabalho", "ru": "Запрос рабочего стола", "xloc": [ - "default.handlebars->23->982" + "default.handlebars->25->985" ] }, { @@ -5013,7 +5019,7 @@ "pt": "Prompt da área de trabalho + barra de ferramentas", "ru": "Запрос рабочего стола + панель инструментов", "xloc": [ - "default.handlebars->23->980" + "default.handlebars->25->983" ] }, { @@ -5025,7 +5031,7 @@ "pt": "Barra de ferramentas da área de trabalho", "ru": "Панель инструментов рабочего стола", "xloc": [ - "default.handlebars->23->981" + "default.handlebars->25->984" ] }, { @@ -5087,7 +5093,7 @@ "ru": "Действие устройства", "xloc": [ "default-mobile.handlebars->9->211", - "default.handlebars->23->533" + "default.handlebars->25->536" ] }, { @@ -5096,11 +5102,11 @@ "en": "Device Group", "nl": "Apparaat Groep", "xloc": [ - "default.handlebars->23->1076", - "default.handlebars->23->1078", - "default.handlebars->23->1290", - "default.handlebars->23->1364", - "default.handlebars->23->1370" + "default.handlebars->25->1079", + "default.handlebars->25->1081", + "default.handlebars->25->1293", + "default.handlebars->25->1367", + "default.handlebars->25->1373" ] }, { @@ -5113,7 +5119,7 @@ "ru": "Пользователь группы устройств", "xloc": [ "default-mobile.handlebars->9->331", - "default.handlebars->23->1126" + "default.handlebars->25->1129" ] }, { @@ -5126,10 +5132,10 @@ "ru": "Группы устройств", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->23->1262", - "default.handlebars->23->1275", - "default.handlebars->23->1330", - "default.handlebars->23->1403", + "default.handlebars->25->1265", + "default.handlebars->25->1278", + "default.handlebars->25->1333", + "default.handlebars->25->1406", "default.handlebars->container->column_l->p2->9" ] }, @@ -5142,7 +5148,7 @@ "pt": "Localização do dispositivo", "ru": "Местонахождение устройства", "xloc": [ - "default.handlebars->23->561" + "default.handlebars->25->564" ] }, { @@ -5155,8 +5161,8 @@ "ru": "Имя устройства", "xloc": [ "default-mobile.handlebars->9->222", - "default.handlebars->23->238", - "default.handlebars->23->589", + "default.handlebars->25->238", + "default.handlebars->25->592", "player.htm->3->9" ] }, @@ -5169,7 +5175,7 @@ "pt": "Notificação de dispositivo", "ru": "Уведомление устройства", "xloc": [ - "default.handlebars->23->524" + "default.handlebars->25->527" ] }, { @@ -5193,8 +5199,8 @@ "pt": "Conexões de dispositivos.", "ru": "Подключения устройства", "xloc": [ - "default.handlebars->23->1130", - "default.handlebars->23->917" + "default.handlebars->25->1133", + "default.handlebars->25->920" ] }, { @@ -5206,8 +5212,8 @@ "pt": "Desconexões de dispositivos.", "ru": "Отключения устройства", "xloc": [ - "default.handlebars->23->1131", - "default.handlebars->23->918" + "default.handlebars->25->1134", + "default.handlebars->25->921" ] }, { @@ -5219,7 +5225,7 @@ "pt": "As notas do grupo de dispositivos podem ser visualizadas e alteradas por outros administradores do grupo de dispositivos.", "ru": "Примечания группы устройств могут быть просмотрены и изменены другими администраторами группы устройств.", "xloc": [ - "default.handlebars->23->522" + "default.handlebars->25->525" ] }, { @@ -5231,7 +5237,7 @@ "pt": "O dispositivo foi detectado, mas não foi possível obter o estado de energia.", "ru": "Устройство обнаружено, но режим питания не может быть установлен.", "xloc": [ - "default.handlebars->23->361" + "default.handlebars->25->361" ] }, { @@ -5244,7 +5250,7 @@ "ru": "Устройство находится в спящем режиме (S4)", "xloc": [ "default-mobile.handlebars->9->118", - "default.handlebars->23->367" + "default.handlebars->25->367" ] }, { @@ -5257,7 +5263,7 @@ "ru": "Устройство находится в состоянии глубокого сна (S3)", "xloc": [ "default-mobile.handlebars->9->117", - "default.handlebars->23->366" + "default.handlebars->25->366" ] }, { @@ -5269,7 +5275,7 @@ "pt": "O dispositivo está no estado de suspensão profunda (S3).", "ru": "Устройство находится в состоянии глубокого сна (S3).", "xloc": [ - "default.handlebars->23->355" + "default.handlebars->25->355" ] }, { @@ -5281,7 +5287,7 @@ "pt": "O dispositivo está no estado de hibernação (S4).", "ru": "Устройство находится в режиме гибернации (S4).", "xloc": [ - "default.handlebars->23->357" + "default.handlebars->25->357" ] }, { @@ -5293,7 +5299,7 @@ "pt": "O dispositivo está no estado desligado (S5).", "ru": "Устройство находится в выключенном состоянии (S5).", "xloc": [ - "default.handlebars->23->359" + "default.handlebars->25->359" ] }, { @@ -5306,7 +5312,7 @@ "ru": "Устройство находится в спящем режиме (S1)", "xloc": [ "default-mobile.handlebars->9->115", - "default.handlebars->23->364" + "default.handlebars->25->364" ] }, { @@ -5318,7 +5324,7 @@ "pt": "O dispositivo está no estado de suspensão (S1).", "ru": "Устройство находится в спящем режиме (S1).", "xloc": [ - "default.handlebars->23->351" + "default.handlebars->25->351" ] }, { @@ -5331,7 +5337,7 @@ "ru": "Устройство находится в спящем режиме (S2)", "xloc": [ "default-mobile.handlebars->9->116", - "default.handlebars->23->365" + "default.handlebars->25->365" ] }, { @@ -5343,7 +5349,7 @@ "pt": "O dispositivo está no estado de suspensão (S2).", "ru": "Устройство находится в спящем режиме (S2).", "xloc": [ - "default.handlebars->23->353" + "default.handlebars->25->353" ] }, { @@ -5356,7 +5362,7 @@ "ru": "Устройство находится в выключенном состоянии (S5)", "xloc": [ "default-mobile.handlebars->9->119", - "default.handlebars->23->368" + "default.handlebars->25->368" ] }, { @@ -5369,7 +5375,7 @@ "ru": "Устройство работает", "xloc": [ "default-mobile.handlebars->9->114", - "default.handlebars->23->363" + "default.handlebars->25->363" ] }, { @@ -5381,7 +5387,7 @@ "pt": "O dispositivo está ligado.", "ru": "Устройство включено.", "xloc": [ - "default.handlebars->23->349" + "default.handlebars->25->349" ] }, { @@ -5394,7 +5400,7 @@ "ru": "Устройство присутствует, но состояние питания не может быть установлено", "xloc": [ "default-mobile.handlebars->9->120", - "default.handlebars->23->369" + "default.handlebars->25->369" ] }, { @@ -5406,7 +5412,7 @@ "pt": "Nome do dispositivo", "ru": "Имя устройства", "xloc": [ - "default.handlebars->23->421" + "default.handlebars->25->424" ] }, { @@ -5418,7 +5424,7 @@ "pt": "DeviceCheckbox", "ru": "DeviceCheckbox", "xloc": [ - "default.handlebars->23->394" + "default.handlebars->25->394" ] }, { @@ -5430,7 +5436,7 @@ "pt": "Desativado", "ru": "Отключено", "xloc": [ - "default.handlebars->23->467" + "default.handlebars->25->470" ] }, { @@ -5444,8 +5450,8 @@ "xloc": [ "default-mobile.handlebars->9->237", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->23->638", - "default.handlebars->23->993", + "default.handlebars->25->641", + "default.handlebars->25->996", "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" @@ -5476,11 +5482,11 @@ "default-mobile.handlebars->9->1", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status", - "default.handlebars->23->193", - "default.handlebars->23->210", - "default.handlebars->23->213", - "default.handlebars->23->219", - "default.handlebars->23->8", + "default.handlebars->25->193", + "default.handlebars->25->210", + "default.handlebars->25->213", + "default.handlebars->25->219", + "default.handlebars->25->8", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3->p13Status", @@ -5505,7 +5511,7 @@ "en": "Display device group name", "nl": "Toon apparaatgroepsnaam", "xloc": [ - "default.handlebars->23->916" + "default.handlebars->25->919" ] }, { @@ -5517,7 +5523,7 @@ "pt": "Mostrar nome", "ru": "Показать имя", "xloc": [ - "default.handlebars->23->609" + "default.handlebars->25->612" ] }, { @@ -5529,7 +5535,7 @@ "pt": "Fazer nada", "ru": "Ничего не делать", "xloc": [ - "default.handlebars->23->1038" + "default.handlebars->25->1041" ] }, { @@ -5554,8 +5560,8 @@ "pt": "Não configure", "ru": "Не настраивать", "xloc": [ - "default.handlebars->23->1042", - "default.handlebars->23->1047" + "default.handlebars->25->1045", + "default.handlebars->25->1050" ] }, { @@ -5567,7 +5573,7 @@ "pt": "Não conecte ao servidor", "ru": "Не подключаться к серверу", "xloc": [ - "default.handlebars->23->1043" + "default.handlebars->25->1046" ] }, { @@ -5607,7 +5613,7 @@ "ru": "Скачать файл", "xloc": [ "default-mobile.handlebars->9->270", - "default.handlebars->23->667" + "default.handlebars->25->670" ] }, { @@ -5619,7 +5625,7 @@ "pt": "Faça o download do MeshCentral Router, uma ferramenta de mapeamento de portas TCP.", "ru": "Скачать MeshCentral Router, инструмент сопоставления TCP портов.", "xloc": [ - "default.handlebars->23->208" + "default.handlebars->25->208" ] }, { @@ -5631,7 +5637,7 @@ "pt": "Baixar MeshCmd", "ru": "Скачать MeshCmd", "xloc": [ - "default.handlebars->23->580" + "default.handlebars->25->583" ] }, { @@ -5643,7 +5649,7 @@ "pt": "Faça o download do MeshCmd, uma ferramenta de linha de comando que executa muitas funções.", "ru": "Скачать MeshCmd, инструмент командной строки, выполняющий множество функций.", "xloc": [ - "default.handlebars->23->206" + "default.handlebars->25->206" ] }, { @@ -5661,7 +5667,7 @@ "en": "Download \\\"meshcmd\\\" with an action file to route traffic thru this server to this device. Make sure to edit meshaction.txt and add your account password or make any changes needed.", "nl": "Download \\\"meshcmd\\\" met het actiebestand om verkeer via deze server naar dit apparaat te leiden. Zorg ervoor dat u meshaction.txt bewerkt en uw accountwachtwoord toevoegt of breng de nodige wijzigingen aan.", "xloc": [ - "default.handlebars->23->573" + "default.handlebars->25->576" ] }, { @@ -5697,7 +5703,7 @@ "pt": "Baixar log de erro", "ru": "Скачать журнал ошибок", "xloc": [ - "default.handlebars->23->118" + "default.handlebars->25->118" ] }, { @@ -5709,7 +5715,7 @@ "pt": "Download de eventos de energia", "ru": "Скачать события состояния питания", "xloc": [ - "default.handlebars->23->535" + "default.handlebars->25->538" ] }, { @@ -5745,7 +5751,7 @@ "pt": "Faça o download da lista de eventos com um dos formatos de arquivo abaixo.", "ru": "Скачать список событий с одним из форматов файлов ниже.", "xloc": [ - "default.handlebars->23->1184" + "default.handlebars->25->1187" ] }, { @@ -5757,7 +5763,7 @@ "pt": "Baixe a lista de usuários com um dos formatos de arquivo abaixo.", "ru": "Скачать список пользователей с одним из форматов файлов ниже.", "xloc": [ - "default.handlebars->23->1223" + "default.handlebars->25->1226" ] }, { @@ -5815,7 +5821,7 @@ "en": "Duplicate Agent", "nl": "Duplicaat Agent", "xloc": [ - "default.handlebars->23->1399" + "default.handlebars->25->1402" ] }, { @@ -5833,7 +5839,7 @@ "en": "Duplicate User Group", "nl": "Dupliceer Gebruikers Groep", "xloc": [ - "default.handlebars->23->1268" + "default.handlebars->25->1271" ] }, { @@ -5857,7 +5863,7 @@ "pt": "Durante a ativação, o agente terá acesso às informações da senha do administrador.", "ru": "Во время активации агент будет иметь доступ к информации пароля администратора.", "xloc": [ - "default.handlebars->23->1052" + "default.handlebars->25->1055" ] }, { @@ -5869,7 +5875,7 @@ "pt": "Holandês (belga)", "ru": "Голландский (Бельгийский)", "xloc": [ - "default.handlebars->23->758" + "default.handlebars->25->761" ] }, { @@ -5881,7 +5887,7 @@ "pt": "Holandês (padrão)", "ru": "Голландский (Стандартный)", "xloc": [ - "default.handlebars->23->757" + "default.handlebars->25->760" ] }, { @@ -5894,7 +5900,7 @@ "pt": "ERRO:", "ru": "ОШИБКА:", "xloc": [ - "default.handlebars->23->153" + "default.handlebars->25->153" ] }, { @@ -5907,7 +5913,7 @@ "pt": "ERRO: Não foi possível adicionar a chave.", "ru": "ОШИБКА: Невозможно добавить ключ.", "xloc": [ - "default.handlebars->23->149" + "default.handlebars->25->149" ] }, { @@ -5944,7 +5950,7 @@ "ru": "Редактировать устройство", "xloc": [ "default-mobile.handlebars->9->227", - "default.handlebars->23->594" + "default.handlebars->25->597" ] }, { @@ -5959,9 +5965,9 @@ "default-mobile.handlebars->9->291", "default-mobile.handlebars->9->293", "default-mobile.handlebars->9->311", - "default.handlebars->23->1058", - "default.handlebars->23->1082", - "default.handlebars->23->1105" + "default.handlebars->25->1061", + "default.handlebars->25->1085", + "default.handlebars->25->1108" ] }, { @@ -5973,7 +5979,7 @@ "pt": "Editar recursos do grupo de dispositivos", "ru": "Редактировать функции группы устройств", "xloc": [ - "default.handlebars->23->1072" + "default.handlebars->25->1075" ] }, { @@ -5982,7 +5988,7 @@ "en": "Edit Device Group Permissions", "nl": "Bewerk apparaatgroep rechten", "xloc": [ - "default.handlebars->23->1102" + "default.handlebars->25->1105" ] }, { @@ -5994,7 +6000,7 @@ "pt": "Editar consentimento do usuário do grupo de dispositivos", "ru": "Редактировать согласие пользователя группы устройств", "xloc": [ - "default.handlebars->23->1069" + "default.handlebars->25->1072" ] }, { @@ -6007,7 +6013,7 @@ "ru": "Редактировать примечания устройства", "xloc": [ "default-mobile.handlebars->9->305", - "default.handlebars->23->1094" + "default.handlebars->25->1097" ] }, { @@ -6020,9 +6026,9 @@ "ru": "Редактировать учетные данные Intel® AMT", "xloc": [ "default-mobile.handlebars->9->217", - "default.handlebars->23->455", - "default.handlebars->23->458", - "default.handlebars->23->542" + "default.handlebars->25->458", + "default.handlebars->25->461", + "default.handlebars->25->545" ] }, { @@ -6036,7 +6042,7 @@ "ru": "Редактировать примечания", "xloc": [ "default-mobile.handlebars->9->318", - "default.handlebars->23->1112" + "default.handlebars->25->1115" ] }, { @@ -6048,7 +6054,7 @@ "pt": "Editar permissões do grupo de dispositivos do usuário", "ru": "Редактировать права потребителя группы устройств", "xloc": [ - "default.handlebars->23->1103" + "default.handlebars->25->1106" ] }, { @@ -6057,7 +6063,7 @@ "en": "Edit User Group", "nl": "Bewerk de gebruikersgroep", "xloc": [ - "default.handlebars->23->1297" + "default.handlebars->25->1300" ] }, { @@ -6082,11 +6088,11 @@ "ru": "Эл. почта", "xloc": [ "default-mobile.handlebars->9->37", - "default.handlebars->23->1235", - "default.handlebars->23->1317", - "default.handlebars->23->1318", - "default.handlebars->23->1346", - "default.handlebars->23->283" + "default.handlebars->25->1238", + "default.handlebars->25->1320", + "default.handlebars->25->1321", + "default.handlebars->25->1349", + "default.handlebars->25->283" ] }, { @@ -6099,7 +6105,7 @@ "ru": "Изменение адреса эл. почты", "xloc": [ "default-mobile.handlebars->9->38", - "default.handlebars->23->925" + "default.handlebars->25->928" ] }, { @@ -6112,7 +6118,7 @@ "ru": "Подтверждение эл. почты", "xloc": [ "default-mobile.handlebars->9->36", - "default.handlebars->23->923" + "default.handlebars->25->926" ] }, { @@ -6124,7 +6130,7 @@ "pt": "O email foi verificado", "ru": "Ел. почта подтверждена", "xloc": [ - "default.handlebars->23->1314" + "default.handlebars->25->1317" ] }, { @@ -6136,7 +6142,7 @@ "pt": "O email foi verificado.", "ru": "Ел. почта подтверждена.", "xloc": [ - "default.handlebars->23->1241" + "default.handlebars->25->1244" ] }, { @@ -6148,7 +6154,7 @@ "pt": "Email não verificado", "ru": "Ел. почта не подтверждена", "xloc": [ - "default.handlebars->23->1315" + "default.handlebars->25->1318" ] }, { @@ -6213,7 +6219,7 @@ "pt": "Inglês", "ru": "Английский", "xloc": [ - "default.handlebars->23->759" + "default.handlebars->25->762" ] }, { @@ -6225,7 +6231,7 @@ "pt": "Inglês (Austrália)", "ru": "Английский (Австралия)", "xloc": [ - "default.handlebars->23->760" + "default.handlebars->25->763" ] }, { @@ -6237,7 +6243,7 @@ "pt": "Inglês (Belize)", "ru": "Английский (Белиз)", "xloc": [ - "default.handlebars->23->761" + "default.handlebars->25->764" ] }, { @@ -6249,7 +6255,7 @@ "pt": "Inglês (Canadá)", "ru": "Английский (Канада)", "xloc": [ - "default.handlebars->23->762" + "default.handlebars->25->765" ] }, { @@ -6261,7 +6267,7 @@ "pt": "Inglês (Irlanda)", "ru": "Английский (Ирландия)", "xloc": [ - "default.handlebars->23->763" + "default.handlebars->25->766" ] }, { @@ -6273,7 +6279,7 @@ "pt": "Inglês (Jamaica)", "ru": "Английский (Ямайка)", "xloc": [ - "default.handlebars->23->764" + "default.handlebars->25->767" ] }, { @@ -6285,7 +6291,7 @@ "pt": "Inglês (Nova Zelândia)", "ru": "Английский (Новая Зеландия)", "xloc": [ - "default.handlebars->23->765" + "default.handlebars->25->768" ] }, { @@ -6297,7 +6303,7 @@ "pt": "Inglês (Filipinas)", "ru": "Английский (Филиппины)", "xloc": [ - "default.handlebars->23->766" + "default.handlebars->25->769" ] }, { @@ -6309,7 +6315,7 @@ "pt": "Inglês (África do Sul)", "ru": "Английский (Южная Африка)", "xloc": [ - "default.handlebars->23->767" + "default.handlebars->25->770" ] }, { @@ -6321,7 +6327,7 @@ "pt": "Inglês (Trinidad Tobago)", "ru": "Английский (Тринидад и Тобаго)", "xloc": [ - "default.handlebars->23->768" + "default.handlebars->25->771" ] }, { @@ -6334,7 +6340,7 @@ "pt": "Inglês (Reino Unido)", "ru": "Английский (Великобритания)", "xloc": [ - "default.handlebars->23->769" + "default.handlebars->25->772" ] }, { @@ -6347,7 +6353,7 @@ "pt": "Inglês (Estados Unidos)", "ru": "Английский (Соединенные Штаты)", "xloc": [ - "default.handlebars->23->770" + "default.handlebars->25->773" ] }, { @@ -6360,7 +6366,7 @@ "pt": "Inglês (Zimbábue)", "ru": "Английский (Зимбабве)", "xloc": [ - "default.handlebars->23->771" + "default.handlebars->25->774" ] }, { @@ -6372,8 +6378,8 @@ "pt": "Entrar", "ru": "Ввод", "xloc": [ - "default.handlebars->23->951", - "default.handlebars->23->952" + "default.handlebars->25->954", + "default.handlebars->25->955" ] }, { @@ -6385,7 +6391,7 @@ "pt": "Insira uma lista separada por vírgulas de nomes de regiões administrativas.", "ru": "Введите разделенный запятыми список имен административных областей.", "xloc": [ - "default.handlebars->23->1245" + "default.handlebars->25->1248" ] }, { @@ -6397,7 +6403,7 @@ "pt": "Digite um intervalo de endereços IP para procurar dispositivos Intel AMT.", "ru": "Введите диапазон IP-адресов для сканирования Intel AMT устройств.", "xloc": [ - "default.handlebars->23->253" + "default.handlebars->25->253" ] }, { @@ -6409,7 +6415,7 @@ "pt": "Digite o texto e clique em OK para digitá-lo remotamente usando um teclado em inglês dos EUA.Certifique-se de colocar o cursor remoto na posição correta antes de continuar.", "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что дистанционный курсор установлен в правильное положение.", "xloc": [ - "default.handlebars->23->604" + "default.handlebars->25->607" ] }, { @@ -6434,7 +6440,7 @@ "pt": "Digite o token aqui para o login em duas etapas:", "ru": "Для двухэтапного входа в систему введите токен здесь:", "xloc": [ - "default.handlebars->23->121" + "default.handlebars->25->121" ] }, { @@ -6446,7 +6452,7 @@ "pt": "Erro, não foi possível adicionar a chave.", "ru": "Ошибка, Невозможно добавить код.", "xloc": [ - "default.handlebars->23->147" + "default.handlebars->25->147" ] }, { @@ -6470,7 +6476,7 @@ "pt": "Esperanto", "ru": "Эсперанто", "xloc": [ - "default.handlebars->23->772" + "default.handlebars->25->775" ] }, { @@ -6482,7 +6488,7 @@ "pt": "Estoniano", "ru": "Эстонский", "xloc": [ - "default.handlebars->23->773" + "default.handlebars->25->776" ] }, { @@ -6494,7 +6500,7 @@ "pt": "Detalhes do evento", "ru": "Детайли события", "xloc": [ - "default.handlebars->23->680" + "default.handlebars->25->683" ] }, { @@ -6506,7 +6512,7 @@ "pt": "Exportação da lista de eventos", "ru": "Экспорт списка событий", "xloc": [ - "default.handlebars->23->1189" + "default.handlebars->25->1192" ] }, { @@ -6559,7 +6565,7 @@ "pt": "ASCII estendido", "ru": "Расширенный ASCII", "xloc": [ - "default.handlebars->23->629" + "default.handlebars->25->632" ] }, { @@ -6580,7 +6586,7 @@ "en": "External", "nl": "Extern", "xloc": [ - "default.handlebars->23->1423" + "default.handlebars->25->1426" ] }, { @@ -6593,7 +6599,7 @@ "pt": "FYRO Macedonian", "ru": "Mакедонский (БЮР)", "xloc": [ - "default.handlebars->23->823" + "default.handlebars->25->826" ] }, { @@ -6605,7 +6611,7 @@ "pt": "O servidor remoto retornou um erro: (429) Too Many Requests.", "ru": "Фарерский", "xloc": [ - "default.handlebars->23->774" + "default.handlebars->25->777" ] }, { @@ -6618,7 +6624,7 @@ "pt": "Falhou", "ru": "Не удалось", "xloc": [ - "default.handlebars->23->85" + "default.handlebars->25->85" ] }, { @@ -6631,7 +6637,7 @@ "pt": "Persa (persa)", "ru": "Фарси (Персидский)", "xloc": [ - "default.handlebars->23->775" + "default.handlebars->25->778" ] }, { @@ -6657,7 +6663,7 @@ "pt": "Recursos", "ru": "Функции", "xloc": [ - "default.handlebars->23->979" + "default.handlebars->25->982" ] }, { @@ -6669,7 +6675,7 @@ "pt": "Fijiano", "ru": "Фиджи", "xloc": [ - "default.handlebars->23->776" + "default.handlebars->25->779" ] }, { @@ -6683,7 +6689,7 @@ "ru": "Редактор файлов", "xloc": [ "default-mobile.handlebars->9->254", - "default.handlebars->23->652" + "default.handlebars->25->655" ] }, { @@ -6708,7 +6714,7 @@ "pt": "Driver do sistema de arquivos", "ru": "Драйвер файловой системы", "xloc": [ - "default.handlebars->23->612" + "default.handlebars->25->615" ] }, { @@ -6721,7 +6727,7 @@ "pt": "Arquivos", "ru": "Файлы", "xloc": [ - "default.handlebars->23->1066", + "default.handlebars->25->1069", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" ] @@ -6748,7 +6754,7 @@ "pt": "Notificação arquivos", "ru": "Уведомление файлов", "xloc": [ - "default.handlebars->23->987" + "default.handlebars->25->990" ] }, { @@ -6760,7 +6766,7 @@ "pt": "Arquivos do prompt", "ru": "Запрос файлов", "xloc": [ - "default.handlebars->23->986" + "default.handlebars->25->989" ] }, { @@ -6787,7 +6793,7 @@ "pt": "Finlandês", "ru": "Финский", "xloc": [ - "default.handlebars->23->777" + "default.handlebars->25->780" ] }, { @@ -6842,8 +6848,8 @@ "pt": "Forçar redefinição de senha no próximo login.", "ru": "Принудительно сбросить пароль при следующем входе в систему.", "xloc": [ - "default.handlebars->23->1239", - "default.handlebars->23->1353" + "default.handlebars->25->1242", + "default.handlebars->25->1356" ] }, { @@ -6906,8 +6912,8 @@ "pt": "Livre", "ru": "Свободно", "xloc": [ - "default.handlebars->23->1384", - "default.handlebars->23->1386" + "default.handlebars->25->1387", + "default.handlebars->25->1389" ] }, { @@ -6920,7 +6926,7 @@ "ru": "FreeBSD x86-64", "xloc": [ "default-mobile.handlebars->9->173", - "default.handlebars->23->43" + "default.handlebars->25->43" ] }, { @@ -6933,7 +6939,7 @@ "pt": "Francês (Bélgica)", "ru": "Французский (Бельгия)", "xloc": [ - "default.handlebars->23->779" + "default.handlebars->25->782" ] }, { @@ -6946,7 +6952,7 @@ "pt": "Francês (Canadá)", "ru": "Французский (Канада)", "xloc": [ - "default.handlebars->23->780" + "default.handlebars->25->783" ] }, { @@ -6959,7 +6965,7 @@ "pt": "Francês (França)", "ru": "Французский (Франция)", "xloc": [ - "default.handlebars->23->781" + "default.handlebars->25->784" ] }, { @@ -6972,7 +6978,7 @@ "pt": "Francês (Luxemburgo)", "ru": "Французский (Люксембург)", "xloc": [ - "default.handlebars->23->782" + "default.handlebars->25->785" ] }, { @@ -6985,7 +6991,7 @@ "pt": "Francês (Mônaco)", "ru": "Французский (Монако)", "xloc": [ - "default.handlebars->23->783" + "default.handlebars->25->786" ] }, { @@ -6998,7 +7004,7 @@ "pt": "Francês (Padrão)", "ru": "Французский (Стандартный)", "xloc": [ - "default.handlebars->23->778" + "default.handlebars->25->781" ] }, { @@ -7011,7 +7017,7 @@ "pt": "Francês (Suíça)", "ru": "Французский (Швейцария)", "xloc": [ - "default.handlebars->23->784" + "default.handlebars->25->787" ] }, { @@ -7024,7 +7030,7 @@ "pt": "Frísio", "ru": "Фризский", "xloc": [ - "default.handlebars->23->785" + "default.handlebars->25->788" ] }, { @@ -7037,7 +7043,7 @@ "pt": "Friuliano", "ru": "Фриульский", "xloc": [ - "default.handlebars->23->786" + "default.handlebars->25->789" ] }, { @@ -7054,9 +7060,9 @@ "default-mobile.handlebars->9->292", "default-mobile.handlebars->9->310", "default-mobile.handlebars->9->64", - "default.handlebars->23->1081", - "default.handlebars->23->1250", - "default.handlebars->23->958" + "default.handlebars->25->1084", + "default.handlebars->25->1253", + "default.handlebars->25->961" ] }, { @@ -7069,7 +7075,7 @@ "pt": "Administrador Pleno (todos os direitos)", "ru": "Администратор с полным доступом (все права)", "xloc": [ - "default.handlebars->23->1104" + "default.handlebars->25->1107" ] }, { @@ -7078,9 +7084,9 @@ "en": "Full Device Group Administrator", "nl": "Volledige apparaatgroep beheerder", "xloc": [ - "default.handlebars->23->1021", - "default.handlebars->23->1287", - "default.handlebars->23->1361" + "default.handlebars->25->1024", + "default.handlebars->25->1290", + "default.handlebars->25->1364" ] }, { @@ -7107,7 +7113,7 @@ "pt": "Administrador completo", "ru": "Администратор с полным доступом", "xloc": [ - "default.handlebars->23->1310" + "default.handlebars->25->1313" ] }, { @@ -7120,7 +7126,7 @@ "pt": "Gaélico (irlandês)", "ru": "Гэльский (Ирландский)", "xloc": [ - "default.handlebars->23->788" + "default.handlebars->25->791" ] }, { @@ -7133,7 +7139,7 @@ "pt": "Gaélico (escocês)", "ru": "Гэльский (Шотландия)", "xloc": [ - "default.handlebars->23->787" + "default.handlebars->25->790" ] }, { @@ -7146,7 +7152,7 @@ "pt": "Galego", "ru": "Галицкий", "xloc": [ - "default.handlebars->23->789" + "default.handlebars->25->792" ] }, { @@ -7159,7 +7165,7 @@ "pt": "Gateway MAC", "ru": "MAC шлюза", "xloc": [ - "default.handlebars->23->106" + "default.handlebars->25->106" ] }, { @@ -7203,7 +7209,7 @@ "pt": "Informações gerais", "ru": "Общая информация", "xloc": [ - "default.handlebars->23->408" + "default.handlebars->25->411" ] }, { @@ -7216,7 +7222,7 @@ "pt": "Gere novos tokens", "ru": "Генерация новых токенов", "xloc": [ - "default.handlebars->23->135" + "default.handlebars->25->135" ] }, { @@ -7229,7 +7235,7 @@ "pt": "Georgiano", "ru": "Грузинский", "xloc": [ - "default.handlebars->23->790" + "default.handlebars->25->793" ] }, { @@ -7241,7 +7247,7 @@ "pt": "Alemão (Áustria)", "ru": "Немецкий (Австрия)", "xloc": [ - "default.handlebars->23->792" + "default.handlebars->25->795" ] }, { @@ -7253,7 +7259,7 @@ "pt": "Alemão (Alemanha)", "ru": "Немецкий (Германия)", "xloc": [ - "default.handlebars->23->793" + "default.handlebars->25->796" ] }, { @@ -7265,7 +7271,7 @@ "pt": "Alemão (Liechtenstein)", "ru": "Немецкий (Лихтенштейн)", "xloc": [ - "default.handlebars->23->794" + "default.handlebars->25->797" ] }, { @@ -7277,7 +7283,7 @@ "pt": "Alemão (Luxemburgo)", "ru": "Немецкий (Люксембург)", "xloc": [ - "default.handlebars->23->795" + "default.handlebars->25->798" ] }, { @@ -7289,7 +7295,7 @@ "pt": "Alemão (Padrão)", "ru": "Немецкий (Стандартный)", "xloc": [ - "default.handlebars->23->791" + "default.handlebars->25->794" ] }, { @@ -7301,7 +7307,7 @@ "pt": "Alemão (Suíça)", "ru": "German (Switzerland)", "xloc": [ - "default.handlebars->23->796" + "default.handlebars->25->799" ] }, { @@ -7313,7 +7319,7 @@ "pt": "Obtenha credenciais de login do MQTT para este dispositivo.", "ru": "Получить MQTT учетные данные для этого устройства.", "xloc": [ - "default.handlebars->23->508" + "default.handlebars->25->511" ] }, { @@ -7354,7 +7360,7 @@ "pt": "Bom", "ru": "Хорошо", "xloc": [ - "default.handlebars->23->954" + "default.handlebars->25->957" ] }, { @@ -7383,7 +7389,7 @@ "pt": "Grego", "ru": "Греческий", "xloc": [ - "default.handlebars->23->797" + "default.handlebars->25->800" ] }, { @@ -7397,7 +7403,7 @@ "ru": "Группа", "xloc": [ "default-mobile.handlebars->9->134", - "default.handlebars->23->433", + "default.handlebars->25->436", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, @@ -7411,7 +7417,7 @@ "pt": "Ações do grupo", "ru": "Групповое действие", "xloc": [ - "default.handlebars->23->393", + "default.handlebars->25->393", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar" ] }, @@ -7421,7 +7427,7 @@ "en": "Group Members", "nl": "Groeps leden", "xloc": [ - "default.handlebars->23->1279" + "default.handlebars->25->1282" ] }, { @@ -7434,7 +7440,7 @@ "pt": "Permissões de grupo para o usuário {0}.", "ru": "Групповые права для потребителя {0}.", "xloc": [ - "default.handlebars->23->1080" + "default.handlebars->25->1083" ] }, { @@ -7443,7 +7449,7 @@ "en": "Group permissions for {0}.", "nl": "Groepsrechten voor {0}.", "xloc": [ - "default.handlebars->23->1079" + "default.handlebars->25->1082" ] }, { @@ -7465,7 +7471,7 @@ "en": "Groups", "nl": "Groepen", "xloc": [ - "default.handlebars->23->1194", + "default.handlebars->25->1197", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups" ] }, @@ -7479,7 +7485,7 @@ "pt": "Gujarati", "ru": "Гуджарати", "xloc": [ - "default.handlebars->23->798" + "default.handlebars->25->801" ] }, { @@ -7507,7 +7513,7 @@ "pt": "Haitiano", "ru": "Гаитянский", "xloc": [ - "default.handlebars->23->799" + "default.handlebars->25->802" ] }, { @@ -7533,7 +7539,7 @@ "pt": "Forçar desconexão do agente", "ru": "Жесткое отключение агента", "xloc": [ - "default.handlebars->23->696" + "default.handlebars->25->699" ] }, { @@ -7542,7 +7548,7 @@ "en": "Heap Total", "nl": "Heap Totaal", "xloc": [ - "default.handlebars->23->1425" + "default.handlebars->25->1428" ] }, { @@ -7551,7 +7557,7 @@ "en": "Heap Used", "nl": "Heap gebruikt", "xloc": [ - "default.handlebars->23->1424" + "default.handlebars->25->1427" ] }, { @@ -7563,7 +7569,7 @@ "pt": "Hebraico", "ru": "Иврит", "xloc": [ - "default.handlebars->23->800" + "default.handlebars->25->803" ] }, { @@ -7574,7 +7580,7 @@ "nl": "Help bij het vertalen van MeshCentral", "ru": "Помочь перевести MeshCentral", "xloc": [ - "default.handlebars->23->913" + "default.handlebars->25->916" ] }, { @@ -7589,8 +7595,8 @@ "xloc": [ "default-mobile.handlebars->9->104", "default-mobile.handlebars->9->111", - "default.handlebars->23->358", - "default.handlebars->23->5" + "default.handlebars->25->358", + "default.handlebars->25->5" ] }, { @@ -7602,7 +7608,7 @@ "pt": "Hindi", "ru": "Хинди", "xloc": [ - "default.handlebars->23->801" + "default.handlebars->25->804" ] }, { @@ -7628,7 +7634,7 @@ "ru": "Задержана 1 запись для копирования", "xloc": [ "default-mobile.handlebars->9->263", - "default.handlebars->23->661" + "default.handlebars->25->664" ] }, { @@ -7641,7 +7647,7 @@ "ru": "Задержана 1 запись для перемещения", "xloc": [ "default-mobile.handlebars->9->267", - "default.handlebars->23->665" + "default.handlebars->25->668" ] }, { @@ -7654,7 +7660,7 @@ "ru": "Задержана/о {0} запись/ей для копирования", "xloc": [ "default-mobile.handlebars->9->261", - "default.handlebars->23->659" + "default.handlebars->25->662" ] }, { @@ -7667,7 +7673,7 @@ "ru": "Задержана/о {0} запись/ей для перемещения", "xloc": [ "default-mobile.handlebars->9->265", - "default.handlebars->23->663" + "default.handlebars->25->666" ] }, { @@ -7680,7 +7686,7 @@ "ru": "Задержанa/о {0} запись/ей {1} для {2}", "xloc": [ "default-mobile.handlebars->9->88", - "default.handlebars->23->1176" + "default.handlebars->25->1179" ] }, { @@ -7696,11 +7702,11 @@ "default-mobile.handlebars->9->137", "default-mobile.handlebars->9->139", "default-mobile.handlebars->9->223", - "default.handlebars->23->239", - "default.handlebars->23->435", - "default.handlebars->23->436", - "default.handlebars->23->438", - "default.handlebars->23->590" + "default.handlebars->25->239", + "default.handlebars->25->438", + "default.handlebars->25->439", + "default.handlebars->25->441", + "default.handlebars->25->593" ] }, { @@ -7712,7 +7718,7 @@ "pt": "Sincronização de nome de host", "ru": "Синхронизация имени хоста", "xloc": [ - "default.handlebars->23->977" + "default.handlebars->25->980" ] }, { @@ -7724,7 +7730,7 @@ "pt": "Húngaro", "ru": "Венгерский", "xloc": [ - "default.handlebars->23->802" + "default.handlebars->25->805" ] }, { @@ -7736,7 +7742,7 @@ "pt": "IP Range", "ru": "IP диапазон", "xloc": [ - "default.handlebars->23->254" + "default.handlebars->25->254" ] }, { @@ -7760,7 +7766,7 @@ "pt": "Endereço IPv4", "ru": "IPv4 адрес", "xloc": [ - "default.handlebars->23->100" + "default.handlebars->25->100" ] }, { @@ -7772,7 +7778,7 @@ "pt": "Gateway IPv4", "ru": "IPv4 шлюз", "xloc": [ - "default.handlebars->23->104" + "default.handlebars->25->104" ] }, { @@ -7784,7 +7790,7 @@ "pt": "Máscara IPv4", "ru": "IPv4 маска", "xloc": [ - "default.handlebars->23->102" + "default.handlebars->25->102" ] }, { @@ -7797,7 +7803,7 @@ "pt": "islandês", "ru": "Исландский", "xloc": [ - "default.handlebars->23->803" + "default.handlebars->25->806" ] }, { @@ -7811,7 +7817,7 @@ "ru": "Выбор иконки", "xloc": [ "default-mobile.handlebars->9->221", - "default.handlebars->23->588" + "default.handlebars->25->591" ] }, { @@ -7824,7 +7830,7 @@ "pt": "Identificador", "ru": "Идентификатор", "xloc": [ - "default.handlebars->23->74" + "default.handlebars->25->74" ] }, { @@ -7848,7 +7854,7 @@ "pt": "Indonésia", "ru": "Индонезийский", "xloc": [ - "default.handlebars->23->804" + "default.handlebars->25->807" ] }, { @@ -7900,7 +7906,7 @@ "pt": "Instalar", "ru": "Установка", "xloc": [ - "default.handlebars->23->1016" + "default.handlebars->25->1019" ] }, { @@ -7910,7 +7916,7 @@ "ja": "インストール Google Authenticator または互換性のあるアプリケーションでバーコードをスキャンするには、このリンクを使用するか、秘密。次に、現在の6桁のトークンを入力して、2段階ログインを有効にします。", "nl": "Installeer Google Authenticator of een compatibele applicatie en scan de streepjescode, gebruik deze link of voer de link in geheim. Voer vervolgens het huidige 6-cijferige token hieronder in om 2-staps aanmelding te activeren.", "xloc": [ - "default.handlebars->23->120" + "default.handlebars->25->120" ] }, { @@ -7933,7 +7939,7 @@ "pt": "Instalar CIRA", "ru": "Установка CIRA", "xloc": [ - "default.handlebars->23->1008" + "default.handlebars->25->1011" ] }, { @@ -7945,7 +7951,7 @@ "pt": "Instalação local", "ru": "Локальная установка", "xloc": [ - "default.handlebars->23->1010" + "default.handlebars->25->1013" ] }, { @@ -7957,8 +7963,8 @@ "pt": "Tipo de instalação ", "ru": "Тип установки", "xloc": [ - "default.handlebars->23->298", - "default.handlebars->23->320" + "default.handlebars->25->298", + "default.handlebars->25->320" ] }, { @@ -7970,7 +7976,7 @@ "pt": "Intel (F10 = ESC+[OM)", "ru": "Intel (F10 = ESC+[OM)", "xloc": [ - "default.handlebars->23->631", + "default.handlebars->25->634", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -7983,10 +7989,10 @@ "pt": "Intel AMT", "ru": "Intel AMT", "xloc": [ - "default.handlebars->23->1136", - "default.handlebars->23->1142", - "default.handlebars->23->1421", - "default.handlebars->23->1441" + "default.handlebars->25->1139", + "default.handlebars->25->1145", + "default.handlebars->25->1424", + "default.handlebars->25->1444" ] }, { @@ -7998,7 +8004,7 @@ "pt": "Intel AMT CIRA conectado", "ru": "Подключен Intel AMT CIRA", "xloc": [ - "default.handlebars->23->156" + "default.handlebars->25->156" ] }, { @@ -8010,7 +8016,7 @@ "pt": "Intel AMT CIRA desconectado", "ru": "Отключен Intel AMT CIRA", "xloc": [ - "default.handlebars->23->160" + "default.handlebars->25->160" ] }, { @@ -8023,7 +8029,7 @@ "pt": "Intel AMT detectado", "ru": "Обнаружен Intel AMT", "xloc": [ - "default.handlebars->23->155" + "default.handlebars->25->155" ] }, { @@ -8035,7 +8041,7 @@ "pt": "O Intel AMT é ativado no modo de controle de administrador", "ru": "Intel AMT активирован в режиме администратора", "xloc": [ - "default.handlebars->23->451" + "default.handlebars->25->454" ] }, { @@ -8047,7 +8053,7 @@ "pt": "O Intel AMT é ativado no modo de controle do cliente", "ru": "Intel AMT активирован в режиме клиента", "xloc": [ - "default.handlebars->23->449" + "default.handlebars->25->452" ] }, { @@ -8059,7 +8065,7 @@ "pt": "O Intel AMT está configurado com segurança de rede TLS", "ru": "Intel AMT настроен с TLS безопасностью сети", "xloc": [ - "default.handlebars->23->453" + "default.handlebars->25->456" ] }, { @@ -8072,7 +8078,7 @@ "pt": "Intel AMT não detectado", "ru": "Intel AMT не обнаружен", "xloc": [ - "default.handlebars->23->159" + "default.handlebars->25->159" ] }, { @@ -8084,7 +8090,7 @@ "pt": "A Intel AMT precisará ser configurada com um FQDN confiável na MEBx ou ter uma LAN com fio na rede:", "ru": "Intel AMT должен быть установлен с полностью определенным имемем домена(FQDN) в MEBx или иметь кабельное подключение к локальной сети:", "xloc": [ - "default.handlebars->23->251" + "default.handlebars->25->251" ] }, { @@ -8096,7 +8102,7 @@ "pt": "Intel ASCII", "ru": "Intel ASCII", "xloc": [ - "default.handlebars->23->630" + "default.handlebars->25->633" ] }, { @@ -8111,11 +8117,11 @@ "default-mobile.handlebars->9->123", "default-mobile.handlebars->9->187", "default-mobile.handlebars->9->192", - "default.handlebars->23->1002", - "default.handlebars->23->411", - "default.handlebars->23->461", - "default.handlebars->23->477", - "default.handlebars->23->994" + "default.handlebars->25->1005", + "default.handlebars->25->414", + "default.handlebars->25->464", + "default.handlebars->25->480", + "default.handlebars->25->997" ] }, { @@ -8128,7 +8134,7 @@ "ru": "Intel® AMT CIRA", "xloc": [ "default-mobile.handlebars->9->191", - "default.handlebars->23->475" + "default.handlebars->25->478" ] }, { @@ -8140,9 +8146,9 @@ "pt": "Intel® O AMT CIRA está conectado e pronto para uso.", "ru": "Intel® AMT CIRA подключен и готов к использованию.", "xloc": [ - "default.handlebars->23->185", - "default.handlebars->23->372", - "default.handlebars->23->474" + "default.handlebars->25->185", + "default.handlebars->25->372", + "default.handlebars->25->477" ] }, { @@ -8155,7 +8161,7 @@ "ru": "Intel® AMT Подключен", "xloc": [ "default-mobile.handlebars->9->5", - "default.handlebars->23->12", + "default.handlebars->25->12", "xterm.handlebars->9->5" ] }, @@ -8168,7 +8174,7 @@ "pt": "Intel® Política da AMT", "ru": "Политика Intel® AMT", "xloc": [ - "default.handlebars->23->1034" + "default.handlebars->25->1037" ] }, { @@ -8192,7 +8198,7 @@ "pt": "Intel® Tag AMT ", "ru": "Intel® AMT Тег", "xloc": [ - "default.handlebars->23->465" + "default.handlebars->25->468" ] }, { @@ -8216,8 +8222,8 @@ "pt": "Intel® Ativação AMT", "ru": "Активация Intel® AMT", "xloc": [ - "default.handlebars->23->249", - "default.handlebars->23->252" + "default.handlebars->25->249", + "default.handlebars->25->252" ] }, { @@ -8230,8 +8236,8 @@ "ru": "Intel® AMT подключен", "xloc": [ "default-mobile.handlebars->9->201", - "default.handlebars->23->512", - "default.handlebars->23->513" + "default.handlebars->25->515", + "default.handlebars->25->516" ] }, { @@ -8243,8 +8249,8 @@ "pt": "Intel® Área de trabalho AMT e eventos seriais.", "ru": "Настольные и серийные события Intel® AMT.", "xloc": [ - "default.handlebars->23->1132", - "default.handlebars->23->919" + "default.handlebars->25->1135", + "default.handlebars->25->922" ] }, { @@ -8257,8 +8263,8 @@ "ru": "Intel® AMT обнаружен", "xloc": [ "default-mobile.handlebars->9->202", - "default.handlebars->23->514", - "default.handlebars->23->515" + "default.handlebars->25->517", + "default.handlebars->25->518" ] }, { @@ -8270,7 +8276,7 @@ "pt": "Intel® O AMT é roteável e pronto para uso.", "ru": "Intel® AMT рутируется и готов к использованию.", "xloc": [ - "default.handlebars->23->476" + "default.handlebars->25->479" ] }, { @@ -8282,8 +8288,8 @@ "pt": "Intel® AMT é roteável.", "ru": "Intel® AMT рутируется.", "xloc": [ - "default.handlebars->23->187", - "default.handlebars->23->374" + "default.handlebars->25->187", + "default.handlebars->25->374" ] }, { @@ -8308,8 +8314,8 @@ "ru": "Только Intel® AMT, без агента", "xloc": [ "default-mobile.handlebars->9->274", - "default.handlebars->23->948", - "default.handlebars->23->970" + "default.handlebars->25->951", + "default.handlebars->25->973" ] }, { @@ -8321,7 +8327,7 @@ "pt": "Intel® Tecnologia de gerenciamento ativo", "ru": "Технология Intel® Active Management", "xloc": [ - "default.handlebars->23->460" + "default.handlebars->25->463" ] }, { @@ -8334,7 +8340,7 @@ "ru": "Intel® ME", "xloc": [ "default-mobile.handlebars->9->186", - "default.handlebars->23->459" + "default.handlebars->25->462" ] }, { @@ -8347,7 +8353,7 @@ "ru": "Intel® SM", "xloc": [ "default-mobile.handlebars->9->188", - "default.handlebars->23->463" + "default.handlebars->25->466" ] }, { @@ -8359,7 +8365,7 @@ "pt": "Intel® Gerenciamento padrão", "ru": "Intel® Standard Manageability", "xloc": [ - "default.handlebars->23->462" + "default.handlebars->25->465" ] }, { @@ -8427,7 +8433,7 @@ "pt": "Interativo", "ru": "undefined", "xloc": [ - "default.handlebars->23->613" + "default.handlebars->25->616" ] }, { @@ -8439,8 +8445,8 @@ "pt": "Apenas interativo", "ru": "Только интерактивный режим", "xloc": [ - "default.handlebars->23->301", - "default.handlebars->23->323" + "default.handlebars->25->301", + "default.handlebars->25->323" ] }, { @@ -8453,7 +8459,7 @@ "pt": "Interfaces", "ru": "Интерфейсы", "xloc": [ - "default.handlebars->23->495" + "default.handlebars->25->498" ] }, { @@ -8466,7 +8472,7 @@ "pt": "Inuktitut", "ru": "undefined", "xloc": [ - "default.handlebars->23->805" + "default.handlebars->25->808" ] }, { @@ -8475,7 +8481,7 @@ "en": "Invalid Device Group Type", "nl": "Ongeldige apparaatgroep type", "xloc": [ - "default.handlebars->23->1398" + "default.handlebars->25->1401" ] }, { @@ -8484,7 +8490,7 @@ "en": "Invalid JSON", "nl": "Onjuiste JSON", "xloc": [ - "default.handlebars->23->1392" + "default.handlebars->25->1395" ] }, { @@ -8496,8 +8502,8 @@ "pt": "Formato de arquivo JSON inválido.", "ru": "undefined", "xloc": [ - "default.handlebars->23->1220", - "default.handlebars->23->1222" + "default.handlebars->25->1223", + "default.handlebars->25->1225" ] }, { @@ -8508,7 +8514,7 @@ "nl": "Ongeldig JSON-bestand: {0}.", "pt": "Arquivo JSON inválido: {0}.", "xloc": [ - "default.handlebars->23->1218" + "default.handlebars->25->1221" ] }, { @@ -8517,7 +8523,7 @@ "en": "Invalid PKCS signature", "nl": "Onjuiste PKCS handtekening", "xloc": [ - "default.handlebars->23->1390" + "default.handlebars->25->1393" ] }, { @@ -8526,7 +8532,7 @@ "en": "Invalid RSA siguature", "nl": "Ongeldige RSA handtekening", "xloc": [ - "default.handlebars->23->1391" + "default.handlebars->25->1394" ] }, { @@ -8572,7 +8578,7 @@ "nl": "Uitnodigingslink ({0})", "pt": "Link de convite ({0})", "xloc": [ - "default.handlebars->23->174" + "default.handlebars->25->174" ] }, { @@ -8584,7 +8590,7 @@ "nl": "Type uitnodiging", "pt": "Tipo de convite", "xloc": [ - "default.handlebars->23->280" + "default.handlebars->25->280" ] }, { @@ -8597,9 +8603,9 @@ "pt": "Convite", "ru": "Пригласить", "xloc": [ - "default.handlebars->23->1018", - "default.handlebars->23->236", - "default.handlebars->23->313" + "default.handlebars->25->1021", + "default.handlebars->25->236", + "default.handlebars->25->313" ] }, { @@ -8611,7 +8617,7 @@ "nl": "Nodig iemand uit om de mesh-agent te installeren door een uitnodigingslink te delen. Deze koppeling verwijst de gebruiker naar installatie-instructies voor de apparaatgroep \\\"{0}\\\". De link is openbaar en er is geen account voor deze server nodig.", "pt": "Convide alguém para instalar o agente de malha compartilhando um link de convite.Este link indica ao usuário instruções de instalação para o grupo de dispositivos \\\"{0}\\\". O link é público e nenhuma conta para este servidor é necessária.", "xloc": [ - "default.handlebars->23->304" + "default.handlebars->25->304" ] }, { @@ -8624,8 +8630,8 @@ "pt": "Convide alguém para instalar o agente de malha nessa malha.", "ru": "Отправить приглашение на установку Mesh Агента", "xloc": [ - "default.handlebars->23->1017", - "default.handlebars->23->235" + "default.handlebars->25->1020", + "default.handlebars->25->235" ] }, { @@ -8637,7 +8643,7 @@ "nl": "Nodig iemand uit om de mesh-agent te installeren. Er wordt een e-mail verzonden met de link naar de installatie van de mesh-agent voor de apparaatgroep \\\"{0}\\\".", "pt": "Convide alguém para instalar o agente de malha.Um email será enviado com o link para a instalação do agente de malha para o grupo de dispositivos \\\"{0}\\\".", "xloc": [ - "default.handlebars->23->281" + "default.handlebars->25->281" ] }, { @@ -8650,7 +8656,7 @@ "pt": "Irish", "ru": "Ирландский", "xloc": [ - "default.handlebars->23->806" + "default.handlebars->25->809" ] }, { @@ -8663,7 +8669,7 @@ "pt": "Italiano (Padrão)", "ru": "Итальянский (Стандартный)", "xloc": [ - "default.handlebars->23->807" + "default.handlebars->25->810" ] }, { @@ -8676,7 +8682,7 @@ "pt": "Italiano (Suíça)", "ru": "Итальянский (Швейцария)", "xloc": [ - "default.handlebars->23->808" + "default.handlebars->25->811" ] }, { @@ -8689,8 +8695,8 @@ "pt": "Formato JSON", "ru": "Формат JSON", "xloc": [ - "default.handlebars->23->1187", - "default.handlebars->23->1226" + "default.handlebars->25->1190", + "default.handlebars->25->1229" ] }, { @@ -8703,7 +8709,7 @@ "pt": "japonês", "ru": "Японский", "xloc": [ - "default.handlebars->23->809" + "default.handlebars->25->812" ] }, { @@ -8715,7 +8721,7 @@ "pt": "Kannada", "ru": "Каннада", "xloc": [ - "default.handlebars->23->810" + "default.handlebars->25->813" ] }, { @@ -8727,7 +8733,7 @@ "pt": "Caxemira", "ru": "Кашмирский", "xloc": [ - "default.handlebars->23->811" + "default.handlebars->25->814" ] }, { @@ -8739,7 +8745,7 @@ "pt": "Cazaque", "ru": "Казахский", "xloc": [ - "default.handlebars->23->812" + "default.handlebars->25->815" ] }, { @@ -8751,7 +8757,7 @@ "pt": "KernelDriver", "ru": "Драйвер ядра", "xloc": [ - "default.handlebars->23->614" + "default.handlebars->25->617" ] }, { @@ -8764,8 +8770,8 @@ "pt": "Nome da chave", "ru": "Имя ключа", "xloc": [ - "default.handlebars->23->703", - "default.handlebars->23->706" + "default.handlebars->25->706", + "default.handlebars->25->709" ] }, { @@ -8790,7 +8796,7 @@ "pt": "Khmer", "ru": "Кхмерский", "xloc": [ - "default.handlebars->23->813" + "default.handlebars->25->816" ] }, { @@ -8802,7 +8808,7 @@ "pt": "Kirghiz", "ru": "Киргизский", "xloc": [ - "default.handlebars->23->814" + "default.handlebars->25->817" ] }, { @@ -8814,7 +8820,7 @@ "pt": "Klingon", "ru": "Клингонский", "xloc": [ - "default.handlebars->23->815" + "default.handlebars->25->818" ] }, { @@ -8827,7 +8833,7 @@ "pt": "coreano", "ru": "Korean", "xloc": [ - "default.handlebars->23->816" + "default.handlebars->25->819" ] }, { @@ -8840,7 +8846,7 @@ "pt": "Coreano (Coréia do Norte)", "ru": "Корейский (Северная Корея)", "xloc": [ - "default.handlebars->23->817" + "default.handlebars->25->820" ] }, { @@ -8853,7 +8859,7 @@ "pt": "Coreano (Coréia do Sul)", "ru": "Корейский (Южная Корея)", "xloc": [ - "default.handlebars->23->818" + "default.handlebars->25->821" ] }, { @@ -8864,8 +8870,8 @@ "pt": "LF", "ru": "LF", "xloc": [ - "default.handlebars->23->626", - "default.handlebars->23->635" + "default.handlebars->25->629", + "default.handlebars->25->638" ] }, { @@ -8878,7 +8884,7 @@ "pt": "Língua", "ru": "Язык", "xloc": [ - "default.handlebars->23->911" + "default.handlebars->25->914" ] }, { @@ -8904,7 +8910,7 @@ "pt": "Foco grande", "ru": "Большой Фокус", "xloc": [ - "default.handlebars->23->603" + "default.handlebars->25->606" ] }, { @@ -9047,7 +9053,7 @@ "pt": "Último acesso", "ru": "Последний доступ", "xloc": [ - "default.handlebars->23->1195" + "default.handlebars->25->1198" ] }, { @@ -9060,7 +9066,7 @@ "pt": "Último login", "ru": "Последний вход в систему", "xloc": [ - "default.handlebars->23->1322" + "default.handlebars->25->1325" ] }, { @@ -9073,9 +9079,9 @@ "pt": "Último endereço do agente", "ru": "Последние адрес агента", "xloc": [ - "default.handlebars->23->88", - "default.handlebars->23->89", - "default.handlebars->23->91" + "default.handlebars->25->88", + "default.handlebars->25->89", + "default.handlebars->25->91" ] }, { @@ -9088,7 +9094,7 @@ "pt": "Última conexão do agente", "ru": "Последнее подключение агента", "xloc": [ - "default.handlebars->23->87" + "default.handlebars->25->87" ] }, { @@ -9101,7 +9107,7 @@ "pt": "Última alteração: {0}", "ru": "Последнее изменение: {0}", "xloc": [ - "default.handlebars->23->1326" + "default.handlebars->25->1329" ] }, { @@ -9127,7 +9133,7 @@ "pt": "Última atualização de interfaces", "ru": "Последнее обновление интерфейсов", "xloc": [ - "default.handlebars->23->93" + "default.handlebars->25->93" ] }, { @@ -9139,7 +9145,7 @@ "pt": "Último login: {0}", "ru": "Последний вход в систему: {0}", "xloc": [ - "default.handlebars->23->1205" + "default.handlebars->25->1208" ] }, { @@ -9152,8 +9158,8 @@ "pt": "Visto pela última vez:", "ru": "Последнее посещение:", "xloc": [ - "default.handlebars->23->518", - "default.handlebars->23->83" + "default.handlebars->25->521", + "default.handlebars->25->83" ] }, { @@ -9191,7 +9197,7 @@ "pt": "Última versão", "ru": "Последняя версия", "xloc": [ - "default.handlebars->23->111" + "default.handlebars->25->111" ] }, { @@ -9204,7 +9210,7 @@ "pt": "Latim", "ru": "Латинский", "xloc": [ - "default.handlebars->23->819" + "default.handlebars->25->822" ] }, { @@ -9216,7 +9222,7 @@ "pt": "letão", "ru": "Латышский", "xloc": [ - "default.handlebars->23->820" + "default.handlebars->25->823" ] }, { @@ -9245,7 +9251,7 @@ "pt": "Menos", "ru": "Меньше", "xloc": [ - "default.handlebars->23->1455" + "default.handlebars->25->1458" ] }, { @@ -9271,7 +9277,7 @@ "ru": "Ограниченный ввод", "xloc": [ "default-mobile.handlebars->9->323", - "default.handlebars->23->1117" + "default.handlebars->25->1120" ] }, { @@ -9284,7 +9290,7 @@ "ru": "Только ограниченный ввод", "xloc": [ "default-mobile.handlebars->9->298", - "default.handlebars->23->1087" + "default.handlebars->25->1090" ] }, { @@ -9298,7 +9304,7 @@ "ru": "Ссылка", "xloc": [ "default-mobile.handlebars->9->68", - "default.handlebars->23->1148", + "default.handlebars->25->1151", "default.handlebars->container->column_l->p42->p42tbl->1->0->4" ] }, @@ -9312,8 +9318,8 @@ "pt": "Expiração do link", "ru": "Срок действия ссылки", "xloc": [ - "default.handlebars->23->291", - "default.handlebars->23->305" + "default.handlebars->25->291", + "default.handlebars->25->305" ] }, { @@ -9338,7 +9344,7 @@ "pt": "Linux / BSD", "ru": "Linux / BSD", "xloc": [ - "default.handlebars->23->316" + "default.handlebars->25->316" ] }, { @@ -9350,7 +9356,7 @@ "pt": "Linux / BSD (desinstalação)", "ru": "Linux / BSD (Удаление)", "xloc": [ - "default.handlebars->23->319" + "default.handlebars->25->319" ] }, { @@ -9363,7 +9369,7 @@ "ru": "Linux 32bit", "xloc": [ "default-mobile.handlebars->9->148", - "default.handlebars->23->18" + "default.handlebars->25->18" ] }, { @@ -9376,7 +9382,7 @@ "ru": "Linux 64bit", "xloc": [ "default-mobile.handlebars->9->149", - "default.handlebars->23->19" + "default.handlebars->25->19" ] }, { @@ -9389,7 +9395,7 @@ "ru": "Linux ARM", "xloc": [ "default-mobile.handlebars->9->153", - "default.handlebars->23->23" + "default.handlebars->25->23" ] }, { @@ -9401,7 +9407,7 @@ "pt": "Linux ARM, Raspberry Pi (32 bits)", "ru": "Linux ARM, Raspberry Pi (32bit)", "xloc": [ - "default.handlebars->23->571" + "default.handlebars->25->574" ] }, { @@ -9414,7 +9420,7 @@ "ru": "Linux NoKVM x86-32bit", "xloc": [ "default-mobile.handlebars->9->162", - "default.handlebars->23->32" + "default.handlebars->25->32" ] }, { @@ -9427,7 +9433,7 @@ "ru": "Linux NoKVM x86-64bit", "xloc": [ "default-mobile.handlebars->9->163", - "default.handlebars->23->33" + "default.handlebars->25->33" ] }, { @@ -9440,7 +9446,7 @@ "ru": "Linux Poky x86-32bit", "xloc": [ "default-mobile.handlebars->9->158", - "default.handlebars->23->28" + "default.handlebars->25->28" ] }, { @@ -9453,7 +9459,7 @@ "ru": "Linux Poky x86-64bit", "xloc": [ "default-mobile.handlebars->9->161", - "default.handlebars->23->31" + "default.handlebars->25->31" ] }, { @@ -9465,7 +9471,7 @@ "pt": "Apenas Linux", "ru": "Только Linux", "xloc": [ - "default.handlebars->23->290" + "default.handlebars->25->290" ] }, { @@ -9477,7 +9483,7 @@ "pt": "Linux x86 (32 bits)", "ru": "Linux x86 (32bit)", "xloc": [ - "default.handlebars->23->568" + "default.handlebars->25->571" ] }, { @@ -9489,7 +9495,7 @@ "pt": "Linux x86 (64 bits)", "ru": "Linux x86 (64bit)", "xloc": [ - "default.handlebars->23->569" + "default.handlebars->25->572" ] }, { @@ -9516,7 +9522,7 @@ "pt": "Lituano", "ru": "Литовский", "xloc": [ - "default.handlebars->23->821" + "default.handlebars->25->824" ] }, { @@ -9530,10 +9536,10 @@ "ru": "Загрузка...", "xloc": [ "default-mobile.handlebars->9->31", - "default.handlebars->23->563", - "default.handlebars->23->699", - "default.handlebars->23->965", - "default.handlebars->23->967" + "default.handlebars->25->566", + "default.handlebars->25->702", + "default.handlebars->25->968", + "default.handlebars->25->970" ] }, { @@ -9581,7 +9587,7 @@ "pt": "Configurações de localização", "ru": "Настройки локализации", "xloc": [ - "default.handlebars->23->914", + "default.handlebars->25->917", "default.handlebars->container->column_l->p2->p2AccountActions->3->5" ] }, @@ -9594,7 +9600,7 @@ "pt": "Localização", "ru": "Местонахождение", "xloc": [ - "default.handlebars->23->497" + "default.handlebars->25->500" ] }, { @@ -9619,7 +9625,7 @@ "pt": "Bloquear conta", "ru": "Заблокировать аккаунт", "xloc": [ - "default.handlebars->23->1256" + "default.handlebars->25->1259" ] }, { @@ -9632,7 +9638,7 @@ "pt": "Bloqueado", "ru": "Заблокирован", "xloc": [ - "default.handlebars->23->1206" + "default.handlebars->25->1209" ] }, { @@ -9645,7 +9651,7 @@ "pt": "Conta bloqueada", "ru": "Заблокированный аккаунт", "xloc": [ - "default.handlebars->23->1307" + "default.handlebars->25->1310" ] }, { @@ -9657,7 +9663,7 @@ "pt": "Log de Evento", "ru": "Добавить событие", "xloc": [ - "default.handlebars->23->488" + "default.handlebars->25->491" ] }, { @@ -9740,7 +9746,7 @@ "ru": "Выйти", "xloc": [ "default-mobile.handlebars->topMenu->logoutMenuOption->0->0", - "default.handlebars->23->45", + "default.handlebars->25->45", "terms.handlebars->3->2" ] }, @@ -9754,7 +9760,7 @@ "pt": "Luxemburguês", "ru": "Люксембургский", "xloc": [ - "default.handlebars->23->822" + "default.handlebars->25->825" ] }, { @@ -9767,7 +9773,7 @@ "pt": "Endereço MAC", "ru": "MAC адрес", "xloc": [ - "default.handlebars->23->98" + "default.handlebars->25->98" ] }, { @@ -9780,7 +9786,7 @@ "ru": "MIPS", "xloc": [ "default-mobile.handlebars->9->150", - "default.handlebars->23->20" + "default.handlebars->25->20" ] }, { @@ -9793,8 +9799,8 @@ "pt": "Servidor MPS", "ru": "MPS Сервер", "xloc": [ - "default.handlebars->23->273", - "default.handlebars->23->278" + "default.handlebars->25->273", + "default.handlebars->25->278" ] }, { @@ -9808,11 +9814,11 @@ "xloc": [ "default-mobile.handlebars->9->125", "default-mobile.handlebars->9->194", - "default.handlebars->23->192", - "default.handlebars->23->379", - "default.handlebars->23->481", - "default.handlebars->23->686", - "default.handlebars->23->687", + "default.handlebars->25->192", + "default.handlebars->25->379", + "default.handlebars->25->484", + "default.handlebars->25->689", + "default.handlebars->25->690", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -9825,7 +9831,7 @@ "pt": "Credenciais MQTT", "ru": "MQTT Учетные данные", "xloc": [ - "default.handlebars->23->176" + "default.handlebars->25->176" ] }, { @@ -9837,7 +9843,7 @@ "pt": "Login do MQTT", "ru": "MQTT Вход", "xloc": [ - "default.handlebars->23->509" + "default.handlebars->25->512" ] }, { @@ -9850,7 +9856,7 @@ "ru": "Подключен MQTT канал", "xloc": [ "default-mobile.handlebars->9->203", - "default.handlebars->23->517" + "default.handlebars->25->520" ] }, { @@ -9862,8 +9868,8 @@ "pt": "MQTT conectado", "ru": "Подключен MQTT", "xloc": [ - "default.handlebars->23->157", - "default.handlebars->23->516" + "default.handlebars->25->157", + "default.handlebars->25->519" ] }, { @@ -9875,9 +9881,9 @@ "pt": "A conexão MQTT com o dispositivo está ativa.", "ru": "MQTT подключение к устройству активно.", "xloc": [ - "default.handlebars->23->191", - "default.handlebars->23->378", - "default.handlebars->23->480" + "default.handlebars->25->191", + "default.handlebars->25->378", + "default.handlebars->25->483" ] }, { @@ -9889,7 +9895,7 @@ "pt": "MQTT desconectado", "ru": "MQTT отключено", "xloc": [ - "default.handlebars->23->161" + "default.handlebars->25->161" ] }, { @@ -9913,7 +9919,7 @@ "pt": "MacOS (64 bits)", "ru": "MacOS (64-разрядная)", "xloc": [ - "default.handlebars->23->570" + "default.handlebars->25->573" ] }, { @@ -9926,7 +9932,7 @@ "ru": "MacOS 32-разрядная", "xloc": [ "default-mobile.handlebars->9->154", - "default.handlebars->23->24" + "default.handlebars->25->24" ] }, { @@ -9939,7 +9945,7 @@ "ru": "MacOS 64-разрядная", "xloc": [ "default-mobile.handlebars->9->159", - "default.handlebars->23->29" + "default.handlebars->25->29" ] }, { @@ -9951,7 +9957,7 @@ "pt": "Mensagens do servidor principal", "ru": "Сообщения главного сервера", "xloc": [ - "default.handlebars->23->1432" + "default.handlebars->25->1435" ] }, { @@ -9963,7 +9969,7 @@ "pt": "Malaio", "ru": "Малайский", "xloc": [ - "default.handlebars->23->824" + "default.handlebars->25->827" ] }, { @@ -9975,7 +9981,7 @@ "pt": "Malaiala", "ru": "Малаяламский", "xloc": [ - "default.handlebars->23->825" + "default.handlebars->25->828" ] }, { @@ -9987,7 +9993,7 @@ "pt": "Maltês", "ru": "Мальтийский", "xloc": [ - "default.handlebars->23->826" + "default.handlebars->25->829" ] }, { @@ -10000,7 +10006,7 @@ "ru": "Управление резервными кодами", "xloc": [ "default-mobile.handlebars->9->29", - "default.handlebars->23->138" + "default.handlebars->25->138" ] }, { @@ -10014,8 +10020,8 @@ "xloc": [ "default-mobile.handlebars->9->295", "default-mobile.handlebars->9->313", - "default.handlebars->23->1084", - "default.handlebars->23->1107" + "default.handlebars->25->1087", + "default.handlebars->25->1110" ] }, { @@ -10029,8 +10035,8 @@ "xloc": [ "default-mobile.handlebars->9->294", "default-mobile.handlebars->9->312", - "default.handlebars->23->1083", - "default.handlebars->23->1106" + "default.handlebars->25->1086", + "default.handlebars->25->1109" ] }, { @@ -10042,7 +10048,7 @@ "pt": "Gerenciar chaves de segurança", "ru": "Управление Ключами Безопасности", "xloc": [ - "default.handlebars->23->145" + "default.handlebars->25->145" ] }, { @@ -10051,7 +10057,7 @@ "en": "Manage User Groups", "nl": "Beheer gebruikersgroepen.", "xloc": [ - "default.handlebars->23->1255" + "default.handlebars->25->1258" ] }, { @@ -10064,7 +10070,7 @@ "pt": "Gerenciar Usuários", "ru": "Управление пользователями", "xloc": [ - "default.handlebars->23->1254" + "default.handlebars->25->1257" ] }, { @@ -10115,7 +10121,7 @@ "pt": "Gerenciar usando um agente de software", "ru": "Управление с помощью программного агента", "xloc": [ - "default.handlebars->23->947" + "default.handlebars->25->950" ] }, { @@ -10129,7 +10135,7 @@ "ru": "Управляется с помощью программного агента", "xloc": [ "default-mobile.handlebars->9->275", - "default.handlebars->23->971" + "default.handlebars->25->974" ] }, { @@ -10141,7 +10147,7 @@ "pt": "Gerenciador", "ru": "Менеджер", "xloc": [ - "default.handlebars->23->1211" + "default.handlebars->25->1214" ] }, { @@ -10154,7 +10160,7 @@ "pt": "Certificado manual", "ru": "Ручной Сертификат", "xloc": [ - "default.handlebars->23->260" + "default.handlebars->25->260" ] }, { @@ -10167,7 +10173,7 @@ "pt": "Nome de usuário / senha manual", "ru": "Ручное Имя пользователя/Пароль", "xloc": [ - "default.handlebars->23->259" + "default.handlebars->25->259" ] }, { @@ -10179,7 +10185,7 @@ "pt": "Maori", "ru": "Маори", "xloc": [ - "default.handlebars->23->827" + "default.handlebars->25->830" ] }, { @@ -10206,7 +10212,7 @@ "pt": "Marathi", "ru": "Маратхи", "xloc": [ - "default.handlebars->23->828" + "default.handlebars->25->831" ] }, { @@ -10215,7 +10221,7 @@ "en": "Max Sessions Reached", "nl": "Max Sessies bereikt", "xloc": [ - "default.handlebars->23->1396" + "default.handlebars->25->1399" ] }, { @@ -10257,7 +10263,7 @@ "pt": "Megabytes", "ru": "Мегабайт", "xloc": [ - "default.handlebars->23->1422" + "default.handlebars->25->1425" ] }, { @@ -10270,8 +10276,8 @@ "pt": "Memória", "ru": "ОЗУ", "xloc": [ - "default.handlebars->23->1413", - "default.handlebars->23->75", + "default.handlebars->25->1416", + "default.handlebars->25->75", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -10285,13 +10291,13 @@ "ru": "Mesh Агент", "xloc": [ "default-mobile.handlebars->9->200", - "default.handlebars->23->325", - "default.handlebars->23->328", - "default.handlebars->23->336", - "default.handlebars->23->339", - "default.handlebars->23->342", - "default.handlebars->23->442", - "default.handlebars->23->473" + "default.handlebars->25->325", + "default.handlebars->25->328", + "default.handlebars->25->336", + "default.handlebars->25->339", + "default.handlebars->25->342", + "default.handlebars->25->445", + "default.handlebars->25->476" ] }, { @@ -10304,7 +10310,7 @@ "ru": "Консоль Mesh Agent-а", "xloc": [ "default-mobile.handlebars->9->302", - "default.handlebars->23->1091" + "default.handlebars->25->1094" ] }, { @@ -10315,7 +10321,7 @@ "pt": "Mesh Relay", "ru": "Mesh Реле", "xloc": [ - "default.handlebars->23->479" + "default.handlebars->25->482" ] }, { @@ -10327,9 +10333,9 @@ "pt": "O agente de malha está conectado e pronto para uso.", "ru": "Mesh agent подключен и готов к использованию.", "xloc": [ - "default.handlebars->23->183", - "default.handlebars->23->370", - "default.handlebars->23->472" + "default.handlebars->25->183", + "default.handlebars->25->370", + "default.handlebars->25->475" ] }, { @@ -10341,17 +10347,17 @@ "pt": "O agente de malha é alcançável usando outro agente como retransmissão.", "ru": "Mesh agent доступен с использованием другого агента в качестве реле.", "xloc": [ - "default.handlebars->23->189", - "default.handlebars->23->376", - "default.handlebars->23->478" + "default.handlebars->25->189", + "default.handlebars->25->376", + "default.handlebars->25->481" ] }, { "en": "MeshAction (.txt)", "nl": "MeshAction (.txt)", "xloc": [ - "default.handlebars->23->577", - "default.handlebars->23->579" + "default.handlebars->25->580", + "default.handlebars->25->582" ] }, { @@ -10362,7 +10368,7 @@ "nl": "MeshAgent verkeer", "ru": "Трафик MeshAgent-а", "xloc": [ - "default.handlebars->23->1434" + "default.handlebars->25->1437" ] }, { @@ -10373,7 +10379,7 @@ "nl": "MeshAgent update", "ru": "Обновление MeshAgent-а", "xloc": [ - "default.handlebars->23->1435" + "default.handlebars->25->1438" ] }, { @@ -10397,7 +10403,7 @@ "pt": "MeshCentral Errors", "ru": "Ошибки MeshCentral", "xloc": [ - "default.handlebars->23->966" + "default.handlebars->25->969" ] }, { @@ -10409,7 +10415,7 @@ "pt": "MeshCentral Router", "ru": "MeshCentral Маршрутизатор", "xloc": [ - "default.handlebars->23->565" + "default.handlebars->25->568" ] }, { @@ -10421,7 +10427,7 @@ "pt": "O MeshCentral Router é uma ferramenta do Windows para mapeamento de portas TCP. Você pode, por exemplo, RDP em um dispositivo remoto através deste servidor.", "ru": "MeshCentral Маршрутизатор это инструмент Windows для сопоставления портов TCP. Например, через этот сервер вы можете установить RDP к удаленному устройство.", "xloc": [ - "default.handlebars->23->564" + "default.handlebars->25->567" ] }, { @@ -10433,8 +10439,8 @@ "pt": "Erros do servidor MeshCentral", "ru": "Ошибки MeshCentral Сервера", "xloc": [ - "default.handlebars->23->115", - "default.handlebars->23->117" + "default.handlebars->25->115", + "default.handlebars->25->117" ] }, { @@ -10446,7 +10452,7 @@ "pt": "Peering do servidor MeshCentral", "ru": "Соединения MeshCentral Сервера", "xloc": [ - "default.handlebars->23->1433" + "default.handlebars->25->1436" ] }, { @@ -10470,9 +10476,9 @@ "pt": "Versão MeshCentral", "ru": "Версия MeshCentral", "xloc": [ - "default.handlebars->23->112", - "default.handlebars->23->113", - "default.handlebars->23->964" + "default.handlebars->25->112", + "default.handlebars->25->113", + "default.handlebars->25->967" ] }, { @@ -10484,57 +10490,57 @@ "pt": "MeshCmd", "ru": "MeshCmd", "xloc": [ - "default.handlebars->23->207", - "default.handlebars->23->575" + "default.handlebars->25->207", + "default.handlebars->25->578" ] }, { "en": "MeshCmd (Linux ARM, 32bit)", "nl": "MeshCmd (Linux ARM, 32bit)", "xloc": [ - "default.handlebars->23->587" + "default.handlebars->25->590" ] }, { "en": "MeshCmd (Linux x86, 32bit)", "nl": "MeshCmd (Linux x86, 32bit)", "xloc": [ - "default.handlebars->23->584" + "default.handlebars->25->587" ] }, { "en": "MeshCmd (Linux x86, 64bit)", "nl": "MeshCmd (Linux x86, 64bit)", "xloc": [ - "default.handlebars->23->585" + "default.handlebars->25->588" ] }, { "en": "MeshCmd (MacOS, 64bit)", "nl": "MeshCmd (MacOS, 64bit)", "xloc": [ - "default.handlebars->23->586" + "default.handlebars->25->589" ] }, { "en": "MeshCmd (Win32 executable)", "nl": "MeshCmd (Win32 executable)", "xloc": [ - "default.handlebars->23->582" + "default.handlebars->25->585" ] }, { "en": "MeshCmd (Win64 executable)", "nl": "MeshCmd (Win64 executable)", "xloc": [ - "default.handlebars->23->583" + "default.handlebars->25->586" ] }, { "en": "MeshCmd is a command line tool that performs lots of different operations. The action file can optionally be downloaded and edited to provide server information and credentials.", "nl": "MeshCmd is een opdrachtregelprogramma dat veel verschillende bewerkingen uitvoert. Het actiebestand is optioneel, en kan worden gedownload en bewerkt om serverinformatie en referenties te verstrekken.", "xloc": [ - "default.handlebars->23->572" + "default.handlebars->25->575" ] }, { @@ -10546,7 +10552,7 @@ "pt": "MeshCommander Script", "ru": "MeshCommander Script", "xloc": [ - "default.handlebars->23->258" + "default.handlebars->25->258" ] }, { @@ -10571,7 +10577,7 @@ "pt": "MeshServerRootCert.cer", "ru": "MeshServerRootCert.cer", "xloc": [ - "default.handlebars->23->269" + "default.handlebars->25->269" ] }, { @@ -10583,8 +10589,8 @@ "pt": "Mensagem", "ru": "Сообщение", "xloc": [ - "default.handlebars->23->302", - "default.handlebars->23->544" + "default.handlebars->25->302", + "default.handlebars->25->547" ] }, { @@ -10596,7 +10602,7 @@ "pt": "Despachante de mensagens", "ru": "Диспетчер сообщения", "xloc": [ - "default.handlebars->23->1431" + "default.handlebars->25->1434" ] }, { @@ -10645,7 +10651,7 @@ "pt": "Modificar localização do nó", "ru": "Изменить позицию узла", "xloc": [ - "default.handlebars->23->405" + "default.handlebars->25->408" ] }, { @@ -10657,7 +10663,7 @@ "pt": "Moldavian", "ru": "Молдавский", "xloc": [ - "default.handlebars->23->829" + "default.handlebars->25->832" ] }, { @@ -10670,7 +10676,7 @@ "pt": "Mais", "ru": "Еще", "xloc": [ - "default.handlebars->23->1454" + "default.handlebars->25->1457" ] }, { @@ -10683,7 +10689,7 @@ "pt": "Placa-mãe", "ru": "Материнская плата", "xloc": [ - "default.handlebars->23->69" + "default.handlebars->25->69" ] }, { @@ -10695,7 +10701,7 @@ "pt": "Mova este dispositivo para um grupo de dispositivos diferente", "ru": "Переместить это устройство в другую группу устройств", "xloc": [ - "default.handlebars->23->490" + "default.handlebars->25->493" ] }, { @@ -10708,7 +10714,7 @@ "pt": "Mover para o grupo de dispositivos", "ru": "Переместить в группу устройств", "xloc": [ - "default.handlebars->23->391" + "default.handlebars->25->391" ] }, { @@ -10812,7 +10818,7 @@ "pt": "Console do meu servidor", "ru": "Консоль моего сервера", "xloc": [ - "default.handlebars->23->681" + "default.handlebars->25->684" ] }, { @@ -10899,8 +10905,8 @@ "pt": "Minha chave", "ru": "Мой ключ", "xloc": [ - "default.handlebars->23->704", - "default.handlebars->23->707" + "default.handlebars->25->707", + "default.handlebars->25->710" ] }, { @@ -10918,20 +10924,20 @@ "default-mobile.handlebars->9->289", "default-mobile.handlebars->9->56", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->23->1056", - "default.handlebars->23->1193", - "default.handlebars->23->1234", - "default.handlebars->23->1261", - "default.handlebars->23->1265", - "default.handlebars->23->1270", - "default.handlebars->23->1272", - "default.handlebars->23->1295", - "default.handlebars->23->608", - "default.handlebars->23->71", - "default.handlebars->23->80", - "default.handlebars->23->94", - "default.handlebars->23->945", - "default.handlebars->23->972", + "default.handlebars->25->1059", + "default.handlebars->25->1196", + "default.handlebars->25->1237", + "default.handlebars->25->1264", + "default.handlebars->25->1268", + "default.handlebars->25->1273", + "default.handlebars->25->1275", + "default.handlebars->25->1298", + "default.handlebars->25->611", + "default.handlebars->25->71", + "default.handlebars->25->80", + "default.handlebars->25->94", + "default.handlebars->25->948", + "default.handlebars->25->975", "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" @@ -10947,7 +10953,7 @@ "pt": "Nome (Opcional)", "ru": "Имя (не обязательно)", "xloc": [ - "default.handlebars->23->282" + "default.handlebars->25->282" ] }, { @@ -10960,7 +10966,7 @@ "pt": "Nome1, Nome2, Nome3", "ru": "Имя1, Имя2, Имя3", "xloc": [ - "default.handlebars->23->1247" + "default.handlebars->25->1250" ] }, { @@ -10973,7 +10979,7 @@ "pt": "Navajo", "ru": "Навахо", "xloc": [ - "default.handlebars->23->830" + "default.handlebars->25->833" ] }, { @@ -10986,7 +10992,7 @@ "pt": "Ndonga", "ru": "Ндонга", "xloc": [ - "default.handlebars->23->831" + "default.handlebars->25->834" ] }, { @@ -10999,7 +11005,7 @@ "pt": "Nepali", "ru": "Непальский", "xloc": [ - "default.handlebars->23->832" + "default.handlebars->25->835" ] }, { @@ -11012,7 +11018,7 @@ "pt": "Interfaces de rede", "ru": "Сетевые интерфейсы", "xloc": [ - "default.handlebars->23->562" + "default.handlebars->25->565" ] }, { @@ -11025,7 +11031,7 @@ "pt": "Roteador de rede", "ru": "Сетевой маршрутизатор", "xloc": [ - "default.handlebars->23->581" + "default.handlebars->25->584" ] }, { @@ -11066,9 +11072,9 @@ "ru": "Новая группа устройств", "xloc": [ "default-mobile.handlebars->9->50", - "default.handlebars->23->554", - "default.handlebars->23->938", - "default.handlebars->23->950" + "default.handlebars->25->557", + "default.handlebars->25->941", + "default.handlebars->25->953" ] }, { @@ -11083,8 +11089,8 @@ "xloc": [ "default-mobile.handlebars->9->247", "default-mobile.handlebars->9->79", - "default.handlebars->23->1166", - "default.handlebars->23->645", + "default.handlebars->25->1169", + "default.handlebars->25->648", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -11123,8 +11129,8 @@ "xloc": [ "default-mobile.handlebars->9->45", "default-mobile.handlebars->9->46", - "default.handlebars->23->933", - "default.handlebars->23->934" + "default.handlebars->25->936", + "default.handlebars->25->937" ] }, { @@ -11137,7 +11143,7 @@ "ru": "Активных токенов нет", "xloc": [ "default-mobile.handlebars->9->25", - "default.handlebars->23->133" + "default.handlebars->25->133" ] }, { @@ -11151,8 +11157,8 @@ "xloc": [ "default-mobile.handlebars->9->184", "default-mobile.handlebars->9->185", - "default.handlebars->23->456", - "default.handlebars->23->457" + "default.handlebars->25->459", + "default.handlebars->25->460" ] }, { @@ -11165,9 +11171,9 @@ "pt": "Nenhum evento encontrado", "ru": "События не найдены", "xloc": [ - "default.handlebars->23->1183", - "default.handlebars->23->1379", - "default.handlebars->23->679" + "default.handlebars->25->1186", + "default.handlebars->25->1382", + "default.handlebars->25->682" ] }, { @@ -11181,7 +11187,7 @@ "ru": "Нет доступа к файлу", "xloc": [ "default-mobile.handlebars->9->300", - "default.handlebars->23->1089" + "default.handlebars->25->1092" ] }, { @@ -11195,7 +11201,7 @@ "ru": "Файлов нет", "xloc": [ "default-mobile.handlebars->9->321", - "default.handlebars->23->1115" + "default.handlebars->25->1118" ] }, { @@ -11209,8 +11215,8 @@ "xloc": [ "default-mobile.handlebars->9->301", "default-mobile.handlebars->9->322", - "default.handlebars->23->1090", - "default.handlebars->23->1116" + "default.handlebars->25->1093", + "default.handlebars->25->1119" ] }, { @@ -11234,7 +11240,7 @@ "pt": "Nenhum Intel® dispositivos AMT nessa malha", "ru": "Intel® AMT устройств в этой сети нет", "xloc": [ - "default.handlebars->23->196" + "default.handlebars->25->196" ] }, { @@ -11246,7 +11252,7 @@ "pt": "Nenhuma chave configurada", "ru": "Ключи не настроены", "xloc": [ - "default.handlebars->23->141" + "default.handlebars->25->141" ] }, { @@ -11255,7 +11261,7 @@ "en": "No Members", "nl": "Geen leden", "xloc": [ - "default.handlebars->23->1282" + "default.handlebars->25->1285" ] }, { @@ -11267,7 +11273,7 @@ "pt": "Não há novos grupos de dispositivos", "ru": "Новых групп устройств нет", "xloc": [ - "default.handlebars->23->1257" + "default.handlebars->25->1260" ] }, { @@ -11279,9 +11285,9 @@ "pt": "Nenhuma política", "ru": "Политик нет", "xloc": [ - "default.handlebars->23->1028", - "default.handlebars->23->1031", - "default.handlebars->23->997" + "default.handlebars->25->1000", + "default.handlebars->25->1031", + "default.handlebars->25->1034" ] }, { @@ -11296,11 +11302,11 @@ "default-mobile.handlebars->9->284", "default-mobile.handlebars->9->327", "default-mobile.handlebars->9->65", - "default.handlebars->23->1022", - "default.handlebars->23->1121", - "default.handlebars->23->1288", - "default.handlebars->23->1362", - "default.handlebars->23->959" + "default.handlebars->25->1025", + "default.handlebars->25->1124", + "default.handlebars->25->1291", + "default.handlebars->25->1365", + "default.handlebars->25->962" ] }, { @@ -11314,8 +11320,8 @@ "ru": "TLS безопасности нет", "xloc": [ "default-mobile.handlebars->9->215", - "default.handlebars->23->245", - "default.handlebars->23->540" + "default.handlebars->25->245", + "default.handlebars->25->543" ] }, { @@ -11328,7 +11334,7 @@ "ru": "Терминала нет", "xloc": [ "default-mobile.handlebars->9->320", - "default.handlebars->23->1114" + "default.handlebars->25->1117" ] }, { @@ -11341,7 +11347,7 @@ "ru": "Нет доступа к терминалу", "xloc": [ "default-mobile.handlebars->9->299", - "default.handlebars->23->1088" + "default.handlebars->25->1091" ] }, { @@ -11353,7 +11359,7 @@ "pt": "Sem ferramentas (MeshCmd / Roteador)", "ru": "Нет инструментов (MeshCmd/Маршрутизатор)", "xloc": [ - "default.handlebars->23->1258" + "default.handlebars->25->1261" ] }, { @@ -11362,8 +11368,8 @@ "en": "No device groups in common", "nl": "Geen gemeenschappelijke apparaatgroepen", "xloc": [ - "default.handlebars->23->1291", - "default.handlebars->23->1365" + "default.handlebars->25->1294", + "default.handlebars->25->1368" ] }, { @@ -11403,7 +11409,7 @@ "pt": "Nenhum dispositivo está incluído em nenhum grupo, clique no \\\"Grupo\\\" de um dispositivo para adicionar a um grupo", "ru": "Ни одно устройство не включено ни в одну из групп, чтобы добавить группу нажмите \\\"Группы\\\" устройств.", "xloc": [ - "default.handlebars->23->194" + "default.handlebars->25->194" ] }, { @@ -11416,7 +11422,7 @@ "pt": "Nenhum dispositivo encontrado.", "ru": "Устройства не найдены.", "xloc": [ - "default.handlebars->23->422" + "default.handlebars->25->425" ] }, { @@ -11425,7 +11431,7 @@ "en": "No devices in this device group.", "nl": "Geen apparaten in deze apparaatgroep.", "xloc": [ - "default.handlebars->23->1145" + "default.handlebars->25->1148" ] }, { @@ -11439,7 +11445,7 @@ "ru": "В этой группе устройств нет", "xloc": [ "default-mobile.handlebars->9->97", - "default.handlebars->23->198" + "default.handlebars->25->198" ] }, { @@ -11452,7 +11458,7 @@ "pt": "Nenhum dispositivo correspondente a esta pesquisa.", "ru": "Нет устройств, соответствующих этому запросу.", "xloc": [ - "default.handlebars->23->195" + "default.handlebars->25->195" ] }, { @@ -11461,7 +11467,7 @@ "en": "No devices with tags found.", "nl": "Geen apparaten tags gevonden.", "xloc": [ - "default.handlebars->23->203" + "default.handlebars->25->203" ] }, { @@ -11470,7 +11476,7 @@ "en": "No groups found.", "nl": "Geen groepen gevonden.", "xloc": [ - "default.handlebars->23->1260" + "default.handlebars->25->1263" ] }, { @@ -11482,7 +11488,7 @@ "pt": "Nenhuma informação para este dispositivo.", "ru": "Информации об этом устройстве нет", "xloc": [ - "default.handlebars->23->65" + "default.handlebars->25->65" ] }, { @@ -11494,7 +11500,7 @@ "pt": "Nenhum local encontrado.", "ru": "Местоположение на найдено.", "xloc": [ - "default.handlebars->23->424" + "default.handlebars->25->427" ] }, { @@ -11506,7 +11512,7 @@ "pt": "Nenhuma informação de interface de rede disponível para este dispositivo.", "ru": "Информации о сетевых интерфейсах этого устройства нет.", "xloc": [ - "default.handlebars->23->86" + "default.handlebars->25->86" ] }, { @@ -11518,7 +11524,7 @@ "pt": "Não existe outro grupo de dispositivos do mesmo tipo.", "ru": "Других групп устройств такого же типа не существует.", "xloc": [ - "default.handlebars->23->557" + "default.handlebars->25->560" ] }, { @@ -11541,7 +11547,7 @@ "pt": "Sem direitos de servidor", "ru": "Нет серверных прав", "xloc": [ - "default.handlebars->23->1308" + "default.handlebars->25->1311" ] }, { @@ -11550,7 +11556,7 @@ "en": "No user group memberships", "nl": "Geen gebruikersgroep lidmaatschap", "xloc": [ - "default.handlebars->23->1371" + "default.handlebars->25->1374" ] }, { @@ -11562,7 +11568,7 @@ "pt": "Usuários não encontrados.", "ru": "Пользователи не найдены.", "xloc": [ - "default.handlebars->23->1201" + "default.handlebars->25->1204" ] }, { @@ -11587,7 +11593,7 @@ "ru": "NodeJS", "xloc": [ "default-mobile.handlebars->9->166", - "default.handlebars->23->36" + "default.handlebars->25->36" ] }, { @@ -11609,22 +11615,22 @@ "default-mobile.handlebars->9->75", "default-mobile.handlebars->9->93", "default-mobile.handlebars->9->95", - "default.handlebars->23->1154", - "default.handlebars->23->1269", - "default.handlebars->23->1327", - "default.handlebars->23->1331", - "default.handlebars->23->166", - "default.handlebars->23->181", - "default.handlebars->23->182", - "default.handlebars->23->429", - "default.handlebars->23->437", - "default.handlebars->23->439", - "default.handlebars->23->483", - "default.handlebars->23->63", - "default.handlebars->23->974", - "default.handlebars->23->978", - "default.handlebars->23->990", - "default.handlebars->23->995", + "default.handlebars->25->1157", + "default.handlebars->25->1272", + "default.handlebars->25->1330", + "default.handlebars->25->1334", + "default.handlebars->25->166", + "default.handlebars->25->181", + "default.handlebars->25->182", + "default.handlebars->25->432", + "default.handlebars->25->440", + "default.handlebars->25->442", + "default.handlebars->25->486", + "default.handlebars->25->63", + "default.handlebars->25->977", + "default.handlebars->25->981", + "default.handlebars->25->993", + "default.handlebars->25->998", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] }, @@ -11651,7 +11657,7 @@ "pt": "norueguês", "ru": "Норвежский", "xloc": [ - "default.handlebars->23->833" + "default.handlebars->25->836" ] }, { @@ -11664,7 +11670,7 @@ "pt": "Norueguês (Bokmal)", "ru": "Норвежский (Букмол)", "xloc": [ - "default.handlebars->23->834" + "default.handlebars->25->837" ] }, { @@ -11677,7 +11683,7 @@ "pt": "Norueguês (Nynorsk)", "ru": "Норвежский (Нюнорск)", "xloc": [ - "default.handlebars->23->835" + "default.handlebars->25->838" ] }, { @@ -11690,7 +11696,7 @@ "ru": "Не активированно (In)", "xloc": [ "default-mobile.handlebars->9->176", - "default.handlebars->23->444" + "default.handlebars->25->447" ] }, { @@ -11703,7 +11709,7 @@ "ru": "Не активированно (Pre)", "xloc": [ "default-mobile.handlebars->9->175", - "default.handlebars->23->443" + "default.handlebars->25->446" ] }, { @@ -11712,8 +11718,8 @@ "en": "Not Connected", "nl": "Niet verbonden", "xloc": [ - "default.handlebars->23->1134", - "default.handlebars->23->1140" + "default.handlebars->25->1137", + "default.handlebars->25->1143" ] }, { @@ -11725,7 +11731,7 @@ "pt": "Não configurado", "ru": "Не задано", "xloc": [ - "default.handlebars->23->1313" + "default.handlebars->25->1316" ] }, { @@ -11738,10 +11744,10 @@ "pt": "Notas", "ru": "Заметки", "xloc": [ - "default.handlebars->23->1003", - "default.handlebars->23->1338", - "default.handlebars->23->486", - "default.handlebars->23->521" + "default.handlebars->25->1006", + "default.handlebars->25->1341", + "default.handlebars->25->489", + "default.handlebars->25->524" ] }, { @@ -11764,8 +11770,8 @@ "pt": "Configurações de notificação", "ru": "Настройки уведомлений", "xloc": [ - "default.handlebars->23->1133", - "default.handlebars->23->920", + "default.handlebars->25->1136", + "default.handlebars->25->923", "default.handlebars->container->column_l->p2->p2AccountActions->3->8" ] }, @@ -11775,7 +11781,7 @@ "en": "Notification settings must also be turned on in account settings.", "nl": "Meldingsinstellingen moeten ook worden ingeschakeld in accountinstellingen.", "xloc": [ - "default.handlebars->23->1129" + "default.handlebars->25->1132" ] }, { @@ -11787,7 +11793,7 @@ "pt": "Som de notificação.", "ru": "Звук уведомления.", "xloc": [ - "default.handlebars->23->915" + "default.handlebars->25->918" ] }, { @@ -11799,7 +11805,7 @@ "pt": "Notificações", "ru": "Уведомления", "xloc": [ - "default.handlebars->23->996" + "default.handlebars->25->999" ] }, { @@ -11811,7 +11817,7 @@ "pt": "Notificar", "ru": "Уведомить", "xloc": [ - "default.handlebars->23->1340" + "default.handlebars->25->1343" ] }, { @@ -11824,9 +11830,9 @@ "pt": "Notificar usuário", "ru": "Уведомить пользователя", "xloc": [ - "default.handlebars->23->1060", - "default.handlebars->23->1064", - "default.handlebars->23->1067" + "default.handlebars->25->1063", + "default.handlebars->25->1067", + "default.handlebars->25->1070" ] }, { @@ -11838,7 +11844,7 @@ "pt": "Notificar {0}", "ru": "Уведомить {0}", "xloc": [ - "default.handlebars->23->1213" + "default.handlebars->25->1216" ] }, { @@ -11852,8 +11858,8 @@ "xloc": [ "default-mobile.handlebars->9->42", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->23->469", - "default.handlebars->23->962", + "default.handlebars->25->472", + "default.handlebars->25->965", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -11883,7 +11889,7 @@ "pt": "Occitânico", "ru": "Окситанский", "xloc": [ - "default.handlebars->23->836" + "default.handlebars->25->839" ] }, { @@ -11896,7 +11902,7 @@ "pt": "Ocorreu em {0}", "ru": "Произошло в {0}", "xloc": [ - "default.handlebars->23->1382" + "default.handlebars->25->1385" ] }, { @@ -11909,7 +11915,7 @@ "pt": "Usuários offline", "ru": "Оффлайн пользователи", "xloc": [ - "default.handlebars->23->1198" + "default.handlebars->25->1201" ] }, { @@ -11923,7 +11929,7 @@ "ru": "Старый пароль:", "xloc": [ "default-mobile.handlebars->9->44", - "default.handlebars->23->932" + "default.handlebars->25->935" ] }, { @@ -11936,7 +11942,7 @@ "ru": "Однократные токены можно использовать как вторичную аутентификацию. Сгенерируйте, распечатайте и храните их в надежном месте.", "xloc": [ "default-mobile.handlebars->9->24", - "default.handlebars->23->132" + "default.handlebars->25->132" ] }, { @@ -11949,7 +11955,7 @@ "pt": "Usuários Online", "ru": "Онлайн пользователи", "xloc": [ - "default.handlebars->23->1197" + "default.handlebars->25->1200" ] }, { @@ -11962,7 +11968,7 @@ "ru": "Только файлы размером меньше 200к могут быть редактированны", "xloc": [ "default-mobile.handlebars->9->255", - "default.handlebars->23->653" + "default.handlebars->25->656" ] }, { @@ -11987,13 +11993,13 @@ "pt": "Abrir página no dispositivo", "ru": "Открыть страницу на устройстве", "xloc": [ - "default.handlebars->23->523" + "default.handlebars->25->526" ] }, { "en": "Open XTerm terminal", "xloc": [ - "default.handlebars->23->500" + "default.handlebars->25->503" ] }, { @@ -12030,11 +12036,11 @@ "pt": "Sistema operacional", "ru": "Операционная Система", "xloc": [ - "default.handlebars->23->285", - "default.handlebars->23->314", - "default.handlebars->23->466", - "default.handlebars->23->574", - "default.handlebars->23->79" + "default.handlebars->25->285", + "default.handlebars->25->314", + "default.handlebars->25->469", + "default.handlebars->25->577", + "default.handlebars->25->79" ] }, { @@ -12048,8 +12054,8 @@ "ru": "Операция", "xloc": [ "default-mobile.handlebars->9->210", - "default.handlebars->23->386", - "default.handlebars->23->532" + "default.handlebars->25->386", + "default.handlebars->25->535" ] }, { @@ -12062,7 +12068,7 @@ "pt": "Organização", "ru": "Организация", "xloc": [ - "default.handlebars->23->277" + "default.handlebars->25->277" ] }, { @@ -12074,7 +12080,7 @@ "pt": "Oriya", "ru": "Ория", "xloc": [ - "default.handlebars->23->837" + "default.handlebars->25->840" ] }, { @@ -12086,7 +12092,7 @@ "pt": "Oromo", "ru": "Оромо", "xloc": [ - "default.handlebars->23->838" + "default.handlebars->25->841" ] }, { @@ -12125,7 +12131,7 @@ "pt": "Desatualizado", "ru": "Устаревший", "xloc": [ - "default.handlebars->23->468" + "default.handlebars->25->471" ] }, { @@ -12137,7 +12143,7 @@ "pt": "Processo próprio", "ru": "Собственный процесс", "xloc": [ - "default.handlebars->23->615" + "default.handlebars->25->618" ] }, { @@ -12150,7 +12156,7 @@ "ru": "PID", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", - "default.handlebars->23->611", + "default.handlebars->25->614", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -12164,7 +12170,7 @@ "pt": "Número Parcial", "ru": "Номер детайли", "xloc": [ - "default.handlebars->23->78" + "default.handlebars->25->78" ] }, { @@ -12177,7 +12183,7 @@ "pt": "Parcial", "ru": "Частично", "xloc": [ - "default.handlebars->23->1212" + "default.handlebars->25->1215" ] }, { @@ -12186,9 +12192,9 @@ "en": "Partial Device Group Rights", "nl": "Gedeeltelijke apparaatgroep rechten", "xloc": [ - "default.handlebars->23->1020", - "default.handlebars->23->1285", - "default.handlebars->23->1359" + "default.handlebars->25->1023", + "default.handlebars->25->1288", + "default.handlebars->25->1362" ] }, { @@ -12202,7 +12208,7 @@ "xloc": [ "default-mobile.handlebars->9->282", "default-mobile.handlebars->9->63", - "default.handlebars->23->957" + "default.handlebars->25->960" ] }, { @@ -12214,7 +12220,7 @@ "pt": "Direitos parciais", "ru": "Частичные права", "xloc": [ - "default.handlebars->23->1311" + "default.handlebars->25->1314" ] }, { @@ -12240,15 +12246,15 @@ "ru": "Пароль", "xloc": [ "default-mobile.handlebars->9->213", - "default.handlebars->23->1236", - "default.handlebars->23->1237", - "default.handlebars->23->1323", - "default.handlebars->23->1325", - "default.handlebars->23->1349", - "default.handlebars->23->1350", - "default.handlebars->23->243", - "default.handlebars->23->272", - "default.handlebars->23->538" + "default.handlebars->25->1239", + "default.handlebars->25->1240", + "default.handlebars->25->1326", + "default.handlebars->25->1328", + "default.handlebars->25->1352", + "default.handlebars->25->1353", + "default.handlebars->25->243", + "default.handlebars->25->272", + "default.handlebars->25->541" ] }, { @@ -12316,7 +12322,7 @@ "pt": "Dica de senha", "ru": "Подсказка пароля", "xloc": [ - "default.handlebars->23->1351" + "default.handlebars->25->1354" ] }, { @@ -12329,7 +12335,7 @@ "ru": "Подсказка пароля:", "xloc": [ "default-mobile.handlebars->9->47", - "default.handlebars->23->935" + "default.handlebars->25->938" ] }, { @@ -12341,7 +12347,7 @@ "pt": "Senha incorreta", "ru": "Пароль не совпадает", "xloc": [ - "default.handlebars->23->1037" + "default.handlebars->25->1040" ] }, { @@ -12367,8 +12373,8 @@ "pt": "Senha*", "ru": "Пароль*", "xloc": [ - "default.handlebars->23->1035", - "default.handlebars->23->1036" + "default.handlebars->25->1038", + "default.handlebars->25->1039" ] }, { @@ -12383,8 +12389,8 @@ "xloc": [ "default-mobile.handlebars->9->39", "default-mobile.handlebars->9->40", - "default.handlebars->23->927", - "default.handlebars->23->928", + "default.handlebars->25->930", + "default.handlebars->25->931", "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", @@ -12411,9 +12417,9 @@ "default-mobile.handlebars->9->87", "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->23->1175", - "default.handlebars->23->636", - "default.handlebars->23->658", + "default.handlebars->25->1178", + "default.handlebars->25->639", + "default.handlebars->25->661", "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" @@ -12455,7 +12461,7 @@ "pt": "Executar ação do agente", "ru": "Произвести действие агента", "xloc": [ - "default.handlebars->23->689" + "default.handlebars->25->692" ] }, { @@ -12467,7 +12473,7 @@ "pt": "Execute a ativação do modo de controle de administração Intel AMT (ACM) para agrupar \\\"{0}\\\" baixando a ferramenta MeshCMD e executando-a assim:", "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM) для группы \\\"{0}\\\",скачав инструмент MeshCMD и запустив его следующим образом:", "xloc": [ - "default.handlebars->23->250" + "default.handlebars->25->250" ] }, { @@ -12479,8 +12485,8 @@ "pt": "Execute a ativação do modo de controle de administração Intel AMT (ACM).", "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).", "xloc": [ - "default.handlebars->23->1013", - "default.handlebars->23->231" + "default.handlebars->25->1016", + "default.handlebars->25->231" ] }, { @@ -12492,7 +12498,7 @@ "pt": "Execute a ativação do modo de controle de cliente Intel AMT (CCM) para agrupar \\\"{0}\\\" baixando a ferramenta MeshCMD e executando-a assim:", "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM) для группы \\\"{0}\\\",скачав инструмент MeshCMD и запустив его следующим образом:", "xloc": [ - "default.handlebars->23->248" + "default.handlebars->25->248" ] }, { @@ -12504,8 +12510,8 @@ "pt": "Execute a ativação do modo de controle do cliente Intel AMT (CCM).", "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).", "xloc": [ - "default.handlebars->23->1011", - "default.handlebars->23->229" + "default.handlebars->25->1014", + "default.handlebars->25->229" ] }, { @@ -12518,7 +12524,7 @@ "pt": "Execute ações de energia no dispositivo", "ru": "Управление питанием устройства", "xloc": [ - "default.handlebars->23->485", + "default.handlebars->25->488", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -12535,8 +12541,8 @@ "ru": "Права", "xloc": [ "default-mobile.handlebars->9->329", - "default.handlebars->23->1124", - "default.handlebars->23->1196" + "default.handlebars->25->1127", + "default.handlebars->25->1199" ] }, { @@ -12548,7 +12554,7 @@ "pt": "Persa / Irã", "ru": "Персидский/Иран", "xloc": [ - "default.handlebars->23->839" + "default.handlebars->25->842" ] }, { @@ -12563,7 +12569,7 @@ "pt": "Coloque o nó aqui", "ru": "Поместить узел сюда", "xloc": [ - "default.handlebars->23->417" + "default.handlebars->25->420" ] }, { @@ -12589,7 +12595,7 @@ "pt": "Adicione códigos de backup de dois fatores. Se o fator atual for perdido, não há como recuperar esta conta.", "ru": "Пожалуйста, добавьте двухфакторные резервные коды. Если текущий фактор потерян, восстановить эту учетную запись будет невозможно.", "xloc": [ - "default.handlebars->23->49" + "default.handlebars->25->49" ] }, { @@ -12600,7 +12606,7 @@ "nl": "Houd er rekening mee dat downgraden niet wordt aanbevolen. Doe dit alleen als een recente upgrade iets heeft gebroken.", "ru": "Внимание, понижение версии не рекомендуется. Делайте это только в том случае, если недавнее обновление что-то сломало.", "xloc": [ - "default.handlebars->23->178" + "default.handlebars->25->178" ] }, { @@ -12626,7 +12632,7 @@ "ru": "Подождите пару минут для получения подтверждения.", "xloc": [ "default-mobile.handlebars->9->35", - "default.handlebars->23->922" + "default.handlebars->25->925" ] }, { @@ -12637,8 +12643,8 @@ "nl": "Plugin Actie", "ru": "Действие плагина", "xloc": [ - "default.handlebars->23->1451", - "default.handlebars->23->177" + "default.handlebars->25->1454", + "default.handlebars->25->177" ] }, { @@ -12649,7 +12655,7 @@ "nl": "Plugin fout", "ru": "Ошибка плагина", "xloc": [ - "default.handlebars->23->179" + "default.handlebars->25->179" ] }, { @@ -12657,7 +12663,7 @@ "en": "PluginHandler could not event message: ", "nl": "PluginHandler kon geen gebeurtenisbericht weergeven: ", "xloc": [ - "default.handlebars->23->167" + "default.handlebars->25->167" ] }, { @@ -12706,7 +12712,7 @@ "ru": "PogoPlug ARM", "xloc": [ "default-mobile.handlebars->9->156", - "default.handlebars->23->26" + "default.handlebars->25->26" ] }, { @@ -12720,7 +12726,7 @@ "ru": "Политика", "xloc": [ "default-mobile.handlebars->9->62", - "default.handlebars->23->956" + "default.handlebars->25->959" ] }, { @@ -12732,7 +12738,7 @@ "pt": "polonês", "ru": "Польский", "xloc": [ - "default.handlebars->23->840" + "default.handlebars->25->843" ] }, { @@ -12744,7 +12750,7 @@ "pt": "Português", "ru": "Португальский", "xloc": [ - "default.handlebars->23->841" + "default.handlebars->25->844" ] }, { @@ -12756,7 +12762,7 @@ "pt": "Português (Brasil)", "ru": "Португальский (Бразилия)", "xloc": [ - "default.handlebars->23->842" + "default.handlebars->25->845" ] }, { @@ -12790,7 +12796,7 @@ "en": "Power States", "nl": "Power Status", "xloc": [ - "default.handlebars->23->1138", + "default.handlebars->25->1141", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -12806,8 +12812,8 @@ "xloc": [ "default-mobile.handlebars->9->105", "default-mobile.handlebars->9->209", - "default.handlebars->23->529", - "default.handlebars->23->6" + "default.handlebars->25->532", + "default.handlebars->25->6" ] }, { @@ -12820,7 +12826,7 @@ "pt": "Desligar dispositivos", "ru": "Выключить устройства", "xloc": [ - "default.handlebars->23->390" + "default.handlebars->25->390" ] }, { @@ -12835,8 +12841,8 @@ "xloc": [ "default-mobile.handlebars->9->100", "default-mobile.handlebars->9->107", - "default.handlebars->23->1", - "default.handlebars->23->350" + "default.handlebars->25->1", + "default.handlebars->25->350" ] }, { @@ -12851,8 +12857,8 @@ "xloc": [ "default-mobile.handlebars->9->106", "default-mobile.handlebars->9->113", - "default.handlebars->23->362", - "default.handlebars->23->7" + "default.handlebars->25->362", + "default.handlebars->25->7" ] }, { @@ -12879,7 +12885,7 @@ "pt": "Pressione o botão da tecla agora.", "ru": "Нажмите кнопку ключа сейчас.", "xloc": [ - "default.handlebars->23->150" + "default.handlebars->25->150" ] }, { @@ -12892,7 +12898,7 @@ "ru": "Нажмите Control", "xloc": [ "default-mobile.handlebars->9->234", - "default.handlebars->23->623" + "default.handlebars->25->626" ] }, { @@ -12919,9 +12925,9 @@ "pt": "Solicitar consentimento do usuário", "ru": "Запрос согласия пользователя", "xloc": [ - "default.handlebars->23->1061", - "default.handlebars->23->1065", - "default.handlebars->23->1068" + "default.handlebars->25->1064", + "default.handlebars->25->1068", + "default.handlebars->25->1071" ] }, { @@ -12948,7 +12954,7 @@ "ru": "Публичная ссылка", "xloc": [ "default-mobile.handlebars->9->74", - "default.handlebars->23->1161" + "default.handlebars->25->1164" ] }, { @@ -12960,7 +12966,7 @@ "pt": "Punjabi", "ru": "Пенджаби", "xloc": [ - "default.handlebars->23->843" + "default.handlebars->25->846" ] }, { @@ -12972,7 +12978,7 @@ "pt": "Punjabi (Índia)", "ru": "Пенджаби (Индия)", "xloc": [ - "default.handlebars->23->844" + "default.handlebars->25->847" ] }, { @@ -12984,7 +12990,7 @@ "pt": "Punjabi (Paquistão)", "ru": "Пенджаби (Пакистан)", "xloc": [ - "default.handlebars->23->845" + "default.handlebars->25->848" ] }, { @@ -12996,7 +13002,7 @@ "pt": "Putty", "ru": "Putty", "xloc": [ - "default.handlebars->23->505" + "default.handlebars->25->508" ] }, { @@ -13022,7 +13028,7 @@ "pt": "Quechua", "ru": "Кечуа", "xloc": [ - "default.handlebars->23->846" + "default.handlebars->25->849" ] }, { @@ -13062,7 +13068,25 @@ "pt": "RDP", "ru": "RDP", "xloc": [ - "default.handlebars->23->503" + "default.handlebars->25->506" + ] + }, + { + "en": "RDP Connection", + "xloc": [ + "default.handlebars->25->406" + ] + }, + { + "en": "RDP remote connection port:", + "xloc": [ + "default.handlebars->25->405" + ] + }, + { + "en": "RDP2", + "xloc": [ + "default.handlebars->25->407" ] }, { @@ -13099,7 +13123,7 @@ "en": "RSS", "nl": "RSS", "xloc": [ - "default.handlebars->23->1426" + "default.handlebars->25->1429" ] }, { @@ -13112,7 +13136,7 @@ "pt": "Randomize a senha.", "ru": "Случайный пароль", "xloc": [ - "default.handlebars->23->1238" + "default.handlebars->25->1241" ] }, { @@ -13136,7 +13160,7 @@ "pt": "Reativar Intel®AMT", "ru": "Возобновить Intel® AMT", "xloc": [ - "default.handlebars->23->1039" + "default.handlebars->25->1042" ] }, { @@ -13148,7 +13172,7 @@ "pt": "Realms", "ru": "Области", "xloc": [ - "default.handlebars->23->1246" + "default.handlebars->25->1249" ] }, { @@ -13163,8 +13187,8 @@ "xloc": [ "default-mobile.handlebars->9->248", "default-mobile.handlebars->9->80", - "default.handlebars->23->1167", - "default.handlebars->23->646" + "default.handlebars->25->1170", + "default.handlebars->25->649" ] }, { @@ -13194,7 +13218,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->DeskToolsRefreshButton", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->23->414", + "default.handlebars->25->417", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->DeskToolsRefreshButton", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p40->3->3" @@ -13221,8 +13245,8 @@ "ru": "Реле", "xloc": [ "default-mobile.handlebars->9->124", - "default.handlebars->23->190", - "default.handlebars->23->377" + "default.handlebars->25->190", + "default.handlebars->25->377" ] }, { @@ -13231,7 +13255,7 @@ "en": "Relay Count", "nl": "Relay geteld", "xloc": [ - "default.handlebars->23->1408" + "default.handlebars->25->1411" ] }, { @@ -13240,7 +13264,7 @@ "en": "Relay Errors", "nl": "Relay fouten", "xloc": [ - "default.handlebars->23->1401" + "default.handlebars->25->1404" ] }, { @@ -13252,8 +13276,8 @@ "pt": "Retransmissão de sessão ", "ru": "Ретранслированные сессии", "xloc": [ - "default.handlebars->23->1407", - "default.handlebars->23->1420" + "default.handlebars->25->1410", + "default.handlebars->25->1423" ] }, { @@ -13309,7 +13333,7 @@ "pt": "Área de transferência remota", "ru": "Удаленный буфер обмена", "xloc": [ - "default.handlebars->23->607" + "default.handlebars->25->610" ] }, { @@ -13324,8 +13348,8 @@ "xloc": [ "default-mobile.handlebars->9->296", "default-mobile.handlebars->9->314", - "default.handlebars->23->1085", - "default.handlebars->23->1108" + "default.handlebars->25->1088", + "default.handlebars->25->1111" ] }, { @@ -13339,8 +13363,8 @@ "ru": "Настройки удаленного рабочего стола", "xloc": [ "default-mobile.handlebars->9->229", - "default.handlebars->23->222", - "default.handlebars->23->599" + "default.handlebars->25->222", + "default.handlebars->25->602" ] }, { @@ -13353,7 +13377,7 @@ "pt": "Entrada remota do teclado", "ru": "Ввод с удаленной клавиатуры", "xloc": [ - "default.handlebars->23->605" + "default.handlebars->25->608" ] }, { @@ -13366,7 +13390,7 @@ "ru": "Удаленный Mesh Пользователь", "xloc": [ "default-mobile.handlebars->9->332", - "default.handlebars->23->1127" + "default.handlebars->25->1130" ] }, { @@ -13375,7 +13399,7 @@ "en": "Remote User", "nl": "Externe gebruiker", "xloc": [ - "default.handlebars->23->1301" + "default.handlebars->25->1304" ] }, { @@ -13389,8 +13413,8 @@ "xloc": [ "default-mobile.handlebars->9->297", "default-mobile.handlebars->9->319", - "default.handlebars->23->1086", - "default.handlebars->23->1113" + "default.handlebars->25->1089", + "default.handlebars->25->1116" ] }, { @@ -13403,7 +13427,7 @@ "pt": "A área de transferência remota é válida por 60 segundos.", "ru": "Удаленный буфер обмена действителен в течении 60 секунд.", "xloc": [ - "default.handlebars->23->606" + "default.handlebars->25->609" ] }, { @@ -13430,7 +13454,7 @@ "pt": "Remover", "ru": "Удалить", "xloc": [ - "default.handlebars->23->140" + "default.handlebars->25->140" ] }, { @@ -13439,8 +13463,8 @@ "en": "Remove Device Group", "nl": "Remove Device Group", "xloc": [ - "default.handlebars->23->1293", - "default.handlebars->23->1377" + "default.handlebars->25->1296", + "default.handlebars->25->1380" ] }, { @@ -13449,7 +13473,7 @@ "en": "Remove User", "nl": "Verwijder gebruiker", "xloc": [ - "default.handlebars->23->1373" + "default.handlebars->25->1376" ] }, { @@ -13461,7 +13485,7 @@ "pt": "Remova toda a autenticação do segundo fator.", "ru": "Удалить все двухфакторные аутентификации.", "xloc": [ - "default.handlebars->23->1354" + "default.handlebars->25->1357" ] }, { @@ -13470,7 +13494,7 @@ "en": "Remove all previous events for this userid.", "nl": "Verwijder alle eerdere gebeurtenissen voor dit gebruikers-ID.", "xloc": [ - "default.handlebars->23->1240" + "default.handlebars->25->1243" ] }, { @@ -13479,7 +13503,7 @@ "en": "Remove device on disconnect", "nl": "Verwijder apparaat bij verbreken", "xloc": [ - "default.handlebars->23->1070" + "default.handlebars->25->1073" ] }, { @@ -13491,7 +13515,7 @@ "pt": "Remover localização do nó", "ru": "Удалить местоположение узла", "xloc": [ - "default.handlebars->23->406" + "default.handlebars->25->409" ] }, { @@ -13504,7 +13528,7 @@ "pt": "Remova este dispositivo", "ru": "Удалить устройство", "xloc": [ - "default.handlebars->23->492" + "default.handlebars->25->495" ] }, { @@ -13513,7 +13537,7 @@ "en": "Remove user group membership", "nl": "Verwijder de groepslidmaatschap", "xloc": [ - "default.handlebars->23->1369" + "default.handlebars->25->1372" ] }, { @@ -13522,7 +13546,7 @@ "en": "Remove user group rights to this device group", "nl": "Verwijder gebruikers groepsrechten van deze apparaatgroep", "xloc": [ - "default.handlebars->23->1289" + "default.handlebars->25->1292" ] }, { @@ -13535,9 +13559,9 @@ "pt": "Remova os direitos de usuário deste grupo de dispositivos", "ru": "Удалить права пользователя этой группы", "xloc": [ - "default.handlebars->23->1023", - "default.handlebars->23->1280", - "default.handlebars->23->1363" + "default.handlebars->25->1026", + "default.handlebars->25->1283", + "default.handlebars->25->1366" ] }, { @@ -13554,8 +13578,8 @@ "default-mobile.handlebars->9->84", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->23->1171", - "default.handlebars->23->650", + "default.handlebars->25->1174", + "default.handlebars->25->653", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -13570,7 +13594,7 @@ "pt": "Requisitos:", "ru": "Требования: ", "xloc": [ - "default.handlebars->23->936" + "default.handlebars->25->939" ] }, { @@ -13584,8 +13608,8 @@ "ru": "Требования: {0}.", "xloc": [ "default-mobile.handlebars->9->48", - "default.handlebars->23->1243", - "default.handlebars->23->1352" + "default.handlebars->25->1246", + "default.handlebars->25->1355" ] }, { @@ -13598,7 +13622,7 @@ "pt": "Requer o suporte Microsoft ClickOnce no seu navegador", "ru": "В вашем браузере требуется поддержка Microsoft ClickOnce", "xloc": [ - "default.handlebars->23->502" + "default.handlebars->25->505" ] }, { @@ -13611,8 +13635,8 @@ "pt": "Requer o suporte Microsoft ClickOnce no seu navegador.", "ru": "В вашем браузере требуется поддержка Microsoft ClickOnce.", "xloc": [ - "default.handlebars->23->504", - "default.handlebars->23->506" + "default.handlebars->25->507", + "default.handlebars->25->509" ] }, { @@ -13626,7 +13650,7 @@ "ru": "Перезагрузить", "xloc": [ "default-mobile.handlebars->9->208", - "default.handlebars->23->528", + "default.handlebars->25->531", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -13682,7 +13706,7 @@ "pt": "Redefinir dispositivos", "ru": "Сбросить устройства", "xloc": [ - "default.handlebars->23->389" + "default.handlebars->25->389" ] }, { @@ -13708,7 +13732,7 @@ "pt": "Reiniciar", "ru": "Перезагрузка", "xloc": [ - "default.handlebars->23->621", + "default.handlebars->25->624", "player.htm->p11->deskarea0->deskarea4->3" ] }, @@ -13722,7 +13746,7 @@ "pt": "Restaurar servidor", "ru": "Восстановить сервер", "xloc": [ - "default.handlebars->23->963" + "default.handlebars->25->966" ] }, { @@ -13747,7 +13771,7 @@ "pt": "Restaurar o servidor usando um backup, isso excluirá os dados existentes do servidor. Faça isso apenas se você souber o que está fazendo.", "ru": "Восстановить сервер из резервной копии, это удалит существующие данные сервера . Продолжайте дальше, но только если вы знаете, что делаете.", "xloc": [ - "default.handlebars->23->960" + "default.handlebars->25->963" ] }, { @@ -13760,7 +13784,7 @@ "pt": "Restrições", "ru": "Ограничения", "xloc": [ - "default.handlebars->23->1312" + "default.handlebars->25->1315" ] }, { @@ -13772,7 +13796,7 @@ "pt": "Rhaeto-Romanic", "ru": "Ретороманский", "xloc": [ - "default.handlebars->23->847" + "default.handlebars->25->850" ] }, { @@ -13785,7 +13809,7 @@ "pt": "Romena", "ru": "Румынский", "xloc": [ - "default.handlebars->23->848" + "default.handlebars->25->851" ] }, { @@ -13798,7 +13822,7 @@ "pt": "Romeno (Moldávia)", "ru": "Румынский (Молдавия)", "xloc": [ - "default.handlebars->23->849" + "default.handlebars->25->852" ] }, { @@ -13813,8 +13837,8 @@ "xloc": [ "default-mobile.handlebars->9->242", "default-mobile.handlebars->9->66", - "default.handlebars->23->1146", - "default.handlebars->23->640" + "default.handlebars->25->1149", + "default.handlebars->25->643" ] }, { @@ -13827,8 +13851,8 @@ "pt": "Certificado raiz", "ru": "Root/Корневой сертификат", "xloc": [ - "default.handlebars->23->268", - "default.handlebars->23->275" + "default.handlebars->25->268", + "default.handlebars->25->275" ] }, { @@ -13841,8 +13865,8 @@ "pt": "Arquivo de certificado raiz", "ru": "Файл root/корневого сертификата", "xloc": [ - "default.handlebars->23->270", - "default.handlebars->23->276" + "default.handlebars->25->270", + "default.handlebars->25->276" ] }, { @@ -13892,8 +13916,8 @@ "pt": "Roteador", "ru": "Маршрутизатор", "xloc": [ - "default.handlebars->23->209", - "default.handlebars->23->499" + "default.handlebars->25->209", + "default.handlebars->25->502" ] }, { @@ -13906,7 +13930,7 @@ "pt": "Russo", "ru": "Русский", "xloc": [ - "default.handlebars->23->850" + "default.handlebars->25->853" ] }, { @@ -13919,7 +13943,7 @@ "pt": "Russo (Moldávia)", "ru": "Русский (Молдавия)", "xloc": [ - "default.handlebars->23->851" + "default.handlebars->25->854" ] }, { @@ -13932,7 +13956,7 @@ "pt": "Igual ao nome do dispositivo", "ru": "Такое же как имя устройства", "xloc": [ - "default.handlebars->23->240" + "default.handlebars->25->240" ] }, { @@ -13944,7 +13968,7 @@ "pt": "Sami (lapão)", "ru": "Саамский", "xloc": [ - "default.handlebars->23->852" + "default.handlebars->25->855" ] }, { @@ -13956,7 +13980,7 @@ "pt": "Valores de intervalo de IP de amostra
192.168.0.100
192.168.1.0/24
192.167.0.1-192.168.0.100", "ru": "Примерные значения IP диапазона
192.168.0.100
192.168.1.0/24
192.167.0.1-192.168.0.100", "xloc": [ - "default.handlebars->23->163" + "default.handlebars->25->163" ] }, { @@ -13968,7 +13992,7 @@ "pt": "Sango", "ru": "Санго", "xloc": [ - "default.handlebars->23->853" + "default.handlebars->25->856" ] }, { @@ -13980,7 +14004,7 @@ "pt": "Sanskrit", "ru": "Санскритский", "xloc": [ - "default.handlebars->23->854" + "default.handlebars->25->857" ] }, { @@ -13992,7 +14016,7 @@ "pt": "Sardinian", "ru": "Сардинский", "xloc": [ - "default.handlebars->23->855" + "default.handlebars->25->858" ] }, { @@ -14018,7 +14042,7 @@ "pt": "Salvar localização do nó", "ru": "Сохранить расположение узла", "xloc": [ - "default.handlebars->23->407" + "default.handlebars->25->410" ] }, { @@ -14058,7 +14082,7 @@ "pt": "Scan", "ru": "Сканировать", "xloc": [ - "default.handlebars->23->255" + "default.handlebars->25->255" ] }, { @@ -14071,7 +14095,7 @@ "pt": "Escaneamento via rede", "ru": "Сканировать сеть", "xloc": [ - "default.handlebars->23->228" + "default.handlebars->25->228" ] }, { @@ -14084,7 +14108,7 @@ "pt": "Digitalizar para Intel® dispositivos AMT", "ru": "Сканировать на наличие Intel® AMT устройств", "xloc": [ - "default.handlebars->23->256" + "default.handlebars->25->256" ] }, { @@ -14097,7 +14121,7 @@ "pt": "Escaneando...", "ru": "Сканирование...", "xloc": [ - "default.handlebars->23->257" + "default.handlebars->25->257" ] }, { @@ -14110,7 +14134,7 @@ "pt": "Procurar", "ru": "Поиск", "xloc": [ - "default.handlebars->23->420", + "default.handlebars->25->423", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -14151,9 +14175,9 @@ "ru": "Защита", "xloc": [ "default-mobile.handlebars->9->214", - "default.handlebars->23->1336", - "default.handlebars->23->244", - "default.handlebars->23->539" + "default.handlebars->25->1339", + "default.handlebars->25->244", + "default.handlebars->25->542" ] }, { @@ -14166,7 +14190,7 @@ "pt": "Chave de segurança", "ru": "Ключ безопасности", "xloc": [ - "default.handlebars->23->1334" + "default.handlebars->25->1337" ] }, { @@ -14179,10 +14203,10 @@ "pt": "Selecionar tudo", "ru": "Выбрать все", "xloc": [ - "default.handlebars->23->1163", - "default.handlebars->23->382", - "default.handlebars->23->642", - "default.handlebars->23->644", + "default.handlebars->25->1166", + "default.handlebars->25->382", + "default.handlebars->25->645", + "default.handlebars->25->647", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -14199,9 +14223,9 @@ "pt": "Selecione nenhum", "ru": "Очистить все", "xloc": [ - "default.handlebars->23->1162", - "default.handlebars->23->381", - "default.handlebars->23->643", + "default.handlebars->25->1165", + "default.handlebars->25->381", + "default.handlebars->25->646", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -14214,7 +14238,7 @@ "pt": "Selecione um novo grupo para dispositivos selecionados", "ru": "Выберите новую группу для избранных устройств", "xloc": [ - "default.handlebars->23->553" + "default.handlebars->25->556" ] }, { @@ -14226,7 +14250,7 @@ "pt": "Selecione um novo grupo para este dispositivo", "ru": "Выберите новую группу для этого устройства", "xloc": [ - "default.handlebars->23->552" + "default.handlebars->25->555" ] }, { @@ -14238,7 +14262,7 @@ "pt": "Selecione um nó para colocar", "ru": "Выберите узел для размещения", "xloc": [ - "default.handlebars->23->423" + "default.handlebars->25->426" ] }, { @@ -14250,7 +14274,7 @@ "pt": "Selecione uma operação para executar em todos os dispositivos selecionados. As ações serão executadas apenas com os direitos adequados.", "ru": "Выберите действие для осуществления на избранных устройствах. Действия будут выполнены только при наличии соответствующих прав.", "xloc": [ - "default.handlebars->23->385" + "default.handlebars->25->385" ] }, { @@ -14263,7 +14287,7 @@ "ru": "Выберите действие для осуществления на этом устройстве.", "xloc": [ "default-mobile.handlebars->9->205", - "default.handlebars->23->525" + "default.handlebars->25->528" ] }, { @@ -14290,7 +14314,7 @@ "ru": "Только собственные события", "xloc": [ "default-mobile.handlebars->9->324", - "default.handlebars->23->1118" + "default.handlebars->25->1121" ] }, { @@ -14318,8 +14342,8 @@ "pt": "Enviar Mensagem MQTT", "ru": "Отправить MQTT Сообщение", "xloc": [ - "default.handlebars->23->383", - "default.handlebars->23->530" + "default.handlebars->25->383", + "default.handlebars->25->533" ] }, { @@ -14332,7 +14356,7 @@ "pt": "Enviar mensagem MQTT", "ru": "Отправить MQTT сообщение", "xloc": [ - "default.handlebars->23->545" + "default.handlebars->25->548" ] }, { @@ -14341,7 +14365,7 @@ "en": "Send a notice to all users in this group.", "nl": "Stuur een bericht naar alle gebruikers in deze groep.", "xloc": [ - "default.handlebars->23->1277" + "default.handlebars->25->1280" ] }, { @@ -14354,7 +14378,7 @@ "pt": "Envie uma notificação de texto para este usuário.", "ru": "Отправить текстовое уведомление этому пользователю.", "xloc": [ - "default.handlebars->23->1214" + "default.handlebars->25->1217" ] }, { @@ -14367,7 +14391,7 @@ "pt": "Enviar link de instalação", "ru": "Отправить ссылку для установки", "xloc": [ - "default.handlebars->23->286" + "default.handlebars->25->286" ] }, { @@ -14380,7 +14404,7 @@ "pt": "Enviar email de convite.", "ru": "Отправить приглашение по эл. почте.", "xloc": [ - "default.handlebars->23->1242" + "default.handlebars->25->1245" ] }, { @@ -14405,7 +14429,7 @@ "pt": "Enviar notificação do usuário", "ru": "Отправить уведомление пользователю", "xloc": [ - "default.handlebars->23->1341" + "default.handlebars->25->1344" ] }, { @@ -14417,7 +14441,7 @@ "pt": "Sérvia", "ru": "Сербский", "xloc": [ - "default.handlebars->23->858" + "default.handlebars->25->861" ] }, { @@ -14429,7 +14453,7 @@ "pt": "Serial", "ru": "Серийный номер", "xloc": [ - "default.handlebars->23->72" + "default.handlebars->25->72" ] }, { @@ -14441,7 +14465,7 @@ "pt": "Backup do servidor", "ru": "Резервное копирование сервера", "xloc": [ - "default.handlebars->23->1251" + "default.handlebars->25->1254" ] }, { @@ -14452,7 +14476,7 @@ "nl": "Server Certificaat", "ru": "Сертификат сервера", "xloc": [ - "default.handlebars->23->1436" + "default.handlebars->25->1439" ] }, { @@ -14466,9 +14490,9 @@ "xloc": [ "default-mobile.handlebars->9->303", "default-mobile.handlebars->9->316", - "default.handlebars->23->1092", - "default.handlebars->23->1110", - "default.handlebars->23->1249" + "default.handlebars->25->1095", + "default.handlebars->25->1113", + "default.handlebars->25->1252" ] }, { @@ -14480,8 +14504,8 @@ "pt": "Permissões do servidor", "ru": "Разрешения сервера", "xloc": [ - "default.handlebars->23->1207", - "default.handlebars->23->1259" + "default.handlebars->25->1210", + "default.handlebars->25->1262" ] }, { @@ -14493,7 +14517,7 @@ "pt": "Cota do servidor", "ru": "Квота сервера", "xloc": [ - "default.handlebars->23->1320" + "default.handlebars->25->1323" ] }, { @@ -14505,7 +14529,7 @@ "pt": "Restauração do servidor", "ru": "Восстановление сервера", "xloc": [ - "default.handlebars->23->1252" + "default.handlebars->25->1255" ] }, { @@ -14518,7 +14542,7 @@ "pt": "Direitos do servidor", "ru": "Права сервера", "xloc": [ - "default.handlebars->23->1319" + "default.handlebars->25->1322" ] }, { @@ -14527,7 +14551,7 @@ "en": "Server State", "nl": "Server Status", "xloc": [ - "default.handlebars->23->1387" + "default.handlebars->25->1390" ] }, { @@ -14553,7 +14577,7 @@ "pt": "Rastreamento de servidor", "ru": "Трассировка сервера", "xloc": [ - "default.handlebars->23->1445" + "default.handlebars->25->1448" ] }, { @@ -14566,7 +14590,7 @@ "pt": "Atualizações do Servidor", "ru": "Обновления сервера", "xloc": [ - "default.handlebars->23->1253" + "default.handlebars->25->1256" ] }, { @@ -14627,7 +14651,7 @@ "pt": "O servidor não possui log de erros.", "ru": "На сервере нет журнала ошибок.", "xloc": [ - "default.handlebars->23->116" + "default.handlebars->25->116" ] }, { @@ -14652,7 +14676,7 @@ "pt": "ServerStats.csv", "ru": "ServerStats.csv", "xloc": [ - "default.handlebars->23->1428" + "default.handlebars->25->1431" ] }, { @@ -14664,7 +14688,7 @@ "pt": "Detalhes do serviço", "ru": "Детайли сервиса", "xloc": [ - "default.handlebars->23->622" + "default.handlebars->25->625" ] }, { @@ -14730,7 +14754,7 @@ "pt": "Arquivo de configurações", "ru": "Файл с настройками", "xloc": [ - "default.handlebars->23->331" + "default.handlebars->25->331" ] }, { @@ -14755,7 +14779,7 @@ "pt": "Configuração CIRA", "ru": "Установить CIRA", "xloc": [ - "default.handlebars->23->263" + "default.handlebars->25->263" ] }, { @@ -14767,7 +14791,7 @@ "pt": "Método de instalação", "ru": "Метод установки", "xloc": [ - "default.handlebars->23->261" + "default.handlebars->25->261" ] }, { @@ -14781,10 +14805,10 @@ "ru": "Установка...", "xloc": [ "default-mobile.handlebars->9->3", - "default.handlebars->23->10", - "default.handlebars->23->212", - "default.handlebars->23->215", - "default.handlebars->23->221", + "default.handlebars->25->10", + "default.handlebars->25->212", + "default.handlebars->25->215", + "default.handlebars->25->221", "xterm.handlebars->9->3" ] }, @@ -14810,7 +14834,7 @@ "pt": "Processo compartilhado", "ru": "Общий процесс", "xloc": [ - "default.handlebars->23->616" + "default.handlebars->25->619" ] }, { @@ -14892,7 +14916,7 @@ "ru": "Показывать только собственные события", "xloc": [ "default-mobile.handlebars->9->306", - "default.handlebars->23->1095" + "default.handlebars->25->1098" ] }, { @@ -14905,7 +14929,7 @@ "pt": "Mostrar barra de ferramentas de conexão", "ru": "Показать панель инструментов подключения", "xloc": [ - "default.handlebars->23->1062" + "default.handlebars->25->1065" ] }, { @@ -14917,7 +14941,7 @@ "pt": "Mostrar informações de localizações do dispositivo", "ru": "Показать информацию о расположении устройства", "xloc": [ - "default.handlebars->23->496" + "default.handlebars->25->499" ] }, { @@ -14929,7 +14953,7 @@ "pt": "Mostrar informações da interface de rede do dispositivo", "ru": "Показать информацию о сетевом интерфейсе устройства", "xloc": [ - "default.handlebars->23->494" + "default.handlebars->25->497" ] }, { @@ -14966,8 +14990,8 @@ "pt": "Modo de controle de administrador simples (ACM)", "ru": "Простой режим управления администратора (ACM)", "xloc": [ - "default.handlebars->23->1000", - "default.handlebars->23->1026" + "default.handlebars->25->1003", + "default.handlebars->25->1029" ] }, { @@ -14979,9 +15003,9 @@ "pt": "Modo de Controle de Cliente Simples (CCM)", "ru": "Простой режим управления клиента (CCM)", "xloc": [ - "default.handlebars->23->1029", - "default.handlebars->23->1033", - "default.handlebars->23->998" + "default.handlebars->25->1001", + "default.handlebars->25->1032", + "default.handlebars->25->1036" ] }, { @@ -14994,7 +15018,7 @@ "pt": "Sindhi", "ru": "Синдхи", "xloc": [ - "default.handlebars->23->856" + "default.handlebars->25->859" ] }, { @@ -15007,7 +15031,7 @@ "pt": "Cingalês", "ru": "Сингальский", "xloc": [ - "default.handlebars->23->857" + "default.handlebars->25->860" ] }, { @@ -15029,7 +15053,7 @@ "en": "Size: 100%", "nl": "Grootte: 150%", "xloc": [ - "default.handlebars->23->670" + "default.handlebars->25->673" ] }, { @@ -15038,7 +15062,7 @@ "en": "Size: 125%", "nl": "Grootte: 150%", "xloc": [ - "default.handlebars->23->671" + "default.handlebars->25->674" ] }, { @@ -15047,7 +15071,7 @@ "en": "Size: 150%", "nl": "Grootte: 150%", "xloc": [ - "default.handlebars->23->672" + "default.handlebars->25->675" ] }, { @@ -15056,7 +15080,7 @@ "en": "Size: 200%", "nl": "Grootte: 200%", "xloc": [ - "default.handlebars->23->673" + "default.handlebars->25->676" ] }, { @@ -15073,10 +15097,10 @@ "default-mobile.handlebars->9->102", "default-mobile.handlebars->9->103", "default-mobile.handlebars->9->207", - "default.handlebars->23->2", - "default.handlebars->23->3", - "default.handlebars->23->4", - "default.handlebars->23->527" + "default.handlebars->25->2", + "default.handlebars->25->3", + "default.handlebars->25->4", + "default.handlebars->25->530" ] }, { @@ -15088,7 +15112,7 @@ "pt": "Hibernar dispositivo", "ru": "Устройства в режиме сна", "xloc": [ - "default.handlebars->23->388" + "default.handlebars->25->388" ] }, { @@ -15103,8 +15127,8 @@ "xloc": [ "default-mobile.handlebars->9->108", "default-mobile.handlebars->9->109", - "default.handlebars->23->352", - "default.handlebars->23->354" + "default.handlebars->25->352", + "default.handlebars->25->354" ] }, { @@ -15117,7 +15141,7 @@ "pt": "Eslovaco", "ru": "Словацкий", "xloc": [ - "default.handlebars->23->859" + "default.handlebars->25->862" ] }, { @@ -15130,7 +15154,7 @@ "pt": "Esloveno", "ru": "Словенский", "xloc": [ - "default.handlebars->23->860" + "default.handlebars->25->863" ] }, { @@ -15170,7 +15194,7 @@ "pt": "Foco pequeno", "ru": "Малая фокусировка", "xloc": [ - "default.handlebars->23->602" + "default.handlebars->25->605" ] }, { @@ -15182,7 +15206,7 @@ "pt": "Agente de desconexão suave", "ru": "Програмное отключение агента", "xloc": [ - "default.handlebars->23->695" + "default.handlebars->25->698" ] }, { @@ -15195,7 +15219,7 @@ "ru": "Soft-Off", "xloc": [ "default-mobile.handlebars->9->112", - "default.handlebars->23->360" + "default.handlebars->25->360" ] }, { @@ -15220,7 +15244,7 @@ "pt": "Somani", "ru": "Сомани", "xloc": [ - "default.handlebars->23->861" + "default.handlebars->25->864" ] }, { @@ -15232,7 +15256,7 @@ "pt": "Sorbian", "ru": "Сорбский", "xloc": [ - "default.handlebars->23->862" + "default.handlebars->25->865" ] }, { @@ -15334,7 +15358,7 @@ "pt": "Espanhol", "ru": "Испанский", "xloc": [ - "default.handlebars->23->863" + "default.handlebars->25->866" ] }, { @@ -15346,7 +15370,7 @@ "pt": "Espanhol (Argentina)", "ru": "Испанский (Аргентина)", "xloc": [ - "default.handlebars->23->864" + "default.handlebars->25->867" ] }, { @@ -15358,7 +15382,7 @@ "pt": "Espanhol (Bolívia)", "ru": "Испанский (Боливия)", "xloc": [ - "default.handlebars->23->865" + "default.handlebars->25->868" ] }, { @@ -15370,7 +15394,7 @@ "pt": "Espanhol (Chile)", "ru": "Испанский (Чили)", "xloc": [ - "default.handlebars->23->866" + "default.handlebars->25->869" ] }, { @@ -15382,7 +15406,7 @@ "pt": "Espanhol (Colômbia)", "ru": "Испанский (Колумбия)", "xloc": [ - "default.handlebars->23->867" + "default.handlebars->25->870" ] }, { @@ -15394,7 +15418,7 @@ "pt": "Espanhol (Costa Rica)", "ru": "Испанский (Коста-Рика)", "xloc": [ - "default.handlebars->23->868" + "default.handlebars->25->871" ] }, { @@ -15406,7 +15430,7 @@ "pt": "Espanhol (República Dominicana)", "ru": "Испанский (Доминиканская Республика)", "xloc": [ - "default.handlebars->23->869" + "default.handlebars->25->872" ] }, { @@ -15418,7 +15442,7 @@ "pt": "Espanhol (Equador)", "ru": "Испанский (Эквадор)", "xloc": [ - "default.handlebars->23->870" + "default.handlebars->25->873" ] }, { @@ -15430,7 +15454,7 @@ "pt": "Espanhol (El Salvador)", "ru": "Испанский (Сальвадор)", "xloc": [ - "default.handlebars->23->871" + "default.handlebars->25->874" ] }, { @@ -15442,7 +15466,7 @@ "pt": "Espanhol (Guatemala)", "ru": "Испанский (Гватемала)", "xloc": [ - "default.handlebars->23->872" + "default.handlebars->25->875" ] }, { @@ -15454,7 +15478,7 @@ "pt": "Espanhol (Honduras)", "ru": "Испанский (Гондурас)", "xloc": [ - "default.handlebars->23->873" + "default.handlebars->25->876" ] }, { @@ -15466,7 +15490,7 @@ "pt": "Espanhol (México)", "ru": "Испанский (Мексика)", "xloc": [ - "default.handlebars->23->874" + "default.handlebars->25->877" ] }, { @@ -15478,7 +15502,7 @@ "pt": "Espanhol (Nicarágua)", "ru": "Испанский (Никарагуа)", "xloc": [ - "default.handlebars->23->875" + "default.handlebars->25->878" ] }, { @@ -15490,7 +15514,7 @@ "pt": "Espanhol (Panamá)", "ru": "Испанский (Панама)", "xloc": [ - "default.handlebars->23->876" + "default.handlebars->25->879" ] }, { @@ -15502,7 +15526,7 @@ "pt": "Espanhol (Paraguai)", "ru": "Испанский (Парагвай)", "xloc": [ - "default.handlebars->23->877" + "default.handlebars->25->880" ] }, { @@ -15514,7 +15538,7 @@ "pt": "Espanhol (Peru)", "ru": "Испанский (Перу)", "xloc": [ - "default.handlebars->23->878" + "default.handlebars->25->881" ] }, { @@ -15526,7 +15550,7 @@ "pt": "Espanhol (Porto Rico)", "ru": "Испанский (Пуэрто-Рико)", "xloc": [ - "default.handlebars->23->879" + "default.handlebars->25->882" ] }, { @@ -15538,7 +15562,7 @@ "pt": "Espanhol (Espanha)", "ru": "Испанский (Испания)", "xloc": [ - "default.handlebars->23->880" + "default.handlebars->25->883" ] }, { @@ -15550,7 +15574,7 @@ "pt": "Espanhol (Uruguai)", "ru": "Испанский (Уругвай)", "xloc": [ - "default.handlebars->23->881" + "default.handlebars->25->884" ] }, { @@ -15562,7 +15586,7 @@ "pt": "Espanhol (Venezuela)", "ru": "Испанский (Венесуэла)", "xloc": [ - "default.handlebars->23->882" + "default.handlebars->25->885" ] }, { @@ -15588,7 +15612,7 @@ "pt": "Start", "ru": "Старт", "xloc": [ - "default.handlebars->23->619" + "default.handlebars->25->622" ] }, { @@ -15600,7 +15624,7 @@ "pt": "Estado", "ru": "Состояние", "xloc": [ - "default.handlebars->23->610", + "default.handlebars->25->613", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -15626,7 +15650,7 @@ "pt": "Status", "ru": "Статус", "xloc": [ - "default.handlebars->23->1347", + "default.handlebars->25->1350", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -15640,7 +15664,7 @@ "pt": "Pare", "ru": "Стоп", "xloc": [ - "default.handlebars->23->620" + "default.handlebars->25->623" ] }, { @@ -15653,7 +15677,7 @@ "ru": "Прервать процесс #{0} \\\"{1}\\\"?", "xloc": [ "default-mobile.handlebars->9->235", - "default.handlebars->23->624" + "default.handlebars->25->627" ] }, { @@ -15678,7 +15702,7 @@ "pt": "O limite de armazenamento excede", "ru": "Превышен лимит места для хранения", "xloc": [ - "default.handlebars->23->1149" + "default.handlebars->25->1152" ] }, { @@ -15690,7 +15714,7 @@ "pt": "Forte", "ru": "Надежный", "xloc": [ - "default.handlebars->23->953" + "default.handlebars->25->956" ] }, { @@ -15719,7 +15743,7 @@ "pt": "Sucesso", "ru": "Успешно", "xloc": [ - "default.handlebars->23->84" + "default.handlebars->25->84" ] }, { @@ -15749,7 +15773,7 @@ "pt": "Sutu", "ru": "Суту", "xloc": [ - "default.handlebars->23->883" + "default.handlebars->25->886" ] }, { @@ -15761,7 +15785,7 @@ "pt": "Suaíli", "ru": "Суахили", "xloc": [ - "default.handlebars->23->884" + "default.handlebars->25->887" ] }, { @@ -15773,7 +15797,7 @@ "pt": "Sueco", "ru": "Шведский", "xloc": [ - "default.handlebars->23->885" + "default.handlebars->25->888" ] }, { @@ -15785,7 +15809,7 @@ "pt": "Sueco (Finlândia)", "ru": "Шведский (Финляндия)", "xloc": [ - "default.handlebars->23->886" + "default.handlebars->25->889" ] }, { @@ -15797,7 +15821,7 @@ "pt": "Sueco (Suécia)", "ru": "Шведский (Швеция)", "xloc": [ - "default.handlebars->23->887" + "default.handlebars->25->890" ] }, { @@ -15806,7 +15830,7 @@ "en": "Sync server device name to hostname", "nl": "Synchroniseer serverapparaatnaam met hostnaam", "xloc": [ - "default.handlebars->23->1071" + "default.handlebars->25->1074" ] }, { @@ -15860,7 +15884,7 @@ "ru": "TLS", "xloc": [ "default-mobile.handlebars->9->183", - "default.handlebars->23->454" + "default.handlebars->25->457" ] }, { @@ -15874,8 +15898,8 @@ "ru": "Требуется безопасность TLS", "xloc": [ "default-mobile.handlebars->9->216", - "default.handlebars->23->246", - "default.handlebars->23->541" + "default.handlebars->25->246", + "default.handlebars->25->544" ] }, { @@ -15898,7 +15922,7 @@ "pt": "Tag1, Tag2, Tag3", "ru": "Тег1, Тег2, Тег3", "xloc": [ - "default.handlebars->23->593" + "default.handlebars->25->596" ] }, { @@ -15913,7 +15937,7 @@ "default-mobile.handlebars->9->197", "default-mobile.handlebars->9->198", "default-mobile.handlebars->9->225", - "default.handlebars->23->592", + "default.handlebars->25->595", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -15926,7 +15950,7 @@ "pt": "Tâmil", "ru": "Тамильский", "xloc": [ - "default.handlebars->23->888" + "default.handlebars->25->891" ] }, { @@ -15938,7 +15962,7 @@ "pt": "Tatar", "ru": "Татарский", "xloc": [ - "default.handlebars->23->889" + "default.handlebars->25->892" ] }, { @@ -15950,7 +15974,7 @@ "pt": "Teluga", "ru": "Телугу", "xloc": [ - "default.handlebars->23->890" + "default.handlebars->25->893" ] }, { @@ -15963,8 +15987,8 @@ "pt": "Terminal", "ru": "Терминал", "xloc": [ - "default.handlebars->23->1063", - "default.handlebars->23->410", + "default.handlebars->25->1066", + "default.handlebars->25->413", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal" ] @@ -15991,7 +16015,7 @@ "pt": "Notificação - terminal", "ru": "Терминал уведомление", "xloc": [ - "default.handlebars->23->985" + "default.handlebars->25->988" ] }, { @@ -16003,7 +16027,7 @@ "pt": "Prompt do terminal", "ru": "Запрос терминала", "xloc": [ - "default.handlebars->23->984" + "default.handlebars->25->987" ] }, { @@ -16045,7 +16069,7 @@ "pt": "Thai", "ru": "Тайский", "xloc": [ - "default.handlebars->23->891" + "default.handlebars->25->894" ] }, { @@ -16070,7 +16094,7 @@ "pt": "O nome do grupo de dispositivos ao qual este computador pertence", "ru": "Имя группы устройств, к которой принадлежит этот компьютер", "xloc": [ - "default.handlebars->23->434" + "default.handlebars->25->437" ] }, { @@ -16082,7 +16106,7 @@ "pt": "O nome do grupo de dispositivos ao qual este computador pertence.", "ru": "Имя группы устройств, к которой принадлежит этот компьютер.", "xloc": [ - "default.handlebars->23->432" + "default.handlebars->25->435" ] }, { @@ -16095,7 +16119,7 @@ "pt": "Atualmente não há notificações", "ru": "На данный момент уведомлений нет", "xloc": [ - "default.handlebars->23->1381" + "default.handlebars->25->1384" ] }, { @@ -16120,7 +16144,7 @@ "pt": "Essas configurações podem ser usadas para conectar o MQTT a este dispositivo.", "ru": "Эти настройки можно использовать для подключения MQTT для этого устройства.", "xloc": [ - "default.handlebars->23->175" + "default.handlebars->25->175" ] }, { @@ -16133,7 +16157,7 @@ "ru": "Эта учетная запись не имеет прав для создания новой группы устройств.", "xloc": [ "default-mobile.handlebars->9->51", - "default.handlebars->23->939" + "default.handlebars->25->942" ] }, { @@ -16145,7 +16169,7 @@ "pt": "Esta não é uma política segura, pois os agentes estarão executando a ativação.", "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.", "xloc": [ - "default.handlebars->23->1051" + "default.handlebars->25->1054" ] }, { @@ -16170,7 +16194,7 @@ "pt": "Esta política não afetará os dispositivos com Intel® AMT no modo ACM.", "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.", "xloc": [ - "default.handlebars->23->1050" + "default.handlebars->25->1053" ] }, { @@ -16206,7 +16230,7 @@ "pt": "Isso adicionará uma entrada ao log de eventos deste dispositivo.", "ru": "Это добавит запись в журнал событий данного устройства.", "xloc": [ - "default.handlebars->23->520" + "default.handlebars->25->523" ] }, { @@ -16217,7 +16241,7 @@ "nl": "Hiermee worden de apparaten niet van de server verwijderd, maar kunnen de apparaten geen verbinding meer maken met de server. Alle externe toegang tot de apparaten gaat verloren. De apparaten moeten zijn aangesloten om deze opdracht te laten werken.", "ru": "Это не приведет к удалению устройств с сервера, но они больше не смогут подключаться к серверу. Весь удаленный доступ к устройствам будет потерян. Устройства должны быть подключены, чтобы эта команда работала.", "xloc": [ - "default.handlebars->23->548" + "default.handlebars->25->551" ] }, { @@ -16228,7 +16252,7 @@ "nl": "Hiermee wordt dit apparaat niet van de server verwijderd, maar kan het apparaat geen verbinding meer maken met de server. Alle externe toegang tot het apparaat gaat verloren. Het apparaat moet verbonden zijn om dit commando te laten werken.", "ru": "Это не приведет к удалению этого устройства с сервера, но оно больше не сможет подключаться к серверу. Весь удаленный доступ к устройству будет потерян. Для работы этой команды устройство должно быть подключено.", "xloc": [ - "default.handlebars->23->549" + "default.handlebars->25->552" ] }, { @@ -16240,7 +16264,7 @@ "pt": "Tigre", "ru": "Тигровый", "xloc": [ - "default.handlebars->23->892" + "default.handlebars->25->895" ] }, { @@ -16265,7 +16289,7 @@ "pt": "Para adicionar um computador a {0}, execute o seguinte comando.Serão necessárias credenciais raiz.", "ru": "Чтобы добавить компьютер в {0}, введите следующую команду. Root учетные данные будут необходимы.", "xloc": [ - "default.handlebars->23->333" + "default.handlebars->25->333" ] }, { @@ -16277,7 +16301,7 @@ "pt": "Para adicionar um novo Intel® Dispositivo AMT para grupo de dispositivos \\\"{0}\\\" com CIRA, baixe os seguintes arquivos de script e use MeshCommander para executar o script para configurar computadores.", "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующие файлы со скриптами и используйте MeshCommander, чтобы запустить скрипт для настройки компьютеров.", "xloc": [ - "default.handlebars->23->262" + "default.handlebars->25->262" ] }, { @@ -16289,7 +16313,7 @@ "pt": "Para adicionar um novo Intel® Dispositivo AMT para grupo de dispositivos \\\"{0}\\\" com CIRA, carregue o seguinte certificado como raiz confiável no Intel AMT", "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующий сертификат в качестве доверенного корня в Intel AMT", "xloc": [ - "default.handlebars->23->265" + "default.handlebars->25->265" ] }, { @@ -16301,7 +16325,7 @@ "pt": "Para adicionar um novo Intel® Dispositivo AMT para grupo de dispositivos \\\"{0}\\\" com CIRA, carregue o seguinte certificado como raiz confiável no Intel AMT, autentique usando um certificado de cliente com o seguinte nome comum e conecte-se ao servidor a seguir.", "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующий сертификат в качестве доверенного корня в Intel AMT, выполните аутентификацию с использованием сертификата клиента со следующим общим именем и подключитесь к серверу.", "xloc": [ - "default.handlebars->23->274" + "default.handlebars->25->274" ] }, { @@ -16313,7 +16337,7 @@ "pt": "Para adicionar um novo computador ao grupo de dispositivos \\\"{0}\\\", faça o download do agente de malha e instale-o no computador para gerenciar. Este agente possui informações de servidor e grupo de dispositivos incorporadas.", "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Aгент и установите его для управления этим компьютером. В этот агент встроена информация о текищем сервере и группе устройств.", "xloc": [ - "default.handlebars->23->324" + "default.handlebars->25->324" ] }, { @@ -16325,7 +16349,7 @@ "pt": "Para adicionar um novo computador ao grupo de dispositivos \\\"{0}\\\", faça o download do agente de malha e instale-o no computador para gerenciar. Este instalador do agente possui informações de servidor e grupo de dispositivos incorporadas.", "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Агент и установите его для управления этим компьютером. В этот установщик агента встроена информация о текущем сервере и группе устройств.", "xloc": [ - "default.handlebars->23->335" + "default.handlebars->25->335" ] }, { @@ -16337,7 +16361,7 @@ "pt": "Para excluir esta conta, digite a senha da conta nas duas caixas abaixo e pressione ok.", "ru": "Чтобы удалить эту учетную запись, введите пароль учетной записи в оба поля и нажмите ОК.", "xloc": [ - "default.handlebars->23->926" + "default.handlebars->25->929" ] }, { @@ -16373,7 +16397,7 @@ "pt": "Para remover um agente de malha, faça o download do arquivo abaixo, execute-o e clique em \\\"uninstall\\\".", "ru": "Для удаления mesh агента, скачайте файл ниже, запустите его и нажмите \\\"удалить\\\".", "xloc": [ - "default.handlebars->23->338" + "default.handlebars->25->338" ] }, { @@ -16385,7 +16409,7 @@ "pt": "Para remover um agente de malha, execute o seguinte comando. Serão necessárias credenciais raiz.", "ru": "Для удаления mesh агента, выполните следующую команду. Root учетные данные будут необходимы.", "xloc": [ - "default.handlebars->23->345" + "default.handlebars->25->345" ] }, { @@ -16561,7 +16585,7 @@ "nl": "Onderwerp", "pt": "Tema", "xloc": [ - "default.handlebars->23->543" + "default.handlebars->25->546" ] }, { @@ -16598,7 +16622,7 @@ "pt": "Roteador de tráfego usado para conectar-se a um dispositivo através deste servidor", "ru": "Для подключению в устройству был использован траффик маршрутизатор через этот сервер.", "xloc": [ - "default.handlebars->23->498" + "default.handlebars->25->501" ] }, { @@ -16610,7 +16634,7 @@ "pt": "Tente novamente.", "ru": "Попытайтесь снова.", "xloc": [ - "default.handlebars->23->131" + "default.handlebars->25->131" ] }, { @@ -16622,7 +16646,7 @@ "pt": "Tsonga", "ru": "Тсонга", "xloc": [ - "default.handlebars->23->893" + "default.handlebars->25->896" ] }, { @@ -16634,7 +16658,7 @@ "pt": "Tswana", "ru": "Тсвана", "xloc": [ - "default.handlebars->23->894" + "default.handlebars->25->897" ] }, { @@ -16646,7 +16670,7 @@ "pt": "turco", "ru": "Турецкий", "xloc": [ - "default.handlebars->23->895" + "default.handlebars->25->898" ] }, { @@ -16658,7 +16682,7 @@ "pt": "Turcomano", "ru": "Туркменский", "xloc": [ - "default.handlebars->23->896" + "default.handlebars->25->899" ] }, { @@ -16670,7 +16694,7 @@ "pt": "Autenticação de dois fatores", "ru": "Двухфакторная аутентификация", "xloc": [ - "default.handlebars->23->50" + "default.handlebars->25->50" ] }, { @@ -16684,11 +16708,11 @@ "xloc": [ "default-mobile.handlebars->9->279", "default-mobile.handlebars->9->57", - "default.handlebars->23->1027", - "default.handlebars->23->1030", - "default.handlebars->23->617", - "default.handlebars->23->946", - "default.handlebars->23->975", + "default.handlebars->25->1030", + "default.handlebars->25->1033", + "default.handlebars->25->620", + "default.handlebars->25->949", + "default.handlebars->25->978", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, @@ -16701,7 +16725,7 @@ "pt": "Digite um nome de chave, selecione a caixa OTP e pressione o botão no YubiKeytrade;.", "ru": "Введите имя ключа, выберите поле OTP и нажмите кнопку на YubiKey™.", "xloc": [ - "default.handlebars->23->705" + "default.handlebars->25->708" ] }, { @@ -16713,7 +16737,7 @@ "pt": "Digite o nome da chave a ser adicionada.", "ru": "Введите имя ключа для добавления.", "xloc": [ - "default.handlebars->23->702" + "default.handlebars->25->705" ] }, { @@ -16726,7 +16750,7 @@ "pt": "Terminal UTF8", "ru": "Терминал UTF8", "xloc": [ - "default.handlebars->23->628" + "default.handlebars->25->631" ] }, { @@ -16738,7 +16762,7 @@ "pt": "ucraniano", "ru": "Украинский", "xloc": [ - "default.handlebars->23->897" + "default.handlebars->25->900" ] }, { @@ -16750,8 +16774,8 @@ "pt": "Não foi possível acessar um dispositivo até que um endereço de email seja verificado. Isso é necessário para a recuperação de senha. Vá para a guia \\\"Minha conta\\\" para alterar e verificar um endereço de email.", "ru": "Невозможно получить доступ к устройству, пока адрес эл. почты не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес эл. почты.", "xloc": [ - "default.handlebars->23->426", - "default.handlebars->23->941" + "default.handlebars->25->429", + "default.handlebars->25->944" ] }, { @@ -16789,8 +16813,8 @@ "pt": "Não foi possível acessar um dispositivo até que a autenticação de dois fatores esteja ativada. Isso é necessário para segurança extra. Vá para a guia \\\"Minha conta\\\" e consulte a seção \\\"Segurança da conta\\\".", "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите на вкладку \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "xloc": [ - "default.handlebars->23->428", - "default.handlebars->23->943" + "default.handlebars->25->431", + "default.handlebars->25->946" ] }, { @@ -16803,7 +16827,7 @@ "ru": "Невозможно подключить веб-сокет", "xloc": [ "default-mobile.handlebars->9->8", - "default.handlebars->23->48" + "default.handlebars->25->48" ] }, { @@ -16828,7 +16852,7 @@ "ru": "Невозможно выполнить аутентификацию", "xloc": [ "default-mobile.handlebars->9->7", - "default.handlebars->23->47" + "default.handlebars->25->47" ] }, { @@ -16840,7 +16864,7 @@ "pt": "Não foi possível verificar este intervalo de endereços.", "ru": "Невозможно отсканировать этот диапазон адресов.", "xloc": [ - "default.handlebars->23->162" + "default.handlebars->25->162" ] }, { @@ -16864,7 +16888,7 @@ "ru": "Удаление", "xloc": [ "default-mobile.handlebars->9->326", - "default.handlebars->23->1120" + "default.handlebars->25->1123" ] }, { @@ -16876,9 +16900,9 @@ "ru": "Удаление агента", "xloc": [ "default-mobile.handlebars->9->308", - "default.handlebars->23->1097", - "default.handlebars->23->384", - "default.handlebars->23->531" + "default.handlebars->25->1100", + "default.handlebars->25->384", + "default.handlebars->25->534" ] }, { @@ -16889,7 +16913,7 @@ "nl": "deinstallatie agent", "ru": "Удаление агента", "xloc": [ - "default.handlebars->23->551" + "default.handlebars->25->554" ] }, { @@ -16906,13 +16930,13 @@ "default-mobile.handlebars->9->143", "default-mobile.handlebars->9->171", "default-mobile.handlebars->9->172", - "default.handlebars->23->108", - "default.handlebars->23->109", - "default.handlebars->23->13", - "default.handlebars->23->1372", - "default.handlebars->23->380", - "default.handlebars->23->41", - "default.handlebars->23->42" + "default.handlebars->25->108", + "default.handlebars->25->109", + "default.handlebars->25->13", + "default.handlebars->25->1375", + "default.handlebars->25->380", + "default.handlebars->25->41", + "default.handlebars->25->42" ] }, { @@ -16926,7 +16950,7 @@ "ru": "Неизвестно #{0}", "xloc": [ "default-mobile.handlebars->9->273", - "default.handlebars->23->969" + "default.handlebars->25->972" ] }, { @@ -16935,7 +16959,7 @@ "en": "Unknown Action", "nl": "Onbekende actie", "xloc": [ - "default.handlebars->23->1393" + "default.handlebars->25->1396" ] }, { @@ -16944,9 +16968,9 @@ "en": "Unknown Device Group", "nl": "Onbekende apparaatgroep", "xloc": [ - "default.handlebars->23->1286", - "default.handlebars->23->1360", - "default.handlebars->23->1397" + "default.handlebars->25->1289", + "default.handlebars->25->1363", + "default.handlebars->25->1400" ] }, { @@ -16955,7 +16979,7 @@ "en": "Unknown Group", "nl": "Onbekende groep", "xloc": [ - "default.handlebars->23->1389" + "default.handlebars->25->1392" ] }, { @@ -16969,7 +16993,7 @@ "ru": "Состояние неизвестно", "xloc": [ "default-mobile.handlebars->9->178", - "default.handlebars->23->446" + "default.handlebars->25->449" ] }, { @@ -16978,7 +17002,7 @@ "en": "Unknown User Group", "nl": "Onbekende gebruikersgroep", "xloc": [ - "default.handlebars->23->1368" + "default.handlebars->25->1371" ] }, { @@ -16992,7 +17016,7 @@ "ru": "Версия и Состояние неизвестны", "xloc": [ "default-mobile.handlebars->9->180", - "default.handlebars->23->448" + "default.handlebars->25->451" ] }, { @@ -17005,9 +17029,9 @@ "pt": "Ilimitado", "ru": "Неограничено", "xloc": [ - "default.handlebars->23->173", - "default.handlebars->23->297", - "default.handlebars->23->311" + "default.handlebars->25->173", + "default.handlebars->25->297", + "default.handlebars->25->311" ] }, { @@ -17035,7 +17059,7 @@ "nl": "Bijgewerkt", "ru": "Актуально", "xloc": [ - "default.handlebars->23->1450" + "default.handlebars->25->1453" ] }, { @@ -17066,11 +17090,11 @@ "default-mobile.handlebars->9->253", "default-mobile.handlebars->9->271", "default-mobile.handlebars->9->85", - "default.handlebars->23->1172", - "default.handlebars->23->1180", - "default.handlebars->23->651", - "default.handlebars->23->674", - "default.handlebars->23->677", + "default.handlebars->25->1175", + "default.handlebars->25->1183", + "default.handlebars->25->654", + "default.handlebars->25->677", + "default.handlebars->25->680", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -17083,7 +17107,7 @@ "pt": "Carregar núcleo do agente de malha", "ru": "Загрузить ядро Mesh Агента", "xloc": [ - "default.handlebars->23->697" + "default.handlebars->25->700" ] }, { @@ -17095,7 +17119,7 @@ "pt": "Carregar um arquivo principal", "ru": "Загрузить файл ядра", "xloc": [ - "default.handlebars->23->694" + "default.handlebars->25->697" ] }, { @@ -17107,7 +17131,7 @@ "pt": "Carregar núcleo do servidor padrão", "ru": "Загрузить ядро сервера по умолчанию", "xloc": [ - "default.handlebars->23->691" + "default.handlebars->25->694" ] }, { @@ -17119,7 +17143,7 @@ "pt": "Carregar núcleo de recuperação", "ru": "Загрузить ядро восстановления", "xloc": [ - "default.handlebars->23->693" + "default.handlebars->25->696" ] }, { @@ -17128,8 +17152,8 @@ "en": "Upload will overwrite 1 file. Continue?", "nl": "Upload overschrijft {0} bestand. Doorgaan?", "xloc": [ - "default.handlebars->23->1181", - "default.handlebars->23->675" + "default.handlebars->25->1184", + "default.handlebars->25->678" ] }, { @@ -17138,8 +17162,8 @@ "en": "Upload will overwrite {0} files. Continue?", "nl": "Upload overschrijft {0} bestanden. Doorgaan?", "xloc": [ - "default.handlebars->23->1182", - "default.handlebars->23->676" + "default.handlebars->25->1185", + "default.handlebars->25->679" ] }, { @@ -17160,7 +17184,7 @@ "pt": "Sorábio superior", "ru": "Верхний Сорбский", "xloc": [ - "default.handlebars->23->898" + "default.handlebars->25->901" ] }, { @@ -17172,7 +17196,7 @@ "pt": "urdu", "ru": "Урду", "xloc": [ - "default.handlebars->23->899" + "default.handlebars->25->902" ] }, { @@ -17210,8 +17234,8 @@ "pt": "Usava", "ru": "Использовано", "xloc": [ - "default.handlebars->23->1383", - "default.handlebars->23->1385" + "default.handlebars->25->1386", + "default.handlebars->25->1388" ] }, { @@ -17225,10 +17249,10 @@ "ru": "Пользователь", "xloc": [ "default-mobile.handlebars->9->328", - "default.handlebars->23->1024", - "default.handlebars->23->1208", - "default.handlebars->23->1281", - "default.handlebars->23->200" + "default.handlebars->25->1027", + "default.handlebars->25->1211", + "default.handlebars->25->1284", + "default.handlebars->25->200" ] }, { @@ -17240,7 +17264,7 @@ "pt": "Usuário + Arquivos", "ru": "Пользователь + Файлы", "xloc": [ - "default.handlebars->23->1209" + "default.handlebars->25->1212" ] }, { @@ -17252,10 +17276,10 @@ "pt": "Importação de conta de usuário", "ru": "Импорт учетной записи пользователя", "xloc": [ - "default.handlebars->23->1216", - "default.handlebars->23->1217", - "default.handlebars->23->1219", - "default.handlebars->23->1221" + "default.handlebars->25->1219", + "default.handlebars->25->1220", + "default.handlebars->25->1222", + "default.handlebars->25->1224" ] }, { @@ -17264,7 +17288,7 @@ "en": "User Accounts", "nl": "Gebruikersaccounts", "xloc": [ - "default.handlebars->23->1402" + "default.handlebars->25->1405" ] }, { @@ -17277,7 +17301,7 @@ "ru": "Полномочия пользователя", "xloc": [ "default-mobile.handlebars->9->281", - "default.handlebars->23->1019" + "default.handlebars->25->1022" ] }, { @@ -17290,7 +17314,7 @@ "pt": "Consentimento do Usuário", "ru": "Согласие пользователя", "xloc": [ - "default.handlebars->23->991" + "default.handlebars->25->994" ] }, { @@ -17299,9 +17323,9 @@ "en": "User Group", "nl": "Gebruikers Groep", "xloc": [ - "default.handlebars->23->1077", - "default.handlebars->23->1264", - "default.handlebars->23->1375" + "default.handlebars->25->1080", + "default.handlebars->25->1267", + "default.handlebars->25->1378" ] }, { @@ -17319,7 +17343,7 @@ "en": "User Group Memberships", "nl": "Gebruikersgroeps lidmaatschap", "xloc": [ - "default.handlebars->23->1367" + "default.handlebars->25->1370" ] }, { @@ -17331,8 +17355,8 @@ "pt": "Identificador do usuário", "ru": "Идентификатор пользователя", "xloc": [ - "default.handlebars->23->1123", - "default.handlebars->23->1316" + "default.handlebars->25->1126", + "default.handlebars->25->1319" ] }, { @@ -17344,7 +17368,7 @@ "pt": "Exportação da lista de usuários", "ru": "Экспортировать список пользователей", "xloc": [ - "default.handlebars->23->1228" + "default.handlebars->25->1231" ] }, { @@ -17357,7 +17381,7 @@ "pt": "Nome de Usuário", "ru": "Имя пользователя", "xloc": [ - "default.handlebars->23->1122" + "default.handlebars->25->1125" ] }, { @@ -17370,8 +17394,8 @@ "pt": "Nomes de usuário", "ru": "Имена пользователей", "xloc": [ - "default.handlebars->23->1075", - "default.handlebars->23->1305" + "default.handlebars->25->1078", + "default.handlebars->25->1308" ] }, { @@ -17395,7 +17419,7 @@ "pt": "Sessões de Usuário", "ru": "Сессии пользователя", "xloc": [ - "default.handlebars->23->1419" + "default.handlebars->25->1422" ] }, { @@ -17422,8 +17446,8 @@ "pt": "Valor do navegador do usuário", "ru": "Веб броузер пользователя", "xloc": [ - "default.handlebars->23->908", - "default.handlebars->23->910" + "default.handlebars->25->911", + "default.handlebars->25->913" ] }, { @@ -17466,9 +17490,9 @@ "ru": "Имя пользователя", "xloc": [ "default-mobile.handlebars->9->212", - "default.handlebars->23->241", - "default.handlebars->23->271", - "default.handlebars->23->537", + "default.handlebars->25->241", + "default.handlebars->25->271", + "default.handlebars->25->540", "player.htm->3->4" ] }, @@ -17511,9 +17535,9 @@ "pt": "Usuários", "ru": "Пользователи", "xloc": [ - "default.handlebars->23->1263", - "default.handlebars->23->1274", - "default.handlebars->23->1418", + "default.handlebars->25->1266", + "default.handlebars->25->1277", + "default.handlebars->25->1421", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -17523,7 +17547,7 @@ "en": "Users Sessions", "nl": "gebruikers Sessies", "xloc": [ - "default.handlebars->23->1406" + "default.handlebars->25->1409" ] }, { @@ -17535,7 +17559,7 @@ "pt": "VT100+ (F10 = ESC+[OY)", "ru": "VT100+ (F10 = ESC+[OY)", "xloc": [ - "default.handlebars->23->633" + "default.handlebars->25->636" ] }, { @@ -17547,7 +17571,7 @@ "pt": "Venda", "ru": "Венда", "xloc": [ - "default.handlebars->23->900" + "default.handlebars->25->903" ] }, { @@ -17560,8 +17584,8 @@ "pt": "Fornecedor", "ru": "Торговец", "xloc": [ - "default.handlebars->23->67", - "default.handlebars->23->70" + "default.handlebars->25->67", + "default.handlebars->25->70" ] }, { @@ -17601,9 +17625,9 @@ "pt": "Versão", "ru": "Версия", "xloc": [ - "default.handlebars->23->68", - "default.handlebars->23->73", - "default.handlebars->23->81", + "default.handlebars->25->68", + "default.handlebars->25->73", + "default.handlebars->25->81", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -17631,7 +17655,7 @@ "pt": "vietnamita", "ru": "Вьетнамский", "xloc": [ - "default.handlebars->23->901" + "default.handlebars->25->904" ] }, { @@ -17656,7 +17680,7 @@ "pt": "Ver notas sobre este dispositivo", "ru": "Посмотреть заметки об этом устройстве", "xloc": [ - "default.handlebars->23->487" + "default.handlebars->25->490" ] }, { @@ -17668,7 +17692,7 @@ "pt": "Ver notas sobre este grupo de dispositivos", "ru": "Посмотреть заметки об этой группе устройств", "xloc": [ - "default.handlebars->23->1004" + "default.handlebars->25->1007" ] }, { @@ -17680,7 +17704,7 @@ "pt": "Ver notas sobre este usuário", "ru": "Посмотреть заметки об этом пользователе", "xloc": [ - "default.handlebars->23->1339" + "default.handlebars->25->1342" ] }, { @@ -17692,7 +17716,7 @@ "pt": "Volapuk", "ru": "Волапукский", "xloc": [ - "default.handlebars->23->902" + "default.handlebars->25->905" ] }, { @@ -17704,7 +17728,7 @@ "nl": "Waarschuwing", "ru": "ВНИМАНИЕ: ", "xloc": [ - "default.handlebars->23->64" + "default.handlebars->25->64" ] }, { @@ -17730,8 +17754,8 @@ "xloc": [ "default-mobile.handlebars->9->304", "default-mobile.handlebars->9->317", - "default.handlebars->23->1093", - "default.handlebars->23->1111" + "default.handlebars->25->1096", + "default.handlebars->25->1114" ] }, { @@ -17744,7 +17768,7 @@ "ru": "Разбудить", "xloc": [ "default-mobile.handlebars->9->206", - "default.handlebars->23->526" + "default.handlebars->25->529" ] }, { @@ -17756,7 +17780,7 @@ "pt": "Acordar dispositivo", "ru": "Разбудить устройства", "xloc": [ - "default.handlebars->23->387" + "default.handlebars->25->387" ] }, { @@ -17768,7 +17792,7 @@ "pt": "valão", "ru": "Валлонский", "xloc": [ - "default.handlebars->23->903" + "default.handlebars->25->906" ] }, { @@ -17781,7 +17805,7 @@ "pt": "Fraco", "ru": "Слабый", "xloc": [ - "default.handlebars->23->955" + "default.handlebars->25->958" ] }, { @@ -17810,8 +17834,8 @@ "pt": "Servidor web", "ru": "Веб Сервер", "xloc": [ - "default.handlebars->23->1437", - "default.handlebars->23->1438" + "default.handlebars->25->1440", + "default.handlebars->25->1441" ] }, { @@ -17824,7 +17848,7 @@ "pt": "Solicitações de servidor Web", "ru": "Заявки Веб Сервера", "xloc": [ - "default.handlebars->23->1439" + "default.handlebars->25->1442" ] }, { @@ -17836,7 +17860,7 @@ "nl": "Web Socket Relay", "pt": "Encaminhador de soquete da Web", "xloc": [ - "default.handlebars->23->1440" + "default.handlebars->25->1443" ] }, { @@ -17861,7 +17885,7 @@ "nl": "Welkom {0}.", "ru": "Добро пожаловать {0}.", "xloc": [ - "default.handlebars->23->44", + "default.handlebars->25->44", "terms.handlebars->3->1" ] }, @@ -17875,7 +17899,7 @@ "pt": "galês", "ru": "Уэльский", "xloc": [ - "default.handlebars->23->904" + "default.handlebars->25->907" ] }, { @@ -17888,7 +17912,7 @@ "pt": "Será alterado no próximo login.", "ru": "Будет изменено при следующем входе в систему.", "xloc": [ - "default.handlebars->23->1324" + "default.handlebars->25->1327" ] }, { @@ -18002,7 +18026,7 @@ "pt": "WinSCP", "ru": "WinSCP", "xloc": [ - "default.handlebars->23->507" + "default.handlebars->25->510" ] }, { @@ -18014,7 +18038,7 @@ "pt": "Windows", "ru": "Windows", "xloc": [ - "default.handlebars->23->315" + "default.handlebars->25->315" ] }, { @@ -18026,8 +18050,8 @@ "pt": "Windows (.exe)", "ru": "Windows (.exe)", "xloc": [ - "default.handlebars->23->327", - "default.handlebars->23->341" + "default.handlebars->25->327", + "default.handlebars->25->341" ] }, { @@ -18039,7 +18063,7 @@ "pt": "Windows (32 Bits)", "ru": "Windows (32bit)", "xloc": [ - "default.handlebars->23->566" + "default.handlebars->25->569" ] }, { @@ -18051,7 +18075,7 @@ "pt": "Windows (64 Bits)", "ru": "Windows (64bit)", "xloc": [ - "default.handlebars->23->567" + "default.handlebars->25->570" ] }, { @@ -18063,7 +18087,7 @@ "pt": "Windows (Desinstalador)", "ru": "Windows (Удалить)", "xloc": [ - "default.handlebars->23->318" + "default.handlebars->25->318" ] }, { @@ -18088,7 +18112,7 @@ "ru": "Консоль 32-разрядной версии Windows", "xloc": [ "default-mobile.handlebars->9->144", - "default.handlebars->23->14" + "default.handlebars->25->14" ] }, { @@ -18101,7 +18125,7 @@ "ru": "Сервис 32-разрядной версии Windows", "xloc": [ "default-mobile.handlebars->9->146", - "default.handlebars->23->16" + "default.handlebars->25->16" ] }, { @@ -18126,7 +18150,7 @@ "ru": "Консоль 64-разрядной версии Windows", "xloc": [ "default-mobile.handlebars->9->145", - "default.handlebars->23->15" + "default.handlebars->25->15" ] }, { @@ -18139,7 +18163,7 @@ "ru": "Сервис 64-разрядной версии Windows", "xloc": [ "default-mobile.handlebars->9->147", - "default.handlebars->23->17" + "default.handlebars->25->17" ] }, { @@ -18152,7 +18176,7 @@ "ru": "Консоль Windows MinCore", "xloc": [ "default-mobile.handlebars->9->164", - "default.handlebars->23->34" + "default.handlebars->25->34" ] }, { @@ -18165,7 +18189,7 @@ "ru": "Сервис Windows MinCore", "xloc": [ "default-mobile.handlebars->9->165", - "default.handlebars->23->35" + "default.handlebars->25->35" ] }, { @@ -18177,7 +18201,7 @@ "pt": "Apenas Windows", "ru": "Только Windows", "xloc": [ - "default.handlebars->23->288" + "default.handlebars->25->288" ] }, { @@ -18189,8 +18213,8 @@ "pt": "Windows x64 (.exe)", "ru": "Windows x64 (.exe)", "xloc": [ - "default.handlebars->23->330", - "default.handlebars->23->344" + "default.handlebars->25->330", + "default.handlebars->25->344" ] }, { @@ -18208,7 +18232,7 @@ "en": "Wrap: OFF", "nl": "Wrap: UIT", "xloc": [ - "default.handlebars->23->669" + "default.handlebars->25->672" ] }, { @@ -18217,7 +18241,7 @@ "en": "Wrap: ON", "nl": "Wrap: AAN", "xloc": [ - "default.handlebars->23->668" + "default.handlebars->25->671" ] }, { @@ -18230,7 +18254,7 @@ "pt": "Escreva um evento para este dispositivo", "ru": "Записать событие к этому устройству", "xloc": [ - "default.handlebars->23->489" + "default.handlebars->25->492" ] }, { @@ -18258,13 +18282,13 @@ "ru": "XENx86", "xloc": [ "default-mobile.handlebars->9->151", - "default.handlebars->23->21" + "default.handlebars->25->21" ] }, { "en": "XTerm", "xloc": [ - "default.handlebars->23->501" + "default.handlebars->25->504" ] }, { @@ -18276,7 +18300,7 @@ "pt": "Xhosa", "ru": "Кос", "xloc": [ - "default.handlebars->23->905" + "default.handlebars->25->908" ] }, { @@ -18288,7 +18312,7 @@ "pt": "Iídiche", "ru": "Идиш", "xloc": [ - "default.handlebars->23->906" + "default.handlebars->25->909" ] }, { @@ -18301,7 +18325,7 @@ "pt": "Você pode reativar esse recurso a qualquer momento.", "ru": "Вы можете возобновить эту функцию в любое время.", "xloc": [ - "default.handlebars->23->129" + "default.handlebars->25->129" ] }, { @@ -18325,7 +18349,7 @@ "pt": "Agora você precisará de um token válido para fazer login novamente.", "ru": "Теперь вам понадобится действительный токен, чтобы снова войти в систему.", "xloc": [ - "default.handlebars->23->124" + "default.handlebars->25->124" ] }, { @@ -18337,7 +18361,7 @@ "pt": "YubiKey™ OTP", "ru": "YubiKey™ OTP", "xloc": [ - "default.handlebars->23->708" + "default.handlebars->25->711" ] }, { @@ -18349,7 +18373,7 @@ "pt": "Zoom para ajustar a extensão", "ru": "Масштабирование по размеру", "xloc": [ - "default.handlebars->23->415" + "default.handlebars->25->418" ] }, { @@ -18361,8 +18385,8 @@ "pt": "Aumentar o zoom até o limite", "ru": "Масштабирование +", "xloc": [ - "default.handlebars->23->412", - "default.handlebars->23->418" + "default.handlebars->25->415", + "default.handlebars->25->421" ] }, { @@ -18374,8 +18398,8 @@ "pt": "Diminuir o zoom até o limite", "ru": "Масштабирование -", "xloc": [ - "default.handlebars->23->413", - "default.handlebars->23->419" + "default.handlebars->25->416", + "default.handlebars->25->422" ] }, { @@ -18387,7 +18411,7 @@ "pt": "Zulu", "ru": "Зулусский", "xloc": [ - "default.handlebars->23->907" + "default.handlebars->25->910" ] }, { @@ -18411,7 +18435,7 @@ "nl": "\\\\'", "ru": "\\\\'", "xloc": [ - "default.handlebars->23->1448" + "default.handlebars->25->1451" ] }, { @@ -18424,8 +18448,8 @@ "pt": "Adicione um", "ru": "добавить", "xloc": [ - "default.handlebars->23->197", - "default.handlebars->23->199" + "default.handlebars->25->197", + "default.handlebars->25->199" ] }, { @@ -18437,7 +18461,7 @@ "pt": "správce", "ru": "админ", "xloc": [ - "default.handlebars->23->242" + "default.handlebars->25->242" ] }, { @@ -18485,7 +18509,7 @@ "pt": "console.txt", "ru": "console.txt", "xloc": [ - "default.handlebars->23->688" + "default.handlebars->25->691" ] }, { @@ -18498,7 +18522,7 @@ "ru": "копировать", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->23->1177" + "default.handlebars->25->1180" ] }, { @@ -18509,8 +18533,8 @@ "pt": "eventslist.csv", "ru": "eventslist.csv", "xloc": [ - "default.handlebars->23->1186", - "default.handlebars->23->1191" + "default.handlebars->25->1189", + "default.handlebars->25->1194" ] }, { @@ -18521,8 +18545,8 @@ "pt": "eventslist.json", "ru": "eventslist.csv", "xloc": [ - "default.handlebars->23->1188", - "default.handlebars->23->1192" + "default.handlebars->25->1191", + "default.handlebars->25->1195" ] }, { @@ -18533,7 +18557,7 @@ "pt": "example@email.com", "ru": "example@email.com", "xloc": [ - "default.handlebars->23->284" + "default.handlebars->25->284" ] }, { @@ -18546,7 +18570,7 @@ "pt": "livre", "ru": "свободно", "xloc": [ - "default.handlebars->23->1414" + "default.handlebars->25->1417" ] }, { @@ -18554,7 +18578,7 @@ "en": "g:", "nl": "g:", "xloc": [ - "default.handlebars->23->402" + "default.handlebars->25->402" ] }, { @@ -18563,7 +18587,7 @@ "en": "group:", "nl": "groep:", "xloc": [ - "default.handlebars->23->401" + "default.handlebars->25->401" ] }, { @@ -18660,7 +18684,7 @@ "pt": "id, nome, email, criação, último login, grupos, fatores de autenticação", "ru": "идентификатор, имя, адрес эл. почты, создание, последний вход, группы, факторы ауторизации", "xloc": [ - "default.handlebars->23->1229" + "default.handlebars->25->1232" ] }, { @@ -18668,7 +18692,7 @@ "en": "ip:", "nl": "ip:", "xloc": [ - "default.handlebars->23->400" + "default.handlebars->25->400" ] }, { @@ -18693,7 +18717,7 @@ "ru": "переместить", "xloc": [ "default-mobile.handlebars->9->90", - "default.handlebars->23->1178" + "default.handlebars->25->1181" ] }, { @@ -18713,7 +18737,7 @@ "pt": "servererrors.txt", "ru": "servererrors.txt", "xloc": [ - "default.handlebars->23->968" + "default.handlebars->25->971" ] }, { @@ -18724,7 +18748,7 @@ "pt": "servertrace.csv", "ru": "servertrace.csv", "xloc": [ - "default.handlebars->23->1447" + "default.handlebars->25->1450" ] }, { @@ -18732,7 +18756,7 @@ "en": "t:", "nl": "t:", "xloc": [ - "default.handlebars->23->404" + "default.handlebars->25->404" ] }, { @@ -18740,7 +18764,7 @@ "en": "tag:", "nl": "tag:", "xloc": [ - "default.handlebars->23->403" + "default.handlebars->25->403" ] }, { @@ -18751,7 +18775,7 @@ "pt": "tempo, conn.agente, conn.usuários.usersessions, conn.relaysession, conn.intelamt, mem.externo mem.amontoado, mem.heaptotal, mem.rss", "ru": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "xloc": [ - "default.handlebars->23->1427" + "default.handlebars->25->1430" ] }, { @@ -18762,7 +18786,7 @@ "pt": "hora, fonte, mensagem", "ru": "time, source, message", "xloc": [ - "default.handlebars->23->1446" + "default.handlebars->25->1449" ] }, { @@ -18773,7 +18797,7 @@ "pt": "hora, tipo, ação, usuário, mensagem", "ru": "time, type, action, user, message", "xloc": [ - "default.handlebars->23->1190" + "default.handlebars->25->1193" ] }, { @@ -18786,7 +18810,7 @@ "pt": "total", "ru": "всего", "xloc": [ - "default.handlebars->23->1415" + "default.handlebars->25->1418" ] }, { @@ -18794,7 +18818,7 @@ "en": "u:", "nl": "u:", "xloc": [ - "default.handlebars->23->399" + "default.handlebars->25->399" ] }, { @@ -18802,7 +18826,7 @@ "en": "user:", "nl": "gebruiker:", "xloc": [ - "default.handlebars->23->398" + "default.handlebars->25->398" ] }, { @@ -18813,8 +18837,8 @@ "pt": "Lista de usuários.csv", "ru": "userlist.csv", "xloc": [ - "default.handlebars->23->1225", - "default.handlebars->23->1230" + "default.handlebars->25->1228", + "default.handlebars->25->1233" ] }, { @@ -18825,8 +18849,8 @@ "pt": "Lista de usuários.json", "ru": "userlist.json", "xloc": [ - "default.handlebars->23->1227", - "default.handlebars->23->1231" + "default.handlebars->25->1230", + "default.handlebars->25->1234" ] }, { @@ -18838,7 +18862,7 @@ "pt": "{0} Gb", "ru": "{0} Гб", "xloc": [ - "default.handlebars->23->1158" + "default.handlebars->25->1161" ] }, { @@ -18850,7 +18874,7 @@ "pt": "{0} Kb", "ru": "{0} Kб", "xloc": [ - "default.handlebars->23->1156" + "default.handlebars->25->1159" ] }, { @@ -18862,7 +18886,7 @@ "pt": "{0} Mb", "ru": "{0} Mб", "xloc": [ - "default.handlebars->23->1157" + "default.handlebars->25->1160" ] }, { @@ -18874,7 +18898,7 @@ "pt": "{0} Mb, {1} Mhz", "ru": "{0} Мб, {1} Мгц", "xloc": [ - "default.handlebars->23->77" + "default.handlebars->25->77" ] }, { @@ -18887,7 +18911,7 @@ "pt": "{0} sessões ativas", "ru": "{0} активных сессий", "xloc": [ - "default.handlebars->23->1345" + "default.handlebars->25->1348" ] }, { @@ -18899,7 +18923,7 @@ "pt": "{0} b", "ru": "{0} б", "xloc": [ - "default.handlebars->23->1155" + "default.handlebars->25->1158" ] }, { @@ -18913,7 +18937,7 @@ "ru": "{0} байт", "xloc": [ "default-mobile.handlebars->9->78", - "default.handlebars->23->1165" + "default.handlebars->25->1168" ] }, { @@ -18926,7 +18950,7 @@ "pt": "{0} bytes restantes", "ru": "{0} байт осталось", "xloc": [ - "default.handlebars->23->1150" + "default.handlebars->25->1153" ] }, { @@ -18938,7 +18962,7 @@ "pt": "{0} gigabytes restantes", "ru": "Остаются {0} гигабайт", "xloc": [ - "default.handlebars->23->1153" + "default.handlebars->25->1156" ] }, { @@ -18950,7 +18974,7 @@ "pt": "{0} grupos", "ru": "{0} групп", "xloc": [ - "default.handlebars->23->1329" + "default.handlebars->25->1332" ] }, { @@ -18959,7 +18983,7 @@ "en": "{0} hours", "nl": "{0} uur", "xloc": [ - "default.handlebars->23->169" + "default.handlebars->25->169" ] }, { @@ -18980,7 +19004,7 @@ "pt": "{0} kilobytes restantes", "ru": "Остаются {0} килобайт", "xloc": [ - "default.handlebars->23->1151" + "default.handlebars->25->1154" ] }, { @@ -19004,7 +19028,7 @@ "pt": "{0} megabytes restantes", "ru": "Остается {0} мегабайт", "xloc": [ - "default.handlebars->23->1152" + "default.handlebars->25->1155" ] }, { @@ -19013,7 +19037,7 @@ "en": "{0} minutes until disconnect", "nl": "{0} minuten totdat de verbinding wordt verbroken", "xloc": [ - "default.handlebars->23->62" + "default.handlebars->25->62" ] }, { @@ -19034,7 +19058,7 @@ "pt": "{0} mais usuários não exibidos, use a caixa de pesquisa para procurar usuários ...", "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей", "xloc": [ - "default.handlebars->23->1200" + "default.handlebars->25->1203" ] }, { @@ -19047,7 +19071,7 @@ "pt": "{0} nós", "ru": "{0} устройств", "xloc": [ - "default.handlebars->23->348" + "default.handlebars->25->348" ] }, { @@ -19082,7 +19106,7 @@ "en": "{0} seconds until disconnect", "nl": "{0} seconden totdat de verbinding wordt verbroken", "xloc": [ - "default.handlebars->23->60" + "default.handlebars->25->60" ] }, { @@ -19115,7 +19139,7 @@ "pt": "{0} sessões", "ru": "{0} сессий", "xloc": [ - "default.handlebars->23->1204" + "default.handlebars->25->1207" ] }, { @@ -19127,7 +19151,7 @@ "pt": "{0} configurações (.msh)", "ru": "{0} настройки (.msh)", "xloc": [ - "default.handlebars->23->332" + "default.handlebars->25->332" ] }, { @@ -19163,7 +19187,7 @@ "pt": "{0} usuários", "ru": "{0} пользователей", "xloc": [ - "default.handlebars->23->216" + "default.handlebars->25->216" ] }, { @@ -19199,7 +19223,7 @@ "pt": "{0} k em 1 arquivo. {1} k no máximo", "ru": "{0}k в 1 файле. {1}k максимум", "xloc": [ - "default.handlebars->23->1160" + "default.handlebars->25->1163" ] }, { @@ -19211,7 +19235,7 @@ "pt": "{0} k em {1} arquivos. {2} k no máximo", "ru": "{0}k в {1} файлах. {2}k максимум", "xloc": [ - "default.handlebars->23->1159" + "default.handlebars->25->1162" ] }, { diff --git a/views/xterm.handlebars b/views/xterm.handlebars index 50a2a7c8..f0b0d3b7 100644 --- a/views/xterm.handlebars +++ b/views/xterm.handlebars @@ -229,8 +229,8 @@ contextmenudiv = document.getElementById('termShellContextMenuLinux'); } showContextMenuDiv(contextmenudiv, event.pageX, event.pageY); + return haltEvent(event); } - return haltEvent(event); } function showContextMenuDiv(element, x, y) {