From f5444863aa4f509fb97013e8b0407bdf79556c09 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Sat, 18 Jan 2020 12:48:25 -0800 Subject: [PATCH] Fixed meshcore.js on Linux with no X, translation fixes. --- agents/meshcore.js | 14 +- package.json | 2 +- public/scripts/agent-redir-ws-0.1.1.js | 61 + translate/translate.json | 1820 ++++++++++++------------ views/agentinvite.handlebars | 8 +- views/default.handlebars | 24 +- 6 files changed, 1027 insertions(+), 902 deletions(-) diff --git a/agents/meshcore.js b/agents/meshcore.js index 1a3b0762..ed36f055 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -1191,14 +1191,14 @@ function createMeshCore(agent) { var bash = fs.existsSync('/bin/bash') ? '/bin/bash' : false; var sh = fs.existsSync('/bin/sh') ? '/bin/sh' : false; var script = false; - if (require('linux-gnome-helpers').scriptVersion) - { - if (require('linux-gnome-helpers').scriptVersion.major > 2 || - (require('linux-gnome-helpers').scriptVersion.major == 2 && require('linux-gnome-helpers').scriptVersion.minor >= 25)) - { - script = '/usr/bin/script'; + try { + if (require('linux-gnome-helpers').scriptVersion) { + if (require('linux-gnome-helpers').scriptVersion.major > 2 || + (require('linux-gnome-helpers').scriptVersion.major == 2 && require('linux-gnome-helpers').scriptVersion.minor >= 25)) { + script = '/usr/bin/script'; + } } - } + } catch (ex) { } var python = fs.existsSync('/usr/bin/python') ? '/usr/bin/python' : false; var shell = bash || sh; diff --git a/package.json b/package.json index 06bbf027..f83cf16b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "meshcentral", - "version": "0.4.7-j", + "version": "0.4.7-k", "keywords": [ "Remote Management", "Intel AMT", diff --git a/public/scripts/agent-redir-ws-0.1.1.js b/public/scripts/agent-redir-ws-0.1.1.js index 55e4ab87..614edd77 100644 --- a/public/scripts/agent-redir-ws-0.1.1.js +++ b/public/scripts/agent-redir-ws-0.1.1.js @@ -220,11 +220,71 @@ var CreateAgentRedirect = function (meshserver, module, serverPublicNamePort, au return obj.m.ProcessData(data); } + // TODO: Optimize this + function toUTF8Array(str) { + var utf8 = []; + for (var i = 0; i < str.length; i++) { + var charcode = str.charCodeAt(i); + if (charcode < 0x80) utf8.push(charcode); + else if (charcode < 0x800) { + utf8.push(0xc0 | (charcode >> 6), + 0x80 | (charcode & 0x3f)); + } + else if (charcode < 0xd800 || charcode >= 0xe000) { + utf8.push(0xe0 | (charcode >> 12), + 0x80 | ((charcode >> 6) & 0x3f), + 0x80 | (charcode & 0x3f)); + } + // surrogate pair + else { + i++; + charcode = ((charcode & 0x3ff) << 10) | (str.charCodeAt(i) & 0x3ff) + utf8.push(0xf0 | (charcode >> 18), + 0x80 | ((charcode >> 12) & 0x3f), + 0x80 | ((charcode >> 6) & 0x3f), + 0x80 | (charcode & 0x3f)); + } + } + + var ret = new Uint8Array(utf8.length); + for (i = 0; i < utf8.length; ++i) { + ret[i] = utf8[i]; + } + return ret; + } + obj.sendText = function (x) { if (typeof x != 'string') { x = JSON.stringify(x); } // Turn into a string if needed obj.send(encode_utf8(x)); // Encode UTF8 correctly } + // TODO: Optimize this + obj.send = function (x) { + //obj.debug('Agent Redir Send(' + obj.webRtcActive + ', ' + x.length + '): ' + rstr2hex(x)); + //console.log('Agent Redir Send(' + obj.webRtcActive + ', ' + x.length + '): ' + ((typeof x == 'string')?x:rstr2hex(x))); + if ((typeof args != 'undefined') && args.redirtrace) { console.log('RedirSend', typeof x, x.length, (x[0] == '{') ? x : rstr2hex(x).substring(0, 64)); } + try { + if (obj.socket != null && obj.socket.readyState == WebSocket.OPEN) { + if (typeof x == 'string') { + if (obj.debugmode == 1) { + var b = new Uint8Array(x.length), c = []; + for (var i = 0; i < x.length; ++i) { b[i] = x.charCodeAt(i); c.push(x.charCodeAt(i)); } + if (obj.webRtcActive == true) { obj.webchannel.send(b.buffer); } else { obj.socket.send(toUTF8Array(x));/*obj.socket.send(b.buffer);*/ } + //console.log('Send', c); + } else { + var b = new Uint8Array(x.length); + for (var i = 0; i < x.length; ++i) { b[i] = x.charCodeAt(i); } + if (obj.webRtcActive == true) { obj.webchannel.send(b.buffer); } else { obj.socket.send(toUTF8Array(x)); /*obj.socket.send(b.buffer); */ } + } + } else { + //if (obj.debugmode == 1) { console.log('Send', x); } + if (obj.webRtcActive == true) { obj.webchannel.send(x); } else { obj.socket.send(toUTF8Array(x)); /*obj.socket.send(x);*/ } + } + } + } catch (ex) { } + } + + /* obj.send = function (x) { //obj.debug('Agent Redir Send(' + obj.webRtcActive + ', ' + x.length + '): ' + rstr2hex(x)); //console.log('Agent Redir Send(' + obj.webRtcActive + ', ' + x.length + '): ' + ((typeof x == 'string')?x:rstr2hex(x))); @@ -249,6 +309,7 @@ var CreateAgentRedirect = function (meshserver, module, serverPublicNamePort, au } } catch (ex) { } } + */ obj.xxOnSocketClosed = function () { //obj.debug('Agent Redir Socket Closed'); diff --git a/translate/translate.json b/translate/translate.json index c726be41..79cb4e47 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -10,8 +10,8 @@ "pt": " + CIRA", "ru": " + CIRA", "xloc": [ - "default.handlebars->23->984", - "default.handlebars->23->986" + "default.handlebars->23->1000", + "default.handlebars->23->998" ] }, { @@ -149,7 +149,7 @@ "pt": " Dica de senha pode ser usada, mas não é recomendada.", "ru": "Может быть использована подсказка пароля, но не рекоммендуется.", "xloc": [ - "default.handlebars->23->916" + "default.handlebars->23->930" ] }, { @@ -162,8 +162,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->1059", - "default.handlebars->23->1289" + "default.handlebars->23->1073", + "default.handlebars->23->1303" ] }, { @@ -303,7 +303,7 @@ "pt": "* Deixe em branco para atribuir uma senha aleatória a cada dispositivo.", "ru": "* Для установления случайного пароля каждому устройству - оставьте пустым.", "xloc": [ - "default.handlebars->23->1034" + "default.handlebars->23->1048" ] }, { @@ -329,7 +329,7 @@ "ru": ", ", "xloc": [ "default-mobile.handlebars->9->330", - "default.handlebars->23->1110" + "default.handlebars->23->1124" ] }, { @@ -354,7 +354,7 @@ "pt": ", O MQTT está online", "ru": ", MQTT онлайн", "xloc": [ - "default.handlebars->23->669" + "default.handlebars->23->683" ] }, { @@ -366,7 +366,7 @@ "pt": ", Soft-KVM", "ru": ", Soft-KVM", "xloc": [ - "default.handlebars->23->580" + "default.handlebars->23->594" ] }, { @@ -380,9 +380,9 @@ "xloc": [ "default-mobile.handlebars->9->228", "default-mobile.handlebars->9->238", - "default.handlebars->23->581", - "default.handlebars->23->612", - "default.handlebars->23->624" + "default.handlebars->23->595", + "default.handlebars->23->626", + "default.handlebars->23->638" ] }, { @@ -466,9 +466,9 @@ "xloc": [ "default-mobile.handlebars->9->243", "default-mobile.handlebars->9->67", - "default.handlebars->23->1132", - "default.handlebars->23->1365", - "default.handlebars->23->626" + "default.handlebars->23->1146", + "default.handlebars->23->1379", + "default.handlebars->23->640" ] }, { @@ -506,7 +506,7 @@ "pt": "1 sessão ativa", "ru": "1 активная сессия", "xloc": [ - "default.handlebars->23->1329" + "default.handlebars->23->1343" ] }, { @@ -521,7 +521,7 @@ "xloc": [ "default-mobile.handlebars->9->334", "default-mobile.handlebars->9->77", - "default.handlebars->23->1149" + "default.handlebars->23->1163" ] }, { @@ -549,7 +549,7 @@ "pt": "1 grupo", "ru": "1 группа", "xloc": [ - "default.handlebars->23->1313" + "default.handlebars->23->1327" ] }, { @@ -599,7 +599,7 @@ "pt": "Mais 1 usuário não mostrado, use a caixa de pesquisa para procurar usuários...", "ru": "Еще 1 пользователь не показан, используйте \\\"Поиск\\\" чтобы найти пользователей...", "xloc": [ - "default.handlebars->23->1184" + "default.handlebars->23->1198" ] }, { @@ -633,7 +633,7 @@ "pt": "1 sessão", "ru": "1 сессия", "xloc": [ - "default.handlebars->23->1188" + "default.handlebars->23->1202" ] }, { @@ -826,7 +826,7 @@ "pt": "Autenticação de segundo fator ativada", "ru": "двухфакторная аутентификация включена", "xloc": [ - "default.handlebars->23->1322" + "default.handlebars->23->1336" ] }, { @@ -1293,7 +1293,7 @@ "pt": "Acesso Negado", "ru": "Отказано в доступе", "xloc": [ - "default.handlebars->23->670" + "default.handlebars->23->684" ] }, { @@ -1317,7 +1317,7 @@ "pt": "Acesso aos arquivos do servidor", "ru": "Доступ в файлам сервера", "xloc": [ - "default.handlebars->23->1294" + "default.handlebars->23->1308" ] }, { @@ -1374,8 +1374,8 @@ "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->925", - "default.handlebars->23->927" + "default.handlebars->23->939", + "default.handlebars->23->941" ] }, { @@ -1447,10 +1447,17 @@ "pt": "Ação", "ru": "Действиe", "xloc": [ - "default.handlebars->23->675", + "default.handlebars->23->689", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, + { + "en": "Action File", + "xloc": [ + "default.handlebars->23->574", + "default.handlebars->23->576" + ] + }, { "cs": "Akce", "de": "Aktionen", @@ -1519,10 +1526,10 @@ "pt": "Ativação", "ru": "Активация", "xloc": [ + "default.handlebars->23->1011", + "default.handlebars->23->1013", "default.handlebars->23->230", - "default.handlebars->23->232", - "default.handlebars->23->997", - "default.handlebars->23->999" + "default.handlebars->23->232" ] }, { @@ -1586,10 +1593,10 @@ "pt": "Adicionar grupo de dispositivos", "ru": "Добавить группу устройств", "xloc": [ - "default.handlebars->23->1084", - "default.handlebars->23->1086", - "default.handlebars->23->1268", - "default.handlebars->23->1342", + "default.handlebars->23->1098", + "default.handlebars->23->1100", + "default.handlebars->23->1282", + "default.handlebars->23->1356", "default.handlebars->23->205" ] }, @@ -1646,7 +1653,7 @@ "en": "Add Membership", "nl": "Lidmaatschap toevoegen", "xloc": [ - "default.handlebars->23->1361" + "default.handlebars->23->1375" ] }, { @@ -1675,8 +1682,8 @@ "default.handlebars->23->148", "default.handlebars->23->151", "default.handlebars->23->152", - "default.handlebars->23->694", - "default.handlebars->23->695" + "default.handlebars->23->708", + "default.handlebars->23->709" ] }, { @@ -1684,9 +1691,9 @@ "en": "Add User Group", "nl": "Gebruikersgroep toevoegen", "xloc": [ - "default.handlebars->23->1085", - "default.handlebars->23->1351", - "default.handlebars->23->991" + "default.handlebars->23->1005", + "default.handlebars->23->1099", + "default.handlebars->23->1365" ] }, { @@ -1712,8 +1719,8 @@ "pt": "Adicionar usuários", "ru": "Добавить пользователей", "xloc": [ - "default.handlebars->23->1263", - "default.handlebars->23->990" + "default.handlebars->23->1004", + "default.handlebars->23->1277" ] }, { @@ -1725,7 +1732,7 @@ "pt": "Adicionar usuários ao grupo de dispositivos", "ru": "Добавить пользователей к Группам устройств", "xloc": [ - "default.handlebars->23->1083" + "default.handlebars->23->1097" ] }, { @@ -1733,7 +1740,7 @@ "en": "Add Users to User Group", "nl": "Voeg gebruikers toe aan de gebruikersgroep", "xloc": [ - "default.handlebars->23->1291" + "default.handlebars->23->1305" ] }, { @@ -1769,8 +1776,8 @@ "pt": "Adicione um novo Intel® Computador AMT localizado na Internet.", "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.", "xloc": [ - "default.handlebars->23->223", - "default.handlebars->23->992" + "default.handlebars->23->1006", + "default.handlebars->23->223" ] }, { @@ -1782,8 +1789,8 @@ "pt": "Adicione um novo Intel® AMT computer that is located on the local network.", "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.", "xloc": [ - "default.handlebars->23->225", - "default.handlebars->23->994" + "default.handlebars->23->1008", + "default.handlebars->23->225" ] }, { @@ -1807,7 +1814,7 @@ "pt": "Adicione um novo computador a essa malha instalando o agente de malha.", "ru": "Добавить новый компьютер к этой сети инсталированием меш агента.", "xloc": [ - "default.handlebars->23->1000", + "default.handlebars->23->1014", "default.handlebars->23->233" ] }, @@ -1855,7 +1862,7 @@ "pt": "Admin Realms", "ru": "Oбласти Aдминистратора", "xloc": [ - "default.handlebars->23->1317" + "default.handlebars->23->1331" ] }, { @@ -1878,7 +1885,7 @@ "pt": "Domínios Administrativos", "ru": "Административные Области", "xloc": [ - "default.handlebars->23->1233" + "default.handlebars->23->1247" ] }, { @@ -1890,7 +1897,7 @@ "pt": "Administrador", "ru": "Администратор", "xloc": [ - "default.handlebars->23->1195" + "default.handlebars->23->1209" ] }, { @@ -1902,7 +1909,7 @@ "pt": "afrikaans", "ru": "Африканский", "xloc": [ - "default.handlebars->23->697" + "default.handlebars->23->711" ] }, { @@ -1918,8 +1925,8 @@ "default-mobile.handlebars->9->121", "default-mobile.handlebars->9->174", "default-mobile.handlebars->9->190", - "default.handlebars->23->1120", - "default.handlebars->23->1126", + "default.handlebars->23->1134", + "default.handlebars->23->1140", "default.handlebars->23->184", "default.handlebars->23->371", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" @@ -1930,8 +1937,8 @@ "en": "Agent + Intel AMT", "nl": "Agent + Intel AMT", "xloc": [ - "default.handlebars->23->1122", - "default.handlebars->23->1128" + "default.handlebars->23->1136", + "default.handlebars->23->1142" ] }, { @@ -1956,7 +1963,7 @@ "ru": "Консоль агента", "xloc": [ "default-mobile.handlebars->9->315", - "default.handlebars->23->1094" + "default.handlebars->23->1108" ] }, { @@ -1965,7 +1972,7 @@ "en": "Agent Error Counters", "nl": "Agent fout tellers", "xloc": [ - "default.handlebars->23->1373" + "default.handlebars->23->1387" ] }, { @@ -1999,7 +2006,7 @@ "en": "Agent Sessions", "nl": "Agent Sessies", "xloc": [ - "default.handlebars->23->1389" + "default.handlebars->23->1403" ] }, { @@ -2021,7 +2028,7 @@ "en": "Agent Types", "nl": "Agent Type", "xloc": [ - "default.handlebars->23->1124", + "default.handlebars->23->1138", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -2060,7 +2067,7 @@ "pt": "O agente está offline", "ru": "Агент оффлайн", "xloc": [ - "default.handlebars->23->668" + "default.handlebars->23->682" ] }, { @@ -2072,7 +2079,7 @@ "pt": "Agente está online", "ru": "Агент онлайн", "xloc": [ - "default.handlebars->23->667" + "default.handlebars->23->681" ] }, { @@ -2084,7 +2091,7 @@ "pt": "Agentes", "ru": "Агенты", "xloc": [ - "default.handlebars->23->1402" + "default.handlebars->23->1416" ] }, { @@ -2096,7 +2103,7 @@ "pt": "albanês", "ru": "Албанский", "xloc": [ - "default.handlebars->23->698" + "default.handlebars->23->712" ] }, { @@ -2135,9 +2142,9 @@ "pt": "All Focus", "ru": "Фокусирование всех", "xloc": [ - "default.handlebars->23->582", - "default.handlebars->23->584", - "default.handlebars->23->585" + "default.handlebars->23->596", + "default.handlebars->23->598", + "default.handlebars->23->599" ] }, { @@ -2150,8 +2157,8 @@ "pt": "Permitir que os usuários gerenciem esse grupo de dispositivos e dispositivos neste grupo.", "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.", "xloc": [ - "default.handlebars->23->1058", - "default.handlebars->23->1288" + "default.handlebars->23->1072", + "default.handlebars->23->1302" ] }, { @@ -2189,7 +2196,7 @@ "pt": "Alternativo (F10 = ESC + 0)", "ru": "Поменять (F10 = ESC+0)", "xloc": [ - "default.handlebars->23->617" + "default.handlebars->23->631" ] }, { @@ -2202,7 +2209,7 @@ "pt": "Notificar sempre", "ru": "Всегда уведомлять", "xloc": [ - "default.handlebars->23->973" + "default.handlebars->23->987" ] }, { @@ -2214,7 +2221,7 @@ "pt": "Sempre alerta", "ru": "Всегда напоминать", "xloc": [ - "default.handlebars->23->974" + "default.handlebars->23->988" ] }, { @@ -2326,7 +2333,7 @@ "pt": "Árabe (Argélia)", "ru": "Арабский (Алжир)", "xloc": [ - "default.handlebars->23->700" + "default.handlebars->23->714" ] }, { @@ -2338,7 +2345,7 @@ "pt": "Árabe (Bahrain)", "ru": "Арабский (Бахрейн)", "xloc": [ - "default.handlebars->23->701" + "default.handlebars->23->715" ] }, { @@ -2350,7 +2357,7 @@ "pt": "Árabe (Egito)", "ru": "Арабский (Египет)", "xloc": [ - "default.handlebars->23->702" + "default.handlebars->23->716" ] }, { @@ -2362,7 +2369,7 @@ "pt": "Árabe (Iraque)", "ru": "Арабский (Ирак)", "xloc": [ - "default.handlebars->23->703" + "default.handlebars->23->717" ] }, { @@ -2374,7 +2381,7 @@ "pt": "Árabe (Jordânia)", "ru": "Арабский (Иордания)", "xloc": [ - "default.handlebars->23->704" + "default.handlebars->23->718" ] }, { @@ -2386,7 +2393,7 @@ "pt": "Árabe (Kuwait)", "ru": "Арабский (Кувейт)", "xloc": [ - "default.handlebars->23->705" + "default.handlebars->23->719" ] }, { @@ -2398,7 +2405,7 @@ "pt": "Árabe (Líbano)", "ru": "Арабский (Ливан)", "xloc": [ - "default.handlebars->23->706" + "default.handlebars->23->720" ] }, { @@ -2410,7 +2417,7 @@ "pt": "Árabe (Líbia)", "ru": "Арабский (Ливия)", "xloc": [ - "default.handlebars->23->707" + "default.handlebars->23->721" ] }, { @@ -2422,7 +2429,7 @@ "pt": "Árabe (Marrocos)", "ru": "Арабский (Марокко)", "xloc": [ - "default.handlebars->23->708" + "default.handlebars->23->722" ] }, { @@ -2434,7 +2441,7 @@ "pt": "Árabe (Omã)", "ru": "Арабский (Оман)", "xloc": [ - "default.handlebars->23->709" + "default.handlebars->23->723" ] }, { @@ -2446,7 +2453,7 @@ "pt": "Árabe (Catar)", "ru": "Арабский (Катар)", "xloc": [ - "default.handlebars->23->710" + "default.handlebars->23->724" ] }, { @@ -2458,7 +2465,7 @@ "pt": "Árabe (Arábia Saudita)", "ru": "Арабский (Саудовская Аравия)", "xloc": [ - "default.handlebars->23->711" + "default.handlebars->23->725" ] }, { @@ -2470,7 +2477,7 @@ "pt": "Árabe (padrão)", "ru": "Арабский (стандартный)", "xloc": [ - "default.handlebars->23->699" + "default.handlebars->23->713" ] }, { @@ -2482,7 +2489,7 @@ "pt": "Árabe (Síria)", "ru": "Арабский (Сирия)", "xloc": [ - "default.handlebars->23->712" + "default.handlebars->23->726" ] }, { @@ -2494,7 +2501,7 @@ "pt": "Árabe (Tunísia)", "ru": "Арабский (Тунис)", "xloc": [ - "default.handlebars->23->713" + "default.handlebars->23->727" ] }, { @@ -2506,7 +2513,7 @@ "pt": "Árabe (U.A.E)", "ru": "Арабский (О.А.Э.)", "xloc": [ - "default.handlebars->23->714" + "default.handlebars->23->728" ] }, { @@ -2518,7 +2525,7 @@ "pt": "Árabe (Iêmen)", "ru": "Арабский (Йемен)", "xloc": [ - "default.handlebars->23->715" + "default.handlebars->23->729" ] }, { @@ -2530,7 +2537,7 @@ "pt": "Aragonês", "ru": "Арагонский", "xloc": [ - "default.handlebars->23->716" + "default.handlebars->23->730" ] }, { @@ -2568,7 +2575,7 @@ "ru": "Вы уверенны, что хотите удалить группу {0}? Удаление группы приведет к удалению всей информации связанной с устройствами в этой группе.", "xloc": [ "default-mobile.handlebars->9->286", - "default.handlebars->23->1038" + "default.handlebars->23->1052" ] }, { @@ -2614,7 +2621,7 @@ "nl": "Weet u zeker dat u de plug-in {0} wilt gebruiken: {1}", "ru": "Вы уверенны, что {0} плагин: {1}", "xloc": [ - "default.handlebars->23->1437" + "default.handlebars->23->1451" ] }, { @@ -2626,7 +2633,7 @@ "pt": "Armênio", "ru": "Арменский", "xloc": [ - "default.handlebars->23->717" + "default.handlebars->23->731" ] }, { @@ -2638,7 +2645,7 @@ "pt": "Assamese", "ru": "Ассамский", "xloc": [ - "default.handlebars->23->718" + "default.handlebars->23->732" ] }, { @@ -2650,7 +2657,7 @@ "pt": "Asturiano", "ru": "Астурии", "xloc": [ - "default.handlebars->23->719" + "default.handlebars->23->733" ] }, { @@ -2662,7 +2669,7 @@ "pt": "Aplicativo de autenticação", "ru": "Приложение аутентификации", "xloc": [ - "default.handlebars->23->1318" + "default.handlebars->23->1332" ] }, { @@ -2680,8 +2687,8 @@ "default-mobile.handlebars->9->32", "default.handlebars->23->122", "default.handlebars->23->127", - "default.handlebars->23->683", - "default.handlebars->23->685" + "default.handlebars->23->697", + "default.handlebars->23->699" ] }, { @@ -2731,7 +2738,7 @@ "pt": "Remover automaticamente", "ru": "Авто-Удаление", "xloc": [ - "default.handlebars->23->961" + "default.handlebars->23->975" ] }, { @@ -2771,7 +2778,7 @@ "pt": "Azerbaijão", "ru": "Азербайджанский", "xloc": [ - "default.handlebars->23->720" + "default.handlebars->23->734" ] }, { @@ -2897,7 +2904,7 @@ "pt": "Códigos de backup", "ru": "Коды бэкапа", "xloc": [ - "default.handlebars->23->1320" + "default.handlebars->23->1334" ] }, { @@ -2906,7 +2913,7 @@ "en": "Bad Signature", "nl": "Ongeldige handtening", "xloc": [ - "default.handlebars->23->1380" + "default.handlebars->23->1394" ] }, { @@ -2915,7 +2922,7 @@ "en": "Bad Web Certificate", "nl": "Onjuist webcertificaat", "xloc": [ - "default.handlebars->23->1379" + "default.handlebars->23->1393" ] }, { @@ -2927,7 +2934,7 @@ "pt": "Basco", "ru": "Баскский", "xloc": [ - "default.handlebars->23->721" + "default.handlebars->23->735" ] }, { @@ -2951,7 +2958,7 @@ "pt": "Bielorrusso", "ru": "Белорусский", "xloc": [ - "default.handlebars->23->723" + "default.handlebars->23->737" ] }, { @@ -2963,7 +2970,7 @@ "pt": "Bengali", "ru": "Бенгальский", "xloc": [ - "default.handlebars->23->724" + "default.handlebars->23->738" ] }, { @@ -2975,7 +2982,7 @@ "pt": "Bósnia", "ru": "Боснийский", "xloc": [ - "default.handlebars->23->725" + "default.handlebars->23->739" ] }, { @@ -2987,7 +2994,7 @@ "pt": "Breton", "ru": "Бретонский", "xloc": [ - "default.handlebars->23->726" + "default.handlebars->23->740" ] }, { @@ -3000,7 +3007,7 @@ "pt": "Broadcast", "ru": "Отправить сообщение...", "xloc": [ - "default.handlebars->23->1261", + "default.handlebars->23->1275", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -3014,7 +3021,7 @@ "pt": "Mensagem de transmissão", "ru": "Отправить сообщение", "xloc": [ - "default.handlebars->23->1218" + "default.handlebars->23->1232" ] }, { @@ -3026,7 +3033,7 @@ "pt": "Transmita uma mensagem para todos os usuários conectados.", "ru": "Отправить сообщение всем подключенным пользователям.", "xloc": [ - "default.handlebars->23->1217" + "default.handlebars->23->1231" ] }, { @@ -3038,7 +3045,7 @@ "pt": "Búlgaria", "ru": "Болгарский", "xloc": [ - "default.handlebars->23->722" + "default.handlebars->23->736" ] }, { @@ -3050,7 +3057,7 @@ "pt": "Birmanês", "ru": "Бирманский", "xloc": [ - "default.handlebars->23->727" + "default.handlebars->23->741" ] }, { @@ -3076,8 +3083,8 @@ "ru": "CIRA", "xloc": [ "default-mobile.handlebars->9->122", - "default.handlebars->23->1026", - "default.handlebars->23->1031", + "default.handlebars->23->1040", + "default.handlebars->23->1045", "default.handlebars->23->186", "default.handlebars->23->373" ] @@ -3091,7 +3098,7 @@ "pt": "Servidor CIRA", "ru": "CIRA Сервер", "xloc": [ - "default.handlebars->23->1428" + "default.handlebars->23->1442" ] }, { @@ -3103,7 +3110,7 @@ "pt": "Comandos do servidor CIRA", "ru": "CIRA Сервер комманды", "xloc": [ - "default.handlebars->23->1429" + "default.handlebars->23->1443" ] }, { @@ -3112,7 +3119,7 @@ "en": "CPU Load", "nl": "CPU gebruik", "xloc": [ - "default.handlebars->23->1394" + "default.handlebars->23->1408" ] }, { @@ -3124,7 +3131,7 @@ "pt": "Carga da CPU nos últimos 15 minutos", "ru": "Загрузка ЦПУ за последние 15 минут", "xloc": [ - "default.handlebars->23->1397" + "default.handlebars->23->1411" ] }, { @@ -3136,7 +3143,7 @@ "pt": "Carga da CPU nos últimos 5 minutos", "ru": "Загрузка ЦПУ за последние 5 минут", "xloc": [ - "default.handlebars->23->1396" + "default.handlebars->23->1410" ] }, { @@ -3148,7 +3155,7 @@ "pt": "Carga da CPU no último minuto", "ru": "Загрузка ЦПУ за последнюю минуту", "xloc": [ - "default.handlebars->23->1395" + "default.handlebars->23->1409" ] }, { @@ -3160,8 +3167,8 @@ "pt": "CR + LF", "ru": "CR+LF", "xloc": [ - "default.handlebars->23->610", - "default.handlebars->23->619", + "default.handlebars->23->624", + "default.handlebars->23->633", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -3174,8 +3181,8 @@ "pt": "Formato CSV", "ru": "Формат CSV", "xloc": [ - "default.handlebars->23->1170", - "default.handlebars->23->1209" + "default.handlebars->23->1184", + "default.handlebars->23->1223" ] }, { @@ -3188,7 +3195,7 @@ "pt": "Erro de chamada", "ru": "Ошибка вызова", "xloc": [ - "default.handlebars->23->1438" + "default.handlebars->23->1452" ] }, { @@ -3203,7 +3210,7 @@ "xloc": [ "default-mobile.handlebars->9->41", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->23->946", + "default.handlebars->23->960", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -3231,7 +3238,7 @@ "pt": "Catalão", "ru": "Каталонский", "xloc": [ - "default.handlebars->23->728" + "default.handlebars->23->742" ] }, { @@ -3256,7 +3263,7 @@ "pt": "Chamorro", "ru": "Чаморро", "xloc": [ - "default.handlebars->23->729" + "default.handlebars->23->743" ] }, { @@ -3268,7 +3275,7 @@ "pt": "Alterar email para {0}", "ru": "Смена е-мейла для {0}", "xloc": [ - "default.handlebars->23->1333" + "default.handlebars->23->1347" ] }, { @@ -3295,8 +3302,8 @@ "ru": "Смена Пароля", "xloc": [ "default-mobile.handlebars->9->49", - "default.handlebars->23->1328", - "default.handlebars->23->922" + "default.handlebars->23->1342", + "default.handlebars->23->936" ] }, { @@ -3308,7 +3315,7 @@ "pt": "Alterar senha para {0}", "ru": "Смена пароля для {0}", "xloc": [ - "default.handlebars->23->1340" + "default.handlebars->23->1354" ] }, { @@ -3370,7 +3377,7 @@ "pt": "Mude o endereço de e-mail da sua conta aqui.", "ru": "Измените адрес электронной почты вашей учетной записи здесь.", "xloc": [ - "default.handlebars->23->909" + "default.handlebars->23->923" ] }, { @@ -3382,7 +3389,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->915" + "default.handlebars->23->929" ] }, { @@ -3394,7 +3401,7 @@ "pt": "Alterar o idioma exigirá uma atualização da página.", "ru": "Изменение языка потребует обновления страницы.", "xloc": [ - "default.handlebars->23->894" + "default.handlebars->23->908" ] }, { @@ -3406,7 +3413,7 @@ "pt": "Chat", "ru": "Чат", "xloc": [ - "default.handlebars->23->1187" + "default.handlebars->23->1201" ] }, { @@ -3420,8 +3427,8 @@ "xloc": [ "default-mobile.handlebars->9->307", "default-mobile.handlebars->9->325", - "default.handlebars->23->1081", - "default.handlebars->23->1104" + "default.handlebars->23->1095", + "default.handlebars->23->1118" ] }, { @@ -3433,7 +3440,7 @@ "pt": "Checheno", "ru": "Чеченский", "xloc": [ - "default.handlebars->23->730" + "default.handlebars->23->744" ] }, { @@ -3481,8 +3488,8 @@ "pt": "Verificando ...", "ru": "Проверка...", "xloc": [ - "default.handlebars->23->1434", - "default.handlebars->23->696" + "default.handlebars->23->1448", + "default.handlebars->23->710" ] }, { @@ -3494,7 +3501,7 @@ "pt": "Chinês", "ru": "Китайский", "xloc": [ - "default.handlebars->23->731" + "default.handlebars->23->745" ] }, { @@ -3506,7 +3513,7 @@ "pt": "Chinês (Hong Kong)", "ru": "Китайский (Гонконг)", "xloc": [ - "default.handlebars->23->732" + "default.handlebars->23->746" ] }, { @@ -3518,7 +3525,7 @@ "pt": "Chinês (PRC)", "ru": "Китайский (КНР)", "xloc": [ - "default.handlebars->23->733" + "default.handlebars->23->747" ] }, { @@ -3530,7 +3537,7 @@ "pt": "Chinês (Singapura)", "ru": "Китайский (Сингапур)", "xloc": [ - "default.handlebars->23->734" + "default.handlebars->23->748" ] }, { @@ -3542,7 +3549,7 @@ "pt": "Chinês (Taiwan)", "ru": "Китайский (Тайвань)", "xloc": [ - "default.handlebars->23->735" + "default.handlebars->23->749" ] }, { @@ -3567,7 +3574,7 @@ "pt": "Chuvash", "ru": "Чувашский", "xloc": [ - "default.handlebars->23->736" + "default.handlebars->23->750" ] }, { @@ -3597,11 +3604,11 @@ "default-mobile.handlebars->9->268", "default-mobile.handlebars->9->28", "default-mobile.handlebars->9->91", - "default.handlebars->23->1164", - "default.handlebars->23->645", - "default.handlebars->23->647", - "default.handlebars->23->649", - "default.handlebars->23->651", + "default.handlebars->23->1178", + "default.handlebars->23->659", + "default.handlebars->23->661", + "default.handlebars->23->663", + "default.handlebars->23->665", "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" @@ -3628,7 +3635,7 @@ "pt": "Limpe o núcleo", "ru": "Очистить ядро", "xloc": [ - "default.handlebars->23->677" + "default.handlebars->23->691" ] }, { @@ -3665,7 +3672,7 @@ "ru": "Нажмите ок для отправки подтверждения по електронной почте:", "xloc": [ "default-mobile.handlebars->9->34", - "default.handlebars->23->906" + "default.handlebars->23->920" ] }, { @@ -3689,8 +3696,8 @@ "pt": "Acesso remoto iniciado pelo cliente", "ru": "Удаленная Связь Установленая Клиентом", "xloc": [ - "default.handlebars->23->1025", - "default.handlebars->23->1030" + "default.handlebars->23->1039", + "default.handlebars->23->1044" ] }, { @@ -3717,7 +3724,7 @@ "default-mobile.handlebars->9->26", "default.handlebars->23->134", "default.handlebars->23->142", - "default.handlebars->23->602" + "default.handlebars->23->616" ] }, { @@ -3738,8 +3745,8 @@ "en": "Common Device Groups", "nl": "Gemeenschappelijke apparaatgroepen", "xloc": [ - "default.handlebars->23->1269", - "default.handlebars->23->1343" + "default.handlebars->23->1283", + "default.handlebars->23->1357" ] }, { @@ -3752,7 +3759,7 @@ "ru": "Подтвердить {0} из {1} записи {2} в это местоположение?", "xloc": [ "default-mobile.handlebars->9->86", - "default.handlebars->23->1159" + "default.handlebars->23->1173" ] }, { @@ -3766,8 +3773,8 @@ "xloc": [ "default-mobile.handlebars->9->220", "default-mobile.handlebars->9->287", - "default.handlebars->23->1039", - "default.handlebars->23->1284", + "default.handlebars->23->1053", + "default.handlebars->23->1298", "default.handlebars->23->396", "default.handlebars->23->548", "default.handlebars->23->557" @@ -3783,7 +3790,7 @@ "ru": "Подтвердить копию 1 записи в это место?", "xloc": [ "default-mobile.handlebars->9->257", - "default.handlebars->23->640" + "default.handlebars->23->654" ] }, { @@ -3796,7 +3803,7 @@ "ru": "Подтвердить копию {0} записей в этом месте?", "xloc": [ "default-mobile.handlebars->9->256", - "default.handlebars->23->639" + "default.handlebars->23->653" ] }, { @@ -3821,7 +3828,7 @@ "ru": "Подтвердить перемещение 1 записи в это место?", "xloc": [ "default-mobile.handlebars->9->259", - "default.handlebars->23->642" + "default.handlebars->23->656" ] }, { @@ -3834,7 +3841,7 @@ "ru": "Подтвердить перемещение {0} записей в это место?", "xloc": [ "default-mobile.handlebars->9->258", - "default.handlebars->23->641" + "default.handlebars->23->655" ] }, { @@ -3845,7 +3852,7 @@ "nl": "Bevestig overschrijven?", "ru": "Подтвердить перезапись?", "xloc": [ - "default.handlebars->23->1158" + "default.handlebars->23->1172" ] }, { @@ -3858,7 +3865,7 @@ "ru": "Подтвердите удаление приложения аутентификации 2-хэтапного входа в систему.", "xloc": [ "default-mobile.handlebars->9->33", - "default.handlebars->23->686" + "default.handlebars->23->700" ] }, { @@ -3866,8 +3873,8 @@ "en": "Confirm removal of device group {0}?", "nl": "Bevestig het verwijderen van de apparaatgroep {0}?", "xloc": [ - "default.handlebars->23->1279", - "default.handlebars->23->1363" + "default.handlebars->23->1293", + "default.handlebars->23->1377" ] }, { @@ -3875,7 +3882,7 @@ "en": "Confirm removal of group {0}?", "nl": "Bevestig het verwijderen van de groep {0}?", "xloc": [ - "default.handlebars->23->1359" + "default.handlebars->23->1373" ] }, { @@ -3888,8 +3895,8 @@ "ru": "Подтвердить удаление пользователя {0}?", "xloc": [ "default-mobile.handlebars->9->333", - "default.handlebars->23->1113", - "default.handlebars->23->1287" + "default.handlebars->23->1127", + "default.handlebars->23->1301" ] }, { @@ -3904,8 +3911,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->622", - "default.handlebars->23->977", + "default.handlebars->23->636", + "default.handlebars->23->991", "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" @@ -3933,8 +3940,8 @@ "pt": "Conecte-se ao servidor", "ru": "Подключиться к серверу", "xloc": [ - "default.handlebars->23->1029", - "default.handlebars->23->1033" + "default.handlebars->23->1043", + "default.handlebars->23->1047" ] }, { @@ -3980,7 +3987,7 @@ "en": "Connected Intel® AMT", "nl": "Verbonden Intel® AMT", "xloc": [ - "default.handlebars->23->1385" + "default.handlebars->23->1399" ] }, { @@ -3989,7 +3996,7 @@ "en": "Connected Users", "nl": "Verbonden gebruikers", "xloc": [ - "default.handlebars->23->1390" + "default.handlebars->23->1404" ] }, { @@ -4019,7 +4026,7 @@ "default.handlebars->23->211", "default.handlebars->23->214", "default.handlebars->23->220", - "default.handlebars->23->663", + "default.handlebars->23->677", "default.handlebars->23->9" ] }, @@ -4032,7 +4039,7 @@ "pt": "Contagem de conexões", "ru": "Подключений ", "xloc": [ - "default.handlebars->23->1401" + "default.handlebars->23->1415" ] }, { @@ -4044,7 +4051,7 @@ "pt": "Encaminhador de conexão", "ru": "Реле подключения", "xloc": [ - "default.handlebars->23->1427" + "default.handlebars->23->1441" ] }, { @@ -4081,7 +4088,7 @@ "ru": "Связь", "xloc": [ "default-mobile.handlebars->9->195", - "default.handlebars->23->1129", + "default.handlebars->23->1143", "default.handlebars->23->202", "default.handlebars->23->482", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" @@ -4122,7 +4129,7 @@ "pt": "Codificador de cookies", "ru": "Cookie-кодировщик", "xloc": [ - "default.handlebars->23->1415" + "default.handlebars->23->1429" ] }, { @@ -4311,7 +4318,7 @@ "pt": "Servidor Core", "ru": "Основной сервер", "xloc": [ - "default.handlebars->23->1414" + "default.handlebars->23->1428" ] }, { @@ -4323,7 +4330,7 @@ "pt": "Corso", "ru": "Kорсиканский", "xloc": [ - "default.handlebars->23->737" + "default.handlebars->23->751" ] }, { @@ -4335,7 +4342,7 @@ "pt": "Criar conta", "ru": "Создать учетную запись", "xloc": [ - "default.handlebars->23->1229", + "default.handlebars->23->1243", "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" ] @@ -4357,7 +4364,7 @@ "en": "Create User Group", "nl": "Maak een gebruikersgroep.", "xloc": [ - "default.handlebars->23->1252" + "default.handlebars->23->1266" ] }, { @@ -4369,7 +4376,7 @@ "pt": "Crie um novo grupo de dispositivos usando as opções abaixo.", "ru": "Создайте новую группу устройств, используя параметры ниже.", "xloc": [ - "default.handlebars->23->929" + "default.handlebars->23->943" ] }, { @@ -4393,7 +4400,7 @@ "pt": "Crie várias contas ao mesmo tempo importando um arquivo JSON com o seguinte formato:", "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "xloc": [ - "default.handlebars->23->1200" + "default.handlebars->23->1214" ] }, { @@ -4418,7 +4425,7 @@ "pt": "Criação", "ru": "Создание", "xloc": [ - "default.handlebars->23->1306" + "default.handlebars->23->1320" ] }, { @@ -4443,7 +4450,7 @@ "pt": "Cree", "ru": "Кри (Канадский язык)", "xloc": [ - "default.handlebars->23->738" + "default.handlebars->23->752" ] }, { @@ -4455,7 +4462,7 @@ "pt": "Croata", "ru": "Хорватский", "xloc": [ - "default.handlebars->23->739" + "default.handlebars->23->753" ] }, { @@ -4556,7 +4563,7 @@ "pt": "Tcheco", "ru": "Чешский", "xloc": [ - "default.handlebars->23->740" + "default.handlebars->23->754" ] }, { @@ -4580,7 +4587,7 @@ "pt": "Dinamarquês", "ru": "Датский", "xloc": [ - "default.handlebars->23->741" + "default.handlebars->23->755" ] }, { @@ -4592,7 +4599,7 @@ "pt": "DataChannel", "ru": "DataChannel", "xloc": [ - "default.handlebars->23->579" + "default.handlebars->23->593" ] }, { @@ -4604,7 +4611,7 @@ "pt": "Datas e Horário", "ru": "Даты & Время", "xloc": [ - "default.handlebars->23->897" + "default.handlebars->23->911" ] }, { @@ -4628,7 +4635,7 @@ "pt": "Desativar o modo de controle do cliente (CCM)", "ru": "Деактивировать режим управления клиентом (CCM)", "xloc": [ - "default.handlebars->23->1017" + "default.handlebars->23->1031" ] }, { @@ -4657,8 +4664,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->1153", - "default.handlebars->23->632", + "default.handlebars->23->1167", + "default.handlebars->23->646", "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", @@ -4675,7 +4682,7 @@ "ru": "Удалить Пользователя", "xloc": [ "default-mobile.handlebars->9->43", - "default.handlebars->23->914" + "default.handlebars->23->928" ] }, { @@ -4702,8 +4709,8 @@ "xloc": [ "default-mobile.handlebars->9->285", "default-mobile.handlebars->9->288", - "default.handlebars->23->1010", - "default.handlebars->23->1040" + "default.handlebars->23->1024", + "default.handlebars->23->1054" ] }, { @@ -4737,7 +4744,7 @@ "en": "Delete User", "nl": "Verwijder gebruiker", "xloc": [ - "default.handlebars->23->1327" + "default.handlebars->23->1341" ] }, { @@ -4745,8 +4752,8 @@ "en": "Delete User Group", "nl": "Verwijder de gebruikersgroep", "xloc": [ - "default.handlebars->23->1277", - "default.handlebars->23->1285" + "default.handlebars->23->1291", + "default.handlebars->23->1299" ] }, { @@ -4758,7 +4765,7 @@ "pt": "Excluir usuário {0}", "ru": "Удалить Пользователя {0}", "xloc": [ - "default.handlebars->23->1341" + "default.handlebars->23->1355" ] }, { @@ -4797,8 +4804,8 @@ "xloc": [ "default-mobile.handlebars->9->251", "default-mobile.handlebars->9->83", - "default.handlebars->23->1155", - "default.handlebars->23->634" + "default.handlebars->23->1169", + "default.handlebars->23->648" ] }, { @@ -4806,7 +4813,7 @@ "en": "Delete user group {0}?", "nl": "Verwijder gebruikersgroep {0}?", "xloc": [ - "default.handlebars->23->1283" + "default.handlebars->23->1297" ] }, { @@ -4820,8 +4827,8 @@ "xloc": [ "default-mobile.handlebars->9->250", "default-mobile.handlebars->9->82", - "default.handlebars->23->1154", - "default.handlebars->23->633" + "default.handlebars->23->1168", + "default.handlebars->23->647" ] }, { @@ -4896,17 +4903,17 @@ "default-mobile.handlebars->9->277", "default-mobile.handlebars->9->290", "default-mobile.handlebars->9->60", - "default.handlebars->23->1042", - "default.handlebars->23->1251", - "default.handlebars->23->1256", - "default.handlebars->23->1258", - "default.handlebars->23->1281", + "default.handlebars->23->1056", + "default.handlebars->23->1265", + "default.handlebars->23->1270", + "default.handlebars->23->1272", + "default.handlebars->23->1295", "default.handlebars->23->440", "default.handlebars->23->441", - "default.handlebars->23->575", - "default.handlebars->23->934", + "default.handlebars->23->589", + "default.handlebars->23->948", "default.handlebars->23->95", - "default.handlebars->23->958", + "default.handlebars->23->972", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] }, @@ -4919,7 +4926,7 @@ "pt": "DeskControl", "ru": "Управление рабочего стола", "xloc": [ - "default.handlebars->23->607" + "default.handlebars->23->621" ] }, { @@ -4931,7 +4938,7 @@ "pt": "Área de Trabalho", "ru": "Рабочий стол", "xloc": [ - "default.handlebars->23->1044", + "default.handlebars->23->1058", "default.handlebars->23->409", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop" @@ -4958,7 +4965,7 @@ "pt": "Notificação na área de trabalho", "ru": "Уведомление на рабочем столе", "xloc": [ - "default.handlebars->23->968" + "default.handlebars->23->982" ] }, { @@ -4970,7 +4977,7 @@ "pt": "Prompt da área de trabalho", "ru": "Запрос рабочего стола", "xloc": [ - "default.handlebars->23->967" + "default.handlebars->23->981" ] }, { @@ -4982,7 +4989,7 @@ "pt": "Prompt da área de trabalho + barra de ferramentas", "ru": "Запрос рабочего стола + панель инструментов", "xloc": [ - "default.handlebars->23->965" + "default.handlebars->23->979" ] }, { @@ -4994,7 +5001,7 @@ "pt": "Barra de ferramentas da área de trabalho", "ru": "Панель инструментов рабочего стола", "xloc": [ - "default.handlebars->23->966" + "default.handlebars->23->980" ] }, { @@ -5064,11 +5071,11 @@ "en": "Device Group", "nl": "Apparaat Groep", "xloc": [ - "default.handlebars->23->1061", - "default.handlebars->23->1063", - "default.handlebars->23->1275", - "default.handlebars->23->1349", - "default.handlebars->23->1355" + "default.handlebars->23->1075", + "default.handlebars->23->1077", + "default.handlebars->23->1289", + "default.handlebars->23->1363", + "default.handlebars->23->1369" ] }, { @@ -5081,7 +5088,7 @@ "ru": "Пользователь группы устройств", "xloc": [ "default-mobile.handlebars->9->331", - "default.handlebars->23->1111" + "default.handlebars->23->1125" ] }, { @@ -5094,10 +5101,10 @@ "ru": "Группы устройств", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->23->1247", - "default.handlebars->23->1260", - "default.handlebars->23->1315", - "default.handlebars->23->1388", + "default.handlebars->23->1261", + "default.handlebars->23->1274", + "default.handlebars->23->1329", + "default.handlebars->23->1402", "default.handlebars->container->column_l->p2->9" ] }, @@ -5124,7 +5131,7 @@ "xloc": [ "default-mobile.handlebars->9->222", "default.handlebars->23->238", - "default.handlebars->23->573", + "default.handlebars->23->587", "player.htm->3->9" ] }, @@ -5161,8 +5168,8 @@ "pt": "Conexões de dispositivos.", "ru": "Подключения устройства", "xloc": [ - "default.handlebars->23->1115", - "default.handlebars->23->902" + "default.handlebars->23->1129", + "default.handlebars->23->916" ] }, { @@ -5174,8 +5181,8 @@ "pt": "Desconexões de dispositivos.", "ru": "Отключения устройства", "xloc": [ - "default.handlebars->23->1116", - "default.handlebars->23->903" + "default.handlebars->23->1130", + "default.handlebars->23->917" ] }, { @@ -5412,8 +5419,8 @@ "xloc": [ "default-mobile.handlebars->9->237", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->23->623", - "default.handlebars->23->978", + "default.handlebars->23->637", + "default.handlebars->23->992", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span" ] @@ -5471,7 +5478,7 @@ "en": "Display device group name", "nl": "Toon apparaatgroepsnaam", "xloc": [ - "default.handlebars->23->901" + "default.handlebars->23->915" ] }, { @@ -5483,7 +5490,7 @@ "pt": "Mostrar nome", "ru": "Показать имя", "xloc": [ - "default.handlebars->23->593" + "default.handlebars->23->607" ] }, { @@ -5495,7 +5502,7 @@ "pt": "Fazer nada", "ru": "Ничего не делать", "xloc": [ - "default.handlebars->23->1023" + "default.handlebars->23->1037" ] }, { @@ -5520,8 +5527,8 @@ "pt": "Não configure", "ru": "Не настраивать", "xloc": [ - "default.handlebars->23->1027", - "default.handlebars->23->1032" + "default.handlebars->23->1041", + "default.handlebars->23->1046" ] }, { @@ -5533,7 +5540,7 @@ "pt": "Não conecte ao servidor", "ru": "Не подключаться к серверу", "xloc": [ - "default.handlebars->23->1028" + "default.handlebars->23->1042" ] }, { @@ -5573,7 +5580,7 @@ "ru": "Скачать файл", "xloc": [ "default-mobile.handlebars->9->270", - "default.handlebars->23->652" + "default.handlebars->23->666" ] }, { @@ -5597,7 +5604,7 @@ "pt": "Baixar MeshCmd", "ru": "Скачать MeshCmd", "xloc": [ - "default.handlebars->23->570" + "default.handlebars->23->578" ] }, { @@ -5623,6 +5630,12 @@ "default.handlebars->container->column_l->p42->3->3" ] }, + { + "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.", + "xloc": [ + "default.handlebars->23->571" + ] + }, { "cs": "Stáhnout si text z konzole", "de": "Konsolentext herunterladen", @@ -5704,7 +5717,7 @@ "pt": "Faça o download da lista de eventos com um dos formatos de arquivo abaixo.", "ru": "Скачать список событий с одним из форматов файлов ниже.", "xloc": [ - "default.handlebars->23->1169" + "default.handlebars->23->1183" ] }, { @@ -5716,7 +5729,7 @@ "pt": "Baixe a lista de usuários com um dos formatos de arquivo abaixo.", "ru": "Скачать список пользователей с одним из форматов файлов ниже.", "xloc": [ - "default.handlebars->23->1208" + "default.handlebars->23->1222" ] }, { @@ -5774,7 +5787,7 @@ "en": "Duplicate Agent", "nl": "Duplicaat Agent", "xloc": [ - "default.handlebars->23->1384" + "default.handlebars->23->1398" ] }, { @@ -5790,7 +5803,7 @@ "en": "Duplicate User Group", "nl": "Dupliceer Gebruikers Groep", "xloc": [ - "default.handlebars->23->1253" + "default.handlebars->23->1267" ] }, { @@ -5814,7 +5827,7 @@ "pt": "Durante a ativação, o agente terá acesso às informações da senha do administrador.", "ru": "Во время активации агент будет иметь доступ к информации пароля администратора.", "xloc": [ - "default.handlebars->23->1037" + "default.handlebars->23->1051" ] }, { @@ -5826,7 +5839,7 @@ "pt": "Holandês (belga)", "ru": "Голландский (Бельгийский)", "xloc": [ - "default.handlebars->23->743" + "default.handlebars->23->757" ] }, { @@ -5838,7 +5851,7 @@ "pt": "Holandês (padrão)", "ru": "Голландский (Стандартный)", "xloc": [ - "default.handlebars->23->742" + "default.handlebars->23->756" ] }, { @@ -5901,7 +5914,7 @@ "ru": "Редактировать устройство", "xloc": [ "default-mobile.handlebars->9->227", - "default.handlebars->23->578" + "default.handlebars->23->592" ] }, { @@ -5916,9 +5929,9 @@ "default-mobile.handlebars->9->291", "default-mobile.handlebars->9->293", "default-mobile.handlebars->9->311", - "default.handlebars->23->1043", - "default.handlebars->23->1067", - "default.handlebars->23->1090" + "default.handlebars->23->1057", + "default.handlebars->23->1081", + "default.handlebars->23->1104" ] }, { @@ -5930,7 +5943,7 @@ "pt": "Editar recursos do grupo de dispositivos", "ru": "Редактировать функции группы устройств", "xloc": [ - "default.handlebars->23->1057" + "default.handlebars->23->1071" ] }, { @@ -5938,7 +5951,7 @@ "en": "Edit Device Group Permissions", "nl": "Bewerk apparaatgroep rechten", "xloc": [ - "default.handlebars->23->1087" + "default.handlebars->23->1101" ] }, { @@ -5950,7 +5963,7 @@ "pt": "Editar consentimento do usuário do grupo de dispositivos", "ru": "Редактировать согласие пользователя группы устройств", "xloc": [ - "default.handlebars->23->1054" + "default.handlebars->23->1068" ] }, { @@ -5963,7 +5976,7 @@ "ru": "Редактировать примечания устройства", "xloc": [ "default-mobile.handlebars->9->305", - "default.handlebars->23->1079" + "default.handlebars->23->1093" ] }, { @@ -5992,7 +6005,7 @@ "ru": "Редактировать примечания", "xloc": [ "default-mobile.handlebars->9->318", - "default.handlebars->23->1097" + "default.handlebars->23->1111" ] }, { @@ -6004,7 +6017,7 @@ "pt": "Editar permissões do grupo de dispositivos do usuário", "ru": "Редактировать права потребителя группы устройств", "xloc": [ - "default.handlebars->23->1088" + "default.handlebars->23->1102" ] }, { @@ -6012,7 +6025,7 @@ "en": "Edit User Group", "nl": "Bewerk de gebruikersgroep", "xloc": [ - "default.handlebars->23->1282" + "default.handlebars->23->1296" ] }, { @@ -6037,10 +6050,10 @@ "ru": "Эл. почта", "xloc": [ "default-mobile.handlebars->9->37", - "default.handlebars->23->1220", - "default.handlebars->23->1302", - "default.handlebars->23->1303", - "default.handlebars->23->1331", + "default.handlebars->23->1234", + "default.handlebars->23->1316", + "default.handlebars->23->1317", + "default.handlebars->23->1345", "default.handlebars->23->283" ] }, @@ -6054,7 +6067,7 @@ "ru": "Изменение адреса эл. почты", "xloc": [ "default-mobile.handlebars->9->38", - "default.handlebars->23->910" + "default.handlebars->23->924" ] }, { @@ -6067,7 +6080,7 @@ "ru": "Подтверждение эл. почты", "xloc": [ "default-mobile.handlebars->9->36", - "default.handlebars->23->908" + "default.handlebars->23->922" ] }, { @@ -6079,7 +6092,7 @@ "pt": "O email foi verificado", "ru": "Ел. почта подтверждена", "xloc": [ - "default.handlebars->23->1299" + "default.handlebars->23->1313" ] }, { @@ -6091,7 +6104,7 @@ "pt": "O email foi verificado.", "ru": "Ел. почта подтверждена.", "xloc": [ - "default.handlebars->23->1226" + "default.handlebars->23->1240" ] }, { @@ -6103,7 +6116,7 @@ "pt": "Email não verificado", "ru": "Ел. почта не подтверждена", "xloc": [ - "default.handlebars->23->1300" + "default.handlebars->23->1314" ] }, { @@ -6168,7 +6181,7 @@ "pt": "Inglês", "ru": "Английский", "xloc": [ - "default.handlebars->23->744" + "default.handlebars->23->758" ] }, { @@ -6180,7 +6193,7 @@ "pt": "Inglês (Austrália)", "ru": "Английский (Австралия)", "xloc": [ - "default.handlebars->23->745" + "default.handlebars->23->759" ] }, { @@ -6192,7 +6205,7 @@ "pt": "Inglês (Belize)", "ru": "Английский (Белиз)", "xloc": [ - "default.handlebars->23->746" + "default.handlebars->23->760" ] }, { @@ -6204,7 +6217,7 @@ "pt": "Inglês (Canadá)", "ru": "Английский (Канада)", "xloc": [ - "default.handlebars->23->747" + "default.handlebars->23->761" ] }, { @@ -6216,7 +6229,7 @@ "pt": "Inglês (Irlanda)", "ru": "Английский (Ирландия)", "xloc": [ - "default.handlebars->23->748" + "default.handlebars->23->762" ] }, { @@ -6228,7 +6241,7 @@ "pt": "Inglês (Jamaica)", "ru": "Английский (Ямайка)", "xloc": [ - "default.handlebars->23->749" + "default.handlebars->23->763" ] }, { @@ -6240,7 +6253,7 @@ "pt": "Inglês (Nova Zelândia)", "ru": "Английский (Новая Зеландия)", "xloc": [ - "default.handlebars->23->750" + "default.handlebars->23->764" ] }, { @@ -6252,7 +6265,7 @@ "pt": "Inglês (Filipinas)", "ru": "Английский (Филиппины)", "xloc": [ - "default.handlebars->23->751" + "default.handlebars->23->765" ] }, { @@ -6264,7 +6277,7 @@ "pt": "Inglês (África do Sul)", "ru": "Английский (Южная Африка)", "xloc": [ - "default.handlebars->23->752" + "default.handlebars->23->766" ] }, { @@ -6276,7 +6289,7 @@ "pt": "Inglês (Trinidad Tobago)", "ru": "Английский (Тринидад и Тобаго)", "xloc": [ - "default.handlebars->23->753" + "default.handlebars->23->767" ] }, { @@ -6289,7 +6302,7 @@ "pt": "Inglês (Reino Unido)", "ru": "Английский (Великобритания)", "xloc": [ - "default.handlebars->23->754" + "default.handlebars->23->768" ] }, { @@ -6302,7 +6315,7 @@ "pt": "Inglês (Estados Unidos)", "ru": "Английский (Соединенные Штаты)", "xloc": [ - "default.handlebars->23->755" + "default.handlebars->23->769" ] }, { @@ -6315,7 +6328,7 @@ "pt": "Inglês (Zimbábue)", "ru": "Английский (Зимбабве)", "xloc": [ - "default.handlebars->23->756" + "default.handlebars->23->770" ] }, { @@ -6327,8 +6340,8 @@ "pt": "Entrar", "ru": "Ввод", "xloc": [ - "default.handlebars->23->936", - "default.handlebars->23->937" + "default.handlebars->23->950", + "default.handlebars->23->951" ] }, { @@ -6340,7 +6353,7 @@ "pt": "Insira uma lista separada por vírgulas de nomes de regiões administrativas.", "ru": "Введите разделенный запятыми список имен административных областей.", "xloc": [ - "default.handlebars->23->1230" + "default.handlebars->23->1244" ] }, { @@ -6364,7 +6377,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->588" + "default.handlebars->23->602" ] }, { @@ -6425,7 +6438,7 @@ "pt": "Esperanto", "ru": "Эсперанто", "xloc": [ - "default.handlebars->23->757" + "default.handlebars->23->771" ] }, { @@ -6437,7 +6450,7 @@ "pt": "Estoniano", "ru": "Эстонский", "xloc": [ - "default.handlebars->23->758" + "default.handlebars->23->772" ] }, { @@ -6449,7 +6462,7 @@ "pt": "Detalhes do evento", "ru": "Детайли события", "xloc": [ - "default.handlebars->23->665" + "default.handlebars->23->679" ] }, { @@ -6461,7 +6474,7 @@ "pt": "Exportação da lista de eventos", "ru": "Экспорт списка событий", "xloc": [ - "default.handlebars->23->1174" + "default.handlebars->23->1188" ] }, { @@ -6514,7 +6527,7 @@ "pt": "ASCII estendido", "ru": "Расширенный ASCII", "xloc": [ - "default.handlebars->23->614" + "default.handlebars->23->628" ] }, { @@ -6535,7 +6548,7 @@ "en": "External", "nl": "Extern", "xloc": [ - "default.handlebars->23->1408" + "default.handlebars->23->1422" ] }, { @@ -6548,7 +6561,7 @@ "pt": "FYRO Macedonian", "ru": "Mакедонский (БЮР)", "xloc": [ - "default.handlebars->23->808" + "default.handlebars->23->822" ] }, { @@ -6560,7 +6573,7 @@ "pt": "O servidor remoto retornou um erro: (429) Too Many Requests.", "ru": "Фарерский", "xloc": [ - "default.handlebars->23->759" + "default.handlebars->23->773" ] }, { @@ -6586,7 +6599,7 @@ "pt": "Persa (persa)", "ru": "Фарси (Персидский)", "xloc": [ - "default.handlebars->23->760" + "default.handlebars->23->774" ] }, { @@ -6612,7 +6625,7 @@ "pt": "Recursos", "ru": "Функции", "xloc": [ - "default.handlebars->23->964" + "default.handlebars->23->978" ] }, { @@ -6624,7 +6637,7 @@ "pt": "Fijiano", "ru": "Фиджи", "xloc": [ - "default.handlebars->23->761" + "default.handlebars->23->775" ] }, { @@ -6638,7 +6651,7 @@ "ru": "Редактор файлов", "xloc": [ "default-mobile.handlebars->9->254", - "default.handlebars->23->637" + "default.handlebars->23->651" ] }, { @@ -6663,7 +6676,7 @@ "pt": "Driver do sistema de arquivos", "ru": "Драйвер файловой системы", "xloc": [ - "default.handlebars->23->596" + "default.handlebars->23->610" ] }, { @@ -6676,7 +6689,7 @@ "pt": "Arquivos", "ru": "Файлы", "xloc": [ - "default.handlebars->23->1051", + "default.handlebars->23->1065", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" ] @@ -6703,7 +6716,7 @@ "pt": "Notificação arquivos", "ru": "Уведомление файлов", "xloc": [ - "default.handlebars->23->972" + "default.handlebars->23->986" ] }, { @@ -6715,7 +6728,7 @@ "pt": "Arquivos do prompt", "ru": "Запрос файлов", "xloc": [ - "default.handlebars->23->971" + "default.handlebars->23->985" ] }, { @@ -6742,7 +6755,7 @@ "pt": "Finlandês", "ru": "Финский", "xloc": [ - "default.handlebars->23->762" + "default.handlebars->23->776" ] }, { @@ -6797,8 +6810,8 @@ "pt": "Forçar redefinição de senha no próximo login.", "ru": "Принудительно сбросить пароль при следующем входе в систему.", "xloc": [ - "default.handlebars->23->1224", - "default.handlebars->23->1338" + "default.handlebars->23->1238", + "default.handlebars->23->1352" ] }, { @@ -6861,8 +6874,8 @@ "pt": "Livre", "ru": "Свободно", "xloc": [ - "default.handlebars->23->1369", - "default.handlebars->23->1371" + "default.handlebars->23->1383", + "default.handlebars->23->1385" ] }, { @@ -6888,7 +6901,7 @@ "pt": "Francês (Bélgica)", "ru": "Французский (Бельгия)", "xloc": [ - "default.handlebars->23->764" + "default.handlebars->23->778" ] }, { @@ -6901,7 +6914,7 @@ "pt": "Francês (Canadá)", "ru": "Французский (Канада)", "xloc": [ - "default.handlebars->23->765" + "default.handlebars->23->779" ] }, { @@ -6914,7 +6927,7 @@ "pt": "Francês (França)", "ru": "Французский (Франция)", "xloc": [ - "default.handlebars->23->766" + "default.handlebars->23->780" ] }, { @@ -6927,7 +6940,7 @@ "pt": "Francês (Luxemburgo)", "ru": "Французский (Люксембург)", "xloc": [ - "default.handlebars->23->767" + "default.handlebars->23->781" ] }, { @@ -6940,7 +6953,7 @@ "pt": "Francês (Mônaco)", "ru": "Французский (Монако)", "xloc": [ - "default.handlebars->23->768" + "default.handlebars->23->782" ] }, { @@ -6953,7 +6966,7 @@ "pt": "Francês (Padrão)", "ru": "Французский (Стандартный)", "xloc": [ - "default.handlebars->23->763" + "default.handlebars->23->777" ] }, { @@ -6966,7 +6979,7 @@ "pt": "Francês (Suíça)", "ru": "Французский (Швейцария)", "xloc": [ - "default.handlebars->23->769" + "default.handlebars->23->783" ] }, { @@ -6979,7 +6992,7 @@ "pt": "Frísio", "ru": "Фризский", "xloc": [ - "default.handlebars->23->770" + "default.handlebars->23->784" ] }, { @@ -6992,7 +7005,7 @@ "pt": "Friuliano", "ru": "Фриульский", "xloc": [ - "default.handlebars->23->771" + "default.handlebars->23->785" ] }, { @@ -7009,9 +7022,9 @@ "default-mobile.handlebars->9->292", "default-mobile.handlebars->9->310", "default-mobile.handlebars->9->64", - "default.handlebars->23->1066", - "default.handlebars->23->1235", - "default.handlebars->23->943" + "default.handlebars->23->1080", + "default.handlebars->23->1249", + "default.handlebars->23->957" ] }, { @@ -7024,7 +7037,7 @@ "pt": "Administrador Pleno (todos os direitos)", "ru": "Администратор с полным доступом (все права)", "xloc": [ - "default.handlebars->23->1089" + "default.handlebars->23->1103" ] }, { @@ -7032,9 +7045,9 @@ "en": "Full Device Group Administrator", "nl": "Volledige apparaatgroep beheerder", "xloc": [ - "default.handlebars->23->1006", - "default.handlebars->23->1272", - "default.handlebars->23->1346" + "default.handlebars->23->1020", + "default.handlebars->23->1286", + "default.handlebars->23->1360" ] }, { @@ -7061,7 +7074,7 @@ "pt": "Administrador completo", "ru": "Администратор с полным доступом", "xloc": [ - "default.handlebars->23->1295" + "default.handlebars->23->1309" ] }, { @@ -7074,7 +7087,7 @@ "pt": "Gaélico (irlandês)", "ru": "Гэльский (Ирландский)", "xloc": [ - "default.handlebars->23->773" + "default.handlebars->23->787" ] }, { @@ -7087,7 +7100,7 @@ "pt": "Gaélico (escocês)", "ru": "Гэльский (Шотландия)", "xloc": [ - "default.handlebars->23->772" + "default.handlebars->23->786" ] }, { @@ -7100,7 +7113,7 @@ "pt": "Galego", "ru": "Галицкий", "xloc": [ - "default.handlebars->23->774" + "default.handlebars->23->788" ] }, { @@ -7183,7 +7196,7 @@ "pt": "Georgiano", "ru": "Грузинский", "xloc": [ - "default.handlebars->23->775" + "default.handlebars->23->789" ] }, { @@ -7195,7 +7208,7 @@ "pt": "Alemão (Áustria)", "ru": "Немецкий (Австрия)", "xloc": [ - "default.handlebars->23->777" + "default.handlebars->23->791" ] }, { @@ -7207,7 +7220,7 @@ "pt": "Alemão (Alemanha)", "ru": "Немецкий (Германия)", "xloc": [ - "default.handlebars->23->778" + "default.handlebars->23->792" ] }, { @@ -7219,7 +7232,7 @@ "pt": "Alemão (Liechtenstein)", "ru": "Немецкий (Лихтенштейн)", "xloc": [ - "default.handlebars->23->779" + "default.handlebars->23->793" ] }, { @@ -7231,7 +7244,7 @@ "pt": "Alemão (Luxemburgo)", "ru": "Немецкий (Люксембург)", "xloc": [ - "default.handlebars->23->780" + "default.handlebars->23->794" ] }, { @@ -7243,7 +7256,7 @@ "pt": "Alemão (Padrão)", "ru": "Немецкий (Стандартный)", "xloc": [ - "default.handlebars->23->776" + "default.handlebars->23->790" ] }, { @@ -7255,7 +7268,7 @@ "pt": "Alemão (Suíça)", "ru": "German (Switzerland)", "xloc": [ - "default.handlebars->23->781" + "default.handlebars->23->795" ] }, { @@ -7308,7 +7321,7 @@ "pt": "Bom", "ru": "Хорошо", "xloc": [ - "default.handlebars->23->939" + "default.handlebars->23->953" ] }, { @@ -7337,7 +7350,7 @@ "pt": "Grego", "ru": "Греческий", "xloc": [ - "default.handlebars->23->782" + "default.handlebars->23->796" ] }, { @@ -7374,7 +7387,7 @@ "en": "Group Members", "nl": "Groeps leden", "xloc": [ - "default.handlebars->23->1264" + "default.handlebars->23->1278" ] }, { @@ -7387,7 +7400,7 @@ "pt": "Permissões de grupo para o usuário {0}.", "ru": "Групповые права для потребителя {0}.", "xloc": [ - "default.handlebars->23->1065" + "default.handlebars->23->1079" ] }, { @@ -7395,7 +7408,7 @@ "en": "Group permissions for {0}.", "nl": "Groepsrechten voor {0}.", "xloc": [ - "default.handlebars->23->1064" + "default.handlebars->23->1078" ] }, { @@ -7417,7 +7430,7 @@ "en": "Groups", "nl": "Groepen", "xloc": [ - "default.handlebars->23->1179", + "default.handlebars->23->1193", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups" ] }, @@ -7431,7 +7444,7 @@ "pt": "Gujarati", "ru": "Гуджарати", "xloc": [ - "default.handlebars->23->783" + "default.handlebars->23->797" ] }, { @@ -7459,7 +7472,7 @@ "pt": "Haitiano", "ru": "Гаитянский", "xloc": [ - "default.handlebars->23->784" + "default.handlebars->23->798" ] }, { @@ -7485,7 +7498,7 @@ "pt": "Forçar desconexão do agente", "ru": "Жесткое отключение агента", "xloc": [ - "default.handlebars->23->681" + "default.handlebars->23->695" ] }, { @@ -7493,7 +7506,7 @@ "en": "Heap Total", "nl": "Heap Totaal", "xloc": [ - "default.handlebars->23->1410" + "default.handlebars->23->1424" ] }, { @@ -7501,7 +7514,7 @@ "en": "Heap Used", "nl": "Heap gebruikt", "xloc": [ - "default.handlebars->23->1409" + "default.handlebars->23->1423" ] }, { @@ -7513,7 +7526,7 @@ "pt": "Hebraico", "ru": "Иврит", "xloc": [ - "default.handlebars->23->785" + "default.handlebars->23->799" ] }, { @@ -7524,7 +7537,7 @@ "nl": "Help bij het vertalen van MeshCentral", "ru": "Помочь перевести MeshCentral", "xloc": [ - "default.handlebars->23->898" + "default.handlebars->23->912" ] }, { @@ -7552,7 +7565,7 @@ "pt": "Hindi", "ru": "Хинди", "xloc": [ - "default.handlebars->23->786" + "default.handlebars->23->800" ] }, { @@ -7578,7 +7591,7 @@ "ru": "Задержана 1 запись для копирования", "xloc": [ "default-mobile.handlebars->9->263", - "default.handlebars->23->646" + "default.handlebars->23->660" ] }, { @@ -7591,7 +7604,7 @@ "ru": "Задержана 1 запись для перемещения", "xloc": [ "default-mobile.handlebars->9->267", - "default.handlebars->23->650" + "default.handlebars->23->664" ] }, { @@ -7604,7 +7617,7 @@ "ru": "Задержана/о {0} запись/ей для копирования", "xloc": [ "default-mobile.handlebars->9->261", - "default.handlebars->23->644" + "default.handlebars->23->658" ] }, { @@ -7617,7 +7630,7 @@ "ru": "Задержана/о {0} запись/ей для перемещения", "xloc": [ "default-mobile.handlebars->9->265", - "default.handlebars->23->648" + "default.handlebars->23->662" ] }, { @@ -7630,7 +7643,7 @@ "ru": "Задержанa/о {0} запись/ей {1} для {2}", "xloc": [ "default-mobile.handlebars->9->88", - "default.handlebars->23->1161" + "default.handlebars->23->1175" ] }, { @@ -7650,7 +7663,7 @@ "default.handlebars->23->435", "default.handlebars->23->436", "default.handlebars->23->438", - "default.handlebars->23->574" + "default.handlebars->23->588" ] }, { @@ -7662,7 +7675,7 @@ "pt": "Sincronização de nome de host", "ru": "Синхронизация имени хоста", "xloc": [ - "default.handlebars->23->962" + "default.handlebars->23->976" ] }, { @@ -7674,7 +7687,7 @@ "pt": "Húngaro", "ru": "Венгерский", "xloc": [ - "default.handlebars->23->787" + "default.handlebars->23->801" ] }, { @@ -7747,7 +7760,7 @@ "pt": "islandês", "ru": "Исландский", "xloc": [ - "default.handlebars->23->788" + "default.handlebars->23->802" ] }, { @@ -7761,7 +7774,7 @@ "ru": "Выбор иконки", "xloc": [ "default-mobile.handlebars->9->221", - "default.handlebars->23->572" + "default.handlebars->23->586" ] }, { @@ -7798,7 +7811,7 @@ "pt": "Indonésia", "ru": "Индонезийский", "xloc": [ - "default.handlebars->23->789" + "default.handlebars->23->803" ] }, { @@ -7850,7 +7863,7 @@ "pt": "Instalar", "ru": "Установка", "xloc": [ - "default.handlebars->23->1001" + "default.handlebars->23->1015" ] }, { @@ -7883,7 +7896,7 @@ "pt": "Instalar CIRA", "ru": "Установка CIRA", "xloc": [ - "default.handlebars->23->993" + "default.handlebars->23->1007" ] }, { @@ -7895,7 +7908,7 @@ "pt": "Instalação local", "ru": "Локальная установка", "xloc": [ - "default.handlebars->23->995" + "default.handlebars->23->1009" ] }, { @@ -7920,7 +7933,7 @@ "pt": "Intel (F10 = ESC+[OM)", "ru": "Intel (F10 = ESC+[OM)", "xloc": [ - "default.handlebars->23->616", + "default.handlebars->23->630", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -7933,10 +7946,10 @@ "pt": "Intel AMT", "ru": "Intel AMT", "xloc": [ - "default.handlebars->23->1121", - "default.handlebars->23->1127", - "default.handlebars->23->1406", - "default.handlebars->23->1426" + "default.handlebars->23->1135", + "default.handlebars->23->1141", + "default.handlebars->23->1420", + "default.handlebars->23->1440" ] }, { @@ -8046,7 +8059,7 @@ "pt": "Intel ASCII", "ru": "Intel ASCII", "xloc": [ - "default.handlebars->23->615" + "default.handlebars->23->629" ] }, { @@ -8061,11 +8074,11 @@ "default-mobile.handlebars->9->123", "default-mobile.handlebars->9->187", "default-mobile.handlebars->9->192", + "default.handlebars->23->1001", "default.handlebars->23->411", "default.handlebars->23->461", "default.handlebars->23->477", - "default.handlebars->23->979", - "default.handlebars->23->987" + "default.handlebars->23->993" ] }, { @@ -8117,7 +8130,7 @@ "pt": "Intel® Política da AMT", "ru": "Политика Intel® AMT", "xloc": [ - "default.handlebars->23->1019" + "default.handlebars->23->1033" ] }, { @@ -8192,8 +8205,8 @@ "pt": "Intel® Área de trabalho AMT e eventos seriais.", "ru": "Настольные и серийные события Intel® AMT.", "xloc": [ - "default.handlebars->23->1117", - "default.handlebars->23->904" + "default.handlebars->23->1131", + "default.handlebars->23->918" ] }, { @@ -8257,8 +8270,8 @@ "ru": "Только Intel® AMT, без агента", "xloc": [ "default-mobile.handlebars->9->274", - "default.handlebars->23->933", - "default.handlebars->23->955" + "default.handlebars->23->947", + "default.handlebars->23->969" ] }, { @@ -8375,7 +8388,7 @@ "pt": "Interativo", "ru": "undefined", "xloc": [ - "default.handlebars->23->597" + "default.handlebars->23->611" ] }, { @@ -8414,7 +8427,7 @@ "pt": "Inuktitut", "ru": "undefined", "xloc": [ - "default.handlebars->23->790" + "default.handlebars->23->804" ] }, { @@ -8423,7 +8436,7 @@ "en": "Invalid Device Group Type", "nl": "Ongeldige apparaatgroep type", "xloc": [ - "default.handlebars->23->1383" + "default.handlebars->23->1397" ] }, { @@ -8432,7 +8445,7 @@ "en": "Invalid JSON", "nl": "Onjuiste JSON", "xloc": [ - "default.handlebars->23->1377" + "default.handlebars->23->1391" ] }, { @@ -8444,8 +8457,8 @@ "pt": "Formato de arquivo JSON inválido.", "ru": "undefined", "xloc": [ - "default.handlebars->23->1205", - "default.handlebars->23->1207" + "default.handlebars->23->1219", + "default.handlebars->23->1221" ] }, { @@ -8456,7 +8469,7 @@ "nl": "Ongeldig JSON-bestand: {0}.", "pt": "Arquivo JSON inválido: {0}.", "xloc": [ - "default.handlebars->23->1203" + "default.handlebars->23->1217" ] }, { @@ -8465,7 +8478,7 @@ "en": "Invalid PKCS signature", "nl": "Onjuiste PKCS handtekening", "xloc": [ - "default.handlebars->23->1375" + "default.handlebars->23->1389" ] }, { @@ -8474,7 +8487,7 @@ "en": "Invalid RSA siguature", "nl": "Ongeldige RSA handtekening", "xloc": [ - "default.handlebars->23->1376" + "default.handlebars->23->1390" ] }, { @@ -8545,7 +8558,7 @@ "pt": "Convite", "ru": "Пригласить", "xloc": [ - "default.handlebars->23->1003", + "default.handlebars->23->1017", "default.handlebars->23->236", "default.handlebars->23->313" ] @@ -8572,7 +8585,7 @@ "pt": "Convide alguém para instalar o agente de malha nessa malha.", "ru": "Отправить приглашение на установку Mesh Агента", "xloc": [ - "default.handlebars->23->1002", + "default.handlebars->23->1016", "default.handlebars->23->235" ] }, @@ -8598,7 +8611,7 @@ "pt": "Irish", "ru": "Ирландский", "xloc": [ - "default.handlebars->23->791" + "default.handlebars->23->805" ] }, { @@ -8611,7 +8624,7 @@ "pt": "Italiano (Padrão)", "ru": "Итальянский (Стандартный)", "xloc": [ - "default.handlebars->23->792" + "default.handlebars->23->806" ] }, { @@ -8624,7 +8637,7 @@ "pt": "Italiano (Suíça)", "ru": "Итальянский (Швейцария)", "xloc": [ - "default.handlebars->23->793" + "default.handlebars->23->807" ] }, { @@ -8637,8 +8650,8 @@ "pt": "Formato JSON", "ru": "Формат JSON", "xloc": [ - "default.handlebars->23->1172", - "default.handlebars->23->1211" + "default.handlebars->23->1186", + "default.handlebars->23->1225" ] }, { @@ -8651,7 +8664,7 @@ "pt": "japonês", "ru": "Японский", "xloc": [ - "default.handlebars->23->794" + "default.handlebars->23->808" ] }, { @@ -8663,7 +8676,7 @@ "pt": "Kannada", "ru": "Каннада", "xloc": [ - "default.handlebars->23->795" + "default.handlebars->23->809" ] }, { @@ -8675,7 +8688,7 @@ "pt": "Caxemira", "ru": "Кашмирский", "xloc": [ - "default.handlebars->23->796" + "default.handlebars->23->810" ] }, { @@ -8687,7 +8700,7 @@ "pt": "Cazaque", "ru": "Казахский", "xloc": [ - "default.handlebars->23->797" + "default.handlebars->23->811" ] }, { @@ -8699,7 +8712,7 @@ "pt": "KernelDriver", "ru": "Драйвер ядра", "xloc": [ - "default.handlebars->23->598" + "default.handlebars->23->612" ] }, { @@ -8712,8 +8725,8 @@ "pt": "Nome da chave", "ru": "Имя ключа", "xloc": [ - "default.handlebars->23->688", - "default.handlebars->23->691" + "default.handlebars->23->702", + "default.handlebars->23->705" ] }, { @@ -8738,7 +8751,7 @@ "pt": "Khmer", "ru": "Кхмерский", "xloc": [ - "default.handlebars->23->798" + "default.handlebars->23->812" ] }, { @@ -8750,7 +8763,7 @@ "pt": "Kirghiz", "ru": "Киргизский", "xloc": [ - "default.handlebars->23->799" + "default.handlebars->23->813" ] }, { @@ -8762,7 +8775,7 @@ "pt": "Klingon", "ru": "Клингонский", "xloc": [ - "default.handlebars->23->800" + "default.handlebars->23->814" ] }, { @@ -8775,7 +8788,7 @@ "pt": "coreano", "ru": "Korean", "xloc": [ - "default.handlebars->23->801" + "default.handlebars->23->815" ] }, { @@ -8788,7 +8801,7 @@ "pt": "Coreano (Coréia do Norte)", "ru": "Корейский (Северная Корея)", "xloc": [ - "default.handlebars->23->802" + "default.handlebars->23->816" ] }, { @@ -8801,7 +8814,7 @@ "pt": "Coreano (Coréia do Sul)", "ru": "Корейский (Южная Корея)", "xloc": [ - "default.handlebars->23->803" + "default.handlebars->23->817" ] }, { @@ -8812,8 +8825,8 @@ "pt": "LF", "ru": "LF", "xloc": [ - "default.handlebars->23->611", - "default.handlebars->23->620" + "default.handlebars->23->625", + "default.handlebars->23->634" ] }, { @@ -8826,7 +8839,7 @@ "pt": "Língua", "ru": "Язык", "xloc": [ - "default.handlebars->23->896" + "default.handlebars->23->910" ] }, { @@ -8852,7 +8865,7 @@ "pt": "Foco grande", "ru": "Большой Фокус", "xloc": [ - "default.handlebars->23->587" + "default.handlebars->23->601" ] }, { @@ -8995,7 +9008,7 @@ "pt": "Último acesso", "ru": "Последний доступ", "xloc": [ - "default.handlebars->23->1180" + "default.handlebars->23->1194" ] }, { @@ -9008,7 +9021,7 @@ "pt": "Último login", "ru": "Последний вход в систему", "xloc": [ - "default.handlebars->23->1307" + "default.handlebars->23->1321" ] }, { @@ -9049,7 +9062,7 @@ "pt": "Última alteração: {0}", "ru": "Последнее изменение: {0}", "xloc": [ - "default.handlebars->23->1311" + "default.handlebars->23->1325" ] }, { @@ -9087,7 +9100,7 @@ "pt": "Último login: {0}", "ru": "Последний вход в систему: {0}", "xloc": [ - "default.handlebars->23->1190" + "default.handlebars->23->1204" ] }, { @@ -9152,7 +9165,7 @@ "pt": "Latim", "ru": "Латинский", "xloc": [ - "default.handlebars->23->804" + "default.handlebars->23->818" ] }, { @@ -9164,7 +9177,7 @@ "pt": "letão", "ru": "Латышский", "xloc": [ - "default.handlebars->23->805" + "default.handlebars->23->819" ] }, { @@ -9193,7 +9206,7 @@ "pt": "Menos", "ru": "Меньше", "xloc": [ - "default.handlebars->23->1440" + "default.handlebars->23->1454" ] }, { @@ -9219,7 +9232,7 @@ "ru": "Ограниченный ввод", "xloc": [ "default-mobile.handlebars->9->323", - "default.handlebars->23->1102" + "default.handlebars->23->1116" ] }, { @@ -9232,7 +9245,7 @@ "ru": "Только ограниченный ввод", "xloc": [ "default-mobile.handlebars->9->298", - "default.handlebars->23->1072" + "default.handlebars->23->1086" ] }, { @@ -9246,7 +9259,7 @@ "ru": "Ссылка", "xloc": [ "default-mobile.handlebars->9->68", - "default.handlebars->23->1133", + "default.handlebars->23->1147", "default.handlebars->container->column_l->p42->p42tbl->1->0->4" ] }, @@ -9464,7 +9477,7 @@ "pt": "Lituano", "ru": "Литовский", "xloc": [ - "default.handlebars->23->806" + "default.handlebars->23->820" ] }, { @@ -9479,9 +9492,9 @@ "xloc": [ "default-mobile.handlebars->9->31", "default.handlebars->23->561", - "default.handlebars->23->684", - "default.handlebars->23->950", - "default.handlebars->23->952" + "default.handlebars->23->698", + "default.handlebars->23->964", + "default.handlebars->23->966" ] }, { @@ -9529,7 +9542,7 @@ "pt": "Configurações de localização", "ru": "Настройки локализации", "xloc": [ - "default.handlebars->23->899", + "default.handlebars->23->913", "default.handlebars->container->column_l->p2->p2AccountActions->3->5" ] }, @@ -9567,7 +9580,7 @@ "pt": "Bloquear conta", "ru": "Заблокировать аккаунт", "xloc": [ - "default.handlebars->23->1241" + "default.handlebars->23->1255" ] }, { @@ -9580,7 +9593,7 @@ "pt": "Bloqueado", "ru": "Заблокирован", "xloc": [ - "default.handlebars->23->1191" + "default.handlebars->23->1205" ] }, { @@ -9593,7 +9606,7 @@ "pt": "Conta bloqueada", "ru": "Заблокированный аккаунт", "xloc": [ - "default.handlebars->23->1292" + "default.handlebars->23->1306" ] }, { @@ -9702,7 +9715,7 @@ "pt": "Luxemburguês", "ru": "Люксембургский", "xloc": [ - "default.handlebars->23->807" + "default.handlebars->23->821" ] }, { @@ -9759,8 +9772,8 @@ "default.handlebars->23->192", "default.handlebars->23->379", "default.handlebars->23->481", - "default.handlebars->23->671", - "default.handlebars->23->672", + "default.handlebars->23->685", + "default.handlebars->23->686", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -9899,7 +9912,7 @@ "pt": "Mensagens do servidor principal", "ru": "Сообщения главного сервера", "xloc": [ - "default.handlebars->23->1417" + "default.handlebars->23->1431" ] }, { @@ -9911,7 +9924,7 @@ "pt": "Malaio", "ru": "Малайский", "xloc": [ - "default.handlebars->23->809" + "default.handlebars->23->823" ] }, { @@ -9923,7 +9936,7 @@ "pt": "Malaiala", "ru": "Малаяламский", "xloc": [ - "default.handlebars->23->810" + "default.handlebars->23->824" ] }, { @@ -9935,7 +9948,7 @@ "pt": "Maltês", "ru": "Мальтийский", "xloc": [ - "default.handlebars->23->811" + "default.handlebars->23->825" ] }, { @@ -9962,8 +9975,8 @@ "xloc": [ "default-mobile.handlebars->9->295", "default-mobile.handlebars->9->313", - "default.handlebars->23->1069", - "default.handlebars->23->1092" + "default.handlebars->23->1083", + "default.handlebars->23->1106" ] }, { @@ -9977,8 +9990,8 @@ "xloc": [ "default-mobile.handlebars->9->294", "default-mobile.handlebars->9->312", - "default.handlebars->23->1068", - "default.handlebars->23->1091" + "default.handlebars->23->1082", + "default.handlebars->23->1105" ] }, { @@ -9998,7 +10011,7 @@ "en": "Manage User Groups", "nl": "Beheer gebruikersgroepen.", "xloc": [ - "default.handlebars->23->1240" + "default.handlebars->23->1254" ] }, { @@ -10011,7 +10024,7 @@ "pt": "Gerenciar Usuários", "ru": "Управление пользователями", "xloc": [ - "default.handlebars->23->1239" + "default.handlebars->23->1253" ] }, { @@ -10062,7 +10075,7 @@ "pt": "Gerenciar usando um agente de software", "ru": "Управление с помощью программного агента", "xloc": [ - "default.handlebars->23->932" + "default.handlebars->23->946" ] }, { @@ -10076,7 +10089,7 @@ "ru": "Управляется с помощью программного агента", "xloc": [ "default-mobile.handlebars->9->275", - "default.handlebars->23->956" + "default.handlebars->23->970" ] }, { @@ -10088,7 +10101,7 @@ "pt": "Gerenciador", "ru": "Менеджер", "xloc": [ - "default.handlebars->23->1196" + "default.handlebars->23->1210" ] }, { @@ -10126,7 +10139,7 @@ "pt": "Maori", "ru": "Маори", "xloc": [ - "default.handlebars->23->812" + "default.handlebars->23->826" ] }, { @@ -10153,7 +10166,7 @@ "pt": "Marathi", "ru": "Маратхи", "xloc": [ - "default.handlebars->23->813" + "default.handlebars->23->827" ] }, { @@ -10162,7 +10175,7 @@ "en": "Max Sessions Reached", "nl": "Max Sessies bereikt", "xloc": [ - "default.handlebars->23->1381" + "default.handlebars->23->1395" ] }, { @@ -10204,7 +10217,7 @@ "pt": "Megabytes", "ru": "Мегабайт", "xloc": [ - "default.handlebars->23->1407" + "default.handlebars->23->1421" ] }, { @@ -10217,7 +10230,7 @@ "pt": "Memória", "ru": "ОЗУ", "xloc": [ - "default.handlebars->23->1398", + "default.handlebars->23->1412", "default.handlebars->23->75", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] @@ -10251,7 +10264,7 @@ "ru": "Консоль Mesh Agent-а", "xloc": [ "default-mobile.handlebars->9->302", - "default.handlebars->23->1076" + "default.handlebars->23->1090" ] }, { @@ -10293,6 +10306,13 @@ "default.handlebars->23->478" ] }, + { + "en": "MeshAction (.txt)", + "xloc": [ + "default.handlebars->23->575", + "default.handlebars->23->577" + ] + }, { "cs": "MeshAgent provoz", "de": "Mesh-Agent-Datenverkehr", @@ -10301,7 +10321,7 @@ "nl": "MeshAgent verkeer", "ru": "Трафик MeshAgent-а", "xloc": [ - "default.handlebars->23->1419" + "default.handlebars->23->1433" ] }, { @@ -10312,7 +10332,7 @@ "nl": "MeshAgent update", "ru": "Обновление MeshAgent-а", "xloc": [ - "default.handlebars->23->1420" + "default.handlebars->23->1434" ] }, { @@ -10336,7 +10356,7 @@ "pt": "MeshCentral Errors", "ru": "Ошибки MeshCentral", "xloc": [ - "default.handlebars->23->951" + "default.handlebars->23->965" ] }, { @@ -10385,7 +10405,7 @@ "pt": "Peering do servidor MeshCentral", "ru": "Соединения MeshCentral Сервера", "xloc": [ - "default.handlebars->23->1418" + "default.handlebars->23->1432" ] }, { @@ -10411,7 +10431,7 @@ "xloc": [ "default.handlebars->23->112", "default.handlebars->23->113", - "default.handlebars->23->949" + "default.handlebars->23->963" ] }, { @@ -10423,7 +10443,50 @@ "pt": "MeshCmd", "ru": "MeshCmd", "xloc": [ - "default.handlebars->23->207" + "default.handlebars->23->207", + "default.handlebars->23->573" + ] + }, + { + "en": "MeshCmd (Linux ARM, 32bit)", + "xloc": [ + "default.handlebars->23->585" + ] + }, + { + "en": "MeshCmd (Linux x86, 32bit)", + "xloc": [ + "default.handlebars->23->582" + ] + }, + { + "en": "MeshCmd (Linux x86, 64bit)", + "xloc": [ + "default.handlebars->23->583" + ] + }, + { + "en": "MeshCmd (MacOS, 64bit)", + "xloc": [ + "default.handlebars->23->584" + ] + }, + { + "en": "MeshCmd (Win32 executable)", + "xloc": [ + "default.handlebars->23->580" + ] + }, + { + "en": "MeshCmd (Win64 executable)", + "xloc": [ + "default.handlebars->23->581" + ] + }, + { + "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.", + "xloc": [ + "default.handlebars->23->570" ] }, { @@ -10485,7 +10548,7 @@ "pt": "Despachante de mensagens", "ru": "Диспетчер сообщения", "xloc": [ - "default.handlebars->23->1416" + "default.handlebars->23->1430" ] }, { @@ -10546,7 +10609,7 @@ "pt": "Moldavian", "ru": "Молдавский", "xloc": [ - "default.handlebars->23->814" + "default.handlebars->23->828" ] }, { @@ -10559,7 +10622,7 @@ "pt": "Mais", "ru": "Еще", "xloc": [ - "default.handlebars->23->1439" + "default.handlebars->23->1453" ] }, { @@ -10701,7 +10764,7 @@ "pt": "Console do meu servidor", "ru": "Консоль моего сервера", "xloc": [ - "default.handlebars->23->666" + "default.handlebars->23->680" ] }, { @@ -10787,8 +10850,8 @@ "pt": "Minha chave", "ru": "Мой ключ", "xloc": [ - "default.handlebars->23->689", - "default.handlebars->23->692" + "default.handlebars->23->703", + "default.handlebars->23->706" ] }, { @@ -10806,20 +10869,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->1041", - "default.handlebars->23->1178", - "default.handlebars->23->1219", - "default.handlebars->23->1246", - "default.handlebars->23->1250", - "default.handlebars->23->1255", - "default.handlebars->23->1257", - "default.handlebars->23->1280", - "default.handlebars->23->592", + "default.handlebars->23->1055", + "default.handlebars->23->1192", + "default.handlebars->23->1233", + "default.handlebars->23->1260", + "default.handlebars->23->1264", + "default.handlebars->23->1269", + "default.handlebars->23->1271", + "default.handlebars->23->1294", + "default.handlebars->23->606", "default.handlebars->23->71", "default.handlebars->23->80", - "default.handlebars->23->930", "default.handlebars->23->94", - "default.handlebars->23->957", + "default.handlebars->23->944", + "default.handlebars->23->971", "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" @@ -10848,7 +10911,7 @@ "pt": "Nome1, Nome2, Nome3", "ru": "Имя1, Имя2, Имя3", "xloc": [ - "default.handlebars->23->1232" + "default.handlebars->23->1246" ] }, { @@ -10861,7 +10924,7 @@ "pt": "Navajo", "ru": "Навахо", "xloc": [ - "default.handlebars->23->815" + "default.handlebars->23->829" ] }, { @@ -10874,7 +10937,7 @@ "pt": "Ndonga", "ru": "Ндонга", "xloc": [ - "default.handlebars->23->816" + "default.handlebars->23->830" ] }, { @@ -10887,7 +10950,7 @@ "pt": "Nepali", "ru": "Непальский", "xloc": [ - "default.handlebars->23->817" + "default.handlebars->23->831" ] }, { @@ -10913,7 +10976,7 @@ "pt": "Roteador de rede", "ru": "Сетевой маршрутизатор", "xloc": [ - "default.handlebars->23->571" + "default.handlebars->23->579" ] }, { @@ -10955,8 +11018,8 @@ "xloc": [ "default-mobile.handlebars->9->50", "default.handlebars->23->552", - "default.handlebars->23->923", - "default.handlebars->23->935" + "default.handlebars->23->937", + "default.handlebars->23->949" ] }, { @@ -10971,8 +11034,8 @@ "xloc": [ "default-mobile.handlebars->9->247", "default-mobile.handlebars->9->79", - "default.handlebars->23->1151", - "default.handlebars->23->630", + "default.handlebars->23->1165", + "default.handlebars->23->644", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -11010,8 +11073,8 @@ "xloc": [ "default-mobile.handlebars->9->45", "default-mobile.handlebars->9->46", - "default.handlebars->23->918", - "default.handlebars->23->919" + "default.handlebars->23->932", + "default.handlebars->23->933" ] }, { @@ -11052,9 +11115,9 @@ "pt": "Nenhum evento encontrado", "ru": "События не найдены", "xloc": [ - "default.handlebars->23->1168", - "default.handlebars->23->1364", - "default.handlebars->23->664" + "default.handlebars->23->1182", + "default.handlebars->23->1378", + "default.handlebars->23->678" ] }, { @@ -11068,7 +11131,7 @@ "ru": "Нет доступа к файлу", "xloc": [ "default-mobile.handlebars->9->300", - "default.handlebars->23->1074" + "default.handlebars->23->1088" ] }, { @@ -11082,7 +11145,7 @@ "ru": "Файлов нет", "xloc": [ "default-mobile.handlebars->9->321", - "default.handlebars->23->1100" + "default.handlebars->23->1114" ] }, { @@ -11096,8 +11159,8 @@ "xloc": [ "default-mobile.handlebars->9->301", "default-mobile.handlebars->9->322", - "default.handlebars->23->1075", - "default.handlebars->23->1101" + "default.handlebars->23->1089", + "default.handlebars->23->1115" ] }, { @@ -11141,7 +11204,7 @@ "en": "No Members", "nl": "Geen leden", "xloc": [ - "default.handlebars->23->1267" + "default.handlebars->23->1281" ] }, { @@ -11153,7 +11216,7 @@ "pt": "Não há novos grupos de dispositivos", "ru": "Новых групп устройств нет", "xloc": [ - "default.handlebars->23->1242" + "default.handlebars->23->1256" ] }, { @@ -11165,9 +11228,9 @@ "pt": "Nenhuma política", "ru": "Политик нет", "xloc": [ - "default.handlebars->23->1013", - "default.handlebars->23->1016", - "default.handlebars->23->982" + "default.handlebars->23->1027", + "default.handlebars->23->1030", + "default.handlebars->23->996" ] }, { @@ -11182,11 +11245,11 @@ "default-mobile.handlebars->9->284", "default-mobile.handlebars->9->327", "default-mobile.handlebars->9->65", - "default.handlebars->23->1007", - "default.handlebars->23->1106", - "default.handlebars->23->1273", - "default.handlebars->23->1347", - "default.handlebars->23->944" + "default.handlebars->23->1021", + "default.handlebars->23->1120", + "default.handlebars->23->1287", + "default.handlebars->23->1361", + "default.handlebars->23->958" ] }, { @@ -11214,7 +11277,7 @@ "ru": "Терминала нет", "xloc": [ "default-mobile.handlebars->9->320", - "default.handlebars->23->1099" + "default.handlebars->23->1113" ] }, { @@ -11227,7 +11290,7 @@ "ru": "Нет доступа к терминалу", "xloc": [ "default-mobile.handlebars->9->299", - "default.handlebars->23->1073" + "default.handlebars->23->1087" ] }, { @@ -11239,7 +11302,7 @@ "pt": "Sem ferramentas (MeshCmd / Roteador)", "ru": "Нет инструментов (MeshCmd/Маршрутизатор)", "xloc": [ - "default.handlebars->23->1243" + "default.handlebars->23->1257" ] }, { @@ -11247,8 +11310,8 @@ "en": "No device groups in common", "nl": "Geen gemeenschappelijke apparaatgroepen", "xloc": [ - "default.handlebars->23->1276", - "default.handlebars->23->1350" + "default.handlebars->23->1290", + "default.handlebars->23->1364" ] }, { @@ -11310,7 +11373,7 @@ "en": "No devices in this device group.", "nl": "Geen apparaten in deze apparaatgroep.", "xloc": [ - "default.handlebars->23->1130" + "default.handlebars->23->1144" ] }, { @@ -11354,7 +11417,7 @@ "en": "No groups found.", "nl": "Geen groepen gevonden.", "xloc": [ - "default.handlebars->23->1245" + "default.handlebars->23->1259" ] }, { @@ -11425,7 +11488,7 @@ "pt": "Sem direitos de servidor", "ru": "Нет серверных прав", "xloc": [ - "default.handlebars->23->1293" + "default.handlebars->23->1307" ] }, { @@ -11433,7 +11496,7 @@ "en": "No user group memberships", "nl": "Geen gebruikersgroep lidmaatschap", "xloc": [ - "default.handlebars->23->1356" + "default.handlebars->23->1370" ] }, { @@ -11445,7 +11508,7 @@ "pt": "Usuários não encontrados.", "ru": "Пользователи не найдены.", "xloc": [ - "default.handlebars->23->1186" + "default.handlebars->23->1200" ] }, { @@ -11492,10 +11555,10 @@ "default-mobile.handlebars->9->75", "default-mobile.handlebars->9->93", "default-mobile.handlebars->9->95", - "default.handlebars->23->1139", - "default.handlebars->23->1254", - "default.handlebars->23->1312", - "default.handlebars->23->1316", + "default.handlebars->23->1153", + "default.handlebars->23->1268", + "default.handlebars->23->1326", + "default.handlebars->23->1330", "default.handlebars->23->166", "default.handlebars->23->181", "default.handlebars->23->182", @@ -11504,10 +11567,10 @@ "default.handlebars->23->439", "default.handlebars->23->483", "default.handlebars->23->63", - "default.handlebars->23->959", - "default.handlebars->23->963", - "default.handlebars->23->975", - "default.handlebars->23->980", + "default.handlebars->23->973", + "default.handlebars->23->977", + "default.handlebars->23->989", + "default.handlebars->23->994", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] }, @@ -11534,7 +11597,7 @@ "pt": "norueguês", "ru": "Норвежский", "xloc": [ - "default.handlebars->23->818" + "default.handlebars->23->832" ] }, { @@ -11547,7 +11610,7 @@ "pt": "Norueguês (Bokmal)", "ru": "Норвежский (Букмол)", "xloc": [ - "default.handlebars->23->819" + "default.handlebars->23->833" ] }, { @@ -11560,7 +11623,7 @@ "pt": "Norueguês (Nynorsk)", "ru": "Норвежский (Нюнорск)", "xloc": [ - "default.handlebars->23->820" + "default.handlebars->23->834" ] }, { @@ -11595,8 +11658,8 @@ "en": "Not Connected", "nl": "Niet verbonden", "xloc": [ - "default.handlebars->23->1119", - "default.handlebars->23->1125" + "default.handlebars->23->1133", + "default.handlebars->23->1139" ] }, { @@ -11608,7 +11671,7 @@ "pt": "Não configurado", "ru": "Не задано", "xloc": [ - "default.handlebars->23->1298" + "default.handlebars->23->1312" ] }, { @@ -11621,10 +11684,10 @@ "pt": "Notas", "ru": "Заметки", "xloc": [ - "default.handlebars->23->1323", + "default.handlebars->23->1002", + "default.handlebars->23->1337", "default.handlebars->23->486", - "default.handlebars->23->519", - "default.handlebars->23->988" + "default.handlebars->23->519" ] }, { @@ -11647,8 +11710,8 @@ "pt": "Configurações de notificação", "ru": "Настройки уведомлений", "xloc": [ - "default.handlebars->23->1118", - "default.handlebars->23->905", + "default.handlebars->23->1132", + "default.handlebars->23->919", "default.handlebars->container->column_l->p2->p2AccountActions->3->8" ] }, @@ -11658,7 +11721,7 @@ "en": "Notification settings must also be turned on in account settings.", "nl": "Meldingsinstellingen moeten ook worden ingeschakeld in accountinstellingen.", "xloc": [ - "default.handlebars->23->1114" + "default.handlebars->23->1128" ] }, { @@ -11670,7 +11733,7 @@ "pt": "Som de notificação.", "ru": "Звук уведомления.", "xloc": [ - "default.handlebars->23->900" + "default.handlebars->23->914" ] }, { @@ -11682,7 +11745,7 @@ "pt": "Notificações", "ru": "Уведомления", "xloc": [ - "default.handlebars->23->981" + "default.handlebars->23->995" ] }, { @@ -11694,7 +11757,7 @@ "pt": "Notificar", "ru": "Уведомить", "xloc": [ - "default.handlebars->23->1325" + "default.handlebars->23->1339" ] }, { @@ -11707,9 +11770,9 @@ "pt": "Notificar usuário", "ru": "Уведомить пользователя", "xloc": [ - "default.handlebars->23->1045", - "default.handlebars->23->1049", - "default.handlebars->23->1052" + "default.handlebars->23->1059", + "default.handlebars->23->1063", + "default.handlebars->23->1066" ] }, { @@ -11721,7 +11784,7 @@ "pt": "Notificar {0}", "ru": "Уведомить {0}", "xloc": [ - "default.handlebars->23->1198" + "default.handlebars->23->1212" ] }, { @@ -11736,7 +11799,7 @@ "default-mobile.handlebars->9->42", "default-mobile.handlebars->dialog->idx_dlgButtonBar", "default.handlebars->23->469", - "default.handlebars->23->947", + "default.handlebars->23->961", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -11765,7 +11828,7 @@ "pt": "Occitânico", "ru": "Окситанский", "xloc": [ - "default.handlebars->23->821" + "default.handlebars->23->835" ] }, { @@ -11778,7 +11841,7 @@ "pt": "Ocorreu em {0}", "ru": "Произошло в {0}", "xloc": [ - "default.handlebars->23->1367" + "default.handlebars->23->1381" ] }, { @@ -11791,7 +11854,7 @@ "pt": "Usuários offline", "ru": "Оффлайн пользователи", "xloc": [ - "default.handlebars->23->1183" + "default.handlebars->23->1197" ] }, { @@ -11805,7 +11868,7 @@ "ru": "Старый пароль:", "xloc": [ "default-mobile.handlebars->9->44", - "default.handlebars->23->917" + "default.handlebars->23->931" ] }, { @@ -11831,7 +11894,7 @@ "pt": "Usuários Online", "ru": "Онлайн пользователи", "xloc": [ - "default.handlebars->23->1182" + "default.handlebars->23->1196" ] }, { @@ -11844,7 +11907,7 @@ "ru": "Только файлы размером меньше 200к могут быть редактированны", "xloc": [ "default-mobile.handlebars->9->255", - "default.handlebars->23->638" + "default.handlebars->23->652" ] }, { @@ -11909,6 +11972,7 @@ "default.handlebars->23->285", "default.handlebars->23->314", "default.handlebars->23->466", + "default.handlebars->23->572", "default.handlebars->23->79" ] }, @@ -11949,7 +12013,7 @@ "pt": "Oriya", "ru": "Ория", "xloc": [ - "default.handlebars->23->822" + "default.handlebars->23->836" ] }, { @@ -11961,7 +12025,7 @@ "pt": "Oromo", "ru": "Оромо", "xloc": [ - "default.handlebars->23->823" + "default.handlebars->23->837" ] }, { @@ -12012,7 +12076,7 @@ "pt": "Processo próprio", "ru": "Собственный процесс", "xloc": [ - "default.handlebars->23->599" + "default.handlebars->23->613" ] }, { @@ -12025,7 +12089,7 @@ "ru": "PID", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", - "default.handlebars->23->595", + "default.handlebars->23->609", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -12052,7 +12116,7 @@ "pt": "Parcial", "ru": "Частично", "xloc": [ - "default.handlebars->23->1197" + "default.handlebars->23->1211" ] }, { @@ -12060,9 +12124,9 @@ "en": "Partial Device Group Rights", "nl": "Gedeeltelijke apparaatgroep rechten", "xloc": [ - "default.handlebars->23->1005", - "default.handlebars->23->1270", - "default.handlebars->23->1344" + "default.handlebars->23->1019", + "default.handlebars->23->1284", + "default.handlebars->23->1358" ] }, { @@ -12076,7 +12140,7 @@ "xloc": [ "default-mobile.handlebars->9->282", "default-mobile.handlebars->9->63", - "default.handlebars->23->942" + "default.handlebars->23->956" ] }, { @@ -12088,7 +12152,7 @@ "pt": "Direitos parciais", "ru": "Частичные права", "xloc": [ - "default.handlebars->23->1296" + "default.handlebars->23->1310" ] }, { @@ -12114,12 +12178,12 @@ "ru": "Пароль", "xloc": [ "default-mobile.handlebars->9->213", - "default.handlebars->23->1221", - "default.handlebars->23->1222", - "default.handlebars->23->1308", - "default.handlebars->23->1310", - "default.handlebars->23->1334", - "default.handlebars->23->1335", + "default.handlebars->23->1235", + "default.handlebars->23->1236", + "default.handlebars->23->1322", + "default.handlebars->23->1324", + "default.handlebars->23->1348", + "default.handlebars->23->1349", "default.handlebars->23->243", "default.handlebars->23->272", "default.handlebars->23->536" @@ -12190,7 +12254,7 @@ "pt": "Dica de senha", "ru": "Подсказка пароля", "xloc": [ - "default.handlebars->23->1336" + "default.handlebars->23->1350" ] }, { @@ -12203,7 +12267,7 @@ "ru": "Подсказка пароля:", "xloc": [ "default-mobile.handlebars->9->47", - "default.handlebars->23->920" + "default.handlebars->23->934" ] }, { @@ -12215,7 +12279,7 @@ "pt": "Senha incorreta", "ru": "Пароль не совпадает", "xloc": [ - "default.handlebars->23->1022" + "default.handlebars->23->1036" ] }, { @@ -12241,8 +12305,8 @@ "pt": "Senha*", "ru": "Пароль*", "xloc": [ - "default.handlebars->23->1020", - "default.handlebars->23->1021" + "default.handlebars->23->1034", + "default.handlebars->23->1035" ] }, { @@ -12257,8 +12321,8 @@ "xloc": [ "default-mobile.handlebars->9->39", "default-mobile.handlebars->9->40", - "default.handlebars->23->912", - "default.handlebars->23->913", + "default.handlebars->23->926", + "default.handlebars->23->927", "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", @@ -12285,9 +12349,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->1160", - "default.handlebars->23->621", - "default.handlebars->23->643", + "default.handlebars->23->1174", + "default.handlebars->23->635", + "default.handlebars->23->657", "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" @@ -12329,7 +12393,7 @@ "pt": "Executar ação do agente", "ru": "Произвести действие агента", "xloc": [ - "default.handlebars->23->674" + "default.handlebars->23->688" ] }, { @@ -12353,8 +12417,8 @@ "pt": "Execute a ativação do modo de controle de administração Intel AMT (ACM).", "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).", "xloc": [ - "default.handlebars->23->231", - "default.handlebars->23->998" + "default.handlebars->23->1012", + "default.handlebars->23->231" ] }, { @@ -12378,8 +12442,8 @@ "pt": "Execute a ativação do modo de controle do cliente Intel AMT (CCM).", "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).", "xloc": [ - "default.handlebars->23->229", - "default.handlebars->23->996" + "default.handlebars->23->1010", + "default.handlebars->23->229" ] }, { @@ -12409,8 +12473,8 @@ "ru": "Права", "xloc": [ "default-mobile.handlebars->9->329", - "default.handlebars->23->1109", - "default.handlebars->23->1181" + "default.handlebars->23->1123", + "default.handlebars->23->1195" ] }, { @@ -12422,7 +12486,7 @@ "pt": "Persa / Irã", "ru": "Персидский/Иран", "xloc": [ - "default.handlebars->23->824" + "default.handlebars->23->838" ] }, { @@ -12497,7 +12561,7 @@ "ru": "Подождите пару минут для получения подтверждения.", "xloc": [ "default-mobile.handlebars->9->35", - "default.handlebars->23->907" + "default.handlebars->23->921" ] }, { @@ -12508,7 +12572,7 @@ "nl": "Plugin Actie", "ru": "Действие плагина", "xloc": [ - "default.handlebars->23->1436", + "default.handlebars->23->1450", "default.handlebars->23->177" ] }, @@ -12591,7 +12655,7 @@ "ru": "Политика", "xloc": [ "default-mobile.handlebars->9->62", - "default.handlebars->23->941" + "default.handlebars->23->955" ] }, { @@ -12603,7 +12667,7 @@ "pt": "polonês", "ru": "Польский", "xloc": [ - "default.handlebars->23->825" + "default.handlebars->23->839" ] }, { @@ -12615,7 +12679,7 @@ "pt": "Português", "ru": "Португальский", "xloc": [ - "default.handlebars->23->826" + "default.handlebars->23->840" ] }, { @@ -12627,7 +12691,7 @@ "pt": "Português (Brasil)", "ru": "Португальский (Бразилия)", "xloc": [ - "default.handlebars->23->827" + "default.handlebars->23->841" ] }, { @@ -12661,7 +12725,7 @@ "en": "Power States", "nl": "Power Status", "xloc": [ - "default.handlebars->23->1123", + "default.handlebars->23->1137", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -12763,7 +12827,7 @@ "ru": "Нажмите Control", "xloc": [ "default-mobile.handlebars->9->234", - "default.handlebars->23->608" + "default.handlebars->23->622" ] }, { @@ -12790,9 +12854,9 @@ "pt": "Solicitar consentimento do usuário", "ru": "Запрос согласия пользователя", "xloc": [ - "default.handlebars->23->1046", - "default.handlebars->23->1050", - "default.handlebars->23->1053" + "default.handlebars->23->1060", + "default.handlebars->23->1064", + "default.handlebars->23->1067" ] }, { @@ -12819,7 +12883,7 @@ "ru": "Публичная ссылка", "xloc": [ "default-mobile.handlebars->9->74", - "default.handlebars->23->1146" + "default.handlebars->23->1160" ] }, { @@ -12831,7 +12895,7 @@ "pt": "Punjabi", "ru": "Пенджаби", "xloc": [ - "default.handlebars->23->828" + "default.handlebars->23->842" ] }, { @@ -12843,7 +12907,7 @@ "pt": "Punjabi (Índia)", "ru": "Пенджаби (Индия)", "xloc": [ - "default.handlebars->23->829" + "default.handlebars->23->843" ] }, { @@ -12855,7 +12919,7 @@ "pt": "Punjabi (Paquistão)", "ru": "Пенджаби (Пакистан)", "xloc": [ - "default.handlebars->23->830" + "default.handlebars->23->844" ] }, { @@ -12893,7 +12957,7 @@ "pt": "Quechua", "ru": "Кечуа", "xloc": [ - "default.handlebars->23->831" + "default.handlebars->23->845" ] }, { @@ -12969,7 +13033,7 @@ "en": "RSS", "nl": "RSS", "xloc": [ - "default.handlebars->23->1411" + "default.handlebars->23->1425" ] }, { @@ -12982,7 +13046,7 @@ "pt": "Randomize a senha.", "ru": "Случайный пароль", "xloc": [ - "default.handlebars->23->1223" + "default.handlebars->23->1237" ] }, { @@ -13006,7 +13070,7 @@ "pt": "Reativar Intel®AMT", "ru": "Возобновить Intel® AMT", "xloc": [ - "default.handlebars->23->1024" + "default.handlebars->23->1038" ] }, { @@ -13018,7 +13082,7 @@ "pt": "Realms", "ru": "Области", "xloc": [ - "default.handlebars->23->1231" + "default.handlebars->23->1245" ] }, { @@ -13033,8 +13097,8 @@ "xloc": [ "default-mobile.handlebars->9->248", "default-mobile.handlebars->9->80", - "default.handlebars->23->1152", - "default.handlebars->23->631" + "default.handlebars->23->1166", + "default.handlebars->23->645" ] }, { @@ -13101,7 +13165,7 @@ "en": "Relay Count", "nl": "Relay geteld", "xloc": [ - "default.handlebars->23->1393" + "default.handlebars->23->1407" ] }, { @@ -13110,7 +13174,7 @@ "en": "Relay Errors", "nl": "Relay fouten", "xloc": [ - "default.handlebars->23->1386" + "default.handlebars->23->1400" ] }, { @@ -13122,8 +13186,8 @@ "pt": "Retransmissão de sessão ", "ru": "Ретранслированные сессии", "xloc": [ - "default.handlebars->23->1392", - "default.handlebars->23->1405" + "default.handlebars->23->1406", + "default.handlebars->23->1419" ] }, { @@ -13178,7 +13242,7 @@ "pt": "Área de transferência remota", "ru": "Удаленный буфер обмена", "xloc": [ - "default.handlebars->23->591" + "default.handlebars->23->605" ] }, { @@ -13193,8 +13257,8 @@ "xloc": [ "default-mobile.handlebars->9->296", "default-mobile.handlebars->9->314", - "default.handlebars->23->1070", - "default.handlebars->23->1093" + "default.handlebars->23->1084", + "default.handlebars->23->1107" ] }, { @@ -13209,7 +13273,7 @@ "xloc": [ "default-mobile.handlebars->9->229", "default.handlebars->23->222", - "default.handlebars->23->583" + "default.handlebars->23->597" ] }, { @@ -13222,7 +13286,7 @@ "pt": "Entrada remota do teclado", "ru": "Ввод с удаленной клавиатуры", "xloc": [ - "default.handlebars->23->589" + "default.handlebars->23->603" ] }, { @@ -13235,7 +13299,7 @@ "ru": "Удаленный Mesh Пользователь", "xloc": [ "default-mobile.handlebars->9->332", - "default.handlebars->23->1112" + "default.handlebars->23->1126" ] }, { @@ -13243,7 +13307,7 @@ "en": "Remote User", "nl": "Externe gebruiker", "xloc": [ - "default.handlebars->23->1286" + "default.handlebars->23->1300" ] }, { @@ -13257,8 +13321,8 @@ "xloc": [ "default-mobile.handlebars->9->297", "default-mobile.handlebars->9->319", - "default.handlebars->23->1071", - "default.handlebars->23->1098" + "default.handlebars->23->1085", + "default.handlebars->23->1112" ] }, { @@ -13271,7 +13335,7 @@ "pt": "A área de transferência remota é válida por 60 segundos.", "ru": "Удаленный буфер обмена действителен в течении 60 секунд.", "xloc": [ - "default.handlebars->23->590" + "default.handlebars->23->604" ] }, { @@ -13306,8 +13370,8 @@ "en": "Remove Device Group", "nl": "Remove Device Group", "xloc": [ - "default.handlebars->23->1278", - "default.handlebars->23->1362" + "default.handlebars->23->1292", + "default.handlebars->23->1376" ] }, { @@ -13315,7 +13379,7 @@ "en": "Remove User", "nl": "Verwijder gebruiker", "xloc": [ - "default.handlebars->23->1358" + "default.handlebars->23->1372" ] }, { @@ -13327,7 +13391,7 @@ "pt": "Remova toda a autenticação do segundo fator.", "ru": "Удалить все двухфакторные аутентификации.", "xloc": [ - "default.handlebars->23->1339" + "default.handlebars->23->1353" ] }, { @@ -13336,7 +13400,7 @@ "en": "Remove all previous events for this userid.", "nl": "Verwijder alle eerdere gebeurtenissen voor dit gebruikers-ID.", "xloc": [ - "default.handlebars->23->1225" + "default.handlebars->23->1239" ] }, { @@ -13345,7 +13409,7 @@ "en": "Remove device on disconnect", "nl": "Verwijder apparaat bij verbreken", "xloc": [ - "default.handlebars->23->1055" + "default.handlebars->23->1069" ] }, { @@ -13378,7 +13442,7 @@ "en": "Remove user group membership", "nl": "Verwijder de groepslidmaatschap", "xloc": [ - "default.handlebars->23->1354" + "default.handlebars->23->1368" ] }, { @@ -13386,7 +13450,7 @@ "en": "Remove user group rights to this device group", "nl": "Verwijder gebruikers groepsrechten van deze apparaatgroep", "xloc": [ - "default.handlebars->23->1274" + "default.handlebars->23->1288" ] }, { @@ -13399,9 +13463,9 @@ "pt": "Remova os direitos de usuário deste grupo de dispositivos", "ru": "Удалить права пользователя этой группы", "xloc": [ - "default.handlebars->23->1008", - "default.handlebars->23->1265", - "default.handlebars->23->1348" + "default.handlebars->23->1022", + "default.handlebars->23->1279", + "default.handlebars->23->1362" ] }, { @@ -13418,8 +13482,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->1156", - "default.handlebars->23->635", + "default.handlebars->23->1170", + "default.handlebars->23->649", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -13434,7 +13498,7 @@ "pt": "Requisitos:", "ru": "Требования: ", "xloc": [ - "default.handlebars->23->921" + "default.handlebars->23->935" ] }, { @@ -13448,8 +13512,8 @@ "ru": "Требования: {0}.", "xloc": [ "default-mobile.handlebars->9->48", - "default.handlebars->23->1228", - "default.handlebars->23->1337" + "default.handlebars->23->1242", + "default.handlebars->23->1351" ] }, { @@ -13572,7 +13636,7 @@ "pt": "Reiniciar", "ru": "Перезагрузка", "xloc": [ - "default.handlebars->23->605", + "default.handlebars->23->619", "player.htm->p11->deskarea0->deskarea4->3" ] }, @@ -13586,7 +13650,7 @@ "pt": "Restaurar servidor", "ru": "Восстановить сервер", "xloc": [ - "default.handlebars->23->948" + "default.handlebars->23->962" ] }, { @@ -13611,7 +13675,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->945" + "default.handlebars->23->959" ] }, { @@ -13624,7 +13688,7 @@ "pt": "Restrições", "ru": "Ограничения", "xloc": [ - "default.handlebars->23->1297" + "default.handlebars->23->1311" ] }, { @@ -13636,7 +13700,7 @@ "pt": "Rhaeto-Romanic", "ru": "Ретороманский", "xloc": [ - "default.handlebars->23->832" + "default.handlebars->23->846" ] }, { @@ -13649,7 +13713,7 @@ "pt": "Romena", "ru": "Румынский", "xloc": [ - "default.handlebars->23->833" + "default.handlebars->23->847" ] }, { @@ -13662,7 +13726,7 @@ "pt": "Romeno (Moldávia)", "ru": "Румынский (Молдавия)", "xloc": [ - "default.handlebars->23->834" + "default.handlebars->23->848" ] }, { @@ -13677,8 +13741,8 @@ "xloc": [ "default-mobile.handlebars->9->242", "default-mobile.handlebars->9->66", - "default.handlebars->23->1131", - "default.handlebars->23->625" + "default.handlebars->23->1145", + "default.handlebars->23->639" ] }, { @@ -13769,7 +13833,7 @@ "pt": "Russo", "ru": "Русский", "xloc": [ - "default.handlebars->23->835" + "default.handlebars->23->849" ] }, { @@ -13782,7 +13846,7 @@ "pt": "Russo (Moldávia)", "ru": "Русский (Молдавия)", "xloc": [ - "default.handlebars->23->836" + "default.handlebars->23->850" ] }, { @@ -13807,7 +13871,7 @@ "pt": "Sami (lapão)", "ru": "Саамский", "xloc": [ - "default.handlebars->23->837" + "default.handlebars->23->851" ] }, { @@ -13831,7 +13895,7 @@ "pt": "Sango", "ru": "Санго", "xloc": [ - "default.handlebars->23->838" + "default.handlebars->23->852" ] }, { @@ -13843,7 +13907,7 @@ "pt": "Sanskrit", "ru": "Санскритский", "xloc": [ - "default.handlebars->23->839" + "default.handlebars->23->853" ] }, { @@ -13855,7 +13919,7 @@ "pt": "Sardinian", "ru": "Сардинский", "xloc": [ - "default.handlebars->23->840" + "default.handlebars->23->854" ] }, { @@ -14014,7 +14078,7 @@ "ru": "Защита", "xloc": [ "default-mobile.handlebars->9->214", - "default.handlebars->23->1321", + "default.handlebars->23->1335", "default.handlebars->23->244", "default.handlebars->23->537" ] @@ -14029,7 +14093,7 @@ "pt": "Chave de segurança", "ru": "Ключ безопасности", "xloc": [ - "default.handlebars->23->1319" + "default.handlebars->23->1333" ] }, { @@ -14042,10 +14106,10 @@ "pt": "Selecionar tudo", "ru": "Выбрать все", "xloc": [ - "default.handlebars->23->1148", + "default.handlebars->23->1162", "default.handlebars->23->382", - "default.handlebars->23->627", - "default.handlebars->23->629", + "default.handlebars->23->641", + "default.handlebars->23->643", "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", @@ -14062,9 +14126,9 @@ "pt": "Selecione nenhum", "ru": "Очистить все", "xloc": [ - "default.handlebars->23->1147", + "default.handlebars->23->1161", "default.handlebars->23->381", - "default.handlebars->23->628", + "default.handlebars->23->642", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -14153,7 +14217,7 @@ "ru": "Только собственные события", "xloc": [ "default-mobile.handlebars->9->324", - "default.handlebars->23->1103" + "default.handlebars->23->1117" ] }, { @@ -14203,7 +14267,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->1262" + "default.handlebars->23->1276" ] }, { @@ -14216,7 +14280,7 @@ "pt": "Envie uma notificação de texto para este usuário.", "ru": "Отправить текстовое уведомление этому пользователю.", "xloc": [ - "default.handlebars->23->1199" + "default.handlebars->23->1213" ] }, { @@ -14242,7 +14306,7 @@ "pt": "Enviar email de convite.", "ru": "Отправить приглашение по эл. почте.", "xloc": [ - "default.handlebars->23->1227" + "default.handlebars->23->1241" ] }, { @@ -14267,7 +14331,7 @@ "pt": "Enviar notificação do usuário", "ru": "Отправить уведомление пользователю", "xloc": [ - "default.handlebars->23->1326" + "default.handlebars->23->1340" ] }, { @@ -14279,7 +14343,7 @@ "pt": "Sérvia", "ru": "Сербский", "xloc": [ - "default.handlebars->23->843" + "default.handlebars->23->857" ] }, { @@ -14303,7 +14367,7 @@ "pt": "Backup do servidor", "ru": "Резервное копирование сервера", "xloc": [ - "default.handlebars->23->1236" + "default.handlebars->23->1250" ] }, { @@ -14314,7 +14378,7 @@ "nl": "Server Certificaat", "ru": "Сертификат сервера", "xloc": [ - "default.handlebars->23->1421" + "default.handlebars->23->1435" ] }, { @@ -14328,9 +14392,9 @@ "xloc": [ "default-mobile.handlebars->9->303", "default-mobile.handlebars->9->316", - "default.handlebars->23->1077", - "default.handlebars->23->1095", - "default.handlebars->23->1234" + "default.handlebars->23->1091", + "default.handlebars->23->1109", + "default.handlebars->23->1248" ] }, { @@ -14342,8 +14406,8 @@ "pt": "Permissões do servidor", "ru": "Разрешения сервера", "xloc": [ - "default.handlebars->23->1192", - "default.handlebars->23->1244" + "default.handlebars->23->1206", + "default.handlebars->23->1258" ] }, { @@ -14355,7 +14419,7 @@ "pt": "Cota do servidor", "ru": "Квота сервера", "xloc": [ - "default.handlebars->23->1305" + "default.handlebars->23->1319" ] }, { @@ -14367,7 +14431,7 @@ "pt": "Restauração do servidor", "ru": "Восстановление сервера", "xloc": [ - "default.handlebars->23->1237" + "default.handlebars->23->1251" ] }, { @@ -14380,7 +14444,7 @@ "pt": "Direitos do servidor", "ru": "Права сервера", "xloc": [ - "default.handlebars->23->1304" + "default.handlebars->23->1318" ] }, { @@ -14389,7 +14453,7 @@ "en": "Server State", "nl": "Server Status", "xloc": [ - "default.handlebars->23->1372" + "default.handlebars->23->1386" ] }, { @@ -14415,7 +14479,7 @@ "pt": "Rastreamento de servidor", "ru": "Трассировка сервера", "xloc": [ - "default.handlebars->23->1430" + "default.handlebars->23->1444" ] }, { @@ -14428,7 +14492,7 @@ "pt": "Atualizações do Servidor", "ru": "Обновления сервера", "xloc": [ - "default.handlebars->23->1238" + "default.handlebars->23->1252" ] }, { @@ -14514,7 +14578,7 @@ "pt": "ServerStats.csv", "ru": "ServerStats.csv", "xloc": [ - "default.handlebars->23->1413" + "default.handlebars->23->1427" ] }, { @@ -14526,7 +14590,7 @@ "pt": "Detalhes do serviço", "ru": "Детайли сервиса", "xloc": [ - "default.handlebars->23->606" + "default.handlebars->23->620" ] }, { @@ -14671,7 +14735,7 @@ "pt": "Processo compartilhado", "ru": "Общий процесс", "xloc": [ - "default.handlebars->23->600" + "default.handlebars->23->614" ] }, { @@ -14753,7 +14817,7 @@ "ru": "Показывать только собственные события", "xloc": [ "default-mobile.handlebars->9->306", - "default.handlebars->23->1080" + "default.handlebars->23->1094" ] }, { @@ -14766,7 +14830,7 @@ "pt": "Mostrar barra de ferramentas de conexão", "ru": "Показать панель инструментов подключения", "xloc": [ - "default.handlebars->23->1047" + "default.handlebars->23->1061" ] }, { @@ -14827,8 +14891,8 @@ "pt": "Modo de controle de administrador simples (ACM)", "ru": "Простой режим управления администратора (ACM)", "xloc": [ - "default.handlebars->23->1011", - "default.handlebars->23->985" + "default.handlebars->23->1025", + "default.handlebars->23->999" ] }, { @@ -14840,9 +14904,9 @@ "pt": "Modo de Controle de Cliente Simples (CCM)", "ru": "Простой режим управления клиента (CCM)", "xloc": [ - "default.handlebars->23->1014", - "default.handlebars->23->1018", - "default.handlebars->23->983" + "default.handlebars->23->1028", + "default.handlebars->23->1032", + "default.handlebars->23->997" ] }, { @@ -14855,7 +14919,7 @@ "pt": "Sindhi", "ru": "Синдхи", "xloc": [ - "default.handlebars->23->841" + "default.handlebars->23->855" ] }, { @@ -14868,7 +14932,7 @@ "pt": "Cingalês", "ru": "Сингальский", "xloc": [ - "default.handlebars->23->842" + "default.handlebars->23->856" ] }, { @@ -14890,7 +14954,7 @@ "en": "Size: 100%", "nl": "Grootte: 150%", "xloc": [ - "default.handlebars->23->655" + "default.handlebars->23->669" ] }, { @@ -14899,7 +14963,7 @@ "en": "Size: 125%", "nl": "Grootte: 150%", "xloc": [ - "default.handlebars->23->656" + "default.handlebars->23->670" ] }, { @@ -14908,7 +14972,7 @@ "en": "Size: 150%", "nl": "Grootte: 150%", "xloc": [ - "default.handlebars->23->657" + "default.handlebars->23->671" ] }, { @@ -14917,7 +14981,7 @@ "en": "Size: 200%", "nl": "Grootte: 200%", "xloc": [ - "default.handlebars->23->658" + "default.handlebars->23->672" ] }, { @@ -14978,7 +15042,7 @@ "pt": "Eslovaco", "ru": "Словацкий", "xloc": [ - "default.handlebars->23->844" + "default.handlebars->23->858" ] }, { @@ -14991,7 +15055,7 @@ "pt": "Esloveno", "ru": "Словенский", "xloc": [ - "default.handlebars->23->845" + "default.handlebars->23->859" ] }, { @@ -15031,7 +15095,7 @@ "pt": "Foco pequeno", "ru": "Малая фокусировка", "xloc": [ - "default.handlebars->23->586" + "default.handlebars->23->600" ] }, { @@ -15043,7 +15107,7 @@ "pt": "Agente de desconexão suave", "ru": "Програмное отключение агента", "xloc": [ - "default.handlebars->23->680" + "default.handlebars->23->694" ] }, { @@ -15081,7 +15145,7 @@ "pt": "Somani", "ru": "Сомани", "xloc": [ - "default.handlebars->23->846" + "default.handlebars->23->860" ] }, { @@ -15093,7 +15157,7 @@ "pt": "Sorbian", "ru": "Сорбский", "xloc": [ - "default.handlebars->23->847" + "default.handlebars->23->861" ] }, { @@ -15195,7 +15259,7 @@ "pt": "Espanhol", "ru": "Испанский", "xloc": [ - "default.handlebars->23->848" + "default.handlebars->23->862" ] }, { @@ -15207,7 +15271,7 @@ "pt": "Espanhol (Argentina)", "ru": "Испанский (Аргентина)", "xloc": [ - "default.handlebars->23->849" + "default.handlebars->23->863" ] }, { @@ -15219,7 +15283,7 @@ "pt": "Espanhol (Bolívia)", "ru": "Испанский (Боливия)", "xloc": [ - "default.handlebars->23->850" + "default.handlebars->23->864" ] }, { @@ -15231,7 +15295,7 @@ "pt": "Espanhol (Chile)", "ru": "Испанский (Чили)", "xloc": [ - "default.handlebars->23->851" + "default.handlebars->23->865" ] }, { @@ -15243,7 +15307,7 @@ "pt": "Espanhol (Colômbia)", "ru": "Испанский (Колумбия)", "xloc": [ - "default.handlebars->23->852" + "default.handlebars->23->866" ] }, { @@ -15255,7 +15319,7 @@ "pt": "Espanhol (Costa Rica)", "ru": "Испанский (Коста-Рика)", "xloc": [ - "default.handlebars->23->853" + "default.handlebars->23->867" ] }, { @@ -15267,7 +15331,7 @@ "pt": "Espanhol (República Dominicana)", "ru": "Испанский (Доминиканская Республика)", "xloc": [ - "default.handlebars->23->854" + "default.handlebars->23->868" ] }, { @@ -15279,7 +15343,7 @@ "pt": "Espanhol (Equador)", "ru": "Испанский (Эквадор)", "xloc": [ - "default.handlebars->23->855" + "default.handlebars->23->869" ] }, { @@ -15291,7 +15355,7 @@ "pt": "Espanhol (El Salvador)", "ru": "Испанский (Сальвадор)", "xloc": [ - "default.handlebars->23->856" + "default.handlebars->23->870" ] }, { @@ -15303,7 +15367,7 @@ "pt": "Espanhol (Guatemala)", "ru": "Испанский (Гватемала)", "xloc": [ - "default.handlebars->23->857" + "default.handlebars->23->871" ] }, { @@ -15315,7 +15379,7 @@ "pt": "Espanhol (Honduras)", "ru": "Испанский (Гондурас)", "xloc": [ - "default.handlebars->23->858" + "default.handlebars->23->872" ] }, { @@ -15327,7 +15391,7 @@ "pt": "Espanhol (México)", "ru": "Испанский (Мексика)", "xloc": [ - "default.handlebars->23->859" + "default.handlebars->23->873" ] }, { @@ -15339,7 +15403,7 @@ "pt": "Espanhol (Nicarágua)", "ru": "Испанский (Никарагуа)", "xloc": [ - "default.handlebars->23->860" + "default.handlebars->23->874" ] }, { @@ -15351,7 +15415,7 @@ "pt": "Espanhol (Panamá)", "ru": "Испанский (Панама)", "xloc": [ - "default.handlebars->23->861" + "default.handlebars->23->875" ] }, { @@ -15363,7 +15427,7 @@ "pt": "Espanhol (Paraguai)", "ru": "Испанский (Парагвай)", "xloc": [ - "default.handlebars->23->862" + "default.handlebars->23->876" ] }, { @@ -15375,7 +15439,7 @@ "pt": "Espanhol (Peru)", "ru": "Испанский (Перу)", "xloc": [ - "default.handlebars->23->863" + "default.handlebars->23->877" ] }, { @@ -15387,7 +15451,7 @@ "pt": "Espanhol (Porto Rico)", "ru": "Испанский (Пуэрто-Рико)", "xloc": [ - "default.handlebars->23->864" + "default.handlebars->23->878" ] }, { @@ -15399,7 +15463,7 @@ "pt": "Espanhol (Espanha)", "ru": "Испанский (Испания)", "xloc": [ - "default.handlebars->23->865" + "default.handlebars->23->879" ] }, { @@ -15411,7 +15475,7 @@ "pt": "Espanhol (Uruguai)", "ru": "Испанский (Уругвай)", "xloc": [ - "default.handlebars->23->866" + "default.handlebars->23->880" ] }, { @@ -15423,7 +15487,7 @@ "pt": "Espanhol (Venezuela)", "ru": "Испанский (Венесуэла)", "xloc": [ - "default.handlebars->23->867" + "default.handlebars->23->881" ] }, { @@ -15449,7 +15513,7 @@ "pt": "Start", "ru": "Старт", "xloc": [ - "default.handlebars->23->603" + "default.handlebars->23->617" ] }, { @@ -15461,7 +15525,7 @@ "pt": "Estado", "ru": "Состояние", "xloc": [ - "default.handlebars->23->594", + "default.handlebars->23->608", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -15487,7 +15551,7 @@ "pt": "Status", "ru": "Статус", "xloc": [ - "default.handlebars->23->1332", + "default.handlebars->23->1346", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -15501,7 +15565,7 @@ "pt": "Pare", "ru": "Стоп", "xloc": [ - "default.handlebars->23->604" + "default.handlebars->23->618" ] }, { @@ -15514,7 +15578,7 @@ "ru": "Прервать процесс #{0} \\\"{1}\\\"?", "xloc": [ "default-mobile.handlebars->9->235", - "default.handlebars->23->609" + "default.handlebars->23->623" ] }, { @@ -15539,7 +15603,7 @@ "pt": "O limite de armazenamento excede", "ru": "Превышен лимит места для хранения", "xloc": [ - "default.handlebars->23->1134" + "default.handlebars->23->1148" ] }, { @@ -15551,7 +15615,7 @@ "pt": "Forte", "ru": "Надежный", "xloc": [ - "default.handlebars->23->938" + "default.handlebars->23->952" ] }, { @@ -15609,7 +15673,7 @@ "pt": "Sutu", "ru": "Суту", "xloc": [ - "default.handlebars->23->868" + "default.handlebars->23->882" ] }, { @@ -15621,7 +15685,7 @@ "pt": "Suaíli", "ru": "Суахили", "xloc": [ - "default.handlebars->23->869" + "default.handlebars->23->883" ] }, { @@ -15633,7 +15697,7 @@ "pt": "Sueco", "ru": "Шведский", "xloc": [ - "default.handlebars->23->870" + "default.handlebars->23->884" ] }, { @@ -15645,7 +15709,7 @@ "pt": "Sueco (Finlândia)", "ru": "Шведский (Финляндия)", "xloc": [ - "default.handlebars->23->871" + "default.handlebars->23->885" ] }, { @@ -15657,7 +15721,7 @@ "pt": "Sueco (Suécia)", "ru": "Шведский (Швеция)", "xloc": [ - "default.handlebars->23->872" + "default.handlebars->23->886" ] }, { @@ -15666,7 +15730,7 @@ "en": "Sync server device name to hostname", "nl": "Synchroniseer serverapparaatnaam met hostnaam", "xloc": [ - "default.handlebars->23->1056" + "default.handlebars->23->1070" ] }, { @@ -15757,7 +15821,7 @@ "pt": "Tag1, Tag2, Tag3", "ru": "Тег1, Тег2, Тег3", "xloc": [ - "default.handlebars->23->577" + "default.handlebars->23->591" ] }, { @@ -15772,7 +15836,7 @@ "default-mobile.handlebars->9->197", "default-mobile.handlebars->9->198", "default-mobile.handlebars->9->225", - "default.handlebars->23->576", + "default.handlebars->23->590", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -15785,7 +15849,7 @@ "pt": "Tâmil", "ru": "Тамильский", "xloc": [ - "default.handlebars->23->873" + "default.handlebars->23->887" ] }, { @@ -15797,7 +15861,7 @@ "pt": "Tatar", "ru": "Татарский", "xloc": [ - "default.handlebars->23->874" + "default.handlebars->23->888" ] }, { @@ -15809,7 +15873,7 @@ "pt": "Teluga", "ru": "Телугу", "xloc": [ - "default.handlebars->23->875" + "default.handlebars->23->889" ] }, { @@ -15822,7 +15886,7 @@ "pt": "Terminal", "ru": "Терминал", "xloc": [ - "default.handlebars->23->1048", + "default.handlebars->23->1062", "default.handlebars->23->410", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal" @@ -15850,7 +15914,7 @@ "pt": "Notificação - terminal", "ru": "Терминал уведомление", "xloc": [ - "default.handlebars->23->970" + "default.handlebars->23->984" ] }, { @@ -15862,7 +15926,7 @@ "pt": "Prompt do terminal", "ru": "Запрос терминала", "xloc": [ - "default.handlebars->23->969" + "default.handlebars->23->983" ] }, { @@ -15904,7 +15968,7 @@ "pt": "Thai", "ru": "Тайский", "xloc": [ - "default.handlebars->23->876" + "default.handlebars->23->890" ] }, { @@ -15954,7 +16018,7 @@ "pt": "Atualmente não há notificações", "ru": "На данный момент уведомлений нет", "xloc": [ - "default.handlebars->23->1366" + "default.handlebars->23->1380" ] }, { @@ -15992,7 +16056,7 @@ "ru": "Эта учетная запись не имеет прав для создания новой группы устройств.", "xloc": [ "default-mobile.handlebars->9->51", - "default.handlebars->23->924" + "default.handlebars->23->938" ] }, { @@ -16004,7 +16068,7 @@ "pt": "Esta não é uma política segura, pois os agentes estarão executando a ativação.", "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.", "xloc": [ - "default.handlebars->23->1036" + "default.handlebars->23->1050" ] }, { @@ -16029,7 +16093,7 @@ "pt": "Esta política não afetará os dispositivos com Intel® AMT no modo ACM.", "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.", "xloc": [ - "default.handlebars->23->1035" + "default.handlebars->23->1049" ] }, { @@ -16099,7 +16163,7 @@ "pt": "Tigre", "ru": "Тигровый", "xloc": [ - "default.handlebars->23->877" + "default.handlebars->23->891" ] }, { @@ -16196,7 +16260,7 @@ "pt": "Para excluir esta conta, digite a senha da conta nas duas caixas abaixo e pressione ok.", "ru": "Чтобы удалить эту учетную запись, введите пароль учетной записи в оба поля и нажмите ОК.", "xloc": [ - "default.handlebars->23->911" + "default.handlebars->23->925" ] }, { @@ -16481,7 +16545,7 @@ "pt": "Tsonga", "ru": "Тсонга", "xloc": [ - "default.handlebars->23->878" + "default.handlebars->23->892" ] }, { @@ -16493,7 +16557,7 @@ "pt": "Tswana", "ru": "Тсвана", "xloc": [ - "default.handlebars->23->879" + "default.handlebars->23->893" ] }, { @@ -16505,7 +16569,7 @@ "pt": "turco", "ru": "Турецкий", "xloc": [ - "default.handlebars->23->880" + "default.handlebars->23->894" ] }, { @@ -16517,7 +16581,7 @@ "pt": "Turcomano", "ru": "Туркменский", "xloc": [ - "default.handlebars->23->881" + "default.handlebars->23->895" ] }, { @@ -16543,11 +16607,11 @@ "xloc": [ "default-mobile.handlebars->9->279", "default-mobile.handlebars->9->57", - "default.handlebars->23->1012", - "default.handlebars->23->1015", - "default.handlebars->23->601", - "default.handlebars->23->931", - "default.handlebars->23->960", + "default.handlebars->23->1026", + "default.handlebars->23->1029", + "default.handlebars->23->615", + "default.handlebars->23->945", + "default.handlebars->23->974", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, @@ -16560,7 +16624,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->690" + "default.handlebars->23->704" ] }, { @@ -16572,7 +16636,7 @@ "pt": "Digite o nome da chave a ser adicionada.", "ru": "Введите имя ключа для добавления.", "xloc": [ - "default.handlebars->23->687" + "default.handlebars->23->701" ] }, { @@ -16585,7 +16649,7 @@ "pt": "Terminal UTF8", "ru": "Терминал UTF8", "xloc": [ - "default.handlebars->23->613" + "default.handlebars->23->627" ] }, { @@ -16597,7 +16661,7 @@ "pt": "ucraniano", "ru": "Украинский", "xloc": [ - "default.handlebars->23->882" + "default.handlebars->23->896" ] }, { @@ -16610,7 +16674,7 @@ "ru": "Невозможно получить доступ к устройству, пока адрес эл. почты не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес эл. почты.", "xloc": [ "default.handlebars->23->426", - "default.handlebars->23->926" + "default.handlebars->23->940" ] }, { @@ -16649,7 +16713,7 @@ "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите на вкладку \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "xloc": [ "default.handlebars->23->428", - "default.handlebars->23->928" + "default.handlebars->23->942" ] }, { @@ -16723,7 +16787,7 @@ "ru": "Удаление", "xloc": [ "default-mobile.handlebars->9->326", - "default.handlebars->23->1105" + "default.handlebars->23->1119" ] }, { @@ -16735,7 +16799,7 @@ "ru": "Удаление агента", "xloc": [ "default-mobile.handlebars->9->308", - "default.handlebars->23->1082", + "default.handlebars->23->1096", "default.handlebars->23->384", "default.handlebars->23->529" ] @@ -16768,7 +16832,7 @@ "default.handlebars->23->108", "default.handlebars->23->109", "default.handlebars->23->13", - "default.handlebars->23->1357", + "default.handlebars->23->1371", "default.handlebars->23->380", "default.handlebars->23->41", "default.handlebars->23->42" @@ -16785,7 +16849,7 @@ "ru": "Неизвестно #{0}", "xloc": [ "default-mobile.handlebars->9->273", - "default.handlebars->23->954" + "default.handlebars->23->968" ] }, { @@ -16794,7 +16858,7 @@ "en": "Unknown Action", "nl": "Onbekende actie", "xloc": [ - "default.handlebars->23->1378" + "default.handlebars->23->1392" ] }, { @@ -16803,9 +16867,9 @@ "en": "Unknown Device Group", "nl": "Onbekende apparaatgroep", "xloc": [ - "default.handlebars->23->1271", - "default.handlebars->23->1345", - "default.handlebars->23->1382" + "default.handlebars->23->1285", + "default.handlebars->23->1359", + "default.handlebars->23->1396" ] }, { @@ -16814,7 +16878,7 @@ "en": "Unknown Group", "nl": "Onbekende groep", "xloc": [ - "default.handlebars->23->1374" + "default.handlebars->23->1388" ] }, { @@ -16836,7 +16900,7 @@ "en": "Unknown User Group", "nl": "Onbekende gebruikersgroep", "xloc": [ - "default.handlebars->23->1353" + "default.handlebars->23->1367" ] }, { @@ -16893,7 +16957,7 @@ "nl": "Bijgewerkt", "ru": "Актуально", "xloc": [ - "default.handlebars->23->1435" + "default.handlebars->23->1449" ] }, { @@ -16924,11 +16988,11 @@ "default-mobile.handlebars->9->253", "default-mobile.handlebars->9->271", "default-mobile.handlebars->9->85", - "default.handlebars->23->1157", - "default.handlebars->23->1165", - "default.handlebars->23->636", - "default.handlebars->23->659", - "default.handlebars->23->662", + "default.handlebars->23->1171", + "default.handlebars->23->1179", + "default.handlebars->23->650", + "default.handlebars->23->673", + "default.handlebars->23->676", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -16941,7 +17005,7 @@ "pt": "Carregar núcleo do agente de malha", "ru": "Загрузить ядро Mesh Агента", "xloc": [ - "default.handlebars->23->682" + "default.handlebars->23->696" ] }, { @@ -16953,7 +17017,7 @@ "pt": "Carregar um arquivo principal", "ru": "Загрузить файл ядра", "xloc": [ - "default.handlebars->23->679" + "default.handlebars->23->693" ] }, { @@ -16965,7 +17029,7 @@ "pt": "Carregar núcleo do servidor padrão", "ru": "Загрузить ядро сервера по умолчанию", "xloc": [ - "default.handlebars->23->676" + "default.handlebars->23->690" ] }, { @@ -16977,7 +17041,7 @@ "pt": "Carregar núcleo de recuperação", "ru": "Загрузить ядро восстановления", "xloc": [ - "default.handlebars->23->678" + "default.handlebars->23->692" ] }, { @@ -16985,8 +17049,8 @@ "en": "Upload will overwrite 1 file. Continue?", "nl": "Upload overschrijft {0} bestand. Doorgaan?", "xloc": [ - "default.handlebars->23->1166", - "default.handlebars->23->660" + "default.handlebars->23->1180", + "default.handlebars->23->674" ] }, { @@ -16994,8 +17058,8 @@ "en": "Upload will overwrite {0} files. Continue?", "nl": "Upload overschrijft {0} bestanden. Doorgaan?", "xloc": [ - "default.handlebars->23->1167", - "default.handlebars->23->661" + "default.handlebars->23->1181", + "default.handlebars->23->675" ] }, { @@ -17016,7 +17080,7 @@ "pt": "Sorábio superior", "ru": "Верхний Сорбский", "xloc": [ - "default.handlebars->23->883" + "default.handlebars->23->897" ] }, { @@ -17028,7 +17092,7 @@ "pt": "urdu", "ru": "Урду", "xloc": [ - "default.handlebars->23->884" + "default.handlebars->23->898" ] }, { @@ -17066,8 +17130,8 @@ "pt": "Usava", "ru": "Использовано", "xloc": [ - "default.handlebars->23->1368", - "default.handlebars->23->1370" + "default.handlebars->23->1382", + "default.handlebars->23->1384" ] }, { @@ -17081,9 +17145,9 @@ "ru": "Пользователь", "xloc": [ "default-mobile.handlebars->9->328", - "default.handlebars->23->1009", - "default.handlebars->23->1193", - "default.handlebars->23->1266", + "default.handlebars->23->1023", + "default.handlebars->23->1207", + "default.handlebars->23->1280", "default.handlebars->23->200" ] }, @@ -17096,7 +17160,7 @@ "pt": "Usuário + Arquivos", "ru": "Пользователь + Файлы", "xloc": [ - "default.handlebars->23->1194" + "default.handlebars->23->1208" ] }, { @@ -17108,10 +17172,10 @@ "pt": "Importação de conta de usuário", "ru": "Импорт учетной записи пользователя", "xloc": [ - "default.handlebars->23->1201", - "default.handlebars->23->1202", - "default.handlebars->23->1204", - "default.handlebars->23->1206" + "default.handlebars->23->1215", + "default.handlebars->23->1216", + "default.handlebars->23->1218", + "default.handlebars->23->1220" ] }, { @@ -17120,7 +17184,7 @@ "en": "User Accounts", "nl": "Gebruikersaccounts", "xloc": [ - "default.handlebars->23->1387" + "default.handlebars->23->1401" ] }, { @@ -17133,7 +17197,7 @@ "ru": "Полномочия пользователя", "xloc": [ "default-mobile.handlebars->9->281", - "default.handlebars->23->1004" + "default.handlebars->23->1018" ] }, { @@ -17146,7 +17210,7 @@ "pt": "Consentimento do Usuário", "ru": "Согласие пользователя", "xloc": [ - "default.handlebars->23->976" + "default.handlebars->23->990" ] }, { @@ -17154,9 +17218,9 @@ "en": "User Group", "nl": "Gebruikers Groep", "xloc": [ - "default.handlebars->23->1062", - "default.handlebars->23->1249", - "default.handlebars->23->1360" + "default.handlebars->23->1076", + "default.handlebars->23->1263", + "default.handlebars->23->1374" ] }, { @@ -17172,7 +17236,7 @@ "en": "User Group Memberships", "nl": "Gebruikersgroeps lidmaatschap", "xloc": [ - "default.handlebars->23->1352" + "default.handlebars->23->1366" ] }, { @@ -17184,8 +17248,8 @@ "pt": "Identificador do usuário", "ru": "Идентификатор пользователя", "xloc": [ - "default.handlebars->23->1108", - "default.handlebars->23->1301" + "default.handlebars->23->1122", + "default.handlebars->23->1315" ] }, { @@ -17197,7 +17261,7 @@ "pt": "Exportação da lista de usuários", "ru": "Экспортировать список пользователей", "xloc": [ - "default.handlebars->23->1213" + "default.handlebars->23->1227" ] }, { @@ -17210,7 +17274,7 @@ "pt": "Nome de Usuário", "ru": "Имя пользователя", "xloc": [ - "default.handlebars->23->1107" + "default.handlebars->23->1121" ] }, { @@ -17223,8 +17287,8 @@ "pt": "Nomes de usuário", "ru": "Имена пользователей", "xloc": [ - "default.handlebars->23->1060", - "default.handlebars->23->1290" + "default.handlebars->23->1074", + "default.handlebars->23->1304" ] }, { @@ -17247,7 +17311,7 @@ "pt": "Sessões de Usuário", "ru": "Сессии пользователя", "xloc": [ - "default.handlebars->23->1404" + "default.handlebars->23->1418" ] }, { @@ -17272,8 +17336,8 @@ "pt": "Valor do navegador do usuário", "ru": "Веб броузер пользователя", "xloc": [ - "default.handlebars->23->893", - "default.handlebars->23->895" + "default.handlebars->23->907", + "default.handlebars->23->909" ] }, { @@ -17361,9 +17425,9 @@ "pt": "Usuários", "ru": "Пользователи", "xloc": [ - "default.handlebars->23->1248", - "default.handlebars->23->1259", - "default.handlebars->23->1403", + "default.handlebars->23->1262", + "default.handlebars->23->1273", + "default.handlebars->23->1417", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -17373,7 +17437,7 @@ "en": "Users Sessions", "nl": "gebruikers Sessies", "xloc": [ - "default.handlebars->23->1391" + "default.handlebars->23->1405" ] }, { @@ -17385,7 +17449,7 @@ "pt": "VT100+ (F10 = ESC+[OY)", "ru": "VT100+ (F10 = ESC+[OY)", "xloc": [ - "default.handlebars->23->618" + "default.handlebars->23->632" ] }, { @@ -17397,7 +17461,7 @@ "pt": "Venda", "ru": "Венда", "xloc": [ - "default.handlebars->23->885" + "default.handlebars->23->899" ] }, { @@ -17481,7 +17545,7 @@ "pt": "vietnamita", "ru": "Вьетнамский", "xloc": [ - "default.handlebars->23->886" + "default.handlebars->23->900" ] }, { @@ -17518,7 +17582,7 @@ "pt": "Ver notas sobre este grupo de dispositivos", "ru": "Посмотреть заметки об этой группе устройств", "xloc": [ - "default.handlebars->23->989" + "default.handlebars->23->1003" ] }, { @@ -17530,7 +17594,7 @@ "pt": "Ver notas sobre este usuário", "ru": "Посмотреть заметки об этом пользователе", "xloc": [ - "default.handlebars->23->1324" + "default.handlebars->23->1338" ] }, { @@ -17542,7 +17606,7 @@ "pt": "Volapuk", "ru": "Волапукский", "xloc": [ - "default.handlebars->23->887" + "default.handlebars->23->901" ] }, { @@ -17580,8 +17644,8 @@ "xloc": [ "default-mobile.handlebars->9->304", "default-mobile.handlebars->9->317", - "default.handlebars->23->1078", - "default.handlebars->23->1096" + "default.handlebars->23->1092", + "default.handlebars->23->1110" ] }, { @@ -17618,7 +17682,7 @@ "pt": "valão", "ru": "Валлонский", "xloc": [ - "default.handlebars->23->888" + "default.handlebars->23->902" ] }, { @@ -17631,7 +17695,7 @@ "pt": "Fraco", "ru": "Слабый", "xloc": [ - "default.handlebars->23->940" + "default.handlebars->23->954" ] }, { @@ -17660,8 +17724,8 @@ "pt": "Servidor web", "ru": "Веб Сервер", "xloc": [ - "default.handlebars->23->1422", - "default.handlebars->23->1423" + "default.handlebars->23->1436", + "default.handlebars->23->1437" ] }, { @@ -17674,7 +17738,7 @@ "pt": "Solicitações de servidor Web", "ru": "Заявки Веб Сервера", "xloc": [ - "default.handlebars->23->1424" + "default.handlebars->23->1438" ] }, { @@ -17686,7 +17750,7 @@ "nl": "Web Socket Relay", "pt": "Encaminhador de soquete da Web", "xloc": [ - "default.handlebars->23->1425" + "default.handlebars->23->1439" ] }, { @@ -17725,7 +17789,7 @@ "pt": "galês", "ru": "Уэльский", "xloc": [ - "default.handlebars->23->889" + "default.handlebars->23->903" ] }, { @@ -17738,7 +17802,7 @@ "pt": "Será alterado no próximo login.", "ru": "Будет изменено при следующем входе в систему.", "xloc": [ - "default.handlebars->23->1309" + "default.handlebars->23->1323" ] }, { @@ -18056,7 +18120,7 @@ "en": "Wrap: OFF", "nl": "Wrap: UIT", "xloc": [ - "default.handlebars->23->654" + "default.handlebars->23->668" ] }, { @@ -18064,7 +18128,7 @@ "en": "Wrap: ON", "nl": "Wrap: AAN", "xloc": [ - "default.handlebars->23->653" + "default.handlebars->23->667" ] }, { @@ -18117,7 +18181,7 @@ "pt": "Xhosa", "ru": "Кос", "xloc": [ - "default.handlebars->23->890" + "default.handlebars->23->904" ] }, { @@ -18129,7 +18193,7 @@ "pt": "Iídiche", "ru": "Идиш", "xloc": [ - "default.handlebars->23->891" + "default.handlebars->23->905" ] }, { @@ -18178,7 +18242,7 @@ "pt": "YubiKey™ OTP", "ru": "YubiKey™ OTP", "xloc": [ - "default.handlebars->23->693" + "default.handlebars->23->707" ] }, { @@ -18228,7 +18292,7 @@ "pt": "Zulu", "ru": "Зулусский", "xloc": [ - "default.handlebars->23->892" + "default.handlebars->23->906" ] }, { @@ -18252,7 +18316,7 @@ "nl": "\\\\'", "ru": "\\\\'", "xloc": [ - "default.handlebars->23->1433" + "default.handlebars->23->1447" ] }, { @@ -18326,7 +18390,7 @@ "pt": "console.txt", "ru": "console.txt", "xloc": [ - "default.handlebars->23->673" + "default.handlebars->23->687" ] }, { @@ -18339,7 +18403,7 @@ "ru": "копировать", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->23->1162" + "default.handlebars->23->1176" ] }, { @@ -18350,8 +18414,8 @@ "pt": "eventslist.csv", "ru": "eventslist.csv", "xloc": [ - "default.handlebars->23->1171", - "default.handlebars->23->1176" + "default.handlebars->23->1185", + "default.handlebars->23->1190" ] }, { @@ -18362,8 +18426,8 @@ "pt": "eventslist.json", "ru": "eventslist.csv", "xloc": [ - "default.handlebars->23->1173", - "default.handlebars->23->1177" + "default.handlebars->23->1187", + "default.handlebars->23->1191" ] }, { @@ -18387,7 +18451,7 @@ "pt": "livre", "ru": "свободно", "xloc": [ - "default.handlebars->23->1399" + "default.handlebars->23->1413" ] }, { @@ -18501,7 +18565,7 @@ "pt": "id, nome, email, criação, último login, grupos, fatores de autenticação", "ru": "идентификатор, имя, адрес эл. почты, создание, последний вход, группы, факторы ауторизации", "xloc": [ - "default.handlebars->23->1214" + "default.handlebars->23->1228" ] }, { @@ -18533,7 +18597,7 @@ "ru": "переместить", "xloc": [ "default-mobile.handlebars->9->90", - "default.handlebars->23->1163" + "default.handlebars->23->1177" ] }, { @@ -18553,7 +18617,7 @@ "pt": "servererrors.txt", "ru": "servererrors.txt", "xloc": [ - "default.handlebars->23->953" + "default.handlebars->23->967" ] }, { @@ -18564,7 +18628,7 @@ "pt": "servertrace.csv", "ru": "servertrace.csv", "xloc": [ - "default.handlebars->23->1432" + "default.handlebars->23->1446" ] }, { @@ -18591,7 +18655,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->1412" + "default.handlebars->23->1426" ] }, { @@ -18602,7 +18666,7 @@ "pt": "hora, fonte, mensagem", "ru": "time, source, message", "xloc": [ - "default.handlebars->23->1431" + "default.handlebars->23->1445" ] }, { @@ -18613,7 +18677,7 @@ "pt": "hora, tipo, ação, usuário, mensagem", "ru": "time, type, action, user, message", "xloc": [ - "default.handlebars->23->1175" + "default.handlebars->23->1189" ] }, { @@ -18626,7 +18690,7 @@ "pt": "total", "ru": "всего", "xloc": [ - "default.handlebars->23->1400" + "default.handlebars->23->1414" ] }, { @@ -18652,8 +18716,8 @@ "pt": "Lista de usuários.csv", "ru": "userlist.csv", "xloc": [ - "default.handlebars->23->1210", - "default.handlebars->23->1215" + "default.handlebars->23->1224", + "default.handlebars->23->1229" ] }, { @@ -18664,8 +18728,8 @@ "pt": "Lista de usuários.json", "ru": "userlist.json", "xloc": [ - "default.handlebars->23->1212", - "default.handlebars->23->1216" + "default.handlebars->23->1226", + "default.handlebars->23->1230" ] }, { @@ -18677,7 +18741,7 @@ "pt": "{0} Gb", "ru": "{0} Гб", "xloc": [ - "default.handlebars->23->1143" + "default.handlebars->23->1157" ] }, { @@ -18689,7 +18753,7 @@ "pt": "{0} Kb", "ru": "{0} Kб", "xloc": [ - "default.handlebars->23->1141" + "default.handlebars->23->1155" ] }, { @@ -18701,7 +18765,7 @@ "pt": "{0} Mb", "ru": "{0} Mб", "xloc": [ - "default.handlebars->23->1142" + "default.handlebars->23->1156" ] }, { @@ -18726,7 +18790,7 @@ "pt": "{0} sessões ativas", "ru": "{0} активных сессий", "xloc": [ - "default.handlebars->23->1330" + "default.handlebars->23->1344" ] }, { @@ -18738,7 +18802,7 @@ "pt": "{0} b", "ru": "{0} б", "xloc": [ - "default.handlebars->23->1140" + "default.handlebars->23->1154" ] }, { @@ -18752,7 +18816,7 @@ "ru": "{0} байт", "xloc": [ "default-mobile.handlebars->9->78", - "default.handlebars->23->1150" + "default.handlebars->23->1164" ] }, { @@ -18765,7 +18829,7 @@ "pt": "{0} bytes restantes", "ru": "{0} байт осталось", "xloc": [ - "default.handlebars->23->1135" + "default.handlebars->23->1149" ] }, { @@ -18777,7 +18841,7 @@ "pt": "{0} gigabytes restantes", "ru": "Остаются {0} гигабайт", "xloc": [ - "default.handlebars->23->1138" + "default.handlebars->23->1152" ] }, { @@ -18789,7 +18853,7 @@ "pt": "{0} grupos", "ru": "{0} групп", "xloc": [ - "default.handlebars->23->1314" + "default.handlebars->23->1328" ] }, { @@ -18818,7 +18882,7 @@ "pt": "{0} kilobytes restantes", "ru": "Остаются {0} килобайт", "xloc": [ - "default.handlebars->23->1136" + "default.handlebars->23->1150" ] }, { @@ -18842,7 +18906,7 @@ "pt": "{0} megabytes restantes", "ru": "Остается {0} мегабайт", "xloc": [ - "default.handlebars->23->1137" + "default.handlebars->23->1151" ] }, { @@ -18871,7 +18935,7 @@ "pt": "{0} mais usuários não exibidos, use a caixa de pesquisa para procurar usuários ...", "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей", "xloc": [ - "default.handlebars->23->1185" + "default.handlebars->23->1199" ] }, { @@ -18951,7 +19015,7 @@ "pt": "{0} sessões", "ru": "{0} сессий", "xloc": [ - "default.handlebars->23->1189" + "default.handlebars->23->1203" ] }, { @@ -19035,7 +19099,7 @@ "pt": "{0} k em 1 arquivo. {1} k no máximo", "ru": "{0}k в 1 файле. {1}k максимум", "xloc": [ - "default.handlebars->23->1145" + "default.handlebars->23->1159" ] }, { @@ -19047,7 +19111,7 @@ "pt": "{0} k em {1} arquivos. {2} k no máximo", "ru": "{0}k в {1} файлах. {2}k максимум", "xloc": [ - "default.handlebars->23->1144" + "default.handlebars->23->1158" ] }, { diff --git a/views/agentinvite.handlebars b/views/agentinvite.handlebars index 21a5bb46..ae1c5bf9 100644 --- a/views/agentinvite.handlebars +++ b/views/agentinvite.handlebars @@ -258,8 +258,8 @@ if (serverHttps == 1) { var portStr = (serverPort == 443) ? '' : (":" + serverPort); if (serverNoProxy == 0) { - linuxInstall = '(wget https://' + servername + portStr + domainUrl + 'meshagents?script=1 --no-check-certificate -O ./meshinstall.sh || wget https://" + servername + portStr + domainUrl + "meshagents?script=1 --no-proxy --no-check-certificate -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid + '\'\r\n'; - linuxUnInstall = '(wget https://' + servername + portStr + domainUrl + 'meshagents?script=1 --no-check-certificate -O ./meshinstall.sh || wget https://" + servername + portStr + domainUrl + "meshagents?script=1 --no-proxy --no-check-certificate -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh uninstall\r\n'; + linuxInstall = '(wget https://' + servername + portStr + domainUrl + 'meshagents?script=1 --no-check-certificate -O ./meshinstall.sh || wget https://' + servername + portStr + domainUrl + 'meshagents?script=1 --no-proxy --no-check-certificate -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid + '\'\r\n'; + linuxUnInstall = '(wget https://' + servername + portStr + domainUrl + 'meshagents?script=1 --no-check-certificate -O ./meshinstall.sh || wget https://' + servername + portStr + domainUrl + 'meshagents?script=1 --no-proxy --no-check-certificate -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh uninstall\r\n'; } else { // Server asked that agent be installed to preferably not use a HTTP proxy. linuxInstall = 'wget https://' + servername + portStr + domainUrl + 'meshagents?script=1 --no-proxy --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid + '\'\r\n'; @@ -268,8 +268,8 @@ } else { var portStr = (serverPort == 80) ? '' : (':' + serverPort); if (serverNoProxy == 0) { - linuxInstall = '(wget http://' + servername + portStr + domainUrl + 'meshagents?script=1 -O ./meshinstall.sh || wget http://" + servername + portStr + domainUrl + "meshagents?script=1 --no-proxy -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh http://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid + '\'\r\n'; - linuxUnInstall = '(wget http://' + servername + portStr + domainUrl + 'meshagents?script=1 -O ./meshinstall.sh || wget http://" + servername + portStr + domainUrl + "meshagents?script=1 --no-proxy -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh uninstall\r\n'; + linuxInstall = '(wget http://' + servername + portStr + domainUrl + 'meshagents?script=1 -O ./meshinstall.sh || wget http://' + servername + portStr + domainUrl + 'meshagents?script=1 --no-proxy -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh http://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid + '\'\r\n'; + linuxUnInstall = '(wget http://' + servername + portStr + domainUrl + 'meshagents?script=1 -O ./meshinstall.sh || wget http://' + servername + portStr + domainUrl + 'meshagents?script=1 --no-proxy -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh uninstall\r\n'; } else { // Server asked that agent be installed to preferably not use a HTTP proxy. linuxInstall = 'wget http://' + servername + portStr + domainUrl + 'meshagents?script=1 --no-proxy -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh http://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid + '\'\r\n'; diff --git a/views/default.handlebars b/views/default.handlebars index b2819fd9..654d7962 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -5273,12 +5273,12 @@ y += ''; var x = ''; - if (mode == 0) { x += '
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.

'; } - if (mode == 1) { x += '
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.

'; } - x += addHtmlValue('Operating System', y); - x += addHtmlValue('MeshCmd', ''); - if (mode == 0) { x += addHtmlValue('Action File', 'MeshAction (.txt)'); } - if (mode == 1) { x += addHtmlValue('Action File', 'MeshAction (.txt)'); } + if (mode == 0) { x += '
' + "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." + '

'; } + if (mode == 1) { x += '
' + "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." + '

'; } + x += addHtmlValue("Operating System", y); + x += addHtmlValue("MeshCmd", ''); + if (mode == 0) { x += addHtmlValue("Action File", '' + "MeshAction (.txt)" + ''); } + if (mode == 1) { x += addHtmlValue("Action File", '' + "MeshAction (.txt)" + ''); } x += '
'; setDialogMode(2, [ "Download MeshCmd", "Network Router" ][mode], 9, null, x, 'fileDownload'); meshCmdOsClick(); @@ -5287,12 +5287,12 @@ function meshCmdOsClick() { var os = Q('aginsSelect').value, osn = '', osurl = ''; //Q('meshcmddownloadid').href = 'meshagents?meshcmd=' + os; - if (os == 3) { osn = 'MeshCmd (Win32 executable)'; } - if (os == 4) { osn = 'MeshCmd (Win64 executable)'; } - if (os == 5) { osn = 'MeshCmd (Linux x86, 32bit)'; } - if (os == 6) { osn = 'MeshCmd (Linux x86, 64bit)'; } - if (os == 16) { osn = 'MeshCmd (MacOS, 64bit)'; } - if (os == 25) { osn = 'MeshCmd (Linux ARM, 32bit)'; } + if (os == 3) { osn = "MeshCmd (Win32 executable)"; } + if (os == 4) { osn = "MeshCmd (Win64 executable)"; } + if (os == 5) { osn = "MeshCmd (Linux x86, 32bit)"; } + if (os == 6) { osn = "MeshCmd (Linux x86, 64bit)"; } + if (os == 16) { osn = "MeshCmd (MacOS, 64bit)"; } + if (os == 25) { osn = "MeshCmd (Linux ARM, 32bit)"; } QH('meshcmddownloadid', osn); Q('meshcmddownloadid').setAttribute('href', 'meshagents?meshcmd=' + os); }