diff --git a/meshuser.js b/meshuser.js index 0fec0eb8..9f2f106b 100644 --- a/meshuser.js +++ b/meshuser.js @@ -1999,6 +1999,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use if (command.resetNextLogin === true) { chguser.passchange = -1; } else { chguser.passchange = Math.floor(Date.now() / 1000); } delete chguser.passtype; // Remove the password type if one was present. if (command.removeMultiFactor == true) { + if (chguser.otpekey) { delete chguser.otpekey; } if (chguser.otpsecret) { delete chguser.otpsecret; } if (chguser.otphkeys) { delete chguser.otphkeys; } if (chguser.otpkeys) { delete chguser.otpkeys; } @@ -2984,11 +2985,33 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } } + break; + } + case 'otpemail': + { + // Check input + if (typeof command.enabled != 'boolean') return; + + // See if we really need to change the state + if ((command.enabled === true) && (user.otpekey != null)) return; + if ((command.enabled === false) && (user.otpekey == null)) return; + + // Change the email 2FA of this user + if (command.enabled === true) { user.otpekey = {}; } else { delete user.otpekey; } + parent.db.SetUser(user); + ws.send(JSON.stringify({ action: 'otpemail', success: true, enabled: command.enabled })); // Report success + + // Notify change + var targets = ['*', 'server-users', user._id]; + if (user.groups) { for (var i in user.groups) { targets.push('server-users:' + i); } } + var event = { etype: 'user', userid: user._id, username: user.name, account: parent.CloneSafeUser(user), action: 'accountchange', msg: command.enabled ? "Enabled email two-factor authentication." :"Disabled email two-factor authentication.", domain: domain.id }; + if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the user. Another event will come. + parent.parent.DispatchEvent(targets, obj, event); break; } case 'otpauth-request': { - // Check is 2-step login is supported + // Check if 2-step login is supported const twoStepLoginSupported = ((parent.parent.config.settings.no2factorauth !== true) && (domain.auth != 'sspi') && (parent.parent.certificates.CommonName.indexOf('.') != -1) && (args.nousers !== true)); if (twoStepLoginSupported) { // Request a one time password to be setup @@ -3002,7 +3025,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'otpauth-setup': { - // Check is 2-step login is supported + // Check if 2-step login is supported const twoStepLoginSupported = ((parent.parent.config.settings.no2factorauth !== true) && (domain.auth != 'sspi') && (parent.parent.certificates.CommonName.indexOf('.') != -1) && (args.nousers !== true)); if (twoStepLoginSupported) { // Perform the one time password setup @@ -3030,7 +3053,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'otpauth-clear': { - // Check is 2-step login is supported + // Check if 2-step login is supported const twoStepLoginSupported = ((parent.parent.config.settings.no2factorauth !== true) && (domain.auth != 'sspi') && (parent.parent.certificates.CommonName.indexOf('.') != -1) && (args.nousers !== true)); if (twoStepLoginSupported) { // Clear the one time password secret @@ -3053,7 +3076,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'otpauth-getpasswords': { - // Check is 2-step login is supported + // Check if 2-step login is supported const twoStepLoginSupported = ((parent.parent.config.settings.no2factorauth !== true) && (domain.auth != 'sspi') && (parent.parent.certificates.CommonName.indexOf('.') != -1) && (args.nousers !== true)); if (twoStepLoginSupported == false) break; diff --git a/translate/translate.json b/translate/translate.json index 60b447f7..11a8dee4 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -11,8 +11,8 @@ "pt": " + CIRA", "ru": " + CIRA", "xloc": [ - "default.handlebars->27->1060", - "default.handlebars->27->1062" + "default.handlebars->27->1063", + "default.handlebars->27->1065" ] }, { @@ -154,7 +154,7 @@ "pt": " / ", "ru": " / ", "xloc": [ - "default-mobile.handlebars->9->94" + "default-mobile.handlebars->9->97" ] }, { @@ -168,7 +168,7 @@ "pt": " Adicionar usuário", "ru": " Добавить пользователя", "xloc": [ - "default-mobile.handlebars->9->280" + "default-mobile.handlebars->9->283" ] }, { @@ -182,7 +182,7 @@ "pt": " Dica de senha pode ser usada, mas não é recomendada.", "ru": "Может быть использована подсказка пароля, но не рекоммендуется.", "xloc": [ - "default.handlebars->27->992" + "default.handlebars->27->995" ] }, { @@ -196,8 +196,8 @@ "pt": " Os usuários precisam fazer login neste servidor uma vez antes de poderem ser adicionados a um grupo de dispositivos.", "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.", "xloc": [ - "default.handlebars->27->1135", - "default.handlebars->27->1367" + "default.handlebars->27->1138", + "default.handlebars->27->1370" ] }, { @@ -239,7 +239,7 @@ "pt": " nó", "ru": " устройство", "xloc": [ - "default-mobile.handlebars->9->127" + "default-mobile.handlebars->9->130" ] }, { @@ -253,7 +253,7 @@ "pt": " nós", "ru": " устройства", "xloc": [ - "default-mobile.handlebars->9->128" + "default-mobile.handlebars->9->131" ] }, { @@ -353,7 +353,7 @@ "pt": "* Deixe em branco para atribuir uma senha aleatória a cada dispositivo.", "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.", "xloc": [ - "default.handlebars->27->1110" + "default.handlebars->27->1113" ] }, { @@ -382,8 +382,8 @@ "pt": ", ", "ru": ", ", "xloc": [ - "default-mobile.handlebars->9->330", - "default.handlebars->27->1188" + "default-mobile.handlebars->9->333", + "default.handlebars->27->1191" ] }, { @@ -397,7 +397,7 @@ "pt": ", Intel® AMT only", "ru": ", только для Intel® AMT", "xloc": [ - "default-mobile.handlebars->9->92", + "default-mobile.handlebars->9->95", "default.handlebars->27->162" ] }, @@ -440,8 +440,8 @@ "pt": ", WebRTC", "ru": ", WebRTC", "xloc": [ - "default-mobile.handlebars->9->228", - "default-mobile.handlebars->9->238", + "default-mobile.handlebars->9->231", + "default-mobile.handlebars->9->241", "default.handlebars->27->606", "default.handlebars->27->636", "default.handlebars->27->648", @@ -502,7 +502,7 @@ "pt": "-", "ru": "-", "xloc": [ - "default-mobile.handlebars->9->231", + "default-mobile.handlebars->9->234", "xterm.handlebars->p11->deskarea0->deskarea1->3" ] }, @@ -539,10 +539,10 @@ "pt": "...", "ru": "...", "xloc": [ - "default-mobile.handlebars->9->243", - "default-mobile.handlebars->9->67", - "default.handlebars->27->1210", - "default.handlebars->27->1443", + "default-mobile.handlebars->9->246", + "default-mobile.handlebars->9->70", + "default.handlebars->27->1213", + "default.handlebars->27->1446", "default.handlebars->27->650" ] }, @@ -557,7 +557,7 @@ "pt": "0", "ru": "0", "xloc": [ - "default-mobile.handlebars->9->232", + "default-mobile.handlebars->9->235", "default.handlebars->container->masthead->7->notificationCount" ] }, @@ -586,7 +586,7 @@ "pt": "1 sessão ativa", "ru": "1 активная сессия", "xloc": [ - "default.handlebars->27->1407" + "default.handlebars->27->1410" ] }, { @@ -600,9 +600,9 @@ "pt": "1 byte", "ru": "1 байт", "xloc": [ - "default-mobile.handlebars->9->334", - "default-mobile.handlebars->9->77", - "default.handlebars->27->1227" + "default-mobile.handlebars->9->337", + "default-mobile.handlebars->9->80", + "default.handlebars->27->1230" ] }, { @@ -632,7 +632,7 @@ "pt": "1 grupo", "ru": "1 группа", "xloc": [ - "default.handlebars->27->1391" + "default.handlebars->27->1394" ] }, { @@ -690,7 +690,7 @@ "pt": "Mais 1 usuário não mostrado, use a caixa de pesquisa para procurar usuários...", "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...", "xloc": [ - "default.handlebars->27->1262" + "default.handlebars->27->1265" ] }, { @@ -730,7 +730,7 @@ "pt": "1 sessão", "ru": "1 сессия", "xloc": [ - "default.handlebars->27->1266" + "default.handlebars->27->1269" ] }, { @@ -946,7 +946,7 @@ "pt": "Autenticação de segundo fator ativada", "ru": "двухфакторная аутентификация включена", "xloc": [ - "default.handlebars->27->1400" + "default.handlebars->27->1403" ] }, { @@ -974,7 +974,7 @@ "pt": "3", "ru": "3", "xloc": [ - "default-mobile.handlebars->9->269" + "default-mobile.handlebars->9->272" ] }, { @@ -1420,7 +1420,7 @@ "pt": "ACM", "ru": "ACM", "xloc": [ - "default-mobile.handlebars->9->182", + "default-mobile.handlebars->9->185", "default.handlebars->27->460" ] }, @@ -1449,7 +1449,7 @@ "pt": "ARM-Linaro", "ru": "ARM-Linaro", "xloc": [ - "default-mobile.handlebars->9->167", + "default-mobile.handlebars->9->170", "default.handlebars->27->37" ] }, @@ -1464,7 +1464,7 @@ "pt": "ARMv6l / ARMv7l", "ru": "ARMv6l / ARMv7l", "xloc": [ - "default-mobile.handlebars->9->168", + "default-mobile.handlebars->9->171", "default.handlebars->27->38" ] }, @@ -1479,7 +1479,7 @@ "pt": "ARMv6l / ARMv7l / NoKVM", "ru": "ARMv6l / ARMv7l / NoKVM", "xloc": [ - "default-mobile.handlebars->9->170", + "default-mobile.handlebars->9->173", "default.handlebars->27->40" ] }, @@ -1494,7 +1494,7 @@ "pt": "ARMv8 64bit", "ru": "ARMv8 64bit", "xloc": [ - "default-mobile.handlebars->9->169", + "default-mobile.handlebars->9->172", "default.handlebars->27->39" ] }, @@ -1522,8 +1522,8 @@ "nl": "Toegang geweigerd.", "ru": "Отказано в доступе.", "xloc": [ - "login-mobile.handlebars->5->13", - "login.handlebars->5->13" + "login-mobile.handlebars->5->14", + "login.handlebars->5->14" ] }, { @@ -1537,7 +1537,7 @@ "pt": "Acesso aos arquivos do servidor", "ru": "Доступ к файлам сервера", "xloc": [ - "default.handlebars->27->1372" + "default.handlebars->27->1375" ] }, { @@ -1595,13 +1595,13 @@ "pt": "Segurança da Conta", "ru": "Безопасность учетной записи", "xloc": [ - "default-mobile.handlebars->9->129", - "default-mobile.handlebars->9->131", - "default-mobile.handlebars->9->52", - "default-mobile.handlebars->9->54", + "default-mobile.handlebars->9->132", + "default-mobile.handlebars->9->134", + "default-mobile.handlebars->9->55", + "default-mobile.handlebars->9->57", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0", - "default.handlebars->27->1001", - "default.handlebars->27->1003", + "default.handlebars->27->1004", + "default.handlebars->27->1006", "default.handlebars->27->433", "default.handlebars->27->435" ] @@ -1630,8 +1630,8 @@ "nl": "Gebruikersaccount limiet bereikt.", "ru": "Достигнуто ограничение учетных записей.", "xloc": [ - "login-mobile.handlebars->5->3", - "login.handlebars->5->3" + "login-mobile.handlebars->5->4", + "login.handlebars->5->4" ] }, { @@ -1644,8 +1644,8 @@ "nl": "Gebruikersaccount vergrendeld", "ru": "Учетная запись заблокирована.", "xloc": [ - "login-mobile.handlebars->5->12", - "login.handlebars->5->12" + "login-mobile.handlebars->5->13", + "login.handlebars->5->13" ] }, { @@ -1658,8 +1658,8 @@ "nl": "Gebruikersaccount niet gevonden", "ru": "Учетная запись не найдена.", "xloc": [ - "login-mobile.handlebars->5->9", - "login.handlebars->5->9" + "login-mobile.handlebars->5->10", + "login.handlebars->5->10" ] }, { @@ -1757,8 +1757,8 @@ "pt": "ativado", "ru": "Активировано", "xloc": [ - "default-mobile.handlebars->9->177", - "default-mobile.handlebars->9->179", + "default-mobile.handlebars->9->180", + "default-mobile.handlebars->9->182", "default.handlebars->27->453", "default.handlebars->27->455", "default.handlebars->27->716" @@ -1774,8 +1774,8 @@ "pt": "Ativação", "ru": "Активация", "xloc": [ - "default.handlebars->27->1073", - "default.handlebars->27->1075", + "default.handlebars->27->1076", + "default.handlebars->27->1078", "default.handlebars->27->212", "default.handlebars->27->214" ] @@ -1847,10 +1847,10 @@ "pt": "Adicionar grupo de dispositivos", "ru": "Добавить группу устройств", "xloc": [ - "default.handlebars->27->1161", - "default.handlebars->27->1163", - "default.handlebars->27->1346", - "default.handlebars->27->1420", + "default.handlebars->27->1164", + "default.handlebars->27->1166", + "default.handlebars->27->1349", + "default.handlebars->27->1423", "default.handlebars->27->187" ] }, @@ -1917,7 +1917,7 @@ "nl": "Lidmaatschap toevoegen", "ru": "Добавить участие", "xloc": [ - "default.handlebars->27->1439" + "default.handlebars->27->1442" ] }, { @@ -1949,8 +1949,8 @@ "default.handlebars->27->130", "default.handlebars->27->133", "default.handlebars->27->134", - "default.handlebars->27->770", - "default.handlebars->27->771" + "default.handlebars->27->773", + "default.handlebars->27->774" ] }, { @@ -1961,9 +1961,9 @@ "nl": "Gebruikersgroep toevoegen", "ru": "Добавить группу пользователей", "xloc": [ - "default.handlebars->27->1067", - "default.handlebars->27->1162", - "default.handlebars->27->1429" + "default.handlebars->27->1070", + "default.handlebars->27->1165", + "default.handlebars->27->1432" ] }, { @@ -1977,7 +1977,7 @@ "pt": "Adicionar usuário à malha", "ru": "Добавить пользователя в Mesh", "xloc": [ - "default-mobile.handlebars->9->309" + "default-mobile.handlebars->9->312" ] }, { @@ -1991,8 +1991,8 @@ "pt": "Adicionar usuários", "ru": "Добавить пользователей", "xloc": [ - "default.handlebars->27->1066", - "default.handlebars->27->1341" + "default.handlebars->27->1069", + "default.handlebars->27->1344" ] }, { @@ -2006,7 +2006,7 @@ "pt": "Adicionar usuários ao grupo de dispositivos", "ru": "Добавить пользователей в группу устройств", "xloc": [ - "default.handlebars->27->1160" + "default.handlebars->27->1163" ] }, { @@ -2017,7 +2017,7 @@ "nl": "Voeg gebruikers toe aan de gebruikersgroep", "ru": "Добавить пользователей в группу", "xloc": [ - "default.handlebars->27->1369" + "default.handlebars->27->1372" ] }, { @@ -2059,7 +2059,7 @@ "pt": "Adicione um novo Intel® Computador AMT localizado na Internet.", "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.", "xloc": [ - "default.handlebars->27->1068", + "default.handlebars->27->1071", "default.handlebars->27->205" ] }, @@ -2074,7 +2074,7 @@ "pt": "Adicione um novo Intel® AMT computer that is located on the local network.", "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.", "xloc": [ - "default.handlebars->27->1070", + "default.handlebars->27->1073", "default.handlebars->27->207" ] }, @@ -2103,7 +2103,7 @@ "pt": "Adicione um novo computador a essa malha instalando o agente de malha.", "ru": "Добавить новый компьютер к этой сети установкой Mesh Agent.", "xloc": [ - "default.handlebars->27->1076", + "default.handlebars->27->1079", "default.handlebars->27->215" ] }, @@ -2178,7 +2178,7 @@ "pt": "Admin Realms", "ru": "Области администратора", "xloc": [ - "default.handlebars->27->1395" + "default.handlebars->27->1398" ] }, { @@ -2205,7 +2205,7 @@ "pt": "Domínios Administrativos", "ru": "Административные области", "xloc": [ - "default.handlebars->27->1311" + "default.handlebars->27->1314" ] }, { @@ -2219,7 +2219,7 @@ "pt": "Administrador", "ru": "Администратор", "xloc": [ - "default.handlebars->27->1273" + "default.handlebars->27->1276" ] }, { @@ -2232,7 +2232,7 @@ "pt": "afrikaans", "ru": "Африканский", "xloc": [ - "default.handlebars->27->773" + "default.handlebars->27->776" ] }, { @@ -2246,11 +2246,11 @@ "pt": "Agente", "ru": "Агент", "xloc": [ - "default-mobile.handlebars->9->121", - "default-mobile.handlebars->9->174", - "default-mobile.handlebars->9->190", - "default.handlebars->27->1198", - "default.handlebars->27->1204", + "default-mobile.handlebars->9->124", + "default-mobile.handlebars->9->177", + "default-mobile.handlebars->9->193", + "default.handlebars->27->1201", + "default.handlebars->27->1207", "default.handlebars->27->166", "default.handlebars->27->355", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" @@ -2264,8 +2264,8 @@ "nl": "Agent + Intel AMT", "ru": "Агент + Intel AMT", "xloc": [ - "default.handlebars->27->1200", - "default.handlebars->27->1206" + "default.handlebars->27->1203", + "default.handlebars->27->1209" ] }, { @@ -2291,8 +2291,8 @@ "pt": "Console do agente", "ru": "Консоль агента", "xloc": [ - "default-mobile.handlebars->9->315", - "default.handlebars->27->1171" + "default-mobile.handlebars->9->318", + "default.handlebars->27->1174" ] }, { @@ -2303,7 +2303,7 @@ "nl": "Agent fout tellers", "ru": "Счетчик ошибок агента", "xloc": [ - "default.handlebars->27->1451" + "default.handlebars->27->1454" ] }, { @@ -2324,7 +2324,7 @@ "pt": "Retransmissão do agente", "ru": "Ретранслятор агента", "xloc": [ - "default-mobile.handlebars->9->193" + "default-mobile.handlebars->9->196" ] }, { @@ -2349,7 +2349,7 @@ "nl": "Agent Sessies", "ru": "Сессии агентов", "xloc": [ - "default.handlebars->27->1467" + "default.handlebars->27->1470" ] }, { @@ -2362,7 +2362,7 @@ "pt": "Etiqueta do agente", "ru": "Тег агента", "xloc": [ - "default-mobile.handlebars->9->189", + "default-mobile.handlebars->9->192", "default.handlebars->27->472" ] }, @@ -2374,7 +2374,7 @@ "nl": "Agent Type", "ru": "Типы агента", "xloc": [ - "default.handlebars->27->1202", + "default.handlebars->27->1205", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -2446,7 +2446,7 @@ "pt": "Agentes", "ru": "Агенты", "xloc": [ - "default.handlebars->27->1480" + "default.handlebars->27->1483" ] }, { @@ -2459,7 +2459,7 @@ "pt": "albanês", "ru": "Албанский", "xloc": [ - "default.handlebars->27->774" + "default.handlebars->27->777" ] }, { @@ -2473,9 +2473,9 @@ "pt": "Todos", "ru": "Все", "xloc": [ - "default-mobile.handlebars->9->244", - "default-mobile.handlebars->9->246", - "default-mobile.handlebars->9->76" + "default-mobile.handlebars->9->247", + "default-mobile.handlebars->9->249", + "default-mobile.handlebars->9->79" ] }, { @@ -2489,7 +2489,7 @@ "pt": "Todas as telas", "ru": "Все экраны", "xloc": [ - "default-mobile.handlebars->9->233" + "default-mobile.handlebars->9->236" ] }, { @@ -2518,8 +2518,8 @@ "pt": "Permitir que os usuários gerenciem esse grupo de dispositivos e dispositivos neste grupo.", "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.", "xloc": [ - "default.handlebars->27->1134", - "default.handlebars->27->1366" + "default.handlebars->27->1137", + "default.handlebars->27->1369" ] }, { @@ -2585,7 +2585,7 @@ "pt": "Notificar sempre", "ru": "Всегда уведомлять", "xloc": [ - "default.handlebars->27->1049" + "default.handlebars->27->1052" ] }, { @@ -2599,7 +2599,7 @@ "pt": "Sempre alerta", "ru": "Всегда запрашивать", "xloc": [ - "default.handlebars->27->1050" + "default.handlebars->27->1053" ] }, { @@ -2613,7 +2613,7 @@ "pt": "Android APK", "ru": "Android APK", "xloc": [ - "default-mobile.handlebars->9->157", + "default-mobile.handlebars->9->160", "default.handlebars->27->27" ] }, @@ -2628,7 +2628,7 @@ "pt": "Android ARM", "ru": "Android ARM", "xloc": [ - "default-mobile.handlebars->9->152", + "default-mobile.handlebars->9->155", "default.handlebars->27->22" ] }, @@ -2643,7 +2643,7 @@ "pt": "Android x86", "ru": "Android x86", "xloc": [ - "default-mobile.handlebars->9->155", + "default-mobile.handlebars->9->158", "default.handlebars->27->25" ] }, @@ -2726,7 +2726,7 @@ "pt": "Árabe (Argélia)", "ru": "Арабский (Алжир)", "xloc": [ - "default.handlebars->27->776" + "default.handlebars->27->779" ] }, { @@ -2738,7 +2738,7 @@ "pt": "Árabe (Bahrain)", "ru": "Арабский (Бахрейн)", "xloc": [ - "default.handlebars->27->777" + "default.handlebars->27->780" ] }, { @@ -2751,7 +2751,7 @@ "pt": "Árabe (Egito)", "ru": "Арабский (Египет)", "xloc": [ - "default.handlebars->27->778" + "default.handlebars->27->781" ] }, { @@ -2764,7 +2764,7 @@ "pt": "Árabe (Iraque)", "ru": "Арабский (Ирак)", "xloc": [ - "default.handlebars->27->779" + "default.handlebars->27->782" ] }, { @@ -2777,7 +2777,7 @@ "pt": "Árabe (Jordânia)", "ru": "Арабский (Иордания)", "xloc": [ - "default.handlebars->27->780" + "default.handlebars->27->783" ] }, { @@ -2789,7 +2789,7 @@ "pt": "Árabe (Kuwait)", "ru": "Арабский (Кувейт)", "xloc": [ - "default.handlebars->27->781" + "default.handlebars->27->784" ] }, { @@ -2801,7 +2801,7 @@ "pt": "Árabe (Líbano)", "ru": "Арабский (Ливан)", "xloc": [ - "default.handlebars->27->782" + "default.handlebars->27->785" ] }, { @@ -2814,7 +2814,7 @@ "pt": "Árabe (Líbia)", "ru": "Арабский (Ливия)", "xloc": [ - "default.handlebars->27->783" + "default.handlebars->27->786" ] }, { @@ -2827,7 +2827,7 @@ "pt": "Árabe (Marrocos)", "ru": "Арабский (Марокко)", "xloc": [ - "default.handlebars->27->784" + "default.handlebars->27->787" ] }, { @@ -2839,7 +2839,7 @@ "pt": "Árabe (Omã)", "ru": "Арабский (Оман)", "xloc": [ - "default.handlebars->27->785" + "default.handlebars->27->788" ] }, { @@ -2852,7 +2852,7 @@ "pt": "Árabe (Catar)", "ru": "Арабский (Катар)", "xloc": [ - "default.handlebars->27->786" + "default.handlebars->27->789" ] }, { @@ -2865,7 +2865,7 @@ "pt": "Árabe (Arábia Saudita)", "ru": "Арабский (Саудовская Аравия)", "xloc": [ - "default.handlebars->27->787" + "default.handlebars->27->790" ] }, { @@ -2878,7 +2878,7 @@ "pt": "Árabe (padrão)", "ru": "Арабский (стандартный)", "xloc": [ - "default.handlebars->27->775" + "default.handlebars->27->778" ] }, { @@ -2891,7 +2891,7 @@ "pt": "Árabe (Síria)", "ru": "Арабский (Сирия)", "xloc": [ - "default.handlebars->27->788" + "default.handlebars->27->791" ] }, { @@ -2904,7 +2904,7 @@ "pt": "Árabe (Tunísia)", "ru": "Арабский (Тунис)", "xloc": [ - "default.handlebars->27->789" + "default.handlebars->27->792" ] }, { @@ -2916,7 +2916,7 @@ "pt": "Árabe (U.A.E)", "ru": "Арабский (О.А.Э.)", "xloc": [ - "default.handlebars->27->790" + "default.handlebars->27->793" ] }, { @@ -2929,7 +2929,7 @@ "pt": "Árabe (Iêmen)", "ru": "Арабский (Йемен)", "xloc": [ - "default.handlebars->27->791" + "default.handlebars->27->794" ] }, { @@ -2942,7 +2942,7 @@ "pt": "Aragonês", "ru": "Арагонский", "xloc": [ - "default.handlebars->27->792" + "default.handlebars->27->795" ] }, { @@ -2983,8 +2983,8 @@ "pt": "Tem certeza de que deseja excluir o grupo {0}? A exclusão do grupo de dispositivos também excluirá todas as informações sobre os dispositivos desse grupo.", "ru": "Вы действительно хотите удалить группу \\\"{0}\\\"? Удаление группы приведет к удалению всей информации связанной с устройствами в этой группе.", "xloc": [ - "default-mobile.handlebars->9->286", - "default.handlebars->27->1114" + "default-mobile.handlebars->9->289", + "default.handlebars->27->1117" ] }, { @@ -3037,7 +3037,7 @@ "nl": "Weet u zeker dat u de plug-in {0} wilt gebruiken: {1}", "ru": "Вы уверенны, что {0} плагин: {1}", "xloc": [ - "default.handlebars->27->1516" + "default.handlebars->27->1519" ] }, { @@ -3050,7 +3050,7 @@ "pt": "Armênio", "ru": "Армянский", "xloc": [ - "default.handlebars->27->793" + "default.handlebars->27->796" ] }, { @@ -3062,7 +3062,7 @@ "pt": "Assamese", "ru": "Ассамский", "xloc": [ - "default.handlebars->27->794" + "default.handlebars->27->797" ] }, { @@ -3074,7 +3074,7 @@ "pt": "Asturiano", "ru": "Астурии", "xloc": [ - "default.handlebars->27->795" + "default.handlebars->27->798" ] }, { @@ -3087,7 +3087,7 @@ "pt": "Aplicativo de autenticação", "ru": "Приложение аутентификации", "xloc": [ - "default.handlebars->27->1396" + "default.handlebars->27->1399" ] }, { @@ -3103,12 +3103,12 @@ "xloc": [ "default-mobile.handlebars->9->18", "default-mobile.handlebars->9->21", - "default-mobile.handlebars->9->30", - "default-mobile.handlebars->9->32", + "default-mobile.handlebars->9->33", + "default-mobile.handlebars->9->35", "default.handlebars->27->104", "default.handlebars->27->109", - "default.handlebars->27->759", - "default.handlebars->27->761" + "default.handlebars->27->762", + "default.handlebars->27->764" ] }, { @@ -3162,7 +3162,7 @@ "pt": "Remover automaticamente", "ru": "Автоудаление", "xloc": [ - "default.handlebars->27->1037" + "default.handlebars->27->1040" ] }, { @@ -3206,7 +3206,7 @@ "pt": "Azerbaijão", "ru": "Азербайджанский", "xloc": [ - "default.handlebars->27->796" + "default.handlebars->27->799" ] }, { @@ -3343,7 +3343,7 @@ "pt": "Códigos de backup", "ru": "Резервные коды", "xloc": [ - "default.handlebars->27->1398" + "default.handlebars->27->1401" ] }, { @@ -3354,7 +3354,7 @@ "nl": "Ongeldige handtening", "ru": "Плохой ключ", "xloc": [ - "default.handlebars->27->1458" + "default.handlebars->27->1461" ] }, { @@ -3365,7 +3365,7 @@ "nl": "Onjuist webcertificaat", "ru": "Плохой веб-сертификат", "xloc": [ - "default.handlebars->27->1457" + "default.handlebars->27->1460" ] }, { @@ -3377,7 +3377,7 @@ "pt": "Basco", "ru": "Баскский", "xloc": [ - "default.handlebars->27->797" + "default.handlebars->27->800" ] }, { @@ -3404,7 +3404,7 @@ "pt": "Bielorrusso", "ru": "Белорусский", "xloc": [ - "default.handlebars->27->799" + "default.handlebars->27->802" ] }, { @@ -3417,7 +3417,7 @@ "pt": "Bengali", "ru": "Бенгальский", "xloc": [ - "default.handlebars->27->800" + "default.handlebars->27->803" ] }, { @@ -3430,7 +3430,7 @@ "pt": "Bósnia", "ru": "Боснийский", "xloc": [ - "default.handlebars->27->801" + "default.handlebars->27->804" ] }, { @@ -3442,7 +3442,7 @@ "pt": "Breton", "ru": "Бретонский", "xloc": [ - "default.handlebars->27->802" + "default.handlebars->27->805" ] }, { @@ -3456,7 +3456,7 @@ "pt": "Broadcast", "ru": "Отправить сообщение", "xloc": [ - "default.handlebars->27->1339", + "default.handlebars->27->1342", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -3471,7 +3471,7 @@ "pt": "Mensagem de transmissão", "ru": "Отправить сообщение", "xloc": [ - "default.handlebars->27->1296" + "default.handlebars->27->1299" ] }, { @@ -3485,7 +3485,7 @@ "pt": "Transmita uma mensagem para todos os usuários conectados.", "ru": "Отправить сообщение всем подключенным пользователям.", "xloc": [ - "default.handlebars->27->1295" + "default.handlebars->27->1298" ] }, { @@ -3498,7 +3498,7 @@ "pt": "Búlgaria", "ru": "Болгарский", "xloc": [ - "default.handlebars->27->798" + "default.handlebars->27->801" ] }, { @@ -3511,7 +3511,7 @@ "pt": "Birmanês", "ru": "Бирманский", "xloc": [ - "default.handlebars->27->803" + "default.handlebars->27->806" ] }, { @@ -3525,7 +3525,7 @@ "pt": "CCM", "ru": "CCM", "xloc": [ - "default-mobile.handlebars->9->181", + "default-mobile.handlebars->9->184", "default.handlebars->27->458" ] }, @@ -3540,9 +3540,9 @@ "pt": "CIRA", "ru": "CIRA", "xloc": [ - "default-mobile.handlebars->9->122", - "default.handlebars->27->1102", - "default.handlebars->27->1107", + "default-mobile.handlebars->9->125", + "default.handlebars->27->1105", + "default.handlebars->27->1110", "default.handlebars->27->168", "default.handlebars->27->357" ] @@ -3558,7 +3558,7 @@ "pt": "Servidor CIRA", "ru": "CIRA Сервер", "xloc": [ - "default.handlebars->27->1507" + "default.handlebars->27->1510" ] }, { @@ -3572,7 +3572,7 @@ "pt": "Comandos do servidor CIRA", "ru": "CIRA Сервер команды", "xloc": [ - "default.handlebars->27->1508" + "default.handlebars->27->1511" ] }, { @@ -3583,7 +3583,7 @@ "nl": "CPU gebruik", "ru": "Загрузка CPU", "xloc": [ - "default.handlebars->27->1472" + "default.handlebars->27->1475" ] }, { @@ -3597,7 +3597,7 @@ "pt": "Carga da CPU nos últimos 15 minutos", "ru": "Загрузка CPU за последние 15 минут", "xloc": [ - "default.handlebars->27->1475" + "default.handlebars->27->1478" ] }, { @@ -3611,7 +3611,7 @@ "pt": "Carga da CPU nos últimos 5 minutos", "ru": "Загрузка CPU за последние 5 минут", "xloc": [ - "default.handlebars->27->1474" + "default.handlebars->27->1477" ] }, { @@ -3625,7 +3625,7 @@ "pt": "Carga da CPU no último minuto", "ru": "Загрузка CPU за последнюю минуту", "xloc": [ - "default.handlebars->27->1473" + "default.handlebars->27->1476" ] }, { @@ -3655,8 +3655,8 @@ "pt": "Formato CSV", "ru": "Формат CSV", "xloc": [ - "default.handlebars->27->1248", - "default.handlebars->27->1287", + "default.handlebars->27->1251", + "default.handlebars->27->1290", "default.handlebars->27->384" ] }, @@ -3671,7 +3671,7 @@ "pt": "Erro de chamada", "ru": "Ошибка вызова", "xloc": [ - "default.handlebars->27->1517" + "default.handlebars->27->1520" ] }, { @@ -3685,9 +3685,9 @@ "pt": "Cancelar", "ru": "Отмена", "xloc": [ - "default-mobile.handlebars->9->41", + "default-mobile.handlebars->9->44", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->27->1022", + "default.handlebars->27->1025", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -3719,7 +3719,7 @@ "pt": "Catalão", "ru": "Каталонский", "xloc": [ - "default.handlebars->27->804" + "default.handlebars->27->807" ] }, { @@ -3746,7 +3746,7 @@ "pt": "Chamorro", "ru": "Чаморро", "xloc": [ - "default.handlebars->27->805" + "default.handlebars->27->808" ] }, { @@ -3760,7 +3760,7 @@ "pt": "Alterar email para {0}", "ru": "Смена email для {0}", "xloc": [ - "default.handlebars->27->1411" + "default.handlebars->27->1414" ] }, { @@ -3790,9 +3790,9 @@ "pt": "Mudar senha", "ru": "Смена пароля", "xloc": [ - "default-mobile.handlebars->9->49", - "default.handlebars->27->1406", - "default.handlebars->27->998" + "default-mobile.handlebars->9->52", + "default.handlebars->27->1001", + "default.handlebars->27->1409" ] }, { @@ -3806,7 +3806,7 @@ "pt": "Alterar senha para {0}", "ru": "Смена пароля для {0}", "xloc": [ - "default.handlebars->27->1418" + "default.handlebars->27->1421" ] }, { @@ -3877,7 +3877,7 @@ "pt": "Mude o endereço de e-mail da sua conta aqui.", "ru": "Измените адрес электронной почты вашей учетной записи здесь.", "xloc": [ - "default.handlebars->27->985" + "default.handlebars->27->988" ] }, { @@ -3891,7 +3891,7 @@ "pt": "Altere a senha da sua conta digitando a senha antiga e a nova senha duas vezes nas caixas abaixo.", "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.", "xloc": [ - "default.handlebars->27->991" + "default.handlebars->27->994" ] }, { @@ -3905,7 +3905,7 @@ "pt": "Alterar o idioma exigirá uma atualização da página.", "ru": "Изменение языка потребует перезагрузить страницу.", "xloc": [ - "default.handlebars->27->970" + "default.handlebars->27->973" ] }, { @@ -3919,7 +3919,7 @@ "pt": "Chat", "ru": "Чат", "xloc": [ - "default.handlebars->27->1265" + "default.handlebars->27->1268" ] }, { @@ -3933,10 +3933,10 @@ "pt": "Chat & Notificação", "ru": "Чаты и уведомления", "xloc": [ - "default-mobile.handlebars->9->307", - "default-mobile.handlebars->9->325", - "default.handlebars->27->1158", - "default.handlebars->27->1182" + "default-mobile.handlebars->9->310", + "default-mobile.handlebars->9->328", + "default.handlebars->27->1161", + "default.handlebars->27->1185" ] }, { @@ -3950,7 +3950,7 @@ "pt": "Checheno", "ru": "Чеченский", "xloc": [ - "default.handlebars->27->806" + "default.handlebars->27->809" ] }, { @@ -4006,8 +4006,8 @@ "pt": "Verificando ...", "ru": "Проверка...", "xloc": [ - "default.handlebars->27->1513", - "default.handlebars->27->772" + "default.handlebars->27->1516", + "default.handlebars->27->775" ] }, { @@ -4021,7 +4021,7 @@ "pt": "Chinês", "ru": "Китайский", "xloc": [ - "default.handlebars->27->807" + "default.handlebars->27->810" ] }, { @@ -4034,7 +4034,7 @@ "pt": "Chinês (Hong Kong)", "ru": "Китайский (Гонконг)", "xloc": [ - "default.handlebars->27->808" + "default.handlebars->27->811" ] }, { @@ -4047,7 +4047,7 @@ "pt": "Chinês (PRC)", "ru": "Китайский (КНР)", "xloc": [ - "default.handlebars->27->809" + "default.handlebars->27->812" ] }, { @@ -4060,7 +4060,7 @@ "pt": "Chinês (Singapura)", "ru": "Китайский (Сингапур)", "xloc": [ - "default.handlebars->27->810" + "default.handlebars->27->813" ] }, { @@ -4073,7 +4073,7 @@ "pt": "Chinês (Taiwan)", "ru": "Китайский (Тайвань)", "xloc": [ - "default.handlebars->27->811" + "default.handlebars->27->814" ] }, { @@ -4087,7 +4087,7 @@ "pt": "ChromeOS", "ru": "ChromeOS", "xloc": [ - "default-mobile.handlebars->9->160", + "default-mobile.handlebars->9->163", "default.handlebars->27->30" ] }, @@ -4100,7 +4100,7 @@ "pt": "Chuvash", "ru": "Чувашский", "xloc": [ - "default.handlebars->27->812" + "default.handlebars->27->815" ] }, { @@ -4128,13 +4128,13 @@ "pt": "Limpo", "ru": "Очистить", "xloc": [ - "default-mobile.handlebars->9->262", - "default-mobile.handlebars->9->264", - "default-mobile.handlebars->9->266", - "default-mobile.handlebars->9->268", + "default-mobile.handlebars->9->265", + "default-mobile.handlebars->9->267", + "default-mobile.handlebars->9->269", + "default-mobile.handlebars->9->271", "default-mobile.handlebars->9->28", - "default-mobile.handlebars->9->91", - "default.handlebars->27->1242", + "default-mobile.handlebars->9->94", + "default.handlebars->27->1245", "default.handlebars->27->669", "default.handlebars->27->671", "default.handlebars->27->673", @@ -4210,8 +4210,8 @@ "pt": "Clique em ok para enviar um email de verificação para:", "ru": "Нажмите ОК для отправки подтверждения по электронной почте:", "xloc": [ - "default-mobile.handlebars->9->34", - "default.handlebars->27->982" + "default-mobile.handlebars->9->37", + "default.handlebars->27->985" ] }, { @@ -4251,8 +4251,8 @@ "pt": "Acesso remoto iniciado pelo cliente", "ru": "Клиент инициировал удаленный доступ", "xloc": [ - "default.handlebars->27->1101", - "default.handlebars->27->1106" + "default.handlebars->27->1104", + "default.handlebars->27->1109" ] }, { @@ -4309,8 +4309,8 @@ "nl": "Gemeenschappelijke apparaatgroepen", "ru": "Общие группы устройств", "xloc": [ - "default.handlebars->27->1347", - "default.handlebars->27->1421" + "default.handlebars->27->1350", + "default.handlebars->27->1424" ] }, { @@ -4323,8 +4323,8 @@ "pt": "Confirme {0} da {1} entrada {2} para este local?", "ru": "Подтвердить {0} из {1} записей в это расположение?", "xloc": [ - "default-mobile.handlebars->9->86", - "default.handlebars->27->1237" + "default-mobile.handlebars->9->89", + "default.handlebars->27->1240" ] }, { @@ -4338,10 +4338,10 @@ "pt": "Confirme", "ru": "Подтвердить", "xloc": [ - "default-mobile.handlebars->9->220", - "default-mobile.handlebars->9->287", - "default.handlebars->27->1115", - "default.handlebars->27->1362", + "default-mobile.handlebars->9->223", + "default-mobile.handlebars->9->290", + "default.handlebars->27->1118", + "default.handlebars->27->1365", "default.handlebars->27->381", "default.handlebars->27->558", "default.handlebars->27->567" @@ -4357,7 +4357,7 @@ "pt": "Confirmar cópia de 1 entrada para este local?", "ru": "Подтвердить копирование 1 записи в это расположение?", "xloc": [ - "default-mobile.handlebars->9->257", + "default-mobile.handlebars->9->260", "default.handlebars->27->664" ] }, @@ -4371,7 +4371,7 @@ "pt": "Confirmar cópia de {0} entradas para este local?", "ru": "Подтвердить копирование {0} записей в это расположение?", "xloc": [ - "default-mobile.handlebars->9->256", + "default-mobile.handlebars->9->259", "default.handlebars->27->663" ] }, @@ -4399,7 +4399,7 @@ "pt": "Confirmar a movimentação de 1 entrada para este local?", "ru": "Подтвердить перемещение 1 записи в это расположение?", "xloc": [ - "default-mobile.handlebars->9->259", + "default-mobile.handlebars->9->262", "default.handlebars->27->666" ] }, @@ -4413,7 +4413,7 @@ "pt": "Confirmar a movimentação de {0} entradas para este local?", "ru": "Подтвердить перемещение {0} записей в это расположение?", "xloc": [ - "default-mobile.handlebars->9->258", + "default-mobile.handlebars->9->261", "default.handlebars->27->665" ] }, @@ -4427,7 +4427,7 @@ "nl": "Bevestig overschrijven?", "ru": "Подтвердить перезапись?", "xloc": [ - "default.handlebars->27->1236" + "default.handlebars->27->1239" ] }, { @@ -4441,8 +4441,8 @@ "pt": "Confirmar remoção do login do aplicativo autenticador em duas etapas?", "ru": "Подтвердить удаление приложения аутентификации двухэтапного входа в систему?", "xloc": [ - "default-mobile.handlebars->9->33", - "default.handlebars->27->762" + "default-mobile.handlebars->9->36", + "default.handlebars->27->765" ] }, { @@ -4453,8 +4453,8 @@ "nl": "Bevestig het verwijderen van de apparaatgroep {0}?", "ru": "Подтвердить удаление группы устройств {0}?", "xloc": [ - "default.handlebars->27->1357", - "default.handlebars->27->1441" + "default.handlebars->27->1360", + "default.handlebars->27->1444" ] }, { @@ -4465,7 +4465,7 @@ "nl": "Bevestig het verwijderen van de groep {0}?", "ru": "Подтвердить удаление группы {0}?", "xloc": [ - "default.handlebars->27->1437" + "default.handlebars->27->1440" ] }, { @@ -4479,9 +4479,9 @@ "pt": "Confirmar remoção do usuário {0}?", "ru": "Подтвердить удаление пользователя {0}?", "xloc": [ - "default-mobile.handlebars->9->333", - "default.handlebars->27->1191", - "default.handlebars->27->1365" + "default-mobile.handlebars->9->336", + "default.handlebars->27->1194", + "default.handlebars->27->1368" ] }, { @@ -4495,10 +4495,10 @@ "pt": "Conectar", "ru": "Подключиться", "xloc": [ - "default-mobile.handlebars->9->236", + "default-mobile.handlebars->9->239", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", - "default.handlebars->27->1053", + "default.handlebars->27->1056", "default.handlebars->27->646", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", @@ -4532,8 +4532,8 @@ "pt": "Conecte-se ao servidor", "ru": "Подключиться к серверу", "xloc": [ - "default.handlebars->27->1105", - "default.handlebars->27->1109" + "default.handlebars->27->1108", + "default.handlebars->27->1112" ] }, { @@ -4587,7 +4587,7 @@ "nl": "Verbonden Intel® AMT", "ru": "Подключено Intel® AMT", "xloc": [ - "default.handlebars->27->1463" + "default.handlebars->27->1466" ] }, { @@ -4598,7 +4598,7 @@ "nl": "Verbonden gebruikers", "ru": "Подключенные пользователи", "xloc": [ - "default.handlebars->27->1468" + "default.handlebars->27->1471" ] }, { @@ -4634,7 +4634,7 @@ "ru": "Подключение...", "xloc": [ "default-mobile.handlebars->9->2", - "default-mobile.handlebars->9->272", + "default-mobile.handlebars->9->275", "default-mobile.handlebars->9->6", "default.handlebars->27->193", "default.handlebars->27->196", @@ -4655,7 +4655,7 @@ "pt": "Contagem de conexões", "ru": "Подключений ", "xloc": [ - "default.handlebars->27->1479" + "default.handlebars->27->1482" ] }, { @@ -4669,7 +4669,7 @@ "pt": "Encaminhador de conexão", "ru": "Ретранслятор подключения", "xloc": [ - "default.handlebars->27->1506" + "default.handlebars->27->1509" ] }, { @@ -4711,8 +4711,8 @@ "pt": "Conectividade", "ru": "Связь", "xloc": [ - "default-mobile.handlebars->9->195", - "default.handlebars->27->1207", + "default-mobile.handlebars->9->198", + "default.handlebars->27->1210", "default.handlebars->27->184", "default.handlebars->27->490", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" @@ -4756,7 +4756,7 @@ "pt": "Codificador de cookies", "ru": "Cookie-кодировщик", "xloc": [ - "default.handlebars->27->1493" + "default.handlebars->27->1496" ] }, { @@ -4965,7 +4965,7 @@ "pt": "Servidor Core", "ru": "Основной сервер", "xloc": [ - "default.handlebars->27->1492" + "default.handlebars->27->1495" ] }, { @@ -4978,7 +4978,7 @@ "pt": "Corso", "ru": "Kорсиканский", "xloc": [ - "default.handlebars->27->813" + "default.handlebars->27->816" ] }, { @@ -4992,7 +4992,7 @@ "pt": "Criar conta", "ru": "Создать учетную запись", "xloc": [ - "default.handlebars->27->1307", + "default.handlebars->27->1310", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1" ] @@ -5008,7 +5008,7 @@ "pt": "Criar grupo de dispositivo", "ru": "Создать группу устройств", "xloc": [ - "default-mobile.handlebars->9->61" + "default-mobile.handlebars->9->64" ] }, { @@ -5019,7 +5019,7 @@ "nl": "Maak een gebruikersgroep.", "ru": "Создать группу пользователей", "xloc": [ - "default.handlebars->27->1330" + "default.handlebars->27->1333" ] }, { @@ -5033,7 +5033,7 @@ "pt": "Crie um novo grupo de dispositivos usando as opções abaixo.", "ru": "Создайте новую группу устройств, используя параметры ниже.", "xloc": [ - "default.handlebars->27->1005" + "default.handlebars->27->1008" ] }, { @@ -5061,7 +5061,7 @@ "pt": "Crie várias contas ao mesmo tempo importando um arquivo JSON com o seguinte formato:", "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "xloc": [ - "default.handlebars->27->1278" + "default.handlebars->27->1281" ] }, { @@ -5090,7 +5090,7 @@ "pt": "Criação", "ru": "Создано", "xloc": [ - "default.handlebars->27->1384" + "default.handlebars->27->1387" ] }, { @@ -5116,7 +5116,7 @@ "pt": "Cree", "ru": "Кри (Канадский язык)", "xloc": [ - "default.handlebars->27->814" + "default.handlebars->27->817" ] }, { @@ -5128,7 +5128,7 @@ "pt": "Croata", "ru": "Хорватский", "xloc": [ - "default.handlebars->27->815" + "default.handlebars->27->818" ] }, { @@ -5244,7 +5244,7 @@ "pt": "Tcheco", "ru": "Чешский", "xloc": [ - "default.handlebars->27->816" + "default.handlebars->27->819" ] }, { @@ -5271,7 +5271,7 @@ "pt": "Dinamarquês", "ru": "Датский", "xloc": [ - "default.handlebars->27->817" + "default.handlebars->27->820" ] }, { @@ -5298,7 +5298,7 @@ "pt": "Datas e Horário", "ru": "Дата & Время", "xloc": [ - "default.handlebars->27->973" + "default.handlebars->27->976" ] }, { @@ -5325,7 +5325,7 @@ "pt": "Desativar o modo de controle do cliente (CCM)", "ru": "Деактивировать режим управления клиентом (CCM)", "xloc": [ - "default.handlebars->27->1093" + "default.handlebars->27->1096" ] }, { @@ -5339,7 +5339,7 @@ "pt": "Deep Sleep", "ru": "Глубокий сон", "xloc": [ - "default-mobile.handlebars->9->110", + "default-mobile.handlebars->9->113", "default.handlebars->27->340" ] }, @@ -5354,11 +5354,11 @@ "pt": "Deletar", "ru": "Удалить", "xloc": [ - "default-mobile.handlebars->9->249", - "default-mobile.handlebars->9->81", + "default-mobile.handlebars->9->252", + "default-mobile.handlebars->9->84", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->27->1231", + "default.handlebars->27->1234", "default.handlebars->27->411", "default.handlebars->27->656", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", @@ -5380,8 +5380,8 @@ "pt": "Deletar Conta", "ru": "Удалить учетную запись", "xloc": [ - "default-mobile.handlebars->9->43", - "default.handlebars->27->990" + "default-mobile.handlebars->9->46", + "default.handlebars->27->993" ] }, { @@ -5395,7 +5395,7 @@ "pt": "Excluir dispositivo", "ru": "Удалить устройство", "xloc": [ - "default-mobile.handlebars->9->199", + "default-mobile.handlebars->9->202", "default.handlebars->27->501" ] }, @@ -5410,10 +5410,10 @@ "pt": "Excluir grupo", "ru": "Удалить группу", "xloc": [ - "default-mobile.handlebars->9->285", "default-mobile.handlebars->9->288", - "default.handlebars->27->1086", - "default.handlebars->27->1116" + "default-mobile.handlebars->9->291", + "default.handlebars->27->1089", + "default.handlebars->27->1119" ] }, { @@ -5427,7 +5427,7 @@ "pt": "Excluir nó", "ru": "Удалить устройство", "xloc": [ - "default-mobile.handlebars->9->218", + "default-mobile.handlebars->9->221", "default.handlebars->27->568" ] }, @@ -5453,7 +5453,7 @@ "nl": "Verwijder gebruiker", "ru": "Удалить пользователя", "xloc": [ - "default.handlebars->27->1405" + "default.handlebars->27->1408" ] }, { @@ -5464,8 +5464,8 @@ "nl": "Verwijder de gebruikersgroep", "ru": "Удалить группу пользователей", "xloc": [ - "default.handlebars->27->1355", - "default.handlebars->27->1363" + "default.handlebars->27->1358", + "default.handlebars->27->1366" ] }, { @@ -5479,7 +5479,7 @@ "pt": "Excluir usuário {0}", "ru": "Удалить пользователя {0}", "xloc": [ - "default.handlebars->27->1419" + "default.handlebars->27->1422" ] }, { @@ -5529,9 +5529,9 @@ "pt": "Excluir item selecionado?", "ru": "Удалить выбранные элементы?", "xloc": [ - "default-mobile.handlebars->9->251", - "default-mobile.handlebars->9->83", - "default.handlebars->27->1233", + "default-mobile.handlebars->9->254", + "default-mobile.handlebars->9->86", + "default.handlebars->27->1236", "default.handlebars->27->658" ] }, @@ -5543,7 +5543,7 @@ "nl": "Verwijder gebruikersgroep {0}?", "ru": "Удалить группу пользователей {0}?", "xloc": [ - "default.handlebars->27->1361" + "default.handlebars->27->1364" ] }, { @@ -5557,9 +5557,9 @@ "pt": "Excluir {0} itens selecionados?", "ru": "Удалить {0} выбранных элементов?", "xloc": [ - "default-mobile.handlebars->9->250", - "default-mobile.handlebars->9->82", - "default.handlebars->27->1232", + "default-mobile.handlebars->9->253", + "default-mobile.handlebars->9->85", + "default.handlebars->27->1235", "default.handlebars->27->657" ] }, @@ -5574,7 +5574,7 @@ "pt": "Excluir {0}?", "ru": "Удалить {0}?", "xloc": [ - "default-mobile.handlebars->9->219" + "default-mobile.handlebars->9->222" ] }, { @@ -5638,19 +5638,19 @@ "pt": "Descrição", "ru": "Описание", "xloc": [ - "default-mobile.handlebars->9->141", - "default-mobile.handlebars->9->142", - "default-mobile.handlebars->9->224", - "default-mobile.handlebars->9->277", - "default-mobile.handlebars->9->290", - "default-mobile.handlebars->9->60", - "default.handlebars->27->1010", - "default.handlebars->27->1034", - "default.handlebars->27->1118", - "default.handlebars->27->1329", - "default.handlebars->27->1334", - "default.handlebars->27->1336", - "default.handlebars->27->1359", + "default-mobile.handlebars->9->144", + "default-mobile.handlebars->9->145", + "default-mobile.handlebars->9->227", + "default-mobile.handlebars->9->280", + "default-mobile.handlebars->9->293", + "default-mobile.handlebars->9->63", + "default.handlebars->27->1013", + "default.handlebars->27->1037", + "default.handlebars->27->1121", + "default.handlebars->27->1332", + "default.handlebars->27->1337", + "default.handlebars->27->1339", + "default.handlebars->27->1362", "default.handlebars->27->448", "default.handlebars->27->449", "default.handlebars->27->600", @@ -5680,7 +5680,7 @@ "pt": "Área de Trabalho", "ru": "Рабочий стол", "xloc": [ - "default.handlebars->27->1120", + "default.handlebars->27->1123", "default.handlebars->27->417", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop" @@ -5710,7 +5710,7 @@ "pt": "Notificação na área de trabalho", "ru": "Уведомление на рабочем столе", "xloc": [ - "default.handlebars->27->1044" + "default.handlebars->27->1047" ] }, { @@ -5723,7 +5723,7 @@ "pt": "Prompt da área de trabalho", "ru": "Запрос рабочего стола", "xloc": [ - "default.handlebars->27->1043" + "default.handlebars->27->1046" ] }, { @@ -5736,7 +5736,7 @@ "pt": "Prompt da área de trabalho + barra de ferramentas", "ru": "Запрос рабочего стола + панель инструментов", "xloc": [ - "default.handlebars->27->1041" + "default.handlebars->27->1044" ] }, { @@ -5749,7 +5749,7 @@ "pt": "Barra de ferramentas da área de trabalho", "ru": "Панель инструментов рабочего стола", "xloc": [ - "default.handlebars->27->1042" + "default.handlebars->27->1045" ] }, { @@ -5817,7 +5817,7 @@ "pt": "Ação do dispositivo", "ru": "Управление устройством", "xloc": [ - "default-mobile.handlebars->9->211", + "default-mobile.handlebars->9->214", "default.handlebars->27->541" ] }, @@ -5829,11 +5829,11 @@ "nl": "Apparaat Groep", "ru": "Группа устройства", "xloc": [ - "default.handlebars->27->1137", - "default.handlebars->27->1139", - "default.handlebars->27->1353", - "default.handlebars->27->1427", - "default.handlebars->27->1433" + "default.handlebars->27->1140", + "default.handlebars->27->1142", + "default.handlebars->27->1356", + "default.handlebars->27->1430", + "default.handlebars->27->1436" ] }, { @@ -5847,8 +5847,8 @@ "pt": "Usuário do grupo de dispositivos", "ru": "Пользователь группы устройств", "xloc": [ - "default-mobile.handlebars->9->331", - "default.handlebars->27->1189" + "default-mobile.handlebars->9->334", + "default.handlebars->27->1192" ] }, { @@ -5863,10 +5863,10 @@ "ru": "Группы устройств", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->27->1325", - "default.handlebars->27->1338", - "default.handlebars->27->1393", - "default.handlebars->27->1466", + "default.handlebars->27->1328", + "default.handlebars->27->1341", + "default.handlebars->27->1396", + "default.handlebars->27->1469", "default.handlebars->container->column_l->p2->9" ] }, @@ -5902,7 +5902,7 @@ "pt": "Nome do Dispositivo", "ru": "Имя устройства", "xloc": [ - "default-mobile.handlebars->9->222", + "default-mobile.handlebars->9->225", "default.handlebars->27->220", "default.handlebars->27->598", "player.handlebars->3->9" @@ -5932,7 +5932,7 @@ "pt": "Brinde do dispositivo", "ru": "Уведомление устройства в трее", "xloc": [ - "default-mobile.handlebars->9->204" + "default-mobile.handlebars->9->207" ] }, { @@ -5946,8 +5946,8 @@ "pt": "Conexões de dispositivos.", "ru": "Подключения устройств.", "xloc": [ - "default.handlebars->27->1193", - "default.handlebars->27->978" + "default.handlebars->27->1196", + "default.handlebars->27->981" ] }, { @@ -5961,8 +5961,8 @@ "pt": "Desconexões de dispositivos.", "ru": "Отключения устройств.", "xloc": [ - "default.handlebars->27->1194", - "default.handlebars->27->979" + "default.handlebars->27->1197", + "default.handlebars->27->982" ] }, { @@ -6004,7 +6004,7 @@ "pt": "O dispositivo está hibernando (S4)", "ru": "Устройство находится в режиме гибернации (S4)", "xloc": [ - "default-mobile.handlebars->9->118", + "default-mobile.handlebars->9->121", "default.handlebars->27->351" ] }, @@ -6019,7 +6019,7 @@ "pt": "O dispositivo está no estado de sono profundo (S3)", "ru": "Устройство находится в состоянии глубокого сна (S3)", "xloc": [ - "default-mobile.handlebars->9->117", + "default-mobile.handlebars->9->120", "default.handlebars->27->350" ] }, @@ -6076,7 +6076,7 @@ "pt": "O dispositivo está no estado de suspensão (S1)", "ru": "Устройство находится в спящем режиме (S1)", "xloc": [ - "default-mobile.handlebars->9->115", + "default-mobile.handlebars->9->118", "default.handlebars->27->348" ] }, @@ -6105,7 +6105,7 @@ "pt": "O dispositivo está no estado de suspensão (S2)", "ru": "Устройство находится в спящем режиме (S2)", "xloc": [ - "default-mobile.handlebars->9->116", + "default-mobile.handlebars->9->119", "default.handlebars->27->349" ] }, @@ -6133,7 +6133,7 @@ "pt": "O dispositivo está no estado soft-off (S5)", "ru": "Устройство находится в выключенном состоянии (S5)", "xloc": [ - "default-mobile.handlebars->9->119", + "default-mobile.handlebars->9->122", "default.handlebars->27->352" ] }, @@ -6148,7 +6148,7 @@ "pt": "O dispositivo está ligado", "ru": "Устройство включено", "xloc": [ - "default-mobile.handlebars->9->114", + "default-mobile.handlebars->9->117", "default.handlebars->27->347" ] }, @@ -6177,7 +6177,7 @@ "pt": "O dispositivo está presente, mas o estado de energia não pode ser determinado", "ru": "Устройство присутствует, но состояние питания не может быть определено", "xloc": [ - "default-mobile.handlebars->9->120", + "default-mobile.handlebars->9->123", "default.handlebars->27->353" ] }, @@ -6233,9 +6233,9 @@ "pt": "Desconectar", "ru": "Разъединить", "xloc": [ - "default-mobile.handlebars->9->237", + "default-mobile.handlebars->9->240", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->27->1054", + "default.handlebars->27->1057", "default.handlebars->27->647", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", @@ -6303,7 +6303,7 @@ "nl": "Toon apparaatgroepsnaam", "ru": "Отобразить имя группы устройств", "xloc": [ - "default.handlebars->27->977" + "default.handlebars->27->980" ] }, { @@ -6331,7 +6331,7 @@ "pt": "Fazer nada", "ru": "Ничего не делать", "xloc": [ - "default.handlebars->27->1099" + "default.handlebars->27->1102" ] }, { @@ -6360,8 +6360,8 @@ "pt": "Não configure", "ru": "Не настраивать", "xloc": [ - "default.handlebars->27->1103", - "default.handlebars->27->1108" + "default.handlebars->27->1106", + "default.handlebars->27->1111" ] }, { @@ -6375,7 +6375,7 @@ "pt": "Não conecte ao servidor", "ru": "Не подключаться к серверу", "xloc": [ - "default.handlebars->27->1104" + "default.handlebars->27->1107" ] }, { @@ -6419,7 +6419,7 @@ "pt": "⇬ Fazer download do arquivo", "ru": "Скачать файл", "xloc": [ - "default-mobile.handlebars->9->270", + "default-mobile.handlebars->9->273", "default.handlebars->27->676" ] }, @@ -6587,7 +6587,7 @@ "pt": "Faça o download da lista de eventos com um dos formatos de arquivo abaixo.", "ru": "Скачать список событий в одном из форматов ниже.", "xloc": [ - "default.handlebars->27->1247" + "default.handlebars->27->1250" ] }, { @@ -6601,7 +6601,7 @@ "pt": "Baixe a lista de usuários com um dos formatos de arquivo abaixo.", "ru": "Скачать список пользователей в одном из форматов ниже.", "xloc": [ - "default.handlebars->27->1286" + "default.handlebars->27->1289" ] }, { @@ -6669,7 +6669,7 @@ "nl": "Duplicaat Agent", "ru": "Скопировать агент", "xloc": [ - "default.handlebars->27->1462" + "default.handlebars->27->1465" ] }, { @@ -6691,7 +6691,7 @@ "nl": "Dupliceer Gebruikers Groep", "ru": "Скопировать группу пользователей", "xloc": [ - "default.handlebars->27->1331" + "default.handlebars->27->1334" ] }, { @@ -6719,7 +6719,7 @@ "pt": "Durante a ativação, o agente terá acesso às informações da senha do administrador.", "ru": "Во время активации агент будет иметь доступ к паролю администратора.", "xloc": [ - "default.handlebars->27->1113" + "default.handlebars->27->1116" ] }, { @@ -6732,7 +6732,7 @@ "pt": "Holandês (belga)", "ru": "Голландский (Бельгийский)", "xloc": [ - "default.handlebars->27->819" + "default.handlebars->27->822" ] }, { @@ -6745,7 +6745,7 @@ "pt": "Holandês (padrão)", "ru": "Голландский (Стандартный)", "xloc": [ - "default.handlebars->27->818" + "default.handlebars->27->821" ] }, { @@ -6816,7 +6816,7 @@ "pt": "Editar dispositivo", "ru": "Редактировать устройство", "xloc": [ - "default-mobile.handlebars->9->227", + "default-mobile.handlebars->9->230", "default.handlebars->27->603" ] }, @@ -6831,12 +6831,12 @@ "pt": "Editar grupo de dispositivos", "ru": "Редактировать группу устройств", "xloc": [ - "default-mobile.handlebars->9->291", - "default-mobile.handlebars->9->293", - "default-mobile.handlebars->9->311", - "default.handlebars->27->1119", - "default.handlebars->27->1143", - "default.handlebars->27->1167" + "default-mobile.handlebars->9->294", + "default-mobile.handlebars->9->296", + "default-mobile.handlebars->9->314", + "default.handlebars->27->1122", + "default.handlebars->27->1146", + "default.handlebars->27->1170" ] }, { @@ -6850,7 +6850,7 @@ "pt": "Editar recursos do grupo de dispositivos", "ru": "Редактировать функции группы устройств", "xloc": [ - "default.handlebars->27->1133" + "default.handlebars->27->1136" ] }, { @@ -6861,7 +6861,7 @@ "nl": "Bewerk apparaatgroep rechten", "ru": "Редактировать права группы устройств", "xloc": [ - "default.handlebars->27->1164" + "default.handlebars->27->1167" ] }, { @@ -6874,7 +6874,7 @@ "pt": "Editar consentimento do usuário do grupo de dispositivos", "ru": "Редактировать согласие пользователя группы устройств", "xloc": [ - "default.handlebars->27->1130" + "default.handlebars->27->1133" ] }, { @@ -6888,8 +6888,8 @@ "pt": "Editar notas do dispositivo", "ru": "Редактировать примечания устройства", "xloc": [ - "default-mobile.handlebars->9->305", - "default.handlebars->27->1156" + "default-mobile.handlebars->9->308", + "default.handlebars->27->1159" ] }, { @@ -6902,7 +6902,7 @@ "pt": "Editar Intel & reg; Credenciais AMT", "ru": "Редактировать учетные данные Intel® AMT", "xloc": [ - "default-mobile.handlebars->9->217", + "default-mobile.handlebars->9->220", "default.handlebars->27->463", "default.handlebars->27->466", "default.handlebars->27->550" @@ -6919,8 +6919,8 @@ "pt": "Editar notas", "ru": "Редактировать примечания", "xloc": [ - "default-mobile.handlebars->9->318", - "default.handlebars->27->1174" + "default-mobile.handlebars->9->321", + "default.handlebars->27->1177" ] }, { @@ -6933,7 +6933,7 @@ "pt": "Editar permissões do grupo de dispositivos do usuário", "ru": "Редактировать права пользователя для группы устройств", "xloc": [ - "default.handlebars->27->1165" + "default.handlebars->27->1168" ] }, { @@ -6944,7 +6944,7 @@ "nl": "Bewerk de gebruikersgroep", "ru": "Редактировать группу пользователей", "xloc": [ - "default.handlebars->27->1360" + "default.handlebars->27->1363" ] }, { @@ -6970,12 +6970,14 @@ "pt": "Email", "ru": "Email", "xloc": [ - "default-mobile.handlebars->9->37", - "default.handlebars->27->1298", - "default.handlebars->27->1380", - "default.handlebars->27->1381", - "default.handlebars->27->1409", - "default.handlebars->27->266" + "default-mobile.handlebars->9->40", + "default.handlebars->27->1301", + "default.handlebars->27->1383", + "default.handlebars->27->1384", + "default.handlebars->27->1412", + "default.handlebars->27->266", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", + "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3" ] }, { @@ -6989,8 +6991,15 @@ "pt": "Alteração de endereço de email", "ru": "Изменение адреса email", "xloc": [ - "default-mobile.handlebars->9->38", - "default.handlebars->27->986" + "default-mobile.handlebars->9->41", + "default.handlebars->27->989" + ] + }, + { + "en": "Email Authentication", + "xloc": [ + "default-mobile.handlebars->9->30", + "default.handlebars->27->759" ] }, { @@ -7004,8 +7013,8 @@ "pt": "verificação de e-mail", "ru": "Подтверждение email", "xloc": [ - "default-mobile.handlebars->9->36", - "default.handlebars->27->984" + "default-mobile.handlebars->9->39", + "default.handlebars->27->987" ] }, { @@ -7019,7 +7028,7 @@ "pt": "O email foi verificado", "ru": "Email подтвержден", "xloc": [ - "default.handlebars->27->1377" + "default.handlebars->27->1380" ] }, { @@ -7033,7 +7042,7 @@ "pt": "O email foi verificado.", "ru": "Email подтвержден.", "xloc": [ - "default.handlebars->27->1304" + "default.handlebars->27->1307" ] }, { @@ -7047,7 +7056,14 @@ "pt": "Email não verificado", "ru": "Email не подтвержден", "xloc": [ - "default.handlebars->27->1378" + "default.handlebars->27->1381" + ] + }, + { + "en": "Email sent.", + "xloc": [ + "login-mobile.handlebars->5->2", + "login.handlebars->5->2" ] }, { @@ -7060,10 +7076,10 @@ "pt": "Email:", "ru": "Email:", "xloc": [ - "login-mobile.handlebars->5->17", + "login-mobile.handlebars->5->18", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->2->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->7->1->0->1", - "login.handlebars->5->17", + "login.handlebars->5->18", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->2->nuEmail", "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->7->1->0->1" ] @@ -7082,6 +7098,13 @@ "messenger.handlebars->xtop->1" ] }, + { + "en": "Enable email two-factor authenticaiton.", + "xloc": [ + "default-mobile.handlebars->9->32", + "default.handlebars->27->761" + ] + }, { "cs": "Zapnout upozorňování z webu v prohlížeči", "de": "Web-Benachrichtigungen aktivieren", @@ -7121,7 +7144,7 @@ "pt": "Inglês", "ru": "Английский", "xloc": [ - "default.handlebars->27->820" + "default.handlebars->27->823" ] }, { @@ -7134,7 +7157,7 @@ "pt": "Inglês (Austrália)", "ru": "Английский (Австралия)", "xloc": [ - "default.handlebars->27->821" + "default.handlebars->27->824" ] }, { @@ -7147,7 +7170,7 @@ "pt": "Inglês (Belize)", "ru": "Английский (Белиз)", "xloc": [ - "default.handlebars->27->822" + "default.handlebars->27->825" ] }, { @@ -7160,7 +7183,7 @@ "pt": "Inglês (Canadá)", "ru": "Английский (Канада)", "xloc": [ - "default.handlebars->27->823" + "default.handlebars->27->826" ] }, { @@ -7173,7 +7196,7 @@ "pt": "Inglês (Irlanda)", "ru": "Английский (Ирландия)", "xloc": [ - "default.handlebars->27->824" + "default.handlebars->27->827" ] }, { @@ -7186,7 +7209,7 @@ "pt": "Inglês (Jamaica)", "ru": "Английский (Ямайка)", "xloc": [ - "default.handlebars->27->825" + "default.handlebars->27->828" ] }, { @@ -7199,7 +7222,7 @@ "pt": "Inglês (Nova Zelândia)", "ru": "Английский (Новая Зеландия)", "xloc": [ - "default.handlebars->27->826" + "default.handlebars->27->829" ] }, { @@ -7212,7 +7235,7 @@ "pt": "Inglês (Filipinas)", "ru": "Английский (Филиппины)", "xloc": [ - "default.handlebars->27->827" + "default.handlebars->27->830" ] }, { @@ -7225,7 +7248,7 @@ "pt": "Inglês (África do Sul)", "ru": "Английский (Южная Африка)", "xloc": [ - "default.handlebars->27->828" + "default.handlebars->27->831" ] }, { @@ -7237,7 +7260,7 @@ "pt": "Inglês (Trinidad Tobago)", "ru": "Английский (Тринидад и Тобаго)", "xloc": [ - "default.handlebars->27->829" + "default.handlebars->27->832" ] }, { @@ -7250,7 +7273,7 @@ "pt": "Inglês (Reino Unido)", "ru": "Английский (Великобритания)", "xloc": [ - "default.handlebars->27->830" + "default.handlebars->27->833" ] }, { @@ -7263,7 +7286,7 @@ "pt": "Inglês (Estados Unidos)", "ru": "Английский (Соединенные Штаты)", "xloc": [ - "default.handlebars->27->831" + "default.handlebars->27->834" ] }, { @@ -7276,7 +7299,7 @@ "pt": "Inglês (Zimbábue)", "ru": "Английский (Зимбабве)", "xloc": [ - "default.handlebars->27->832" + "default.handlebars->27->835" ] }, { @@ -7289,8 +7312,8 @@ "pt": "Entrar", "ru": "Ввод", "xloc": [ - "default.handlebars->27->1012", - "default.handlebars->27->1013" + "default.handlebars->27->1015", + "default.handlebars->27->1016" ] }, { @@ -7304,7 +7327,7 @@ "pt": "Insira uma lista separada por vírgulas de nomes de regiões administrativas.", "ru": "Введите разделенный запятыми список имен административных областей.", "xloc": [ - "default.handlebars->27->1308" + "default.handlebars->27->1311" ] }, { @@ -7401,7 +7424,7 @@ "pt": "Esperanto", "ru": "Эсперанто", "xloc": [ - "default.handlebars->27->833" + "default.handlebars->27->836" ] }, { @@ -7414,7 +7437,7 @@ "pt": "Estoniano", "ru": "Эстонский", "xloc": [ - "default.handlebars->27->834" + "default.handlebars->27->837" ] }, { @@ -7442,7 +7465,7 @@ "pt": "Exportação da lista de eventos", "ru": "Экспорт списка событий", "xloc": [ - "default.handlebars->27->1252" + "default.handlebars->27->1255" ] }, { @@ -7486,8 +7509,8 @@ "nl": "Bestaand account met dit e-mailadres.", "ru": "Существующий аккаунт с этим адресом email.", "xloc": [ - "login-mobile.handlebars->5->4", - "login.handlebars->5->4" + "login-mobile.handlebars->5->5", + "login.handlebars->5->5" ] }, { @@ -7533,7 +7556,7 @@ "nl": "Extern", "ru": "Внешний", "xloc": [ - "default.handlebars->27->1486" + "default.handlebars->27->1489" ] }, { @@ -7546,7 +7569,7 @@ "pt": "FYRO Macedonian", "ru": "Mакедонский (БЮР)", "xloc": [ - "default.handlebars->27->884" + "default.handlebars->27->887" ] }, { @@ -7559,7 +7582,7 @@ "pt": "O servidor remoto retornou um erro: (429) Too Many Requests.", "ru": "Фарерский", "xloc": [ - "default.handlebars->27->835" + "default.handlebars->27->838" ] }, { @@ -7586,7 +7609,7 @@ "pt": "Persa (persa)", "ru": "Фарси (Персидский)", "xloc": [ - "default.handlebars->27->836" + "default.handlebars->27->839" ] }, { @@ -7615,7 +7638,7 @@ "pt": "Recursos", "ru": "Функции", "xloc": [ - "default.handlebars->27->1040" + "default.handlebars->27->1043" ] }, { @@ -7628,7 +7651,7 @@ "pt": "Fijiano", "ru": "Фиджи", "xloc": [ - "default.handlebars->27->837" + "default.handlebars->27->840" ] }, { @@ -7642,7 +7665,7 @@ "pt": "Editor de Arquivos", "ru": "Редактор файлов", "xloc": [ - "default-mobile.handlebars->9->254", + "default-mobile.handlebars->9->257", "default.handlebars->27->409", "default.handlebars->27->661" ] @@ -7685,7 +7708,7 @@ "pt": "Arquivos", "ru": "Файлы", "xloc": [ - "default.handlebars->27->1127", + "default.handlebars->27->1130", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" ] @@ -7715,7 +7738,7 @@ "pt": "Notificação arquivos", "ru": "Уведомление файлов", "xloc": [ - "default.handlebars->27->1048" + "default.handlebars->27->1051" ] }, { @@ -7728,7 +7751,7 @@ "pt": "Arquivos do prompt", "ru": "Запрос файлов", "xloc": [ - "default.handlebars->27->1047" + "default.handlebars->27->1050" ] }, { @@ -7757,7 +7780,7 @@ "pt": "Finlandês", "ru": "Финский", "xloc": [ - "default.handlebars->27->838" + "default.handlebars->27->841" ] }, { @@ -7817,8 +7840,8 @@ "pt": "Forçar redefinição de senha no próximo login.", "ru": "Принудительно сбросить пароль при следующем входе в систему.", "xloc": [ - "default.handlebars->27->1302", - "default.handlebars->27->1416" + "default.handlebars->27->1305", + "default.handlebars->27->1419" ] }, { @@ -7832,8 +7855,8 @@ "pt": "Esqueceu a senha?", "ru": "Забыли пароль?", "xloc": [ - "login-mobile.handlebars->5->18", - "login.handlebars->5->18" + "login-mobile.handlebars->5->19", + "login.handlebars->5->19" ] }, { @@ -7888,8 +7911,8 @@ "pt": "Livre", "ru": "Свободно", "xloc": [ - "default.handlebars->27->1447", - "default.handlebars->27->1449" + "default.handlebars->27->1450", + "default.handlebars->27->1452" ] }, { @@ -7903,7 +7926,7 @@ "pt": "FreeBSD x86-64", "ru": "FreeBSD x86-64", "xloc": [ - "default-mobile.handlebars->9->173", + "default-mobile.handlebars->9->176", "default.handlebars->27->43" ] }, @@ -7917,7 +7940,7 @@ "pt": "Francês (Bélgica)", "ru": "Французский (Бельгия)", "xloc": [ - "default.handlebars->27->840" + "default.handlebars->27->843" ] }, { @@ -7930,7 +7953,7 @@ "pt": "Francês (Canadá)", "ru": "Французский (Канада)", "xloc": [ - "default.handlebars->27->841" + "default.handlebars->27->844" ] }, { @@ -7943,7 +7966,7 @@ "pt": "Francês (França)", "ru": "Французский (Франция)", "xloc": [ - "default.handlebars->27->842" + "default.handlebars->27->845" ] }, { @@ -7956,7 +7979,7 @@ "pt": "Francês (Luxemburgo)", "ru": "Французский (Люксембург)", "xloc": [ - "default.handlebars->27->843" + "default.handlebars->27->846" ] }, { @@ -7969,7 +7992,7 @@ "pt": "Francês (Mônaco)", "ru": "Французский (Монако)", "xloc": [ - "default.handlebars->27->844" + "default.handlebars->27->847" ] }, { @@ -7982,7 +8005,7 @@ "pt": "Francês (Padrão)", "ru": "Французский (Стандартный)", "xloc": [ - "default.handlebars->27->839" + "default.handlebars->27->842" ] }, { @@ -7995,7 +8018,7 @@ "pt": "Francês (Suíça)", "ru": "Французский (Швейцария)", "xloc": [ - "default.handlebars->27->845" + "default.handlebars->27->848" ] }, { @@ -8008,7 +8031,7 @@ "pt": "Frísio", "ru": "Фризский", "xloc": [ - "default.handlebars->27->846" + "default.handlebars->27->849" ] }, { @@ -8021,7 +8044,7 @@ "pt": "Friuliano", "ru": "Фриульский", "xloc": [ - "default.handlebars->27->847" + "default.handlebars->27->850" ] }, { @@ -8035,13 +8058,13 @@ "pt": "Administrador completo", "ru": "Администратор с полным доступом", "xloc": [ - "default-mobile.handlebars->9->283", - "default-mobile.handlebars->9->292", - "default-mobile.handlebars->9->310", - "default-mobile.handlebars->9->64", - "default.handlebars->27->1019", - "default.handlebars->27->1142", - "default.handlebars->27->1313" + "default-mobile.handlebars->9->286", + "default-mobile.handlebars->9->295", + "default-mobile.handlebars->9->313", + "default-mobile.handlebars->9->67", + "default.handlebars->27->1022", + "default.handlebars->27->1145", + "default.handlebars->27->1316" ] }, { @@ -8055,7 +8078,7 @@ "pt": "Administrador Pleno (todos os direitos)", "ru": "Администратор с полным доступом (все права)", "xloc": [ - "default.handlebars->27->1166" + "default.handlebars->27->1169" ] }, { @@ -8066,9 +8089,9 @@ "nl": "Volledige apparaatgroep beheerder", "ru": "Администратор группы устройств с полным доступом", "xloc": [ - "default.handlebars->27->1082", - "default.handlebars->27->1350", - "default.handlebars->27->1424" + "default.handlebars->27->1085", + "default.handlebars->27->1353", + "default.handlebars->27->1427" ] }, { @@ -8098,7 +8121,7 @@ "pt": "Administrador completo", "ru": "Администратор с полным доступом", "xloc": [ - "default.handlebars->27->1373" + "default.handlebars->27->1376" ] }, { @@ -8111,7 +8134,7 @@ "pt": "Gaélico (irlandês)", "ru": "Гэльский (Ирландский)", "xloc": [ - "default.handlebars->27->849" + "default.handlebars->27->852" ] }, { @@ -8124,7 +8147,7 @@ "pt": "Gaélico (escocês)", "ru": "Гэльский (Шотландия)", "xloc": [ - "default.handlebars->27->848" + "default.handlebars->27->851" ] }, { @@ -8137,7 +8160,7 @@ "pt": "Galego", "ru": "Галицкий", "xloc": [ - "default.handlebars->27->850" + "default.handlebars->27->853" ] }, { @@ -8225,7 +8248,7 @@ "pt": "Georgiano", "ru": "Грузинский", "xloc": [ - "default.handlebars->27->851" + "default.handlebars->27->854" ] }, { @@ -8238,7 +8261,7 @@ "pt": "Alemão (Áustria)", "ru": "Немецкий (Австрия)", "xloc": [ - "default.handlebars->27->853" + "default.handlebars->27->856" ] }, { @@ -8251,7 +8274,7 @@ "pt": "Alemão (Alemanha)", "ru": "Немецкий (Германия)", "xloc": [ - "default.handlebars->27->854" + "default.handlebars->27->857" ] }, { @@ -8264,7 +8287,7 @@ "pt": "Alemão (Liechtenstein)", "ru": "Немецкий (Лихтенштейн)", "xloc": [ - "default.handlebars->27->855" + "default.handlebars->27->858" ] }, { @@ -8277,7 +8300,7 @@ "pt": "Alemão (Luxemburgo)", "ru": "Немецкий (Люксембург)", "xloc": [ - "default.handlebars->27->856" + "default.handlebars->27->859" ] }, { @@ -8290,7 +8313,7 @@ "pt": "Alemão (Padrão)", "ru": "Немецкий (Стандартный)", "xloc": [ - "default.handlebars->27->852" + "default.handlebars->27->855" ] }, { @@ -8303,7 +8326,7 @@ "pt": "Alemão (Suíça)", "ru": "Немецкий (Швейцария)", "xloc": [ - "default.handlebars->27->857" + "default.handlebars->27->860" ] }, { @@ -8361,7 +8384,7 @@ "pt": "Bom", "ru": "Хорошо", "xloc": [ - "default.handlebars->27->1015" + "default.handlebars->27->1018" ] }, { @@ -8375,10 +8398,10 @@ "pt": "Boa senha", "ru": "Хороший пароль", "xloc": [ - "login-mobile.handlebars->5->21", - "login-mobile.handlebars->5->25", - "login.handlebars->5->21", - "login.handlebars->5->25" + "login-mobile.handlebars->5->24", + "login-mobile.handlebars->5->28", + "login.handlebars->5->24", + "login.handlebars->5->28" ] }, { @@ -8391,7 +8414,7 @@ "pt": "Grego", "ru": "Греческий", "xloc": [ - "default.handlebars->27->858" + "default.handlebars->27->861" ] }, { @@ -8405,7 +8428,7 @@ "pt": "Grupo", "ru": "Группа", "xloc": [ - "default-mobile.handlebars->9->134", + "default-mobile.handlebars->9->137", "default.handlebars->27->441", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] @@ -8433,7 +8456,7 @@ "nl": "Groeps leden", "ru": "Члены группы", "xloc": [ - "default.handlebars->27->1342" + "default.handlebars->27->1345" ] }, { @@ -8447,7 +8470,7 @@ "pt": "Permissões de grupo para o usuário {0}.", "ru": "Права на группу для пользователя {0}.", "xloc": [ - "default.handlebars->27->1141" + "default.handlebars->27->1144" ] }, { @@ -8458,7 +8481,7 @@ "nl": "Groepsrechten voor {0}.", "ru": "Права на группу для {0}.", "xloc": [ - "default.handlebars->27->1140" + "default.handlebars->27->1143" ] }, { @@ -8472,7 +8495,7 @@ "pt": "Grupo1, Grupo2, Grupo3", "ru": "Группа1, Группа2, Группа3", "xloc": [ - "default-mobile.handlebars->9->226" + "default-mobile.handlebars->9->229" ] }, { @@ -8483,7 +8506,7 @@ "nl": "Groepen", "ru": "Группы", "xloc": [ - "default.handlebars->27->1257", + "default.handlebars->27->1260", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups" ] }, @@ -8497,7 +8520,7 @@ "pt": "Gujarati", "ru": "Гуджарати", "xloc": [ - "default.handlebars->27->859" + "default.handlebars->27->862" ] }, { @@ -8526,7 +8549,7 @@ "pt": "Haitiano", "ru": "Гаитянский", "xloc": [ - "default.handlebars->27->860" + "default.handlebars->27->863" ] }, { @@ -8564,7 +8587,7 @@ "es": "Heap Total", "nl": "Heap Totaal", "xloc": [ - "default.handlebars->27->1488" + "default.handlebars->27->1491" ] }, { @@ -8574,7 +8597,7 @@ "es": "Heap Used", "nl": "Heap gebruikt", "xloc": [ - "default.handlebars->27->1487" + "default.handlebars->27->1490" ] }, { @@ -8588,7 +8611,7 @@ "pt": "Hebraico", "ru": "Иврит", "xloc": [ - "default.handlebars->27->861" + "default.handlebars->27->864" ] }, { @@ -8601,7 +8624,7 @@ "nl": "Help bij het vertalen van MeshCentral", "ru": "Помочь перевести MeshCentral", "xloc": [ - "default.handlebars->27->974" + "default.handlebars->27->977" ] }, { @@ -8615,8 +8638,8 @@ "pt": "Hibernando", "ru": "Гибернация", "xloc": [ - "default-mobile.handlebars->9->104", - "default-mobile.handlebars->9->111", + "default-mobile.handlebars->9->107", + "default-mobile.handlebars->9->114", "default.handlebars->27->342", "default.handlebars->27->5" ] @@ -8631,7 +8654,7 @@ "pt": "Hindi", "ru": "Хинди", "xloc": [ - "default.handlebars->27->862" + "default.handlebars->27->865" ] }, { @@ -8658,7 +8681,7 @@ "pt": "Mantendo 1 entrada para cópia", "ru": "Задержана 1 запись для копирования", "xloc": [ - "default-mobile.handlebars->9->263", + "default-mobile.handlebars->9->266", "default.handlebars->27->670" ] }, @@ -8672,7 +8695,7 @@ "pt": "Segurando 1 entrada para mover", "ru": "Задержана 1 запись для перемещения", "xloc": [ - "default-mobile.handlebars->9->267", + "default-mobile.handlebars->9->270", "default.handlebars->27->674" ] }, @@ -8686,7 +8709,7 @@ "pt": "Mantendo {0} entradas para cópia", "ru": "Задержано {0} записей для копирования", "xloc": [ - "default-mobile.handlebars->9->261", + "default-mobile.handlebars->9->264", "default.handlebars->27->668" ] }, @@ -8700,7 +8723,7 @@ "pt": "Manter {0} entradas para mover", "ru": "Задержано {0} записей для перемещения", "xloc": [ - "default-mobile.handlebars->9->265", + "default-mobile.handlebars->9->268", "default.handlebars->27->672" ] }, @@ -8714,8 +8737,8 @@ "pt": "Mantendo {0} entrada {1} para {2}", "ru": "Задержано {0} записей для {2}", "xloc": [ - "default-mobile.handlebars->9->88", - "default.handlebars->27->1239" + "default-mobile.handlebars->9->91", + "default.handlebars->27->1242" ] }, { @@ -8729,10 +8752,10 @@ "pt": "Hostname", "ru": "Имя хоста", "xloc": [ - "default-mobile.handlebars->9->136", - "default-mobile.handlebars->9->137", "default-mobile.handlebars->9->139", - "default-mobile.handlebars->9->223", + "default-mobile.handlebars->9->140", + "default-mobile.handlebars->9->142", + "default-mobile.handlebars->9->226", "default.handlebars->27->221", "default.handlebars->27->443", "default.handlebars->27->444", @@ -8750,7 +8773,7 @@ "pt": "Sincronização de nome de host", "ru": "Синхронизация имени хоста", "xloc": [ - "default.handlebars->27->1038" + "default.handlebars->27->1041" ] }, { @@ -8763,7 +8786,7 @@ "pt": "Húngaro", "ru": "Венгерский", "xloc": [ - "default.handlebars->27->863" + "default.handlebars->27->866" ] }, { @@ -8790,8 +8813,8 @@ "nl": "IP-adres geblokkeerd, probeer het later opnieuw.", "ru": "IP адрес заблокирован, повторите попытку позже.", "xloc": [ - "login-mobile.handlebars->5->16", - "login.handlebars->5->16" + "login-mobile.handlebars->5->17", + "login.handlebars->5->17" ] }, { @@ -8874,7 +8897,7 @@ "pt": "islandês", "ru": "Исландский", "xloc": [ - "default.handlebars->27->864" + "default.handlebars->27->867" ] }, { @@ -8888,7 +8911,7 @@ "pt": "Seleção de ícone", "ru": "Выбор иконки", "xloc": [ - "default-mobile.handlebars->9->221", + "default-mobile.handlebars->9->224", "default.handlebars->27->597" ] }, @@ -8940,7 +8963,7 @@ "pt": "Indonésia", "ru": "Индонезийский", "xloc": [ - "default.handlebars->27->865" + "default.handlebars->27->868" ] }, { @@ -8997,7 +9020,7 @@ "pt": "Instalar", "ru": "Установка", "xloc": [ - "default.handlebars->27->1077" + "default.handlebars->27->1080" ] }, { @@ -9035,7 +9058,7 @@ "pt": "Instalar CIRA", "ru": "Установка CIRA", "xloc": [ - "default.handlebars->27->1069" + "default.handlebars->27->1072" ] }, { @@ -9049,7 +9072,7 @@ "pt": "Instalação local", "ru": "Локальная установка", "xloc": [ - "default.handlebars->27->1071" + "default.handlebars->27->1074" ] }, { @@ -9092,10 +9115,10 @@ "pt": "Intel AMT", "ru": "Intel AMT", "xloc": [ - "default.handlebars->27->1199", - "default.handlebars->27->1205", - "default.handlebars->27->1484", - "default.handlebars->27->1505" + "default.handlebars->27->1202", + "default.handlebars->27->1208", + "default.handlebars->27->1487", + "default.handlebars->27->1508" ] }, { @@ -9231,11 +9254,11 @@ "pt": "Intel® AMT", "ru": "Intel® AMT", "xloc": [ - "default-mobile.handlebars->9->123", - "default-mobile.handlebars->9->187", - "default-mobile.handlebars->9->192", - "default.handlebars->27->1055", - "default.handlebars->27->1063", + "default-mobile.handlebars->9->126", + "default-mobile.handlebars->9->190", + "default-mobile.handlebars->9->195", + "default.handlebars->27->1058", + "default.handlebars->27->1066", "default.handlebars->27->419", "default.handlebars->27->469", "default.handlebars->27->485" @@ -9252,7 +9275,7 @@ "pt": "Intel® AMT CIRA", "ru": "Intel® AMT CIRA", "xloc": [ - "default-mobile.handlebars->9->191", + "default-mobile.handlebars->9->194", "default.handlebars->27->483" ] }, @@ -9298,7 +9321,7 @@ "pt": "Intel® Política da AMT", "ru": "Политика Intel® AMT", "xloc": [ - "default.handlebars->27->1095" + "default.handlebars->27->1098" ] }, { @@ -9366,7 +9389,7 @@ "pt": "Intel® AMT conectado", "ru": "Intel® AMT подключен", "xloc": [ - "default-mobile.handlebars->9->201", + "default-mobile.handlebars->9->204", "default.handlebars->27->520", "default.handlebars->27->521" ] @@ -9381,8 +9404,8 @@ "pt": "Intel® Área de trabalho AMT e eventos seriais.", "ru": "События Intel® AMT desktop или serial.", "xloc": [ - "default.handlebars->27->1195", - "default.handlebars->27->980" + "default.handlebars->27->1198", + "default.handlebars->27->983" ] }, { @@ -9396,7 +9419,7 @@ "pt": "Intel® AMT detectado", "ru": "Intel® AMT обнаружен", "xloc": [ - "default-mobile.handlebars->9->202", + "default-mobile.handlebars->9->205", "default.handlebars->27->522", "default.handlebars->27->523" ] @@ -9438,7 +9461,7 @@ "pt": "Intel® Apenas AMT", "ru": "Только Intel® AMT", "xloc": [ - "default-mobile.handlebars->9->59" + "default-mobile.handlebars->9->62" ] }, { @@ -9451,9 +9474,9 @@ "pt": "Intel® Apenas AMT, nenhum agente", "ru": "Только Intel® AMT, без агента", "xloc": [ - "default-mobile.handlebars->9->274", - "default.handlebars->27->1009", - "default.handlebars->27->1031" + "default-mobile.handlebars->9->277", + "default.handlebars->27->1012", + "default.handlebars->27->1034" ] }, { @@ -9493,7 +9516,7 @@ "pt": "Intel® ME", "ru": "Intel® ME", "xloc": [ - "default-mobile.handlebars->9->186", + "default-mobile.handlebars->9->189", "default.handlebars->27->467" ] }, @@ -9508,7 +9531,7 @@ "pt": "Intel® SM", "ru": "Intel® SM", "xloc": [ - "default-mobile.handlebars->9->188", + "default-mobile.handlebars->9->191", "default.handlebars->27->471" ] }, @@ -9644,7 +9667,7 @@ "pt": "Inuktitut", "ru": "Инуктитут", "xloc": [ - "default.handlebars->27->866" + "default.handlebars->27->869" ] }, { @@ -9655,7 +9678,7 @@ "nl": "Ongeldige apparaatgroep type", "ru": "Некорректный тип группы устройств", "xloc": [ - "default.handlebars->27->1461" + "default.handlebars->27->1464" ] }, { @@ -9666,7 +9689,7 @@ "nl": "Onjuiste JSON", "ru": "Некорректный JSON", "xloc": [ - "default.handlebars->27->1455" + "default.handlebars->27->1458" ] }, { @@ -9680,8 +9703,8 @@ "pt": "Formato de arquivo JSON inválido.", "ru": "Некорректный формат файла JSON.", "xloc": [ - "default.handlebars->27->1283", - "default.handlebars->27->1285" + "default.handlebars->27->1286", + "default.handlebars->27->1288" ] }, { @@ -9695,7 +9718,7 @@ "pt": "Arquivo JSON inválido: {0}.", "ru": "Некорректный файл JSON: {0}.", "xloc": [ - "default.handlebars->27->1281" + "default.handlebars->27->1284" ] }, { @@ -9706,7 +9729,7 @@ "nl": "Onjuiste PKCS handtekening", "ru": "Некорректная сигнатура PKCS", "xloc": [ - "default.handlebars->27->1453" + "default.handlebars->27->1456" ] }, { @@ -9717,7 +9740,7 @@ "nl": "Ongeldige RSA handtekening", "ru": "Некорректная сигнатура RSA", "xloc": [ - "default.handlebars->27->1454" + "default.handlebars->27->1457" ] }, { @@ -9730,8 +9753,8 @@ "nl": "Ongeldig token voor het maken van een account.", "ru": "Некорректный токен создания учетной записи.", "xloc": [ - "login-mobile.handlebars->5->5", - "login.handlebars->5->5" + "login-mobile.handlebars->5->6", + "login.handlebars->5->6" ] }, { @@ -9744,8 +9767,8 @@ "nl": "Ongeldige e-mail.", "ru": "Некорректный email.", "xloc": [ - "login-mobile.handlebars->5->8", - "login.handlebars->5->8" + "login-mobile.handlebars->5->9", + "login.handlebars->5->9" ] }, { @@ -9758,8 +9781,8 @@ "nl": "Ongeldig token, probeer het opnieuw.", "ru": "Некорректный токен, попробуйте еще.", "xloc": [ - "login-mobile.handlebars->5->10", - "login.handlebars->5->10" + "login-mobile.handlebars->5->11", + "login.handlebars->5->11" ] }, { @@ -9801,7 +9824,7 @@ "pt": "Convite", "ru": "Пригласить", "xloc": [ - "default.handlebars->27->1079", + "default.handlebars->27->1082", "default.handlebars->27->218", "default.handlebars->27->296" ] @@ -9831,7 +9854,7 @@ "pt": "Convide alguém para instalar o agente de malha nessa malha.", "ru": "Отправить приглашение на установку Mesh Agent", "xloc": [ - "default.handlebars->27->1078", + "default.handlebars->27->1081", "default.handlebars->27->217" ] }, @@ -9860,7 +9883,7 @@ "pt": "Irish", "ru": "Ирландский", "xloc": [ - "default.handlebars->27->867" + "default.handlebars->27->870" ] }, { @@ -9873,7 +9896,7 @@ "pt": "Italiano (Padrão)", "ru": "Итальянский (Стандартный)", "xloc": [ - "default.handlebars->27->868" + "default.handlebars->27->871" ] }, { @@ -9886,7 +9909,7 @@ "pt": "Italiano (Suíça)", "ru": "Итальянский (Швейцария)", "xloc": [ - "default.handlebars->27->869" + "default.handlebars->27->872" ] }, { @@ -9900,8 +9923,8 @@ "pt": "Formato JSON", "ru": "Формат JSON", "xloc": [ - "default.handlebars->27->1250", - "default.handlebars->27->1289", + "default.handlebars->27->1253", + "default.handlebars->27->1292", "default.handlebars->27->386" ] }, @@ -9916,7 +9939,7 @@ "pt": "japonês", "ru": "Японский", "xloc": [ - "default.handlebars->27->870" + "default.handlebars->27->873" ] }, { @@ -9928,7 +9951,7 @@ "pt": "Kannada", "ru": "Каннада", "xloc": [ - "default.handlebars->27->871" + "default.handlebars->27->874" ] }, { @@ -9940,7 +9963,7 @@ "pt": "Caxemira", "ru": "Кашмирский", "xloc": [ - "default.handlebars->27->872" + "default.handlebars->27->875" ] }, { @@ -9952,7 +9975,7 @@ "pt": "Cazaque", "ru": "Казахский", "xloc": [ - "default.handlebars->27->873" + "default.handlebars->27->876" ] }, { @@ -9979,8 +10002,8 @@ "pt": "Nome da chave", "ru": "Имя ключа", "xloc": [ - "default.handlebars->27->764", - "default.handlebars->27->767" + "default.handlebars->27->767", + "default.handlebars->27->770" ] }, { @@ -10006,7 +10029,7 @@ "pt": "Khmer", "ru": "Кхмерский", "xloc": [ - "default.handlebars->27->874" + "default.handlebars->27->877" ] }, { @@ -10018,7 +10041,7 @@ "pt": "Kirghiz", "ru": "Киргизский", "xloc": [ - "default.handlebars->27->875" + "default.handlebars->27->878" ] }, { @@ -10030,7 +10053,7 @@ "pt": "Klingon", "ru": "Клингонский", "xloc": [ - "default.handlebars->27->876" + "default.handlebars->27->879" ] }, { @@ -10050,7 +10073,7 @@ "pt": "coreano", "ru": "Korean", "xloc": [ - "default.handlebars->27->877" + "default.handlebars->27->880" ] }, { @@ -10063,7 +10086,7 @@ "pt": "Coreano (Coréia do Norte)", "ru": "Корейский (Северная Корея)", "xloc": [ - "default.handlebars->27->878" + "default.handlebars->27->881" ] }, { @@ -10076,7 +10099,7 @@ "pt": "Coreano (Coréia do Sul)", "ru": "Корейский (Южная Корея)", "xloc": [ - "default.handlebars->27->879" + "default.handlebars->27->882" ] }, { @@ -10105,7 +10128,7 @@ "pt": "Língua", "ru": "Язык", "xloc": [ - "default.handlebars->27->972" + "default.handlebars->27->975" ] }, { @@ -10286,7 +10309,7 @@ "pt": "Último acesso", "ru": "Последний доступ", "xloc": [ - "default.handlebars->27->1258" + "default.handlebars->27->1261" ] }, { @@ -10300,7 +10323,7 @@ "pt": "Último login", "ru": "Последний вход в систему", "xloc": [ - "default.handlebars->27->1385" + "default.handlebars->27->1388" ] }, { @@ -10349,7 +10372,7 @@ "pt": "Última alteração: {0}", "ru": "Последнее изменение: {0}", "xloc": [ - "default.handlebars->27->1389" + "default.handlebars->27->1392" ] }, { @@ -10391,7 +10414,7 @@ "pt": "Último login: {0}", "ru": "Последний вход в систему: {0}", "xloc": [ - "default.handlebars->27->1268" + "default.handlebars->27->1271" ] }, { @@ -10461,7 +10484,7 @@ "pt": "Latim", "ru": "Латинский", "xloc": [ - "default.handlebars->27->880" + "default.handlebars->27->883" ] }, { @@ -10474,7 +10497,7 @@ "pt": "letão", "ru": "Латышский", "xloc": [ - "default.handlebars->27->881" + "default.handlebars->27->884" ] }, { @@ -10506,7 +10529,7 @@ "pt": "Menos", "ru": "Меньше", "xloc": [ - "default.handlebars->27->1519" + "default.handlebars->27->1522" ] }, { @@ -10534,8 +10557,8 @@ "pt": "Entrada limitada", "ru": "Ограниченный ввод", "xloc": [ - "default-mobile.handlebars->9->323", - "default.handlebars->27->1180" + "default-mobile.handlebars->9->326", + "default.handlebars->27->1183" ] }, { @@ -10548,8 +10571,8 @@ "pt": "Somente entrada limitada", "ru": "Ограничить элементы ввода", "xloc": [ - "default-mobile.handlebars->9->298", - "default.handlebars->27->1148" + "default-mobile.handlebars->9->301", + "default.handlebars->27->1151" ] }, { @@ -10563,8 +10586,8 @@ "pt": "Ligação", "ru": "Ссылка", "xloc": [ - "default-mobile.handlebars->9->68", - "default.handlebars->27->1211", + "default-mobile.handlebars->9->71", + "default.handlebars->27->1214", "default.handlebars->container->column_l->p42->p42tbl->1->0->4" ] }, @@ -10637,7 +10660,7 @@ "pt": "Linux 32 bits", "ru": "Linux 32bit", "xloc": [ - "default-mobile.handlebars->9->148", + "default-mobile.handlebars->9->151", "default.handlebars->27->18" ] }, @@ -10652,7 +10675,7 @@ "pt": "Linux 64 bits", "ru": "Linux 64bit", "xloc": [ - "default-mobile.handlebars->9->149", + "default-mobile.handlebars->9->152", "default.handlebars->27->19" ] }, @@ -10667,7 +10690,7 @@ "pt": "Linux ARM", "ru": "Linux ARM", "xloc": [ - "default-mobile.handlebars->9->153", + "default-mobile.handlebars->9->156", "default.handlebars->27->23" ] }, @@ -10696,7 +10719,7 @@ "pt": "Linux NoKVM x86-32 bits", "ru": "Linux NoKVM x86-32bit", "xloc": [ - "default-mobile.handlebars->9->162", + "default-mobile.handlebars->9->165", "default.handlebars->27->32" ] }, @@ -10711,7 +10734,7 @@ "pt": "Linux NoKVM x86-64 bits", "ru": "Linux NoKVM x86-64bit", "xloc": [ - "default-mobile.handlebars->9->163", + "default-mobile.handlebars->9->166", "default.handlebars->27->33" ] }, @@ -10726,7 +10749,7 @@ "pt": "Linux Poky x86-32 bits", "ru": "Linux Poky x86-32bit", "xloc": [ - "default-mobile.handlebars->9->158", + "default-mobile.handlebars->9->161", "default.handlebars->27->28" ] }, @@ -10741,7 +10764,7 @@ "pt": "Linux Poky x86-64 bits", "ru": "Linux Poky x86-64bit", "xloc": [ - "default-mobile.handlebars->9->161", + "default-mobile.handlebars->9->164", "default.handlebars->27->31" ] }, @@ -10813,7 +10836,7 @@ "pt": "Lituano", "ru": "Литовский", "xloc": [ - "default.handlebars->27->882" + "default.handlebars->27->885" ] }, { @@ -10827,11 +10850,11 @@ "pt": "Carregando...", "ru": "Загрузка...", "xloc": [ - "default-mobile.handlebars->9->31", - "default.handlebars->27->1026", - "default.handlebars->27->1028", + "default-mobile.handlebars->9->34", + "default.handlebars->27->1029", + "default.handlebars->27->1031", "default.handlebars->27->571", - "default.handlebars->27->760" + "default.handlebars->27->763" ] }, { @@ -10885,7 +10908,7 @@ "pt": "Configurações de localização", "ru": "Настройки локализации", "xloc": [ - "default.handlebars->27->975", + "default.handlebars->27->978", "default.handlebars->container->column_l->p2->p2AccountActions->3->5" ] }, @@ -10926,7 +10949,7 @@ "pt": "Bloquear conta", "ru": "Заблокировать учетную запись", "xloc": [ - "default.handlebars->27->1319" + "default.handlebars->27->1322" ] }, { @@ -10940,7 +10963,7 @@ "pt": "Bloqueado", "ru": "Заблокирован", "xloc": [ - "default.handlebars->27->1269" + "default.handlebars->27->1272" ] }, { @@ -10954,7 +10977,7 @@ "pt": "Conta bloqueada", "ru": "Заблокированная учетная запись", "xloc": [ - "default.handlebars->27->1370" + "default.handlebars->27->1373" ] }, { @@ -11036,8 +11059,8 @@ "nl": "Inloggen mislukt, controleer gebruikersnaam en wachtwoord.", "ru": "Вход не выполнен, проверьте имя пользователя и пароль.", "xloc": [ - "login-mobile.handlebars->5->14", - "login.handlebars->5->14" + "login-mobile.handlebars->5->15", + "login.handlebars->5->15" ] }, { @@ -11084,7 +11107,7 @@ "pt": "Luxemburguês", "ru": "Люксембургский", "xloc": [ - "default.handlebars->27->883" + "default.handlebars->27->886" ] }, { @@ -11140,7 +11163,7 @@ "pt": "MIPS", "ru": "MIPS", "xloc": [ - "default-mobile.handlebars->9->150", + "default-mobile.handlebars->9->153", "default.handlebars->27->20" ] }, @@ -11170,8 +11193,8 @@ "pt": "MQTT", "ru": "MQTT", "xloc": [ - "default-mobile.handlebars->9->125", - "default-mobile.handlebars->9->194", + "default-mobile.handlebars->9->128", + "default-mobile.handlebars->9->197", "default.handlebars->27->174", "default.handlebars->27->363", "default.handlebars->27->489", @@ -11217,7 +11240,7 @@ "pt": "Canal MQTT conectado", "ru": "Подключен MQTT канал", "xloc": [ - "default-mobile.handlebars->9->203", + "default-mobile.handlebars->9->206", "default.handlebars->27->525" ] }, @@ -11305,7 +11328,7 @@ "pt": "MacOS 32 bits", "ru": "MacOS 32bit", "xloc": [ - "default-mobile.handlebars->9->154", + "default-mobile.handlebars->9->157", "default.handlebars->27->24" ] }, @@ -11320,7 +11343,7 @@ "pt": "MacOS 64 bits", "ru": "MacOS 64bit", "xloc": [ - "default-mobile.handlebars->9->159", + "default-mobile.handlebars->9->162", "default.handlebars->27->29" ] }, @@ -11335,7 +11358,7 @@ "pt": "Mensagens do servidor principal", "ru": "Сообщения главного сервера", "xloc": [ - "default.handlebars->27->1495" + "default.handlebars->27->1498" ] }, { @@ -11348,7 +11371,7 @@ "pt": "Malaio", "ru": "Малайский", "xloc": [ - "default.handlebars->27->885" + "default.handlebars->27->888" ] }, { @@ -11360,7 +11383,7 @@ "pt": "Malaiala", "ru": "Малаяламский", "xloc": [ - "default.handlebars->27->886" + "default.handlebars->27->889" ] }, { @@ -11373,7 +11396,7 @@ "pt": "Maltês", "ru": "Мальтийский", "xloc": [ - "default.handlebars->27->887" + "default.handlebars->27->890" ] }, { @@ -11401,10 +11424,10 @@ "pt": "Gerenciar computadores do grupo de dispositivos", "ru": "Управление компьютерами группы устройств", "xloc": [ - "default-mobile.handlebars->9->295", - "default-mobile.handlebars->9->313", - "default.handlebars->27->1145", - "default.handlebars->27->1169" + "default-mobile.handlebars->9->298", + "default-mobile.handlebars->9->316", + "default.handlebars->27->1148", + "default.handlebars->27->1172" ] }, { @@ -11417,10 +11440,10 @@ "pt": "Gerenciar usuários do grupo de dispositivos", "ru": "Управление пользователями группы устройств", "xloc": [ - "default-mobile.handlebars->9->294", - "default-mobile.handlebars->9->312", - "default.handlebars->27->1144", - "default.handlebars->27->1168" + "default-mobile.handlebars->9->297", + "default-mobile.handlebars->9->315", + "default.handlebars->27->1147", + "default.handlebars->27->1171" ] }, { @@ -11445,7 +11468,7 @@ "nl": "Beheer gebruikersgroepen.", "ru": "Управление группами пользователя", "xloc": [ - "default.handlebars->27->1318" + "default.handlebars->27->1321" ] }, { @@ -11459,7 +11482,7 @@ "pt": "Gerenciar Usuários", "ru": "Управление пользователями", "xloc": [ - "default.handlebars->27->1317" + "default.handlebars->27->1320" ] }, { @@ -11492,6 +11515,13 @@ "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageOtp->1->0" ] }, + { + "en": "Manage email authentication", + "xloc": [ + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->3->manageEmail2FA->0", + "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageEmail2FA->1->0" + ] + }, { "cs": "Spravovat klíče zabezpečení", "de": "Sicherheitsschlüssel verwalten", @@ -11517,7 +11547,7 @@ "pt": "Gerenciar usando um agente de software", "ru": "Управление с помощью программного агента", "xloc": [ - "default.handlebars->27->1008" + "default.handlebars->27->1011" ] }, { @@ -11531,8 +11561,8 @@ "pt": "Gerenciado usando um agente de software", "ru": "Управляется с помощью программного агента", "xloc": [ - "default-mobile.handlebars->9->275", - "default.handlebars->27->1032" + "default-mobile.handlebars->9->278", + "default.handlebars->27->1035" ] }, { @@ -11545,7 +11575,7 @@ "pt": "Gerenciador", "ru": "Менеджер", "xloc": [ - "default.handlebars->27->1274" + "default.handlebars->27->1277" ] }, { @@ -11585,7 +11615,7 @@ "pt": "Maori", "ru": "Маори", "xloc": [ - "default.handlebars->27->888" + "default.handlebars->27->891" ] }, { @@ -11613,7 +11643,7 @@ "pt": "Marathi", "ru": "Маратхи", "xloc": [ - "default.handlebars->27->889" + "default.handlebars->27->892" ] }, { @@ -11624,7 +11654,7 @@ "nl": "Max Sessies bereikt", "ru": "Достигнуто максимальное число сессий", "xloc": [ - "default.handlebars->27->1459" + "default.handlebars->27->1462" ] }, { @@ -11638,8 +11668,8 @@ "pt": "Comprimento máximo de {0}", "ru": "Максимальная длина {0}", "xloc": [ - "login-mobile.handlebars->5->29", - "login.handlebars->5->29" + "login-mobile.handlebars->5->32", + "login.handlebars->5->32" ] }, { @@ -11669,7 +11699,7 @@ "pt": "Megabytes", "ru": "Мегабайт", "xloc": [ - "default.handlebars->27->1485" + "default.handlebars->27->1488" ] }, { @@ -11683,7 +11713,7 @@ "pt": "Memória", "ru": "ОЗУ", "xloc": [ - "default.handlebars->27->1476", + "default.handlebars->27->1479", "default.handlebars->27->740", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] @@ -11699,7 +11729,7 @@ "pt": "Mesh Agent", "ru": "Mesh Agent", "xloc": [ - "default-mobile.handlebars->9->200", + "default-mobile.handlebars->9->203", "default.handlebars->27->308", "default.handlebars->27->311", "default.handlebars->27->319", @@ -11721,8 +11751,8 @@ "pt": "Mesh Agent Console", "ru": "Консоль Mesh Agent", "xloc": [ - "default-mobile.handlebars->9->302", - "default.handlebars->27->1153" + "default-mobile.handlebars->9->305", + "default.handlebars->27->1156" ] }, { @@ -11793,7 +11823,7 @@ "nl": "MeshAgent verkeer", "ru": "Трафик MeshAgent", "xloc": [ - "default.handlebars->27->1497" + "default.handlebars->27->1500" ] }, { @@ -11806,7 +11836,7 @@ "nl": "MeshAgent update", "ru": "Обновление MeshAgent", "xloc": [ - "default.handlebars->27->1498" + "default.handlebars->27->1501" ] }, { @@ -11832,7 +11862,7 @@ "pt": "MeshCentral Errors", "ru": "Ошибки MeshCentral", "xloc": [ - "default.handlebars->27->1027" + "default.handlebars->27->1030" ] }, { @@ -11886,7 +11916,7 @@ "pt": "Peering do servidor MeshCentral", "ru": "Соединения сервера MeshCentral", "xloc": [ - "default.handlebars->27->1496" + "default.handlebars->27->1499" ] }, { @@ -11913,7 +11943,7 @@ "pt": "Versão MeshCentral", "ru": "Версия MeshCentral", "xloc": [ - "default.handlebars->27->1025", + "default.handlebars->27->1028", "default.handlebars->27->94", "default.handlebars->27->95" ] @@ -12078,7 +12108,7 @@ "pt": "Despachante de mensagens", "ru": "Диспетчер сообщения", "xloc": [ - "default.handlebars->27->1494" + "default.handlebars->27->1497" ] }, { @@ -12119,8 +12149,8 @@ "pt": "Comprimento mínimo de {0}", "ru": "Минимальная длина {0}", "xloc": [ - "login-mobile.handlebars->5->28", - "login.handlebars->5->28" + "login-mobile.handlebars->5->31", + "login.handlebars->5->31" ] }, { @@ -12146,7 +12176,7 @@ "pt": "Moldavian", "ru": "Молдавский", "xloc": [ - "default.handlebars->27->890" + "default.handlebars->27->893" ] }, { @@ -12160,7 +12190,7 @@ "pt": "Mais", "ru": "Еще", "xloc": [ - "default.handlebars->27->1518" + "default.handlebars->27->1521" ] }, { @@ -12408,8 +12438,8 @@ "pt": "Minha chave", "ru": "Мой ключ", "xloc": [ - "default.handlebars->27->765", - "default.handlebars->27->768" + "default.handlebars->27->768", + "default.handlebars->27->771" ] }, { @@ -12423,20 +12453,20 @@ "pt": "Nome", "ru": "Имя", "xloc": [ - "default-mobile.handlebars->9->135", - "default-mobile.handlebars->9->276", - "default-mobile.handlebars->9->289", - "default-mobile.handlebars->9->56", + "default-mobile.handlebars->9->138", + "default-mobile.handlebars->9->279", + "default-mobile.handlebars->9->292", + "default-mobile.handlebars->9->59", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->27->1006", - "default.handlebars->27->1033", - "default.handlebars->27->1117", - "default.handlebars->27->1256", - "default.handlebars->27->1324", - "default.handlebars->27->1328", - "default.handlebars->27->1333", - "default.handlebars->27->1335", - "default.handlebars->27->1358", + "default.handlebars->27->1009", + "default.handlebars->27->1036", + "default.handlebars->27->1120", + "default.handlebars->27->1259", + "default.handlebars->27->1327", + "default.handlebars->27->1331", + "default.handlebars->27->1336", + "default.handlebars->27->1338", + "default.handlebars->27->1361", "default.handlebars->27->617", "default.handlebars->27->690", "default.handlebars->27->732", @@ -12471,7 +12501,7 @@ "pt": "Nome1, Nome2, Nome3", "ru": "Имя1, Имя2, Имя3", "xloc": [ - "default.handlebars->27->1310" + "default.handlebars->27->1313" ] }, { @@ -12484,7 +12514,7 @@ "pt": "Navajo", "ru": "Навахо", "xloc": [ - "default.handlebars->27->891" + "default.handlebars->27->894" ] }, { @@ -12497,7 +12527,7 @@ "pt": "Ndonga", "ru": "Ндонга", "xloc": [ - "default.handlebars->27->892" + "default.handlebars->27->895" ] }, { @@ -12510,7 +12540,7 @@ "pt": "Nepali", "ru": "Непальский", "xloc": [ - "default.handlebars->27->893" + "default.handlebars->27->896" ] }, { @@ -12588,10 +12618,10 @@ "pt": "Novo grupo de dispositivos", "ru": "Новая группа устройств", "xloc": [ - "default-mobile.handlebars->9->50", - "default.handlebars->27->1011", - "default.handlebars->27->562", - "default.handlebars->27->999" + "default-mobile.handlebars->9->53", + "default.handlebars->27->1002", + "default.handlebars->27->1014", + "default.handlebars->27->562" ] }, { @@ -12605,9 +12635,9 @@ "pt": "Nova pasta", "ru": "Новая папка", "xloc": [ - "default-mobile.handlebars->9->247", - "default-mobile.handlebars->9->79", - "default.handlebars->27->1229", + "default-mobile.handlebars->9->250", + "default-mobile.handlebars->9->82", + "default.handlebars->27->1232", "default.handlebars->27->654", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" @@ -12649,10 +12679,10 @@ "pt": "Nova senha:", "ru": "Новый пароль:", "xloc": [ - "default-mobile.handlebars->9->45", - "default-mobile.handlebars->9->46", - "default.handlebars->27->994", - "default.handlebars->27->995" + "default-mobile.handlebars->9->48", + "default-mobile.handlebars->9->49", + "default.handlebars->27->997", + "default.handlebars->27->998" ] }, { @@ -12680,8 +12710,8 @@ "pt": "Sem credenciais", "ru": "Учетных данных нет", "xloc": [ - "default-mobile.handlebars->9->184", - "default-mobile.handlebars->9->185", + "default-mobile.handlebars->9->187", + "default-mobile.handlebars->9->188", "default.handlebars->27->464", "default.handlebars->27->465" ] @@ -12690,14 +12720,14 @@ "en": "No Desktop", "nl": "Geen bureaublad", "xloc": [ - "default.handlebars->27->1176" + "default.handlebars->27->1179" ] }, { "en": "No Desktop Access", "nl": "Geen bureaublad toegang", "xloc": [ - "default.handlebars->27->1149" + "default.handlebars->27->1152" ] }, { @@ -12711,8 +12741,8 @@ "pt": "Nenhum evento encontrado", "ru": "События не найдены", "xloc": [ - "default.handlebars->27->1246", - "default.handlebars->27->1442", + "default.handlebars->27->1249", + "default.handlebars->27->1445", "default.handlebars->27->688" ] }, @@ -12727,8 +12757,8 @@ "pt": "Sem acesso a arquivos", "ru": "Нет доступа к файлам", "xloc": [ - "default-mobile.handlebars->9->300", - "default.handlebars->27->1151" + "default-mobile.handlebars->9->303", + "default.handlebars->27->1154" ] }, { @@ -12742,8 +12772,8 @@ "pt": "Sem arquivos", "ru": "Файлов нет", "xloc": [ - "default-mobile.handlebars->9->321", - "default.handlebars->27->1178" + "default-mobile.handlebars->9->324", + "default.handlebars->27->1181" ] }, { @@ -12756,10 +12786,10 @@ "pt": "Nenhum Intel® AMT", "ru": "Нет Intel® AMT", "xloc": [ - "default-mobile.handlebars->9->301", - "default-mobile.handlebars->9->322", - "default.handlebars->27->1152", - "default.handlebars->27->1179" + "default-mobile.handlebars->9->304", + "default-mobile.handlebars->9->325", + "default.handlebars->27->1155", + "default.handlebars->27->1182" ] }, { @@ -12773,7 +12803,7 @@ "pt": "Nenhum Intel® AMT devices in this group", "ru": "Intel® AMT устройств в этой группе нет", "xloc": [ - "default-mobile.handlebars->9->96" + "default-mobile.handlebars->9->99" ] }, { @@ -12811,7 +12841,7 @@ "nl": "Geen leden", "ru": "Нет членов", "xloc": [ - "default.handlebars->27->1345" + "default.handlebars->27->1348" ] }, { @@ -12824,7 +12854,7 @@ "pt": "Não há novos grupos de dispositivos", "ru": "Запретить создание групп устройств", "xloc": [ - "default.handlebars->27->1320" + "default.handlebars->27->1323" ] }, { @@ -12837,9 +12867,9 @@ "pt": "Nenhuma política", "ru": "Политик нет", "xloc": [ - "default.handlebars->27->1058", - "default.handlebars->27->1089", - "default.handlebars->27->1092" + "default.handlebars->27->1061", + "default.handlebars->27->1092", + "default.handlebars->27->1095" ] }, { @@ -12852,14 +12882,14 @@ "pt": "Sem direitos", "ru": "Нет прав", "xloc": [ - "default-mobile.handlebars->9->284", - "default-mobile.handlebars->9->327", - "default-mobile.handlebars->9->65", - "default.handlebars->27->1020", - "default.handlebars->27->1083", - "default.handlebars->27->1184", - "default.handlebars->27->1351", - "default.handlebars->27->1425" + "default-mobile.handlebars->9->287", + "default-mobile.handlebars->9->330", + "default-mobile.handlebars->9->68", + "default.handlebars->27->1023", + "default.handlebars->27->1086", + "default.handlebars->27->1187", + "default.handlebars->27->1354", + "default.handlebars->27->1428" ] }, { @@ -12873,7 +12903,7 @@ "pt": "Sem segurança TLS", "ru": "Нет безопасности TLS", "xloc": [ - "default-mobile.handlebars->9->215", + "default-mobile.handlebars->9->218", "default.handlebars->27->227", "default.handlebars->27->548" ] @@ -12888,8 +12918,8 @@ "pt": "Sem terminal", "ru": "Нет терминала", "xloc": [ - "default-mobile.handlebars->9->320", - "default.handlebars->27->1177" + "default-mobile.handlebars->9->323", + "default.handlebars->27->1180" ] }, { @@ -12902,8 +12932,8 @@ "pt": "Sem acesso ao terminal", "ru": "Нет доступа к терминалу", "xloc": [ - "default-mobile.handlebars->9->299", - "default.handlebars->27->1150" + "default-mobile.handlebars->9->302", + "default.handlebars->27->1153" ] }, { @@ -12916,7 +12946,7 @@ "pt": "Sem ferramentas (MeshCmd / Roteador)", "ru": "Нет инструментов (MeshCmd/Router)", "xloc": [ - "default.handlebars->27->1321" + "default.handlebars->27->1324" ] }, { @@ -12927,8 +12957,8 @@ "nl": "Geen gemeenschappelijke apparaatgroepen", "ru": "Нет общих групп устройств", "xloc": [ - "default.handlebars->27->1354", - "default.handlebars->27->1428" + "default.handlebars->27->1357", + "default.handlebars->27->1431" ] }, { @@ -12958,7 +12988,7 @@ "pt": "Nenhum dispositivo", "ru": "Устройств нет", "xloc": [ - "default-mobile.handlebars->9->98" + "default-mobile.handlebars->9->101" ] }, { @@ -12996,7 +13026,7 @@ "nl": "Geen apparaten in deze apparaatgroep.", "ru": "В группе нет устройств.", "xloc": [ - "default.handlebars->27->1208" + "default.handlebars->27->1211" ] }, { @@ -13010,7 +13040,7 @@ "pt": "Nenhum dispositivo neste grupo", "ru": "В этой группе нет устройств", "xloc": [ - "default-mobile.handlebars->9->97", + "default-mobile.handlebars->9->100", "default.handlebars->27->180" ] }, @@ -13047,7 +13077,7 @@ "nl": "Geen groepen gevonden.", "ru": "Группы не найдены.", "xloc": [ - "default.handlebars->27->1323" + "default.handlebars->27->1326" ] }, { @@ -13126,7 +13156,7 @@ "pt": "Sem direitos de servidor", "ru": "Нет серверных прав", "xloc": [ - "default.handlebars->27->1371" + "default.handlebars->27->1374" ] }, { @@ -13137,7 +13167,7 @@ "nl": "Geen gebruikersgroep lidmaatschap", "ru": "Нет членства в группах пользователей", "xloc": [ - "default.handlebars->27->1434" + "default.handlebars->27->1437" ] }, { @@ -13151,7 +13181,7 @@ "pt": "Usuários não encontrados.", "ru": "Пользователи не найдены.", "xloc": [ - "default.handlebars->27->1264" + "default.handlebars->27->1267" ] }, { @@ -13179,7 +13209,7 @@ "pt": "NodeJS", "ru": "NodeJS", "xloc": [ - "default-mobile.handlebars->9->166", + "default-mobile.handlebars->9->169", "default.handlebars->27->36" ] }, @@ -13194,23 +13224,23 @@ "pt": "Nenhum", "ru": "Пусто", "xloc": [ - "default-mobile.handlebars->9->133", - "default-mobile.handlebars->9->138", - "default-mobile.handlebars->9->140", - "default-mobile.handlebars->9->196", - "default-mobile.handlebars->9->245", - "default-mobile.handlebars->9->278", - "default-mobile.handlebars->9->75", - "default-mobile.handlebars->9->93", - "default-mobile.handlebars->9->95", - "default.handlebars->27->1035", - "default.handlebars->27->1039", - "default.handlebars->27->1051", - "default.handlebars->27->1056", - "default.handlebars->27->1217", - "default.handlebars->27->1332", - "default.handlebars->27->1390", - "default.handlebars->27->1394", + "default-mobile.handlebars->9->136", + "default-mobile.handlebars->9->141", + "default-mobile.handlebars->9->143", + "default-mobile.handlebars->9->199", + "default-mobile.handlebars->9->248", + "default-mobile.handlebars->9->281", + "default-mobile.handlebars->9->78", + "default-mobile.handlebars->9->96", + "default-mobile.handlebars->9->98", + "default.handlebars->27->1038", + "default.handlebars->27->1042", + "default.handlebars->27->1054", + "default.handlebars->27->1059", + "default.handlebars->27->1220", + "default.handlebars->27->1335", + "default.handlebars->27->1393", + "default.handlebars->27->1397", "default.handlebars->27->148", "default.handlebars->27->163", "default.handlebars->27->164", @@ -13246,7 +13276,7 @@ "pt": "norueguês", "ru": "Норвежский", "xloc": [ - "default.handlebars->27->894" + "default.handlebars->27->897" ] }, { @@ -13259,7 +13289,7 @@ "pt": "Norueguês (Bokmal)", "ru": "Норвежский (Букмол)", "xloc": [ - "default.handlebars->27->895" + "default.handlebars->27->898" ] }, { @@ -13272,7 +13302,7 @@ "pt": "Norueguês (Nynorsk)", "ru": "Норвежский (Нюнорск)", "xloc": [ - "default.handlebars->27->896" + "default.handlebars->27->899" ] }, { @@ -13284,7 +13314,7 @@ "pt": "Não ativado (entrada)", "ru": "Не активированно (In)", "xloc": [ - "default-mobile.handlebars->9->176", + "default-mobile.handlebars->9->179", "default.handlebars->27->452", "default.handlebars->27->715" ] @@ -13298,7 +13328,7 @@ "pt": "Não ativado (pré)", "ru": "Не активированно (Pre)", "xloc": [ - "default-mobile.handlebars->9->175", + "default-mobile.handlebars->9->178", "default.handlebars->27->451", "default.handlebars->27->714" ] @@ -13311,8 +13341,8 @@ "nl": "Niet verbonden", "ru": "Не подключен", "xloc": [ - "default.handlebars->27->1197", - "default.handlebars->27->1203" + "default.handlebars->27->1200", + "default.handlebars->27->1206" ] }, { @@ -13333,7 +13363,7 @@ "pt": "Não configurado", "ru": "Не задано", "xloc": [ - "default.handlebars->27->1376" + "default.handlebars->27->1379" ] }, { @@ -13347,8 +13377,8 @@ "pt": "Notas", "ru": "Примечания", "xloc": [ - "default.handlebars->27->1064", - "default.handlebars->27->1401", + "default.handlebars->27->1067", + "default.handlebars->27->1404", "default.handlebars->27->494", "default.handlebars->27->529" ] @@ -13376,8 +13406,8 @@ "pt": "Configurações de notificação", "ru": "Настройки уведомлений", "xloc": [ - "default.handlebars->27->1196", - "default.handlebars->27->981", + "default.handlebars->27->1199", + "default.handlebars->27->984", "default.handlebars->container->column_l->p2->p2AccountActions->3->8" ] }, @@ -13389,7 +13419,7 @@ "nl": "Meldingsinstellingen moeten ook worden ingeschakeld in accountinstellingen.", "ru": "Уведомления также должны быть включены в настройках учетной записи.", "xloc": [ - "default.handlebars->27->1192" + "default.handlebars->27->1195" ] }, { @@ -13403,7 +13433,7 @@ "pt": "Som de notificação.", "ru": "Звук уведомления", "xloc": [ - "default.handlebars->27->976" + "default.handlebars->27->979" ] }, { @@ -13416,7 +13446,7 @@ "pt": "Notificações", "ru": "Уведомления", "xloc": [ - "default.handlebars->27->1057" + "default.handlebars->27->1060" ] }, { @@ -13430,7 +13460,7 @@ "pt": "Notificar", "ru": "Уведомить", "xloc": [ - "default.handlebars->27->1403" + "default.handlebars->27->1406" ] }, { @@ -13444,9 +13474,9 @@ "pt": "Notificar usuário", "ru": "Уведомить пользователя", "xloc": [ - "default.handlebars->27->1121", - "default.handlebars->27->1125", - "default.handlebars->27->1128" + "default.handlebars->27->1124", + "default.handlebars->27->1128", + "default.handlebars->27->1131" ] }, { @@ -13460,7 +13490,7 @@ "pt": "Notificar {0}", "ru": "Уведомить {0}", "xloc": [ - "default.handlebars->27->1276" + "default.handlebars->27->1279" ] }, { @@ -13474,9 +13504,9 @@ "pt": "Ok", "ru": "ОК", "xloc": [ - "default-mobile.handlebars->9->42", + "default-mobile.handlebars->9->45", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->27->1023", + "default.handlebars->27->1026", "default.handlebars->27->477", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -13508,7 +13538,7 @@ "pt": "Occitânico", "ru": "Окситанский", "xloc": [ - "default.handlebars->27->897" + "default.handlebars->27->900" ] }, { @@ -13522,7 +13552,7 @@ "pt": "Ocorreu em {0}", "ru": "Произошло в {0}", "xloc": [ - "default.handlebars->27->1445" + "default.handlebars->27->1448" ] }, { @@ -13536,7 +13566,7 @@ "pt": "Usuários offline", "ru": "Оффлайн пользователи", "xloc": [ - "default.handlebars->27->1261" + "default.handlebars->27->1264" ] }, { @@ -13550,8 +13580,8 @@ "pt": "Senha Antiga:", "ru": "Старый пароль:", "xloc": [ - "default-mobile.handlebars->9->44", - "default.handlebars->27->993" + "default-mobile.handlebars->9->47", + "default.handlebars->27->996" ] }, { @@ -13580,7 +13610,7 @@ "pt": "Usuários Online", "ru": "Онлайн пользователи", "xloc": [ - "default.handlebars->27->1260" + "default.handlebars->27->1263" ] }, { @@ -13594,7 +13624,7 @@ "pt": "Somente arquivos com menos de 200k podem ser editados.", "ru": "Редактировать файлы можно только размером менее 200КБ.", "xloc": [ - "default-mobile.handlebars->9->255", + "default-mobile.handlebars->9->258", "default.handlebars->27->410", "default.handlebars->27->662" ] @@ -13691,7 +13721,7 @@ "pt": "Operação", "ru": "Операция", "xloc": [ - "default-mobile.handlebars->9->210", + "default-mobile.handlebars->9->213", "default.handlebars->27->370", "default.handlebars->27->540" ] @@ -13719,7 +13749,7 @@ "pt": "Oriya", "ru": "Ория", "xloc": [ - "default.handlebars->27->898" + "default.handlebars->27->901" ] }, { @@ -13731,7 +13761,7 @@ "pt": "Oromo", "ru": "Оромо", "xloc": [ - "default.handlebars->27->899" + "default.handlebars->27->902" ] }, { @@ -13830,7 +13860,7 @@ "pt": "Parcial", "ru": "Частично", "xloc": [ - "default.handlebars->27->1275" + "default.handlebars->27->1278" ] }, { @@ -13841,9 +13871,9 @@ "nl": "Gedeeltelijke apparaatgroep rechten", "ru": "Частичные права на группу устройств", "xloc": [ - "default.handlebars->27->1081", - "default.handlebars->27->1348", - "default.handlebars->27->1422" + "default.handlebars->27->1084", + "default.handlebars->27->1351", + "default.handlebars->27->1425" ] }, { @@ -13856,9 +13886,9 @@ "pt": "Direitos parciais", "ru": "Частичные права", "xloc": [ - "default-mobile.handlebars->9->282", - "default-mobile.handlebars->9->63", - "default.handlebars->27->1018" + "default-mobile.handlebars->9->285", + "default-mobile.handlebars->9->66", + "default.handlebars->27->1021" ] }, { @@ -13871,7 +13901,7 @@ "pt": "Direitos parciais", "ru": "Частичные права", "xloc": [ - "default.handlebars->27->1374" + "default.handlebars->27->1377" ] }, { @@ -13898,13 +13928,13 @@ "pt": "Senha", "ru": "Пароль", "xloc": [ - "default-mobile.handlebars->9->213", - "default.handlebars->27->1299", - "default.handlebars->27->1300", - "default.handlebars->27->1386", - "default.handlebars->27->1388", - "default.handlebars->27->1412", - "default.handlebars->27->1413", + "default-mobile.handlebars->9->216", + "default.handlebars->27->1302", + "default.handlebars->27->1303", + "default.handlebars->27->1389", + "default.handlebars->27->1391", + "default.handlebars->27->1415", + "default.handlebars->27->1416", "default.handlebars->27->225", "default.handlebars->27->254", "default.handlebars->27->546" @@ -13921,8 +13951,8 @@ "pt": "Dica de Senha", "ru": "Подсказка пароля", "xloc": [ - "login-mobile.handlebars->5->19", - "login.handlebars->5->19" + "login-mobile.handlebars->5->22", + "login.handlebars->5->22" ] }, { @@ -13952,11 +13982,11 @@ "pt": "Política de senha", "ru": "Политика пароля", "xloc": [ - "login-mobile.handlebars->5->23", - "login-mobile.handlebars->5->27", - "login.handlebars->5->23", - "login.handlebars->5->27", - "login.handlebars->5->34" + "login-mobile.handlebars->5->26", + "login-mobile.handlebars->5->30", + "login.handlebars->5->26", + "login.handlebars->5->30", + "login.handlebars->5->37" ] }, { @@ -13969,8 +13999,8 @@ "nl": "Wachtwoordwijziging aangevraagd.", "ru": "Требуется смена пароля.", "xloc": [ - "login-mobile.handlebars->5->15", - "login.handlebars->5->15" + "login-mobile.handlebars->5->16", + "login.handlebars->5->16" ] }, { @@ -13984,7 +14014,7 @@ "pt": "Dica de senha", "ru": "Подсказка пароля", "xloc": [ - "default.handlebars->27->1414" + "default.handlebars->27->1417" ] }, { @@ -13998,8 +14028,8 @@ "pt": "Dica de senha", "ru": "Подсказка пароля:", "xloc": [ - "default-mobile.handlebars->9->47", - "default.handlebars->27->996" + "default-mobile.handlebars->9->50", + "default.handlebars->27->999" ] }, { @@ -14013,7 +14043,7 @@ "pt": "Senha incorreta", "ru": "Пароль не совпадает", "xloc": [ - "default.handlebars->27->1098" + "default.handlebars->27->1101" ] }, { @@ -14026,8 +14056,8 @@ "nl": "Wachtwoord geweigerd, gebruik een ander.", "ru": "Пароль не принят, используйте другой.", "xloc": [ - "login-mobile.handlebars->5->7", - "login.handlebars->5->7" + "login-mobile.handlebars->5->8", + "login.handlebars->5->8" ] }, { @@ -14041,8 +14071,8 @@ "pt": "Senha*", "ru": "Пароль*", "xloc": [ - "default.handlebars->27->1096", - "default.handlebars->27->1097" + "default.handlebars->27->1099", + "default.handlebars->27->1100" ] }, { @@ -14056,10 +14086,10 @@ "pt": "Senha:", "ru": "Пароль:", "xloc": [ - "default-mobile.handlebars->9->39", - "default-mobile.handlebars->9->40", - "default.handlebars->27->988", - "default.handlebars->27->989", + "default-mobile.handlebars->9->42", + "default-mobile.handlebars->9->43", + "default.handlebars->27->991", + "default.handlebars->27->992", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1", @@ -14083,11 +14113,11 @@ "pt": "Colar", "ru": "Вставить", "xloc": [ - "default-mobile.handlebars->9->260", - "default-mobile.handlebars->9->87", + "default-mobile.handlebars->9->263", + "default-mobile.handlebars->9->90", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->27->1238", + "default.handlebars->27->1241", "default.handlebars->27->645", "default.handlebars->27->667", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", @@ -14160,7 +14190,7 @@ "pt": "Execute a ativação do modo de controle de administração Intel AMT (ACM).", "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).", "xloc": [ - "default.handlebars->27->1074", + "default.handlebars->27->1077", "default.handlebars->27->213" ] }, @@ -14187,7 +14217,7 @@ "pt": "Execute a ativação do modo de controle do cliente Intel AMT (CCM).", "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).", "xloc": [ - "default.handlebars->27->1072", + "default.handlebars->27->1075", "default.handlebars->27->211" ] }, @@ -14219,9 +14249,9 @@ "pt": "Permissões", "ru": "Права", "xloc": [ - "default-mobile.handlebars->9->329", - "default.handlebars->27->1187", - "default.handlebars->27->1259" + "default-mobile.handlebars->9->332", + "default.handlebars->27->1190", + "default.handlebars->27->1262" ] }, { @@ -14235,7 +14265,7 @@ "pt": "Persa / Irã", "ru": "Персидский/Иран", "xloc": [ - "default.handlebars->27->900" + "default.handlebars->27->903" ] }, { @@ -14322,8 +14352,8 @@ "pt": "Aguarde alguns minutos para receber a verificação.", "ru": "Подождите пару минут для получения подтверждения.", "xloc": [ - "default-mobile.handlebars->9->35", - "default.handlebars->27->983" + "default-mobile.handlebars->9->38", + "default.handlebars->27->986" ] }, { @@ -14335,7 +14365,7 @@ "nl": "Plugin Actie", "ru": "Действие плагина", "xloc": [ - "default.handlebars->27->1515", + "default.handlebars->27->1518", "default.handlebars->27->159" ] }, @@ -14413,7 +14443,7 @@ "pt": "PogoPlug ARM", "ru": "PogoPlug ARM", "xloc": [ - "default-mobile.handlebars->9->156", + "default-mobile.handlebars->9->159", "default.handlebars->27->26" ] }, @@ -14428,8 +14458,8 @@ "pt": "Política", "ru": "Политика", "xloc": [ - "default-mobile.handlebars->9->62", - "default.handlebars->27->1017" + "default-mobile.handlebars->9->65", + "default.handlebars->27->1020" ] }, { @@ -14442,7 +14472,7 @@ "pt": "polonês", "ru": "Польский", "xloc": [ - "default.handlebars->27->901" + "default.handlebars->27->904" ] }, { @@ -14455,7 +14485,7 @@ "pt": "Português", "ru": "Португальский", "xloc": [ - "default.handlebars->27->902" + "default.handlebars->27->905" ] }, { @@ -14468,7 +14498,7 @@ "pt": "Português (Brasil)", "ru": "Португальский (Бразилия)", "xloc": [ - "default.handlebars->27->903" + "default.handlebars->27->906" ] }, { @@ -14506,7 +14536,7 @@ "nl": "Power Status", "ru": "Состояния питания", "xloc": [ - "default.handlebars->27->1201", + "default.handlebars->27->1204", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -14521,8 +14551,8 @@ "pt": "Desligar", "ru": "Выключить", "xloc": [ - "default-mobile.handlebars->9->105", - "default-mobile.handlebars->9->209", + "default-mobile.handlebars->9->108", + "default-mobile.handlebars->9->212", "default.handlebars->27->537", "default.handlebars->27->6" ] @@ -14552,8 +14582,8 @@ "pt": "Ligado", "ru": "Включено", "xloc": [ - "default-mobile.handlebars->9->100", - "default-mobile.handlebars->9->107", + "default-mobile.handlebars->9->103", + "default-mobile.handlebars->9->110", "default.handlebars->27->1", "default.handlebars->27->334" ] @@ -14569,8 +14599,8 @@ "pt": "Presente", "ru": "Текущее состояние", "xloc": [ - "default-mobile.handlebars->9->106", - "default-mobile.handlebars->9->113", + "default-mobile.handlebars->9->109", + "default-mobile.handlebars->9->116", "default.handlebars->27->346", "default.handlebars->27->7" ] @@ -14614,7 +14644,7 @@ "pt": "Controle do processo", "ru": "Управление процессами", "xloc": [ - "default-mobile.handlebars->9->234", + "default-mobile.handlebars->9->237", "default.handlebars->27->632" ] }, @@ -14644,9 +14674,9 @@ "pt": "Solicitar consentimento do usuário", "ru": "Запрос согласия пользователя", "xloc": [ - "default.handlebars->27->1122", - "default.handlebars->27->1126", - "default.handlebars->27->1129" + "default.handlebars->27->1125", + "default.handlebars->27->1129", + "default.handlebars->27->1132" ] }, { @@ -14685,8 +14715,8 @@ "pt": "Link Público", "ru": "Публичная ссылка", "xloc": [ - "default-mobile.handlebars->9->74", - "default.handlebars->27->1224" + "default-mobile.handlebars->9->77", + "default.handlebars->27->1227" ] }, { @@ -14698,7 +14728,7 @@ "pt": "Punjabi", "ru": "Пенджаби", "xloc": [ - "default.handlebars->27->904" + "default.handlebars->27->907" ] }, { @@ -14710,7 +14740,7 @@ "pt": "Punjabi (Índia)", "ru": "Пенджаби (Индия)", "xloc": [ - "default.handlebars->27->905" + "default.handlebars->27->908" ] }, { @@ -14722,7 +14752,7 @@ "pt": "Punjabi (Paquistão)", "ru": "Пенджаби (Пакистан)", "xloc": [ - "default.handlebars->27->906" + "default.handlebars->27->909" ] }, { @@ -14763,7 +14793,7 @@ "pt": "Quechua", "ru": "Кечуа", "xloc": [ - "default.handlebars->27->907" + "default.handlebars->27->910" ] }, { @@ -14878,7 +14908,7 @@ "pt": "RSS", "ru": "RSS", "xloc": [ - "default.handlebars->27->1489" + "default.handlebars->27->1492" ] }, { @@ -14892,7 +14922,7 @@ "pt": "Randomize a senha.", "ru": "Случайный пароль.", "xloc": [ - "default.handlebars->27->1301" + "default.handlebars->27->1304" ] }, { @@ -14918,7 +14948,7 @@ "pt": "Reativar Intel®AMT", "ru": "Реактивировать Intel® AMT", "xloc": [ - "default.handlebars->27->1100" + "default.handlebars->27->1103" ] }, { @@ -14931,7 +14961,7 @@ "pt": "Realms", "ru": "Области", "xloc": [ - "default.handlebars->27->1309" + "default.handlebars->27->1312" ] }, { @@ -14945,9 +14975,9 @@ "pt": "Exclusão recursiva", "ru": "Рекурсивное удаление", "xloc": [ - "default-mobile.handlebars->9->248", - "default-mobile.handlebars->9->80", - "default.handlebars->27->1230", + "default-mobile.handlebars->9->251", + "default-mobile.handlebars->9->83", + "default.handlebars->27->1233", "default.handlebars->27->655" ] }, @@ -15008,7 +15038,7 @@ "pt": "Retransmissão", "ru": "Ретранслятор", "xloc": [ - "default-mobile.handlebars->9->124", + "default-mobile.handlebars->9->127", "default.handlebars->27->172", "default.handlebars->27->361" ] @@ -15021,7 +15051,7 @@ "nl": "Relay geteld", "ru": "Число ретрансляций", "xloc": [ - "default.handlebars->27->1471" + "default.handlebars->27->1474" ] }, { @@ -15032,7 +15062,7 @@ "nl": "Relay fouten", "ru": "Ошибки ретранслятора", "xloc": [ - "default.handlebars->27->1464" + "default.handlebars->27->1467" ] }, { @@ -15045,8 +15075,8 @@ "pt": "Retransmissão de sessão ", "ru": "Сессии ретранслятора", "xloc": [ - "default.handlebars->27->1470", - "default.handlebars->27->1483" + "default.handlebars->27->1473", + "default.handlebars->27->1486" ] }, { @@ -15129,10 +15159,10 @@ "pt": "Controle remoto", "ru": "Удаленное управление", "xloc": [ - "default-mobile.handlebars->9->296", - "default-mobile.handlebars->9->314", - "default.handlebars->27->1146", - "default.handlebars->27->1170" + "default-mobile.handlebars->9->299", + "default-mobile.handlebars->9->317", + "default.handlebars->27->1149", + "default.handlebars->27->1173" ] }, { @@ -15146,7 +15176,7 @@ "pt": "Configurações da área de trabalho remota", "ru": "Настройки удаленного рабочего стола", "xloc": [ - "default-mobile.handlebars->9->229", + "default-mobile.handlebars->9->232", "default.handlebars->27->204", "default.handlebars->27->608" ] @@ -15175,8 +15205,8 @@ "pt": "Usuário de malha remota", "ru": "Удаленный пользователь Mesh", "xloc": [ - "default-mobile.handlebars->9->332", - "default.handlebars->27->1190" + "default-mobile.handlebars->9->335", + "default.handlebars->27->1193" ] }, { @@ -15187,7 +15217,7 @@ "nl": "Externe gebruiker", "ru": "Удаленный пользователь", "xloc": [ - "default.handlebars->27->1364" + "default.handlebars->27->1367" ] }, { @@ -15200,10 +15230,10 @@ "pt": "Somente visualização remota", "ru": "Только просмотр экрана без ввода", "xloc": [ - "default-mobile.handlebars->9->297", - "default-mobile.handlebars->9->319", - "default.handlebars->27->1147", - "default.handlebars->27->1175" + "default-mobile.handlebars->9->300", + "default-mobile.handlebars->9->322", + "default.handlebars->27->1150", + "default.handlebars->27->1178" ] }, { @@ -15257,8 +15287,8 @@ "nl": "Verwijder apparaatgroep", "ru": "Удалить группу устройств.", "xloc": [ - "default.handlebars->27->1356", - "default.handlebars->27->1440" + "default.handlebars->27->1359", + "default.handlebars->27->1443" ] }, { @@ -15269,7 +15299,7 @@ "nl": "Verwijder gebruiker", "ru": "Удалить пользователя", "xloc": [ - "default.handlebars->27->1436" + "default.handlebars->27->1439" ] }, { @@ -15282,7 +15312,7 @@ "pt": "Remova toda a autenticação do segundo fator.", "ru": "Удалить все двухфакторные аутентификации.", "xloc": [ - "default.handlebars->27->1417" + "default.handlebars->27->1420" ] }, { @@ -15293,7 +15323,7 @@ "nl": "Verwijder alle eerdere gebeurtenissen voor dit gebruikers-ID.", "ru": "Удалить все прошлые события для этого userid.", "xloc": [ - "default.handlebars->27->1303" + "default.handlebars->27->1306" ] }, { @@ -15304,7 +15334,7 @@ "nl": "Verwijder apparaat bij verbreken", "ru": "Удалить устройство при отключении", "xloc": [ - "default.handlebars->27->1131" + "default.handlebars->27->1134" ] }, { @@ -15342,7 +15372,7 @@ "nl": "Verwijder de groepslidmaatschap", "ru": "Удалить членство пользователя в группе", "xloc": [ - "default.handlebars->27->1432" + "default.handlebars->27->1435" ] }, { @@ -15353,7 +15383,7 @@ "nl": "Verwijder gebruikers groepsrechten van deze apparaatgroep", "ru": "Удалить права группы пользователей для этой группы устройств", "xloc": [ - "default.handlebars->27->1352" + "default.handlebars->27->1355" ] }, { @@ -15367,9 +15397,9 @@ "pt": "Remova os direitos de usuário deste grupo de dispositivos", "ru": "Удалить права пользователя для этой группы устройств", "xloc": [ - "default.handlebars->27->1084", - "default.handlebars->27->1343", - "default.handlebars->27->1426" + "default.handlebars->27->1087", + "default.handlebars->27->1346", + "default.handlebars->27->1429" ] }, { @@ -15383,11 +15413,11 @@ "pt": "Renomear", "ru": "Переименовать", "xloc": [ - "default-mobile.handlebars->9->252", - "default-mobile.handlebars->9->84", + "default-mobile.handlebars->9->255", + "default-mobile.handlebars->9->87", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->27->1234", + "default.handlebars->27->1237", "default.handlebars->27->408", "default.handlebars->27->659", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", @@ -15406,7 +15436,7 @@ "pt": "Requisitos:", "ru": "Требования: ", "xloc": [ - "default.handlebars->27->997" + "default.handlebars->27->1000" ] }, { @@ -15420,9 +15450,9 @@ "pt": "Requisitos: {0}.", "ru": "Требования: {0}.", "xloc": [ - "default-mobile.handlebars->9->48", - "default.handlebars->27->1306", - "default.handlebars->27->1415" + "default-mobile.handlebars->9->51", + "default.handlebars->27->1309", + "default.handlebars->27->1418" ] }, { @@ -15465,7 +15495,7 @@ "pt": "Redefinir", "ru": "Перезагрузить", "xloc": [ - "default-mobile.handlebars->9->208", + "default-mobile.handlebars->9->211", "default.handlebars->27->536", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] @@ -15569,7 +15599,7 @@ "pt": "Restaurar servidor", "ru": "Восстановить сервер", "xloc": [ - "default.handlebars->27->1024" + "default.handlebars->27->1027" ] }, { @@ -15596,7 +15626,7 @@ "pt": "Restaurar o servidor usando um backup, isso excluirá os dados existentes do servidor. Faça isso apenas se você souber o que está fazendo.", "ru": "Восстановить сервер из резервной копии, это удалит существующие данные сервера . Продолжайте дальше только если знаете, что делаете.", "xloc": [ - "default.handlebars->27->1021" + "default.handlebars->27->1024" ] }, { @@ -15610,7 +15640,7 @@ "pt": "Restrições", "ru": "Ограничения", "xloc": [ - "default.handlebars->27->1375" + "default.handlebars->27->1378" ] }, { @@ -15622,7 +15652,7 @@ "pt": "Rhaeto-Romanic", "ru": "Ретороманский", "xloc": [ - "default.handlebars->27->908" + "default.handlebars->27->911" ] }, { @@ -15635,7 +15665,7 @@ "pt": "Romena", "ru": "Румынский", "xloc": [ - "default.handlebars->27->909" + "default.handlebars->27->912" ] }, { @@ -15648,7 +15678,7 @@ "pt": "Romeno (Moldávia)", "ru": "Румынский (Молдавия)", "xloc": [ - "default.handlebars->27->910" + "default.handlebars->27->913" ] }, { @@ -15662,9 +15692,9 @@ "pt": "Raiz", "ru": "Root/Корень", "xloc": [ - "default-mobile.handlebars->9->242", - "default-mobile.handlebars->9->66", - "default.handlebars->27->1209", + "default-mobile.handlebars->9->245", + "default-mobile.handlebars->9->69", + "default.handlebars->27->1212", "default.handlebars->27->649" ] }, @@ -15764,7 +15794,7 @@ "pt": "Russo", "ru": "Русский", "xloc": [ - "default.handlebars->27->911" + "default.handlebars->27->914" ] }, { @@ -15778,7 +15808,7 @@ "pt": "Russo (Moldávia)", "ru": "Русский (Молдавия)", "xloc": [ - "default.handlebars->27->912" + "default.handlebars->27->915" ] }, { @@ -15804,7 +15834,7 @@ "pt": "Sami (lapão)", "ru": "Саамский", "xloc": [ - "default.handlebars->27->913" + "default.handlebars->27->916" ] }, { @@ -15829,7 +15859,7 @@ "pt": "Sango", "ru": "Санго", "xloc": [ - "default.handlebars->27->914" + "default.handlebars->27->917" ] }, { @@ -15841,7 +15871,7 @@ "pt": "Sanskrit", "ru": "Санскритский", "xloc": [ - "default.handlebars->27->915" + "default.handlebars->27->918" ] }, { @@ -15853,7 +15883,7 @@ "pt": "Sardinian", "ru": "Сардинский", "xloc": [ - "default.handlebars->27->916" + "default.handlebars->27->919" ] }, { @@ -16012,6 +16042,13 @@ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, + { + "en": "Secure Login", + "xloc": [ + "login-mobile.handlebars->5->20", + "login.handlebars->5->20" + ] + }, { "en": "Secured using TLS", "nl": "Beveiligd met TLS", @@ -16030,8 +16067,8 @@ "pt": "Segurança", "ru": "Защита", "xloc": [ - "default-mobile.handlebars->9->214", - "default.handlebars->27->1399", + "default-mobile.handlebars->9->217", + "default.handlebars->27->1402", "default.handlebars->27->226", "default.handlebars->27->547", "default.handlebars->27->721" @@ -16048,7 +16085,7 @@ "pt": "Chave de segurança", "ru": "Ключ безопасности", "xloc": [ - "default.handlebars->27->1397" + "default.handlebars->27->1400" ] }, { @@ -16069,7 +16106,7 @@ "pt": "Selecionar tudo", "ru": "Выбрать все", "xloc": [ - "default.handlebars->27->1226", + "default.handlebars->27->1229", "default.handlebars->27->366", "default.handlebars->27->651", "default.handlebars->27->653", @@ -16090,7 +16127,7 @@ "pt": "Selecione nenhum", "ru": "Очистить все", "xloc": [ - "default.handlebars->27->1225", + "default.handlebars->27->1228", "default.handlebars->27->365", "default.handlebars->27->652", "default.handlebars->meshContextMenu->cxselectnone" @@ -16158,7 +16195,7 @@ "pt": "Selecione uma operação para executar neste dispositivo.", "ru": "Выберите действие для осуществления на этом устройстве.", "xloc": [ - "default-mobile.handlebars->9->205", + "default-mobile.handlebars->9->208", "default.handlebars->27->533" ] }, @@ -16187,8 +16224,8 @@ "pt": "Somente Eventos Próprios", "ru": "Только собственные события", "xloc": [ - "default-mobile.handlebars->9->324", - "default.handlebars->27->1181" + "default-mobile.handlebars->9->327", + "default.handlebars->27->1184" ] }, { @@ -16244,7 +16281,7 @@ "nl": "Stuur een bericht naar alle gebruikers in deze groep.", "ru": "Отправить уведомление всем пользователям этой группы.", "xloc": [ - "default.handlebars->27->1340" + "default.handlebars->27->1343" ] }, { @@ -16258,7 +16295,7 @@ "pt": "Envie uma notificação de texto para este usuário.", "ru": "Отправить текстовое уведомление этому пользователю.", "xloc": [ - "default.handlebars->27->1277" + "default.handlebars->27->1280" ] }, { @@ -16286,7 +16323,7 @@ "pt": "Enviar email de convite.", "ru": "Отправить приглашение по email.", "xloc": [ - "default.handlebars->27->1305" + "default.handlebars->27->1308" ] }, { @@ -16302,6 +16339,13 @@ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->specialKeyDropDown" ] }, + { + "en": "Send token to registed email address?", + "xloc": [ + "login-mobile.handlebars->5->21", + "login.handlebars->5->21" + ] + }, { "cs": "Poslat upozornění uživateli", "de": "Sende Benutzerbenachrichtigung", @@ -16313,7 +16357,7 @@ "pt": "Enviar notificação do usuário", "ru": "Отправить уведомление пользователю", "xloc": [ - "default.handlebars->27->1404" + "default.handlebars->27->1407" ] }, { @@ -16325,7 +16369,7 @@ "pt": "Sérvia", "ru": "Сербский", "xloc": [ - "default.handlebars->27->919" + "default.handlebars->27->922" ] }, { @@ -16351,7 +16395,7 @@ "pt": "Backup do servidor", "ru": "Резервное копирование сервера", "xloc": [ - "default.handlebars->27->1314" + "default.handlebars->27->1317" ] }, { @@ -16363,14 +16407,14 @@ "nl": "Server Certificaat", "ru": "Сертификат сервера", "xloc": [ - "default.handlebars->27->1499" + "default.handlebars->27->1502" ] }, { "en": "Server Database", "nl": "Server Database", "xloc": [ - "default.handlebars->27->1500" + "default.handlebars->27->1503" ] }, { @@ -16383,11 +16427,11 @@ "pt": "Arquivos do servidor", "ru": "Серверные файлы", "xloc": [ - "default-mobile.handlebars->9->303", - "default-mobile.handlebars->9->316", - "default.handlebars->27->1154", - "default.handlebars->27->1172", - "default.handlebars->27->1312" + "default-mobile.handlebars->9->306", + "default-mobile.handlebars->9->319", + "default.handlebars->27->1157", + "default.handlebars->27->1175", + "default.handlebars->27->1315" ] }, { @@ -16401,8 +16445,8 @@ "pt": "Permissões do servidor", "ru": "Разрешения сервера", "xloc": [ - "default.handlebars->27->1270", - "default.handlebars->27->1322" + "default.handlebars->27->1273", + "default.handlebars->27->1325" ] }, { @@ -16416,7 +16460,7 @@ "pt": "Cota do servidor", "ru": "Квота сервера", "xloc": [ - "default.handlebars->27->1383" + "default.handlebars->27->1386" ] }, { @@ -16430,7 +16474,7 @@ "pt": "Restauração do servidor", "ru": "Восстановление сервера", "xloc": [ - "default.handlebars->27->1315" + "default.handlebars->27->1318" ] }, { @@ -16444,7 +16488,7 @@ "pt": "Direitos do servidor", "ru": "Права", "xloc": [ - "default.handlebars->27->1382" + "default.handlebars->27->1385" ] }, { @@ -16455,7 +16499,7 @@ "nl": "Server Status", "ru": "Состояние сервера", "xloc": [ - "default.handlebars->27->1450" + "default.handlebars->27->1453" ] }, { @@ -16483,7 +16527,7 @@ "pt": "Rastreamento de servidor", "ru": "Трассировка сервера", "xloc": [ - "default.handlebars->27->1509" + "default.handlebars->27->1512" ] }, { @@ -16497,7 +16541,7 @@ "pt": "Atualizações do Servidor", "ru": "Обновление сервера", "xloc": [ - "default.handlebars->27->1316" + "default.handlebars->27->1319" ] }, { @@ -16591,7 +16635,7 @@ "pt": "ServerStats.csv", "ru": "ServerStats.csv", "xloc": [ - "default.handlebars->27->1491" + "default.handlebars->27->1494" ] }, { @@ -16851,8 +16895,8 @@ "pt": "Mostrar apenas eventos próprios", "ru": "Показывать только собственные события", "xloc": [ - "default-mobile.handlebars->9->306", - "default.handlebars->27->1157" + "default-mobile.handlebars->9->309", + "default.handlebars->27->1160" ] }, { @@ -16866,7 +16910,7 @@ "pt": "Mostrar barra de ferramentas de conexão", "ru": "Показывать панель-уведомление", "xloc": [ - "default.handlebars->27->1123" + "default.handlebars->27->1126" ] }, { @@ -16935,8 +16979,8 @@ "pt": "Modo de controle de administrador simples (ACM)", "ru": "Простой режим управления администратора (ACM)", "xloc": [ - "default.handlebars->27->1061", - "default.handlebars->27->1087" + "default.handlebars->27->1064", + "default.handlebars->27->1090" ] }, { @@ -16949,9 +16993,9 @@ "pt": "Modo de Controle de Cliente Simples (CCM)", "ru": "Простой режим управления клиента (CCM)", "xloc": [ - "default.handlebars->27->1059", - "default.handlebars->27->1090", - "default.handlebars->27->1094" + "default.handlebars->27->1062", + "default.handlebars->27->1093", + "default.handlebars->27->1097" ] }, { @@ -16964,7 +17008,7 @@ "pt": "Sindhi", "ru": "Синдхи", "xloc": [ - "default.handlebars->27->917" + "default.handlebars->27->920" ] }, { @@ -16977,7 +17021,7 @@ "pt": "Cingalês", "ru": "Сингальский", "xloc": [ - "default.handlebars->27->918" + "default.handlebars->27->921" ] }, { @@ -17049,10 +17093,10 @@ "pt": "Hibernar", "ru": "Отправить в сон", "xloc": [ - "default-mobile.handlebars->9->101", - "default-mobile.handlebars->9->102", - "default-mobile.handlebars->9->103", - "default-mobile.handlebars->9->207", + "default-mobile.handlebars->9->104", + "default-mobile.handlebars->9->105", + "default-mobile.handlebars->9->106", + "default-mobile.handlebars->9->210", "default.handlebars->27->2", "default.handlebars->27->3", "default.handlebars->27->4", @@ -17084,8 +17128,8 @@ "pt": "Hibernando", "ru": "В режиме сна", "xloc": [ - "default-mobile.handlebars->9->108", - "default-mobile.handlebars->9->109", + "default-mobile.handlebars->9->111", + "default-mobile.handlebars->9->112", "default.handlebars->27->336", "default.handlebars->27->338" ] @@ -17100,7 +17144,7 @@ "pt": "Eslovaco", "ru": "Словацкий", "xloc": [ - "default.handlebars->27->920" + "default.handlebars->27->923" ] }, { @@ -17113,7 +17157,7 @@ "pt": "Esloveno", "ru": "Словенский", "xloc": [ - "default.handlebars->27->921" + "default.handlebars->27->924" ] }, { @@ -17183,7 +17227,7 @@ "pt": "Soft-Off", "ru": "Soft-Off", "xloc": [ - "default-mobile.handlebars->9->112", + "default-mobile.handlebars->9->115", "default.handlebars->27->344" ] }, @@ -17198,7 +17242,7 @@ "pt": "Grupo de agentes de software", "ru": "Группа программных агентов", "xloc": [ - "default-mobile.handlebars->9->58" + "default-mobile.handlebars->9->61" ] }, { @@ -17210,7 +17254,7 @@ "pt": "Somani", "ru": "Сомани", "xloc": [ - "default.handlebars->27->922" + "default.handlebars->27->925" ] }, { @@ -17222,7 +17266,7 @@ "pt": "Sorbian", "ru": "Сорбский", "xloc": [ - "default.handlebars->27->923" + "default.handlebars->27->926" ] }, { @@ -17331,7 +17375,7 @@ "pt": "Espanhol", "ru": "Испанский", "xloc": [ - "default.handlebars->27->924" + "default.handlebars->27->927" ] }, { @@ -17344,7 +17388,7 @@ "pt": "Espanhol (Argentina)", "ru": "Испанский (Аргентина)", "xloc": [ - "default.handlebars->27->925" + "default.handlebars->27->928" ] }, { @@ -17357,7 +17401,7 @@ "pt": "Espanhol (Bolívia)", "ru": "Испанский (Боливия)", "xloc": [ - "default.handlebars->27->926" + "default.handlebars->27->929" ] }, { @@ -17370,7 +17414,7 @@ "pt": "Espanhol (Chile)", "ru": "Испанский (Чили)", "xloc": [ - "default.handlebars->27->927" + "default.handlebars->27->930" ] }, { @@ -17383,7 +17427,7 @@ "pt": "Espanhol (Colômbia)", "ru": "Испанский (Колумбия)", "xloc": [ - "default.handlebars->27->928" + "default.handlebars->27->931" ] }, { @@ -17396,7 +17440,7 @@ "pt": "Espanhol (Costa Rica)", "ru": "Испанский (Коста-Рика)", "xloc": [ - "default.handlebars->27->929" + "default.handlebars->27->932" ] }, { @@ -17409,7 +17453,7 @@ "pt": "Espanhol (República Dominicana)", "ru": "Испанский (Доминиканская Республика)", "xloc": [ - "default.handlebars->27->930" + "default.handlebars->27->933" ] }, { @@ -17422,7 +17466,7 @@ "pt": "Espanhol (Equador)", "ru": "Испанский (Эквадор)", "xloc": [ - "default.handlebars->27->931" + "default.handlebars->27->934" ] }, { @@ -17435,7 +17479,7 @@ "pt": "Espanhol (El Salvador)", "ru": "Испанский (Сальвадор)", "xloc": [ - "default.handlebars->27->932" + "default.handlebars->27->935" ] }, { @@ -17448,7 +17492,7 @@ "pt": "Espanhol (Guatemala)", "ru": "Испанский (Гватемала)", "xloc": [ - "default.handlebars->27->933" + "default.handlebars->27->936" ] }, { @@ -17461,7 +17505,7 @@ "pt": "Espanhol (Honduras)", "ru": "Испанский (Гондурас)", "xloc": [ - "default.handlebars->27->934" + "default.handlebars->27->937" ] }, { @@ -17475,7 +17519,7 @@ "pt": "Espanhol (México)", "ru": "Испанский (Мексика)", "xloc": [ - "default.handlebars->27->935" + "default.handlebars->27->938" ] }, { @@ -17488,7 +17532,7 @@ "pt": "Espanhol (Nicarágua)", "ru": "Испанский (Никарагуа)", "xloc": [ - "default.handlebars->27->936" + "default.handlebars->27->939" ] }, { @@ -17501,7 +17545,7 @@ "pt": "Espanhol (Panamá)", "ru": "Испанский (Панама)", "xloc": [ - "default.handlebars->27->937" + "default.handlebars->27->940" ] }, { @@ -17514,7 +17558,7 @@ "pt": "Espanhol (Paraguai)", "ru": "Испанский (Парагвай)", "xloc": [ - "default.handlebars->27->938" + "default.handlebars->27->941" ] }, { @@ -17527,7 +17571,7 @@ "pt": "Espanhol (Peru)", "ru": "Испанский (Перу)", "xloc": [ - "default.handlebars->27->939" + "default.handlebars->27->942" ] }, { @@ -17540,7 +17584,7 @@ "pt": "Espanhol (Porto Rico)", "ru": "Испанский (Пуэрто-Рико)", "xloc": [ - "default.handlebars->27->940" + "default.handlebars->27->943" ] }, { @@ -17553,7 +17597,7 @@ "pt": "Espanhol (Espanha)", "ru": "Испанский (Испания)", "xloc": [ - "default.handlebars->27->941" + "default.handlebars->27->944" ] }, { @@ -17566,7 +17610,7 @@ "pt": "Espanhol (Uruguai)", "ru": "Испанский (Уругвай)", "xloc": [ - "default.handlebars->27->942" + "default.handlebars->27->945" ] }, { @@ -17579,7 +17623,7 @@ "pt": "Espanhol (Venezuela)", "ru": "Испанский (Венесуэла)", "xloc": [ - "default.handlebars->27->943" + "default.handlebars->27->946" ] }, { @@ -17593,7 +17637,7 @@ "pt": "Chaves especiais", "ru": "Специальные клавиши", "xloc": [ - "default-mobile.handlebars->9->230", + "default-mobile.handlebars->9->233", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3" ] }, @@ -17650,7 +17694,7 @@ "pt": "Status", "ru": "Статус", "xloc": [ - "default.handlebars->27->1410", + "default.handlebars->27->1413", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -17679,7 +17723,7 @@ "pt": "Parar processo #{0} \\\"{1}\\\"?", "ru": "Прервать процесс #{0} \\\"{1}\\\"?", "xloc": [ - "default-mobile.handlebars->9->235", + "default-mobile.handlebars->9->238", "default.handlebars->27->633" ] }, @@ -17694,7 +17738,7 @@ "pt": "Armazenamento excedido", "ru": "Место для хранения превышено", "xloc": [ - "default-mobile.handlebars->9->69" + "default-mobile.handlebars->9->72" ] }, { @@ -17707,7 +17751,7 @@ "pt": "O limite de armazenamento excede", "ru": "Превышен лимит места для хранения", "xloc": [ - "default.handlebars->27->1212" + "default.handlebars->27->1215" ] }, { @@ -17721,7 +17765,7 @@ "pt": "Forte", "ru": "Надежный", "xloc": [ - "default.handlebars->27->1014" + "default.handlebars->27->1017" ] }, { @@ -17735,10 +17779,10 @@ "pt": "Senha forte", "ru": "Надежный пароль", "xloc": [ - "login-mobile.handlebars->5->20", - "login-mobile.handlebars->5->24", - "login.handlebars->5->20", - "login.handlebars->5->24" + "login-mobile.handlebars->5->23", + "login-mobile.handlebars->5->27", + "login.handlebars->5->23", + "login.handlebars->5->27" ] }, { @@ -17786,7 +17830,7 @@ "pt": "Sutu", "ru": "Суту", "xloc": [ - "default.handlebars->27->944" + "default.handlebars->27->947" ] }, { @@ -17798,7 +17842,7 @@ "pt": "Suaíli", "ru": "Суахили", "xloc": [ - "default.handlebars->27->945" + "default.handlebars->27->948" ] }, { @@ -17810,7 +17854,7 @@ "pt": "Sueco", "ru": "Шведский", "xloc": [ - "default.handlebars->27->946" + "default.handlebars->27->949" ] }, { @@ -17822,7 +17866,7 @@ "pt": "Sueco (Finlândia)", "ru": "Шведский (Финляндия)", "xloc": [ - "default.handlebars->27->947" + "default.handlebars->27->950" ] }, { @@ -17834,7 +17878,7 @@ "pt": "Sueco (Suécia)", "ru": "Шведский (Швеция)", "xloc": [ - "default.handlebars->27->948" + "default.handlebars->27->951" ] }, { @@ -17845,7 +17889,7 @@ "nl": "Synchroniseer serverapparaatnaam met hostnaam", "ru": "Синхронизировать имя устройства на сервере с именем хоста", "xloc": [ - "default.handlebars->27->1132" + "default.handlebars->27->1135" ] }, { @@ -17902,7 +17946,7 @@ "pt": "TLS", "ru": "TLS", "xloc": [ - "default-mobile.handlebars->9->183", + "default-mobile.handlebars->9->186", "default.handlebars->27->462" ] }, @@ -17924,7 +17968,7 @@ "pt": "Segurança TLS necessária", "ru": "Требуется безопасность TLS", "xloc": [ - "default-mobile.handlebars->9->216", + "default-mobile.handlebars->9->219", "default.handlebars->27->228", "default.handlebars->27->549" ] @@ -17965,9 +18009,9 @@ "pt": "Tags", "ru": "Теги", "xloc": [ - "default-mobile.handlebars->9->197", - "default-mobile.handlebars->9->198", - "default-mobile.handlebars->9->225", + "default-mobile.handlebars->9->200", + "default-mobile.handlebars->9->201", + "default-mobile.handlebars->9->228", "default.handlebars->27->601", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] @@ -17981,7 +18025,7 @@ "pt": "Tâmil", "ru": "Тамильский", "xloc": [ - "default.handlebars->27->949" + "default.handlebars->27->952" ] }, { @@ -17993,7 +18037,7 @@ "pt": "Tatar", "ru": "Татарский", "xloc": [ - "default.handlebars->27->950" + "default.handlebars->27->953" ] }, { @@ -18005,7 +18049,7 @@ "pt": "Teluga", "ru": "Телугу", "xloc": [ - "default.handlebars->27->951" + "default.handlebars->27->954" ] }, { @@ -18019,7 +18063,7 @@ "pt": "Terminal", "ru": "Терминал", "xloc": [ - "default.handlebars->27->1124", + "default.handlebars->27->1127", "default.handlebars->27->418", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal" @@ -18049,7 +18093,7 @@ "pt": "Notificação - terminal", "ru": "Терминал уведомление", "xloc": [ - "default.handlebars->27->1046" + "default.handlebars->27->1049" ] }, { @@ -18062,7 +18106,7 @@ "pt": "Prompt do terminal", "ru": "Запрос терминала", "xloc": [ - "default.handlebars->27->1045" + "default.handlebars->27->1048" ] }, { @@ -18106,7 +18150,7 @@ "pt": "Thai", "ru": "Тайский", "xloc": [ - "default.handlebars->27->952" + "default.handlebars->27->955" ] }, { @@ -18160,7 +18204,7 @@ "pt": "Atualmente não há notificações", "ru": "На данный момент уведомлений нет", "xloc": [ - "default.handlebars->27->1444" + "default.handlebars->27->1447" ] }, { @@ -18200,8 +18244,8 @@ "pt": "Esta conta não tem direitos para criar um novo grupo de dispositivos.", "ru": "Эта учетная запись не имеет прав для создания новой группы устройств.", "xloc": [ - "default-mobile.handlebars->9->51", - "default.handlebars->27->1000" + "default-mobile.handlebars->9->54", + "default.handlebars->27->1003" ] }, { @@ -18214,7 +18258,7 @@ "pt": "Esta não é uma política segura, pois os agentes estarão executando a ativação.", "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.", "xloc": [ - "default.handlebars->27->1112" + "default.handlebars->27->1115" ] }, { @@ -18241,7 +18285,7 @@ "pt": "Esta política não afetará os dispositivos com Intel® AMT no modo ACM.", "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.", "xloc": [ - "default.handlebars->27->1111" + "default.handlebars->27->1114" ] }, { @@ -18317,7 +18361,7 @@ "pt": "Tigre", "ru": "Тигровый", "xloc": [ - "default.handlebars->27->953" + "default.handlebars->27->956" ] }, { @@ -18422,7 +18466,7 @@ "pt": "Para excluir esta conta, digite a senha da conta nas duas caixas abaixo e pressione ok.", "ru": "Чтобы удалить эту учетную запись, введите пароль учетной записи в оба поля и нажмите ОК.", "xloc": [ - "default.handlebars->27->987" + "default.handlebars->27->990" ] }, { @@ -18732,7 +18776,7 @@ "pt": "Tsonga", "ru": "Тсонга", "xloc": [ - "default.handlebars->27->954" + "default.handlebars->27->957" ] }, { @@ -18744,7 +18788,7 @@ "pt": "Tswana", "ru": "Тсвана", "xloc": [ - "default.handlebars->27->955" + "default.handlebars->27->958" ] }, { @@ -18756,7 +18800,7 @@ "pt": "turco", "ru": "Турецкий", "xloc": [ - "default.handlebars->27->956" + "default.handlebars->27->959" ] }, { @@ -18768,7 +18812,7 @@ "pt": "Turcomano", "ru": "Туркменский", "xloc": [ - "default.handlebars->27->957" + "default.handlebars->27->960" ] }, { @@ -18794,12 +18838,12 @@ "pt": "Tipo", "ru": "Удаленный ввод", "xloc": [ - "default-mobile.handlebars->9->279", - "default-mobile.handlebars->9->57", - "default.handlebars->27->1007", - "default.handlebars->27->1036", - "default.handlebars->27->1088", + "default-mobile.handlebars->9->282", + "default-mobile.handlebars->9->60", + "default.handlebars->27->1010", + "default.handlebars->27->1039", "default.handlebars->27->1091", + "default.handlebars->27->1094", "default.handlebars->27->626", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] @@ -18814,7 +18858,7 @@ "pt": "Digite um nome de chave, selecione a caixa OTP e pressione o botão no YubiKeytrade;.", "ru": "Введите имя ключа, выберите поле OTP и нажмите кнопку на YubiKey™.", "xloc": [ - "default.handlebars->27->766" + "default.handlebars->27->769" ] }, { @@ -18827,7 +18871,7 @@ "pt": "Digite o nome da chave a ser adicionada.", "ru": "Введите имя ключа для добавления.", "xloc": [ - "default.handlebars->27->763" + "default.handlebars->27->766" ] }, { @@ -18854,7 +18898,7 @@ "pt": "ucraniano", "ru": "Украинский", "xloc": [ - "default.handlebars->27->958" + "default.handlebars->27->961" ] }, { @@ -18867,7 +18911,7 @@ "pt": "Não foi possível acessar um dispositivo até que um endereço de email seja verificado. Isso é necessário para a recuperação de senha. Vá para a guia \\\"Minha conta\\\" para alterar e verificar um endereço de email.", "ru": "Невозможно получить доступ к устройству, пока адрес email не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес email.", "xloc": [ - "default.handlebars->27->1002", + "default.handlebars->27->1005", "default.handlebars->27->434" ] }, @@ -18881,8 +18925,8 @@ "pt": "Não foi possível acessar um dispositivo até que um endereço de email seja verificado. Isso é necessário para a recuperação de senha. Vá para \\\"Minha conta\\\" para alterar e verificar um endereço de email.", "ru": "Невозможно получить доступ к устройству, пока адрес email не подтвержден. Это необходимо для восстановления пароля. Перейдите в раздел \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес email.", "xloc": [ - "default-mobile.handlebars->9->130", - "default-mobile.handlebars->9->53" + "default-mobile.handlebars->9->133", + "default-mobile.handlebars->9->56" ] }, { @@ -18895,8 +18939,8 @@ "pt": "Não foi possível acessar um dispositivo até que a autenticação de dois fatores esteja ativada. Isso é necessário para segurança extra. Vá para \\\"Minha conta\\\" e veja a seção \\\"Segurança da conta\\\".", "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите в раздел \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "xloc": [ - "default-mobile.handlebars->9->132", - "default-mobile.handlebars->9->55" + "default-mobile.handlebars->9->135", + "default-mobile.handlebars->9->58" ] }, { @@ -18909,7 +18953,7 @@ "pt": "Não foi possível acessar um dispositivo até que a autenticação de dois fatores esteja ativada. Isso é necessário para segurança extra. Vá para a guia \\\"Minha conta\\\" e consulte a seção \\\"Segurança da conta\\\".", "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите на вкладку \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "xloc": [ - "default.handlebars->27->1004", + "default.handlebars->27->1007", "default.handlebars->27->436" ] }, @@ -18936,8 +18980,8 @@ "nl": "Kan geen account maken.", "ru": "Невозможно создать учетную запись.", "xloc": [ - "login-mobile.handlebars->5->2", - "login.handlebars->5->2" + "login-mobile.handlebars->5->3", + "login.handlebars->5->3" ] }, { @@ -18976,8 +19020,8 @@ "nl": "Kan geen e-mail verzenden.", "ru": "Не удалось отправить email.", "xloc": [ - "login-mobile.handlebars->5->11", - "login.handlebars->5->11" + "login-mobile.handlebars->5->12", + "login.handlebars->5->12" ] }, { @@ -18989,8 +19033,8 @@ "nl": "deinstallatie", "ru": "Удаление", "xloc": [ - "default-mobile.handlebars->9->326", - "default.handlebars->27->1183" + "default-mobile.handlebars->9->329", + "default.handlebars->27->1186" ] }, { @@ -19002,8 +19046,8 @@ "nl": "deinstallatie agent", "ru": "Удаление агента", "xloc": [ - "default-mobile.handlebars->9->308", - "default.handlebars->27->1159", + "default-mobile.handlebars->9->311", + "default.handlebars->27->1162", "default.handlebars->27->368", "default.handlebars->27->539" ] @@ -19031,12 +19075,12 @@ "pt": "Desconhecido", "ru": "Неизвестно", "xloc": [ - "default-mobile.handlebars->9->126", - "default-mobile.handlebars->9->143", - "default-mobile.handlebars->9->171", - "default-mobile.handlebars->9->172", + "default-mobile.handlebars->9->129", + "default-mobile.handlebars->9->146", + "default-mobile.handlebars->9->174", + "default-mobile.handlebars->9->175", "default.handlebars->27->13", - "default.handlebars->27->1435", + "default.handlebars->27->1438", "default.handlebars->27->364", "default.handlebars->27->41", "default.handlebars->27->42", @@ -19057,8 +19101,8 @@ "pt": "Desconhecido # {0}", "ru": "Неизвестно #{0}", "xloc": [ - "default-mobile.handlebars->9->273", - "default.handlebars->27->1030" + "default-mobile.handlebars->9->276", + "default.handlebars->27->1033" ] }, { @@ -19069,7 +19113,7 @@ "nl": "Onbekende actie", "ru": "Неизвестное действие", "xloc": [ - "default.handlebars->27->1456" + "default.handlebars->27->1459" ] }, { @@ -19080,9 +19124,9 @@ "nl": "Onbekende apparaatgroep", "ru": "Неизвестная группа устройств", "xloc": [ - "default.handlebars->27->1349", - "default.handlebars->27->1423", - "default.handlebars->27->1460" + "default.handlebars->27->1352", + "default.handlebars->27->1426", + "default.handlebars->27->1463" ] }, { @@ -19093,7 +19137,7 @@ "nl": "Onbekende groep", "ru": "Неизвестная группа", "xloc": [ - "default.handlebars->27->1452" + "default.handlebars->27->1455" ] }, { @@ -19107,7 +19151,7 @@ "pt": "Estado desconhecido", "ru": "Состояние неизвестно", "xloc": [ - "default-mobile.handlebars->9->178", + "default-mobile.handlebars->9->181", "default.handlebars->27->454" ] }, @@ -19119,7 +19163,7 @@ "nl": "Onbekende gebruikersgroep", "ru": "Неизвестная группа пользователей", "xloc": [ - "default.handlebars->27->1431" + "default.handlebars->27->1434" ] }, { @@ -19133,7 +19177,7 @@ "pt": "Estado da versão desconhecida", "ru": "Версия и состояние неизвестны", "xloc": [ - "default-mobile.handlebars->9->180", + "default-mobile.handlebars->9->183", "default.handlebars->27->456" ] }, @@ -19180,7 +19224,7 @@ "nl": "Bijgewerkt", "ru": "Актуально", "xloc": [ - "default.handlebars->27->1514" + "default.handlebars->27->1517" ] }, { @@ -19210,11 +19254,11 @@ "pt": "Subir arquivo", "ru": "Загрузить файл", "xloc": [ - "default-mobile.handlebars->9->253", - "default-mobile.handlebars->9->271", - "default-mobile.handlebars->9->85", - "default.handlebars->27->1235", - "default.handlebars->27->1243", + "default-mobile.handlebars->9->256", + "default-mobile.handlebars->9->274", + "default-mobile.handlebars->9->88", + "default.handlebars->27->1238", + "default.handlebars->27->1246", "default.handlebars->27->660", "default.handlebars->27->683", "default.handlebars->27->686", @@ -19281,7 +19325,7 @@ "nl": "Upload overschrijft {0} bestand. Doorgaan?", "ru": "Загрузка перезапишет 1 файл. Продолжить?", "xloc": [ - "default.handlebars->27->1244", + "default.handlebars->27->1247", "default.handlebars->27->684" ] }, @@ -19293,7 +19337,7 @@ "nl": "Upload overschrijft {0} bestanden. Doorgaan?", "ru": "Загрузка перезапишет {0} файлов. Продолжить?", "xloc": [ - "default.handlebars->27->1245", + "default.handlebars->27->1248", "default.handlebars->27->685" ] }, @@ -19316,7 +19360,7 @@ "pt": "Sorábio superior", "ru": "Верхний Сорбский", "xloc": [ - "default.handlebars->27->959" + "default.handlebars->27->962" ] }, { @@ -19328,7 +19372,7 @@ "pt": "urdu", "ru": "Урду", "xloc": [ - "default.handlebars->27->960" + "default.handlebars->27->963" ] }, { @@ -19356,7 +19400,7 @@ "pt": "Use a versão desktop deste site para adicionar dispositivos.", "ru": "Чтобы добавить устройства, используйте настольную версию этого сайта.", "xloc": [ - "default-mobile.handlebars->9->99" + "default-mobile.handlebars->9->102" ] }, { @@ -19369,8 +19413,8 @@ "pt": "Usava", "ru": "Использовано", "xloc": [ - "default.handlebars->27->1446", - "default.handlebars->27->1448" + "default.handlebars->27->1449", + "default.handlebars->27->1451" ] }, { @@ -19384,10 +19428,10 @@ "pt": "Do utilizador", "ru": "Пользователь", "xloc": [ - "default-mobile.handlebars->9->328", - "default.handlebars->27->1085", - "default.handlebars->27->1271", - "default.handlebars->27->1344", + "default-mobile.handlebars->9->331", + "default.handlebars->27->1088", + "default.handlebars->27->1274", + "default.handlebars->27->1347", "default.handlebars->27->182" ] }, @@ -19401,7 +19445,7 @@ "pt": "Usuário + Arquivos", "ru": "Пользователь + Файлы", "xloc": [ - "default.handlebars->27->1272" + "default.handlebars->27->1275" ] }, { @@ -19414,10 +19458,10 @@ "pt": "Importação de conta de usuário", "ru": "Импорт учетной записи пользователя", "xloc": [ - "default.handlebars->27->1279", - "default.handlebars->27->1280", "default.handlebars->27->1282", - "default.handlebars->27->1284" + "default.handlebars->27->1283", + "default.handlebars->27->1285", + "default.handlebars->27->1287" ] }, { @@ -19428,7 +19472,7 @@ "nl": "Gebruikersaccounts", "ru": "Учетные записи пользователей", "xloc": [ - "default.handlebars->27->1465" + "default.handlebars->27->1468" ] }, { @@ -19441,8 +19485,8 @@ "pt": "Autorizações de usuário", "ru": "Полномочия пользователя", "xloc": [ - "default-mobile.handlebars->9->281", - "default.handlebars->27->1080" + "default-mobile.handlebars->9->284", + "default.handlebars->27->1083" ] }, { @@ -19456,7 +19500,7 @@ "pt": "Consentimento do Usuário", "ru": "Согласие пользователя", "xloc": [ - "default.handlebars->27->1052" + "default.handlebars->27->1055" ] }, { @@ -19467,9 +19511,9 @@ "nl": "Gebruikers Groep", "ru": "Группа пользователей", "xloc": [ - "default.handlebars->27->1138", - "default.handlebars->27->1327", - "default.handlebars->27->1438" + "default.handlebars->27->1141", + "default.handlebars->27->1330", + "default.handlebars->27->1441" ] }, { @@ -19491,7 +19535,7 @@ "nl": "Gebruikersgroeps lidmaatschap", "ru": "Членство в группах пользователей", "xloc": [ - "default.handlebars->27->1430" + "default.handlebars->27->1433" ] }, { @@ -19504,8 +19548,8 @@ "pt": "Identificador do usuário", "ru": "Идентификатор пользователя", "xloc": [ - "default.handlebars->27->1186", - "default.handlebars->27->1379" + "default.handlebars->27->1189", + "default.handlebars->27->1382" ] }, { @@ -19518,7 +19562,7 @@ "pt": "Exportação da lista de usuários", "ru": "Экспортировать список пользователей", "xloc": [ - "default.handlebars->27->1291" + "default.handlebars->27->1294" ] }, { @@ -19532,7 +19576,7 @@ "pt": "Nome de Usuário", "ru": "Имя пользователя", "xloc": [ - "default.handlebars->27->1185" + "default.handlebars->27->1188" ] }, { @@ -19546,8 +19590,8 @@ "pt": "Nomes de usuário", "ru": "Имена пользователей", "xloc": [ - "default.handlebars->27->1136", - "default.handlebars->27->1368" + "default.handlebars->27->1139", + "default.handlebars->27->1371" ] }, { @@ -19573,7 +19617,7 @@ "pt": "Sessões de Usuário", "ru": "Сессии пользователя", "xloc": [ - "default.handlebars->27->1482" + "default.handlebars->27->1485" ] }, { @@ -19602,8 +19646,8 @@ "pt": "Valor do navegador do usuário", "ru": "Использовать настройки браузера", "xloc": [ - "default.handlebars->27->969", - "default.handlebars->27->971" + "default.handlebars->27->972", + "default.handlebars->27->974" ] }, { @@ -19648,8 +19692,8 @@ "pt": "Nome de usuário", "ru": "Имя пользователя", "xloc": [ - "default-mobile.handlebars->9->212", - "default.handlebars->27->1297", + "default-mobile.handlebars->9->215", + "default.handlebars->27->1300", "default.handlebars->27->223", "default.handlebars->27->253", "default.handlebars->27->545", @@ -19666,8 +19710,8 @@ "nl": "Gebruikersnaam bestaat al.", "ru": "Имя пользователя уже существует.", "xloc": [ - "login-mobile.handlebars->5->6", - "login.handlebars->5->6" + "login-mobile.handlebars->5->7", + "login.handlebars->5->7" ] }, { @@ -19698,9 +19742,9 @@ "pt": "Usuários", "ru": "Пользователи", "xloc": [ - "default.handlebars->27->1326", - "default.handlebars->27->1337", - "default.handlebars->27->1481", + "default.handlebars->27->1329", + "default.handlebars->27->1340", + "default.handlebars->27->1484", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -19712,7 +19756,7 @@ "nl": "gebruikers Sessies", "ru": "Сессии пользователей", "xloc": [ - "default.handlebars->27->1469" + "default.handlebars->27->1472" ] }, { @@ -19737,7 +19781,7 @@ "pt": "Venda", "ru": "Венда", "xloc": [ - "default.handlebars->27->961" + "default.handlebars->27->964" ] }, { @@ -19828,7 +19872,7 @@ "pt": "vietnamita", "ru": "Вьетнамский", "xloc": [ - "default.handlebars->27->962" + "default.handlebars->27->965" ] }, { @@ -19868,7 +19912,7 @@ "pt": "Ver notas sobre este grupo de dispositivos", "ru": "Посмотреть примечания этой группы устройств", "xloc": [ - "default.handlebars->27->1065" + "default.handlebars->27->1068" ] }, { @@ -19881,7 +19925,7 @@ "pt": "Ver notas sobre este usuário", "ru": "Посмотреть примечания об этом пользователе", "xloc": [ - "default.handlebars->27->1402" + "default.handlebars->27->1405" ] }, { @@ -19893,7 +19937,7 @@ "pt": "Volapuk", "ru": "Волапукский", "xloc": [ - "default.handlebars->27->963" + "default.handlebars->27->966" ] }, { @@ -19932,10 +19976,10 @@ "pt": "Reativar dispositivo", "ru": "Разбудить устройства", "xloc": [ - "default-mobile.handlebars->9->304", - "default-mobile.handlebars->9->317", - "default.handlebars->27->1155", - "default.handlebars->27->1173" + "default-mobile.handlebars->9->307", + "default-mobile.handlebars->9->320", + "default.handlebars->27->1158", + "default.handlebars->27->1176" ] }, { @@ -19948,7 +19992,7 @@ "pt": "Ligar", "ru": "Разбудить", "xloc": [ - "default-mobile.handlebars->9->206", + "default-mobile.handlebars->9->209", "default.handlebars->27->534" ] }, @@ -19974,7 +20018,7 @@ "pt": "valão", "ru": "Валлонский", "xloc": [ - "default.handlebars->27->964" + "default.handlebars->27->967" ] }, { @@ -19988,7 +20032,7 @@ "pt": "Fraco", "ru": "Слабый", "xloc": [ - "default.handlebars->27->1016" + "default.handlebars->27->1019" ] }, { @@ -20002,10 +20046,10 @@ "pt": "Senha fraca", "ru": "Слабый пароль", "xloc": [ - "login-mobile.handlebars->5->22", - "login-mobile.handlebars->5->26", - "login.handlebars->5->22", - "login.handlebars->5->26" + "login-mobile.handlebars->5->25", + "login-mobile.handlebars->5->29", + "login.handlebars->5->25", + "login.handlebars->5->29" ] }, { @@ -20019,8 +20063,8 @@ "pt": "Servidor web", "ru": "Веб-сервер", "xloc": [ - "default.handlebars->27->1501", - "default.handlebars->27->1502" + "default.handlebars->27->1504", + "default.handlebars->27->1505" ] }, { @@ -20034,7 +20078,7 @@ "pt": "Solicitações de servidor Web", "ru": "Запросы веб-сервера", "xloc": [ - "default.handlebars->27->1503" + "default.handlebars->27->1506" ] }, { @@ -20048,7 +20092,7 @@ "pt": "Encaminhador de soquete da Web", "ru": "Ретранслятор Web Socket", "xloc": [ - "default.handlebars->27->1504" + "default.handlebars->27->1507" ] }, { @@ -20089,7 +20133,14 @@ "pt": "galês", "ru": "Уэльский", "xloc": [ - "default.handlebars->27->965" + "default.handlebars->27->968" + ] + }, + { + "en": "When enabled, on each login, you will be given the option to receive a login token to you email account for added security.", + "xloc": [ + "default-mobile.handlebars->9->31", + "default.handlebars->27->760" ] }, { @@ -20103,7 +20154,7 @@ "pt": "Será alterado no próximo login.", "ru": "Будет изменено при следующем входе в систему.", "xloc": [ - "default.handlebars->27->1387" + "default.handlebars->27->1390" ] }, { @@ -20329,7 +20380,7 @@ "pt": "Windows 32 Bits console", "ru": "Консоль Windows 32bit", "xloc": [ - "default-mobile.handlebars->9->144", + "default-mobile.handlebars->9->147", "default.handlebars->27->14" ] }, @@ -20343,7 +20394,7 @@ "pt": "Serviço Windows 32 Bits", "ru": "Служба Windows 32bit", "xloc": [ - "default-mobile.handlebars->9->146", + "default-mobile.handlebars->9->149", "default.handlebars->27->16" ] }, @@ -20371,7 +20422,7 @@ "pt": "Windows 64 Bits console", "ru": "Консоль Windows 64bit", "xloc": [ - "default-mobile.handlebars->9->145", + "default-mobile.handlebars->9->148", "default.handlebars->27->15" ] }, @@ -20385,7 +20436,7 @@ "pt": "Serviço Windows 64 Bits", "ru": "Служба Windows 64bit", "xloc": [ - "default-mobile.handlebars->9->147", + "default-mobile.handlebars->9->150", "default.handlebars->27->17" ] }, @@ -20399,7 +20450,7 @@ "pt": "Windows MinCore console", "ru": "Консоль Windows MinCore", "xloc": [ - "default-mobile.handlebars->9->164", + "default-mobile.handlebars->9->167", "default.handlebars->27->34" ] }, @@ -20413,7 +20464,7 @@ "pt": "Windows MinCore service", "ru": "Служба Windows MinCore", "xloc": [ - "default-mobile.handlebars->9->165", + "default-mobile.handlebars->9->168", "default.handlebars->27->35" ] }, @@ -20519,7 +20570,7 @@ "pt": "XENx86", "ru": "XENx86", "xloc": [ - "default-mobile.handlebars->9->151", + "default-mobile.handlebars->9->154", "default.handlebars->27->21" ] }, @@ -20546,7 +20597,7 @@ "pt": "Xhosa", "ru": "Кос", "xloc": [ - "default.handlebars->27->966" + "default.handlebars->27->969" ] }, { @@ -20559,7 +20610,7 @@ "pt": "Iídiche", "ru": "Идиш", "xloc": [ - "default.handlebars->27->967" + "default.handlebars->27->970" ] }, { @@ -20613,7 +20664,7 @@ "pt": "YubiKey™ OTP", "ru": "YubiKey™ OTP", "xloc": [ - "default.handlebars->27->769" + "default.handlebars->27->772" ] }, { @@ -20667,7 +20718,7 @@ "pt": "Zulu", "ru": "Зулусский", "xloc": [ - "default.handlebars->27->968" + "default.handlebars->27->971" ] }, { @@ -20681,9 +20732,9 @@ "pt": "\\\\", "ru": "\\\\", "xloc": [ - "default-mobile.handlebars->9->239", - "default-mobile.handlebars->9->240", - "default-mobile.handlebars->9->241" + "default-mobile.handlebars->9->242", + "default-mobile.handlebars->9->243", + "default-mobile.handlebars->9->244" ] }, { @@ -20697,7 +20748,7 @@ "pt": "\\\\'", "ru": "\\\\'", "xloc": [ - "default.handlebars->27->1512" + "default.handlebars->27->1515" ] }, { @@ -20795,8 +20846,8 @@ "pt": "Copiar", "ru": "копировать", "xloc": [ - "default-mobile.handlebars->9->89", - "default.handlebars->27->1240" + "default-mobile.handlebars->9->92", + "default.handlebars->27->1243" ] }, { @@ -20844,8 +20895,8 @@ "pt": "eventslist.csv", "ru": "eventslist.csv", "xloc": [ - "default.handlebars->27->1249", - "default.handlebars->27->1254" + "default.handlebars->27->1252", + "default.handlebars->27->1257" ] }, { @@ -20859,8 +20910,8 @@ "pt": "eventslist.json", "ru": "eventslist.json", "xloc": [ - "default.handlebars->27->1251", - "default.handlebars->27->1255" + "default.handlebars->27->1254", + "default.handlebars->27->1258" ] }, { @@ -20888,7 +20939,7 @@ "pt": "livre", "ru": "свободно", "xloc": [ - "default.handlebars->27->1477" + "default.handlebars->27->1480" ] }, { @@ -21033,7 +21084,7 @@ "pt": "id, nome, email, criação, último login, grupos, fatores de autenticação", "ru": "id, name, email, creation, lastlogin, groups, authfactors", "xloc": [ - "default.handlebars->27->1292" + "default.handlebars->27->1295" ] }, { @@ -21082,8 +21133,8 @@ "pt": "Mover", "ru": "переместить", "xloc": [ - "default-mobile.handlebars->9->90", - "default.handlebars->27->1241" + "default-mobile.handlebars->9->93", + "default.handlebars->27->1244" ] }, { @@ -21108,7 +21159,7 @@ "pt": "servererrors.txt", "ru": "servererrors.txt", "xloc": [ - "default.handlebars->27->1029" + "default.handlebars->27->1032" ] }, { @@ -21122,7 +21173,7 @@ "pt": "servertrace.csv", "ru": "servertrace.csv", "xloc": [ - "default.handlebars->27->1511" + "default.handlebars->27->1514" ] }, { @@ -21159,7 +21210,7 @@ "pt": "tempo, conn.agente, conn.usuários.usersessions, conn.relaysession, conn.intelamt, mem.externo mem.amontoado, mem.heaptotal, mem.rss", "ru": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "xloc": [ - "default.handlebars->27->1490" + "default.handlebars->27->1493" ] }, { @@ -21171,7 +21222,7 @@ "pt": "hora, fonte, mensagem", "ru": "time, source, message", "xloc": [ - "default.handlebars->27->1510" + "default.handlebars->27->1513" ] }, { @@ -21194,7 +21245,7 @@ "pt": "total", "ru": "всего", "xloc": [ - "default.handlebars->27->1478" + "default.handlebars->27->1481" ] }, { @@ -21238,8 +21289,8 @@ "pt": "Lista de usuários.csv", "ru": "userlist.csv", "xloc": [ - "default.handlebars->27->1288", - "default.handlebars->27->1293" + "default.handlebars->27->1291", + "default.handlebars->27->1296" ] }, { @@ -21253,15 +21304,15 @@ "pt": "Lista de usuários.json", "ru": "userlist.json", "xloc": [ - "default.handlebars->27->1290", - "default.handlebars->27->1294" + "default.handlebars->27->1293", + "default.handlebars->27->1297" ] }, { "en": "utc, time, type, action, user, device, message", "nl": "utc, tiid, type, actie, bebruiker, apparaat, bericht", "xloc": [ - "default.handlebars->27->1253" + "default.handlebars->27->1256" ] }, { @@ -21284,7 +21335,7 @@ "pt": "{0} Gb", "ru": "{0} Гб", "xloc": [ - "default.handlebars->27->1221" + "default.handlebars->27->1224" ] }, { @@ -21298,7 +21349,7 @@ "pt": "{0} Kb", "ru": "{0} Kб", "xloc": [ - "default.handlebars->27->1219" + "default.handlebars->27->1222" ] }, { @@ -21312,7 +21363,7 @@ "pt": "{0} Mb", "ru": "{0} Mб", "xloc": [ - "default.handlebars->27->1220" + "default.handlebars->27->1223" ] }, { @@ -21340,7 +21391,7 @@ "pt": "{0} sessões ativas", "ru": "{0} активных сессий", "xloc": [ - "default.handlebars->27->1408" + "default.handlebars->27->1411" ] }, { @@ -21354,7 +21405,7 @@ "pt": "{0} b", "ru": "{0} байт", "xloc": [ - "default.handlebars->27->1218" + "default.handlebars->27->1221" ] }, { @@ -21368,8 +21419,8 @@ "pt": "{0} bytes", "ru": "{0} байт", "xloc": [ - "default-mobile.handlebars->9->78", - "default.handlebars->27->1228" + "default-mobile.handlebars->9->81", + "default.handlebars->27->1231" ] }, { @@ -21383,7 +21434,7 @@ "pt": "{0} bytes restantes", "ru": "{0} байт осталось", "xloc": [ - "default.handlebars->27->1213" + "default.handlebars->27->1216" ] }, { @@ -21397,7 +21448,7 @@ "pt": "{0} gigabytes restantes", "ru": "{0} гигабайт осталось", "xloc": [ - "default.handlebars->27->1216" + "default.handlebars->27->1219" ] }, { @@ -21411,7 +21462,7 @@ "pt": "{0} grupos", "ru": "{0} групп", "xloc": [ - "default.handlebars->27->1392" + "default.handlebars->27->1395" ] }, { @@ -21447,7 +21498,7 @@ "pt": "{0} kilobytes restantes", "ru": "{0} килобайт осталось", "xloc": [ - "default.handlebars->27->1214" + "default.handlebars->27->1217" ] }, { @@ -21461,8 +21512,8 @@ "pt": "{0} letras minúsculas", "ru": "{0} букв в нижнем регистре", "xloc": [ - "login-mobile.handlebars->5->31", - "login.handlebars->5->31" + "login-mobile.handlebars->5->34", + "login.handlebars->5->34" ] }, { @@ -21476,7 +21527,7 @@ "pt": "{0} megabytes restantes", "ru": "{0} мегабайт осталось", "xloc": [ - "default.handlebars->27->1215" + "default.handlebars->27->1218" ] }, { @@ -21512,7 +21563,7 @@ "pt": "{0} mais usuários não exibidos, use a caixa de pesquisa para procurar usuários ...", "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей...", "xloc": [ - "default.handlebars->27->1263" + "default.handlebars->27->1266" ] }, { @@ -21540,8 +21591,8 @@ "pt": "{0} não alfanumérico", "ru": "{0} спец. символы", "xloc": [ - "login-mobile.handlebars->5->33", - "login.handlebars->5->33" + "login-mobile.handlebars->5->36", + "login.handlebars->5->36" ] }, { @@ -21555,8 +21606,8 @@ "pt": "{0} numérico", "ru": "{0} цифры", "xloc": [ - "login-mobile.handlebars->5->32", - "login.handlebars->5->32" + "login-mobile.handlebars->5->35", + "login.handlebars->5->35" ] }, { @@ -21618,7 +21669,7 @@ "pt": "{0} sessões", "ru": "{0} сессий", "xloc": [ - "default.handlebars->27->1267" + "default.handlebars->27->1270" ] }, { @@ -21660,8 +21711,8 @@ "pt": "{0} maiúsculas", "ru": "{0} заглавных букв", "xloc": [ - "login-mobile.handlebars->5->30", - "login.handlebars->5->30" + "login-mobile.handlebars->5->33", + "login.handlebars->5->33" ] }, { @@ -21689,7 +21740,7 @@ "pt": "{0}b restante", "ru": "{0} байт осталось", "xloc": [ - "default-mobile.handlebars->9->70" + "default-mobile.handlebars->9->73" ] }, { @@ -21703,7 +21754,7 @@ "pt": "{0}g restante", "ru": "{0} гигабайт осталось", "xloc": [ - "default-mobile.handlebars->9->73" + "default-mobile.handlebars->9->76" ] }, { @@ -21717,7 +21768,7 @@ "pt": "{0} k em 1 arquivo. {1} k no máximo", "ru": "{0}k в 1 файле. {1}k максимум", "xloc": [ - "default.handlebars->27->1223" + "default.handlebars->27->1226" ] }, { @@ -21731,7 +21782,7 @@ "pt": "{0} k em {1} arquivos. {2} k no máximo", "ru": "{0}k в {1} файлах. {2}k максимум", "xloc": [ - "default.handlebars->27->1222" + "default.handlebars->27->1225" ] }, { @@ -21745,7 +21796,7 @@ "pt": "{0}k restante", "ru": "{0} килобайт осталось", "xloc": [ - "default-mobile.handlebars->9->71" + "default-mobile.handlebars->9->74" ] }, { @@ -21759,7 +21810,7 @@ "pt": "{0}m restante", "ru": "{0} мегабайт осталось", "xloc": [ - "default-mobile.handlebars->9->72" + "default-mobile.handlebars->9->75" ] }, { @@ -21853,6 +21904,7 @@ "xloc": [ "default.handlebars->container->column_l->p13->p13filetable->p13bigok->0", "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageAuthApp->0->authAppSetupCheck->0", + "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageEmail2FA->0->authEmailSetupCheck->0", "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageHardwareOtp->0->authKeySetupCheck->0", "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageOtp->0->authCodesSetupCheck->0", "default.handlebars->container->column_l->p5->p5filetable->bigok->0", diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars index 871899a5..86d0cfa8 100644 --- a/views/default-mobile.handlebars +++ b/views/default-mobile.handlebars @@ -252,6 +252,7 @@
Account Security