From db2577b897a6dc1a8c06c0f707f7746a3ad8ffd8 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Tue, 4 Feb 2020 16:22:00 -0800 Subject: [PATCH] Internalization improvements. --- MeshCentralServer.njsproj | 1 - agents/meshcore.js | 4 +- public/translator.htm | 12 +- translate/translate.js | 2 +- translate/translate.json | 3008 +++++++++--------- views/agentinvite.handlebars | 12 +- views/default.handlebars | 14 +- public/player.htm => views/player.handlebars | 0 webserver.js | 12 + 9 files changed, 1621 insertions(+), 1444 deletions(-) rename public/player.htm => views/player.handlebars (100%) diff --git a/MeshCentralServer.njsproj b/MeshCentralServer.njsproj index aabd0877..794ef46d 100644 --- a/MeshCentralServer.njsproj +++ b/MeshCentralServer.njsproj @@ -229,7 +229,6 @@ - diff --git a/agents/meshcore.js b/agents/meshcore.js index 215cdbe0..28ff4ffe 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -2654,10 +2654,10 @@ function createMeshCore(agent) { if (mesh.ExecPowerState == undefined) { response = 'Power command not supported on this agent.'; } else { - if ((args['_'].length == 0) || (typeof args['_'][0] != 'number')) { + if ((args['_'].length == 0) || isNaN(Number(args['_'][0]))) { response = 'Proper usage: power (actionNumber), where actionNumber is:\r\n LOGOFF = 1\r\n SHUTDOWN = 2\r\n REBOOT = 3\r\n SLEEP = 4\r\n HIBERNATE = 5\r\n DISPLAYON = 6\r\n KEEPAWAKE = 7\r\n BEEP = 8\r\n CTRLALTDEL = 9\r\n VIBRATE = 13\r\n FLASH = 14'; // Display correct command usage } else { - var r = mesh.ExecPowerState(args['_'][0], args['_'][1]); + var r = mesh.ExecPowerState(Number(args['_'][0]), Number(args['_'][1])); response = 'Power action executed with return code: ' + r + '.'; } } diff --git a/public/translator.htm b/public/translator.htm index 3b824e54..c0f7a2c7 100644 --- a/public/translator.htm +++ b/public/translator.htm @@ -80,8 +80,9 @@ - Show Location - + + +
@@ -257,6 +258,7 @@ } QH('masterListArea', x.join('')); updateButtons(); + onSearchChanged(true); } function select(i, scroll, nofocus) { @@ -306,15 +308,17 @@ var currentSearchFilter = ''; function onSearchChanged(force) { + var showNoTranslationOnly = Q('showNoTransOnlyCheck').checked; if ((force != true) && (currentSearchFilter == Q('searchInput').value)) return; currentSearchFilter = Q('searchInput').value; var currentSearchFilterLower = currentSearchFilter.toLowerCase(); if (translations != null) { for (var i in translations) { + var show = (!showNoTranslationOnly) || (translations[i][selectedLanguage] == null) || (translations[i][selectedLanguage] == ''); if (currentSearchFilter == '') { - QV('nx' + i, true); + QV('nx' + i, show); } else { - QV('nx' + i, ((translations[i][selectedLanguage] != null) && (translations[i][selectedLanguage].toLowerCase().indexOf(currentSearchFilterLower) >= 0)) || (translations[i]['en'].toLowerCase().indexOf(currentSearchFilterLower) >= 0)); + QV('nx' + i, show && (((translations[i][selectedLanguage] != null) && (translations[i][selectedLanguage].toLowerCase().indexOf(currentSearchFilterLower) >= 0)) || (translations[i]['en'].toLowerCase().indexOf(currentSearchFilterLower) >= 0))); } } } diff --git a/translate/translate.js b/translate/translate.js index e2f68143..254592a8 100644 --- a/translate/translate.js +++ b/translate/translate.js @@ -30,7 +30,7 @@ var meshCentralSourceFiles = [ "../views/xterm.handlebars", "../views/message.handlebars", "../views/messenger.handlebars", - "../public/player.htm" + "../views/player.handlebars" ]; // True is this module is run directly using NodeJS diff --git a/translate/translate.json b/translate/translate.json index 09b5d300..8b0d55e5 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -11,8 +11,8 @@ "pt": " + CIRA", "ru": " + CIRA", "xloc": [ - "default.handlebars->25->1002", - "default.handlebars->25->1004" + "default.handlebars->25->1009", + "default.handlebars->25->1011" ] }, { @@ -21,6 +21,7 @@ "en": " - Reset in 1 day.", "es": " - Reiniciar en 1 dia.", "nl": " - Herstart in {0} dag.", + "ru": "- Сброс через 1 день.", "xloc": [ "default-mobile.handlebars->9->15", "default.handlebars->25->57" @@ -32,6 +33,7 @@ "en": " - Reset in 1 hour.", "es": " - Reiniciar en 1 hora.", "nl": " - Herstart in 1 uur.", + "ru": "- Сброс через 1 час.", "xloc": [ "default-mobile.handlebars->9->13", "default.handlebars->25->55" @@ -43,6 +45,7 @@ "en": " - Reset in 1 minute.", "es": " - Reiniciar en 1 minuto.", "nl": " - Herstart in {0} days.", + "ru": "- Сброс через 1 минуту.", "xloc": [ "default-mobile.handlebars->9->11", "default.handlebars->25->53" @@ -54,6 +57,7 @@ "en": " - Reset in {0} days.", "es": " - Reiniciar en {0} dias.", "nl": " - Herstart in {0} dagen.", + "ru": "- Сброс через {0} дней.", "xloc": [ "default-mobile.handlebars->9->16", "default.handlebars->25->58" @@ -68,7 +72,7 @@ "ja": " - {0}日でリセット{1}。", "nl": " - Reset in {0} dag(en){1}.", "pt": " - Redefinir em {0} dia {1}.", - "ru": " - Сброс через {0} дней{1}." + "ru": " - Сброс через {0} дней." }, { "cs": " - Resetovat za {0} hodin.", @@ -76,6 +80,7 @@ "en": " - Reset in {0} hours.", "es": " - Reiniciar en {0} horas.", "nl": " - Herstart in {0} uren.", + "ru": "- Сброс через {0} часов.", "xloc": [ "default-mobile.handlebars->9->14", "default.handlebars->25->56" @@ -90,7 +95,7 @@ "ja": " - {0}時間でリセット{1}。", "nl": " - Reset in {0} uur{1}.", "pt": " - Redefinir em {0} hora {1}.", - "ru": " - Сброс через {0} часов{1}." + "ru": " - Сброс через {0} часов." }, { "cs": " - Resetovat za {0} minut.", @@ -98,6 +103,7 @@ "en": " - Reset in {0} minutes.", "es": " - Reiniciar en {0} minutos.", "nl": " - Herstart in {0} minuten.", + "ru": "- Сброс через {0} минут.", "xloc": [ "default-mobile.handlebars->9->12", "default.handlebars->25->54" @@ -112,7 +118,7 @@ "ja": " - {0}分でリセット{1}。", "nl": " - Reset in {0} minuten{1}.", "pt": " - Redefinir em {0} minuto {1}.", - "ru": " - Сброс через {0} минут{1}." + "ru": " - Сброс через {0} минут." }, { "cs": " - Resetovat při příštím přihlášení.", @@ -169,7 +175,7 @@ "pt": " Dica de senha pode ser usada, mas não é recomendada.", "ru": "Может быть использована подсказка пароля, но не рекоммендуется.", "xloc": [ - "default.handlebars->25->934" + "default.handlebars->25->941" ] }, { @@ -181,10 +187,10 @@ "ja": " ユーザーは、デバイスグループに追加する前にこのサーバーに1回ログインする必要があります。", "nl": " Gebruikers moeten inloggen bij de server voordat ze kunnen worden toegevoegd aan een apparaatgroep.", "pt": " Os usuários precisam fazer login neste servidor uma vez antes de poderem ser adicionados a um grupo de dispositivos.", - "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хоть один раз.", + "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.", "xloc": [ - "default.handlebars->25->1077", - "default.handlebars->25->1307" + "default.handlebars->25->1084", + "default.handlebars->25->1314" ] }, { @@ -196,7 +202,7 @@ "ja": " このユーザー名とパスワードを使用してサーバーに対して認証します。", "nl": " verifieer bij de server met deze gebruikersnaam en elk wachtwoord.", "pt": " e autenticar no servidor usando esse nome de usuário e qualquer senha.", - "ru": " и разрешить серверу использовать это имя и любой пароль", + "ru": " и задайте указанное ниже имя пользователя и любой пароль.", "xloc": [ "default.handlebars->25->267" ] @@ -210,7 +216,7 @@ "ja": " このユーザー名とパスワードを使用してサーバーに対して認証します。", "nl": " verifieer bij de server met deze gebruikersnaam en wachtwoord.", "pt": " e autenticar no servidor usando esse nome de usuário e senha.", - "ru": " и разрешить серверу использовать это имя и пароль", + "ru": " и задайте указанные ниже имя пользователя и пароль.", "xloc": [ "default.handlebars->25->266" ] @@ -320,7 +326,7 @@ "ja": "* BSDの場合、最初に\\\"pkg install wget sudo bash\\\"を実行します。", "nl": "* Voor BSD, start eerst \\\"pkg install wget sudo bash\\\" .", "pt": "* Para o BSD, execute \\\"pkg install wget sudo bash\\\".", - "ru": "* Для BSD, сначала запустите \\\"pkg install wget sudo bash\\\".", + "ru": "* Для BSD сначала запустите \\\"pkg install wget sudo bash\\\".", "xloc": [ "default.handlebars->25->334" ] @@ -333,9 +339,9 @@ "ja": "*空白のままにして、各デバイスにランダムなパスワードを割り当てます。", "nl": "* Laat leeg om een willekeurig wachtwoord toe te wijzen aan elk apparaat.", "pt": "* Deixe em branco para atribuir uma senha aleatória a cada dispositivo.", - "ru": "* Для установления случайного пароля каждому устройству - оставьте пустым.", + "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.", "xloc": [ - "default.handlebars->25->1052" + "default.handlebars->25->1059" ] }, { @@ -363,7 +369,7 @@ "ru": ", ", "xloc": [ "default-mobile.handlebars->9->330", - "default.handlebars->25->1128" + "default.handlebars->25->1135" ] }, { @@ -390,7 +396,7 @@ "pt": ", O MQTT está online", "ru": ", MQTT онлайн", "xloc": [ - "default.handlebars->25->687" + "default.handlebars->25->694" ] }, { @@ -403,7 +409,7 @@ "pt": ", Soft-KVM", "ru": ", Soft-KVM", "xloc": [ - "default.handlebars->25->599" + "default.handlebars->25->606" ] }, { @@ -418,9 +424,9 @@ "xloc": [ "default-mobile.handlebars->9->228", "default-mobile.handlebars->9->238", - "default.handlebars->25->600", - "default.handlebars->25->630", - "default.handlebars->25->642", + "default.handlebars->25->607", + "default.handlebars->25->637", + "default.handlebars->25->649", "xterm.handlebars->9->6" ] }, @@ -432,7 +438,7 @@ "ja": "、ここをクリックして有効にします。", "nl": ", klik hier om in te schakelen", "pt": ", clique aqui para habilitá-lo.", - "ru": ", для включения жмите сюда.", + "ru": ", для включения нажмите сюда.", "xloc": [ "default.handlebars->container->column_l->p11->p11warning->3->p11warninga", "default.handlebars->container->column_l->p12->p12warning->3->p12warninga" @@ -446,7 +452,7 @@ "ja": "、それを右クリックするか、「control」を押してファイルをクリックします。次に、「開く」を選択し、指示に従います。", "nl": ", klik er met de rechtermuisknop op of druk op \"beheer\" en klik op het bestand. Daarna op \"open\" en volg de instructies.", "pt": ", clique com o botão direito do mouse ou pressione \"control\".Em seguida, selecione \"Open\".", - "ru": ", нажмите правой кнопкой или задержите \"Control\" и жмите на файл. Выберите \"Открыть\" и следуйте инструкциям.", + "ru": ", нажмите правой кнопкой мыши на скачанном файле, выберите пункт \"Открыть\" и следуйте инструкциям программы.", "xloc": [ "agentinvite.handlebars->container->column_l->5->macostab->3" ] @@ -512,9 +518,9 @@ "xloc": [ "default-mobile.handlebars->9->243", "default-mobile.handlebars->9->67", - "default.handlebars->25->1150", - "default.handlebars->25->1383", - "default.handlebars->25->644" + "default.handlebars->25->1157", + "default.handlebars->25->1390", + "default.handlebars->25->651" ] }, { @@ -541,7 +547,7 @@ "pt": "00:00:00", "ru": "00:00:00", "xloc": [ - "player.htm->p11->deskarea0->deskarea4->1->timespan" + "player.handlebars->p11->deskarea0->deskarea4->1->timespan" ] }, { @@ -555,7 +561,7 @@ "pt": "1 sessão ativa", "ru": "1 активная сессия", "xloc": [ - "default.handlebars->25->1347" + "default.handlebars->25->1354" ] }, { @@ -571,7 +577,7 @@ "xloc": [ "default-mobile.handlebars->9->334", "default-mobile.handlebars->9->77", - "default.handlebars->25->1167" + "default.handlebars->25->1174" ] }, { @@ -601,7 +607,7 @@ "pt": "1 grupo", "ru": "1 группа", "xloc": [ - "default.handlebars->25->1331" + "default.handlebars->25->1338" ] }, { @@ -626,6 +632,7 @@ "en": "1 minute until disconnect", "es": "Un minuto hasta desconectar", "nl": "1 minuut totdat de verbinding wordt verbroken", + "ru": "1 минута до разъединения", "xloc": [ "default.handlebars->25->61" ] @@ -654,9 +661,9 @@ "ja": "さらに1人のユーザーが表示されていません。検索ボックスを使用してユーザーを検索してください...", "nl": "1 gebruiker niet getoond, gebruik de zoekfunctie om gebruikers te vinden...", "pt": "Mais 1 usuário não mostrado, use a caixa de pesquisa para procurar usuários...", - "ru": "Еще 1 пользователь не показан, используйте \\\"Поиск\\\" чтобы найти пользователей...", + "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...", "xloc": [ - "default.handlebars->25->1202" + "default.handlebars->25->1209" ] }, { @@ -679,6 +686,7 @@ "en": "1 second until disconnect", "es": "Un segundo hasta desconectar", "nl": "1 seconde totdat de verbinding wordt verbroken", + "ru": "1 секунда до разъединения", "xloc": [ "default.handlebars->25->59" ] @@ -694,7 +702,7 @@ "pt": "1 sessão", "ru": "1 сессия", "xloc": [ - "default.handlebars->25->1206" + "default.handlebars->25->1213" ] }, { @@ -752,7 +760,7 @@ "pt": "1/2 velocidade", "ru": "1/2 Скорость", "xloc": [ - "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->3" + "player.handlebars->p11->deskarea0->deskarea4->3->PlaySpeed->3" ] }, { @@ -766,7 +774,7 @@ "pt": "1/4 de velocidade", "ru": "1/4 Скорость", "xloc": [ - "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->1" + "player.handlebars->p11->deskarea0->deskarea4->3->PlaySpeed->1" ] }, { @@ -807,7 +815,7 @@ "pt": "10x Velocidade", "ru": "10x Скорость", "xloc": [ - "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->11" + "player.handlebars->p11->deskarea0->deskarea4->3->PlaySpeed->11" ] }, { @@ -845,7 +853,7 @@ "ja": "2段階ログインアクティベーションの削除に失敗しました。", "nl": "Tweestapsverificatie verwijdering is mislukt.", "pt": "A remoção da ativação do login em duas etapas falhou.", - "ru": "Удаление активации двуэтапного входа не удалась.", + "ru": "Удаление активации двухэтапного входа не удалось.", "xloc": [ "default.handlebars->25->130" ] @@ -902,7 +910,7 @@ "pt": "Autenticação de segundo fator ativada", "ru": "двухфакторная аутентификация включена", "xloc": [ - "default.handlebars->25->1340" + "default.handlebars->25->1347" ] }, { @@ -916,7 +924,7 @@ "pt": "2x velocidade", "ru": "2x Скорость", "xloc": [ - "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->7" + "player.handlebars->p11->deskarea0->deskarea4->3->PlaySpeed->7" ] }, { @@ -979,7 +987,7 @@ "ja": "MeshAgentの32ビットバージョン", "nl": "32bit versie van de MeshAgent", "pt": "Versão de 32 bits do MeshAgent", - "ru": "32-разрядная версия MeshAgent-а", + "ru": "32-разрядная версия MeshAgent", "xloc": [ "default.handlebars->25->326", "default.handlebars->25->340" @@ -1049,7 +1057,7 @@ "pt": "4x velocidade", "ru": "4x Скорость", "xloc": [ - "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->9" + "player.handlebars->p11->deskarea0->deskarea4->3->PlaySpeed->9" ] }, { @@ -1139,7 +1147,7 @@ "ja": "MeshAgentの64ビットバージョン", "nl": "64bit versie van de MeshAgent", "pt": "Versão de 64 bits do MeshAgent", - "ru": "64-разрядная версия MeshAgent-а", + "ru": "64-разрядная версия MeshAgent", "xloc": [ "default.handlebars->25->329", "default.handlebars->25->343" @@ -1150,7 +1158,8 @@ "de": "7-Tage-Anmelde-Status", "en": "7 Day Login State", "es": "Estado de inicio de sesión de 7 días", - "nl": "Inlogstatus afgelopen 7 dagen" + "nl": "Inlogstatus afgelopen 7 dagen", + "ru": "7-дневная статистика входов" }, { "cs": "Stav napájení za uplynulých 7 dnů", @@ -1162,7 +1171,7 @@ "pt": "Estado de energia de 7 dias", "ru": "7-дневная статистика работы", "xloc": [ - "default.handlebars->25->539" + "default.handlebars->25->546" ] }, { @@ -1244,7 +1253,7 @@ "pt": ":", "ru": ":", "xloc": [ - "agentinvite.handlebars->3->1" + "agentinvite.handlebars->3->4" ] }, { @@ -1268,7 +1277,7 @@ "ja": " 2段階のログインアクティベーションが削除されました。この機能はいつでも再アクティブ化できます。", "nl": "Tweestapsverificatie verwijderd. Je kan deze functie ten allen tijde weer inschakelen.", "pt": "Ativação de login em duas etapas removida. Você pode reativar esse recurso a qualquer momento.", - "ru": "Активация двухэтапного входа удалена. Вы можете активировать эту функцию в любое время.", + "ru": "Активация двухэтапного входа удалена. Вы можете активировать обратно эту функцию в любое время.", "xloc": [ "default-mobile.handlebars->9->22" ] @@ -1281,7 +1290,7 @@ "ja": " 2段階ログインの有効化に成功。再度ログインするには、有効なトークンが必要になります。", "nl": "Tweestapsverificatie successvol. U hebt nu een geldig token nodig om opnieuw in te loggen.", "pt": " ativação de login em duas etapas . Agora você precisará de um token válido para fazer login novamente.", - "ru": "Активация двухэтапного входа успешна . Теперь вам понадобится действительный токен, чтобы снова войти в систему.", + "ru": "Активация двухэтапного входа успешна. Теперь вам понадобится действительный токен, чтобы снова войти в систему.", "xloc": [ "default-mobile.handlebars->9->19" ] @@ -1323,7 +1332,7 @@ "ru": "ACM", "xloc": [ "default-mobile.handlebars->9->182", - "default.handlebars->25->455" + "default.handlebars->25->462" ] }, { @@ -1390,7 +1399,7 @@ "ja": "ARMv8 64ビット", "nl": "ARMv8 64bit", "pt": "ARMv8 64bit", - "ru": "ARMv8 64-разрадная", + "ru": "ARMv8 64bit", "xloc": [ "default-mobile.handlebars->9->169", "default.handlebars->25->39" @@ -1407,7 +1416,7 @@ "pt": "Acesso Negado", "ru": "Отказано в доступе", "xloc": [ - "default.handlebars->25->688" + "default.handlebars->25->695" ] }, { @@ -1431,9 +1440,9 @@ "ja": "サーバーファイルへのアクセス", "nl": "Toegang tot de server bestanden", "pt": "Acesso aos arquivos do servidor", - "ru": "Доступ в файлам сервера", + "ru": "Доступ к файлам сервера", "xloc": [ - "default.handlebars->25->1312" + "default.handlebars->25->1319" ] }, { @@ -1444,7 +1453,7 @@ "ja": "アカウントアクション", "nl": "gebruikersacties", "pt": "Ações da Conta", - "ru": "Действия Аккаунта", + "ru": "Действия учетной записи", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->5->0" ] @@ -1457,7 +1466,7 @@ "ja": "アカウント作成", "nl": "Gebruikersaccount aanmaken", "pt": "Criação de conta", - "ru": "Создание Аккаунта", + "ru": "Создание учетной записи", "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->5->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->5->1" @@ -1471,7 +1480,7 @@ "ja": "アカウントのリセット", "nl": "Gebruikersaccount resetten", "pt": "Redefinição de conta", - "ru": "Сброс аккаунта", + "ru": "Сброс учетной записи", "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->5->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->5->1" @@ -1492,10 +1501,10 @@ "default-mobile.handlebars->9->52", "default-mobile.handlebars->9->54", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0", - "default.handlebars->25->428", - "default.handlebars->25->430", - "default.handlebars->25->943", - "default.handlebars->25->945" + "default.handlebars->25->435", + "default.handlebars->25->437", + "default.handlebars->25->950", + "default.handlebars->25->952" ] }, { @@ -1506,7 +1515,7 @@ "ja": "アカウントアクション", "nl": "gebruikersacties", "pt": "Ações da conta", - "ru": "Действия аккаунта", + "ru": "Действия учетной записи", "xloc": [ "default.handlebars->container->column_l->p2->p2AccountActions->1->0" ] @@ -1518,7 +1527,7 @@ "es": "Límite de cuenta alcanzado.", "ja": "アカウントの上限に達しました。", "nl": "Gebruikersaccount limiet bereikt.", - "ru": "Ограничение аккаунта достигнуто.", + "ru": "Достигнуто ограничение учетных записей.", "xloc": [ "login-mobile.handlebars->5->3", "login.handlebars->5->3" @@ -1531,7 +1540,7 @@ "es": "Cuenta Bloqueada.", "ja": "アカウントがロックされました。", "nl": "Gebruikersaccount vergrendeld", - "ru": "Аккаунт заблокирован.", + "ru": "Учетная запись заблокирована.", "xloc": [ "login-mobile.handlebars->5->12", "login.handlebars->5->12" @@ -1544,7 +1553,7 @@ "es": "Cuenta no encontrada.", "ja": "アカウントが見つかりませんでした。", "nl": "Gebruikersaccount niet gevonden", - "ru": "Аккаунт не найден.", + "ru": "Учетная запись не найдена.", "xloc": [ "login-mobile.handlebars->5->9", "login.handlebars->5->9" @@ -1573,7 +1582,7 @@ "pt": "Ação", "ru": "Действиe", "xloc": [ - "default.handlebars->25->693", + "default.handlebars->25->700", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -1581,9 +1590,10 @@ "en": "Action File", "es": "Archivo de acción", "nl": "Actie bestand", + "ru": "Файл действий", "xloc": [ - "default.handlebars->25->579", - "default.handlebars->25->581" + "default.handlebars->25->586", + "default.handlebars->25->588" ] }, { @@ -1598,7 +1608,7 @@ "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1", - "default.handlebars->25->487", + "default.handlebars->25->494", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -1645,8 +1655,8 @@ "xloc": [ "default-mobile.handlebars->9->177", "default-mobile.handlebars->9->179", - "default.handlebars->25->448", - "default.handlebars->25->450" + "default.handlebars->25->455", + "default.handlebars->25->457" ] }, { @@ -1659,8 +1669,8 @@ "pt": "Ativação", "ru": "Активация", "xloc": [ - "default.handlebars->25->1015", - "default.handlebars->25->1017", + "default.handlebars->25->1022", + "default.handlebars->25->1024", "default.handlebars->25->230", "default.handlebars->25->232" ] @@ -1673,9 +1683,9 @@ "ja": "アクティブユーザー{0}", "nl": "Actieve gebruikers{0}", "pt": "Usuário ativo {0}", - "ru": "Активный ползьзователь{0}", + "ru": "Активный пользователь", "xloc": [ - "default.handlebars->25->474" + "default.handlebars->25->481" ] }, { @@ -1717,7 +1727,7 @@ "pt": "Adicionar evento do dispositivo", "ru": "Добавить событие к устройству", "xloc": [ - "default.handlebars->25->522" + "default.handlebars->25->529" ] }, { @@ -1731,10 +1741,10 @@ "pt": "Adicionar grupo de dispositivos", "ru": "Добавить группу устройств", "xloc": [ - "default.handlebars->25->1102", - "default.handlebars->25->1104", - "default.handlebars->25->1286", - "default.handlebars->25->1360", + "default.handlebars->25->1109", + "default.handlebars->25->1111", + "default.handlebars->25->1293", + "default.handlebars->25->1367", "default.handlebars->25->205" ] }, @@ -1796,8 +1806,9 @@ "en": "Add Membership", "es": "Agregar Miembros", "nl": "Lidmaatschap toevoegen", + "ru": "Добавить участие", "xloc": [ - "default.handlebars->25->1379" + "default.handlebars->25->1386" ] }, { @@ -1808,7 +1819,7 @@ "ja": "メッシュエージェントを追加", "nl": "Toevoegen Mesh agent", "pt": "Adicionar agente de malha", - "ru": "Добавить Mesh Агент", + "ru": "Добавить Mesh Agent", "xloc": [ "default.handlebars->25->346" ] @@ -1828,8 +1839,8 @@ "default.handlebars->25->148", "default.handlebars->25->151", "default.handlebars->25->152", - "default.handlebars->25->712", - "default.handlebars->25->713" + "default.handlebars->25->719", + "default.handlebars->25->720" ] }, { @@ -1838,10 +1849,11 @@ "en": "Add User Group", "es": "Agregar Grupos de Usuarios", "nl": "Gebruikersgroep toevoegen", + "ru": "Добавить группу пользователей", "xloc": [ - "default.handlebars->25->1009", - "default.handlebars->25->1103", - "default.handlebars->25->1369" + "default.handlebars->25->1016", + "default.handlebars->25->1110", + "default.handlebars->25->1376" ] }, { @@ -1853,7 +1865,7 @@ "ja": "メッシュにユーザーを追加", "nl": "Gebruiker toevoegen aan Mesh", "pt": "Adicionar usuário à malha", - "ru": "Добавить пользователя к Mesh", + "ru": "Добавить пользователя в Mesh", "xloc": [ "default-mobile.handlebars->9->309" ] @@ -1869,8 +1881,8 @@ "pt": "Adicionar usuários", "ru": "Добавить пользователей", "xloc": [ - "default.handlebars->25->1008", - "default.handlebars->25->1281" + "default.handlebars->25->1015", + "default.handlebars->25->1288" ] }, { @@ -1881,9 +1893,9 @@ "ja": "ユーザーをデバイスグループに追加する", "nl": "Gebruikers toevoegen aan apparaatgroep", "pt": "Adicionar usuários ao grupo de dispositivos", - "ru": "Добавить пользователей к Группам устройств", + "ru": "Добавить пользователей в группу устройств", "xloc": [ - "default.handlebars->25->1101" + "default.handlebars->25->1108" ] }, { @@ -1892,8 +1904,9 @@ "en": "Add Users to User Group", "es": "Agregar Usuarios a un Grupo", "nl": "Voeg gebruikers toe aan de gebruikersgroep", + "ru": "Добавить пользователей в группу", "xloc": [ - "default.handlebars->25->1309" + "default.handlebars->25->1316" ] }, { @@ -1932,7 +1945,7 @@ "pt": "Adicione um novo Intel® Computador AMT localizado na Internet.", "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.", "xloc": [ - "default.handlebars->25->1010", + "default.handlebars->25->1017", "default.handlebars->25->223" ] }, @@ -1946,7 +1959,7 @@ "pt": "Adicione um novo Intel® AMT computer that is located on the local network.", "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.", "xloc": [ - "default.handlebars->25->1012", + "default.handlebars->25->1019", "default.handlebars->25->225" ] }, @@ -1971,9 +1984,9 @@ "ja": "メッシュエージェントをインストールして、このメッシュに新しいコンピューターを追加します。", "nl": "Voeg een nieuwe computer toe aan deze mesh door de mesh-agent te installeren.", "pt": "Adicione um novo computador a essa malha instalando o agente de malha.", - "ru": "Добавить новый компьютер к этой сети инсталированием меш агента.", + "ru": "Добавить новый компьютер к этой сети установкой Mesh Agent.", "xloc": [ - "default.handlebars->25->1018", + "default.handlebars->25->1025", "default.handlebars->25->233" ] }, @@ -2000,7 +2013,7 @@ "pt": "Endereços", "ru": "Адреса", "xloc": [ - "player.htm->3->7" + "player.handlebars->3->7" ] }, { @@ -2010,7 +2023,7 @@ "es": "Administrar Powershell", "ja": "管理者PowerShell", "nl": "Beheerder PowerShell", - "ru": "Админ PowerShell", + "ru": "Admin PowerShell", "xloc": [ "default.handlebars->termShellContextMenu->cxtermps", "xterm.handlebars->termShellContextMenu->cxtermps" @@ -2024,9 +2037,9 @@ "ja": "管理レルム", "nl": "Beheerdersgebied", "pt": "Admin Realms", - "ru": "Oбласти Aдминистратора", + "ru": "Области администратора", "xloc": [ - "default.handlebars->25->1335" + "default.handlebars->25->1342" ] }, { @@ -2036,7 +2049,7 @@ "es": "Administrar Shell", "ja": "管理シェル", "nl": "Beheerder Shell", - "ru": "Админ Shell", + "ru": "Admin Shell", "xloc": [ "default.handlebars->termShellContextMenu->cxtermnorm->0", "xterm.handlebars->termShellContextMenu->cxtermnorm->0" @@ -2050,9 +2063,9 @@ "ja": "管理レルム", "nl": "Administratieve gebieden", "pt": "Domínios Administrativos", - "ru": "Административные Области", + "ru": "Административные области", "xloc": [ - "default.handlebars->25->1251" + "default.handlebars->25->1258" ] }, { @@ -2065,7 +2078,7 @@ "pt": "Administrador", "ru": "Администратор", "xloc": [ - "default.handlebars->25->1213" + "default.handlebars->25->1220" ] }, { @@ -2078,7 +2091,7 @@ "pt": "afrikaans", "ru": "Африканский", "xloc": [ - "default.handlebars->25->715" + "default.handlebars->25->722" ] }, { @@ -2095,8 +2108,8 @@ "default-mobile.handlebars->9->121", "default-mobile.handlebars->9->174", "default-mobile.handlebars->9->190", - "default.handlebars->25->1138", - "default.handlebars->25->1144", + "default.handlebars->25->1145", + "default.handlebars->25->1151", "default.handlebars->25->184", "default.handlebars->25->371", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" @@ -2108,9 +2121,10 @@ "en": "Agent + Intel AMT", "es": "Agente + Intel AMT", "nl": "Agent + Intel AMT", + "ru": "Агент + Intel AMT", "xloc": [ - "default.handlebars->25->1140", - "default.handlebars->25->1146" + "default.handlebars->25->1147", + "default.handlebars->25->1153" ] }, { @@ -2121,7 +2135,7 @@ "ja": "エージェントアクション", "nl": "Agent actie", "pt": "Ação do agente", - "ru": "Действие Агента", + "ru": "Управление агентом", "xloc": [ "default.handlebars->container->column_l->p15->consoleTable->1->0->1->1" ] @@ -2137,7 +2151,7 @@ "ru": "Консоль агента", "xloc": [ "default-mobile.handlebars->9->315", - "default.handlebars->25->1112" + "default.handlebars->25->1119" ] }, { @@ -2146,8 +2160,15 @@ "en": "Agent Error Counters", "es": "Contador de errores del Agente", "nl": "Agent fout tellers", + "ru": "Счетчик ошибок агента", "xloc": [ - "default.handlebars->25->1391" + "default.handlebars->25->1398" + ] + }, + { + "en": "Agent Installation", + "xloc": [ + "agentinvite.handlebars->3->3" ] }, { @@ -2158,7 +2179,7 @@ "ja": "エージェントリレー", "nl": "Agent Relay", "pt": "Retransmissão do agente", - "ru": "Реле Агента", + "ru": "Ретранслятор агента", "xloc": [ "default-mobile.handlebars->9->193" ] @@ -2183,8 +2204,9 @@ "en": "Agent Sessions", "es": "Sesiones del Agente", "nl": "Agent Sessies", + "ru": "Сессии агентов", "xloc": [ - "default.handlebars->25->1407" + "default.handlebars->25->1414" ] }, { @@ -2198,7 +2220,7 @@ "ru": "Тег агента", "xloc": [ "default-mobile.handlebars->9->189", - "default.handlebars->25->467" + "default.handlebars->25->474" ] }, { @@ -2207,8 +2229,9 @@ "en": "Agent Types", "es": "Tipos de Agente", "nl": "Agent Type", + "ru": "Типы агента", "xloc": [ - "default.handlebars->25->1142", + "default.handlebars->25->1149", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -2223,8 +2246,8 @@ "ru": "Агент подключен", "xloc": [ "default.handlebars->25->154", - "default.handlebars->25->513", - "default.handlebars->25->514" + "default.handlebars->25->520", + "default.handlebars->25->521" ] }, { @@ -2250,7 +2273,7 @@ "pt": "O agente está offline", "ru": "Агент оффлайн", "xloc": [ - "default.handlebars->25->686" + "default.handlebars->25->693" ] }, { @@ -2263,7 +2286,7 @@ "pt": "Agente está online", "ru": "Агент онлайн", "xloc": [ - "default.handlebars->25->685" + "default.handlebars->25->692" ] }, { @@ -2276,7 +2299,7 @@ "pt": "Agentes", "ru": "Агенты", "xloc": [ - "default.handlebars->25->1420" + "default.handlebars->25->1427" ] }, { @@ -2289,7 +2312,7 @@ "pt": "albanês", "ru": "Албанский", "xloc": [ - "default.handlebars->25->716" + "default.handlebars->25->723" ] }, { @@ -2316,7 +2339,7 @@ "ja": "すべてのディスプレイ", "nl": "alle schermen", "pt": "Todas as telas", - "ru": "Все Экраны", + "ru": "Все экраны", "xloc": [ "default-mobile.handlebars->9->233" ] @@ -2331,9 +2354,9 @@ "pt": "All Focus", "ru": "Фокусирование всех", "xloc": [ - "default.handlebars->25->601", - "default.handlebars->25->603", - "default.handlebars->25->604" + "default.handlebars->25->608", + "default.handlebars->25->610", + "default.handlebars->25->611" ] }, { @@ -2347,8 +2370,8 @@ "pt": "Permitir que os usuários gerenciem esse grupo de dispositivos e dispositivos neste grupo.", "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.", "xloc": [ - "default.handlebars->25->1076", - "default.handlebars->25->1306" + "default.handlebars->25->1083", + "default.handlebars->25->1313" ] }, { @@ -2389,12 +2412,13 @@ "pt": "Alternativo (F10 = ESC + 0)", "ru": "Поменять (F10 = ESC+0)", "xloc": [ - "default.handlebars->25->635" + "default.handlebars->25->642" ] }, { "en": "Alternate Port", "nl": "Alternatieve poort", + "ru": "Поменять порт", "xloc": [ "default.handlebars->altPortContextMenu->cxaltport->0" ] @@ -2410,7 +2434,7 @@ "pt": "Notificar sempre", "ru": "Всегда уведомлять", "xloc": [ - "default.handlebars->25->991" + "default.handlebars->25->998" ] }, { @@ -2421,9 +2445,9 @@ "ja": "常にプロンプ​​ト", "nl": "Altijd prompt", "pt": "Sempre alerta", - "ru": "Всегда напоминать", + "ru": "Всегда запрашивать", "xloc": [ - "default.handlebars->25->992" + "default.handlebars->25->999" ] }, { @@ -2434,7 +2458,7 @@ "ja": "Android APK", "nl": "Android APK", "pt": "Android APK", - "ru": "Андроид APK", + "ru": "Android APK", "xloc": [ "default-mobile.handlebars->9->157", "default.handlebars->25->27" @@ -2448,7 +2472,7 @@ "ja": "Android ARM", "nl": "Android ARM", "pt": "Android ARM", - "ru": "Андроид ARM", + "ru": "Android ARM", "xloc": [ "default-mobile.handlebars->9->152", "default.handlebars->25->22" @@ -2462,7 +2486,7 @@ "ja": "Android x86", "nl": "Android x86", "pt": "Android x86", - "ru": "Андроид x86", + "ru": "Android x86", "xloc": [ "default-mobile.handlebars->9->155", "default.handlebars->25->25" @@ -2479,7 +2503,7 @@ "pt": "Antivírus", "ru": "Антивирус", "xloc": [ - "default.handlebars->25->473" + "default.handlebars->25->480" ] }, { @@ -2490,7 +2514,7 @@ "ja": "サポートされているもの", "nl": "Alle ondersteunde", "pt": "Qualquer suportado", - "ru": "Все поддерживаемые", + "ru": "Любые поддерживаемые", "xloc": [ "default.handlebars->25->287" ] @@ -2543,7 +2567,7 @@ "pt": "Árabe (Argélia)", "ru": "Арабский (Алжир)", "xloc": [ - "default.handlebars->25->718" + "default.handlebars->25->725" ] }, { @@ -2555,7 +2579,7 @@ "pt": "Árabe (Bahrain)", "ru": "Арабский (Бахрейн)", "xloc": [ - "default.handlebars->25->719" + "default.handlebars->25->726" ] }, { @@ -2567,7 +2591,7 @@ "pt": "Árabe (Egito)", "ru": "Арабский (Египет)", "xloc": [ - "default.handlebars->25->720" + "default.handlebars->25->727" ] }, { @@ -2579,7 +2603,7 @@ "pt": "Árabe (Iraque)", "ru": "Арабский (Ирак)", "xloc": [ - "default.handlebars->25->721" + "default.handlebars->25->728" ] }, { @@ -2591,7 +2615,7 @@ "pt": "Árabe (Jordânia)", "ru": "Арабский (Иордания)", "xloc": [ - "default.handlebars->25->722" + "default.handlebars->25->729" ] }, { @@ -2603,7 +2627,7 @@ "pt": "Árabe (Kuwait)", "ru": "Арабский (Кувейт)", "xloc": [ - "default.handlebars->25->723" + "default.handlebars->25->730" ] }, { @@ -2615,7 +2639,7 @@ "pt": "Árabe (Líbano)", "ru": "Арабский (Ливан)", "xloc": [ - "default.handlebars->25->724" + "default.handlebars->25->731" ] }, { @@ -2627,7 +2651,7 @@ "pt": "Árabe (Líbia)", "ru": "Арабский (Ливия)", "xloc": [ - "default.handlebars->25->725" + "default.handlebars->25->732" ] }, { @@ -2639,7 +2663,7 @@ "pt": "Árabe (Marrocos)", "ru": "Арабский (Марокко)", "xloc": [ - "default.handlebars->25->726" + "default.handlebars->25->733" ] }, { @@ -2651,7 +2675,7 @@ "pt": "Árabe (Omã)", "ru": "Арабский (Оман)", "xloc": [ - "default.handlebars->25->727" + "default.handlebars->25->734" ] }, { @@ -2663,7 +2687,7 @@ "pt": "Árabe (Catar)", "ru": "Арабский (Катар)", "xloc": [ - "default.handlebars->25->728" + "default.handlebars->25->735" ] }, { @@ -2675,7 +2699,7 @@ "pt": "Árabe (Arábia Saudita)", "ru": "Арабский (Саудовская Аравия)", "xloc": [ - "default.handlebars->25->729" + "default.handlebars->25->736" ] }, { @@ -2687,7 +2711,7 @@ "pt": "Árabe (padrão)", "ru": "Арабский (стандартный)", "xloc": [ - "default.handlebars->25->717" + "default.handlebars->25->724" ] }, { @@ -2699,7 +2723,7 @@ "pt": "Árabe (Síria)", "ru": "Арабский (Сирия)", "xloc": [ - "default.handlebars->25->730" + "default.handlebars->25->737" ] }, { @@ -2711,7 +2735,7 @@ "pt": "Árabe (Tunísia)", "ru": "Арабский (Тунис)", "xloc": [ - "default.handlebars->25->731" + "default.handlebars->25->738" ] }, { @@ -2723,7 +2747,7 @@ "pt": "Árabe (U.A.E)", "ru": "Арабский (О.А.Э.)", "xloc": [ - "default.handlebars->25->732" + "default.handlebars->25->739" ] }, { @@ -2735,7 +2759,7 @@ "pt": "Árabe (Iêmen)", "ru": "Арабский (Йемен)", "xloc": [ - "default.handlebars->25->733" + "default.handlebars->25->740" ] }, { @@ -2747,7 +2771,7 @@ "pt": "Aragonês", "ru": "Арагонский", "xloc": [ - "default.handlebars->25->734" + "default.handlebars->25->741" ] }, { @@ -2771,7 +2795,7 @@ "es": "¿Está seguro de que desea conectarse a {0} dispositivos?", "ja": "{0}台のデバイスに接続してもよろしいですか?", "nl": "Weet u zeker dat u verbinding wilt maken met {0} apparaten?", - "ru": "Вы уверенны, что хотите подключиться к {0} устройствам?", + "ru": "Вы действительно хотите подключиться к {0} устройствам?", "xloc": [ "default.handlebars->25->218" ] @@ -2785,10 +2809,10 @@ "ja": "グループ{0}を削除してもよろしいですか?デバイスグループを削除すると、このグループ内のデバイスに関するすべての情報も削除されます。", "nl": "Weet je zeker dat je groep {0} wilt verwijderen? Als u de apparaatgroep verwijdert, wordt ook alle informatie over apparaten binnen deze groep verwijderd.", "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}? Удаление группы приведет к удалению всей информации связанной с устройствами в этой группе.", + "ru": "Вы действительно хотите удалить группу \\\"{0}\\\"? Удаление группы приведет к удалению всей информации связанной с устройствами в этой группе.", "xloc": [ "default-mobile.handlebars->9->286", - "default.handlebars->25->1056" + "default.handlebars->25->1063" ] }, { @@ -2800,9 +2824,9 @@ "ja": "ノード{0}を削除してもよろしいですか?", "nl": "Weet u zeker dat u apparaat {0} wilt verwijderen?", "pt": "Tem certeza de que deseja excluir o nó {0}?", - "ru": "Вы уверенны, что хотите удалить узел {0}?", + "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?", "xloc": [ - "default.handlebars->25->561" + "default.handlebars->25->568" ] }, { @@ -2812,9 +2836,9 @@ "es": "¿Está seguro de que desea desinstalar el agente seleccionado?", "ja": "選択したエージェントをアンインストールしてもよろしいですか?", "nl": "Weet u zeker dat u de geselecteerde agent wilt verwijderen?", - "ru": "Вы уверенны, что хотите деинсталировать избранного агента?", + "ru": "Вы действительно хотите деинсталировать выбранного агента?", "xloc": [ - "default.handlebars->25->550" + "default.handlebars->25->557" ] }, { @@ -2824,9 +2848,9 @@ "es": "¿Está seguro de que desea desinstalar los {0} agentes seleccionados?", "ja": "選択した{0}エージェントをアンインストールしてもよろしいですか?", "nl": "Weet u zeker dat u de geselecteerde {0} agenten wilt verwijderen?", - "ru": "Вы уверенны, что хотите деинсталировать избранных {0} агентов?", + "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?", "xloc": [ - "default.handlebars->25->549" + "default.handlebars->25->556" ] }, { @@ -2838,7 +2862,7 @@ "nl": "Weet u zeker dat u de plug-in {0} wilt gebruiken: {1}", "ru": "Вы уверенны, что {0} плагин: {1}", "xloc": [ - "default.handlebars->25->1455" + "default.handlebars->25->1462" ] }, { @@ -2848,9 +2872,9 @@ "ja": "アルメニア人", "nl": "Armeens", "pt": "Armênio", - "ru": "Арменский", + "ru": "Армянский", "xloc": [ - "default.handlebars->25->735" + "default.handlebars->25->742" ] }, { @@ -2862,7 +2886,7 @@ "pt": "Assamese", "ru": "Ассамский", "xloc": [ - "default.handlebars->25->736" + "default.handlebars->25->743" ] }, { @@ -2874,7 +2898,7 @@ "pt": "Asturiano", "ru": "Астурии", "xloc": [ - "default.handlebars->25->737" + "default.handlebars->25->744" ] }, { @@ -2887,7 +2911,7 @@ "pt": "Aplicativo de autenticação", "ru": "Приложение аутентификации", "xloc": [ - "default.handlebars->25->1336" + "default.handlebars->25->1343" ] }, { @@ -2898,7 +2922,7 @@ "ja": "認証アプリ", "nl": "Verificatie-app", "pt": "Autenticador de aplicativo", - "ru": "Приложение для аутентификации", + "ru": "Приложение-аутентификатор", "xloc": [ "default-mobile.handlebars->9->18", "default-mobile.handlebars->9->21", @@ -2906,8 +2930,8 @@ "default-mobile.handlebars->9->32", "default.handlebars->25->122", "default.handlebars->25->127", - "default.handlebars->25->701", - "default.handlebars->25->703" + "default.handlebars->25->708", + "default.handlebars->25->710" ] }, { @@ -2945,7 +2969,7 @@ "ja": "オート", "nl": "Automatisch", "pt": "Auto", - "ru": "Автоматичеки", + "ru": "Автоматически", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar->5", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSizeDropDown->termSizeList->2" @@ -2959,9 +2983,9 @@ "ja": "自動削除", "nl": "Geautomatiseerde verwijdering", "pt": "Remover automaticamente", - "ru": "Авто-Удаление", + "ru": "Автоудаление", "xloc": [ - "default.handlebars->25->979" + "default.handlebars->25->986" ] }, { @@ -2972,7 +2996,7 @@ "ja": "自動接続", "nl": "Automatisch verbinden", "pt": "Conexão automática", - "ru": "Авто подключение", + "ru": "Автоподключение", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3", @@ -3003,7 +3027,7 @@ "pt": "Azerbaijão", "ru": "Азербайджанский", "xloc": [ - "default.handlebars->25->738" + "default.handlebars->25->745" ] }, { @@ -3059,7 +3083,7 @@ "ja": "ログインに戻る", "nl": "Terug naar inloggen", "pt": "Volte ao login", - "ru": "Обратно к логин экрану", + "ru": "Обратно к экрану входа", "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->12", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->10", @@ -3081,7 +3105,7 @@ "ja": "背景とインタラクティブ", "nl": "Achtergrond & interactief", "pt": "Segundo plano e interativo", - "ru": "Фоновый и интерактивный режимы", + "ru": "Фоновый и интерактивный", "xloc": [ "default.handlebars->25->321" ] @@ -3094,7 +3118,7 @@ "ja": "背景とインタラクティブ", "nl": "Achtergrond en interactief", "pt": "Segundo plano e interativo", - "ru": "Фоновый и интерактивный режимы", + "ru": "Фоновый и интерактивный", "xloc": [ "default.handlebars->25->299" ] @@ -3107,7 +3131,7 @@ "ja": "背景のみ", "nl": "Alleen achtergrond", "pt": "Apenas em segundo plano", - "ru": "Только в фоновом режиме", + "ru": "Только фоновый", "xloc": [ "default.handlebars->25->300", "default.handlebars->25->322" @@ -3122,7 +3146,7 @@ "ja": "バックスペース", "nl": "Backspace", "pt": "Excluir", - "ru": "Бекспейс", + "ru": "Backspace", "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3" ] @@ -3135,9 +3159,9 @@ "ja": "バックアップコード", "nl": "Back-up codes", "pt": "Códigos de backup", - "ru": "Коды бэкапа", + "ru": "Резервные коды", "xloc": [ - "default.handlebars->25->1338" + "default.handlebars->25->1345" ] }, { @@ -3146,8 +3170,9 @@ "en": "Bad Signature", "es": "Firma Erronea", "nl": "Ongeldige handtening", + "ru": "Плохой ключ", "xloc": [ - "default.handlebars->25->1398" + "default.handlebars->25->1405" ] }, { @@ -3156,8 +3181,9 @@ "en": "Bad Web Certificate", "es": "Cenrtificado Web Erroneo", "nl": "Onjuist webcertificaat", + "ru": "Плохой веб-сертификат", "xloc": [ - "default.handlebars->25->1397" + "default.handlebars->25->1404" ] }, { @@ -3169,7 +3195,7 @@ "pt": "Basco", "ru": "Баскский", "xloc": [ - "default.handlebars->25->739" + "default.handlebars->25->746" ] }, { @@ -3180,7 +3206,7 @@ "ja": "多数のユーザーアカウントをバッチ作成する", "nl": "Gebruikersaccounts aanmaken in batch", "pt": "Lote criar muitas contas de usuário", - "ru": "Пакетное создание многих учетных записей пользователей", + "ru": "Пакетное создание нескольких учетных записей пользователей", "xloc": [ "default.handlebars->container->column_l->p4->3->1->0->3->1->5" ] @@ -3194,7 +3220,7 @@ "pt": "Bielorrusso", "ru": "Белорусский", "xloc": [ - "default.handlebars->25->741" + "default.handlebars->25->748" ] }, { @@ -3206,7 +3232,7 @@ "pt": "Bengali", "ru": "Бенгальский", "xloc": [ - "default.handlebars->25->742" + "default.handlebars->25->749" ] }, { @@ -3218,7 +3244,7 @@ "pt": "Bósnia", "ru": "Боснийский", "xloc": [ - "default.handlebars->25->743" + "default.handlebars->25->750" ] }, { @@ -3230,7 +3256,7 @@ "pt": "Breton", "ru": "Бретонский", "xloc": [ - "default.handlebars->25->744" + "default.handlebars->25->751" ] }, { @@ -3242,9 +3268,9 @@ "ja": "放送", "nl": "Uitzending", "pt": "Broadcast", - "ru": "Отправить сообщение...", + "ru": "Отправить сообщение", "xloc": [ - "default.handlebars->25->1279", + "default.handlebars->25->1286", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -3259,7 +3285,7 @@ "pt": "Mensagem de transmissão", "ru": "Отправить сообщение", "xloc": [ - "default.handlebars->25->1236" + "default.handlebars->25->1243" ] }, { @@ -3272,7 +3298,7 @@ "pt": "Transmita uma mensagem para todos os usuários conectados.", "ru": "Отправить сообщение всем подключенным пользователям.", "xloc": [ - "default.handlebars->25->1235" + "default.handlebars->25->1242" ] }, { @@ -3284,7 +3310,7 @@ "pt": "Búlgaria", "ru": "Болгарский", "xloc": [ - "default.handlebars->25->740" + "default.handlebars->25->747" ] }, { @@ -3296,7 +3322,7 @@ "pt": "Birmanês", "ru": "Бирманский", "xloc": [ - "default.handlebars->25->745" + "default.handlebars->25->752" ] }, { @@ -3310,7 +3336,7 @@ "ru": "CCM", "xloc": [ "default-mobile.handlebars->9->181", - "default.handlebars->25->453" + "default.handlebars->25->460" ] }, { @@ -3324,8 +3350,8 @@ "ru": "CIRA", "xloc": [ "default-mobile.handlebars->9->122", - "default.handlebars->25->1044", - "default.handlebars->25->1049", + "default.handlebars->25->1051", + "default.handlebars->25->1056", "default.handlebars->25->186", "default.handlebars->25->373" ] @@ -3340,7 +3366,7 @@ "pt": "Servidor CIRA", "ru": "CIRA Сервер", "xloc": [ - "default.handlebars->25->1446" + "default.handlebars->25->1453" ] }, { @@ -3351,9 +3377,9 @@ "ja": "CIRAサーバーコマンド", "nl": "CIRA Server opdrachten", "pt": "Comandos do servidor CIRA", - "ru": "CIRA Сервер комманды", + "ru": "CIRA Сервер команды", "xloc": [ - "default.handlebars->25->1447" + "default.handlebars->25->1454" ] }, { @@ -3362,8 +3388,9 @@ "en": "CPU Load", "es": "Carga en el CPU", "nl": "CPU gebruik", + "ru": "Загрузка CPU", "xloc": [ - "default.handlebars->25->1412" + "default.handlebars->25->1419" ] }, { @@ -3374,9 +3401,9 @@ "ja": "過去15分間のCPU負荷", "nl": "CPU-belasting in de afgelopen 15 minuten", "pt": "Carga da CPU nos últimos 15 minutos", - "ru": "Загрузка ЦПУ за последние 15 минут", + "ru": "Загрузка CPU за последние 15 минут", "xloc": [ - "default.handlebars->25->1415" + "default.handlebars->25->1422" ] }, { @@ -3387,9 +3414,9 @@ "ja": "過去5分間のCPU負荷", "nl": "CPU-belasting in de afgelopen 5 minuten", "pt": "Carga da CPU nos últimos 5 minutos", - "ru": "Загрузка ЦПУ за последние 5 минут", + "ru": "Загрузка CPU за последние 5 минут", "xloc": [ - "default.handlebars->25->1414" + "default.handlebars->25->1421" ] }, { @@ -3400,9 +3427,9 @@ "ja": "直前のCPU負荷", "nl": "CPU-belasting in de laatste minuut", "pt": "Carga da CPU no último minuto", - "ru": "Загрузка ЦПУ за последнюю минуту", + "ru": "Загрузка CPU за последнюю минуту", "xloc": [ - "default.handlebars->25->1413" + "default.handlebars->25->1420" ] }, { @@ -3415,8 +3442,8 @@ "pt": "CR + LF", "ru": "CR+LF", "xloc": [ - "default.handlebars->25->628", - "default.handlebars->25->637", + "default.handlebars->25->635", + "default.handlebars->25->644", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -3430,8 +3457,8 @@ "pt": "Formato CSV", "ru": "Формат CSV", "xloc": [ - "default.handlebars->25->1188", - "default.handlebars->25->1227" + "default.handlebars->25->1195", + "default.handlebars->25->1234" ] }, { @@ -3445,7 +3472,7 @@ "pt": "Erro de chamada", "ru": "Ошибка вызова", "xloc": [ - "default.handlebars->25->1456" + "default.handlebars->25->1463" ] }, { @@ -3461,11 +3488,11 @@ "xloc": [ "default-mobile.handlebars->9->41", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->25->964", + "default.handlebars->25->971", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", - "player.htm->p11->dialog->idx_dlgButtonBar", + "player.handlebars->p11->dialog->idx_dlgButtonBar", "xterm.handlebars->p11->dialog->idx_dlgButtonBar" ] }, @@ -3492,7 +3519,7 @@ "pt": "Catalão", "ru": "Каталонский", "xloc": [ - "default.handlebars->25->746" + "default.handlebars->25->753" ] }, { @@ -3506,7 +3533,7 @@ "pt": "Centralize o mapa aqui", "ru": "Установить центр карты здесь", "xloc": [ - "default.handlebars->25->419" + "default.handlebars->25->426" ] }, { @@ -3519,7 +3546,7 @@ "pt": "Chamorro", "ru": "Чаморро", "xloc": [ - "default.handlebars->25->747" + "default.handlebars->25->754" ] }, { @@ -3530,9 +3557,9 @@ "ja": "{0}のメールを変更", "nl": "Verander e-mail voor {0}", "pt": "Alterar email para {0}", - "ru": "Смена е-мейла для {0}", + "ru": "Смена email для {0}", "xloc": [ - "default.handlebars->25->1351" + "default.handlebars->25->1358" ] }, { @@ -3545,9 +3572,9 @@ "pt": "Alterar grupo", "ru": "Смена группы", "xloc": [ - "default.handlebars->25->494", - "default.handlebars->25->558", - "default.handlebars->25->559" + "default.handlebars->25->501", + "default.handlebars->25->565", + "default.handlebars->25->566" ] }, { @@ -3558,11 +3585,11 @@ "ja": "パスワードを変更する", "nl": "Verander wachtwoord", "pt": "Mudar senha", - "ru": "Смена Пароля", + "ru": "Смена пароля", "xloc": [ "default-mobile.handlebars->9->49", - "default.handlebars->25->1346", - "default.handlebars->25->940" + "default.handlebars->25->1353", + "default.handlebars->25->947" ] }, { @@ -3575,7 +3602,7 @@ "pt": "Alterar senha para {0}", "ru": "Смена пароля для {0}", "xloc": [ - "default.handlebars->25->1358" + "default.handlebars->25->1365" ] }, { @@ -3586,7 +3613,7 @@ "ja": "メールアドレスを変更する", "nl": "Verander e-mailadres", "pt": "Mude o endereço de email", - "ru": "Смена е-мейл адреса", + "ru": "Смена email", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->3->changeEmailId->0", "default.handlebars->container->column_l->p2->p2AccountActions->3->p2AccountPassActions->accountChangeEmailAddressSpan->0" @@ -3642,7 +3669,7 @@ "pt": "Mude o endereço de e-mail da sua conta aqui.", "ru": "Измените адрес электронной почты вашей учетной записи здесь.", "xloc": [ - "default.handlebars->25->927" + "default.handlebars->25->934" ] }, { @@ -3655,7 +3682,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->25->933" + "default.handlebars->25->940" ] }, { @@ -3666,9 +3693,9 @@ "ja": "言語を変更するには、ページを更新する必要があります。", "nl": "Als u de taal wilt wijzigen, moet de pagina worden ververst.", "pt": "Alterar o idioma exigirá uma atualização da página.", - "ru": "Изменение языка потребует обновления страницы.", + "ru": "Изменение языка потребует перезагрузить страницу.", "xloc": [ - "default.handlebars->25->912" + "default.handlebars->25->919" ] }, { @@ -3681,7 +3708,7 @@ "pt": "Chat", "ru": "Чат", "xloc": [ - "default.handlebars->25->1205" + "default.handlebars->25->1212" ] }, { @@ -3692,12 +3719,12 @@ "ja": "チャットと通知", "nl": "Chat & Melden", "pt": "Chat & Notificação", - "ru": "Установить чат и уведомить", + "ru": "Чаты и уведомления", "xloc": [ "default-mobile.handlebars->9->307", "default-mobile.handlebars->9->325", - "default.handlebars->25->1099", - "default.handlebars->25->1122" + "default.handlebars->25->1106", + "default.handlebars->25->1129" ] }, { @@ -3710,7 +3737,7 @@ "pt": "Checheno", "ru": "Чеченский", "xloc": [ - "default.handlebars->25->748" + "default.handlebars->25->755" ] }, { @@ -3721,7 +3748,7 @@ "ja": "チェックして[OK]をクリックし、エラーログをクリアします。", "nl": "Controleer en klik op OK om het foutenlogboek te wissen.", "pt": "Verifique e clique em OK para limpar o log de erros.", - "ru": "Поставьте отметку и жмите ОК для очищения журнала ошибок.", + "ru": "Установите флажок и нажмите ОК для очищения журнала ошибок.", "xloc": [ "default.handlebars->25->119" ] @@ -3734,7 +3761,7 @@ "ja": "チェックして[OK]をクリックし、サーバーの自己更新を開始します。", "nl": "Controleer en klik op OK om de serverupdate te starten.", "pt": "Marque e clique em OK para iniciar a atualização automática do servidor.", - "ru": "Поставьте отметку и жмите ОК для начала само-обновления.", + "ru": "Установите флажок и нажмите ОК для начала самообновления.", "xloc": [ "default.handlebars->25->114" ] @@ -3747,7 +3774,7 @@ "ja": "サーバーのバージョンを確認する", "nl": "Controleer server versie", "pt": "Verifique a versão do servidor", - "ru": "Проветь версию сервера", + "ru": "Проверить наличие обновлений", "xloc": [ "default.handlebars->container->column_l->p6->p2ServerActions->3->p2ServerActionsVersion->0" ] @@ -3762,8 +3789,8 @@ "pt": "Verificando ...", "ru": "Проверка...", "xloc": [ - "default.handlebars->25->1452", - "default.handlebars->25->714" + "default.handlebars->25->1459", + "default.handlebars->25->721" ] }, { @@ -3776,7 +3803,7 @@ "pt": "Chinês", "ru": "Китайский", "xloc": [ - "default.handlebars->25->749" + "default.handlebars->25->756" ] }, { @@ -3788,7 +3815,7 @@ "pt": "Chinês (Hong Kong)", "ru": "Китайский (Гонконг)", "xloc": [ - "default.handlebars->25->750" + "default.handlebars->25->757" ] }, { @@ -3800,7 +3827,7 @@ "pt": "Chinês (PRC)", "ru": "Китайский (КНР)", "xloc": [ - "default.handlebars->25->751" + "default.handlebars->25->758" ] }, { @@ -3812,7 +3839,7 @@ "pt": "Chinês (Singapura)", "ru": "Китайский (Сингапур)", "xloc": [ - "default.handlebars->25->752" + "default.handlebars->25->759" ] }, { @@ -3824,7 +3851,7 @@ "pt": "Chinês (Taiwan)", "ru": "Китайский (Тайвань)", "xloc": [ - "default.handlebars->25->753" + "default.handlebars->25->760" ] }, { @@ -3835,7 +3862,7 @@ "ja": "ChromeOS", "nl": "ChromeOS", "pt": "ChromeOS", - "ru": "ХромеОС", + "ru": "ChromeOS", "xloc": [ "default-mobile.handlebars->9->160", "default.handlebars->25->30" @@ -3850,7 +3877,7 @@ "pt": "Chuvash", "ru": "Чувашский", "xloc": [ - "default.handlebars->25->754" + "default.handlebars->25->761" ] }, { @@ -3882,11 +3909,11 @@ "default-mobile.handlebars->9->268", "default-mobile.handlebars->9->28", "default-mobile.handlebars->9->91", - "default.handlebars->25->1182", - "default.handlebars->25->663", - "default.handlebars->25->665", - "default.handlebars->25->667", - "default.handlebars->25->669", + "default.handlebars->25->1189", + "default.handlebars->25->670", + "default.handlebars->25->672", + "default.handlebars->25->674", + "default.handlebars->25->676", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default.handlebars->container->column_l->p41->3->1", "messenger.handlebars->xbottom" @@ -3900,7 +3927,7 @@ "ja": "クリアトークン", "nl": "Wis Tokens", "pt": "Limpar Tokens", - "ru": "Очистить Токены", + "ru": "Очистить токены", "xloc": [ "default.handlebars->25->136" ] @@ -3915,7 +3942,7 @@ "pt": "Limpe o núcleo", "ru": "Очистить ядро", "xloc": [ - "default.handlebars->25->695" + "default.handlebars->25->702" ] }, { @@ -3939,9 +3966,9 @@ "ja": "サーバー側のデバイス名を編集するにはここをクリックしてください", "nl": "Klik hier om de apparaatnaam van de server te bewerken", "pt": "clique aqui para criar um grupo de dispositivos", - "ru": "Для изменения имени устройства на сервере жмите сюда", + "ru": "Для изменения имени устройства на сервере нажмите сюда", "xloc": [ - "default.handlebars->25->433" + "default.handlebars->25->440" ] }, { @@ -3952,10 +3979,10 @@ "ja": "[OK]をクリックして確認メールを送信します:", "nl": "Klik op OK om een verificatiebericht te sturen naar:", "pt": "Clique em ok para enviar um email de verificação para:", - "ru": "Нажмите ок для отправки подтверждения по електронной почте:", + "ru": "Нажмите ОК для отправки подтверждения по электронной почте:", "xloc": [ "default-mobile.handlebars->9->34", - "default.handlebars->25->924" + "default.handlebars->25->931" ] }, { @@ -3979,10 +4006,10 @@ "ja": "クライアントが開始したリモートアクセス", "nl": "Gebruiker geïnitieerde externe toegang", "pt": "Acesso remoto iniciado pelo cliente", - "ru": "Удаленная Связь Установленая Клиентом", + "ru": "Клиент инициировал удаленный доступ", "xloc": [ - "default.handlebars->25->1043", - "default.handlebars->25->1048" + "default.handlebars->25->1050", + "default.handlebars->25->1055" ] }, { @@ -4011,7 +4038,7 @@ "default-mobile.handlebars->9->26", "default.handlebars->25->134", "default.handlebars->25->142", - "default.handlebars->25->621" + "default.handlebars->25->628" ] }, { @@ -4022,7 +4049,7 @@ "ja": "列", "nl": "kolommen", "pt": "Colunas", - "ru": "Колонны", + "ru": "Колонки", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->1", "default.handlebars->container->column_l->p1->p1title->devListToolbarViewIcons" @@ -4034,9 +4061,10 @@ "en": "Common Device Groups", "es": "Grupos de Dispositivos Comunes", "nl": "Gemeenschappelijke apparaatgroepen", + "ru": "Общие группы устройств", "xloc": [ - "default.handlebars->25->1287", - "default.handlebars->25->1361" + "default.handlebars->25->1294", + "default.handlebars->25->1368" ] }, { @@ -4047,10 +4075,10 @@ "ja": "{1}エントリ{2}のうち{0}をこの場所に拘束しますか?", "nl": "Bevestig {0} van {1} bestand {2} naar deze locatie?", "pt": "Confirme {0} da {1} entrada {2} para este local?", - "ru": "Подтвердить {0} из {1} записи {2} в это местоположение?", + "ru": "Подтвердить {0} из {1} записей в это расположение?", "xloc": [ "default-mobile.handlebars->9->86", - "default.handlebars->25->1177" + "default.handlebars->25->1184" ] }, { @@ -4065,11 +4093,11 @@ "xloc": [ "default-mobile.handlebars->9->220", "default-mobile.handlebars->9->287", - "default.handlebars->25->1057", - "default.handlebars->25->1302", + "default.handlebars->25->1064", + "default.handlebars->25->1309", "default.handlebars->25->396", - "default.handlebars->25->553", - "default.handlebars->25->562" + "default.handlebars->25->560", + "default.handlebars->25->569" ] }, { @@ -4080,10 +4108,10 @@ "ja": "この場所への1つのエントリのコピーを確認しますか?", "nl": "Bevestig kopiëren van 1 bestand naar deze locatie?", "pt": "Confirmar cópia de 1 entrada para este local?", - "ru": "Подтвердить копию 1 записи в это место?", + "ru": "Подтвердить копирование 1 записи в это расположение?", "xloc": [ "default-mobile.handlebars->9->257", - "default.handlebars->25->658" + "default.handlebars->25->665" ] }, { @@ -4094,10 +4122,10 @@ "ja": "{0}エントリのコピーをこの場所に確認しますか?", "nl": "Bevestig kopiëren van {0} bestanden naar deze locatie?", "pt": "Confirmar cópia de {0} entradas para este local?", - "ru": "Подтвердить копию {0} записей в этом месте?", + "ru": "Подтвердить копирование {0} записей в это расположение?", "xloc": [ "default-mobile.handlebars->9->256", - "default.handlebars->25->657" + "default.handlebars->25->664" ] }, { @@ -4121,10 +4149,10 @@ "ja": "1エントリのこの場所への移動を確認しますか?", "nl": "Verplaatsing van 1 bestand naar deze locatie bevestigen?", "pt": "Confirmar a movimentação de 1 entrada para este local?", - "ru": "Подтвердить перемещение 1 записи в это место?", + "ru": "Подтвердить перемещение 1 записи в это расположение?", "xloc": [ "default-mobile.handlebars->9->259", - "default.handlebars->25->660" + "default.handlebars->25->667" ] }, { @@ -4135,10 +4163,10 @@ "ja": "{0}エントリのこの場所への移動を確認しますか?", "nl": "Verplaatsing van {0} bestanden naar deze locatie bevestigen?", "pt": "Confirmar a movimentação de {0} entradas para este local?", - "ru": "Подтвердить перемещение {0} записей в это место?", + "ru": "Подтвердить перемещение {0} записей в это расположение?", "xloc": [ "default-mobile.handlebars->9->258", - "default.handlebars->25->659" + "default.handlebars->25->666" ] }, { @@ -4150,7 +4178,7 @@ "nl": "Bevestig overschrijven?", "ru": "Подтвердить перезапись?", "xloc": [ - "default.handlebars->25->1176" + "default.handlebars->25->1183" ] }, { @@ -4161,10 +4189,10 @@ "ja": "認証アプリケーションの削除2段階ログインを確認しますか?", "nl": "Bevestig de verwijdering van de Tweestapsverificatie applicatie?", "pt": "Confirmar remoção do login do aplicativo autenticador em duas etapas?", - "ru": "Подтвердите удаление приложения аутентификации 2-хэтапного входа в систему.", + "ru": "Подтвердить удаление приложения аутентификации двухэтапного входа в систему?", "xloc": [ "default-mobile.handlebars->9->33", - "default.handlebars->25->704" + "default.handlebars->25->711" ] }, { @@ -4173,9 +4201,10 @@ "en": "Confirm removal of device group {0}?", "es": "¿Eliminar el grupo de dispositivos {0}?", "nl": "Bevestig het verwijderen van de apparaatgroep {0}?", + "ru": "Подтвердить удаление группы устройств {0}?", "xloc": [ - "default.handlebars->25->1297", - "default.handlebars->25->1381" + "default.handlebars->25->1304", + "default.handlebars->25->1388" ] }, { @@ -4184,8 +4213,9 @@ "en": "Confirm removal of group {0}?", "es": "¿Eliminar el grupo {0}?", "nl": "Bevestig het verwijderen van de groep {0}?", + "ru": "Подтвердить удаление группы {0}?", "xloc": [ - "default.handlebars->25->1377" + "default.handlebars->25->1384" ] }, { @@ -4199,8 +4229,8 @@ "ru": "Подтвердить удаление пользователя {0}?", "xloc": [ "default-mobile.handlebars->9->333", - "default.handlebars->25->1131", - "default.handlebars->25->1305" + "default.handlebars->25->1138", + "default.handlebars->25->1312" ] }, { @@ -4216,8 +4246,8 @@ "default-mobile.handlebars->9->236", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", - "default.handlebars->25->640", - "default.handlebars->25->995", + "default.handlebars->25->1002", + "default.handlebars->25->647", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3", @@ -4248,8 +4278,8 @@ "pt": "Conecte-se ao servidor", "ru": "Подключиться к серверу", "xloc": [ - "default.handlebars->25->1047", - "default.handlebars->25->1051" + "default.handlebars->25->1054", + "default.handlebars->25->1058" ] }, { @@ -4299,8 +4329,9 @@ "en": "Connected Intel® AMT", "es": "Conectado Intel AMT", "nl": "Verbonden Intel® AMT", + "ru": "Подключено Intel® AMT", "xloc": [ - "default.handlebars->25->1403" + "default.handlebars->25->1410" ] }, { @@ -4309,8 +4340,9 @@ "en": "Connected Users", "es": "Usuarios Conectados", "nl": "Verbonden gebruikers", + "ru": "Подключенные пользователи", "xloc": [ - "default.handlebars->25->1408" + "default.handlebars->25->1415" ] }, { @@ -4342,7 +4374,7 @@ "default.handlebars->25->211", "default.handlebars->25->214", "default.handlebars->25->220", - "default.handlebars->25->681", + "default.handlebars->25->688", "default.handlebars->25->9", "xterm.handlebars->9->2" ] @@ -4357,7 +4389,7 @@ "pt": "Contagem de conexões", "ru": "Подключений ", "xloc": [ - "default.handlebars->25->1419" + "default.handlebars->25->1426" ] }, { @@ -4368,9 +4400,9 @@ "ja": "接続リレー", "nl": "Verbindings Relay", "pt": "Encaminhador de conexão", - "ru": "Реле подключения", + "ru": "Ретранслятор подключения", "xloc": [ - "default.handlebars->25->1445" + "default.handlebars->25->1452" ] }, { @@ -4410,9 +4442,9 @@ "ru": "Связь", "xloc": [ "default-mobile.handlebars->9->195", - "default.handlebars->25->1147", + "default.handlebars->25->1154", "default.handlebars->25->202", - "default.handlebars->25->485", + "default.handlebars->25->492", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" ] }, @@ -4441,7 +4473,7 @@ "pt": "Console - ", "ru": "Консоль - ", "xloc": [ - "default.handlebars->25->434" + "default.handlebars->25->441" ] }, { @@ -4454,7 +4486,7 @@ "pt": "Codificador de cookies", "ru": "Cookie-кодировщик", "xloc": [ - "default.handlebars->25->1433" + "default.handlebars->25->1440" ] }, { @@ -4495,7 +4527,7 @@ "ja": "MacOSエージェントのURLをクリップボードにコピーします", "nl": "Kopieer MacOS agent link naar het klembord", "pt": "Copiar o URL do agente MacOS para a área de transferência", - "ru": "Скопировать ссылку МасОС агента в буфер обмена", + "ru": "Скопировать ссылку MacOS agent в буфер обмена", "xloc": [ "default.handlebars->25->337" ] @@ -4652,7 +4684,7 @@ "pt": "Servidor Core", "ru": "Основной сервер", "xloc": [ - "default.handlebars->25->1432" + "default.handlebars->25->1439" ] }, { @@ -4664,7 +4696,7 @@ "pt": "Corso", "ru": "Kорсиканский", "xloc": [ - "default.handlebars->25->755" + "default.handlebars->25->762" ] }, { @@ -4677,7 +4709,7 @@ "pt": "Criar conta", "ru": "Создать учетную запись", "xloc": [ - "default.handlebars->25->1247", + "default.handlebars->25->1254", "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" ] @@ -4701,8 +4733,9 @@ "en": "Create User Group", "es": "Crear grupo de usuarios", "nl": "Maak een gebruikersgroep.", + "ru": "Создать группу пользователей", "xloc": [ - "default.handlebars->25->1270" + "default.handlebars->25->1277" ] }, { @@ -4715,7 +4748,7 @@ "pt": "Crie um novo grupo de dispositivos usando as opções abaixo.", "ru": "Создайте новую группу устройств, используя параметры ниже.", "xloc": [ - "default.handlebars->25->947" + "default.handlebars->25->954" ] }, { @@ -4741,7 +4774,7 @@ "pt": "Crie várias contas ao mesmo tempo importando um arquivo JSON com o seguinte formato:", "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "xloc": [ - "default.handlebars->25->1218" + "default.handlebars->25->1225" ] }, { @@ -4766,9 +4799,9 @@ "ja": "作成", "nl": "Aanmaken", "pt": "Criação", - "ru": "Создание", + "ru": "Создано", "xloc": [ - "default.handlebars->25->1324" + "default.handlebars->25->1331" ] }, { @@ -4794,7 +4827,7 @@ "pt": "Cree", "ru": "Кри (Канадский язык)", "xloc": [ - "default.handlebars->25->756" + "default.handlebars->25->763" ] }, { @@ -4806,7 +4839,7 @@ "pt": "Croata", "ru": "Хорватский", "xloc": [ - "default.handlebars->25->757" + "default.handlebars->25->764" ] }, { @@ -4884,7 +4917,7 @@ "ja": "現行版", "nl": "Huidige versie", "pt": "Versão Atual", - "ru": "Текущшая версия", + "ru": "Текущая версия", "xloc": [ "default.handlebars->25->110" ] @@ -4914,7 +4947,7 @@ "pt": "Tcheco", "ru": "Чешский", "xloc": [ - "default.handlebars->25->758" + "default.handlebars->25->765" ] }, { @@ -4925,7 +4958,7 @@ "ja": "DNSサフィックス", "nl": "DNS-achtervoegsel", "pt": "Sufixo DNS", - "ru": "DNS суффикс", + "ru": "DNS-суффикс", "xloc": [ "default.handlebars->25->96" ] @@ -4939,7 +4972,7 @@ "pt": "Dinamarquês", "ru": "Датский", "xloc": [ - "default.handlebars->25->759" + "default.handlebars->25->766" ] }, { @@ -4952,7 +4985,7 @@ "pt": "DataChannel", "ru": "DataChannel", "xloc": [ - "default.handlebars->25->598" + "default.handlebars->25->605" ] }, { @@ -4963,9 +4996,9 @@ "ja": "日時", "nl": "Datum & Tiid", "pt": "Datas e Horário", - "ru": "Даты & Время", + "ru": "Дата & Время", "xloc": [ - "default.handlebars->25->915" + "default.handlebars->25->922" ] }, { @@ -4978,7 +5011,7 @@ "pt": "Dia", "ru": "День", "xloc": [ - "default.handlebars->25->537" + "default.handlebars->25->544" ] }, { @@ -4991,7 +5024,7 @@ "pt": "Desativar o modo de controle do cliente (CCM)", "ru": "Деактивировать режим управления клиентом (CCM)", "xloc": [ - "default.handlebars->25->1035" + "default.handlebars->25->1042" ] }, { @@ -5022,12 +5055,12 @@ "default-mobile.handlebars->9->81", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->25->1171", - "default.handlebars->25->650", + "default.handlebars->25->1178", + "default.handlebars->25->657", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->container->dialog->idx_dlgButtonBar->5", - "player.htm->p11->dialog->idx_dlgButtonBar->5", + "player.handlebars->p11->dialog->idx_dlgButtonBar->5", "xterm.handlebars->p11->dialog->idx_dlgButtonBar->5" ] }, @@ -5039,10 +5072,10 @@ "ja": "アカウントを削除する", "nl": "Verwijder account", "pt": "Deletar Conta", - "ru": "Удалить Пользователя", + "ru": "Удалить учетную запись", "xloc": [ "default-mobile.handlebars->9->43", - "default.handlebars->25->932" + "default.handlebars->25->939" ] }, { @@ -5053,10 +5086,10 @@ "ja": "デバイスを削除", "nl": "Verwijder apparaat", "pt": "Excluir dispositivo", - "ru": "Удалить Устройство", + "ru": "Удалить устройство", "xloc": [ "default-mobile.handlebars->9->199", - "default.handlebars->25->496" + "default.handlebars->25->503" ] }, { @@ -5067,12 +5100,12 @@ "ja": "グループを削除", "nl": "Verwijder groep", "pt": "Excluir grupo", - "ru": "Удалить Группу", + "ru": "Удалить группу", "xloc": [ "default-mobile.handlebars->9->285", "default-mobile.handlebars->9->288", - "default.handlebars->25->1028", - "default.handlebars->25->1058" + "default.handlebars->25->1035", + "default.handlebars->25->1065" ] }, { @@ -5083,10 +5116,10 @@ "ja": "ノードを削除", "nl": "Verwijder apparaat", "pt": "Excluir nó", - "ru": "Удалить Узел", + "ru": "Удалить устройство", "xloc": [ "default-mobile.handlebars->9->218", - "default.handlebars->25->563" + "default.handlebars->25->570" ] }, { @@ -5097,7 +5130,7 @@ "ja": "ノードを削除する", "nl": "Verwijder apparaten", "pt": "Excluir nós", - "ru": "Удалить Узлы", + "ru": "Удалить устройства", "xloc": [ "default.handlebars->25->397" ] @@ -5108,8 +5141,9 @@ "en": "Delete User", "es": "Borrar usuario", "nl": "Verwijder gebruiker", + "ru": "Удалить пользователя", "xloc": [ - "default.handlebars->25->1345" + "default.handlebars->25->1352" ] }, { @@ -5118,9 +5152,10 @@ "en": "Delete User Group", "es": "Eliminar Grupo de Usuarios", "nl": "Verwijder de gebruikersgroep", + "ru": "Удалить группу пользователей", "xloc": [ - "default.handlebars->25->1295", - "default.handlebars->25->1303" + "default.handlebars->25->1302", + "default.handlebars->25->1310" ] }, { @@ -5131,9 +5166,9 @@ "ja": "ユーザーを削除{0}", "nl": "Verwijder gebruiker {0}", "pt": "Excluir usuário {0}", - "ru": "Удалить Пользователя {0}", + "ru": "Удалить пользователя {0}", "xloc": [ - "default.handlebars->25->1359" + "default.handlebars->25->1366" ] }, { @@ -5144,7 +5179,7 @@ "ja": "アカウントを削除する", "nl": "Verwijder account", "pt": "Deletar conta", - "ru": "Удалить пользователя", + "ru": "Удалить учетную запись", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->7->0", "default.handlebars->container->column_l->p2->p2AccountActions->3->p2AccountPassActions->7" @@ -5171,12 +5206,12 @@ "ja": "選択したアイテムを削除しますか?", "nl": "Verwijder geselecteerde item?", "pt": "Excluir item selecionado?", - "ru": "Удалить выбранные?", + "ru": "Удалить выбранные элементы?", "xloc": [ "default-mobile.handlebars->9->251", "default-mobile.handlebars->9->83", - "default.handlebars->25->1173", - "default.handlebars->25->652" + "default.handlebars->25->1180", + "default.handlebars->25->659" ] }, { @@ -5185,8 +5220,9 @@ "en": "Delete user group {0}?", "es": "Eliminar Grupo de Usuarios {0}?", "nl": "Verwijder gebruikersgroep {0}?", + "ru": "Удалить группу пользователей {0}?", "xloc": [ - "default.handlebars->25->1301" + "default.handlebars->25->1308" ] }, { @@ -5197,12 +5233,12 @@ "ja": "選択したアイテム{0}を削除しますか?", "nl": "Verwijder {0} gelecteerde items?", "pt": "Excluir {0} itens selecionados?", - "ru": "Удалить {0} избранные?", + "ru": "Удалить {0} выбранных элементов?", "xloc": [ "default-mobile.handlebars->9->250", "default-mobile.handlebars->9->82", - "default.handlebars->25->1172", - "default.handlebars->25->651" + "default.handlebars->25->1179", + "default.handlebars->25->658" ] }, { @@ -5282,17 +5318,17 @@ "default-mobile.handlebars->9->277", "default-mobile.handlebars->9->290", "default-mobile.handlebars->9->60", - "default.handlebars->25->1060", - "default.handlebars->25->1269", - "default.handlebars->25->1274", + "default.handlebars->25->1067", "default.handlebars->25->1276", - "default.handlebars->25->1299", - "default.handlebars->25->443", - "default.handlebars->25->444", - "default.handlebars->25->594", + "default.handlebars->25->1281", + "default.handlebars->25->1283", + "default.handlebars->25->1306", + "default.handlebars->25->450", + "default.handlebars->25->451", + "default.handlebars->25->601", "default.handlebars->25->95", - "default.handlebars->25->952", - "default.handlebars->25->976", + "default.handlebars->25->959", + "default.handlebars->25->983", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] }, @@ -5316,8 +5352,8 @@ "pt": "Área de Trabalho", "ru": "Рабочий стол", "xloc": [ - "default.handlebars->25->1062", - "default.handlebars->25->412", + "default.handlebars->25->1069", + "default.handlebars->25->419", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop" ] @@ -5345,7 +5381,7 @@ "pt": "Notificação na área de trabalho", "ru": "Уведомление на рабочем столе", "xloc": [ - "default.handlebars->25->986" + "default.handlebars->25->993" ] }, { @@ -5358,7 +5394,7 @@ "pt": "Prompt da área de trabalho", "ru": "Запрос рабочего стола", "xloc": [ - "default.handlebars->25->985" + "default.handlebars->25->992" ] }, { @@ -5371,7 +5407,7 @@ "pt": "Prompt da área de trabalho + barra de ferramentas", "ru": "Запрос рабочего стола + панель инструментов", "xloc": [ - "default.handlebars->25->983" + "default.handlebars->25->990" ] }, { @@ -5384,7 +5420,7 @@ "pt": "Barra de ferramentas da área de trabalho", "ru": "Панель инструментов рабочего стола", "xloc": [ - "default.handlebars->25->984" + "default.handlebars->25->991" ] }, { @@ -5395,7 +5431,7 @@ "ja": "デスクトップ", "nl": "Bureaubladen", "pt": "Áreas de trabalho", - "ru": "Крупные значки", + "ru": "Экраны", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->5", "default.handlebars->container->column_l->p1->p1title->devListToolbarViewIcons" @@ -5409,7 +5445,7 @@ "ja": "詳細", "nl": "Details", "pt": "Detalhes", - "ru": "Детайли", + "ru": "Детали", "xloc": [ "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo" ] @@ -5422,7 +5458,7 @@ "ja": "詳細-", "nl": "Details -", "pt": "Detalhes - ", - "ru": "Детайли - ", + "ru": "Детали - ", "xloc": [ "default.handlebars->container->column_l->p17->p17title->3" ] @@ -5435,7 +5471,7 @@ "ja": "デバイス", "nl": "Apparaat", "pt": "Dispositivo", - "ru": "Устройству", + "ru": "Устройство", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] @@ -5448,10 +5484,10 @@ "ja": "デバイスアクション", "nl": "Apparaatactie", "pt": "Ação do dispositivo", - "ru": "Действие устройства", + "ru": "Управление устройством", "xloc": [ "default-mobile.handlebars->9->211", - "default.handlebars->25->536" + "default.handlebars->25->543" ] }, { @@ -5460,12 +5496,13 @@ "en": "Device Group", "es": "Grupo de dispositivos", "nl": "Apparaat Groep", + "ru": "Группа устройства", "xloc": [ - "default.handlebars->25->1079", - "default.handlebars->25->1081", - "default.handlebars->25->1293", - "default.handlebars->25->1367", - "default.handlebars->25->1373" + "default.handlebars->25->1086", + "default.handlebars->25->1088", + "default.handlebars->25->1300", + "default.handlebars->25->1374", + "default.handlebars->25->1380" ] }, { @@ -5479,7 +5516,7 @@ "ru": "Пользователь группы устройств", "xloc": [ "default-mobile.handlebars->9->331", - "default.handlebars->25->1129" + "default.handlebars->25->1136" ] }, { @@ -5493,10 +5530,10 @@ "ru": "Группы устройств", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->25->1265", - "default.handlebars->25->1278", - "default.handlebars->25->1333", - "default.handlebars->25->1406", + "default.handlebars->25->1272", + "default.handlebars->25->1285", + "default.handlebars->25->1340", + "default.handlebars->25->1413", "default.handlebars->container->column_l->p2->9" ] }, @@ -5510,7 +5547,7 @@ "pt": "Localização do dispositivo", "ru": "Местонахождение устройства", "xloc": [ - "default.handlebars->25->564" + "default.handlebars->25->571" ] }, { @@ -5525,8 +5562,8 @@ "xloc": [ "default-mobile.handlebars->9->222", "default.handlebars->25->238", - "default.handlebars->25->592", - "player.htm->3->9" + "default.handlebars->25->599", + "player.handlebars->3->9" ] }, { @@ -5539,7 +5576,7 @@ "pt": "Notificação de dispositivo", "ru": "Уведомление устройства", "xloc": [ - "default.handlebars->25->527" + "default.handlebars->25->534" ] }, { @@ -5563,10 +5600,10 @@ "ja": "デバイス接続。", "nl": "Apparaat verbindingen.", "pt": "Conexões de dispositivos.", - "ru": "Подключения устройства", + "ru": "Подключения устройств.", "xloc": [ - "default.handlebars->25->1133", - "default.handlebars->25->920" + "default.handlebars->25->1140", + "default.handlebars->25->927" ] }, { @@ -5577,10 +5614,10 @@ "ja": "デバイスの切断。", "nl": "Apparaat verbroken.", "pt": "Desconexões de dispositivos.", - "ru": "Отключения устройства", + "ru": "Отключения устройств.", "xloc": [ - "default.handlebars->25->1134", - "default.handlebars->25->921" + "default.handlebars->25->1141", + "default.handlebars->25->928" ] }, { @@ -5591,9 +5628,9 @@ "ja": "デバイスグループのメモは、他のデバイスグループ管理者が表示および変更できます。", "nl": "Apparaatgroepnotities kunnen worden bekeken en gewijzigd door andere apparaatgroepbeheerders.", "pt": "As notas do grupo de dispositivos podem ser visualizadas e alteradas por outros administradores do grupo de dispositivos.", - "ru": "Примечания группы устройств могут быть просмотрены и изменены другими администраторами группы устройств.", + "ru": "Примечания могут быть просмотрены и изменены другими администраторами.", "xloc": [ - "default.handlebars->25->525" + "default.handlebars->25->532" ] }, { @@ -5604,7 +5641,7 @@ "ja": "デバイスは検出されましたが、電源状態を取得できませんでした。", "nl": "Apparaat is gedetecteerd, maar de status kon niet worden verkregen.", "pt": "O dispositivo foi detectado, mas não foi possível obter o estado de energia.", - "ru": "Устройство обнаружено, но режим питания не может быть установлен.", + "ru": "Устройство обнаружено, но состояние питания не может быть получено.", "xloc": [ "default.handlebars->25->361" ] @@ -5617,7 +5654,7 @@ "ja": "デバイスは休止状態です(S4)", "nl": "Apparaat is in slaapstand (S4)", "pt": "O dispositivo está hibernando (S4)", - "ru": "Устройство находится в спящем режиме (S4)", + "ru": "Устройство находится в режиме гибернации (S4)", "xloc": [ "default-mobile.handlebars->9->118", "default.handlebars->25->367" @@ -5752,7 +5789,7 @@ "ja": "デバイスに電源が入っています", "nl": "Apparaat is ingeschakeld", "pt": "O dispositivo está ligado", - "ru": "Устройство работает", + "ru": "Устройство включено", "xloc": [ "default-mobile.handlebars->9->114", "default.handlebars->25->363" @@ -5779,7 +5816,7 @@ "ja": "デバイスは存在しますが、電源状態を判別できません", "nl": "Apparaat is aanwezig, maar de status kan niet worden bepaald", "pt": "O dispositivo está presente, mas o estado de energia não pode ser determinado", - "ru": "Устройство присутствует, но состояние питания не может быть установлено", + "ru": "Устройство присутствует, но состояние питания не может быть определено", "xloc": [ "default-mobile.handlebars->9->120", "default.handlebars->25->369" @@ -5795,7 +5832,7 @@ "pt": "Nome do dispositivo", "ru": "Имя устройства", "xloc": [ - "default.handlebars->25->424" + "default.handlebars->25->431" ] }, { @@ -5821,7 +5858,7 @@ "pt": "Desativado", "ru": "Отключено", "xloc": [ - "default.handlebars->25->470" + "default.handlebars->25->477" ] }, { @@ -5836,8 +5873,8 @@ "xloc": [ "default-mobile.handlebars->9->237", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->25->641", - "default.handlebars->25->996", + "default.handlebars->25->1003", + "default.handlebars->25->648", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", "xterm.handlebars->p11->deskarea0->deskarea1->3" @@ -5900,8 +5937,9 @@ "en": "Display device group name", "es": "Mostrar el nombre del grupo de dispositivos", "nl": "Toon apparaatgroepsnaam", + "ru": "Отобразить имя группы устройств", "xloc": [ - "default.handlebars->25->919" + "default.handlebars->25->926" ] }, { @@ -5912,9 +5950,9 @@ "ja": "表示名", "nl": "Schermnaam", "pt": "Mostrar nome", - "ru": "Показать имя", + "ru": "Отображаемое имя", "xloc": [ - "default.handlebars->25->612" + "default.handlebars->25->619" ] }, { @@ -5927,7 +5965,7 @@ "pt": "Fazer nada", "ru": "Ничего не делать", "xloc": [ - "default.handlebars->25->1041" + "default.handlebars->25->1048" ] }, { @@ -5938,7 +5976,7 @@ "ja": "アカウントを持っていないのですか?", "nl": "Heb je nog geen account?", "pt": "Não possui uma conta?", - "ru": "У вас нет учетной записи?", + "ru": "Нет учетной записи?", "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->newAccountDiv", "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->newAccountDiv" @@ -5954,8 +5992,8 @@ "pt": "Não configure", "ru": "Не настраивать", "xloc": [ - "default.handlebars->25->1045", - "default.handlebars->25->1050" + "default.handlebars->25->1052", + "default.handlebars->25->1057" ] }, { @@ -5968,7 +6006,7 @@ "pt": "Não conecte ao servidor", "ru": "Не подключаться к серверу", "xloc": [ - "default.handlebars->25->1046" + "default.handlebars->25->1053" ] }, { @@ -6011,7 +6049,7 @@ "ru": "Скачать файл", "xloc": [ "default-mobile.handlebars->9->270", - "default.handlebars->25->670" + "default.handlebars->25->677" ] }, { @@ -6037,7 +6075,7 @@ "pt": "Baixar MeshCmd", "ru": "Скачать MeshCmd", "xloc": [ - "default.handlebars->25->583" + "default.handlebars->25->590" ] }, { @@ -6069,8 +6107,9 @@ "en": "Download \\\"meshcmd\\\" with an action file to route traffic thru this server to this device. Make sure to edit meshaction.txt and add your account password or make any changes needed.", "es": "Descargue \\\"meshcmd\\\" con un archivo de acción para enrutar el tráfico a través de este servidor a este dispositivo. Asegúrese de editar meshaction.txt y agregue la contraseña de su cuenta o realice los cambios necesarios.", "nl": "Download \\\"meshcmd\\\" met het actiebestand om verkeer via deze server naar dit apparaat te leiden. Zorg ervoor dat u meshaction.txt bewerkt en uw accountwachtwoord toevoegt of breng de nodige wijzigingen aan.", + "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.", "xloc": [ - "default.handlebars->25->576" + "default.handlebars->25->583" ] }, { @@ -6122,7 +6161,7 @@ "pt": "Download de eventos de energia", "ru": "Скачать события состояния питания", "xloc": [ - "default.handlebars->25->538" + "default.handlebars->25->545" ] }, { @@ -6146,7 +6185,7 @@ "ja": "ここからインストーラーをダウンロードしてください", "nl": "Download het installatieprogramma hier", "pt": "Faça o download do instalador aqui", - "ru": "Скачать установщик здесь", + "ru": "Скачайте программу по этой ссылке", "xloc": [ "agentinvite.handlebars->container->column_l->5->macostab->3->macosurl" ] @@ -6159,9 +6198,9 @@ "ja": "以下のファイル形式のいずれかでイベントのリストをダウンロードします。", "nl": "Download de lijst met gebeurtenissen in een van de onderstaande bestandsindelingen.", "pt": "Faça o download da lista de eventos com um dos formatos de arquivo abaixo.", - "ru": "Скачать список событий с одним из форматов файлов ниже.", + "ru": "Скачать список событий в одном из форматов ниже.", "xloc": [ - "default.handlebars->25->1187" + "default.handlebars->25->1194" ] }, { @@ -6172,9 +6211,9 @@ "ja": "以下のファイル形式のいずれかでユーザーのリストをダウンロードします。", "nl": "Download de lijst met gebruikers in een van de onderstaande bestandsindelingen.", "pt": "Baixe a lista de usuários com um dos formatos de arquivo abaixo.", - "ru": "Скачать список пользователей с одним из форматов файлов ниже.", + "ru": "Скачать список пользователей в одном из форматов ниже.", "xloc": [ - "default.handlebars->25->1226" + "default.handlebars->25->1233" ] }, { @@ -6185,7 +6224,7 @@ "ja": "ここからソフトウェアをダウンロードしてください", "nl": "Download de software hier", "pt": "Faça o download do software aqui", - "ru": "Скачать программное обеспечение здесь", + "ru": "Скачайте программное обеспечение здесь", "xloc": [ "agentinvite.handlebars->container->column_l->5->wintab32->3->win32url", "agentinvite.handlebars->container->column_l->5->wintab64->3->win64url" @@ -6227,7 +6266,7 @@ "pt": "Arraste e solte um arquivo .mcrec ou clique em \\\"Abrir arquivo...\\\"", "ru": "Перетащите .mcrec файл или нажмите \\\"Открыть файл ... \\\"", "xloc": [ - "player.htm->3->18" + "player.handlebars->3->18" ] }, { @@ -6236,8 +6275,9 @@ "en": "Duplicate Agent", "es": "Agente duplicado", "nl": "Duplicaat Agent", + "ru": "Скопировать агент", "xloc": [ - "default.handlebars->25->1402" + "default.handlebars->25->1409" ] }, { @@ -6246,6 +6286,7 @@ "en": "Duplicate Group...", "es": "Grupo duplicado ...", "nl": "Dupliceer Groep...", + "ru": "Скопировать группу...", "xloc": [ "default.handlebars->container->column_l->p50->3->1->0->3->3" ] @@ -6256,8 +6297,9 @@ "en": "Duplicate User Group", "es": "Grupo de usuarios duplicados", "nl": "Dupliceer Gebruikers Groep", + "ru": "Скопировать группу пользователей", "xloc": [ - "default.handlebars->25->1271" + "default.handlebars->25->1278" ] }, { @@ -6270,7 +6312,7 @@ "pt": "Duração", "ru": "Длительность", "xloc": [ - "player.htm->3->2" + "player.handlebars->3->2" ] }, { @@ -6281,9 +6323,9 @@ "ja": "アクティベーション中、エージェントは管理者パスワード情報にアクセスできます。", "nl": "Tijdens activering heeft de agent toegang tot beheerderswachtwoordinformatie.", "pt": "Durante a ativação, o agente terá acesso às informações da senha do administrador.", - "ru": "Во время активации агент будет иметь доступ к информации пароля администратора.", + "ru": "Во время активации агент будет иметь доступ к паролю администратора.", "xloc": [ - "default.handlebars->25->1055" + "default.handlebars->25->1062" ] }, { @@ -6295,7 +6337,7 @@ "pt": "Holandês (belga)", "ru": "Голландский (Бельгийский)", "xloc": [ - "default.handlebars->25->761" + "default.handlebars->25->768" ] }, { @@ -6307,7 +6349,7 @@ "pt": "Holandês (padrão)", "ru": "Голландский (Стандартный)", "xloc": [ - "default.handlebars->25->760" + "default.handlebars->25->767" ] }, { @@ -6375,7 +6417,7 @@ "ru": "Редактировать устройство", "xloc": [ "default-mobile.handlebars->9->227", - "default.handlebars->25->597" + "default.handlebars->25->604" ] }, { @@ -6391,9 +6433,9 @@ "default-mobile.handlebars->9->291", "default-mobile.handlebars->9->293", "default-mobile.handlebars->9->311", - "default.handlebars->25->1061", - "default.handlebars->25->1085", - "default.handlebars->25->1108" + "default.handlebars->25->1068", + "default.handlebars->25->1092", + "default.handlebars->25->1115" ] }, { @@ -6406,7 +6448,7 @@ "pt": "Editar recursos do grupo de dispositivos", "ru": "Редактировать функции группы устройств", "xloc": [ - "default.handlebars->25->1075" + "default.handlebars->25->1082" ] }, { @@ -6415,8 +6457,9 @@ "en": "Edit Device Group Permissions", "es": "Editar permisos de grupo de dispositivos", "nl": "Bewerk apparaatgroep rechten", + "ru": "Редактировать права группы устройств", "xloc": [ - "default.handlebars->25->1105" + "default.handlebars->25->1112" ] }, { @@ -6429,7 +6472,7 @@ "pt": "Editar consentimento do usuário do grupo de dispositivos", "ru": "Редактировать согласие пользователя группы устройств", "xloc": [ - "default.handlebars->25->1072" + "default.handlebars->25->1079" ] }, { @@ -6443,7 +6486,7 @@ "ru": "Редактировать примечания устройства", "xloc": [ "default-mobile.handlebars->9->305", - "default.handlebars->25->1097" + "default.handlebars->25->1104" ] }, { @@ -6457,9 +6500,9 @@ "ru": "Редактировать учетные данные Intel® AMT", "xloc": [ "default-mobile.handlebars->9->217", - "default.handlebars->25->458", - "default.handlebars->25->461", - "default.handlebars->25->545" + "default.handlebars->25->465", + "default.handlebars->25->468", + "default.handlebars->25->552" ] }, { @@ -6474,7 +6517,7 @@ "ru": "Редактировать примечания", "xloc": [ "default-mobile.handlebars->9->318", - "default.handlebars->25->1115" + "default.handlebars->25->1122" ] }, { @@ -6485,9 +6528,9 @@ "ja": "ユーザーデバイスグループ権限の編集", "nl": "Gebruikersrechten apparaatgroep bewerken", "pt": "Editar permissões do grupo de dispositivos do usuário", - "ru": "Редактировать права потребителя группы устройств", + "ru": "Редактировать права пользователя для группы устройств", "xloc": [ - "default.handlebars->25->1106" + "default.handlebars->25->1113" ] }, { @@ -6496,8 +6539,9 @@ "en": "Edit User Group", "es": "Editar grupo de usuarios", "nl": "Bewerk de gebruikersgroep", + "ru": "Редактировать группу пользователей", "xloc": [ - "default.handlebars->25->1300" + "default.handlebars->25->1307" ] }, { @@ -6521,13 +6565,13 @@ "ja": "Eメール", "nl": "E-mail", "pt": "Email", - "ru": "Эл. почта", + "ru": "Email", "xloc": [ "default-mobile.handlebars->9->37", - "default.handlebars->25->1238", - "default.handlebars->25->1320", - "default.handlebars->25->1321", - "default.handlebars->25->1349", + "default.handlebars->25->1245", + "default.handlebars->25->1327", + "default.handlebars->25->1328", + "default.handlebars->25->1356", "default.handlebars->25->283" ] }, @@ -6539,10 +6583,10 @@ "ja": "メールアドレスの変更", "nl": "E-mailadres wijzigen", "pt": "Alteração de endereço de email", - "ru": "Изменение адреса эл. почты", + "ru": "Изменение адреса email", "xloc": [ "default-mobile.handlebars->9->38", - "default.handlebars->25->928" + "default.handlebars->25->935" ] }, { @@ -6553,10 +6597,10 @@ "ja": "メール確認", "nl": "E-mail verificatie", "pt": "verificação de e-mail", - "ru": "Подтверждение эл. почты", + "ru": "Подтверждение email", "xloc": [ "default-mobile.handlebars->9->36", - "default.handlebars->25->926" + "default.handlebars->25->933" ] }, { @@ -6567,9 +6611,9 @@ "ja": "メールが確認されました", "nl": "E-mail is geverifieerd", "pt": "O email foi verificado", - "ru": "Ел. почта подтверждена", + "ru": "Email подтвержден", "xloc": [ - "default.handlebars->25->1317" + "default.handlebars->25->1324" ] }, { @@ -6580,9 +6624,9 @@ "ja": "メールが確認されました。", "nl": "E-mail is geverifieerd.", "pt": "O email foi verificado.", - "ru": "Ел. почта подтверждена.", + "ru": "Email подтвержден.", "xloc": [ - "default.handlebars->25->1244" + "default.handlebars->25->1251" ] }, { @@ -6593,9 +6637,9 @@ "ja": "メールが確認されていません", "nl": "E-mail is niet geverifieerd", "pt": "Email não verificado", - "ru": "Ел. почта не подтверждена", + "ru": "Email не подтвержден", "xloc": [ - "default.handlebars->25->1318" + "default.handlebars->25->1325" ] }, { @@ -6606,7 +6650,7 @@ "ja": "Eメール:", "nl": "E-mail:", "pt": "Email:", - "ru": "Эл. почта:", + "ru": "Email:", "xloc": [ "login-mobile.handlebars->5->17", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->2->1", @@ -6624,7 +6668,7 @@ "ja": "ブラウザ通知を有効にする", "nl": "Schakel browsermelding in", "pt": "Ativar notificação do navegador", - "ru": "Включить уведомление браузера", + "ru": "Включить уведомления в браузере", "xloc": [ "messenger.handlebars->xtop->1" ] @@ -6665,7 +6709,7 @@ "pt": "Inglês", "ru": "Английский", "xloc": [ - "default.handlebars->25->762" + "default.handlebars->25->769" ] }, { @@ -6677,7 +6721,7 @@ "pt": "Inglês (Austrália)", "ru": "Английский (Австралия)", "xloc": [ - "default.handlebars->25->763" + "default.handlebars->25->770" ] }, { @@ -6689,7 +6733,7 @@ "pt": "Inglês (Belize)", "ru": "Английский (Белиз)", "xloc": [ - "default.handlebars->25->764" + "default.handlebars->25->771" ] }, { @@ -6701,7 +6745,7 @@ "pt": "Inglês (Canadá)", "ru": "Английский (Канада)", "xloc": [ - "default.handlebars->25->765" + "default.handlebars->25->772" ] }, { @@ -6713,7 +6757,7 @@ "pt": "Inglês (Irlanda)", "ru": "Английский (Ирландия)", "xloc": [ - "default.handlebars->25->766" + "default.handlebars->25->773" ] }, { @@ -6725,7 +6769,7 @@ "pt": "Inglês (Jamaica)", "ru": "Английский (Ямайка)", "xloc": [ - "default.handlebars->25->767" + "default.handlebars->25->774" ] }, { @@ -6737,7 +6781,7 @@ "pt": "Inglês (Nova Zelândia)", "ru": "Английский (Новая Зеландия)", "xloc": [ - "default.handlebars->25->768" + "default.handlebars->25->775" ] }, { @@ -6749,7 +6793,7 @@ "pt": "Inglês (Filipinas)", "ru": "Английский (Филиппины)", "xloc": [ - "default.handlebars->25->769" + "default.handlebars->25->776" ] }, { @@ -6761,7 +6805,7 @@ "pt": "Inglês (África do Sul)", "ru": "Английский (Южная Африка)", "xloc": [ - "default.handlebars->25->770" + "default.handlebars->25->777" ] }, { @@ -6773,7 +6817,7 @@ "pt": "Inglês (Trinidad Tobago)", "ru": "Английский (Тринидад и Тобаго)", "xloc": [ - "default.handlebars->25->771" + "default.handlebars->25->778" ] }, { @@ -6786,7 +6830,7 @@ "pt": "Inglês (Reino Unido)", "ru": "Английский (Великобритания)", "xloc": [ - "default.handlebars->25->772" + "default.handlebars->25->779" ] }, { @@ -6799,7 +6843,7 @@ "pt": "Inglês (Estados Unidos)", "ru": "Английский (Соединенные Штаты)", "xloc": [ - "default.handlebars->25->773" + "default.handlebars->25->780" ] }, { @@ -6812,7 +6856,7 @@ "pt": "Inglês (Zimbábue)", "ru": "Английский (Зимбабве)", "xloc": [ - "default.handlebars->25->774" + "default.handlebars->25->781" ] }, { @@ -6825,8 +6869,8 @@ "pt": "Entrar", "ru": "Ввод", "xloc": [ - "default.handlebars->25->954", - "default.handlebars->25->955" + "default.handlebars->25->961", + "default.handlebars->25->962" ] }, { @@ -6839,7 +6883,7 @@ "pt": "Insira uma lista separada por vírgulas de nomes de regiões administrativas.", "ru": "Введите разделенный запятыми список имен административных областей.", "xloc": [ - "default.handlebars->25->1248" + "default.handlebars->25->1255" ] }, { @@ -6863,9 +6907,9 @@ "ja": "テキストを入力し、[OK]をクリックして、米国英語キーボードを使用してリモートで入力します。続行する前に、リモートカーソルを正しい位置に配置してください。", "nl": "Voer tekst in en klik op OK om deze op afstand te typen met een Amerikaans Engels toetsenbord. Zorg ervoor dat u de externe cursor op de juiste positie plaatst voordat u doorgaat.", "pt": "Digite o texto e clique em OK para digitá-lo remotamente usando um teclado em inglês dos EUA.Certifique-se de colocar o cursor remoto na posição correta antes de continuar.", - "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что дистанционный курсор установлен в правильное положение.", + "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.", "xloc": [ - "default.handlebars->25->607" + "default.handlebars->25->614" ] }, { @@ -6890,7 +6934,7 @@ "ja": "2段階ログインのトークンをここに入力します。", "nl": "Voer hier het token in voor tweestaps-aanmelding:", "pt": "Digite o token aqui para o login em duas etapas:", - "ru": "Для двухэтапного входа в систему введите токен здесь:", + "ru": "Для двухэтапного входа введите токен здесь:", "xloc": [ "default.handlebars->25->121" ] @@ -6930,7 +6974,7 @@ "pt": "Esperanto", "ru": "Эсперанто", "xloc": [ - "default.handlebars->25->775" + "default.handlebars->25->782" ] }, { @@ -6942,7 +6986,7 @@ "pt": "Estoniano", "ru": "Эстонский", "xloc": [ - "default.handlebars->25->776" + "default.handlebars->25->783" ] }, { @@ -6953,9 +6997,9 @@ "ja": "イベントの詳細", "nl": "Gebeurtenis details", "pt": "Detalhes do evento", - "ru": "Детайли события", + "ru": "Детали события", "xloc": [ - "default.handlebars->25->683" + "default.handlebars->25->690" ] }, { @@ -6968,7 +7012,7 @@ "pt": "Exportação da lista de eventos", "ru": "Экспорт списка событий", "xloc": [ - "default.handlebars->25->1192" + "default.handlebars->25->1199" ] }, { @@ -7009,7 +7053,7 @@ "es": "Cuenta existente con esta dirección de correo electrónico.", "ja": "このメールアドレスを持つ既存のアカウント。", "nl": "Bestaand account met dit e-mailadres.", - "ru": "Существующий аккаунт с этим адресом эл. почты.", + "ru": "Существующий аккаунт с этим адресом email.", "xloc": [ "login-mobile.handlebars->5->4", "login.handlebars->5->4" @@ -7025,7 +7069,7 @@ "pt": "ASCII estendido", "ru": "Расширенный ASCII", "xloc": [ - "default.handlebars->25->632" + "default.handlebars->25->639" ] }, { @@ -7047,8 +7091,9 @@ "en": "External", "es": "Externo", "nl": "Extern", + "ru": "Внешний", "xloc": [ - "default.handlebars->25->1426" + "default.handlebars->25->1433" ] }, { @@ -7061,7 +7106,7 @@ "pt": "FYRO Macedonian", "ru": "Mакедонский (БЮР)", "xloc": [ - "default.handlebars->25->826" + "default.handlebars->25->833" ] }, { @@ -7073,7 +7118,7 @@ "pt": "O servidor remoto retornou um erro: (429) Too Many Requests.", "ru": "Фарерский", "xloc": [ - "default.handlebars->25->777" + "default.handlebars->25->784" ] }, { @@ -7100,7 +7145,7 @@ "pt": "Persa (persa)", "ru": "Фарси (Персидский)", "xloc": [ - "default.handlebars->25->778" + "default.handlebars->25->785" ] }, { @@ -7128,7 +7173,7 @@ "pt": "Recursos", "ru": "Функции", "xloc": [ - "default.handlebars->25->982" + "default.handlebars->25->989" ] }, { @@ -7140,7 +7185,7 @@ "pt": "Fijiano", "ru": "Фиджи", "xloc": [ - "default.handlebars->25->779" + "default.handlebars->25->786" ] }, { @@ -7155,7 +7200,7 @@ "ru": "Редактор файлов", "xloc": [ "default-mobile.handlebars->9->254", - "default.handlebars->25->655" + "default.handlebars->25->662" ] }, { @@ -7182,7 +7227,7 @@ "pt": "Driver do sistema de arquivos", "ru": "Драйвер файловой системы", "xloc": [ - "default.handlebars->25->615" + "default.handlebars->25->622" ] }, { @@ -7196,7 +7241,7 @@ "pt": "Arquivos", "ru": "Файлы", "xloc": [ - "default.handlebars->25->1069", + "default.handlebars->25->1076", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" ] @@ -7225,7 +7270,7 @@ "pt": "Notificação arquivos", "ru": "Уведомление файлов", "xloc": [ - "default.handlebars->25->990" + "default.handlebars->25->997" ] }, { @@ -7238,7 +7283,7 @@ "pt": "Arquivos do prompt", "ru": "Запрос файлов", "xloc": [ - "default.handlebars->25->989" + "default.handlebars->25->996" ] }, { @@ -7267,7 +7312,7 @@ "pt": "Finlandês", "ru": "Финский", "xloc": [ - "default.handlebars->25->780" + "default.handlebars->25->787" ] }, { @@ -7279,7 +7324,7 @@ "ja": "固定幅インターフェイス", "nl": "Interface met vaste breedte", "pt": "Interface de largura fixa", - "ru": "Закреплен с интерфейсом", + "ru": "Интерфейс с фиксированной шириной", "xloc": [ "agentinvite.handlebars->container->topbar->uiMenuButton->uiMenu", "default.handlebars->container->topbar->1->1->uiMenuButton->uiMenu", @@ -7326,8 +7371,8 @@ "pt": "Forçar redefinição de senha no próximo login.", "ru": "Принудительно сбросить пароль при следующем входе в систему.", "xloc": [ - "default.handlebars->25->1242", - "default.handlebars->25->1356" + "default.handlebars->25->1249", + "default.handlebars->25->1363" ] }, { @@ -7353,7 +7398,7 @@ "ja": "ユーザー/パスワードを忘れましたか?", "nl": "Gebruikersnaam/wachtwoord vergeten?", "pt": "Esqueceu usuário / senha?", - "ru": "Забыли логин / пароль?", + "ru": "Забыли логин/пароль?", "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->resetAccountDiv->resetAccountSpan" ] @@ -7366,7 +7411,7 @@ "ja": "ユーザー名/パスワードを忘れましたか?", "nl": "Gebruikersnaam/wachtwoord vergeten?", "pt": "Esqueceu seu nome de usuário / senha?", - "ru": "Забыли потребитель / пароль?", + "ru": "Забыли логин/пароль?", "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->resetAccountDiv->resetAccountSpan" ] @@ -7395,8 +7440,8 @@ "pt": "Livre", "ru": "Свободно", "xloc": [ - "default.handlebars->25->1387", - "default.handlebars->25->1389" + "default.handlebars->25->1394", + "default.handlebars->25->1396" ] }, { @@ -7423,7 +7468,7 @@ "pt": "Francês (Bélgica)", "ru": "Французский (Бельгия)", "xloc": [ - "default.handlebars->25->782" + "default.handlebars->25->789" ] }, { @@ -7436,7 +7481,7 @@ "pt": "Francês (Canadá)", "ru": "Французский (Канада)", "xloc": [ - "default.handlebars->25->783" + "default.handlebars->25->790" ] }, { @@ -7449,7 +7494,7 @@ "pt": "Francês (França)", "ru": "Французский (Франция)", "xloc": [ - "default.handlebars->25->784" + "default.handlebars->25->791" ] }, { @@ -7462,7 +7507,7 @@ "pt": "Francês (Luxemburgo)", "ru": "Французский (Люксембург)", "xloc": [ - "default.handlebars->25->785" + "default.handlebars->25->792" ] }, { @@ -7475,7 +7520,7 @@ "pt": "Francês (Mônaco)", "ru": "Французский (Монако)", "xloc": [ - "default.handlebars->25->786" + "default.handlebars->25->793" ] }, { @@ -7488,7 +7533,7 @@ "pt": "Francês (Padrão)", "ru": "Французский (Стандартный)", "xloc": [ - "default.handlebars->25->781" + "default.handlebars->25->788" ] }, { @@ -7501,7 +7546,7 @@ "pt": "Francês (Suíça)", "ru": "Французский (Швейцария)", "xloc": [ - "default.handlebars->25->787" + "default.handlebars->25->794" ] }, { @@ -7514,7 +7559,7 @@ "pt": "Frísio", "ru": "Фризский", "xloc": [ - "default.handlebars->25->788" + "default.handlebars->25->795" ] }, { @@ -7527,7 +7572,7 @@ "pt": "Friuliano", "ru": "Фриульский", "xloc": [ - "default.handlebars->25->789" + "default.handlebars->25->796" ] }, { @@ -7545,9 +7590,9 @@ "default-mobile.handlebars->9->292", "default-mobile.handlebars->9->310", "default-mobile.handlebars->9->64", - "default.handlebars->25->1084", - "default.handlebars->25->1253", - "default.handlebars->25->961" + "default.handlebars->25->1091", + "default.handlebars->25->1260", + "default.handlebars->25->968" ] }, { @@ -7561,7 +7606,7 @@ "pt": "Administrador Pleno (todos os direitos)", "ru": "Администратор с полным доступом (все права)", "xloc": [ - "default.handlebars->25->1107" + "default.handlebars->25->1114" ] }, { @@ -7570,10 +7615,11 @@ "en": "Full Device Group Administrator", "es": "Administrador de grupo completo de dispositivos", "nl": "Volledige apparaatgroep beheerder", + "ru": "Администратор группы устройств с полным доступом", "xloc": [ - "default.handlebars->25->1024", - "default.handlebars->25->1290", - "default.handlebars->25->1364" + "default.handlebars->25->1031", + "default.handlebars->25->1297", + "default.handlebars->25->1371" ] }, { @@ -7585,7 +7631,7 @@ "ja": "全画面表示。ブラウザの全画面表示に移行します。", "nl": "Volledig scherm. Houd shift ingedrukt om de browser op volledig scherm weer te geven.", "pt": "Tela cheia. Mantenha a tecla Shift pressionada no navegador em tela cheia.", - "ru": "Полноэкранный режим. Задержите shift для полноэкранного режима браузера.", + "ru": "Полноэкранный режим. Удерживайте shift для полноэкранного режима браузера.", "xloc": [ "default.handlebars->container->column_l->p11->p11title->p11deviceNameHeader->devListToolbarViewIcons", "default.handlebars->container->column_l->p14->p14title->devListToolbarViewIcons" @@ -7602,7 +7648,7 @@ "pt": "Administrador completo", "ru": "Администратор с полным доступом", "xloc": [ - "default.handlebars->25->1313" + "default.handlebars->25->1320" ] }, { @@ -7615,7 +7661,7 @@ "pt": "Gaélico (irlandês)", "ru": "Гэльский (Ирландский)", "xloc": [ - "default.handlebars->25->791" + "default.handlebars->25->798" ] }, { @@ -7628,7 +7674,7 @@ "pt": "Gaélico (escocês)", "ru": "Гэльский (Шотландия)", "xloc": [ - "default.handlebars->25->790" + "default.handlebars->25->797" ] }, { @@ -7641,7 +7687,7 @@ "pt": "Galego", "ru": "Галицкий", "xloc": [ - "default.handlebars->25->792" + "default.handlebars->25->799" ] }, { @@ -7667,7 +7713,7 @@ "ja": "全般", "nl": "Algemeen", "pt": "Geral", - "ru": "Общие", + "ru": "Сводка", "xloc": [ "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDev", "default.handlebars->container->topbar->1->1->MeshSubMenuSpan->MeshSubMenu->1->0->MeshGeneral", @@ -7684,7 +7730,7 @@ "ja": "全般-", "nl": "Algemeen -", "pt": "Geral - ", - "ru": "Общие - ", + "ru": "Сводка - ", "xloc": [ "default.handlebars->container->column_l->p10->1->1->0->1->p10title->3", "default.handlebars->container->column_l->p20->p20title->5", @@ -7702,7 +7748,7 @@ "pt": "Informações gerais", "ru": "Общая информация", "xloc": [ - "default.handlebars->25->411" + "default.handlebars->25->418" ] }, { @@ -7729,7 +7775,7 @@ "pt": "Georgiano", "ru": "Грузинский", "xloc": [ - "default.handlebars->25->793" + "default.handlebars->25->800" ] }, { @@ -7741,7 +7787,7 @@ "pt": "Alemão (Áustria)", "ru": "Немецкий (Австрия)", "xloc": [ - "default.handlebars->25->795" + "default.handlebars->25->802" ] }, { @@ -7753,7 +7799,7 @@ "pt": "Alemão (Alemanha)", "ru": "Немецкий (Германия)", "xloc": [ - "default.handlebars->25->796" + "default.handlebars->25->803" ] }, { @@ -7765,7 +7811,7 @@ "pt": "Alemão (Liechtenstein)", "ru": "Немецкий (Лихтенштейн)", "xloc": [ - "default.handlebars->25->797" + "default.handlebars->25->804" ] }, { @@ -7777,7 +7823,7 @@ "pt": "Alemão (Luxemburgo)", "ru": "Немецкий (Люксембург)", "xloc": [ - "default.handlebars->25->798" + "default.handlebars->25->805" ] }, { @@ -7789,7 +7835,7 @@ "pt": "Alemão (Padrão)", "ru": "Немецкий (Стандартный)", "xloc": [ - "default.handlebars->25->794" + "default.handlebars->25->801" ] }, { @@ -7799,9 +7845,9 @@ "ja": "ドイツ語(スイス)", "nl": "Duits (Zwitserland)", "pt": "Alemão (Suíça)", - "ru": "German (Switzerland)", + "ru": "Немецкий (Швейцария)", "xloc": [ - "default.handlebars->25->799" + "default.handlebars->25->806" ] }, { @@ -7812,9 +7858,9 @@ "ja": "このデバイスのMQTTログイン資格情報を取得します。", "nl": "Ontvang MQTT-inloggegevens voor dit apparaat.", "pt": "Obtenha credenciais de login do MQTT para este dispositivo.", - "ru": "Получить MQTT учетные данные для этого устройства.", + "ru": "Получить учетные данные MQTT для этого устройства.", "xloc": [ - "default.handlebars->25->511" + "default.handlebars->25->518" ] }, { @@ -7858,7 +7904,7 @@ "pt": "Bom", "ru": "Хорошо", "xloc": [ - "default.handlebars->25->957" + "default.handlebars->25->964" ] }, { @@ -7888,7 +7934,7 @@ "pt": "Grego", "ru": "Греческий", "xloc": [ - "default.handlebars->25->800" + "default.handlebars->25->807" ] }, { @@ -7903,7 +7949,7 @@ "ru": "Группа", "xloc": [ "default-mobile.handlebars->9->134", - "default.handlebars->25->436", + "default.handlebars->25->443", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, @@ -7928,8 +7974,9 @@ "en": "Group Members", "es": "Miembros del grupo", "nl": "Groeps leden", + "ru": "Члены группы", "xloc": [ - "default.handlebars->25->1282" + "default.handlebars->25->1289" ] }, { @@ -7941,9 +7988,9 @@ "ja": "ユーザー{0}のグループ権限。", "nl": "Groepsrechten voor gebruiker {0}.", "pt": "Permissões de grupo para o usuário {0}.", - "ru": "Групповые права для потребителя {0}.", + "ru": "Права на группу для пользователя {0}.", "xloc": [ - "default.handlebars->25->1083" + "default.handlebars->25->1090" ] }, { @@ -7952,8 +7999,9 @@ "en": "Group permissions for {0}.", "es": "Permisos de grupo para {0}.", "nl": "Groepsrechten voor {0}.", + "ru": "Права на группу для {0}.", "xloc": [ - "default.handlebars->25->1082" + "default.handlebars->25->1089" ] }, { @@ -7976,8 +8024,9 @@ "en": "Groups", "es": "Grupos", "nl": "Groepen", + "ru": "Группы", "xloc": [ - "default.handlebars->25->1197", + "default.handlebars->25->1204", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups" ] }, @@ -7991,7 +8040,7 @@ "pt": "Gujarati", "ru": "Гуджарати", "xloc": [ - "default.handlebars->25->801" + "default.handlebars->25->808" ] }, { @@ -8020,7 +8069,7 @@ "pt": "Haitiano", "ru": "Гаитянский", "xloc": [ - "default.handlebars->25->802" + "default.handlebars->25->809" ] }, { @@ -8048,7 +8097,7 @@ "pt": "Forçar desconexão do agente", "ru": "Жесткое отключение агента", "xloc": [ - "default.handlebars->25->699" + "default.handlebars->25->706" ] }, { @@ -8058,7 +8107,7 @@ "es": "Heap Total", "nl": "Heap Totaal", "xloc": [ - "default.handlebars->25->1428" + "default.handlebars->25->1435" ] }, { @@ -8068,7 +8117,7 @@ "es": "Heap Used", "nl": "Heap gebruikt", "xloc": [ - "default.handlebars->25->1427" + "default.handlebars->25->1434" ] }, { @@ -8081,7 +8130,7 @@ "pt": "Hebraico", "ru": "Иврит", "xloc": [ - "default.handlebars->25->803" + "default.handlebars->25->810" ] }, { @@ -8093,7 +8142,7 @@ "nl": "Help bij het vertalen van MeshCentral", "ru": "Помочь перевести MeshCentral", "xloc": [ - "default.handlebars->25->916" + "default.handlebars->25->923" ] }, { @@ -8105,7 +8154,7 @@ "ja": "冬眠", "nl": "Slaapstand", "pt": "Hibernando", - "ru": "Переход в спящий режим", + "ru": "Гибернация", "xloc": [ "default-mobile.handlebars->9->104", "default-mobile.handlebars->9->111", @@ -8123,7 +8172,7 @@ "pt": "Hindi", "ru": "Хинди", "xloc": [ - "default.handlebars->25->804" + "default.handlebars->25->811" ] }, { @@ -8134,7 +8183,7 @@ "fr": "Attends, le courrier est envoyé.", "ja": "お待ちください、送信されたメールをリセットします。", "nl": "even wachten, reset e-mail verzonden.", - "ru": "Подождите, отправлен почта для сброса.", + "ru": "Подождите, письмо для сброса отправлено.", "xloc": [ "login-mobile.handlebars->5->1", "login.handlebars->5->1" @@ -8151,7 +8200,7 @@ "ru": "Задержана 1 запись для копирования", "xloc": [ "default-mobile.handlebars->9->263", - "default.handlebars->25->664" + "default.handlebars->25->671" ] }, { @@ -8165,7 +8214,7 @@ "ru": "Задержана 1 запись для перемещения", "xloc": [ "default-mobile.handlebars->9->267", - "default.handlebars->25->668" + "default.handlebars->25->675" ] }, { @@ -8176,10 +8225,10 @@ "ja": "コピー用に{0}エントリを保持しています", "nl": "{0} items vasthouden voor kopiëren", "pt": "Mantendo {0} entradas para cópia", - "ru": "Задержана/о {0} запись/ей для копирования", + "ru": "Задержано {0} записей для копирования", "xloc": [ "default-mobile.handlebars->9->261", - "default.handlebars->25->662" + "default.handlebars->25->669" ] }, { @@ -8190,10 +8239,10 @@ "ja": "移動のために{0}エントリを保持しています", "nl": "{0} items vasthouden voor verplaatsen", "pt": "Manter {0} entradas para mover", - "ru": "Задержана/о {0} запись/ей для перемещения", + "ru": "Задержано {0} записей для перемещения", "xloc": [ "default-mobile.handlebars->9->265", - "default.handlebars->25->666" + "default.handlebars->25->673" ] }, { @@ -8204,10 +8253,10 @@ "ja": "{2}の{0}エントリを保持しています{1}", "nl": "Houd {0} item {1} vast voor {2}", "pt": "Mantendo {0} entrada {1} para {2}", - "ru": "Задержанa/о {0} запись/ей {1} для {2}", + "ru": "Задержано {0} записей для {2}", "xloc": [ "default-mobile.handlebars->9->88", - "default.handlebars->25->1179" + "default.handlebars->25->1186" ] }, { @@ -8225,10 +8274,10 @@ "default-mobile.handlebars->9->139", "default-mobile.handlebars->9->223", "default.handlebars->25->239", - "default.handlebars->25->438", - "default.handlebars->25->439", - "default.handlebars->25->441", - "default.handlebars->25->593" + "default.handlebars->25->445", + "default.handlebars->25->446", + "default.handlebars->25->448", + "default.handlebars->25->600" ] }, { @@ -8241,7 +8290,7 @@ "pt": "Sincronização de nome de host", "ru": "Синхронизация имени хоста", "xloc": [ - "default.handlebars->25->980" + "default.handlebars->25->987" ] }, { @@ -8253,7 +8302,7 @@ "pt": "Húngaro", "ru": "Венгерский", "xloc": [ - "default.handlebars->25->805" + "default.handlebars->25->812" ] }, { @@ -8264,7 +8313,7 @@ "ja": "IP範囲", "nl": "IP-bereik", "pt": "IP Range", - "ru": "IP диапазон", + "ru": "Диапазон IP", "xloc": [ "default.handlebars->25->254" ] @@ -8331,7 +8380,7 @@ "pt": "islandês", "ru": "Исландский", "xloc": [ - "default.handlebars->25->806" + "default.handlebars->25->813" ] }, { @@ -8346,7 +8395,7 @@ "ru": "Выбор иконки", "xloc": [ "default-mobile.handlebars->9->221", - "default.handlebars->25->591" + "default.handlebars->25->598" ] }, { @@ -8385,7 +8434,7 @@ "pt": "Indonésia", "ru": "Индонезийский", "xloc": [ - "default.handlebars->25->807" + "default.handlebars->25->814" ] }, { @@ -8441,7 +8490,7 @@ "pt": "Instalar", "ru": "Установка", "xloc": [ - "default.handlebars->25->1019" + "default.handlebars->25->1026" ] }, { @@ -8451,6 +8500,7 @@ "es": "Instale Google Authenticator o una aplicación compatible y escanee el código de barras, use este enlace o ingrese el secreto. Luego, ingrese el token actual de 6 dígitos a continuación para activar el inicio de sesión en 2 pasos.", "ja": "インストールGoogle Authenticatorまたは互換性のあるアプリケーションでバーコードをスキャンするには、このリンクを使用するか、秘密。次に、現在の6桁のトークンを入力して、2段階ログインを有効にします。", "nl": "Installeer Google Authenticator of een compatibele applicatie en scan de streepjescode, gebruik deze link of voer de link in geheim. Voer vervolgens het huidige 6-cijferige token hieronder in om 2-staps aanmelding te activeren.", + "ru": "Установите Google Authenticator или совместимое приложение и отсканируйте штрих-код, используйте эту ссылку или введите код. Затем введите ниже текущий токен из 6 цифр для активации двухшаговой авторизации.", "xloc": [ "default.handlebars->25->120" ] @@ -8462,6 +8512,7 @@ "es": "Instale Google Authenticator o una aplicación compatible, use este enlace o ingrese el secreto a continuación. Luego, ingrese el token actual de 6 dígitos para activar el inicio de sesión en 2 pasos.", "ja": "インストール Google Authenticator または互換性のあるアプリケーションの場合、このリンクを使用するか、下に秘密を入力します。次に、現在の6桁のトークンを入力して、2段階ログインを有効にします。", "nl": "Installeer Google Authenticator of een compatibele toepassing, gebruik deze link of voer hieronder het geheim in. Voer vervolgens het huidige 6-cijferige token in om 2-staps aanmelding te activeren.", + "ru": "Установите Google Authenticator или совместимое приложение, используйте эту ссылку или введите код ниже. Затем введите ниже текущий токен из 6 цифр для активации двухшаговой авторизации.", "xloc": [ "default-mobile.handlebars->9->17" ] @@ -8477,7 +8528,7 @@ "pt": "Instalar CIRA", "ru": "Установка CIRA", "xloc": [ - "default.handlebars->25->1011" + "default.handlebars->25->1018" ] }, { @@ -8490,7 +8541,7 @@ "pt": "Instalação local", "ru": "Локальная установка", "xloc": [ - "default.handlebars->25->1013" + "default.handlebars->25->1020" ] }, { @@ -8517,7 +8568,7 @@ "pt": "Intel (F10 = ESC+[OM)", "ru": "Intel (F10 = ESC+[OM)", "xloc": [ - "default.handlebars->25->634", + "default.handlebars->25->641", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -8531,10 +8582,10 @@ "pt": "Intel AMT", "ru": "Intel AMT", "xloc": [ - "default.handlebars->25->1139", - "default.handlebars->25->1145", - "default.handlebars->25->1424", - "default.handlebars->25->1444" + "default.handlebars->25->1146", + "default.handlebars->25->1152", + "default.handlebars->25->1431", + "default.handlebars->25->1451" ] }, { @@ -8587,7 +8638,7 @@ "pt": "O Intel AMT é ativado no modo de controle de administrador", "ru": "Intel AMT активирован в режиме администратора", "xloc": [ - "default.handlebars->25->454" + "default.handlebars->25->461" ] }, { @@ -8600,7 +8651,7 @@ "pt": "O Intel AMT é ativado no modo de controle do cliente", "ru": "Intel AMT активирован в режиме клиента", "xloc": [ - "default.handlebars->25->452" + "default.handlebars->25->459" ] }, { @@ -8613,7 +8664,7 @@ "pt": "O Intel AMT está configurado com segurança de rede TLS", "ru": "Intel AMT настроен с TLS безопасностью сети", "xloc": [ - "default.handlebars->25->456" + "default.handlebars->25->463" ] }, { @@ -8638,7 +8689,7 @@ "ja": "Intel AMTは、MEBxで信頼できるFQDNを使用して設定するか、ネットワーク上に有線LANが必要です。", "nl": "Intel AMT moet worden ingesteld met een vertrouwd FQDN in MEBx of een bekabeld LAN op het netwerk hebben:", "pt": "A Intel AMT precisará ser configurada com um FQDN confiável na MEBx ou ter uma LAN com fio na rede:", - "ru": "Intel AMT должен быть установлен с полностью определенным имемем домена(FQDN) в MEBx или иметь кабельное подключение к локальной сети:", + "ru": "Intel AMT необходимо установить с доверенным FQDN в MEBx или иметь кабельное подключение к локальной сети:", "xloc": [ "default.handlebars->25->251" ] @@ -8653,7 +8704,7 @@ "pt": "Intel ASCII", "ru": "Intel ASCII", "xloc": [ - "default.handlebars->25->633" + "default.handlebars->25->640" ] }, { @@ -8669,11 +8720,11 @@ "default-mobile.handlebars->9->123", "default-mobile.handlebars->9->187", "default-mobile.handlebars->9->192", - "default.handlebars->25->1005", - "default.handlebars->25->414", - "default.handlebars->25->464", - "default.handlebars->25->480", - "default.handlebars->25->997" + "default.handlebars->25->1004", + "default.handlebars->25->1012", + "default.handlebars->25->421", + "default.handlebars->25->471", + "default.handlebars->25->487" ] }, { @@ -8687,7 +8738,7 @@ "ru": "Intel® AMT CIRA", "xloc": [ "default-mobile.handlebars->9->191", - "default.handlebars->25->478" + "default.handlebars->25->485" ] }, { @@ -8702,7 +8753,7 @@ "xloc": [ "default.handlebars->25->185", "default.handlebars->25->372", - "default.handlebars->25->477" + "default.handlebars->25->484" ] }, { @@ -8713,7 +8764,7 @@ "ja": "Intel®接続されたAMT", "nl": "Intel® AMT verbonden", "pt": "Intel® AMT conectado", - "ru": "Intel® AMT Подключен", + "ru": "Intel® AMT подключен", "xloc": [ "default-mobile.handlebars->9->5", "default.handlebars->25->12", @@ -8730,7 +8781,7 @@ "pt": "Intel® Política da AMT", "ru": "Политика Intel® AMT", "xloc": [ - "default.handlebars->25->1037" + "default.handlebars->25->1044" ] }, { @@ -8743,7 +8794,7 @@ "pt": "Intel® Redirecionamento AMT", "ru": "Перенаправление Intel® AMT", "xloc": [ - "player.htm->3->14" + "player.handlebars->3->14" ] }, { @@ -8756,7 +8807,7 @@ "pt": "Intel® Tag AMT ", "ru": "Intel® AMT Тег", "xloc": [ - "default.handlebars->25->468" + "default.handlebars->25->475" ] }, { @@ -8769,7 +8820,7 @@ "pt": "Intel® AMT WSMAN", "ru": "Intel® AMT WSMAN", "xloc": [ - "player.htm->3->13" + "player.handlebars->3->13" ] }, { @@ -8797,8 +8848,8 @@ "ru": "Intel® AMT подключен", "xloc": [ "default-mobile.handlebars->9->201", - "default.handlebars->25->515", - "default.handlebars->25->516" + "default.handlebars->25->522", + "default.handlebars->25->523" ] }, { @@ -8809,10 +8860,10 @@ "ja": "Intel® AMTデスクトップおよびシリアルイベント。", "nl": "Intel® AMT desktop- en seriële gebeurtenissen.", "pt": "Intel® Área de trabalho AMT e eventos seriais.", - "ru": "Настольные и серийные события Intel® AMT.", + "ru": "События Intel® AMT desktop или serial.", "xloc": [ - "default.handlebars->25->1135", - "default.handlebars->25->922" + "default.handlebars->25->1142", + "default.handlebars->25->929" ] }, { @@ -8826,8 +8877,8 @@ "ru": "Intel® AMT обнаружен", "xloc": [ "default-mobile.handlebars->9->202", - "default.handlebars->25->517", - "default.handlebars->25->518" + "default.handlebars->25->524", + "default.handlebars->25->525" ] }, { @@ -8838,9 +8889,9 @@ "ja": "Intel® AMTはルーティング可能であり、すぐに使用できます。", "nl": "Intel® AMT is routeerbaar en klaar voor gebruik.", "pt": "Intel® O AMT é roteável e pronto para uso.", - "ru": "Intel® AMT рутируется и готов к использованию.", + "ru": "Intel® AMT маршрутизируется и готов к использованию.", "xloc": [ - "default.handlebars->25->479" + "default.handlebars->25->486" ] }, { @@ -8851,7 +8902,7 @@ "ja": "Intel® AMTはルーティング可能です。", "nl": "Intel® AMT is routeerbaar.", "pt": "Intel® AMT é roteável.", - "ru": "Intel® AMT рутируется.", + "ru": "Intel® AMT маршрутизируется.", "xloc": [ "default.handlebars->25->187", "default.handlebars->25->374" @@ -8881,8 +8932,8 @@ "ru": "Только Intel® AMT, без агента", "xloc": [ "default-mobile.handlebars->9->274", - "default.handlebars->25->951", - "default.handlebars->25->973" + "default.handlebars->25->958", + "default.handlebars->25->980" ] }, { @@ -8895,7 +8946,7 @@ "pt": "Intel® Tecnologia de gerenciamento ativo", "ru": "Технология Intel® Active Management", "xloc": [ - "default.handlebars->25->463" + "default.handlebars->25->470" ] }, { @@ -8909,7 +8960,7 @@ "ru": "Intel® ME", "xloc": [ "default-mobile.handlebars->9->186", - "default.handlebars->25->462" + "default.handlebars->25->469" ] }, { @@ -8923,7 +8974,7 @@ "ru": "Intel® SM", "xloc": [ "default-mobile.handlebars->9->188", - "default.handlebars->25->466" + "default.handlebars->25->473" ] }, { @@ -8936,7 +8987,7 @@ "pt": "Intel® Gerenciamento padrão", "ru": "Intel® Standard Manageability", "xloc": [ - "default.handlebars->25->465" + "default.handlebars->25->472" ] }, { @@ -8947,7 +8998,7 @@ "ja": "Intel® AMT", "nl": "Intel® AMT", "pt": "Intel® AMT", - "ru": "Intel® AMT" + "ru": "Intel® AMT" }, { "cs": "Intel® AMT –", @@ -8957,7 +9008,7 @@ "ja": "Intel® AMT -", "nl": "Intel® AMT -", "pt": "Intel® AMT -", - "ru": "Intel® AMT -", + "ru": "Intel® AMT -", "xloc": [ "default.handlebars->container->column_l->p14->p14title->5" ] @@ -8970,7 +9021,7 @@ "ja": "Intel® AMTハードウェアKVM", "nl": "Intel® AMT Hardware KVM", "pt": "Intel® AMT Hardware KVM", - "ru": "undefined", + "ru": "Intel® AMT Hardware KVM", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->1", "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->1" @@ -8984,7 +9035,7 @@ "ja": "Intel® AMTリダイレクトポートまたはKVM機能が無効になっています", "nl": "Intel® AMT omleidingspoort of KVM-functie is uitgeschakeld", "pt": "Intel® Porta de redirecionamento AMT ou recurso KVM desativado", - "ru": "undefined", + "ru": "Функция Intel® AMT Redirection port или KVM отключены", "xloc": [ "default.handlebars->container->column_l->p11->p11warning->3", "default.handlebars->container->column_l->p12->p12warning->3" @@ -8996,6 +9047,7 @@ "en": "Intel®AMT", "es": "Intel®AMT", "nl": "Intel®AMT", + "ru": "Intel®AMT", "xloc": [ "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevAmt" ] @@ -9008,9 +9060,9 @@ "ja": "インタラクティブ", "nl": "Interactief", "pt": "Interativo", - "ru": "undefined", + "ru": "Интерактивный", "xloc": [ - "default.handlebars->25->616" + "default.handlebars->25->623" ] }, { @@ -9038,7 +9090,7 @@ "pt": "Interfaces", "ru": "Интерфейсы", "xloc": [ - "default.handlebars->25->498" + "default.handlebars->25->505" ] }, { @@ -9049,9 +9101,9 @@ "ja": "イヌクティトゥット語", "nl": "Inuktitut", "pt": "Inuktitut", - "ru": "undefined", + "ru": "Инуктитут", "xloc": [ - "default.handlebars->25->808" + "default.handlebars->25->815" ] }, { @@ -9060,8 +9112,9 @@ "en": "Invalid Device Group Type", "es": "Tipo de grupo de dispositivo no válido", "nl": "Ongeldige apparaatgroep type", + "ru": "Некорректный тип группы устройств", "xloc": [ - "default.handlebars->25->1401" + "default.handlebars->25->1408" ] }, { @@ -9070,8 +9123,9 @@ "en": "Invalid JSON", "es": "JSON inválido.", "nl": "Onjuiste JSON", + "ru": "Некорректный JSON", "xloc": [ - "default.handlebars->25->1395" + "default.handlebars->25->1402" ] }, { @@ -9082,10 +9136,10 @@ "ja": "JSONファイル形式が無効です。", "nl": "Ongeldige JSON-bestandsindeling.", "pt": "Formato de arquivo JSON inválido.", - "ru": "undefined", + "ru": "Некорректный формат файла JSON.", "xloc": [ - "default.handlebars->25->1223", - "default.handlebars->25->1225" + "default.handlebars->25->1230", + "default.handlebars->25->1232" ] }, { @@ -9096,8 +9150,9 @@ "ja": "無効なJSONファイル:{0}。", "nl": "Ongeldig JSON-bestand: {0}.", "pt": "Arquivo JSON inválido: {0}.", + "ru": "Некорректный файл JSON: {0}.", "xloc": [ - "default.handlebars->25->1221" + "default.handlebars->25->1228" ] }, { @@ -9106,8 +9161,9 @@ "en": "Invalid PKCS signature", "es": "Firma PKCS inválida", "nl": "Onjuiste PKCS handtekening", + "ru": "Некорректная сигнатура PKCS", "xloc": [ - "default.handlebars->25->1393" + "default.handlebars->25->1400" ] }, { @@ -9116,8 +9172,9 @@ "en": "Invalid RSA siguature", "es": "La firma RSA no es válida", "nl": "Ongeldige RSA handtekening", + "ru": "Некорректная сигнатура RSA", "xloc": [ - "default.handlebars->25->1394" + "default.handlebars->25->1401" ] }, { @@ -9127,7 +9184,7 @@ "es": "Token de creación de cuenta no válido.", "ja": "アカウント作成トークンが無効です。", "nl": "Ongeldig token voor het maken van een account.", - "ru": "undefined", + "ru": "Некорректный токен создания учетной записи.", "xloc": [ "login-mobile.handlebars->5->5", "login.handlebars->5->5" @@ -9140,7 +9197,7 @@ "es": "Correo Electronico inválido.", "ja": "無効なメール。", "nl": "Ongeldige e-mail.", - "ru": "undefined", + "ru": "Некорректный email.", "xloc": [ "login-mobile.handlebars->5->8", "login.handlebars->5->8" @@ -9153,6 +9210,7 @@ "es": "Token no válido, intente nuevamente.", "ja": "トークンが無効です。もう一度お試しください。", "nl": "Ongeldig token, probeer het opnieuw.", + "ru": "Некорректный токен, попробуйте еще.", "xloc": [ "login-mobile.handlebars->5->10", "login.handlebars->5->10" @@ -9166,6 +9224,7 @@ "ja": "招待リンク({0})", "nl": "Uitnodigingslink ({0})", "pt": "Link de convite ({0})", + "ru": "Ссылка для приглашения ({0})", "xloc": [ "default.handlebars->25->174" ] @@ -9179,6 +9238,7 @@ "ja": "招待タイプ", "nl": "Type uitnodiging", "pt": "Tipo de convite", + "ru": "Тип приглашения", "xloc": [ "default.handlebars->25->280" ] @@ -9194,7 +9254,7 @@ "pt": "Convite", "ru": "Пригласить", "xloc": [ - "default.handlebars->25->1021", + "default.handlebars->25->1028", "default.handlebars->25->236", "default.handlebars->25->313" ] @@ -9208,6 +9268,7 @@ "ja": "招待リンクを共有して、メッシュエージェントをインストールする人を招待します。このリンクは、ユーザーに\\\"{0}\\\"デバイスグループのインストール手順を示します。リンクは公開されており、このサーバーのアカウントは必要ありません。", "nl": "Nodig iemand uit om de mesh-agent te installeren door een uitnodigingslink te delen. Deze koppeling verwijst de gebruiker naar installatie-instructies voor de apparaatgroep \\\"{0}\\\". De link is openbaar en er is geen account voor deze server nodig.", "pt": "Convide alguém para instalar o agente de malha compartilhando um link de convite.Este link indica ao usuário instruções de instalação para o grupo de dispositivos \\\"{0}\\\". O link é público e nenhuma conta para este servidor é necessária.", + "ru": "Пригласите установить Mesh Agent поделившись ссылкой. Эта ссылка ведет на инструкции для установки для группы устройств \\\"{0}\\\". Ссылка общедоступна и не требует наличия учетной записи на сервере.", "xloc": [ "default.handlebars->25->304" ] @@ -9221,9 +9282,9 @@ "ja": "このメッシュにメッシュエージェントをインストールするように招待します。", "nl": "Nodig iemand uit om de mesh-agent op deze mesh te installeren.", "pt": "Convide alguém para instalar o agente de malha nessa malha.", - "ru": "Отправить приглашение на установку Mesh Агента", + "ru": "Отправить приглашение на установку Mesh Agent", "xloc": [ - "default.handlebars->25->1020", + "default.handlebars->25->1027", "default.handlebars->25->235" ] }, @@ -9236,6 +9297,7 @@ "ja": "メッシュエージェントをインストールする人を招待します。 \\\"{0}\\\"デバイスグループのメッシュエージェントインストールへのリンクが記載されたメール。", "nl": "Nodig iemand uit om de mesh-agent te installeren. Er wordt een e-mail verzonden met de link naar de installatie van de mesh-agent voor de apparaatgroep \\\"{0}\\\".", "pt": "Convide alguém para instalar o agente de malha.Um email será enviado com o link para a instalação do agente de malha para o grupo de dispositivos \\\"{0}\\\".", + "ru": "Пригласите установить Mesh Agent. Ссылка на установку для группы \\\"{0}\\\" будет отправлена по электронной почте.", "xloc": [ "default.handlebars->25->281" ] @@ -9251,7 +9313,7 @@ "pt": "Irish", "ru": "Ирландский", "xloc": [ - "default.handlebars->25->809" + "default.handlebars->25->816" ] }, { @@ -9264,7 +9326,7 @@ "pt": "Italiano (Padrão)", "ru": "Итальянский (Стандартный)", "xloc": [ - "default.handlebars->25->810" + "default.handlebars->25->817" ] }, { @@ -9277,7 +9339,7 @@ "pt": "Italiano (Suíça)", "ru": "Итальянский (Швейцария)", "xloc": [ - "default.handlebars->25->811" + "default.handlebars->25->818" ] }, { @@ -9291,8 +9353,8 @@ "pt": "Formato JSON", "ru": "Формат JSON", "xloc": [ - "default.handlebars->25->1190", - "default.handlebars->25->1229" + "default.handlebars->25->1197", + "default.handlebars->25->1236" ] }, { @@ -9306,7 +9368,7 @@ "pt": "japonês", "ru": "Японский", "xloc": [ - "default.handlebars->25->812" + "default.handlebars->25->819" ] }, { @@ -9318,7 +9380,7 @@ "pt": "Kannada", "ru": "Каннада", "xloc": [ - "default.handlebars->25->813" + "default.handlebars->25->820" ] }, { @@ -9330,7 +9392,7 @@ "pt": "Caxemira", "ru": "Кашмирский", "xloc": [ - "default.handlebars->25->814" + "default.handlebars->25->821" ] }, { @@ -9342,7 +9404,7 @@ "pt": "Cazaque", "ru": "Казахский", "xloc": [ - "default.handlebars->25->815" + "default.handlebars->25->822" ] }, { @@ -9355,7 +9417,7 @@ "pt": "KernelDriver", "ru": "Драйвер ядра", "xloc": [ - "default.handlebars->25->617" + "default.handlebars->25->624" ] }, { @@ -9369,8 +9431,8 @@ "pt": "Nome da chave", "ru": "Имя ключа", "xloc": [ - "default.handlebars->25->706", - "default.handlebars->25->709" + "default.handlebars->25->713", + "default.handlebars->25->716" ] }, { @@ -9396,7 +9458,7 @@ "pt": "Khmer", "ru": "Кхмерский", "xloc": [ - "default.handlebars->25->816" + "default.handlebars->25->823" ] }, { @@ -9408,7 +9470,7 @@ "pt": "Kirghiz", "ru": "Киргизский", "xloc": [ - "default.handlebars->25->817" + "default.handlebars->25->824" ] }, { @@ -9420,7 +9482,7 @@ "pt": "Klingon", "ru": "Клингонский", "xloc": [ - "default.handlebars->25->818" + "default.handlebars->25->825" ] }, { @@ -9433,7 +9495,7 @@ "pt": "coreano", "ru": "Korean", "xloc": [ - "default.handlebars->25->819" + "default.handlebars->25->826" ] }, { @@ -9446,7 +9508,7 @@ "pt": "Coreano (Coréia do Norte)", "ru": "Корейский (Северная Корея)", "xloc": [ - "default.handlebars->25->820" + "default.handlebars->25->827" ] }, { @@ -9459,7 +9521,7 @@ "pt": "Coreano (Coréia do Sul)", "ru": "Корейский (Южная Корея)", "xloc": [ - "default.handlebars->25->821" + "default.handlebars->25->828" ] }, { @@ -9471,8 +9533,8 @@ "pt": "LF", "ru": "LF", "xloc": [ - "default.handlebars->25->629", - "default.handlebars->25->638" + "default.handlebars->25->636", + "default.handlebars->25->645" ] }, { @@ -9486,7 +9548,7 @@ "pt": "Língua", "ru": "Язык", "xloc": [ - "default.handlebars->25->914" + "default.handlebars->25->921" ] }, { @@ -9498,7 +9560,7 @@ "ja": "大", "nl": "Grote", "pt": "ampla", - "ru": "Большой / крупный", + "ru": "Большой/крупный", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize->sizeselect->5" ] @@ -9514,7 +9576,7 @@ "pt": "Foco grande", "ru": "Большой Фокус", "xloc": [ - "default.handlebars->25->606" + "default.handlebars->25->613" ] }, { @@ -9667,7 +9729,7 @@ "pt": "Último acesso", "ru": "Последний доступ", "xloc": [ - "default.handlebars->25->1198" + "default.handlebars->25->1205" ] }, { @@ -9681,7 +9743,7 @@ "pt": "Último login", "ru": "Последний вход в систему", "xloc": [ - "default.handlebars->25->1325" + "default.handlebars->25->1332" ] }, { @@ -9693,7 +9755,7 @@ "ja": "最後のエージェントのアドレス", "nl": "Laatste agentadres", "pt": "Último endereço do agente", - "ru": "Последние адрес агента", + "ru": "Последний адрес агента", "xloc": [ "default.handlebars->25->88", "default.handlebars->25->89", @@ -9725,7 +9787,7 @@ "pt": "Última alteração: {0}", "ru": "Последнее изменение: {0}", "xloc": [ - "default.handlebars->25->1329" + "default.handlebars->25->1336" ] }, { @@ -9766,7 +9828,7 @@ "pt": "Último login: {0}", "ru": "Последний вход в систему: {0}", "xloc": [ - "default.handlebars->25->1208" + "default.handlebars->25->1215" ] }, { @@ -9780,7 +9842,7 @@ "pt": "Visto pela última vez:", "ru": "Последнее посещение:", "xloc": [ - "default.handlebars->25->521", + "default.handlebars->25->528", "default.handlebars->25->83" ] }, @@ -9806,7 +9868,7 @@ "fr": "Dernier", "ja": "最新", "nl": "Laatste", - "ru": "Самый последний", + "ru": "Последний", "xloc": [ "default.handlebars->container->column_l->p42->p42tbl->1->0->6" ] @@ -9836,7 +9898,7 @@ "pt": "Latim", "ru": "Латинский", "xloc": [ - "default.handlebars->25->822" + "default.handlebars->25->829" ] }, { @@ -9849,7 +9911,7 @@ "pt": "letão", "ru": "Латышский", "xloc": [ - "default.handlebars->25->823" + "default.handlebars->25->830" ] }, { @@ -9860,7 +9922,7 @@ "ja": "左バーインターフェイス", "nl": "Linkerbalk interface", "pt": "Interface da barra esquerda", - "ru": "Панел инструментов слева", + "ru": "Панель инструментов слева", "xloc": [ "agentinvite.handlebars->container->topbar->uiMenuButton->uiMenu", "default.handlebars->container->topbar->1->1->uiMenuButton->uiMenu", @@ -9880,7 +9942,7 @@ "pt": "Menos", "ru": "Меньше", "xloc": [ - "default.handlebars->25->1458" + "default.handlebars->25->1465" ] }, { @@ -9908,7 +9970,7 @@ "ru": "Ограниченный ввод", "xloc": [ "default-mobile.handlebars->9->323", - "default.handlebars->25->1120" + "default.handlebars->25->1127" ] }, { @@ -9919,10 +9981,10 @@ "ja": "限定入力のみ", "nl": "Alleen beperkte invoer", "pt": "Somente entrada limitada", - "ru": "Только ограниченный ввод", + "ru": "Ограничить элементы ввода", "xloc": [ "default-mobile.handlebars->9->298", - "default.handlebars->25->1090" + "default.handlebars->25->1097" ] }, { @@ -9937,7 +9999,7 @@ "ru": "Ссылка", "xloc": [ "default-mobile.handlebars->9->68", - "default.handlebars->25->1151", + "default.handlebars->25->1158", "default.handlebars->container->column_l->p42->p42tbl->1->0->4" ] }, @@ -10048,7 +10110,7 @@ "pt": "Linux ARM, Raspberry Pi (32 bits)", "ru": "Linux ARM, Raspberry Pi (32bit)", "xloc": [ - "default.handlebars->25->574" + "default.handlebars->25->581" ] }, { @@ -10130,7 +10192,7 @@ "pt": "Linux x86 (32 bits)", "ru": "Linux x86 (32bit)", "xloc": [ - "default.handlebars->25->571" + "default.handlebars->25->578" ] }, { @@ -10143,7 +10205,7 @@ "pt": "Linux x86 (64 bits)", "ru": "Linux x86 (64bit)", "xloc": [ - "default.handlebars->25->572" + "default.handlebars->25->579" ] }, { @@ -10172,7 +10234,7 @@ "pt": "Lituano", "ru": "Литовский", "xloc": [ - "default.handlebars->25->824" + "default.handlebars->25->831" ] }, { @@ -10187,10 +10249,10 @@ "ru": "Загрузка...", "xloc": [ "default-mobile.handlebars->9->31", - "default.handlebars->25->566", - "default.handlebars->25->702", - "default.handlebars->25->968", - "default.handlebars->25->970" + "default.handlebars->25->573", + "default.handlebars->25->709", + "default.handlebars->25->975", + "default.handlebars->25->977" ] }, { @@ -10242,7 +10304,7 @@ "pt": "Configurações de localização", "ru": "Настройки локализации", "xloc": [ - "default.handlebars->25->917", + "default.handlebars->25->924", "default.handlebars->container->column_l->p2->p2AccountActions->3->5" ] }, @@ -10256,7 +10318,7 @@ "pt": "Localização", "ru": "Местонахождение", "xloc": [ - "default.handlebars->25->500" + "default.handlebars->25->507" ] }, { @@ -10281,9 +10343,9 @@ "ja": "アカウントをロック", "nl": "Account vergrendelen", "pt": "Bloquear conta", - "ru": "Заблокировать аккаунт", + "ru": "Заблокировать учетную запись", "xloc": [ - "default.handlebars->25->1259" + "default.handlebars->25->1266" ] }, { @@ -10297,7 +10359,7 @@ "pt": "Bloqueado", "ru": "Заблокирован", "xloc": [ - "default.handlebars->25->1209" + "default.handlebars->25->1216" ] }, { @@ -10309,9 +10371,9 @@ "ja": "ロックされたアカウント", "nl": "Vergrendeld account", "pt": "Conta bloqueada", - "ru": "Заблокированный аккаунт", + "ru": "Заблокированная учетная запись", "xloc": [ - "default.handlebars->25->1310" + "default.handlebars->25->1317" ] }, { @@ -10324,7 +10386,7 @@ "pt": "Log de Evento", "ru": "Добавить событие", "xloc": [ - "default.handlebars->25->491" + "default.handlebars->25->498" ] }, { @@ -10428,7 +10490,7 @@ "pt": "Luxemburguês", "ru": "Люксембургский", "xloc": [ - "default.handlebars->25->825" + "default.handlebars->25->832" ] }, { @@ -10488,9 +10550,9 @@ "default-mobile.handlebars->9->194", "default.handlebars->25->192", "default.handlebars->25->379", - "default.handlebars->25->484", - "default.handlebars->25->689", - "default.handlebars->25->690", + "default.handlebars->25->491", + "default.handlebars->25->696", + "default.handlebars->25->697", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -10517,7 +10579,7 @@ "pt": "Login do MQTT", "ru": "MQTT Вход", "xloc": [ - "default.handlebars->25->512" + "default.handlebars->25->519" ] }, { @@ -10531,7 +10593,7 @@ "ru": "Подключен MQTT канал", "xloc": [ "default-mobile.handlebars->9->203", - "default.handlebars->25->520" + "default.handlebars->25->527" ] }, { @@ -10545,7 +10607,7 @@ "ru": "Подключен MQTT", "xloc": [ "default.handlebars->25->157", - "default.handlebars->25->519" + "default.handlebars->25->526" ] }, { @@ -10560,7 +10622,7 @@ "xloc": [ "default.handlebars->25->191", "default.handlebars->25->378", - "default.handlebars->25->483" + "default.handlebars->25->490" ] }, { @@ -10597,9 +10659,9 @@ "ja": "MacOS(64ビット)", "nl": "MacOS (64bit)", "pt": "MacOS (64 bits)", - "ru": "MacOS (64-разрядная)", + "ru": "MacOS (64bit)", "xloc": [ - "default.handlebars->25->573" + "default.handlebars->25->580" ] }, { @@ -10610,7 +10672,7 @@ "ja": "MacOS 32ビット", "nl": "MacOS 32bit", "pt": "MacOS 32 bits", - "ru": "MacOS 32-разрядная", + "ru": "MacOS 32bit", "xloc": [ "default-mobile.handlebars->9->154", "default.handlebars->25->24" @@ -10624,7 +10686,7 @@ "ja": "MacOS 64ビット", "nl": "MacOS 64bit", "pt": "MacOS 64 bits", - "ru": "MacOS 64-разрядная", + "ru": "MacOS 64bit", "xloc": [ "default-mobile.handlebars->9->159", "default.handlebars->25->29" @@ -10640,7 +10702,7 @@ "pt": "Mensagens do servidor principal", "ru": "Сообщения главного сервера", "xloc": [ - "default.handlebars->25->1435" + "default.handlebars->25->1442" ] }, { @@ -10653,7 +10715,7 @@ "pt": "Malaio", "ru": "Малайский", "xloc": [ - "default.handlebars->25->827" + "default.handlebars->25->834" ] }, { @@ -10665,7 +10727,7 @@ "pt": "Malaiala", "ru": "Малаяламский", "xloc": [ - "default.handlebars->25->828" + "default.handlebars->25->835" ] }, { @@ -10677,7 +10739,7 @@ "pt": "Maltês", "ru": "Мальтийский", "xloc": [ - "default.handlebars->25->829" + "default.handlebars->25->836" ] }, { @@ -10706,8 +10768,8 @@ "xloc": [ "default-mobile.handlebars->9->295", "default-mobile.handlebars->9->313", - "default.handlebars->25->1087", - "default.handlebars->25->1110" + "default.handlebars->25->1094", + "default.handlebars->25->1117" ] }, { @@ -10722,8 +10784,8 @@ "xloc": [ "default-mobile.handlebars->9->294", "default-mobile.handlebars->9->312", - "default.handlebars->25->1086", - "default.handlebars->25->1109" + "default.handlebars->25->1093", + "default.handlebars->25->1116" ] }, { @@ -10734,7 +10796,7 @@ "ja": "セキュリティキーを管理する", "nl": "Beheer beveiligingssleutels", "pt": "Gerenciar chaves de segurança", - "ru": "Управление Ключами Безопасности", + "ru": "Управление ключами безопасности", "xloc": [ "default.handlebars->25->145" ] @@ -10745,8 +10807,9 @@ "en": "Manage User Groups", "es": "Administrar grupos de usuarios", "nl": "Beheer gebruikersgroepen.", + "ru": "Управление группами пользователя", "xloc": [ - "default.handlebars->25->1258" + "default.handlebars->25->1265" ] }, { @@ -10760,7 +10823,7 @@ "pt": "Gerenciar Usuários", "ru": "Управление пользователями", "xloc": [ - "default.handlebars->25->1257" + "default.handlebars->25->1264" ] }, { @@ -10815,7 +10878,7 @@ "pt": "Gerenciar usando um agente de software", "ru": "Управление с помощью программного агента", "xloc": [ - "default.handlebars->25->950" + "default.handlebars->25->957" ] }, { @@ -10830,7 +10893,7 @@ "ru": "Управляется с помощью программного агента", "xloc": [ "default-mobile.handlebars->9->275", - "default.handlebars->25->974" + "default.handlebars->25->981" ] }, { @@ -10843,7 +10906,7 @@ "pt": "Gerenciador", "ru": "Менеджер", "xloc": [ - "default.handlebars->25->1214" + "default.handlebars->25->1221" ] }, { @@ -10869,7 +10932,7 @@ "ja": "手動ユーザー名/パスワード", "nl": "Handmatige gebruikersnaam/wachtwoord", "pt": "Nome de usuário / senha manual", - "ru": "Ручное Имя пользователя/Пароль", + "ru": "Ручной Имя пользователя/Пароль", "xloc": [ "default.handlebars->25->259" ] @@ -10883,7 +10946,7 @@ "pt": "Maori", "ru": "Маори", "xloc": [ - "default.handlebars->25->830" + "default.handlebars->25->837" ] }, { @@ -10911,7 +10974,7 @@ "pt": "Marathi", "ru": "Маратхи", "xloc": [ - "default.handlebars->25->831" + "default.handlebars->25->838" ] }, { @@ -10920,8 +10983,9 @@ "en": "Max Sessions Reached", "es": "Sesiones máximas alcanzadas", "nl": "Max Sessies bereikt", + "ru": "Достигнуто максимальное число сессий", "xloc": [ - "default.handlebars->25->1399" + "default.handlebars->25->1406" ] }, { @@ -10948,7 +11012,7 @@ "ja": "中", "nl": "Gemiddeld", "pt": "Médio", - "ru": "Средне", + "ru": "Средний", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->3", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize->sizeselect->3", @@ -10966,7 +11030,7 @@ "pt": "Megabytes", "ru": "Мегабайт", "xloc": [ - "default.handlebars->25->1425" + "default.handlebars->25->1432" ] }, { @@ -10980,7 +11044,7 @@ "pt": "Memória", "ru": "ОЗУ", "xloc": [ - "default.handlebars->25->1416", + "default.handlebars->25->1423", "default.handlebars->25->75", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] @@ -10993,7 +11057,7 @@ "ja": "メッシュエージェント", "nl": "Mesh Agent", "pt": "Mesh Agent", - "ru": "Mesh Агент", + "ru": "Mesh Agent", "xloc": [ "default-mobile.handlebars->9->200", "default.handlebars->25->325", @@ -11001,8 +11065,8 @@ "default.handlebars->25->336", "default.handlebars->25->339", "default.handlebars->25->342", - "default.handlebars->25->445", - "default.handlebars->25->476" + "default.handlebars->25->452", + "default.handlebars->25->483" ] }, { @@ -11013,10 +11077,10 @@ "ja": "メッシュエージェントコンソール", "nl": "Mesh Agent Console", "pt": "Mesh Agent Console", - "ru": "Консоль Mesh Agent-а", + "ru": "Консоль Mesh Agent", "xloc": [ "default-mobile.handlebars->9->302", - "default.handlebars->25->1094" + "default.handlebars->25->1101" ] }, { @@ -11026,9 +11090,9 @@ "ja": "メッシュリレー", "nl": "Mesh Relay", "pt": "Mesh Relay", - "ru": "Mesh Реле", + "ru": "Ретранслятор Mesh", "xloc": [ - "default.handlebars->25->482" + "default.handlebars->25->489" ] }, { @@ -11039,11 +11103,11 @@ "ja": "メッシュエージェントが接続され、使用できる状態になりました。", "nl": "Mesh-agent is verbonden en klaar voor gebruik.", "pt": "O agente de malha está conectado e pronto para uso.", - "ru": "Mesh agent подключен и готов к использованию.", + "ru": "Mesh Agent подключен и готов к использованию.", "xloc": [ "default.handlebars->25->183", "default.handlebars->25->370", - "default.handlebars->25->475" + "default.handlebars->25->482" ] }, { @@ -11054,20 +11118,21 @@ "ja": "メッシュエージェントは、別のエージェントをリレーとして使用して到達可能です。", "nl": "Mesh-agent is bereikbaar met een andere agent als relay.", "pt": "O agente de malha é alcançável usando outro agente como retransmissão.", - "ru": "Mesh agent доступен с использованием другого агента в качестве реле.", + "ru": "Mesh Agent доступен с использованием другого агента в качестве ретранслятора.", "xloc": [ "default.handlebars->25->189", "default.handlebars->25->376", - "default.handlebars->25->481" + "default.handlebars->25->488" ] }, { "en": "MeshAction (.txt)", "es": "MeshAction (.txt)", "nl": "MeshAction (.txt)", + "ru": "MeshAction (.txt)", "xloc": [ - "default.handlebars->25->580", - "default.handlebars->25->582" + "default.handlebars->25->587", + "default.handlebars->25->589" ] }, { @@ -11077,9 +11142,9 @@ "es": "Tráfico MeshAgent", "ja": "MeshAgentトラフィック", "nl": "MeshAgent verkeer", - "ru": "Трафик MeshAgent-а", + "ru": "Трафик MeshAgent", "xloc": [ - "default.handlebars->25->1437" + "default.handlebars->25->1444" ] }, { @@ -11089,9 +11154,9 @@ "es": "Actualización de MeshAgent", "ja": "MeshAgentの更新", "nl": "MeshAgent update", - "ru": "Обновление MeshAgent-а", + "ru": "Обновление MeshAgent", "xloc": [ - "default.handlebars->25->1438" + "default.handlebars->25->1445" ] }, { @@ -11104,7 +11169,7 @@ "pt": "MeshCentral Desktop", "ru": "Рабочий стол MeshCentral", "xloc": [ - "player.htm->3->12" + "player.handlebars->3->12" ] }, { @@ -11117,7 +11182,7 @@ "pt": "MeshCentral Errors", "ru": "Ошибки MeshCentral", "xloc": [ - "default.handlebars->25->969" + "default.handlebars->25->976" ] }, { @@ -11128,9 +11193,9 @@ "ja": "MeshCentralルーター", "nl": "MeshCentral Router", "pt": "MeshCentral Router", - "ru": "MeshCentral Маршрутизатор", + "ru": "MeshCentral Router ", "xloc": [ - "default.handlebars->25->568" + "default.handlebars->25->575" ] }, { @@ -11141,9 +11206,9 @@ "ja": "MeshCentralルーターは、TCPポートマッピング用のWindowsツールです。たとえば、このサーバーを介してRDPをリモートデバイスに接続できます。", "nl": "MeshCentral Router is een Windows tool voor het toewijzen van TCP poorten. U kunt RDP bijvoorbeeld via deze server naar een extern apparaat sturen.", "pt": "O MeshCentral Router é uma ferramenta do Windows para mapeamento de portas TCP. Você pode, por exemplo, RDP em um dispositivo remoto através deste servidor.", - "ru": "MeshCentral Маршрутизатор это инструмент Windows для сопоставления портов TCP. Например, через этот сервер вы можете установить RDP к удаленному устройство.", + "ru": "MeshCentral Router это инструмент Windows для сопоставления портов TCP. Например, через этот сервер можно установить подключение по RDP к удаленному устройству.", "xloc": [ - "default.handlebars->25->567" + "default.handlebars->25->574" ] }, { @@ -11154,7 +11219,7 @@ "ja": "MeshCentralサーバーエラー", "nl": "MeshCentral serverfouten", "pt": "Erros do servidor MeshCentral", - "ru": "Ошибки MeshCentral Сервера", + "ru": "Ошибки сервера MeshCentral", "xloc": [ "default.handlebars->25->115", "default.handlebars->25->117" @@ -11168,9 +11233,9 @@ "ja": "MeshCentralサーバーピアリング", "nl": "MeshCentral Server Peering", "pt": "Peering do servidor MeshCentral", - "ru": "Соединения MeshCentral Сервера", + "ru": "Соединения сервера MeshCentral", "xloc": [ - "default.handlebars->25->1436" + "default.handlebars->25->1443" ] }, { @@ -11183,7 +11248,7 @@ "pt": "MeshCentral Terminal", "ru": "Терминал MeshCentral", "xloc": [ - "player.htm->3->11" + "player.handlebars->3->11" ] }, { @@ -11198,7 +11263,7 @@ "xloc": [ "default.handlebars->25->112", "default.handlebars->25->113", - "default.handlebars->25->967" + "default.handlebars->25->974" ] }, { @@ -11212,63 +11277,70 @@ "ru": "MeshCmd", "xloc": [ "default.handlebars->25->207", - "default.handlebars->25->578" + "default.handlebars->25->585" ] }, { "en": "MeshCmd (Linux ARM, 32bit)", "es": "MeshCmd (Linux ARM, 32bit)", "nl": "MeshCmd (Linux ARM, 32bit)", + "ru": "MeshCmd (Linux ARM, 32bit)", "xloc": [ - "default.handlebars->25->590" + "default.handlebars->25->597" ] }, { "en": "MeshCmd (Linux x86, 32bit)", "es": "MeshCmd (Linux x86, 32bit)", "nl": "MeshCmd (Linux x86, 32bit)", + "ru": "MeshCmd (Linux x86, 32bit)", "xloc": [ - "default.handlebars->25->587" + "default.handlebars->25->594" ] }, { "en": "MeshCmd (Linux x86, 64bit)", "es": "MeshCmd (Linux x86, 64bit)", "nl": "MeshCmd (Linux x86, 64bit)", + "ru": "MeshCmd (Linux x86, 64bit)", "xloc": [ - "default.handlebars->25->588" + "default.handlebars->25->595" ] }, { "en": "MeshCmd (MacOS, 64bit)", "es": "MeshCmd (MacOS, 64bit)", "nl": "MeshCmd (MacOS, 64bit)", + "ru": "MeshCmd (MacOS, 64bit)", "xloc": [ - "default.handlebars->25->589" + "default.handlebars->25->596" ] }, { "en": "MeshCmd (Win32 executable)", "es": "MeshCmd (Win32 ejecutable)", "nl": "MeshCmd (Win32 executable)", + "ru": "MeshCmd (приложение Win32)", "xloc": [ - "default.handlebars->25->585" + "default.handlebars->25->592" ] }, { "en": "MeshCmd (Win64 executable)", "es": "MeshCmd (Win64 ejecutable)", "nl": "MeshCmd (Win64 executable)", + "ru": "MeshCmd (приложение Win64)", "xloc": [ - "default.handlebars->25->586" + "default.handlebars->25->593" ] }, { "en": "MeshCmd is a command line tool that performs lots of different operations. The action file can optionally be downloaded and edited to provide server information and credentials.", "es": "MeshCmd es una herramienta de línea de comandos que realiza muchas operaciones diferentes. El archivo de acción se puede descargar y editar opcionalmente para proporcionar información del servidor y credenciales.", "nl": "MeshCmd is een opdrachtregelprogramma dat veel verschillende bewerkingen uitvoert. Het actiebestand is optioneel, en kan worden gedownload en bewerkt om serverinformatie en referenties te verstrekken.", + "ru": "MeshCmd это утилита с командной строкой, которая позволяет выполнить множество операций. Файл с командами может быть опционально скачан и отредактирован для указания информации о сервере и учетных данных.", "xloc": [ - "default.handlebars->25->575" + "default.handlebars->25->582" ] }, { @@ -11322,7 +11394,7 @@ "ru": "Сообщение", "xloc": [ "default.handlebars->25->302", - "default.handlebars->25->547" + "default.handlebars->25->554" ] }, { @@ -11335,7 +11407,7 @@ "pt": "Despachante de mensagens", "ru": "Диспетчер сообщения", "xloc": [ - "default.handlebars->25->1434" + "default.handlebars->25->1441" ] }, { @@ -11388,7 +11460,7 @@ "pt": "Modificar localização do nó", "ru": "Изменить позицию узла", "xloc": [ - "default.handlebars->25->408" + "default.handlebars->25->415" ] }, { @@ -11400,7 +11472,7 @@ "pt": "Moldavian", "ru": "Молдавский", "xloc": [ - "default.handlebars->25->832" + "default.handlebars->25->839" ] }, { @@ -11414,7 +11486,7 @@ "pt": "Mais", "ru": "Еще", "xloc": [ - "default.handlebars->25->1457" + "default.handlebars->25->1464" ] }, { @@ -11441,7 +11513,7 @@ "pt": "Mova este dispositivo para um grupo de dispositivos diferente", "ru": "Переместить это устройство в другую группу устройств", "xloc": [ - "default.handlebars->25->493" + "default.handlebars->25->500" ] }, { @@ -11467,7 +11539,7 @@ "ja": "マルチデスクトップ", "nl": "Multi Desktop", "pt": "Multi-Desktop", - "ru": "Много-Экранный", + "ru": "Многоэкранный", "xloc": [ "default.handlebars->contextMenu->cxmdesktop" ] @@ -11498,7 +11570,7 @@ "ja": "私のデバイス", "nl": "Mijn apparaten", "pt": "Meus dispositivos", - "ru": "Мои Устройства", + "ru": "Мои устройства", "xloc": [ "default.handlebars->container->column_l->p1->p1title->2->0", "default.handlebars->container->page_leftbar", @@ -11514,7 +11586,7 @@ "ja": "私のイベント", "nl": "Mijn gebeurtenissen", "pt": "Meus Eventos", - "ru": "Мои События", + "ru": "Мои события", "xloc": [ "default.handlebars->container->column_l->p3->p3title->0", "default.handlebars->container->page_leftbar", @@ -11530,7 +11602,7 @@ "ja": "私のファイル", "nl": "Mijn bestanden", "pt": "Meus arquivos", - "ru": "Мои Файлы", + "ru": "Мои файлы", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p5->1->1->0->5->1->1", "default-mobile.handlebars->topMenu->1", @@ -11548,7 +11620,7 @@ "ja": "私のサーバー", "nl": "Mijn server", "pt": "Meu servidor", - "ru": "Мои Сервер", + "ru": "Мой сервер", "xloc": [ "default.handlebars->container->column_l->p6->p6title->3", "default.handlebars->container->page_leftbar", @@ -11566,7 +11638,7 @@ "pt": "Console do meu servidor", "ru": "Консоль моего сервера", "xloc": [ - "default.handlebars->25->684" + "default.handlebars->25->691" ] }, { @@ -11629,6 +11701,7 @@ "en": "My User Groups", "es": "Mis grupos de usuarios", "nl": "Mijn gebruikersgroepen", + "ru": "Мои группы пользователей", "xloc": [ "default.handlebars->container->column_l->p50->p50title->0" ] @@ -11660,8 +11733,8 @@ "pt": "Minha chave", "ru": "Мой ключ", "xloc": [ - "default.handlebars->25->707", - "default.handlebars->25->710" + "default.handlebars->25->714", + "default.handlebars->25->717" ] }, { @@ -11680,19 +11753,19 @@ "default-mobile.handlebars->9->289", "default-mobile.handlebars->9->56", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->25->1059", - "default.handlebars->25->1196", - "default.handlebars->25->1264", - "default.handlebars->25->1268", - "default.handlebars->25->1273", + "default.handlebars->25->1066", + "default.handlebars->25->1203", + "default.handlebars->25->1271", "default.handlebars->25->1275", - "default.handlebars->25->1298", - "default.handlebars->25->611", + "default.handlebars->25->1280", + "default.handlebars->25->1282", + "default.handlebars->25->1305", + "default.handlebars->25->618", "default.handlebars->25->71", "default.handlebars->25->80", "default.handlebars->25->94", - "default.handlebars->25->948", - "default.handlebars->25->975", + "default.handlebars->25->955", + "default.handlebars->25->982", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default.handlebars->container->column_l->p42->p42tbl->1->0->2" @@ -11723,7 +11796,7 @@ "pt": "Nome1, Nome2, Nome3", "ru": "Имя1, Имя2, Имя3", "xloc": [ - "default.handlebars->25->1250" + "default.handlebars->25->1257" ] }, { @@ -11736,7 +11809,7 @@ "pt": "Navajo", "ru": "Навахо", "xloc": [ - "default.handlebars->25->833" + "default.handlebars->25->840" ] }, { @@ -11749,7 +11822,7 @@ "pt": "Ndonga", "ru": "Ндонга", "xloc": [ - "default.handlebars->25->834" + "default.handlebars->25->841" ] }, { @@ -11762,7 +11835,7 @@ "pt": "Nepali", "ru": "Непальский", "xloc": [ - "default.handlebars->25->835" + "default.handlebars->25->842" ] }, { @@ -11776,7 +11849,7 @@ "pt": "Interfaces de rede", "ru": "Сетевые интерфейсы", "xloc": [ - "default.handlebars->25->565" + "default.handlebars->25->572" ] }, { @@ -11788,9 +11861,9 @@ "ja": "ネットワークルーター", "nl": "Netwerk Router", "pt": "Roteador de rede", - "ru": "Сетевой маршрутизатор", + "ru": "Network Router", "xloc": [ - "default.handlebars->25->584" + "default.handlebars->25->591" ] }, { @@ -11834,9 +11907,9 @@ "ru": "Новая группа устройств", "xloc": [ "default-mobile.handlebars->9->50", - "default.handlebars->25->557", - "default.handlebars->25->941", - "default.handlebars->25->953" + "default.handlebars->25->564", + "default.handlebars->25->948", + "default.handlebars->25->960" ] }, { @@ -11852,8 +11925,8 @@ "xloc": [ "default-mobile.handlebars->9->247", "default-mobile.handlebars->9->79", - "default.handlebars->25->1169", - "default.handlebars->25->648", + "default.handlebars->25->1176", + "default.handlebars->25->655", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -11864,6 +11937,7 @@ "en": "New Group...", "es": "Nuevo grupo...", "nl": "Nieuwe Groep...", + "ru": "Новая группа...", "xloc": [ "default.handlebars->container->column_l->p50->3->1->0->3->3" ] @@ -11895,8 +11969,8 @@ "xloc": [ "default-mobile.handlebars->9->45", "default-mobile.handlebars->9->46", - "default.handlebars->25->936", - "default.handlebars->25->937" + "default.handlebars->25->943", + "default.handlebars->25->944" ] }, { @@ -11925,8 +11999,8 @@ "xloc": [ "default-mobile.handlebars->9->184", "default-mobile.handlebars->9->185", - "default.handlebars->25->459", - "default.handlebars->25->460" + "default.handlebars->25->466", + "default.handlebars->25->467" ] }, { @@ -11940,9 +12014,9 @@ "pt": "Nenhum evento encontrado", "ru": "События не найдены", "xloc": [ - "default.handlebars->25->1186", - "default.handlebars->25->1382", - "default.handlebars->25->682" + "default.handlebars->25->1193", + "default.handlebars->25->1389", + "default.handlebars->25->689" ] }, { @@ -11954,10 +12028,10 @@ "ja": "ファイルアクセスなし", "nl": "Geen bestandstoegang", "pt": "Sem acesso a arquivos", - "ru": "Нет доступа к файлу", + "ru": "Нет доступа к файлам", "xloc": [ "default-mobile.handlebars->9->300", - "default.handlebars->25->1092" + "default.handlebars->25->1099" ] }, { @@ -11972,7 +12046,7 @@ "ru": "Файлов нет", "xloc": [ "default-mobile.handlebars->9->321", - "default.handlebars->25->1118" + "default.handlebars->25->1125" ] }, { @@ -11987,8 +12061,8 @@ "xloc": [ "default-mobile.handlebars->9->301", "default-mobile.handlebars->9->322", - "default.handlebars->25->1093", - "default.handlebars->25->1119" + "default.handlebars->25->1100", + "default.handlebars->25->1126" ] }, { @@ -12036,8 +12110,9 @@ "en": "No Members", "es": "Sin miembros", "nl": "Geen leden", + "ru": "Нет членов", "xloc": [ - "default.handlebars->25->1285" + "default.handlebars->25->1292" ] }, { @@ -12048,9 +12123,9 @@ "ja": "新しいデバイスグループはありません", "nl": "Geen nieuwe apparaatgroepen", "pt": "Não há novos grupos de dispositivos", - "ru": "Новых групп устройств нет", + "ru": "Запретить создание групп устройств", "xloc": [ - "default.handlebars->25->1260" + "default.handlebars->25->1267" ] }, { @@ -12063,9 +12138,9 @@ "pt": "Nenhuma política", "ru": "Политик нет", "xloc": [ - "default.handlebars->25->1000", - "default.handlebars->25->1031", - "default.handlebars->25->1034" + "default.handlebars->25->1007", + "default.handlebars->25->1038", + "default.handlebars->25->1041" ] }, { @@ -12081,11 +12156,11 @@ "default-mobile.handlebars->9->284", "default-mobile.handlebars->9->327", "default-mobile.handlebars->9->65", - "default.handlebars->25->1025", - "default.handlebars->25->1124", - "default.handlebars->25->1291", - "default.handlebars->25->1365", - "default.handlebars->25->962" + "default.handlebars->25->1032", + "default.handlebars->25->1131", + "default.handlebars->25->1298", + "default.handlebars->25->1372", + "default.handlebars->25->969" ] }, { @@ -12097,11 +12172,11 @@ "ja": "TLSセキュリティなし", "nl": "Geen TLS beveiliging", "pt": "Sem segurança TLS", - "ru": "TLS безопасности нет", + "ru": "Нет безопасности TLS", "xloc": [ "default-mobile.handlebars->9->215", "default.handlebars->25->245", - "default.handlebars->25->543" + "default.handlebars->25->550" ] }, { @@ -12112,10 +12187,10 @@ "ja": "ターミナルなし", "nl": "Geen terminal", "pt": "Sem terminal", - "ru": "Терминала нет", + "ru": "Нет терминала", "xloc": [ "default-mobile.handlebars->9->320", - "default.handlebars->25->1117" + "default.handlebars->25->1124" ] }, { @@ -12129,7 +12204,7 @@ "ru": "Нет доступа к терминалу", "xloc": [ "default-mobile.handlebars->9->299", - "default.handlebars->25->1091" + "default.handlebars->25->1098" ] }, { @@ -12140,9 +12215,9 @@ "ja": "ツールなし(MeshCmd / Router)", "nl": "Geen Tools (MeshCmd/Router)", "pt": "Sem ferramentas (MeshCmd / Roteador)", - "ru": "Нет инструментов (MeshCmd/Маршрутизатор)", + "ru": "Нет инструментов (MeshCmd/Router)", "xloc": [ - "default.handlebars->25->1261" + "default.handlebars->25->1268" ] }, { @@ -12151,9 +12226,10 @@ "en": "No device groups in common", "es": "No hay grupos de dispositivos en común", "nl": "Geen gemeenschappelijke apparaatgroepen", + "ru": "Нет общих групп устройств", "xloc": [ - "default.handlebars->25->1294", - "default.handlebars->25->1368" + "default.handlebars->25->1301", + "default.handlebars->25->1375" ] }, { @@ -12210,7 +12286,7 @@ "pt": "Nenhum dispositivo encontrado.", "ru": "Устройства не найдены.", "xloc": [ - "default.handlebars->25->425" + "default.handlebars->25->432" ] }, { @@ -12219,8 +12295,9 @@ "en": "No devices in this device group.", "es": "No hay dispositivos en este grupo de dispositivos.", "nl": "Geen apparaten in deze apparaatgroep.", + "ru": "В группе нет устройств.", "xloc": [ - "default.handlebars->25->1148" + "default.handlebars->25->1155" ] }, { @@ -12232,7 +12309,7 @@ "ja": "このグループにデバイスはありません", "nl": "Geen apparaten in deze groep", "pt": "Nenhum dispositivo neste grupo", - "ru": "В этой группе устройств нет", + "ru": "В этой группе нет устройств", "xloc": [ "default-mobile.handlebars->9->97", "default.handlebars->25->198" @@ -12258,6 +12335,7 @@ "en": "No devices with tags found.", "es": "No se encontraron dispositivos con etiquetas.", "nl": "Geen apparaten tags gevonden.", + "ru": "Не найдено устройств с тегом.", "xloc": [ "default.handlebars->25->203" ] @@ -12268,8 +12346,9 @@ "en": "No groups found.", "es": "No se encontraron grupos.", "nl": "Geen groepen gevonden.", + "ru": "Группы не найдены.", "xloc": [ - "default.handlebars->25->1263" + "default.handlebars->25->1270" ] }, { @@ -12293,9 +12372,9 @@ "ja": "場所が見つかりません。", "nl": "Geen locatie gevonden.", "pt": "Nenhum local encontrado.", - "ru": "Местоположение на найдено.", + "ru": "Местоположение не найдено.", "xloc": [ - "default.handlebars->25->427" + "default.handlebars->25->434" ] }, { @@ -12321,7 +12400,7 @@ "pt": "Não existe outro grupo de dispositivos do mesmo tipo.", "ru": "Других групп устройств такого же типа не существует.", "xloc": [ - "default.handlebars->25->560" + "default.handlebars->25->567" ] }, { @@ -12346,7 +12425,7 @@ "pt": "Sem direitos de servidor", "ru": "Нет серверных прав", "xloc": [ - "default.handlebars->25->1311" + "default.handlebars->25->1318" ] }, { @@ -12355,8 +12434,9 @@ "en": "No user group memberships", "es": "No hay elmentos en el grupo de usuarios", "nl": "Geen gebruikersgroep lidmaatschap", + "ru": "Нет членства в группах пользователей", "xloc": [ - "default.handlebars->25->1374" + "default.handlebars->25->1381" ] }, { @@ -12369,7 +12449,7 @@ "pt": "Usuários não encontrados.", "ru": "Пользователи не найдены.", "xloc": [ - "default.handlebars->25->1204" + "default.handlebars->25->1211" ] }, { @@ -12382,7 +12462,7 @@ "pt": "NodeID", "ru": "NodeID", "xloc": [ - "player.htm->3->10" + "player.handlebars->3->10" ] }, { @@ -12419,22 +12499,22 @@ "default-mobile.handlebars->9->75", "default-mobile.handlebars->9->93", "default-mobile.handlebars->9->95", - "default.handlebars->25->1157", - "default.handlebars->25->1272", - "default.handlebars->25->1330", - "default.handlebars->25->1334", + "default.handlebars->25->1000", + "default.handlebars->25->1005", + "default.handlebars->25->1164", + "default.handlebars->25->1279", + "default.handlebars->25->1337", + "default.handlebars->25->1341", "default.handlebars->25->166", "default.handlebars->25->181", "default.handlebars->25->182", - "default.handlebars->25->432", - "default.handlebars->25->440", - "default.handlebars->25->442", - "default.handlebars->25->486", + "default.handlebars->25->439", + "default.handlebars->25->447", + "default.handlebars->25->449", + "default.handlebars->25->493", "default.handlebars->25->63", - "default.handlebars->25->977", - "default.handlebars->25->981", - "default.handlebars->25->993", - "default.handlebars->25->998", + "default.handlebars->25->984", + "default.handlebars->25->988", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] }, @@ -12449,7 +12529,7 @@ "pt": "Velocidade normal", "ru": "Нормальная скорость", "xloc": [ - "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->5" + "player.handlebars->p11->deskarea0->deskarea4->3->PlaySpeed->5" ] }, { @@ -12462,7 +12542,7 @@ "pt": "norueguês", "ru": "Норвежский", "xloc": [ - "default.handlebars->25->836" + "default.handlebars->25->843" ] }, { @@ -12475,7 +12555,7 @@ "pt": "Norueguês (Bokmal)", "ru": "Норвежский (Букмол)", "xloc": [ - "default.handlebars->25->837" + "default.handlebars->25->844" ] }, { @@ -12488,7 +12568,7 @@ "pt": "Norueguês (Nynorsk)", "ru": "Норвежский (Нюнорск)", "xloc": [ - "default.handlebars->25->838" + "default.handlebars->25->845" ] }, { @@ -12501,7 +12581,7 @@ "ru": "Не активированно (In)", "xloc": [ "default-mobile.handlebars->9->176", - "default.handlebars->25->447" + "default.handlebars->25->454" ] }, { @@ -12514,7 +12594,7 @@ "ru": "Не активированно (Pre)", "xloc": [ "default-mobile.handlebars->9->175", - "default.handlebars->25->446" + "default.handlebars->25->453" ] }, { @@ -12523,9 +12603,10 @@ "en": "Not Connected", "es": "No conectado", "nl": "Niet verbonden", + "ru": "Не подключен", "xloc": [ - "default.handlebars->25->1137", - "default.handlebars->25->1143" + "default.handlebars->25->1144", + "default.handlebars->25->1150" ] }, { @@ -12538,7 +12619,7 @@ "pt": "Não configurado", "ru": "Не задано", "xloc": [ - "default.handlebars->25->1316" + "default.handlebars->25->1323" ] }, { @@ -12550,12 +12631,12 @@ "ja": "ノート", "nl": "Notities", "pt": "Notas", - "ru": "Заметки", + "ru": "Примечания", "xloc": [ - "default.handlebars->25->1006", - "default.handlebars->25->1341", - "default.handlebars->25->489", - "default.handlebars->25->524" + "default.handlebars->25->1013", + "default.handlebars->25->1348", + "default.handlebars->25->496", + "default.handlebars->25->531" ] }, { @@ -12580,8 +12661,8 @@ "pt": "Configurações de notificação", "ru": "Настройки уведомлений", "xloc": [ - "default.handlebars->25->1136", - "default.handlebars->25->923", + "default.handlebars->25->1143", + "default.handlebars->25->930", "default.handlebars->container->column_l->p2->p2AccountActions->3->8" ] }, @@ -12591,8 +12672,9 @@ "en": "Notification settings must also be turned on in account settings.", "es": "La configuración de notificaciones también debe estar activada en la configuración de la cuenta.", "nl": "Meldingsinstellingen moeten ook worden ingeschakeld in accountinstellingen.", + "ru": "Уведомления также должны быть включены в настройках учетной записи.", "xloc": [ - "default.handlebars->25->1132" + "default.handlebars->25->1139" ] }, { @@ -12603,9 +12685,9 @@ "ja": "通知音。", "nl": "Meldingsgeluid.", "pt": "Som de notificação.", - "ru": "Звук уведомления.", + "ru": "Звук уведомления", "xloc": [ - "default.handlebars->25->918" + "default.handlebars->25->925" ] }, { @@ -12618,7 +12700,7 @@ "pt": "Notificações", "ru": "Уведомления", "xloc": [ - "default.handlebars->25->999" + "default.handlebars->25->1006" ] }, { @@ -12631,7 +12713,7 @@ "pt": "Notificar", "ru": "Уведомить", "xloc": [ - "default.handlebars->25->1343" + "default.handlebars->25->1350" ] }, { @@ -12645,9 +12727,9 @@ "pt": "Notificar usuário", "ru": "Уведомить пользователя", "xloc": [ - "default.handlebars->25->1063", - "default.handlebars->25->1067", - "default.handlebars->25->1070" + "default.handlebars->25->1070", + "default.handlebars->25->1074", + "default.handlebars->25->1077" ] }, { @@ -12660,7 +12742,7 @@ "pt": "Notificar {0}", "ru": "Уведомить {0}", "xloc": [ - "default.handlebars->25->1216" + "default.handlebars->25->1223" ] }, { @@ -12675,12 +12757,12 @@ "xloc": [ "default-mobile.handlebars->9->42", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->25->472", - "default.handlebars->25->965", + "default.handlebars->25->479", + "default.handlebars->25->972", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", - "player.htm->p11->dialog->idx_dlgButtonBar", + "player.handlebars->p11->dialog->idx_dlgButtonBar", "xterm.handlebars->p11->dialog->idx_dlgButtonBar" ] }, @@ -12693,7 +12775,7 @@ "ja": "OS名", "nl": "Besturingssysteem naam", "pt": "Nome do SO", - "ru": "Имя ОС", + "ru": "настоящее имя", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->7->1" ] @@ -12707,7 +12789,7 @@ "pt": "Occitânico", "ru": "Окситанский", "xloc": [ - "default.handlebars->25->839" + "default.handlebars->25->846" ] }, { @@ -12721,7 +12803,7 @@ "pt": "Ocorreu em {0}", "ru": "Произошло в {0}", "xloc": [ - "default.handlebars->25->1385" + "default.handlebars->25->1392" ] }, { @@ -12735,7 +12817,7 @@ "pt": "Usuários offline", "ru": "Оффлайн пользователи", "xloc": [ - "default.handlebars->25->1201" + "default.handlebars->25->1208" ] }, { @@ -12750,7 +12832,7 @@ "ru": "Старый пароль:", "xloc": [ "default-mobile.handlebars->9->44", - "default.handlebars->25->935" + "default.handlebars->25->942" ] }, { @@ -12778,7 +12860,7 @@ "pt": "Usuários Online", "ru": "Онлайн пользователи", "xloc": [ - "default.handlebars->25->1200" + "default.handlebars->25->1207" ] }, { @@ -12789,10 +12871,10 @@ "ja": "編集できるのは200k未満のファイルのみです。", "nl": "Alleen bestanden kleiner dan 200k kunnen worden bewerkt.", "pt": "Somente arquivos com menos de 200k podem ser editados.", - "ru": "Только файлы размером меньше 200к могут быть редактированны", + "ru": "Редактировать файлы можно только размером менее 200КБ.", "xloc": [ "default-mobile.handlebars->9->255", - "default.handlebars->25->656" + "default.handlebars->25->663" ] }, { @@ -12805,8 +12887,8 @@ "pt": "Abrir arquivo...", "ru": "Открыть файл...", "xloc": [ - "player.htm->3->19", - "player.htm->p11->deskarea0->deskarea1->3" + "player.handlebars->3->19", + "player.handlebars->p11->deskarea0->deskarea1->3" ] }, { @@ -12819,14 +12901,15 @@ "pt": "Abrir página no dispositivo", "ru": "Открыть страницу на устройстве", "xloc": [ - "default.handlebars->25->526" + "default.handlebars->25->533" ] }, { "en": "Open XTerm terminal", "nl": "Open XTerm terminal", + "ru": "Открыть терминал XTerm", "xloc": [ - "default.handlebars->25->503" + "default.handlebars->25->510" ] }, { @@ -12850,7 +12933,7 @@ "ja": "このコンピューターへのチャットウィンドウを開く", "nl": "Open chatvenster op deze computer", "pt": "Abra a janela de bate-papo neste computador", - "ru": "Открыть окно чата к этому компьютеру", + "ru": "Открыть окно чата на этом компьютере", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" ] @@ -12864,12 +12947,12 @@ "ja": "オペレーティング・システム", "nl": "Besturingssysteem", "pt": "Sistema operacional", - "ru": "Операционная Система", + "ru": "Операционная система", "xloc": [ "default.handlebars->25->285", "default.handlebars->25->314", - "default.handlebars->25->469", - "default.handlebars->25->577", + "default.handlebars->25->476", + "default.handlebars->25->584", "default.handlebars->25->79" ] }, @@ -12886,7 +12969,7 @@ "xloc": [ "default-mobile.handlebars->9->210", "default.handlebars->25->386", - "default.handlebars->25->535" + "default.handlebars->25->542" ] }, { @@ -12912,7 +12995,7 @@ "pt": "Oriya", "ru": "Ория", "xloc": [ - "default.handlebars->25->840" + "default.handlebars->25->847" ] }, { @@ -12924,7 +13007,7 @@ "pt": "Oromo", "ru": "Оромо", "xloc": [ - "default.handlebars->25->841" + "default.handlebars->25->848" ] }, { @@ -12966,7 +13049,7 @@ "pt": "Desatualizado", "ru": "Устаревший", "xloc": [ - "default.handlebars->25->471" + "default.handlebars->25->478" ] }, { @@ -12979,7 +13062,7 @@ "pt": "Processo próprio", "ru": "Собственный процесс", "xloc": [ - "default.handlebars->25->618" + "default.handlebars->25->625" ] }, { @@ -12993,7 +13076,7 @@ "ru": "PID", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", - "default.handlebars->25->614", + "default.handlebars->25->621", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -13006,7 +13089,7 @@ "ja": "品番", "nl": "Onderdeel nummer", "pt": "Número Parcial", - "ru": "Номер детайли", + "ru": "Part Number", "xloc": [ "default.handlebars->25->78" ] @@ -13022,7 +13105,7 @@ "pt": "Parcial", "ru": "Частично", "xloc": [ - "default.handlebars->25->1215" + "default.handlebars->25->1222" ] }, { @@ -13031,10 +13114,11 @@ "en": "Partial Device Group Rights", "es": "Derechos parciales de grupo de dispositivos", "nl": "Gedeeltelijke apparaatgroep rechten", + "ru": "Частичные права на группу устройств", "xloc": [ - "default.handlebars->25->1023", - "default.handlebars->25->1288", - "default.handlebars->25->1362" + "default.handlebars->25->1030", + "default.handlebars->25->1295", + "default.handlebars->25->1369" ] }, { @@ -13045,11 +13129,11 @@ "ja": "部分的権利", "nl": "Gedeeltelijke rechten", "pt": "Direitos parciais", - "ru": "Частичные Права", + "ru": "Частичные права", "xloc": [ "default-mobile.handlebars->9->282", "default-mobile.handlebars->9->63", - "default.handlebars->25->960" + "default.handlebars->25->967" ] }, { @@ -13062,7 +13146,7 @@ "pt": "Direitos parciais", "ru": "Частичные права", "xloc": [ - "default.handlebars->25->1314" + "default.handlebars->25->1321" ] }, { @@ -13073,7 +13157,7 @@ "ja": "ヒントを渡す:", "nl": "wachtwoord hint:", "pt": "Dica de passe:", - "ru": "Подсказка пароля", + "ru": "Подсказка пароля:", "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->createPanelHint->1" ] @@ -13090,15 +13174,15 @@ "ru": "Пароль", "xloc": [ "default-mobile.handlebars->9->213", - "default.handlebars->25->1239", - "default.handlebars->25->1240", - "default.handlebars->25->1326", - "default.handlebars->25->1328", - "default.handlebars->25->1352", - "default.handlebars->25->1353", + "default.handlebars->25->1246", + "default.handlebars->25->1247", + "default.handlebars->25->1333", + "default.handlebars->25->1335", + "default.handlebars->25->1359", + "default.handlebars->25->1360", "default.handlebars->25->243", "default.handlebars->25->272", - "default.handlebars->25->541" + "default.handlebars->25->548" ] }, { @@ -13109,7 +13193,7 @@ "ja": "パスワードのヒント", "nl": "wachtwoord hint", "pt": "Dica de Senha", - "ru": "Подсказка Пароля", + "ru": "Подсказка пароля", "xloc": [ "login-mobile.handlebars->5->19", "login.handlebars->5->19" @@ -13123,7 +13207,7 @@ "ja": "パスワードのヒント:", "nl": "wachtwoord hint:", "pt": "Dica de senha", - "ru": "Подсказка Пароля:", + "ru": "Подсказка пароля:", "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->resetpasswordpanelHint->rnuHint", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->createPanelHint->nuHint", @@ -13155,7 +13239,7 @@ "fr": "Changement de mot de passe demandé.", "ja": "パスワードの変更が要求されました。", "nl": "Wachtwoordwijziging aangevraagd.", - "ru": "Заявлена/требуется смена пароля.", + "ru": "Требуется смена пароля.", "xloc": [ "login-mobile.handlebars->5->15", "login.handlebars->5->15" @@ -13171,7 +13255,7 @@ "pt": "Dica de senha", "ru": "Подсказка пароля", "xloc": [ - "default.handlebars->25->1354" + "default.handlebars->25->1361" ] }, { @@ -13185,7 +13269,7 @@ "ru": "Подсказка пароля:", "xloc": [ "default-mobile.handlebars->9->47", - "default.handlebars->25->938" + "default.handlebars->25->945" ] }, { @@ -13198,7 +13282,7 @@ "pt": "Senha incorreta", "ru": "Пароль не совпадает", "xloc": [ - "default.handlebars->25->1040" + "default.handlebars->25->1047" ] }, { @@ -13226,8 +13310,8 @@ "pt": "Senha*", "ru": "Пароль*", "xloc": [ - "default.handlebars->25->1038", - "default.handlebars->25->1039" + "default.handlebars->25->1045", + "default.handlebars->25->1046" ] }, { @@ -13243,8 +13327,8 @@ "xloc": [ "default-mobile.handlebars->9->39", "default-mobile.handlebars->9->40", - "default.handlebars->25->930", - "default.handlebars->25->931", + "default.handlebars->25->937", + "default.handlebars->25->938", "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", @@ -13272,9 +13356,9 @@ "default-mobile.handlebars->9->87", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->25->1178", - "default.handlebars->25->639", - "default.handlebars->25->661", + "default.handlebars->25->1185", + "default.handlebars->25->646", + "default.handlebars->25->668", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" @@ -13305,7 +13389,7 @@ "pt": "Pausa", "ru": "Пауза", "xloc": [ - "player.htm->p11->deskarea0->deskarea4->3" + "player.handlebars->p11->deskarea0->deskarea4->3" ] }, { @@ -13319,7 +13403,7 @@ "pt": "Executar ação do agente", "ru": "Произвести действие агента", "xloc": [ - "default.handlebars->25->692" + "default.handlebars->25->699" ] }, { @@ -13345,7 +13429,7 @@ "pt": "Execute a ativação do modo de controle de administração Intel AMT (ACM).", "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).", "xloc": [ - "default.handlebars->25->1016", + "default.handlebars->25->1023", "default.handlebars->25->231" ] }, @@ -13372,7 +13456,7 @@ "pt": "Execute a ativação do modo de controle do cliente Intel AMT (CCM).", "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).", "xloc": [ - "default.handlebars->25->1014", + "default.handlebars->25->1021", "default.handlebars->25->229" ] }, @@ -13387,7 +13471,7 @@ "pt": "Execute ações de energia no dispositivo", "ru": "Управление питанием устройства", "xloc": [ - "default.handlebars->25->488", + "default.handlebars->25->495", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -13405,8 +13489,8 @@ "ru": "Права", "xloc": [ "default-mobile.handlebars->9->329", - "default.handlebars->25->1127", - "default.handlebars->25->1199" + "default.handlebars->25->1134", + "default.handlebars->25->1206" ] }, { @@ -13419,13 +13503,14 @@ "pt": "Persa / Irã", "ru": "Персидский/Иран", "xloc": [ - "default.handlebars->25->842" + "default.handlebars->25->849" ] }, { "en": "Place link to this device in the clipboard", "es": "Coloque el enlace a este dispositivo en el portapapeles", - "nl": "Plaats de link naar dit apparaat op het klembord" + "nl": "Plaats de link naar dit apparaat op het klembord", + "ru": "Скопировать ссылку на это устройство в буфер обмена" }, { "cs": "Umístit uzel sem", @@ -13437,7 +13522,7 @@ "pt": "Coloque o nó aqui", "ru": "Поместить узел сюда", "xloc": [ - "default.handlebars->25->420" + "default.handlebars->25->427" ] }, { @@ -13451,7 +13536,7 @@ "pt": "Play", "ru": "Воспроизвести", "xloc": [ - "player.htm->p11->deskarea0->deskarea4->3" + "player.handlebars->p11->deskarea0->deskarea4->3" ] }, { @@ -13505,7 +13590,7 @@ "ru": "Подождите пару минут для получения подтверждения.", "xloc": [ "default-mobile.handlebars->9->35", - "default.handlebars->25->925" + "default.handlebars->25->932" ] }, { @@ -13517,7 +13602,7 @@ "nl": "Plugin Actie", "ru": "Действие плагина", "xloc": [ - "default.handlebars->25->1454", + "default.handlebars->25->1461", "default.handlebars->25->177" ] }, @@ -13607,7 +13692,7 @@ "ru": "Политика", "xloc": [ "default-mobile.handlebars->9->62", - "default.handlebars->25->959" + "default.handlebars->25->966" ] }, { @@ -13620,7 +13705,7 @@ "pt": "polonês", "ru": "Польский", "xloc": [ - "default.handlebars->25->843" + "default.handlebars->25->850" ] }, { @@ -13633,7 +13718,7 @@ "pt": "Português", "ru": "Португальский", "xloc": [ - "default.handlebars->25->844" + "default.handlebars->25->851" ] }, { @@ -13646,7 +13731,7 @@ "pt": "Português (Brasil)", "ru": "Португальский (Бразилия)", "xloc": [ - "default.handlebars->25->845" + "default.handlebars->25->852" ] }, { @@ -13657,7 +13742,7 @@ "ja": "力", "nl": "Power", "pt": "Ligar", - "ru": "Состоянию питания", + "ru": "Питание", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->3" ] @@ -13670,7 +13755,7 @@ "ja": "電源アクション...", "nl": "Power Actie's...", "pt": "Ações de energia (Ligar/Desligar)", - "ru": "Десйтвия питания...", + "ru": "Управление питанием...", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" @@ -13682,8 +13767,9 @@ "en": "Power States", "es": "Estados de Encendido", "nl": "Power Status", + "ru": "Состояния питания", "xloc": [ - "default.handlebars->25->1141", + "default.handlebars->25->1148", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -13696,11 +13782,11 @@ "ja": "電源を切る", "nl": "Uitzetten", "pt": "Desligar", - "ru": "Выключение", + "ru": "Выключить", "xloc": [ "default-mobile.handlebars->9->105", "default-mobile.handlebars->9->209", - "default.handlebars->25->532", + "default.handlebars->25->539", "default.handlebars->25->6" ] }, @@ -13763,8 +13849,8 @@ "pt": "Pressione [espaço] para reproduzir / pausar.", "ru": "Нажмите [пробел] для проигрывания/паузы.", "xloc": [ - "player.htm->3->16", - "player.htm->3->17" + "player.handlebars->3->16", + "player.handlebars->3->17" ] }, { @@ -13789,10 +13875,10 @@ "ja": "プロセス制御", "nl": "Proces controle", "pt": "Controle do processo", - "ru": "Нажмите Control", + "ru": "Управление процессами", "xloc": [ "default-mobile.handlebars->9->234", - "default.handlebars->25->626" + "default.handlebars->25->633" ] }, { @@ -13821,9 +13907,9 @@ "pt": "Solicitar consentimento do usuário", "ru": "Запрос согласия пользователя", "xloc": [ - "default.handlebars->25->1064", - "default.handlebars->25->1068", - "default.handlebars->25->1071" + "default.handlebars->25->1071", + "default.handlebars->25->1075", + "default.handlebars->25->1078" ] }, { @@ -13837,7 +13923,7 @@ "pt": "Protocolo", "ru": "Протокол", "xloc": [ - "player.htm->3->15" + "player.handlebars->3->15" ] }, { @@ -13852,7 +13938,7 @@ "ru": "Публичная ссылка", "xloc": [ "default-mobile.handlebars->9->74", - "default.handlebars->25->1164" + "default.handlebars->25->1171" ] }, { @@ -13864,7 +13950,7 @@ "pt": "Punjabi", "ru": "Пенджаби", "xloc": [ - "default.handlebars->25->846" + "default.handlebars->25->853" ] }, { @@ -13876,7 +13962,7 @@ "pt": "Punjabi (Índia)", "ru": "Пенджаби (Индия)", "xloc": [ - "default.handlebars->25->847" + "default.handlebars->25->854" ] }, { @@ -13888,7 +13974,7 @@ "pt": "Punjabi (Paquistão)", "ru": "Пенджаби (Пакистан)", "xloc": [ - "default.handlebars->25->848" + "default.handlebars->25->855" ] }, { @@ -13901,7 +13987,7 @@ "pt": "Putty", "ru": "Putty", "xloc": [ - "default.handlebars->25->508" + "default.handlebars->25->515" ] }, { @@ -13928,7 +14014,7 @@ "pt": "Quechua", "ru": "Кечуа", "xloc": [ - "default.handlebars->25->849" + "default.handlebars->25->856" ] }, { @@ -13940,7 +14026,7 @@ "ja": "RAW16、非常に遅い", "nl": "RAW16, Zeer langzaam", "pt": "RAW16, muito lento", - "ru": "RAW16, Очень медленно", + "ru": "RAW16, очень медленно", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->7", "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->7" @@ -13955,7 +14041,7 @@ "ja": "RAW8、遅い", "nl": "RAW8, langzaam", "pt": "RAW8, lento", - "ru": "RAW8, Медленно", + "ru": "RAW8, медленно", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->5", "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->5" @@ -13970,28 +14056,31 @@ "pt": "RDP", "ru": "RDP", "xloc": [ - "default.handlebars->25->506" + "default.handlebars->25->513" ] }, { "en": "RDP Connection", "nl": "RDP verbinding", + "ru": "Подключение RDP", "xloc": [ - "default.handlebars->25->406" + "default.handlebars->25->413" ] }, { "en": "RDP remote connection port:", "nl": "RDP externe verbindings poort:", + "ru": "Порт RDP:", "xloc": [ - "default.handlebars->25->405" + "default.handlebars->25->412" ] }, { "en": "RDP2", "nl": "RDP2", + "ru": "RDP2", "xloc": [ - "default.handlebars->25->407" + "default.handlebars->25->414" ] }, { @@ -14003,7 +14092,7 @@ "ja": "RLE16、推奨", "nl": "RLE16, Aanbevolen", "pt": "RLE16, Recomendado", - "ru": "RLE16, Рекомендуется", + "ru": "RLE16, рекомендуется", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->3", "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->3" @@ -14018,7 +14107,7 @@ "ja": "RLE8、最速", "nl": "RLE8, snelste", "pt": "RLE8, mais rápido", - "ru": "RLE8, Самый быстрый", + "ru": "RLE8, самая быстрая", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->1", "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->1" @@ -14030,8 +14119,9 @@ "en": "RSS", "es": "RSS", "nl": "RSS", + "ru": "RSS", "xloc": [ - "default.handlebars->25->1429" + "default.handlebars->25->1436" ] }, { @@ -14043,9 +14133,9 @@ "ja": "パスワードをランダム化します。", "nl": "Randomiseer het wachtwoord.", "pt": "Randomize a senha.", - "ru": "Случайный пароль", + "ru": "Случайный пароль.", "xloc": [ - "default.handlebars->25->1241" + "default.handlebars->25->1248" ] }, { @@ -14069,9 +14159,9 @@ "ja": "インテルを再アクティブ化® AMT", "nl": "Heractiveer Intel® AMT", "pt": "Reativar Intel®AMT", - "ru": "Возобновить Intel® AMT", + "ru": "Реактивировать Intel® AMT", "xloc": [ - "default.handlebars->25->1042" + "default.handlebars->25->1049" ] }, { @@ -14084,7 +14174,7 @@ "pt": "Realms", "ru": "Области", "xloc": [ - "default.handlebars->25->1249" + "default.handlebars->25->1256" ] }, { @@ -14100,8 +14190,8 @@ "xloc": [ "default-mobile.handlebars->9->248", "default-mobile.handlebars->9->80", - "default.handlebars->25->1170", - "default.handlebars->25->649" + "default.handlebars->25->1177", + "default.handlebars->25->656" ] }, { @@ -14133,7 +14223,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->DeskToolsRefreshButton", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->25->417", + "default.handlebars->25->424", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->DeskToolsRefreshButton", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p40->3->3" @@ -14159,7 +14249,7 @@ "ja": "リレー", "nl": "Relay", "pt": "Retransmissão", - "ru": "Реле", + "ru": "Ретранслятор", "xloc": [ "default-mobile.handlebars->9->124", "default.handlebars->25->190", @@ -14172,8 +14262,9 @@ "en": "Relay Count", "es": "Contador del Rele", "nl": "Relay geteld", + "ru": "Число ретрансляций", "xloc": [ - "default.handlebars->25->1411" + "default.handlebars->25->1418" ] }, { @@ -14182,8 +14273,9 @@ "en": "Relay Errors", "es": "Errores del Relay", "nl": "Relay fouten", + "ru": "Ошибки ретранслятора", "xloc": [ - "default.handlebars->25->1404" + "default.handlebars->25->1411" ] }, { @@ -14194,10 +14286,10 @@ "ja": "中継セッション", "nl": "Relay Sessies", "pt": "Retransmissão de sessão ", - "ru": "Ретранслированные сессии", + "ru": "Сессии ретранслятора", "xloc": [ - "default.handlebars->25->1410", - "default.handlebars->25->1423" + "default.handlebars->25->1417", + "default.handlebars->25->1430" ] }, { @@ -14244,7 +14336,13 @@ "pt": "Instalação remota do agente", "ru": "Установка удаленного агента", "xloc": [ - "agentinvite.handlebars->container->column_l->1" + "agentinvite.handlebars->container->column_l->1->groupname" + ] + }, + { + "en": "Remote Agent Installation for {0}", + "xloc": [ + "agentinvite.handlebars->3->1" ] }, { @@ -14258,7 +14356,7 @@ "pt": "Área de transferência remota", "ru": "Удаленный буфер обмена", "xloc": [ - "default.handlebars->25->610" + "default.handlebars->25->617" ] }, { @@ -14274,8 +14372,8 @@ "xloc": [ "default-mobile.handlebars->9->296", "default-mobile.handlebars->9->314", - "default.handlebars->25->1088", - "default.handlebars->25->1111" + "default.handlebars->25->1095", + "default.handlebars->25->1118" ] }, { @@ -14291,7 +14389,7 @@ "xloc": [ "default-mobile.handlebars->9->229", "default.handlebars->25->222", - "default.handlebars->25->602" + "default.handlebars->25->609" ] }, { @@ -14305,7 +14403,7 @@ "pt": "Entrada remota do teclado", "ru": "Ввод с удаленной клавиатуры", "xloc": [ - "default.handlebars->25->608" + "default.handlebars->25->615" ] }, { @@ -14316,10 +14414,10 @@ "ja": "リモートメッシュユーザー", "nl": "externe Mesh gebruiker", "pt": "Usuário de malha remota", - "ru": "Удаленный Mesh Пользователь", + "ru": "Удаленный пользователь Mesh", "xloc": [ "default-mobile.handlebars->9->332", - "default.handlebars->25->1130" + "default.handlebars->25->1137" ] }, { @@ -14328,8 +14426,9 @@ "en": "Remote User", "es": "Usuario remoto", "nl": "Externe gebruiker", + "ru": "Удаленный пользователь", "xloc": [ - "default.handlebars->25->1304" + "default.handlebars->25->1311" ] }, { @@ -14340,12 +14439,12 @@ "ja": "リモートビューのみ", "nl": "Alleen extern meekijken", "pt": "Somente visualização remota", - "ru": "Только удаленный просмотр", + "ru": "Только просмотр экрана без ввода", "xloc": [ "default-mobile.handlebars->9->297", "default-mobile.handlebars->9->319", - "default.handlebars->25->1089", - "default.handlebars->25->1116" + "default.handlebars->25->1096", + "default.handlebars->25->1123" ] }, { @@ -14359,7 +14458,7 @@ "pt": "A área de transferência remota é válida por 60 segundos.", "ru": "Удаленный буфер обмена действителен в течении 60 секунд.", "xloc": [ - "default.handlebars->25->609" + "default.handlebars->25->616" ] }, { @@ -14371,7 +14470,7 @@ "ja": "リモートコンピューターの電源が入っていません。ここをクリックして電源コマンドを発行してください。", "nl": "Externe computer is niet ingeschakeld, klik hier om een stroomopdracht uit te voeren.", "pt": "O computador remoto não está ligado, clique aqui para emitir um comando de energia.", - "ru": "Удаленный компьютер не включен, нажмите сюда, чтобы выдать команду включения питания.", + "ru": "Удаленный компьютер не включен, нажмите сюда, чтобы отправить команду включения питания.", "xloc": [ "default.handlebars->container->column_l->p11->p11warning2->3", "default.handlebars->container->column_l->p12->p12warning2->3" @@ -14397,9 +14496,10 @@ "en": "Remove Device Group", "es": "Eliminar grupo de dispositivos", "nl": "Verwijder apparaatgroep", + "ru": "Удалить группу устройств.", "xloc": [ - "default.handlebars->25->1296", - "default.handlebars->25->1380" + "default.handlebars->25->1303", + "default.handlebars->25->1387" ] }, { @@ -14408,8 +14508,9 @@ "en": "Remove User", "es": "Eliminar usuario", "nl": "Verwijder gebruiker", + "ru": "Удалить пользователя", "xloc": [ - "default.handlebars->25->1376" + "default.handlebars->25->1383" ] }, { @@ -14422,7 +14523,7 @@ "pt": "Remova toda a autenticação do segundo fator.", "ru": "Удалить все двухфакторные аутентификации.", "xloc": [ - "default.handlebars->25->1357" + "default.handlebars->25->1364" ] }, { @@ -14431,8 +14532,9 @@ "en": "Remove all previous events for this userid.", "es": "Elimine todos los eventos anteriores para este ID de usuario.", "nl": "Verwijder alle eerdere gebeurtenissen voor dit gebruikers-ID.", + "ru": "Удалить все прошлые события для этого userid.", "xloc": [ - "default.handlebars->25->1243" + "default.handlebars->25->1250" ] }, { @@ -14441,8 +14543,9 @@ "en": "Remove device on disconnect", "es": "Eliminar el dispositivo al desconectar", "nl": "Verwijder apparaat bij verbreken", + "ru": "Удалить устройство при отключении", "xloc": [ - "default.handlebars->25->1073" + "default.handlebars->25->1080" ] }, { @@ -14455,7 +14558,7 @@ "pt": "Remover localização do nó", "ru": "Удалить местоположение узла", "xloc": [ - "default.handlebars->25->409" + "default.handlebars->25->416" ] }, { @@ -14467,9 +14570,9 @@ "ja": "このデバイスを削除", "nl": "Verwijder dit apparaat", "pt": "Remova este dispositivo", - "ru": "Удалить устройство", + "ru": "Удалить это устройство", "xloc": [ - "default.handlebars->25->495" + "default.handlebars->25->502" ] }, { @@ -14478,8 +14581,9 @@ "en": "Remove user group membership", "es": "Eliminar ususrio de este grupo", "nl": "Verwijder de groepslidmaatschap", + "ru": "Удалить членство пользователя в группе", "xloc": [ - "default.handlebars->25->1372" + "default.handlebars->25->1379" ] }, { @@ -14488,8 +14592,9 @@ "en": "Remove user group rights to this device group", "es": "Eliminar los derechos del grupo de usuarios a este grupo de dispositivos", "nl": "Verwijder gebruikers groepsrechten van deze apparaatgroep", + "ru": "Удалить права группы пользователей для этой группы устройств", "xloc": [ - "default.handlebars->25->1292" + "default.handlebars->25->1299" ] }, { @@ -14501,11 +14606,11 @@ "ja": "このデバイスグループのユーザー権限を削除します", "nl": "Gebruikersrechten voor deze apparaatgroep verwijderen", "pt": "Remova os direitos de usuário deste grupo de dispositivos", - "ru": "Удалить права пользователя этой группы", + "ru": "Удалить права пользователя для этой группы устройств", "xloc": [ - "default.handlebars->25->1026", - "default.handlebars->25->1283", - "default.handlebars->25->1366" + "default.handlebars->25->1033", + "default.handlebars->25->1290", + "default.handlebars->25->1373" ] }, { @@ -14523,8 +14628,8 @@ "default-mobile.handlebars->9->84", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->25->1174", - "default.handlebars->25->653", + "default.handlebars->25->1181", + "default.handlebars->25->660", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -14540,7 +14645,7 @@ "pt": "Requisitos:", "ru": "Требования: ", "xloc": [ - "default.handlebars->25->939" + "default.handlebars->25->946" ] }, { @@ -14555,8 +14660,8 @@ "ru": "Требования: {0}.", "xloc": [ "default-mobile.handlebars->9->48", - "default.handlebars->25->1246", - "default.handlebars->25->1355" + "default.handlebars->25->1253", + "default.handlebars->25->1362" ] }, { @@ -14568,9 +14673,9 @@ "ja": "ブラウザでMicrosoft ClickOnceサポートが必要です", "nl": "Vereist Microsoft ClickOnce-ondersteuning in uw browser", "pt": "Requer o suporte Microsoft ClickOnce no seu navegador", - "ru": "В вашем браузере требуется поддержка Microsoft ClickOnce", + "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере", "xloc": [ - "default.handlebars->25->505" + "default.handlebars->25->512" ] }, { @@ -14582,10 +14687,10 @@ "ja": "ブラウザでMicrosoft ClickOnceサポートが必要です。", "nl": "Vereist Microsoft ClickOnce-ondersteuning in uw browser", "pt": "Requer o suporte Microsoft ClickOnce no seu navegador.", - "ru": "В вашем браузере требуется поддержка Microsoft ClickOnce.", + "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере.", "xloc": [ - "default.handlebars->25->507", - "default.handlebars->25->509" + "default.handlebars->25->514", + "default.handlebars->25->516" ] }, { @@ -14600,7 +14705,7 @@ "ru": "Перезагрузить", "xloc": [ "default-mobile.handlebars->9->208", - "default.handlebars->25->531", + "default.handlebars->25->538", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -14613,7 +14718,7 @@ "ja": "アカウントをリセット", "nl": "Account opnieuw instellen", "pt": "Redefinir Conta", - "ru": "Сбросить Аккаунт", + "ru": "Сбросить учетную запись", "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->7->1->2->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->7->1->2->1->1" @@ -14643,7 +14748,7 @@ "ja": "アカウントをリセット", "nl": "Account opnieuw instellen", "pt": "Redefinir conta", - "ru": "Сбросить аккаунт", + "ru": "Сбросить учетную запись", "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->resetAccountDiv->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->resetAccountDiv->3" @@ -14658,7 +14763,7 @@ "ja": "デバイスをリセットする", "nl": "Herstart apparaten", "pt": "Redefinir dispositivos", - "ru": "Сбросить устройства", + "ru": "Отправить в перезагрузку", "xloc": [ "default.handlebars->25->389" ] @@ -14686,10 +14791,10 @@ "ja": "再起動", "nl": "Herstarten", "pt": "Reiniciar", - "ru": "Перезагрузка", + "ru": "Перезапуск", "xloc": [ - "default.handlebars->25->624", - "player.htm->p11->deskarea0->deskarea4->3" + "default.handlebars->25->631", + "player.handlebars->p11->deskarea0->deskarea4->3" ] }, { @@ -14703,7 +14808,7 @@ "pt": "Restaurar servidor", "ru": "Восстановить сервер", "xloc": [ - "default.handlebars->25->966" + "default.handlebars->25->973" ] }, { @@ -14728,9 +14833,9 @@ "ja": "バックアップを使用してサーバーを復元します。これにより既存のサーバーデータが削除されます。あなたが何をしているかを知っている場合にのみ、これを行ってください。", "nl": "Herstel de server met een back-up, hiermee worden de bestaande servergegevens verwijderd . Doe dit alleen als je weet wat je doet.", "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": "Восстановить сервер из резервной копии, это удалит существующие данные сервера . Продолжайте дальше, но только если вы знаете, что делаете.", + "ru": "Восстановить сервер из резервной копии, это удалит существующие данные сервера . Продолжайте дальше только если знаете, что делаете.", "xloc": [ - "default.handlebars->25->963" + "default.handlebars->25->970" ] }, { @@ -14744,7 +14849,7 @@ "pt": "Restrições", "ru": "Ограничения", "xloc": [ - "default.handlebars->25->1315" + "default.handlebars->25->1322" ] }, { @@ -14756,7 +14861,7 @@ "pt": "Rhaeto-Romanic", "ru": "Ретороманский", "xloc": [ - "default.handlebars->25->850" + "default.handlebars->25->857" ] }, { @@ -14769,7 +14874,7 @@ "pt": "Romena", "ru": "Румынский", "xloc": [ - "default.handlebars->25->851" + "default.handlebars->25->858" ] }, { @@ -14782,7 +14887,7 @@ "pt": "Romeno (Moldávia)", "ru": "Румынский (Молдавия)", "xloc": [ - "default.handlebars->25->852" + "default.handlebars->25->859" ] }, { @@ -14798,8 +14903,8 @@ "xloc": [ "default-mobile.handlebars->9->242", "default-mobile.handlebars->9->66", - "default.handlebars->25->1149", - "default.handlebars->25->643" + "default.handlebars->25->1156", + "default.handlebars->25->650" ] }, { @@ -14811,7 +14916,7 @@ "ja": "ルート証明書", "nl": "Hoofd certificaat", "pt": "Certificado raiz", - "ru": "Root/Корневой сертификат", + "ru": "Корневой сертификат", "xloc": [ "default.handlebars->25->268", "default.handlebars->25->275" @@ -14826,7 +14931,7 @@ "ja": "ルート証明書ファイル", "nl": "Hoofd certificaat bestand", "pt": "Arquivo de certificado raiz", - "ru": "Файл root/корневого сертификата", + "ru": "Файл корневого сертификата", "xloc": [ "default.handlebars->25->270", "default.handlebars->25->276" @@ -14881,10 +14986,10 @@ "ja": "ルーター", "nl": "Router", "pt": "Roteador", - "ru": "Маршрутизатор", + "ru": "Router", "xloc": [ "default.handlebars->25->209", - "default.handlebars->25->502" + "default.handlebars->25->509" ] }, { @@ -14898,7 +15003,7 @@ "pt": "Russo", "ru": "Русский", "xloc": [ - "default.handlebars->25->853" + "default.handlebars->25->860" ] }, { @@ -14912,7 +15017,7 @@ "pt": "Russo (Moldávia)", "ru": "Русский (Молдавия)", "xloc": [ - "default.handlebars->25->854" + "default.handlebars->25->861" ] }, { @@ -14938,7 +15043,7 @@ "pt": "Sami (lapão)", "ru": "Саамский", "xloc": [ - "default.handlebars->25->855" + "default.handlebars->25->862" ] }, { @@ -14949,7 +15054,7 @@ "ja": "サンプルIP範囲値
192.168.0.100
192.168.1.0/24
192.167.0.1-192.168.0.100", "nl": "Voorbeeld van IP-bereikwaarden
192.168.0.100
192.168.1.0/24
192.167.0.1-192.168.0.100", "pt": "Valores de intervalo de IP de amostra
192.168.0.100
192.168.1.0/24
192.167.0.1-192.168.0.100", - "ru": "Примерные значения IP диапазона
192.168.0.100
192.168.1.0/24
192.167.0.1-192.168.0.100", + "ru": "Пример значений диапазона IP
192.168.0.100
192.168.1.0/24
192.167.0.1-192.168.0.100", "xloc": [ "default.handlebars->25->163" ] @@ -14963,7 +15068,7 @@ "pt": "Sango", "ru": "Санго", "xloc": [ - "default.handlebars->25->856" + "default.handlebars->25->863" ] }, { @@ -14975,7 +15080,7 @@ "pt": "Sanskrit", "ru": "Санскритский", "xloc": [ - "default.handlebars->25->857" + "default.handlebars->25->864" ] }, { @@ -14987,7 +15092,7 @@ "pt": "Sardinian", "ru": "Сардинский", "xloc": [ - "default.handlebars->25->858" + "default.handlebars->25->865" ] }, { @@ -14999,7 +15104,7 @@ "ja": "リモートデスクトップのスクリーンショットを保存する", "nl": "Bewaar een screenshot van het externe bureaublad", "pt": "Salvar uma captura de tela da área de trabalho remota", - "ru": "Сохранить скриншот на удаленном рабочем столе", + "ru": "Сохранить снимок экрана удаленного рабочего стола", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" ] @@ -15015,7 +15120,7 @@ "pt": "Salvar localização do nó", "ru": "Сохранить расположение узла", "xloc": [ - "default.handlebars->25->410" + "default.handlebars->25->417" ] }, { @@ -15114,7 +15219,7 @@ "pt": "Procurar", "ru": "Поиск", "xloc": [ - "default.handlebars->25->423", + "default.handlebars->25->430", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -15158,9 +15263,9 @@ "ru": "Защита", "xloc": [ "default-mobile.handlebars->9->214", - "default.handlebars->25->1339", + "default.handlebars->25->1346", "default.handlebars->25->244", - "default.handlebars->25->542" + "default.handlebars->25->549" ] }, { @@ -15174,7 +15279,7 @@ "pt": "Chave de segurança", "ru": "Ключ безопасности", "xloc": [ - "default.handlebars->25->1337" + "default.handlebars->25->1344" ] }, { @@ -15188,10 +15293,10 @@ "pt": "Selecionar tudo", "ru": "Выбрать все", "xloc": [ - "default.handlebars->25->1166", + "default.handlebars->25->1173", "default.handlebars->25->382", - "default.handlebars->25->645", - "default.handlebars->25->647", + "default.handlebars->25->652", + "default.handlebars->25->654", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -15209,9 +15314,9 @@ "pt": "Selecione nenhum", "ru": "Очистить все", "xloc": [ - "default.handlebars->25->1165", + "default.handlebars->25->1172", "default.handlebars->25->381", - "default.handlebars->25->646", + "default.handlebars->25->653", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -15223,9 +15328,9 @@ "ja": "選択したデバイスの新しいグループを選択します", "nl": "Selecteer een nieuwe groep voor geselecteerde apparaten", "pt": "Selecione um novo grupo para dispositivos selecionados", - "ru": "Выберите новую группу для избранных устройств", + "ru": "Выберите новую группу для выбранных устройств", "xloc": [ - "default.handlebars->25->556" + "default.handlebars->25->563" ] }, { @@ -15238,7 +15343,7 @@ "pt": "Selecione um novo grupo para este dispositivo", "ru": "Выберите новую группу для этого устройства", "xloc": [ - "default.handlebars->25->555" + "default.handlebars->25->562" ] }, { @@ -15251,7 +15356,7 @@ "pt": "Selecione um nó para colocar", "ru": "Выберите узел для размещения", "xloc": [ - "default.handlebars->25->426" + "default.handlebars->25->433" ] }, { @@ -15262,7 +15367,7 @@ "ja": "選択したすべてのデバイスで実行する操作を選択します。アクションは適切な権限でのみ実行されます。", "nl": "Selecteer een bewerking die op alle geselecteerde apparaten moet worden uitgevoerd. Acties worden alleen uitgevoerd met de juiste rechten.", "pt": "Selecione uma operação para executar em todos os dispositivos selecionados. As ações serão executadas apenas com os direitos adequados.", - "ru": "Выберите действие для осуществления на избранных устройствах. Действия будут выполнены только при наличии соответствующих прав.", + "ru": "Выберите действие для осуществления на всех выбранных устройствах. Действия будут выполнены только при наличии соответствующих прав.", "xloc": [ "default.handlebars->25->385" ] @@ -15278,7 +15383,7 @@ "ru": "Выберите действие для осуществления на этом устройстве.", "xloc": [ "default-mobile.handlebars->9->205", - "default.handlebars->25->528" + "default.handlebars->25->535" ] }, { @@ -15307,7 +15412,7 @@ "ru": "Только собственные события", "xloc": [ "default-mobile.handlebars->9->324", - "default.handlebars->25->1121" + "default.handlebars->25->1128" ] }, { @@ -15335,10 +15440,10 @@ "ja": "MQTTメッセージを送信", "nl": "Verzend MQTT bericht", "pt": "Enviar Mensagem MQTT", - "ru": "Отправить MQTT Сообщение", + "ru": "Отправить MQTT сообщение", "xloc": [ "default.handlebars->25->383", - "default.handlebars->25->533" + "default.handlebars->25->540" ] }, { @@ -15352,7 +15457,7 @@ "pt": "Enviar mensagem MQTT", "ru": "Отправить MQTT сообщение", "xloc": [ - "default.handlebars->25->548" + "default.handlebars->25->555" ] }, { @@ -15361,8 +15466,9 @@ "en": "Send a notice to all users in this group.", "es": "Enviar un mensaje a todos los usuarios de este grupo.", "nl": "Stuur een bericht naar alle gebruikers in deze groep.", + "ru": "Отправить уведомление всем пользователям этой группы.", "xloc": [ - "default.handlebars->25->1280" + "default.handlebars->25->1287" ] }, { @@ -15376,7 +15482,7 @@ "pt": "Envie uma notificação de texto para este usuário.", "ru": "Отправить текстовое уведомление этому пользователю.", "xloc": [ - "default.handlebars->25->1217" + "default.handlebars->25->1224" ] }, { @@ -15402,9 +15508,9 @@ "ja": "招待メールを送信します。", "nl": "Verzend uitnodigingsmail.", "pt": "Enviar email de convite.", - "ru": "Отправить приглашение по эл. почте.", + "ru": "Отправить приглашение по email.", "xloc": [ - "default.handlebars->25->1245" + "default.handlebars->25->1252" ] }, { @@ -15415,7 +15521,7 @@ "ja": "選択した特殊キーを送信します", "nl": "Verzend de geselecteerde speciale sleutel", "pt": "Enviar a chave especial selecionada", - "ru": "Отправить выбранный специальный клавиш", + "ru": "Отправить выбранную специальную клавишу", "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1" ] @@ -15431,7 +15537,7 @@ "pt": "Enviar notificação do usuário", "ru": "Отправить уведомление пользователю", "xloc": [ - "default.handlebars->25->1344" + "default.handlebars->25->1351" ] }, { @@ -15443,7 +15549,7 @@ "pt": "Sérvia", "ru": "Сербский", "xloc": [ - "default.handlebars->25->861" + "default.handlebars->25->868" ] }, { @@ -15469,7 +15575,7 @@ "pt": "Backup do servidor", "ru": "Резервное копирование сервера", "xloc": [ - "default.handlebars->25->1254" + "default.handlebars->25->1261" ] }, { @@ -15481,7 +15587,7 @@ "nl": "Server Certificaat", "ru": "Сертификат сервера", "xloc": [ - "default.handlebars->25->1439" + "default.handlebars->25->1446" ] }, { @@ -15496,9 +15602,9 @@ "xloc": [ "default-mobile.handlebars->9->303", "default-mobile.handlebars->9->316", - "default.handlebars->25->1095", - "default.handlebars->25->1113", - "default.handlebars->25->1252" + "default.handlebars->25->1102", + "default.handlebars->25->1120", + "default.handlebars->25->1259" ] }, { @@ -15511,8 +15617,8 @@ "pt": "Permissões do servidor", "ru": "Разрешения сервера", "xloc": [ - "default.handlebars->25->1210", - "default.handlebars->25->1262" + "default.handlebars->25->1217", + "default.handlebars->25->1269" ] }, { @@ -15525,7 +15631,7 @@ "pt": "Cota do servidor", "ru": "Квота сервера", "xloc": [ - "default.handlebars->25->1323" + "default.handlebars->25->1330" ] }, { @@ -15538,7 +15644,7 @@ "pt": "Restauração do servidor", "ru": "Восстановление сервера", "xloc": [ - "default.handlebars->25->1255" + "default.handlebars->25->1262" ] }, { @@ -15550,9 +15656,9 @@ "ja": "サーバーの権利", "nl": "Serverrechten", "pt": "Direitos do servidor", - "ru": "Права сервера", + "ru": "Права", "xloc": [ - "default.handlebars->25->1322" + "default.handlebars->25->1329" ] }, { @@ -15561,8 +15667,9 @@ "en": "Server State", "es": "Estado del servidor", "nl": "Server Status", + "ru": "Состояние сервера", "xloc": [ - "default.handlebars->25->1390" + "default.handlebars->25->1397" ] }, { @@ -15590,7 +15697,7 @@ "pt": "Rastreamento de servidor", "ru": "Трассировка сервера", "xloc": [ - "default.handlebars->25->1448" + "default.handlebars->25->1455" ] }, { @@ -15602,9 +15709,9 @@ "ja": "サーバーの更新", "nl": "Serverupdates", "pt": "Atualizações do Servidor", - "ru": "Обновления сервера", + "ru": "Обновление сервера", "xloc": [ - "default.handlebars->25->1256" + "default.handlebars->25->1263" ] }, { @@ -15697,7 +15804,7 @@ "pt": "ServerStats.csv", "ru": "ServerStats.csv", "xloc": [ - "default.handlebars->25->1431" + "default.handlebars->25->1438" ] }, { @@ -15708,9 +15815,9 @@ "ja": "サービスの詳細", "nl": "Servicegegevens", "pt": "Detalhes do serviço", - "ru": "Детайли сервиса", + "ru": "Детали службы", "xloc": [ - "default.handlebars->25->625" + "default.handlebars->25->632" ] }, { @@ -15721,7 +15828,7 @@ "ja": "サービス", "nl": "Services", "pt": "Serviços", - "ru": "Сервисы", + "ru": "Службы", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->deskToolsTopTabService" ] @@ -15750,9 +15857,9 @@ "ja": "セッションID", "nl": "SessieID", "pt": "ID da sessão", - "ru": "ID Сессии", + "ru": "ID сессии", "xloc": [ - "player.htm->3->6" + "player.handlebars->3->6" ] }, { @@ -15867,7 +15974,7 @@ "pt": "Processo compartilhado", "ru": "Общий процесс", "xloc": [ - "default.handlebars->25->619" + "default.handlebars->25->626" ] }, { @@ -15955,7 +16062,7 @@ "ru": "Показывать только собственные события", "xloc": [ "default-mobile.handlebars->9->306", - "default.handlebars->25->1098" + "default.handlebars->25->1105" ] }, { @@ -15967,9 +16074,9 @@ "ja": "接続ツールバーを表示", "nl": "Toon verbindingswerkbalk", "pt": "Mostrar barra de ferramentas de conexão", - "ru": "Показать панель инструментов подключения", + "ru": "Показывать панель-уведомление", "xloc": [ - "default.handlebars->25->1065" + "default.handlebars->25->1072" ] }, { @@ -15982,7 +16089,7 @@ "pt": "Mostrar informações de localizações do dispositivo", "ru": "Показать информацию о расположении устройства", "xloc": [ - "default.handlebars->25->499" + "default.handlebars->25->506" ] }, { @@ -15995,7 +16102,7 @@ "pt": "Mostrar informações da interface de rede do dispositivo", "ru": "Показать информацию о сетевом интерфейсе устройства", "xloc": [ - "default.handlebars->25->497" + "default.handlebars->25->504" ] }, { @@ -16006,7 +16113,7 @@ "ja": "デバイスのオペレーティングシステム名を表示する", "nl": "Toon apparaten besturingssysteemnaam", "pt": "Mostrar o nome do sistema operacional dos dispositivos", - "ru": "Показать название операционной системы устройства", + "ru": "Фильтр по имени хоста, заданному в настройках ОС", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->7" ] @@ -16035,8 +16142,8 @@ "pt": "Modo de controle de administrador simples (ACM)", "ru": "Простой режим управления администратора (ACM)", "xloc": [ - "default.handlebars->25->1003", - "default.handlebars->25->1029" + "default.handlebars->25->1010", + "default.handlebars->25->1036" ] }, { @@ -16049,9 +16156,9 @@ "pt": "Modo de Controle de Cliente Simples (CCM)", "ru": "Простой режим управления клиента (CCM)", "xloc": [ - "default.handlebars->25->1001", - "default.handlebars->25->1032", - "default.handlebars->25->1036" + "default.handlebars->25->1008", + "default.handlebars->25->1039", + "default.handlebars->25->1043" ] }, { @@ -16064,7 +16171,7 @@ "pt": "Sindhi", "ru": "Синдхи", "xloc": [ - "default.handlebars->25->859" + "default.handlebars->25->866" ] }, { @@ -16077,7 +16184,7 @@ "pt": "Cingalês", "ru": "Сингальский", "xloc": [ - "default.handlebars->25->860" + "default.handlebars->25->867" ] }, { @@ -16100,8 +16207,9 @@ "en": "Size: 100%", "es": "Tamaño: 100%", "nl": "Grootte: 150%", + "ru": "Размер: 100%", "xloc": [ - "default.handlebars->25->673" + "default.handlebars->25->680" ] }, { @@ -16110,8 +16218,9 @@ "en": "Size: 125%", "es": "Tamaño: 125%", "nl": "Grootte: 150%", + "ru": "Размер: 125%", "xloc": [ - "default.handlebars->25->674" + "default.handlebars->25->681" ] }, { @@ -16120,8 +16229,9 @@ "en": "Size: 150%", "es": "Tamaño: 150%", "nl": "Grootte: 150%", + "ru": "Размер: 150%", "xloc": [ - "default.handlebars->25->675" + "default.handlebars->25->682" ] }, { @@ -16130,8 +16240,9 @@ "en": "Size: 200%", "es": "Tamaño: 200%", "nl": "Grootte: 200%", + "ru": "Размер: 200%", "xloc": [ - "default.handlebars->25->676" + "default.handlebars->25->683" ] }, { @@ -16143,7 +16254,7 @@ "ja": "睡眠", "nl": "Slaapstand", "pt": "Hibernar", - "ru": "Режим сна", + "ru": "Отправить в сон", "xloc": [ "default-mobile.handlebars->9->101", "default-mobile.handlebars->9->102", @@ -16152,7 +16263,7 @@ "default.handlebars->25->2", "default.handlebars->25->3", "default.handlebars->25->4", - "default.handlebars->25->530" + "default.handlebars->25->537" ] }, { @@ -16163,7 +16274,7 @@ "ja": "スリープデバイス", "nl": "Slaap apparaten", "pt": "Hibernar dispositivo", - "ru": "Устройства в режиме сна", + "ru": "Отправить в сон", "xloc": [ "default.handlebars->25->388" ] @@ -16195,7 +16306,7 @@ "pt": "Eslovaco", "ru": "Словацкий", "xloc": [ - "default.handlebars->25->862" + "default.handlebars->25->869" ] }, { @@ -16208,7 +16319,7 @@ "pt": "Esloveno", "ru": "Словенский", "xloc": [ - "default.handlebars->25->863" + "default.handlebars->25->870" ] }, { @@ -16251,7 +16362,7 @@ "pt": "Foco pequeno", "ru": "Малая фокусировка", "xloc": [ - "default.handlebars->25->605" + "default.handlebars->25->612" ] }, { @@ -16264,7 +16375,7 @@ "pt": "Agente de desconexão suave", "ru": "Програмное отключение агента", "xloc": [ - "default.handlebars->25->698" + "default.handlebars->25->705" ] }, { @@ -16304,7 +16415,7 @@ "pt": "Somani", "ru": "Сомани", "xloc": [ - "default.handlebars->25->864" + "default.handlebars->25->871" ] }, { @@ -16316,7 +16427,7 @@ "pt": "Sorbian", "ru": "Сорбский", "xloc": [ - "default.handlebars->25->865" + "default.handlebars->25->872" ] }, { @@ -16328,7 +16439,7 @@ "ja": "ソート", "nl": "Sorteer", "pt": "Classificar", - "ru": "Отсортировать по:", + "ru": "Сортировка", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort" ] @@ -16342,7 +16453,7 @@ "ja": "日付けで並び替え", "nl": "Sorteren op datum", "pt": "Classificar por data", - "ru": "Отсортировать по дате", + "ru": "Сортировать по дате", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->5", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->5", @@ -16359,7 +16470,7 @@ "ja": "名前順", "nl": "Sorteren op naam", "pt": "Classificar por nome", - "ru": "Отсортировать по имени", + "ru": "Сортировать по имени", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->1", @@ -16378,7 +16489,7 @@ "ja": "プロセスIDで並べ替え", "nl": "Sorteer op proces ID", "pt": "Classificar por ID do processo", - "ru": "Отсортировать по id процесса", + "ru": "Сортировать по id процесса", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader" ] @@ -16392,7 +16503,7 @@ "ja": "サイズで並べ替え", "nl": "Sorteren op grootte", "pt": "Classificar por tamanho", - "ru": "Отсортировать по размеру", + "ru": "Сортировать по размеру", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->3", @@ -16409,7 +16520,7 @@ "ja": "状態で並べ替え", "nl": "Sorteer op status", "pt": "Classificar por estado", - "ru": "Отсортировать по состоянию", + "ru": "Сортировать по состоянию", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader" ] @@ -16425,7 +16536,7 @@ "pt": "Espanhol", "ru": "Испанский", "xloc": [ - "default.handlebars->25->866" + "default.handlebars->25->873" ] }, { @@ -16437,7 +16548,7 @@ "pt": "Espanhol (Argentina)", "ru": "Испанский (Аргентина)", "xloc": [ - "default.handlebars->25->867" + "default.handlebars->25->874" ] }, { @@ -16449,7 +16560,7 @@ "pt": "Espanhol (Bolívia)", "ru": "Испанский (Боливия)", "xloc": [ - "default.handlebars->25->868" + "default.handlebars->25->875" ] }, { @@ -16461,7 +16572,7 @@ "pt": "Espanhol (Chile)", "ru": "Испанский (Чили)", "xloc": [ - "default.handlebars->25->869" + "default.handlebars->25->876" ] }, { @@ -16473,7 +16584,7 @@ "pt": "Espanhol (Colômbia)", "ru": "Испанский (Колумбия)", "xloc": [ - "default.handlebars->25->870" + "default.handlebars->25->877" ] }, { @@ -16485,7 +16596,7 @@ "pt": "Espanhol (Costa Rica)", "ru": "Испанский (Коста-Рика)", "xloc": [ - "default.handlebars->25->871" + "default.handlebars->25->878" ] }, { @@ -16497,7 +16608,7 @@ "pt": "Espanhol (República Dominicana)", "ru": "Испанский (Доминиканская Республика)", "xloc": [ - "default.handlebars->25->872" + "default.handlebars->25->879" ] }, { @@ -16509,7 +16620,7 @@ "pt": "Espanhol (Equador)", "ru": "Испанский (Эквадор)", "xloc": [ - "default.handlebars->25->873" + "default.handlebars->25->880" ] }, { @@ -16521,7 +16632,7 @@ "pt": "Espanhol (El Salvador)", "ru": "Испанский (Сальвадор)", "xloc": [ - "default.handlebars->25->874" + "default.handlebars->25->881" ] }, { @@ -16533,7 +16644,7 @@ "pt": "Espanhol (Guatemala)", "ru": "Испанский (Гватемала)", "xloc": [ - "default.handlebars->25->875" + "default.handlebars->25->882" ] }, { @@ -16545,7 +16656,7 @@ "pt": "Espanhol (Honduras)", "ru": "Испанский (Гондурас)", "xloc": [ - "default.handlebars->25->876" + "default.handlebars->25->883" ] }, { @@ -16558,7 +16669,7 @@ "pt": "Espanhol (México)", "ru": "Испанский (Мексика)", "xloc": [ - "default.handlebars->25->877" + "default.handlebars->25->884" ] }, { @@ -16570,7 +16681,7 @@ "pt": "Espanhol (Nicarágua)", "ru": "Испанский (Никарагуа)", "xloc": [ - "default.handlebars->25->878" + "default.handlebars->25->885" ] }, { @@ -16582,7 +16693,7 @@ "pt": "Espanhol (Panamá)", "ru": "Испанский (Панама)", "xloc": [ - "default.handlebars->25->879" + "default.handlebars->25->886" ] }, { @@ -16594,7 +16705,7 @@ "pt": "Espanhol (Paraguai)", "ru": "Испанский (Парагвай)", "xloc": [ - "default.handlebars->25->880" + "default.handlebars->25->887" ] }, { @@ -16606,7 +16717,7 @@ "pt": "Espanhol (Peru)", "ru": "Испанский (Перу)", "xloc": [ - "default.handlebars->25->881" + "default.handlebars->25->888" ] }, { @@ -16618,7 +16729,7 @@ "pt": "Espanhol (Porto Rico)", "ru": "Испанский (Пуэрто-Рико)", "xloc": [ - "default.handlebars->25->882" + "default.handlebars->25->889" ] }, { @@ -16630,7 +16741,7 @@ "pt": "Espanhol (Espanha)", "ru": "Испанский (Испания)", "xloc": [ - "default.handlebars->25->883" + "default.handlebars->25->890" ] }, { @@ -16642,7 +16753,7 @@ "pt": "Espanhol (Uruguai)", "ru": "Испанский (Уругвай)", "xloc": [ - "default.handlebars->25->884" + "default.handlebars->25->891" ] }, { @@ -16654,7 +16765,7 @@ "pt": "Espanhol (Venezuela)", "ru": "Испанский (Венесуэла)", "xloc": [ - "default.handlebars->25->885" + "default.handlebars->25->892" ] }, { @@ -16665,7 +16776,7 @@ "ja": "特別なキー", "nl": "Speciale toetsen", "pt": "Chaves especiais", - "ru": "Спациальные клавишы", + "ru": "Специальные клавиши", "xloc": [ "default-mobile.handlebars->9->230", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3" @@ -16682,7 +16793,7 @@ "pt": "Start", "ru": "Старт", "xloc": [ - "default.handlebars->25->622" + "default.handlebars->25->629" ] }, { @@ -16695,7 +16806,7 @@ "pt": "Estado", "ru": "Состояние", "xloc": [ - "default.handlebars->25->613", + "default.handlebars->25->620", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -16723,7 +16834,7 @@ "pt": "Status", "ru": "Статус", "xloc": [ - "default.handlebars->25->1350", + "default.handlebars->25->1357", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -16738,7 +16849,7 @@ "pt": "Pare", "ru": "Стоп", "xloc": [ - "default.handlebars->25->623" + "default.handlebars->25->630" ] }, { @@ -16752,7 +16863,7 @@ "ru": "Прервать процесс #{0} \\\"{1}\\\"?", "xloc": [ "default-mobile.handlebars->9->235", - "default.handlebars->25->627" + "default.handlebars->25->634" ] }, { @@ -16779,7 +16890,7 @@ "pt": "O limite de armazenamento excede", "ru": "Превышен лимит места для хранения", "xloc": [ - "default.handlebars->25->1152" + "default.handlebars->25->1159" ] }, { @@ -16792,7 +16903,7 @@ "pt": "Forte", "ru": "Надежный", "xloc": [ - "default.handlebars->25->956" + "default.handlebars->25->963" ] }, { @@ -16832,6 +16943,7 @@ "en": "Summary", "es": "Resumen", "nl": "Samenvatting", + "ru": "Резюме", "xloc": [ "default.handlebars->container->topbar->1->1->MeshSubMenuSpan->MeshSubMenu->1->0->MeshSummary" ] @@ -16842,6 +16954,7 @@ "en": "Summary -", "es": "Resumen -", "nl": "Samenvatting -", + "ru": "Резюме -", "xloc": [ "default.handlebars->container->column_l->p21->p21title->3" ] @@ -16855,7 +16968,7 @@ "pt": "Sutu", "ru": "Суту", "xloc": [ - "default.handlebars->25->886" + "default.handlebars->25->893" ] }, { @@ -16867,7 +16980,7 @@ "pt": "Suaíli", "ru": "Суахили", "xloc": [ - "default.handlebars->25->887" + "default.handlebars->25->894" ] }, { @@ -16879,7 +16992,7 @@ "pt": "Sueco", "ru": "Шведский", "xloc": [ - "default.handlebars->25->888" + "default.handlebars->25->895" ] }, { @@ -16891,7 +17004,7 @@ "pt": "Sueco (Finlândia)", "ru": "Шведский (Финляндия)", "xloc": [ - "default.handlebars->25->889" + "default.handlebars->25->896" ] }, { @@ -16903,7 +17016,7 @@ "pt": "Sueco (Suécia)", "ru": "Шведский (Швеция)", "xloc": [ - "default.handlebars->25->890" + "default.handlebars->25->897" ] }, { @@ -16912,8 +17025,9 @@ "en": "Sync server device name to hostname", "es": "Sincronizar el nombre del dispositivo del servidor con el nombre del host", "nl": "Synchroniseer serverapparaatnaam met hostnaam", + "ru": "Синхронизировать имя устройства на сервере с именем хоста", "xloc": [ - "default.handlebars->25->1074" + "default.handlebars->25->1081" ] }, { @@ -16971,7 +17085,7 @@ "ru": "TLS", "xloc": [ "default-mobile.handlebars->9->183", - "default.handlebars->25->457" + "default.handlebars->25->464" ] }, { @@ -16987,7 +17101,7 @@ "xloc": [ "default-mobile.handlebars->9->216", "default.handlebars->25->246", - "default.handlebars->25->544" + "default.handlebars->25->551" ] }, { @@ -17012,7 +17126,7 @@ "pt": "Tag1, Tag2, Tag3", "ru": "Тег1, Тег2, Тег3", "xloc": [ - "default.handlebars->25->596" + "default.handlebars->25->603" ] }, { @@ -17028,7 +17142,7 @@ "default-mobile.handlebars->9->197", "default-mobile.handlebars->9->198", "default-mobile.handlebars->9->225", - "default.handlebars->25->595", + "default.handlebars->25->602", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -17041,7 +17155,7 @@ "pt": "Tâmil", "ru": "Тамильский", "xloc": [ - "default.handlebars->25->891" + "default.handlebars->25->898" ] }, { @@ -17053,7 +17167,7 @@ "pt": "Tatar", "ru": "Татарский", "xloc": [ - "default.handlebars->25->892" + "default.handlebars->25->899" ] }, { @@ -17065,7 +17179,7 @@ "pt": "Teluga", "ru": "Телугу", "xloc": [ - "default.handlebars->25->893" + "default.handlebars->25->900" ] }, { @@ -17079,8 +17193,8 @@ "pt": "Terminal", "ru": "Терминал", "xloc": [ - "default.handlebars->25->1066", - "default.handlebars->25->413", + "default.handlebars->25->1073", + "default.handlebars->25->420", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal" ] @@ -17109,7 +17223,7 @@ "pt": "Notificação - terminal", "ru": "Терминал уведомление", "xloc": [ - "default.handlebars->25->988" + "default.handlebars->25->995" ] }, { @@ -17122,7 +17236,7 @@ "pt": "Prompt do terminal", "ru": "Запрос терминала", "xloc": [ - "default.handlebars->25->987" + "default.handlebars->25->994" ] }, { @@ -17133,7 +17247,7 @@ "ja": "利用規約とプライバシー", "nl": "Voorwaarden & Privacy", "pt": "Termos & Privacidade", - "ru": "Условия и Конфиденциальность", + "ru": "Условия и конфиденциальность", "xloc": [ "default.handlebars->container->footer->3->3", "download.handlebars->container->page_content->footer->1->1->0->3->1", @@ -17166,7 +17280,7 @@ "pt": "Thai", "ru": "Тайский", "xloc": [ - "default.handlebars->25->894" + "default.handlebars->25->901" ] }, { @@ -17193,7 +17307,7 @@ "pt": "O nome do grupo de dispositivos ao qual este computador pertence", "ru": "Имя группы устройств, к которой принадлежит этот компьютер", "xloc": [ - "default.handlebars->25->437" + "default.handlebars->25->444" ] }, { @@ -17206,7 +17320,7 @@ "pt": "O nome do grupo de dispositivos ao qual este computador pertence.", "ru": "Имя группы устройств, к которой принадлежит этот компьютер.", "xloc": [ - "default.handlebars->25->435" + "default.handlebars->25->442" ] }, { @@ -17220,7 +17334,7 @@ "pt": "Atualmente não há notificações", "ru": "На данный момент уведомлений нет", "xloc": [ - "default.handlebars->25->1384" + "default.handlebars->25->1391" ] }, { @@ -17261,7 +17375,7 @@ "ru": "Эта учетная запись не имеет прав для создания новой группы устройств.", "xloc": [ "default-mobile.handlebars->9->51", - "default.handlebars->25->942" + "default.handlebars->25->949" ] }, { @@ -17274,7 +17388,7 @@ "pt": "Esta não é uma política segura, pois os agentes estarão executando a ativação.", "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.", "xloc": [ - "default.handlebars->25->1054" + "default.handlebars->25->1061" ] }, { @@ -17301,7 +17415,7 @@ "pt": "Esta política não afetará os dispositivos com Intel® AMT no modo ACM.", "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.", "xloc": [ - "default.handlebars->25->1053" + "default.handlebars->25->1060" ] }, { @@ -17340,7 +17454,7 @@ "pt": "Isso adicionará uma entrada ao log de eventos deste dispositivo.", "ru": "Это добавит запись в журнал событий данного устройства.", "xloc": [ - "default.handlebars->25->523" + "default.handlebars->25->530" ] }, { @@ -17352,7 +17466,7 @@ "nl": "Hiermee worden de apparaten niet van de server verwijderd, maar kunnen de apparaten geen verbinding meer maken met de server. Alle externe toegang tot de apparaten gaat verloren. De apparaten moeten zijn aangesloten om deze opdracht te laten werken.", "ru": "Это не приведет к удалению устройств с сервера, но они больше не смогут подключаться к серверу. Весь удаленный доступ к устройствам будет потерян. Устройства должны быть подключены, чтобы эта команда работала.", "xloc": [ - "default.handlebars->25->551" + "default.handlebars->25->558" ] }, { @@ -17364,7 +17478,7 @@ "nl": "Hiermee wordt dit apparaat niet van de server verwijderd, maar kan het apparaat geen verbinding meer maken met de server. Alle externe toegang tot het apparaat gaat verloren. Het apparaat moet verbonden zijn om dit commando te laten werken.", "ru": "Это не приведет к удалению этого устройства с сервера, но оно больше не сможет подключаться к серверу. Весь удаленный доступ к устройству будет потерян. Для работы этой команды устройство должно быть подключено.", "xloc": [ - "default.handlebars->25->552" + "default.handlebars->25->559" ] }, { @@ -17377,7 +17491,7 @@ "pt": "Tigre", "ru": "Тигровый", "xloc": [ - "default.handlebars->25->895" + "default.handlebars->25->902" ] }, { @@ -17391,7 +17505,7 @@ "pt": "Tempo", "ru": "Время", "xloc": [ - "player.htm->3->1" + "player.handlebars->3->1" ] }, { @@ -17402,7 +17516,7 @@ "ja": "{0}にコンピューターを追加するには、次のコマンドを実行します。ルート資格情報が必要になります。", "nl": "Voer de volgende opdracht uit om een computer toe te voegen aan {0}. Root gegevens zijn nodig.", "pt": "Para adicionar um computador a {0}, execute o seguinte comando.Serão necessárias credenciais raiz.", - "ru": "Чтобы добавить компьютер в {0}, введите следующую команду. Root учетные данные будут необходимы.", + "ru": "Чтобы добавить компьютер в группу \\\"{0}\\\", выполните следующую команду. Потребуются права root.", "xloc": [ "default.handlebars->25->333" ] @@ -17428,7 +17542,7 @@ "ja": "新しいIntel®を追加するにはAMTデバイスからCIRAを使用したデバイスグループ\\\"{0}\\\"に、Intel AMT内で信頼されたルートとして次の証明書をロード", "nl": "Om een nieuw Intel® AMT-apparaat toe te voegen aan apparaatgroep \\\"{0}\\\" met CIRA, laadt u het volgende certificaat als vertrouwde root in Intel AMT", "pt": "Para adicionar um novo Intel® Dispositivo AMT para grupo de dispositivos \\\"{0}\\\" com CIRA, carregue o seguinte certificado como raiz confiável no Intel AMT", - "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующий сертификат в качестве доверенного корня в Intel AMT", + "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующий сертификат в качестве доверенного в Intel AMT", "xloc": [ "default.handlebars->25->265" ] @@ -17441,7 +17555,7 @@ "ja": "新しいIntel®を追加するにはCIRAを使用してデバイスグループ\\\"{0}\\\"へのAMTデバイス、Intel AMT内の信頼されたルートとして次の証明書を読み込み、次の共通名を持つクライアント証明書を使用して認証し、次のサーバーに接続します。", "nl": "Om een nieuw Intel® AMT-apparaat toe te voegen aan apparaatgroep \\\"{0}\\\" met CIRA, laadt u het volgende certificaat als vertrouwde root in Intel AMT, verifieert u met een clientcertificaat met de volgende gemeenschappelijke naam en maakt u verbinding met de volgende server.", "pt": "Para adicionar um novo Intel® Dispositivo AMT para grupo de dispositivos \\\"{0}\\\" com CIRA, carregue o seguinte certificado como raiz confiável no Intel AMT, autentique usando um certificado de cliente com o seguinte nome comum e conecte-se ao servidor a seguir.", - "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующий сертификат в качестве доверенного корня в Intel AMT, выполните аутентификацию с использованием сертификата клиента со следующим общим именем и подключитесь к серверу.", + "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующий сертификат в качестве доверенного в Intel AMT, выполните аутентификацию с использованием сертификата клиента со следующим общим именем и подключитесь к серверу.", "xloc": [ "default.handlebars->25->274" ] @@ -17454,7 +17568,7 @@ "ja": "デバイスグループ\\\"{0}\\\"に新しいコンピューターを追加するには、メッシュエージェントをダウンロードし、管理するコンピューターにインストールします。このエージェントには、サーバーとデバイスグループの情報が埋め込まれています。", "nl": "Als u een nieuwe computer aan apparaatgroep \\\"{0}\\\" wilt toevoegen, downloadt u de mesh-agent en installeert u deze op de te beheren computer. Deze agent heeft server- en apparaatgroepinformatie erin ingebed.", "pt": "Para adicionar um novo computador ao grupo de dispositivos \\\"{0}\\\", faça o download do agente de malha e instale-o no computador para gerenciar. Este agente possui informações de servidor e grupo de dispositivos incorporadas.", - "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Aгент и установите его для управления этим компьютером. В этот агент встроена информация о текищем сервере и группе устройств.", + "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Agent и установите его для управления этим компьютером. В этот агент встроена информация о текущем сервере и группе устройств.", "xloc": [ "default.handlebars->25->324" ] @@ -17467,7 +17581,7 @@ "ja": "デバイスグループ\\\"{0}\\\"に新しいコンピューターを追加するには、メッシュエージェントをダウンロードし、管理するコンピューターにインストールします。このエージェントインストーラーには、サーバーとデバイスグループの情報が埋め込まれています。", "nl": "Als u een nieuwe computer aan apparaatgroep \\\"{0}\\\" wilt toevoegen, downloadt u de mesh-agent en installeert u deze op de te beheren computer. In dit installatieprogramma van de agent zijn server- en apparaatgroepgegevens ingebed.", "pt": "Para adicionar um novo computador ao grupo de dispositivos \\\"{0}\\\", faça o download do agente de malha e instale-o no computador para gerenciar. Este instalador do agente possui informações de servidor e grupo de dispositivos incorporadas.", - "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Агент и установите его для управления этим компьютером. В этот установщик агента встроена информация о текущем сервере и группе устройств.", + "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Agent и установите его для управления этим компьютером. В этот установщик агента встроена информация о текущем сервере и группе устройств.", "xloc": [ "default.handlebars->25->335" ] @@ -17482,7 +17596,7 @@ "pt": "Para excluir esta conta, digite a senha da conta nas duas caixas abaixo e pressione ok.", "ru": "Чтобы удалить эту учетную запись, введите пароль учетной записи в оба поля и нажмите ОК.", "xloc": [ - "default.handlebars->25->929" + "default.handlebars->25->936" ] }, { @@ -17506,7 +17620,7 @@ "ja": "インストールするには、ルートターミナルで次のコマンドをカットアンドペーストします。", "nl": "Om te installeren, knip en plak de volgende opdracht in de root-terminal.", "pt": "Para instalar, recorte e cole o seguinte comando em um terminal raiz.", - "ru": "Для установки, вырежьте и вставьте следующую команду в root терминал.", + "ru": "Для установки, скопируйте и вставьте следующую команду в терминал. Потребуются права root.", "xloc": [ "agentinvite.handlebars->container->column_l->5->linuxtab->3" ] @@ -17519,7 +17633,7 @@ "ja": "メッシュエージェントを削除するには、以下のファイルをダウンロードして実行し、「アンインストール」をクリックします。", "nl": "Om een mesh-agent te verwijderen, download het onderstaande bestand, voer het uit en klik op \\\"deinstalleer \\\".", "pt": "Para remover um agente de malha, faça o download do arquivo abaixo, execute-o e clique em \\\"uninstall\\\".", - "ru": "Для удаления mesh агента, скачайте файл ниже, запустите его и нажмите \\\"удалить\\\".", + "ru": "Для удаления Mesh Agent скачайте файл ниже, запустите его и нажмите \\\"удалить\\\".", "xloc": [ "default.handlebars->25->338" ] @@ -17532,7 +17646,7 @@ "ja": "メッシュエージェントを削除するには、次のコマンドを実行します。ルート資格情報が必要になります。", "nl": "Voer de volgende opdracht uit om een mesh-agent te verwijderen. Root rechten zijn nodig.", "pt": "Para remover um agente de malha, execute o seguinte comando. Serão necessárias credenciais raiz.", - "ru": "Для удаления mesh агента, выполните следующую команду. Root учетные данные будут необходимы.", + "ru": "Для удаления Mesh Agent выполните следующую команду. Потребуются учетные данные root.", "xloc": [ "default.handlebars->25->345" ] @@ -17545,7 +17659,7 @@ "ja": "アンインストールするには、次のコマンドをルートとしてカットアンドペーストします。", "nl": "Om de installatie ongedaan te maken, knip en plak je de volgende opdracht als root.", "pt": "Para desinstalar, recorte e cole o seguinte comando como raiz.", - "ru": "Для удаления, вырежьте и вставьте следующую команду как root.", + "ru": "Для удаления, скопируйте и вставьте следующую команду в терминал. Потребуются права root.", "xloc": [ "agentinvite.handlebars->container->column_l->5->linuxtab->9" ] @@ -17574,7 +17688,7 @@ "ru": "Переключить вид", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", - "player.htm->p11->deskarea0->deskarea1->1" + "player.handlebars->p11->deskarea0->deskarea1->1" ] }, { @@ -17585,7 +17699,7 @@ "ja": "フォーカスモードを切り替えます。アクティブな場合、マウス周辺の領域のみが更新されます。", "nl": "Schakel focusmodus in, indien actief wordt alleen het gebied rond de muis bijgewerkt", "pt": "Alternar modo de foco, quando ativo, apenas a região ao redor do mouse é atualizada", - "ru": "Обновление переключения режима фокусировки, когда активна только область вокруг мыши", + "ru": "Переключить режим фокусировки, когда активно обновление только области вокруг мыши", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" ] @@ -17596,6 +17710,7 @@ "en": "Toggle footer bar", "es": "Alternar barra de pie de página", "nl": "Schakel de voettekstbalk in", + "ru": "Переключить нижнюю панель", "xloc": [ "default.handlebars->container->topbar->1->1->uiMenuButton->uiMenu" ] @@ -17609,7 +17724,7 @@ "ja": "マウスとキーボードの入力を切り替える", "nl": "Schakelen tussen muis- en toetsenbordinvoer", "pt": "Alternar entrada de mouse e teclado", - "ru": "Переключить мышь и ввод с клавиатуры", + "ru": "Разрешить мышь и ввод с клавиатуры", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->9" ] @@ -17679,7 +17794,7 @@ "ja": "リターンキーが送信するものを切り替える", "nl": "Wissel wat de return toets zal verzenden", "pt": "Alterne o que a chave de retorno enviará", - "ru": "Поменять функцию клавишы ввода", + "ru": "Поменять функцию клавиши ввода", "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] @@ -17723,8 +17838,9 @@ "ja": "トピック", "nl": "Onderwerp", "pt": "Tema", + "ru": "Тема", "xloc": [ - "default.handlebars->25->546" + "default.handlebars->25->553" ] }, { @@ -17762,9 +17878,9 @@ "ja": "このサーバーを介してデバイスに接続するために使用されるトラフィックルーター", "nl": "Verkeersrouter gebruikt om verbinding te maken met een apparaat via deze server", "pt": "Roteador de tráfego usado para conectar-se a um dispositivo através deste servidor", - "ru": "Для подключению в устройству был использован траффик маршрутизатор через этот сервер.", + "ru": "Router используется для подключения к различным портам устройства через этот сервер", "xloc": [ - "default.handlebars->25->501" + "default.handlebars->25->508" ] }, { @@ -17789,7 +17905,7 @@ "pt": "Tsonga", "ru": "Тсонга", "xloc": [ - "default.handlebars->25->896" + "default.handlebars->25->903" ] }, { @@ -17801,7 +17917,7 @@ "pt": "Tswana", "ru": "Тсвана", "xloc": [ - "default.handlebars->25->897" + "default.handlebars->25->904" ] }, { @@ -17813,7 +17929,7 @@ "pt": "turco", "ru": "Турецкий", "xloc": [ - "default.handlebars->25->898" + "default.handlebars->25->905" ] }, { @@ -17825,7 +17941,7 @@ "pt": "Turcomano", "ru": "Туркменский", "xloc": [ - "default.handlebars->25->899" + "default.handlebars->25->906" ] }, { @@ -17853,11 +17969,11 @@ "xloc": [ "default-mobile.handlebars->9->279", "default-mobile.handlebars->9->57", - "default.handlebars->25->1030", - "default.handlebars->25->1033", - "default.handlebars->25->620", - "default.handlebars->25->949", - "default.handlebars->25->978", + "default.handlebars->25->1037", + "default.handlebars->25->1040", + "default.handlebars->25->627", + "default.handlebars->25->956", + "default.handlebars->25->985", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, @@ -17871,7 +17987,7 @@ "pt": "Digite um nome de chave, selecione a caixa OTP e pressione o botão no YubiKeytrade;.", "ru": "Введите имя ключа, выберите поле OTP и нажмите кнопку на YubiKey™.", "xloc": [ - "default.handlebars->25->708" + "default.handlebars->25->715" ] }, { @@ -17884,7 +18000,7 @@ "pt": "Digite o nome da chave a ser adicionada.", "ru": "Введите имя ключа для добавления.", "xloc": [ - "default.handlebars->25->705" + "default.handlebars->25->712" ] }, { @@ -17898,7 +18014,7 @@ "pt": "Terminal UTF8", "ru": "Терминал UTF8", "xloc": [ - "default.handlebars->25->631" + "default.handlebars->25->638" ] }, { @@ -17911,7 +18027,7 @@ "pt": "ucraniano", "ru": "Украинский", "xloc": [ - "default.handlebars->25->900" + "default.handlebars->25->907" ] }, { @@ -17922,10 +18038,10 @@ "ja": "メールアドレスが確認されるまでデバイスにアクセスできません。これはパスワードの回復に必要です。 [マイアカウント]タブに移動して、メールアドレスを変更および確認します。", "nl": "Geen toegang tot een apparaat totdat een e-mailadres is geverifieerd. Dit is vereist voor wachtwoordherstel. Ga naar het tabblad \\\"Mijn account\\\" om een e-mailadres te wijzigen en te verifiëren.", "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": "Невозможно получить доступ к устройству, пока адрес эл. почты не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес эл. почты.", + "ru": "Невозможно получить доступ к устройству, пока адрес email не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес email.", "xloc": [ - "default.handlebars->25->429", - "default.handlebars->25->944" + "default.handlebars->25->436", + "default.handlebars->25->951" ] }, { @@ -17936,7 +18052,7 @@ "ja": "メールアドレスが確認されるまでデバイスにアクセスできません。これはパスワードの回復に必要です。 「マイアカウント」に移動して、メールアドレスを変更および確認します。", "nl": "Geen toegang tot een apparaat totdat een e-mailadres is geverifieerd. Dit is vereist voor wachtwoordherstel. Ga naar de \\\"Mijn account\\\" om een e-mailadres te wijzigen en te verifiëren.", "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": "Невозможно получить доступ к устройству, пока адрес эл. почты не подтвержден. Это необходимо для восстановления пароля. Перейдите в раздел \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес эл. почты.", + "ru": "Невозможно получить доступ к устройству, пока адрес email не подтвержден. Это необходимо для восстановления пароля. Перейдите в раздел \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес email.", "xloc": [ "default-mobile.handlebars->9->130", "default-mobile.handlebars->9->53" @@ -17966,8 +18082,8 @@ "pt": "Não foi possível acessar um dispositivo até que a autenticação de dois fatores esteja ativada. Isso é necessário para segurança extra. Vá para a guia \\\"Minha conta\\\" e consulte a seção \\\"Segurança da conta\\\".", "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите на вкладку \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "xloc": [ - "default.handlebars->25->431", - "default.handlebars->25->946" + "default.handlebars->25->438", + "default.handlebars->25->953" ] }, { @@ -18031,7 +18147,7 @@ "es": "No se puede enviar el correo electrónico.", "ja": "メールを送信できません。", "nl": "Kan geen e-mail verzenden.", - "ru": "Не удалось отправить эл. почту.", + "ru": "Не удалось отправить email.", "xloc": [ "login-mobile.handlebars->5->11", "login.handlebars->5->11" @@ -18047,7 +18163,7 @@ "ru": "Удаление", "xloc": [ "default-mobile.handlebars->9->326", - "default.handlebars->25->1123" + "default.handlebars->25->1130" ] }, { @@ -18060,9 +18176,9 @@ "ru": "Удаление агента", "xloc": [ "default-mobile.handlebars->9->308", - "default.handlebars->25->1100", + "default.handlebars->25->1107", "default.handlebars->25->384", - "default.handlebars->25->534" + "default.handlebars->25->541" ] }, { @@ -18072,9 +18188,9 @@ "es": "Desinstalar agente", "ja": "エージェントをアンインストールする", "nl": "deinstallatie agent", - "ru": "Удаление агента", + "ru": "Удалить агент", "xloc": [ - "default.handlebars->25->554" + "default.handlebars->25->561" ] }, { @@ -18095,7 +18211,7 @@ "default.handlebars->25->108", "default.handlebars->25->109", "default.handlebars->25->13", - "default.handlebars->25->1375", + "default.handlebars->25->1382", "default.handlebars->25->380", "default.handlebars->25->41", "default.handlebars->25->42" @@ -18113,7 +18229,7 @@ "ru": "Неизвестно #{0}", "xloc": [ "default-mobile.handlebars->9->273", - "default.handlebars->25->972" + "default.handlebars->25->979" ] }, { @@ -18122,8 +18238,9 @@ "en": "Unknown Action", "es": "Acción desconocida", "nl": "Onbekende actie", + "ru": "Неизвестное действие", "xloc": [ - "default.handlebars->25->1396" + "default.handlebars->25->1403" ] }, { @@ -18132,10 +18249,11 @@ "en": "Unknown Device Group", "es": "Grupo de dispositivos desconocido", "nl": "Onbekende apparaatgroep", + "ru": "Неизвестная группа устройств", "xloc": [ - "default.handlebars->25->1289", - "default.handlebars->25->1363", - "default.handlebars->25->1400" + "default.handlebars->25->1296", + "default.handlebars->25->1370", + "default.handlebars->25->1407" ] }, { @@ -18144,8 +18262,9 @@ "en": "Unknown Group", "es": "Grupo desconocido", "nl": "Onbekende groep", + "ru": "Неизвестная группа", "xloc": [ - "default.handlebars->25->1392" + "default.handlebars->25->1399" ] }, { @@ -18160,7 +18279,7 @@ "ru": "Состояние неизвестно", "xloc": [ "default-mobile.handlebars->9->178", - "default.handlebars->25->449" + "default.handlebars->25->456" ] }, { @@ -18169,8 +18288,9 @@ "en": "Unknown User Group", "es": "Grupo de usuarios desconocidos", "nl": "Onbekende gebruikersgroep", + "ru": "Неизвестная группа пользователей", "xloc": [ - "default.handlebars->25->1371" + "default.handlebars->25->1378" ] }, { @@ -18182,10 +18302,10 @@ "ja": "不明なバージョンと状態", "nl": "Onbekende versie en staat", "pt": "Estado da versão desconhecida", - "ru": "Версия и Состояние неизвестны", + "ru": "Версия и состояние неизвестны", "xloc": [ "default-mobile.handlebars->9->180", - "default.handlebars->25->451" + "default.handlebars->25->458" ] }, { @@ -18197,7 +18317,7 @@ "ja": "無制限", "nl": "Ongelimiteerd", "pt": "Ilimitado", - "ru": "Неограничено", + "ru": "Неограниченно", "xloc": [ "default.handlebars->25->173", "default.handlebars->25->297", @@ -18231,7 +18351,7 @@ "nl": "Bijgewerkt", "ru": "Актуально", "xloc": [ - "default.handlebars->25->1453" + "default.handlebars->25->1460" ] }, { @@ -18264,11 +18384,11 @@ "default-mobile.handlebars->9->253", "default-mobile.handlebars->9->271", "default-mobile.handlebars->9->85", - "default.handlebars->25->1175", - "default.handlebars->25->1183", - "default.handlebars->25->654", - "default.handlebars->25->677", - "default.handlebars->25->680", + "default.handlebars->25->1182", + "default.handlebars->25->1190", + "default.handlebars->25->661", + "default.handlebars->25->684", + "default.handlebars->25->687", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -18280,9 +18400,9 @@ "ja": "メッシュエージェントコアのアップロード", "nl": "Upload Mesh Agent Core", "pt": "Carregar núcleo do agente de malha", - "ru": "Загрузить ядро Mesh Агента", + "ru": "Загрузить ядро Mesh Agent", "xloc": [ - "default.handlebars->25->700" + "default.handlebars->25->707" ] }, { @@ -18295,7 +18415,7 @@ "pt": "Carregar um arquivo principal", "ru": "Загрузить файл ядра", "xloc": [ - "default.handlebars->25->697" + "default.handlebars->25->704" ] }, { @@ -18306,9 +18426,9 @@ "ja": "デフォルトのサーバーコアをアップロードする", "nl": "Upload standaard serverkern", "pt": "Carregar núcleo do servidor padrão", - "ru": "Загрузить ядро сервера по умолчанию", + "ru": "Загрузить ядро по умолчанию с сервера ", "xloc": [ - "default.handlebars->25->694" + "default.handlebars->25->701" ] }, { @@ -18321,7 +18441,7 @@ "pt": "Carregar núcleo de recuperação", "ru": "Загрузить ядро восстановления", "xloc": [ - "default.handlebars->25->696" + "default.handlebars->25->703" ] }, { @@ -18330,9 +18450,10 @@ "en": "Upload will overwrite 1 file. Continue?", "es": "La carga sobrescribirá un archivo. ¿Continuar?", "nl": "Upload overschrijft {0} bestand. Doorgaan?", + "ru": "Загрузка перезапишет 1 файл. Продолжить?", "xloc": [ - "default.handlebars->25->1184", - "default.handlebars->25->678" + "default.handlebars->25->1191", + "default.handlebars->25->685" ] }, { @@ -18341,9 +18462,10 @@ "en": "Upload will overwrite {0} files. Continue?", "es": "La carga sobrescribirá el archivo {0}. ¿Continuar?", "nl": "Upload overschrijft {0} bestanden. Doorgaan?", + "ru": "Загрузка перезапишет {0} файлов. Продолжить?", "xloc": [ - "default.handlebars->25->1185", - "default.handlebars->25->679" + "default.handlebars->25->1192", + "default.handlebars->25->686" ] }, { @@ -18354,7 +18476,7 @@ "ja": "アップロードすると、{0}ファイル{1}が上書きされます。持続する?", "nl": "Uploaden overschrijft {0} bestand {1}. Doorgaan met?", "pt": "O upload substituirá o {0} arquivo {1}.Continuar?", - "ru": "Загрузка перезапишет {0} файлом {1}. Продолжить?" + "ru": "Загрузка перезапишет {0} файлов. Продолжить?" }, { "cs": "hornolužická srbština", @@ -18365,7 +18487,7 @@ "pt": "Sorábio superior", "ru": "Верхний Сорбский", "xloc": [ - "default.handlebars->25->901" + "default.handlebars->25->908" ] }, { @@ -18377,7 +18499,7 @@ "pt": "urdu", "ru": "Урду", "xloc": [ - "default.handlebars->25->902" + "default.handlebars->25->909" ] }, { @@ -18418,8 +18540,8 @@ "pt": "Usava", "ru": "Использовано", "xloc": [ - "default.handlebars->25->1386", - "default.handlebars->25->1388" + "default.handlebars->25->1393", + "default.handlebars->25->1395" ] }, { @@ -18434,9 +18556,9 @@ "ru": "Пользователь", "xloc": [ "default-mobile.handlebars->9->328", - "default.handlebars->25->1027", - "default.handlebars->25->1211", - "default.handlebars->25->1284", + "default.handlebars->25->1034", + "default.handlebars->25->1218", + "default.handlebars->25->1291", "default.handlebars->25->200" ] }, @@ -18450,7 +18572,7 @@ "pt": "Usuário + Arquivos", "ru": "Пользователь + Файлы", "xloc": [ - "default.handlebars->25->1212" + "default.handlebars->25->1219" ] }, { @@ -18463,10 +18585,10 @@ "pt": "Importação de conta de usuário", "ru": "Импорт учетной записи пользователя", "xloc": [ - "default.handlebars->25->1219", - "default.handlebars->25->1220", - "default.handlebars->25->1222", - "default.handlebars->25->1224" + "default.handlebars->25->1226", + "default.handlebars->25->1227", + "default.handlebars->25->1229", + "default.handlebars->25->1231" ] }, { @@ -18475,8 +18597,9 @@ "en": "User Accounts", "es": "Cuentas de usuario", "nl": "Gebruikersaccounts", + "ru": "Учетные записи пользователей", "xloc": [ - "default.handlebars->25->1405" + "default.handlebars->25->1412" ] }, { @@ -18490,7 +18613,7 @@ "ru": "Полномочия пользователя", "xloc": [ "default-mobile.handlebars->9->281", - "default.handlebars->25->1022" + "default.handlebars->25->1029" ] }, { @@ -18504,7 +18627,7 @@ "pt": "Consentimento do Usuário", "ru": "Согласие пользователя", "xloc": [ - "default.handlebars->25->994" + "default.handlebars->25->1001" ] }, { @@ -18513,10 +18636,11 @@ "en": "User Group", "es": "Grupo de usuario", "nl": "Gebruikers Groep", + "ru": "Группа пользователей", "xloc": [ - "default.handlebars->25->1080", - "default.handlebars->25->1267", - "default.handlebars->25->1378" + "default.handlebars->25->1087", + "default.handlebars->25->1274", + "default.handlebars->25->1385" ] }, { @@ -18525,6 +18649,7 @@ "en": "User Group -", "es": "Grupo de usuario -", "nl": "Gebruikersgroep.", + "ru": "Группа пользователей -", "xloc": [ "default.handlebars->container->column_l->p51->1->1->0->1->p30title->3" ] @@ -18535,8 +18660,9 @@ "en": "User Group Memberships", "es": "Membresías de grupos de usuarios", "nl": "Gebruikersgroeps lidmaatschap", + "ru": "Членство в группах пользователей", "xloc": [ - "default.handlebars->25->1370" + "default.handlebars->25->1377" ] }, { @@ -18549,8 +18675,8 @@ "pt": "Identificador do usuário", "ru": "Идентификатор пользователя", "xloc": [ - "default.handlebars->25->1126", - "default.handlebars->25->1319" + "default.handlebars->25->1133", + "default.handlebars->25->1326" ] }, { @@ -18563,7 +18689,7 @@ "pt": "Exportação da lista de usuários", "ru": "Экспортировать список пользователей", "xloc": [ - "default.handlebars->25->1231" + "default.handlebars->25->1238" ] }, { @@ -18577,7 +18703,7 @@ "pt": "Nome de Usuário", "ru": "Имя пользователя", "xloc": [ - "default.handlebars->25->1125" + "default.handlebars->25->1132" ] }, { @@ -18591,8 +18717,8 @@ "pt": "Nomes de usuário", "ru": "Имена пользователей", "xloc": [ - "default.handlebars->25->1078", - "default.handlebars->25->1308" + "default.handlebars->25->1085", + "default.handlebars->25->1315" ] }, { @@ -18602,7 +18728,7 @@ "es": "Usuario PowerShell", "ja": "ユーザーPowerShell", "nl": "Gebruiker PowerShell", - "ru": "Пользовательский PowerShell", + "ru": "User PowerShell", "xloc": [ "default.handlebars->termShellContextMenu->cxtermups", "xterm.handlebars->termShellContextMenu->cxtermups" @@ -18618,7 +18744,7 @@ "pt": "Sessões de Usuário", "ru": "Сессии пользователя", "xloc": [ - "default.handlebars->25->1422" + "default.handlebars->25->1429" ] }, { @@ -18629,7 +18755,7 @@ "fr": "Shell utilisateur", "ja": "ユーザーシェル", "nl": "Gebruiker Shell", - "ru": "Пользовательская оболочка", + "ru": "User Shell", "xloc": [ "default.handlebars->termShellContextMenu->cxtermunorm", "default.handlebars->termShellContextMenuLinux->cxtermps", @@ -18645,10 +18771,10 @@ "ja": "ユーザーブラウザーの値", "nl": "Browserwaarde gebruiker", "pt": "Valor do navegador do usuário", - "ru": "Веб броузер пользователя", + "ru": "Использовать настройки браузера", "xloc": [ - "default.handlebars->25->911", - "default.handlebars->25->913" + "default.handlebars->25->918", + "default.handlebars->25->920" ] }, { @@ -18679,7 +18805,7 @@ "pt": "ID do usuário", "ru": "UserID", "xloc": [ - "player.htm->3->5" + "player.handlebars->3->5" ] }, { @@ -18694,11 +18820,11 @@ "ru": "Имя пользователя", "xloc": [ "default-mobile.handlebars->9->212", - "default.handlebars->25->1237", + "default.handlebars->25->1244", "default.handlebars->25->241", "default.handlebars->25->271", - "default.handlebars->25->540", - "player.htm->3->4" + "default.handlebars->25->547", + "player.handlebars->3->4" ] }, { @@ -18743,9 +18869,9 @@ "pt": "Usuários", "ru": "Пользователи", "xloc": [ - "default.handlebars->25->1266", - "default.handlebars->25->1277", - "default.handlebars->25->1421", + "default.handlebars->25->1273", + "default.handlebars->25->1284", + "default.handlebars->25->1428", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -18755,8 +18881,9 @@ "en": "Users Sessions", "es": "Sesiones de Usuario", "nl": "gebruikers Sessies", + "ru": "Сессии пользователей", "xloc": [ - "default.handlebars->25->1409" + "default.handlebars->25->1416" ] }, { @@ -18769,7 +18896,7 @@ "pt": "VT100+ (F10 = ESC+[OY)", "ru": "VT100+ (F10 = ESC+[OY)", "xloc": [ - "default.handlebars->25->636" + "default.handlebars->25->643" ] }, { @@ -18781,7 +18908,7 @@ "pt": "Venda", "ru": "Венда", "xloc": [ - "default.handlebars->25->903" + "default.handlebars->25->910" ] }, { @@ -18793,7 +18920,7 @@ "ja": "ベンダー", "nl": "Fabrikant", "pt": "Fornecedor", - "ru": "Торговец", + "ru": "Вендор", "xloc": [ "default.handlebars->25->67", "default.handlebars->25->70" @@ -18808,7 +18935,7 @@ "ja": "Eメールを確認します", "nl": "Verifieer Email", "pt": "Verificar Email", - "ru": "Подтвердить Эл. почту", + "ru": "Подтвердить email", "xloc": [ "default.handlebars->container->footer->3->verifyEmailId2" ] @@ -18822,7 +18949,7 @@ "ja": "Eメールを確認します", "nl": "Verifieer Email", "pt": "Verificar email", - "ru": "Подтвердить эл. почту", + "ru": "Подтвердить email", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->1->verifyEmailId->0", "default.handlebars->container->column_l->p2->p2AccountActions->3->verifyEmailId->0" @@ -18871,7 +18998,7 @@ "pt": "vietnamita", "ru": "Вьетнамский", "xloc": [ - "default.handlebars->25->904" + "default.handlebars->25->911" ] }, { @@ -18896,9 +19023,9 @@ "ja": "このデバイスに関するメモを表示", "nl": "Bekijk opmerkingen over dit apparaat", "pt": "Ver notas sobre este dispositivo", - "ru": "Посмотреть заметки об этом устройстве", + "ru": "Посмотреть примечания этого устройства", "xloc": [ - "default.handlebars->25->490" + "default.handlebars->25->497" ] }, { @@ -18909,9 +19036,9 @@ "ja": "このデバイスグループに関するメモを表示する", "nl": "Bekijk opmerkingen over deze apparaatgroep", "pt": "Ver notas sobre este grupo de dispositivos", - "ru": "Посмотреть заметки об этой группе устройств", + "ru": "Посмотреть примечания этой группы устройств", "xloc": [ - "default.handlebars->25->1007" + "default.handlebars->25->1014" ] }, { @@ -18922,9 +19049,9 @@ "ja": "このユーザーに関するメモを表示", "nl": "Bekijk opmerkingen over deze gebruiker", "pt": "Ver notas sobre este usuário", - "ru": "Посмотреть заметки об этом пользователе", + "ru": "Посмотреть примечания об этом пользователе", "xloc": [ - "default.handlebars->25->1342" + "default.handlebars->25->1349" ] }, { @@ -18936,7 +19063,7 @@ "pt": "Volapuk", "ru": "Волапукский", "xloc": [ - "default.handlebars->25->905" + "default.handlebars->25->912" ] }, { @@ -18960,7 +19087,7 @@ "ja": "他のユーザーを待っています...", "nl": "Wachten op de gebruiker ...", "pt": "Aguardando outro usuário ...", - "ru": "В ожидании другого пользователя ...", + "ru": "В ожидании другой стороны...", "xloc": [ "messenger.handlebars->13->6" ] @@ -18977,8 +19104,8 @@ "xloc": [ "default-mobile.handlebars->9->304", "default-mobile.handlebars->9->317", - "default.handlebars->25->1096", - "default.handlebars->25->1114" + "default.handlebars->25->1103", + "default.handlebars->25->1121" ] }, { @@ -18992,7 +19119,7 @@ "ru": "Разбудить", "xloc": [ "default-mobile.handlebars->9->206", - "default.handlebars->25->529" + "default.handlebars->25->536" ] }, { @@ -19017,7 +19144,7 @@ "pt": "valão", "ru": "Валлонский", "xloc": [ - "default.handlebars->25->906" + "default.handlebars->25->913" ] }, { @@ -19031,7 +19158,7 @@ "pt": "Fraco", "ru": "Слабый", "xloc": [ - "default.handlebars->25->958" + "default.handlebars->25->965" ] }, { @@ -19060,10 +19187,10 @@ "ja": "Webサーバー", "nl": "webserver", "pt": "Servidor web", - "ru": "Веб Сервер", + "ru": "Веб-сервер", "xloc": [ - "default.handlebars->25->1440", - "default.handlebars->25->1441" + "default.handlebars->25->1447", + "default.handlebars->25->1448" ] }, { @@ -19075,9 +19202,9 @@ "ja": "Webサーバーリクエスト", "nl": "Webserver Verzoeken", "pt": "Solicitações de servidor Web", - "ru": "Заявки Веб Сервера", + "ru": "Запросы веб-сервера", "xloc": [ - "default.handlebars->25->1442" + "default.handlebars->25->1449" ] }, { @@ -19089,8 +19216,9 @@ "ja": "Webソケットリレー", "nl": "Web Socket Relay", "pt": "Encaminhador de soquete da Web", + "ru": "Ретранслятор Web Socket", "xloc": [ - "default.handlebars->25->1443" + "default.handlebars->25->1450" ] }, { @@ -19131,7 +19259,7 @@ "pt": "galês", "ru": "Уэльский", "xloc": [ - "default.handlebars->25->907" + "default.handlebars->25->914" ] }, { @@ -19145,7 +19273,7 @@ "pt": "Será alterado no próximo login.", "ru": "Будет изменено при следующем входе в систему.", "xloc": [ - "default.handlebars->25->1327" + "default.handlebars->25->1334" ] }, { @@ -19268,7 +19396,7 @@ "pt": "WinSCP", "ru": "WinSCP", "xloc": [ - "default.handlebars->25->510" + "default.handlebars->25->517" ] }, { @@ -19308,7 +19436,7 @@ "pt": "Windows (32 Bits)", "ru": "Windows (32bit)", "xloc": [ - "default.handlebars->25->569" + "default.handlebars->25->576" ] }, { @@ -19321,7 +19449,7 @@ "pt": "Windows (64 Bits)", "ru": "Windows (64bit)", "xloc": [ - "default.handlebars->25->570" + "default.handlebars->25->577" ] }, { @@ -19332,7 +19460,7 @@ "ja": "Windows(アンインストール)", "nl": "Windows (deinstallatie)", "pt": "Windows (Desinstalador)", - "ru": "Windows (Удалить)", + "ru": "Windows (Удаление)", "xloc": [ "default.handlebars->25->318" ] @@ -19345,7 +19473,7 @@ "ja": "Windows 32ビット", "nl": "Windows 32bit", "pt": "Windows 32 Bits", - "ru": "32-разрядная версия Windows", + "ru": "Windows 32bit", "xloc": [ "agentinvite.handlebars->container->column_l->5->1->twintab32" ] @@ -19358,7 +19486,7 @@ "ja": "Windows 32ビットコンソール", "nl": "Windows 32bit console", "pt": "Windows 32 Bits console", - "ru": "Консоль 32-разрядной версии Windows", + "ru": "Консоль Windows 32bit", "xloc": [ "default-mobile.handlebars->9->144", "default.handlebars->25->14" @@ -19372,7 +19500,7 @@ "ja": "Windows 32ビットサービス", "nl": "Windows 32bit service", "pt": "Serviço Windows 32 Bits", - "ru": "Сервис 32-разрядной версии Windows", + "ru": "Служба Windows 32bit", "xloc": [ "default-mobile.handlebars->9->146", "default.handlebars->25->16" @@ -19386,7 +19514,7 @@ "ja": "Windows 64ビット", "nl": "Windows 64bit", "pt": "Windows 64 Bits", - "ru": "64-разрядная версия Windows", + "ru": "Windows 64bit", "xloc": [ "agentinvite.handlebars->container->column_l->5->1->twintab64" ] @@ -19399,7 +19527,7 @@ "ja": "Windows 64ビットコンソール", "nl": "Windows 64bit console", "pt": "Windows 64 Bits console", - "ru": "Консоль 64-разрядной версии Windows", + "ru": "Консоль Windows 64bit", "xloc": [ "default-mobile.handlebars->9->145", "default.handlebars->25->15" @@ -19413,7 +19541,7 @@ "ja": "Windows 64ビットサービス", "nl": "Windows 64bit service", "pt": "Serviço Windows 64 Bits", - "ru": "Сервис 64-разрядной версии Windows", + "ru": "Служба Windows 64bit", "xloc": [ "default-mobile.handlebars->9->147", "default.handlebars->25->17" @@ -19441,7 +19569,7 @@ "ja": "Windows MinCoreサービス", "nl": "Windows MinCore service", "pt": "Windows MinCore service", - "ru": "Сервис Windows MinCore", + "ru": "Служба Windows MinCore", "xloc": [ "default-mobile.handlebars->9->165", "default.handlebars->25->35" @@ -19490,8 +19618,9 @@ "en": "Wrap: OFF", "es": "Envoltura: OFF", "nl": "Wrap: UIT", + "ru": "Перенос строк: ВЫКЛ", "xloc": [ - "default.handlebars->25->672" + "default.handlebars->25->679" ] }, { @@ -19500,8 +19629,9 @@ "en": "Wrap: ON", "es": "Envoltura: ON", "nl": "Wrap: AAN", + "ru": "Перенос строк: ВКЛ", "xloc": [ - "default.handlebars->25->671" + "default.handlebars->25->678" ] }, { @@ -19515,7 +19645,7 @@ "pt": "Escreva um evento para este dispositivo", "ru": "Записать событие к этому устройству", "xloc": [ - "default.handlebars->25->492" + "default.handlebars->25->499" ] }, { @@ -19551,8 +19681,9 @@ { "en": "XTerm", "nl": "XTerm", + "ru": "XTerm", "xloc": [ - "default.handlebars->25->504" + "default.handlebars->25->511" ] }, { @@ -19565,7 +19696,7 @@ "pt": "Xhosa", "ru": "Кос", "xloc": [ - "default.handlebars->25->908" + "default.handlebars->25->915" ] }, { @@ -19578,7 +19709,7 @@ "pt": "Iídiche", "ru": "Идиш", "xloc": [ - "default.handlebars->25->909" + "default.handlebars->25->916" ] }, { @@ -19602,7 +19733,7 @@ "es": "Se le invitó a instalar un software que permitirá que un operador remoto acceda completamente a su computadora de forma remota, incluido el escritorio y los archivos.\n Solo siga las instrucciones a continuación si se esperaba esta invitación y sabe quién accederá a su computadora.\n Seleccione su sistema operativo y siga las instrucciones a continuación.", "nl": "U bent uitgenodigd om software te installeren waarmee een externe operator op afstand volledige toegang heeft tot uw computer, inclusief het bureaublad en de bestanden. Volg de onderstaande instructies alleen als deze uitnodiging werd verwacht en u weet wie toegang krijgt tot uw computer. Selecteer uw besturingssysteem en volg de onderstaande instructies.", "pt": "Você foi convidado a instalar um software que permitirá que um operador remoto acesse totalmente seu computador remotamente, incluindo a área de trabalho e os arquivos.\n Siga apenas as instruções abaixo se esse convite for esperado e você sabe quem acessará seu computador.\n Selecionando seu sistema operacional e siga as instruções abaixo.", - "ru": "Вам было предложено установить программное обеспечение, которое позволит удаленному оператору получить полный доступ к Вашему компьютеру, включая рабочий стол и файлы.\n                 Следуйте приведенным ниже инструкциям только в том случае, если это приглашение ожидалось и Вы знаете, кто будет обращаться к Вашему компьютеру.\n                 Выберите Вашу операционную систему и следуйте инструкциям ниже.", + "ru": "Вам предлагается установить программное обеспечение, которое позволит удаленному оператору получить полный доступ к Вашему компьютеру, включая рабочий стол и файлы. Следуйте приведенным ниже инструкциям только в том случае, если это приглашение ожидалось и Вы знаете кто будет обращаться к Вашему компьютеру. Выберите Вашу операционную систему и следуйте инструкциям ниже.", "xloc": [ "agentinvite.handlebars->container->column_l->3" ] @@ -19631,7 +19762,7 @@ "pt": "YubiKey™ OTP", "ru": "YubiKey™ OTP", "xloc": [ - "default.handlebars->25->711" + "default.handlebars->25->718" ] }, { @@ -19644,7 +19775,7 @@ "pt": "Zoom para ajustar a extensão", "ru": "Масштабирование по размеру", "xloc": [ - "default.handlebars->25->418" + "default.handlebars->25->425" ] }, { @@ -19657,8 +19788,8 @@ "pt": "Aumentar o zoom até o limite", "ru": "Масштабирование +", "xloc": [ - "default.handlebars->25->415", - "default.handlebars->25->421" + "default.handlebars->25->422", + "default.handlebars->25->428" ] }, { @@ -19671,8 +19802,8 @@ "pt": "Diminuir o zoom até o limite", "ru": "Масштабирование -", "xloc": [ - "default.handlebars->25->416", - "default.handlebars->25->422" + "default.handlebars->25->423", + "default.handlebars->25->429" ] }, { @@ -19685,7 +19816,7 @@ "pt": "Zulu", "ru": "Зулусский", "xloc": [ - "default.handlebars->25->910" + "default.handlebars->25->917" ] }, { @@ -19711,7 +19842,7 @@ "nl": "\\\\'", "ru": "\\\\'", "xloc": [ - "default.handlebars->25->1451" + "default.handlebars->25->1458" ] }, { @@ -19749,7 +19880,7 @@ "ja": "そのソースはからダウンロードできます", "nl": "en de bron kan worden gedownload van", "pt": "e sua fonte pode ser baixada de", - "ru": "и источник можно скачать с", + "ru": "и исходный код можно скачать с", "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->75->1", "terms.handlebars->container->column_l->75->1" @@ -19763,7 +19894,7 @@ "ja": "ここをクリックしてデバイスグループを作成します", "nl": "klik hier om een apparaatgroep te maken", "pt": "clique aqui para criar um grupo de dispositivos", - "ru": "Для создания группы устройств жмите сюда", + "ru": "для создания группы устройств нажмите сюда", "xloc": [ "default.handlebars->container->column_l->p1->NoMeshesPanel->1->1->0->3->getStarted1->1->0" ] @@ -19776,7 +19907,7 @@ "ja": "クリックして再接続", "nl": "klik om opnieuw verbinding te maken", "pt": "clique para reconectar", - "ru": "нажмите, чтобы восстановить", + "ru": "нажмите для переподключения", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message->2->0", "default.handlebars->container->column_l->p0->p0message->2->0" @@ -19791,7 +19922,7 @@ "pt": "console.txt", "ru": "console.txt", "xloc": [ - "default.handlebars->25->691" + "default.handlebars->25->698" ] }, { @@ -19805,7 +19936,7 @@ "ru": "копировать", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->25->1180" + "default.handlebars->25->1187" ] }, { @@ -19817,8 +19948,8 @@ "pt": "eventslist.csv", "ru": "eventslist.csv", "xloc": [ - "default.handlebars->25->1189", - "default.handlebars->25->1194" + "default.handlebars->25->1196", + "default.handlebars->25->1201" ] }, { @@ -19830,8 +19961,8 @@ "pt": "eventslist.json", "ru": "eventslist.csv", "xloc": [ - "default.handlebars->25->1191", - "default.handlebars->25->1195" + "default.handlebars->25->1198", + "default.handlebars->25->1202" ] }, { @@ -19857,7 +19988,7 @@ "pt": "livre", "ru": "свободно", "xloc": [ - "default.handlebars->25->1417" + "default.handlebars->25->1424" ] }, { @@ -19865,18 +19996,22 @@ "en": "g:", "es": "g:", "nl": "g:", + "ru": "g:", "xloc": [ - "default.handlebars->25->402" + "default.handlebars->25->406", + "default.handlebars->25->407" ] }, { "cs": "skupina:", - "de": "Gruppe:", + "de": "gruppe:", "en": "group:", - "es": "Grupo:", + "es": "grupo:", "nl": "groep:", + "ru": "group:", "xloc": [ - "default.handlebars->25->401" + "default.handlebars->25->404", + "default.handlebars->25->405" ] }, { @@ -19979,9 +20114,9 @@ "ja": "id、名前、電子メール、作成、lastlogin、グループ、authfactors", "nl": "id, naam, e-mail, aanmaken, laatste inlog, groepen, authenticatiefactors", "pt": "id, nome, email, criação, último login, grupos, fatores de autenticação", - "ru": "идентификатор, имя, адрес эл. почты, создание, последний вход, группы, факторы ауторизации", + "ru": "id, name, email, creation, lastlogin, groups, authfactors", "xloc": [ - "default.handlebars->25->1232" + "default.handlebars->25->1239" ] }, { @@ -19989,8 +20124,10 @@ "en": "ip:", "es": "IP:", "nl": "ip:", + "ru": "ip:", "xloc": [ - "default.handlebars->25->400" + "default.handlebars->25->402", + "default.handlebars->25->403" ] }, { @@ -20017,7 +20154,7 @@ "ru": "переместить", "xloc": [ "default-mobile.handlebars->9->90", - "default.handlebars->25->1181" + "default.handlebars->25->1188" ] }, { @@ -20039,7 +20176,7 @@ "pt": "servererrors.txt", "ru": "servererrors.txt", "xloc": [ - "default.handlebars->25->971" + "default.handlebars->25->978" ] }, { @@ -20051,7 +20188,7 @@ "pt": "servertrace.csv", "ru": "servertrace.csv", "xloc": [ - "default.handlebars->25->1450" + "default.handlebars->25->1457" ] }, { @@ -20059,8 +20196,10 @@ "en": "t:", "es": "t:", "nl": "t:", + "ru": "t:", "xloc": [ - "default.handlebars->25->404" + "default.handlebars->25->410", + "default.handlebars->25->411" ] }, { @@ -20068,8 +20207,10 @@ "en": "tag:", "es": "etiqueta:", "nl": "tag:", + "ru": "tag:", "xloc": [ - "default.handlebars->25->403" + "default.handlebars->25->408", + "default.handlebars->25->409" ] }, { @@ -20080,7 +20221,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->25->1430" + "default.handlebars->25->1437" ] }, { @@ -20092,7 +20233,7 @@ "pt": "hora, fonte, mensagem", "ru": "time, source, message", "xloc": [ - "default.handlebars->25->1449" + "default.handlebars->25->1456" ] }, { @@ -20104,7 +20245,7 @@ "pt": "hora, tipo, ação, usuário, mensagem", "ru": "time, type, action, user, message", "xloc": [ - "default.handlebars->25->1193" + "default.handlebars->25->1200" ] }, { @@ -20118,7 +20259,7 @@ "pt": "total", "ru": "всего", "xloc": [ - "default.handlebars->25->1418" + "default.handlebars->25->1425" ] }, { @@ -20126,17 +20267,21 @@ "en": "u:", "es": "u:", "nl": "u:", + "ru": "u:", "xloc": [ - "default.handlebars->25->399" + "default.handlebars->25->400", + "default.handlebars->25->401" ] }, { "cs": "uživatel:", "en": "user:", - "es": "Usuario:", + "es": "usuario:", "nl": "gebruiker:", + "ru": "user:", "xloc": [ - "default.handlebars->25->398" + "default.handlebars->25->398", + "default.handlebars->25->399" ] }, { @@ -20148,8 +20293,8 @@ "pt": "Lista de usuários.csv", "ru": "userlist.csv", "xloc": [ - "default.handlebars->25->1228", - "default.handlebars->25->1233" + "default.handlebars->25->1235", + "default.handlebars->25->1240" ] }, { @@ -20161,8 +20306,14 @@ "pt": "Lista de usuários.json", "ru": "userlist.json", "xloc": [ - "default.handlebars->25->1230", - "default.handlebars->25->1234" + "default.handlebars->25->1237", + "default.handlebars->25->1241" + ] + }, + { + "en": "{0} - Agent Installation", + "xloc": [ + "agentinvite.handlebars->3->2" ] }, { @@ -20175,7 +20326,7 @@ "pt": "{0} Gb", "ru": "{0} Гб", "xloc": [ - "default.handlebars->25->1161" + "default.handlebars->25->1168" ] }, { @@ -20188,7 +20339,7 @@ "pt": "{0} Kb", "ru": "{0} Kб", "xloc": [ - "default.handlebars->25->1159" + "default.handlebars->25->1166" ] }, { @@ -20201,7 +20352,7 @@ "pt": "{0} Mb", "ru": "{0} Mб", "xloc": [ - "default.handlebars->25->1160" + "default.handlebars->25->1167" ] }, { @@ -20228,7 +20379,7 @@ "pt": "{0} sessões ativas", "ru": "{0} активных сессий", "xloc": [ - "default.handlebars->25->1348" + "default.handlebars->25->1355" ] }, { @@ -20239,9 +20390,9 @@ "ja": "{0} b", "nl": "{0} b", "pt": "{0} b", - "ru": "{0} б", + "ru": "{0} байт", "xloc": [ - "default.handlebars->25->1158" + "default.handlebars->25->1165" ] }, { @@ -20256,7 +20407,7 @@ "ru": "{0} байт", "xloc": [ "default-mobile.handlebars->9->78", - "default.handlebars->25->1168" + "default.handlebars->25->1175" ] }, { @@ -20270,7 +20421,7 @@ "pt": "{0} bytes restantes", "ru": "{0} байт осталось", "xloc": [ - "default.handlebars->25->1153" + "default.handlebars->25->1160" ] }, { @@ -20281,9 +20432,9 @@ "ja": "残り{0}ギガバイト", "nl": "{0} rsterende gigabytes", "pt": "{0} gigabytes restantes", - "ru": "Остаются {0} гигабайт", + "ru": "{0} гигабайт осталось", "xloc": [ - "default.handlebars->25->1156" + "default.handlebars->25->1163" ] }, { @@ -20296,7 +20447,7 @@ "pt": "{0} grupos", "ru": "{0} групп", "xloc": [ - "default.handlebars->25->1332" + "default.handlebars->25->1339" ] }, { @@ -20305,6 +20456,7 @@ "en": "{0} hours", "es": "{0} horas", "nl": "{0} uur", + "ru": "{0} часов", "xloc": [ "default.handlebars->25->169" ] @@ -20317,7 +20469,7 @@ "ja": "{0}時間{1}", "nl": "{0} uur{1}", "pt": "{0} horas{1}", - "ru": "{0} час/ов {1}" + "ru": "{0} часов" }, { "cs": "{0} kilobajtů zbývá", @@ -20327,9 +20479,9 @@ "ja": "残り{0}キロバイト", "nl": "{0} resterende kilobytes", "pt": "{0} kilobytes restantes", - "ru": "Остаются {0} килобайт", + "ru": "{0} килобайт осталось", "xloc": [ - "default.handlebars->25->1154" + "default.handlebars->25->1161" ] }, { @@ -20340,6 +20492,7 @@ "ja": "{0}小文字", "nl": "{0} kleine letters", "pt": "{0} letras minúsculas", + "ru": "{0} букв в нижнем регистре", "xloc": [ "login-mobile.handlebars->5->31", "login.handlebars->5->31" @@ -20353,9 +20506,9 @@ "ja": "残り{0}メガバイト", "nl": "{0} resterende megabytes", "pt": "{0} megabytes restantes", - "ru": "Остается {0} мегабайт", + "ru": "{0} мегабайт осталось", "xloc": [ - "default.handlebars->25->1155" + "default.handlebars->25->1162" ] }, { @@ -20364,6 +20517,7 @@ "en": "{0} minutes until disconnect", "es": "{0} minutos hasta desconectar", "nl": "{0} minuten totdat de verbinding wordt verbroken", + "ru": "{0} минут до разъединения", "xloc": [ "default.handlebars->25->62" ] @@ -20376,7 +20530,7 @@ "ja": "切断するまで{0}分{1}", "nl": "{0} minuut {1} tot verbreken", "pt": "{0} minutos{1} até desconectar", - "ru": "{0} минут {1} до отсоединения" + "ru": "{0} минут до разъединения" }, { "cs": "{0} dalších uživatelů není zobrazeno, vyhledejte je pomocí kolonky pro vyhledávání…", @@ -20386,9 +20540,9 @@ "ja": "{0}個のユーザーが表示されていません。検索ボックスを使用してユーザーを検索してください...", "nl": "{0} meer gebruikers niet getoond, gebruik zoekvak om gebruikers te zoeken ...", "pt": "{0} mais usuários não exibidos, use a caixa de pesquisa para procurar usuários ...", - "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей", + "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей...", "xloc": [ - "default.handlebars->25->1203" + "default.handlebars->25->1210" ] }, { @@ -20427,7 +20581,7 @@ "ja": "{0}数値", "nl": "{0} numeriek", "pt": "{0} numérico", - "ru": "{0} числа", + "ru": "{0} цифры", "xloc": [ "login-mobile.handlebars->5->32", "login.handlebars->5->32" @@ -20439,6 +20593,7 @@ "en": "{0} seconds until disconnect", "es": "{0} segundos hasta desconectar", "nl": "{0} seconden totdat de verbinding wordt verbroken", + "ru": "{0} секунд до разъединения", "xloc": [ "default.handlebars->25->60" ] @@ -20451,9 +20606,9 @@ "ja": "{0}秒{1}", "nl": "{0} seconde {1}", "pt": "{0} segundo{1}", - "ru": "{0} секунд {1}", + "ru": "{0} секунд", "xloc": [ - "player.htm->3->3" + "player.handlebars->3->3" ] }, { @@ -20464,7 +20619,7 @@ "ja": "切断するまで{0}秒{1}", "nl": "{0} seconde {1} tot verbreken", "pt": "{0} segundo{1} até desconectar", - "ru": "{0} секунд {1} до отсоединения" + "ru": "{0} секунд до разъединения" }, { "cs": "{0} relací", @@ -20476,7 +20631,7 @@ "pt": "{0} sessões", "ru": "{0} сессий", "xloc": [ - "default.handlebars->25->1207" + "default.handlebars->25->1214" ] }, { @@ -20502,7 +20657,7 @@ "pt": "{0} para {1}", "ru": "{0} до {1}", "xloc": [ - "player.htm->3->8" + "player.handlebars->3->8" ] }, { @@ -20513,6 +20668,7 @@ "ja": "{0}大文字", "nl": "{0} hoofdletters", "pt": "{0} maiúsculas", + "ru": "{0} заглавных букв", "xloc": [ "login-mobile.handlebars->5->30", "login.handlebars->5->30" @@ -20539,7 +20695,7 @@ "ja": "{0} b残り", "nl": "{0}b over", "pt": "{0}b restante", - "ru": "Осталось {0}b", + "ru": "{0} байт осталось", "xloc": [ "default-mobile.handlebars->9->70" ] @@ -20552,7 +20708,7 @@ "ja": "{0} g残り", "nl": "{0}g over", "pt": "{0}g restante", - "ru": "Осталось {0}g", + "ru": "{0} гигабайт осталось", "xloc": [ "default-mobile.handlebars->9->73" ] @@ -20567,7 +20723,7 @@ "pt": "{0} k em 1 arquivo. {1} k no máximo", "ru": "{0}k в 1 файле. {1}k максимум", "xloc": [ - "default.handlebars->25->1163" + "default.handlebars->25->1170" ] }, { @@ -20580,7 +20736,7 @@ "pt": "{0} k em {1} arquivos. {2} k no máximo", "ru": "{0}k в {1} файлах. {2}k максимум", "xloc": [ - "default.handlebars->25->1162" + "default.handlebars->25->1169" ] }, { @@ -20591,7 +20747,7 @@ "ja": "{0} k残り", "nl": "{0}k over", "pt": "{0}k restante", - "ru": "Осталось {0}k", + "ru": "{0} килобайт осталось", "xloc": [ "default-mobile.handlebars->9->71" ] @@ -20604,7 +20760,7 @@ "ja": "残り{0} m", "nl": "{0}m over", "pt": "{0}m restante", - "ru": "Осталось {0}m", + "ru": "{0} мегабайт осталось", "xloc": [ "default-mobile.handlebars->9->72" ] @@ -20646,7 +20802,7 @@ "ru": "⇲", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1->3", - "player.htm->p11->deskarea0->deskarea1->1->1" + "player.handlebars->p11->deskarea0->deskarea1->1->1" ] }, { @@ -20697,7 +20853,7 @@ "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", - "player.htm->p11->deskarea0->deskarea3x->bigok->0", + "player.handlebars->p11->deskarea0->deskarea3x->bigok->0", "xterm.handlebars->p11->deskarea0->deskarea3x->bigok->0" ] }, @@ -20713,7 +20869,7 @@ "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->idx_deskFullBtn2", "default.handlebars->container->dialog->dialogHeader->id_dialogclose", - "player.htm->p11->dialog->dialogHeader->id_dialogclose", + "player.handlebars->p11->dialog->dialogHeader->id_dialogclose", "xterm.handlebars->p11->dialog->dialogHeader->id_dialogclose" ] }, @@ -20729,7 +20885,7 @@ "xloc": [ "default.handlebars->container->column_l->p13->p13filetable->p13bigfail->0", "default.handlebars->container->column_l->p5->p5filetable->bigfail->0", - "player.htm->p11->deskarea0->deskarea3x->bigfail->0", + "player.handlebars->p11->deskarea0->deskarea3x->bigfail->0", "xterm.handlebars->p11->deskarea0->deskarea3x->bigfail->0" ] } diff --git a/views/agentinvite.handlebars b/views/agentinvite.handlebars index 74967305..53eee9fa 100644 --- a/views/agentinvite.handlebars +++ b/views/agentinvite.handlebars @@ -8,7 +8,7 @@ - {{{title}}} - Agent Installation + Agent Installation