Improved usersessions and added closeusersessions server console commands.
Ylian Saint-Hilaire committed
Jan 27, 2020 at 15:26 UTC
3580a8f4337227eff5c45321d067a8fd35d67478
4 files changed
+1524
-1470
meshuser.js
+43
-13
@@ -685,7 +685,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
685
686
switch (cmd) {
687
case 'help': {
688
- var fin = '', f = '', availcommands = 'help,info,versions,args,resetserver,showconfig,usersessions,tasklimiter,setmaxtasks,cores,migrationagents,agentstats,webstats,mpsstats,swarmstats,acceleratorsstats,updatecheck,serverupdate,nodeconfig,heapdump,relays,autobackup,backupconfig,dupagents,dispatchtable,badlogins,showpaths';
688
+ var fin = '', f = '', availcommands = 'help,info,versions,args,resetserver,showconfig,usersessions,closeusersessions,tasklimiter,setmaxtasks,cores,migrationagents,agentstats,webstats,mpsstats,swarmstats,acceleratorsstats,updatecheck,serverupdate,nodeconfig,heapdump,relays,autobackup,backupconfig,dupagents,dispatchtable,badlogins,showpaths';
689
availcommands = availcommands.split(',').sort();
690
while (availcommands.length > 0) {
691
if (f.length > 80) { fin += (f + ',\r\n'); f = ''; }
@@ -808,18 +808,48 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
808
break;
809
}
810
case 'usersessions': {
811
+ var userSessionCount = 0;
812
+ var filter = null;
813
+ var arg = cmdargs['_'][0];
814
+ if (typeof arg == 'string') { if (arg.indexOf('/') >= 0) { filter = arg; } else { filter = ('user/' + domain.id + '/' + arg); } }
815
for (var i in parent.wssessions) {
812
- r += (i + ', ' + parent.wssessions[i].length + ' session' + ((parent.wssessions[i].length > 1) ? 'a' : '') + '.<br />');
813
- for (var j in parent.wssessions[i]) {
814
- var addr = parent.wssessions[i][j]._socket.remoteAddress;
815
- if (addr.startsWith('::ffff:')) { addr = addr.substring(7); }
816
- r += ' ' + addr + ' --> ' + parent.wssessions[i][j].sessionId + '.<br />';
816
+ if ((filter == null) || (filter == i)) {
817
+ userSessionCount++;
818
+ r += (i + ', ' + parent.wssessions[i].length + ' session' + ((parent.wssessions[i].length > 1) ? 's' : '') + '.\r\n');
819
+ for (var j in parent.wssessions[i]) {
820
+ var addr = parent.wssessions[i][j]._socket.remoteAddress;
821
+ if (addr.startsWith('::ffff:')) { addr = addr.substring(7); }
822
+ r += ' ' + addr + ' --> ' + parent.wssessions[i][j].sessionId + '\r\n';
823
+ }
824
+ }
825
+ }
826
+ if (userSessionCount == 0) { r = 'None.'; }
827
+ break;
828
+ }
829
+ case 'closeusersessions': {
830
+ var userSessionCount = 0;
831
+ var filter = null;
832
+ var arg = cmdargs['_'][0];
833
+ if (typeof arg == 'string') { if (arg.indexOf('/') >= 0) { filter = arg; } else { filter = ('user/' + domain.id + '/' + arg); } }
834
+ if (filter == null) {
835
+ r += "Usage: closeusersessions <username>";
836
+ } else {
837
+ r += "Closing user sessions for: " + filter + '\r\n';
838
+ for (var i in parent.wssessions) {
839
+ if (filter == i) {
840
+ userSessionCount++;
841
+ for (var j in parent.wssessions[i]) {
842
+ parent.wssessions[i][j].send(JSON.stringify({ action: 'stopped', msg: "Administrator forced disconnection" }));
843
+ parent.wssessions[i][j].close();
844
+ }
845
+ }
846
}
847
+ if (userSessionCount < 2) { r += 'Disconnected ' + userSessionCount + ' session.'; } else { r += 'Disconnected ' + userSessionCount + ' sessions.'; };
848
}
849
break;
850
}
851
case 'resetserver': {
822
- console.log('Server restart...');
852
+ console.log("Server restart...");
853
process.exit(0);
854
break;
855
}
@@ -827,12 +857,12 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
857
if (parent.parent.taskLimiter != null) {
858
//var obj = { maxTasks: maxTasks, maxTaskTime: (maxTaskTime * 1000), nextTaskId: 0, currentCount: 0, current: {}, pending: [[], [], []], timer: null };
859
const tl = parent.parent.taskLimiter;
830
- r += 'MaxTasks: ' + tl.maxTasks + ', NextTaskId: ' + tl.nextTaskId + '<br />';
831
- r += 'MaxTaskTime: ' + (tl.maxTaskTime / 1000) + ' seconds, Timer: ' + (tl.timer != null) + '<br />';
860
+ r += 'MaxTasks: ' + tl.maxTasks + ', NextTaskId: ' + tl.nextTaskId + '\r\n';
861
+ r += 'MaxTaskTime: ' + (tl.maxTaskTime / 1000) + ' seconds, Timer: ' + (tl.timer != null) + '\r\n';
862
var c = [];
863
for (var i in tl.current) { c.push(i); }
834
- r += 'Current (' + tl.currentCount + '): [' + c.join(', ') + ']<br />';
835
- r += 'Pending (High/Med/Low): ' + tl.pending[0].length + ', ' + tl.pending[1].length + ', ' + tl.pending[2].length + '<br />';
864
+ r += 'Current (' + tl.currentCount + '): [' + c.join(', ') + ']\r\n';
865
+ r += 'Pending (High/Med/Low): ' + tl.pending[0].length + ', ' + tl.pending[1].length + ', ' + tl.pending[2].length + '\r\n';
866
}
867
break;
868
}
@@ -846,7 +876,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
876
break;
877
}
878
case 'cores': {
849
- if (parent.parent.defaultMeshCores != null) { for (var i in parent.parent.defaultMeshCores) { r += i + ': ' + parent.parent.defaultMeshCores[i].length + ' bytes<br />'; } }
879
+ if (parent.parent.defaultMeshCores != null) { for (var i in parent.parent.defaultMeshCores) { r += i + ': ' + parent.parent.defaultMeshCores[i].length + ' bytes\r\n'; } }
880
break;
881
}
882
case 'showpaths': {
@@ -924,7 +954,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
954
r += 'id: ' + i + ', state: ' + parent.wsrelays[i].state;
955
if (parent.wsrelays[i].peer1 != null) { r += ', peer1: ' + cleanRemoteAddr(parent.wsrelays[i].peer1.req.ip); }
956
if (parent.wsrelays[i].peer2 != null) { r += ', peer2: ' + cleanRemoteAddr(parent.wsrelays[i].peer2.req.ip); }
927
- r += '<br />';
957
+ r += '\r\n';
958
}
959
if (r == '') { r = 'No relays.'; }
960
break;
package.json
+1
-1
@@ -1,6 +1,6 @@
1
{
2
"name": "meshcentral",
3
- "version": "0.4.7-z",
3
+ "version": "0.4.8-a",
4
"keywords": [
5
"Remote Management",
6
"Intel AMT",
translate/translate.json
+1479
-1455
@@ -10,8 +10,8 @@
10
"pt": " + CIRA",
11
"ru": " + CIRA",
12
"xloc": [
13
- "default.handlebars->23->1001",
14
- "default.handlebars->23->999"
13
+ "default.handlebars->25->1002",
14
+ "default.handlebars->25->1004"
15
]
16
},
17
{
@@ -21,7 +21,7 @@
21
"nl": " - Herstart in {0} dag.",
22
"xloc": [
23
"default-mobile.handlebars->9->15",
24
- "default.handlebars->23->57"
24
+ "default.handlebars->25->57"
25
]
26
},
27
{
@@ -31,7 +31,7 @@
31
"nl": " - Herstart in 1 uur.",
32
"xloc": [
33
"default-mobile.handlebars->9->13",
34
- "default.handlebars->23->55"
34
+ "default.handlebars->25->55"
35
]
36
},
37
{
@@ -41,7 +41,7 @@
41
"nl": " - Herstart in {0} days.",
42
"xloc": [
43
"default-mobile.handlebars->9->11",
44
- "default.handlebars->23->53"
44
+ "default.handlebars->25->53"
45
]
46
},
47
{
@@ -51,7 +51,7 @@
51
"nl": " - Herstart in {0} dagen.",
52
"xloc": [
53
"default-mobile.handlebars->9->16",
54
- "default.handlebars->23->58"
54
+ "default.handlebars->25->58"
55
]
56
},
57
{
@@ -71,7 +71,7 @@
71
"nl": " - Herstart in {0} uren.",
72
"xloc": [
73
"default-mobile.handlebars->9->14",
74
- "default.handlebars->23->56"
74
+ "default.handlebars->25->56"
75
]
76
},
77
{
@@ -91,7 +91,7 @@
91
"nl": " - Herstart in {0} minuten.",
92
"xloc": [
93
"default-mobile.handlebars->9->12",
94
- "default.handlebars->23->54"
94
+ "default.handlebars->25->54"
95
]
96
},
97
{
@@ -116,8 +116,8 @@
116
"xloc": [
117
"default-mobile.handlebars->9->10",
118
"default-mobile.handlebars->9->9",
119
- "default.handlebars->23->51",
120
- "default.handlebars->23->52"
119
+ "default.handlebars->25->51",
120
+ "default.handlebars->25->52"
121
]
122
},
123
{
@@ -155,7 +155,7 @@
155
"pt": " Dica de senha pode ser usada, mas não é recomendada.",
156
"ru": "Может быть использована подсказка пароля, но не рекоммендуется.",
157
"xloc": [
158
- "default.handlebars->23->931"
158
+ "default.handlebars->25->934"
159
]
160
},
161
{
@@ -168,8 +168,8 @@
168
"pt": " Os usuários precisam fazer login neste servidor uma vez antes de poderem ser adicionados a um grupo de dispositivos.",
169
"ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хоть один раз.",
170
"xloc": [
171
- "default.handlebars->23->1074",
172
- "default.handlebars->23->1304"
171
+ "default.handlebars->25->1077",
172
+ "default.handlebars->25->1307"
173
]
174
},
175
{
@@ -182,7 +182,7 @@
182
"pt": " e autenticar no servidor usando esse nome de usuário e qualquer senha.",
183
"ru": " и разрешить серверу использовать это имя и любой пароль",
184
"xloc": [
185
- "default.handlebars->23->267"
185
+ "default.handlebars->25->267"
186
]
187
},
188
{
@@ -195,7 +195,7 @@
195
"pt": " e autenticar no servidor usando esse nome de usuário e senha.",
196
"ru": " и разрешить серверу использовать это имя и пароль",
197
"xloc": [
198
- "default.handlebars->23->266"
198
+ "default.handlebars->25->266"
199
]
200
},
201
{
@@ -234,7 +234,7 @@
234
"pt": " com TLS.",
235
"ru": " с TLS.",
236
"xloc": [
237
- "default.handlebars->23->164"
237
+ "default.handlebars->25->164"
238
]
239
},
240
{
@@ -247,7 +247,7 @@
247
"pt": " sem TLS.",
248
"ru": " без TLS",
249
"xloc": [
250
- "default.handlebars->23->165"
250
+ "default.handlebars->25->165"
251
]
252
},
253
{
@@ -272,7 +272,7 @@
272
"pt": "(opcional)",
273
"ru": "(необязательно)",
274
"xloc": [
275
- "default.handlebars->23->303"
275
+ "default.handlebars->25->303"
276
]
277
},
278
{
@@ -297,7 +297,7 @@
297
"pt": "* Para o BSD, execute \\\"pkg install wget sudo bash\\\".",
298
"ru": "* Для BSD, сначала запустите \\\"pkg install wget sudo bash\\\".",
299
"xloc": [
300
- "default.handlebars->23->334"
300
+ "default.handlebars->25->334"
301
]
302
},
303
{
@@ -309,7 +309,7 @@
309
"pt": "* Deixe em branco para atribuir uma senha aleatória a cada dispositivo.",
310
"ru": "* Для установления случайного пароля каждому устройству - оставьте пустым.",
311
"xloc": [
312
- "default.handlebars->23->1049"
312
+ "default.handlebars->25->1052"
313
]
314
},
315
{
@@ -335,7 +335,7 @@
335
"ru": ", ",
336
"xloc": [
337
"default-mobile.handlebars->9->330",
338
- "default.handlebars->23->1125"
338
+ "default.handlebars->25->1128"
339
]
340
},
341
{
@@ -348,7 +348,7 @@
348
"ru": ", только для Intel® AMT",
349
"xloc": [
350
"default-mobile.handlebars->9->92",
351
- "default.handlebars->23->180"
351
+ "default.handlebars->25->180"
352
]
353
},
354
{
@@ -360,7 +360,7 @@
360
"pt": ", O MQTT está online",
361
"ru": ", MQTT онлайн",
362
"xloc": [
363
- "default.handlebars->23->684"
363
+ "default.handlebars->25->687"
364
]
365
},
366
{
@@ -372,7 +372,7 @@
372
"pt": ", Soft-KVM",
373
"ru": ", Soft-KVM",
374
"xloc": [
375
- "default.handlebars->23->596"
375
+ "default.handlebars->25->599"
376
]
377
},
378
{
@@ -386,9 +386,9 @@
386
"xloc": [
387
"default-mobile.handlebars->9->228",
388
"default-mobile.handlebars->9->238",
389
- "default.handlebars->23->597",
390
- "default.handlebars->23->627",
391
- "default.handlebars->23->639",
389
+ "default.handlebars->25->600",
390
+ "default.handlebars->25->630",
391
+ "default.handlebars->25->642",
392
"xterm.handlebars->9->6"
393
]
394
},
@@ -474,9 +474,9 @@
474
"xloc": [
475
"default-mobile.handlebars->9->243",
476
"default-mobile.handlebars->9->67",
477
- "default.handlebars->23->1147",
478
- "default.handlebars->23->1380",
479
- "default.handlebars->23->641"
477
+ "default.handlebars->25->1150",
478
+ "default.handlebars->25->1383",
479
+ "default.handlebars->25->644"
480
]
481
},
482
{
@@ -514,7 +514,7 @@
514
"pt": "1 sessão ativa",
515
"ru": "1 активная сессия",
516
"xloc": [
517
- "default.handlebars->23->1344"
517
+ "default.handlebars->25->1347"
518
]
519
},
520
{
@@ -529,7 +529,7 @@
529
"xloc": [
530
"default-mobile.handlebars->9->334",
531
"default-mobile.handlebars->9->77",
532
- "default.handlebars->23->1164"
532
+ "default.handlebars->25->1167"
533
]
534
},
535
{
@@ -542,9 +542,9 @@
542
"pt": "1 dia",
543
"ru": "1 день",
544
"xloc": [
545
- "default.handlebars->23->170",
546
- "default.handlebars->23->294",
547
- "default.handlebars->23->308"
545
+ "default.handlebars->25->170",
546
+ "default.handlebars->25->294",
547
+ "default.handlebars->25->308"
548
]
549
},
550
{
@@ -557,7 +557,7 @@
557
"pt": "1 grupo",
558
"ru": "1 группа",
559
"xloc": [
560
- "default.handlebars->23->1328"
560
+ "default.handlebars->25->1331"
561
]
562
},
563
{
@@ -570,9 +570,9 @@
570
"pt": "1 hora",
571
"ru": "1 час",
572
"xloc": [
573
- "default.handlebars->23->168",
574
- "default.handlebars->23->292",
575
- "default.handlebars->23->306"
573
+ "default.handlebars->25->168",
574
+ "default.handlebars->25->292",
575
+ "default.handlebars->25->306"
576
]
577
},
578
{
@@ -581,7 +581,7 @@
581
"en": "1 minute until disconnect",
582
"nl": "1 minuut totdat de verbinding wordt verbroken",
583
"xloc": [
584
- "default.handlebars->23->61"
584
+ "default.handlebars->25->61"
585
]
586
},
587
{
@@ -594,9 +594,9 @@
594
"pt": "1 mês",
595
"ru": "1 месяц",
596
"xloc": [
597
- "default.handlebars->23->172",
598
- "default.handlebars->23->296",
599
- "default.handlebars->23->310"
597
+ "default.handlebars->25->172",
598
+ "default.handlebars->25->296",
599
+ "default.handlebars->25->310"
600
]
601
},
602
{
@@ -608,7 +608,7 @@
608
"pt": "Mais 1 usuário não mostrado, use a caixa de pesquisa para procurar usuários...",
609
"ru": "Еще 1 пользователь не показан, используйте \\\"Поиск\\\" чтобы найти пользователей...",
610
"xloc": [
611
- "default.handlebars->23->1199"
611
+ "default.handlebars->25->1202"
612
]
613
},
614
{
@@ -621,7 +621,7 @@
621
"pt": "1 nó",
622
"ru": "1 устройство",
623
"xloc": [
624
- "default.handlebars->23->347"
624
+ "default.handlebars->25->347"
625
]
626
},
627
{
@@ -630,7 +630,7 @@
630
"en": "1 second until disconnect",
631
"nl": "1 seconde totdat de verbinding wordt verbroken",
632
"xloc": [
633
- "default.handlebars->23->59"
633
+ "default.handlebars->25->59"
634
]
635
},
636
{
@@ -643,7 +643,7 @@
643
"pt": "1 sessão",
644
"ru": "1 сессия",
645
"xloc": [
646
- "default.handlebars->23->1203"
646
+ "default.handlebars->25->1206"
647
]
648
},
649
{
@@ -656,9 +656,9 @@
656
"pt": "1 semana",
657
"ru": "1 неделя",
658
"xloc": [
659
- "default.handlebars->23->171",
660
- "default.handlebars->23->295",
661
- "default.handlebars->23->309"
659
+ "default.handlebars->25->171",
660
+ "default.handlebars->25->295",
661
+ "default.handlebars->25->309"
662
]
663
},
664
{
@@ -773,7 +773,7 @@
773
"pt": "Falha na ativação do login em duas etapas.",
774
"ru": "Активация двухэтапного входа не удалась.",
775
"xloc": [
776
- "default.handlebars->23->125"
776
+ "default.handlebars->25->125"
777
]
778
},
779
{
@@ -785,7 +785,7 @@
785
"pt": "A remoção da ativação do login em duas etapas falhou.",
786
"ru": "Удаление активации двуэтапного входа не удалась.",
787
"xloc": [
788
- "default.handlebars->23->130"
788
+ "default.handlebars->25->130"
789
]
790
},
791
{
@@ -836,7 +836,7 @@
836
"pt": "Autenticação de segundo fator ativada",
837
"ru": "двухфакторная аутентификация включена",
838
"xloc": [
839
- "default.handlebars->23->1337"
839
+ "default.handlebars->25->1340"
840
]
841
},
842
{
@@ -909,8 +909,8 @@
909
"pt": "Versão de 32 bits do MeshAgent",
910
"ru": "32-разрядная версия MeshAgent-а",
911
"xloc": [
912
- "default.handlebars->23->326",
913
- "default.handlebars->23->340"
912
+ "default.handlebars->25->326",
913
+ "default.handlebars->25->340"
914
]
915
},
916
{
@@ -1057,8 +1057,8 @@
1057
"pt": "Versão de 64 bits do MeshAgent",
1058
"ru": "64-разрядная версия MeshAgent-а",
1059
"xloc": [
1060
- "default.handlebars->23->329",
1061
- "default.handlebars->23->343"
1060
+ "default.handlebars->25->329",
1061
+ "default.handlebars->25->343"
1062
]
1063
},
1064
{
@@ -1076,7 +1076,7 @@
1076
"pt": "Estado de energia de 7 dias",
1077
"ru": "7-дневная статистика работы",
1078
"xloc": [
1079
- "default.handlebars->23->536"
1079
+ "default.handlebars->25->539"
1080
]
1081
},
1082
{
@@ -1114,8 +1114,8 @@
1114
"pt": "8 horas",
1115
"ru": "8 часов",
1116
"xloc": [
1117
- "default.handlebars->23->293",
1118
- "default.handlebars->23->307"
1117
+ "default.handlebars->25->293",
1118
+ "default.handlebars->25->307"
1119
]
1120
},
1121
{
@@ -1164,7 +1164,7 @@
1164
"pt": "<a href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\">Chaves Hardware</a> são usados como autenticação de login secundária.",
1165
"ru": "<a href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\">Аппаратные ключи</a> используются в качестве дополнительной аутентификации.",
1166
"xloc": [
1167
- "default.handlebars->23->139"
1167
+ "default.handlebars->25->139"
1168
]
1169
},
1170
{
@@ -1225,7 +1225,7 @@
1225
"ru": "ACM",
1226
"xloc": [
1227
"default-mobile.handlebars->9->182",
1228
- "default.handlebars->23->452"
1228
+ "default.handlebars->25->455"
1229
]
1230
},
1231
{
@@ -1237,8 +1237,8 @@
1237
"pt": "AMT",
1238
"ru": "AMT",
1239
"xloc": [
1240
- "default.handlebars->23->188",
1241
- "default.handlebars->23->375"
1240
+ "default.handlebars->25->188",
1241
+ "default.handlebars->25->375"
1242
]
1243
},
1244
{
@@ -1251,7 +1251,7 @@
1251
"ru": "ARM-Linaro",
1252
"xloc": [
1253
"default-mobile.handlebars->9->167",
1254
- "default.handlebars->23->37"
1254
+ "default.handlebars->25->37"
1255
]
1256
},
1257
{
@@ -1264,7 +1264,7 @@
1264
"ru": "ARMv6l / ARMv7l",
1265
"xloc": [
1266
"default-mobile.handlebars->9->168",
1267
- "default.handlebars->23->38"
1267
+ "default.handlebars->25->38"
1268
]
1269
},
1270
{
@@ -1277,7 +1277,7 @@
1277
"ru": "ARMv6l / ARMv7l / NoKVM",
1278
"xloc": [
1279
"default-mobile.handlebars->9->170",
1280
- "default.handlebars->23->40"
1280
+ "default.handlebars->25->40"
1281
]
1282
},
1283
{
@@ -1290,7 +1290,7 @@
1290
"ru": "ARMv8 64-разрадная",
1291
"xloc": [
1292
"default-mobile.handlebars->9->169",
1293
- "default.handlebars->23->39"
1293
+ "default.handlebars->25->39"
1294
]
1295
},
1296
{
@@ -1303,7 +1303,7 @@
1303
"pt": "Acesso Negado",
1304
"ru": "Отказано в доступе",
1305
"xloc": [
1306
- "default.handlebars->23->685"
1306
+ "default.handlebars->25->688"
1307
]
1308
},
1309
{
@@ -1327,7 +1327,7 @@
1327
"pt": "Acesso aos arquivos do servidor",
1328
"ru": "Доступ в файлам сервера",
1329
"xloc": [
1330
- "default.handlebars->23->1309"
1330
+ "default.handlebars->25->1312"
1331
]
1332
},
1333
{
@@ -1382,10 +1382,10 @@
1382
"default-mobile.handlebars->9->52",
1383
"default-mobile.handlebars->9->54",
1384
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0",
1385
- "default.handlebars->23->425",
1386
- "default.handlebars->23->427",
1387
- "default.handlebars->23->940",
1388
- "default.handlebars->23->942"
1385
+ "default.handlebars->25->428",
1386
+ "default.handlebars->25->430",
1387
+ "default.handlebars->25->943",
1388
+ "default.handlebars->25->945"
1389
]
1390
},
1391
{
@@ -1457,15 +1457,15 @@
1457
"pt": "Ação",
1458
"ru": "Действиe",
1459
"xloc": [
1460
- "default.handlebars->23->690",
1460
+ "default.handlebars->25->693",
1461
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
1462
]
1463
},
1464
{
1465
"en": "Action File",
1466
"xloc": [
1467
- "default.handlebars->23->576",
1468
- "default.handlebars->23->578"
1467
+ "default.handlebars->25->579",
1468
+ "default.handlebars->25->581"
1469
]
1470
},
1471
{
@@ -1479,7 +1479,7 @@
1479
"xloc": [
1480
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
1481
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
1482
- "default.handlebars->23->484",
1482
+ "default.handlebars->25->487",
1483
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
1484
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
1485
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -1523,8 +1523,8 @@
1523
"xloc": [
1524
"default-mobile.handlebars->9->177",
1525
"default-mobile.handlebars->9->179",
1526
- "default.handlebars->23->445",
1527
- "default.handlebars->23->447"
1526
+ "default.handlebars->25->448",
1527
+ "default.handlebars->25->450"
1528
]
1529
},
1530
{
@@ -1536,10 +1536,10 @@
1536
"pt": "Ativação",
1537
"ru": "Активация",
1538
"xloc": [
1539
- "default.handlebars->23->1012",
1540
- "default.handlebars->23->1014",
1541
- "default.handlebars->23->230",
1542
- "default.handlebars->23->232"
1539
+ "default.handlebars->25->1015",
1540
+ "default.handlebars->25->1017",
1541
+ "default.handlebars->25->230",
1542
+ "default.handlebars->25->232"
1543
]
1544
},
1545
{
@@ -1551,7 +1551,7 @@
1551
"pt": "Usuário ativo {0}",
1552
"ru": "Активный ползьзователь{0}",
1553
"xloc": [
1554
- "default.handlebars->23->471"
1554
+ "default.handlebars->25->474"
1555
]
1556
},
1557
{
@@ -1564,7 +1564,7 @@
1564
"pt": "Adicionar agente",
1565
"ru": "Добавить агент",
1566
"xloc": [
1567
- "default.handlebars->23->234"
1567
+ "default.handlebars->25->234"
1568
]
1569
},
1570
{
@@ -1577,7 +1577,7 @@
1577
"pt": "Adicionar CIRA",
1578
"ru": "Добавить CIRA",
1579
"xloc": [
1580
- "default.handlebars->23->224"
1580
+ "default.handlebars->25->224"
1581
]
1582
},
1583
{
@@ -1590,7 +1590,7 @@
1590
"pt": "Adicionar evento do dispositivo",
1591
"ru": "Добавить событие к устройству",
1592
"xloc": [
1593
- "default.handlebars->23->519"
1593
+ "default.handlebars->25->522"
1594
]
1595
},
1596
{
@@ -1603,11 +1603,11 @@
1603
"pt": "Adicionar grupo de dispositivos",
1604
"ru": "Добавить группу устройств",
1605
"xloc": [
1606
- "default.handlebars->23->1099",
1607
- "default.handlebars->23->1101",
1608
- "default.handlebars->23->1283",
1609
- "default.handlebars->23->1357",
1610
- "default.handlebars->23->205"
1606
+ "default.handlebars->25->1102",
1607
+ "default.handlebars->25->1104",
1608
+ "default.handlebars->25->1286",
1609
+ "default.handlebars->25->1360",
1610
+ "default.handlebars->25->205"
1611
]
1612
},
1613
{
@@ -1619,7 +1619,7 @@
1619
"pt": "Adicione Intelreg; AMT",
1620
"ru": "Добавить Intel® AMT CIRA устройство",
1621
"xloc": [
1622
- "default.handlebars->23->279"
1622
+ "default.handlebars->25->279"
1623
]
1624
},
1625
{
@@ -1631,7 +1631,7 @@
1631
"pt": "Adicione Intelreg; dispositivo AMT",
1632
"ru": "Добавить Intel® AMT устройство",
1633
"xloc": [
1634
- "default.handlebars->23->247"
1634
+ "default.handlebars->25->247"
1635
]
1636
},
1637
{
@@ -1643,7 +1643,7 @@
1643
"pt": "Adicionar chave",
1644
"ru": "Добавить ключ",
1645
"xloc": [
1646
- "default.handlebars->23->143"
1646
+ "default.handlebars->25->143"
1647
]
1648
},
1649
{
@@ -1655,7 +1655,7 @@
1655
"pt": "Adicionar local",
1656
"ru": "Добавить локально",
1657
"xloc": [
1658
- "default.handlebars->23->226"
1658
+ "default.handlebars->25->226"
1659
]
1660
},
1661
{
@@ -1664,7 +1664,7 @@
1664
"en": "Add Membership",
1665
"nl": "Lidmaatschap toevoegen",
1666
"xloc": [
1667
- "default.handlebars->23->1376"
1667
+ "default.handlebars->25->1379"
1668
]
1669
},
1670
{
@@ -1676,7 +1676,7 @@
1676
"pt": "Adicionar agente de malha",
1677
"ru": "Добавить Mesh Агент",
1678
"xloc": [
1679
- "default.handlebars->23->346"
1679
+ "default.handlebars->25->346"
1680
]
1681
},
1682
{
@@ -1689,12 +1689,12 @@
1689
"pt": "Adicionar chave de segurança",
1690
"ru": "Добавить ключ безопасности",
1691
"xloc": [
1692
- "default.handlebars->23->146",
1693
- "default.handlebars->23->148",
1694
- "default.handlebars->23->151",
1695
- "default.handlebars->23->152",
1696
- "default.handlebars->23->709",
1697
- "default.handlebars->23->710"
1692
+ "default.handlebars->25->146",
1693
+ "default.handlebars->25->148",
1694
+ "default.handlebars->25->151",
1695
+ "default.handlebars->25->152",
1696
+ "default.handlebars->25->712",
1697
+ "default.handlebars->25->713"
1698
]
1699
},
1700
{
@@ -1703,9 +1703,9 @@
1703
"en": "Add User Group",
1704
"nl": "Gebruikersgroep toevoegen",
1705
"xloc": [
1706
- "default.handlebars->23->1006",
1707
- "default.handlebars->23->1100",
1708
- "default.handlebars->23->1366"
1706
+ "default.handlebars->25->1009",
1707
+ "default.handlebars->25->1103",
1708
+ "default.handlebars->25->1369"
1709
]
1710
},
1711
{
@@ -1731,8 +1731,8 @@
1731
"pt": "Adicionar usuários",
1732
"ru": "Добавить пользователей",
1733
"xloc": [
1734
- "default.handlebars->23->1005",
1735
- "default.handlebars->23->1278"
1734
+ "default.handlebars->25->1008",
1735
+ "default.handlebars->25->1281"
1736
]
1737
},
1738
{
@@ -1744,7 +1744,7 @@
1744
"pt": "Adicionar usuários ao grupo de dispositivos",
1745
"ru": "Добавить пользователей к Группам устройств",
1746
"xloc": [
1747
- "default.handlebars->23->1098"
1747
+ "default.handlebars->25->1101"
1748
]
1749
},
1750
{
@@ -1753,7 +1753,7 @@
1753
"en": "Add Users to User Group",
1754
"nl": "Voeg gebruikers toe aan de gebruikersgroep",
1755
"xloc": [
1756
- "default.handlebars->23->1306"
1756
+ "default.handlebars->25->1309"
1757
]
1758
},
1759
{
@@ -1765,7 +1765,7 @@
1765
"pt": "Adicione YubiKeyreg; OTP",
1766
"ru": "Добавить YubiKey® OTP",
1767
"xloc": [
1768
- "default.handlebars->23->144"
1768
+ "default.handlebars->25->144"
1769
]
1770
},
1771
{
@@ -1777,7 +1777,7 @@
1777
"pt": "Adicione um novo Intelreg; Computador AMT digitalizando a rede local.",
1778
"ru": "Добавить новый Intel® AMT компьютер сканированием локальной сети.",
1779
"xloc": [
1780
- "default.handlebars->23->227"
1780
+ "default.handlebars->25->227"
1781
]
1782
},
1783
{
@@ -1789,8 +1789,8 @@
1789
"pt": "Adicione um novo Intel® Computador AMT localizado na Internet.",
1790
"ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.",
1791
"xloc": [
1792
- "default.handlebars->23->1007",
1793
- "default.handlebars->23->223"
1792
+ "default.handlebars->25->1010",
1793
+ "default.handlebars->25->223"
1794
]
1795
},
1796
{
@@ -1802,8 +1802,8 @@
1802
"pt": "Adicione um novo Intel® AMT computer that is located on the local network.",
1803
"ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.",
1804
"xloc": [
1805
- "default.handlebars->23->1009",
1806
- "default.handlebars->23->225"
1805
+ "default.handlebars->25->1012",
1806
+ "default.handlebars->25->225"
1807
]
1808
},
1809
{
@@ -1815,7 +1815,7 @@
1815
"pt": "Adicione um novo Intel® Dispositivo AMT para grupo de dispositivos \\\"{0}\\\".",
1816
"ru": "Добавить новое Intel® AMT устройство к группе устройств \\\"{0}\\\".",
1817
"xloc": [
1818
- "default.handlebars->23->237"
1818
+ "default.handlebars->25->237"
1819
]
1820
},
1821
{
@@ -1827,8 +1827,8 @@
1827
"pt": "Adicione um novo computador a essa malha instalando o agente de malha.",
1828
"ru": "Добавить новый компьютер к этой сети инсталированием меш агента.",
1829
"xloc": [
1830
- "default.handlebars->23->1015",
1831
- "default.handlebars->23->233"
1830
+ "default.handlebars->25->1018",
1831
+ "default.handlebars->25->233"
1832
]
1833
},
1834
{
@@ -1840,7 +1840,7 @@
1840
"pt": "Endereço",
1841
"ru": "Адрес",
1842
"xloc": [
1843
- "default.handlebars->23->201"
1843
+ "default.handlebars->25->201"
1844
]
1845
},
1846
{
@@ -1876,7 +1876,7 @@
1876
"pt": "Admin Realms",
1877
"ru": "Oбласти Aдминистратора",
1878
"xloc": [
1879
- "default.handlebars->23->1332"
1879
+ "default.handlebars->25->1335"
1880
]
1881
},
1882
{
@@ -1900,7 +1900,7 @@
1900
"pt": "Domínios Administrativos",
1901
"ru": "Административные Области",
1902
"xloc": [
1903
- "default.handlebars->23->1248"
1903
+ "default.handlebars->25->1251"
1904
]
1905
},
1906
{
@@ -1912,7 +1912,7 @@
1912
"pt": "Administrador",
1913
"ru": "Администратор",
1914
"xloc": [
1915
- "default.handlebars->23->1210"
1915
+ "default.handlebars->25->1213"
1916
]
1917
},
1918
{
@@ -1924,7 +1924,7 @@
1924
"pt": "afrikaans",
1925
"ru": "Африканский",
1926
"xloc": [
1927
- "default.handlebars->23->712"
1927
+ "default.handlebars->25->715"
1928
]
1929
},
1930
{
@@ -1940,10 +1940,10 @@
1940
"default-mobile.handlebars->9->121",
1941
"default-mobile.handlebars->9->174",
1942
"default-mobile.handlebars->9->190",
1943
- "default.handlebars->23->1135",
1944
- "default.handlebars->23->1141",
1945
- "default.handlebars->23->184",
1946
- "default.handlebars->23->371",
1943
+ "default.handlebars->25->1138",
1944
+ "default.handlebars->25->1144",
1945
+ "default.handlebars->25->184",
1946
+ "default.handlebars->25->371",
1947
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
1948
]
1949
},
@@ -1953,8 +1953,8 @@
1953
"en": "Agent + Intel AMT",
1954
"nl": "Agent + Intel AMT",
1955
"xloc": [
1956
- "default.handlebars->23->1137",
1957
- "default.handlebars->23->1143"
1956
+ "default.handlebars->25->1140",
1957
+ "default.handlebars->25->1146"
1958
]
1959
},
1960
{
@@ -1979,7 +1979,7 @@
1979
"ru": "Консоль агента",
1980
"xloc": [
1981
"default-mobile.handlebars->9->315",
1982
- "default.handlebars->23->1109"
1982
+ "default.handlebars->25->1112"
1983
]
1984
},
1985
{
@@ -1988,7 +1988,7 @@
1988
"en": "Agent Error Counters",
1989
"nl": "Agent fout tellers",
1990
"xloc": [
1991
- "default.handlebars->23->1388"
1991
+ "default.handlebars->25->1391"
1992
]
1993
},
1994
{
@@ -2022,7 +2022,7 @@
2022
"en": "Agent Sessions",
2023
"nl": "Agent Sessies",
2024
"xloc": [
2025
- "default.handlebars->23->1404"
2025
+ "default.handlebars->25->1407"
2026
]
2027
},
2028
{
@@ -2035,7 +2035,7 @@
2035
"ru": "Тег агента",
2036
"xloc": [
2037
"default-mobile.handlebars->9->189",
2038
- "default.handlebars->23->464"
2038
+ "default.handlebars->25->467"
2039
]
2040
},
2041
{
@@ -2044,7 +2044,7 @@
2044
"en": "Agent Types",
2045
"nl": "Agent Type",
2046
"xloc": [
2047
- "default.handlebars->23->1139",
2047
+ "default.handlebars->25->1142",
2048
"default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
2049
]
2050
},
@@ -2057,9 +2057,9 @@
2057
"pt": "Agente conectado",
2058
"ru": "Агент подключен",
2059
"xloc": [
2060
- "default.handlebars->23->154",
2061
- "default.handlebars->23->510",
2062
- "default.handlebars->23->511"
2060
+ "default.handlebars->25->154",
2061
+ "default.handlebars->25->513",
2062
+ "default.handlebars->25->514"
2063
]
2064
},
2065
{
@@ -2071,7 +2071,7 @@
2071
"pt": "Agente desconectado",
2072
"ru": "Агент отключился",
2073
"xloc": [
2074
- "default.handlebars->23->158"
2074
+ "default.handlebars->25->158"
2075
]
2076
},
2077
{
@@ -2083,7 +2083,7 @@
2083
"pt": "O agente está offline",
2084
"ru": "Агент оффлайн",
2085
"xloc": [
2086
- "default.handlebars->23->683"
2086
+ "default.handlebars->25->686"
2087
]
2088
},
2089
{
@@ -2095,7 +2095,7 @@
2095
"pt": "Agente está online",
2096
"ru": "Агент онлайн",
2097
"xloc": [
2098
- "default.handlebars->23->682"
2098
+ "default.handlebars->25->685"
2099
]
2100
},
2101
{
@@ -2107,7 +2107,7 @@
2107
"pt": "Agentes",
2108
"ru": "Агенты",
2109
"xloc": [
2110
- "default.handlebars->23->1417"
2110
+ "default.handlebars->25->1420"
2111
]
2112
},
2113
{
@@ -2119,7 +2119,7 @@
2119
"pt": "albanês",
2120
"ru": "Албанский",
2121
"xloc": [
2122
- "default.handlebars->23->713"
2122
+ "default.handlebars->25->716"
2123
]
2124
},
2125
{
@@ -2158,9 +2158,9 @@
2158
"pt": "All Focus",
2159
"ru": "Фокусирование всех",
2160
"xloc": [
2161
- "default.handlebars->23->598",
2162
- "default.handlebars->23->600",
2163
- "default.handlebars->23->601"
2161
+ "default.handlebars->25->601",
2162
+ "default.handlebars->25->603",
2163
+ "default.handlebars->25->604"
2164
]
2165
},
2166
{
@@ -2173,8 +2173,8 @@
2173
"pt": "Permitir que os usuários gerenciem esse grupo de dispositivos e dispositivos neste grupo.",
2174
"ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.",
2175
"xloc": [
2176
- "default.handlebars->23->1073",
2177
- "default.handlebars->23->1303"
2176
+ "default.handlebars->25->1076",
2177
+ "default.handlebars->25->1306"
2178
]
2179
},
2180
{
@@ -2212,7 +2212,13 @@
2212
"pt": "Alternativo (F10 = ESC + 0)",
2213
"ru": "Поменять (F10 = ESC+0)",
2214
"xloc": [
2215
- "default.handlebars->23->632"
2215
+ "default.handlebars->25->635"
2216
+ ]
2217
+ },
2218
+ {
2219
+ "en": "Alternate Port",
2220
+ "xloc": [
2221
+ "default.handlebars->altPortContextMenu->cxaltport->0"
2222
]
2223
},
2224
{
@@ -2225,7 +2231,7 @@
2231
"pt": "Notificar sempre",
2232
"ru": "Всегда уведомлять",
2233
"xloc": [
2228
- "default.handlebars->23->988"
2234
+ "default.handlebars->25->991"
2235
]
2236
},
2237
{
@@ -2237,7 +2243,7 @@
2243
"pt": "Sempre alerta",
2244
"ru": "Всегда напоминать",
2245
"xloc": [
2240
- "default.handlebars->23->989"
2246
+ "default.handlebars->25->992"
2247
]
2248
},
2249
{
@@ -2250,7 +2256,7 @@
2256
"ru": "Андроид APK",
2257
"xloc": [
2258
"default-mobile.handlebars->9->157",
2253
- "default.handlebars->23->27"
2259
+ "default.handlebars->25->27"
2260
]
2261
},
2262
{
@@ -2263,7 +2269,7 @@
2269
"ru": "Андроид ARM",
2270
"xloc": [
2271
"default-mobile.handlebars->9->152",
2266
- "default.handlebars->23->22"
2272
+ "default.handlebars->25->22"
2273
]
2274
},
2275
{
@@ -2276,7 +2282,7 @@
2282
"ru": "Андроид x86",
2283
"xloc": [
2284
"default-mobile.handlebars->9->155",
2279
- "default.handlebars->23->25"
2285
+ "default.handlebars->25->25"
2286
]
2287
},
2288
{
@@ -2289,7 +2295,7 @@
2295
"pt": "Antivírus",
2296
"ru": "Антивирус",
2297
"xloc": [
2292
- "default.handlebars->23->470"
2298
+ "default.handlebars->25->473"
2299
]
2300
},
2301
{
@@ -2301,7 +2307,7 @@
2307
"pt": "Qualquer suportado",
2308
"ru": "Все поддерживаемые",
2309
"xloc": [
2304
- "default.handlebars->23->287"
2310
+ "default.handlebars->25->287"
2311
]
2312
},
2313
{
@@ -2313,7 +2319,7 @@
2319
"pt": "Apple MacOS",
2320
"ru": "Apple MacOS",
2321
"xloc": [
2316
- "default.handlebars->23->317"
2322
+ "default.handlebars->25->317"
2323
]
2324
},
2325
{
@@ -2325,7 +2331,7 @@
2331
"pt": "Apenas Apple MacOS ",
2332
"ru": "Только Apple MacOS",
2333
"xloc": [
2328
- "default.handlebars->23->289"
2334
+ "default.handlebars->25->289"
2335
]
2336
},
2337
{
@@ -2349,7 +2355,7 @@
2355
"pt": "Árabe (Argélia)",
2356
"ru": "Арабский (Алжир)",
2357
"xloc": [
2352
- "default.handlebars->23->715"
2358
+ "default.handlebars->25->718"
2359
]
2360
},
2361
{
@@ -2361,7 +2367,7 @@
2367
"pt": "Árabe (Bahrain)",
2368
"ru": "Арабский (Бахрейн)",
2369
"xloc": [
2364
- "default.handlebars->23->716"
2370
+ "default.handlebars->25->719"
2371
]
2372
},
2373
{
@@ -2373,7 +2379,7 @@
2379
"pt": "Árabe (Egito)",
2380
"ru": "Арабский (Египет)",
2381
"xloc": [
2376
- "default.handlebars->23->717"
2382
+ "default.handlebars->25->720"
2383
]
2384
},
2385
{
@@ -2385,7 +2391,7 @@
2391
"pt": "Árabe (Iraque)",
2392
"ru": "Арабский (Ирак)",
2393
"xloc": [
2388
- "default.handlebars->23->718"
2394
+ "default.handlebars->25->721"
2395
]
2396
},
2397
{
@@ -2397,7 +2403,7 @@
2403
"pt": "Árabe (Jordânia)",
2404
"ru": "Арабский (Иордания)",
2405
"xloc": [
2400
- "default.handlebars->23->719"
2406
+ "default.handlebars->25->722"
2407
]
2408
},
2409
{
@@ -2409,7 +2415,7 @@
2415
"pt": "Árabe (Kuwait)",
2416
"ru": "Арабский (Кувейт)",
2417
"xloc": [
2412
- "default.handlebars->23->720"
2418
+ "default.handlebars->25->723"
2419
]
2420
},
2421
{
@@ -2421,7 +2427,7 @@
2427
"pt": "Árabe (Líbano)",
2428
"ru": "Арабский (Ливан)",
2429
"xloc": [
2424
- "default.handlebars->23->721"
2430
+ "default.handlebars->25->724"
2431
]
2432
},
2433
{
@@ -2433,7 +2439,7 @@
2439
"pt": "Árabe (Líbia)",
2440
"ru": "Арабский (Ливия)",
2441
"xloc": [
2436
- "default.handlebars->23->722"
2442
+ "default.handlebars->25->725"
2443
]
2444
},
2445
{
@@ -2445,7 +2451,7 @@
2451
"pt": "Árabe (Marrocos)",
2452
"ru": "Арабский (Марокко)",
2453
"xloc": [
2448
- "default.handlebars->23->723"
2454
+ "default.handlebars->25->726"
2455
]
2456
},
2457
{
@@ -2457,7 +2463,7 @@
2463
"pt": "Árabe (Omã)",
2464
"ru": "Арабский (Оман)",
2465
"xloc": [
2460
- "default.handlebars->23->724"
2466
+ "default.handlebars->25->727"
2467
]
2468
},
2469
{
@@ -2469,7 +2475,7 @@
2475
"pt": "Árabe (Catar)",
2476
"ru": "Арабский (Катар)",
2477
"xloc": [
2472
- "default.handlebars->23->725"
2478
+ "default.handlebars->25->728"
2479
]
2480
},
2481
{
@@ -2481,7 +2487,7 @@
2487
"pt": "Árabe (Arábia Saudita)",
2488
"ru": "Арабский (Саудовская Аравия)",
2489
"xloc": [
2484
- "default.handlebars->23->726"
2490
+ "default.handlebars->25->729"
2491
]
2492
},
2493
{
@@ -2493,7 +2499,7 @@
2499
"pt": "Árabe (padrão)",
2500
"ru": "Арабский (стандартный)",
2501
"xloc": [
2496
- "default.handlebars->23->714"
2502
+ "default.handlebars->25->717"
2503
]
2504
},
2505
{
@@ -2505,7 +2511,7 @@
2511
"pt": "Árabe (Síria)",
2512
"ru": "Арабский (Сирия)",
2513
"xloc": [
2508
- "default.handlebars->23->727"
2514
+ "default.handlebars->25->730"
2515
]
2516
},
2517
{
@@ -2517,7 +2523,7 @@
2523
"pt": "Árabe (Tunísia)",
2524
"ru": "Арабский (Тунис)",
2525
"xloc": [
2520
- "default.handlebars->23->728"
2526
+ "default.handlebars->25->731"
2527
]
2528
},
2529
{
@@ -2529,7 +2535,7 @@
2535
"pt": "Árabe (U.A.E)",
2536
"ru": "Арабский (О.А.Э.)",
2537
"xloc": [
2532
- "default.handlebars->23->729"
2538
+ "default.handlebars->25->732"
2539
]
2540
},
2541
{
@@ -2541,7 +2547,7 @@
2547
"pt": "Árabe (Iêmen)",
2548
"ru": "Арабский (Йемен)",
2549
"xloc": [
2544
- "default.handlebars->23->730"
2550
+ "default.handlebars->25->733"
2551
]
2552
},
2553
{
@@ -2553,7 +2559,7 @@
2559
"pt": "Aragonês",
2560
"ru": "Арагонский",
2561
"xloc": [
2556
- "default.handlebars->23->731"
2562
+ "default.handlebars->25->734"
2563
]
2564
},
2565
{
@@ -2566,7 +2572,7 @@
2572
"pt": "Arquitetura",
2573
"ru": "Архитектура",
2574
"xloc": [
2569
- "default.handlebars->23->82"
2575
+ "default.handlebars->25->82"
2576
]
2577
},
2578
{
@@ -2577,7 +2583,7 @@
2583
"nl": "Weet u zeker dat u verbinding wilt maken met {0} apparaten?",
2584
"ru": "Вы уверенны, что хотите подключиться к {0} устройствам?",
2585
"xloc": [
2580
- "default.handlebars->23->218"
2586
+ "default.handlebars->25->218"
2587
]
2588
},
2589
{
@@ -2591,7 +2597,7 @@
2597
"ru": "Вы уверенны, что хотите удалить группу {0}? Удаление группы приведет к удалению всей информации связанной с устройствами в этой группе.",
2598
"xloc": [
2599
"default-mobile.handlebars->9->286",
2594
- "default.handlebars->23->1053"
2600
+ "default.handlebars->25->1056"
2601
]
2602
},
2603
{
@@ -2604,7 +2610,7 @@
2610
"pt": "Tem certeza de que deseja excluir o nó {0}?",
2611
"ru": "Вы уверенны, что хотите удалить узел {0}?",
2612
"xloc": [
2607
- "default.handlebars->23->558"
2613
+ "default.handlebars->25->561"
2614
]
2615
},
2616
{
@@ -2615,7 +2621,7 @@
2621
"nl": "Weet u zeker dat u de geselecteerde agent wilt verwijderen?",
2622
"ru": "Вы уверенны, что хотите деинсталировать избранного агента?",
2623
"xloc": [
2618
- "default.handlebars->23->547"
2624
+ "default.handlebars->25->550"
2625
]
2626
},
2627
{
@@ -2626,7 +2632,7 @@
2632
"nl": "Weet u zeker dat u de geselecteerde {0} agenten wilt verwijderen?",
2633
"ru": "Вы уверенны, что хотите деинсталировать избранных {0} агентов?",
2634
"xloc": [
2629
- "default.handlebars->23->546"
2635
+ "default.handlebars->25->549"
2636
]
2637
},
2638
{
@@ -2637,7 +2643,7 @@
2643
"nl": "Weet u zeker dat u de plug-in {0} wilt gebruiken: {1}",
2644
"ru": "Вы уверенны, что {0} плагин: {1}",
2645
"xloc": [
2640
- "default.handlebars->23->1452"
2646
+ "default.handlebars->25->1455"
2647
]
2648
},
2649
{
@@ -2649,7 +2655,7 @@
2655
"pt": "Armênio",
2656
"ru": "Арменский",
2657
"xloc": [
2652
- "default.handlebars->23->732"
2658
+ "default.handlebars->25->735"
2659
]
2660
},
2661
{
@@ -2661,7 +2667,7 @@
2667
"pt": "Assamese",
2668
"ru": "Ассамский",
2669
"xloc": [
2664
- "default.handlebars->23->733"
2670
+ "default.handlebars->25->736"
2671
]
2672
},
2673
{
@@ -2673,7 +2679,7 @@
2679
"pt": "Asturiano",
2680
"ru": "Астурии",
2681
"xloc": [
2676
- "default.handlebars->23->734"
2682
+ "default.handlebars->25->737"
2683
]
2684
},
2685
{
@@ -2685,7 +2691,7 @@
2691
"pt": "Aplicativo de autenticação",
2692
"ru": "Приложение аутентификации",
2693
"xloc": [
2688
- "default.handlebars->23->1333"
2694
+ "default.handlebars->25->1336"
2695
]
2696
},
2697
{
@@ -2701,10 +2707,10 @@
2707
"default-mobile.handlebars->9->21",
2708
"default-mobile.handlebars->9->30",
2709
"default-mobile.handlebars->9->32",
2704
- "default.handlebars->23->122",
2705
- "default.handlebars->23->127",
2706
- "default.handlebars->23->698",
2707
- "default.handlebars->23->700"
2710
+ "default.handlebars->25->122",
2711
+ "default.handlebars->25->127",
2712
+ "default.handlebars->25->701",
2713
+ "default.handlebars->25->703"
2714
]
2715
},
2716
{
@@ -2716,7 +2722,7 @@
2722
"pt": "Ativação do aplicativo autenticador bem-sucedida.",
2723
"ru": "Приложение для аутентификации активированно успешно.",
2724
"xloc": [
2719
- "default.handlebars->23->123"
2725
+ "default.handlebars->25->123"
2726
]
2727
},
2728
{
@@ -2728,7 +2734,7 @@
2734
"pt": "Aplicativo autenticador removido.",
2735
"ru": "Приложение для аутентификации удалено.",
2736
"xloc": [
2731
- "default.handlebars->23->128"
2737
+ "default.handlebars->25->128"
2738
]
2739
},
2740
{
@@ -2754,7 +2760,7 @@
2760
"pt": "Remover automaticamente",
2761
"ru": "Авто-Удаление",
2762
"xloc": [
2757
- "default.handlebars->23->976"
2763
+ "default.handlebars->25->979"
2764
]
2765
},
2766
{
@@ -2794,7 +2800,7 @@
2800
"pt": "Azerbaijão",
2801
"ru": "Азербайджанский",
2802
"xloc": [
2797
- "default.handlebars->23->735"
2803
+ "default.handlebars->25->738"
2804
]
2805
},
2806
{
@@ -2806,7 +2812,7 @@
2812
"pt": "BIOS",
2813
"ru": "BIOS",
2814
"xloc": [
2809
- "default.handlebars->23->66"
2815
+ "default.handlebars->25->66"
2816
]
2817
},
2818
{
@@ -2870,7 +2876,7 @@
2876
"pt": "Segundo plano e interativo",
2877
"ru": "Фоновый и интерактивный режимы",
2878
"xloc": [
2873
- "default.handlebars->23->321"
2879
+ "default.handlebars->25->321"
2880
]
2881
},
2882
{
@@ -2882,7 +2888,7 @@
2888
"pt": "Segundo plano e interativo",
2889
"ru": "Фоновый и интерактивный режимы",
2890
"xloc": [
2885
- "default.handlebars->23->299"
2891
+ "default.handlebars->25->299"
2892
]
2893
},
2894
{
@@ -2894,8 +2900,8 @@
2900
"pt": "Apenas em segundo plano",
2901
"ru": "Только в фоновом режиме",
2902
"xloc": [
2897
- "default.handlebars->23->300",
2898
- "default.handlebars->23->322"
2903
+ "default.handlebars->25->300",
2904
+ "default.handlebars->25->322"
2905
]
2906
},
2907
{
@@ -2920,7 +2926,7 @@
2926
"pt": "Códigos de backup",
2927
"ru": "Коды бэкапа",
2928
"xloc": [
2923
- "default.handlebars->23->1335"
2929
+ "default.handlebars->25->1338"
2930
]
2931
},
2932
{
@@ -2929,7 +2935,7 @@
2935
"en": "Bad Signature",
2936
"nl": "Ongeldige handtening",
2937
"xloc": [
2932
- "default.handlebars->23->1395"
2938
+ "default.handlebars->25->1398"
2939
]
2940
},
2941
{
@@ -2938,7 +2944,7 @@
2944
"en": "Bad Web Certificate",
2945
"nl": "Onjuist webcertificaat",
2946
"xloc": [
2941
- "default.handlebars->23->1394"
2947
+ "default.handlebars->25->1397"
2948
]
2949
},
2950
{
@@ -2950,7 +2956,7 @@
2956
"pt": "Basco",
2957
"ru": "Баскский",
2958
"xloc": [
2953
- "default.handlebars->23->736"
2959
+ "default.handlebars->25->739"
2960
]
2961
},
2962
{
@@ -2974,7 +2980,7 @@
2980
"pt": "Bielorrusso",
2981
"ru": "Белорусский",
2982
"xloc": [
2977
- "default.handlebars->23->738"
2983
+ "default.handlebars->25->741"
2984
]
2985
},
2986
{
@@ -2986,7 +2992,7 @@
2992
"pt": "Bengali",
2993
"ru": "Бенгальский",
2994
"xloc": [
2989
- "default.handlebars->23->739"
2995
+ "default.handlebars->25->742"
2996
]
2997
},
2998
{
@@ -2998,7 +3004,7 @@
3004
"pt": "Bósnia",
3005
"ru": "Боснийский",
3006
"xloc": [
3001
- "default.handlebars->23->740"
3007
+ "default.handlebars->25->743"
3008
]
3009
},
3010
{
@@ -3010,7 +3016,7 @@
3016
"pt": "Breton",
3017
"ru": "Бретонский",
3018
"xloc": [
3013
- "default.handlebars->23->741"
3019
+ "default.handlebars->25->744"
3020
]
3021
},
3022
{
@@ -3023,7 +3029,7 @@
3029
"pt": "Broadcast",
3030
"ru": "Отправить сообщение...",
3031
"xloc": [
3026
- "default.handlebars->23->1276",
3032
+ "default.handlebars->25->1279",
3033
"default.handlebars->container->column_l->p4->3->1->0->3->1"
3034
]
3035
},
@@ -3037,7 +3043,7 @@
3043
"pt": "Mensagem de transmissão",
3044
"ru": "Отправить сообщение",
3045
"xloc": [
3040
- "default.handlebars->23->1233"
3046
+ "default.handlebars->25->1236"
3047
]
3048
},
3049
{
@@ -3049,7 +3055,7 @@
3055
"pt": "Transmita uma mensagem para todos os usuários conectados.",
3056
"ru": "Отправить сообщение всем подключенным пользователям.",
3057
"xloc": [
3052
- "default.handlebars->23->1232"
3058
+ "default.handlebars->25->1235"
3059
]
3060
},
3061
{
@@ -3061,7 +3067,7 @@
3067
"pt": "Búlgaria",
3068
"ru": "Болгарский",
3069
"xloc": [
3064
- "default.handlebars->23->737"
3070
+ "default.handlebars->25->740"
3071
]
3072
},
3073
{
@@ -3073,7 +3079,7 @@
3079
"pt": "Birmanês",
3080
"ru": "Бирманский",
3081
"xloc": [
3076
- "default.handlebars->23->742"
3082
+ "default.handlebars->25->745"
3083
]
3084
},
3085
{
@@ -3086,7 +3092,7 @@
3092
"ru": "CCM",
3093
"xloc": [
3094
"default-mobile.handlebars->9->181",
3089
- "default.handlebars->23->450"
3095
+ "default.handlebars->25->453"
3096
]
3097
},
3098
{
@@ -3099,10 +3105,10 @@
3105
"ru": "CIRA",
3106
"xloc": [
3107
"default-mobile.handlebars->9->122",
3102
- "default.handlebars->23->1041",
3103
- "default.handlebars->23->1046",
3104
- "default.handlebars->23->186",
3105
- "default.handlebars->23->373"
3108
+ "default.handlebars->25->1044",
3109
+ "default.handlebars->25->1049",
3110
+ "default.handlebars->25->186",
3111
+ "default.handlebars->25->373"
3112
]
3113
},
3114
{
@@ -3114,7 +3120,7 @@
3120
"pt": "Servidor CIRA",
3121
"ru": "CIRA Сервер",
3122
"xloc": [
3117
- "default.handlebars->23->1443"
3123
+ "default.handlebars->25->1446"
3124
]
3125
},
3126
{
@@ -3126,7 +3132,7 @@
3132
"pt": "Comandos do servidor CIRA",
3133
"ru": "CIRA Сервер комманды",
3134
"xloc": [
3129
- "default.handlebars->23->1444"
3135
+ "default.handlebars->25->1447"
3136
]
3137
},
3138
{
@@ -3135,7 +3141,7 @@
3141
"en": "CPU Load",
3142
"nl": "CPU gebruik",
3143
"xloc": [
3138
- "default.handlebars->23->1409"
3144
+ "default.handlebars->25->1412"
3145
]
3146
},
3147
{
@@ -3147,7 +3153,7 @@
3153
"pt": "Carga da CPU nos últimos 15 minutos",
3154
"ru": "Загрузка ЦПУ за последние 15 минут",
3155
"xloc": [
3150
- "default.handlebars->23->1412"
3156
+ "default.handlebars->25->1415"
3157
]
3158
},
3159
{
@@ -3159,7 +3165,7 @@
3165
"pt": "Carga da CPU nos últimos 5 minutos",
3166
"ru": "Загрузка ЦПУ за последние 5 минут",
3167
"xloc": [
3162
- "default.handlebars->23->1411"
3168
+ "default.handlebars->25->1414"
3169
]
3170
},
3171
{
@@ -3171,7 +3177,7 @@
3177
"pt": "Carga da CPU no último minuto",
3178
"ru": "Загрузка ЦПУ за последнюю минуту",
3179
"xloc": [
3174
- "default.handlebars->23->1410"
3180
+ "default.handlebars->25->1413"
3181
]
3182
},
3183
{
@@ -3183,8 +3189,8 @@
3189
"pt": "CR + LF",
3190
"ru": "CR+LF",
3191
"xloc": [
3186
- "default.handlebars->23->625",
3187
- "default.handlebars->23->634",
3192
+ "default.handlebars->25->628",
3193
+ "default.handlebars->25->637",
3194
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
3195
]
3196
},
@@ -3197,8 +3203,8 @@
3203
"pt": "Formato CSV",
3204
"ru": "Формат CSV",
3205
"xloc": [
3200
- "default.handlebars->23->1185",
3201
- "default.handlebars->23->1224"
3206
+ "default.handlebars->25->1188",
3207
+ "default.handlebars->25->1227"
3208
]
3209
},
3210
{
@@ -3211,7 +3217,7 @@
3217
"pt": "Erro de chamada",
3218
"ru": "Ошибка вызова",
3219
"xloc": [
3214
- "default.handlebars->23->1453"
3220
+ "default.handlebars->25->1456"
3221
]
3222
},
3223
{
@@ -3226,7 +3232,7 @@
3232
"xloc": [
3233
"default-mobile.handlebars->9->41",
3234
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
3229
- "default.handlebars->23->961",
3235
+ "default.handlebars->25->964",
3236
"default.handlebars->container->dialog->idx_dlgButtonBar",
3237
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
3238
"login.handlebars->dialog->idx_dlgButtonBar",
@@ -3243,7 +3249,7 @@
3249
"pt": "Capacidade / velocidade",
3250
"ru": "Объем / Скорость",
3251
"xloc": [
3246
- "default.handlebars->23->76"
3252
+ "default.handlebars->25->76"
3253
]
3254
},
3255
{
@@ -3255,7 +3261,7 @@
3261
"pt": "Catalão",
3262
"ru": "Каталонский",
3263
"xloc": [
3258
- "default.handlebars->23->743"
3264
+ "default.handlebars->25->746"
3265
]
3266
},
3267
{
@@ -3268,7 +3274,7 @@
3274
"pt": "Centralize o mapa aqui",
3275
"ru": "Установить центр карты здесь",
3276
"xloc": [
3271
- "default.handlebars->23->416"
3277
+ "default.handlebars->25->419"
3278
]
3279
},
3280
{
@@ -3280,7 +3286,7 @@
3286
"pt": "Chamorro",
3287
"ru": "Чаморро",
3288
"xloc": [
3283
- "default.handlebars->23->744"
3289
+ "default.handlebars->25->747"
3290
]
3291
},
3292
{
@@ -3292,7 +3298,7 @@
3298
"pt": "Alterar email para {0}",
3299
"ru": "Смена е-мейла для {0}",
3300
"xloc": [
3295
- "default.handlebars->23->1348"
3301
+ "default.handlebars->25->1351"
3302
]
3303
},
3304
{
@@ -3304,9 +3310,9 @@
3310
"pt": "Alterar grupo",
3311
"ru": "Смена группы",
3312
"xloc": [
3307
- "default.handlebars->23->491",
3308
- "default.handlebars->23->555",
3309
- "default.handlebars->23->556"
3313
+ "default.handlebars->25->494",
3314
+ "default.handlebars->25->558",
3315
+ "default.handlebars->25->559"
3316
]
3317
},
3318
{
@@ -3319,8 +3325,8 @@
3325
"ru": "Смена Пароля",
3326
"xloc": [
3327
"default-mobile.handlebars->9->49",
3322
- "default.handlebars->23->1343",
3323
- "default.handlebars->23->937"
3328
+ "default.handlebars->25->1346",
3329
+ "default.handlebars->25->940"
3330
]
3331
},
3332
{
@@ -3332,7 +3338,7 @@
3338
"pt": "Alterar senha para {0}",
3339
"ru": "Смена пароля для {0}",
3340
"xloc": [
3335
- "default.handlebars->23->1355"
3341
+ "default.handlebars->25->1358"
3342
]
3343
},
3344
{
@@ -3394,7 +3400,7 @@
3400
"pt": "Mude o endereço de e-mail da sua conta aqui.",
3401
"ru": "Измените адрес электронной почты вашей учетной записи здесь.",
3402
"xloc": [
3397
- "default.handlebars->23->924"
3403
+ "default.handlebars->25->927"
3404
]
3405
},
3406
{
@@ -3406,7 +3412,7 @@
3412
"pt": "Altere a senha da sua conta digitando a senha antiga e a nova senha duas vezes nas caixas abaixo.",
3413
"ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.",
3414
"xloc": [
3409
- "default.handlebars->23->930"
3415
+ "default.handlebars->25->933"
3416
]
3417
},
3418
{
@@ -3418,7 +3424,7 @@
3424
"pt": "Alterar o idioma exigirá uma atualização da página.",
3425
"ru": "Изменение языка потребует обновления страницы.",
3426
"xloc": [
3421
- "default.handlebars->23->909"
3427
+ "default.handlebars->25->912"
3428
]
3429
},
3430
{
@@ -3430,7 +3436,7 @@
3436
"pt": "Chat",
3437
"ru": "Чат",
3438
"xloc": [
3433
- "default.handlebars->23->1202"
3439
+ "default.handlebars->25->1205"
3440
]
3441
},
3442
{
@@ -3444,8 +3450,8 @@
3450
"xloc": [
3451
"default-mobile.handlebars->9->307",
3452
"default-mobile.handlebars->9->325",
3447
- "default.handlebars->23->1096",
3448
- "default.handlebars->23->1119"
3453
+ "default.handlebars->25->1099",
3454
+ "default.handlebars->25->1122"
3455
]
3456
},
3457
{
@@ -3457,7 +3463,7 @@
3463
"pt": "Checheno",
3464
"ru": "Чеченский",
3465
"xloc": [
3460
- "default.handlebars->23->745"
3466
+ "default.handlebars->25->748"
3467
]
3468
},
3469
{
@@ -3469,7 +3475,7 @@
3475
"pt": "Verifique e clique em OK para limpar o log de erros.",
3476
"ru": "Поставьте отметку и жмите ОК для очищения журнала ошибок.",
3477
"xloc": [
3472
- "default.handlebars->23->119"
3478
+ "default.handlebars->25->119"
3479
]
3480
},
3481
{
@@ -3481,7 +3487,7 @@
3487
"pt": "Marque e clique em OK para iniciar a atualização automática do servidor.",
3488
"ru": "Поставьте отметку и жмите ОК для начала само-обновления.",
3489
"xloc": [
3484
- "default.handlebars->23->114"
3490
+ "default.handlebars->25->114"
3491
]
3492
},
3493
{
@@ -3505,8 +3511,8 @@
3511
"pt": "Verificando ...",
3512
"ru": "Проверка...",
3513
"xloc": [
3508
- "default.handlebars->23->1449",
3509
- "default.handlebars->23->711"
3514
+ "default.handlebars->25->1452",
3515
+ "default.handlebars->25->714"
3516
]
3517
},
3518
{
@@ -3518,7 +3524,7 @@
3524
"pt": "Chinês",
3525
"ru": "Китайский",
3526
"xloc": [
3521
- "default.handlebars->23->746"
3527
+ "default.handlebars->25->749"
3528
]
3529
},
3530
{
@@ -3530,7 +3536,7 @@
3536
"pt": "Chinês (Hong Kong)",
3537
"ru": "Китайский (Гонконг)",
3538
"xloc": [
3533
- "default.handlebars->23->747"
3539
+ "default.handlebars->25->750"
3540
]
3541
},
3542
{
@@ -3542,7 +3548,7 @@
3548
"pt": "Chinês (PRC)",
3549
"ru": "Китайский (КНР)",
3550
"xloc": [
3545
- "default.handlebars->23->748"
3551
+ "default.handlebars->25->751"
3552
]
3553
},
3554
{
@@ -3554,7 +3560,7 @@
3560
"pt": "Chinês (Singapura)",
3561
"ru": "Китайский (Сингапур)",
3562
"xloc": [
3557
- "default.handlebars->23->749"
3563
+ "default.handlebars->25->752"
3564
]
3565
},
3566
{
@@ -3566,7 +3572,7 @@
3572
"pt": "Chinês (Taiwan)",
3573
"ru": "Китайский (Тайвань)",
3574
"xloc": [
3569
- "default.handlebars->23->750"
3575
+ "default.handlebars->25->753"
3576
]
3577
},
3578
{
@@ -3579,7 +3585,7 @@
3585
"ru": "ХромеОС",
3586
"xloc": [
3587
"default-mobile.handlebars->9->160",
3582
- "default.handlebars->23->30"
3588
+ "default.handlebars->25->30"
3589
]
3590
},
3591
{
@@ -3591,7 +3597,7 @@
3597
"pt": "Chuvash",
3598
"ru": "Чувашский",
3599
"xloc": [
3594
- "default.handlebars->23->751"
3600
+ "default.handlebars->25->754"
3601
]
3602
},
3603
{
@@ -3603,7 +3609,7 @@
3609
"pt": "Limpeza CIRA",
3610
"ru": "Очистка CIRA",
3611
"xloc": [
3606
- "default.handlebars->23->264"
3612
+ "default.handlebars->25->264"
3613
]
3614
},
3615
{
@@ -3621,11 +3627,11 @@
3627
"default-mobile.handlebars->9->268",
3628
"default-mobile.handlebars->9->28",
3629
"default-mobile.handlebars->9->91",
3624
- "default.handlebars->23->1179",
3625
- "default.handlebars->23->660",
3626
- "default.handlebars->23->662",
3627
- "default.handlebars->23->664",
3628
- "default.handlebars->23->666",
3630
+ "default.handlebars->25->1182",
3631
+ "default.handlebars->25->663",
3632
+ "default.handlebars->25->665",
3633
+ "default.handlebars->25->667",
3634
+ "default.handlebars->25->669",
3635
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
3636
"default.handlebars->container->column_l->p41->3->1",
3637
"messenger.handlebars->xbottom"
@@ -3640,7 +3646,7 @@
3646
"pt": "Limpar Tokens",
3647
"ru": "Очистить Токены",
3648
"xloc": [
3643
- "default.handlebars->23->136"
3649
+ "default.handlebars->25->136"
3650
]
3651
},
3652
{
@@ -3652,7 +3658,7 @@
3658
"pt": "Limpe o núcleo",
3659
"ru": "Очистить ядро",
3660
"xloc": [
3655
- "default.handlebars->23->692"
3661
+ "default.handlebars->25->695"
3662
]
3663
},
3664
{
@@ -3664,7 +3670,7 @@
3670
"pt": "Limpe o segredo do aplicativo e tente novamente. Você tem apenas alguns minutos para inserir o código correto.",
3671
"ru": "Удалите ключ из приложения и попробуйте еще раз. У вас есть всего несколько минут, чтобы ввести правильный код.",
3672
"xloc": [
3667
- "default.handlebars->23->126"
3673
+ "default.handlebars->25->126"
3674
]
3675
},
3676
{
@@ -3676,7 +3682,7 @@
3682
"pt": "clique aqui para criar um grupo de dispositivos",
3683
"ru": "Для изменения имени устройства на сервере жмите сюда",
3684
"xloc": [
3679
- "default.handlebars->23->430"
3685
+ "default.handlebars->25->433"
3686
]
3687
},
3688
{
@@ -3689,7 +3695,7 @@
3695
"ru": "Нажмите ок для отправки подтверждения по електронной почте:",
3696
"xloc": [
3697
"default-mobile.handlebars->9->34",
3692
- "default.handlebars->23->921"
3698
+ "default.handlebars->25->924"
3699
]
3700
},
3701
{
@@ -3713,8 +3719,8 @@
3719
"pt": "Acesso remoto iniciado pelo cliente",
3720
"ru": "Удаленная Связь Установленая Клиентом",
3721
"xloc": [
3716
- "default.handlebars->23->1040",
3717
- "default.handlebars->23->1045"
3722
+ "default.handlebars->25->1043",
3723
+ "default.handlebars->25->1048"
3724
]
3725
},
3726
{
@@ -3739,9 +3745,9 @@
3745
"ru": "Закрыть",
3746
"xloc": [
3747
"default-mobile.handlebars->9->26",
3742
- "default.handlebars->23->134",
3743
- "default.handlebars->23->142",
3744
- "default.handlebars->23->618"
3748
+ "default.handlebars->25->134",
3749
+ "default.handlebars->25->142",
3750
+ "default.handlebars->25->621"
3751
]
3752
},
3753
{
@@ -3763,8 +3769,8 @@
3769
"en": "Common Device Groups",
3770
"nl": "Gemeenschappelijke apparaatgroepen",
3771
"xloc": [
3766
- "default.handlebars->23->1284",
3767
- "default.handlebars->23->1358"
3772
+ "default.handlebars->25->1287",
3773
+ "default.handlebars->25->1361"
3774
]
3775
},
3776
{
@@ -3777,7 +3783,7 @@
3783
"ru": "Подтвердить {0} из {1} записи {2} в это местоположение?",
3784
"xloc": [
3785
"default-mobile.handlebars->9->86",
3780
- "default.handlebars->23->1174"
3786
+ "default.handlebars->25->1177"
3787
]
3788
},
3789
{
@@ -3791,11 +3797,11 @@
3797
"xloc": [
3798
"default-mobile.handlebars->9->220",
3799
"default-mobile.handlebars->9->287",
3794
- "default.handlebars->23->1054",
3795
- "default.handlebars->23->1299",
3796
- "default.handlebars->23->396",
3797
- "default.handlebars->23->550",
3798
- "default.handlebars->23->559"
3800
+ "default.handlebars->25->1057",
3801
+ "default.handlebars->25->1302",
3802
+ "default.handlebars->25->396",
3803
+ "default.handlebars->25->553",
3804
+ "default.handlebars->25->562"
3805
]
3806
},
3807
{
@@ -3808,7 +3814,7 @@
3814
"ru": "Подтвердить копию 1 записи в это место?",
3815
"xloc": [
3816
"default-mobile.handlebars->9->257",
3811
- "default.handlebars->23->655"
3817
+ "default.handlebars->25->658"
3818
]
3819
},
3820
{
@@ -3821,7 +3827,7 @@
3827
"ru": "Подтвердить копию {0} записей в этом месте?",
3828
"xloc": [
3829
"default-mobile.handlebars->9->256",
3824
- "default.handlebars->23->654"
3830
+ "default.handlebars->25->657"
3831
]
3832
},
3833
{
@@ -3833,7 +3839,7 @@
3839
"pt": "Confirmar a exclusão dos dispositivos selecionados?",
3840
"ru": "Подтвердить удаление выбранных устройств?",
3841
"xloc": [
3836
- "default.handlebars->23->395"
3842
+ "default.handlebars->25->395"
3843
]
3844
},
3845
{
@@ -3846,7 +3852,7 @@
3852
"ru": "Подтвердить перемещение 1 записи в это место?",
3853
"xloc": [
3854
"default-mobile.handlebars->9->259",
3849
- "default.handlebars->23->657"
3855
+ "default.handlebars->25->660"
3856
]
3857
},
3858
{
@@ -3859,7 +3865,7 @@
3865
"ru": "Подтвердить перемещение {0} записей в это место?",
3866
"xloc": [
3867
"default-mobile.handlebars->9->258",
3862
- "default.handlebars->23->656"
3868
+ "default.handlebars->25->659"
3869
]
3870
},
3871
{
@@ -3870,7 +3876,7 @@
3876
"nl": "Bevestig overschrijven?",
3877
"ru": "Подтвердить перезапись?",
3878
"xloc": [
3873
- "default.handlebars->23->1173"
3879
+ "default.handlebars->25->1176"
3880
]
3881
},
3882
{
@@ -3883,7 +3889,7 @@
3889
"ru": "Подтвердите удаление приложения аутентификации 2-хэтапного входа в систему.",
3890
"xloc": [
3891
"default-mobile.handlebars->9->33",
3886
- "default.handlebars->23->701"
3892
+ "default.handlebars->25->704"
3893
]
3894
},
3895
{
@@ -3892,8 +3898,8 @@
3898
"en": "Confirm removal of device group {0}?",
3899
"nl": "Bevestig het verwijderen van de apparaatgroep {0}?",
3900
"xloc": [
3895
- "default.handlebars->23->1294",
3896
- "default.handlebars->23->1378"
3901
+ "default.handlebars->25->1297",
3902
+ "default.handlebars->25->1381"
3903
]
3904
},
3905
{
@@ -3902,7 +3908,7 @@
3908
"en": "Confirm removal of group {0}?",
3909
"nl": "Bevestig het verwijderen van de groep {0}?",
3910
"xloc": [
3905
- "default.handlebars->23->1374"
3911
+ "default.handlebars->25->1377"
3912
]
3913
},
3914
{
@@ -3915,8 +3921,8 @@
3921
"ru": "Подтвердить удаление пользователя {0}?",
3922
"xloc": [
3923
"default-mobile.handlebars->9->333",
3918
- "default.handlebars->23->1128",
3919
- "default.handlebars->23->1302"
3924
+ "default.handlebars->25->1131",
3925
+ "default.handlebars->25->1305"
3926
]
3927
},
3928
{
@@ -3931,8 +3937,8 @@
3937
"default-mobile.handlebars->9->236",
3938
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
3939
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
3934
- "default.handlebars->23->637",
3935
- "default.handlebars->23->992",
3940
+ "default.handlebars->25->640",
3941
+ "default.handlebars->25->995",
3942
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
3943
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
3944
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -3948,7 +3954,7 @@
3954
"pt": "Conectar todos",
3955
"ru": "Подключиться ко всем",
3956
"xloc": [
3951
- "default.handlebars->23->217",
3957
+ "default.handlebars->25->217",
3958
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
3959
]
3960
},
@@ -3961,8 +3967,8 @@
3967
"pt": "Conecte-se ao servidor",
3968
"ru": "Подключиться к серверу",
3969
"xloc": [
3964
- "default.handlebars->23->1044",
3965
- "default.handlebars->23->1048"
3970
+ "default.handlebars->25->1047",
3971
+ "default.handlebars->25->1051"
3972
]
3973
},
3974
{
@@ -3999,7 +4005,7 @@
4005
"ru": "Подключено",
4006
"xloc": [
4007
"default-mobile.handlebars->9->4",
4002
- "default.handlebars->23->11",
4008
+ "default.handlebars->25->11",
4009
"xterm.handlebars->9->4"
4010
]
4011
},
@@ -4009,7 +4015,7 @@
4015
"en": "Connected Intel® AMT",
4016
"nl": "Verbonden Intel® AMT",
4017
"xloc": [
4012
- "default.handlebars->23->1400"
4018
+ "default.handlebars->25->1403"
4019
]
4020
},
4021
{
@@ -4018,7 +4024,7 @@
4024
"en": "Connected Users",
4025
"nl": "Verbonden gebruikers",
4026
"xloc": [
4021
- "default.handlebars->23->1405"
4027
+ "default.handlebars->25->1408"
4028
]
4029
},
4030
{
@@ -4045,11 +4051,11 @@
4051
"default-mobile.handlebars->9->2",
4052
"default-mobile.handlebars->9->272",
4053
"default-mobile.handlebars->9->6",
4048
- "default.handlebars->23->211",
4049
- "default.handlebars->23->214",
4050
- "default.handlebars->23->220",
4051
- "default.handlebars->23->678",
4052
- "default.handlebars->23->9",
4054
+ "default.handlebars->25->211",
4055
+ "default.handlebars->25->214",
4056
+ "default.handlebars->25->220",
4057
+ "default.handlebars->25->681",
4058
+ "default.handlebars->25->9",
4059
"xterm.handlebars->9->2"
4060
]
4061
},
@@ -4062,7 +4068,7 @@
4068
"pt": "Contagem de conexões",
4069
"ru": "Подключений ",
4070
"xloc": [
4065
- "default.handlebars->23->1416"
4071
+ "default.handlebars->25->1419"
4072
]
4073
},
4074
{
@@ -4074,7 +4080,7 @@
4080
"pt": "Encaminhador de conexão",
4081
"ru": "Реле подключения",
4082
"xloc": [
4077
- "default.handlebars->23->1442"
4083
+ "default.handlebars->25->1445"
4084
]
4085
},
4086
{
@@ -4111,9 +4117,9 @@
4117
"ru": "Связь",
4118
"xloc": [
4119
"default-mobile.handlebars->9->195",
4114
- "default.handlebars->23->1144",
4115
- "default.handlebars->23->202",
4116
- "default.handlebars->23->482",
4120
+ "default.handlebars->25->1147",
4121
+ "default.handlebars->25->202",
4122
+ "default.handlebars->25->485",
4123
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
4124
]
4125
},
@@ -4140,7 +4146,7 @@
4146
"pt": "Console - ",
4147
"ru": "Консоль - ",
4148
"xloc": [
4143
- "default.handlebars->23->431"
4149
+ "default.handlebars->25->434"
4150
]
4151
},
4152
{
@@ -4152,7 +4158,7 @@
4158
"pt": "Codificador de cookies",
4159
"ru": "Cookie-кодировщик",
4160
"xloc": [
4155
- "default.handlebars->23->1430"
4161
+ "default.handlebars->25->1433"
4162
]
4163
},
4164
{
@@ -4179,8 +4185,8 @@
4185
"pt": "Copiar endereço MAC para a área de transferência",
4186
"ru": "Скопировать МАС адрес в буфер обмена",
4187
"xloc": [
4182
- "default.handlebars->23->107",
4183
- "default.handlebars->23->99"
4188
+ "default.handlebars->25->107",
4189
+ "default.handlebars->25->99"
4190
]
4191
},
4192
{
@@ -4192,7 +4198,7 @@
4198
"pt": "Copiar o URL do agente MacOS para a área de transferência",
4199
"ru": "Скопировать ссылку МасОС агента в буфер обмена",
4200
"xloc": [
4195
- "default.handlebars->23->337"
4201
+ "default.handlebars->25->337"
4202
]
4203
},
4204
{
@@ -4204,11 +4210,11 @@
4210
"pt": "Copiar endereço para a área de transferência",
4211
"ru": "Скопировать адрес в буфер обмена",
4212
"xloc": [
4207
- "default.handlebars->23->101",
4208
- "default.handlebars->23->103",
4209
- "default.handlebars->23->105",
4210
- "default.handlebars->23->90",
4211
- "default.handlebars->23->92"
4213
+ "default.handlebars->25->101",
4214
+ "default.handlebars->25->103",
4215
+ "default.handlebars->25->105",
4216
+ "default.handlebars->25->90",
4217
+ "default.handlebars->25->92"
4218
]
4219
},
4220
{
@@ -4220,7 +4226,7 @@
4226
"pt": "Copiar link para a área de transferência",
4227
"ru": "Скопировать ссылку в буфер обмена",
4228
"xloc": [
4223
- "default.handlebars->23->312"
4229
+ "default.handlebars->25->312"
4230
]
4231
},
4232
{
@@ -4232,7 +4238,7 @@
4238
"pt": "Copiar nome para a área de transferência",
4239
"ru": "Скопировать имя в буфер обмена",
4240
"xloc": [
4235
- "default.handlebars->23->97"
4241
+ "default.handlebars->25->97"
4242
]
4243
},
4244
{
@@ -4257,7 +4263,7 @@
4263
"pt": "Copiar códigos válidos para a área de transferência",
4264
"ru": "Скопировать действительные коды в буфер обмена",
4265
"xloc": [
4260
- "default.handlebars->23->137"
4266
+ "default.handlebars->25->137"
4267
]
4268
},
4269
{
@@ -4341,7 +4347,7 @@
4347
"pt": "Servidor Core",
4348
"ru": "Основной сервер",
4349
"xloc": [
4344
- "default.handlebars->23->1429"
4350
+ "default.handlebars->25->1432"
4351
]
4352
},
4353
{
@@ -4353,7 +4359,7 @@
4359
"pt": "Corso",
4360
"ru": "Kорсиканский",
4361
"xloc": [
4356
- "default.handlebars->23->752"
4362
+ "default.handlebars->25->755"
4363
]
4364
},
4365
{
@@ -4365,7 +4371,7 @@
4371
"pt": "Criar conta",
4372
"ru": "Создать учетную запись",
4373
"xloc": [
4368
- "default.handlebars->23->1244",
4374
+ "default.handlebars->25->1247",
4375
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
4376
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
4377
]
@@ -4388,7 +4394,7 @@
4394
"en": "Create User Group",
4395
"nl": "Maak een gebruikersgroep.",
4396
"xloc": [
4391
- "default.handlebars->23->1267"
4397
+ "default.handlebars->25->1270"
4398
]
4399
},
4400
{
@@ -4400,7 +4406,7 @@
4406
"pt": "Crie um novo grupo de dispositivos usando as opções abaixo.",
4407
"ru": "Создайте новую группу устройств, используя параметры ниже.",
4408
"xloc": [
4403
- "default.handlebars->23->944"
4409
+ "default.handlebars->25->947"
4410
]
4411
},
4412
{
@@ -4412,7 +4418,7 @@
4418
"pt": "Crie um novo grupo de dispositivos.",
4419
"ru": "Создать новую группу устройств.",
4420
"xloc": [
4415
- "default.handlebars->23->204"
4421
+ "default.handlebars->25->204"
4422
]
4423
},
4424
{
@@ -4424,7 +4430,7 @@
4430
"pt": "Crie várias contas ao mesmo tempo importando um arquivo JSON com o seguinte formato:",
4431
"ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:",
4432
"xloc": [
4427
- "default.handlebars->23->1215"
4433
+ "default.handlebars->25->1218"
4434
]
4435
},
4436
{
@@ -4449,7 +4455,7 @@
4455
"pt": "Criação",
4456
"ru": "Создание",
4457
"xloc": [
4452
- "default.handlebars->23->1321"
4458
+ "default.handlebars->25->1324"
4459
]
4460
},
4461
{
@@ -4474,7 +4480,7 @@
4480
"pt": "Cree",
4481
"ru": "Кри (Канадский язык)",
4482
"xloc": [
4477
- "default.handlebars->23->753"
4483
+ "default.handlebars->25->756"
4484
]
4485
},
4486
{
@@ -4486,7 +4492,7 @@
4492
"pt": "Croata",
4493
"ru": "Хорватский",
4494
"xloc": [
4489
- "default.handlebars->23->754"
4495
+ "default.handlebars->25->757"
4496
]
4497
},
4498
{
@@ -4522,7 +4528,7 @@
4528
"pt": "CTRL",
4529
"ru": "Ctrl",
4530
"xloc": [
4525
- "default.handlebars->23->46"
4531
+ "default.handlebars->25->46"
4532
]
4533
},
4534
{
@@ -4560,7 +4566,7 @@
4566
"pt": "Versão Atual",
4567
"ru": "Текущшая версия",
4568
"xloc": [
4563
- "default.handlebars->23->110"
4569
+ "default.handlebars->25->110"
4570
]
4571
},
4572
{
@@ -4587,7 +4593,7 @@
4593
"pt": "Tcheco",
4594
"ru": "Чешский",
4595
"xloc": [
4590
- "default.handlebars->23->755"
4596
+ "default.handlebars->25->758"
4597
]
4598
},
4599
{
@@ -4599,7 +4605,7 @@
4605
"pt": "Sufixo DNS",
4606
"ru": "DNS суффикс",
4607
"xloc": [
4602
- "default.handlebars->23->96"
4608
+ "default.handlebars->25->96"
4609
]
4610
},
4611
{
@@ -4611,7 +4617,7 @@
4617
"pt": "Dinamarquês",
4618
"ru": "Датский",
4619
"xloc": [
4614
- "default.handlebars->23->756"
4620
+ "default.handlebars->25->759"
4621
]
4622
},
4623
{
@@ -4623,7 +4629,7 @@
4629
"pt": "DataChannel",
4630
"ru": "DataChannel",
4631
"xloc": [
4626
- "default.handlebars->23->595"
4632
+ "default.handlebars->25->598"
4633
]
4634
},
4635
{
@@ -4635,7 +4641,7 @@
4641
"pt": "Datas e Horário",
4642
"ru": "Даты & Время",
4643
"xloc": [
4638
- "default.handlebars->23->912"
4644
+ "default.handlebars->25->915"
4645
]
4646
},
4647
{
@@ -4647,7 +4653,7 @@
4653
"pt": "Dia",
4654
"ru": "День",
4655
"xloc": [
4650
- "default.handlebars->23->534"
4656
+ "default.handlebars->25->537"
4657
]
4658
},
4659
{
@@ -4659,7 +4665,7 @@
4665
"pt": "Desativar o modo de controle do cliente (CCM)",
4666
"ru": "Деактивировать режим управления клиентом (CCM)",
4667
"xloc": [
4662
- "default.handlebars->23->1032"
4668
+ "default.handlebars->25->1035"
4669
]
4670
},
4671
{
@@ -4672,7 +4678,7 @@
4678
"ru": "Глубокий сон",
4679
"xloc": [
4680
"default-mobile.handlebars->9->110",
4675
- "default.handlebars->23->356"
4681
+ "default.handlebars->25->356"
4682
]
4683
},
4684
{
@@ -4688,8 +4694,8 @@
4694
"default-mobile.handlebars->9->81",
4695
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
4696
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
4691
- "default.handlebars->23->1168",
4692
- "default.handlebars->23->647",
4697
+ "default.handlebars->25->1171",
4698
+ "default.handlebars->25->650",
4699
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
4700
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
4701
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -4707,7 +4713,7 @@
4713
"ru": "Удалить Пользователя",
4714
"xloc": [
4715
"default-mobile.handlebars->9->43",
4710
- "default.handlebars->23->929"
4716
+ "default.handlebars->25->932"
4717
]
4718
},
4719
{
@@ -4720,7 +4726,7 @@
4726
"ru": "Удалить Устройство",
4727
"xloc": [
4728
"default-mobile.handlebars->9->199",
4723
- "default.handlebars->23->493"
4729
+ "default.handlebars->25->496"
4730
]
4731
},
4732
{
@@ -4734,8 +4740,8 @@
4740
"xloc": [
4741
"default-mobile.handlebars->9->285",
4742
"default-mobile.handlebars->9->288",
4737
- "default.handlebars->23->1025",
4738
- "default.handlebars->23->1055"
4743
+ "default.handlebars->25->1028",
4744
+ "default.handlebars->25->1058"
4745
]
4746
},
4747
{
@@ -4748,7 +4754,7 @@
4754
"ru": "Удалить Узел",
4755
"xloc": [
4756
"default-mobile.handlebars->9->218",
4751
- "default.handlebars->23->560"
4757
+ "default.handlebars->25->563"
4758
]
4759
},
4760
{
@@ -4760,7 +4766,7 @@
4766
"pt": "Excluir nós",
4767
"ru": "Удалить Узлы",
4768
"xloc": [
4763
- "default.handlebars->23->397"
4769
+ "default.handlebars->25->397"
4770
]
4771
},
4772
{
@@ -4769,7 +4775,7 @@
4775
"en": "Delete User",
4776
"nl": "Verwijder gebruiker",
4777
"xloc": [
4772
- "default.handlebars->23->1342"
4778
+ "default.handlebars->25->1345"
4779
]
4780
},
4781
{
@@ -4778,8 +4784,8 @@
4784
"en": "Delete User Group",
4785
"nl": "Verwijder de gebruikersgroep",
4786
"xloc": [
4781
- "default.handlebars->23->1292",
4782
- "default.handlebars->23->1300"
4787
+ "default.handlebars->25->1295",
4788
+ "default.handlebars->25->1303"
4789
]
4790
},
4791
{
@@ -4791,7 +4797,7 @@
4797
"pt": "Excluir usuário {0}",
4798
"ru": "Удалить Пользователя {0}",
4799
"xloc": [
4794
- "default.handlebars->23->1356"
4800
+ "default.handlebars->25->1359"
4801
]
4802
},
4803
{
@@ -4816,7 +4822,7 @@
4822
"pt": "Excluir Dispositivos",
4823
"ru": "Удалить устройства",
4824
"xloc": [
4819
- "default.handlebars->23->392"
4825
+ "default.handlebars->25->392"
4826
]
4827
},
4828
{
@@ -4830,8 +4836,8 @@
4836
"xloc": [
4837
"default-mobile.handlebars->9->251",
4838
"default-mobile.handlebars->9->83",
4833
- "default.handlebars->23->1170",
4834
- "default.handlebars->23->649"
4839
+ "default.handlebars->25->1173",
4840
+ "default.handlebars->25->652"
4841
]
4842
},
4843
{
@@ -4840,7 +4846,7 @@
4846
"en": "Delete user group {0}?",
4847
"nl": "Verwijder gebruikersgroep {0}?",
4848
"xloc": [
4843
- "default.handlebars->23->1298"
4849
+ "default.handlebars->25->1301"
4850
]
4851
},
4852
{
@@ -4854,8 +4860,8 @@
4860
"xloc": [
4861
"default-mobile.handlebars->9->250",
4862
"default-mobile.handlebars->9->82",
4857
- "default.handlebars->23->1169",
4858
- "default.handlebars->23->648"
4863
+ "default.handlebars->25->1172",
4864
+ "default.handlebars->25->651"
4865
]
4866
},
4867
{
@@ -4930,17 +4936,17 @@
4936
"default-mobile.handlebars->9->277",
4937
"default-mobile.handlebars->9->290",
4938
"default-mobile.handlebars->9->60",
4933
- "default.handlebars->23->1057",
4934
- "default.handlebars->23->1266",
4935
- "default.handlebars->23->1271",
4936
- "default.handlebars->23->1273",
4937
- "default.handlebars->23->1296",
4938
- "default.handlebars->23->440",
4939
- "default.handlebars->23->441",
4940
- "default.handlebars->23->591",
4941
- "default.handlebars->23->949",
4942
- "default.handlebars->23->95",
4943
- "default.handlebars->23->973",
4939
+ "default.handlebars->25->1060",
4940
+ "default.handlebars->25->1269",
4941
+ "default.handlebars->25->1274",
4942
+ "default.handlebars->25->1276",
4943
+ "default.handlebars->25->1299",
4944
+ "default.handlebars->25->443",
4945
+ "default.handlebars->25->444",
4946
+ "default.handlebars->25->594",
4947
+ "default.handlebars->25->95",
4948
+ "default.handlebars->25->952",
4949
+ "default.handlebars->25->976",
4950
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
4951
]
4952
},
@@ -4962,8 +4968,8 @@
4968
"pt": "Área de Trabalho",
4969
"ru": "Рабочий стол",
4970
"xloc": [
4965
- "default.handlebars->23->1059",
4966
- "default.handlebars->23->409",
4971
+ "default.handlebars->25->1062",
4972
+ "default.handlebars->25->412",
4973
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
4974
"default.handlebars->contextMenu->cxdesktop"
4975
]
@@ -4989,7 +4995,7 @@
4995
"pt": "Notificação na área de trabalho",
4996
"ru": "Уведомление на рабочем столе",
4997
"xloc": [
4992
- "default.handlebars->23->983"
4998
+ "default.handlebars->25->986"
4999
]
5000
},
5001
{
@@ -5001,7 +5007,7 @@
5007
"pt": "Prompt da área de trabalho",
5008
"ru": "Запрос рабочего стола",
5009
"xloc": [
5004
- "default.handlebars->23->982"
5010
+ "default.handlebars->25->985"
5011
]
5012
},
5013
{
@@ -5013,7 +5019,7 @@
5019
"pt": "Prompt da área de trabalho + barra de ferramentas",
5020
"ru": "Запрос рабочего стола + панель инструментов",
5021
"xloc": [
5016
- "default.handlebars->23->980"
5022
+ "default.handlebars->25->983"
5023
]
5024
},
5025
{
@@ -5025,7 +5031,7 @@
5031
"pt": "Barra de ferramentas da área de trabalho",
5032
"ru": "Панель инструментов рабочего стола",
5033
"xloc": [
5028
- "default.handlebars->23->981"
5034
+ "default.handlebars->25->984"
5035
]
5036
},
5037
{
@@ -5087,7 +5093,7 @@
5093
"ru": "Действие устройства",
5094
"xloc": [
5095
"default-mobile.handlebars->9->211",
5090
- "default.handlebars->23->533"
5096
+ "default.handlebars->25->536"
5097
]
5098
},
5099
{
@@ -5096,11 +5102,11 @@
5102
"en": "Device Group",
5103
"nl": "Apparaat Groep",
5104
"xloc": [
5099
- "default.handlebars->23->1076",
5100
- "default.handlebars->23->1078",
5101
- "default.handlebars->23->1290",
5102
- "default.handlebars->23->1364",
5103
- "default.handlebars->23->1370"
5105
+ "default.handlebars->25->1079",
5106
+ "default.handlebars->25->1081",
5107
+ "default.handlebars->25->1293",
5108
+ "default.handlebars->25->1367",
5109
+ "default.handlebars->25->1373"
5110
]
5111
},
5112
{
@@ -5113,7 +5119,7 @@
5119
"ru": "Пользователь группы устройств",
5120
"xloc": [
5121
"default-mobile.handlebars->9->331",
5116
- "default.handlebars->23->1126"
5122
+ "default.handlebars->25->1129"
5123
]
5124
},
5125
{
@@ -5126,10 +5132,10 @@
5132
"ru": "Группы устройств",
5133
"xloc": [
5134
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
5129
- "default.handlebars->23->1262",
5130
- "default.handlebars->23->1275",
5131
- "default.handlebars->23->1330",
5132
- "default.handlebars->23->1403",
5135
+ "default.handlebars->25->1265",
5136
+ "default.handlebars->25->1278",
5137
+ "default.handlebars->25->1333",
5138
+ "default.handlebars->25->1406",
5139
"default.handlebars->container->column_l->p2->9"
5140
]
5141
},
@@ -5142,7 +5148,7 @@
5148
"pt": "Localização do dispositivo",
5149
"ru": "Местонахождение устройства",
5150
"xloc": [
5145
- "default.handlebars->23->561"
5151
+ "default.handlebars->25->564"
5152
]
5153
},
5154
{
@@ -5155,8 +5161,8 @@
5161
"ru": "Имя устройства",
5162
"xloc": [
5163
"default-mobile.handlebars->9->222",
5158
- "default.handlebars->23->238",
5159
- "default.handlebars->23->589",
5164
+ "default.handlebars->25->238",
5165
+ "default.handlebars->25->592",
5166
"player.htm->3->9"
5167
]
5168
},
@@ -5169,7 +5175,7 @@
5175
"pt": "Notificação de dispositivo",
5176
"ru": "Уведомление устройства",
5177
"xloc": [
5172
- "default.handlebars->23->524"
5178
+ "default.handlebars->25->527"
5179
]
5180
},
5181
{
@@ -5193,8 +5199,8 @@
5199
"pt": "Conexões de dispositivos.",
5200
"ru": "Подключения устройства",
5201
"xloc": [
5196
- "default.handlebars->23->1130",
5197
- "default.handlebars->23->917"
5202
+ "default.handlebars->25->1133",
5203
+ "default.handlebars->25->920"
5204
]
5205
},
5206
{
@@ -5206,8 +5212,8 @@
5212
"pt": "Desconexões de dispositivos.",
5213
"ru": "Отключения устройства",
5214
"xloc": [
5209
- "default.handlebars->23->1131",
5210
- "default.handlebars->23->918"
5215
+ "default.handlebars->25->1134",
5216
+ "default.handlebars->25->921"
5217
]
5218
},
5219
{
@@ -5219,7 +5225,7 @@
5225
"pt": "As notas do grupo de dispositivos podem ser visualizadas e alteradas por outros administradores do grupo de dispositivos.",
5226
"ru": "Примечания группы устройств могут быть просмотрены и изменены другими администраторами группы устройств.",
5227
"xloc": [
5222
- "default.handlebars->23->522"
5228
+ "default.handlebars->25->525"
5229
]
5230
},
5231
{
@@ -5231,7 +5237,7 @@
5237
"pt": "O dispositivo foi detectado, mas não foi possível obter o estado de energia.",
5238
"ru": "Устройство обнаружено, но режим питания не может быть установлен.",
5239
"xloc": [
5234
- "default.handlebars->23->361"
5240
+ "default.handlebars->25->361"
5241
]
5242
},
5243
{
@@ -5244,7 +5250,7 @@
5250
"ru": "Устройство находится в спящем режиме (S4)",
5251
"xloc": [
5252
"default-mobile.handlebars->9->118",
5247
- "default.handlebars->23->367"
5253
+ "default.handlebars->25->367"
5254
]
5255
},
5256
{
@@ -5257,7 +5263,7 @@
5263
"ru": "Устройство находится в состоянии глубокого сна (S3)",
5264
"xloc": [
5265
"default-mobile.handlebars->9->117",
5260
- "default.handlebars->23->366"
5266
+ "default.handlebars->25->366"
5267
]
5268
},
5269
{
@@ -5269,7 +5275,7 @@
5275
"pt": "O dispositivo está no estado de suspensão profunda (S3).",
5276
"ru": "Устройство находится в состоянии глубокого сна (S3).",
5277
"xloc": [
5272
- "default.handlebars->23->355"
5278
+ "default.handlebars->25->355"
5279
]
5280
},
5281
{
@@ -5281,7 +5287,7 @@
5287
"pt": "O dispositivo está no estado de hibernação (S4).",
5288
"ru": "Устройство находится в режиме гибернации (S4).",
5289
"xloc": [
5284
- "default.handlebars->23->357"
5290
+ "default.handlebars->25->357"
5291
]
5292
},
5293
{
@@ -5293,7 +5299,7 @@
5299
"pt": "O dispositivo está no estado desligado (S5).",
5300
"ru": "Устройство находится в выключенном состоянии (S5).",
5301
"xloc": [
5296
- "default.handlebars->23->359"
5302
+ "default.handlebars->25->359"
5303
]
5304
},
5305
{
@@ -5306,7 +5312,7 @@
5312
"ru": "Устройство находится в спящем режиме (S1)",
5313
"xloc": [
5314
"default-mobile.handlebars->9->115",
5309
- "default.handlebars->23->364"
5315
+ "default.handlebars->25->364"
5316
]
5317
},
5318
{
@@ -5318,7 +5324,7 @@
5324
"pt": "O dispositivo está no estado de suspensão (S1).",
5325
"ru": "Устройство находится в спящем режиме (S1).",
5326
"xloc": [
5321
- "default.handlebars->23->351"
5327
+ "default.handlebars->25->351"
5328
]
5329
},
5330
{
@@ -5331,7 +5337,7 @@
5337
"ru": "Устройство находится в спящем режиме (S2)",
5338
"xloc": [
5339
"default-mobile.handlebars->9->116",
5334
- "default.handlebars->23->365"
5340
+ "default.handlebars->25->365"
5341
]
5342
},
5343
{
@@ -5343,7 +5349,7 @@
5349
"pt": "O dispositivo está no estado de suspensão (S2).",
5350
"ru": "Устройство находится в спящем режиме (S2).",
5351
"xloc": [
5346
- "default.handlebars->23->353"
5352
+ "default.handlebars->25->353"
5353
]
5354
},
5355
{
@@ -5356,7 +5362,7 @@
5362
"ru": "Устройство находится в выключенном состоянии (S5)",
5363
"xloc": [
5364
"default-mobile.handlebars->9->119",
5359
- "default.handlebars->23->368"
5365
+ "default.handlebars->25->368"
5366
]
5367
},
5368
{
@@ -5369,7 +5375,7 @@
5375
"ru": "Устройство работает",
5376
"xloc": [
5377
"default-mobile.handlebars->9->114",
5372
- "default.handlebars->23->363"
5378
+ "default.handlebars->25->363"
5379
]
5380
},
5381
{
@@ -5381,7 +5387,7 @@
5387
"pt": "O dispositivo está ligado.",
5388
"ru": "Устройство включено.",
5389
"xloc": [
5384
- "default.handlebars->23->349"
5390
+ "default.handlebars->25->349"
5391
]
5392
},
5393
{
@@ -5394,7 +5400,7 @@
5400
"ru": "Устройство присутствует, но состояние питания не может быть установлено",
5401
"xloc": [
5402
"default-mobile.handlebars->9->120",
5397
- "default.handlebars->23->369"
5403
+ "default.handlebars->25->369"
5404
]
5405
},
5406
{
@@ -5406,7 +5412,7 @@
5412
"pt": "Nome do dispositivo",
5413
"ru": "Имя устройства",
5414
"xloc": [
5409
- "default.handlebars->23->421"
5415
+ "default.handlebars->25->424"
5416
]
5417
},
5418
{
@@ -5418,7 +5424,7 @@
5424
"pt": "DeviceCheckbox",
5425
"ru": "DeviceCheckbox",
5426
"xloc": [
5421
- "default.handlebars->23->394"
5427
+ "default.handlebars->25->394"
5428
]
5429
},
5430
{
@@ -5430,7 +5436,7 @@
5436
"pt": "Desativado",
5437
"ru": "Отключено",
5438
"xloc": [
5433
- "default.handlebars->23->467"
5439
+ "default.handlebars->25->470"
5440
]
5441
},
5442
{
@@ -5444,8 +5450,8 @@
5450
"xloc": [
5451
"default-mobile.handlebars->9->237",
5452
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
5447
- "default.handlebars->23->638",
5448
- "default.handlebars->23->993",
5453
+ "default.handlebars->25->641",
5454
+ "default.handlebars->25->996",
5455
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
5456
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
5457
"xterm.handlebars->p11->deskarea0->deskarea1->3"
@@ -5476,11 +5482,11 @@
5482
"default-mobile.handlebars->9->1",
5483
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus",
5484
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status",
5479
- "default.handlebars->23->193",
5480
- "default.handlebars->23->210",
5481
- "default.handlebars->23->213",
5482
- "default.handlebars->23->219",
5483
- "default.handlebars->23->8",
5485
+ "default.handlebars->25->193",
5486
+ "default.handlebars->25->210",
5487
+ "default.handlebars->25->213",
5488
+ "default.handlebars->25->219",
5489
+ "default.handlebars->25->8",
5490
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus",
5491
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus",
5492
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3->p13Status",
@@ -5505,7 +5511,7 @@
5511
"en": "Display device group name",
5512
"nl": "Toon apparaatgroepsnaam",
5513
"xloc": [
5508
- "default.handlebars->23->916"
5514
+ "default.handlebars->25->919"
5515
]
5516
},
5517
{
@@ -5517,7 +5523,7 @@
5523
"pt": "Mostrar nome",
5524
"ru": "Показать имя",
5525
"xloc": [
5520
- "default.handlebars->23->609"
5526
+ "default.handlebars->25->612"
5527
]
5528
},
5529
{
@@ -5529,7 +5535,7 @@
5535
"pt": "Fazer nada",
5536
"ru": "Ничего не делать",
5537
"xloc": [
5532
- "default.handlebars->23->1038"
5538
+ "default.handlebars->25->1041"
5539
]
5540
},
5541
{
@@ -5554,8 +5560,8 @@
5560
"pt": "Não configure",
5561
"ru": "Не настраивать",
5562
"xloc": [
5557
- "default.handlebars->23->1042",
5558
- "default.handlebars->23->1047"
5563
+ "default.handlebars->25->1045",
5564
+ "default.handlebars->25->1050"
5565
]
5566
},
5567
{
@@ -5567,7 +5573,7 @@
5573
"pt": "Não conecte ao servidor",
5574
"ru": "Не подключаться к серверу",
5575
"xloc": [
5570
- "default.handlebars->23->1043"
5576
+ "default.handlebars->25->1046"
5577
]
5578
},
5579
{
@@ -5607,7 +5613,7 @@
5613
"ru": "Скачать файл",
5614
"xloc": [
5615
"default-mobile.handlebars->9->270",
5610
- "default.handlebars->23->667"
5616
+ "default.handlebars->25->670"
5617
]
5618
},
5619
{
@@ -5619,7 +5625,7 @@
5625
"pt": "Faça o download do MeshCentral Router, uma ferramenta de mapeamento de portas TCP.",
5626
"ru": "Скачать MeshCentral Router, инструмент сопоставления TCP портов.",
5627
"xloc": [
5622
- "default.handlebars->23->208"
5628
+ "default.handlebars->25->208"
5629
]
5630
},
5631
{
@@ -5631,7 +5637,7 @@
5637
"pt": "Baixar MeshCmd",
5638
"ru": "Скачать MeshCmd",
5639
"xloc": [
5634
- "default.handlebars->23->580"
5640
+ "default.handlebars->25->583"
5641
]
5642
},
5643
{
@@ -5643,7 +5649,7 @@
5649
"pt": "Faça o download do MeshCmd, uma ferramenta de linha de comando que executa muitas funções.",
5650
"ru": "Скачать MeshCmd, инструмент командной строки, выполняющий множество функций.",
5651
"xloc": [
5646
- "default.handlebars->23->206"
5652
+ "default.handlebars->25->206"
5653
]
5654
},
5655
{
@@ -5661,7 +5667,7 @@
5667
"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.",
5668
"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.",
5669
"xloc": [
5664
- "default.handlebars->23->573"
5670
+ "default.handlebars->25->576"
5671
]
5672
},
5673
{
@@ -5697,7 +5703,7 @@
5703
"pt": "Baixar log de erro",
5704
"ru": "Скачать журнал ошибок",
5705
"xloc": [
5700
- "default.handlebars->23->118"
5706
+ "default.handlebars->25->118"
5707
]
5708
},
5709
{
@@ -5709,7 +5715,7 @@
5715
"pt": "Download de eventos de energia",
5716
"ru": "Скачать события состояния питания",
5717
"xloc": [
5712
- "default.handlebars->23->535"
5718
+ "default.handlebars->25->538"
5719
]
5720
},
5721
{
@@ -5745,7 +5751,7 @@
5751
"pt": "Faça o download da lista de eventos com um dos formatos de arquivo abaixo.",
5752
"ru": "Скачать список событий с одним из форматов файлов ниже.",
5753
"xloc": [
5748
- "default.handlebars->23->1184"
5754
+ "default.handlebars->25->1187"
5755
]
5756
},
5757
{
@@ -5757,7 +5763,7 @@
5763
"pt": "Baixe a lista de usuários com um dos formatos de arquivo abaixo.",
5764
"ru": "Скачать список пользователей с одним из форматов файлов ниже.",
5765
"xloc": [
5760
- "default.handlebars->23->1223"
5766
+ "default.handlebars->25->1226"
5767
]
5768
},
5769
{
@@ -5815,7 +5821,7 @@
5821
"en": "Duplicate Agent",
5822
"nl": "Duplicaat Agent",
5823
"xloc": [
5818
- "default.handlebars->23->1399"
5824
+ "default.handlebars->25->1402"
5825
]
5826
},
5827
{
@@ -5833,7 +5839,7 @@
5839
"en": "Duplicate User Group",
5840
"nl": "Dupliceer Gebruikers Groep",
5841
"xloc": [
5836
- "default.handlebars->23->1268"
5842
+ "default.handlebars->25->1271"
5843
]
5844
},
5845
{
@@ -5857,7 +5863,7 @@
5863
"pt": "Durante a ativação, o agente terá acesso às informações da senha do administrador.",
5864
"ru": "Во время активации агент будет иметь доступ к информации пароля администратора.",
5865
"xloc": [
5860
- "default.handlebars->23->1052"
5866
+ "default.handlebars->25->1055"
5867
]
5868
},
5869
{
@@ -5869,7 +5875,7 @@
5875
"pt": "Holandês (belga)",
5876
"ru": "Голландский (Бельгийский)",
5877
"xloc": [
5872
- "default.handlebars->23->758"
5878
+ "default.handlebars->25->761"
5879
]
5880
},
5881
{
@@ -5881,7 +5887,7 @@
5887
"pt": "Holandês (padrão)",
5888
"ru": "Голландский (Стандартный)",
5889
"xloc": [
5884
- "default.handlebars->23->757"
5890
+ "default.handlebars->25->760"
5891
]
5892
},
5893
{
@@ -5894,7 +5900,7 @@
5900
"pt": "ERRO:",
5901
"ru": "ОШИБКА:",
5902
"xloc": [
5897
- "default.handlebars->23->153"
5903
+ "default.handlebars->25->153"
5904
]
5905
},
5906
{
@@ -5907,7 +5913,7 @@
5913
"pt": "ERRO: Não foi possível adicionar a chave.",
5914
"ru": "ОШИБКА: Невозможно добавить ключ.",
5915
"xloc": [
5910
- "default.handlebars->23->149"
5916
+ "default.handlebars->25->149"
5917
]
5918
},
5919
{
@@ -5944,7 +5950,7 @@
5950
"ru": "Редактировать устройство",
5951
"xloc": [
5952
"default-mobile.handlebars->9->227",
5947
- "default.handlebars->23->594"
5953
+ "default.handlebars->25->597"
5954
]
5955
},
5956
{
@@ -5959,9 +5965,9 @@
5965
"default-mobile.handlebars->9->291",
5966
"default-mobile.handlebars->9->293",
5967
"default-mobile.handlebars->9->311",
5962
- "default.handlebars->23->1058",
5963
- "default.handlebars->23->1082",
5964
- "default.handlebars->23->1105"
5968
+ "default.handlebars->25->1061",
5969
+ "default.handlebars->25->1085",
5970
+ "default.handlebars->25->1108"
5971
]
5972
},
5973
{
@@ -5973,7 +5979,7 @@
5979
"pt": "Editar recursos do grupo de dispositivos",
5980
"ru": "Редактировать функции группы устройств",
5981
"xloc": [
5976
- "default.handlebars->23->1072"
5982
+ "default.handlebars->25->1075"
5983
]
5984
},
5985
{
@@ -5982,7 +5988,7 @@
5988
"en": "Edit Device Group Permissions",
5989
"nl": "Bewerk apparaatgroep rechten",
5990
"xloc": [
5985
- "default.handlebars->23->1102"
5991
+ "default.handlebars->25->1105"
5992
]
5993
},
5994
{
@@ -5994,7 +6000,7 @@
6000
"pt": "Editar consentimento do usuário do grupo de dispositivos",
6001
"ru": "Редактировать согласие пользователя группы устройств",
6002
"xloc": [
5997
- "default.handlebars->23->1069"
6003
+ "default.handlebars->25->1072"
6004
]
6005
},
6006
{
@@ -6007,7 +6013,7 @@
6013
"ru": "Редактировать примечания устройства",
6014
"xloc": [
6015
"default-mobile.handlebars->9->305",
6010
- "default.handlebars->23->1094"
6016
+ "default.handlebars->25->1097"
6017
]
6018
},
6019
{
@@ -6020,9 +6026,9 @@
6026
"ru": "Редактировать учетные данные Intel® AMT",
6027
"xloc": [
6028
"default-mobile.handlebars->9->217",
6023
- "default.handlebars->23->455",
6024
- "default.handlebars->23->458",
6025
- "default.handlebars->23->542"
6029
+ "default.handlebars->25->458",
6030
+ "default.handlebars->25->461",
6031
+ "default.handlebars->25->545"
6032
]
6033
},
6034
{
@@ -6036,7 +6042,7 @@
6042
"ru": "Редактировать примечания",
6043
"xloc": [
6044
"default-mobile.handlebars->9->318",
6039
- "default.handlebars->23->1112"
6045
+ "default.handlebars->25->1115"
6046
]
6047
},
6048
{
@@ -6048,7 +6054,7 @@
6054
"pt": "Editar permissões do grupo de dispositivos do usuário",
6055
"ru": "Редактировать права потребителя группы устройств",
6056
"xloc": [
6051
- "default.handlebars->23->1103"
6057
+ "default.handlebars->25->1106"
6058
]
6059
},
6060
{
@@ -6057,7 +6063,7 @@
6063
"en": "Edit User Group",
6064
"nl": "Bewerk de gebruikersgroep",
6065
"xloc": [
6060
- "default.handlebars->23->1297"
6066
+ "default.handlebars->25->1300"
6067
]
6068
},
6069
{
@@ -6082,11 +6088,11 @@
6088
"ru": "Эл. почта",
6089
"xloc": [
6090
"default-mobile.handlebars->9->37",
6085
- "default.handlebars->23->1235",
6086
- "default.handlebars->23->1317",
6087
- "default.handlebars->23->1318",
6088
- "default.handlebars->23->1346",
6089
- "default.handlebars->23->283"
6091
+ "default.handlebars->25->1238",
6092
+ "default.handlebars->25->1320",
6093
+ "default.handlebars->25->1321",
6094
+ "default.handlebars->25->1349",
6095
+ "default.handlebars->25->283"
6096
]
6097
},
6098
{
@@ -6099,7 +6105,7 @@
6105
"ru": "Изменение адреса эл. почты",
6106
"xloc": [
6107
"default-mobile.handlebars->9->38",
6102
- "default.handlebars->23->925"
6108
+ "default.handlebars->25->928"
6109
]
6110
},
6111
{
@@ -6112,7 +6118,7 @@
6118
"ru": "Подтверждение эл. почты",
6119
"xloc": [
6120
"default-mobile.handlebars->9->36",
6115
- "default.handlebars->23->923"
6121
+ "default.handlebars->25->926"
6122
]
6123
},
6124
{
@@ -6124,7 +6130,7 @@
6130
"pt": "O email foi verificado",
6131
"ru": "Ел. почта подтверждена",
6132
"xloc": [
6127
- "default.handlebars->23->1314"
6133
+ "default.handlebars->25->1317"
6134
]
6135
},
6136
{
@@ -6136,7 +6142,7 @@
6142
"pt": "O email foi verificado.",
6143
"ru": "Ел. почта подтверждена.",
6144
"xloc": [
6139
- "default.handlebars->23->1241"
6145
+ "default.handlebars->25->1244"
6146
]
6147
},
6148
{
@@ -6148,7 +6154,7 @@
6154
"pt": "Email não verificado",
6155
"ru": "Ел. почта не подтверждена",
6156
"xloc": [
6151
- "default.handlebars->23->1315"
6157
+ "default.handlebars->25->1318"
6158
]
6159
},
6160
{
@@ -6213,7 +6219,7 @@
6219
"pt": "Inglês",
6220
"ru": "Английский",
6221
"xloc": [
6216
- "default.handlebars->23->759"
6222
+ "default.handlebars->25->762"
6223
]
6224
},
6225
{
@@ -6225,7 +6231,7 @@
6231
"pt": "Inglês (Austrália)",
6232
"ru": "Английский (Австралия)",
6233
"xloc": [
6228
- "default.handlebars->23->760"
6234
+ "default.handlebars->25->763"
6235
]
6236
},
6237
{
@@ -6237,7 +6243,7 @@
6243
"pt": "Inglês (Belize)",
6244
"ru": "Английский (Белиз)",
6245
"xloc": [
6240
- "default.handlebars->23->761"
6246
+ "default.handlebars->25->764"
6247
]
6248
},
6249
{
@@ -6249,7 +6255,7 @@
6255
"pt": "Inglês (Canadá)",
6256
"ru": "Английский (Канада)",
6257
"xloc": [
6252
- "default.handlebars->23->762"
6258
+ "default.handlebars->25->765"
6259
]
6260
},
6261
{
@@ -6261,7 +6267,7 @@
6267
"pt": "Inglês (Irlanda)",
6268
"ru": "Английский (Ирландия)",
6269
"xloc": [
6264
- "default.handlebars->23->763"
6270
+ "default.handlebars->25->766"
6271
]
6272
},
6273
{
@@ -6273,7 +6279,7 @@
6279
"pt": "Inglês (Jamaica)",
6280
"ru": "Английский (Ямайка)",
6281
"xloc": [
6276
- "default.handlebars->23->764"
6282
+ "default.handlebars->25->767"
6283
]
6284
},
6285
{
@@ -6285,7 +6291,7 @@
6291
"pt": "Inglês (Nova Zelândia)",
6292
"ru": "Английский (Новая Зеландия)",
6293
"xloc": [
6288
- "default.handlebars->23->765"
6294
+ "default.handlebars->25->768"
6295
]
6296
},
6297
{
@@ -6297,7 +6303,7 @@
6303
"pt": "Inglês (Filipinas)",
6304
"ru": "Английский (Филиппины)",
6305
"xloc": [
6300
- "default.handlebars->23->766"
6306
+ "default.handlebars->25->769"
6307
]
6308
},
6309
{
@@ -6309,7 +6315,7 @@
6315
"pt": "Inglês (África do Sul)",
6316
"ru": "Английский (Южная Африка)",
6317
"xloc": [
6312
- "default.handlebars->23->767"
6318
+ "default.handlebars->25->770"
6319
]
6320
},
6321
{
@@ -6321,7 +6327,7 @@
6327
"pt": "Inglês (Trinidad Tobago)",
6328
"ru": "Английский (Тринидад и Тобаго)",
6329
"xloc": [
6324
- "default.handlebars->23->768"
6330
+ "default.handlebars->25->771"
6331
]
6332
},
6333
{
@@ -6334,7 +6340,7 @@
6340
"pt": "Inglês (Reino Unido)",
6341
"ru": "Английский (Великобритания)",
6342
"xloc": [
6337
- "default.handlebars->23->769"
6343
+ "default.handlebars->25->772"
6344
]
6345
},
6346
{
@@ -6347,7 +6353,7 @@
6353
"pt": "Inglês (Estados Unidos)",
6354
"ru": "Английский (Соединенные Штаты)",
6355
"xloc": [
6350
- "default.handlebars->23->770"
6356
+ "default.handlebars->25->773"
6357
]
6358
},
6359
{
@@ -6360,7 +6366,7 @@
6366
"pt": "Inglês (Zimbábue)",
6367
"ru": "Английский (Зимбабве)",
6368
"xloc": [
6363
- "default.handlebars->23->771"
6369
+ "default.handlebars->25->774"
6370
]
6371
},
6372
{
@@ -6372,8 +6378,8 @@
6378
"pt": "Entrar",
6379
"ru": "Ввод",
6380
"xloc": [
6375
- "default.handlebars->23->951",
6376
- "default.handlebars->23->952"
6381
+ "default.handlebars->25->954",
6382
+ "default.handlebars->25->955"
6383
]
6384
},
6385
{
@@ -6385,7 +6391,7 @@
6391
"pt": "Insira uma lista separada por vírgulas de nomes de regiões administrativas.",
6392
"ru": "Введите разделенный запятыми список имен административных областей.",
6393
"xloc": [
6388
- "default.handlebars->23->1245"
6394
+ "default.handlebars->25->1248"
6395
]
6396
},
6397
{
@@ -6397,7 +6403,7 @@
6403
"pt": "Digite um intervalo de endereços IP para procurar dispositivos Intel AMT.",
6404
"ru": "Введите диапазон IP-адресов для сканирования Intel AMT устройств.",
6405
"xloc": [
6400
- "default.handlebars->23->253"
6406
+ "default.handlebars->25->253"
6407
]
6408
},
6409
{
@@ -6409,7 +6415,7 @@
6415
"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.",
6416
"ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что дистанционный курсор установлен в правильное положение.",
6417
"xloc": [
6412
- "default.handlebars->23->604"
6418
+ "default.handlebars->25->607"
6419
]
6420
},
6421
{
@@ -6434,7 +6440,7 @@
6440
"pt": "Digite o token aqui para o login em duas etapas:",
6441
"ru": "Для двухэтапного входа в систему введите токен здесь:",
6442
"xloc": [
6437
- "default.handlebars->23->121"
6443
+ "default.handlebars->25->121"
6444
]
6445
},
6446
{
@@ -6446,7 +6452,7 @@
6452
"pt": "Erro, não foi possível adicionar a chave.",
6453
"ru": "Ошибка, Невозможно добавить код.",
6454
"xloc": [
6449
- "default.handlebars->23->147"
6455
+ "default.handlebars->25->147"
6456
]
6457
},
6458
{
@@ -6470,7 +6476,7 @@
6476
"pt": "Esperanto",
6477
"ru": "Эсперанто",
6478
"xloc": [
6473
- "default.handlebars->23->772"
6479
+ "default.handlebars->25->775"
6480
]
6481
},
6482
{
@@ -6482,7 +6488,7 @@
6488
"pt": "Estoniano",
6489
"ru": "Эстонский",
6490
"xloc": [
6485
- "default.handlebars->23->773"
6491
+ "default.handlebars->25->776"
6492
]
6493
},
6494
{
@@ -6494,7 +6500,7 @@
6500
"pt": "Detalhes do evento",
6501
"ru": "Детайли события",
6502
"xloc": [
6497
- "default.handlebars->23->680"
6503
+ "default.handlebars->25->683"
6504
]
6505
},
6506
{
@@ -6506,7 +6512,7 @@
6512
"pt": "Exportação da lista de eventos",
6513
"ru": "Экспорт списка событий",
6514
"xloc": [
6509
- "default.handlebars->23->1189"
6515
+ "default.handlebars->25->1192"
6516
]
6517
},
6518
{
@@ -6559,7 +6565,7 @@
6565
"pt": "ASCII estendido",
6566
"ru": "Расширенный ASCII",
6567
"xloc": [
6562
- "default.handlebars->23->629"
6568
+ "default.handlebars->25->632"
6569
]
6570
},
6571
{
@@ -6580,7 +6586,7 @@
6586
"en": "External",
6587
"nl": "Extern",
6588
"xloc": [
6583
- "default.handlebars->23->1423"
6589
+ "default.handlebars->25->1426"
6590
]
6591
},
6592
{
@@ -6593,7 +6599,7 @@
6599
"pt": "FYRO Macedonian",
6600
"ru": "Mакедонский (БЮР)",
6601
"xloc": [
6596
- "default.handlebars->23->823"
6602
+ "default.handlebars->25->826"
6603
]
6604
},
6605
{
@@ -6605,7 +6611,7 @@
6611
"pt": "O servidor remoto retornou um erro: (429) Too Many Requests.",
6612
"ru": "Фарерский",
6613
"xloc": [
6608
- "default.handlebars->23->774"
6614
+ "default.handlebars->25->777"
6615
]
6616
},
6617
{
@@ -6618,7 +6624,7 @@
6624
"pt": "Falhou",
6625
"ru": "Не удалось",
6626
"xloc": [
6621
- "default.handlebars->23->85"
6627
+ "default.handlebars->25->85"
6628
]
6629
},
6630
{
@@ -6631,7 +6637,7 @@
6637
"pt": "Persa (persa)",
6638
"ru": "Фарси (Персидский)",
6639
"xloc": [
6634
- "default.handlebars->23->775"
6640
+ "default.handlebars->25->778"
6641
]
6642
},
6643
{
@@ -6657,7 +6663,7 @@
6663
"pt": "Recursos",
6664
"ru": "Функции",
6665
"xloc": [
6660
- "default.handlebars->23->979"
6666
+ "default.handlebars->25->982"
6667
]
6668
},
6669
{
@@ -6669,7 +6675,7 @@
6675
"pt": "Fijiano",
6676
"ru": "Фиджи",
6677
"xloc": [
6672
- "default.handlebars->23->776"
6678
+ "default.handlebars->25->779"
6679
]
6680
},
6681
{
@@ -6683,7 +6689,7 @@
6689
"ru": "Редактор файлов",
6690
"xloc": [
6691
"default-mobile.handlebars->9->254",
6686
- "default.handlebars->23->652"
6692
+ "default.handlebars->25->655"
6693
]
6694
},
6695
{
@@ -6708,7 +6714,7 @@
6714
"pt": "Driver do sistema de arquivos",
6715
"ru": "Драйвер файловой системы",
6716
"xloc": [
6711
- "default.handlebars->23->612"
6717
+ "default.handlebars->25->615"
6718
]
6719
},
6720
{
@@ -6721,7 +6727,7 @@
6727
"pt": "Arquivos",
6728
"ru": "Файлы",
6729
"xloc": [
6724
- "default.handlebars->23->1066",
6730
+ "default.handlebars->25->1069",
6731
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
6732
"default.handlebars->contextMenu->cxfiles"
6733
]
@@ -6748,7 +6754,7 @@
6754
"pt": "Notificação arquivos",
6755
"ru": "Уведомление файлов",
6756
"xloc": [
6751
- "default.handlebars->23->987"
6757
+ "default.handlebars->25->990"
6758
]
6759
},
6760
{
@@ -6760,7 +6766,7 @@
6766
"pt": "Arquivos do prompt",
6767
"ru": "Запрос файлов",
6768
"xloc": [
6763
- "default.handlebars->23->986"
6769
+ "default.handlebars->25->989"
6770
]
6771
},
6772
{
@@ -6787,7 +6793,7 @@
6793
"pt": "Finlandês",
6794
"ru": "Финский",
6795
"xloc": [
6790
- "default.handlebars->23->777"
6796
+ "default.handlebars->25->780"
6797
]
6798
},
6799
{
@@ -6842,8 +6848,8 @@
6848
"pt": "Forçar redefinição de senha no próximo login.",
6849
"ru": "Принудительно сбросить пароль при следующем входе в систему.",
6850
"xloc": [
6845
- "default.handlebars->23->1239",
6846
- "default.handlebars->23->1353"
6851
+ "default.handlebars->25->1242",
6852
+ "default.handlebars->25->1356"
6853
]
6854
},
6855
{
@@ -6906,8 +6912,8 @@
6912
"pt": "Livre",
6913
"ru": "Свободно",
6914
"xloc": [
6909
- "default.handlebars->23->1384",
6910
- "default.handlebars->23->1386"
6915
+ "default.handlebars->25->1387",
6916
+ "default.handlebars->25->1389"
6917
]
6918
},
6919
{
@@ -6920,7 +6926,7 @@
6926
"ru": "FreeBSD x86-64",
6927
"xloc": [
6928
"default-mobile.handlebars->9->173",
6923
- "default.handlebars->23->43"
6929
+ "default.handlebars->25->43"
6930
]
6931
},
6932
{
@@ -6933,7 +6939,7 @@
6939
"pt": "Francês (Bélgica)",
6940
"ru": "Французский (Бельгия)",
6941
"xloc": [
6936
- "default.handlebars->23->779"
6942
+ "default.handlebars->25->782"
6943
]
6944
},
6945
{
@@ -6946,7 +6952,7 @@
6952
"pt": "Francês (Canadá)",
6953
"ru": "Французский (Канада)",
6954
"xloc": [
6949
- "default.handlebars->23->780"
6955
+ "default.handlebars->25->783"
6956
]
6957
},
6958
{
@@ -6959,7 +6965,7 @@
6965
"pt": "Francês (França)",
6966
"ru": "Французский (Франция)",
6967
"xloc": [
6962
- "default.handlebars->23->781"
6968
+ "default.handlebars->25->784"
6969
]
6970
},
6971
{
@@ -6972,7 +6978,7 @@
6978
"pt": "Francês (Luxemburgo)",
6979
"ru": "Французский (Люксембург)",
6980
"xloc": [
6975
- "default.handlebars->23->782"
6981
+ "default.handlebars->25->785"
6982
]
6983
},
6984
{
@@ -6985,7 +6991,7 @@
6991
"pt": "Francês (Mônaco)",
6992
"ru": "Французский (Монако)",
6993
"xloc": [
6988
- "default.handlebars->23->783"
6994
+ "default.handlebars->25->786"
6995
]
6996
},
6997
{
@@ -6998,7 +7004,7 @@
7004
"pt": "Francês (Padrão)",
7005
"ru": "Французский (Стандартный)",
7006
"xloc": [
7001
- "default.handlebars->23->778"
7007
+ "default.handlebars->25->781"
7008
]
7009
},
7010
{
@@ -7011,7 +7017,7 @@
7017
"pt": "Francês (Suíça)",
7018
"ru": "Французский (Швейцария)",
7019
"xloc": [
7014
- "default.handlebars->23->784"
7020
+ "default.handlebars->25->787"
7021
]
7022
},
7023
{
@@ -7024,7 +7030,7 @@
7030
"pt": "Frísio",
7031
"ru": "Фризский",
7032
"xloc": [
7027
- "default.handlebars->23->785"
7033
+ "default.handlebars->25->788"
7034
]
7035
},
7036
{
@@ -7037,7 +7043,7 @@
7043
"pt": "Friuliano",
7044
"ru": "Фриульский",
7045
"xloc": [
7040
- "default.handlebars->23->786"
7046
+ "default.handlebars->25->789"
7047
]
7048
},
7049
{
@@ -7054,9 +7060,9 @@
7060
"default-mobile.handlebars->9->292",
7061
"default-mobile.handlebars->9->310",
7062
"default-mobile.handlebars->9->64",
7057
- "default.handlebars->23->1081",
7058
- "default.handlebars->23->1250",
7059
- "default.handlebars->23->958"
7063
+ "default.handlebars->25->1084",
7064
+ "default.handlebars->25->1253",
7065
+ "default.handlebars->25->961"
7066
]
7067
},
7068
{
@@ -7069,7 +7075,7 @@
7075
"pt": "Administrador Pleno (todos os direitos)",
7076
"ru": "Администратор с полным доступом (все права)",
7077
"xloc": [
7072
- "default.handlebars->23->1104"
7078
+ "default.handlebars->25->1107"
7079
]
7080
},
7081
{
@@ -7078,9 +7084,9 @@
7084
"en": "Full Device Group Administrator",
7085
"nl": "Volledige apparaatgroep beheerder",
7086
"xloc": [
7081
- "default.handlebars->23->1021",
7082
- "default.handlebars->23->1287",
7083
- "default.handlebars->23->1361"
7087
+ "default.handlebars->25->1024",
7088
+ "default.handlebars->25->1290",
7089
+ "default.handlebars->25->1364"
7090
]
7091
},
7092
{
@@ -7107,7 +7113,7 @@
7113
"pt": "Administrador completo",
7114
"ru": "Администратор с полным доступом",
7115
"xloc": [
7110
- "default.handlebars->23->1310"
7116
+ "default.handlebars->25->1313"
7117
]
7118
},
7119
{
@@ -7120,7 +7126,7 @@
7126
"pt": "Gaélico (irlandês)",
7127
"ru": "Гэльский (Ирландский)",
7128
"xloc": [
7123
- "default.handlebars->23->788"
7129
+ "default.handlebars->25->791"
7130
]
7131
},
7132
{
@@ -7133,7 +7139,7 @@
7139
"pt": "Gaélico (escocês)",
7140
"ru": "Гэльский (Шотландия)",
7141
"xloc": [
7136
- "default.handlebars->23->787"
7142
+ "default.handlebars->25->790"
7143
]
7144
},
7145
{
@@ -7146,7 +7152,7 @@
7152
"pt": "Galego",
7153
"ru": "Галицкий",
7154
"xloc": [
7149
- "default.handlebars->23->789"
7155
+ "default.handlebars->25->792"
7156
]
7157
},
7158
{
@@ -7159,7 +7165,7 @@
7165
"pt": "Gateway MAC",
7166
"ru": "MAC шлюза",
7167
"xloc": [
7162
- "default.handlebars->23->106"
7168
+ "default.handlebars->25->106"
7169
]
7170
},
7171
{
@@ -7203,7 +7209,7 @@
7209
"pt": "Informações gerais",
7210
"ru": "Общая информация",
7211
"xloc": [
7206
- "default.handlebars->23->408"
7212
+ "default.handlebars->25->411"
7213
]
7214
},
7215
{
@@ -7216,7 +7222,7 @@
7222
"pt": "Gere novos tokens",
7223
"ru": "Генерация новых токенов",
7224
"xloc": [
7219
- "default.handlebars->23->135"
7225
+ "default.handlebars->25->135"
7226
]
7227
},
7228
{
@@ -7229,7 +7235,7 @@
7235
"pt": "Georgiano",
7236
"ru": "Грузинский",
7237
"xloc": [
7232
- "default.handlebars->23->790"
7238
+ "default.handlebars->25->793"
7239
]
7240
},
7241
{
@@ -7241,7 +7247,7 @@
7247
"pt": "Alemão (Áustria)",
7248
"ru": "Немецкий (Австрия)",
7249
"xloc": [
7244
- "default.handlebars->23->792"
7250
+ "default.handlebars->25->795"
7251
]
7252
},
7253
{
@@ -7253,7 +7259,7 @@
7259
"pt": "Alemão (Alemanha)",
7260
"ru": "Немецкий (Германия)",
7261
"xloc": [
7256
- "default.handlebars->23->793"
7262
+ "default.handlebars->25->796"
7263
]
7264
},
7265
{
@@ -7265,7 +7271,7 @@
7271
"pt": "Alemão (Liechtenstein)",
7272
"ru": "Немецкий (Лихтенштейн)",
7273
"xloc": [
7268
- "default.handlebars->23->794"
7274
+ "default.handlebars->25->797"
7275
]
7276
},
7277
{
@@ -7277,7 +7283,7 @@
7283
"pt": "Alemão (Luxemburgo)",
7284
"ru": "Немецкий (Люксембург)",
7285
"xloc": [
7280
- "default.handlebars->23->795"
7286
+ "default.handlebars->25->798"
7287
]
7288
},
7289
{
@@ -7289,7 +7295,7 @@
7295
"pt": "Alemão (Padrão)",
7296
"ru": "Немецкий (Стандартный)",
7297
"xloc": [
7292
- "default.handlebars->23->791"
7298
+ "default.handlebars->25->794"
7299
]
7300
},
7301
{
@@ -7301,7 +7307,7 @@
7307
"pt": "Alemão (Suíça)",
7308
"ru": "German (Switzerland)",
7309
"xloc": [
7304
- "default.handlebars->23->796"
7310
+ "default.handlebars->25->799"
7311
]
7312
},
7313
{
@@ -7313,7 +7319,7 @@
7319
"pt": "Obtenha credenciais de login do MQTT para este dispositivo.",
7320
"ru": "Получить MQTT учетные данные для этого устройства.",
7321
"xloc": [
7316
- "default.handlebars->23->508"
7322
+ "default.handlebars->25->511"
7323
]
7324
},
7325
{
@@ -7354,7 +7360,7 @@
7360
"pt": "Bom",
7361
"ru": "Хорошо",
7362
"xloc": [
7357
- "default.handlebars->23->954"
7363
+ "default.handlebars->25->957"
7364
]
7365
},
7366
{
@@ -7383,7 +7389,7 @@
7389
"pt": "Grego",
7390
"ru": "Греческий",
7391
"xloc": [
7386
- "default.handlebars->23->797"
7392
+ "default.handlebars->25->800"
7393
]
7394
},
7395
{
@@ -7397,7 +7403,7 @@
7403
"ru": "Группа",
7404
"xloc": [
7405
"default-mobile.handlebars->9->134",
7400
- "default.handlebars->23->433",
7406
+ "default.handlebars->25->436",
7407
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
7408
]
7409
},
@@ -7411,7 +7417,7 @@
7417
"pt": "Ações do grupo",
7418
"ru": "Групповое действие",
7419
"xloc": [
7414
- "default.handlebars->23->393",
7420
+ "default.handlebars->25->393",
7421
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar"
7422
]
7423
},
@@ -7421,7 +7427,7 @@
7427
"en": "Group Members",
7428
"nl": "Groeps leden",
7429
"xloc": [
7424
- "default.handlebars->23->1279"
7430
+ "default.handlebars->25->1282"
7431
]
7432
},
7433
{
@@ -7434,7 +7440,7 @@
7440
"pt": "Permissões de grupo para o usuário {0}.",
7441
"ru": "Групповые права для потребителя {0}.",
7442
"xloc": [
7437
- "default.handlebars->23->1080"
7443
+ "default.handlebars->25->1083"
7444
]
7445
},
7446
{
@@ -7443,7 +7449,7 @@
7449
"en": "Group permissions for {0}.",
7450
"nl": "Groepsrechten voor {0}.",
7451
"xloc": [
7446
- "default.handlebars->23->1079"
7452
+ "default.handlebars->25->1082"
7453
]
7454
},
7455
{
@@ -7465,7 +7471,7 @@
7471
"en": "Groups",
7472
"nl": "Groepen",
7473
"xloc": [
7468
- "default.handlebars->23->1194",
7474
+ "default.handlebars->25->1197",
7475
"default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups"
7476
]
7477
},
@@ -7479,7 +7485,7 @@
7485
"pt": "Gujarati",
7486
"ru": "Гуджарати",
7487
"xloc": [
7482
- "default.handlebars->23->798"
7488
+ "default.handlebars->25->801"
7489
]
7490
},
7491
{
@@ -7507,7 +7513,7 @@
7513
"pt": "Haitiano",
7514
"ru": "Гаитянский",
7515
"xloc": [
7510
- "default.handlebars->23->799"
7516
+ "default.handlebars->25->802"
7517
]
7518
},
7519
{
@@ -7533,7 +7539,7 @@
7539
"pt": "Forçar desconexão do agente",
7540
"ru": "Жесткое отключение агента",
7541
"xloc": [
7536
- "default.handlebars->23->696"
7542
+ "default.handlebars->25->699"
7543
]
7544
},
7545
{
@@ -7542,7 +7548,7 @@
7548
"en": "Heap Total",
7549
"nl": "Heap Totaal",
7550
"xloc": [
7545
- "default.handlebars->23->1425"
7551
+ "default.handlebars->25->1428"
7552
]
7553
},
7554
{
@@ -7551,7 +7557,7 @@
7557
"en": "Heap Used",
7558
"nl": "Heap gebruikt",
7559
"xloc": [
7554
- "default.handlebars->23->1424"
7560
+ "default.handlebars->25->1427"
7561
]
7562
},
7563
{
@@ -7563,7 +7569,7 @@
7569
"pt": "Hebraico",
7570
"ru": "Иврит",
7571
"xloc": [
7566
- "default.handlebars->23->800"
7572
+ "default.handlebars->25->803"
7573
]
7574
},
7575
{
@@ -7574,7 +7580,7 @@
7580
"nl": "Help bij het vertalen van MeshCentral",
7581
"ru": "Помочь перевести MeshCentral",
7582
"xloc": [
7577
- "default.handlebars->23->913"
7583
+ "default.handlebars->25->916"
7584
]
7585
},
7586
{
@@ -7589,8 +7595,8 @@
7595
"xloc": [
7596
"default-mobile.handlebars->9->104",
7597
"default-mobile.handlebars->9->111",
7592
- "default.handlebars->23->358",
7593
- "default.handlebars->23->5"
7598
+ "default.handlebars->25->358",
7599
+ "default.handlebars->25->5"
7600
]
7601
},
7602
{
@@ -7602,7 +7608,7 @@
7608
"pt": "Hindi",
7609
"ru": "Хинди",
7610
"xloc": [
7605
- "default.handlebars->23->801"
7611
+ "default.handlebars->25->804"
7612
]
7613
},
7614
{
@@ -7628,7 +7634,7 @@
7634
"ru": "Задержана 1 запись для копирования",
7635
"xloc": [
7636
"default-mobile.handlebars->9->263",
7631
- "default.handlebars->23->661"
7637
+ "default.handlebars->25->664"
7638
]
7639
},
7640
{
@@ -7641,7 +7647,7 @@
7647
"ru": "Задержана 1 запись для перемещения",
7648
"xloc": [
7649
"default-mobile.handlebars->9->267",
7644
- "default.handlebars->23->665"
7650
+ "default.handlebars->25->668"
7651
]
7652
},
7653
{
@@ -7654,7 +7660,7 @@
7660
"ru": "Задержана/о {0} запись/ей для копирования",
7661
"xloc": [
7662
"default-mobile.handlebars->9->261",
7657
- "default.handlebars->23->659"
7663
+ "default.handlebars->25->662"
7664
]
7665
},
7666
{
@@ -7667,7 +7673,7 @@
7673
"ru": "Задержана/о {0} запись/ей для перемещения",
7674
"xloc": [
7675
"default-mobile.handlebars->9->265",
7670
- "default.handlebars->23->663"
7676
+ "default.handlebars->25->666"
7677
]
7678
},
7679
{
@@ -7680,7 +7686,7 @@
7686
"ru": "Задержанa/о {0} запись/ей {1} для {2}",
7687
"xloc": [
7688
"default-mobile.handlebars->9->88",
7683
- "default.handlebars->23->1176"
7689
+ "default.handlebars->25->1179"
7690
]
7691
},
7692
{
@@ -7696,11 +7702,11 @@
7702
"default-mobile.handlebars->9->137",
7703
"default-mobile.handlebars->9->139",
7704
"default-mobile.handlebars->9->223",
7699
- "default.handlebars->23->239",
7700
- "default.handlebars->23->435",
7701
- "default.handlebars->23->436",
7702
- "default.handlebars->23->438",
7703
- "default.handlebars->23->590"
7705
+ "default.handlebars->25->239",
7706
+ "default.handlebars->25->438",
7707
+ "default.handlebars->25->439",
7708
+ "default.handlebars->25->441",
7709
+ "default.handlebars->25->593"
7710
]
7711
},
7712
{
@@ -7712,7 +7718,7 @@
7718
"pt": "Sincronização de nome de host",
7719
"ru": "Синхронизация имени хоста",
7720
"xloc": [
7715
- "default.handlebars->23->977"
7721
+ "default.handlebars->25->980"
7722
]
7723
},
7724
{
@@ -7724,7 +7730,7 @@
7730
"pt": "Húngaro",
7731
"ru": "Венгерский",
7732
"xloc": [
7727
- "default.handlebars->23->802"
7733
+ "default.handlebars->25->805"
7734
]
7735
},
7736
{
@@ -7736,7 +7742,7 @@
7742
"pt": "IP Range",
7743
"ru": "IP диапазон",
7744
"xloc": [
7739
- "default.handlebars->23->254"
7745
+ "default.handlebars->25->254"
7746
]
7747
},
7748
{
@@ -7760,7 +7766,7 @@
7766
"pt": "Endereço IPv4",
7767
"ru": "IPv4 адрес",
7768
"xloc": [
7763
- "default.handlebars->23->100"
7769
+ "default.handlebars->25->100"
7770
]
7771
},
7772
{
@@ -7772,7 +7778,7 @@
7778
"pt": "Gateway IPv4",
7779
"ru": "IPv4 шлюз",
7780
"xloc": [
7775
- "default.handlebars->23->104"
7781
+ "default.handlebars->25->104"
7782
]
7783
},
7784
{
@@ -7784,7 +7790,7 @@
7790
"pt": "Máscara IPv4",
7791
"ru": "IPv4 маска",
7792
"xloc": [
7787
- "default.handlebars->23->102"
7793
+ "default.handlebars->25->102"
7794
]
7795
},
7796
{
@@ -7797,7 +7803,7 @@
7803
"pt": "islandês",
7804
"ru": "Исландский",
7805
"xloc": [
7800
- "default.handlebars->23->803"
7806
+ "default.handlebars->25->806"
7807
]
7808
},
7809
{
@@ -7811,7 +7817,7 @@
7817
"ru": "Выбор иконки",
7818
"xloc": [
7819
"default-mobile.handlebars->9->221",
7814
- "default.handlebars->23->588"
7820
+ "default.handlebars->25->591"
7821
]
7822
},
7823
{
@@ -7824,7 +7830,7 @@
7830
"pt": "Identificador",
7831
"ru": "Идентификатор",
7832
"xloc": [
7827
- "default.handlebars->23->74"
7833
+ "default.handlebars->25->74"
7834
]
7835
},
7836
{
@@ -7848,7 +7854,7 @@
7854
"pt": "Indonésia",
7855
"ru": "Индонезийский",
7856
"xloc": [
7851
- "default.handlebars->23->804"
7857
+ "default.handlebars->25->807"
7858
]
7859
},
7860
{
@@ -7900,7 +7906,7 @@
7906
"pt": "Instalar",
7907
"ru": "Установка",
7908
"xloc": [
7903
- "default.handlebars->23->1016"
7909
+ "default.handlebars->25->1019"
7910
]
7911
},
7912
{
@@ -7910,7 +7916,7 @@
7916
"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段階ログインを有効にします。",
7917
"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.",
7918
"xloc": [
7913
- "default.handlebars->23->120"
7919
+ "default.handlebars->25->120"
7920
]
7921
},
7922
{
@@ -7933,7 +7939,7 @@
7939
"pt": "Instalar CIRA",
7940
"ru": "Установка CIRA",
7941
"xloc": [
7936
- "default.handlebars->23->1008"
7942
+ "default.handlebars->25->1011"
7943
]
7944
},
7945
{
@@ -7945,7 +7951,7 @@
7951
"pt": "Instalação local",
7952
"ru": "Локальная установка",
7953
"xloc": [
7948
- "default.handlebars->23->1010"
7954
+ "default.handlebars->25->1013"
7955
]
7956
},
7957
{
@@ -7957,8 +7963,8 @@
7963
"pt": "Tipo de instalação ",
7964
"ru": "Тип установки",
7965
"xloc": [
7960
- "default.handlebars->23->298",
7961
- "default.handlebars->23->320"
7966
+ "default.handlebars->25->298",
7967
+ "default.handlebars->25->320"
7968
]
7969
},
7970
{
@@ -7970,7 +7976,7 @@
7976
"pt": "Intel (F10 = ESC+[OM)",
7977
"ru": "Intel (F10 = ESC+[OM)",
7978
"xloc": [
7973
- "default.handlebars->23->631",
7979
+ "default.handlebars->25->634",
7980
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
7981
]
7982
},
@@ -7983,10 +7989,10 @@
7989
"pt": "Intel AMT",
7990
"ru": "Intel AMT",
7991
"xloc": [
7986
- "default.handlebars->23->1136",
7987
- "default.handlebars->23->1142",
7988
- "default.handlebars->23->1421",
7989
- "default.handlebars->23->1441"
7992
+ "default.handlebars->25->1139",
7993
+ "default.handlebars->25->1145",
7994
+ "default.handlebars->25->1424",
7995
+ "default.handlebars->25->1444"
7996
]
7997
},
7998
{
@@ -7998,7 +8004,7 @@
8004
"pt": "Intel AMT CIRA conectado",
8005
"ru": "Подключен Intel AMT CIRA",
8006
"xloc": [
8001
- "default.handlebars->23->156"
8007
+ "default.handlebars->25->156"
8008
]
8009
},
8010
{
@@ -8010,7 +8016,7 @@
8016
"pt": "Intel AMT CIRA desconectado",
8017
"ru": "Отключен Intel AMT CIRA",
8018
"xloc": [
8013
- "default.handlebars->23->160"
8019
+ "default.handlebars->25->160"
8020
]
8021
},
8022
{
@@ -8023,7 +8029,7 @@
8029
"pt": "Intel AMT detectado",
8030
"ru": "Обнаружен Intel AMT",
8031
"xloc": [
8026
- "default.handlebars->23->155"
8032
+ "default.handlebars->25->155"
8033
]
8034
},
8035
{
@@ -8035,7 +8041,7 @@
8041
"pt": "O Intel AMT é ativado no modo de controle de administrador",
8042
"ru": "Intel AMT активирован в режиме администратора",
8043
"xloc": [
8038
- "default.handlebars->23->451"
8044
+ "default.handlebars->25->454"
8045
]
8046
},
8047
{
@@ -8047,7 +8053,7 @@
8053
"pt": "O Intel AMT é ativado no modo de controle do cliente",
8054
"ru": "Intel AMT активирован в режиме клиента",
8055
"xloc": [
8050
- "default.handlebars->23->449"
8056
+ "default.handlebars->25->452"
8057
]
8058
},
8059
{
@@ -8059,7 +8065,7 @@
8065
"pt": "O Intel AMT está configurado com segurança de rede TLS",
8066
"ru": "Intel AMT настроен с TLS безопасностью сети",
8067
"xloc": [
8062
- "default.handlebars->23->453"
8068
+ "default.handlebars->25->456"
8069
]
8070
},
8071
{
@@ -8072,7 +8078,7 @@
8078
"pt": "Intel AMT não detectado",
8079
"ru": "Intel AMT не обнаружен",
8080
"xloc": [
8075
- "default.handlebars->23->159"
8081
+ "default.handlebars->25->159"
8082
]
8083
},
8084
{
@@ -8084,7 +8090,7 @@
8090
"pt": "A Intel AMT precisará ser configurada com um FQDN confiável na MEBx ou ter uma LAN com fio na rede:",
8091
"ru": "Intel AMT должен быть установлен с полностью определенным имемем домена(FQDN) в MEBx или иметь кабельное подключение к локальной сети:",
8092
"xloc": [
8087
- "default.handlebars->23->251"
8093
+ "default.handlebars->25->251"
8094
]
8095
},
8096
{
@@ -8096,7 +8102,7 @@
8102
"pt": "Intel ASCII",
8103
"ru": "Intel ASCII",
8104
"xloc": [
8099
- "default.handlebars->23->630"
8105
+ "default.handlebars->25->633"
8106
]
8107
},
8108
{
@@ -8111,11 +8117,11 @@
8117
"default-mobile.handlebars->9->123",
8118
"default-mobile.handlebars->9->187",
8119
"default-mobile.handlebars->9->192",
8114
- "default.handlebars->23->1002",
8115
- "default.handlebars->23->411",
8116
- "default.handlebars->23->461",
8117
- "default.handlebars->23->477",
8118
- "default.handlebars->23->994"
8120
+ "default.handlebars->25->1005",
8121
+ "default.handlebars->25->414",
8122
+ "default.handlebars->25->464",
8123
+ "default.handlebars->25->480",
8124
+ "default.handlebars->25->997"
8125
]
8126
},
8127
{
@@ -8128,7 +8134,7 @@
8134
"ru": "Intel® AMT CIRA",
8135
"xloc": [
8136
"default-mobile.handlebars->9->191",
8131
- "default.handlebars->23->475"
8137
+ "default.handlebars->25->478"
8138
]
8139
},
8140
{
@@ -8140,9 +8146,9 @@
8146
"pt": "Intel® O AMT CIRA está conectado e pronto para uso.",
8147
"ru": "Intel® AMT CIRA подключен и готов к использованию.",
8148
"xloc": [
8143
- "default.handlebars->23->185",
8144
- "default.handlebars->23->372",
8145
- "default.handlebars->23->474"
8149
+ "default.handlebars->25->185",
8150
+ "default.handlebars->25->372",
8151
+ "default.handlebars->25->477"
8152
]
8153
},
8154
{
@@ -8155,7 +8161,7 @@
8161
"ru": "Intel® AMT Подключен",
8162
"xloc": [
8163
"default-mobile.handlebars->9->5",
8158
- "default.handlebars->23->12",
8164
+ "default.handlebars->25->12",
8165
"xterm.handlebars->9->5"
8166
]
8167
},
@@ -8168,7 +8174,7 @@
8174
"pt": "Intel® Política da AMT",
8175
"ru": "Политика Intel® AMT",
8176
"xloc": [
8171
- "default.handlebars->23->1034"
8177
+ "default.handlebars->25->1037"
8178
]
8179
},
8180
{
@@ -8192,7 +8198,7 @@
8198
"pt": "Intel® Tag AMT ",
8199
"ru": "Intel® AMT Тег",
8200
"xloc": [
8195
- "default.handlebars->23->465"
8201
+ "default.handlebars->25->468"
8202
]
8203
},
8204
{
@@ -8216,8 +8222,8 @@
8222
"pt": "Intel® Ativação AMT",
8223
"ru": "Активация Intel® AMT",
8224
"xloc": [
8219
- "default.handlebars->23->249",
8220
- "default.handlebars->23->252"
8225
+ "default.handlebars->25->249",
8226
+ "default.handlebars->25->252"
8227
]
8228
},
8229
{
@@ -8230,8 +8236,8 @@
8236
"ru": "Intel® AMT подключен",
8237
"xloc": [
8238
"default-mobile.handlebars->9->201",
8233
- "default.handlebars->23->512",
8234
- "default.handlebars->23->513"
8239
+ "default.handlebars->25->515",
8240
+ "default.handlebars->25->516"
8241
]
8242
},
8243
{
@@ -8243,8 +8249,8 @@
8249
"pt": "Intel® Área de trabalho AMT e eventos seriais.",
8250
"ru": "Настольные и серийные события Intel® AMT.",
8251
"xloc": [
8246
- "default.handlebars->23->1132",
8247
- "default.handlebars->23->919"
8252
+ "default.handlebars->25->1135",
8253
+ "default.handlebars->25->922"
8254
]
8255
},
8256
{
@@ -8257,8 +8263,8 @@
8263
"ru": "Intel® AMT обнаружен",
8264
"xloc": [
8265
"default-mobile.handlebars->9->202",
8260
- "default.handlebars->23->514",
8261
- "default.handlebars->23->515"
8266
+ "default.handlebars->25->517",
8267
+ "default.handlebars->25->518"
8268
]
8269
},
8270
{
@@ -8270,7 +8276,7 @@
8276
"pt": "Intel® O AMT é roteável e pronto para uso.",
8277
"ru": "Intel® AMT рутируется и готов к использованию.",
8278
"xloc": [
8273
- "default.handlebars->23->476"
8279
+ "default.handlebars->25->479"
8280
]
8281
},
8282
{
@@ -8282,8 +8288,8 @@
8288
"pt": "Intel® AMT é roteável.",
8289
"ru": "Intel® AMT рутируется.",
8290
"xloc": [
8285
- "default.handlebars->23->187",
8286
- "default.handlebars->23->374"
8291
+ "default.handlebars->25->187",
8292
+ "default.handlebars->25->374"
8293
]
8294
},
8295
{
@@ -8308,8 +8314,8 @@
8314
"ru": "Только Intel® AMT, без агента",
8315
"xloc": [
8316
"default-mobile.handlebars->9->274",
8311
- "default.handlebars->23->948",
8312
- "default.handlebars->23->970"
8317
+ "default.handlebars->25->951",
8318
+ "default.handlebars->25->973"
8319
]
8320
},
8321
{
@@ -8321,7 +8327,7 @@
8327
"pt": "Intel® Tecnologia de gerenciamento ativo",
8328
"ru": "Технология Intel® Active Management",
8329
"xloc": [
8324
- "default.handlebars->23->460"
8330
+ "default.handlebars->25->463"
8331
]
8332
},
8333
{
@@ -8334,7 +8340,7 @@
8340
"ru": "Intel® ME",
8341
"xloc": [
8342
"default-mobile.handlebars->9->186",
8337
- "default.handlebars->23->459"
8343
+ "default.handlebars->25->462"
8344
]
8345
},
8346
{
@@ -8347,7 +8353,7 @@
8353
"ru": "Intel® SM",
8354
"xloc": [
8355
"default-mobile.handlebars->9->188",
8350
- "default.handlebars->23->463"
8356
+ "default.handlebars->25->466"
8357
]
8358
},
8359
{
@@ -8359,7 +8365,7 @@
8365
"pt": "Intel® Gerenciamento padrão",
8366
"ru": "Intel® Standard Manageability",
8367
"xloc": [
8362
- "default.handlebars->23->462"
8368
+ "default.handlebars->25->465"
8369
]
8370
},
8371
{
@@ -8427,7 +8433,7 @@
8433
"pt": "Interativo",
8434
"ru": "undefined",
8435
"xloc": [
8430
- "default.handlebars->23->613"
8436
+ "default.handlebars->25->616"
8437
]
8438
},
8439
{
@@ -8439,8 +8445,8 @@
8445
"pt": "Apenas interativo",
8446
"ru": "Только интерактивный режим",
8447
"xloc": [
8442
- "default.handlebars->23->301",
8443
- "default.handlebars->23->323"
8448
+ "default.handlebars->25->301",
8449
+ "default.handlebars->25->323"
8450
]
8451
},
8452
{
@@ -8453,7 +8459,7 @@
8459
"pt": "Interfaces",
8460
"ru": "Интерфейсы",
8461
"xloc": [
8456
- "default.handlebars->23->495"
8462
+ "default.handlebars->25->498"
8463
]
8464
},
8465
{
@@ -8466,7 +8472,7 @@
8472
"pt": "Inuktitut",
8473
"ru": "undefined",
8474
"xloc": [
8469
- "default.handlebars->23->805"
8475
+ "default.handlebars->25->808"
8476
]
8477
},
8478
{
@@ -8475,7 +8481,7 @@
8481
"en": "Invalid Device Group Type",
8482
"nl": "Ongeldige apparaatgroep type",
8483
"xloc": [
8478
- "default.handlebars->23->1398"
8484
+ "default.handlebars->25->1401"
8485
]
8486
},
8487
{
@@ -8484,7 +8490,7 @@
8490
"en": "Invalid JSON",
8491
"nl": "Onjuiste JSON",
8492
"xloc": [
8487
- "default.handlebars->23->1392"
8493
+ "default.handlebars->25->1395"
8494
]
8495
},
8496
{
@@ -8496,8 +8502,8 @@
8502
"pt": "Formato de arquivo JSON inválido.",
8503
"ru": "undefined",
8504
"xloc": [
8499
- "default.handlebars->23->1220",
8500
- "default.handlebars->23->1222"
8505
+ "default.handlebars->25->1223",
8506
+ "default.handlebars->25->1225"
8507
]
8508
},
8509
{
@@ -8508,7 +8514,7 @@
8514
"nl": "Ongeldig JSON-bestand: {0}.",
8515
"pt": "Arquivo JSON inválido: {0}.",
8516
"xloc": [
8511
- "default.handlebars->23->1218"
8517
+ "default.handlebars->25->1221"
8518
]
8519
},
8520
{
@@ -8517,7 +8523,7 @@
8523
"en": "Invalid PKCS signature",
8524
"nl": "Onjuiste PKCS handtekening",
8525
"xloc": [
8520
- "default.handlebars->23->1390"
8526
+ "default.handlebars->25->1393"
8527
]
8528
},
8529
{
@@ -8526,7 +8532,7 @@
8532
"en": "Invalid RSA siguature",
8533
"nl": "Ongeldige RSA handtekening",
8534
"xloc": [
8529
- "default.handlebars->23->1391"
8535
+ "default.handlebars->25->1394"
8536
]
8537
},
8538
{
@@ -8572,7 +8578,7 @@
8578
"nl": "Uitnodigingslink ({0})",
8579
"pt": "Link de convite ({0})",
8580
"xloc": [
8575
- "default.handlebars->23->174"
8581
+ "default.handlebars->25->174"
8582
]
8583
},
8584
{
@@ -8584,7 +8590,7 @@
8590
"nl": "Type uitnodiging",
8591
"pt": "Tipo de convite",
8592
"xloc": [
8587
- "default.handlebars->23->280"
8593
+ "default.handlebars->25->280"
8594
]
8595
},
8596
{
@@ -8597,9 +8603,9 @@
8603
"pt": "Convite",
8604
"ru": "Пригласить",
8605
"xloc": [
8600
- "default.handlebars->23->1018",
8601
- "default.handlebars->23->236",
8602
- "default.handlebars->23->313"
8606
+ "default.handlebars->25->1021",
8607
+ "default.handlebars->25->236",
8608
+ "default.handlebars->25->313"
8609
]
8610
},
8611
{
@@ -8611,7 +8617,7 @@
8617
"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.",
8618
"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.",
8619
"xloc": [
8614
- "default.handlebars->23->304"
8620
+ "default.handlebars->25->304"
8621
]
8622
},
8623
{
@@ -8624,8 +8630,8 @@
8630
"pt": "Convide alguém para instalar o agente de malha nessa malha.",
8631
"ru": "Отправить приглашение на установку Mesh Агента",
8632
"xloc": [
8627
- "default.handlebars->23->1017",
8628
- "default.handlebars->23->235"
8633
+ "default.handlebars->25->1020",
8634
+ "default.handlebars->25->235"
8635
]
8636
},
8637
{
@@ -8637,7 +8643,7 @@
8643
"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}\\\".",
8644
"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}\\\".",
8645
"xloc": [
8640
- "default.handlebars->23->281"
8646
+ "default.handlebars->25->281"
8647
]
8648
},
8649
{
@@ -8650,7 +8656,7 @@
8656
"pt": "Irish",
8657
"ru": "Ирландский",
8658
"xloc": [
8653
- "default.handlebars->23->806"
8659
+ "default.handlebars->25->809"
8660
]
8661
},
8662
{
@@ -8663,7 +8669,7 @@
8669
"pt": "Italiano (Padrão)",
8670
"ru": "Итальянский (Стандартный)",
8671
"xloc": [
8666
- "default.handlebars->23->807"
8672
+ "default.handlebars->25->810"
8673
]
8674
},
8675
{
@@ -8676,7 +8682,7 @@
8682
"pt": "Italiano (Suíça)",
8683
"ru": "Итальянский (Швейцария)",
8684
"xloc": [
8679
- "default.handlebars->23->808"
8685
+ "default.handlebars->25->811"
8686
]
8687
},
8688
{
@@ -8689,8 +8695,8 @@
8695
"pt": "Formato JSON",
8696
"ru": "Формат JSON",
8697
"xloc": [
8692
- "default.handlebars->23->1187",
8693
- "default.handlebars->23->1226"
8698
+ "default.handlebars->25->1190",
8699
+ "default.handlebars->25->1229"
8700
]
8701
},
8702
{
@@ -8703,7 +8709,7 @@
8709
"pt": "japonês",
8710
"ru": "Японский",
8711
"xloc": [
8706
- "default.handlebars->23->809"
8712
+ "default.handlebars->25->812"
8713
]
8714
},
8715
{
@@ -8715,7 +8721,7 @@
8721
"pt": "Kannada",
8722
"ru": "Каннада",
8723
"xloc": [
8718
- "default.handlebars->23->810"
8724
+ "default.handlebars->25->813"
8725
]
8726
},
8727
{
@@ -8727,7 +8733,7 @@
8733
"pt": "Caxemira",
8734
"ru": "Кашмирский",
8735
"xloc": [
8730
- "default.handlebars->23->811"
8736
+ "default.handlebars->25->814"
8737
]
8738
},
8739
{
@@ -8739,7 +8745,7 @@
8745
"pt": "Cazaque",
8746
"ru": "Казахский",
8747
"xloc": [
8742
- "default.handlebars->23->812"
8748
+ "default.handlebars->25->815"
8749
]
8750
},
8751
{
@@ -8751,7 +8757,7 @@
8757
"pt": "KernelDriver",
8758
"ru": "Драйвер ядра",
8759
"xloc": [
8754
- "default.handlebars->23->614"
8760
+ "default.handlebars->25->617"
8761
]
8762
},
8763
{
@@ -8764,8 +8770,8 @@
8770
"pt": "Nome da chave",
8771
"ru": "Имя ключа",
8772
"xloc": [
8767
- "default.handlebars->23->703",
8768
- "default.handlebars->23->706"
8773
+ "default.handlebars->25->706",
8774
+ "default.handlebars->25->709"
8775
]
8776
},
8777
{
@@ -8790,7 +8796,7 @@
8796
"pt": "Khmer",
8797
"ru": "Кхмерский",
8798
"xloc": [
8793
- "default.handlebars->23->813"
8799
+ "default.handlebars->25->816"
8800
]
8801
},
8802
{
@@ -8802,7 +8808,7 @@
8808
"pt": "Kirghiz",
8809
"ru": "Киргизский",
8810
"xloc": [
8805
- "default.handlebars->23->814"
8811
+ "default.handlebars->25->817"
8812
]
8813
},
8814
{
@@ -8814,7 +8820,7 @@
8820
"pt": "Klingon",
8821
"ru": "Клингонский",
8822
"xloc": [
8817
- "default.handlebars->23->815"
8823
+ "default.handlebars->25->818"
8824
]
8825
},
8826
{
@@ -8827,7 +8833,7 @@
8833
"pt": "coreano",
8834
"ru": "Korean",
8835
"xloc": [
8830
- "default.handlebars->23->816"
8836
+ "default.handlebars->25->819"
8837
]
8838
},
8839
{
@@ -8840,7 +8846,7 @@
8846
"pt": "Coreano (Coréia do Norte)",
8847
"ru": "Корейский (Северная Корея)",
8848
"xloc": [
8843
- "default.handlebars->23->817"
8849
+ "default.handlebars->25->820"
8850
]
8851
},
8852
{
@@ -8853,7 +8859,7 @@
8859
"pt": "Coreano (Coréia do Sul)",
8860
"ru": "Корейский (Южная Корея)",
8861
"xloc": [
8856
- "default.handlebars->23->818"
8862
+ "default.handlebars->25->821"
8863
]
8864
},
8865
{
@@ -8864,8 +8870,8 @@
8870
"pt": "LF",
8871
"ru": "LF",
8872
"xloc": [
8867
- "default.handlebars->23->626",
8868
- "default.handlebars->23->635"
8873
+ "default.handlebars->25->629",
8874
+ "default.handlebars->25->638"
8875
]
8876
},
8877
{
@@ -8878,7 +8884,7 @@
8884
"pt": "Língua",
8885
"ru": "Язык",
8886
"xloc": [
8881
- "default.handlebars->23->911"
8887
+ "default.handlebars->25->914"
8888
]
8889
},
8890
{
@@ -8904,7 +8910,7 @@
8910
"pt": "Foco grande",
8911
"ru": "Большой Фокус",
8912
"xloc": [
8907
- "default.handlebars->23->603"
8913
+ "default.handlebars->25->606"
8914
]
8915
},
8916
{
@@ -9047,7 +9053,7 @@
9053
"pt": "Último acesso",
9054
"ru": "Последний доступ",
9055
"xloc": [
9050
- "default.handlebars->23->1195"
9056
+ "default.handlebars->25->1198"
9057
]
9058
},
9059
{
@@ -9060,7 +9066,7 @@
9066
"pt": "Último login",
9067
"ru": "Последний вход в систему",
9068
"xloc": [
9063
- "default.handlebars->23->1322"
9069
+ "default.handlebars->25->1325"
9070
]
9071
},
9072
{
@@ -9073,9 +9079,9 @@
9079
"pt": "Último endereço do agente",
9080
"ru": "Последние адрес агента",
9081
"xloc": [
9076
- "default.handlebars->23->88",
9077
- "default.handlebars->23->89",
9078
- "default.handlebars->23->91"
9082
+ "default.handlebars->25->88",
9083
+ "default.handlebars->25->89",
9084
+ "default.handlebars->25->91"
9085
]
9086
},
9087
{
@@ -9088,7 +9094,7 @@
9094
"pt": "Última conexão do agente",
9095
"ru": "Последнее подключение агента",
9096
"xloc": [
9091
- "default.handlebars->23->87"
9097
+ "default.handlebars->25->87"
9098
]
9099
},
9100
{
@@ -9101,7 +9107,7 @@
9107
"pt": "Última alteração: {0}",
9108
"ru": "Последнее изменение: {0}",
9109
"xloc": [
9104
- "default.handlebars->23->1326"
9110
+ "default.handlebars->25->1329"
9111
]
9112
},
9113
{
@@ -9127,7 +9133,7 @@
9133
"pt": "Última atualização de interfaces",
9134
"ru": "Последнее обновление интерфейсов",
9135
"xloc": [
9130
- "default.handlebars->23->93"
9136
+ "default.handlebars->25->93"
9137
]
9138
},
9139
{
@@ -9139,7 +9145,7 @@
9145
"pt": "Último login: {0}",
9146
"ru": "Последний вход в систему: {0}",
9147
"xloc": [
9142
- "default.handlebars->23->1205"
9148
+ "default.handlebars->25->1208"
9149
]
9150
},
9151
{
@@ -9152,8 +9158,8 @@
9158
"pt": "Visto pela última vez:",
9159
"ru": "Последнее посещение:",
9160
"xloc": [
9155
- "default.handlebars->23->518",
9156
- "default.handlebars->23->83"
9161
+ "default.handlebars->25->521",
9162
+ "default.handlebars->25->83"
9163
]
9164
},
9165
{
This file is too large to show in full.
views/xterm.handlebars
+1
-1
@@ -229,8 +229,8 @@
229
contextmenudiv = document.getElementById('termShellContextMenuLinux');
230
}
231
showContextMenuDiv(contextmenudiv, event.pageX, event.pageY);
232
+ return haltEvent(event);
233
}
233
- return haltEvent(event);
234
}
235
236
function showContextMenuDiv(element, x, y) {