Internalization improvements.

Ylian Saint-Hilaire committed Feb 4, 2020 at 16:22 UTC db2577b897a6dc1a8c06c0f707f7746a3ad8ffd8
9 files changed +1621 -1444
MeshCentralServer.njsproj
-1
@@ -229,7 +229,6 @@
229 <Content Include="public\images\mapmarker.png" />
230 <Content Include="public\images\meshicon50.png" />
231 <Content Include="public\images\trash.png" />
232 - <Content Include="public\player.htm" />
232 <Content Include="public\scriptblocks.txt" />
233 <Content Include="public\sounds\chimes.mp3" />
234 <Content Include="public\styles\font-awesome\css\font-awesome.min.css" />
agents/meshcore.js
+2 -2
@@ -2654,10 +2654,10 @@ function createMeshCore(agent) {
2654 if (mesh.ExecPowerState == undefined) {
2655 response = 'Power command not supported on this agent.';
2656 } else {
2657 - if ((args['_'].length == 0) || (typeof args['_'][0] != 'number')) {
2657 + if ((args['_'].length == 0) || isNaN(Number(args['_'][0]))) {
2658 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
2659 } else {
2660 - var r = mesh.ExecPowerState(args['_'][0], args['_'][1]);
2660 + var r = mesh.ExecPowerState(Number(args['_'][0]), Number(args['_'][1]));
2661 response = 'Power action executed with return code: ' + r + '.';
2662 }
2663 }
public/translator.htm
+8 -4
@@ -80,8 +80,9 @@
80 <option value="es">Spanish (es)</option>
81 </select>
82 <input id="searchInput" type="text" placeholder="Search" onchange="onSearchChanged()" onkeyup="onSearchChanged()">
83 - <input id="showLocCheck" type="checkbox" onchange="onLocChanged()"> Show Location
84 - </div>
83 + <label><input id="showLocCheck" type="checkbox" onchange="onLocChanged()"> Show Location</label>
84 + <label><input id="showNoTransOnlyCheck" type="checkbox" onchange="onSearchChanged(true)">Show No Translations Only</label>
85 + </div>
86 </div>
87 <div id=deskarea2 style="">
88 <div class="areaProgress"><div id="progressbar" style="background-color:blue"></div></div>
@@ -257,6 +258,7 @@
258 }
259 QH('masterListArea', x.join(''));
260 updateButtons();
261 + onSearchChanged(true);
262 }
263
264 function select(i, scroll, nofocus) {
@@ -306,15 +308,17 @@
308
309 var currentSearchFilter = '';
310 function onSearchChanged(force) {
311 + var showNoTranslationOnly = Q('showNoTransOnlyCheck').checked;
312 if ((force != true) && (currentSearchFilter == Q('searchInput').value)) return;
313 currentSearchFilter = Q('searchInput').value;
314 var currentSearchFilterLower = currentSearchFilter.toLowerCase();
315 if (translations != null) {
316 for (var i in translations) {
317 + var show = (!showNoTranslationOnly) || (translations[i][selectedLanguage] == null) || (translations[i][selectedLanguage] == '');
318 if (currentSearchFilter == '') {
315 - QV('nx' + i, true);
319 + QV('nx' + i, show);
320 } else {
317 - QV('nx' + i, ((translations[i][selectedLanguage] != null) && (translations[i][selectedLanguage].toLowerCase().indexOf(currentSearchFilterLower) >= 0)) || (translations[i]['en'].toLowerCase().indexOf(currentSearchFilterLower) >= 0));
321 + QV('nx' + i, show && (((translations[i][selectedLanguage] != null) && (translations[i][selectedLanguage].toLowerCase().indexOf(currentSearchFilterLower) >= 0)) || (translations[i]['en'].toLowerCase().indexOf(currentSearchFilterLower) >= 0)));
322 }
323 }
324 }
translate/translate.js
+1 -1
@@ -30,7 +30,7 @@ var meshCentralSourceFiles = [
30 "../views/xterm.handlebars",
31 "../views/message.handlebars",
32 "../views/messenger.handlebars",
33 - "../public/player.htm"
33 + "../views/player.handlebars"
34 ];
35
36 // True is this module is run directly using NodeJS
translate/translate.json
+1582 -1426
@@ -11,8 +11,8 @@
11 "pt": " + CIRA",
12 "ru": " + CIRA",
13 "xloc": [
14 - "default.handlebars->25->1002",
15 - "default.handlebars->25->1004"
14 + "default.handlebars->25->1009",
15 + "default.handlebars->25->1011"
16 ]
17 },
18 {
@@ -21,6 +21,7 @@
21 "en": " - Reset in 1 day.",
22 "es": " - Reiniciar en 1 dia.",
23 "nl": " - Herstart in {0} dag.",
24 + "ru": "- Сброс через 1 день.",
25 "xloc": [
26 "default-mobile.handlebars->9->15",
27 "default.handlebars->25->57"
@@ -32,6 +33,7 @@
33 "en": " - Reset in 1 hour.",
34 "es": " - Reiniciar en 1 hora.",
35 "nl": " - Herstart in 1 uur.",
36 + "ru": "- Сброс через 1 час.",
37 "xloc": [
38 "default-mobile.handlebars->9->13",
39 "default.handlebars->25->55"
@@ -43,6 +45,7 @@
45 "en": " - Reset in 1 minute.",
46 "es": " - Reiniciar en 1 minuto.",
47 "nl": " - Herstart in {0} days.",
48 + "ru": "- Сброс через 1 минуту.",
49 "xloc": [
50 "default-mobile.handlebars->9->11",
51 "default.handlebars->25->53"
@@ -54,6 +57,7 @@
57 "en": " - Reset in {0} days.",
58 "es": " - Reiniciar en {0} dias.",
59 "nl": " - Herstart in {0} dagen.",
60 + "ru": "- Сброс через {0} дней.",
61 "xloc": [
62 "default-mobile.handlebars->9->16",
63 "default.handlebars->25->58"
@@ -68,7 +72,7 @@
72 "ja": " - {0}日でリセット{1}。",
73 "nl": " - Reset in {0} dag(en){1}.",
74 "pt": " - Redefinir em {0} dia {1}.",
71 - "ru": " - Сброс через {0} дней{1}."
75 + "ru": " - Сброс через {0} дней."
76 },
77 {
78 "cs": " - Resetovat za {0} hodin.",
@@ -76,6 +80,7 @@
80 "en": " - Reset in {0} hours.",
81 "es": " - Reiniciar en {0} horas.",
82 "nl": " - Herstart in {0} uren.",
83 + "ru": "- Сброс через {0} часов.",
84 "xloc": [
85 "default-mobile.handlebars->9->14",
86 "default.handlebars->25->56"
@@ -90,7 +95,7 @@
95 "ja": " - {0}時間でリセット{1}。",
96 "nl": " - Reset in {0} uur{1}.",
97 "pt": " - Redefinir em {0} hora {1}.",
93 - "ru": " - Сброс через {0} часов{1}."
98 + "ru": " - Сброс через {0} часов."
99 },
100 {
101 "cs": " - Resetovat za {0} minut.",
@@ -98,6 +103,7 @@
103 "en": " - Reset in {0} minutes.",
104 "es": " - Reiniciar en {0} minutos.",
105 "nl": " - Herstart in {0} minuten.",
106 + "ru": "- Сброс через {0} минут.",
107 "xloc": [
108 "default-mobile.handlebars->9->12",
109 "default.handlebars->25->54"
@@ -112,7 +118,7 @@
118 "ja": " - {0}分でリセット{1}。",
119 "nl": " - Reset in {0} minuten{1}.",
120 "pt": " - Redefinir em {0} minuto {1}.",
115 - "ru": " - Сброс через {0} минут{1}."
121 + "ru": " - Сброс через {0} минут."
122 },
123 {
124 "cs": " - Resetovat při příštím přihlášení.",
@@ -169,7 +175,7 @@
175 "pt": " Dica de senha pode ser usada, mas não é recomendada.",
176 "ru": "Может быть использована подсказка пароля, но не рекоммендуется.",
177 "xloc": [
172 - "default.handlebars->25->934"
178 + "default.handlebars->25->941"
179 ]
180 },
181 {
@@ -181,10 +187,10 @@
187 "ja": " ユーザーは、デバイスグループに追加する前にこのサーバーに1回ログインする必要があります。",
188 "nl": " Gebruikers moeten inloggen bij de server voordat ze kunnen worden toegevoegd aan een apparaatgroep.",
189 "pt": " Os usuários precisam fazer login neste servidor uma vez antes de poderem ser adicionados a um grupo de dispositivos.",
184 - "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хоть один раз.",
190 + "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.",
191 "xloc": [
186 - "default.handlebars->25->1077",
187 - "default.handlebars->25->1307"
192 + "default.handlebars->25->1084",
193 + "default.handlebars->25->1314"
194 ]
195 },
196 {
@@ -196,7 +202,7 @@
202 "ja": " このユーザー名とパスワードを使用してサーバーに対して認証します。",
203 "nl": " verifieer bij de server met deze gebruikersnaam en elk wachtwoord.",
204 "pt": " e autenticar no servidor usando esse nome de usuário e qualquer senha.",
199 - "ru": " и разрешить серверу использовать это имя и любой пароль",
205 + "ru": " и задайте указанное ниже имя пользователя и любой пароль.",
206 "xloc": [
207 "default.handlebars->25->267"
208 ]
@@ -210,7 +216,7 @@
216 "ja": " このユーザー名とパスワードを使用してサーバーに対して認証します。",
217 "nl": " verifieer bij de server met deze gebruikersnaam en wachtwoord.",
218 "pt": " e autenticar no servidor usando esse nome de usuário e senha.",
213 - "ru": " и разрешить серверу использовать это имя и пароль",
219 + "ru": " и задайте указанные ниже имя пользователя и пароль.",
220 "xloc": [
221 "default.handlebars->25->266"
222 ]
@@ -320,7 +326,7 @@
326 "ja": "* BSDの場合、最初に\\\"pkg install wget sudo bash\\\"を実行します。",
327 "nl": "* Voor BSD, start eerst \\\"pkg install wget sudo bash\\\" .",
328 "pt": "* Para o BSD, execute \\\"pkg install wget sudo bash\\\".",
323 - "ru": "* Для BSD, сначала запустите \\\"pkg install wget sudo bash\\\".",
329 + "ru": "* Для BSD сначала запустите \\\"pkg install wget sudo bash\\\".",
330 "xloc": [
331 "default.handlebars->25->334"
332 ]
@@ -333,9 +339,9 @@
339 "ja": "*空白のままにして、各デバイスにランダムなパスワードを割り当てます。",
340 "nl": "* Laat leeg om een willekeurig wachtwoord toe te wijzen aan elk apparaat.",
341 "pt": "* Deixe em branco para atribuir uma senha aleatória a cada dispositivo.",
336 - "ru": "* Для установления случайного пароля каждому устройству - оставьте пустым.",
342 + "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.",
343 "xloc": [
338 - "default.handlebars->25->1052"
344 + "default.handlebars->25->1059"
345 ]
346 },
347 {
@@ -363,7 +369,7 @@
369 "ru": ", ",
370 "xloc": [
371 "default-mobile.handlebars->9->330",
366 - "default.handlebars->25->1128"
372 + "default.handlebars->25->1135"
373 ]
374 },
375 {
@@ -390,7 +396,7 @@
396 "pt": ", O MQTT está online",
397 "ru": ", MQTT онлайн",
398 "xloc": [
393 - "default.handlebars->25->687"
399 + "default.handlebars->25->694"
400 ]
401 },
402 {
@@ -403,7 +409,7 @@
409 "pt": ", Soft-KVM",
410 "ru": ", Soft-KVM",
411 "xloc": [
406 - "default.handlebars->25->599"
412 + "default.handlebars->25->606"
413 ]
414 },
415 {
@@ -418,9 +424,9 @@
424 "xloc": [
425 "default-mobile.handlebars->9->228",
426 "default-mobile.handlebars->9->238",
421 - "default.handlebars->25->600",
422 - "default.handlebars->25->630",
423 - "default.handlebars->25->642",
427 + "default.handlebars->25->607",
428 + "default.handlebars->25->637",
429 + "default.handlebars->25->649",
430 "xterm.handlebars->9->6"
431 ]
432 },
@@ -432,7 +438,7 @@
438 "ja": "、ここをクリックして有効にします。",
439 "nl": ", klik hier om in te schakelen",
440 "pt": ", clique aqui para habilitá-lo.",
435 - "ru": ", для включения жмите сюда.",
441 + "ru": ", для включения нажмите сюда.",
442 "xloc": [
443 "default.handlebars->container->column_l->p11->p11warning->3->p11warninga",
444 "default.handlebars->container->column_l->p12->p12warning->3->p12warninga"
@@ -446,7 +452,7 @@
452 "ja": "、それを右クリックするか、「control」を押してファイルをクリックします。次に、「開く」を選択し、指示に従います。",
453 "nl": ", klik er met de rechtermuisknop op of druk op \"beheer\" en klik op het bestand. Daarna op \"open\" en volg de instructies.",
454 "pt": ", clique com o botão direito do mouse ou pressione \"control\".Em seguida, selecione \"Open\".",
449 - "ru": ", нажмите правой кнопкой или задержите \"Control\" и жмите на файл. Выберите \"Открыть\" и следуйте инструкциям.",
455 + "ru": ", нажмите правой кнопкой мыши на скачанном файле, выберите пункт \"Открыть\" и следуйте инструкциям программы.",
456 "xloc": [
457 "agentinvite.handlebars->container->column_l->5->macostab->3"
458 ]
@@ -512,9 +518,9 @@
518 "xloc": [
519 "default-mobile.handlebars->9->243",
520 "default-mobile.handlebars->9->67",
515 - "default.handlebars->25->1150",
516 - "default.handlebars->25->1383",
517 - "default.handlebars->25->644"
521 + "default.handlebars->25->1157",
522 + "default.handlebars->25->1390",
523 + "default.handlebars->25->651"
524 ]
525 },
526 {
@@ -541,7 +547,7 @@
547 "pt": "00:00:00",
548 "ru": "00:00:00",
549 "xloc": [
544 - "player.htm->p11->deskarea0->deskarea4->1->timespan"
550 + "player.handlebars->p11->deskarea0->deskarea4->1->timespan"
551 ]
552 },
553 {
@@ -555,7 +561,7 @@
561 "pt": "1 sessão ativa",
562 "ru": "1 активная сессия",
563 "xloc": [
558 - "default.handlebars->25->1347"
564 + "default.handlebars->25->1354"
565 ]
566 },
567 {
@@ -571,7 +577,7 @@
577 "xloc": [
578 "default-mobile.handlebars->9->334",
579 "default-mobile.handlebars->9->77",
574 - "default.handlebars->25->1167"
580 + "default.handlebars->25->1174"
581 ]
582 },
583 {
@@ -601,7 +607,7 @@
607 "pt": "1 grupo",
608 "ru": "1 группа",
609 "xloc": [
604 - "default.handlebars->25->1331"
610 + "default.handlebars->25->1338"
611 ]
612 },
613 {
@@ -626,6 +632,7 @@
632 "en": "1 minute until disconnect",
633 "es": "Un minuto hasta desconectar",
634 "nl": "1 minuut totdat de verbinding wordt verbroken",
635 + "ru": "1 минута до разъединения",
636 "xloc": [
637 "default.handlebars->25->61"
638 ]
@@ -654,9 +661,9 @@
661 "ja": "さらに1人のユーザーが表示されていません。検索ボックスを使用してユーザーを検索してください...",
662 "nl": "1 gebruiker niet getoond, gebruik de zoekfunctie om gebruikers te vinden...",
663 "pt": "Mais 1 usuário não mostrado, use a caixa de pesquisa para procurar usuários...",
657 - "ru": "Еще 1 пользователь не показан, используйте \\\"Поиск\\\" чтобы найти пользователей...",
664 + "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...",
665 "xloc": [
659 - "default.handlebars->25->1202"
666 + "default.handlebars->25->1209"
667 ]
668 },
669 {
@@ -679,6 +686,7 @@
686 "en": "1 second until disconnect",
687 "es": "Un segundo hasta desconectar",
688 "nl": "1 seconde totdat de verbinding wordt verbroken",
689 + "ru": "1 секунда до разъединения",
690 "xloc": [
691 "default.handlebars->25->59"
692 ]
@@ -694,7 +702,7 @@
702 "pt": "1 sessão",
703 "ru": "1 сессия",
704 "xloc": [
697 - "default.handlebars->25->1206"
705 + "default.handlebars->25->1213"
706 ]
707 },
708 {
@@ -752,7 +760,7 @@
760 "pt": "1/2 velocidade",
761 "ru": "1/2 Скорость",
762 "xloc": [
755 - "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->3"
763 + "player.handlebars->p11->deskarea0->deskarea4->3->PlaySpeed->3"
764 ]
765 },
766 {
@@ -766,7 +774,7 @@
774 "pt": "1/4 de velocidade",
775 "ru": "1/4 Скорость",
776 "xloc": [
769 - "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->1"
777 + "player.handlebars->p11->deskarea0->deskarea4->3->PlaySpeed->1"
778 ]
779 },
780 {
@@ -807,7 +815,7 @@
815 "pt": "10x Velocidade",
816 "ru": "10x Скорость",
817 "xloc": [
810 - "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->11"
818 + "player.handlebars->p11->deskarea0->deskarea4->3->PlaySpeed->11"
819 ]
820 },
821 {
@@ -845,7 +853,7 @@
853 "ja": "2段階ログインアクティベーションの削除に失敗しました。",
854 "nl": "Tweestapsverificatie verwijdering is mislukt.",
855 "pt": "A remoção da ativação do login em duas etapas falhou.",
848 - "ru": "Удаление активации двуэтапного входа не удалась.",
856 + "ru": "Удаление активации двухэтапного входа не удалось.",
857 "xloc": [
858 "default.handlebars->25->130"
859 ]
@@ -902,7 +910,7 @@
910 "pt": "Autenticação de segundo fator ativada",
911 "ru": "двухфакторная аутентификация включена",
912 "xloc": [
905 - "default.handlebars->25->1340"
913 + "default.handlebars->25->1347"
914 ]
915 },
916 {
@@ -916,7 +924,7 @@
924 "pt": "2x velocidade",
925 "ru": "2x Скорость",
926 "xloc": [
919 - "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->7"
927 + "player.handlebars->p11->deskarea0->deskarea4->3->PlaySpeed->7"
928 ]
929 },
930 {
@@ -979,7 +987,7 @@
987 "ja": "MeshAgentの32ビットバージョン",
988 "nl": "32bit versie van de MeshAgent",
989 "pt": "Versão de 32 bits do MeshAgent",
982 - "ru": "32-разрядная версия MeshAgent-а",
990 + "ru": "32-разрядная версия MeshAgent",
991 "xloc": [
992 "default.handlebars->25->326",
993 "default.handlebars->25->340"
@@ -1049,7 +1057,7 @@
1057 "pt": "4x velocidade",
1058 "ru": "4x Скорость",
1059 "xloc": [
1052 - "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->9"
1060 + "player.handlebars->p11->deskarea0->deskarea4->3->PlaySpeed->9"
1061 ]
1062 },
1063 {
@@ -1139,7 +1147,7 @@
1147 "ja": "MeshAgentの64ビットバージョン",
1148 "nl": "64bit versie van de MeshAgent",
1149 "pt": "Versão de 64 bits do MeshAgent",
1142 - "ru": "64-разрядная версия MeshAgent-а",
1150 + "ru": "64-разрядная версия MeshAgent",
1151 "xloc": [
1152 "default.handlebars->25->329",
1153 "default.handlebars->25->343"
@@ -1150,7 +1158,8 @@
1158 "de": "7-Tage-Anmelde-Status",
1159 "en": "7 Day Login State",
1160 "es": "Estado de inicio de sesión de 7 días",
1153 - "nl": "Inlogstatus afgelopen 7 dagen"
1161 + "nl": "Inlogstatus afgelopen 7 dagen",
1162 + "ru": "7-дневная статистика входов"
1163 },
1164 {
1165 "cs": "Stav napájení za uplynulých 7 dnů",
@@ -1162,7 +1171,7 @@
1171 "pt": "Estado de energia de 7 dias",
1172 "ru": "7-дневная статистика работы",
1173 "xloc": [
1165 - "default.handlebars->25->539"
1174 + "default.handlebars->25->546"
1175 ]
1176 },
1177 {
@@ -1244,7 +1253,7 @@
1253 "pt": ":",
1254 "ru": ":",
1255 "xloc": [
1247 - "agentinvite.handlebars->3->1"
1256 + "agentinvite.handlebars->3->4"
1257 ]
1258 },
1259 {
@@ -1268,7 +1277,7 @@
1277 "ja": "<b style = color:green> 2段階のログインアクティベーションが削除されました</ b>。この機能はいつでも再アクティブ化できます。",
1278 "nl": "<b style=color:green>Tweestapsverificatie verwijderd</b>. Je kan deze functie ten allen tijde weer inschakelen.",
1279 "pt": "<b style=color:green>Ativação de login em duas etapas removida</b>. Você pode reativar esse recurso a qualquer momento.",
1271 - "ru": "<b style=color:green>Активация двухэтапного входа удалена</b>. Вы можете активировать эту функцию в любое время.",
1280 + "ru": "<b style=color:green>Активация двухэтапного входа удалена</b>. Вы можете активировать обратно эту функцию в любое время.",
1281 "xloc": [
1282 "default-mobile.handlebars->9->22"
1283 ]
@@ -1281,7 +1290,7 @@
1290 "ja": "<b style = color:green> 2段階ログインの有効化に成功</ b>。再度ログインするには、有効なトークンが必要になります。",
1291 "nl": "<b style=color:green>Tweestapsverificatie successvol</b>. U hebt nu een geldig token nodig om opnieuw in te loggen.",
1292 "pt": "<b style=color:green> ativação de login em duas etapas </b>. Agora você precisará de um token válido para fazer login novamente.",
1284 - "ru": "<b style = color: green>Активация двухэтапного входа успешна </ b>. Теперь вам понадобится действительный токен, чтобы снова войти в систему.",
1293 + "ru": "<b style=color:green>Активация двухэтапного входа успешна</b>. Теперь вам понадобится действительный токен, чтобы снова войти в систему.",
1294 "xloc": [
1295 "default-mobile.handlebars->9->19"
1296 ]
@@ -1323,7 +1332,7 @@
1332 "ru": "ACM",
1333 "xloc": [
1334 "default-mobile.handlebars->9->182",
1326 - "default.handlebars->25->455"
1335 + "default.handlebars->25->462"
1336 ]
1337 },
1338 {
@@ -1390,7 +1399,7 @@
1399 "ja": "ARMv8 64ビット",
1400 "nl": "ARMv8 64bit",
1401 "pt": "ARMv8 64bit",
1393 - "ru": "ARMv8 64-разрадная",
1402 + "ru": "ARMv8 64bit",
1403 "xloc": [
1404 "default-mobile.handlebars->9->169",
1405 "default.handlebars->25->39"
@@ -1407,7 +1416,7 @@
1416 "pt": "Acesso Negado",
1417 "ru": "Отказано в доступе",
1418 "xloc": [
1410 - "default.handlebars->25->688"
1419 + "default.handlebars->25->695"
1420 ]
1421 },
1422 {
@@ -1431,9 +1440,9 @@
1440 "ja": "サーバーファイルへのアクセス",
1441 "nl": "Toegang tot de server bestanden",
1442 "pt": "Acesso aos arquivos do servidor",
1434 - "ru": "Доступ в файлам сервера",
1443 + "ru": "Доступ к файлам сервера",
1444 "xloc": [
1436 - "default.handlebars->25->1312"
1445 + "default.handlebars->25->1319"
1446 ]
1447 },
1448 {
@@ -1444,7 +1453,7 @@
1453 "ja": "アカウントアクション",
1454 "nl": "gebruikersacties",
1455 "pt": "Ações da Conta",
1447 - "ru": "Действия Аккаунта",
1456 + "ru": "Действия учетной записи",
1457 "xloc": [
1458 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->5->0"
1459 ]
@@ -1457,7 +1466,7 @@
1466 "ja": "アカウント作成",
1467 "nl": "Gebruikersaccount aanmaken",
1468 "pt": "Criação de conta",
1460 - "ru": "Создание Аккаунта",
1469 + "ru": "Создание учетной записи",
1470 "xloc": [
1471 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->5->1",
1472 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->5->1"
@@ -1471,7 +1480,7 @@
1480 "ja": "アカウントのリセット",
1481 "nl": "Gebruikersaccount resetten",
1482 "pt": "Redefinição de conta",
1474 - "ru": "Сброс аккаунта",
1483 + "ru": "Сброс учетной записи",
1484 "xloc": [
1485 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->5->1",
1486 "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->5->1"
@@ -1492,10 +1501,10 @@
1501 "default-mobile.handlebars->9->52",
1502 "default-mobile.handlebars->9->54",
1503 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0",
1495 - "default.handlebars->25->428",
1496 - "default.handlebars->25->430",
1497 - "default.handlebars->25->943",
1498 - "default.handlebars->25->945"
1504 + "default.handlebars->25->435",
1505 + "default.handlebars->25->437",
1506 + "default.handlebars->25->950",
1507 + "default.handlebars->25->952"
1508 ]
1509 },
1510 {
@@ -1506,7 +1515,7 @@
1515 "ja": "アカウントアクション",
1516 "nl": "gebruikersacties",
1517 "pt": "Ações da conta",
1509 - "ru": "Действия аккаунта",
1518 + "ru": "Действия учетной записи",
1519 "xloc": [
1520 "default.handlebars->container->column_l->p2->p2AccountActions->1->0"
1521 ]
@@ -1518,7 +1527,7 @@
1527 "es": "Límite de cuenta alcanzado.",
1528 "ja": "アカウントの上限に達しました。",
1529 "nl": "Gebruikersaccount limiet bereikt.",
1521 - "ru": "Ограничение аккаунта достигнуто.",
1530 + "ru": "Достигнуто ограничение учетных записей.",
1531 "xloc": [
1532 "login-mobile.handlebars->5->3",
1533 "login.handlebars->5->3"
@@ -1531,7 +1540,7 @@
1540 "es": "Cuenta Bloqueada.",
1541 "ja": "アカウントがロックされました。",
1542 "nl": "Gebruikersaccount vergrendeld",
1534 - "ru": "Аккаунт заблокирован.",
1543 + "ru": "Учетная запись заблокирована.",
1544 "xloc": [
1545 "login-mobile.handlebars->5->12",
1546 "login.handlebars->5->12"
@@ -1544,7 +1553,7 @@
1553 "es": "Cuenta no encontrada.",
1554 "ja": "アカウントが見つかりませんでした。",
1555 "nl": "Gebruikersaccount niet gevonden",
1547 - "ru": "Аккаунт не найден.",
1556 + "ru": "Учетная запись не найдена.",
1557 "xloc": [
1558 "login-mobile.handlebars->5->9",
1559 "login.handlebars->5->9"
@@ -1573,7 +1582,7 @@
1582 "pt": "Ação",
1583 "ru": "Действиe",
1584 "xloc": [
1576 - "default.handlebars->25->693",
1585 + "default.handlebars->25->700",
1586 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
1587 ]
1588 },
@@ -1581,9 +1590,10 @@
1590 "en": "Action File",
1591 "es": "Archivo de acción",
1592 "nl": "Actie bestand",
1593 + "ru": "Файл действий",
1594 "xloc": [
1585 - "default.handlebars->25->579",
1586 - "default.handlebars->25->581"
1595 + "default.handlebars->25->586",
1596 + "default.handlebars->25->588"
1597 ]
1598 },
1599 {
@@ -1598,7 +1608,7 @@
1608 "xloc": [
1609 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
1610 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
1601 - "default.handlebars->25->487",
1611 + "default.handlebars->25->494",
1612 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
1613 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
1614 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -1645,8 +1655,8 @@
1655 "xloc": [
1656 "default-mobile.handlebars->9->177",
1657 "default-mobile.handlebars->9->179",
1648 - "default.handlebars->25->448",
1649 - "default.handlebars->25->450"
1658 + "default.handlebars->25->455",
1659 + "default.handlebars->25->457"
1660 ]
1661 },
1662 {
@@ -1659,8 +1669,8 @@
1669 "pt": "Ativação",
1670 "ru": "Активация",
1671 "xloc": [
1662 - "default.handlebars->25->1015",
1663 - "default.handlebars->25->1017",
1672 + "default.handlebars->25->1022",
1673 + "default.handlebars->25->1024",
1674 "default.handlebars->25->230",
1675 "default.handlebars->25->232"
1676 ]
@@ -1673,9 +1683,9 @@
1683 "ja": "アクティブユーザー{0}",
1684 "nl": "Actieve gebruikers{0}",
1685 "pt": "Usuário ativo {0}",
1676 - "ru": "Активный ползьзователь{0}",
1686 + "ru": "Активный пользователь",
1687 "xloc": [
1678 - "default.handlebars->25->474"
1688 + "default.handlebars->25->481"
1689 ]
1690 },
1691 {
@@ -1717,7 +1727,7 @@
1727 "pt": "Adicionar evento do dispositivo",
1728 "ru": "Добавить событие к устройству",
1729 "xloc": [
1720 - "default.handlebars->25->522"
1730 + "default.handlebars->25->529"
1731 ]
1732 },
1733 {
@@ -1731,10 +1741,10 @@
1741 "pt": "Adicionar grupo de dispositivos",
1742 "ru": "Добавить группу устройств",
1743 "xloc": [
1734 - "default.handlebars->25->1102",
1735 - "default.handlebars->25->1104",
1736 - "default.handlebars->25->1286",
1737 - "default.handlebars->25->1360",
1744 + "default.handlebars->25->1109",
1745 + "default.handlebars->25->1111",
1746 + "default.handlebars->25->1293",
1747 + "default.handlebars->25->1367",
1748 "default.handlebars->25->205"
1749 ]
1750 },
@@ -1796,8 +1806,9 @@
1806 "en": "Add Membership",
1807 "es": "Agregar Miembros",
1808 "nl": "Lidmaatschap toevoegen",
1809 + "ru": "Добавить участие",
1810 "xloc": [
1800 - "default.handlebars->25->1379"
1811 + "default.handlebars->25->1386"
1812 ]
1813 },
1814 {
@@ -1808,7 +1819,7 @@
1819 "ja": "メッシュエージェントを追加",
1820 "nl": "Toevoegen Mesh agent",
1821 "pt": "Adicionar agente de malha",
1811 - "ru": "Добавить Mesh Агент",
1822 + "ru": "Добавить Mesh Agent",
1823 "xloc": [
1824 "default.handlebars->25->346"
1825 ]
@@ -1828,8 +1839,8 @@
1839 "default.handlebars->25->148",
1840 "default.handlebars->25->151",
1841 "default.handlebars->25->152",
1831 - "default.handlebars->25->712",
1832 - "default.handlebars->25->713"
1842 + "default.handlebars->25->719",
1843 + "default.handlebars->25->720"
1844 ]
1845 },
1846 {
@@ -1838,10 +1849,11 @@
1849 "en": "Add User Group",
1850 "es": "Agregar Grupos de Usuarios",
1851 "nl": "Gebruikersgroep toevoegen",
1852 + "ru": "Добавить группу пользователей",
1853 "xloc": [
1842 - "default.handlebars->25->1009",
1843 - "default.handlebars->25->1103",
1844 - "default.handlebars->25->1369"
1854 + "default.handlebars->25->1016",
1855 + "default.handlebars->25->1110",
1856 + "default.handlebars->25->1376"
1857 ]
1858 },
1859 {
@@ -1853,7 +1865,7 @@
1865 "ja": "メッシュにユーザーを追加",
1866 "nl": "Gebruiker toevoegen aan Mesh",
1867 "pt": "Adicionar usuário à malha",
1856 - "ru": "Добавить пользователя к Mesh",
1868 + "ru": "Добавить пользователя в Mesh",
1869 "xloc": [
1870 "default-mobile.handlebars->9->309"
1871 ]
@@ -1869,8 +1881,8 @@
1881 "pt": "Adicionar usuários",
1882 "ru": "Добавить пользователей",
1883 "xloc": [
1872 - "default.handlebars->25->1008",
1873 - "default.handlebars->25->1281"
1884 + "default.handlebars->25->1015",
1885 + "default.handlebars->25->1288"
1886 ]
1887 },
1888 {
@@ -1881,9 +1893,9 @@
1893 "ja": "ユーザーをデバイスグループに追加する",
1894 "nl": "Gebruikers toevoegen aan apparaatgroep",
1895 "pt": "Adicionar usuários ao grupo de dispositivos",
1884 - "ru": "Добавить пользователей к Группам устройств",
1896 + "ru": "Добавить пользователей в группу устройств",
1897 "xloc": [
1886 - "default.handlebars->25->1101"
1898 + "default.handlebars->25->1108"
1899 ]
1900 },
1901 {
@@ -1892,8 +1904,9 @@
1904 "en": "Add Users to User Group",
1905 "es": "Agregar Usuarios a un Grupo",
1906 "nl": "Voeg gebruikers toe aan de gebruikersgroep",
1907 + "ru": "Добавить пользователей в группу",
1908 "xloc": [
1896 - "default.handlebars->25->1309"
1909 + "default.handlebars->25->1316"
1910 ]
1911 },
1912 {
@@ -1932,7 +1945,7 @@
1945 "pt": "Adicione um novo Intel&reg; Computador AMT localizado na Internet.",
1946 "ru": "Добавить новый Intel&reg; AMT компьютер, находящийся в интернете.",
1947 "xloc": [
1935 - "default.handlebars->25->1010",
1948 + "default.handlebars->25->1017",
1949 "default.handlebars->25->223"
1950 ]
1951 },
@@ -1946,7 +1959,7 @@
1959 "pt": "Adicione um novo Intel&reg; AMT computer that is located on the local network.",
1960 "ru": "Добавить новый Intel&reg; AMT компьютер, находящийся в локальной сети.",
1961 "xloc": [
1949 - "default.handlebars->25->1012",
1962 + "default.handlebars->25->1019",
1963 "default.handlebars->25->225"
1964 ]
1965 },
@@ -1971,9 +1984,9 @@
1984 "ja": "メッシュエージェントをインストールして、このメッシュに新しいコンピューターを追加します。",
1985 "nl": "Voeg een nieuwe computer toe aan deze mesh door de mesh-agent te installeren.",
1986 "pt": "Adicione um novo computador a essa malha instalando o agente de malha.",
1974 - "ru": "Добавить новый компьютер к этой сети инсталированием меш агента.",
1987 + "ru": "Добавить новый компьютер к этой сети установкой Mesh Agent.",
1988 "xloc": [
1976 - "default.handlebars->25->1018",
1989 + "default.handlebars->25->1025",
1990 "default.handlebars->25->233"
1991 ]
1992 },
@@ -2000,7 +2013,7 @@
2013 "pt": "Endereços",
2014 "ru": "Адреса",
2015 "xloc": [
2003 - "player.htm->3->7"
2016 + "player.handlebars->3->7"
2017 ]
2018 },
2019 {
@@ -2010,7 +2023,7 @@
2023 "es": "Administrar Powershell",
2024 "ja": "管理者PowerShell",
2025 "nl": "Beheerder PowerShell",
2013 - "ru": "Админ PowerShell",
2026 + "ru": "Admin PowerShell",
2027 "xloc": [
2028 "default.handlebars->termShellContextMenu->cxtermps",
2029 "xterm.handlebars->termShellContextMenu->cxtermps"
@@ -2024,9 +2037,9 @@
2037 "ja": "管理レルム",
2038 "nl": "Beheerdersgebied",
2039 "pt": "Admin Realms",
2027 - "ru": "Oбласти Aдминистратора",
2040 + "ru": "Области администратора",
2041 "xloc": [
2029 - "default.handlebars->25->1335"
2042 + "default.handlebars->25->1342"
2043 ]
2044 },
2045 {
@@ -2036,7 +2049,7 @@
2049 "es": "Administrar Shell",
2050 "ja": "管理シェル",
2051 "nl": "Beheerder Shell",
2039 - "ru": "Админ Shell",
2052 + "ru": "Admin Shell",
2053 "xloc": [
2054 "default.handlebars->termShellContextMenu->cxtermnorm->0",
2055 "xterm.handlebars->termShellContextMenu->cxtermnorm->0"
@@ -2050,9 +2063,9 @@
2063 "ja": "管理レルム",
2064 "nl": "Administratieve gebieden",
2065 "pt": "Domínios Administrativos",
2053 - "ru": "Административные Области",
2066 + "ru": "Административные области",
2067 "xloc": [
2055 - "default.handlebars->25->1251"
2068 + "default.handlebars->25->1258"
2069 ]
2070 },
2071 {
@@ -2065,7 +2078,7 @@
2078 "pt": "Administrador",
2079 "ru": "Администратор",
2080 "xloc": [
2068 - "default.handlebars->25->1213"
2081 + "default.handlebars->25->1220"
2082 ]
2083 },
2084 {
@@ -2078,7 +2091,7 @@
2091 "pt": "afrikaans",
2092 "ru": "Африканский",
2093 "xloc": [
2081 - "default.handlebars->25->715"
2094 + "default.handlebars->25->722"
2095 ]
2096 },
2097 {
@@ -2095,8 +2108,8 @@
2108 "default-mobile.handlebars->9->121",
2109 "default-mobile.handlebars->9->174",
2110 "default-mobile.handlebars->9->190",
2098 - "default.handlebars->25->1138",
2099 - "default.handlebars->25->1144",
2111 + "default.handlebars->25->1145",
2112 + "default.handlebars->25->1151",
2113 "default.handlebars->25->184",
2114 "default.handlebars->25->371",
2115 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -2108,9 +2121,10 @@
2121 "en": "Agent + Intel AMT",
2122 "es": "Agente + Intel AMT",
2123 "nl": "Agent + Intel AMT",
2124 + "ru": "Агент + Intel AMT",
2125 "xloc": [
2112 - "default.handlebars->25->1140",
2113 - "default.handlebars->25->1146"
2126 + "default.handlebars->25->1147",
2127 + "default.handlebars->25->1153"
2128 ]
2129 },
2130 {
@@ -2121,7 +2135,7 @@
2135 "ja": "エージェントアクション",
2136 "nl": "Agent actie",
2137 "pt": "Ação do agente",
2124 - "ru": "Действие Агента",
2138 + "ru": "Управление агентом",
2139 "xloc": [
2140 "default.handlebars->container->column_l->p15->consoleTable->1->0->1->1"
2141 ]
@@ -2137,7 +2151,7 @@
2151 "ru": "Консоль агента",
2152 "xloc": [
2153 "default-mobile.handlebars->9->315",
2140 - "default.handlebars->25->1112"
2154 + "default.handlebars->25->1119"
2155 ]
2156 },
2157 {
@@ -2146,8 +2160,15 @@
2160 "en": "Agent Error Counters",
2161 "es": "Contador de errores del Agente",
2162 "nl": "Agent fout tellers",
2163 + "ru": "Счетчик ошибок агента",
2164 "xloc": [
2150 - "default.handlebars->25->1391"
2165 + "default.handlebars->25->1398"
2166 + ]
2167 + },
2168 + {
2169 + "en": "Agent Installation",
2170 + "xloc": [
2171 + "agentinvite.handlebars->3->3"
2172 ]
2173 },
2174 {
@@ -2158,7 +2179,7 @@
2179 "ja": "エージェントリレー",
2180 "nl": "Agent Relay",
2181 "pt": "Retransmissão do agente",
2161 - "ru": "Реле Агента",
2182 + "ru": "Ретранслятор агента",
2183 "xloc": [
2184 "default-mobile.handlebars->9->193"
2185 ]
@@ -2183,8 +2204,9 @@
2204 "en": "Agent Sessions",
2205 "es": "Sesiones del Agente",
2206 "nl": "Agent Sessies",
2207 + "ru": "Сессии агентов",
2208 "xloc": [
2187 - "default.handlebars->25->1407"
2209 + "default.handlebars->25->1414"
2210 ]
2211 },
2212 {
@@ -2198,7 +2220,7 @@
2220 "ru": "Тег агента",
2221 "xloc": [
2222 "default-mobile.handlebars->9->189",
2201 - "default.handlebars->25->467"
2223 + "default.handlebars->25->474"
2224 ]
2225 },
2226 {
@@ -2207,8 +2229,9 @@
2229 "en": "Agent Types",
2230 "es": "Tipos de Agente",
2231 "nl": "Agent Type",
2232 + "ru": "Типы агента",
2233 "xloc": [
2211 - "default.handlebars->25->1142",
2234 + "default.handlebars->25->1149",
2235 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
2236 ]
2237 },
@@ -2223,8 +2246,8 @@
2246 "ru": "Агент подключен",
2247 "xloc": [
2248 "default.handlebars->25->154",
2226 - "default.handlebars->25->513",
2227 - "default.handlebars->25->514"
2249 + "default.handlebars->25->520",
2250 + "default.handlebars->25->521"
2251 ]
2252 },
2253 {
@@ -2250,7 +2273,7 @@
2273 "pt": "O agente está offline",
2274 "ru": "Агент оффлайн",
2275 "xloc": [
2253 - "default.handlebars->25->686"
2276 + "default.handlebars->25->693"
2277 ]
2278 },
2279 {
@@ -2263,7 +2286,7 @@
2286 "pt": "Agente está online",
2287 "ru": "Агент онлайн",
2288 "xloc": [
2266 - "default.handlebars->25->685"
2289 + "default.handlebars->25->692"
2290 ]
2291 },
2292 {
@@ -2276,7 +2299,7 @@
2299 "pt": "Agentes",
2300 "ru": "Агенты",
2301 "xloc": [
2279 - "default.handlebars->25->1420"
2302 + "default.handlebars->25->1427"
2303 ]
2304 },
2305 {
@@ -2289,7 +2312,7 @@
2312 "pt": "albanês",
2313 "ru": "Албанский",
2314 "xloc": [
2292 - "default.handlebars->25->716"
2315 + "default.handlebars->25->723"
2316 ]
2317 },
2318 {
@@ -2316,7 +2339,7 @@
2339 "ja": "すべてのディスプレイ",
2340 "nl": "alle schermen",
2341 "pt": "Todas as telas",
2319 - "ru": "Все Экраны",
2342 + "ru": "Все экраны",
2343 "xloc": [
2344 "default-mobile.handlebars->9->233"
2345 ]
@@ -2331,9 +2354,9 @@
2354 "pt": "All Focus",
2355 "ru": "Фокусирование всех",
2356 "xloc": [
2334 - "default.handlebars->25->601",
2335 - "default.handlebars->25->603",
2336 - "default.handlebars->25->604"
2357 + "default.handlebars->25->608",
2358 + "default.handlebars->25->610",
2359 + "default.handlebars->25->611"
2360 ]
2361 },
2362 {
@@ -2347,8 +2370,8 @@
2370 "pt": "Permitir que os usuários gerenciem esse grupo de dispositivos e dispositivos neste grupo.",
2371 "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.",
2372 "xloc": [
2350 - "default.handlebars->25->1076",
2351 - "default.handlebars->25->1306"
2373 + "default.handlebars->25->1083",
2374 + "default.handlebars->25->1313"
2375 ]
2376 },
2377 {
@@ -2389,12 +2412,13 @@
2412 "pt": "Alternativo (F10 = ESC + 0)",
2413 "ru": "Поменять (F10 = ESC+0)",
2414 "xloc": [
2392 - "default.handlebars->25->635"
2415 + "default.handlebars->25->642"
2416 ]
2417 },
2418 {
2419 "en": "Alternate Port",
2420 "nl": "Alternatieve poort",
2421 + "ru": "Поменять порт",
2422 "xloc": [
2423 "default.handlebars->altPortContextMenu->cxaltport->0"
2424 ]
@@ -2410,7 +2434,7 @@
2434 "pt": "Notificar sempre",
2435 "ru": "Всегда уведомлять",
2436 "xloc": [
2413 - "default.handlebars->25->991"
2437 + "default.handlebars->25->998"
2438 ]
2439 },
2440 {
@@ -2421,9 +2445,9 @@
2445 "ja": "常にプロンプ​​ト",
2446 "nl": "Altijd prompt",
2447 "pt": "Sempre alerta",
2424 - "ru": "Всегда напоминать",
2448 + "ru": "Всегда запрашивать",
2449 "xloc": [
2426 - "default.handlebars->25->992"
2450 + "default.handlebars->25->999"
2451 ]
2452 },
2453 {
@@ -2434,7 +2458,7 @@
2458 "ja": "Android APK",
2459 "nl": "Android APK",
2460 "pt": "Android APK",
2437 - "ru": "Андроид APK",
2461 + "ru": "Android APK",
2462 "xloc": [
2463 "default-mobile.handlebars->9->157",
2464 "default.handlebars->25->27"
@@ -2448,7 +2472,7 @@
2472 "ja": "Android ARM",
2473 "nl": "Android ARM",
2474 "pt": "Android ARM",
2451 - "ru": "Андроид ARM",
2475 + "ru": "Android ARM",
2476 "xloc": [
2477 "default-mobile.handlebars->9->152",
2478 "default.handlebars->25->22"
@@ -2462,7 +2486,7 @@
2486 "ja": "Android x86",
2487 "nl": "Android x86",
2488 "pt": "Android x86",
2465 - "ru": "Андроид x86",
2489 + "ru": "Android x86",
2490 "xloc": [
2491 "default-mobile.handlebars->9->155",
2492 "default.handlebars->25->25"
@@ -2479,7 +2503,7 @@
2503 "pt": "Antivírus",
2504 "ru": "Антивирус",
2505 "xloc": [
2482 - "default.handlebars->25->473"
2506 + "default.handlebars->25->480"
2507 ]
2508 },
2509 {
@@ -2490,7 +2514,7 @@
2514 "ja": "サポートされているもの",
2515 "nl": "Alle ondersteunde",
2516 "pt": "Qualquer suportado",
2493 - "ru": "Все поддерживаемые",
2517 + "ru": "Любые поддерживаемые",
2518 "xloc": [
2519 "default.handlebars->25->287"
2520 ]
@@ -2543,7 +2567,7 @@
2567 "pt": "Árabe (Argélia)",
2568 "ru": "Арабский (Алжир)",
2569 "xloc": [
2546 - "default.handlebars->25->718"
2570 + "default.handlebars->25->725"
2571 ]
2572 },
2573 {
@@ -2555,7 +2579,7 @@
2579 "pt": "Árabe (Bahrain)",
2580 "ru": "Арабский (Бахрейн)",
2581 "xloc": [
2558 - "default.handlebars->25->719"
2582 + "default.handlebars->25->726"
2583 ]
2584 },
2585 {
@@ -2567,7 +2591,7 @@
2591 "pt": "Árabe (Egito)",
2592 "ru": "Арабский (Египет)",
2593 "xloc": [
2570 - "default.handlebars->25->720"
2594 + "default.handlebars->25->727"
2595 ]
2596 },
2597 {
@@ -2579,7 +2603,7 @@
2603 "pt": "Árabe (Iraque)",
2604 "ru": "Арабский (Ирак)",
2605 "xloc": [
2582 - "default.handlebars->25->721"
2606 + "default.handlebars->25->728"
2607 ]
2608 },
2609 {
@@ -2591,7 +2615,7 @@
2615 "pt": "Árabe (Jordânia)",
2616 "ru": "Арабский (Иордания)",
2617 "xloc": [
2594 - "default.handlebars->25->722"
2618 + "default.handlebars->25->729"
2619 ]
2620 },
2621 {
@@ -2603,7 +2627,7 @@
2627 "pt": "Árabe (Kuwait)",
2628 "ru": "Арабский (Кувейт)",
2629 "xloc": [
2606 - "default.handlebars->25->723"
2630 + "default.handlebars->25->730"
2631 ]
2632 },
2633 {
@@ -2615,7 +2639,7 @@
2639 "pt": "Árabe (Líbano)",
2640 "ru": "Арабский (Ливан)",
2641 "xloc": [
2618 - "default.handlebars->25->724"
2642 + "default.handlebars->25->731"
2643 ]
2644 },
2645 {
@@ -2627,7 +2651,7 @@
2651 "pt": "Árabe (Líbia)",
2652 "ru": "Арабский (Ливия)",
2653 "xloc": [
2630 - "default.handlebars->25->725"
2654 + "default.handlebars->25->732"
2655 ]
2656 },
2657 {
@@ -2639,7 +2663,7 @@
2663 "pt": "Árabe (Marrocos)",
2664 "ru": "Арабский (Марокко)",
2665 "xloc": [
2642 - "default.handlebars->25->726"
2666 + "default.handlebars->25->733"
2667 ]
2668 },
2669 {
@@ -2651,7 +2675,7 @@
2675 "pt": "Árabe (Omã)",
2676 "ru": "Арабский (Оман)",
2677 "xloc": [
2654 - "default.handlebars->25->727"
2678 + "default.handlebars->25->734"
2679 ]
2680 },
2681 {
@@ -2663,7 +2687,7 @@
2687 "pt": "Árabe (Catar)",
2688 "ru": "Арабский (Катар)",
2689 "xloc": [
2666 - "default.handlebars->25->728"
2690 + "default.handlebars->25->735"
2691 ]
2692 },
2693 {
@@ -2675,7 +2699,7 @@
2699 "pt": "Árabe (Arábia Saudita)",
2700 "ru": "Арабский (Саудовская Аравия)",
2701 "xloc": [
2678 - "default.handlebars->25->729"
2702 + "default.handlebars->25->736"
2703 ]
2704 },
2705 {
@@ -2687,7 +2711,7 @@
2711 "pt": "Árabe (padrão)",
2712 "ru": "Арабский (стандартный)",
2713 "xloc": [
2690 - "default.handlebars->25->717"
2714 + "default.handlebars->25->724"
2715 ]
2716 },
2717 {
@@ -2699,7 +2723,7 @@
2723 "pt": "Árabe (Síria)",
2724 "ru": "Арабский (Сирия)",
2725 "xloc": [
2702 - "default.handlebars->25->730"
2726 + "default.handlebars->25->737"
2727 ]
2728 },
2729 {
@@ -2711,7 +2735,7 @@
2735 "pt": "Árabe (Tunísia)",
2736 "ru": "Арабский (Тунис)",
2737 "xloc": [
2714 - "default.handlebars->25->731"
2738 + "default.handlebars->25->738"
2739 ]
2740 },
2741 {
@@ -2723,7 +2747,7 @@
2747 "pt": "Árabe (U.A.E)",
2748 "ru": "Арабский (О.А.Э.)",
2749 "xloc": [
2726 - "default.handlebars->25->732"
2750 + "default.handlebars->25->739"
2751 ]
2752 },
2753 {
@@ -2735,7 +2759,7 @@
2759 "pt": "Árabe (Iêmen)",
2760 "ru": "Арабский (Йемен)",
2761 "xloc": [
2738 - "default.handlebars->25->733"
2762 + "default.handlebars->25->740"
2763 ]
2764 },
2765 {
@@ -2747,7 +2771,7 @@
2771 "pt": "Aragonês",
2772 "ru": "Арагонский",
2773 "xloc": [
2750 - "default.handlebars->25->734"
2774 + "default.handlebars->25->741"
2775 ]
2776 },
2777 {
@@ -2771,7 +2795,7 @@
2795 "es": "¿Está seguro de que desea conectarse a {0} dispositivos?",
2796 "ja": "{0}台のデバイスに接続してもよろしいですか?",
2797 "nl": "Weet u zeker dat u verbinding wilt maken met {0} apparaten?",
2774 - "ru": "Вы уверенны, что хотите подключиться к {0} устройствам?",
2798 + "ru": "Вы действительно хотите подключиться к {0} устройствам?",
2799 "xloc": [
2800 "default.handlebars->25->218"
2801 ]
@@ -2785,10 +2809,10 @@
2809 "ja": "グループ{0}を削除してもよろしいですか?デバイスグループを削除すると、このグループ内のデバイスに関するすべての情報も削除されます。",
2810 "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.",
2811 "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.",
2788 - "ru": "Вы уверенны, что хотите удалить группу {0}? Удаление группы приведет к удалению всей информации связанной с устройствами в этой группе.",
2812 + "ru": "Вы действительно хотите удалить группу \\\"{0}\\\"? Удаление группы приведет к удалению всей информации связанной с устройствами в этой группе.",
2813 "xloc": [
2814 "default-mobile.handlebars->9->286",
2791 - "default.handlebars->25->1056"
2815 + "default.handlebars->25->1063"
2816 ]
2817 },
2818 {
@@ -2800,9 +2824,9 @@
2824 "ja": "ノード{0}を削除してもよろしいですか?",
2825 "nl": "Weet u zeker dat u apparaat {0} wilt verwijderen?",
2826 "pt": "Tem certeza de que deseja excluir o nó {0}?",
2803 - "ru": "Вы уверенны, что хотите удалить узел {0}?",
2827 + "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?",
2828 "xloc": [
2805 - "default.handlebars->25->561"
2829 + "default.handlebars->25->568"
2830 ]
2831 },
2832 {
@@ -2812,9 +2836,9 @@
2836 "es": "¿Está seguro de que desea desinstalar el agente seleccionado?",
2837 "ja": "選択したエージェントをアンインストールしてもよろしいですか?",
2838 "nl": "Weet u zeker dat u de geselecteerde agent wilt verwijderen?",
2815 - "ru": "Вы уверенны, что хотите деинсталировать избранного агента?",
2839 + "ru": "Вы действительно хотите деинсталировать выбранного агента?",
2840 "xloc": [
2817 - "default.handlebars->25->550"
2841 + "default.handlebars->25->557"
2842 ]
2843 },
2844 {
@@ -2824,9 +2848,9 @@
2848 "es": "¿Está seguro de que desea desinstalar los {0} agentes seleccionados?",
2849 "ja": "選択した{0}エージェントをアンインストールしてもよろしいですか?",
2850 "nl": "Weet u zeker dat u de geselecteerde {0} agenten wilt verwijderen?",
2827 - "ru": "Вы уверенны, что хотите деинсталировать избранных {0} агентов?",
2851 + "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?",
2852 "xloc": [
2829 - "default.handlebars->25->549"
2853 + "default.handlebars->25->556"
2854 ]
2855 },
2856 {
@@ -2838,7 +2862,7 @@
2862 "nl": "Weet u zeker dat u de plug-in {0} wilt gebruiken: {1}",
2863 "ru": "Вы уверенны, что {0} плагин: {1}",
2864 "xloc": [
2841 - "default.handlebars->25->1455"
2865 + "default.handlebars->25->1462"
2866 ]
2867 },
2868 {
@@ -2848,9 +2872,9 @@
2872 "ja": "アルメニア人",
2873 "nl": "Armeens",
2874 "pt": "Armênio",
2851 - "ru": "Арменский",
2875 + "ru": "Армянский",
2876 "xloc": [
2853 - "default.handlebars->25->735"
2877 + "default.handlebars->25->742"
2878 ]
2879 },
2880 {
@@ -2862,7 +2886,7 @@
2886 "pt": "Assamese",
2887 "ru": "Ассамский",
2888 "xloc": [
2865 - "default.handlebars->25->736"
2889 + "default.handlebars->25->743"
2890 ]
2891 },
2892 {
@@ -2874,7 +2898,7 @@
2898 "pt": "Asturiano",
2899 "ru": "Астурии",
2900 "xloc": [
2877 - "default.handlebars->25->737"
2901 + "default.handlebars->25->744"
2902 ]
2903 },
2904 {
@@ -2887,7 +2911,7 @@
2911 "pt": "Aplicativo de autenticação",
2912 "ru": "Приложение аутентификации",
2913 "xloc": [
2890 - "default.handlebars->25->1336"
2914 + "default.handlebars->25->1343"
2915 ]
2916 },
2917 {
@@ -2898,7 +2922,7 @@
2922 "ja": "認証アプリ",
2923 "nl": "Verificatie-app",
2924 "pt": "Autenticador de aplicativo",
2901 - "ru": "Приложение для аутентификации",
2925 + "ru": "Приложение-аутентификатор",
2926 "xloc": [
2927 "default-mobile.handlebars->9->18",
2928 "default-mobile.handlebars->9->21",
@@ -2906,8 +2930,8 @@
2930 "default-mobile.handlebars->9->32",
2931 "default.handlebars->25->122",
2932 "default.handlebars->25->127",
2909 - "default.handlebars->25->701",
2910 - "default.handlebars->25->703"
2933 + "default.handlebars->25->708",
2934 + "default.handlebars->25->710"
2935 ]
2936 },
2937 {
@@ -2945,7 +2969,7 @@
2969 "ja": "オート",
2970 "nl": "Automatisch",
2971 "pt": "Auto",
2948 - "ru": "Автоматичеки",
2972 + "ru": "Автоматически",
2973 "xloc": [
2974 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar->5",
2975 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSizeDropDown->termSizeList->2"
@@ -2959,9 +2983,9 @@
2983 "ja": "自動削除",
2984 "nl": "Geautomatiseerde verwijdering",
2985 "pt": "Remover automaticamente",
2962 - "ru": "Авто-Удаление",
2986 + "ru": "Автоудаление",
2987 "xloc": [
2964 - "default.handlebars->25->979"
2988 + "default.handlebars->25->986"
2989 ]
2990 },
2991 {
@@ -2972,7 +2996,7 @@
2996 "ja": "自動接続",
2997 "nl": "Automatisch verbinden",
2998 "pt": "Conexão automática",
2975 - "ru": "Авто подключение",
2999 + "ru": "Автоподключение",
3000 "xloc": [
3001 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
3002 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3",
@@ -3003,7 +3027,7 @@
3027 "pt": "Azerbaijão",
3028 "ru": "Азербайджанский",
3029 "xloc": [
3006 - "default.handlebars->25->738"
3030 + "default.handlebars->25->745"
3031 ]
3032 },
3033 {
@@ -3059,7 +3083,7 @@
3083 "ja": "ログインに戻る",
3084 "nl": "Terug naar inloggen",
3085 "pt": "Volte ao login",
3062 - "ru": "Обратно к логин экрану",
3086 + "ru": "Обратно к экрану входа",
3087 "xloc": [
3088 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->12",
3089 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->10",
@@ -3081,7 +3105,7 @@
3105 "ja": "背景とインタラクティブ",
3106 "nl": "Achtergrond & interactief",
3107 "pt": "Segundo plano e interativo",
3084 - "ru": "Фоновый и интерактивный режимы",
3108 + "ru": "Фоновый и интерактивный",
3109 "xloc": [
3110 "default.handlebars->25->321"
3111 ]
@@ -3094,7 +3118,7 @@
3118 "ja": "背景とインタラクティブ",
3119 "nl": "Achtergrond en interactief",
3120 "pt": "Segundo plano e interativo",
3097 - "ru": "Фоновый и интерактивный режимы",
3121 + "ru": "Фоновый и интерактивный",
3122 "xloc": [
3123 "default.handlebars->25->299"
3124 ]
@@ -3107,7 +3131,7 @@
3131 "ja": "背景のみ",
3132 "nl": "Alleen achtergrond",
3133 "pt": "Apenas em segundo plano",
3110 - "ru": "Только в фоновом режиме",
3134 + "ru": "Только фоновый",
3135 "xloc": [
3136 "default.handlebars->25->300",
3137 "default.handlebars->25->322"
@@ -3122,7 +3146,7 @@
3146 "ja": "バックスペース",
3147 "nl": "Backspace",
3148 "pt": "Excluir",
3125 - "ru": "Бекспейс",
3149 + "ru": "Backspace",
3150 "xloc": [
3151 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3"
3152 ]
@@ -3135,9 +3159,9 @@
3159 "ja": "バックアップコード",
3160 "nl": "Back-up codes",
3161 "pt": "Códigos de backup",
3138 - "ru": "Коды бэкапа",
3162 + "ru": "Резервные коды",
3163 "xloc": [
3140 - "default.handlebars->25->1338"
3164 + "default.handlebars->25->1345"
3165 ]
3166 },
3167 {
@@ -3146,8 +3170,9 @@
3170 "en": "Bad Signature",
3171 "es": "Firma Erronea",
3172 "nl": "Ongeldige handtening",
3173 + "ru": "Плохой ключ",
3174 "xloc": [
3150 - "default.handlebars->25->1398"
3175 + "default.handlebars->25->1405"
3176 ]
3177 },
3178 {
@@ -3156,8 +3181,9 @@
3181 "en": "Bad Web Certificate",
3182 "es": "Cenrtificado Web Erroneo",
3183 "nl": "Onjuist webcertificaat",
3184 + "ru": "Плохой веб-сертификат",
3185 "xloc": [
3160 - "default.handlebars->25->1397"
3186 + "default.handlebars->25->1404"
3187 ]
3188 },
3189 {
@@ -3169,7 +3195,7 @@
3195 "pt": "Basco",
3196 "ru": "Баскский",
3197 "xloc": [
3172 - "default.handlebars->25->739"
3198 + "default.handlebars->25->746"
3199 ]
3200 },
3201 {
@@ -3180,7 +3206,7 @@
3206 "ja": "多数のユーザーアカウントをバッチ作成する",
3207 "nl": "Gebruikersaccounts aanmaken in batch",
3208 "pt": "Lote criar muitas contas de usuário",
3183 - "ru": "Пакетное создание многих учетных записей пользователей",
3209 + "ru": "Пакетное создание нескольких учетных записей пользователей",
3210 "xloc": [
3211 "default.handlebars->container->column_l->p4->3->1->0->3->1->5"
3212 ]
@@ -3194,7 +3220,7 @@
3220 "pt": "Bielorrusso",
3221 "ru": "Белорусский",
3222 "xloc": [
3197 - "default.handlebars->25->741"
3223 + "default.handlebars->25->748"
3224 ]
3225 },
3226 {
@@ -3206,7 +3232,7 @@
3232 "pt": "Bengali",
3233 "ru": "Бенгальский",
3234 "xloc": [
3209 - "default.handlebars->25->742"
3235 + "default.handlebars->25->749"
3236 ]
3237 },
3238 {
@@ -3218,7 +3244,7 @@
3244 "pt": "Bósnia",
3245 "ru": "Боснийский",
3246 "xloc": [
3221 - "default.handlebars->25->743"
3247 + "default.handlebars->25->750"
3248 ]
3249 },
3250 {
@@ -3230,7 +3256,7 @@
3256 "pt": "Breton",
3257 "ru": "Бретонский",
3258 "xloc": [
3233 - "default.handlebars->25->744"
3259 + "default.handlebars->25->751"
3260 ]
3261 },
3262 {
@@ -3242,9 +3268,9 @@
3268 "ja": "放送",
3269 "nl": "Uitzending",
3270 "pt": "Broadcast",
3245 - "ru": "Отправить сообщение...",
3271 + "ru": "Отправить сообщение",
3272 "xloc": [
3247 - "default.handlebars->25->1279",
3273 + "default.handlebars->25->1286",
3274 "default.handlebars->container->column_l->p4->3->1->0->3->1"
3275 ]
3276 },
@@ -3259,7 +3285,7 @@
3285 "pt": "Mensagem de transmissão",
3286 "ru": "Отправить сообщение",
3287 "xloc": [
3262 - "default.handlebars->25->1236"
3288 + "default.handlebars->25->1243"
3289 ]
3290 },
3291 {
@@ -3272,7 +3298,7 @@
3298 "pt": "Transmita uma mensagem para todos os usuários conectados.",
3299 "ru": "Отправить сообщение всем подключенным пользователям.",
3300 "xloc": [
3275 - "default.handlebars->25->1235"
3301 + "default.handlebars->25->1242"
3302 ]
3303 },
3304 {
@@ -3284,7 +3310,7 @@
3310 "pt": "Búlgaria",
3311 "ru": "Болгарский",
3312 "xloc": [
3287 - "default.handlebars->25->740"
3313 + "default.handlebars->25->747"
3314 ]
3315 },
3316 {
@@ -3296,7 +3322,7 @@
3322 "pt": "Birmanês",
3323 "ru": "Бирманский",
3324 "xloc": [
3299 - "default.handlebars->25->745"
3325 + "default.handlebars->25->752"
3326 ]
3327 },
3328 {
@@ -3310,7 +3336,7 @@
3336 "ru": "CCM",
3337 "xloc": [
3338 "default-mobile.handlebars->9->181",
3313 - "default.handlebars->25->453"
3339 + "default.handlebars->25->460"
3340 ]
3341 },
3342 {
@@ -3324,8 +3350,8 @@
3350 "ru": "CIRA",
3351 "xloc": [
3352 "default-mobile.handlebars->9->122",
3327 - "default.handlebars->25->1044",
3328 - "default.handlebars->25->1049",
3353 + "default.handlebars->25->1051",
3354 + "default.handlebars->25->1056",
3355 "default.handlebars->25->186",
3356 "default.handlebars->25->373"
3357 ]
@@ -3340,7 +3366,7 @@
3366 "pt": "Servidor CIRA",
3367 "ru": "CIRA Сервер",
3368 "xloc": [
3343 - "default.handlebars->25->1446"
3369 + "default.handlebars->25->1453"
3370 ]
3371 },
3372 {
@@ -3351,9 +3377,9 @@
3377 "ja": "CIRAサーバーコマンド",
3378 "nl": "CIRA Server opdrachten",
3379 "pt": "Comandos do servidor CIRA",
3354 - "ru": "CIRA Сервер комманды",
3380 + "ru": "CIRA Сервер команды",
3381 "xloc": [
3356 - "default.handlebars->25->1447"
3382 + "default.handlebars->25->1454"
3383 ]
3384 },
3385 {
@@ -3362,8 +3388,9 @@
3388 "en": "CPU Load",
3389 "es": "Carga en el CPU",
3390 "nl": "CPU gebruik",
3391 + "ru": "Загрузка CPU",
3392 "xloc": [
3366 - "default.handlebars->25->1412"
3393 + "default.handlebars->25->1419"
3394 ]
3395 },
3396 {
@@ -3374,9 +3401,9 @@
3401 "ja": "過去15分間のCPU負荷",
3402 "nl": "CPU-belasting in de afgelopen 15 minuten",
3403 "pt": "Carga da CPU nos últimos 15 minutos",
3377 - "ru": "Загрузка ЦПУ за последние 15 минут",
3404 + "ru": "Загрузка CPU за последние 15 минут",
3405 "xloc": [
3379 - "default.handlebars->25->1415"
3406 + "default.handlebars->25->1422"
3407 ]
3408 },
3409 {
@@ -3387,9 +3414,9 @@
3414 "ja": "過去5分間のCPU負荷",
3415 "nl": "CPU-belasting in de afgelopen 5 minuten",
3416 "pt": "Carga da CPU nos últimos 5 minutos",
3390 - "ru": "Загрузка ЦПУ за последние 5 минут",
3417 + "ru": "Загрузка CPU за последние 5 минут",
3418 "xloc": [
3392 - "default.handlebars->25->1414"
3419 + "default.handlebars->25->1421"
3420 ]
3421 },
3422 {
@@ -3400,9 +3427,9 @@
3427 "ja": "直前のCPU負荷",
3428 "nl": "CPU-belasting in de laatste minuut",
3429 "pt": "Carga da CPU no último minuto",
3403 - "ru": "Загрузка ЦПУ за последнюю минуту",
3430 + "ru": "Загрузка CPU за последнюю минуту",
3431 "xloc": [
3405 - "default.handlebars->25->1413"
3432 + "default.handlebars->25->1420"
3433 ]
3434 },
3435 {
@@ -3415,8 +3442,8 @@
3442 "pt": "CR + LF",
3443 "ru": "CR+LF",
3444 "xloc": [
3418 - "default.handlebars->25->628",
3419 - "default.handlebars->25->637",
3445 + "default.handlebars->25->635",
3446 + "default.handlebars->25->644",
3447 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
3448 ]
3449 },
@@ -3430,8 +3457,8 @@
3457 "pt": "Formato CSV",
3458 "ru": "Формат CSV",
3459 "xloc": [
3433 - "default.handlebars->25->1188",
3434 - "default.handlebars->25->1227"
3460 + "default.handlebars->25->1195",
3461 + "default.handlebars->25->1234"
3462 ]
3463 },
3464 {
@@ -3445,7 +3472,7 @@
3472 "pt": "Erro de chamada",
3473 "ru": "Ошибка вызова",
3474 "xloc": [
3448 - "default.handlebars->25->1456"
3475 + "default.handlebars->25->1463"
3476 ]
3477 },
3478 {
@@ -3461,11 +3488,11 @@
3488 "xloc": [
3489 "default-mobile.handlebars->9->41",
3490 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
3464 - "default.handlebars->25->964",
3491 + "default.handlebars->25->971",
3492 "default.handlebars->container->dialog->idx_dlgButtonBar",
3493 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
3494 "login.handlebars->dialog->idx_dlgButtonBar",
3468 - "player.htm->p11->dialog->idx_dlgButtonBar",
3495 + "player.handlebars->p11->dialog->idx_dlgButtonBar",
3496 "xterm.handlebars->p11->dialog->idx_dlgButtonBar"
3497 ]
3498 },
@@ -3492,7 +3519,7 @@
3519 "pt": "Catalão",
3520 "ru": "Каталонский",
3521 "xloc": [
3495 - "default.handlebars->25->746"
3522 + "default.handlebars->25->753"
3523 ]
3524 },
3525 {
@@ -3506,7 +3533,7 @@
3533 "pt": "Centralize o mapa aqui",
3534 "ru": "Установить центр карты здесь",
3535 "xloc": [
3509 - "default.handlebars->25->419"
3536 + "default.handlebars->25->426"
3537 ]
3538 },
3539 {
@@ -3519,7 +3546,7 @@
3546 "pt": "Chamorro",
3547 "ru": "Чаморро",
3548 "xloc": [
3522 - "default.handlebars->25->747"
3549 + "default.handlebars->25->754"
3550 ]
3551 },
3552 {
@@ -3530,9 +3557,9 @@
3557 "ja": "{0}のメールを変更",
3558 "nl": "Verander e-mail voor {0}",
3559 "pt": "Alterar email para {0}",
3533 - "ru": "Смена е-мейла для {0}",
3560 + "ru": "Смена email для {0}",
3561 "xloc": [
3535 - "default.handlebars->25->1351"
3562 + "default.handlebars->25->1358"
3563 ]
3564 },
3565 {
@@ -3545,9 +3572,9 @@
3572 "pt": "Alterar grupo",
3573 "ru": "Смена группы",
3574 "xloc": [
3548 - "default.handlebars->25->494",
3549 - "default.handlebars->25->558",
3550 - "default.handlebars->25->559"
3575 + "default.handlebars->25->501",
3576 + "default.handlebars->25->565",
3577 + "default.handlebars->25->566"
3578 ]
3579 },
3580 {
@@ -3558,11 +3585,11 @@
3585 "ja": "パスワードを変更する",
3586 "nl": "Verander wachtwoord",
3587 "pt": "Mudar senha",
3561 - "ru": "Смена Пароля",
3588 + "ru": "Смена пароля",
3589 "xloc": [
3590 "default-mobile.handlebars->9->49",
3564 - "default.handlebars->25->1346",
3565 - "default.handlebars->25->940"
3591 + "default.handlebars->25->1353",
3592 + "default.handlebars->25->947"
3593 ]
3594 },
3595 {
@@ -3575,7 +3602,7 @@
3602 "pt": "Alterar senha para {0}",
3603 "ru": "Смена пароля для {0}",
3604 "xloc": [
3578 - "default.handlebars->25->1358"
3605 + "default.handlebars->25->1365"
3606 ]
3607 },
3608 {
@@ -3586,7 +3613,7 @@
3613 "ja": "メールアドレスを変更する",
3614 "nl": "Verander e-mailadres",
3615 "pt": "Mude o endereço de email",
3589 - "ru": "Смена е-мейл адреса",
3616 + "ru": "Смена email",
3617 "xloc": [
3618 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->3->changeEmailId->0",
3619 "default.handlebars->container->column_l->p2->p2AccountActions->3->p2AccountPassActions->accountChangeEmailAddressSpan->0"
@@ -3642,7 +3669,7 @@
3669 "pt": "Mude o endereço de e-mail da sua conta aqui.",
3670 "ru": "Измените адрес электронной почты вашей учетной записи здесь.",
3671 "xloc": [
3645 - "default.handlebars->25->927"
3672 + "default.handlebars->25->934"
3673 ]
3674 },
3675 {
@@ -3655,7 +3682,7 @@
3682 "pt": "Altere a senha da sua conta digitando a senha antiga e a nova senha duas vezes nas caixas abaixo.",
3683 "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.",
3684 "xloc": [
3658 - "default.handlebars->25->933"
3685 + "default.handlebars->25->940"
3686 ]
3687 },
3688 {
@@ -3666,9 +3693,9 @@
3693 "ja": "言語を変更するには、ページを更新する必要があります。",
3694 "nl": "Als u de taal wilt wijzigen, moet de pagina worden ververst.",
3695 "pt": "Alterar o idioma exigirá uma atualização da página.",
3669 - "ru": "Изменение языка потребует обновления страницы.",
3696 + "ru": "Изменение языка потребует перезагрузить страницу.",
3697 "xloc": [
3671 - "default.handlebars->25->912"
3698 + "default.handlebars->25->919"
3699 ]
3700 },
3701 {
@@ -3681,7 +3708,7 @@
3708 "pt": "Chat",
3709 "ru": "Чат",
3710 "xloc": [
3684 - "default.handlebars->25->1205"
3711 + "default.handlebars->25->1212"
3712 ]
3713 },
3714 {
@@ -3692,12 +3719,12 @@
3719 "ja": "チャットと通知",
3720 "nl": "Chat & Melden",
3721 "pt": "Chat & Notificação",
3695 - "ru": "Установить чат и уведомить",
3722 + "ru": "Чаты и уведомления",
3723 "xloc": [
3724 "default-mobile.handlebars->9->307",
3725 "default-mobile.handlebars->9->325",
3699 - "default.handlebars->25->1099",
3700 - "default.handlebars->25->1122"
3726 + "default.handlebars->25->1106",
3727 + "default.handlebars->25->1129"
3728 ]
3729 },
3730 {
@@ -3710,7 +3737,7 @@
3737 "pt": "Checheno",
3738 "ru": "Чеченский",
3739 "xloc": [
3713 - "default.handlebars->25->748"
3740 + "default.handlebars->25->755"
3741 ]
3742 },
3743 {
@@ -3721,7 +3748,7 @@
3748 "ja": "チェックして[OK]をクリックし、エラーログをクリアします。",
3749 "nl": "Controleer en klik op OK om het foutenlogboek te wissen.",
3750 "pt": "Verifique e clique em OK para limpar o log de erros.",
3724 - "ru": "Поставьте отметку и жмите ОК для очищения журнала ошибок.",
3751 + "ru": "Установите флажок и нажмите ОК для очищения журнала ошибок.",
3752 "xloc": [
3753 "default.handlebars->25->119"
3754 ]
@@ -3734,7 +3761,7 @@
3761 "ja": "チェックして[OK]をクリックし、サーバーの自己更新を開始します。",
3762 "nl": "Controleer en klik op OK om de serverupdate te starten.",
3763 "pt": "Marque e clique em OK para iniciar a atualização automática do servidor.",
3737 - "ru": "Поставьте отметку и жмите ОК для начала само-обновления.",
3764 + "ru": "Установите флажок и нажмите ОК для начала самообновления.",
3765 "xloc": [
3766 "default.handlebars->25->114"
3767 ]
@@ -3747,7 +3774,7 @@
3774 "ja": "サーバーのバージョンを確認する",
3775 "nl": "Controleer server versie",
3776 "pt": "Verifique a versão do servidor",
3750 - "ru": "Проветь версию сервера",
3777 + "ru": "Проверить наличие обновлений",
3778 "xloc": [
3779 "default.handlebars->container->column_l->p6->p2ServerActions->3->p2ServerActionsVersion->0"
3780 ]
@@ -3762,8 +3789,8 @@
3789 "pt": "Verificando ...",
3790 "ru": "Проверка...",
3791 "xloc": [
3765 - "default.handlebars->25->1452",
3766 - "default.handlebars->25->714"
3792 + "default.handlebars->25->1459",
3793 + "default.handlebars->25->721"
3794 ]
3795 },
3796 {
@@ -3776,7 +3803,7 @@
3803 "pt": "Chinês",
3804 "ru": "Китайский",
3805 "xloc": [
3779 - "default.handlebars->25->749"
3806 + "default.handlebars->25->756"
3807 ]
3808 },
3809 {
@@ -3788,7 +3815,7 @@
3815 "pt": "Chinês (Hong Kong)",
3816 "ru": "Китайский (Гонконг)",
3817 "xloc": [
3791 - "default.handlebars->25->750"
3818 + "default.handlebars->25->757"
3819 ]
3820 },
3821 {
@@ -3800,7 +3827,7 @@
3827 "pt": "Chinês (PRC)",
3828 "ru": "Китайский (КНР)",
3829 "xloc": [
3803 - "default.handlebars->25->751"
3830 + "default.handlebars->25->758"
3831 ]
3832 },
3833 {
@@ -3812,7 +3839,7 @@
3839 "pt": "Chinês (Singapura)",
3840 "ru": "Китайский (Сингапур)",
3841 "xloc": [
3815 - "default.handlebars->25->752"
3842 + "default.handlebars->25->759"
3843 ]
3844 },
3845 {
@@ -3824,7 +3851,7 @@
3851 "pt": "Chinês (Taiwan)",
3852 "ru": "Китайский (Тайвань)",
3853 "xloc": [
3827 - "default.handlebars->25->753"
3854 + "default.handlebars->25->760"
3855 ]
3856 },
3857 {
@@ -3835,7 +3862,7 @@
3862 "ja": "ChromeOS",
3863 "nl": "ChromeOS",
3864 "pt": "ChromeOS",
3838 - "ru": "ХромеОС",
3865 + "ru": "ChromeOS",
3866 "xloc": [
3867 "default-mobile.handlebars->9->160",
3868 "default.handlebars->25->30"
@@ -3850,7 +3877,7 @@
3877 "pt": "Chuvash",
3878 "ru": "Чувашский",
3879 "xloc": [
3853 - "default.handlebars->25->754"
3880 + "default.handlebars->25->761"
3881 ]
3882 },
3883 {
@@ -3882,11 +3909,11 @@
3909 "default-mobile.handlebars->9->268",
3910 "default-mobile.handlebars->9->28",
3911 "default-mobile.handlebars->9->91",
3885 - "default.handlebars->25->1182",
3886 - "default.handlebars->25->663",
3887 - "default.handlebars->25->665",
3888 - "default.handlebars->25->667",
3889 - "default.handlebars->25->669",
3912 + "default.handlebars->25->1189",
3913 + "default.handlebars->25->670",
3914 + "default.handlebars->25->672",
3915 + "default.handlebars->25->674",
3916 + "default.handlebars->25->676",
3917 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
3918 "default.handlebars->container->column_l->p41->3->1",
3919 "messenger.handlebars->xbottom"
@@ -3900,7 +3927,7 @@
3927 "ja": "クリアトークン",
3928 "nl": "Wis Tokens",
3929 "pt": "Limpar Tokens",
3903 - "ru": "Очистить Токены",
3930 + "ru": "Очистить токены",
3931 "xloc": [
3932 "default.handlebars->25->136"
3933 ]
@@ -3915,7 +3942,7 @@
3942 "pt": "Limpe o núcleo",
3943 "ru": "Очистить ядро",
3944 "xloc": [
3918 - "default.handlebars->25->695"
3945 + "default.handlebars->25->702"
3946 ]
3947 },
3948 {
@@ -3939,9 +3966,9 @@
3966 "ja": "サーバー側のデバイス名を編集するにはここをクリックしてください",
3967 "nl": "Klik hier om de apparaatnaam van de server te bewerken",
3968 "pt": "clique aqui para criar um grupo de dispositivos",
3942 - "ru": "Для изменения имени устройства на сервере жмите сюда",
3969 + "ru": "Для изменения имени устройства на сервере нажмите сюда",
3970 "xloc": [
3944 - "default.handlebars->25->433"
3971 + "default.handlebars->25->440"
3972 ]
3973 },
3974 {
@@ -3952,10 +3979,10 @@
3979 "ja": "[OK]をクリックして確認メールを送信します:",
3980 "nl": "Klik op OK om een verificatiebericht te sturen naar:",
3981 "pt": "Clique em ok para enviar um email de verificação para:",
3955 - "ru": "Нажмите ок для отправки подтверждения по електронной почте:",
3982 + "ru": "Нажмите ОК для отправки подтверждения по электронной почте:",
3983 "xloc": [
3984 "default-mobile.handlebars->9->34",
3958 - "default.handlebars->25->924"
3985 + "default.handlebars->25->931"
3986 ]
3987 },
3988 {
@@ -3979,10 +4006,10 @@
4006 "ja": "クライアントが開始したリモートアクセス",
4007 "nl": "Gebruiker geïnitieerde externe toegang",
4008 "pt": "Acesso remoto iniciado pelo cliente",
3982 - "ru": "Удаленная Связь Установленая Клиентом",
4009 + "ru": "Клиент инициировал удаленный доступ",
4010 "xloc": [
3984 - "default.handlebars->25->1043",
3985 - "default.handlebars->25->1048"
4011 + "default.handlebars->25->1050",
4012 + "default.handlebars->25->1055"
4013 ]
4014 },
4015 {
@@ -4011,7 +4038,7 @@
4038 "default-mobile.handlebars->9->26",
4039 "default.handlebars->25->134",
4040 "default.handlebars->25->142",
4014 - "default.handlebars->25->621"
4041 + "default.handlebars->25->628"
4042 ]
4043 },
4044 {
@@ -4022,7 +4049,7 @@
4049 "ja": "列",
4050 "nl": "kolommen",
4051 "pt": "Colunas",
4025 - "ru": "Колонны",
4052 + "ru": "Колонки",
4053 "xloc": [
4054 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->1",
4055 "default.handlebars->container->column_l->p1->p1title->devListToolbarViewIcons"
@@ -4034,9 +4061,10 @@
4061 "en": "Common Device Groups",
4062 "es": "Grupos de Dispositivos Comunes",
4063 "nl": "Gemeenschappelijke apparaatgroepen",
4064 + "ru": "Общие группы устройств",
4065 "xloc": [
4038 - "default.handlebars->25->1287",
4039 - "default.handlebars->25->1361"
4066 + "default.handlebars->25->1294",
4067 + "default.handlebars->25->1368"
4068 ]
4069 },
4070 {
@@ -4047,10 +4075,10 @@
4075 "ja": "{1}エントリ{2}のうち{0}をこの場所に拘束しますか?",
4076 "nl": "Bevestig {0} van {1} bestand {2} naar deze locatie?",
4077 "pt": "Confirme {0} da {1} entrada {2} para este local?",
4050 - "ru": "Подтвердить {0} из {1} записи {2} в это местоположение?",
4078 + "ru": "Подтвердить {0} из {1} записей в это расположение?",
4079 "xloc": [
4080 "default-mobile.handlebars->9->86",
4053 - "default.handlebars->25->1177"
4081 + "default.handlebars->25->1184"
4082 ]
4083 },
4084 {
@@ -4065,11 +4093,11 @@
4093 "xloc": [
4094 "default-mobile.handlebars->9->220",
4095 "default-mobile.handlebars->9->287",
4068 - "default.handlebars->25->1057",
4069 - "default.handlebars->25->1302",
4096 + "default.handlebars->25->1064",
4097 + "default.handlebars->25->1309",
4098 "default.handlebars->25->396",
4071 - "default.handlebars->25->553",
4072 - "default.handlebars->25->562"
4099 + "default.handlebars->25->560",
4100 + "default.handlebars->25->569"
4101 ]
4102 },
4103 {
@@ -4080,10 +4108,10 @@
4108 "ja": "この場所への1つのエントリのコピーを確認しますか?",
4109 "nl": "Bevestig kopiëren van 1 bestand naar deze locatie?",
4110 "pt": "Confirmar cópia de 1 entrada para este local?",
4083 - "ru": "Подтвердить копию 1 записи в это место?",
4111 + "ru": "Подтвердить копирование 1 записи в это расположение?",
4112 "xloc": [
4113 "default-mobile.handlebars->9->257",
4086 - "default.handlebars->25->658"
4114 + "default.handlebars->25->665"
4115 ]
4116 },
4117 {
@@ -4094,10 +4122,10 @@
4122 "ja": "{0}エントリのコピーをこの場所に確認しますか?",
4123 "nl": "Bevestig kopiëren van {0} bestanden naar deze locatie?",
4124 "pt": "Confirmar cópia de {0} entradas para este local?",
4097 - "ru": "Подтвердить копию {0} записей в этом месте?",
4125 + "ru": "Подтвердить копирование {0} записей в это расположение?",
4126 "xloc": [
4127 "default-mobile.handlebars->9->256",
4100 - "default.handlebars->25->657"
4128 + "default.handlebars->25->664"
4129 ]
4130 },
4131 {
@@ -4121,10 +4149,10 @@
4149 "ja": "1エントリのこの場所への移動を確認しますか?",
4150 "nl": "Verplaatsing van 1 bestand naar deze locatie bevestigen?",
4151 "pt": "Confirmar a movimentação de 1 entrada para este local?",
4124 - "ru": "Подтвердить перемещение 1 записи в это место?",
4152 + "ru": "Подтвердить перемещение 1 записи в это расположение?",
4153 "xloc": [
4154 "default-mobile.handlebars->9->259",
4127 - "default.handlebars->25->660"
4155 + "default.handlebars->25->667"
4156 ]
4157 },
4158 {
@@ -4135,10 +4163,10 @@
4163 "ja": "{0}エントリのこの場所への移動を確認しますか?",
4164 "nl": "Verplaatsing van {0} bestanden naar deze locatie bevestigen?",
4165 "pt": "Confirmar a movimentação de {0} entradas para este local?",
4138 - "ru": "Подтвердить перемещение {0} записей в это место?",
4166 + "ru": "Подтвердить перемещение {0} записей в это расположение?",
4167 "xloc": [
4168 "default-mobile.handlebars->9->258",
4141 - "default.handlebars->25->659"
4169 + "default.handlebars->25->666"
4170 ]
4171 },
4172 {
@@ -4150,7 +4178,7 @@
4178 "nl": "Bevestig overschrijven?",
4179 "ru": "Подтвердить перезапись?",
4180 "xloc": [
4153 - "default.handlebars->25->1176"
4181 + "default.handlebars->25->1183"
4182 ]
4183 },
4184 {
@@ -4161,10 +4189,10 @@
4189 "ja": "認証アプリケーションの削除2段階ログインを確認しますか?",
4190 "nl": "Bevestig de verwijdering van de Tweestapsverificatie applicatie?",
4191 "pt": "Confirmar remoção do login do aplicativo autenticador em duas etapas?",
4164 - "ru": "Подтвердите удаление приложения аутентификации 2-хэтапного входа в систему.",
4192 + "ru": "Подтвердить удаление приложения аутентификации двухэтапного входа в систему?",
4193 "xloc": [
4194 "default-mobile.handlebars->9->33",
4167 - "default.handlebars->25->704"
4195 + "default.handlebars->25->711"
4196 ]
4197 },
4198 {
@@ -4173,9 +4201,10 @@
4201 "en": "Confirm removal of device group {0}?",
4202 "es": "¿Eliminar el grupo de dispositivos {0}?",
4203 "nl": "Bevestig het verwijderen van de apparaatgroep {0}?",
4204 + "ru": "Подтвердить удаление группы устройств {0}?",
4205 "xloc": [
4177 - "default.handlebars->25->1297",
4178 - "default.handlebars->25->1381"
4206 + "default.handlebars->25->1304",
4207 + "default.handlebars->25->1388"
4208 ]
4209 },
4210 {
@@ -4184,8 +4213,9 @@
4213 "en": "Confirm removal of group {0}?",
4214 "es": "¿Eliminar el grupo {0}?",
4215 "nl": "Bevestig het verwijderen van de groep {0}?",
4216 + "ru": "Подтвердить удаление группы {0}?",
4217 "xloc": [
4188 - "default.handlebars->25->1377"
4218 + "default.handlebars->25->1384"
4219 ]
4220 },
4221 {
@@ -4199,8 +4229,8 @@
4229 "ru": "Подтвердить удаление пользователя {0}?",
4230 "xloc": [
4231 "default-mobile.handlebars->9->333",
4202 - "default.handlebars->25->1131",
4203 - "default.handlebars->25->1305"
4232 + "default.handlebars->25->1138",
4233 + "default.handlebars->25->1312"
4234 ]
4235 },
4236 {
@@ -4216,8 +4246,8 @@
4246 "default-mobile.handlebars->9->236",
4247 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
4248 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
4219 - "default.handlebars->25->640",
4220 - "default.handlebars->25->995",
4249 + "default.handlebars->25->1002",
4250 + "default.handlebars->25->647",
4251 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
4252 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
4253 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -4248,8 +4278,8 @@
4278 "pt": "Conecte-se ao servidor",
4279 "ru": "Подключиться к серверу",
4280 "xloc": [
4251 - "default.handlebars->25->1047",
4252 - "default.handlebars->25->1051"
4281 + "default.handlebars->25->1054",
4282 + "default.handlebars->25->1058"
4283 ]
4284 },
4285 {
@@ -4299,8 +4329,9 @@
4329 "en": "Connected Intel&reg; AMT",
4330 "es": "Conectado Intel AMT",
4331 "nl": "Verbonden Intel&reg; AMT",
4332 + "ru": "Подключено Intel&reg; AMT",
4333 "xloc": [
4303 - "default.handlebars->25->1403"
4334 + "default.handlebars->25->1410"
4335 ]
4336 },
4337 {
@@ -4309,8 +4340,9 @@
4340 "en": "Connected Users",
4341 "es": "Usuarios Conectados",
4342 "nl": "Verbonden gebruikers",
4343 + "ru": "Подключенные пользователи",
4344 "xloc": [
4313 - "default.handlebars->25->1408"
4345 + "default.handlebars->25->1415"
4346 ]
4347 },
4348 {
@@ -4342,7 +4374,7 @@
4374 "default.handlebars->25->211",
4375 "default.handlebars->25->214",
4376 "default.handlebars->25->220",
4345 - "default.handlebars->25->681",
4377 + "default.handlebars->25->688",
4378 "default.handlebars->25->9",
4379 "xterm.handlebars->9->2"
4380 ]
@@ -4357,7 +4389,7 @@
4389 "pt": "Contagem de conexões",
4390 "ru": "Подключений ",
4391 "xloc": [
4360 - "default.handlebars->25->1419"
4392 + "default.handlebars->25->1426"
4393 ]
4394 },
4395 {
@@ -4368,9 +4400,9 @@
4400 "ja": "接続リレー",
4401 "nl": "Verbindings Relay",
4402 "pt": "Encaminhador de conexão",
4371 - "ru": "Реле подключения",
4403 + "ru": "Ретранслятор подключения",
4404 "xloc": [
4373 - "default.handlebars->25->1445"
4405 + "default.handlebars->25->1452"
4406 ]
4407 },
4408 {
@@ -4410,9 +4442,9 @@
4442 "ru": "Связь",
4443 "xloc": [
4444 "default-mobile.handlebars->9->195",
4413 - "default.handlebars->25->1147",
4445 + "default.handlebars->25->1154",
4446 "default.handlebars->25->202",
4415 - "default.handlebars->25->485",
4447 + "default.handlebars->25->492",
4448 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
4449 ]
4450 },
@@ -4441,7 +4473,7 @@
4473 "pt": "Console - ",
4474 "ru": "Консоль - ",
4475 "xloc": [
4444 - "default.handlebars->25->434"
4476 + "default.handlebars->25->441"
4477 ]
4478 },
4479 {
@@ -4454,7 +4486,7 @@
4486 "pt": "Codificador de cookies",
4487 "ru": "Cookie-кодировщик",
4488 "xloc": [
4457 - "default.handlebars->25->1433"
4489 + "default.handlebars->25->1440"
4490 ]
4491 },
4492 {
@@ -4495,7 +4527,7 @@
4527 "ja": "MacOSエージェントのURLをクリップボードにコピーします",
4528 "nl": "Kopieer MacOS agent link naar het klembord",
4529 "pt": "Copiar o URL do agente MacOS para a área de transferência",
4498 - "ru": "Скопировать ссылку МасОС агента в буфер обмена",
4530 + "ru": "Скопировать ссылку MacOS agent в буфер обмена",
4531 "xloc": [
4532 "default.handlebars->25->337"
4533 ]
@@ -4652,7 +4684,7 @@
4684 "pt": "Servidor Core",
4685 "ru": "Основной сервер",
4686 "xloc": [
4655 - "default.handlebars->25->1432"
4687 + "default.handlebars->25->1439"
4688 ]
4689 },
4690 {
@@ -4664,7 +4696,7 @@
4696 "pt": "Corso",
4697 "ru": "Kорсиканский",
4698 "xloc": [
4667 - "default.handlebars->25->755"
4699 + "default.handlebars->25->762"
4700 ]
4701 },
4702 {
@@ -4677,7 +4709,7 @@
4709 "pt": "Criar conta",
4710 "ru": "Создать учетную запись",
4711 "xloc": [
4680 - "default.handlebars->25->1247",
4712 + "default.handlebars->25->1254",
4713 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
4714 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
4715 ]
@@ -4701,8 +4733,9 @@
4733 "en": "Create User Group",
4734 "es": "Crear grupo de usuarios",
4735 "nl": "Maak een gebruikersgroep.",
4736 + "ru": "Создать группу пользователей",
4737 "xloc": [
4705 - "default.handlebars->25->1270"
4738 + "default.handlebars->25->1277"
4739 ]
4740 },
4741 {
@@ -4715,7 +4748,7 @@
4748 "pt": "Crie um novo grupo de dispositivos usando as opções abaixo.",
4749 "ru": "Создайте новую группу устройств, используя параметры ниже.",
4750 "xloc": [
4718 - "default.handlebars->25->947"
4751 + "default.handlebars->25->954"
4752 ]
4753 },
4754 {
@@ -4741,7 +4774,7 @@
4774 "pt": "Crie várias contas ao mesmo tempo importando um arquivo JSON com o seguinte formato:",
4775 "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:",
4776 "xloc": [
4744 - "default.handlebars->25->1218"
4777 + "default.handlebars->25->1225"
4778 ]
4779 },
4780 {
@@ -4766,9 +4799,9 @@
4799 "ja": "作成",
4800 "nl": "Aanmaken",
4801 "pt": "Criação",
4769 - "ru": "Создание",
4802 + "ru": "Создано",
4803 "xloc": [
4771 - "default.handlebars->25->1324"
4804 + "default.handlebars->25->1331"
4805 ]
4806 },
4807 {
@@ -4794,7 +4827,7 @@
4827 "pt": "Cree",
4828 "ru": "Кри (Канадский язык)",
4829 "xloc": [
4797 - "default.handlebars->25->756"
4830 + "default.handlebars->25->763"
4831 ]
4832 },
4833 {
@@ -4806,7 +4839,7 @@
4839 "pt": "Croata",
4840 "ru": "Хорватский",
4841 "xloc": [
4809 - "default.handlebars->25->757"
4842 + "default.handlebars->25->764"
4843 ]
4844 },
4845 {
@@ -4884,7 +4917,7 @@
4917 "ja": "現行版",
4918 "nl": "Huidige versie",
4919 "pt": "Versão Atual",
4887 - "ru": "Текущшая версия",
4920 + "ru": "Текущая версия",
4921 "xloc": [
4922 "default.handlebars->25->110"
4923 ]
@@ -4914,7 +4947,7 @@
4947 "pt": "Tcheco",
4948 "ru": "Чешский",
4949 "xloc": [
4917 - "default.handlebars->25->758"
4950 + "default.handlebars->25->765"
4951 ]
4952 },
4953 {
@@ -4925,7 +4958,7 @@
4958 "ja": "DNSサフィックス",
4959 "nl": "DNS-achtervoegsel",
4960 "pt": "Sufixo DNS",
4928 - "ru": "DNS суффикс",
4961 + "ru": "DNS-суффикс",
4962 "xloc": [
4963 "default.handlebars->25->96"
4964 ]
@@ -4939,7 +4972,7 @@
4972 "pt": "Dinamarquês",
4973 "ru": "Датский",
4974 "xloc": [
4942 - "default.handlebars->25->759"
4975 + "default.handlebars->25->766"
4976 ]
4977 },
4978 {
@@ -4952,7 +4985,7 @@
4985 "pt": "DataChannel",
4986 "ru": "DataChannel",
4987 "xloc": [
4955 - "default.handlebars->25->598"
4988 + "default.handlebars->25->605"
4989 ]
4990 },
4991 {
@@ -4963,9 +4996,9 @@
4996 "ja": "日時",
4997 "nl": "Datum & Tiid",
4998 "pt": "Datas e Horário",
4966 - "ru": "Даты & Время",
4999 + "ru": "Дата & Время",
5000 "xloc": [
4968 - "default.handlebars->25->915"
5001 + "default.handlebars->25->922"
5002 ]
5003 },
5004 {
@@ -4978,7 +5011,7 @@
5011 "pt": "Dia",
5012 "ru": "День",
5013 "xloc": [
4981 - "default.handlebars->25->537"
5014 + "default.handlebars->25->544"
5015 ]
5016 },
5017 {
@@ -4991,7 +5024,7 @@
5024 "pt": "Desativar o modo de controle do cliente (CCM)",
5025 "ru": "Деактивировать режим управления клиентом (CCM)",
5026 "xloc": [
4994 - "default.handlebars->25->1035"
5027 + "default.handlebars->25->1042"
5028 ]
5029 },
5030 {
@@ -5022,12 +5055,12 @@
5055 "default-mobile.handlebars->9->81",
5056 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
5057 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
5025 - "default.handlebars->25->1171",
5026 - "default.handlebars->25->650",
5058 + "default.handlebars->25->1178",
5059 + "default.handlebars->25->657",
5060 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
5061 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
5062 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
5030 - "player.htm->p11->dialog->idx_dlgButtonBar->5",
5063 + "player.handlebars->p11->dialog->idx_dlgButtonBar->5",
5064 "xterm.handlebars->p11->dialog->idx_dlgButtonBar->5"
5065 ]
5066 },
@@ -5039,10 +5072,10 @@
5072 "ja": "アカウントを削除する",
5073 "nl": "Verwijder account",
5074 "pt": "Deletar Conta",
5042 - "ru": "Удалить Пользователя",
5075 + "ru": "Удалить учетную запись",
5076 "xloc": [
5077 "default-mobile.handlebars->9->43",
5045 - "default.handlebars->25->932"
5078 + "default.handlebars->25->939"
5079 ]
5080 },
5081 {
@@ -5053,10 +5086,10 @@
5086 "ja": "デバイスを削除",
5087 "nl": "Verwijder apparaat",
5088 "pt": "Excluir dispositivo",
5056 - "ru": "Удалить Устройство",
5089 + "ru": "Удалить устройство",
5090 "xloc": [
5091 "default-mobile.handlebars->9->199",
5059 - "default.handlebars->25->496"
5092 + "default.handlebars->25->503"
5093 ]
5094 },
5095 {
@@ -5067,12 +5100,12 @@
5100 "ja": "グループを削除",
5101 "nl": "Verwijder groep",
5102 "pt": "Excluir grupo",
5070 - "ru": "Удалить Группу",
5103 + "ru": "Удалить группу",
5104 "xloc": [
5105 "default-mobile.handlebars->9->285",
5106 "default-mobile.handlebars->9->288",
5074 - "default.handlebars->25->1028",
5075 - "default.handlebars->25->1058"
5107 + "default.handlebars->25->1035",
5108 + "default.handlebars->25->1065"
5109 ]
5110 },
5111 {
@@ -5083,10 +5116,10 @@
5116 "ja": "ノードを削除",
5117 "nl": "Verwijder apparaat",
5118 "pt": "Excluir nó",
5086 - "ru": "Удалить Узел",
5119 + "ru": "Удалить устройство",
5120 "xloc": [
5121 "default-mobile.handlebars->9->218",
5089 - "default.handlebars->25->563"
5122 + "default.handlebars->25->570"
5123 ]
5124 },
5125 {
@@ -5097,7 +5130,7 @@
5130 "ja": "ノードを削除する",
5131 "nl": "Verwijder apparaten",
5132 "pt": "Excluir nós",
5100 - "ru": "Удалить Узлы",
5133 + "ru": "Удалить устройства",
5134 "xloc": [
5135 "default.handlebars->25->397"
5136 ]
@@ -5108,8 +5141,9 @@
5141 "en": "Delete User",
5142 "es": "Borrar usuario",
5143 "nl": "Verwijder gebruiker",
5144 + "ru": "Удалить пользователя",
5145 "xloc": [
5112 - "default.handlebars->25->1345"
5146 + "default.handlebars->25->1352"
5147 ]
5148 },
5149 {
@@ -5118,9 +5152,10 @@
5152 "en": "Delete User Group",
5153 "es": "Eliminar Grupo de Usuarios",
5154 "nl": "Verwijder de gebruikersgroep",
5155 + "ru": "Удалить группу пользователей",
5156 "xloc": [
5122 - "default.handlebars->25->1295",
5123 - "default.handlebars->25->1303"
5157 + "default.handlebars->25->1302",
5158 + "default.handlebars->25->1310"
5159 ]
5160 },
5161 {
@@ -5131,9 +5166,9 @@
5166 "ja": "ユーザーを削除{0}",
5167 "nl": "Verwijder gebruiker {0}",
5168 "pt": "Excluir usuário {0}",
5134 - "ru": "Удалить Пользователя {0}",
5169 + "ru": "Удалить пользователя {0}",
5170 "xloc": [
5136 - "default.handlebars->25->1359"
5171 + "default.handlebars->25->1366"
5172 ]
5173 },
5174 {
@@ -5144,7 +5179,7 @@
5179 "ja": "アカウントを削除する",
5180 "nl": "Verwijder account",
5181 "pt": "Deletar conta",
5147 - "ru": "Удалить пользователя",
5182 + "ru": "Удалить учетную запись",
5183 "xloc": [
5184 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->7->0",
5185 "default.handlebars->container->column_l->p2->p2AccountActions->3->p2AccountPassActions->7"
@@ -5171,12 +5206,12 @@
5206 "ja": "選択したアイテムを削除しますか?",
5207 "nl": "Verwijder geselecteerde item?",
5208 "pt": "Excluir item selecionado?",
5174 - "ru": "Удалить выбранные?",
5209 + "ru": "Удалить выбранные элементы?",
5210 "xloc": [
5211 "default-mobile.handlebars->9->251",
5212 "default-mobile.handlebars->9->83",
5178 - "default.handlebars->25->1173",
5179 - "default.handlebars->25->652"
5213 + "default.handlebars->25->1180",
5214 + "default.handlebars->25->659"
5215 ]
5216 },
5217 {
@@ -5185,8 +5220,9 @@
5220 "en": "Delete user group {0}?",
5221 "es": "Eliminar Grupo de Usuarios {0}?",
5222 "nl": "Verwijder gebruikersgroep {0}?",
5223 + "ru": "Удалить группу пользователей {0}?",
5224 "xloc": [
5189 - "default.handlebars->25->1301"
5225 + "default.handlebars->25->1308"
5226 ]
5227 },
5228 {
@@ -5197,12 +5233,12 @@
5233 "ja": "選択したアイテム{0}を削除しますか?",
5234 "nl": "Verwijder {0} gelecteerde items?",
5235 "pt": "Excluir {0} itens selecionados?",
5200 - "ru": "Удалить {0} избранные?",
5236 + "ru": "Удалить {0} выбранных элементов?",
5237 "xloc": [
5238 "default-mobile.handlebars->9->250",
5239 "default-mobile.handlebars->9->82",
5204 - "default.handlebars->25->1172",
5205 - "default.handlebars->25->651"
5240 + "default.handlebars->25->1179",
5241 + "default.handlebars->25->658"
5242 ]
5243 },
5244 {
@@ -5282,17 +5318,17 @@
5318 "default-mobile.handlebars->9->277",
5319 "default-mobile.handlebars->9->290",
5320 "default-mobile.handlebars->9->60",
5285 - "default.handlebars->25->1060",
5286 - "default.handlebars->25->1269",
5287 - "default.handlebars->25->1274",
5321 + "default.handlebars->25->1067",
5322 "default.handlebars->25->1276",
5289 - "default.handlebars->25->1299",
5290 - "default.handlebars->25->443",
5291 - "default.handlebars->25->444",
5292 - "default.handlebars->25->594",
5323 + "default.handlebars->25->1281",
5324 + "default.handlebars->25->1283",
5325 + "default.handlebars->25->1306",
5326 + "default.handlebars->25->450",
5327 + "default.handlebars->25->451",
5328 + "default.handlebars->25->601",
5329 "default.handlebars->25->95",
5294 - "default.handlebars->25->952",
5295 - "default.handlebars->25->976",
5330 + "default.handlebars->25->959",
5331 + "default.handlebars->25->983",
5332 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
5333 ]
5334 },
@@ -5316,8 +5352,8 @@
5352 "pt": "Área de Trabalho",
5353 "ru": "Рабочий стол",
5354 "xloc": [
5319 - "default.handlebars->25->1062",
5320 - "default.handlebars->25->412",
5355 + "default.handlebars->25->1069",
5356 + "default.handlebars->25->419",
5357 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
5358 "default.handlebars->contextMenu->cxdesktop"
5359 ]
@@ -5345,7 +5381,7 @@
5381 "pt": "Notificação na área de trabalho",
5382 "ru": "Уведомление на рабочем столе",
5383 "xloc": [
5348 - "default.handlebars->25->986"
5384 + "default.handlebars->25->993"
5385 ]
5386 },
5387 {
@@ -5358,7 +5394,7 @@
5394 "pt": "Prompt da área de trabalho",
5395 "ru": "Запрос рабочего стола",
5396 "xloc": [
5361 - "default.handlebars->25->985"
5397 + "default.handlebars->25->992"
5398 ]
5399 },
5400 {
@@ -5371,7 +5407,7 @@
5407 "pt": "Prompt da área de trabalho + barra de ferramentas",
5408 "ru": "Запрос рабочего стола + панель инструментов",
5409 "xloc": [
5374 - "default.handlebars->25->983"
5410 + "default.handlebars->25->990"
5411 ]
5412 },
5413 {
@@ -5384,7 +5420,7 @@
5420 "pt": "Barra de ferramentas da área de trabalho",
5421 "ru": "Панель инструментов рабочего стола",
5422 "xloc": [
5387 - "default.handlebars->25->984"
5423 + "default.handlebars->25->991"
5424 ]
5425 },
5426 {
@@ -5395,7 +5431,7 @@
5431 "ja": "デスクトップ",
5432 "nl": "Bureaubladen",
5433 "pt": "Áreas de trabalho",
5398 - "ru": "Крупные значки",
5434 + "ru": "Экраны",
5435 "xloc": [
5436 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->5",
5437 "default.handlebars->container->column_l->p1->p1title->devListToolbarViewIcons"
@@ -5409,7 +5445,7 @@
5445 "ja": "詳細",
5446 "nl": "Details",
5447 "pt": "Detalhes",
5412 - "ru": "Детайли",
5448 + "ru": "Детали",
5449 "xloc": [
5450 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo"
5451 ]
@@ -5422,7 +5458,7 @@
5458 "ja": "詳細-",
5459 "nl": "Details -",
5460 "pt": "Detalhes - ",
5425 - "ru": "Детайли - ",
5461 + "ru": "Детали - ",
5462 "xloc": [
5463 "default.handlebars->container->column_l->p17->p17title->3"
5464 ]
@@ -5435,7 +5471,7 @@
5471 "ja": "デバイス",
5472 "nl": "Apparaat",
5473 "pt": "Dispositivo",
5438 - "ru": "Устройству",
5474 + "ru": "Устройство",
5475 "xloc": [
5476 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
5477 ]
@@ -5448,10 +5484,10 @@
5484 "ja": "デバイスアクション",
5485 "nl": "Apparaatactie",
5486 "pt": "Ação do dispositivo",
5451 - "ru": "Действие устройства",
5487 + "ru": "Управление устройством",
5488 "xloc": [
5489 "default-mobile.handlebars->9->211",
5454 - "default.handlebars->25->536"
5490 + "default.handlebars->25->543"
5491 ]
5492 },
5493 {
@@ -5460,12 +5496,13 @@
5496 "en": "Device Group",
5497 "es": "Grupo de dispositivos",
5498 "nl": "Apparaat Groep",
5499 + "ru": "Группа устройства",
5500 "xloc": [
5464 - "default.handlebars->25->1079",
5465 - "default.handlebars->25->1081",
5466 - "default.handlebars->25->1293",
5467 - "default.handlebars->25->1367",
5468 - "default.handlebars->25->1373"
5501 + "default.handlebars->25->1086",
5502 + "default.handlebars->25->1088",
5503 + "default.handlebars->25->1300",
5504 + "default.handlebars->25->1374",
5505 + "default.handlebars->25->1380"
5506 ]
5507 },
5508 {
@@ -5479,7 +5516,7 @@
5516 "ru": "Пользователь группы устройств",
5517 "xloc": [
5518 "default-mobile.handlebars->9->331",
5482 - "default.handlebars->25->1129"
5519 + "default.handlebars->25->1136"
5520 ]
5521 },
5522 {
@@ -5493,10 +5530,10 @@
5530 "ru": "Группы устройств",
5531 "xloc": [
5532 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
5496 - "default.handlebars->25->1265",
5497 - "default.handlebars->25->1278",
5498 - "default.handlebars->25->1333",
5499 - "default.handlebars->25->1406",
5533 + "default.handlebars->25->1272",
5534 + "default.handlebars->25->1285",
5535 + "default.handlebars->25->1340",
5536 + "default.handlebars->25->1413",
5537 "default.handlebars->container->column_l->p2->9"
5538 ]
5539 },
@@ -5510,7 +5547,7 @@
5547 "pt": "Localização do dispositivo",
5548 "ru": "Местонахождение устройства",
5549 "xloc": [
5513 - "default.handlebars->25->564"
5550 + "default.handlebars->25->571"
5551 ]
5552 },
5553 {
@@ -5525,8 +5562,8 @@
5562 "xloc": [
5563 "default-mobile.handlebars->9->222",
5564 "default.handlebars->25->238",
5528 - "default.handlebars->25->592",
5529 - "player.htm->3->9"
5565 + "default.handlebars->25->599",
5566 + "player.handlebars->3->9"
5567 ]
5568 },
5569 {
@@ -5539,7 +5576,7 @@
5576 "pt": "Notificação de dispositivo",
5577 "ru": "Уведомление устройства",
5578 "xloc": [
5542 - "default.handlebars->25->527"
5579 + "default.handlebars->25->534"
5580 ]
5581 },
5582 {
@@ -5563,10 +5600,10 @@
5600 "ja": "デバイス接続。",
5601 "nl": "Apparaat verbindingen.",
5602 "pt": "Conexões de dispositivos.",
5566 - "ru": "Подключения устройства",
5603 + "ru": "Подключения устройств.",
5604 "xloc": [
5568 - "default.handlebars->25->1133",
5569 - "default.handlebars->25->920"
5605 + "default.handlebars->25->1140",
5606 + "default.handlebars->25->927"
5607 ]
5608 },
5609 {
@@ -5577,10 +5614,10 @@
5614 "ja": "デバイスの切断。",
5615 "nl": "Apparaat verbroken.",
5616 "pt": "Desconexões de dispositivos.",
5580 - "ru": "Отключения устройства",
5617 + "ru": "Отключения устройств.",
5618 "xloc": [
5582 - "default.handlebars->25->1134",
5583 - "default.handlebars->25->921"
5619 + "default.handlebars->25->1141",
5620 + "default.handlebars->25->928"
5621 ]
5622 },
5623 {
@@ -5591,9 +5628,9 @@
5628 "ja": "デバイスグループのメモは、他のデバイスグループ管理者が表示および変更できます。",
5629 "nl": "Apparaatgroepnotities kunnen worden bekeken en gewijzigd door andere apparaatgroepbeheerders.",
5630 "pt": "As notas do grupo de dispositivos podem ser visualizadas e alteradas por outros administradores do grupo de dispositivos.",
5594 - "ru": "Примечания группы устройств могут быть просмотрены и изменены другими администраторами группы устройств.",
5631 + "ru": "Примечания могут быть просмотрены и изменены другими администраторами.",
5632 "xloc": [
5596 - "default.handlebars->25->525"
5633 + "default.handlebars->25->532"
5634 ]
5635 },
5636 {
@@ -5604,7 +5641,7 @@
5641 "ja": "デバイスは検出されましたが、電源状態を取得できませんでした。",
5642 "nl": "Apparaat is gedetecteerd, maar de status kon niet worden verkregen.",
5643 "pt": "O dispositivo foi detectado, mas não foi possível obter o estado de energia.",
5607 - "ru": "Устройство обнаружено, но режим питания не может быть установлен.",
5644 + "ru": "Устройство обнаружено, но состояние питания не может быть получено.",
5645 "xloc": [
5646 "default.handlebars->25->361"
5647 ]
@@ -5617,7 +5654,7 @@
5654 "ja": "デバイスは休止状態です(S4)",
5655 "nl": "Apparaat is in slaapstand (S4)",
5656 "pt": "O dispositivo está hibernando (S4)",
5620 - "ru": "Устройство находится в спящем режиме (S4)",
5657 + "ru": "Устройство находится в режиме гибернации (S4)",
5658 "xloc": [
5659 "default-mobile.handlebars->9->118",
5660 "default.handlebars->25->367"
@@ -5752,7 +5789,7 @@
5789 "ja": "デバイスに電源が入っています",
5790 "nl": "Apparaat is ingeschakeld",
5791 "pt": "O dispositivo está ligado",
5755 - "ru": "Устройство работает",
5792 + "ru": "Устройство включено",
5793 "xloc": [
5794 "default-mobile.handlebars->9->114",
5795 "default.handlebars->25->363"
@@ -5779,7 +5816,7 @@
5816 "ja": "デバイスは存在しますが、電源状態を判別できません",
5817 "nl": "Apparaat is aanwezig, maar de status kan niet worden bepaald",
5818 "pt": "O dispositivo está presente, mas o estado de energia não pode ser determinado",
5782 - "ru": "Устройство присутствует, но состояние питания не может быть установлено",
5819 + "ru": "Устройство присутствует, но состояние питания не может быть определено",
5820 "xloc": [
5821 "default-mobile.handlebars->9->120",
5822 "default.handlebars->25->369"
@@ -5795,7 +5832,7 @@
5832 "pt": "Nome do dispositivo",
5833 "ru": "Имя устройства",
5834 "xloc": [
5798 - "default.handlebars->25->424"
5835 + "default.handlebars->25->431"
5836 ]
5837 },
5838 {
@@ -5821,7 +5858,7 @@
5858 "pt": "Desativado",
5859 "ru": "Отключено",
5860 "xloc": [
5824 - "default.handlebars->25->470"
5861 + "default.handlebars->25->477"
5862 ]
5863 },
5864 {
@@ -5836,8 +5873,8 @@
5873 "xloc": [
5874 "default-mobile.handlebars->9->237",
5875 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
5839 - "default.handlebars->25->641",
5840 - "default.handlebars->25->996",
5876 + "default.handlebars->25->1003",
5877 + "default.handlebars->25->648",
5878 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
5879 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
5880 "xterm.handlebars->p11->deskarea0->deskarea1->3"
@@ -5900,8 +5937,9 @@
5937 "en": "Display device group name",
5938 "es": "Mostrar el nombre del grupo de dispositivos",
5939 "nl": "Toon apparaatgroepsnaam",
5940 + "ru": "Отобразить имя группы устройств",
5941 "xloc": [
5904 - "default.handlebars->25->919"
5942 + "default.handlebars->25->926"
5943 ]
5944 },
5945 {
@@ -5912,9 +5950,9 @@
5950 "ja": "表示名",
5951 "nl": "Schermnaam",
5952 "pt": "Mostrar nome",
5915 - "ru": "Показать имя",
5953 + "ru": "Отображаемое имя",
5954 "xloc": [
5917 - "default.handlebars->25->612"
5955 + "default.handlebars->25->619"
5956 ]
5957 },
5958 {
@@ -5927,7 +5965,7 @@
5965 "pt": "Fazer nada",
5966 "ru": "Ничего не делать",
5967 "xloc": [
5930 - "default.handlebars->25->1041"
5968 + "default.handlebars->25->1048"
5969 ]
5970 },
5971 {
@@ -5938,7 +5976,7 @@
5976 "ja": "アカウントを持っていないのですか?",
5977 "nl": "Heb je nog geen account?",
5978 "pt": "Não possui uma conta?",
5941 - "ru": "У вас нет учетной записи?",
5979 + "ru": "Нет учетной записи?",
5980 "xloc": [
5981 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->newAccountDiv",
5982 "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->newAccountDiv"
@@ -5954,8 +5992,8 @@
5992 "pt": "Não configure",
5993 "ru": "Не настраивать",
5994 "xloc": [
5957 - "default.handlebars->25->1045",
5958 - "default.handlebars->25->1050"
5995 + "default.handlebars->25->1052",
5996 + "default.handlebars->25->1057"
5997 ]
5998 },
5999 {
@@ -5968,7 +6006,7 @@
6006 "pt": "Não conecte ao servidor",
6007 "ru": "Не подключаться к серверу",
6008 "xloc": [
5971 - "default.handlebars->25->1046"
6009 + "default.handlebars->25->1053"
6010 ]
6011 },
6012 {
@@ -6011,7 +6049,7 @@
6049 "ru": "Скачать файл",
6050 "xloc": [
6051 "default-mobile.handlebars->9->270",
6014 - "default.handlebars->25->670"
6052 + "default.handlebars->25->677"
6053 ]
6054 },
6055 {
@@ -6037,7 +6075,7 @@
6075 "pt": "Baixar MeshCmd",
6076 "ru": "Скачать MeshCmd",
6077 "xloc": [
6040 - "default.handlebars->25->583"
6078 + "default.handlebars->25->590"
6079 ]
6080 },
6081 {
@@ -6069,8 +6107,9 @@
6107 "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.",
6108 "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.",
6109 "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.",
6110 + "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.",
6111 "xloc": [
6073 - "default.handlebars->25->576"
6112 + "default.handlebars->25->583"
6113 ]
6114 },
6115 {
@@ -6122,7 +6161,7 @@
6161 "pt": "Download de eventos de energia",
6162 "ru": "Скачать события состояния питания",
6163 "xloc": [
6125 - "default.handlebars->25->538"
6164 + "default.handlebars->25->545"
6165 ]
6166 },
6167 {
@@ -6146,7 +6185,7 @@
6185 "ja": "ここからインストーラーをダウンロードしてください",
6186 "nl": "Download het installatieprogramma hier",
6187 "pt": "Faça o download do instalador aqui",
6149 - "ru": "Скачать установщик здесь",
6188 + "ru": "Скачайте программу по этой ссылке",
6189 "xloc": [
6190 "agentinvite.handlebars->container->column_l->5->macostab->3->macosurl"
6191 ]
@@ -6159,9 +6198,9 @@
6198 "ja": "以下のファイル形式のいずれかでイベントのリストをダウンロードします。",
6199 "nl": "Download de lijst met gebeurtenissen in een van de onderstaande bestandsindelingen.",
6200 "pt": "Faça o download da lista de eventos com um dos formatos de arquivo abaixo.",
6162 - "ru": "Скачать список событий с одним из форматов файлов ниже.",
6201 + "ru": "Скачать список событий в одном из форматов ниже.",
6202 "xloc": [
6164 - "default.handlebars->25->1187"
6203 + "default.handlebars->25->1194"
6204 ]
6205 },
6206 {
@@ -6172,9 +6211,9 @@
6211 "ja": "以下のファイル形式のいずれかでユーザーのリストをダウンロードします。",
6212 "nl": "Download de lijst met gebruikers in een van de onderstaande bestandsindelingen.",
6213 "pt": "Baixe a lista de usuários com um dos formatos de arquivo abaixo.",
6175 - "ru": "Скачать список пользователей с одним из форматов файлов ниже.",
6214 + "ru": "Скачать список пользователей в одном из форматов ниже.",
6215 "xloc": [
6177 - "default.handlebars->25->1226"
6216 + "default.handlebars->25->1233"
6217 ]
6218 },
6219 {
@@ -6185,7 +6224,7 @@
6224 "ja": "ここからソフトウェアをダウンロードしてください",
6225 "nl": "Download de software hier",
6226 "pt": "Faça o download do software aqui",
6188 - "ru": "Скачать программное обеспечение здесь",
6227 + "ru": "Скачайте программное обеспечение здесь",
6228 "xloc": [
6229 "agentinvite.handlebars->container->column_l->5->wintab32->3->win32url",
6230 "agentinvite.handlebars->container->column_l->5->wintab64->3->win64url"
@@ -6227,7 +6266,7 @@
6266 "pt": "Arraste e solte um arquivo .mcrec ou clique em \\\"Abrir arquivo...\\\"",
6267 "ru": "Перетащите .mcrec файл или нажмите \\\"Открыть файл ... \\\"",
6268 "xloc": [
6230 - "player.htm->3->18"
6269 + "player.handlebars->3->18"
6270 ]
6271 },
6272 {
@@ -6236,8 +6275,9 @@
6275 "en": "Duplicate Agent",
6276 "es": "Agente duplicado",
6277 "nl": "Duplicaat Agent",
6278 + "ru": "Скопировать агент",
6279 "xloc": [
6240 - "default.handlebars->25->1402"
6280 + "default.handlebars->25->1409"
6281 ]
6282 },
6283 {
@@ -6246,6 +6286,7 @@
6286 "en": "Duplicate Group...",
6287 "es": "Grupo duplicado ...",
6288 "nl": "Dupliceer Groep...",
6289 + "ru": "Скопировать группу...",
6290 "xloc": [
6291 "default.handlebars->container->column_l->p50->3->1->0->3->3"
6292 ]
@@ -6256,8 +6297,9 @@
6297 "en": "Duplicate User Group",
6298 "es": "Grupo de usuarios duplicados",
6299 "nl": "Dupliceer Gebruikers Groep",
6300 + "ru": "Скопировать группу пользователей",
6301 "xloc": [
6260 - "default.handlebars->25->1271"
6302 + "default.handlebars->25->1278"
6303 ]
6304 },
6305 {
@@ -6270,7 +6312,7 @@
6312 "pt": "Duração",
6313 "ru": "Длительность",
6314 "xloc": [
6273 - "player.htm->3->2"
6315 + "player.handlebars->3->2"
6316 ]
6317 },
6318 {
@@ -6281,9 +6323,9 @@
6323 "ja": "アクティベーション中、エージェントは管理者パスワード情報にアクセスできます。",
6324 "nl": "Tijdens activering heeft de agent toegang tot beheerderswachtwoordinformatie.",
6325 "pt": "Durante a ativação, o agente terá acesso às informações da senha do administrador.",
6284 - "ru": "Во время активации агент будет иметь доступ к информации пароля администратора.",
6326 + "ru": "Во время активации агент будет иметь доступ к паролю администратора.",
6327 "xloc": [
6286 - "default.handlebars->25->1055"
6328 + "default.handlebars->25->1062"
6329 ]
6330 },
6331 {
@@ -6295,7 +6337,7 @@
6337 "pt": "Holandês (belga)",
6338 "ru": "Голландский (Бельгийский)",
6339 "xloc": [
6298 - "default.handlebars->25->761"
6340 + "default.handlebars->25->768"
6341 ]
6342 },
6343 {
@@ -6307,7 +6349,7 @@
6349 "pt": "Holandês (padrão)",
6350 "ru": "Голландский (Стандартный)",
6351 "xloc": [
6310 - "default.handlebars->25->760"
6352 + "default.handlebars->25->767"
6353 ]
6354 },
6355 {
@@ -6375,7 +6417,7 @@
6417 "ru": "Редактировать устройство",
6418 "xloc": [
6419 "default-mobile.handlebars->9->227",
6378 - "default.handlebars->25->597"
6420 + "default.handlebars->25->604"
6421 ]
6422 },
6423 {
@@ -6391,9 +6433,9 @@
6433 "default-mobile.handlebars->9->291",
6434 "default-mobile.handlebars->9->293",
6435 "default-mobile.handlebars->9->311",
6394 - "default.handlebars->25->1061",
6395 - "default.handlebars->25->1085",
6396 - "default.handlebars->25->1108"
6436 + "default.handlebars->25->1068",
6437 + "default.handlebars->25->1092",
6438 + "default.handlebars->25->1115"
6439 ]
6440 },
6441 {
@@ -6406,7 +6448,7 @@
6448 "pt": "Editar recursos do grupo de dispositivos",
6449 "ru": "Редактировать функции группы устройств",
6450 "xloc": [
6409 - "default.handlebars->25->1075"
6451 + "default.handlebars->25->1082"
6452 ]
6453 },
6454 {
@@ -6415,8 +6457,9 @@
6457 "en": "Edit Device Group Permissions",
6458 "es": "Editar permisos de grupo de dispositivos",
6459 "nl": "Bewerk apparaatgroep rechten",
6460 + "ru": "Редактировать права группы устройств",
6461 "xloc": [
6419 - "default.handlebars->25->1105"
6462 + "default.handlebars->25->1112"
6463 ]
6464 },
6465 {
@@ -6429,7 +6472,7 @@
6472 "pt": "Editar consentimento do usuário do grupo de dispositivos",
6473 "ru": "Редактировать согласие пользователя группы устройств",
6474 "xloc": [
6432 - "default.handlebars->25->1072"
6475 + "default.handlebars->25->1079"
6476 ]
6477 },
6478 {
@@ -6443,7 +6486,7 @@
6486 "ru": "Редактировать примечания устройства",
6487 "xloc": [
6488 "default-mobile.handlebars->9->305",
6446 - "default.handlebars->25->1097"
6489 + "default.handlebars->25->1104"
6490 ]
6491 },
6492 {
@@ -6457,9 +6500,9 @@
6500 "ru": "Редактировать учетные данные Intel&reg; AMT",
6501 "xloc": [
6502 "default-mobile.handlebars->9->217",
6460 - "default.handlebars->25->458",
6461 - "default.handlebars->25->461",
6462 - "default.handlebars->25->545"
6503 + "default.handlebars->25->465",
6504 + "default.handlebars->25->468",
6505 + "default.handlebars->25->552"
6506 ]
6507 },
6508 {
@@ -6474,7 +6517,7 @@
6517 "ru": "Редактировать примечания",
6518 "xloc": [
6519 "default-mobile.handlebars->9->318",
6477 - "default.handlebars->25->1115"
6520 + "default.handlebars->25->1122"
6521 ]
6522 },
6523 {
@@ -6485,9 +6528,9 @@
6528 "ja": "ユーザーデバイスグループ権限の編集",
6529 "nl": "Gebruikersrechten apparaatgroep bewerken",
6530 "pt": "Editar permissões do grupo de dispositivos do usuário",
6488 - "ru": "Редактировать права потребителя группы устройств",
6531 + "ru": "Редактировать права пользователя для группы устройств",
6532 "xloc": [
6490 - "default.handlebars->25->1106"
6533 + "default.handlebars->25->1113"
6534 ]
6535 },
6536 {
@@ -6496,8 +6539,9 @@
6539 "en": "Edit User Group",
6540 "es": "Editar grupo de usuarios",
6541 "nl": "Bewerk de gebruikersgroep",
6542 + "ru": "Редактировать группу пользователей",
6543 "xloc": [
6500 - "default.handlebars->25->1300"
6544 + "default.handlebars->25->1307"
6545 ]
6546 },
6547 {
@@ -6521,13 +6565,13 @@
6565 "ja": "Eメール",
6566 "nl": "E-mail",
6567 "pt": "Email",
6524 - "ru": "Эл. почта",
6568 + "ru": "Email",
6569 "xloc": [
6570 "default-mobile.handlebars->9->37",
6527 - "default.handlebars->25->1238",
6528 - "default.handlebars->25->1320",
6529 - "default.handlebars->25->1321",
6530 - "default.handlebars->25->1349",
6571 + "default.handlebars->25->1245",
6572 + "default.handlebars->25->1327",
6573 + "default.handlebars->25->1328",
6574 + "default.handlebars->25->1356",
6575 "default.handlebars->25->283"
6576 ]
6577 },
@@ -6539,10 +6583,10 @@
6583 "ja": "メールアドレスの変更",
6584 "nl": "E-mailadres wijzigen",
6585 "pt": "Alteração de endereço de email",
6542 - "ru": "Изменение адреса эл. почты",
6586 + "ru": "Изменение адреса email",
6587 "xloc": [
6588 "default-mobile.handlebars->9->38",
6545 - "default.handlebars->25->928"
6589 + "default.handlebars->25->935"
6590 ]
6591 },
6592 {
@@ -6553,10 +6597,10 @@
6597 "ja": "メール確認",
6598 "nl": "E-mail verificatie",
6599 "pt": "verificação de e-mail",
6556 - "ru": "Подтверждение эл. почты",
6600 + "ru": "Подтверждение email",
6601 "xloc": [
6602 "default-mobile.handlebars->9->36",
6559 - "default.handlebars->25->926"
6603 + "default.handlebars->25->933"
6604 ]
6605 },
6606 {
@@ -6567,9 +6611,9 @@
6611 "ja": "メールが確認されました",
6612 "nl": "E-mail is geverifieerd",
6613 "pt": "O email foi verificado",
6570 - "ru": "Ел. почта подтверждена",
6614 + "ru": "Email подтвержден",
6615 "xloc": [
6572 - "default.handlebars->25->1317"
6616 + "default.handlebars->25->1324"
6617 ]
6618 },
6619 {
@@ -6580,9 +6624,9 @@
6624 "ja": "メールが確認されました。",
6625 "nl": "E-mail is geverifieerd.",
6626 "pt": "O email foi verificado.",
6583 - "ru": "Ел. почта подтверждена.",
6627 + "ru": "Email подтвержден.",
6628 "xloc": [
6585 - "default.handlebars->25->1244"
6629 + "default.handlebars->25->1251"
6630 ]
6631 },
6632 {
@@ -6593,9 +6637,9 @@
6637 "ja": "メールが確認されていません",
6638 "nl": "E-mail is niet geverifieerd",
6639 "pt": "Email não verificado",
6596 - "ru": "Ел. почта не подтверждена",
6640 + "ru": "Email не подтвержден",
6641 "xloc": [
6598 - "default.handlebars->25->1318"
6642 + "default.handlebars->25->1325"
6643 ]
6644 },
6645 {
@@ -6606,7 +6650,7 @@
6650 "ja": "Eメール:",
6651 "nl": "E-mail:",
6652 "pt": "Email:",
6609 - "ru": "Эл. почта:",
6653 + "ru": "Email:",
6654 "xloc": [
6655 "login-mobile.handlebars->5->17",
6656 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->2->1",
@@ -6624,7 +6668,7 @@
6668 "ja": "ブラウザ通知を有効にする",
6669 "nl": "Schakel browsermelding in",
6670 "pt": "Ativar notificação do navegador",
6627 - "ru": "Включить уведомление браузера",
6671 + "ru": "Включить уведомления в браузере",
6672 "xloc": [
6673 "messenger.handlebars->xtop->1"
6674 ]
@@ -6665,7 +6709,7 @@
6709 "pt": "Inglês",
6710 "ru": "Английский",
6711 "xloc": [
6668 - "default.handlebars->25->762"
6712 + "default.handlebars->25->769"
6713 ]
6714 },
6715 {
@@ -6677,7 +6721,7 @@
6721 "pt": "Inglês (Austrália)",
6722 "ru": "Английский (Австралия)",
6723 "xloc": [
6680 - "default.handlebars->25->763"
6724 + "default.handlebars->25->770"
6725 ]
6726 },
6727 {
@@ -6689,7 +6733,7 @@
6733 "pt": "Inglês (Belize)",
6734 "ru": "Английский (Белиз)",
6735 "xloc": [
6692 - "default.handlebars->25->764"
6736 + "default.handlebars->25->771"
6737 ]
6738 },
6739 {
@@ -6701,7 +6745,7 @@
6745 "pt": "Inglês (Canadá)",
6746 "ru": "Английский (Канада)",
6747 "xloc": [
6704 - "default.handlebars->25->765"
6748 + "default.handlebars->25->772"
6749 ]
6750 },
6751 {
@@ -6713,7 +6757,7 @@
6757 "pt": "Inglês (Irlanda)",
6758 "ru": "Английский (Ирландия)",
6759 "xloc": [
6716 - "default.handlebars->25->766"
6760 + "default.handlebars->25->773"
6761 ]
6762 },
6763 {
@@ -6725,7 +6769,7 @@
6769 "pt": "Inglês (Jamaica)",
6770 "ru": "Английский (Ямайка)",
6771 "xloc": [
6728 - "default.handlebars->25->767"
6772 + "default.handlebars->25->774"
6773 ]
6774 },
6775 {
@@ -6737,7 +6781,7 @@
6781 "pt": "Inglês (Nova Zelândia)",
6782 "ru": "Английский (Новая Зеландия)",
6783 "xloc": [
6740 - "default.handlebars->25->768"
6784 + "default.handlebars->25->775"
6785 ]
6786 },
6787 {
@@ -6749,7 +6793,7 @@
6793 "pt": "Inglês (Filipinas)",
6794 "ru": "Английский (Филиппины)",
6795 "xloc": [
6752 - "default.handlebars->25->769"
6796 + "default.handlebars->25->776"
6797 ]
6798 },
6799 {
@@ -6761,7 +6805,7 @@
6805 "pt": "Inglês (África do Sul)",
6806 "ru": "Английский (Южная Африка)",
6807 "xloc": [
6764 - "default.handlebars->25->770"
6808 + "default.handlebars->25->777"
6809 ]
6810 },
6811 {
@@ -6773,7 +6817,7 @@
6817 "pt": "Inglês (Trinidad Tobago)",
6818 "ru": "Английский (Тринидад и Тобаго)",
6819 "xloc": [
6776 - "default.handlebars->25->771"
6820 + "default.handlebars->25->778"
6821 ]
6822 },
6823 {
@@ -6786,7 +6830,7 @@
6830 "pt": "Inglês (Reino Unido)",
6831 "ru": "Английский (Великобритания)",
6832 "xloc": [
6789 - "default.handlebars->25->772"
6833 + "default.handlebars->25->779"
6834 ]
6835 },
6836 {
@@ -6799,7 +6843,7 @@
6843 "pt": "Inglês (Estados Unidos)",
6844 "ru": "Английский (Соединенные Штаты)",
6845 "xloc": [
6802 - "default.handlebars->25->773"
6846 + "default.handlebars->25->780"
6847 ]
6848 },
6849 {
@@ -6812,7 +6856,7 @@
6856 "pt": "Inglês (Zimbábue)",
6857 "ru": "Английский (Зимбабве)",
6858 "xloc": [
6815 - "default.handlebars->25->774"
6859 + "default.handlebars->25->781"
6860 ]
6861 },
6862 {
@@ -6825,8 +6869,8 @@
6869 "pt": "Entrar",
6870 "ru": "Ввод",
6871 "xloc": [
6828 - "default.handlebars->25->954",
6829 - "default.handlebars->25->955"
6872 + "default.handlebars->25->961",
6873 + "default.handlebars->25->962"
6874 ]
6875 },
6876 {
@@ -6839,7 +6883,7 @@
6883 "pt": "Insira uma lista separada por vírgulas de nomes de regiões administrativas.",
6884 "ru": "Введите разделенный запятыми список имен административных областей.",
6885 "xloc": [
6842 - "default.handlebars->25->1248"
6886 + "default.handlebars->25->1255"
6887 ]
6888 },
6889 {
@@ -6863,9 +6907,9 @@
6907 "ja": "テキストを入力し、[OK]をクリックして、米国英語キーボードを使用してリモートで入力します。続行する前に、リモートカーソルを正しい位置に配置してください。",
6908 "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.",
6909 "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.",
6866 - "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что дистанционный курсор установлен в правильное положение.",
6910 + "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.",
6911 "xloc": [
6868 - "default.handlebars->25->607"
6912 + "default.handlebars->25->614"
6913 ]
6914 },
6915 {
@@ -6890,7 +6934,7 @@
6934 "ja": "2段階ログインのトークンをここに入力します。",
6935 "nl": "Voer hier het token in voor tweestaps-aanmelding:",
6936 "pt": "Digite o token aqui para o login em duas etapas:",
6893 - "ru": "Для двухэтапного входа в систему введите токен здесь:",
6937 + "ru": "Для двухэтапного входа введите токен здесь:",
6938 "xloc": [
6939 "default.handlebars->25->121"
6940 ]
@@ -6930,7 +6974,7 @@
6974 "pt": "Esperanto",
6975 "ru": "Эсперанто",
6976 "xloc": [
6933 - "default.handlebars->25->775"
6977 + "default.handlebars->25->782"
6978 ]
6979 },
6980 {
@@ -6942,7 +6986,7 @@
6986 "pt": "Estoniano",
6987 "ru": "Эстонский",
6988 "xloc": [
6945 - "default.handlebars->25->776"
6989 + "default.handlebars->25->783"
6990 ]
6991 },
6992 {
@@ -6953,9 +6997,9 @@
6997 "ja": "イベントの詳細",
6998 "nl": "Gebeurtenis details",
6999 "pt": "Detalhes do evento",
6956 - "ru": "Детайли события",
7000 + "ru": "Детали события",
7001 "xloc": [
6958 - "default.handlebars->25->683"
7002 + "default.handlebars->25->690"
7003 ]
7004 },
7005 {
@@ -6968,7 +7012,7 @@
7012 "pt": "Exportação da lista de eventos",
7013 "ru": "Экспорт списка событий",
7014 "xloc": [
6971 - "default.handlebars->25->1192"
7015 + "default.handlebars->25->1199"
7016 ]
7017 },
7018 {
@@ -7009,7 +7053,7 @@
7053 "es": "Cuenta existente con esta dirección de correo electrónico.",
7054 "ja": "このメールアドレスを持つ既存のアカウント。",
7055 "nl": "Bestaand account met dit e-mailadres.",
7012 - "ru": "Существующий аккаунт с этим адресом эл. почты.",
7056 + "ru": "Существующий аккаунт с этим адресом email.",
7057 "xloc": [
7058 "login-mobile.handlebars->5->4",
7059 "login.handlebars->5->4"
@@ -7025,7 +7069,7 @@
7069 "pt": "ASCII estendido",
7070 "ru": "Расширенный ASCII",
7071 "xloc": [
7028 - "default.handlebars->25->632"
7072 + "default.handlebars->25->639"
7073 ]
7074 },
7075 {
@@ -7047,8 +7091,9 @@
7091 "en": "External",
7092 "es": "Externo",
7093 "nl": "Extern",
7094 + "ru": "Внешний",
7095 "xloc": [
7051 - "default.handlebars->25->1426"
7096 + "default.handlebars->25->1433"
7097 ]
7098 },
7099 {
@@ -7061,7 +7106,7 @@
7106 "pt": "FYRO Macedonian",
7107 "ru": "Mакедонский (БЮР)",
7108 "xloc": [
7064 - "default.handlebars->25->826"
7109 + "default.handlebars->25->833"
7110 ]
7111 },
7112 {
@@ -7073,7 +7118,7 @@
7118 "pt": "O servidor remoto retornou um erro: (429) Too Many Requests.",
7119 "ru": "Фарерский",
7120 "xloc": [
7076 - "default.handlebars->25->777"
7121 + "default.handlebars->25->784"
7122 ]
7123 },
7124 {
@@ -7100,7 +7145,7 @@
7145 "pt": "Persa (persa)",
7146 "ru": "Фарси (Персидский)",
7147 "xloc": [
7103 - "default.handlebars->25->778"
7148 + "default.handlebars->25->785"
7149 ]
7150 },
7151 {
@@ -7128,7 +7173,7 @@
7173 "pt": "Recursos",
7174 "ru": "Функции",
7175 "xloc": [
7131 - "default.handlebars->25->982"
7176 + "default.handlebars->25->989"
7177 ]
7178 },
7179 {
@@ -7140,7 +7185,7 @@
7185 "pt": "Fijiano",
7186 "ru": "Фиджи",
7187 "xloc": [
7143 - "default.handlebars->25->779"
7188 + "default.handlebars->25->786"
7189 ]
7190 },
7191 {
@@ -7155,7 +7200,7 @@
7200 "ru": "Редактор файлов",
7201 "xloc": [
7202 "default-mobile.handlebars->9->254",
7158 - "default.handlebars->25->655"
7203 + "default.handlebars->25->662"
7204 ]
7205 },
7206 {
@@ -7182,7 +7227,7 @@
7227 "pt": "Driver do sistema de arquivos",
7228 "ru": "Драйвер файловой системы",
7229 "xloc": [
7185 - "default.handlebars->25->615"
7230 + "default.handlebars->25->622"
7231 ]
7232 },
7233 {
@@ -7196,7 +7241,7 @@
7241 "pt": "Arquivos",
7242 "ru": "Файлы",
7243 "xloc": [
7199 - "default.handlebars->25->1069",
7244 + "default.handlebars->25->1076",
7245 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
7246 "default.handlebars->contextMenu->cxfiles"
7247 ]
@@ -7225,7 +7270,7 @@
7270 "pt": "Notificação arquivos",
7271 "ru": "Уведомление файлов",
7272 "xloc": [
7228 - "default.handlebars->25->990"
7273 + "default.handlebars->25->997"
7274 ]
7275 },
7276 {
@@ -7238,7 +7283,7 @@
7283 "pt": "Arquivos do prompt",
7284 "ru": "Запрос файлов",
7285 "xloc": [
7241 - "default.handlebars->25->989"
7286 + "default.handlebars->25->996"
7287 ]
7288 },
7289 {
@@ -7267,7 +7312,7 @@
7312 "pt": "Finlandês",
7313 "ru": "Финский",
7314 "xloc": [
7270 - "default.handlebars->25->780"
7315 + "default.handlebars->25->787"
7316 ]
7317 },
7318 {
@@ -7279,7 +7324,7 @@
7324 "ja": "固定幅インターフェイス",
7325 "nl": "Interface met vaste breedte",
7326 "pt": "Interface de largura fixa",
7282 - "ru": "Закреплен с интерфейсом",
7327 + "ru": "Интерфейс с фиксированной шириной",
7328 "xloc": [
7329 "agentinvite.handlebars->container->topbar->uiMenuButton->uiMenu",
7330 "default.handlebars->container->topbar->1->1->uiMenuButton->uiMenu",
@@ -7326,8 +7371,8 @@
7371 "pt": "Forçar redefinição de senha no próximo login.",
7372 "ru": "Принудительно сбросить пароль при следующем входе в систему.",
7373 "xloc": [
7329 - "default.handlebars->25->1242",
7330 - "default.handlebars->25->1356"
7374 + "default.handlebars->25->1249",
7375 + "default.handlebars->25->1363"
7376 ]
7377 },
7378 {
@@ -7353,7 +7398,7 @@
7398 "ja": "ユーザー/パスワードを忘れましたか?",
7399 "nl": "Gebruikersnaam/wachtwoord vergeten?",
7400 "pt": "Esqueceu usuário / senha?",
7356 - "ru": "Забыли логин / пароль?",
7401 + "ru": "Забыли логин/пароль?",
7402 "xloc": [
7403 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->resetAccountDiv->resetAccountSpan"
7404 ]
@@ -7366,7 +7411,7 @@
7411 "ja": "ユーザー名/パスワードを忘れましたか?",
7412 "nl": "Gebruikersnaam/wachtwoord vergeten?",
7413 "pt": "Esqueceu seu nome de usuário / senha?",
7369 - "ru": "Забыли потребитель / пароль?",
7414 + "ru": "Забыли логин/пароль?",
7415 "xloc": [
7416 "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->resetAccountDiv->resetAccountSpan"
7417 ]
@@ -7395,8 +7440,8 @@
7440 "pt": "Livre",
7441 "ru": "Свободно",
7442 "xloc": [
7398 - "default.handlebars->25->1387",
7399 - "default.handlebars->25->1389"
7443 + "default.handlebars->25->1394",
7444 + "default.handlebars->25->1396"
7445 ]
7446 },
7447 {
@@ -7423,7 +7468,7 @@
7468 "pt": "Francês (Bélgica)",
7469 "ru": "Французский (Бельгия)",
7470 "xloc": [
7426 - "default.handlebars->25->782"
7471 + "default.handlebars->25->789"
7472 ]
7473 },
7474 {
@@ -7436,7 +7481,7 @@
7481 "pt": "Francês (Canadá)",
7482 "ru": "Французский (Канада)",
7483 "xloc": [
7439 - "default.handlebars->25->783"
7484 + "default.handlebars->25->790"
7485 ]
7486 },
7487 {
@@ -7449,7 +7494,7 @@
7494 "pt": "Francês (França)",
7495 "ru": "Французский (Франция)",
7496 "xloc": [
7452 - "default.handlebars->25->784"
7497 + "default.handlebars->25->791"
7498 ]
7499 },
7500 {
@@ -7462,7 +7507,7 @@
7507 "pt": "Francês (Luxemburgo)",
7508 "ru": "Французский (Люксембург)",
7509 "xloc": [
7465 - "default.handlebars->25->785"
7510 + "default.handlebars->25->792"
7511 ]
7512 },
7513 {
@@ -7475,7 +7520,7 @@
7520 "pt": "Francês (Mônaco)",
7521 "ru": "Французский (Монако)",
7522 "xloc": [
7478 - "default.handlebars->25->786"
7523 + "default.handlebars->25->793"
7524 ]
7525 },
7526 {
@@ -7488,7 +7533,7 @@
7533 "pt": "Francês (Padrão)",
7534 "ru": "Французский (Стандартный)",
7535 "xloc": [
7491 - "default.handlebars->25->781"
7536 + "default.handlebars->25->788"
7537 ]
7538 },
7539 {
@@ -7501,7 +7546,7 @@
7546 "pt": "Francês (Suíça)",
7547 "ru": "Французский (Швейцария)",
7548 "xloc": [
7504 - "default.handlebars->25->787"
7549 + "default.handlebars->25->794"
7550 ]
7551 },
7552 {
@@ -7514,7 +7559,7 @@
7559 "pt": "Frísio",
7560 "ru": "Фризский",
7561 "xloc": [
7517 - "default.handlebars->25->788"
7562 + "default.handlebars->25->795"
7563 ]
7564 },
7565 {
@@ -7527,7 +7572,7 @@
7572 "pt": "Friuliano",
7573 "ru": "Фриульский",
7574 "xloc": [
7530 - "default.handlebars->25->789"
7575 + "default.handlebars->25->796"
7576 ]
7577 },
7578 {
@@ -7545,9 +7590,9 @@
7590 "default-mobile.handlebars->9->292",
7591 "default-mobile.handlebars->9->310",
7592 "default-mobile.handlebars->9->64",
7548 - "default.handlebars->25->1084",
7549 - "default.handlebars->25->1253",
7550 - "default.handlebars->25->961"
7593 + "default.handlebars->25->1091",
7594 + "default.handlebars->25->1260",
7595 + "default.handlebars->25->968"
7596 ]
7597 },
7598 {
@@ -7561,7 +7606,7 @@
7606 "pt": "Administrador Pleno (todos os direitos)",
7607 "ru": "Администратор с полным доступом (все права)",
7608 "xloc": [
7564 - "default.handlebars->25->1107"
7609 + "default.handlebars->25->1114"
7610 ]
7611 },
7612 {
@@ -7570,10 +7615,11 @@
7615 "en": "Full Device Group Administrator",
7616 "es": "Administrador de grupo completo de dispositivos",
7617 "nl": "Volledige apparaatgroep beheerder",
7618 + "ru": "Администратор группы устройств с полным доступом",
7619 "xloc": [
7574 - "default.handlebars->25->1024",
7575 - "default.handlebars->25->1290",
7576 - "default.handlebars->25->1364"
7620 + "default.handlebars->25->1031",
7621 + "default.handlebars->25->1297",
7622 + "default.handlebars->25->1371"
7623 ]
7624 },
7625 {
@@ -7585,7 +7631,7 @@
7631 "ja": "全画面表示。ブラウザの全画面表示に移行します。",
7632 "nl": "Volledig scherm. Houd shift ingedrukt om de browser op volledig scherm weer te geven.",
7633 "pt": "Tela cheia. Mantenha a tecla Shift pressionada no navegador em tela cheia.",
7588 - "ru": "Полноэкранный режим. Задержите shift для полноэкранного режима браузера.",
7634 + "ru": "Полноэкранный режим. Удерживайте shift для полноэкранного режима браузера.",
7635 "xloc": [
7636 "default.handlebars->container->column_l->p11->p11title->p11deviceNameHeader->devListToolbarViewIcons",
7637 "default.handlebars->container->column_l->p14->p14title->devListToolbarViewIcons"
@@ -7602,7 +7648,7 @@
7648 "pt": "Administrador completo",
7649 "ru": "Администратор с полным доступом",
7650 "xloc": [
7605 - "default.handlebars->25->1313"
7651 + "default.handlebars->25->1320"
7652 ]
7653 },
7654 {
@@ -7615,7 +7661,7 @@
7661 "pt": "Gaélico (irlandês)",
7662 "ru": "Гэльский (Ирландский)",
7663 "xloc": [
7618 - "default.handlebars->25->791"
7664 + "default.handlebars->25->798"
7665 ]
7666 },
7667 {
@@ -7628,7 +7674,7 @@
7674 "pt": "Gaélico (escocês)",
7675 "ru": "Гэльский (Шотландия)",
7676 "xloc": [
7631 - "default.handlebars->25->790"
7677 + "default.handlebars->25->797"
7678 ]
7679 },
7680 {
@@ -7641,7 +7687,7 @@
7687 "pt": "Galego",
7688 "ru": "Галицкий",
7689 "xloc": [
7644 - "default.handlebars->25->792"
7690 + "default.handlebars->25->799"
7691 ]
7692 },
7693 {
@@ -7667,7 +7713,7 @@
7713 "ja": "全般",
7714 "nl": "Algemeen",
7715 "pt": "Geral",
7670 - "ru": "Общие",
7716 + "ru": "Сводка",
7717 "xloc": [
7718 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDev",
7719 "default.handlebars->container->topbar->1->1->MeshSubMenuSpan->MeshSubMenu->1->0->MeshGeneral",
@@ -7684,7 +7730,7 @@
7730 "ja": "全般-",
7731 "nl": "Algemeen -",
7732 "pt": "Geral - ",
7687 - "ru": "Общие - ",
7733 + "ru": "Сводка - ",
7734 "xloc": [
7735 "default.handlebars->container->column_l->p10->1->1->0->1->p10title->3",
7736 "default.handlebars->container->column_l->p20->p20title->5",
@@ -7702,7 +7748,7 @@
7748 "pt": "Informações gerais",
7749 "ru": "Общая информация",
7750 "xloc": [
7705 - "default.handlebars->25->411"
7751 + "default.handlebars->25->418"
7752 ]
7753 },
7754 {
@@ -7729,7 +7775,7 @@
7775 "pt": "Georgiano",
7776 "ru": "Грузинский",
7777 "xloc": [
7732 - "default.handlebars->25->793"
7778 + "default.handlebars->25->800"
7779 ]
7780 },
7781 {
@@ -7741,7 +7787,7 @@
7787 "pt": "Alemão (Áustria)",
7788 "ru": "Немецкий (Австрия)",
7789 "xloc": [
7744 - "default.handlebars->25->795"
7790 + "default.handlebars->25->802"
7791 ]
7792 },
7793 {
@@ -7753,7 +7799,7 @@
7799 "pt": "Alemão (Alemanha)",
7800 "ru": "Немецкий (Германия)",
7801 "xloc": [
7756 - "default.handlebars->25->796"
7802 + "default.handlebars->25->803"
7803 ]
7804 },
7805 {
@@ -7765,7 +7811,7 @@
7811 "pt": "Alemão (Liechtenstein)",
7812 "ru": "Немецкий (Лихтенштейн)",
7813 "xloc": [
7768 - "default.handlebars->25->797"
7814 + "default.handlebars->25->804"
7815 ]
7816 },
7817 {
@@ -7777,7 +7823,7 @@
7823 "pt": "Alemão (Luxemburgo)",
7824 "ru": "Немецкий (Люксембург)",
7825 "xloc": [
7780 - "default.handlebars->25->798"
7826 + "default.handlebars->25->805"
7827 ]
7828 },
7829 {
@@ -7789,7 +7835,7 @@
7835 "pt": "Alemão (Padrão)",
7836 "ru": "Немецкий (Стандартный)",
7837 "xloc": [
7792 - "default.handlebars->25->794"
7838 + "default.handlebars->25->801"
7839 ]
7840 },
7841 {
@@ -7799,9 +7845,9 @@
7845 "ja": "ドイツ語(スイス)",
7846 "nl": "Duits (Zwitserland)",
7847 "pt": "Alemão (Suíça)",
7802 - "ru": "German (Switzerland)",
7848 + "ru": "Немецкий (Швейцария)",
7849 "xloc": [
7804 - "default.handlebars->25->799"
7850 + "default.handlebars->25->806"
7851 ]
7852 },
7853 {
@@ -7812,9 +7858,9 @@
7858 "ja": "このデバイスのMQTTログイン資格情報を取得します。",
7859 "nl": "Ontvang MQTT-inloggegevens voor dit apparaat.",
7860 "pt": "Obtenha credenciais de login do MQTT para este dispositivo.",
7815 - "ru": "Получить MQTT учетные данные для этого устройства.",
7861 + "ru": "Получить учетные данные MQTT для этого устройства.",
7862 "xloc": [
7817 - "default.handlebars->25->511"
7863 + "default.handlebars->25->518"
7864 ]
7865 },
7866 {
@@ -7858,7 +7904,7 @@
7904 "pt": "Bom",
7905 "ru": "Хорошо",
7906 "xloc": [
7861 - "default.handlebars->25->957"
7907 + "default.handlebars->25->964"
7908 ]
7909 },
7910 {
@@ -7888,7 +7934,7 @@
7934 "pt": "Grego",
7935 "ru": "Греческий",
7936 "xloc": [
7891 - "default.handlebars->25->800"
7937 + "default.handlebars->25->807"
7938 ]
7939 },
7940 {
@@ -7903,7 +7949,7 @@
7949 "ru": "Группа",
7950 "xloc": [
7951 "default-mobile.handlebars->9->134",
7906 - "default.handlebars->25->436",
7952 + "default.handlebars->25->443",
7953 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
7954 ]
7955 },
@@ -7928,8 +7974,9 @@
7974 "en": "Group Members",
7975 "es": "Miembros del grupo",
7976 "nl": "Groeps leden",
7977 + "ru": "Члены группы",
7978 "xloc": [
7932 - "default.handlebars->25->1282"
7979 + "default.handlebars->25->1289"
7980 ]
7981 },
7982 {
@@ -7941,9 +7988,9 @@
7988 "ja": "ユーザー{0}のグループ権限。",
7989 "nl": "Groepsrechten voor gebruiker {0}.",
7990 "pt": "Permissões de grupo para o usuário {0}.",
7944 - "ru": "Групповые права для потребителя {0}.",
7991 + "ru": "Права на группу для пользователя {0}.",
7992 "xloc": [
7946 - "default.handlebars->25->1083"
7993 + "default.handlebars->25->1090"
7994 ]
7995 },
7996 {
@@ -7952,8 +7999,9 @@
7999 "en": "Group permissions for {0}.",
8000 "es": "Permisos de grupo para {0}.",
8001 "nl": "Groepsrechten voor {0}.",
8002 + "ru": "Права на группу для {0}.",
8003 "xloc": [
7956 - "default.handlebars->25->1082"
8004 + "default.handlebars->25->1089"
8005 ]
8006 },
8007 {
@@ -7976,8 +8024,9 @@
8024 "en": "Groups",
8025 "es": "Grupos",
8026 "nl": "Groepen",
8027 + "ru": "Группы",
8028 "xloc": [
7980 - "default.handlebars->25->1197",
8029 + "default.handlebars->25->1204",
8030 "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups"
8031 ]
8032 },
@@ -7991,7 +8040,7 @@
8040 "pt": "Gujarati",
8041 "ru": "Гуджарати",
8042 "xloc": [
7994 - "default.handlebars->25->801"
8043 + "default.handlebars->25->808"
8044 ]
8045 },
8046 {
@@ -8020,7 +8069,7 @@
8069 "pt": "Haitiano",
8070 "ru": "Гаитянский",
8071 "xloc": [
8023 - "default.handlebars->25->802"
8072 + "default.handlebars->25->809"
8073 ]
8074 },
8075 {
@@ -8048,7 +8097,7 @@
8097 "pt": "Forçar desconexão do agente",
8098 "ru": "Жесткое отключение агента",
8099 "xloc": [
8051 - "default.handlebars->25->699"
8100 + "default.handlebars->25->706"
8101 ]
8102 },
8103 {
@@ -8058,7 +8107,7 @@
8107 "es": "Heap Total",
8108 "nl": "Heap Totaal",
8109 "xloc": [
8061 - "default.handlebars->25->1428"
8110 + "default.handlebars->25->1435"
8111 ]
8112 },
8113 {
@@ -8068,7 +8117,7 @@
8117 "es": "Heap Used",
8118 "nl": "Heap gebruikt",
8119 "xloc": [
8071 - "default.handlebars->25->1427"
8120 + "default.handlebars->25->1434"
8121 ]
8122 },
8123 {
@@ -8081,7 +8130,7 @@
8130 "pt": "Hebraico",
8131 "ru": "Иврит",
8132 "xloc": [
8084 - "default.handlebars->25->803"
8133 + "default.handlebars->25->810"
8134 ]
8135 },
8136 {
@@ -8093,7 +8142,7 @@
8142 "nl": "Help bij het vertalen van MeshCentral",
8143 "ru": "Помочь перевести MeshCentral",
8144 "xloc": [
8096 - "default.handlebars->25->916"
8145 + "default.handlebars->25->923"
8146 ]
8147 },
8148 {
@@ -8105,7 +8154,7 @@
8154 "ja": "冬眠",
8155 "nl": "Slaapstand",
8156 "pt": "Hibernando",
8108 - "ru": "Переход в спящий режим",
8157 + "ru": "Гибернация",
8158 "xloc": [
8159 "default-mobile.handlebars->9->104",
8160 "default-mobile.handlebars->9->111",
@@ -8123,7 +8172,7 @@
8172 "pt": "Hindi",
8173 "ru": "Хинди",
8174 "xloc": [
8126 - "default.handlebars->25->804"
8175 + "default.handlebars->25->811"
8176 ]
8177 },
8178 {
@@ -8134,7 +8183,7 @@
8183 "fr": "Attends, le courrier est envoyé.",
8184 "ja": "お待ちください、送信されたメールをリセットします。",
8185 "nl": "even wachten, reset e-mail verzonden.",
8137 - "ru": "Подождите, отправлен почта для сброса.",
8186 + "ru": "Подождите, письмо для сброса отправлено.",
8187 "xloc": [
8188 "login-mobile.handlebars->5->1",
8189 "login.handlebars->5->1"
@@ -8151,7 +8200,7 @@
8200 "ru": "Задержана 1 запись для копирования",
8201 "xloc": [
8202 "default-mobile.handlebars->9->263",
8154 - "default.handlebars->25->664"
8203 + "default.handlebars->25->671"
8204 ]
8205 },
8206 {
@@ -8165,7 +8214,7 @@
8214 "ru": "Задержана 1 запись для перемещения",
8215 "xloc": [
8216 "default-mobile.handlebars->9->267",
8168 - "default.handlebars->25->668"
8217 + "default.handlebars->25->675"
8218 ]
8219 },
8220 {
@@ -8176,10 +8225,10 @@
8225 "ja": "コピー用に{0}エントリを保持しています",
8226 "nl": "{0} items vasthouden voor kopiëren",
8227 "pt": "Mantendo {0} entradas para cópia",
8179 - "ru": "Задержана/о {0} запись/ей для копирования",
8228 + "ru": "Задержано {0} записей для копирования",
8229 "xloc": [
8230 "default-mobile.handlebars->9->261",
8182 - "default.handlebars->25->662"
8231 + "default.handlebars->25->669"
8232 ]
8233 },
8234 {
@@ -8190,10 +8239,10 @@
8239 "ja": "移動のために{0}エントリを保持しています",
8240 "nl": "{0} items vasthouden voor verplaatsen",
8241 "pt": "Manter {0} entradas para mover",
8193 - "ru": "Задержана/о {0} запись/ей для перемещения",
8242 + "ru": "Задержано {0} записей для перемещения",
8243 "xloc": [
8244 "default-mobile.handlebars->9->265",
8196 - "default.handlebars->25->666"
8245 + "default.handlebars->25->673"
8246 ]
8247 },
8248 {
@@ -8204,10 +8253,10 @@
8253 "ja": "{2}の{0}エントリを保持しています{1}",
8254 "nl": "Houd {0} item {1} vast voor {2}",
8255 "pt": "Mantendo {0} entrada {1} para {2}",
8207 - "ru": "Задержанa/о {0} запись/ей {1} для {2}",
8256 + "ru": "Задержано {0} записей для {2}",
8257 "xloc": [
8258 "default-mobile.handlebars->9->88",
8210 - "default.handlebars->25->1179"
8259 + "default.handlebars->25->1186"
8260 ]
8261 },
8262 {
@@ -8225,10 +8274,10 @@
8274 "default-mobile.handlebars->9->139",
8275 "default-mobile.handlebars->9->223",
8276 "default.handlebars->25->239",
8228 - "default.handlebars->25->438",
8229 - "default.handlebars->25->439",
8230 - "default.handlebars->25->441",
8231 - "default.handlebars->25->593"
8277 + "default.handlebars->25->445",
8278 + "default.handlebars->25->446",
8279 + "default.handlebars->25->448",
8280 + "default.handlebars->25->600"
8281 ]
8282 },
8283 {
@@ -8241,7 +8290,7 @@
8290 "pt": "Sincronização de nome de host",
8291 "ru": "Синхронизация имени хоста",
8292 "xloc": [
8244 - "default.handlebars->25->980"
8293 + "default.handlebars->25->987"
8294 ]
8295 },
8296 {
@@ -8253,7 +8302,7 @@
8302 "pt": "Húngaro",
8303 "ru": "Венгерский",
8304 "xloc": [
8256 - "default.handlebars->25->805"
8305 + "default.handlebars->25->812"
8306 ]
8307 },
8308 {
@@ -8264,7 +8313,7 @@
8313 "ja": "IP範囲",
8314 "nl": "IP-bereik",
8315 "pt": "IP Range",
8267 - "ru": "IP диапазон",
8316 + "ru": "Диапазон IP",
8317 "xloc": [
8318 "default.handlebars->25->254"
8319 ]
@@ -8331,7 +8380,7 @@
8380 "pt": "islandês",
8381 "ru": "Исландский",
8382 "xloc": [
8334 - "default.handlebars->25->806"
8383 + "default.handlebars->25->813"
8384 ]
8385 },
8386 {
@@ -8346,7 +8395,7 @@
8395 "ru": "Выбор иконки",
8396 "xloc": [
8397 "default-mobile.handlebars->9->221",
8349 - "default.handlebars->25->591"
8398 + "default.handlebars->25->598"
8399 ]
8400 },
8401 {
@@ -8385,7 +8434,7 @@
8434 "pt": "Indonésia",
8435 "ru": "Индонезийский",
8436 "xloc": [
8388 - "default.handlebars->25->807"
8437 + "default.handlebars->25->814"
8438 ]
8439 },
8440 {
@@ -8441,7 +8490,7 @@
8490 "pt": "Instalar",
8491 "ru": "Установка",
8492 "xloc": [
8444 - "default.handlebars->25->1019"
8493 + "default.handlebars->25->1026"
8494 ]
8495 },
8496 {
@@ -8451,6 +8500,7 @@
8500 "es": "Instale <a href = \\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a> o una aplicación compatible y escanee el código de barras, use <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank> este enlace </a> 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.",
8501 "ja": "インストール<a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a>または互換性のあるアプリケーションでバーコードをスキャンするには、<a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>このリンク</a>を使用するか、秘密。次に、現在の6桁のトークンを入力して、2段階ログインを有効にします。",
8502 "nl": "Installeer <a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a> of een compatibele applicatie en scan de streepjescode, gebruik <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>deze link</a> of voer de link in geheim. Voer vervolgens het huidige 6-cijferige token hieronder in om 2-staps aanmelding te activeren.",
8503 + "ru": "Установите <a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a> или совместимое приложение и отсканируйте штрих-код, используйте <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>эту ссылку</a> или введите код. Затем введите ниже текущий токен из 6 цифр для активации двухшаговой авторизации.",
8504 "xloc": [
8505 "default.handlebars->25->120"
8506 ]
@@ -8462,6 +8512,7 @@
8512 "es": "Instale <a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a> o una aplicación compatible, use <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank> este enlace</a> 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.",
8513 "ja": "インストール<a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank> Google Authenticator </a>または互換性のあるアプリケーションの場合、<a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>このリンク</a>を使用するか、下に秘密を入力します。次に、現在の6桁のトークンを入力して、2段階ログインを有効にします。",
8514 "nl": "Installeer <a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a> of een compatibele toepassing, gebruik <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>deze link</a> of voer hieronder het geheim in. Voer vervolgens het huidige 6-cijferige token in om 2-staps aanmelding te activeren.",
8515 + "ru": "Установите <a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a> или совместимое приложение, используйте <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>эту ссылку</a> или введите код ниже. Затем введите ниже текущий токен из 6 цифр для активации двухшаговой авторизации.",
8516 "xloc": [
8517 "default-mobile.handlebars->9->17"
8518 ]
@@ -8477,7 +8528,7 @@
8528 "pt": "Instalar CIRA",
8529 "ru": "Установка CIRA",
8530 "xloc": [
8480 - "default.handlebars->25->1011"
8531 + "default.handlebars->25->1018"
8532 ]
8533 },
8534 {
@@ -8490,7 +8541,7 @@
8541 "pt": "Instalação local",
8542 "ru": "Локальная установка",
8543 "xloc": [
8493 - "default.handlebars->25->1013"
8544 + "default.handlebars->25->1020"
8545 ]
8546 },
8547 {
@@ -8517,7 +8568,7 @@
8568 "pt": "Intel (F10 = ESC+[OM)",
8569 "ru": "Intel (F10 = ESC+[OM)",
8570 "xloc": [
8520 - "default.handlebars->25->634",
8571 + "default.handlebars->25->641",
8572 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
8573 ]
8574 },
@@ -8531,10 +8582,10 @@
8582 "pt": "Intel AMT",
8583 "ru": "Intel AMT",
8584 "xloc": [
8534 - "default.handlebars->25->1139",
8535 - "default.handlebars->25->1145",
8536 - "default.handlebars->25->1424",
8537 - "default.handlebars->25->1444"
8585 + "default.handlebars->25->1146",
8586 + "default.handlebars->25->1152",
8587 + "default.handlebars->25->1431",
8588 + "default.handlebars->25->1451"
8589 ]
8590 },
8591 {
@@ -8587,7 +8638,7 @@
8638 "pt": "O Intel AMT é ativado no modo de controle de administrador",
8639 "ru": "Intel AMT активирован в режиме администратора",
8640 "xloc": [
8590 - "default.handlebars->25->454"
8641 + "default.handlebars->25->461"
8642 ]
8643 },
8644 {
@@ -8600,7 +8651,7 @@
8651 "pt": "O Intel AMT é ativado no modo de controle do cliente",
8652 "ru": "Intel AMT активирован в режиме клиента",
8653 "xloc": [
8603 - "default.handlebars->25->452"
8654 + "default.handlebars->25->459"
8655 ]
8656 },
8657 {
@@ -8613,7 +8664,7 @@
8664 "pt": "O Intel AMT está configurado com segurança de rede TLS",
8665 "ru": "Intel AMT настроен с TLS безопасностью сети",
8666 "xloc": [
8616 - "default.handlebars->25->456"
8667 + "default.handlebars->25->463"
8668 ]
8669 },
8670 {
@@ -8638,7 +8689,7 @@
8689 "ja": "Intel AMTは、MEBxで信頼できるFQDNを使用して設定するか、ネットワーク上に有線LANが必要です。",
8690 "nl": "Intel AMT moet worden ingesteld met een vertrouwd FQDN in MEBx of een bekabeld LAN op het netwerk hebben:",
8691 "pt": "A Intel AMT precisará ser configurada com um FQDN confiável na MEBx ou ter uma LAN com fio na rede:",
8641 - "ru": "Intel AMT должен быть установлен с полностью определенным имемем домена(FQDN) в MEBx или иметь кабельное подключение к локальной сети:",
8692 + "ru": "Intel AMT необходимо установить с доверенным FQDN в MEBx или иметь кабельное подключение к локальной сети:",
8693 "xloc": [
8694 "default.handlebars->25->251"
8695 ]
@@ -8653,7 +8704,7 @@
8704 "pt": "Intel ASCII",
8705 "ru": "Intel ASCII",
8706 "xloc": [
8656 - "default.handlebars->25->633"
8707 + "default.handlebars->25->640"
8708 ]
8709 },
8710 {
@@ -8669,11 +8720,11 @@
8720 "default-mobile.handlebars->9->123",
8721 "default-mobile.handlebars->9->187",
8722 "default-mobile.handlebars->9->192",
8672 - "default.handlebars->25->1005",
8673 - "default.handlebars->25->414",
8674 - "default.handlebars->25->464",
8675 - "default.handlebars->25->480",
8676 - "default.handlebars->25->997"
8723 + "default.handlebars->25->1004",
8724 + "default.handlebars->25->1012",
8725 + "default.handlebars->25->421",
8726 + "default.handlebars->25->471",
8727 + "default.handlebars->25->487"
8728 ]
8729 },
8730 {
@@ -8687,7 +8738,7 @@
8738 "ru": "Intel&reg; AMT CIRA",
8739 "xloc": [
8740 "default-mobile.handlebars->9->191",
8690 - "default.handlebars->25->478"
8741 + "default.handlebars->25->485"
8742 ]
8743 },
8744 {
@@ -8702,7 +8753,7 @@
8753 "xloc": [
8754 "default.handlebars->25->185",
8755 "default.handlebars->25->372",
8705 - "default.handlebars->25->477"
8756 + "default.handlebars->25->484"
8757 ]
8758 },
8759 {
@@ -8713,7 +8764,7 @@
8764 "ja": "Intel&reg;接続されたAMT",
8765 "nl": "Intel&reg; AMT verbonden",
8766 "pt": "Intel&reg; AMT conectado",
8716 - "ru": "Intel&reg; AMT Подключен",
8767 + "ru": "Intel&reg; AMT подключен",
8768 "xloc": [
8769 "default-mobile.handlebars->9->5",
8770 "default.handlebars->25->12",
@@ -8730,7 +8781,7 @@
8781 "pt": "Intel&reg; Política da AMT",
8782 "ru": "Политика Intel&reg; AMT",
8783 "xloc": [
8733 - "default.handlebars->25->1037"
8784 + "default.handlebars->25->1044"
8785 ]
8786 },
8787 {
@@ -8743,7 +8794,7 @@
8794 "pt": "Intel&reg; Redirecionamento AMT",
8795 "ru": "Перенаправление Intel&reg; AMT",
8796 "xloc": [
8746 - "player.htm->3->14"
8797 + "player.handlebars->3->14"
8798 ]
8799 },
8800 {
@@ -8756,7 +8807,7 @@
8807 "pt": "Intel&reg; Tag AMT ",
8808 "ru": "Intel&reg; AMT Тег",
8809 "xloc": [
8759 - "default.handlebars->25->468"
8810 + "default.handlebars->25->475"
8811 ]
8812 },
8813 {
@@ -8769,7 +8820,7 @@
8820 "pt": "Intel&reg; AMT WSMAN",
8821 "ru": "Intel&reg; AMT WSMAN",
8822 "xloc": [
8772 - "player.htm->3->13"
8823 + "player.handlebars->3->13"
8824 ]
8825 },
8826 {
@@ -8797,8 +8848,8 @@
8848 "ru": "Intel&reg; AMT подключен",
8849 "xloc": [
8850 "default-mobile.handlebars->9->201",
8800 - "default.handlebars->25->515",
8801 - "default.handlebars->25->516"
8851 + "default.handlebars->25->522",
8852 + "default.handlebars->25->523"
8853 ]
8854 },
8855 {
@@ -8809,10 +8860,10 @@
8860 "ja": "Intel&reg; AMTデスクトップおよびシリアルイベント。",
8861 "nl": "Intel&reg; AMT desktop- en seriële gebeurtenissen.",
8862 "pt": "Intel&reg; Área de trabalho AMT e eventos seriais.",
8812 - "ru": "Настольные и серийные события Intel&reg; AMT.",
8863 + "ru": "События Intel&reg; AMT desktop или serial.",
8864 "xloc": [
8814 - "default.handlebars->25->1135",
8815 - "default.handlebars->25->922"
8865 + "default.handlebars->25->1142",
8866 + "default.handlebars->25->929"
8867 ]
8868 },
8869 {
@@ -8826,8 +8877,8 @@
8877 "ru": "Intel&reg; AMT обнаружен",
8878 "xloc": [
8879 "default-mobile.handlebars->9->202",
8829 - "default.handlebars->25->517",
8830 - "default.handlebars->25->518"
8880 + "default.handlebars->25->524",
8881 + "default.handlebars->25->525"
8882 ]
8883 },
8884 {
@@ -8838,9 +8889,9 @@
8889 "ja": "Intel&reg; AMTはルーティング可能であり、すぐに使用できます。",
8890 "nl": "Intel&reg; AMT is routeerbaar en klaar voor gebruik.",
8891 "pt": "Intel&reg; O AMT é roteável e pronto para uso.",
8841 - "ru": "Intel&reg; AMT рутируется и готов к использованию.",
8892 + "ru": "Intel&reg; AMT маршрутизируется и готов к использованию.",
8893 "xloc": [
8843 - "default.handlebars->25->479"
8894 + "default.handlebars->25->486"
8895 ]
8896 },
8897 {
@@ -8851,7 +8902,7 @@
8902 "ja": "Intel&reg; AMTはルーティング可能です。",
8903 "nl": "Intel&reg; AMT is routeerbaar.",
8904 "pt": "Intel&reg; AMT é roteável.",
8854 - "ru": "Intel&reg; AMT рутируется.",
8905 + "ru": "Intel&reg; AMT маршрутизируется.",
8906 "xloc": [
8907 "default.handlebars->25->187",
8908 "default.handlebars->25->374"
@@ -8881,8 +8932,8 @@
8932 "ru": "Только Intel&reg; AMT, без агента",
8933 "xloc": [
8934 "default-mobile.handlebars->9->274",
8884 - "default.handlebars->25->951",
8885 - "default.handlebars->25->973"
8935 + "default.handlebars->25->958",
8936 + "default.handlebars->25->980"
8937 ]
8938 },
8939 {
@@ -8895,7 +8946,7 @@
8946 "pt": "Intel&reg; Tecnologia de gerenciamento ativo",
8947 "ru": "Технология Intel&reg; Active Management",
8948 "xloc": [
8898 - "default.handlebars->25->463"
8949 + "default.handlebars->25->470"
8950 ]
8951 },
8952 {
@@ -8909,7 +8960,7 @@
8960 "ru": "Intel&reg; ME",
8961 "xloc": [
8962 "default-mobile.handlebars->9->186",
8912 - "default.handlebars->25->462"
8963 + "default.handlebars->25->469"
8964 ]
8965 },
8966 {
@@ -8923,7 +8974,7 @@
8974 "ru": "Intel&reg; SM",
8975 "xloc": [
8976 "default-mobile.handlebars->9->188",
8926 - "default.handlebars->25->466"
8977 + "default.handlebars->25->473"
8978 ]
8979 },
8980 {
@@ -8936,7 +8987,7 @@
8987 "pt": "Intel&reg; Gerenciamento padrão",
8988 "ru": "Intel&reg; Standard Manageability",
8989 "xloc": [
8939 - "default.handlebars->25->465"
8990 + "default.handlebars->25->472"
8991 ]
8992 },
8993 {
@@ -8947,7 +8998,7 @@
8998 "ja": "Intel® AMT",
8999 "nl": "Intel® AMT",
9000 "pt": "Intel® AMT",
8950 - "ru": "Intel&reg; AMT"
9001 + "ru": "Intel® AMT"
9002 },
9003 {
9004 "cs": "Intel® AMT –",
@@ -8957,7 +9008,7 @@
9008 "ja": "Intel® AMT -",
9009 "nl": "Intel® AMT -",
9010 "pt": "Intel® AMT -",
8960 - "ru": "Intel&reg; AMT -",
9011 + "ru": "Intel® AMT -",
9012 "xloc": [
9013 "default.handlebars->container->column_l->p14->p14title->5"
9014 ]
@@ -8970,7 +9021,7 @@
9021 "ja": "Intel® AMTハードウェアKVM",
9022 "nl": "Intel® AMT Hardware KVM",
9023 "pt": "Intel® AMT Hardware KVM",
8973 - "ru": "undefined",
9024 + "ru": "Intel® AMT Hardware KVM",
9025 "xloc": [
9026 "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->1",
9027 "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->1"
@@ -8984,7 +9035,7 @@
9035 "ja": "Intel® AMTリダイレクトポートまたはKVM機能が無効になっています",
9036 "nl": "Intel® AMT omleidingspoort of KVM-functie is uitgeschakeld",
9037 "pt": "Intel® Porta de redirecionamento AMT ou recurso KVM desativado",
8987 - "ru": "undefined",
9038 + "ru": "Функция Intel® AMT Redirection port или KVM отключены",
9039 "xloc": [
9040 "default.handlebars->container->column_l->p11->p11warning->3",
9041 "default.handlebars->container->column_l->p12->p12warning->3"
@@ -8996,6 +9047,7 @@
9047 "en": "Intel®AMT",
9048 "es": "Intel®AMT",
9049 "nl": "Intel®AMT",
9050 + "ru": "Intel®AMT",
9051 "xloc": [
9052 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevAmt"
9053 ]
@@ -9008,9 +9060,9 @@
9060 "ja": "インタラクティブ",
9061 "nl": "Interactief",
9062 "pt": "Interativo",
9011 - "ru": "undefined",
9063 + "ru": "Интерактивный",
9064 "xloc": [
9013 - "default.handlebars->25->616"
9065 + "default.handlebars->25->623"
9066 ]
9067 },
9068 {
@@ -9038,7 +9090,7 @@
9090 "pt": "Interfaces",
9091 "ru": "Интерфейсы",
9092 "xloc": [
9041 - "default.handlebars->25->498"
9093 + "default.handlebars->25->505"
9094 ]
9095 },
9096 {
@@ -9049,9 +9101,9 @@
9101 "ja": "イヌクティトゥット語",
9102 "nl": "Inuktitut",
9103 "pt": "Inuktitut",
9052 - "ru": "undefined",
9104 + "ru": "Инуктитут",
9105 "xloc": [
9054 - "default.handlebars->25->808"
9106 + "default.handlebars->25->815"
9107 ]
9108 },
9109 {
@@ -9060,8 +9112,9 @@
9112 "en": "Invalid Device Group Type",
9113 "es": "Tipo de grupo de dispositivo no válido",
9114 "nl": "Ongeldige apparaatgroep type",
9115 + "ru": "Некорректный тип группы устройств",
9116 "xloc": [
9064 - "default.handlebars->25->1401"
9117 + "default.handlebars->25->1408"
9118 ]
9119 },
9120 {
@@ -9070,8 +9123,9 @@
9123 "en": "Invalid JSON",
9124 "es": "JSON inválido.",
9125 "nl": "Onjuiste JSON",
9126 + "ru": "Некорректный JSON",
9127 "xloc": [
9074 - "default.handlebars->25->1395"
9128 + "default.handlebars->25->1402"
9129 ]
9130 },
9131 {
@@ -9082,10 +9136,10 @@
9136 "ja": "JSONファイル形式が無効です。",
9137 "nl": "Ongeldige JSON-bestandsindeling.",
9138 "pt": "Formato de arquivo JSON inválido.",
9085 - "ru": "undefined",
9139 + "ru": "Некорректный формат файла JSON.",
9140 "xloc": [
9087 - "default.handlebars->25->1223",
9088 - "default.handlebars->25->1225"
9141 + "default.handlebars->25->1230",
9142 + "default.handlebars->25->1232"
9143 ]
9144 },
9145 {
@@ -9096,8 +9150,9 @@
9150 "ja": "無効なJSONファイル:{0}。",
9151 "nl": "Ongeldig JSON-bestand: {0}.",
9152 "pt": "Arquivo JSON inválido: {0}.",
9153 + "ru": "Некорректный файл JSON: {0}.",
9154 "xloc": [
9100 - "default.handlebars->25->1221"
9155 + "default.handlebars->25->1228"
9156 ]
9157 },
9158 {
@@ -9106,8 +9161,9 @@
9161 "en": "Invalid PKCS signature",
9162 "es": "Firma PKCS inválida",
9163 "nl": "Onjuiste PKCS handtekening",
9164 + "ru": "Некорректная сигнатура PKCS",
9165 "xloc": [
9110 - "default.handlebars->25->1393"
9166 + "default.handlebars->25->1400"
9167 ]
9168 },
9169 {
@@ -9116,8 +9172,9 @@
9172 "en": "Invalid RSA siguature",
9173 "es": "La firma RSA no es válida",
9174 "nl": "Ongeldige RSA handtekening",
9175 + "ru": "Некорректная сигнатура RSA",
9176 "xloc": [
9120 - "default.handlebars->25->1394"
9177 + "default.handlebars->25->1401"
9178 ]
9179 },
9180 {
@@ -9127,7 +9184,7 @@
9184 "es": "Token de creación de cuenta no válido.",
9185 "ja": "アカウント作成トークンが無効です。",
9186 "nl": "Ongeldig token voor het maken van een account.",
9130 - "ru": "undefined",
9187 + "ru": "Некорректный токен создания учетной записи.",
9188 "xloc": [
9189 "login-mobile.handlebars->5->5",
9190 "login.handlebars->5->5"
@@ -9140,7 +9197,7 @@
9197 "es": "Correo Electronico inválido.",
9198 "ja": "無効なメール。",
9199 "nl": "Ongeldige e-mail.",
9143 - "ru": "undefined",
9200 + "ru": "Некорректный email.",
9201 "xloc": [
9202 "login-mobile.handlebars->5->8",
9203 "login.handlebars->5->8"
@@ -9153,6 +9210,7 @@
9210 "es": "Token no válido, intente nuevamente.",
9211 "ja": "トークンが無効です。もう一度お試しください。",
9212 "nl": "Ongeldig token, probeer het opnieuw.",
9213 + "ru": "Некорректный токен, попробуйте еще.",
9214 "xloc": [
9215 "login-mobile.handlebars->5->10",
9216 "login.handlebars->5->10"
@@ -9166,6 +9224,7 @@
9224 "ja": "招待リンク({0})",
9225 "nl": "Uitnodigingslink ({0})",
9226 "pt": "Link de convite ({0})",
9227 + "ru": "Ссылка для приглашения ({0})",
9228 "xloc": [
9229 "default.handlebars->25->174"
9230 ]
@@ -9179,6 +9238,7 @@
9238 "ja": "招待タイプ",
9239 "nl": "Type uitnodiging",
9240 "pt": "Tipo de convite",
9241 + "ru": "Тип приглашения",
9242 "xloc": [
9243 "default.handlebars->25->280"
9244 ]
@@ -9194,7 +9254,7 @@
9254 "pt": "Convite",
9255 "ru": "Пригласить",
9256 "xloc": [
9197 - "default.handlebars->25->1021",
9257 + "default.handlebars->25->1028",
9258 "default.handlebars->25->236",
9259 "default.handlebars->25->313"
9260 ]
@@ -9208,6 +9268,7 @@
9268 "ja": "招待リンクを共有して、メッシュエージェントをインストールする人を招待します。このリンクは、ユーザーに\\\"{0}\\\"デバイスグループのインストール手順を示します。リンクは公開されており、このサーバーのアカウントは必要ありません。",
9269 "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.",
9270 "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.",
9271 + "ru": "Пригласите установить Mesh Agent поделившись ссылкой. Эта ссылка ведет на инструкции для установки для группы устройств \\\"{0}\\\". Ссылка общедоступна и не требует наличия учетной записи на сервере.",
9272 "xloc": [
9273 "default.handlebars->25->304"
9274 ]
@@ -9221,9 +9282,9 @@
9282 "ja": "このメッシュにメッシュエージェントをインストールするように招待します。",
9283 "nl": "Nodig iemand uit om de mesh-agent op deze mesh te installeren.",
9284 "pt": "Convide alguém para instalar o agente de malha nessa malha.",
9224 - "ru": "Отправить приглашение на установку Mesh Агента",
9285 + "ru": "Отправить приглашение на установку Mesh Agent",
9286 "xloc": [
9226 - "default.handlebars->25->1020",
9287 + "default.handlebars->25->1027",
9288 "default.handlebars->25->235"
9289 ]
9290 },
@@ -9236,6 +9297,7 @@
9297 "ja": "メッシュエージェントをインストールする人を招待します。 \\\"{0}\\\"デバイスグループのメッシュエージェントインストールへのリンクが記載されたメール。",
9298 "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}\\\".",
9299 "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}\\\".",
9300 + "ru": "Пригласите установить Mesh Agent. Ссылка на установку для группы \\\"{0}\\\" будет отправлена по электронной почте.",
9301 "xloc": [
9302 "default.handlebars->25->281"
9303 ]
@@ -9251,7 +9313,7 @@
9313 "pt": "Irish",
9314 "ru": "Ирландский",
9315 "xloc": [
9254 - "default.handlebars->25->809"
9316 + "default.handlebars->25->816"
9317 ]
9318 },
9319 {
@@ -9264,7 +9326,7 @@
9326 "pt": "Italiano (Padrão)",
9327 "ru": "Итальянский (Стандартный)",
9328 "xloc": [
9267 - "default.handlebars->25->810"
9329 + "default.handlebars->25->817"
9330 ]
9331 },
9332 {
@@ -9277,7 +9339,7 @@
9339 "pt": "Italiano (Suíça)",
9340 "ru": "Итальянский (Швейцария)",
9341 "xloc": [
9280 - "default.handlebars->25->811"
9342 + "default.handlebars->25->818"
9343 ]
9344 },
9345 {
@@ -9291,8 +9353,8 @@
9353 "pt": "Formato JSON",
9354 "ru": "Формат JSON",
9355 "xloc": [
9294 - "default.handlebars->25->1190",
9295 - "default.handlebars->25->1229"
9356 + "default.handlebars->25->1197",
9357 + "default.handlebars->25->1236"
9358 ]
9359 },
9360 {
@@ -9306,7 +9368,7 @@
9368 "pt": "japonês",
9369 "ru": "Японский",
9370 "xloc": [
9309 - "default.handlebars->25->812"
9371 + "default.handlebars->25->819"
9372 ]
9373 },
9374 {
@@ -9318,7 +9380,7 @@
9380 "pt": "Kannada",
9381 "ru": "Каннада",
9382 "xloc": [
9321 - "default.handlebars->25->813"
9383 + "default.handlebars->25->820"
9384 ]
9385 },
9386 {
@@ -9330,7 +9392,7 @@
9392 "pt": "Caxemira",
9393 "ru": "Кашмирский",
9394 "xloc": [
9333 - "default.handlebars->25->814"
9395 + "default.handlebars->25->821"
9396 ]
9397 },
9398 {
@@ -9342,7 +9404,7 @@
9404 "pt": "Cazaque",
9405 "ru": "Казахский",
9406 "xloc": [
9345 - "default.handlebars->25->815"
9407 + "default.handlebars->25->822"
9408 ]
9409 },
9410 {
@@ -9355,7 +9417,7 @@
9417 "pt": "KernelDriver",
9418 "ru": "Драйвер ядра",
9419 "xloc": [
9358 - "default.handlebars->25->617"
9420 + "default.handlebars->25->624"
9421 ]
9422 },
9423 {
@@ -9369,8 +9431,8 @@
9431 "pt": "Nome da chave",
9432 "ru": "Имя ключа",
9433 "xloc": [
9372 - "default.handlebars->25->706",
9373 - "default.handlebars->25->709"
9434 + "default.handlebars->25->713",
9435 + "default.handlebars->25->716"
9436 ]
9437 },
9438 {
@@ -9396,7 +9458,7 @@
9458 "pt": "Khmer",
9459 "ru": "Кхмерский",
9460 "xloc": [
9399 - "default.handlebars->25->816"
9461 + "default.handlebars->25->823"
9462 ]
9463 },
9464 {
@@ -9408,7 +9470,7 @@
9470 "pt": "Kirghiz",
9471 "ru": "Киргизский",
9472 "xloc": [
9411 - "default.handlebars->25->817"
9473 + "default.handlebars->25->824"
9474 ]
9475 },
9476 {
@@ -9420,7 +9482,7 @@
9482 "pt": "Klingon",
9483 "ru": "Клингонский",
9484 "xloc": [
9423 - "default.handlebars->25->818"
9485 + "default.handlebars->25->825"
9486 ]
9487 },
9488 {
@@ -9433,7 +9495,7 @@
9495 "pt": "coreano",
9496 "ru": "Korean",
9497 "xloc": [
9436 - "default.handlebars->25->819"
9498 + "default.handlebars->25->826"
9499 ]
9500 },
9501 {
@@ -9446,7 +9508,7 @@
9508 "pt": "Coreano (Coréia do Norte)",
9509 "ru": "Корейский (Северная Корея)",
9510 "xloc": [
9449 - "default.handlebars->25->820"
9511 + "default.handlebars->25->827"
9512 ]
9513 },
9514 {
@@ -9459,7 +9521,7 @@
9521 "pt": "Coreano (Coréia do Sul)",
9522 "ru": "Корейский (Южная Корея)",
9523 "xloc": [
9462 - "default.handlebars->25->821"
9524 + "default.handlebars->25->828"
9525 ]
9526 },
9527 {
@@ -9471,8 +9533,8 @@
9533 "pt": "LF",
9534 "ru": "LF",
9535 "xloc": [
9474 - "default.handlebars->25->629",
9475 - "default.handlebars->25->638"
9536 + "default.handlebars->25->636",
9537 + "default.handlebars->25->645"
9538 ]
9539 },
9540 {
@@ -9486,7 +9548,7 @@
9548 "pt": "Língua",
9549 "ru": "Язык",
9550 "xloc": [
9489 - "default.handlebars->25->914"
9551 + "default.handlebars->25->921"
9552 ]
9553 },
9554 {
@@ -9498,7 +9560,7 @@
9560 "ja": "大",
9561 "nl": "Grote",
9562 "pt": "ampla",
9501 - "ru": "Большой / крупный",
9563 + "ru": "Большой/крупный",
9564 "xloc": [
9565 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize->sizeselect->5"
9566 ]

This file is too large to show in full.

views/agentinvite.handlebars
+9 -3
@@ -8,7 +8,7 @@
8 <meta name="format-detection" content="telephone=no" />
9 <link type="text/css" href="styles/style.css" media="screen" rel="stylesheet" title="CSS" />
10 <script type="text/javascript" src="scripts/common-0.0.1.js"></script>
11 - <title>{{{title}}} - Agent Installation</title>
11 + <title>Agent Installation</title>
12 <style>
13 .tab {
14 overflow: hidden;
@@ -71,7 +71,7 @@
71 </div>
72 </div>
73 <div id="column_l" style="max-height:calc(100vh - 135px);overflow-y:auto">
74 - <h1>Remote Agent Installation<span id="groupname"></span></h1>
74 + <h1><span id="groupname">Remote Agent Installation</span></h1>
75 <p>
76 You have been invited to install a software that will allow a remote operator to fully access your computer remotely including the desktop and files.
77 Only follow the instructions below if this invitation was expected and you know who will be accessing your computer.
@@ -139,12 +139,18 @@
139 var domain = '{{{domain}}}';
140 var domainUrl = '{{{domainurl}}}';
141 var meshid = '{{{meshid}}}';
142 + var title = '{{{title}}}';
143 var serverPort = '{{{serverport}}}';
144 var serverHttps = '{{{serverhttps}}}';
145 var serverNoProxy = '{{{servernoproxy}}}';
146 var installFlags = '{{{installflags}}}';
147 var groupName = decodeURIComponent('{{{meshname}}}');
147 - if (groupName != '') { QH('groupname', ' for ' + groupName); }
148 + if (groupName != '') {
149 + QH('groupname', format("Remote Agent Installation for {0}", groupName));
150 + document.title = format("{0} - Agent Installation");
151 + } else {
152 + document.title = "Agent Installation";
153 + }
154 userInterfaceSelectMenu();
155 setup();
156
views/default.handlebars
+7 -7
@@ -3863,13 +3863,13 @@
3863 function onSearchInputChanged() {
3864 var x = Q('SearchInput').value.toLowerCase().trim(); putstore('_search', Q('SearchInput').value);
3865 var userSearch = null, ipSearch = null, groupSearch = null, tagSearch = null;
3866 - if (x.startsWith("user:")) { userSearch = x.substring(5); }
3867 - else if (x.startsWith("u:")) { userSearch = x.substring(2); }
3868 - else if (x.startsWith("ip:")) { ipSearch = x.substring(3); }
3869 - else if (x.startsWith("group:")) { groupSearch = x.substring(6); }
3870 - else if (x.startsWith("g:")) { groupSearch = x.substring(2); }
3871 - else if (x.startsWith("tag:")) { tagSearch = Q('SearchInput').value.trim().substring(4); }
3872 - else if (x.startsWith("t:")) { tagSearch = Q('SearchInput').value.trim().substring(2); }
3866 + if (x.startsWith("user:".toLowerCase())) { userSearch = x.substring("user:".length); }
3867 + else if (x.startsWith("u:".toLowerCase())) { userSearch = x.substring("u:".length); }
3868 + else if (x.startsWith("ip:".toLowerCase())) { ipSearch = x.substring("ip:".length); }
3869 + else if (x.startsWith("group:".toLowerCase())) { groupSearch = x.substring("group:".length); }
3870 + else if (x.startsWith("g:".toLowerCase())) { groupSearch = x.substring("g:".length); }
3871 + else if (x.startsWith("tag:".toLowerCase())) { tagSearch = Q('SearchInput').value.trim().substring("tag:".length); }
3872 + else if (x.startsWith("t:".toLowerCase())) { tagSearch = Q('SearchInput').value.trim().substring("t:".length); }
3873
3874 if (x == '') {
3875 // No search
views/player.handlebars renamed
webserver.js
+12
@@ -2087,6 +2087,16 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
2087 }
2088 }
2089
2090 + // Server the player page
2091 + function handlePlayerRequest(req, res) {
2092 + const domain = checkUserIpAddress(req, res);
2093 + if ((domain == null) || (domain.redirects == null)) { res.sendStatus(404); return; }
2094 +
2095 + parent.debug('web', 'handlePlayerRequest: sending player');
2096 + res.set({ 'Cache-Control': 'no-cache, no-store, must-revalidate', 'Pragma': 'no-cache', 'Expires': '0' });
2097 + render(req, res, getRenderPage('player', req), getRenderArgs({}, domain));
2098 + }
2099 +
2100 // Handle domain redirection
2101 obj.handleDomainRedirect = function (req, res) {
2102 const domain = checkUserIpAddress(req, res);
@@ -3525,6 +3535,8 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
3535 obj.app.get(url + 'logo.png', handleLogoRequest);
3536 obj.app.post(url + 'translations', handleTranslationsRequest);
3537 obj.app.get(url + 'welcome.jpg', handleWelcomeImageRequest);
3538 + obj.app.get(url + 'player.htm', handlePlayerRequest);
3539 + obj.app.get(url + 'player', handlePlayerRequest);
3540 obj.app.ws(url + 'amtactivate', handleAmtActivateWebSocket);
3541 if (parent.pluginHandler != null) {
3542 obj.app.get(url + 'pluginadmin.ashx', obj.handlePluginAdminReq);