Fixed meshcore.js on Linux with no X, translation fixes.

Ylian Saint-Hilaire committed Jan 18, 2020 at 12:48 UTC f5444863aa4f509fb97013e8b0407bdf79556c09
6 files changed +1028 -903
agents/meshcore.js
+7 -7
@@ -1191,14 +1191,14 @@ function createMeshCore(agent) {
1191 var bash = fs.existsSync('/bin/bash') ? '/bin/bash' : false;
1192 var sh = fs.existsSync('/bin/sh') ? '/bin/sh' : false;
1193 var script = false;
1194 - if (require('linux-gnome-helpers').scriptVersion)
1195 - {
1196 - if (require('linux-gnome-helpers').scriptVersion.major > 2 ||
1197 - (require('linux-gnome-helpers').scriptVersion.major == 2 && require('linux-gnome-helpers').scriptVersion.minor >= 25))
1198 - {
1199 - script = '/usr/bin/script';
1194 + try {
1195 + if (require('linux-gnome-helpers').scriptVersion) {
1196 + if (require('linux-gnome-helpers').scriptVersion.major > 2 ||
1197 + (require('linux-gnome-helpers').scriptVersion.major == 2 && require('linux-gnome-helpers').scriptVersion.minor >= 25)) {
1198 + script = '/usr/bin/script';
1199 + }
1200 }
1201 - }
1201 + } catch (ex) { }
1202
1203 var python = fs.existsSync('/usr/bin/python') ? '/usr/bin/python' : false;
1204 var shell = bash || sh;
package.json
+1 -1
@@ -1,6 +1,6 @@
1 {
2 "name": "meshcentral",
3 - "version": "0.4.7-j",
3 + "version": "0.4.7-k",
4 "keywords": [
5 "Remote Management",
6 "Intel AMT",
public/scripts/agent-redir-ws-0.1.1.js
+61
@@ -220,11 +220,71 @@ var CreateAgentRedirect = function (meshserver, module, serverPublicNamePort, au
220 return obj.m.ProcessData(data);
221 }
222
223 + // TODO: Optimize this
224 + function toUTF8Array(str) {
225 + var utf8 = [];
226 + for (var i = 0; i < str.length; i++) {
227 + var charcode = str.charCodeAt(i);
228 + if (charcode < 0x80) utf8.push(charcode);
229 + else if (charcode < 0x800) {
230 + utf8.push(0xc0 | (charcode >> 6),
231 + 0x80 | (charcode & 0x3f));
232 + }
233 + else if (charcode < 0xd800 || charcode >= 0xe000) {
234 + utf8.push(0xe0 | (charcode >> 12),
235 + 0x80 | ((charcode >> 6) & 0x3f),
236 + 0x80 | (charcode & 0x3f));
237 + }
238 + // surrogate pair
239 + else {
240 + i++;
241 + charcode = ((charcode & 0x3ff) << 10) | (str.charCodeAt(i) & 0x3ff)
242 + utf8.push(0xf0 | (charcode >> 18),
243 + 0x80 | ((charcode >> 12) & 0x3f),
244 + 0x80 | ((charcode >> 6) & 0x3f),
245 + 0x80 | (charcode & 0x3f));
246 + }
247 + }
248 +
249 + var ret = new Uint8Array(utf8.length);
250 + for (i = 0; i < utf8.length; ++i) {
251 + ret[i] = utf8[i];
252 + }
253 + return ret;
254 + }
255 +
256 obj.sendText = function (x) {
257 if (typeof x != 'string') { x = JSON.stringify(x); } // Turn into a string if needed
258 obj.send(encode_utf8(x)); // Encode UTF8 correctly
259 }
260
261 + // TODO: Optimize this
262 + obj.send = function (x) {
263 + //obj.debug('Agent Redir Send(' + obj.webRtcActive + ', ' + x.length + '): ' + rstr2hex(x));
264 + //console.log('Agent Redir Send(' + obj.webRtcActive + ', ' + x.length + '): ' + ((typeof x == 'string')?x:rstr2hex(x)));
265 + if ((typeof args != 'undefined') && args.redirtrace) { console.log('RedirSend', typeof x, x.length, (x[0] == '{') ? x : rstr2hex(x).substring(0, 64)); }
266 + try {
267 + if (obj.socket != null && obj.socket.readyState == WebSocket.OPEN) {
268 + if (typeof x == 'string') {
269 + if (obj.debugmode == 1) {
270 + var b = new Uint8Array(x.length), c = [];
271 + for (var i = 0; i < x.length; ++i) { b[i] = x.charCodeAt(i); c.push(x.charCodeAt(i)); }
272 + if (obj.webRtcActive == true) { obj.webchannel.send(b.buffer); } else { obj.socket.send(toUTF8Array(x));/*obj.socket.send(b.buffer);*/ }
273 + //console.log('Send', c);
274 + } else {
275 + var b = new Uint8Array(x.length);
276 + for (var i = 0; i < x.length; ++i) { b[i] = x.charCodeAt(i); }
277 + if (obj.webRtcActive == true) { obj.webchannel.send(b.buffer); } else { obj.socket.send(toUTF8Array(x)); /*obj.socket.send(b.buffer); */ }
278 + }
279 + } else {
280 + //if (obj.debugmode == 1) { console.log('Send', x); }
281 + if (obj.webRtcActive == true) { obj.webchannel.send(x); } else { obj.socket.send(toUTF8Array(x)); /*obj.socket.send(x);*/ }
282 + }
283 + }
284 + } catch (ex) { }
285 + }
286 +
287 + /*
288 obj.send = function (x) {
289 //obj.debug('Agent Redir Send(' + obj.webRtcActive + ', ' + x.length + '): ' + rstr2hex(x));
290 //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
309 }
310 } catch (ex) { }
311 }
312 + */
313
314 obj.xxOnSocketClosed = function () {
315 //obj.debug('Agent Redir Socket Closed');
translate/translate.json
+943 -879
@@ -10,8 +10,8 @@
10 "pt": " + CIRA",
11 "ru": " + CIRA",
12 "xloc": [
13 - "default.handlebars->23->984",
14 - "default.handlebars->23->986"
13 + "default.handlebars->23->1000",
14 + "default.handlebars->23->998"
15 ]
16 },
17 {
@@ -149,7 +149,7 @@
149 "pt": " Dica de senha pode ser usada, mas não é recomendada.",
150 "ru": "Может быть использована подсказка пароля, но не рекоммендуется.",
151 "xloc": [
152 - "default.handlebars->23->916"
152 + "default.handlebars->23->930"
153 ]
154 },
155 {
@@ -162,8 +162,8 @@
162 "pt": " Os usuários precisam fazer login neste servidor uma vez antes de poderem ser adicionados a um grupo de dispositivos.",
163 "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хоть один раз.",
164 "xloc": [
165 - "default.handlebars->23->1059",
166 - "default.handlebars->23->1289"
165 + "default.handlebars->23->1073",
166 + "default.handlebars->23->1303"
167 ]
168 },
169 {
@@ -303,7 +303,7 @@
303 "pt": "* Deixe em branco para atribuir uma senha aleatória a cada dispositivo.",
304 "ru": "* Для установления случайного пароля каждому устройству - оставьте пустым.",
305 "xloc": [
306 - "default.handlebars->23->1034"
306 + "default.handlebars->23->1048"
307 ]
308 },
309 {
@@ -329,7 +329,7 @@
329 "ru": ", ",
330 "xloc": [
331 "default-mobile.handlebars->9->330",
332 - "default.handlebars->23->1110"
332 + "default.handlebars->23->1124"
333 ]
334 },
335 {
@@ -354,7 +354,7 @@
354 "pt": ", O MQTT está online",
355 "ru": ", MQTT онлайн",
356 "xloc": [
357 - "default.handlebars->23->669"
357 + "default.handlebars->23->683"
358 ]
359 },
360 {
@@ -366,7 +366,7 @@
366 "pt": ", Soft-KVM",
367 "ru": ", Soft-KVM",
368 "xloc": [
369 - "default.handlebars->23->580"
369 + "default.handlebars->23->594"
370 ]
371 },
372 {
@@ -380,9 +380,9 @@
380 "xloc": [
381 "default-mobile.handlebars->9->228",
382 "default-mobile.handlebars->9->238",
383 - "default.handlebars->23->581",
384 - "default.handlebars->23->612",
385 - "default.handlebars->23->624"
383 + "default.handlebars->23->595",
384 + "default.handlebars->23->626",
385 + "default.handlebars->23->638"
386 ]
387 },
388 {
@@ -466,9 +466,9 @@
466 "xloc": [
467 "default-mobile.handlebars->9->243",
468 "default-mobile.handlebars->9->67",
469 - "default.handlebars->23->1132",
470 - "default.handlebars->23->1365",
471 - "default.handlebars->23->626"
469 + "default.handlebars->23->1146",
470 + "default.handlebars->23->1379",
471 + "default.handlebars->23->640"
472 ]
473 },
474 {
@@ -506,7 +506,7 @@
506 "pt": "1 sessão ativa",
507 "ru": "1 активная сессия",
508 "xloc": [
509 - "default.handlebars->23->1329"
509 + "default.handlebars->23->1343"
510 ]
511 },
512 {
@@ -521,7 +521,7 @@
521 "xloc": [
522 "default-mobile.handlebars->9->334",
523 "default-mobile.handlebars->9->77",
524 - "default.handlebars->23->1149"
524 + "default.handlebars->23->1163"
525 ]
526 },
527 {
@@ -549,7 +549,7 @@
549 "pt": "1 grupo",
550 "ru": "1 группа",
551 "xloc": [
552 - "default.handlebars->23->1313"
552 + "default.handlebars->23->1327"
553 ]
554 },
555 {
@@ -599,7 +599,7 @@
599 "pt": "Mais 1 usuário não mostrado, use a caixa de pesquisa para procurar usuários...",
600 "ru": "Еще 1 пользователь не показан, используйте \\\"Поиск\\\" чтобы найти пользователей...",
601 "xloc": [
602 - "default.handlebars->23->1184"
602 + "default.handlebars->23->1198"
603 ]
604 },
605 {
@@ -633,7 +633,7 @@
633 "pt": "1 sessão",
634 "ru": "1 сессия",
635 "xloc": [
636 - "default.handlebars->23->1188"
636 + "default.handlebars->23->1202"
637 ]
638 },
639 {
@@ -826,7 +826,7 @@
826 "pt": "Autenticação de segundo fator ativada",
827 "ru": "двухфакторная аутентификация включена",
828 "xloc": [
829 - "default.handlebars->23->1322"
829 + "default.handlebars->23->1336"
830 ]
831 },
832 {
@@ -1293,7 +1293,7 @@
1293 "pt": "Acesso Negado",
1294 "ru": "Отказано в доступе",
1295 "xloc": [
1296 - "default.handlebars->23->670"
1296 + "default.handlebars->23->684"
1297 ]
1298 },
1299 {
@@ -1317,7 +1317,7 @@
1317 "pt": "Acesso aos arquivos do servidor",
1318 "ru": "Доступ в файлам сервера",
1319 "xloc": [
1320 - "default.handlebars->23->1294"
1320 + "default.handlebars->23->1308"
1321 ]
1322 },
1323 {
@@ -1374,8 +1374,8 @@
1374 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0",
1375 "default.handlebars->23->425",
1376 "default.handlebars->23->427",
1377 - "default.handlebars->23->925",
1378 - "default.handlebars->23->927"
1377 + "default.handlebars->23->939",
1378 + "default.handlebars->23->941"
1379 ]
1380 },
1381 {
@@ -1447,10 +1447,17 @@
1447 "pt": "Ação",
1448 "ru": "Действиe",
1449 "xloc": [
1450 - "default.handlebars->23->675",
1450 + "default.handlebars->23->689",
1451 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
1452 ]
1453 },
1454 + {
1455 + "en": "Action File",
1456 + "xloc": [
1457 + "default.handlebars->23->574",
1458 + "default.handlebars->23->576"
1459 + ]
1460 + },
1461 {
1462 "cs": "Akce",
1463 "de": "Aktionen",
@@ -1519,10 +1526,10 @@
1526 "pt": "Ativação",
1527 "ru": "Активация",
1528 "xloc": [
1529 + "default.handlebars->23->1011",
1530 + "default.handlebars->23->1013",
1531 "default.handlebars->23->230",
1523 - "default.handlebars->23->232",
1524 - "default.handlebars->23->997",
1525 - "default.handlebars->23->999"
1532 + "default.handlebars->23->232"
1533 ]
1534 },
1535 {
@@ -1586,10 +1593,10 @@
1593 "pt": "Adicionar grupo de dispositivos",
1594 "ru": "Добавить группу устройств",
1595 "xloc": [
1589 - "default.handlebars->23->1084",
1590 - "default.handlebars->23->1086",
1591 - "default.handlebars->23->1268",
1592 - "default.handlebars->23->1342",
1596 + "default.handlebars->23->1098",
1597 + "default.handlebars->23->1100",
1598 + "default.handlebars->23->1282",
1599 + "default.handlebars->23->1356",
1600 "default.handlebars->23->205"
1601 ]
1602 },
@@ -1646,7 +1653,7 @@
1653 "en": "Add Membership",
1654 "nl": "Lidmaatschap toevoegen",
1655 "xloc": [
1649 - "default.handlebars->23->1361"
1656 + "default.handlebars->23->1375"
1657 ]
1658 },
1659 {
@@ -1675,8 +1682,8 @@
1682 "default.handlebars->23->148",
1683 "default.handlebars->23->151",
1684 "default.handlebars->23->152",
1678 - "default.handlebars->23->694",
1679 - "default.handlebars->23->695"
1685 + "default.handlebars->23->708",
1686 + "default.handlebars->23->709"
1687 ]
1688 },
1689 {
@@ -1684,9 +1691,9 @@
1691 "en": "Add User Group",
1692 "nl": "Gebruikersgroep toevoegen",
1693 "xloc": [
1687 - "default.handlebars->23->1085",
1688 - "default.handlebars->23->1351",
1689 - "default.handlebars->23->991"
1694 + "default.handlebars->23->1005",
1695 + "default.handlebars->23->1099",
1696 + "default.handlebars->23->1365"
1697 ]
1698 },
1699 {
@@ -1712,8 +1719,8 @@
1719 "pt": "Adicionar usuários",
1720 "ru": "Добавить пользователей",
1721 "xloc": [
1715 - "default.handlebars->23->1263",
1716 - "default.handlebars->23->990"
1722 + "default.handlebars->23->1004",
1723 + "default.handlebars->23->1277"
1724 ]
1725 },
1726 {
@@ -1725,7 +1732,7 @@
1732 "pt": "Adicionar usuários ao grupo de dispositivos",
1733 "ru": "Добавить пользователей к Группам устройств",
1734 "xloc": [
1728 - "default.handlebars->23->1083"
1735 + "default.handlebars->23->1097"
1736 ]
1737 },
1738 {
@@ -1733,7 +1740,7 @@
1740 "en": "Add Users to User Group",
1741 "nl": "Voeg gebruikers toe aan de gebruikersgroep",
1742 "xloc": [
1736 - "default.handlebars->23->1291"
1743 + "default.handlebars->23->1305"
1744 ]
1745 },
1746 {
@@ -1769,8 +1776,8 @@
1776 "pt": "Adicione um novo Intel&reg; Computador AMT localizado na Internet.",
1777 "ru": "Добавить новый Intel&reg; AMT компьютер, находящийся в интернете.",
1778 "xloc": [
1772 - "default.handlebars->23->223",
1773 - "default.handlebars->23->992"
1779 + "default.handlebars->23->1006",
1780 + "default.handlebars->23->223"
1781 ]
1782 },
1783 {
@@ -1782,8 +1789,8 @@
1789 "pt": "Adicione um novo Intel&reg; AMT computer that is located on the local network.",
1790 "ru": "Добавить новый Intel&reg; AMT компьютер, находящийся в локальной сети.",
1791 "xloc": [
1785 - "default.handlebars->23->225",
1786 - "default.handlebars->23->994"
1792 + "default.handlebars->23->1008",
1793 + "default.handlebars->23->225"
1794 ]
1795 },
1796 {
@@ -1807,7 +1814,7 @@
1814 "pt": "Adicione um novo computador a essa malha instalando o agente de malha.",
1815 "ru": "Добавить новый компьютер к этой сети инсталированием меш агента.",
1816 "xloc": [
1810 - "default.handlebars->23->1000",
1817 + "default.handlebars->23->1014",
1818 "default.handlebars->23->233"
1819 ]
1820 },
@@ -1855,7 +1862,7 @@
1862 "pt": "Admin Realms",
1863 "ru": "Oбласти Aдминистратора",
1864 "xloc": [
1858 - "default.handlebars->23->1317"
1865 + "default.handlebars->23->1331"
1866 ]
1867 },
1868 {
@@ -1878,7 +1885,7 @@
1885 "pt": "Domínios Administrativos",
1886 "ru": "Административные Области",
1887 "xloc": [
1881 - "default.handlebars->23->1233"
1888 + "default.handlebars->23->1247"
1889 ]
1890 },
1891 {
@@ -1890,7 +1897,7 @@
1897 "pt": "Administrador",
1898 "ru": "Администратор",
1899 "xloc": [
1893 - "default.handlebars->23->1195"
1900 + "default.handlebars->23->1209"
1901 ]
1902 },
1903 {
@@ -1902,7 +1909,7 @@
1909 "pt": "afrikaans",
1910 "ru": "Африканский",
1911 "xloc": [
1905 - "default.handlebars->23->697"
1912 + "default.handlebars->23->711"
1913 ]
1914 },
1915 {
@@ -1918,8 +1925,8 @@
1925 "default-mobile.handlebars->9->121",
1926 "default-mobile.handlebars->9->174",
1927 "default-mobile.handlebars->9->190",
1921 - "default.handlebars->23->1120",
1922 - "default.handlebars->23->1126",
1928 + "default.handlebars->23->1134",
1929 + "default.handlebars->23->1140",
1930 "default.handlebars->23->184",
1931 "default.handlebars->23->371",
1932 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -1930,8 +1937,8 @@
1937 "en": "Agent + Intel AMT",
1938 "nl": "Agent + Intel AMT",
1939 "xloc": [
1933 - "default.handlebars->23->1122",
1934 - "default.handlebars->23->1128"
1940 + "default.handlebars->23->1136",
1941 + "default.handlebars->23->1142"
1942 ]
1943 },
1944 {
@@ -1956,7 +1963,7 @@
1963 "ru": "Консоль агента",
1964 "xloc": [
1965 "default-mobile.handlebars->9->315",
1959 - "default.handlebars->23->1094"
1966 + "default.handlebars->23->1108"
1967 ]
1968 },
1969 {
@@ -1965,7 +1972,7 @@
1972 "en": "Agent Error Counters",
1973 "nl": "Agent fout tellers",
1974 "xloc": [
1968 - "default.handlebars->23->1373"
1975 + "default.handlebars->23->1387"
1976 ]
1977 },
1978 {
@@ -1999,7 +2006,7 @@
2006 "en": "Agent Sessions",
2007 "nl": "Agent Sessies",
2008 "xloc": [
2002 - "default.handlebars->23->1389"
2009 + "default.handlebars->23->1403"
2010 ]
2011 },
2012 {
@@ -2021,7 +2028,7 @@
2028 "en": "Agent Types",
2029 "nl": "Agent Type",
2030 "xloc": [
2024 - "default.handlebars->23->1124",
2031 + "default.handlebars->23->1138",
2032 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
2033 ]
2034 },
@@ -2060,7 +2067,7 @@
2067 "pt": "O agente está offline",
2068 "ru": "Агент оффлайн",
2069 "xloc": [
2063 - "default.handlebars->23->668"
2070 + "default.handlebars->23->682"
2071 ]
2072 },
2073 {
@@ -2072,7 +2079,7 @@
2079 "pt": "Agente está online",
2080 "ru": "Агент онлайн",
2081 "xloc": [
2075 - "default.handlebars->23->667"
2082 + "default.handlebars->23->681"
2083 ]
2084 },
2085 {
@@ -2084,7 +2091,7 @@
2091 "pt": "Agentes",
2092 "ru": "Агенты",
2093 "xloc": [
2087 - "default.handlebars->23->1402"
2094 + "default.handlebars->23->1416"
2095 ]
2096 },
2097 {
@@ -2096,7 +2103,7 @@
2103 "pt": "albanês",
2104 "ru": "Албанский",
2105 "xloc": [
2099 - "default.handlebars->23->698"
2106 + "default.handlebars->23->712"
2107 ]
2108 },
2109 {
@@ -2135,9 +2142,9 @@
2142 "pt": "All Focus",
2143 "ru": "Фокусирование всех",
2144 "xloc": [
2138 - "default.handlebars->23->582",
2139 - "default.handlebars->23->584",
2140 - "default.handlebars->23->585"
2145 + "default.handlebars->23->596",
2146 + "default.handlebars->23->598",
2147 + "default.handlebars->23->599"
2148 ]
2149 },
2150 {
@@ -2150,8 +2157,8 @@
2157 "pt": "Permitir que os usuários gerenciem esse grupo de dispositivos e dispositivos neste grupo.",
2158 "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.",
2159 "xloc": [
2153 - "default.handlebars->23->1058",
2154 - "default.handlebars->23->1288"
2160 + "default.handlebars->23->1072",
2161 + "default.handlebars->23->1302"
2162 ]
2163 },
2164 {
@@ -2189,7 +2196,7 @@
2196 "pt": "Alternativo (F10 = ESC + 0)",
2197 "ru": "Поменять (F10 = ESC+0)",
2198 "xloc": [
2192 - "default.handlebars->23->617"
2199 + "default.handlebars->23->631"
2200 ]
2201 },
2202 {
@@ -2202,7 +2209,7 @@
2209 "pt": "Notificar sempre",
2210 "ru": "Всегда уведомлять",
2211 "xloc": [
2205 - "default.handlebars->23->973"
2212 + "default.handlebars->23->987"
2213 ]
2214 },
2215 {
@@ -2214,7 +2221,7 @@
2221 "pt": "Sempre alerta",
2222 "ru": "Всегда напоминать",
2223 "xloc": [
2217 - "default.handlebars->23->974"
2224 + "default.handlebars->23->988"
2225 ]
2226 },
2227 {
@@ -2326,7 +2333,7 @@
2333 "pt": "Árabe (Argélia)",
2334 "ru": "Арабский (Алжир)",
2335 "xloc": [
2329 - "default.handlebars->23->700"
2336 + "default.handlebars->23->714"
2337 ]
2338 },
2339 {
@@ -2338,7 +2345,7 @@
2345 "pt": "Árabe (Bahrain)",
2346 "ru": "Арабский (Бахрейн)",
2347 "xloc": [
2341 - "default.handlebars->23->701"
2348 + "default.handlebars->23->715"
2349 ]
2350 },
2351 {
@@ -2350,7 +2357,7 @@
2357 "pt": "Árabe (Egito)",
2358 "ru": "Арабский (Египет)",
2359 "xloc": [
2353 - "default.handlebars->23->702"
2360 + "default.handlebars->23->716"
2361 ]
2362 },
2363 {
@@ -2362,7 +2369,7 @@
2369 "pt": "Árabe (Iraque)",
2370 "ru": "Арабский (Ирак)",
2371 "xloc": [
2365 - "default.handlebars->23->703"
2372 + "default.handlebars->23->717"
2373 ]
2374 },
2375 {
@@ -2374,7 +2381,7 @@
2381 "pt": "Árabe (Jordânia)",
2382 "ru": "Арабский (Иордания)",
2383 "xloc": [
2377 - "default.handlebars->23->704"
2384 + "default.handlebars->23->718"
2385 ]
2386 },
2387 {
@@ -2386,7 +2393,7 @@
2393 "pt": "Árabe (Kuwait)",
2394 "ru": "Арабский (Кувейт)",
2395 "xloc": [
2389 - "default.handlebars->23->705"
2396 + "default.handlebars->23->719"
2397 ]
2398 },
2399 {
@@ -2398,7 +2405,7 @@
2405 "pt": "Árabe (Líbano)",
2406 "ru": "Арабский (Ливан)",
2407 "xloc": [
2401 - "default.handlebars->23->706"
2408 + "default.handlebars->23->720"
2409 ]
2410 },
2411 {
@@ -2410,7 +2417,7 @@
2417 "pt": "Árabe (Líbia)",
2418 "ru": "Арабский (Ливия)",
2419 "xloc": [
2413 - "default.handlebars->23->707"
2420 + "default.handlebars->23->721"
2421 ]
2422 },
2423 {
@@ -2422,7 +2429,7 @@
2429 "pt": "Árabe (Marrocos)",
2430 "ru": "Арабский (Марокко)",
2431 "xloc": [
2425 - "default.handlebars->23->708"
2432 + "default.handlebars->23->722"
2433 ]
2434 },
2435 {
@@ -2434,7 +2441,7 @@
2441 "pt": "Árabe (Omã)",
2442 "ru": "Арабский (Оман)",
2443 "xloc": [
2437 - "default.handlebars->23->709"
2444 + "default.handlebars->23->723"
2445 ]
2446 },
2447 {
@@ -2446,7 +2453,7 @@
2453 "pt": "Árabe (Catar)",
2454 "ru": "Арабский (Катар)",
2455 "xloc": [
2449 - "default.handlebars->23->710"
2456 + "default.handlebars->23->724"
2457 ]
2458 },
2459 {
@@ -2458,7 +2465,7 @@
2465 "pt": "Árabe (Arábia Saudita)",
2466 "ru": "Арабский (Саудовская Аравия)",
2467 "xloc": [
2461 - "default.handlebars->23->711"
2468 + "default.handlebars->23->725"
2469 ]
2470 },
2471 {
@@ -2470,7 +2477,7 @@
2477 "pt": "Árabe (padrão)",
2478 "ru": "Арабский (стандартный)",
2479 "xloc": [
2473 - "default.handlebars->23->699"
2480 + "default.handlebars->23->713"
2481 ]
2482 },
2483 {
@@ -2482,7 +2489,7 @@
2489 "pt": "Árabe (Síria)",
2490 "ru": "Арабский (Сирия)",
2491 "xloc": [
2485 - "default.handlebars->23->712"
2492 + "default.handlebars->23->726"
2493 ]
2494 },
2495 {
@@ -2494,7 +2501,7 @@
2501 "pt": "Árabe (Tunísia)",
2502 "ru": "Арабский (Тунис)",
2503 "xloc": [
2497 - "default.handlebars->23->713"
2504 + "default.handlebars->23->727"
2505 ]
2506 },
2507 {
@@ -2506,7 +2513,7 @@
2513 "pt": "Árabe (U.A.E)",
2514 "ru": "Арабский (О.А.Э.)",
2515 "xloc": [
2509 - "default.handlebars->23->714"
2516 + "default.handlebars->23->728"
2517 ]
2518 },
2519 {
@@ -2518,7 +2525,7 @@
2525 "pt": "Árabe (Iêmen)",
2526 "ru": "Арабский (Йемен)",
2527 "xloc": [
2521 - "default.handlebars->23->715"
2528 + "default.handlebars->23->729"
2529 ]
2530 },
2531 {
@@ -2530,7 +2537,7 @@
2537 "pt": "Aragonês",
2538 "ru": "Арагонский",
2539 "xloc": [
2533 - "default.handlebars->23->716"
2540 + "default.handlebars->23->730"
2541 ]
2542 },
2543 {
@@ -2568,7 +2575,7 @@
2575 "ru": "Вы уверенны, что хотите удалить группу {0}? Удаление группы приведет к удалению всей информации связанной с устройствами в этой группе.",
2576 "xloc": [
2577 "default-mobile.handlebars->9->286",
2571 - "default.handlebars->23->1038"
2578 + "default.handlebars->23->1052"
2579 ]
2580 },
2581 {
@@ -2614,7 +2621,7 @@
2621 "nl": "Weet u zeker dat u de plug-in {0} wilt gebruiken: {1}",
2622 "ru": "Вы уверенны, что {0} плагин: {1}",
2623 "xloc": [
2617 - "default.handlebars->23->1437"
2624 + "default.handlebars->23->1451"
2625 ]
2626 },
2627 {
@@ -2626,7 +2633,7 @@
2633 "pt": "Armênio",
2634 "ru": "Арменский",
2635 "xloc": [
2629 - "default.handlebars->23->717"
2636 + "default.handlebars->23->731"
2637 ]
2638 },
2639 {
@@ -2638,7 +2645,7 @@
2645 "pt": "Assamese",
2646 "ru": "Ассамский",
2647 "xloc": [
2641 - "default.handlebars->23->718"
2648 + "default.handlebars->23->732"
2649 ]
2650 },
2651 {
@@ -2650,7 +2657,7 @@
2657 "pt": "Asturiano",
2658 "ru": "Астурии",
2659 "xloc": [
2653 - "default.handlebars->23->719"
2660 + "default.handlebars->23->733"
2661 ]
2662 },
2663 {
@@ -2662,7 +2669,7 @@
2669 "pt": "Aplicativo de autenticação",
2670 "ru": "Приложение аутентификации",
2671 "xloc": [
2665 - "default.handlebars->23->1318"
2672 + "default.handlebars->23->1332"
2673 ]
2674 },
2675 {
@@ -2680,8 +2687,8 @@
2687 "default-mobile.handlebars->9->32",
2688 "default.handlebars->23->122",
2689 "default.handlebars->23->127",
2683 - "default.handlebars->23->683",
2684 - "default.handlebars->23->685"
2690 + "default.handlebars->23->697",
2691 + "default.handlebars->23->699"
2692 ]
2693 },
2694 {
@@ -2731,7 +2738,7 @@
2738 "pt": "Remover automaticamente",
2739 "ru": "Авто-Удаление",
2740 "xloc": [
2734 - "default.handlebars->23->961"
2741 + "default.handlebars->23->975"
2742 ]
2743 },
2744 {
@@ -2771,7 +2778,7 @@
2778 "pt": "Azerbaijão",
2779 "ru": "Азербайджанский",
2780 "xloc": [
2774 - "default.handlebars->23->720"
2781 + "default.handlebars->23->734"
2782 ]
2783 },
2784 {
@@ -2897,7 +2904,7 @@
2904 "pt": "Códigos de backup",
2905 "ru": "Коды бэкапа",
2906 "xloc": [
2900 - "default.handlebars->23->1320"
2907 + "default.handlebars->23->1334"
2908 ]
2909 },
2910 {
@@ -2906,7 +2913,7 @@
2913 "en": "Bad Signature",
2914 "nl": "Ongeldige handtening",
2915 "xloc": [
2909 - "default.handlebars->23->1380"
2916 + "default.handlebars->23->1394"
2917 ]
2918 },
2919 {
@@ -2915,7 +2922,7 @@
2922 "en": "Bad Web Certificate",
2923 "nl": "Onjuist webcertificaat",
2924 "xloc": [
2918 - "default.handlebars->23->1379"
2925 + "default.handlebars->23->1393"
2926 ]
2927 },
2928 {
@@ -2927,7 +2934,7 @@
2934 "pt": "Basco",
2935 "ru": "Баскский",
2936 "xloc": [
2930 - "default.handlebars->23->721"
2937 + "default.handlebars->23->735"
2938 ]
2939 },
2940 {
@@ -2951,7 +2958,7 @@
2958 "pt": "Bielorrusso",
2959 "ru": "Белорусский",
2960 "xloc": [
2954 - "default.handlebars->23->723"
2961 + "default.handlebars->23->737"
2962 ]
2963 },
2964 {
@@ -2963,7 +2970,7 @@
2970 "pt": "Bengali",
2971 "ru": "Бенгальский",
2972 "xloc": [
2966 - "default.handlebars->23->724"
2973 + "default.handlebars->23->738"
2974 ]
2975 },
2976 {
@@ -2975,7 +2982,7 @@
2982 "pt": "Bósnia",
2983 "ru": "Боснийский",
2984 "xloc": [
2978 - "default.handlebars->23->725"
2985 + "default.handlebars->23->739"
2986 ]
2987 },
2988 {
@@ -2987,7 +2994,7 @@
2994 "pt": "Breton",
2995 "ru": "Бретонский",
2996 "xloc": [
2990 - "default.handlebars->23->726"
2997 + "default.handlebars->23->740"
2998 ]
2999 },
3000 {
@@ -3000,7 +3007,7 @@
3007 "pt": "Broadcast",
3008 "ru": "Отправить сообщение...",
3009 "xloc": [
3003 - "default.handlebars->23->1261",
3010 + "default.handlebars->23->1275",
3011 "default.handlebars->container->column_l->p4->3->1->0->3->1"
3012 ]
3013 },
@@ -3014,7 +3021,7 @@
3021 "pt": "Mensagem de transmissão",
3022 "ru": "Отправить сообщение",
3023 "xloc": [
3017 - "default.handlebars->23->1218"
3024 + "default.handlebars->23->1232"
3025 ]
3026 },
3027 {
@@ -3026,7 +3033,7 @@
3033 "pt": "Transmita uma mensagem para todos os usuários conectados.",
3034 "ru": "Отправить сообщение всем подключенным пользователям.",
3035 "xloc": [
3029 - "default.handlebars->23->1217"
3036 + "default.handlebars->23->1231"
3037 ]
3038 },
3039 {
@@ -3038,7 +3045,7 @@
3045 "pt": "Búlgaria",
3046 "ru": "Болгарский",
3047 "xloc": [
3041 - "default.handlebars->23->722"
3048 + "default.handlebars->23->736"
3049 ]
3050 },
3051 {
@@ -3050,7 +3057,7 @@
3057 "pt": "Birmanês",
3058 "ru": "Бирманский",
3059 "xloc": [
3053 - "default.handlebars->23->727"
3060 + "default.handlebars->23->741"
3061 ]
3062 },
3063 {
@@ -3076,8 +3083,8 @@
3083 "ru": "CIRA",
3084 "xloc": [
3085 "default-mobile.handlebars->9->122",
3079 - "default.handlebars->23->1026",
3080 - "default.handlebars->23->1031",
3086 + "default.handlebars->23->1040",
3087 + "default.handlebars->23->1045",
3088 "default.handlebars->23->186",
3089 "default.handlebars->23->373"
3090 ]
@@ -3091,7 +3098,7 @@
3098 "pt": "Servidor CIRA",
3099 "ru": "CIRA Сервер",
3100 "xloc": [
3094 - "default.handlebars->23->1428"
3101 + "default.handlebars->23->1442"
3102 ]
3103 },
3104 {
@@ -3103,7 +3110,7 @@
3110 "pt": "Comandos do servidor CIRA",
3111 "ru": "CIRA Сервер комманды",
3112 "xloc": [
3106 - "default.handlebars->23->1429"
3113 + "default.handlebars->23->1443"
3114 ]
3115 },
3116 {
@@ -3112,7 +3119,7 @@
3119 "en": "CPU Load",
3120 "nl": "CPU gebruik",
3121 "xloc": [
3115 - "default.handlebars->23->1394"
3122 + "default.handlebars->23->1408"
3123 ]
3124 },
3125 {
@@ -3124,7 +3131,7 @@
3131 "pt": "Carga da CPU nos últimos 15 minutos",
3132 "ru": "Загрузка ЦПУ за последние 15 минут",
3133 "xloc": [
3127 - "default.handlebars->23->1397"
3134 + "default.handlebars->23->1411"
3135 ]
3136 },
3137 {
@@ -3136,7 +3143,7 @@
3143 "pt": "Carga da CPU nos últimos 5 minutos",
3144 "ru": "Загрузка ЦПУ за последние 5 минут",
3145 "xloc": [
3139 - "default.handlebars->23->1396"
3146 + "default.handlebars->23->1410"
3147 ]
3148 },
3149 {
@@ -3148,7 +3155,7 @@
3155 "pt": "Carga da CPU no último minuto",
3156 "ru": "Загрузка ЦПУ за последнюю минуту",
3157 "xloc": [
3151 - "default.handlebars->23->1395"
3158 + "default.handlebars->23->1409"
3159 ]
3160 },
3161 {
@@ -3160,8 +3167,8 @@
3167 "pt": "CR + LF",
3168 "ru": "CR+LF",
3169 "xloc": [
3163 - "default.handlebars->23->610",
3164 - "default.handlebars->23->619",
3170 + "default.handlebars->23->624",
3171 + "default.handlebars->23->633",
3172 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
3173 ]
3174 },
@@ -3174,8 +3181,8 @@
3181 "pt": "Formato CSV",
3182 "ru": "Формат CSV",
3183 "xloc": [
3177 - "default.handlebars->23->1170",
3178 - "default.handlebars->23->1209"
3184 + "default.handlebars->23->1184",
3185 + "default.handlebars->23->1223"
3186 ]
3187 },
3188 {
@@ -3188,7 +3195,7 @@
3195 "pt": "Erro de chamada",
3196 "ru": "Ошибка вызова",
3197 "xloc": [
3191 - "default.handlebars->23->1438"
3198 + "default.handlebars->23->1452"
3199 ]
3200 },
3201 {
@@ -3203,7 +3210,7 @@
3210 "xloc": [
3211 "default-mobile.handlebars->9->41",
3212 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
3206 - "default.handlebars->23->946",
3213 + "default.handlebars->23->960",
3214 "default.handlebars->container->dialog->idx_dlgButtonBar",
3215 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
3216 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -3231,7 +3238,7 @@
3238 "pt": "Catalão",
3239 "ru": "Каталонский",
3240 "xloc": [
3234 - "default.handlebars->23->728"
3241 + "default.handlebars->23->742"
3242 ]
3243 },
3244 {
@@ -3256,7 +3263,7 @@
3263 "pt": "Chamorro",
3264 "ru": "Чаморро",
3265 "xloc": [
3259 - "default.handlebars->23->729"
3266 + "default.handlebars->23->743"
3267 ]
3268 },
3269 {
@@ -3268,7 +3275,7 @@
3275 "pt": "Alterar email para {0}",
3276 "ru": "Смена е-мейла для {0}",
3277 "xloc": [
3271 - "default.handlebars->23->1333"
3278 + "default.handlebars->23->1347"
3279 ]
3280 },
3281 {
@@ -3295,8 +3302,8 @@
3302 "ru": "Смена Пароля",
3303 "xloc": [
3304 "default-mobile.handlebars->9->49",
3298 - "default.handlebars->23->1328",
3299 - "default.handlebars->23->922"
3305 + "default.handlebars->23->1342",
3306 + "default.handlebars->23->936"
3307 ]
3308 },
3309 {
@@ -3308,7 +3315,7 @@
3315 "pt": "Alterar senha para {0}",
3316 "ru": "Смена пароля для {0}",
3317 "xloc": [
3311 - "default.handlebars->23->1340"
3318 + "default.handlebars->23->1354"
3319 ]
3320 },
3321 {
@@ -3370,7 +3377,7 @@
3377 "pt": "Mude o endereço de e-mail da sua conta aqui.",
3378 "ru": "Измените адрес электронной почты вашей учетной записи здесь.",
3379 "xloc": [
3373 - "default.handlebars->23->909"
3380 + "default.handlebars->23->923"
3381 ]
3382 },
3383 {
@@ -3382,7 +3389,7 @@
3389 "pt": "Altere a senha da sua conta digitando a senha antiga e a nova senha duas vezes nas caixas abaixo.",
3390 "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.",
3391 "xloc": [
3385 - "default.handlebars->23->915"
3392 + "default.handlebars->23->929"
3393 ]
3394 },
3395 {
@@ -3394,7 +3401,7 @@
3401 "pt": "Alterar o idioma exigirá uma atualização da página.",
3402 "ru": "Изменение языка потребует обновления страницы.",
3403 "xloc": [
3397 - "default.handlebars->23->894"
3404 + "default.handlebars->23->908"
3405 ]
3406 },
3407 {
@@ -3406,7 +3413,7 @@
3413 "pt": "Chat",
3414 "ru": "Чат",
3415 "xloc": [
3409 - "default.handlebars->23->1187"
3416 + "default.handlebars->23->1201"
3417 ]
3418 },
3419 {
@@ -3420,8 +3427,8 @@
3427 "xloc": [
3428 "default-mobile.handlebars->9->307",
3429 "default-mobile.handlebars->9->325",
3423 - "default.handlebars->23->1081",
3424 - "default.handlebars->23->1104"
3430 + "default.handlebars->23->1095",
3431 + "default.handlebars->23->1118"
3432 ]
3433 },
3434 {
@@ -3433,7 +3440,7 @@
3440 "pt": "Checheno",
3441 "ru": "Чеченский",
3442 "xloc": [
3436 - "default.handlebars->23->730"
3443 + "default.handlebars->23->744"
3444 ]
3445 },
3446 {
@@ -3481,8 +3488,8 @@
3488 "pt": "Verificando ...",
3489 "ru": "Проверка...",
3490 "xloc": [
3484 - "default.handlebars->23->1434",
3485 - "default.handlebars->23->696"
3491 + "default.handlebars->23->1448",
3492 + "default.handlebars->23->710"
3493 ]
3494 },
3495 {
@@ -3494,7 +3501,7 @@
3501 "pt": "Chinês",
3502 "ru": "Китайский",
3503 "xloc": [
3497 - "default.handlebars->23->731"
3504 + "default.handlebars->23->745"
3505 ]
3506 },
3507 {
@@ -3506,7 +3513,7 @@
3513 "pt": "Chinês (Hong Kong)",
3514 "ru": "Китайский (Гонконг)",
3515 "xloc": [
3509 - "default.handlebars->23->732"
3516 + "default.handlebars->23->746"
3517 ]
3518 },
3519 {
@@ -3518,7 +3525,7 @@
3525 "pt": "Chinês (PRC)",
3526 "ru": "Китайский (КНР)",
3527 "xloc": [
3521 - "default.handlebars->23->733"
3528 + "default.handlebars->23->747"
3529 ]
3530 },
3531 {
@@ -3530,7 +3537,7 @@
3537 "pt": "Chinês (Singapura)",
3538 "ru": "Китайский (Сингапур)",
3539 "xloc": [
3533 - "default.handlebars->23->734"
3540 + "default.handlebars->23->748"
3541 ]
3542 },
3543 {
@@ -3542,7 +3549,7 @@
3549 "pt": "Chinês (Taiwan)",
3550 "ru": "Китайский (Тайвань)",
3551 "xloc": [
3545 - "default.handlebars->23->735"
3552 + "default.handlebars->23->749"
3553 ]
3554 },
3555 {
@@ -3567,7 +3574,7 @@
3574 "pt": "Chuvash",
3575 "ru": "Чувашский",
3576 "xloc": [
3570 - "default.handlebars->23->736"
3577 + "default.handlebars->23->750"
3578 ]
3579 },
3580 {
@@ -3597,11 +3604,11 @@
3604 "default-mobile.handlebars->9->268",
3605 "default-mobile.handlebars->9->28",
3606 "default-mobile.handlebars->9->91",
3600 - "default.handlebars->23->1164",
3601 - "default.handlebars->23->645",
3602 - "default.handlebars->23->647",
3603 - "default.handlebars->23->649",
3604 - "default.handlebars->23->651",
3607 + "default.handlebars->23->1178",
3608 + "default.handlebars->23->659",
3609 + "default.handlebars->23->661",
3610 + "default.handlebars->23->663",
3611 + "default.handlebars->23->665",
3612 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
3613 "default.handlebars->container->column_l->p41->3->1",
3614 "messenger.handlebars->xbottom"
@@ -3628,7 +3635,7 @@
3635 "pt": "Limpe o núcleo",
3636 "ru": "Очистить ядро",
3637 "xloc": [
3631 - "default.handlebars->23->677"
3638 + "default.handlebars->23->691"
3639 ]
3640 },
3641 {
@@ -3665,7 +3672,7 @@
3672 "ru": "Нажмите ок для отправки подтверждения по електронной почте:",
3673 "xloc": [
3674 "default-mobile.handlebars->9->34",
3668 - "default.handlebars->23->906"
3675 + "default.handlebars->23->920"
3676 ]
3677 },
3678 {
@@ -3689,8 +3696,8 @@
3696 "pt": "Acesso remoto iniciado pelo cliente",
3697 "ru": "Удаленная Связь Установленая Клиентом",
3698 "xloc": [
3692 - "default.handlebars->23->1025",
3693 - "default.handlebars->23->1030"
3699 + "default.handlebars->23->1039",
3700 + "default.handlebars->23->1044"
3701 ]
3702 },
3703 {
@@ -3717,7 +3724,7 @@
3724 "default-mobile.handlebars->9->26",
3725 "default.handlebars->23->134",
3726 "default.handlebars->23->142",
3720 - "default.handlebars->23->602"
3727 + "default.handlebars->23->616"
3728 ]
3729 },
3730 {
@@ -3738,8 +3745,8 @@
3745 "en": "Common Device Groups",
3746 "nl": "Gemeenschappelijke apparaatgroepen",
3747 "xloc": [
3741 - "default.handlebars->23->1269",
3742 - "default.handlebars->23->1343"
3748 + "default.handlebars->23->1283",
3749 + "default.handlebars->23->1357"
3750 ]
3751 },
3752 {
@@ -3752,7 +3759,7 @@
3759 "ru": "Подтвердить {0} из {1} записи {2} в это местоположение?",
3760 "xloc": [
3761 "default-mobile.handlebars->9->86",
3755 - "default.handlebars->23->1159"
3762 + "default.handlebars->23->1173"
3763 ]
3764 },
3765 {
@@ -3766,8 +3773,8 @@
3773 "xloc": [
3774 "default-mobile.handlebars->9->220",
3775 "default-mobile.handlebars->9->287",
3769 - "default.handlebars->23->1039",
3770 - "default.handlebars->23->1284",
3776 + "default.handlebars->23->1053",
3777 + "default.handlebars->23->1298",
3778 "default.handlebars->23->396",
3779 "default.handlebars->23->548",
3780 "default.handlebars->23->557"
@@ -3783,7 +3790,7 @@
3790 "ru": "Подтвердить копию 1 записи в это место?",
3791 "xloc": [
3792 "default-mobile.handlebars->9->257",
3786 - "default.handlebars->23->640"
3793 + "default.handlebars->23->654"
3794 ]
3795 },
3796 {
@@ -3796,7 +3803,7 @@
3803 "ru": "Подтвердить копию {0} записей в этом месте?",
3804 "xloc": [
3805 "default-mobile.handlebars->9->256",
3799 - "default.handlebars->23->639"
3806 + "default.handlebars->23->653"
3807 ]
3808 },
3809 {
@@ -3821,7 +3828,7 @@
3828 "ru": "Подтвердить перемещение 1 записи в это место?",
3829 "xloc": [
3830 "default-mobile.handlebars->9->259",
3824 - "default.handlebars->23->642"
3831 + "default.handlebars->23->656"
3832 ]
3833 },
3834 {
@@ -3834,7 +3841,7 @@
3841 "ru": "Подтвердить перемещение {0} записей в это место?",
3842 "xloc": [
3843 "default-mobile.handlebars->9->258",
3837 - "default.handlebars->23->641"
3844 + "default.handlebars->23->655"
3845 ]
3846 },
3847 {
@@ -3845,7 +3852,7 @@
3852 "nl": "Bevestig overschrijven?",
3853 "ru": "Подтвердить перезапись?",
3854 "xloc": [
3848 - "default.handlebars->23->1158"
3855 + "default.handlebars->23->1172"
3856 ]
3857 },
3858 {
@@ -3858,7 +3865,7 @@
3865 "ru": "Подтвердите удаление приложения аутентификации 2-хэтапного входа в систему.",
3866 "xloc": [
3867 "default-mobile.handlebars->9->33",
3861 - "default.handlebars->23->686"
3868 + "default.handlebars->23->700"
3869 ]
3870 },
3871 {
@@ -3866,8 +3873,8 @@
3873 "en": "Confirm removal of device group {0}?",
3874 "nl": "Bevestig het verwijderen van de apparaatgroep {0}?",
3875 "xloc": [
3869 - "default.handlebars->23->1279",
3870 - "default.handlebars->23->1363"
3876 + "default.handlebars->23->1293",
3877 + "default.handlebars->23->1377"
3878 ]
3879 },
3880 {
@@ -3875,7 +3882,7 @@
3882 "en": "Confirm removal of group {0}?",
3883 "nl": "Bevestig het verwijderen van de groep {0}?",
3884 "xloc": [
3878 - "default.handlebars->23->1359"
3885 + "default.handlebars->23->1373"
3886 ]
3887 },
3888 {
@@ -3888,8 +3895,8 @@
3895 "ru": "Подтвердить удаление пользователя {0}?",
3896 "xloc": [
3897 "default-mobile.handlebars->9->333",
3891 - "default.handlebars->23->1113",
3892 - "default.handlebars->23->1287"
3898 + "default.handlebars->23->1127",
3899 + "default.handlebars->23->1301"
3900 ]
3901 },
3902 {
@@ -3904,8 +3911,8 @@
3911 "default-mobile.handlebars->9->236",
3912 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
3913 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
3907 - "default.handlebars->23->622",
3908 - "default.handlebars->23->977",
3914 + "default.handlebars->23->636",
3915 + "default.handlebars->23->991",
3916 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
3917 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
3918 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3"
@@ -3933,8 +3940,8 @@
3940 "pt": "Conecte-se ao servidor",
3941 "ru": "Подключиться к серверу",
3942 "xloc": [
3936 - "default.handlebars->23->1029",
3937 - "default.handlebars->23->1033"
3943 + "default.handlebars->23->1043",
3944 + "default.handlebars->23->1047"
3945 ]
3946 },
3947 {
@@ -3980,7 +3987,7 @@
3987 "en": "Connected Intel&reg; AMT",
3988 "nl": "Verbonden Intel&reg; AMT",
3989 "xloc": [
3983 - "default.handlebars->23->1385"
3990 + "default.handlebars->23->1399"
3991 ]
3992 },
3993 {
@@ -3989,7 +3996,7 @@
3996 "en": "Connected Users",
3997 "nl": "Verbonden gebruikers",
3998 "xloc": [
3992 - "default.handlebars->23->1390"
3999 + "default.handlebars->23->1404"
4000 ]
4001 },
4002 {
@@ -4019,7 +4026,7 @@
4026 "default.handlebars->23->211",
4027 "default.handlebars->23->214",
4028 "default.handlebars->23->220",
4022 - "default.handlebars->23->663",
4029 + "default.handlebars->23->677",
4030 "default.handlebars->23->9"
4031 ]
4032 },
@@ -4032,7 +4039,7 @@
4039 "pt": "Contagem de conexões",
4040 "ru": "Подключений ",
4041 "xloc": [
4035 - "default.handlebars->23->1401"
4042 + "default.handlebars->23->1415"
4043 ]
4044 },
4045 {
@@ -4044,7 +4051,7 @@
4051 "pt": "Encaminhador de conexão",
4052 "ru": "Реле подключения",
4053 "xloc": [
4047 - "default.handlebars->23->1427"
4054 + "default.handlebars->23->1441"
4055 ]
4056 },
4057 {
@@ -4081,7 +4088,7 @@
4088 "ru": "Связь",
4089 "xloc": [
4090 "default-mobile.handlebars->9->195",
4084 - "default.handlebars->23->1129",
4091 + "default.handlebars->23->1143",
4092 "default.handlebars->23->202",
4093 "default.handlebars->23->482",
4094 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -4122,7 +4129,7 @@
4129 "pt": "Codificador de cookies",
4130 "ru": "Cookie-кодировщик",
4131 "xloc": [
4125 - "default.handlebars->23->1415"
4132 + "default.handlebars->23->1429"
4133 ]
4134 },
4135 {
@@ -4311,7 +4318,7 @@
4318 "pt": "Servidor Core",
4319 "ru": "Основной сервер",
4320 "xloc": [
4314 - "default.handlebars->23->1414"
4321 + "default.handlebars->23->1428"
4322 ]
4323 },
4324 {
@@ -4323,7 +4330,7 @@
4330 "pt": "Corso",
4331 "ru": "Kорсиканский",
4332 "xloc": [
4326 - "default.handlebars->23->737"
4333 + "default.handlebars->23->751"
4334 ]
4335 },
4336 {
@@ -4335,7 +4342,7 @@
4342 "pt": "Criar conta",
4343 "ru": "Создать учетную запись",
4344 "xloc": [
4338 - "default.handlebars->23->1229",
4345 + "default.handlebars->23->1243",
4346 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
4347 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
4348 ]
@@ -4357,7 +4364,7 @@
4364 "en": "Create User Group",
4365 "nl": "Maak een gebruikersgroep.",
4366 "xloc": [
4360 - "default.handlebars->23->1252"
4367 + "default.handlebars->23->1266"
4368 ]
4369 },
4370 {
@@ -4369,7 +4376,7 @@
4376 "pt": "Crie um novo grupo de dispositivos usando as opções abaixo.",
4377 "ru": "Создайте новую группу устройств, используя параметры ниже.",
4378 "xloc": [
4372 - "default.handlebars->23->929"
4379 + "default.handlebars->23->943"
4380 ]
4381 },
4382 {
@@ -4393,7 +4400,7 @@
4400 "pt": "Crie várias contas ao mesmo tempo importando um arquivo JSON com o seguinte formato:",
4401 "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:",
4402 "xloc": [
4396 - "default.handlebars->23->1200"
4403 + "default.handlebars->23->1214"
4404 ]
4405 },
4406 {
@@ -4418,7 +4425,7 @@
4425 "pt": "Criação",
4426 "ru": "Создание",
4427 "xloc": [
4421 - "default.handlebars->23->1306"
4428 + "default.handlebars->23->1320"
4429 ]
4430 },
4431 {
@@ -4443,7 +4450,7 @@
4450 "pt": "Cree",
4451 "ru": "Кри (Канадский язык)",
4452 "xloc": [
4446 - "default.handlebars->23->738"
4453 + "default.handlebars->23->752"
4454 ]
4455 },
4456 {
@@ -4455,7 +4462,7 @@
4462 "pt": "Croata",
4463 "ru": "Хорватский",
4464 "xloc": [
4458 - "default.handlebars->23->739"
4465 + "default.handlebars->23->753"
4466 ]
4467 },
4468 {
@@ -4556,7 +4563,7 @@
4563 "pt": "Tcheco",
4564 "ru": "Чешский",
4565 "xloc": [
4559 - "default.handlebars->23->740"
4566 + "default.handlebars->23->754"
4567 ]
4568 },
4569 {
@@ -4580,7 +4587,7 @@
4587 "pt": "Dinamarquês",
4588 "ru": "Датский",
4589 "xloc": [
4583 - "default.handlebars->23->741"
4590 + "default.handlebars->23->755"
4591 ]
4592 },
4593 {
@@ -4592,7 +4599,7 @@
4599 "pt": "DataChannel",
4600 "ru": "DataChannel",
4601 "xloc": [
4595 - "default.handlebars->23->579"
4602 + "default.handlebars->23->593"
4603 ]
4604 },
4605 {
@@ -4604,7 +4611,7 @@
4611 "pt": "Datas e Horário",
4612 "ru": "Даты & Время",
4613 "xloc": [
4607 - "default.handlebars->23->897"
4614 + "default.handlebars->23->911"
4615 ]
4616 },
4617 {
@@ -4628,7 +4635,7 @@
4635 "pt": "Desativar o modo de controle do cliente (CCM)",
4636 "ru": "Деактивировать режим управления клиентом (CCM)",
4637 "xloc": [
4631 - "default.handlebars->23->1017"
4638 + "default.handlebars->23->1031"
4639 ]
4640 },
4641 {
@@ -4657,8 +4664,8 @@
4664 "default-mobile.handlebars->9->81",
4665 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
4666 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
4660 - "default.handlebars->23->1153",
4661 - "default.handlebars->23->632",
4667 + "default.handlebars->23->1167",
4668 + "default.handlebars->23->646",
4669 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
4670 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
4671 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -4675,7 +4682,7 @@
4682 "ru": "Удалить Пользователя",
4683 "xloc": [
4684 "default-mobile.handlebars->9->43",
4678 - "default.handlebars->23->914"
4685 + "default.handlebars->23->928"
4686 ]
4687 },
4688 {
@@ -4702,8 +4709,8 @@
4709 "xloc": [
4710 "default-mobile.handlebars->9->285",
4711 "default-mobile.handlebars->9->288",
4705 - "default.handlebars->23->1010",
4706 - "default.handlebars->23->1040"
4712 + "default.handlebars->23->1024",
4713 + "default.handlebars->23->1054"
4714 ]
4715 },
4716 {
@@ -4737,7 +4744,7 @@
4744 "en": "Delete User",
4745 "nl": "Verwijder gebruiker",
4746 "xloc": [
4740 - "default.handlebars->23->1327"
4747 + "default.handlebars->23->1341"
4748 ]
4749 },
4750 {
@@ -4745,8 +4752,8 @@
4752 "en": "Delete User Group",
4753 "nl": "Verwijder de gebruikersgroep",
4754 "xloc": [
4748 - "default.handlebars->23->1277",
4749 - "default.handlebars->23->1285"
4755 + "default.handlebars->23->1291",
4756 + "default.handlebars->23->1299"
4757 ]
4758 },
4759 {
@@ -4758,7 +4765,7 @@
4765 "pt": "Excluir usuário {0}",
4766 "ru": "Удалить Пользователя {0}",
4767 "xloc": [
4761 - "default.handlebars->23->1341"
4768 + "default.handlebars->23->1355"
4769 ]
4770 },
4771 {
@@ -4797,8 +4804,8 @@
4804 "xloc": [
4805 "default-mobile.handlebars->9->251",
4806 "default-mobile.handlebars->9->83",
4800 - "default.handlebars->23->1155",
4801 - "default.handlebars->23->634"
4807 + "default.handlebars->23->1169",
4808 + "default.handlebars->23->648"
4809 ]
4810 },
4811 {
@@ -4806,7 +4813,7 @@
4813 "en": "Delete user group {0}?",
4814 "nl": "Verwijder gebruikersgroep {0}?",
4815 "xloc": [
4809 - "default.handlebars->23->1283"
4816 + "default.handlebars->23->1297"
4817 ]
4818 },
4819 {
@@ -4820,8 +4827,8 @@
4827 "xloc": [
4828 "default-mobile.handlebars->9->250",
4829 "default-mobile.handlebars->9->82",
4823 - "default.handlebars->23->1154",
4824 - "default.handlebars->23->633"
4830 + "default.handlebars->23->1168",
4831 + "default.handlebars->23->647"
4832 ]
4833 },
4834 {
@@ -4896,17 +4903,17 @@
4903 "default-mobile.handlebars->9->277",
4904 "default-mobile.handlebars->9->290",
4905 "default-mobile.handlebars->9->60",
4899 - "default.handlebars->23->1042",
4900 - "default.handlebars->23->1251",
4901 - "default.handlebars->23->1256",
4902 - "default.handlebars->23->1258",
4903 - "default.handlebars->23->1281",
4906 + "default.handlebars->23->1056",
4907 + "default.handlebars->23->1265",
4908 + "default.handlebars->23->1270",
4909 + "default.handlebars->23->1272",
4910 + "default.handlebars->23->1295",
4911 "default.handlebars->23->440",
4912 "default.handlebars->23->441",
4906 - "default.handlebars->23->575",
4907 - "default.handlebars->23->934",
4913 + "default.handlebars->23->589",
4914 + "default.handlebars->23->948",
4915 "default.handlebars->23->95",
4909 - "default.handlebars->23->958",
4916 + "default.handlebars->23->972",
4917 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
4918 ]
4919 },
@@ -4919,7 +4926,7 @@
4926 "pt": "DeskControl",
4927 "ru": "Управление рабочего стола",
4928 "xloc": [
4922 - "default.handlebars->23->607"
4929 + "default.handlebars->23->621"
4930 ]
4931 },
4932 {
@@ -4931,7 +4938,7 @@
4938 "pt": "Área de Trabalho",
4939 "ru": "Рабочий стол",
4940 "xloc": [
4934 - "default.handlebars->23->1044",
4941 + "default.handlebars->23->1058",
4942 "default.handlebars->23->409",
4943 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
4944 "default.handlebars->contextMenu->cxdesktop"
@@ -4958,7 +4965,7 @@
4965 "pt": "Notificação na área de trabalho",
4966 "ru": "Уведомление на рабочем столе",
4967 "xloc": [
4961 - "default.handlebars->23->968"
4968 + "default.handlebars->23->982"
4969 ]
4970 },
4971 {
@@ -4970,7 +4977,7 @@
4977 "pt": "Prompt da área de trabalho",
4978 "ru": "Запрос рабочего стола",
4979 "xloc": [
4973 - "default.handlebars->23->967"
4980 + "default.handlebars->23->981"
4981 ]
4982 },
4983 {
@@ -4982,7 +4989,7 @@
4989 "pt": "Prompt da área de trabalho + barra de ferramentas",
4990 "ru": "Запрос рабочего стола + панель инструментов",
4991 "xloc": [
4985 - "default.handlebars->23->965"
4992 + "default.handlebars->23->979"
4993 ]
4994 },
4995 {
@@ -4994,7 +5001,7 @@
5001 "pt": "Barra de ferramentas da área de trabalho",
5002 "ru": "Панель инструментов рабочего стола",
5003 "xloc": [
4997 - "default.handlebars->23->966"
5004 + "default.handlebars->23->980"
5005 ]
5006 },
5007 {
@@ -5064,11 +5071,11 @@
5071 "en": "Device Group",
5072 "nl": "Apparaat Groep",
5073 "xloc": [
5067 - "default.handlebars->23->1061",
5068 - "default.handlebars->23->1063",
5069 - "default.handlebars->23->1275",
5070 - "default.handlebars->23->1349",
5071 - "default.handlebars->23->1355"
5074 + "default.handlebars->23->1075",
5075 + "default.handlebars->23->1077",
5076 + "default.handlebars->23->1289",
5077 + "default.handlebars->23->1363",
5078 + "default.handlebars->23->1369"
5079 ]
5080 },
5081 {
@@ -5081,7 +5088,7 @@
5088 "ru": "Пользователь группы устройств",
5089 "xloc": [
5090 "default-mobile.handlebars->9->331",
5084 - "default.handlebars->23->1111"
5091 + "default.handlebars->23->1125"
5092 ]
5093 },
5094 {
@@ -5094,10 +5101,10 @@
5101 "ru": "Группы устройств",
5102 "xloc": [
5103 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
5097 - "default.handlebars->23->1247",
5098 - "default.handlebars->23->1260",
5099 - "default.handlebars->23->1315",
5100 - "default.handlebars->23->1388",
5104 + "default.handlebars->23->1261",
5105 + "default.handlebars->23->1274",
5106 + "default.handlebars->23->1329",
5107 + "default.handlebars->23->1402",
5108 "default.handlebars->container->column_l->p2->9"
5109 ]
5110 },
@@ -5124,7 +5131,7 @@
5131 "xloc": [
5132 "default-mobile.handlebars->9->222",
5133 "default.handlebars->23->238",
5127 - "default.handlebars->23->573",
5134 + "default.handlebars->23->587",
5135 "player.htm->3->9"
5136 ]
5137 },
@@ -5161,8 +5168,8 @@
5168 "pt": "Conexões de dispositivos.",
5169 "ru": "Подключения устройства",
5170 "xloc": [
5164 - "default.handlebars->23->1115",
5165 - "default.handlebars->23->902"
5171 + "default.handlebars->23->1129",
5172 + "default.handlebars->23->916"
5173 ]
5174 },
5175 {
@@ -5174,8 +5181,8 @@
5181 "pt": "Desconexões de dispositivos.",
5182 "ru": "Отключения устройства",
5183 "xloc": [
5177 - "default.handlebars->23->1116",
5178 - "default.handlebars->23->903"
5184 + "default.handlebars->23->1130",
5185 + "default.handlebars->23->917"
5186 ]
5187 },
5188 {
@@ -5412,8 +5419,8 @@
5419 "xloc": [
5420 "default-mobile.handlebars->9->237",
5421 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
5415 - "default.handlebars->23->623",
5416 - "default.handlebars->23->978",
5422 + "default.handlebars->23->637",
5423 + "default.handlebars->23->992",
5424 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
5425 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span"
5426 ]
@@ -5471,7 +5478,7 @@
5478 "en": "Display device group name",
5479 "nl": "Toon apparaatgroepsnaam",
5480 "xloc": [
5474 - "default.handlebars->23->901"
5481 + "default.handlebars->23->915"
5482 ]
5483 },
5484 {
@@ -5483,7 +5490,7 @@
5490 "pt": "Mostrar nome",
5491 "ru": "Показать имя",
5492 "xloc": [
5486 - "default.handlebars->23->593"
5493 + "default.handlebars->23->607"
5494 ]
5495 },
5496 {
@@ -5495,7 +5502,7 @@
5502 "pt": "Fazer nada",
5503 "ru": "Ничего не делать",
5504 "xloc": [
5498 - "default.handlebars->23->1023"
5505 + "default.handlebars->23->1037"
5506 ]
5507 },
5508 {
@@ -5520,8 +5527,8 @@
5527 "pt": "Não configure",
5528 "ru": "Не настраивать",
5529 "xloc": [
5523 - "default.handlebars->23->1027",
5524 - "default.handlebars->23->1032"
5530 + "default.handlebars->23->1041",
5531 + "default.handlebars->23->1046"
5532 ]
5533 },
5534 {
@@ -5533,7 +5540,7 @@
5540 "pt": "Não conecte ao servidor",
5541 "ru": "Не подключаться к серверу",
5542 "xloc": [
5536 - "default.handlebars->23->1028"
5543 + "default.handlebars->23->1042"
5544 ]
5545 },
5546 {
@@ -5573,7 +5580,7 @@
5580 "ru": "Скачать файл",
5581 "xloc": [
5582 "default-mobile.handlebars->9->270",
5576 - "default.handlebars->23->652"
5583 + "default.handlebars->23->666"
5584 ]
5585 },
5586 {
@@ -5597,7 +5604,7 @@
5604 "pt": "Baixar MeshCmd",
5605 "ru": "Скачать MeshCmd",
5606 "xloc": [
5600 - "default.handlebars->23->570"
5607 + "default.handlebars->23->578"
5608 ]
5609 },
5610 {
@@ -5623,6 +5630,12 @@
5630 "default.handlebars->container->column_l->p42->3->3"
5631 ]
5632 },
5633 + {
5634 + "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.",
5635 + "xloc": [
5636 + "default.handlebars->23->571"
5637 + ]
5638 + },
5639 {
5640 "cs": "Stáhnout si text z konzole",
5641 "de": "Konsolentext herunterladen",
@@ -5704,7 +5717,7 @@
5717 "pt": "Faça o download da lista de eventos com um dos formatos de arquivo abaixo.",
5718 "ru": "Скачать список событий с одним из форматов файлов ниже.",
5719 "xloc": [
5707 - "default.handlebars->23->1169"
5720 + "default.handlebars->23->1183"
5721 ]
5722 },
5723 {
@@ -5716,7 +5729,7 @@
5729 "pt": "Baixe a lista de usuários com um dos formatos de arquivo abaixo.",
5730 "ru": "Скачать список пользователей с одним из форматов файлов ниже.",
5731 "xloc": [
5719 - "default.handlebars->23->1208"
5732 + "default.handlebars->23->1222"
5733 ]
5734 },
5735 {
@@ -5774,7 +5787,7 @@
5787 "en": "Duplicate Agent",
5788 "nl": "Duplicaat Agent",
5789 "xloc": [
5777 - "default.handlebars->23->1384"
5790 + "default.handlebars->23->1398"
5791 ]
5792 },
5793 {
@@ -5790,7 +5803,7 @@
5803 "en": "Duplicate User Group",
5804 "nl": "Dupliceer Gebruikers Groep",
5805 "xloc": [
5793 - "default.handlebars->23->1253"
5806 + "default.handlebars->23->1267"
5807 ]
5808 },
5809 {
@@ -5814,7 +5827,7 @@
5827 "pt": "Durante a ativação, o agente terá acesso às informações da senha do administrador.",
5828 "ru": "Во время активации агент будет иметь доступ к информации пароля администратора.",
5829 "xloc": [
5817 - "default.handlebars->23->1037"
5830 + "default.handlebars->23->1051"
5831 ]
5832 },
5833 {
@@ -5826,7 +5839,7 @@
5839 "pt": "Holandês (belga)",
5840 "ru": "Голландский (Бельгийский)",
5841 "xloc": [
5829 - "default.handlebars->23->743"
5842 + "default.handlebars->23->757"
5843 ]
5844 },
5845 {
@@ -5838,7 +5851,7 @@
5851 "pt": "Holandês (padrão)",
5852 "ru": "Голландский (Стандартный)",
5853 "xloc": [
5841 - "default.handlebars->23->742"
5854 + "default.handlebars->23->756"
5855 ]
5856 },
5857 {
@@ -5901,7 +5914,7 @@
5914 "ru": "Редактировать устройство",
5915 "xloc": [
5916 "default-mobile.handlebars->9->227",
5904 - "default.handlebars->23->578"
5917 + "default.handlebars->23->592"
5918 ]
5919 },
5920 {
@@ -5916,9 +5929,9 @@
5929 "default-mobile.handlebars->9->291",
5930 "default-mobile.handlebars->9->293",
5931 "default-mobile.handlebars->9->311",
5919 - "default.handlebars->23->1043",
5920 - "default.handlebars->23->1067",
5921 - "default.handlebars->23->1090"
5932 + "default.handlebars->23->1057",
5933 + "default.handlebars->23->1081",
5934 + "default.handlebars->23->1104"
5935 ]
5936 },
5937 {
@@ -5930,7 +5943,7 @@
5943 "pt": "Editar recursos do grupo de dispositivos",
5944 "ru": "Редактировать функции группы устройств",
5945 "xloc": [
5933 - "default.handlebars->23->1057"
5946 + "default.handlebars->23->1071"
5947 ]
5948 },
5949 {
@@ -5938,7 +5951,7 @@
5951 "en": "Edit Device Group Permissions",
5952 "nl": "Bewerk apparaatgroep rechten",
5953 "xloc": [
5941 - "default.handlebars->23->1087"
5954 + "default.handlebars->23->1101"
5955 ]
5956 },
5957 {
@@ -5950,7 +5963,7 @@
5963 "pt": "Editar consentimento do usuário do grupo de dispositivos",
5964 "ru": "Редактировать согласие пользователя группы устройств",
5965 "xloc": [
5953 - "default.handlebars->23->1054"
5966 + "default.handlebars->23->1068"
5967 ]
5968 },
5969 {
@@ -5963,7 +5976,7 @@
5976 "ru": "Редактировать примечания устройства",
5977 "xloc": [
5978 "default-mobile.handlebars->9->305",
5966 - "default.handlebars->23->1079"
5979 + "default.handlebars->23->1093"
5980 ]
5981 },
5982 {
@@ -5992,7 +6005,7 @@
6005 "ru": "Редактировать примечания",
6006 "xloc": [
6007 "default-mobile.handlebars->9->318",
5995 - "default.handlebars->23->1097"
6008 + "default.handlebars->23->1111"
6009 ]
6010 },
6011 {
@@ -6004,7 +6017,7 @@
6017 "pt": "Editar permissões do grupo de dispositivos do usuário",
6018 "ru": "Редактировать права потребителя группы устройств",
6019 "xloc": [
6007 - "default.handlebars->23->1088"
6020 + "default.handlebars->23->1102"
6021 ]
6022 },
6023 {
@@ -6012,7 +6025,7 @@
6025 "en": "Edit User Group",
6026 "nl": "Bewerk de gebruikersgroep",
6027 "xloc": [
6015 - "default.handlebars->23->1282"
6028 + "default.handlebars->23->1296"
6029 ]
6030 },
6031 {
@@ -6037,10 +6050,10 @@
6050 "ru": "Эл. почта",
6051 "xloc": [
6052 "default-mobile.handlebars->9->37",
6040 - "default.handlebars->23->1220",
6041 - "default.handlebars->23->1302",
6042 - "default.handlebars->23->1303",
6043 - "default.handlebars->23->1331",
6053 + "default.handlebars->23->1234",
6054 + "default.handlebars->23->1316",
6055 + "default.handlebars->23->1317",
6056 + "default.handlebars->23->1345",
6057 "default.handlebars->23->283"
6058 ]
6059 },
@@ -6054,7 +6067,7 @@
6067 "ru": "Изменение адреса эл. почты",
6068 "xloc": [
6069 "default-mobile.handlebars->9->38",
6057 - "default.handlebars->23->910"
6070 + "default.handlebars->23->924"
6071 ]
6072 },
6073 {
@@ -6067,7 +6080,7 @@
6080 "ru": "Подтверждение эл. почты",
6081 "xloc": [
6082 "default-mobile.handlebars->9->36",
6070 - "default.handlebars->23->908"
6083 + "default.handlebars->23->922"
6084 ]
6085 },
6086 {
@@ -6079,7 +6092,7 @@
6092 "pt": "O email foi verificado",
6093 "ru": "Ел. почта подтверждена",
6094 "xloc": [
6082 - "default.handlebars->23->1299"
6095 + "default.handlebars->23->1313"
6096 ]
6097 },
6098 {
@@ -6091,7 +6104,7 @@
6104 "pt": "O email foi verificado.",
6105 "ru": "Ел. почта подтверждена.",
6106 "xloc": [
6094 - "default.handlebars->23->1226"
6107 + "default.handlebars->23->1240"
6108 ]
6109 },
6110 {
@@ -6103,7 +6116,7 @@
6116 "pt": "Email não verificado",
6117 "ru": "Ел. почта не подтверждена",
6118 "xloc": [
6106 - "default.handlebars->23->1300"
6119 + "default.handlebars->23->1314"
6120 ]
6121 },
6122 {
@@ -6168,7 +6181,7 @@
6181 "pt": "Inglês",
6182 "ru": "Английский",
6183 "xloc": [
6171 - "default.handlebars->23->744"
6184 + "default.handlebars->23->758"
6185 ]
6186 },
6187 {
@@ -6180,7 +6193,7 @@
6193 "pt": "Inglês (Austrália)",
6194 "ru": "Английский (Австралия)",
6195 "xloc": [
6183 - "default.handlebars->23->745"
6196 + "default.handlebars->23->759"
6197 ]
6198 },
6199 {
@@ -6192,7 +6205,7 @@
6205 "pt": "Inglês (Belize)",
6206 "ru": "Английский (Белиз)",
6207 "xloc": [
6195 - "default.handlebars->23->746"
6208 + "default.handlebars->23->760"
6209 ]
6210 },
6211 {
@@ -6204,7 +6217,7 @@
6217 "pt": "Inglês (Canadá)",
6218 "ru": "Английский (Канада)",
6219 "xloc": [
6207 - "default.handlebars->23->747"
6220 + "default.handlebars->23->761"
6221 ]
6222 },
6223 {
@@ -6216,7 +6229,7 @@
6229 "pt": "Inglês (Irlanda)",
6230 "ru": "Английский (Ирландия)",
6231 "xloc": [
6219 - "default.handlebars->23->748"
6232 + "default.handlebars->23->762"
6233 ]
6234 },
6235 {
@@ -6228,7 +6241,7 @@
6241 "pt": "Inglês (Jamaica)",
6242 "ru": "Английский (Ямайка)",
6243 "xloc": [
6231 - "default.handlebars->23->749"
6244 + "default.handlebars->23->763"
6245 ]
6246 },
6247 {
@@ -6240,7 +6253,7 @@
6253 "pt": "Inglês (Nova Zelândia)",
6254 "ru": "Английский (Новая Зеландия)",
6255 "xloc": [
6243 - "default.handlebars->23->750"
6256 + "default.handlebars->23->764"
6257 ]
6258 },
6259 {
@@ -6252,7 +6265,7 @@
6265 "pt": "Inglês (Filipinas)",
6266 "ru": "Английский (Филиппины)",
6267 "xloc": [
6255 - "default.handlebars->23->751"
6268 + "default.handlebars->23->765"
6269 ]
6270 },
6271 {
@@ -6264,7 +6277,7 @@
6277 "pt": "Inglês (África do Sul)",
6278 "ru": "Английский (Южная Африка)",
6279 "xloc": [
6267 - "default.handlebars->23->752"
6280 + "default.handlebars->23->766"
6281 ]
6282 },
6283 {
@@ -6276,7 +6289,7 @@
6289 "pt": "Inglês (Trinidad Tobago)",
6290 "ru": "Английский (Тринидад и Тобаго)",
6291 "xloc": [
6279 - "default.handlebars->23->753"
6292 + "default.handlebars->23->767"
6293 ]
6294 },
6295 {
@@ -6289,7 +6302,7 @@
6302 "pt": "Inglês (Reino Unido)",
6303 "ru": "Английский (Великобритания)",
6304 "xloc": [
6292 - "default.handlebars->23->754"
6305 + "default.handlebars->23->768"
6306 ]
6307 },
6308 {
@@ -6302,7 +6315,7 @@
6315 "pt": "Inglês (Estados Unidos)",
6316 "ru": "Английский (Соединенные Штаты)",
6317 "xloc": [
6305 - "default.handlebars->23->755"
6318 + "default.handlebars->23->769"
6319 ]
6320 },
6321 {
@@ -6315,7 +6328,7 @@
6328 "pt": "Inglês (Zimbábue)",
6329 "ru": "Английский (Зимбабве)",
6330 "xloc": [
6318 - "default.handlebars->23->756"
6331 + "default.handlebars->23->770"
6332 ]
6333 },
6334 {
@@ -6327,8 +6340,8 @@
6340 "pt": "Entrar",
6341 "ru": "Ввод",
6342 "xloc": [
6330 - "default.handlebars->23->936",
6331 - "default.handlebars->23->937"
6343 + "default.handlebars->23->950",
6344 + "default.handlebars->23->951"
6345 ]
6346 },
6347 {
@@ -6340,7 +6353,7 @@
6353 "pt": "Insira uma lista separada por vírgulas de nomes de regiões administrativas.",
6354 "ru": "Введите разделенный запятыми список имен административных областей.",
6355 "xloc": [
6343 - "default.handlebars->23->1230"
6356 + "default.handlebars->23->1244"
6357 ]
6358 },
6359 {
@@ -6364,7 +6377,7 @@
6377 "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.",
6378 "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что дистанционный курсор установлен в правильное положение.",
6379 "xloc": [
6367 - "default.handlebars->23->588"
6380 + "default.handlebars->23->602"
6381 ]
6382 },
6383 {
@@ -6425,7 +6438,7 @@
6438 "pt": "Esperanto",
6439 "ru": "Эсперанто",
6440 "xloc": [
6428 - "default.handlebars->23->757"
6441 + "default.handlebars->23->771"
6442 ]
6443 },
6444 {
@@ -6437,7 +6450,7 @@
6450 "pt": "Estoniano",
6451 "ru": "Эстонский",
6452 "xloc": [
6440 - "default.handlebars->23->758"
6453 + "default.handlebars->23->772"
6454 ]
6455 },
6456 {
@@ -6449,7 +6462,7 @@
6462 "pt": "Detalhes do evento",
6463 "ru": "Детайли события",
6464 "xloc": [
6452 - "default.handlebars->23->665"
6465 + "default.handlebars->23->679"
6466 ]
6467 },
6468 {
@@ -6461,7 +6474,7 @@
6474 "pt": "Exportação da lista de eventos",
6475 "ru": "Экспорт списка событий",
6476 "xloc": [
6464 - "default.handlebars->23->1174"
6477 + "default.handlebars->23->1188"
6478 ]
6479 },
6480 {
@@ -6514,7 +6527,7 @@
6527 "pt": "ASCII estendido",
6528 "ru": "Расширенный ASCII",
6529 "xloc": [
6517 - "default.handlebars->23->614"
6530 + "default.handlebars->23->628"
6531 ]
6532 },
6533 {
@@ -6535,7 +6548,7 @@
6548 "en": "External",
6549 "nl": "Extern",
6550 "xloc": [
6538 - "default.handlebars->23->1408"
6551 + "default.handlebars->23->1422"
6552 ]
6553 },
6554 {
@@ -6548,7 +6561,7 @@
6561 "pt": "FYRO Macedonian",
6562 "ru": "Mакедонский (БЮР)",
6563 "xloc": [
6551 - "default.handlebars->23->808"
6564 + "default.handlebars->23->822"
6565 ]
6566 },
6567 {
@@ -6560,7 +6573,7 @@
6573 "pt": "O servidor remoto retornou um erro: (429) Too Many Requests.",
6574 "ru": "Фарерский",
6575 "xloc": [
6563 - "default.handlebars->23->759"
6576 + "default.handlebars->23->773"
6577 ]
6578 },
6579 {
@@ -6586,7 +6599,7 @@
6599 "pt": "Persa (persa)",
6600 "ru": "Фарси (Персидский)",
6601 "xloc": [
6589 - "default.handlebars->23->760"
6602 + "default.handlebars->23->774"
6603 ]
6604 },
6605 {
@@ -6612,7 +6625,7 @@
6625 "pt": "Recursos",
6626 "ru": "Функции",
6627 "xloc": [
6615 - "default.handlebars->23->964"
6628 + "default.handlebars->23->978"
6629 ]
6630 },
6631 {
@@ -6624,7 +6637,7 @@
6637 "pt": "Fijiano",
6638 "ru": "Фиджи",
6639 "xloc": [
6627 - "default.handlebars->23->761"
6640 + "default.handlebars->23->775"
6641 ]
6642 },
6643 {
@@ -6638,7 +6651,7 @@
6651 "ru": "Редактор файлов",
6652 "xloc": [
6653 "default-mobile.handlebars->9->254",
6641 - "default.handlebars->23->637"
6654 + "default.handlebars->23->651"
6655 ]
6656 },
6657 {
@@ -6663,7 +6676,7 @@
6676 "pt": "Driver do sistema de arquivos",
6677 "ru": "Драйвер файловой системы",
6678 "xloc": [
6666 - "default.handlebars->23->596"
6679 + "default.handlebars->23->610"
6680 ]
6681 },
6682 {
@@ -6676,7 +6689,7 @@
6689 "pt": "Arquivos",
6690 "ru": "Файлы",
6691 "xloc": [
6679 - "default.handlebars->23->1051",
6692 + "default.handlebars->23->1065",
6693 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
6694 "default.handlebars->contextMenu->cxfiles"
6695 ]
@@ -6703,7 +6716,7 @@
6716 "pt": "Notificação arquivos",
6717 "ru": "Уведомление файлов",
6718 "xloc": [
6706 - "default.handlebars->23->972"
6719 + "default.handlebars->23->986"
6720 ]
6721 },
6722 {
@@ -6715,7 +6728,7 @@
6728 "pt": "Arquivos do prompt",
6729 "ru": "Запрос файлов",
6730 "xloc": [
6718 - "default.handlebars->23->971"
6731 + "default.handlebars->23->985"
6732 ]
6733 },
6734 {
@@ -6742,7 +6755,7 @@
6755 "pt": "Finlandês",
6756 "ru": "Финский",
6757 "xloc": [
6745 - "default.handlebars->23->762"
6758 + "default.handlebars->23->776"
6759 ]
6760 },
6761 {
@@ -6797,8 +6810,8 @@
6810 "pt": "Forçar redefinição de senha no próximo login.",
6811 "ru": "Принудительно сбросить пароль при следующем входе в систему.",
6812 "xloc": [
6800 - "default.handlebars->23->1224",
6801 - "default.handlebars->23->1338"
6813 + "default.handlebars->23->1238",
6814 + "default.handlebars->23->1352"
6815 ]
6816 },
6817 {
@@ -6861,8 +6874,8 @@
6874 "pt": "Livre",
6875 "ru": "Свободно",
6876 "xloc": [
6864 - "default.handlebars->23->1369",
6865 - "default.handlebars->23->1371"
6877 + "default.handlebars->23->1383",
6878 + "default.handlebars->23->1385"
6879 ]
6880 },
6881 {
@@ -6888,7 +6901,7 @@
6901 "pt": "Francês (Bélgica)",
6902 "ru": "Французский (Бельгия)",
6903 "xloc": [
6891 - "default.handlebars->23->764"
6904 + "default.handlebars->23->778"
6905 ]
6906 },
6907 {
@@ -6901,7 +6914,7 @@
6914 "pt": "Francês (Canadá)",
6915 "ru": "Французский (Канада)",
6916 "xloc": [
6904 - "default.handlebars->23->765"
6917 + "default.handlebars->23->779"
6918 ]
6919 },
6920 {
@@ -6914,7 +6927,7 @@
6927 "pt": "Francês (França)",
6928 "ru": "Французский (Франция)",
6929 "xloc": [
6917 - "default.handlebars->23->766"
6930 + "default.handlebars->23->780"
6931 ]
6932 },
6933 {
@@ -6927,7 +6940,7 @@
6940 "pt": "Francês (Luxemburgo)",
6941 "ru": "Французский (Люксембург)",
6942 "xloc": [
6930 - "default.handlebars->23->767"
6943 + "default.handlebars->23->781"
6944 ]
6945 },
6946 {
@@ -6940,7 +6953,7 @@
6953 "pt": "Francês (Mônaco)",
6954 "ru": "Французский (Монако)",
6955 "xloc": [
6943 - "default.handlebars->23->768"
6956 + "default.handlebars->23->782"
6957 ]
6958 },
6959 {
@@ -6953,7 +6966,7 @@
6966 "pt": "Francês (Padrão)",
6967 "ru": "Французский (Стандартный)",
6968 "xloc": [
6956 - "default.handlebars->23->763"
6969 + "default.handlebars->23->777"
6970 ]
6971 },
6972 {
@@ -6966,7 +6979,7 @@
6979 "pt": "Francês (Suíça)",
6980 "ru": "Французский (Швейцария)",
6981 "xloc": [
6969 - "default.handlebars->23->769"
6982 + "default.handlebars->23->783"
6983 ]
6984 },
6985 {
@@ -6979,7 +6992,7 @@
6992 "pt": "Frísio",
6993 "ru": "Фризский",
6994 "xloc": [
6982 - "default.handlebars->23->770"
6995 + "default.handlebars->23->784"
6996 ]
6997 },
6998 {
@@ -6992,7 +7005,7 @@
7005 "pt": "Friuliano",
7006 "ru": "Фриульский",
7007 "xloc": [
6995 - "default.handlebars->23->771"
7008 + "default.handlebars->23->785"
7009 ]
7010 },
7011 {
@@ -7009,9 +7022,9 @@
7022 "default-mobile.handlebars->9->292",
7023 "default-mobile.handlebars->9->310",
7024 "default-mobile.handlebars->9->64",
7012 - "default.handlebars->23->1066",
7013 - "default.handlebars->23->1235",
7014 - "default.handlebars->23->943"
7025 + "default.handlebars->23->1080",
7026 + "default.handlebars->23->1249",
7027 + "default.handlebars->23->957"
7028 ]
7029 },
7030 {
@@ -7024,7 +7037,7 @@
7037 "pt": "Administrador Pleno (todos os direitos)",
7038 "ru": "Администратор с полным доступом (все права)",
7039 "xloc": [
7027 - "default.handlebars->23->1089"
7040 + "default.handlebars->23->1103"
7041 ]
7042 },
7043 {
@@ -7032,9 +7045,9 @@
7045 "en": "Full Device Group Administrator",
7046 "nl": "Volledige apparaatgroep beheerder",
7047 "xloc": [
7035 - "default.handlebars->23->1006",
7036 - "default.handlebars->23->1272",
7037 - "default.handlebars->23->1346"
7048 + "default.handlebars->23->1020",
7049 + "default.handlebars->23->1286",
7050 + "default.handlebars->23->1360"
7051 ]
7052 },
7053 {
@@ -7061,7 +7074,7 @@
7074 "pt": "Administrador completo",
7075 "ru": "Администратор с полным доступом",
7076 "xloc": [
7064 - "default.handlebars->23->1295"
7077 + "default.handlebars->23->1309"
7078 ]
7079 },
7080 {
@@ -7074,7 +7087,7 @@
7087 "pt": "Gaélico (irlandês)",
7088 "ru": "Гэльский (Ирландский)",
7089 "xloc": [
7077 - "default.handlebars->23->773"
7090 + "default.handlebars->23->787"
7091 ]
7092 },
7093 {
@@ -7087,7 +7100,7 @@
7100 "pt": "Gaélico (escocês)",
7101 "ru": "Гэльский (Шотландия)",
7102 "xloc": [
7090 - "default.handlebars->23->772"
7103 + "default.handlebars->23->786"
7104 ]
7105 },
7106 {
@@ -7100,7 +7113,7 @@
7113 "pt": "Galego",
7114 "ru": "Галицкий",
7115 "xloc": [
7103 - "default.handlebars->23->774"
7116 + "default.handlebars->23->788"
7117 ]
7118 },
7119 {
@@ -7183,7 +7196,7 @@
7196 "pt": "Georgiano",
7197 "ru": "Грузинский",
7198 "xloc": [
7186 - "default.handlebars->23->775"
7199 + "default.handlebars->23->789"
7200 ]
7201 },
7202 {
@@ -7195,7 +7208,7 @@
7208 "pt": "Alemão (Áustria)",
7209 "ru": "Немецкий (Австрия)",
7210 "xloc": [
7198 - "default.handlebars->23->777"
7211 + "default.handlebars->23->791"
7212 ]
7213 },
7214 {
@@ -7207,7 +7220,7 @@
7220 "pt": "Alemão (Alemanha)",
7221 "ru": "Немецкий (Германия)",
7222 "xloc": [
7210 - "default.handlebars->23->778"
7223 + "default.handlebars->23->792"
7224 ]
7225 },
7226 {
@@ -7219,7 +7232,7 @@
7232 "pt": "Alemão (Liechtenstein)",
7233 "ru": "Немецкий (Лихтенштейн)",
7234 "xloc": [
7222 - "default.handlebars->23->779"
7235 + "default.handlebars->23->793"
7236 ]
7237 },
7238 {
@@ -7231,7 +7244,7 @@
7244 "pt": "Alemão (Luxemburgo)",
7245 "ru": "Немецкий (Люксембург)",
7246 "xloc": [
7234 - "default.handlebars->23->780"
7247 + "default.handlebars->23->794"
7248 ]
7249 },
7250 {
@@ -7243,7 +7256,7 @@
7256 "pt": "Alemão (Padrão)",
7257 "ru": "Немецкий (Стандартный)",
7258 "xloc": [
7246 - "default.handlebars->23->776"
7259 + "default.handlebars->23->790"
7260 ]
7261 },
7262 {
@@ -7255,7 +7268,7 @@
7268 "pt": "Alemão (Suíça)",
7269 "ru": "German (Switzerland)",
7270 "xloc": [
7258 - "default.handlebars->23->781"
7271 + "default.handlebars->23->795"
7272 ]
7273 },
7274 {
@@ -7308,7 +7321,7 @@
7321 "pt": "Bom",
7322 "ru": "Хорошо",
7323 "xloc": [
7311 - "default.handlebars->23->939"
7324 + "default.handlebars->23->953"
7325 ]
7326 },
7327 {
@@ -7337,7 +7350,7 @@
7350 "pt": "Grego",
7351 "ru": "Греческий",
7352 "xloc": [
7340 - "default.handlebars->23->782"
7353 + "default.handlebars->23->796"
7354 ]
7355 },
7356 {
@@ -7374,7 +7387,7 @@
7387 "en": "Group Members",
7388 "nl": "Groeps leden",
7389 "xloc": [
7377 - "default.handlebars->23->1264"
7390 + "default.handlebars->23->1278"
7391 ]
7392 },
7393 {
@@ -7387,7 +7400,7 @@
7400 "pt": "Permissões de grupo para o usuário {0}.",
7401 "ru": "Групповые права для потребителя {0}.",
7402 "xloc": [
7390 - "default.handlebars->23->1065"
7403 + "default.handlebars->23->1079"
7404 ]
7405 },
7406 {
@@ -7395,7 +7408,7 @@
7408 "en": "Group permissions for {0}.",
7409 "nl": "Groepsrechten voor {0}.",
7410 "xloc": [
7398 - "default.handlebars->23->1064"
7411 + "default.handlebars->23->1078"
7412 ]
7413 },
7414 {
@@ -7417,7 +7430,7 @@
7430 "en": "Groups",
7431 "nl": "Groepen",
7432 "xloc": [
7420 - "default.handlebars->23->1179",
7433 + "default.handlebars->23->1193",
7434 "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups"
7435 ]
7436 },
@@ -7431,7 +7444,7 @@
7444 "pt": "Gujarati",
7445 "ru": "Гуджарати",
7446 "xloc": [
7434 - "default.handlebars->23->783"
7447 + "default.handlebars->23->797"
7448 ]
7449 },
7450 {
@@ -7459,7 +7472,7 @@
7472 "pt": "Haitiano",
7473 "ru": "Гаитянский",
7474 "xloc": [
7462 - "default.handlebars->23->784"
7475 + "default.handlebars->23->798"
7476 ]
7477 },
7478 {
@@ -7485,7 +7498,7 @@
7498 "pt": "Forçar desconexão do agente",
7499 "ru": "Жесткое отключение агента",
7500 "xloc": [
7488 - "default.handlebars->23->681"
7501 + "default.handlebars->23->695"
7502 ]
7503 },
7504 {
@@ -7493,7 +7506,7 @@
7506 "en": "Heap Total",
7507 "nl": "Heap Totaal",
7508 "xloc": [
7496 - "default.handlebars->23->1410"
7509 + "default.handlebars->23->1424"
7510 ]
7511 },
7512 {
@@ -7501,7 +7514,7 @@
7514 "en": "Heap Used",
7515 "nl": "Heap gebruikt",
7516 "xloc": [
7504 - "default.handlebars->23->1409"
7517 + "default.handlebars->23->1423"
7518 ]
7519 },
7520 {
@@ -7513,7 +7526,7 @@
7526 "pt": "Hebraico",
7527 "ru": "Иврит",
7528 "xloc": [
7516 - "default.handlebars->23->785"
7529 + "default.handlebars->23->799"
7530 ]
7531 },
7532 {
@@ -7524,7 +7537,7 @@
7537 "nl": "Help bij het vertalen van MeshCentral",
7538 "ru": "Помочь перевести MeshCentral",
7539 "xloc": [
7527 - "default.handlebars->23->898"
7540 + "default.handlebars->23->912"
7541 ]
7542 },
7543 {
@@ -7552,7 +7565,7 @@
7565 "pt": "Hindi",
7566 "ru": "Хинди",
7567 "xloc": [
7555 - "default.handlebars->23->786"
7568 + "default.handlebars->23->800"
7569 ]
7570 },
7571 {
@@ -7578,7 +7591,7 @@
7591 "ru": "Задержана 1 запись для копирования",
7592 "xloc": [
7593 "default-mobile.handlebars->9->263",
7581 - "default.handlebars->23->646"
7594 + "default.handlebars->23->660"
7595 ]
7596 },
7597 {
@@ -7591,7 +7604,7 @@
7604 "ru": "Задержана 1 запись для перемещения",
7605 "xloc": [
7606 "default-mobile.handlebars->9->267",
7594 - "default.handlebars->23->650"
7607 + "default.handlebars->23->664"
7608 ]
7609 },
7610 {
@@ -7604,7 +7617,7 @@
7617 "ru": "Задержана/о {0} запись/ей для копирования",
7618 "xloc": [
7619 "default-mobile.handlebars->9->261",
7607 - "default.handlebars->23->644"
7620 + "default.handlebars->23->658"
7621 ]
7622 },
7623 {
@@ -7617,7 +7630,7 @@
7630 "ru": "Задержана/о {0} запись/ей для перемещения",
7631 "xloc": [
7632 "default-mobile.handlebars->9->265",
7620 - "default.handlebars->23->648"
7633 + "default.handlebars->23->662"
7634 ]
7635 },
7636 {
@@ -7630,7 +7643,7 @@
7643 "ru": "Задержанa/о {0} запись/ей {1} для {2}",
7644 "xloc": [
7645 "default-mobile.handlebars->9->88",
7633 - "default.handlebars->23->1161"
7646 + "default.handlebars->23->1175"
7647 ]
7648 },
7649 {
@@ -7650,7 +7663,7 @@
7663 "default.handlebars->23->435",
7664 "default.handlebars->23->436",
7665 "default.handlebars->23->438",
7653 - "default.handlebars->23->574"
7666 + "default.handlebars->23->588"
7667 ]
7668 },
7669 {
@@ -7662,7 +7675,7 @@
7675 "pt": "Sincronização de nome de host",
7676 "ru": "Синхронизация имени хоста",
7677 "xloc": [
7665 - "default.handlebars->23->962"
7678 + "default.handlebars->23->976"
7679 ]
7680 },
7681 {
@@ -7674,7 +7687,7 @@
7687 "pt": "Húngaro",
7688 "ru": "Венгерский",
7689 "xloc": [
7677 - "default.handlebars->23->787"
7690 + "default.handlebars->23->801"
7691 ]
7692 },
7693 {
@@ -7747,7 +7760,7 @@
7760 "pt": "islandês",
7761 "ru": "Исландский",
7762 "xloc": [
7750 - "default.handlebars->23->788"
7763 + "default.handlebars->23->802"
7764 ]
7765 },
7766 {
@@ -7761,7 +7774,7 @@
7774 "ru": "Выбор иконки",
7775 "xloc": [
7776 "default-mobile.handlebars->9->221",
7764 - "default.handlebars->23->572"
7777 + "default.handlebars->23->586"
7778 ]
7779 },
7780 {
@@ -7798,7 +7811,7 @@
7811 "pt": "Indonésia",
7812 "ru": "Индонезийский",
7813 "xloc": [
7801 - "default.handlebars->23->789"
7814 + "default.handlebars->23->803"
7815 ]
7816 },
7817 {
@@ -7850,7 +7863,7 @@
7863 "pt": "Instalar",
7864 "ru": "Установка",
7865 "xloc": [
7853 - "default.handlebars->23->1001"
7866 + "default.handlebars->23->1015"
7867 ]
7868 },
7869 {
@@ -7883,7 +7896,7 @@
7896 "pt": "Instalar CIRA",
7897 "ru": "Установка CIRA",
7898 "xloc": [
7886 - "default.handlebars->23->993"
7899 + "default.handlebars->23->1007"
7900 ]
7901 },
7902 {
@@ -7895,7 +7908,7 @@
7908 "pt": "Instalação local",
7909 "ru": "Локальная установка",
7910 "xloc": [
7898 - "default.handlebars->23->995"
7911 + "default.handlebars->23->1009"
7912 ]
7913 },
7914 {
@@ -7920,7 +7933,7 @@
7933 "pt": "Intel (F10 = ESC+[OM)",
7934 "ru": "Intel (F10 = ESC+[OM)",
7935 "xloc": [
7923 - "default.handlebars->23->616",
7936 + "default.handlebars->23->630",
7937 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
7938 ]
7939 },
@@ -7933,10 +7946,10 @@
7946 "pt": "Intel AMT",
7947 "ru": "Intel AMT",
7948 "xloc": [
7936 - "default.handlebars->23->1121",
7937 - "default.handlebars->23->1127",
7938 - "default.handlebars->23->1406",
7939 - "default.handlebars->23->1426"
7949 + "default.handlebars->23->1135",
7950 + "default.handlebars->23->1141",
7951 + "default.handlebars->23->1420",
7952 + "default.handlebars->23->1440"
7953 ]
7954 },
7955 {
@@ -8046,7 +8059,7 @@
8059 "pt": "Intel ASCII",
8060 "ru": "Intel ASCII",
8061 "xloc": [
8049 - "default.handlebars->23->615"
8062 + "default.handlebars->23->629"
8063 ]
8064 },
8065 {
@@ -8061,11 +8074,11 @@
8074 "default-mobile.handlebars->9->123",
8075 "default-mobile.handlebars->9->187",
8076 "default-mobile.handlebars->9->192",
8077 + "default.handlebars->23->1001",
8078 "default.handlebars->23->411",
8079 "default.handlebars->23->461",
8080 "default.handlebars->23->477",
8067 - "default.handlebars->23->979",
8068 - "default.handlebars->23->987"
8081 + "default.handlebars->23->993"
8082 ]
8083 },
8084 {
@@ -8117,7 +8130,7 @@
8130 "pt": "Intel&reg; Política da AMT",
8131 "ru": "Политика Intel&reg; AMT",
8132 "xloc": [
8120 - "default.handlebars->23->1019"
8133 + "default.handlebars->23->1033"
8134 ]
8135 },
8136 {
@@ -8192,8 +8205,8 @@
8205 "pt": "Intel&reg; Área de trabalho AMT e eventos seriais.",
8206 "ru": "Настольные и серийные события Intel&reg; AMT.",
8207 "xloc": [
8195 - "default.handlebars->23->1117",
8196 - "default.handlebars->23->904"
8208 + "default.handlebars->23->1131",
8209 + "default.handlebars->23->918"
8210 ]
8211 },
8212 {
@@ -8257,8 +8270,8 @@
8270 "ru": "Только Intel&reg; AMT, без агента",
8271 "xloc": [
8272 "default-mobile.handlebars->9->274",
8260 - "default.handlebars->23->933",
8261 - "default.handlebars->23->955"
8273 + "default.handlebars->23->947",
8274 + "default.handlebars->23->969"
8275 ]
8276 },
8277 {
@@ -8375,7 +8388,7 @@
8388 "pt": "Interativo",
8389 "ru": "undefined",
8390 "xloc": [
8378 - "default.handlebars->23->597"
8391 + "default.handlebars->23->611"
8392 ]
8393 },
8394 {
@@ -8414,7 +8427,7 @@
8427 "pt": "Inuktitut",
8428 "ru": "undefined",
8429 "xloc": [
8417 - "default.handlebars->23->790"
8430 + "default.handlebars->23->804"
8431 ]
8432 },
8433 {
@@ -8423,7 +8436,7 @@
8436 "en": "Invalid Device Group Type",
8437 "nl": "Ongeldige apparaatgroep type",
8438 "xloc": [
8426 - "default.handlebars->23->1383"
8439 + "default.handlebars->23->1397"
8440 ]
8441 },
8442 {
@@ -8432,7 +8445,7 @@
8445 "en": "Invalid JSON",
8446 "nl": "Onjuiste JSON",
8447 "xloc": [
8435 - "default.handlebars->23->1377"
8448 + "default.handlebars->23->1391"
8449 ]
8450 },
8451 {
@@ -8444,8 +8457,8 @@
8457 "pt": "Formato de arquivo JSON inválido.",
8458 "ru": "undefined",
8459 "xloc": [
8447 - "default.handlebars->23->1205",
8448 - "default.handlebars->23->1207"
8460 + "default.handlebars->23->1219",
8461 + "default.handlebars->23->1221"
8462 ]
8463 },
8464 {
@@ -8456,7 +8469,7 @@
8469 "nl": "Ongeldig JSON-bestand: {0}.",
8470 "pt": "Arquivo JSON inválido: {0}.",
8471 "xloc": [
8459 - "default.handlebars->23->1203"
8472 + "default.handlebars->23->1217"
8473 ]
8474 },
8475 {
@@ -8465,7 +8478,7 @@
8478 "en": "Invalid PKCS signature",
8479 "nl": "Onjuiste PKCS handtekening",
8480 "xloc": [
8468 - "default.handlebars->23->1375"
8481 + "default.handlebars->23->1389"
8482 ]
8483 },
8484 {
@@ -8474,7 +8487,7 @@
8487 "en": "Invalid RSA siguature",
8488 "nl": "Ongeldige RSA handtekening",
8489 "xloc": [
8477 - "default.handlebars->23->1376"
8490 + "default.handlebars->23->1390"
8491 ]
8492 },
8493 {
@@ -8545,7 +8558,7 @@
8558 "pt": "Convite",
8559 "ru": "Пригласить",
8560 "xloc": [
8548 - "default.handlebars->23->1003",
8561 + "default.handlebars->23->1017",
8562 "default.handlebars->23->236",
8563 "default.handlebars->23->313"
8564 ]
@@ -8572,7 +8585,7 @@
8585 "pt": "Convide alguém para instalar o agente de malha nessa malha.",
8586 "ru": "Отправить приглашение на установку Mesh Агента",
8587 "xloc": [
8575 - "default.handlebars->23->1002",
8588 + "default.handlebars->23->1016",
8589 "default.handlebars->23->235"
8590 ]
8591 },
@@ -8598,7 +8611,7 @@
8611 "pt": "Irish",
8612 "ru": "Ирландский",
8613 "xloc": [
8601 - "default.handlebars->23->791"
8614 + "default.handlebars->23->805"
8615 ]
8616 },
8617 {
@@ -8611,7 +8624,7 @@
8624 "pt": "Italiano (Padrão)",
8625 "ru": "Итальянский (Стандартный)",
8626 "xloc": [
8614 - "default.handlebars->23->792"
8627 + "default.handlebars->23->806"
8628 ]
8629 },
8630 {
@@ -8624,7 +8637,7 @@
8637 "pt": "Italiano (Suíça)",
8638 "ru": "Итальянский (Швейцария)",
8639 "xloc": [
8627 - "default.handlebars->23->793"
8640 + "default.handlebars->23->807"
8641 ]
8642 },
8643 {
@@ -8637,8 +8650,8 @@
8650 "pt": "Formato JSON",
8651 "ru": "Формат JSON",
8652 "xloc": [
8640 - "default.handlebars->23->1172",
8641 - "default.handlebars->23->1211"
8653 + "default.handlebars->23->1186",
8654 + "default.handlebars->23->1225"
8655 ]
8656 },
8657 {
@@ -8651,7 +8664,7 @@
8664 "pt": "japonês",
8665 "ru": "Японский",
8666 "xloc": [
8654 - "default.handlebars->23->794"
8667 + "default.handlebars->23->808"
8668 ]
8669 },
8670 {
@@ -8663,7 +8676,7 @@
8676 "pt": "Kannada",
8677 "ru": "Каннада",
8678 "xloc": [
8666 - "default.handlebars->23->795"
8679 + "default.handlebars->23->809"
8680 ]
8681 },
8682 {
@@ -8675,7 +8688,7 @@
8688 "pt": "Caxemira",
8689 "ru": "Кашмирский",
8690 "xloc": [
8678 - "default.handlebars->23->796"
8691 + "default.handlebars->23->810"
8692 ]
8693 },
8694 {
@@ -8687,7 +8700,7 @@
8700 "pt": "Cazaque",
8701 "ru": "Казахский",
8702 "xloc": [
8690 - "default.handlebars->23->797"
8703 + "default.handlebars->23->811"
8704 ]
8705 },
8706 {
@@ -8699,7 +8712,7 @@
8712 "pt": "KernelDriver",
8713 "ru": "Драйвер ядра",
8714 "xloc": [
8702 - "default.handlebars->23->598"
8715 + "default.handlebars->23->612"
8716 ]
8717 },
8718 {
@@ -8712,8 +8725,8 @@
8725 "pt": "Nome da chave",
8726 "ru": "Имя ключа",
8727 "xloc": [
8715 - "default.handlebars->23->688",
8716 - "default.handlebars->23->691"
8728 + "default.handlebars->23->702",
8729 + "default.handlebars->23->705"
8730 ]
8731 },
8732 {
@@ -8738,7 +8751,7 @@
8751 "pt": "Khmer",
8752 "ru": "Кхмерский",
8753 "xloc": [
8741 - "default.handlebars->23->798"
8754 + "default.handlebars->23->812"
8755 ]
8756 },
8757 {
@@ -8750,7 +8763,7 @@
8763 "pt": "Kirghiz",
8764 "ru": "Киргизский",
8765 "xloc": [
8753 - "default.handlebars->23->799"
8766 + "default.handlebars->23->813"
8767 ]
8768 },
8769 {
@@ -8762,7 +8775,7 @@
8775 "pt": "Klingon",
8776 "ru": "Клингонский",
8777 "xloc": [
8765 - "default.handlebars->23->800"
8778 + "default.handlebars->23->814"
8779 ]
8780 },
8781 {
@@ -8775,7 +8788,7 @@
8788 "pt": "coreano",
8789 "ru": "Korean",
8790 "xloc": [
8778 - "default.handlebars->23->801"
8791 + "default.handlebars->23->815"
8792 ]
8793 },
8794 {
@@ -8788,7 +8801,7 @@
8801 "pt": "Coreano (Coréia do Norte)",
8802 "ru": "Корейский (Северная Корея)",
8803 "xloc": [
8791 - "default.handlebars->23->802"
8804 + "default.handlebars->23->816"
8805 ]
8806 },
8807 {
@@ -8801,7 +8814,7 @@
8814 "pt": "Coreano (Coréia do Sul)",
8815 "ru": "Корейский (Южная Корея)",
8816 "xloc": [
8804 - "default.handlebars->23->803"
8817 + "default.handlebars->23->817"
8818 ]
8819 },
8820 {
@@ -8812,8 +8825,8 @@
8825 "pt": "LF",
8826 "ru": "LF",
8827 "xloc": [
8815 - "default.handlebars->23->611",
8816 - "default.handlebars->23->620"
8828 + "default.handlebars->23->625",
8829 + "default.handlebars->23->634"
8830 ]
8831 },
8832 {
@@ -8826,7 +8839,7 @@
8839 "pt": "Língua",
8840 "ru": "Язык",
8841 "xloc": [
8829 - "default.handlebars->23->896"
8842 + "default.handlebars->23->910"
8843 ]
8844 },
8845 {
@@ -8852,7 +8865,7 @@
8865 "pt": "Foco grande",
8866 "ru": "Большой Фокус",
8867 "xloc": [
8855 - "default.handlebars->23->587"
8868 + "default.handlebars->23->601"
8869 ]
8870 },
8871 {
@@ -8995,7 +9008,7 @@
9008 "pt": "Último acesso",
9009 "ru": "Последний доступ",
9010 "xloc": [
8998 - "default.handlebars->23->1180"
9011 + "default.handlebars->23->1194"
9012 ]
9013 },
9014 {
@@ -9008,7 +9021,7 @@
9021 "pt": "Último login",
9022 "ru": "Последний вход в систему",
9023 "xloc": [
9011 - "default.handlebars->23->1307"
9024 + "default.handlebars->23->1321"
9025 ]
9026 },
9027 {
@@ -9049,7 +9062,7 @@
9062 "pt": "Última alteração: {0}",
9063 "ru": "Последнее изменение: {0}",
9064 "xloc": [
9052 - "default.handlebars->23->1311"
9065 + "default.handlebars->23->1325"
9066 ]
9067 },
9068 {
@@ -9087,7 +9100,7 @@
9100 "pt": "Último login: {0}",
9101 "ru": "Последний вход в систему: {0}",
9102 "xloc": [
9090 - "default.handlebars->23->1190"
9103 + "default.handlebars->23->1204"
9104 ]
9105 },
9106 {
@@ -9152,7 +9165,7 @@
9165 "pt": "Latim",
9166 "ru": "Латинский",
9167 "xloc": [
9155 - "default.handlebars->23->804"
9168 + "default.handlebars->23->818"
9169 ]
9170 },
9171 {
@@ -9164,7 +9177,7 @@
9177 "pt": "letão",
9178 "ru": "Латышский",
9179 "xloc": [
9167 - "default.handlebars->23->805"
9180 + "default.handlebars->23->819"
9181 ]
9182 },
9183 {
@@ -9193,7 +9206,7 @@
9206 "pt": "Menos",
9207 "ru": "Меньше",
9208 "xloc": [
9196 - "default.handlebars->23->1440"
9209 + "default.handlebars->23->1454"
9210 ]
9211 },
9212 {
@@ -9219,7 +9232,7 @@
9232 "ru": "Ограниченный ввод",
9233 "xloc": [
9234 "default-mobile.handlebars->9->323",
9222 - "default.handlebars->23->1102"
9235 + "default.handlebars->23->1116"
9236 ]
9237 },
9238 {
@@ -9232,7 +9245,7 @@
9245 "ru": "Только ограниченный ввод",
9246 "xloc": [
9247 "default-mobile.handlebars->9->298",
9235 - "default.handlebars->23->1072"
9248 + "default.handlebars->23->1086"
9249 ]
9250 },
9251 {
@@ -9246,7 +9259,7 @@
9259 "ru": "Ссылка",
9260 "xloc": [
9261 "default-mobile.handlebars->9->68",
9249 - "default.handlebars->23->1133",
9262 + "default.handlebars->23->1147",
9263 "default.handlebars->container->column_l->p42->p42tbl->1->0->4"
9264 ]
9265 },
@@ -9464,7 +9477,7 @@
9477 "pt": "Lituano",
9478 "ru": "Литовский",
9479 "xloc": [
9467 - "default.handlebars->23->806"
9480 + "default.handlebars->23->820"
9481 ]
9482 },
9483 {
@@ -9479,9 +9492,9 @@
9492 "xloc": [
9493 "default-mobile.handlebars->9->31",
9494 "default.handlebars->23->561",
9482 - "default.handlebars->23->684",
9483 - "default.handlebars->23->950",
9484 - "default.handlebars->23->952"
9495 + "default.handlebars->23->698",
9496 + "default.handlebars->23->964",
9497 + "default.handlebars->23->966"
9498 ]
9499 },
9500 {
@@ -9529,7 +9542,7 @@
9542 "pt": "Configurações de localização",
9543 "ru": "Настройки локализации",
9544 "xloc": [
9532 - "default.handlebars->23->899",
9545 + "default.handlebars->23->913",
9546 "default.handlebars->container->column_l->p2->p2AccountActions->3->5"
9547 ]
9548 },
@@ -9567,7 +9580,7 @@
9580 "pt": "Bloquear conta",
9581 "ru": "Заблокировать аккаунт",
9582 "xloc": [
9570 - "default.handlebars->23->1241"
9583 + "default.handlebars->23->1255"
9584 ]
9585 },
9586 {
@@ -9580,7 +9593,7 @@
9593 "pt": "Bloqueado",
9594 "ru": "Заблокирован",
9595 "xloc": [
9583 - "default.handlebars->23->1191"
9596 + "default.handlebars->23->1205"
9597 ]
9598 },
9599 {
@@ -9593,7 +9606,7 @@
9606 "pt": "Conta bloqueada",
9607 "ru": "Заблокированный аккаунт",
9608 "xloc": [
9596 - "default.handlebars->23->1292"
9609 + "default.handlebars->23->1306"
9610 ]
9611 },
9612 {
@@ -9702,7 +9715,7 @@
9715 "pt": "Luxemburguês",
9716 "ru": "Люксембургский",
9717 "xloc": [
9705 - "default.handlebars->23->807"
9718 + "default.handlebars->23->821"
9719 ]
9720 },
9721 {
@@ -9759,8 +9772,8 @@
9772 "default.handlebars->23->192",
9773 "default.handlebars->23->379",
9774 "default.handlebars->23->481",
9762 - "default.handlebars->23->671",
9763 - "default.handlebars->23->672",
9775 + "default.handlebars->23->685",
9776 + "default.handlebars->23->686",
9777 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3"
9778 ]
9779 },
@@ -9899,7 +9912,7 @@
9912 "pt": "Mensagens do servidor principal",
9913 "ru": "Сообщения главного сервера",
9914 "xloc": [
9902 - "default.handlebars->23->1417"
9915 + "default.handlebars->23->1431"
9916 ]
9917 },
9918 {
@@ -9911,7 +9924,7 @@
9924 "pt": "Malaio",
9925 "ru": "Малайский",
9926 "xloc": [
9914 - "default.handlebars->23->809"
9927 + "default.handlebars->23->823"
9928 ]
9929 },
9930 {
@@ -9923,7 +9936,7 @@
9936 "pt": "Malaiala",
9937 "ru": "Малаяламский",
9938 "xloc": [
9926 - "default.handlebars->23->810"
9939 + "default.handlebars->23->824"
9940 ]
9941 },
9942 {
@@ -9935,7 +9948,7 @@
9948 "pt": "Maltês",
9949 "ru": "Мальтийский",
9950 "xloc": [
9938 - "default.handlebars->23->811"
9951 + "default.handlebars->23->825"
9952 ]
9953 },
9954 {
@@ -9962,8 +9975,8 @@
9975 "xloc": [
9976 "default-mobile.handlebars->9->295",
9977 "default-mobile.handlebars->9->313",
9965 - "default.handlebars->23->1069",
9966 - "default.handlebars->23->1092"
9978 + "default.handlebars->23->1083",
9979 + "default.handlebars->23->1106"
9980 ]
9981 },
9982 {
@@ -9977,8 +9990,8 @@
9990 "xloc": [
9991 "default-mobile.handlebars->9->294",
9992 "default-mobile.handlebars->9->312",
9980 - "default.handlebars->23->1068",
9981 - "default.handlebars->23->1091"
9993 + "default.handlebars->23->1082",
9994 + "default.handlebars->23->1105"
9995 ]
9996 },
9997 {
@@ -9998,7 +10011,7 @@
10011 "en": "Manage User Groups",
10012 "nl": "Beheer gebruikersgroepen.",
10013 "xloc": [
10001 - "default.handlebars->23->1240"
10014 + "default.handlebars->23->1254"
10015 ]
10016 },
10017 {
@@ -10011,7 +10024,7 @@
10024 "pt": "Gerenciar Usuários",
10025 "ru": "Управление пользователями",
10026 "xloc": [
10014 - "default.handlebars->23->1239"
10027 + "default.handlebars->23->1253"
10028 ]
10029 },
10030 {
@@ -10062,7 +10075,7 @@
10075 "pt": "Gerenciar usando um agente de software",
10076 "ru": "Управление с помощью программного агента",
10077 "xloc": [
10065 - "default.handlebars->23->932"
10078 + "default.handlebars->23->946"
10079 ]
10080 },
10081 {
@@ -10076,7 +10089,7 @@
10089 "ru": "Управляется с помощью программного агента",
10090 "xloc": [
10091 "default-mobile.handlebars->9->275",
10079 - "default.handlebars->23->956"
10092 + "default.handlebars->23->970"
10093 ]
10094 },
10095 {
@@ -10088,7 +10101,7 @@
10101 "pt": "Gerenciador",
10102 "ru": "Менеджер",
10103 "xloc": [
10091 - "default.handlebars->23->1196"
10104 + "default.handlebars->23->1210"
10105 ]
10106 },
10107 {
@@ -10126,7 +10139,7 @@
10139 "pt": "Maori",
10140 "ru": "Маори",
10141 "xloc": [
10129 - "default.handlebars->23->812"
10142 + "default.handlebars->23->826"
10143 ]
10144 },
10145 {
@@ -10153,7 +10166,7 @@
10166 "pt": "Marathi",
10167 "ru": "Маратхи",
10168 "xloc": [
10156 - "default.handlebars->23->813"
10169 + "default.handlebars->23->827"
10170 ]
10171 },
10172 {
@@ -10162,7 +10175,7 @@
10175 "en": "Max Sessions Reached",
10176 "nl": "Max Sessies bereikt",
10177 "xloc": [
10165 - "default.handlebars->23->1381"
10178 + "default.handlebars->23->1395"
10179 ]
10180 },
10181 {
@@ -10204,7 +10217,7 @@
10217 "pt": "Megabytes",
10218 "ru": "Мегабайт",
10219 "xloc": [
10207 - "default.handlebars->23->1407"
10220 + "default.handlebars->23->1421"
10221 ]
10222 },
10223 {
@@ -10217,7 +10230,7 @@
10230 "pt": "Memória",
10231 "ru": "ОЗУ",
10232 "xloc": [
10220 - "default.handlebars->23->1398",
10233 + "default.handlebars->23->1412",
10234 "default.handlebars->23->75",
10235 "default.handlebars->container->column_l->p40->3->1->p40type->3"
10236 ]
@@ -10251,7 +10264,7 @@
10264 "ru": "Консоль Mesh Agent-а",
10265 "xloc": [
10266 "default-mobile.handlebars->9->302",
10254 - "default.handlebars->23->1076"
10267 + "default.handlebars->23->1090"
10268 ]
10269 },
10270 {
@@ -10293,6 +10306,13 @@
10306 "default.handlebars->23->478"
10307 ]
10308 },
10309 + {
10310 + "en": "MeshAction (.txt)",
10311 + "xloc": [
10312 + "default.handlebars->23->575",
10313 + "default.handlebars->23->577"
10314 + ]
10315 + },
10316 {
10317 "cs": "MeshAgent provoz",
10318 "de": "Mesh-Agent-Datenverkehr",
@@ -10301,7 +10321,7 @@
10321 "nl": "MeshAgent verkeer",
10322 "ru": "Трафик MeshAgent-а",
10323 "xloc": [
10304 - "default.handlebars->23->1419"
10324 + "default.handlebars->23->1433"
10325 ]
10326 },
10327 {
@@ -10312,7 +10332,7 @@
10332 "nl": "MeshAgent update",
10333 "ru": "Обновление MeshAgent-а",
10334 "xloc": [
10315 - "default.handlebars->23->1420"
10335 + "default.handlebars->23->1434"
10336 ]
10337 },
10338 {
@@ -10336,7 +10356,7 @@
10356 "pt": "MeshCentral Errors",
10357 "ru": "Ошибки MeshCentral",
10358 "xloc": [
10339 - "default.handlebars->23->951"
10359 + "default.handlebars->23->965"
10360 ]
10361 },
10362 {
@@ -10385,7 +10405,7 @@
10405 "pt": "Peering do servidor MeshCentral",
10406 "ru": "Соединения MeshCentral Сервера",
10407 "xloc": [
10388 - "default.handlebars->23->1418"
10408 + "default.handlebars->23->1432"
10409 ]
10410 },
10411 {
@@ -10411,7 +10431,7 @@
10431 "xloc": [
10432 "default.handlebars->23->112",
10433 "default.handlebars->23->113",
10414 - "default.handlebars->23->949"
10434 + "default.handlebars->23->963"
10435 ]
10436 },
10437 {
@@ -10423,7 +10443,50 @@
10443 "pt": "MeshCmd",
10444 "ru": "MeshCmd",
10445 "xloc": [
10426 - "default.handlebars->23->207"
10446 + "default.handlebars->23->207",
10447 + "default.handlebars->23->573"
10448 + ]
10449 + },
10450 + {
10451 + "en": "MeshCmd (Linux ARM, 32bit)",
10452 + "xloc": [
10453 + "default.handlebars->23->585"
10454 + ]
10455 + },
10456 + {
10457 + "en": "MeshCmd (Linux x86, 32bit)",
10458 + "xloc": [
10459 + "default.handlebars->23->582"
10460 + ]
10461 + },
10462 + {
10463 + "en": "MeshCmd (Linux x86, 64bit)",
10464 + "xloc": [
10465 + "default.handlebars->23->583"
10466 + ]
10467 + },
10468 + {
10469 + "en": "MeshCmd (MacOS, 64bit)",
10470 + "xloc": [
10471 + "default.handlebars->23->584"
10472 + ]
10473 + },
10474 + {
10475 + "en": "MeshCmd (Win32 executable)",
10476 + "xloc": [
10477 + "default.handlebars->23->580"
10478 + ]
10479 + },
10480 + {
10481 + "en": "MeshCmd (Win64 executable)",
10482 + "xloc": [
10483 + "default.handlebars->23->581"
10484 + ]
10485 + },
10486 + {
10487 + "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.",
10488 + "xloc": [
10489 + "default.handlebars->23->570"
10490 ]
10491 },
10492 {
@@ -10485,7 +10548,7 @@
10548 "pt": "Despachante de mensagens",
10549 "ru": "Диспетчер сообщения",
10550 "xloc": [
10488 - "default.handlebars->23->1416"
10551 + "default.handlebars->23->1430"
10552 ]
10553 },
10554 {
@@ -10546,7 +10609,7 @@
10609 "pt": "Moldavian",
10610 "ru": "Молдавский",
10611 "xloc": [
10549 - "default.handlebars->23->814"
10612 + "default.handlebars->23->828"
10613 ]
10614 },
10615 {
@@ -10559,7 +10622,7 @@
10622 "pt": "Mais",
10623 "ru": "Еще",
10624 "xloc": [
10562 - "default.handlebars->23->1439"
10625 + "default.handlebars->23->1453"
10626 ]
10627 },
10628 {
@@ -10701,7 +10764,7 @@
10764 "pt": "Console do meu servidor",
10765 "ru": "Консоль моего сервера",
10766 "xloc": [
10704 - "default.handlebars->23->666"
10767 + "default.handlebars->23->680"
10768 ]
10769 },
10770 {
@@ -10787,8 +10850,8 @@
10850 "pt": "Minha chave",
10851 "ru": "Мой ключ",
10852 "xloc": [
10790 - "default.handlebars->23->689",
10791 - "default.handlebars->23->692"
10853 + "default.handlebars->23->703",
10854 + "default.handlebars->23->706"
10855 ]
10856 },
10857 {
@@ -10806,20 +10869,20 @@
10869 "default-mobile.handlebars->9->289",
10870 "default-mobile.handlebars->9->56",
10871 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1",
10809 - "default.handlebars->23->1041",
10810 - "default.handlebars->23->1178",
10811 - "default.handlebars->23->1219",
10812 - "default.handlebars->23->1246",
10813 - "default.handlebars->23->1250",
10814 - "default.handlebars->23->1255",
10815 - "default.handlebars->23->1257",
10816 - "default.handlebars->23->1280",
10817 - "default.handlebars->23->592",
10872 + "default.handlebars->23->1055",
10873 + "default.handlebars->23->1192",
10874 + "default.handlebars->23->1233",
10875 + "default.handlebars->23->1260",
10876 + "default.handlebars->23->1264",
10877 + "default.handlebars->23->1269",
10878 + "default.handlebars->23->1271",
10879 + "default.handlebars->23->1294",
10880 + "default.handlebars->23->606",
10881 "default.handlebars->23->71",
10882 "default.handlebars->23->80",
10820 - "default.handlebars->23->930",
10883 "default.handlebars->23->94",
10822 - "default.handlebars->23->957",
10884 + "default.handlebars->23->944",
10885 + "default.handlebars->23->971",
10886 "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3",
10887 "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3",
10888 "default.handlebars->container->column_l->p42->p42tbl->1->0->2"
@@ -10848,7 +10911,7 @@
10911 "pt": "Nome1, Nome2, Nome3",
10912 "ru": "Имя1, Имя2, Имя3",
10913 "xloc": [
10851 - "default.handlebars->23->1232"
10914 + "default.handlebars->23->1246"
10915 ]
10916 },
10917 {
@@ -10861,7 +10924,7 @@
10924 "pt": "Navajo",
10925 "ru": "Навахо",
10926 "xloc": [
10864 - "default.handlebars->23->815"
10927 + "default.handlebars->23->829"
10928 ]
10929 },
10930 {
@@ -10874,7 +10937,7 @@
10937 "pt": "Ndonga",
10938 "ru": "Ндонга",
10939 "xloc": [
10877 - "default.handlebars->23->816"
10940 + "default.handlebars->23->830"
10941 ]
10942 },
10943 {
@@ -10887,7 +10950,7 @@
10950 "pt": "Nepali",
10951 "ru": "Непальский",
10952 "xloc": [
10890 - "default.handlebars->23->817"
10953 + "default.handlebars->23->831"
10954 ]
10955 },
10956 {
@@ -10913,7 +10976,7 @@
10976 "pt": "Roteador de rede",
10977 "ru": "Сетевой маршрутизатор",
10978 "xloc": [
10916 - "default.handlebars->23->571"
10979 + "default.handlebars->23->579"
10980 ]
10981 },
10982 {
@@ -10955,8 +11018,8 @@
11018 "xloc": [
11019 "default-mobile.handlebars->9->50",
11020 "default.handlebars->23->552",
10958 - "default.handlebars->23->923",
10959 - "default.handlebars->23->935"
11021 + "default.handlebars->23->937",
11022 + "default.handlebars->23->949"
11023 ]
11024 },
11025 {
@@ -10971,8 +11034,8 @@
11034 "xloc": [
11035 "default-mobile.handlebars->9->247",
11036 "default-mobile.handlebars->9->79",
10974 - "default.handlebars->23->1151",
10975 - "default.handlebars->23->630",
11037 + "default.handlebars->23->1165",
11038 + "default.handlebars->23->644",
11039 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
11040 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
11041 ]
@@ -11010,8 +11073,8 @@
11073 "xloc": [
11074 "default-mobile.handlebars->9->45",
11075 "default-mobile.handlebars->9->46",
11013 - "default.handlebars->23->918",
11014 - "default.handlebars->23->919"
11076 + "default.handlebars->23->932",
11077 + "default.handlebars->23->933"
11078 ]
11079 },
11080 {
@@ -11052,9 +11115,9 @@
11115 "pt": "Nenhum evento encontrado",
11116 "ru": "События не найдены",
11117 "xloc": [
11055 - "default.handlebars->23->1168",
11056 - "default.handlebars->23->1364",
11057 - "default.handlebars->23->664"
11118 + "default.handlebars->23->1182",
11119 + "default.handlebars->23->1378",
11120 + "default.handlebars->23->678"
11121 ]
11122 },
11123 {
@@ -11068,7 +11131,7 @@
11131 "ru": "Нет доступа к файлу",
11132 "xloc": [
11133 "default-mobile.handlebars->9->300",
11071 - "default.handlebars->23->1074"
11134 + "default.handlebars->23->1088"
11135 ]
11136 },
11137 {
@@ -11082,7 +11145,7 @@
11145 "ru": "Файлов нет",
11146 "xloc": [
11147 "default-mobile.handlebars->9->321",
11085 - "default.handlebars->23->1100"
11148 + "default.handlebars->23->1114"
11149 ]
11150 },
11151 {
@@ -11096,8 +11159,8 @@
11159 "xloc": [
11160 "default-mobile.handlebars->9->301",
11161 "default-mobile.handlebars->9->322",
11099 - "default.handlebars->23->1075",
11100 - "default.handlebars->23->1101"
11162 + "default.handlebars->23->1089",
11163 + "default.handlebars->23->1115"
11164 ]
11165 },
11166 {
@@ -11141,7 +11204,7 @@
11204 "en": "No Members",
11205 "nl": "Geen leden",
11206 "xloc": [
11144 - "default.handlebars->23->1267"
11207 + "default.handlebars->23->1281"
11208 ]
11209 },
11210 {
@@ -11153,7 +11216,7 @@
11216 "pt": "Não há novos grupos de dispositivos",
11217 "ru": "Новых групп устройств нет",
11218 "xloc": [
11156 - "default.handlebars->23->1242"
11219 + "default.handlebars->23->1256"
11220 ]
11221 },
11222 {
@@ -11165,9 +11228,9 @@
11228 "pt": "Nenhuma política",
11229 "ru": "Политик нет",
11230 "xloc": [
11168 - "default.handlebars->23->1013",
11169 - "default.handlebars->23->1016",
11170 - "default.handlebars->23->982"
11231 + "default.handlebars->23->1027",
11232 + "default.handlebars->23->1030",
11233 + "default.handlebars->23->996"
11234 ]
11235 },
11236 {
@@ -11182,11 +11245,11 @@
11245 "default-mobile.handlebars->9->284",
11246 "default-mobile.handlebars->9->327",
11247 "default-mobile.handlebars->9->65",
11185 - "default.handlebars->23->1007",
11186 - "default.handlebars->23->1106",
11187 - "default.handlebars->23->1273",
11188 - "default.handlebars->23->1347",
11189 - "default.handlebars->23->944"
11248 + "default.handlebars->23->1021",
11249 + "default.handlebars->23->1120",
11250 + "default.handlebars->23->1287",
11251 + "default.handlebars->23->1361",
11252 + "default.handlebars->23->958"
11253 ]
11254 },
11255 {
@@ -11214,7 +11277,7 @@
11277 "ru": "Терминала нет",
11278 "xloc": [
11279 "default-mobile.handlebars->9->320",
11217 - "default.handlebars->23->1099"
11280 + "default.handlebars->23->1113"
11281 ]
11282 },
11283 {
@@ -11227,7 +11290,7 @@
11290 "ru": "Нет доступа к терминалу",
11291 "xloc": [
11292 "default-mobile.handlebars->9->299",
11230 - "default.handlebars->23->1073"
11293 + "default.handlebars->23->1087"
11294 ]
11295 },
11296 {
@@ -11239,7 +11302,7 @@
11302 "pt": "Sem ferramentas (MeshCmd / Roteador)",
11303 "ru": "Нет инструментов (MeshCmd/Маршрутизатор)",
11304 "xloc": [
11242 - "default.handlebars->23->1243"
11305 + "default.handlebars->23->1257"
11306 ]
11307 },
11308 {
@@ -11247,8 +11310,8 @@
11310 "en": "No device groups in common",
11311 "nl": "Geen gemeenschappelijke apparaatgroepen",
11312 "xloc": [
11250 - "default.handlebars->23->1276",
11251 - "default.handlebars->23->1350"
11313 + "default.handlebars->23->1290",
11314 + "default.handlebars->23->1364"
11315 ]
11316 },
11317 {
@@ -11310,7 +11373,7 @@
11373 "en": "No devices in this device group.",
11374 "nl": "Geen apparaten in deze apparaatgroep.",
11375 "xloc": [
11313 - "default.handlebars->23->1130"
11376 + "default.handlebars->23->1144"
11377 ]
11378 },
11379 {
@@ -11354,7 +11417,7 @@
11417 "en": "No groups found.",
11418 "nl": "Geen groepen gevonden.",
11419 "xloc": [
11357 - "default.handlebars->23->1245"
11420 + "default.handlebars->23->1259"
11421 ]
11422 },
11423 {
@@ -11425,7 +11488,7 @@
11488 "pt": "Sem direitos de servidor",
11489 "ru": "Нет серверных прав",
11490 "xloc": [
11428 - "default.handlebars->23->1293"
11491 + "default.handlebars->23->1307"
11492 ]
11493 },
11494 {
@@ -11433,7 +11496,7 @@
11496 "en": "No user group memberships",
11497 "nl": "Geen gebruikersgroep lidmaatschap",
11498 "xloc": [
11436 - "default.handlebars->23->1356"
11499 + "default.handlebars->23->1370"
11500 ]
11501 },
11502 {
@@ -11445,7 +11508,7 @@
11508 "pt": "Usuários não encontrados.",
11509 "ru": "Пользователи не найдены.",
11510 "xloc": [
11448 - "default.handlebars->23->1186"
11511 + "default.handlebars->23->1200"
11512 ]
11513 },
11514 {
@@ -11492,10 +11555,10 @@
11555 "default-mobile.handlebars->9->75",
11556 "default-mobile.handlebars->9->93",
11557 "default-mobile.handlebars->9->95",
11495 - "default.handlebars->23->1139",
11496 - "default.handlebars->23->1254",
11497 - "default.handlebars->23->1312",
11498 - "default.handlebars->23->1316",
11558 + "default.handlebars->23->1153",
11559 + "default.handlebars->23->1268",
11560 + "default.handlebars->23->1326",
11561 + "default.handlebars->23->1330",
11562 "default.handlebars->23->166",
11563 "default.handlebars->23->181",
11564 "default.handlebars->23->182",
@@ -11504,10 +11567,10 @@
11567 "default.handlebars->23->439",
11568 "default.handlebars->23->483",
11569 "default.handlebars->23->63",
11507 - "default.handlebars->23->959",
11508 - "default.handlebars->23->963",
11509 - "default.handlebars->23->975",
11510 - "default.handlebars->23->980",
11570 + "default.handlebars->23->973",
11571 + "default.handlebars->23->977",
11572 + "default.handlebars->23->989",
11573 + "default.handlebars->23->994",
11574 "default.handlebars->container->column_l->p41->3->3->p41traceStatus"
11575 ]
11576 },
@@ -11534,7 +11597,7 @@
11597 "pt": "norueguês",
11598 "ru": "Норвежский",
11599 "xloc": [
11537 - "default.handlebars->23->818"
11600 + "default.handlebars->23->832"
11601 ]
11602 },
11603 {
@@ -11547,7 +11610,7 @@
11610 "pt": "Norueguês (Bokmal)",
11611 "ru": "Норвежский (Букмол)",
11612 "xloc": [
11550 - "default.handlebars->23->819"
11613 + "default.handlebars->23->833"
11614 ]
11615 },
11616 {
@@ -11560,7 +11623,7 @@
11623 "pt": "Norueguês (Nynorsk)",
11624 "ru": "Норвежский (Нюнорск)",
11625 "xloc": [
11563 - "default.handlebars->23->820"
11626 + "default.handlebars->23->834"
11627 ]
11628 },
11629 {
@@ -11595,8 +11658,8 @@
11658 "en": "Not Connected",
11659 "nl": "Niet verbonden",
11660 "xloc": [
11598 - "default.handlebars->23->1119",
11599 - "default.handlebars->23->1125"
11661 + "default.handlebars->23->1133",
11662 + "default.handlebars->23->1139"
11663 ]
11664 },
11665 {
@@ -11608,7 +11671,7 @@
11671 "pt": "Não configurado",
11672 "ru": "Не задано",
11673 "xloc": [
11611 - "default.handlebars->23->1298"
11674 + "default.handlebars->23->1312"
11675 ]
11676 },
11677 {
@@ -11621,10 +11684,10 @@
11684 "pt": "Notas",
11685 "ru": "Заметки",
11686 "xloc": [
11624 - "default.handlebars->23->1323",
11687 + "default.handlebars->23->1002",
11688 + "default.handlebars->23->1337",
11689 "default.handlebars->23->486",
11626 - "default.handlebars->23->519",
11627 - "default.handlebars->23->988"
11690 + "default.handlebars->23->519"
11691 ]
11692 },
11693 {
@@ -11647,8 +11710,8 @@
11710 "pt": "Configurações de notificação",
11711 "ru": "Настройки уведомлений",
11712 "xloc": [
11650 - "default.handlebars->23->1118",
11651 - "default.handlebars->23->905",
11713 + "default.handlebars->23->1132",
11714 + "default.handlebars->23->919",
11715 "default.handlebars->container->column_l->p2->p2AccountActions->3->8"
11716 ]
11717 },
@@ -11658,7 +11721,7 @@
11721 "en": "Notification settings must also be turned on in account settings.",
11722 "nl": "Meldingsinstellingen moeten ook worden ingeschakeld in accountinstellingen.",
11723 "xloc": [
11661 - "default.handlebars->23->1114"
11724 + "default.handlebars->23->1128"
11725 ]
11726 },
11727 {
@@ -11670,7 +11733,7 @@
11733 "pt": "Som de notificação.",
11734 "ru": "Звук уведомления.",
11735 "xloc": [
11673 - "default.handlebars->23->900"
11736 + "default.handlebars->23->914"
11737 ]
11738 },
11739 {
@@ -11682,7 +11745,7 @@
11745 "pt": "Notificações",
11746 "ru": "Уведомления",
11747 "xloc": [
11685 - "default.handlebars->23->981"
11748 + "default.handlebars->23->995"
11749 ]
11750 },
11751 {
@@ -11694,7 +11757,7 @@
11757 "pt": "Notificar",
11758 "ru": "Уведомить",
11759 "xloc": [
11697 - "default.handlebars->23->1325"
11760 + "default.handlebars->23->1339"
11761 ]
11762 },
11763 {
@@ -11707,9 +11770,9 @@
11770 "pt": "Notificar usuário",
11771 "ru": "Уведомить пользователя",
11772 "xloc": [
11710 - "default.handlebars->23->1045",
11711 - "default.handlebars->23->1049",
11712 - "default.handlebars->23->1052"
11773 + "default.handlebars->23->1059",
11774 + "default.handlebars->23->1063",
11775 + "default.handlebars->23->1066"
11776 ]
11777 },
11778 {
@@ -11721,7 +11784,7 @@
11784 "pt": "Notificar {0}",
11785 "ru": "Уведомить {0}",
11786 "xloc": [
11724 - "default.handlebars->23->1198"
11787 + "default.handlebars->23->1212"
11788 ]
11789 },
11790 {
@@ -11736,7 +11799,7 @@
11799 "default-mobile.handlebars->9->42",
11800 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
11801 "default.handlebars->23->469",
11739 - "default.handlebars->23->947",
11802 + "default.handlebars->23->961",
11803 "default.handlebars->container->dialog->idx_dlgButtonBar",
11804 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
11805 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -11765,7 +11828,7 @@
11828 "pt": "Occitânico",
11829 "ru": "Окситанский",
11830 "xloc": [
11768 - "default.handlebars->23->821"
11831 + "default.handlebars->23->835"
11832 ]
11833 },
11834 {
@@ -11778,7 +11841,7 @@
11841 "pt": "Ocorreu em {0}",
11842 "ru": "Произошло в {0}",
11843 "xloc": [
11781 - "default.handlebars->23->1367"
11844 + "default.handlebars->23->1381"
11845 ]
11846 },
11847 {
@@ -11791,7 +11854,7 @@
11854 "pt": "Usuários offline",
11855 "ru": "Оффлайн пользователи",
11856 "xloc": [
11794 - "default.handlebars->23->1183"
11857 + "default.handlebars->23->1197"
11858 ]
11859 },
11860 {
@@ -11805,7 +11868,7 @@
11868 "ru": "Старый пароль:",
11869 "xloc": [
11870 "default-mobile.handlebars->9->44",
11808 - "default.handlebars->23->917"
11871 + "default.handlebars->23->931"
11872 ]
11873 },
11874 {
@@ -11831,7 +11894,7 @@
11894 "pt": "Usuários Online",
11895 "ru": "Онлайн пользователи",
11896 "xloc": [
11834 - "default.handlebars->23->1182"
11897 + "default.handlebars->23->1196"
11898 ]
11899 },
11900 {
@@ -11844,7 +11907,7 @@
11907 "ru": "Только файлы размером меньше 200к могут быть редактированны",
11908 "xloc": [
11909 "default-mobile.handlebars->9->255",
11847 - "default.handlebars->23->638"
11910 + "default.handlebars->23->652"
11911 ]
11912 },
11913 {
@@ -11909,6 +11972,7 @@
11972 "default.handlebars->23->285",
11973 "default.handlebars->23->314",
11974 "default.handlebars->23->466",
11975 + "default.handlebars->23->572",
11976 "default.handlebars->23->79"
11977 ]
11978 },
@@ -11949,7 +12013,7 @@
12013 "pt": "Oriya",
12014 "ru": "Ория",
12015 "xloc": [
11952 - "default.handlebars->23->822"
12016 + "default.handlebars->23->836"
12017 ]
12018 },
12019 {
@@ -11961,7 +12025,7 @@
12025 "pt": "Oromo",
12026 "ru": "Оромо",
12027 "xloc": [
11964 - "default.handlebars->23->823"
12028 + "default.handlebars->23->837"
12029 ]
12030 },
12031 {
@@ -12012,7 +12076,7 @@
12076 "pt": "Processo próprio",
12077 "ru": "Собственный процесс",
12078 "xloc": [
12015 - "default.handlebars->23->599"
12079 + "default.handlebars->23->613"
12080 ]
12081 },
12082 {
@@ -12025,7 +12089,7 @@
12089 "ru": "PID",
12090 "xloc": [
12091 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0",
12028 - "default.handlebars->23->595",
12092 + "default.handlebars->23->609",
12093 "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1"
12094 ]
12095 },
@@ -12052,7 +12116,7 @@
12116 "pt": "Parcial",
12117 "ru": "Частично",
12118 "xloc": [
12055 - "default.handlebars->23->1197"
12119 + "default.handlebars->23->1211"
12120 ]
12121 },
12122 {
@@ -12060,9 +12124,9 @@
12124 "en": "Partial Device Group Rights",
12125 "nl": "Gedeeltelijke apparaatgroep rechten",
12126 "xloc": [
12063 - "default.handlebars->23->1005",
12064 - "default.handlebars->23->1270",
12065 - "default.handlebars->23->1344"
12127 + "default.handlebars->23->1019",
12128 + "default.handlebars->23->1284",
12129 + "default.handlebars->23->1358"
12130 ]
12131 },
12132 {
@@ -12076,7 +12140,7 @@
12140 "xloc": [
12141 "default-mobile.handlebars->9->282",
12142 "default-mobile.handlebars->9->63",
12079 - "default.handlebars->23->942"
12143 + "default.handlebars->23->956"
12144 ]
12145 },
12146 {
@@ -12088,7 +12152,7 @@
12152 "pt": "Direitos parciais",
12153 "ru": "Частичные права",
12154 "xloc": [
12091 - "default.handlebars->23->1296"
12155 + "default.handlebars->23->1310"
12156 ]
12157 },
12158 {
@@ -12114,12 +12178,12 @@
12178 "ru": "Пароль",
12179 "xloc": [
12180 "default-mobile.handlebars->9->213",
12117 - "default.handlebars->23->1221",
12118 - "default.handlebars->23->1222",
12119 - "default.handlebars->23->1308",
12120 - "default.handlebars->23->1310",
12121 - "default.handlebars->23->1334",
12122 - "default.handlebars->23->1335",
12181 + "default.handlebars->23->1235",
12182 + "default.handlebars->23->1236",
12183 + "default.handlebars->23->1322",
12184 + "default.handlebars->23->1324",
12185 + "default.handlebars->23->1348",
12186 + "default.handlebars->23->1349",
12187 "default.handlebars->23->243",
12188 "default.handlebars->23->272",
12189 "default.handlebars->23->536"
@@ -12190,7 +12254,7 @@
12254 "pt": "Dica de senha",
12255 "ru": "Подсказка пароля",
12256 "xloc": [
12193 - "default.handlebars->23->1336"
12257 + "default.handlebars->23->1350"
12258 ]
12259 },
12260 {
@@ -12203,7 +12267,7 @@
12267 "ru": "Подсказка пароля:",
12268 "xloc": [
12269 "default-mobile.handlebars->9->47",
12206 - "default.handlebars->23->920"
12270 + "default.handlebars->23->934"
12271 ]
12272 },
12273 {
@@ -12215,7 +12279,7 @@
12279 "pt": "Senha incorreta",
12280 "ru": "Пароль не совпадает",
12281 "xloc": [
12218 - "default.handlebars->23->1022"
12282 + "default.handlebars->23->1036"
12283 ]
12284 },
12285 {
@@ -12241,8 +12305,8 @@
12305 "pt": "Senha*",
12306 "ru": "Пароль*",
12307 "xloc": [
12244 - "default.handlebars->23->1020",
12245 - "default.handlebars->23->1021"
12308 + "default.handlebars->23->1034",
12309 + "default.handlebars->23->1035"
12310 ]
12311 },
12312 {
@@ -12257,8 +12321,8 @@
12321 "xloc": [
12322 "default-mobile.handlebars->9->39",
12323 "default-mobile.handlebars->9->40",
12260 - "default.handlebars->23->912",
12261 - "default.handlebars->23->913",
12324 + "default.handlebars->23->926",
12325 + "default.handlebars->23->927",
12326 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1",
12327 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1",
12328 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1",
@@ -12285,9 +12349,9 @@
12349 "default-mobile.handlebars->9->87",
12350 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
12351 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
12288 - "default.handlebars->23->1160",
12289 - "default.handlebars->23->621",
12290 - "default.handlebars->23->643",
12352 + "default.handlebars->23->1174",
12353 + "default.handlebars->23->635",
12354 + "default.handlebars->23->657",
12355 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3",
12356 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
12357 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
@@ -12329,7 +12393,7 @@
12393 "pt": "Executar ação do agente",
12394 "ru": "Произвести действие агента",
12395 "xloc": [
12332 - "default.handlebars->23->674"
12396 + "default.handlebars->23->688"
12397 ]
12398 },
12399 {
@@ -12353,8 +12417,8 @@
12417 "pt": "Execute a ativação do modo de controle de administração Intel AMT (ACM).",
12418 "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).",
12419 "xloc": [
12356 - "default.handlebars->23->231",
12357 - "default.handlebars->23->998"
12420 + "default.handlebars->23->1012",
12421 + "default.handlebars->23->231"
12422 ]
12423 },
12424 {
@@ -12378,8 +12442,8 @@
12442 "pt": "Execute a ativação do modo de controle do cliente Intel AMT (CCM).",
12443 "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).",
12444 "xloc": [
12381 - "default.handlebars->23->229",
12382 - "default.handlebars->23->996"
12445 + "default.handlebars->23->1010",
12446 + "default.handlebars->23->229"
12447 ]
12448 },
12449 {
@@ -12409,8 +12473,8 @@
12473 "ru": "Права",
12474 "xloc": [
12475 "default-mobile.handlebars->9->329",
12412 - "default.handlebars->23->1109",
12413 - "default.handlebars->23->1181"
12476 + "default.handlebars->23->1123",
12477 + "default.handlebars->23->1195"
12478 ]
12479 },
12480 {
@@ -12422,7 +12486,7 @@
12486 "pt": "Persa / Irã",
12487 "ru": "Персидский/Иран",
12488 "xloc": [
12425 - "default.handlebars->23->824"
12489 + "default.handlebars->23->838"
12490 ]
12491 },
12492 {
@@ -12497,7 +12561,7 @@
12561 "ru": "Подождите пару минут для получения подтверждения.",
12562 "xloc": [
12563 "default-mobile.handlebars->9->35",
12500 - "default.handlebars->23->907"
12564 + "default.handlebars->23->921"
12565 ]
12566 },
12567 {
@@ -12508,7 +12572,7 @@
12572 "nl": "Plugin Actie",
12573 "ru": "Действие плагина",
12574 "xloc": [
12511 - "default.handlebars->23->1436",
12575 + "default.handlebars->23->1450",
12576 "default.handlebars->23->177"
12577 ]
12578 },
@@ -12591,7 +12655,7 @@
12655 "ru": "Политика",
12656 "xloc": [
12657 "default-mobile.handlebars->9->62",
12594 - "default.handlebars->23->941"
12658 + "default.handlebars->23->955"
12659 ]
12660 },
12661 {
@@ -12603,7 +12667,7 @@
12667 "pt": "polonês",
12668 "ru": "Польский",
12669 "xloc": [
12606 - "default.handlebars->23->825"
12670 + "default.handlebars->23->839"
12671 ]
12672 },
12673 {
@@ -12615,7 +12679,7 @@
12679 "pt": "Português",
12680 "ru": "Португальский",
12681 "xloc": [
12618 - "default.handlebars->23->826"
12682 + "default.handlebars->23->840"
12683 ]
12684 },
12685 {
@@ -12627,7 +12691,7 @@
12691 "pt": "Português (Brasil)",
12692 "ru": "Португальский (Бразилия)",
12693 "xloc": [
12630 - "default.handlebars->23->827"
12694 + "default.handlebars->23->841"
12695 ]
12696 },
12697 {
@@ -12661,7 +12725,7 @@
12725 "en": "Power States",
12726 "nl": "Power Status",
12727 "xloc": [
12664 - "default.handlebars->23->1123",
12728 + "default.handlebars->23->1137",
12729 "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1"
12730 ]
12731 },
@@ -12763,7 +12827,7 @@
12827 "ru": "Нажмите Control",
12828 "xloc": [
12829 "default-mobile.handlebars->9->234",
12766 - "default.handlebars->23->608"
12830 + "default.handlebars->23->622"
12831 ]
12832 },
12833 {
@@ -12790,9 +12854,9 @@
12854 "pt": "Solicitar consentimento do usuário",
12855 "ru": "Запрос согласия пользователя",
12856 "xloc": [
12793 - "default.handlebars->23->1046",
12794 - "default.handlebars->23->1050",
12795 - "default.handlebars->23->1053"
12857 + "default.handlebars->23->1060",
12858 + "default.handlebars->23->1064",
12859 + "default.handlebars->23->1067"
12860 ]
12861 },
12862 {
@@ -12819,7 +12883,7 @@
12883 "ru": "Публичная ссылка",
12884 "xloc": [
12885 "default-mobile.handlebars->9->74",
12822 - "default.handlebars->23->1146"
12886 + "default.handlebars->23->1160"
12887 ]
12888 },
12889 {
@@ -12831,7 +12895,7 @@
12895 "pt": "Punjabi",
12896 "ru": "Пенджаби",
12897 "xloc": [
12834 - "default.handlebars->23->828"
12898 + "default.handlebars->23->842"
12899 ]
12900 },
12901 {
@@ -12843,7 +12907,7 @@
12907 "pt": "Punjabi (Índia)",
12908 "ru": "Пенджаби (Индия)",
12909 "xloc": [
12846 - "default.handlebars->23->829"
12910 + "default.handlebars->23->843"
12911 ]
12912 },
12913 {
@@ -12855,7 +12919,7 @@
12919 "pt": "Punjabi (Paquistão)",
12920 "ru": "Пенджаби (Пакистан)",
12921 "xloc": [
12858 - "default.handlebars->23->830"
12922 + "default.handlebars->23->844"
12923 ]
12924 },
12925 {
@@ -12893,7 +12957,7 @@
12957 "pt": "Quechua",
12958 "ru": "Кечуа",
12959 "xloc": [
12896 - "default.handlebars->23->831"
12960 + "default.handlebars->23->845"
12961 ]
12962 },
12963 {
@@ -12969,7 +13033,7 @@
13033 "en": "RSS",
13034 "nl": "RSS",
13035 "xloc": [
12972 - "default.handlebars->23->1411"
13036 + "default.handlebars->23->1425"
13037 ]
13038 },
13039 {
@@ -12982,7 +13046,7 @@
13046 "pt": "Randomize a senha.",
13047 "ru": "Случайный пароль",
13048 "xloc": [
12985 - "default.handlebars->23->1223"
13049 + "default.handlebars->23->1237"
13050 ]
13051 },
13052 {
@@ -13006,7 +13070,7 @@
13070 "pt": "Reativar Intel&reg;AMT",
13071 "ru": "Возобновить Intel&reg; AMT",
13072 "xloc": [
13009 - "default.handlebars->23->1024"
13073 + "default.handlebars->23->1038"
13074 ]
13075 },
13076 {
@@ -13018,7 +13082,7 @@
13082 "pt": "Realms",
13083 "ru": "Области",
13084 "xloc": [
13021 - "default.handlebars->23->1231"
13085 + "default.handlebars->23->1245"
13086 ]
13087 },
13088 {
@@ -13033,8 +13097,8 @@
13097 "xloc": [
13098 "default-mobile.handlebars->9->248",
13099 "default-mobile.handlebars->9->80",
13036 - "default.handlebars->23->1152",
13037 - "default.handlebars->23->631"
13100 + "default.handlebars->23->1166",
13101 + "default.handlebars->23->645"
13102 ]
13103 },
13104 {
@@ -13101,7 +13165,7 @@
13165 "en": "Relay Count",
13166 "nl": "Relay geteld",
13167 "xloc": [
13104 - "default.handlebars->23->1393"
13168 + "default.handlebars->23->1407"
13169 ]
13170 },
13171 {
@@ -13110,7 +13174,7 @@
13174 "en": "Relay Errors",
13175 "nl": "Relay fouten",
13176 "xloc": [
13113 - "default.handlebars->23->1386"
13177 + "default.handlebars->23->1400"
13178 ]
13179 },
13180 {
@@ -13122,8 +13186,8 @@
13186 "pt": "Retransmissão de sessão ",
13187 "ru": "Ретранслированные сессии",
13188 "xloc": [
13125 - "default.handlebars->23->1392",
13126 - "default.handlebars->23->1405"
13189 + "default.handlebars->23->1406",
13190 + "default.handlebars->23->1419"
13191 ]
13192 },
13193 {
@@ -13178,7 +13242,7 @@
13242 "pt": "Área de transferência remota",
13243 "ru": "Удаленный буфер обмена",
13244 "xloc": [
13181 - "default.handlebars->23->591"
13245 + "default.handlebars->23->605"
13246 ]
13247 },
13248 {
@@ -13193,8 +13257,8 @@
13257 "xloc": [
13258 "default-mobile.handlebars->9->296",
13259 "default-mobile.handlebars->9->314",
13196 - "default.handlebars->23->1070",
13197 - "default.handlebars->23->1093"
13260 + "default.handlebars->23->1084",
13261 + "default.handlebars->23->1107"
13262 ]
13263 },
13264 {
@@ -13209,7 +13273,7 @@
13273 "xloc": [
13274 "default-mobile.handlebars->9->229",
13275 "default.handlebars->23->222",
13212 - "default.handlebars->23->583"
13276 + "default.handlebars->23->597"
13277 ]
13278 },
13279 {
@@ -13222,7 +13286,7 @@
13286 "pt": "Entrada remota do teclado",
13287 "ru": "Ввод с удаленной клавиатуры",
13288 "xloc": [
13225 - "default.handlebars->23->589"
13289 + "default.handlebars->23->603"
13290 ]
13291 },
13292 {
@@ -13235,7 +13299,7 @@
13299 "ru": "Удаленный Mesh Пользователь",
13300 "xloc": [
13301 "default-mobile.handlebars->9->332",
13238 - "default.handlebars->23->1112"
13302 + "default.handlebars->23->1126"
13303 ]
13304 },
13305 {
@@ -13243,7 +13307,7 @@
13307 "en": "Remote User",
13308 "nl": "Externe gebruiker",
13309 "xloc": [
13246 - "default.handlebars->23->1286"
13310 + "default.handlebars->23->1300"
13311 ]
13312 },
13313 {
@@ -13257,8 +13321,8 @@
13321 "xloc": [
13322 "default-mobile.handlebars->9->297",
13323 "default-mobile.handlebars->9->319",
13260 - "default.handlebars->23->1071",
13261 - "default.handlebars->23->1098"
13324 + "default.handlebars->23->1085",
13325 + "default.handlebars->23->1112"
13326 ]
13327 },
13328 {
@@ -13271,7 +13335,7 @@
13335 "pt": "A área de transferência remota é válida por 60 segundos.",
13336 "ru": "Удаленный буфер обмена действителен в течении 60 секунд.",
13337 "xloc": [
13274 - "default.handlebars->23->590"
13338 + "default.handlebars->23->604"
13339 ]
13340 },
13341 {
@@ -13306,8 +13370,8 @@
13370 "en": "Remove Device Group",
13371 "nl": "Remove Device Group",
13372 "xloc": [
13309 - "default.handlebars->23->1278",
13310 - "default.handlebars->23->1362"
13373 + "default.handlebars->23->1292",
13374 + "default.handlebars->23->1376"
13375 ]
13376 },
13377 {
@@ -13315,7 +13379,7 @@
13379 "en": "Remove User",
13380 "nl": "Verwijder gebruiker",
13381 "xloc": [
13318 - "default.handlebars->23->1358"
13382 + "default.handlebars->23->1372"
13383 ]
13384 },
13385 {
@@ -13327,7 +13391,7 @@
13391 "pt": "Remova toda a autenticação do segundo fator.",
13392 "ru": "Удалить все двухфакторные аутентификации.",
13393 "xloc": [
13330 - "default.handlebars->23->1339"
13394 + "default.handlebars->23->1353"
13395 ]
13396 },
13397 {
@@ -13336,7 +13400,7 @@
13400 "en": "Remove all previous events for this userid.",
13401 "nl": "Verwijder alle eerdere gebeurtenissen voor dit gebruikers-ID.",
13402 "xloc": [
13339 - "default.handlebars->23->1225"
13403 + "default.handlebars->23->1239"
13404 ]
13405 },
13406 {
@@ -13345,7 +13409,7 @@
13409 "en": "Remove device on disconnect",
13410 "nl": "Verwijder apparaat bij verbreken",
13411 "xloc": [
13348 - "default.handlebars->23->1055"
13412 + "default.handlebars->23->1069"
13413 ]
13414 },
13415 {
@@ -13378,7 +13442,7 @@
13442 "en": "Remove user group membership",
13443 "nl": "Verwijder de groepslidmaatschap",
13444 "xloc": [
13381 - "default.handlebars->23->1354"
13445 + "default.handlebars->23->1368"
13446 ]
13447 },
13448 {
@@ -13386,7 +13450,7 @@
13450 "en": "Remove user group rights to this device group",
13451 "nl": "Verwijder gebruikers groepsrechten van deze apparaatgroep",
13452 "xloc": [
13389 - "default.handlebars->23->1274"
13453 + "default.handlebars->23->1288"
13454 ]
13455 },
13456 {
@@ -13399,9 +13463,9 @@
13463 "pt": "Remova os direitos de usuário deste grupo de dispositivos",
13464 "ru": "Удалить права пользователя этой группы",
13465 "xloc": [
13402 - "default.handlebars->23->1008",
13403 - "default.handlebars->23->1265",
13404 - "default.handlebars->23->1348"
13466 + "default.handlebars->23->1022",
13467 + "default.handlebars->23->1279",
13468 + "default.handlebars->23->1362"
13469 ]
13470 },
13471 {
@@ -13418,8 +13482,8 @@
13482 "default-mobile.handlebars->9->84",
13483 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
13484 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
13421 - "default.handlebars->23->1156",
13422 - "default.handlebars->23->635",
13485 + "default.handlebars->23->1170",
13486 + "default.handlebars->23->649",
13487 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
13488 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
13489 ]
@@ -13434,7 +13498,7 @@
13498 "pt": "Requisitos:",
13499 "ru": "Требования: ",
13500 "xloc": [
13437 - "default.handlebars->23->921"
13501 + "default.handlebars->23->935"
13502 ]
13503 },
13504 {
@@ -13448,8 +13512,8 @@
13512 "ru": "Требования: {0}.",
13513 "xloc": [
13514 "default-mobile.handlebars->9->48",
13451 - "default.handlebars->23->1228",
13452 - "default.handlebars->23->1337"
13515 + "default.handlebars->23->1242",
13516 + "default.handlebars->23->1351"
13517 ]
13518 },
13519 {
@@ -13572,7 +13636,7 @@
13636 "pt": "Reiniciar",
13637 "ru": "Перезагрузка",
13638 "xloc": [
13575 - "default.handlebars->23->605",
13639 + "default.handlebars->23->619",
13640 "player.htm->p11->deskarea0->deskarea4->3"
13641 ]
13642 },
@@ -13586,7 +13650,7 @@
13650 "pt": "Restaurar servidor",
13651 "ru": "Восстановить сервер",
13652 "xloc": [
13589 - "default.handlebars->23->948"
13653 + "default.handlebars->23->962"
13654 ]
13655 },
13656 {
@@ -13611,7 +13675,7 @@
13675 "pt": "Restaurar o servidor usando um backup, <span style=color:red>isso excluirá os dados existentes do servidor</span>. Faça isso apenas se você souber o que está fazendo.",
13676 "ru": "Восстановить сервер из резервной копии, <span style = color: red> это удалит существующие данные сервера </ span>. Продолжайте дальше, но только если вы знаете, что делаете.",
13677 "xloc": [
13614 - "default.handlebars->23->945"
13678 + "default.handlebars->23->959"
13679 ]
13680 },
13681 {
@@ -13624,7 +13688,7 @@
13688 "pt": "Restrições",
13689 "ru": "Ограничения",
13690 "xloc": [
13627 - "default.handlebars->23->1297"
13691 + "default.handlebars->23->1311"
13692 ]
13693 },
13694 {
@@ -13636,7 +13700,7 @@
13700 "pt": "Rhaeto-Romanic",
13701 "ru": "Ретороманский",
13702 "xloc": [
13639 - "default.handlebars->23->832"
13703 + "default.handlebars->23->846"
13704 ]
13705 },
13706 {
@@ -13649,7 +13713,7 @@
13713 "pt": "Romena",
13714 "ru": "Румынский",
13715 "xloc": [
13652 - "default.handlebars->23->833"
13716 + "default.handlebars->23->847"
13717 ]
13718 },
13719 {
@@ -13662,7 +13726,7 @@
13726 "pt": "Romeno (Moldávia)",
13727 "ru": "Румынский (Молдавия)",
13728 "xloc": [
13665 - "default.handlebars->23->834"
13729 + "default.handlebars->23->848"
13730 ]
13731 },
13732 {
@@ -13677,8 +13741,8 @@
13741 "xloc": [
13742 "default-mobile.handlebars->9->242",
13743 "default-mobile.handlebars->9->66",
13680 - "default.handlebars->23->1131",
13681 - "default.handlebars->23->625"
13744 + "default.handlebars->23->1145",
13745 + "default.handlebars->23->639"
13746 ]
13747 },
13748 {
@@ -13769,7 +13833,7 @@
13833 "pt": "Russo",
13834 "ru": "Русский",
13835 "xloc": [
13772 - "default.handlebars->23->835"
13836 + "default.handlebars->23->849"
13837 ]
13838 },
13839 {
@@ -13782,7 +13846,7 @@
13846 "pt": "Russo (Moldávia)",
13847 "ru": "Русский (Молдавия)",
13848 "xloc": [
13785 - "default.handlebars->23->836"
13849 + "default.handlebars->23->850"
13850 ]
13851 },
13852 {
@@ -13807,7 +13871,7 @@
13871 "pt": "Sami (lapão)",
13872 "ru": "Саамский",
13873 "xloc": [
13810 - "default.handlebars->23->837"
13874 + "default.handlebars->23->851"
13875 ]
13876 },
13877 {
@@ -13831,7 +13895,7 @@
13895 "pt": "Sango",
13896 "ru": "Санго",
13897 "xloc": [
13834 - "default.handlebars->23->838"
13898 + "default.handlebars->23->852"
13899 ]
13900 },
13901 {
@@ -13843,7 +13907,7 @@
13907 "pt": "Sanskrit",
13908 "ru": "Санскритский",
13909 "xloc": [
13846 - "default.handlebars->23->839"
13910 + "default.handlebars->23->853"
13911 ]
13912 },
13913 {
@@ -13855,7 +13919,7 @@
13919 "pt": "Sardinian",
13920 "ru": "Сардинский",
13921 "xloc": [
13858 - "default.handlebars->23->840"
13922 + "default.handlebars->23->854"
13923 ]
13924 },
13925 {
@@ -14014,7 +14078,7 @@
14078 "ru": "Защита",
14079 "xloc": [
14080 "default-mobile.handlebars->9->214",
14017 - "default.handlebars->23->1321",
14081 + "default.handlebars->23->1335",
14082 "default.handlebars->23->244",
14083 "default.handlebars->23->537"
14084 ]
@@ -14029,7 +14093,7 @@
14093 "pt": "Chave de segurança",
14094 "ru": "Ключ безопасности",
14095 "xloc": [
14032 - "default.handlebars->23->1319"
14096 + "default.handlebars->23->1333"
14097 ]
14098 },
14099 {
@@ -14042,10 +14106,10 @@
14106 "pt": "Selecionar tudo",
14107 "ru": "Выбрать все",
14108 "xloc": [
14045 - "default.handlebars->23->1148",
14109 + "default.handlebars->23->1162",
14110 "default.handlebars->23->382",
14047 - "default.handlebars->23->627",
14048 - "default.handlebars->23->629",
14111 + "default.handlebars->23->641",
14112 + "default.handlebars->23->643",
14113 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
14114 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
14115 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -14062,9 +14126,9 @@
14126 "pt": "Selecione nenhum",
14127 "ru": "Очистить все",
14128 "xloc": [
14065 - "default.handlebars->23->1147",
14129 + "default.handlebars->23->1161",
14130 "default.handlebars->23->381",
14067 - "default.handlebars->23->628",
14131 + "default.handlebars->23->642",
14132 "default.handlebars->meshContextMenu->cxselectnone"
14133 ]
14134 },
@@ -14153,7 +14217,7 @@
14217 "ru": "Только собственные события",
14218 "xloc": [
14219 "default-mobile.handlebars->9->324",
14156 - "default.handlebars->23->1103"
14220 + "default.handlebars->23->1117"
14221 ]
14222 },
14223 {
@@ -14203,7 +14267,7 @@
14267 "en": "Send a notice to all users in this group.",
14268 "nl": "Stuur een bericht naar alle gebruikers in deze groep.",
14269 "xloc": [
14206 - "default.handlebars->23->1262"
14270 + "default.handlebars->23->1276"
14271 ]
14272 },
14273 {
@@ -14216,7 +14280,7 @@
14280 "pt": "Envie uma notificação de texto para este usuário.",
14281 "ru": "Отправить текстовое уведомление этому пользователю.",
14282 "xloc": [
14219 - "default.handlebars->23->1199"
14283 + "default.handlebars->23->1213"
14284 ]
14285 },
14286 {
@@ -14242,7 +14306,7 @@
14306 "pt": "Enviar email de convite.",
14307 "ru": "Отправить приглашение по эл. почте.",
14308 "xloc": [
14245 - "default.handlebars->23->1227"
14309 + "default.handlebars->23->1241"
14310 ]
14311 },
14312 {
@@ -14267,7 +14331,7 @@
14331 "pt": "Enviar notificação do usuário",
14332 "ru": "Отправить уведомление пользователю",
14333 "xloc": [
14270 - "default.handlebars->23->1326"
14334 + "default.handlebars->23->1340"

This file is too large to show in full.

views/agentinvite.handlebars
+4 -4
@@ -258,8 +258,8 @@
258 if (serverHttps == 1) {
259 var portStr = (serverPort == 443) ? '' : (":" + serverPort);
260 if (serverNoProxy == 0) {
261 - 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';
262 - 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';
261 + 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';
262 + 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';
263 } else {
264 // Server asked that agent be installed to preferably not use a HTTP proxy.
265 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 @@
268 } else {
269 var portStr = (serverPort == 80) ? '' : (':' + serverPort);
270 if (serverNoProxy == 0) {
271 - 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';
272 - 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';
271 + 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';
272 + 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';
273 } else {
274 // Server asked that agent be installed to preferably not use a HTTP proxy.
275 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';
views/default.handlebars
+12 -12
@@ -5273,12 +5273,12 @@
5273 y += '</select>';
5274
5275 var x = '';
5276 - if (mode == 0) { x += '<div>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.<br /><br />'; }
5277 - if (mode == 1) { x += '<div>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.<br /><br />'; }
5278 - x += addHtmlValue('Operating System', y);
5279 - x += addHtmlValue('MeshCmd', '<a id=meshcmddownloadid href="meshagents?meshcmd=3" download></a>');
5280 - if (mode == 0) { x += addHtmlValue('Action File', '<a href="meshagents?meshaction=generic" download>MeshAction (.txt)</a>'); }
5281 - if (mode == 1) { x += addHtmlValue('Action File', '<a href="meshagents?meshaction=route&nodeid=' + nodeid + '" download>MeshAction (.txt)</a>'); }
5276 + if (mode == 0) { x += '<div>' + "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." + '<br /><br />'; }
5277 + if (mode == 1) { x += '<div>' + "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." + '<br /><br />'; }
5278 + x += addHtmlValue("Operating System", y);
5279 + x += addHtmlValue("MeshCmd", '<a id=meshcmddownloadid href="meshagents?meshcmd=3" download></a>');
5280 + if (mode == 0) { x += addHtmlValue("Action File", '<a href="meshagents?meshaction=generic" download>' + "MeshAction (.txt)" + '</a>'); }
5281 + if (mode == 1) { x += addHtmlValue("Action File", '<a href="meshagents?meshaction=route&nodeid=' + nodeid + '" download>' + "MeshAction (.txt)" + '</a>'); }
5282 x += '</div>';
5283 setDialogMode(2, [ "Download MeshCmd", "Network Router" ][mode], 9, null, x, 'fileDownload');
5284 meshCmdOsClick();
@@ -5287,12 +5287,12 @@
5287 function meshCmdOsClick() {
5288 var os = Q('aginsSelect').value, osn = '', osurl = '';
5289 //Q('meshcmddownloadid').href = 'meshagents?meshcmd=' + os;
5290 - if (os == 3) { osn = 'MeshCmd (Win32 executable)'; }
5291 - if (os == 4) { osn = 'MeshCmd (Win64 executable)'; }
5292 - if (os == 5) { osn = 'MeshCmd (Linux x86, 32bit)'; }
5293 - if (os == 6) { osn = 'MeshCmd (Linux x86, 64bit)'; }
5294 - if (os == 16) { osn = 'MeshCmd (MacOS, 64bit)'; }
5295 - if (os == 25) { osn = 'MeshCmd (Linux ARM, 32bit)'; }
5290 + if (os == 3) { osn = "MeshCmd (Win32 executable)"; }
5291 + if (os == 4) { osn = "MeshCmd (Win64 executable)"; }
5292 + if (os == 5) { osn = "MeshCmd (Linux x86, 32bit)"; }
5293 + if (os == 6) { osn = "MeshCmd (Linux x86, 64bit)"; }
5294 + if (os == 16) { osn = "MeshCmd (MacOS, 64bit)"; }
5295 + if (os == 25) { osn = "MeshCmd (Linux ARM, 32bit)"; }
5296 QH('meshcmddownloadid', osn);
5297 Q('meshcmddownloadid').setAttribute('href', 'meshagents?meshcmd=' + os);
5298 }