More agent invite code feature fixes.

Ylian Saint-Hilaire committed Mar 17, 2020 at 09:40 UTC 3a61a77b8afb3d7a07397d9e5441ec6c36abe353
5 files changed +526 -475
meshuser.js
+23 -8
@@ -2273,15 +2273,30 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2273 if ((common.validateInt(command.flags) == true) && (command.flags != mesh.flags)) { if (change != '') change += ' and flags changed'; else change += 'Group "' + mesh.name + '" flags changed'; mesh.flags = command.flags; }
2274 if ((common.validateInt(command.consent) == true) && (command.consent != mesh.consent)) { if (change != '') change += ' and consent changed'; else change += 'Group "' + mesh.name + '" consent changed'; mesh.consent = command.consent; }
2275
2276 - if (command.invite === '*') {
2277 - // Clear invite codes
2278 - if (mesh.invite != null) { delete mesh.invite; }
2279 - if (change != '') { change += ' and invite code changed'; } else { change += 'Group "' + mesh.name + '" invite code changed'; }
2280 - } else if (typeof command.invite === 'object') {
2281 - // Set invite codes
2282 - if ((mesh.invite == null) || (mesh.invite.codes != command.invite.codes) || (mesh.invite.flags != command.invite.flags)) {
2283 - mesh.invite = { codes: command.invite.codes, flags: command.invite.flags };
2276 + // See if we need to change device group invitation codes
2277 + if (mesh.mtype == 2) {
2278 + if (command.invite === '*') {
2279 + // Clear invite codes
2280 + if (mesh.invite != null) { delete mesh.invite; }
2281 if (change != '') { change += ' and invite code changed'; } else { change += 'Group "' + mesh.name + '" invite code changed'; }
2282 + } else if (typeof command.invite === 'object') {
2283 + // Set invite codes
2284 + if ((mesh.invite == null) || (mesh.invite.codes != command.invite.codes) || (mesh.invite.flags != command.invite.flags)) {
2285 + // Check if an invite code is not already in use.
2286 + var dup = null;
2287 + for (var i in command.invite.codes) {
2288 + for (var j in parent.meshes) {
2289 + if ((j != command.meshid) && (parent.meshes[j].invite != null) && (parent.meshes[j].invite.codes.indexOf(command.invite.codes[i]) >= 0)) { dup = command.invite.codes[i]; break; }
2290 + }
2291 + }
2292 + if (dup != null) {
2293 + // A duplicate was found, don't allow this change.
2294 + displayNotificationMessage('Error, invite code \"' + dup + '\" already in use.', 'Invite Codes');
2295 + return;
2296 + }
2297 + mesh.invite = { codes: command.invite.codes, flags: command.invite.flags };
2298 + if (change != '') { change += ' and invite code changed'; } else { change += 'Group "' + mesh.name + '" invite code changed'; }
2299 + }
2300 }
2301 }
2302
package.json
+1 -1
@@ -1,6 +1,6 @@
1 {
2 "name": "meshcentral",
3 - "version": "0.5.0-h",
3 + "version": "0.5.0-i",
4 "keywords": [
5 "Remote Management",
6 "Intel AMT",
sample-config.json
+2 -2
@@ -47,8 +47,8 @@
47 "name": "Local server name",
48 "info": "Information about this server"
49 },
50 - "_TlsOffload": true,
51 - "_trustedproxy": true,
50 + "_TlsOffload": "127.0.0.1",
51 + "_TrustedProxy": "127.0.0.1",
52 "_MpsPort": 44330,
53 "_MpsAliasPort": 4433,
54 "_MpsAliasHost": "mps.mydomain.com",
translate/translate.json
+499 -462
@@ -11,8 +11,8 @@
11 "pt": " + CIRA",
12 "ru": " + CIRA",
13 "xloc": [
14 - "default.handlebars->27->1066",
15 - "default.handlebars->27->1068"
14 + "default.handlebars->27->1068",
15 + "default.handlebars->27->1070"
16 ]
17 },
18 {
@@ -196,8 +196,8 @@
196 "pt": " Os usuários precisam fazer login neste servidor uma vez antes de poderem ser adicionados a um grupo de dispositivos.",
197 "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.",
198 "xloc": [
199 - "default.handlebars->27->1141",
200 - "default.handlebars->27->1373"
199 + "default.handlebars->27->1143",
200 + "default.handlebars->27->1390"
201 ]
202 },
203 {
@@ -353,7 +353,7 @@
353 "pt": "* Deixe em branco para atribuir uma senha aleatória a cada dispositivo.",
354 "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.",
355 "xloc": [
356 - "default.handlebars->27->1116"
356 + "default.handlebars->27->1118"
357 ]
358 },
359 {
@@ -383,7 +383,7 @@
383 "ru": ", ",
384 "xloc": [
385 "default-mobile.handlebars->9->333",
386 - "default.handlebars->27->1194"
386 + "default.handlebars->27->1196"
387 ]
388 },
389 {
@@ -541,8 +541,8 @@
541 "xloc": [
542 "default-mobile.handlebars->9->246",
543 "default-mobile.handlebars->9->70",
544 - "default.handlebars->27->1216",
545 - "default.handlebars->27->1452",
544 + "default.handlebars->27->1233",
545 + "default.handlebars->27->1469",
546 "default.handlebars->27->653"
547 ]
548 },
@@ -586,7 +586,7 @@
586 "pt": "1 sessão ativa",
587 "ru": "1 активная сессия",
588 "xloc": [
589 - "default.handlebars->27->1414"
589 + "default.handlebars->27->1431"
590 ]
591 },
592 {
@@ -602,7 +602,7 @@
602 "xloc": [
603 "default-mobile.handlebars->9->337",
604 "default-mobile.handlebars->9->80",
605 - "default.handlebars->27->1233"
605 + "default.handlebars->27->1250"
606 ]
607 },
608 {
@@ -632,7 +632,7 @@
632 "pt": "1 grupo",
633 "ru": "1 группа",
634 "xloc": [
635 - "default.handlebars->27->1397"
635 + "default.handlebars->27->1414"
636 ]
637 },
638 {
@@ -690,7 +690,7 @@
690 "pt": "Mais 1 usuário não mostrado, use a caixa de pesquisa para procurar usuários...",
691 "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...",
692 "xloc": [
693 - "default.handlebars->27->1268"
693 + "default.handlebars->27->1285"
694 ]
695 },
696 {
@@ -730,7 +730,7 @@
730 "pt": "1 sessão",
731 "ru": "1 сессия",
732 "xloc": [
733 - "default.handlebars->27->1272"
733 + "default.handlebars->27->1289"
734 ]
735 },
736 {
@@ -946,7 +946,7 @@
946 "pt": "Autenticação de segundo fator ativada",
947 "ru": "двухфакторная аутентификация включена",
948 "xloc": [
949 - "default.handlebars->27->1406"
949 + "default.handlebars->27->1423"
950 ]
951 },
952 {
@@ -1538,7 +1538,7 @@
1538 "pt": "Acesso aos arquivos do servidor",
1539 "ru": "Доступ к файлам сервера",
1540 "xloc": [
1541 - "default.handlebars->27->1378"
1541 + "default.handlebars->27->1395"
1542 ]
1543 },
1544 {
@@ -1775,8 +1775,8 @@
1775 "pt": "Ativação",
1776 "ru": "Активация",
1777 "xloc": [
1778 - "default.handlebars->27->1079",
1778 "default.handlebars->27->1081",
1779 + "default.handlebars->27->1083",
1780 "default.handlebars->27->212",
1781 "default.handlebars->27->214"
1782 ]
@@ -1848,10 +1848,10 @@
1848 "pt": "Adicionar grupo de dispositivos",
1849 "ru": "Добавить группу устройств",
1850 "xloc": [
1851 - "default.handlebars->27->1167",
1851 "default.handlebars->27->1169",
1853 - "default.handlebars->27->1352",
1854 - "default.handlebars->27->1429",
1852 + "default.handlebars->27->1171",
1853 + "default.handlebars->27->1369",
1854 + "default.handlebars->27->1446",
1855 "default.handlebars->27->187"
1856 ]
1857 },
@@ -1918,7 +1918,7 @@
1918 "nl": "Lidmaatschap toevoegen",
1919 "ru": "Добавить участие",
1920 "xloc": [
1921 - "default.handlebars->27->1448"
1921 + "default.handlebars->27->1465"
1922 ]
1923 },
1924 {
@@ -1962,9 +1962,9 @@
1962 "nl": "Gebruikersgroep toevoegen",
1963 "ru": "Добавить группу пользователей",
1964 "xloc": [
1965 - "default.handlebars->27->1073",
1966 - "default.handlebars->27->1168",
1967 - "default.handlebars->27->1438"
1965 + "default.handlebars->27->1075",
1966 + "default.handlebars->27->1170",
1967 + "default.handlebars->27->1455"
1968 ]
1969 },
1970 {
@@ -1992,8 +1992,8 @@
1992 "pt": "Adicionar usuários",
1993 "ru": "Добавить пользователей",
1994 "xloc": [
1995 - "default.handlebars->27->1072",
1996 - "default.handlebars->27->1347"
1995 + "default.handlebars->27->1074",
1996 + "default.handlebars->27->1364"
1997 ]
1998 },
1999 {
@@ -2007,7 +2007,7 @@
2007 "pt": "Adicionar usuários ao grupo de dispositivos",
2008 "ru": "Добавить пользователей в группу устройств",
2009 "xloc": [
2010 - "default.handlebars->27->1166"
2010 + "default.handlebars->27->1168"
2011 ]
2012 },
2013 {
@@ -2018,7 +2018,7 @@
2018 "nl": "Voeg gebruikers toe aan de gebruikersgroep",
2019 "ru": "Добавить пользователей в группу",
2020 "xloc": [
2021 - "default.handlebars->27->1375"
2021 + "default.handlebars->27->1392"
2022 ]
2023 },
2024 {
@@ -2060,7 +2060,7 @@
2060 "pt": "Adicione um novo Intel® Computador AMT localizado na Internet.",
2061 "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.",
2062 "xloc": [
2063 - "default.handlebars->27->1074",
2063 + "default.handlebars->27->1076",
2064 "default.handlebars->27->205"
2065 ]
2066 },
@@ -2075,7 +2075,7 @@
2075 "pt": "Adicione um novo Intel® AMT computer that is located on the local network.",
2076 "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.",
2077 "xloc": [
2078 - "default.handlebars->27->1076",
2078 + "default.handlebars->27->1078",
2079 "default.handlebars->27->207"
2080 ]
2081 },
@@ -2104,7 +2104,7 @@
2104 "pt": "Adicione um novo computador a essa malha instalando o agente de malha.",
2105 "ru": "Добавить новый компьютер к этой сети установкой Mesh Agent.",
2106 "xloc": [
2107 - "default.handlebars->27->1082",
2107 + "default.handlebars->27->1084",
2108 "default.handlebars->27->215"
2109 ]
2110 },
@@ -2179,7 +2179,7 @@
2179 "pt": "Admin Realms",
2180 "ru": "Области администратора",
2181 "xloc": [
2182 - "default.handlebars->27->1401"
2182 + "default.handlebars->27->1418"
2183 ]
2184 },
2185 {
@@ -2206,7 +2206,7 @@
2206 "pt": "Domínios Administrativos",
2207 "ru": "Административные области",
2208 "xloc": [
2209 - "default.handlebars->27->1317"
2209 + "default.handlebars->27->1334"
2210 ]
2211 },
2212 {
@@ -2220,7 +2220,7 @@
2220 "pt": "Administrador",
2221 "ru": "Администратор",
2222 "xloc": [
2223 - "default.handlebars->27->1279"
2223 + "default.handlebars->27->1296"
2224 ]
2225 },
2226 {
@@ -2250,8 +2250,8 @@
2250 "default-mobile.handlebars->9->124",
2251 "default-mobile.handlebars->9->177",
2252 "default-mobile.handlebars->9->193",
2253 - "default.handlebars->27->1204",
2254 - "default.handlebars->27->1210",
2253 + "default.handlebars->27->1221",
2254 + "default.handlebars->27->1227",
2255 "default.handlebars->27->166",
2256 "default.handlebars->27->355",
2257 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -2265,8 +2265,8 @@
2265 "nl": "Agent + Intel AMT",
2266 "ru": "Агент + Intel AMT",
2267 "xloc": [
2268 - "default.handlebars->27->1206",
2269 - "default.handlebars->27->1212"
2268 + "default.handlebars->27->1223",
2269 + "default.handlebars->27->1229"
2270 ]
2271 },
2272 {
@@ -2293,7 +2293,7 @@
2293 "ru": "Консоль агента",
2294 "xloc": [
2295 "default-mobile.handlebars->9->318",
2296 - "default.handlebars->27->1177"
2296 + "default.handlebars->27->1179"
2297 ]
2298 },
2299 {
@@ -2304,7 +2304,7 @@
2304 "nl": "Agent fout tellers",
2305 "ru": "Счетчик ошибок агента",
2306 "xloc": [
2307 - "default.handlebars->27->1460"
2307 + "default.handlebars->27->1477"
2308 ]
2309 },
2310 {
@@ -2350,7 +2350,7 @@
2350 "nl": "Agent Sessies",
2351 "ru": "Сессии агентов",
2352 "xloc": [
2353 - "default.handlebars->27->1476"
2353 + "default.handlebars->27->1493"
2354 ]
2355 },
2356 {
@@ -2375,7 +2375,7 @@
2375 "nl": "Agent Type",
2376 "ru": "Типы агента",
2377 "xloc": [
2378 - "default.handlebars->27->1208",
2378 + "default.handlebars->27->1225",
2379 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
2380 ]
2381 },
@@ -2447,7 +2447,7 @@
2447 "pt": "Agentes",
2448 "ru": "Агенты",
2449 "xloc": [
2450 - "default.handlebars->27->1489"
2450 + "default.handlebars->27->1506"
2451 ]
2452 },
2453 {
@@ -2519,8 +2519,8 @@
2519 "pt": "Permitir que os usuários gerenciem esse grupo de dispositivos e dispositivos neste grupo.",
2520 "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.",
2521 "xloc": [
2522 - "default.handlebars->27->1140",
2523 - "default.handlebars->27->1372"
2522 + "default.handlebars->27->1142",
2523 + "default.handlebars->27->1389"
2524 ]
2525 },
2526 {
@@ -2985,7 +2985,7 @@
2985 "ru": "Вы действительно хотите удалить группу \\\"{0}\\\"? Удаление группы приведет к удалению всей информации связанной с устройствами в этой группе.",
2986 "xloc": [
2987 "default-mobile.handlebars->9->289",
2988 - "default.handlebars->27->1120"
2988 + "default.handlebars->27->1122"
2989 ]
2990 },
2991 {
@@ -3038,7 +3038,7 @@
3038 "nl": "Weet u zeker dat u de plug-in {0} wilt gebruiken: {1}",
3039 "ru": "Вы уверенны, что {0} плагин: {1}",
3040 "xloc": [
3041 - "default.handlebars->27->1525"
3041 + "default.handlebars->27->1542"
3042 ]
3043 },
3044 {
@@ -3088,7 +3088,7 @@
3088 "pt": "Aplicativo de autenticação",
3089 "ru": "Приложение аутентификации",
3090 "xloc": [
3091 - "default.handlebars->27->1402"
3091 + "default.handlebars->27->1419"
3092 ]
3093 },
3094 {
@@ -3302,6 +3302,8 @@
3302 "pt": "Segundo plano e interativo",
3303 "ru": "Фоновый и интерактивный",
3304 "xloc": [
3305 + "default.handlebars->27->1204",
3306 + "default.handlebars->27->1211",
3307 "default.handlebars->27->282"
3308 ]
3309 },
@@ -3315,6 +3317,8 @@
3317 "pt": "Apenas em segundo plano",
3318 "ru": "Только фоновый",
3319 "xloc": [
3320 + "default.handlebars->27->1205",
3321 + "default.handlebars->27->1212",
3322 "default.handlebars->27->283",
3323 "default.handlebars->27->305"
3324 ]
@@ -3344,7 +3348,7 @@
3348 "pt": "Códigos de backup",
3349 "ru": "Резервные коды",
3350 "xloc": [
3347 - "default.handlebars->27->1404"
3351 + "default.handlebars->27->1421"
3352 ]
3353 },
3354 {
@@ -3355,7 +3359,7 @@
3359 "nl": "Ongeldige handtening",
3360 "ru": "Плохой ключ",
3361 "xloc": [
3358 - "default.handlebars->27->1467"
3362 + "default.handlebars->27->1484"
3363 ]
3364 },
3365 {
@@ -3366,7 +3370,7 @@
3370 "nl": "Onjuist webcertificaat",
3371 "ru": "Плохой веб-сертификат",
3372 "xloc": [
3369 - "default.handlebars->27->1466"
3373 + "default.handlebars->27->1483"
3374 ]
3375 },
3376 {
@@ -3457,7 +3461,7 @@
3461 "pt": "Broadcast",
3462 "ru": "Отправить сообщение",
3463 "xloc": [
3460 - "default.handlebars->27->1345",
3464 + "default.handlebars->27->1362",
3465 "default.handlebars->container->column_l->p4->3->1->0->3->1"
3466 ]
3467 },
@@ -3472,7 +3476,7 @@
3476 "pt": "Mensagem de transmissão",
3477 "ru": "Отправить сообщение",
3478 "xloc": [
3475 - "default.handlebars->27->1302"
3479 + "default.handlebars->27->1319"
3480 ]
3481 },
3482 {
@@ -3486,7 +3490,7 @@
3490 "pt": "Transmita uma mensagem para todos os usuários conectados.",
3491 "ru": "Отправить сообщение всем подключенным пользователям.",
3492 "xloc": [
3489 - "default.handlebars->27->1301"
3493 + "default.handlebars->27->1318"
3494 ]
3495 },
3496 {
@@ -3542,8 +3546,8 @@
3546 "ru": "CIRA",
3547 "xloc": [
3548 "default-mobile.handlebars->9->125",
3545 - "default.handlebars->27->1108",
3546 - "default.handlebars->27->1113",
3549 + "default.handlebars->27->1110",
3550 + "default.handlebars->27->1115",
3551 "default.handlebars->27->168",
3552 "default.handlebars->27->357"
3553 ]
@@ -3559,7 +3563,7 @@
3563 "pt": "Servidor CIRA",
3564 "ru": "CIRA Сервер",
3565 "xloc": [
3562 - "default.handlebars->27->1516"
3566 + "default.handlebars->27->1533"
3567 ]
3568 },
3569 {
@@ -3573,7 +3577,7 @@
3577 "pt": "Comandos do servidor CIRA",
3578 "ru": "CIRA Сервер команды",
3579 "xloc": [
3576 - "default.handlebars->27->1517"
3580 + "default.handlebars->27->1534"
3581 ]
3582 },
3583 {
@@ -3584,7 +3588,7 @@
3588 "nl": "CPU gebruik",
3589 "ru": "Загрузка CPU",
3590 "xloc": [
3587 - "default.handlebars->27->1481"
3591 + "default.handlebars->27->1498"
3592 ]
3593 },
3594 {
@@ -3598,7 +3602,7 @@
3602 "pt": "Carga da CPU nos últimos 15 minutos",
3603 "ru": "Загрузка CPU за последние 15 минут",
3604 "xloc": [
3601 - "default.handlebars->27->1484"
3605 + "default.handlebars->27->1501"
3606 ]
3607 },
3608 {
@@ -3612,7 +3616,7 @@
3616 "pt": "Carga da CPU nos últimos 5 minutos",
3617 "ru": "Загрузка CPU за последние 5 минут",
3618 "xloc": [
3615 - "default.handlebars->27->1483"
3619 + "default.handlebars->27->1500"
3620 ]
3621 },
3622 {
@@ -3626,7 +3630,7 @@
3630 "pt": "Carga da CPU no último minuto",
3631 "ru": "Загрузка CPU за последнюю минуту",
3632 "xloc": [
3629 - "default.handlebars->27->1482"
3633 + "default.handlebars->27->1499"
3634 ]
3635 },
3636 {
@@ -3656,8 +3660,8 @@
3660 "pt": "Formato CSV",
3661 "ru": "Формат CSV",
3662 "xloc": [
3659 - "default.handlebars->27->1254",
3660 - "default.handlebars->27->1293",
3663 + "default.handlebars->27->1271",
3664 + "default.handlebars->27->1310",
3665 "default.handlebars->27->384"
3666 ]
3667 },
@@ -3672,7 +3676,7 @@
3676 "pt": "Erro de chamada",
3677 "ru": "Ошибка вызова",
3678 "xloc": [
3675 - "default.handlebars->27->1526"
3679 + "default.handlebars->27->1543"
3680 ]
3681 },
3682 {
@@ -3761,7 +3765,7 @@
3765 "pt": "Alterar email para {0}",
3766 "ru": "Смена email для {0}",
3767 "xloc": [
3764 - "default.handlebars->27->1420"
3768 + "default.handlebars->27->1437"
3769 ]
3770 },
3771 {
@@ -3793,7 +3797,7 @@
3797 "xloc": [
3798 "default-mobile.handlebars->9->52",
3799 "default.handlebars->27->1004",
3796 - "default.handlebars->27->1413"
3800 + "default.handlebars->27->1430"
3801 ]
3802 },
3803 {
@@ -3807,7 +3811,7 @@
3811 "pt": "Alterar senha para {0}",
3812 "ru": "Смена пароля для {0}",
3813 "xloc": [
3810 - "default.handlebars->27->1427"
3814 + "default.handlebars->27->1444"
3815 ]
3816 },
3817 {
@@ -3857,7 +3861,7 @@
3861 "en": "Change the password for this user",
3862 "nl": "Wijzig het wachtwoord voor deze gebruiker",
3863 "xloc": [
3860 - "default.handlebars->27->1412"
3864 + "default.handlebars->27->1429"
3865 ]
3866 },
3867 {
@@ -3927,7 +3931,7 @@
3931 "pt": "Chat",
3932 "ru": "Чат",
3933 "xloc": [
3930 - "default.handlebars->27->1271"
3934 + "default.handlebars->27->1288"
3935 ]
3936 },
3937 {
@@ -3943,8 +3947,8 @@
3947 "xloc": [
3948 "default-mobile.handlebars->9->310",
3949 "default-mobile.handlebars->9->328",
3946 - "default.handlebars->27->1164",
3947 - "default.handlebars->27->1188"
3950 + "default.handlebars->27->1166",
3951 + "default.handlebars->27->1190"
3952 ]
3953 },
3954 {
@@ -4014,7 +4018,7 @@
4018 "pt": "Verificando ...",
4019 "ru": "Проверка...",
4020 "xloc": [
4017 - "default.handlebars->27->1522",
4021 + "default.handlebars->27->1539",
4022 "default.handlebars->27->778"
4023 ]
4024 },
@@ -4142,7 +4146,7 @@
4146 "default-mobile.handlebars->9->271",
4147 "default-mobile.handlebars->9->28",
4148 "default-mobile.handlebars->9->94",
4145 - "default.handlebars->27->1248",
4149 + "default.handlebars->27->1265",
4150 "default.handlebars->27->672",
4151 "default.handlebars->27->674",
4152 "default.handlebars->27->676",
@@ -4259,8 +4263,8 @@
4263 "pt": "Acesso remoto iniciado pelo cliente",
4264 "ru": "Клиент инициировал удаленный доступ",
4265 "xloc": [
4262 - "default.handlebars->27->1107",
4263 - "default.handlebars->27->1112"
4266 + "default.handlebars->27->1109",
4267 + "default.handlebars->27->1114"
4268 ]
4269 },
4270 {
@@ -4317,8 +4321,8 @@
4321 "nl": "Gemeenschappelijke apparaatgroepen",
4322 "ru": "Общие группы устройств",
4323 "xloc": [
4320 - "default.handlebars->27->1353",
4321 - "default.handlebars->27->1430"
4324 + "default.handlebars->27->1370",
4325 + "default.handlebars->27->1447"
4326 ]
4327 },
4328 {
@@ -4332,7 +4336,7 @@
4336 "ru": "Подтвердить {0} из {1} записей в это расположение?",
4337 "xloc": [
4338 "default-mobile.handlebars->9->89",
4335 - "default.handlebars->27->1243"
4339 + "default.handlebars->27->1260"
4340 ]
4341 },
4342 {
@@ -4348,8 +4352,8 @@
4352 "xloc": [
4353 "default-mobile.handlebars->9->223",
4354 "default-mobile.handlebars->9->290",
4351 - "default.handlebars->27->1121",
4352 - "default.handlebars->27->1368",
4355 + "default.handlebars->27->1123",
4356 + "default.handlebars->27->1385",
4357 "default.handlebars->27->381",
4358 "default.handlebars->27->561",
4359 "default.handlebars->27->570"
@@ -4435,7 +4439,7 @@
4439 "nl": "Bevestig overschrijven?",
4440 "ru": "Подтвердить перезапись?",
4441 "xloc": [
4438 - "default.handlebars->27->1242"
4442 + "default.handlebars->27->1259"
4443 ]
4444 },
4445 {
@@ -4461,8 +4465,8 @@
4465 "nl": "Bevestig het verwijderen van de apparaatgroep {0}?",
4466 "ru": "Подтвердить удаление группы устройств {0}?",
4467 "xloc": [
4464 - "default.handlebars->27->1363",
4465 - "default.handlebars->27->1450"
4468 + "default.handlebars->27->1380",
4469 + "default.handlebars->27->1467"
4470 ]
4471 },
4472 {
@@ -4473,7 +4477,7 @@
4477 "nl": "Bevestig het verwijderen van de groep {0}?",
4478 "ru": "Подтвердить удаление группы {0}?",
4479 "xloc": [
4476 - "default.handlebars->27->1446"
4480 + "default.handlebars->27->1463"
4481 ]
4482 },
4483 {
@@ -4488,8 +4492,8 @@
4492 "ru": "Подтвердить удаление пользователя {0}?",
4493 "xloc": [
4494 "default-mobile.handlebars->9->336",
4491 - "default.handlebars->27->1197",
4492 - "default.handlebars->27->1371"
4495 + "default.handlebars->27->1199",
4496 + "default.handlebars->27->1388"
4497 ]
4498 },
4499 {
@@ -4540,8 +4544,8 @@
4544 "pt": "Conecte-se ao servidor",
4545 "ru": "Подключиться к серверу",
4546 "xloc": [
4543 - "default.handlebars->27->1111",
4544 - "default.handlebars->27->1115"
4547 + "default.handlebars->27->1113",
4548 + "default.handlebars->27->1117"
4549 ]
4550 },
4551 {
@@ -4595,7 +4599,7 @@
4599 "nl": "Verbonden Intel® AMT",
4600 "ru": "Подключено Intel® AMT",
4601 "xloc": [
4598 - "default.handlebars->27->1472"
4602 + "default.handlebars->27->1489"
4603 ]
4604 },
4605 {
@@ -4606,7 +4610,7 @@
4610 "nl": "Verbonden gebruikers",
4611 "ru": "Подключенные пользователи",
4612 "xloc": [
4609 - "default.handlebars->27->1477"
4613 + "default.handlebars->27->1494"
4614 ]
4615 },
4616 {
@@ -4663,7 +4667,7 @@
4667 "pt": "Contagem de conexões",
4668 "ru": "Подключений ",
4669 "xloc": [
4666 - "default.handlebars->27->1488"
4670 + "default.handlebars->27->1505"
4671 ]
4672 },
4673 {
@@ -4677,7 +4681,7 @@
4681 "pt": "Encaminhador de conexão",
4682 "ru": "Ретранслятор подключения",
4683 "xloc": [
4680 - "default.handlebars->27->1515"
4684 + "default.handlebars->27->1532"
4685 ]
4686 },
4687 {
@@ -4720,7 +4724,7 @@
4724 "ru": "Связь",
4725 "xloc": [
4726 "default-mobile.handlebars->9->198",
4723 - "default.handlebars->27->1213",
4727 + "default.handlebars->27->1230",
4728 "default.handlebars->27->184",
4729 "default.handlebars->27->493",
4730 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -4764,7 +4768,7 @@
4768 "pt": "Codificador de cookies",
4769 "ru": "Cookie-кодировщик",
4770 "xloc": [
4767 - "default.handlebars->27->1502"
4771 + "default.handlebars->27->1519"
4772 ]
4773 },
4774 {
@@ -4973,7 +4977,7 @@
4977 "pt": "Servidor Core",
4978 "ru": "Основной сервер",
4979 "xloc": [
4976 - "default.handlebars->27->1501"
4980 + "default.handlebars->27->1518"
4981 ]
4982 },
4983 {
@@ -5000,7 +5004,7 @@
5004 "pt": "Criar conta",
5005 "ru": "Создать учетную запись",
5006 "xloc": [
5003 - "default.handlebars->27->1313",
5007 + "default.handlebars->27->1330",
5008 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
5009 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
5010 ]
@@ -5027,7 +5031,7 @@
5031 "nl": "Maak een gebruikersgroep.",
5032 "ru": "Создать группу пользователей",
5033 "xloc": [
5030 - "default.handlebars->27->1336"
5034 + "default.handlebars->27->1353"
5035 ]
5036 },
5037 {
@@ -5069,7 +5073,7 @@
5073 "pt": "Crie várias contas ao mesmo tempo importando um arquivo JSON com o seguinte formato:",
5074 "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:",
5075 "xloc": [
5072 - "default.handlebars->27->1284"
5076 + "default.handlebars->27->1301"
5077 ]
5078 },
5079 {
@@ -5098,7 +5102,7 @@
5102 "pt": "Criação",
5103 "ru": "Создано",
5104 "xloc": [
5101 - "default.handlebars->27->1390"
5105 + "default.handlebars->27->1407"
5106 ]
5107 },
5108 {
@@ -5333,7 +5337,7 @@
5337 "pt": "Desativar o modo de controle do cliente (CCM)",
5338 "ru": "Деактивировать режим управления клиентом (CCM)",
5339 "xloc": [
5336 - "default.handlebars->27->1099"
5340 + "default.handlebars->27->1101"
5341 ]
5342 },
5343 {
@@ -5366,7 +5370,7 @@
5370 "default-mobile.handlebars->9->84",
5371 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
5372 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
5369 - "default.handlebars->27->1237",
5373 + "default.handlebars->27->1254",
5374 "default.handlebars->27->411",
5375 "default.handlebars->27->659",
5376 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
@@ -5420,8 +5424,8 @@
5424 "xloc": [
5425 "default-mobile.handlebars->9->288",
5426 "default-mobile.handlebars->9->291",
5423 - "default.handlebars->27->1092",
5424 - "default.handlebars->27->1122"
5427 + "default.handlebars->27->1094",
5428 + "default.handlebars->27->1124"
5429 ]
5430 },
5431 {
@@ -5461,7 +5465,7 @@
5465 "nl": "Verwijder gebruiker",
5466 "ru": "Удалить пользователя",
5467 "xloc": [
5464 - "default.handlebars->27->1411"
5468 + "default.handlebars->27->1428"
5469 ]
5470 },
5471 {
@@ -5472,8 +5476,8 @@
5476 "nl": "Verwijder de gebruikersgroep",
5477 "ru": "Удалить группу пользователей",
5478 "xloc": [
5475 - "default.handlebars->27->1361",
5476 - "default.handlebars->27->1369"
5479 + "default.handlebars->27->1378",
5480 + "default.handlebars->27->1386"
5481 ]
5482 },
5483 {
@@ -5487,7 +5491,7 @@
5491 "pt": "Excluir usuário {0}",
5492 "ru": "Удалить пользователя {0}",
5493 "xloc": [
5490 - "default.handlebars->27->1428"
5494 + "default.handlebars->27->1445"
5495 ]
5496 },
5497 {
@@ -5539,7 +5543,7 @@
5543 "xloc": [
5544 "default-mobile.handlebars->9->254",
5545 "default-mobile.handlebars->9->86",
5542 - "default.handlebars->27->1239",
5546 + "default.handlebars->27->1256",
5547 "default.handlebars->27->661"
5548 ]
5549 },
@@ -5551,7 +5555,7 @@
5555 "nl": "Verwijder gebruikersgroep {0}?",
5556 "ru": "Удалить группу пользователей {0}?",
5557 "xloc": [
5554 - "default.handlebars->27->1367"
5558 + "default.handlebars->27->1384"
5559 ]
5560 },
5561 {
@@ -5567,7 +5571,7 @@
5571 "xloc": [
5572 "default-mobile.handlebars->9->253",
5573 "default-mobile.handlebars->9->85",
5570 - "default.handlebars->27->1238",
5574 + "default.handlebars->27->1255",
5575 "default.handlebars->27->660"
5576 ]
5577 },
@@ -5654,11 +5658,11 @@
5658 "default-mobile.handlebars->9->63",
5659 "default.handlebars->27->1016",
5660 "default.handlebars->27->1040",
5657 - "default.handlebars->27->1124",
5658 - "default.handlebars->27->1335",
5659 - "default.handlebars->27->1340",
5660 - "default.handlebars->27->1342",
5661 - "default.handlebars->27->1365",
5661 + "default.handlebars->27->1126",
5662 + "default.handlebars->27->1352",
5663 + "default.handlebars->27->1357",
5664 + "default.handlebars->27->1359",
5665 + "default.handlebars->27->1382",
5666 "default.handlebars->27->451",
5667 "default.handlebars->27->452",
5668 "default.handlebars->27->603",
@@ -5688,7 +5692,7 @@
5692 "pt": "Área de Trabalho",
5693 "ru": "Рабочий стол",
5694 "xloc": [
5691 - "default.handlebars->27->1126",
5695 + "default.handlebars->27->1128",
5696 "default.handlebars->27->417",
5697 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
5698 "default.handlebars->contextMenu->cxdesktop"
@@ -5837,11 +5841,11 @@
5841 "nl": "Apparaat Groep",
5842 "ru": "Группа устройства",
5843 "xloc": [
5840 - "default.handlebars->27->1143",
5844 "default.handlebars->27->1145",
5842 - "default.handlebars->27->1359",
5843 - "default.handlebars->27->1436",
5844 - "default.handlebars->27->1442"
5845 + "default.handlebars->27->1147",
5846 + "default.handlebars->27->1376",
5847 + "default.handlebars->27->1453",
5848 + "default.handlebars->27->1459"
5849 ]
5850 },
5851 {
@@ -5856,7 +5860,7 @@
5860 "ru": "Пользователь группы устройств",
5861 "xloc": [
5862 "default-mobile.handlebars->9->334",
5859 - "default.handlebars->27->1195"
5863 + "default.handlebars->27->1197"
5864 ]
5865 },
5866 {
@@ -5871,10 +5875,10 @@
5875 "ru": "Группы устройств",
5876 "xloc": [
5877 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
5874 - "default.handlebars->27->1331",
5875 - "default.handlebars->27->1344",
5876 - "default.handlebars->27->1399",
5877 - "default.handlebars->27->1475",
5878 + "default.handlebars->27->1348",
5879 + "default.handlebars->27->1361",
5880 + "default.handlebars->27->1416",
5881 + "default.handlebars->27->1492",
5882 "default.handlebars->container->column_l->p2->9"
5883 ]
5884 },
@@ -5954,7 +5958,7 @@
5958 "pt": "Conexões de dispositivos.",
5959 "ru": "Подключения устройств.",
5960 "xloc": [
5957 - "default.handlebars->27->1199",
5961 + "default.handlebars->27->1216",
5962 "default.handlebars->27->984"
5963 ]
5964 },
@@ -5969,7 +5973,7 @@
5973 "pt": "Desconexões de dispositivos.",
5974 "ru": "Отключения устройств.",
5975 "xloc": [
5972 - "default.handlebars->27->1200",
5976 + "default.handlebars->27->1217",
5977 "default.handlebars->27->985"
5978 ]
5979 },
@@ -6339,7 +6343,7 @@
6343 "pt": "Fazer nada",
6344 "ru": "Ничего не делать",
6345 "xloc": [
6342 - "default.handlebars->27->1105"
6346 + "default.handlebars->27->1107"
6347 ]
6348 },
6349 {
@@ -6368,8 +6372,8 @@
6372 "pt": "Não configure",
6373 "ru": "Не настраивать",
6374 "xloc": [
6371 - "default.handlebars->27->1109",
6372 - "default.handlebars->27->1114"
6375 + "default.handlebars->27->1111",
6376 + "default.handlebars->27->1116"
6377 ]
6378 },
6379 {
@@ -6383,7 +6387,7 @@
6387 "pt": "Não conecte ao servidor",
6388 "ru": "Не подключаться к серверу",
6389 "xloc": [
6386 - "default.handlebars->27->1110"
6390 + "default.handlebars->27->1112"
6391 ]
6392 },
6393 {
@@ -6595,7 +6599,7 @@
6599 "pt": "Faça o download da lista de eventos com um dos formatos de arquivo abaixo.",
6600 "ru": "Скачать список событий в одном из форматов ниже.",
6601 "xloc": [
6598 - "default.handlebars->27->1253"
6602 + "default.handlebars->27->1270"
6603 ]
6604 },
6605 {
@@ -6609,7 +6613,7 @@
6613 "pt": "Baixe a lista de usuários com um dos formatos de arquivo abaixo.",
6614 "ru": "Скачать список пользователей в одном из форматов ниже.",
6615 "xloc": [
6612 - "default.handlebars->27->1292"
6616 + "default.handlebars->27->1309"
6617 ]
6618 },
6619 {
@@ -6677,7 +6681,7 @@
6681 "nl": "Duplicaat Agent",
6682 "ru": "Скопировать агент",
6683 "xloc": [
6680 - "default.handlebars->27->1471"
6684 + "default.handlebars->27->1488"
6685 ]
6686 },
6687 {
@@ -6699,7 +6703,7 @@
6703 "nl": "Dupliceer Gebruikers Groep",
6704 "ru": "Скопировать группу пользователей",
6705 "xloc": [
6702 - "default.handlebars->27->1337"
6706 + "default.handlebars->27->1354"
6707 ]
6708 },
6709 {
@@ -6727,7 +6731,7 @@
6731 "pt": "Durante a ativação, o agente terá acesso às informações da senha do administrador.",
6732 "ru": "Во время активации агент будет иметь доступ к паролю администратора.",
6733 "xloc": [
6730 - "default.handlebars->27->1119"
6734 + "default.handlebars->27->1121"
6735 ]
6736 },
6737 {
@@ -6842,9 +6846,9 @@
6846 "default-mobile.handlebars->9->294",
6847 "default-mobile.handlebars->9->296",
6848 "default-mobile.handlebars->9->314",
6845 - "default.handlebars->27->1125",
6846 - "default.handlebars->27->1149",
6847 - "default.handlebars->27->1173"
6849 + "default.handlebars->27->1127",
6850 + "default.handlebars->27->1151",
6851 + "default.handlebars->27->1175"
6852 ]
6853 },
6854 {
@@ -6858,7 +6862,7 @@
6862 "pt": "Editar recursos do grupo de dispositivos",
6863 "ru": "Редактировать функции группы устройств",
6864 "xloc": [
6861 - "default.handlebars->27->1139"
6865 + "default.handlebars->27->1141"
6866 ]
6867 },
6868 {
@@ -6869,7 +6873,7 @@
6873 "nl": "Bewerk apparaatgroep rechten",
6874 "ru": "Редактировать права группы устройств",
6875 "xloc": [
6872 - "default.handlebars->27->1170"
6876 + "default.handlebars->27->1172"
6877 ]
6878 },
6879 {
@@ -6882,7 +6886,7 @@
6886 "pt": "Editar consentimento do usuário do grupo de dispositivos",
6887 "ru": "Редактировать согласие пользователя группы устройств",
6888 "xloc": [
6885 - "default.handlebars->27->1136"
6889 + "default.handlebars->27->1138"
6890 ]
6891 },
6892 {
@@ -6897,7 +6901,7 @@
6901 "ru": "Редактировать примечания устройства",
6902 "xloc": [
6903 "default-mobile.handlebars->9->308",
6900 - "default.handlebars->27->1162"
6904 + "default.handlebars->27->1164"
6905 ]
6906 },
6907 {
@@ -6928,7 +6932,7 @@
6932 "ru": "Редактировать примечания",
6933 "xloc": [
6934 "default-mobile.handlebars->9->321",
6931 - "default.handlebars->27->1180"
6935 + "default.handlebars->27->1182"
6936 ]
6937 },
6938 {
@@ -6941,7 +6945,7 @@
6945 "pt": "Editar permissões do grupo de dispositivos do usuário",
6946 "ru": "Редактировать права пользователя для группы устройств",
6947 "xloc": [
6944 - "default.handlebars->27->1171"
6948 + "default.handlebars->27->1173"
6949 ]
6950 },
6951 {
@@ -6952,7 +6956,7 @@
6956 "nl": "Bewerk de gebruikersgroep",
6957 "ru": "Редактировать группу пользователей",
6958 "xloc": [
6955 - "default.handlebars->27->1366"
6959 + "default.handlebars->27->1383"
6960 ]
6961 },
6962 {
@@ -6979,10 +6983,10 @@
6983 "ru": "Email",
6984 "xloc": [
6985 "default-mobile.handlebars->9->40",
6982 - "default.handlebars->27->1304",
6983 - "default.handlebars->27->1386",
6984 - "default.handlebars->27->1387",
6985 - "default.handlebars->27->1416",
6986 + "default.handlebars->27->1321",
6987 + "default.handlebars->27->1403",
6988 + "default.handlebars->27->1404",
6989 + "default.handlebars->27->1433",
6990 "default.handlebars->27->266",
6991 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
6992 "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3"
@@ -7037,7 +7041,7 @@
7041 "pt": "O email foi verificado",
7042 "ru": "Email подтвержден",
7043 "xloc": [
7040 - "default.handlebars->27->1383"
7044 + "default.handlebars->27->1400"
7045 ]
7046 },
7047 {
@@ -7051,7 +7055,7 @@
7055 "pt": "O email foi verificado.",
7056 "ru": "Email подтвержден.",
7057 "xloc": [
7054 - "default.handlebars->27->1310"
7058 + "default.handlebars->27->1327"
7059 ]
7060 },
7061 {
@@ -7065,7 +7069,7 @@
7069 "pt": "Email não verificado",
7070 "ru": "Email не подтвержден",
7071 "xloc": [
7068 - "default.handlebars->27->1384"
7072 + "default.handlebars->27->1401"
7073 ]
7074 },
7075 {
@@ -7094,6 +7098,12 @@
7098 "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->7->1->0->1"
7099 ]
7100 },
7101 + {
7102 + "en": "Enable Invite Codes",
7103 + "xloc": [
7104 + "default.handlebars->27->1201"
7105 + ]
7106 + },
7107 {
7108 "cs": "Zapnout upozorňování v prohlížeči",
7109 "de": "Browser-Benachrichtigung aktivieren",
@@ -7338,7 +7348,7 @@
7348 "pt": "Insira uma lista separada por vírgulas de nomes de regiões administrativas.",
7349 "ru": "Введите разделенный запятыми список имен административных областей.",
7350 "xloc": [
7341 - "default.handlebars->27->1314"
7351 + "default.handlebars->27->1331"
7352 ]
7353 },
7354 {
@@ -7476,7 +7486,7 @@
7486 "pt": "Exportação da lista de eventos",
7487 "ru": "Экспорт списка событий",
7488 "xloc": [
7479 - "default.handlebars->27->1258"
7489 + "default.handlebars->27->1275"
7490 ]
7491 },
7492 {
@@ -7567,7 +7577,7 @@
7577 "nl": "Extern",
7578 "ru": "Внешний",
7579 "xloc": [
7570 - "default.handlebars->27->1495"
7580 + "default.handlebars->27->1512"
7581 ]
7582 },
7583 {
@@ -7719,7 +7729,7 @@
7729 "pt": "Arquivos",
7730 "ru": "Файлы",
7731 "xloc": [
7722 - "default.handlebars->27->1133",
7732 + "default.handlebars->27->1135",
7733 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
7734 "default.handlebars->contextMenu->cxfiles"
7735 ]
@@ -7852,8 +7862,8 @@
7862 "pt": "Forçar redefinição de senha no próximo login.",
7863 "ru": "Принудительно сбросить пароль при следующем входе в систему.",
7864 "xloc": [
7855 - "default.handlebars->27->1308",
7856 - "default.handlebars->27->1425"
7865 + "default.handlebars->27->1325",
7866 + "default.handlebars->27->1442"
7867 ]
7868 },
7869 {
@@ -7923,8 +7933,8 @@
7933 "pt": "Livre",
7934 "ru": "Свободно",
7935 "xloc": [
7926 - "default.handlebars->27->1456",
7927 - "default.handlebars->27->1458"
7936 + "default.handlebars->27->1473",
7937 + "default.handlebars->27->1475"
7938 ]
7939 },
7940 {
@@ -8075,8 +8085,8 @@
8085 "default-mobile.handlebars->9->313",
8086 "default-mobile.handlebars->9->67",
8087 "default.handlebars->27->1025",
8078 - "default.handlebars->27->1148",
8079 - "default.handlebars->27->1319"
8088 + "default.handlebars->27->1150",
8089 + "default.handlebars->27->1336"
8090 ]
8091 },
8092 {
@@ -8090,7 +8100,7 @@
8100 "pt": "Administrador Pleno (todos os direitos)",
8101 "ru": "Администратор с полным доступом (все права)",
8102 "xloc": [
8093 - "default.handlebars->27->1172"
8103 + "default.handlebars->27->1174"
8104 ]
8105 },
8106 {
@@ -8101,9 +8111,9 @@
8111 "nl": "Volledige apparaatgroep beheerder",
8112 "ru": "Администратор группы устройств с полным доступом",
8113 "xloc": [
8104 - "default.handlebars->27->1088",
8105 - "default.handlebars->27->1356",
8106 - "default.handlebars->27->1433"
8114 + "default.handlebars->27->1090",
8115 + "default.handlebars->27->1373",
8116 + "default.handlebars->27->1450"
8117 ]
8118 },
8119 {
@@ -8133,7 +8143,7 @@
8143 "pt": "Administrador completo",
8144 "ru": "Администратор с полным доступом",
8145 "xloc": [
8136 - "default.handlebars->27->1379"
8146 + "default.handlebars->27->1396"
8147 ]
8148 },
8149 {
@@ -8468,7 +8478,7 @@
8478 "nl": "Groeps leden",
8479 "ru": "Члены группы",
8480 "xloc": [
8471 - "default.handlebars->27->1348"
8481 + "default.handlebars->27->1365"
8482 ]
8483 },
8484 {
@@ -8482,7 +8492,7 @@
8492 "pt": "Permissões de grupo para o usuário {0}.",
8493 "ru": "Права на группу для пользователя {0}.",
8494 "xloc": [
8485 - "default.handlebars->27->1147"
8495 + "default.handlebars->27->1149"
8496 ]
8497 },
8498 {
@@ -8493,7 +8503,7 @@
8503 "nl": "Groepsrechten voor {0}.",
8504 "ru": "Права на группу для {0}.",
8505 "xloc": [
8496 - "default.handlebars->27->1146"
8506 + "default.handlebars->27->1148"
8507 ]
8508 },
8509 {
@@ -8518,7 +8528,7 @@
8528 "nl": "Groepen",
8529 "ru": "Группы",
8530 "xloc": [
8521 - "default.handlebars->27->1263",
8531 + "default.handlebars->27->1280",
8532 "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups"
8533 ]
8534 },
@@ -8599,7 +8609,7 @@
8609 "es": "Heap Total",
8610 "nl": "Heap Totaal",
8611 "xloc": [
8602 - "default.handlebars->27->1497"
8612 + "default.handlebars->27->1514"
8613 ]
8614 },
8615 {
@@ -8609,7 +8619,7 @@
8619 "es": "Heap Used",
8620 "nl": "Heap gebruikt",
8621 "xloc": [
8612 - "default.handlebars->27->1496"
8622 + "default.handlebars->27->1513"
8623 ]
8624 },
8625 {
@@ -8750,7 +8760,7 @@
8760 "ru": "Задержано {0} записей для {2}",
8761 "xloc": [
8762 "default-mobile.handlebars->9->91",
8753 - "default.handlebars->27->1245"
8763 + "default.handlebars->27->1262"
8764 ]
8765 },
8766 {
@@ -9032,7 +9042,7 @@
9042 "pt": "Instalar",
9043 "ru": "Установка",
9044 "xloc": [
9035 - "default.handlebars->27->1083"
9045 + "default.handlebars->27->1085"
9046 ]
9047 },
9048 {
@@ -9070,7 +9080,7 @@
9080 "pt": "Instalar CIRA",
9081 "ru": "Установка CIRA",
9082 "xloc": [
9073 - "default.handlebars->27->1075"
9083 + "default.handlebars->27->1077"
9084 ]
9085 },
9086 {
@@ -9084,7 +9094,7 @@
9094 "pt": "Instalação local",
9095 "ru": "Локальная установка",
9096 "xloc": [
9087 - "default.handlebars->27->1077"
9097 + "default.handlebars->27->1079"
9098 ]
9099 },
9100 {
@@ -9098,6 +9108,8 @@
9108 "pt": "Tipo de instalação ",
9109 "ru": "Тип установки",
9110 "xloc": [
9111 + "default.handlebars->27->1203",
9112 + "default.handlebars->27->1210",
9113 "default.handlebars->27->281",
9114 "default.handlebars->27->303"
9115 ]
@@ -9127,10 +9139,10 @@
9139 "pt": "Intel AMT",
9140 "ru": "Intel AMT",
9141 "xloc": [
9130 - "default.handlebars->27->1205",
9131 - "default.handlebars->27->1211",
9132 - "default.handlebars->27->1493",
9133 - "default.handlebars->27->1514"
9142 + "default.handlebars->27->1222",
9143 + "default.handlebars->27->1228",
9144 + "default.handlebars->27->1510",
9145 + "default.handlebars->27->1531"
9146 ]
9147 },
9148 {
@@ -9270,7 +9282,7 @@
9282 "default-mobile.handlebars->9->190",
9283 "default-mobile.handlebars->9->195",
9284 "default.handlebars->27->1061",
9273 - "default.handlebars->27->1069",
9285 + "default.handlebars->27->1071",
9286 "default.handlebars->27->419",
9287 "default.handlebars->27->472",
9288 "default.handlebars->27->488"
@@ -9333,7 +9345,7 @@
9345 "pt": "Intel® Política da AMT",
9346 "ru": "Политика Intel® AMT",
9347 "xloc": [
9336 - "default.handlebars->27->1101"
9348 + "default.handlebars->27->1103"
9349 ]
9350 },
9351 {
@@ -9416,7 +9428,7 @@
9428 "pt": "Intel® Área de trabalho AMT e eventos seriais.",
9429 "ru": "События Intel® AMT desktop или serial.",
9430 "xloc": [
9419 - "default.handlebars->27->1201",
9431 + "default.handlebars->27->1218",
9432 "default.handlebars->27->986"
9433 ]
9434 },
@@ -9651,6 +9663,8 @@
9663 "pt": "Apenas interativo",
9664 "ru": "Только интерактивный режим",
9665 "xloc": [
9666 + "default.handlebars->27->1206",
9667 + "default.handlebars->27->1213",
9668 "default.handlebars->27->284",
9669 "default.handlebars->27->306"
9670 ]
@@ -9690,7 +9704,7 @@
9704 "nl": "Ongeldige apparaatgroep type",
9705 "ru": "Некорректный тип группы устройств",
9706 "xloc": [
9693 - "default.handlebars->27->1470"
9707 + "default.handlebars->27->1487"
9708 ]
9709 },
9710 {
@@ -9701,7 +9715,7 @@
9715 "nl": "Onjuiste JSON",
9716 "ru": "Некорректный JSON",
9717 "xloc": [
9704 - "default.handlebars->27->1464"
9718 + "default.handlebars->27->1481"
9719 ]
9720 },
9721 {
@@ -9715,8 +9729,8 @@
9729 "pt": "Formato de arquivo JSON inválido.",
9730 "ru": "Некорректный формат файла JSON.",
9731 "xloc": [
9718 - "default.handlebars->27->1289",
9719 - "default.handlebars->27->1291"
9732 + "default.handlebars->27->1306",
9733 + "default.handlebars->27->1308"
9734 ]
9735 },
9736 {
@@ -9730,7 +9744,7 @@
9744 "pt": "Arquivo JSON inválido: {0}.",
9745 "ru": "Некорректный файл JSON: {0}.",
9746 "xloc": [
9733 - "default.handlebars->27->1287"
9747 + "default.handlebars->27->1304"
9748 ]
9749 },
9750 {
@@ -9741,7 +9755,7 @@
9755 "nl": "Onjuiste PKCS handtekening",
9756 "ru": "Некорректная сигнатура PKCS",
9757 "xloc": [
9744 - "default.handlebars->27->1462"
9758 + "default.handlebars->27->1479"
9759 ]
9760 },
9761 {
@@ -9752,7 +9766,7 @@
9766 "nl": "Ongeldige RSA handtekening",
9767 "ru": "Некорректная сигнатура RSA",
9768 "xloc": [
9755 - "default.handlebars->27->1463"
9769 + "default.handlebars->27->1480"
9770 ]
9771 },
9772 {
@@ -9831,6 +9845,12 @@
9845 "default.handlebars->27->263"
9846 ]
9847 },
9848 + {
9849 + "en": "Invitation codes can be used by anyone to join devices to this device group using the following public link:",
9850 + "xloc": [
9851 + "default.handlebars->27->1208"
9852 + ]
9853 + },
9854 {
9855 "en": "Invitation Code",
9856 "xloc": [
@@ -9848,11 +9868,21 @@
9868 "pt": "Convite",
9869 "ru": "Пригласить",
9870 "xloc": [
9851 - "default.handlebars->27->1085",
9871 + "default.handlebars->27->1087",
9872 "default.handlebars->27->218",
9873 "default.handlebars->27->296"
9874 ]
9875 },
9876 + {
9877 + "en": "Invite Codes",
9878 + "xloc": [
9879 + "default.handlebars->27->1065",
9880 + "default.handlebars->27->1202",
9881 + "default.handlebars->27->1207",
9882 + "default.handlebars->27->1209",
9883 + "default.handlebars->27->1214"
9884 + ]
9885 + },
9886 {
9887 "cs": "Pozvěte někoho k instalaci agenta tím, že mu nasdílíte odkaz. Tento odkaz obsahuje pokyny pro zařazení do skupiny zařízení „{0}“. Odkaz je veřejný a protistrana nepotřebuje žádný účet na tomto serveru.",
9888 "de": "Laden Sie jemanden ein, den Mesh-Agenten zu installieren, indem Sie einen Einladungslink freigeben. Dieser Link verweist den Benutzer auf Installationsanweisungen für die Gerätegruppe \\\"{0}\\\". Der Link ist öffentlich und es wird kein Konto für diesen Server benötigt.",
@@ -9878,7 +9908,7 @@
9908 "pt": "Convide alguém para instalar o agente de malha nessa malha.",
9909 "ru": "Отправить приглашение на установку Mesh Agent",
9910 "xloc": [
9881 - "default.handlebars->27->1084",
9911 + "default.handlebars->27->1086",
9912 "default.handlebars->27->217"
9913 ]
9914 },
@@ -9947,8 +9977,8 @@
9977 "pt": "Formato JSON",
9978 "ru": "Формат JSON",
9979 "xloc": [
9950 - "default.handlebars->27->1256",
9951 - "default.handlebars->27->1295",
9980 + "default.handlebars->27->1273",
9981 + "default.handlebars->27->1312",
9982 "default.handlebars->27->386"
9983 ]
9984 },
@@ -10333,7 +10363,7 @@
10363 "pt": "Último acesso",
10364 "ru": "Последний доступ",
10365 "xloc": [
10336 - "default.handlebars->27->1264"
10366 + "default.handlebars->27->1281"
10367 ]
10368 },
10369 {
@@ -10347,7 +10377,7 @@
10377 "pt": "Último login",
10378 "ru": "Последний вход в систему",
10379 "xloc": [
10350 - "default.handlebars->27->1391"
10380 + "default.handlebars->27->1408"
10381 ]
10382 },
10383 {
@@ -10396,7 +10426,7 @@
10426 "pt": "Última alteração: {0}",
10427 "ru": "Последнее изменение: {0}",
10428 "xloc": [
10399 - "default.handlebars->27->1395"
10429 + "default.handlebars->27->1412"
10430 ]
10431 },
10432 {
@@ -10438,7 +10468,7 @@
10468 "pt": "Último login: {0}",
10469 "ru": "Последний вход в систему: {0}",
10470 "xloc": [
10441 - "default.handlebars->27->1274"
10471 + "default.handlebars->27->1291"
10472 ]
10473 },
10474 {
@@ -10554,7 +10584,7 @@
10584 "pt": "Menos",
10585 "ru": "Меньше",
10586 "xloc": [
10557 - "default.handlebars->27->1528"
10587 + "default.handlebars->27->1545"
10588 ]
10589 },
10590 {
@@ -10583,7 +10613,7 @@
10613 "ru": "Ограниченный ввод",
10614 "xloc": [
10615 "default-mobile.handlebars->9->326",
10586 - "default.handlebars->27->1186"
10616 + "default.handlebars->27->1188"
10617 ]
10618 },
10619 {
@@ -10597,7 +10627,7 @@
10627 "ru": "Ограничить элементы ввода",
10628 "xloc": [
10629 "default-mobile.handlebars->9->301",
10600 - "default.handlebars->27->1154"
10630 + "default.handlebars->27->1156"
10631 ]
10632 },
10633 {
@@ -10612,7 +10642,7 @@
10642 "ru": "Ссылка",
10643 "xloc": [
10644 "default-mobile.handlebars->9->71",
10615 - "default.handlebars->27->1217",
10645 + "default.handlebars->27->1234",
10646 "default.handlebars->container->column_l->p42->p42tbl->1->0->4"
10647 ]
10648 },
@@ -10974,7 +11004,7 @@
11004 "pt": "Bloquear conta",
11005 "ru": "Заблокировать учетную запись",
11006 "xloc": [
10977 - "default.handlebars->27->1325"
11007 + "default.handlebars->27->1342"
11008 ]
11009 },
11010 {
@@ -10988,7 +11018,7 @@
11018 "pt": "Bloqueado",
11019 "ru": "Заблокирован",
11020 "xloc": [
10991 - "default.handlebars->27->1275"
11021 + "default.handlebars->27->1292"
11022 ]
11023 },
11024 {
@@ -11002,7 +11032,7 @@
11032 "pt": "Conta bloqueada",
11033 "ru": "Заблокированная учетная запись",
11034 "xloc": [
11005 - "default.handlebars->27->1376"
11035 + "default.handlebars->27->1393"
11036 ]
11037 },
11038 {
@@ -11383,7 +11413,7 @@
11413 "pt": "Mensagens do servidor principal",
11414 "ru": "Сообщения главного сервера",
11415 "xloc": [
11386 - "default.handlebars->27->1504"
11416 + "default.handlebars->27->1521"
11417 ]
11418 },
11419 {
@@ -11451,8 +11481,8 @@
11481 "xloc": [
11482 "default-mobile.handlebars->9->298",
11483 "default-mobile.handlebars->9->316",
11454 - "default.handlebars->27->1151",
11455 - "default.handlebars->27->1175"
11484 + "default.handlebars->27->1153",
11485 + "default.handlebars->27->1177"
11486 ]
11487 },
11488 {
@@ -11467,8 +11497,8 @@
11497 "xloc": [
11498 "default-mobile.handlebars->9->297",
11499 "default-mobile.handlebars->9->315",
11470 - "default.handlebars->27->1150",
11471 - "default.handlebars->27->1174"
11500 + "default.handlebars->27->1152",
11501 + "default.handlebars->27->1176"
11502 ]
11503 },
11504 {
@@ -11493,7 +11523,7 @@
11523 "nl": "Beheer gebruikersgroepen.",
11524 "ru": "Управление группами пользователя",
11525 "xloc": [
11496 - "default.handlebars->27->1324"
11526 + "default.handlebars->27->1341"
11527 ]
11528 },
11529 {
@@ -11507,7 +11537,7 @@
11537 "pt": "Gerenciar Usuários",
11538 "ru": "Управление пользователями",
11539 "xloc": [
11510 - "default.handlebars->27->1323"
11540 + "default.handlebars->27->1340"
11541 ]
11542 },
11543 {
@@ -11601,7 +11631,7 @@
11631 "pt": "Gerenciador",
11632 "ru": "Менеджер",
11633 "xloc": [
11604 - "default.handlebars->27->1280"
11634 + "default.handlebars->27->1297"
11635 ]
11636 },
11637 {
@@ -11680,7 +11710,7 @@
11710 "nl": "Max Sessies bereikt",
11711 "ru": "Достигнуто максимальное число сессий",
11712 "xloc": [
11683 - "default.handlebars->27->1468"
11713 + "default.handlebars->27->1485"
11714 ]
11715 },
11716 {
@@ -11725,7 +11755,7 @@
11755 "pt": "Megabytes",
11756 "ru": "Мегабайт",
11757 "xloc": [
11728 - "default.handlebars->27->1494"
11758 + "default.handlebars->27->1511"
11759 ]
11760 },
11761 {
@@ -11739,7 +11769,7 @@
11769 "pt": "Memória",
11770 "ru": "ОЗУ",
11771 "xloc": [
11742 - "default.handlebars->27->1485",
11772 + "default.handlebars->27->1502",
11773 "default.handlebars->27->743",
11774 "default.handlebars->container->column_l->p40->3->1->p40type->3"
11775 ]
@@ -11778,7 +11808,7 @@
11808 "ru": "Консоль Mesh Agent",
11809 "xloc": [
11810 "default-mobile.handlebars->9->305",
11781 - "default.handlebars->27->1159"
11811 + "default.handlebars->27->1161"
11812 ]
11813 },
11814 {
@@ -11849,7 +11879,7 @@
11879 "nl": "MeshAgent verkeer",
11880 "ru": "Трафик MeshAgent",
11881 "xloc": [
11852 - "default.handlebars->27->1506"
11882 + "default.handlebars->27->1523"
11883 ]
11884 },
11885 {
@@ -11862,7 +11892,7 @@
11892 "nl": "MeshAgent update",
11893 "ru": "Обновление MeshAgent",
11894 "xloc": [
11865 - "default.handlebars->27->1507"
11895 + "default.handlebars->27->1524"
11896 ]
11897 },
11898 {
@@ -11942,7 +11972,7 @@
11972 "pt": "Peering do servidor MeshCentral",
11973 "ru": "Соединения сервера MeshCentral",
11974 "xloc": [
11945 - "default.handlebars->27->1505"
11975 + "default.handlebars->27->1522"
11976 ]
11977 },
11978 {
@@ -12134,7 +12164,7 @@
12164 "pt": "Despachante de mensagens",
12165 "ru": "Диспетчер сообщения",
12166 "xloc": [
12137 - "default.handlebars->27->1503"
12167 + "default.handlebars->27->1520"
12168 ]
12169 },
12170 {
@@ -12216,7 +12246,7 @@
12246 "pt": "Mais",
12247 "ru": "Еще",
12248 "xloc": [
12219 - "default.handlebars->27->1527"
12249 + "default.handlebars->27->1544"
12250 ]
12251 },
12252 {
@@ -12486,13 +12516,13 @@
12516 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1",
12517 "default.handlebars->27->1012",
12518 "default.handlebars->27->1039",
12489 - "default.handlebars->27->1123",
12490 - "default.handlebars->27->1262",
12491 - "default.handlebars->27->1330",
12492 - "default.handlebars->27->1334",
12493 - "default.handlebars->27->1339",
12494 - "default.handlebars->27->1341",
12495 - "default.handlebars->27->1364",
12519 + "default.handlebars->27->1125",
12520 + "default.handlebars->27->1279",
12521 + "default.handlebars->27->1347",
12522 + "default.handlebars->27->1351",
12523 + "default.handlebars->27->1356",
12524 + "default.handlebars->27->1358",
12525 + "default.handlebars->27->1381",
12526 "default.handlebars->27->444",
12527 "default.handlebars->27->620",
12528 "default.handlebars->27->693",
@@ -12528,7 +12558,7 @@
12558 "pt": "Nome1, Nome2, Nome3",
12559 "ru": "Имя1, Имя2, Имя3",
12560 "xloc": [
12531 - "default.handlebars->27->1316"
12561 + "default.handlebars->27->1333"
12562 ]
12563 },
12564 {
@@ -12664,7 +12694,7 @@
12694 "xloc": [
12695 "default-mobile.handlebars->9->250",
12696 "default-mobile.handlebars->9->82",
12667 - "default.handlebars->27->1235",
12697 + "default.handlebars->27->1252",
12698 "default.handlebars->27->657",
12699 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
12700 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
@@ -12747,14 +12777,14 @@
12777 "en": "No Desktop",
12778 "nl": "Geen bureaublad",
12779 "xloc": [
12750 - "default.handlebars->27->1182"
12780 + "default.handlebars->27->1184"
12781 ]
12782 },
12783 {
12784 "en": "No Desktop Access",
12785 "nl": "Geen bureaublad toegang",
12786 "xloc": [
12757 - "default.handlebars->27->1155"
12787 + "default.handlebars->27->1157"
12788 ]
12789 },
12790 {
@@ -12768,8 +12798,8 @@
12798 "pt": "Nenhum evento encontrado",
12799 "ru": "События не найдены",
12800 "xloc": [
12771 - "default.handlebars->27->1252",
12772 - "default.handlebars->27->1451",
12801 + "default.handlebars->27->1269",
12802 + "default.handlebars->27->1468",
12803 "default.handlebars->27->691"
12804 ]
12805 },
@@ -12785,7 +12815,7 @@
12815 "ru": "Нет доступа к файлам",
12816 "xloc": [
12817 "default-mobile.handlebars->9->303",
12788 - "default.handlebars->27->1157"
12818 + "default.handlebars->27->1159"
12819 ]
12820 },
12821 {
@@ -12800,7 +12830,7 @@
12830 "ru": "Файлов нет",
12831 "xloc": [
12832 "default-mobile.handlebars->9->324",
12803 - "default.handlebars->27->1184"
12833 + "default.handlebars->27->1186"
12834 ]
12835 },
12836 {
@@ -12815,8 +12845,8 @@
12845 "xloc": [
12846 "default-mobile.handlebars->9->304",
12847 "default-mobile.handlebars->9->325",
12818 - "default.handlebars->27->1158",
12819 - "default.handlebars->27->1185"
12848 + "default.handlebars->27->1160",
12849 + "default.handlebars->27->1187"
12850 ]
12851 },
12852 {
@@ -12868,7 +12898,7 @@
12898 "nl": "Geen leden",
12899 "ru": "Нет членов",
12900 "xloc": [
12871 - "default.handlebars->27->1351"
12901 + "default.handlebars->27->1368"
12902 ]
12903 },
12904 {
@@ -12881,7 +12911,7 @@
12911 "pt": "Não há novos grupos de dispositivos",
12912 "ru": "Запретить создание групп устройств",
12913 "xloc": [
12884 - "default.handlebars->27->1326"
12914 + "default.handlebars->27->1343"
12915 ]
12916 },
12917 {
@@ -12894,9 +12924,9 @@
12924 "pt": "Nenhuma política",
12925 "ru": "Политик нет",
12926 "xloc": [
12897 - "default.handlebars->27->1064",
12898 - "default.handlebars->27->1095",
12899 - "default.handlebars->27->1098"
12927 + "default.handlebars->27->1066",
12928 + "default.handlebars->27->1097",
12929 + "default.handlebars->27->1100"
12930 ]
12931 },
12932 {
@@ -12913,10 +12943,10 @@
12943 "default-mobile.handlebars->9->330",
12944 "default-mobile.handlebars->9->68",
12945 "default.handlebars->27->1026",
12916 - "default.handlebars->27->1089",
12917 - "default.handlebars->27->1190",
12918 - "default.handlebars->27->1357",
12919 - "default.handlebars->27->1434"
12946 + "default.handlebars->27->1091",
12947 + "default.handlebars->27->1192",
12948 + "default.handlebars->27->1374",
12949 + "default.handlebars->27->1451"
12950 ]
12951 },
12952 {
@@ -12946,7 +12976,7 @@
12976 "ru": "Нет терминала",
12977 "xloc": [
12978 "default-mobile.handlebars->9->323",
12949 - "default.handlebars->27->1183"
12979 + "default.handlebars->27->1185"
12980 ]
12981 },
12982 {
@@ -12960,7 +12990,7 @@
12990 "ru": "Нет доступа к терминалу",
12991 "xloc": [
12992 "default-mobile.handlebars->9->302",
12963 - "default.handlebars->27->1156"
12993 + "default.handlebars->27->1158"
12994 ]
12995 },
12996 {
@@ -12973,7 +13003,7 @@
13003 "pt": "Sem ferramentas (MeshCmd / Roteador)",
13004 "ru": "Нет инструментов (MeshCmd/Router)",
13005 "xloc": [
12976 - "default.handlebars->27->1327"
13006 + "default.handlebars->27->1344"
13007 ]
13008 },
13009 {
@@ -12984,8 +13014,8 @@
13014 "nl": "Geen gemeenschappelijke apparaatgroepen",
13015 "ru": "Нет общих групп устройств",
13016 "xloc": [
12987 - "default.handlebars->27->1360",
12988 - "default.handlebars->27->1437"
13017 + "default.handlebars->27->1377",
13018 + "default.handlebars->27->1454"
13019 ]
13020 },
13021 {
@@ -13053,7 +13083,7 @@
13083 "nl": "Geen apparaten in deze apparaatgroep.",
13084 "ru": "В группе нет устройств.",
13085 "xloc": [
13056 - "default.handlebars->27->1214"
13086 + "default.handlebars->27->1231"
13087 ]
13088 },
13089 {
@@ -13104,7 +13134,7 @@
13134 "nl": "Geen groepen gevonden.",
13135 "ru": "Группы не найдены.",
13136 "xloc": [
13107 - "default.handlebars->27->1329"
13137 + "default.handlebars->27->1346"
13138 ]
13139 },
13140 {
@@ -13183,7 +13213,7 @@
13213 "pt": "Sem direitos de servidor",
13214 "ru": "Нет серверных прав",
13215 "xloc": [
13186 - "default.handlebars->27->1377"
13216 + "default.handlebars->27->1394"
13217 ]
13218 },
13219 {
@@ -13194,7 +13224,7 @@
13224 "nl": "Geen gebruikersgroep lidmaatschap",
13225 "ru": "Нет членства в группах пользователей",
13226 "xloc": [
13197 - "default.handlebars->27->1443"
13227 + "default.handlebars->27->1460"
13228 ]
13229 },
13230 {
@@ -13208,7 +13238,7 @@
13238 "pt": "Usuários não encontrados.",
13239 "ru": "Пользователи не найдены.",
13240 "xloc": [
13211 - "default.handlebars->27->1270"
13241 + "default.handlebars->27->1287"
13242 ]
13243 },
13244 {
@@ -13264,10 +13294,11 @@
13294 "default.handlebars->27->1045",
13295 "default.handlebars->27->1057",
13296 "default.handlebars->27->1062",
13267 - "default.handlebars->27->1223",
13268 - "default.handlebars->27->1338",
13269 - "default.handlebars->27->1396",
13270 - "default.handlebars->27->1400",
13297 + "default.handlebars->27->1064",
13298 + "default.handlebars->27->1240",
13299 + "default.handlebars->27->1355",
13300 + "default.handlebars->27->1413",
13301 + "default.handlebars->27->1417",
13302 "default.handlebars->27->148",
13303 "default.handlebars->27->163",
13304 "default.handlebars->27->164",
@@ -13368,8 +13399,8 @@
13399 "nl": "Niet verbonden",
13400 "ru": "Не подключен",
13401 "xloc": [
13371 - "default.handlebars->27->1203",
13372 - "default.handlebars->27->1209"
13402 + "default.handlebars->27->1220",
13403 + "default.handlebars->27->1226"
13404 ]
13405 },
13406 {
@@ -13390,14 +13421,14 @@
13421 "pt": "Não configurado",
13422 "ru": "Не задано",
13423 "xloc": [
13393 - "default.handlebars->27->1382"
13424 + "default.handlebars->27->1399"
13425 ]
13426 },
13427 {
13428 "en": "Not verified",
13429 "nl": "niet geverifieerd",
13430 "xloc": [
13400 - "default.handlebars->27->1418"
13431 + "default.handlebars->27->1435"
13432 ]
13433 },
13434 {
@@ -13411,8 +13442,8 @@
13442 "pt": "Notas",
13443 "ru": "Примечания",
13444 "xloc": [
13414 - "default.handlebars->27->1070",
13415 - "default.handlebars->27->1407",
13445 + "default.handlebars->27->1072",
13446 + "default.handlebars->27->1424",
13447 "default.handlebars->27->497",
13448 "default.handlebars->27->532"
13449 ]
@@ -13440,7 +13471,7 @@
13471 "pt": "Configurações de notificação",
13472 "ru": "Настройки уведомлений",
13473 "xloc": [
13443 - "default.handlebars->27->1202",
13474 + "default.handlebars->27->1219",
13475 "default.handlebars->27->987",
13476 "default.handlebars->container->column_l->p2->p2AccountActions->3->8"
13477 ]
@@ -13453,7 +13484,7 @@
13484 "nl": "Meldingsinstellingen moeten ook worden ingeschakeld in accountinstellingen.",
13485 "ru": "Уведомления также должны быть включены в настройках учетной записи.",
13486 "xloc": [
13456 - "default.handlebars->27->1198"
13487 + "default.handlebars->27->1215"
13488 ]
13489 },
13490 {
@@ -13494,7 +13525,7 @@
13525 "pt": "Notificar",
13526 "ru": "Уведомить",
13527 "xloc": [
13497 - "default.handlebars->27->1409"
13528 + "default.handlebars->27->1426"
13529 ]
13530 },
13531 {
@@ -13508,9 +13539,9 @@
13539 "pt": "Notificar usuário",
13540 "ru": "Уведомить пользователя",
13541 "xloc": [
13511 - "default.handlebars->27->1127",
13512 - "default.handlebars->27->1131",
13513 - "default.handlebars->27->1134"
13542 + "default.handlebars->27->1129",
13543 + "default.handlebars->27->1133",
13544 + "default.handlebars->27->1136"
13545 ]
13546 },
13547 {
@@ -13524,7 +13555,7 @@
13555 "pt": "Notificar {0}",
13556 "ru": "Уведомить {0}",
13557 "xloc": [
13527 - "default.handlebars->27->1282"
13558 + "default.handlebars->27->1299"
13559 ]
13560 },
13561 {
@@ -13586,7 +13617,7 @@
13617 "pt": "Ocorreu em {0}",
13618 "ru": "Произошло в {0}",
13619 "xloc": [
13589 - "default.handlebars->27->1454"
13620 + "default.handlebars->27->1471"
13621 ]
13622 },
13623 {
@@ -13600,7 +13631,7 @@
13631 "pt": "Usuários offline",
13632 "ru": "Оффлайн пользователи",
13633 "xloc": [
13603 - "default.handlebars->27->1267"
13634 + "default.handlebars->27->1284"
13635 ]
13636 },
13637 {
@@ -13644,7 +13675,7 @@
13675 "pt": "Usuários Online",
13676 "ru": "Онлайн пользователи",
13677 "xloc": [
13647 - "default.handlebars->27->1266"
13678 + "default.handlebars->27->1283"
13679 ]
13680 },
13681 {
@@ -13894,7 +13925,7 @@
13925 "pt": "Parcial",
13926 "ru": "Частично",
13927 "xloc": [
13897 - "default.handlebars->27->1281"
13928 + "default.handlebars->27->1298"
13929 ]
13930 },
13931 {
@@ -13905,9 +13936,9 @@
13936 "nl": "Gedeeltelijke apparaatgroep rechten",
13937 "ru": "Частичные права на группу устройств",
13938 "xloc": [
13908 - "default.handlebars->27->1087",
13909 - "default.handlebars->27->1354",
13910 - "default.handlebars->27->1431"
13939 + "default.handlebars->27->1089",
13940 + "default.handlebars->27->1371",
13941 + "default.handlebars->27->1448"
13942 ]
13943 },
13944 {
@@ -13935,7 +13966,7 @@
13966 "pt": "Direitos parciais",
13967 "ru": "Частичные права",
13968 "xloc": [
13938 - "default.handlebars->27->1380"
13969 + "default.handlebars->27->1397"
13970 ]
13971 },
13972 {
@@ -13963,12 +13994,12 @@
13994 "ru": "Пароль",
13995 "xloc": [
13996 "default-mobile.handlebars->9->216",
13966 - "default.handlebars->27->1305",
13967 - "default.handlebars->27->1306",
13968 - "default.handlebars->27->1392",
13969 - "default.handlebars->27->1394",
13970 - "default.handlebars->27->1421",
13971 - "default.handlebars->27->1422",
13997 + "default.handlebars->27->1322",
13998 + "default.handlebars->27->1323",
13999 + "default.handlebars->27->1409",
14000 + "default.handlebars->27->1411",
14001 + "default.handlebars->27->1438",
14002 + "default.handlebars->27->1439",
14003 "default.handlebars->27->225",
14004 "default.handlebars->27->254",
14005 "default.handlebars->27->549"
@@ -14048,7 +14079,7 @@
14079 "pt": "Dica de senha",
14080 "ru": "Подсказка пароля",
14081 "xloc": [
14051 - "default.handlebars->27->1423"
14082 + "default.handlebars->27->1440"
14083 ]
14084 },
14085 {
@@ -14077,7 +14108,7 @@
14108 "pt": "Senha incorreta",
14109 "ru": "Пароль не совпадает",
14110 "xloc": [
14080 - "default.handlebars->27->1104"
14111 + "default.handlebars->27->1106"
14112 ]
14113 },
14114 {
@@ -14105,8 +14136,8 @@
14136 "pt": "Senha*",
14137 "ru": "Пароль*",
14138 "xloc": [
14108 - "default.handlebars->27->1102",
14109 - "default.handlebars->27->1103"
14139 + "default.handlebars->27->1104",
14140 + "default.handlebars->27->1105"
14141 ]
14142 },
14143 {
@@ -14151,7 +14182,7 @@
14182 "default-mobile.handlebars->9->90",
14183 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
14184 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
14154 - "default.handlebars->27->1244",
14185 + "default.handlebars->27->1261",
14186 "default.handlebars->27->648",
14187 "default.handlebars->27->670",
14188 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3",
@@ -14224,7 +14255,7 @@
14255 "pt": "Execute a ativação do modo de controle de administração Intel AMT (ACM).",
14256 "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).",
14257 "xloc": [
14227 - "default.handlebars->27->1080",
14258 + "default.handlebars->27->1082",
14259 "default.handlebars->27->213"
14260 ]
14261 },
@@ -14251,7 +14282,7 @@
14282 "pt": "Execute a ativação do modo de controle do cliente Intel AMT (CCM).",
14283 "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).",
14284 "xloc": [
14254 - "default.handlebars->27->1078",
14285 + "default.handlebars->27->1080",
14286 "default.handlebars->27->211"
14287 ]
14288 },
@@ -14284,8 +14315,8 @@
14315 "ru": "Права",
14316 "xloc": [
14317 "default-mobile.handlebars->9->332",
14287 - "default.handlebars->27->1193",
14288 - "default.handlebars->27->1265"
14318 + "default.handlebars->27->1195",
14319 + "default.handlebars->27->1282"
14320 ]
14321 },
14322 {
@@ -14399,7 +14430,7 @@
14430 "nl": "Plugin Actie",
14431 "ru": "Действие плагина",
14432 "xloc": [
14402 - "default.handlebars->27->1524",
14433 + "default.handlebars->27->1541",
14434 "default.handlebars->27->159"
14435 ]
14436 },
@@ -14570,7 +14601,7 @@
14601 "nl": "Power Status",
14602 "ru": "Состояния питания",
14603 "xloc": [
14573 - "default.handlebars->27->1207",
14604 + "default.handlebars->27->1224",
14605 "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1"
14606 ]
14607 },
@@ -14708,9 +14739,9 @@
14739 "pt": "Solicitar consentimento do usuário",
14740 "ru": "Запрос согласия пользователя",
14741 "xloc": [
14711 - "default.handlebars->27->1128",
14712 - "default.handlebars->27->1132",
14713 - "default.handlebars->27->1135"
14742 + "default.handlebars->27->1130",
14743 + "default.handlebars->27->1134",
14744 + "default.handlebars->27->1137"
14745 ]
14746 },
14747 {
@@ -14750,7 +14781,7 @@
14781 "ru": "Публичная ссылка",
14782 "xloc": [
14783 "default-mobile.handlebars->9->77",
14753 - "default.handlebars->27->1230"
14784 + "default.handlebars->27->1247"
14785 ]
14786 },
14787 {
@@ -14942,7 +14973,7 @@
14973 "pt": "RSS",
14974 "ru": "RSS",
14975 "xloc": [
14945 - "default.handlebars->27->1498"
14976 + "default.handlebars->27->1515"
14977 ]
14978 },
14979 {
@@ -14956,7 +14987,7 @@
14987 "pt": "Randomize a senha.",
14988 "ru": "Случайный пароль.",
14989 "xloc": [
14959 - "default.handlebars->27->1307"
14990 + "default.handlebars->27->1324"
14991 ]
14992 },
14993 {
@@ -14982,7 +15013,7 @@
15013 "pt": "Reativar Intel®AMT",
15014 "ru": "Реактивировать Intel® AMT",
15015 "xloc": [
14985 - "default.handlebars->27->1106"
15016 + "default.handlebars->27->1108"
15017 ]
15018 },
15019 {
@@ -14995,7 +15026,7 @@
15026 "pt": "Realms",
15027 "ru": "Области",
15028 "xloc": [
14998 - "default.handlebars->27->1315"
15029 + "default.handlebars->27->1332"
15030 ]
15031 },
15032 {
@@ -15011,7 +15042,7 @@
15042 "xloc": [
15043 "default-mobile.handlebars->9->251",
15044 "default-mobile.handlebars->9->83",
15014 - "default.handlebars->27->1236",
15045 + "default.handlebars->27->1253",
15046 "default.handlebars->27->658"
15047 ]
15048 },
@@ -15085,7 +15116,7 @@
15116 "nl": "Relay geteld",
15117 "ru": "Число ретрансляций",
15118 "xloc": [
15088 - "default.handlebars->27->1480"
15119 + "default.handlebars->27->1497"
15120 ]
15121 },
15122 {
@@ -15096,7 +15127,7 @@
15127 "nl": "Relay fouten",
15128 "ru": "Ошибки ретранслятора",
15129 "xloc": [
15099 - "default.handlebars->27->1473"
15130 + "default.handlebars->27->1490"
15131 ]
15132 },
15133 {
@@ -15109,8 +15140,8 @@
15140 "pt": "Retransmissão de sessão ",
15141 "ru": "Сессии ретранслятора",
15142 "xloc": [
15112 - "default.handlebars->27->1479",
15113 - "default.handlebars->27->1492"
15143 + "default.handlebars->27->1496",
15144 + "default.handlebars->27->1509"
15145 ]
15146 },
15147 {
@@ -15195,8 +15226,8 @@
15226 "xloc": [
15227 "default-mobile.handlebars->9->299",
15228 "default-mobile.handlebars->9->317",
15198 - "default.handlebars->27->1152",
15199 - "default.handlebars->27->1176"
15229 + "default.handlebars->27->1154",
15230 + "default.handlebars->27->1178"
15231 ]
15232 },
15233 {
@@ -15240,7 +15271,7 @@
15271 "ru": "Удаленный пользователь Mesh",
15272 "xloc": [
15273 "default-mobile.handlebars->9->335",
15243 - "default.handlebars->27->1196"
15274 + "default.handlebars->27->1198"
15275 ]
15276 },
15277 {
@@ -15251,7 +15282,7 @@
15282 "nl": "Externe gebruiker",
15283 "ru": "Удаленный пользователь",
15284 "xloc": [
15254 - "default.handlebars->27->1370"
15285 + "default.handlebars->27->1387"
15286 ]
15287 },
15288 {
@@ -15266,8 +15297,8 @@
15297 "xloc": [
15298 "default-mobile.handlebars->9->300",
15299 "default-mobile.handlebars->9->322",
15269 - "default.handlebars->27->1153",
15270 - "default.handlebars->27->1181"
15300 + "default.handlebars->27->1155",
15301 + "default.handlebars->27->1183"
15302 ]
15303 },
15304 {
@@ -15321,8 +15352,8 @@
15352 "nl": "Verwijder apparaatgroep",
15353 "ru": "Удалить группу устройств.",
15354 "xloc": [
15324 - "default.handlebars->27->1362",
15325 - "default.handlebars->27->1449"
15355 + "default.handlebars->27->1379",
15356 + "default.handlebars->27->1466"
15357 ]
15358 },
15359 {
@@ -15333,7 +15364,7 @@
15364 "nl": "Verwijder gebruiker",
15365 "ru": "Удалить пользователя",
15366 "xloc": [
15336 - "default.handlebars->27->1445"
15367 + "default.handlebars->27->1462"
15368 ]
15369 },
15370 {
@@ -15346,7 +15377,7 @@
15377 "pt": "Remova toda a autenticação do segundo fator.",
15378 "ru": "Удалить все двухфакторные аутентификации.",
15379 "xloc": [
15349 - "default.handlebars->27->1426"
15380 + "default.handlebars->27->1443"
15381 ]
15382 },
15383 {
@@ -15357,7 +15388,7 @@
15388 "nl": "Verwijder alle eerdere gebeurtenissen voor dit gebruikers-ID.",
15389 "ru": "Удалить все прошлые события для этого userid.",
15390 "xloc": [
15360 - "default.handlebars->27->1309"
15391 + "default.handlebars->27->1326"
15392 ]
15393 },
15394 {
@@ -15368,7 +15399,7 @@
15399 "nl": "Verwijder apparaat bij verbreken",
15400 "ru": "Удалить устройство при отключении",
15401 "xloc": [
15371 - "default.handlebars->27->1137"
15402 + "default.handlebars->27->1139"
15403 ]
15404 },
15405 {
@@ -15406,7 +15437,7 @@
15437 "nl": "Verwijder de groepslidmaatschap",
15438 "ru": "Удалить членство пользователя в группе",
15439 "xloc": [
15409 - "default.handlebars->27->1441"
15440 + "default.handlebars->27->1458"
15441 ]
15442 },
15443 {
@@ -15417,7 +15448,7 @@
15448 "nl": "Verwijder gebruikers groepsrechten van deze apparaatgroep",
15449 "ru": "Удалить права группы пользователей для этой группы устройств",
15450 "xloc": [
15420 - "default.handlebars->27->1358"
15451 + "default.handlebars->27->1375"
15452 ]
15453 },
15454 {
@@ -15431,9 +15462,9 @@
15462 "pt": "Remova os direitos de usuário deste grupo de dispositivos",
15463 "ru": "Удалить права пользователя для этой группы устройств",
15464 "xloc": [
15434 - "default.handlebars->27->1090",
15435 - "default.handlebars->27->1349",
15436 - "default.handlebars->27->1435"
15465 + "default.handlebars->27->1092",
15466 + "default.handlebars->27->1366",
15467 + "default.handlebars->27->1452"
15468 ]
15469 },
15470 {
@@ -15451,7 +15482,7 @@
15482 "default-mobile.handlebars->9->87",
15483 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
15484 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
15454 - "default.handlebars->27->1240",
15485 + "default.handlebars->27->1257",
15486 "default.handlebars->27->408",
15487 "default.handlebars->27->662",
15488 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
@@ -15485,8 +15516,8 @@
15516 "ru": "Требования: {0}.",
15517 "xloc": [
15518 "default-mobile.handlebars->9->51",
15488 - "default.handlebars->27->1312",
15489 - "default.handlebars->27->1424"
15519 + "default.handlebars->27->1329",
15520 + "default.handlebars->27->1441"
15521 ]
15522 },
15523 {
@@ -15674,7 +15705,7 @@
15705 "pt": "Restrições",
15706 "ru": "Ограничения",
15707 "xloc": [
15677 - "default.handlebars->27->1381"
15708 + "default.handlebars->27->1398"
15709 ]
15710 },
15711 {
@@ -15728,7 +15759,7 @@
15759 "xloc": [
15760 "default-mobile.handlebars->9->245",
15761 "default-mobile.handlebars->9->69",
15731 - "default.handlebars->27->1215",
15762 + "default.handlebars->27->1232",
15763 "default.handlebars->27->652"
15764 ]
15765 },
@@ -16103,7 +16134,7 @@
16134 "ru": "Защита",
16135 "xloc": [
16136 "default-mobile.handlebars->9->217",
16106 - "default.handlebars->27->1405",
16137 + "default.handlebars->27->1422",
16138 "default.handlebars->27->226",
16139 "default.handlebars->27->550",
16140 "default.handlebars->27->724"
@@ -16120,7 +16151,7 @@
16151 "pt": "Chave de segurança",
16152 "ru": "Ключ безопасности",
16153 "xloc": [
16123 - "default.handlebars->27->1403"
16154 + "default.handlebars->27->1420"
16155 ]
16156 },
16157 {
@@ -16141,7 +16172,7 @@
16172 "pt": "Selecionar tudo",
16173 "ru": "Выбрать все",
16174 "xloc": [
16144 - "default.handlebars->27->1232",
16175 + "default.handlebars->27->1249",
16176 "default.handlebars->27->366",
16177 "default.handlebars->27->654",
16178 "default.handlebars->27->656",
@@ -16162,7 +16193,7 @@
16193 "pt": "Selecione nenhum",
16194 "ru": "Очистить все",
16195 "xloc": [
16165 - "default.handlebars->27->1231",
16196 + "default.handlebars->27->1248",
16197 "default.handlebars->27->365",
16198 "default.handlebars->27->655",
16199 "default.handlebars->meshContextMenu->cxselectnone"
@@ -16260,7 +16291,7 @@
16291 "ru": "Только собственные события",
16292 "xloc": [
16293 "default-mobile.handlebars->9->327",
16263 - "default.handlebars->27->1187"
16294 + "default.handlebars->27->1189"
16295 ]
16296 },
16297 {
@@ -16316,7 +16347,7 @@
16347 "nl": "Stuur een bericht naar alle gebruikers in deze groep.",
16348 "ru": "Отправить уведомление всем пользователям этой группы.",
16349 "xloc": [
16319 - "default.handlebars->27->1346"
16350 + "default.handlebars->27->1363"
16351 ]
16352 },
16353 {
@@ -16330,7 +16361,7 @@
16361 "pt": "Envie uma notificação de texto para este usuário.",
16362 "ru": "Отправить текстовое уведомление этому пользователю.",
16363 "xloc": [
16333 - "default.handlebars->27->1283"
16364 + "default.handlebars->27->1300"
16365 ]
16366 },
16367 {
@@ -16358,7 +16389,7 @@
16389 "pt": "Enviar email de convite.",
16390 "ru": "Отправить приглашение по email.",
16391 "xloc": [
16361 - "default.handlebars->27->1311"
16392 + "default.handlebars->27->1328"
16393 ]
16394 },
16395 {
@@ -16393,7 +16424,7 @@
16424 "pt": "Enviar notificação do usuário",
16425 "ru": "Отправить уведомление пользователю",
16426 "xloc": [
16396 - "default.handlebars->27->1410"
16427 + "default.handlebars->27->1427"
16428 ]
16429 },
16430 {
@@ -16431,7 +16462,7 @@
16462 "pt": "Backup do servidor",
16463 "ru": "Резервное копирование сервера",
16464 "xloc": [
16434 - "default.handlebars->27->1320"
16465 + "default.handlebars->27->1337"
16466 ]
16467 },
16468 {
@@ -16443,14 +16474,14 @@
16474 "nl": "Server Certificaat",
16475 "ru": "Сертификат сервера",
16476 "xloc": [
16446 - "default.handlebars->27->1508"
16477 + "default.handlebars->27->1525"
16478 ]
16479 },
16480 {
16481 "en": "Server Database",
16482 "nl": "Server Database",
16483 "xloc": [
16453 - "default.handlebars->27->1509"
16484 + "default.handlebars->27->1526"
16485 ]
16486 },
16487 {
@@ -16465,9 +16496,9 @@
16496 "xloc": [
16497 "default-mobile.handlebars->9->306",
16498 "default-mobile.handlebars->9->319",
16468 - "default.handlebars->27->1160",
16469 - "default.handlebars->27->1178",
16470 - "default.handlebars->27->1318"
16499 + "default.handlebars->27->1162",
16500 + "default.handlebars->27->1180",
16501 + "default.handlebars->27->1335"
16502 ]
16503 },
16504 {
@@ -16481,8 +16512,8 @@
16512 "pt": "Permissões do servidor",
16513 "ru": "Разрешения сервера",
16514 "xloc": [
16484 - "default.handlebars->27->1276",
16485 - "default.handlebars->27->1328"
16515 + "default.handlebars->27->1293",
16516 + "default.handlebars->27->1345"
16517 ]
16518 },
16519 {
@@ -16496,7 +16527,7 @@
16527 "pt": "Cota do servidor",
16528 "ru": "Квота сервера",
16529 "xloc": [
16499 - "default.handlebars->27->1389"
16530 + "default.handlebars->27->1406"
16531 ]
16532 },
16533 {
@@ -16510,7 +16541,7 @@
16541 "pt": "Restauração do servidor",
16542 "ru": "Восстановление сервера",
16543 "xloc": [
16513 - "default.handlebars->27->1321"
16544 + "default.handlebars->27->1338"
16545 ]
16546 },
16547 {
@@ -16524,7 +16555,7 @@
16555 "pt": "Direitos do servidor",
16556 "ru": "Права",
16557 "xloc": [
16527 - "default.handlebars->27->1388"
16558 + "default.handlebars->27->1405"
16559 ]
16560 },
16561 {
@@ -16535,7 +16566,7 @@
16566 "nl": "Server Status",
16567 "ru": "Состояние сервера",
16568 "xloc": [
16538 - "default.handlebars->27->1459"
16569 + "default.handlebars->27->1476"
16570 ]
16571 },
16572 {
@@ -16563,7 +16594,7 @@
16594 "pt": "Rastreamento de servidor",
16595 "ru": "Трассировка сервера",
16596 "xloc": [
16566 - "default.handlebars->27->1518"
16597 + "default.handlebars->27->1535"
16598 ]
16599 },
16600 {
@@ -16577,7 +16608,7 @@
16608 "pt": "Atualizações do Servidor",
16609 "ru": "Обновление сервера",
16610 "xloc": [
16580 - "default.handlebars->27->1322"
16611 + "default.handlebars->27->1339"
16612 ]
16613 },
16614 {
@@ -16671,7 +16702,7 @@
16702 "pt": "ServerStats.csv",
16703 "ru": "ServerStats.csv",
16704 "xloc": [
16674 - "default.handlebars->27->1500"
16705 + "default.handlebars->27->1517"
16706 ]
16707 },
16708 {
@@ -16932,7 +16963,7 @@
16963 "ru": "Показывать только собственные события",
16964 "xloc": [
16965 "default-mobile.handlebars->9->309",
16935 - "default.handlebars->27->1163"
16966 + "default.handlebars->27->1165"
16967 ]
16968 },
16969 {
@@ -16946,7 +16977,7 @@
16977 "pt": "Mostrar barra de ferramentas de conexão",
16978 "ru": "Показывать панель-уведомление",
16979 "xloc": [
16949 - "default.handlebars->27->1129"
16980 + "default.handlebars->27->1131"
16981 ]
16982 },
16983 {
@@ -17015,8 +17046,8 @@
17046 "pt": "Modo de controle de administrador simples (ACM)",
17047 "ru": "Простой режим управления администратора (ACM)",
17048 "xloc": [
17018 - "default.handlebars->27->1067",
17019 - "default.handlebars->27->1093"
17049 + "default.handlebars->27->1069",
17050 + "default.handlebars->27->1095"
17051 ]
17052 },
17053 {
@@ -17029,9 +17060,9 @@
17060 "pt": "Modo de Controle de Cliente Simples (CCM)",
17061 "ru": "Простой режим управления клиента (CCM)",
17062 "xloc": [
17032 - "default.handlebars->27->1065",
17033 - "default.handlebars->27->1096",
17034 - "default.handlebars->27->1100"
17063 + "default.handlebars->27->1067",
17064 + "default.handlebars->27->1098",
17065 + "default.handlebars->27->1102"
17066 ]
17067 },
17068 {
@@ -17730,7 +17761,7 @@
17761 "pt": "Status",
17762 "ru": "Статус",
17763 "xloc": [
17733 - "default.handlebars->27->1417",
17764 + "default.handlebars->27->1434",
17765 "default.handlebars->container->column_l->p42->p42tbl->1->0->7"
17766 ]
17767 },
@@ -17787,7 +17818,7 @@
17818 "pt": "O limite de armazenamento excede",
17819 "ru": "Превышен лимит места для хранения",
17820 "xloc": [
17790 - "default.handlebars->27->1218"
17821 + "default.handlebars->27->1235"
17822 ]
17823 },
17824 {
@@ -17931,7 +17962,7 @@
17962 "nl": "Synchroniseer serverapparaatnaam met hostnaam",
17963 "ru": "Синхронизировать имя устройства на сервере с именем хоста",
17964 "xloc": [
17934 - "default.handlebars->27->1138"
17965 + "default.handlebars->27->1140"
17966 ]
17967 },
17968 {
@@ -18105,7 +18136,7 @@
18136 "pt": "Terminal",
18137 "ru": "Терминал",
18138 "xloc": [
18108 - "default.handlebars->27->1130",
18139 + "default.handlebars->27->1132",
18140 "default.handlebars->27->418",
18141 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal",
18142 "default.handlebars->contextMenu->cxterminal"
@@ -18254,7 +18285,7 @@
18285 "pt": "Atualmente não há notificações",
18286 "ru": "На данный момент уведомлений нет",
18287 "xloc": [
18257 - "default.handlebars->27->1453"
18288 + "default.handlebars->27->1470"
18289 ]
18290 },
18291 {
@@ -18314,7 +18345,7 @@
18345 "pt": "Esta não é uma política segura, pois os agentes estarão executando a ativação.",
18346 "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.",
18347 "xloc": [
18317 - "default.handlebars->27->1118"
18348 + "default.handlebars->27->1120"
18349 ]
18350 },
18351 {
@@ -18341,7 +18372,7 @@
18372 "pt": "Esta política não afetará os dispositivos com Intel® AMT no modo ACM.",
18373 "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.",
18374 "xloc": [
18344 - "default.handlebars->27->1117"
18375 + "default.handlebars->27->1119"
18376 ]
18377 },
18378 {
@@ -18900,8 +18931,8 @@
18931 "default-mobile.handlebars->9->60",
18932 "default.handlebars->27->1013",
18933 "default.handlebars->27->1042",
18903 - "default.handlebars->27->1094",
18904 - "default.handlebars->27->1097",
18934 + "default.handlebars->27->1096",
18935 + "default.handlebars->27->1099",
18936 "default.handlebars->27->629",
18937 "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3"
18938 ]
@@ -19092,7 +19123,7 @@
19123 "ru": "Удаление",
19124 "xloc": [
19125 "default-mobile.handlebars->9->329",
19095 - "default.handlebars->27->1189"
19126 + "default.handlebars->27->1191"
19127 ]
19128 },
19129 {
@@ -19105,7 +19136,7 @@
19136 "ru": "Удаление агента",
19137 "xloc": [
19138 "default-mobile.handlebars->9->311",
19108 - "default.handlebars->27->1165",
19139 + "default.handlebars->27->1167",
19140 "default.handlebars->27->368",
19141 "default.handlebars->27->542"
19142 ]
@@ -19138,7 +19169,7 @@
19169 "default-mobile.handlebars->9->174",
19170 "default-mobile.handlebars->9->175",
19171 "default.handlebars->27->13",
19141 - "default.handlebars->27->1444",
19172 + "default.handlebars->27->1461",
19173 "default.handlebars->27->364",
19174 "default.handlebars->27->41",
19175 "default.handlebars->27->42",
@@ -19171,7 +19202,7 @@
19202 "nl": "Onbekende actie",
19203 "ru": "Неизвестное действие",
19204 "xloc": [
19174 - "default.handlebars->27->1465"
19205 + "default.handlebars->27->1482"
19206 ]
19207 },
19208 {
@@ -19182,9 +19213,9 @@
19213 "nl": "Onbekende apparaatgroep",
19214 "ru": "Неизвестная группа устройств",
19215 "xloc": [
19185 - "default.handlebars->27->1355",
19186 - "default.handlebars->27->1432",
19187 - "default.handlebars->27->1469"
19216 + "default.handlebars->27->1372",
19217 + "default.handlebars->27->1449",
19218 + "default.handlebars->27->1486"
19219 ]
19220 },
19221 {
@@ -19195,7 +19226,7 @@
19226 "nl": "Onbekende groep",
19227 "ru": "Неизвестная группа",
19228 "xloc": [
19198 - "default.handlebars->27->1461"
19229 + "default.handlebars->27->1478"
19230 ]
19231 },
19232 {
@@ -19221,7 +19252,7 @@
19252 "nl": "Onbekende gebruikersgroep",
19253 "ru": "Неизвестная группа пользователей",
19254 "xloc": [
19224 - "default.handlebars->27->1440"
19255 + "default.handlebars->27->1457"
19256 ]
19257 },
19258 {
@@ -19282,7 +19313,7 @@
19313 "nl": "Bijgewerkt",
19314 "ru": "Актуально",
19315 "xloc": [
19285 - "default.handlebars->27->1523"
19316 + "default.handlebars->27->1540"
19317 ]
19318 },
19319 {
@@ -19315,8 +19346,8 @@
19346 "default-mobile.handlebars->9->256",
19347 "default-mobile.handlebars->9->274",
19348 "default-mobile.handlebars->9->88",
19318 - "default.handlebars->27->1241",
19319 - "default.handlebars->27->1249",
19349 + "default.handlebars->27->1258",
19350 + "default.handlebars->27->1266",
19351 "default.handlebars->27->663",
19352 "default.handlebars->27->686",
19353 "default.handlebars->27->689",
@@ -19383,7 +19414,7 @@
19414 "nl": "Upload overschrijft {0} bestand. Doorgaan?",
19415 "ru": "Загрузка перезапишет 1 файл. Продолжить?",
19416 "xloc": [
19386 - "default.handlebars->27->1250",
19417 + "default.handlebars->27->1267",
19418 "default.handlebars->27->687"
19419 ]
19420 },
@@ -19395,7 +19426,7 @@
19426 "nl": "Upload overschrijft {0} bestanden. Doorgaan?",
19427 "ru": "Загрузка перезапишет {0} файлов. Продолжить?",
19428 "xloc": [
19398 - "default.handlebars->27->1251",
19429 + "default.handlebars->27->1268",
19430 "default.handlebars->27->688"
19431 ]
19432 },
@@ -19471,8 +19502,8 @@
19502 "pt": "Usava",
19503 "ru": "Использовано",
19504 "xloc": [
19474 - "default.handlebars->27->1455",
19475 - "default.handlebars->27->1457"
19505 + "default.handlebars->27->1472",
19506 + "default.handlebars->27->1474"
19507 ]
19508 },
19509 {
@@ -19487,9 +19518,9 @@
19518 "ru": "Пользователь",
19519 "xloc": [
19520 "default-mobile.handlebars->9->331",
19490 - "default.handlebars->27->1091",
19491 - "default.handlebars->27->1277",
19492 - "default.handlebars->27->1350",
19521 + "default.handlebars->27->1093",
19522 + "default.handlebars->27->1294",
19523 + "default.handlebars->27->1367",
19524 "default.handlebars->27->182"
19525 ]
19526 },
@@ -19503,7 +19534,7 @@
19534 "pt": "Usuário + Arquivos",
19535 "ru": "Пользователь + Файлы",
19536 "xloc": [
19506 - "default.handlebars->27->1278"
19537 + "default.handlebars->27->1295"
19538 ]
19539 },
19540 {
@@ -19516,10 +19547,10 @@
19547 "pt": "Importação de conta de usuário",
19548 "ru": "Импорт учетной записи пользователя",
19549 "xloc": [
19519 - "default.handlebars->27->1285",
19520 - "default.handlebars->27->1286",
19521 - "default.handlebars->27->1288",
19522 - "default.handlebars->27->1290"
19550 + "default.handlebars->27->1302",
19551 + "default.handlebars->27->1303",
19552 + "default.handlebars->27->1305",
19553 + "default.handlebars->27->1307"
19554 ]
19555 },
19556 {
@@ -19530,7 +19561,7 @@
19561 "nl": "Gebruikersaccounts",
19562 "ru": "Учетные записи пользователей",
19563 "xloc": [
19533 - "default.handlebars->27->1474"
19564 + "default.handlebars->27->1491"
19565 ]
19566 },
19567 {
@@ -19544,7 +19575,7 @@
19575 "ru": "Полномочия пользователя",
19576 "xloc": [
19577 "default-mobile.handlebars->9->284",
19547 - "default.handlebars->27->1086"
19578 + "default.handlebars->27->1088"
19579 ]
19580 },
19581 {
@@ -19569,9 +19600,9 @@
19600 "nl": "Gebruikers Groep",
19601 "ru": "Группа пользователей",
19602 "xloc": [
19572 - "default.handlebars->27->1144",
19573 - "default.handlebars->27->1333",
19574 - "default.handlebars->27->1447"
19603 + "default.handlebars->27->1146",
19604 + "default.handlebars->27->1350",
19605 + "default.handlebars->27->1464"
19606 ]
19607 },
19608 {
@@ -19593,7 +19624,7 @@
19624 "nl": "Gebruikersgroeps lidmaatschap",
19625 "ru": "Членство в группах пользователей",
19626 "xloc": [
19596 - "default.handlebars->27->1439"
19627 + "default.handlebars->27->1456"
19628 ]
19629 },
19630 {
@@ -19606,8 +19637,8 @@
19637 "pt": "Identificador do usuário",
19638 "ru": "Идентификатор пользователя",
19639 "xloc": [
19609 - "default.handlebars->27->1192",
19610 - "default.handlebars->27->1385"
19640 + "default.handlebars->27->1194",
19641 + "default.handlebars->27->1402"
19642 ]
19643 },
19644 {
@@ -19620,7 +19651,7 @@
19651 "pt": "Exportação da lista de usuários",
19652 "ru": "Экспортировать список пользователей",
19653 "xloc": [
19623 - "default.handlebars->27->1297"
19654 + "default.handlebars->27->1314"
19655 ]
19656 },
19657 {
@@ -19634,7 +19665,7 @@
19665 "pt": "Nome de Usuário",
19666 "ru": "Имя пользователя",
19667 "xloc": [
19637 - "default.handlebars->27->1191"
19668 + "default.handlebars->27->1193"
19669 ]
19670 },
19671 {
@@ -19648,8 +19679,8 @@
19679 "pt": "Nomes de usuário",
19680 "ru": "Имена пользователей",
19681 "xloc": [
19651 - "default.handlebars->27->1142",
19652 - "default.handlebars->27->1374"
19682 + "default.handlebars->27->1144",
19683 + "default.handlebars->27->1391"
19684 ]
19685 },
19686 {
@@ -19675,7 +19706,7 @@
19706 "pt": "Sessões de Usuário",
19707 "ru": "Сессии пользователя",
19708 "xloc": [
19678 - "default.handlebars->27->1491"
19709 + "default.handlebars->27->1508"
19710 ]
19711 },
19712 {
@@ -19752,7 +19783,7 @@
19783 "ru": "Имя пользователя",
19784 "xloc": [
19785 "default-mobile.handlebars->9->215",
19755 - "default.handlebars->27->1303",
19786 + "default.handlebars->27->1320",
19787 "default.handlebars->27->223",
19788 "default.handlebars->27->253",
19789 "default.handlebars->27->548",
@@ -19801,9 +19832,9 @@
19832 "pt": "Usuários",
19833 "ru": "Пользователи",
19834 "xloc": [
19804 - "default.handlebars->27->1332",
19805 - "default.handlebars->27->1343",
19806 - "default.handlebars->27->1490",
19835 + "default.handlebars->27->1349",
19836 + "default.handlebars->27->1360",
19837 + "default.handlebars->27->1507",
19838 "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral"
19839 ]
19840 },
@@ -19815,7 +19846,7 @@
19846 "nl": "gebruikers Sessies",
19847 "ru": "Сессии пользователей",
19848 "xloc": [
19818 - "default.handlebars->27->1478"
19849 + "default.handlebars->27->1495"
19850 ]
19851 },
19852 {
@@ -19862,7 +19893,7 @@
19893 "en": "Verified",
19894 "nl": "Geverifieerd",
19895 "xloc": [
19865 - "default.handlebars->27->1419"
19896 + "default.handlebars->27->1436"
19897 ]
19898 },
19899 {
@@ -19978,7 +20009,7 @@
20009 "pt": "Ver notas sobre este grupo de dispositivos",
20010 "ru": "Посмотреть примечания этой группы устройств",
20011 "xloc": [
19981 - "default.handlebars->27->1071"
20012 + "default.handlebars->27->1073"
20013 ]
20014 },
20015 {
@@ -19991,7 +20022,7 @@
20022 "pt": "Ver notas sobre este usuário",
20023 "ru": "Посмотреть примечания об этом пользователе",
20024 "xloc": [
19994 - "default.handlebars->27->1408"
20025 + "default.handlebars->27->1425"
20026 ]
20027 },
20028 {
@@ -20044,8 +20075,8 @@
20075 "xloc": [
20076 "default-mobile.handlebars->9->307",
20077 "default-mobile.handlebars->9->320",
20047 - "default.handlebars->27->1161",
20048 - "default.handlebars->27->1179"
20078 + "default.handlebars->27->1163",
20079 + "default.handlebars->27->1181"
20080 ]
20081 },
20082 {
@@ -20129,8 +20160,8 @@
20160 "pt": "Servidor web",
20161 "ru": "Веб-сервер",
20162 "xloc": [
20132 - "default.handlebars->27->1510",
20133 - "default.handlebars->27->1511"
20163 + "default.handlebars->27->1527",
20164 + "default.handlebars->27->1528"
20165 ]
20166 },
20167 {
@@ -20144,7 +20175,7 @@
20175 "pt": "Solicitações de servidor Web",
20176 "ru": "Запросы веб-сервера",
20177 "xloc": [
20147 - "default.handlebars->27->1512"
20178 + "default.handlebars->27->1529"
20179 ]
20180 },
20181 {
@@ -20158,7 +20189,7 @@
20189 "pt": "Encaminhador de soquete da Web",
20190 "ru": "Ретранслятор Web Socket",
20191 "xloc": [
20161 - "default.handlebars->27->1513"
20192 + "default.handlebars->27->1530"
20193 ]
20194 },
20195 {
@@ -20203,6 +20234,12 @@
20234 "default.handlebars->27->971"
20235 ]
20236 },
20237 + {
20238 + "en": "When enabled, invitation codes can be used by anyone to join devices to this device group using the following public link:",
20239 + "xloc": [
20240 + "default.handlebars->27->1200"
20241 + ]
20242 + },
20243 {
20244 "en": "When enabled, on each login, you will be given the option to receive a login token to you email account for added security.",
20245 "nl": "Indien ingeschakeld, krijgt u bij elke login de optie om een login-token voor uw e-mailaccount te ontvangen voor extra veiligheid.",
@@ -20222,7 +20259,7 @@
20259 "pt": "Será alterado no próximo login.",
20260 "ru": "Будет изменено при следующем входе в систему.",
20261 "xloc": [
20225 - "default.handlebars->27->1393"
20262 + "default.handlebars->27->1410"
20263 ]
20264 },
20265 {
@@ -20817,7 +20854,7 @@
20854 "pt": "\\\\'",
20855 "ru": "\\\\'",
20856 "xloc": [
20820 - "default.handlebars->27->1521"
20857 + "default.handlebars->27->1538"
20858 ]
20859 },
20860 {
@@ -20916,7 +20953,7 @@
20953 "ru": "копировать",
20954 "xloc": [
20955 "default-mobile.handlebars->9->92",
20919 - "default.handlebars->27->1246"
20956 + "default.handlebars->27->1263"
20957 ]
20958 },
20959 {
@@ -20964,8 +21001,8 @@
21001 "pt": "eventslist.csv",
21002 "ru": "eventslist.csv",
21003 "xloc": [
20967 - "default.handlebars->27->1255",
20968 - "default.handlebars->27->1260"
21004 + "default.handlebars->27->1272",
21005 + "default.handlebars->27->1277"
21006 ]
21007 },
21008 {
@@ -20979,8 +21016,8 @@
21016 "pt": "eventslist.json",
21017 "ru": "eventslist.json",
21018 "xloc": [
20982 - "default.handlebars->27->1257",
20983 - "default.handlebars->27->1261"
21019 + "default.handlebars->27->1274",
21020 + "default.handlebars->27->1278"
21021 ]
21022 },
21023 {
@@ -21008,7 +21045,7 @@
21045 "pt": "livre",
21046 "ru": "свободно",
21047 "xloc": [
21011 - "default.handlebars->27->1486"
21048 + "default.handlebars->27->1503"
21049 ]
21050 },
21051 {
@@ -21153,7 +21190,7 @@
21190 "pt": "id, nome, email, criação, último login, grupos, fatores de autenticação",
21191 "ru": "id, name, email, creation, lastlogin, groups, authfactors",
21192 "xloc": [
21156 - "default.handlebars->27->1298"
21193 + "default.handlebars->27->1315"
21194 ]
21195 },
21196 {
@@ -21203,7 +21240,7 @@
21240 "ru": "переместить",
21241 "xloc": [
21242 "default-mobile.handlebars->9->93",
21206 - "default.handlebars->27->1247"
21243 + "default.handlebars->27->1264"
21244 ]
21245 },
21246 {
@@ -21242,7 +21279,7 @@
21279 "pt": "servertrace.csv",
21280 "ru": "servertrace.csv",
21281 "xloc": [
21245 - "default.handlebars->27->1520"
21282 + "default.handlebars->27->1537"
21283 ]
21284 },
21285 {
@@ -21279,7 +21316,7 @@
21316 "pt": "tempo, conn.agente, conn.usuários.usersessions, conn.relaysession, conn.intelamt, mem.externo mem.amontoado, mem.heaptotal, mem.rss",
21317 "ru": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
21318 "xloc": [
21282 - "default.handlebars->27->1499"
21319 + "default.handlebars->27->1516"
21320 ]
21321 },
21322 {
@@ -21291,7 +21328,7 @@
21328 "pt": "hora, fonte, mensagem",
21329 "ru": "time, source, message",
21330 "xloc": [
21294 - "default.handlebars->27->1519"
21331 + "default.handlebars->27->1536"
21332 ]
21333 },
21334 {
@@ -21314,7 +21351,7 @@
21351 "pt": "total",
21352 "ru": "всего",
21353 "xloc": [
21317 - "default.handlebars->27->1487"
21354 + "default.handlebars->27->1504"
21355 ]
21356 },
21357 {
@@ -21358,8 +21395,8 @@
21395 "pt": "Lista de usuários.csv",
21396 "ru": "userlist.csv",
21397 "xloc": [
21361 - "default.handlebars->27->1294",
21362 - "default.handlebars->27->1299"
21398 + "default.handlebars->27->1311",
21399 + "default.handlebars->27->1316"
21400 ]
21401 },
21402 {
@@ -21373,15 +21410,15 @@
21410 "pt": "Lista de usuários.json",
21411 "ru": "userlist.json",
21412 "xloc": [
21376 - "default.handlebars->27->1296",
21377 - "default.handlebars->27->1300"
21413 + "default.handlebars->27->1313",
21414 + "default.handlebars->27->1317"
21415 ]
21416 },
21417 {
21418 "en": "utc, time, type, action, user, device, message",
21419 "nl": "utc, tiid, type, actie, bebruiker, apparaat, bericht",
21420 "xloc": [
21384 - "default.handlebars->27->1259"
21421 + "default.handlebars->27->1276"
21422 ]
21423 },
21424 {
@@ -21404,7 +21441,7 @@
21441 "pt": "{0} Gb",
21442 "ru": "{0} Гб",
21443 "xloc": [
21407 - "default.handlebars->27->1227"
21444 + "default.handlebars->27->1244"
21445 ]
21446 },
21447 {
@@ -21418,7 +21455,7 @@
21455 "pt": "{0} Kb",
21456 "ru": "{0} Kб",
21457 "xloc": [
21421 - "default.handlebars->27->1225"
21458 + "default.handlebars->27->1242"
21459 ]
21460 },
21461 {
@@ -21432,7 +21469,7 @@
21469 "pt": "{0} Mb",
21470 "ru": "{0} Mб",
21471 "xloc": [
21435 - "default.handlebars->27->1226"
21472 + "default.handlebars->27->1243"
21473 ]
21474 },
21475 {
@@ -21460,7 +21497,7 @@
21497 "pt": "{0} sessões ativas",
21498 "ru": "{0} активных сессий",
21499 "xloc": [
21463 - "default.handlebars->27->1415"
21500 + "default.handlebars->27->1432"
21501 ]
21502 },
21503 {
@@ -21474,7 +21511,7 @@
21511 "pt": "{0} b",
21512 "ru": "{0} байт",
21513 "xloc": [
21477 - "default.handlebars->27->1224"
21514 + "default.handlebars->27->1241"
21515 ]
21516 },
21517 {
@@ -21489,7 +21526,7 @@
21526 "ru": "{0} байт",
21527 "xloc": [
21528 "default-mobile.handlebars->9->81",
21492 - "default.handlebars->27->1234"
21529 + "default.handlebars->27->1251"
21530 ]
21531 },
21532 {
@@ -21503,7 +21540,7 @@
21540 "pt": "{0} bytes restantes",
21541 "ru": "{0} байт осталось",
21542 "xloc": [
21506 - "default.handlebars->27->1219"
21543 + "default.handlebars->27->1236"
21544 ]
21545 },
21546 {
@@ -21517,7 +21554,7 @@
21554 "pt": "{0} gigabytes restantes",
21555 "ru": "{0} гигабайт осталось",
21556 "xloc": [
21520 - "default.handlebars->27->1222"
21557 + "default.handlebars->27->1239"
21558 ]
21559 },
21560 {
@@ -21531,7 +21568,7 @@
21568 "pt": "{0} grupos",
21569 "ru": "{0} групп",
21570 "xloc": [
21534 - "default.handlebars->27->1398"
21571 + "default.handlebars->27->1415"
21572 ]
21573 },
21574 {
@@ -21567,7 +21604,7 @@
21604 "pt": "{0} kilobytes restantes",
21605 "ru": "{0} килобайт осталось",
21606 "xloc": [
21570 - "default.handlebars->27->1220"
21607 + "default.handlebars->27->1237"
21608 ]
21609 },
21610 {
@@ -21596,7 +21633,7 @@
21633 "pt": "{0} megabytes restantes",
21634 "ru": "{0} мегабайт осталось",
21635 "xloc": [
21599 - "default.handlebars->27->1221"
21636 + "default.handlebars->27->1238"
21637 ]
21638 },
21639 {
@@ -21632,7 +21669,7 @@
21669 "pt": "{0} mais usuários não exibidos, use a caixa de pesquisa para procurar usuários ...",
21670 "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей...",
21671 "xloc": [
21635 - "default.handlebars->27->1269"
21672 + "default.handlebars->27->1286"
21673 ]
21674 },
21675 {
@@ -21738,7 +21775,7 @@
21775 "pt": "{0} sessões",
21776 "ru": "{0} сессий",
21777 "xloc": [
21741 - "default.handlebars->27->1273"
21778 + "default.handlebars->27->1290"
21779 ]
21780 },
21781 {
@@ -21837,7 +21874,7 @@
21874 "pt": "{0} k em 1 arquivo. {1} k no máximo",
21875 "ru": "{0}k в 1 файле. {1}k максимум",
21876 "xloc": [
21840 - "default.handlebars->27->1229"
21877 + "default.handlebars->27->1246"
21878 ]
21879 },
21880 {
@@ -21851,7 +21888,7 @@
21888 "pt": "{0} k em {1} arquivos. {2} k no máximo",
21889 "ru": "{0}k в {1} файлах. {2}k максимум",
21890 "xloc": [
21854 - "default.handlebars->27->1228"
21891 + "default.handlebars->27->1245"
21892 ]
21893 },
21894 {
views/default.handlebars
+1 -2
@@ -8147,10 +8147,9 @@
8147 x += addHtmlValue("Notifications", addLink(meshNotifyStr.join(', '), 'p20editMeshNotify()'));
8148
8149 // Display invitation codes
8150 - if (features & 0x01000000) {
8150 + if ((features & 0x01000000) && (currentMesh.mtype == 2)) {
8151 var inviteCodeStr = '<i>' + "None" + '</i>', icodes = false;
8152 if (currentMesh.invite != null) { icodes = true; inviteCodeStr = currentMesh.invite.codes.join(', '); /* + ', ' + currentMesh.invite.flags;*/ }
8153 - //x += addHtmlValue("Invite Codes", addLink(inviteCodeStr, 'p20editmeshInviteCode()'));
8153 x += addHtmlValue("Invite Codes", addLinkConditional(inviteCodeStr, 'p20editmeshInviteCode()', (meshrights & 1) || (icodes)));
8154 }
8155