Added stable/latest self-upgrade.
Ylian Saint-Hilaire committed
Apr 17, 2020 at 23:17 UTC
9ed9257707ca1e37aec2a6663c866915ec3d001b
5 files changed
+1663
-1608
meshcentral.js
+33
-3
@@ -416,6 +416,7 @@ function CreateMeshCentralServer(config, args) {
416
else if (data.indexOf('Server Ctrl-C exit...') >= 0) { childProcess.xrestart = 2; }
417
else if (data.indexOf('Starting self upgrade...') >= 0) { childProcess.xrestart = 3; }
418
else if (data.indexOf('Server restart...') >= 0) { childProcess.xrestart = 1; }
419
+ else if (data.indexOf('Starting self upgrade to: ') >= 0) { obj.args.selfupdate = data.substring(26).split('\r')[0].split('\n')[0]; childProcess.xrestart = 3; }
420
var datastr = data;
421
while (datastr.endsWith('\r') || datastr.endsWith('\n')) { datastr = datastr.substring(0, datastr.length - 1); }
422
console.log(datastr);
@@ -457,10 +458,39 @@ function CreateMeshCentralServer(config, args) {
458
} catch (ex) { callback(getCurrentVerion(), null, ex); } // If the system is running out of memory, an exception here can easily happen.
459
};
460
461
+ // Get current version and all MeshCentral server tags using NPM
462
+ obj.getServerTags = function (callback) {
463
+ if (callback == null) return;
464
+ try {
465
+ if (typeof obj.args.selfupdate == 'string') { callback(getCurrentVerion(), obj.args.selfupdate); return; } // If we are targetting a specific version, return that one as current.
466
+ var child_process = require('child_process');
467
+ var npmpath = ((typeof obj.args.npmpath == 'string') ? obj.args.npmpath : 'npm');
468
+ var npmproxy = ((typeof obj.args.npmproxy == 'string') ? (' --proxy ' + obj.args.npmproxy) : '');
469
+ var env = Object.assign({}, process.env); // Shallow clone
470
+ if (typeof obj.args.npmproxy == 'string') { env['HTTP_PROXY'] = env['HTTPS_PROXY'] = env['http_proxy'] = env['https_proxy'] = obj.args.npmproxy; }
471
+ var xxprocess = child_process.exec(npmpath + npmproxy + ' dist-tag ls meshcentral', { maxBuffer: 512000, cwd: obj.parentpath, env: env }, function (error, stdout, stderr) { });
472
+ xxprocess.data = '';
473
+ xxprocess.stdout.on('data', function (data) { xxprocess.data += data; });
474
+ xxprocess.stderr.on('data', function (data) { });
475
+ xxprocess.on('close', function (code) {
476
+ var tags = { current: getCurrentVerion() };
477
+ if (code == 0) {
478
+ try {
479
+ var lines = xxprocess.data.split('\r\n').join('\n').split('\n');
480
+ for (var i in lines) { var s = lines[i].split(': '); if ((s.length == 2) && (obj.args.npmtag == null) || (obj.args.npmtag == s[0])) { tags[s[0]] = s[1]; } }
481
+ } catch (e) { }
482
+ }
483
+ callback(tags);
484
+ });
485
+ } catch (ex) { callback({ current: getCurrentVerion() }, ex); } // If the system is running out of memory, an exception here can easily happen.
486
+ };
487
+
488
// Initiate server self-update
461
- obj.performServerUpdate = function () {
462
- if (obj.serverSelfWriteAllowed == true) { console.log('Starting self upgrade...'); process.exit(200); return true; }
463
- return false;
489
+ obj.performServerUpdate = function (version) {
490
+ if (obj.serverSelfWriteAllowed != true) return false;
491
+ if ((version == null) || (version == '') || (typeof version != 'string')) { console.log('Starting self upgrade...'); } else { console.log('Starting self upgrade to: ' + version); }
492
+ process.exit(200);
493
+ return true;
494
};
495
496
// Initiate server self-update
meshuser.js
+7
-5
@@ -876,10 +876,10 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
876
break;
877
}
878
case 'updatecheck': {
879
- parent.parent.getLatestServerVersion(function (currentVer, newVer, error) {
880
- var r2 = 'Current Version: ' + currentVer + '\r\n';
881
- if (newVer != null) { r2 += 'Available Version: ' + newVer + '\r\n'; }
879
+ parent.parent.getServerTags(function (tags, error) {
880
+ var r2 = '';
881
if (error != null) { r2 += 'Exception: ' + error + '\r\n'; }
882
+ else { for (var i in tags) { r2 += i + ': ' + tags[i] + '\r\n'; } }
883
try { ws.send(JSON.stringify({ action: 'serverconsole', value: r2, tag: command.tag })); } catch (ex) { }
884
});
885
r = "Checking server update...";
@@ -2198,14 +2198,16 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2198
{
2199
// Check the server version
2200
if ((user.siteadmin & 16) == 0) break;
2201
- parent.parent.getLatestServerVersion(function (currentVersion, latestVersion) { try { ws.send(JSON.stringify({ action: 'serverversion', current: currentVersion, latest: latestVersion })); } catch (ex) { } });
2201
+ //parent.parent.getLatestServerVersion(function (currentVersion, latestVersion) { try { ws.send(JSON.stringify({ action: 'serverversion', current: currentVersion, latest: latestVersion })); } catch (ex) { } });
2202
+ parent.parent.getServerTags(function (tags, err) { try { ws.send(JSON.stringify({ action: 'serverversion', tags: tags })); } catch (ex) { } });
2203
break;
2204
}
2205
case 'serverupdate':
2206
{
2207
// Perform server update
2208
if ((user.siteadmin & 16) == 0) break;
2208
- parent.parent.performServerUpdate();
2209
+ if ((command.version != null) && (typeof command.version != 'string')) break;
2210
+ parent.parent.performServerUpdate(command.version);
2211
break;
2212
}
2213
case 'servererrors':
package.json
+1
-1
@@ -1,6 +1,6 @@
1
{
2
"name": "meshcentral",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
"keywords": [
5
"Remote Management",
6
"Intel AMT",
translate/translate.json
+1595
-1586
@@ -14,8 +14,8 @@
14
"ru": " + CIRA",
15
"zh-chs": " + CIRA",
16
"xloc": [
17
- "default.handlebars->29->1128",
18
- "default.handlebars->29->1130"
17
+ "default.handlebars->29->1132",
18
+ "default.handlebars->29->1134"
19
]
20
},
21
{
@@ -174,7 +174,7 @@
174
"ru": " Может быть использована подсказка пароля, но не рекоммендуется.",
175
"zh-chs": " 可以使用密碼提示,但不建議使用。",
176
"xloc": [
177
- "default.handlebars->29->1058"
177
+ "default.handlebars->29->1062"
178
]
179
},
180
{
@@ -191,8 +191,8 @@
191
"ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.",
192
"zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
193
"xloc": [
194
- "default.handlebars->29->1203",
195
- "default.handlebars->29->1500"
194
+ "default.handlebars->29->1207",
195
+ "default.handlebars->29->1504"
196
]
197
},
198
{
@@ -209,7 +209,7 @@
209
"ru": " и задайте указанное ниже имя пользователя и любой пароль.",
210
"zh-chs": " 並使用該用戶名和任何密碼對服務器進行身份驗證。",
211
"xloc": [
212
- "default.handlebars->29->251"
212
+ "default.handlebars->29->255"
213
]
214
},
215
{
@@ -226,7 +226,7 @@
226
"ru": " и задайте указанные ниже имя пользователя и пароль.",
227
"zh-chs": " 並使用該用戶名和密碼向服務器驗證身份。",
228
"xloc": [
229
- "default.handlebars->29->250"
229
+ "default.handlebars->29->254"
230
]
231
},
232
{
@@ -277,7 +277,7 @@
277
"ru": " с TLS.",
278
"zh-chs": " TLS。",
279
"xloc": [
280
- "default.handlebars->29->147"
280
+ "default.handlebars->29->151"
281
]
282
},
283
{
@@ -294,7 +294,7 @@
294
"ru": " без TLS",
295
"zh-chs": " 沒有TLS。",
296
"xloc": [
297
- "default.handlebars->29->148"
297
+ "default.handlebars->29->152"
298
]
299
},
300
{
@@ -326,7 +326,7 @@
326
"ru": "(необязательно)",
327
"zh-chs": "(可選的)",
328
"xloc": [
329
- "default.handlebars->29->290"
329
+ "default.handlebars->29->294"
330
]
331
},
332
{
@@ -358,7 +358,7 @@
358
"ru": "* Для BSD сначала запустите \\\"pkg install wget sudo bash\\\".",
359
"zh-chs": "*對於BSD,首先運行 “pkg install wget sudo bash”。",
360
"xloc": [
361
- "default.handlebars->29->323"
361
+ "default.handlebars->29->327"
362
]
363
},
364
{
@@ -375,7 +375,7 @@
375
"ru": "* Оставьте пустым для установления случайного пароля каждому устройству.",
376
"zh-chs": "*保留空白以為每個設備分配一個隨機密碼。",
377
"xloc": [
378
- "default.handlebars->29->1175"
378
+ "default.handlebars->29->1179"
379
]
380
},
381
{
@@ -408,7 +408,7 @@
408
"zh-chs": ",",
409
"xloc": [
410
"default-mobile.handlebars->9->331",
411
- "default.handlebars->29->1269"
411
+ "default.handlebars->29->1273"
412
]
413
},
414
{
@@ -426,7 +426,7 @@
426
"zh-chs": ",僅限Intel®AMT",
427
"xloc": [
428
"default-mobile.handlebars->9->95",
429
- "default.handlebars->29->163"
429
+ "default.handlebars->29->167"
430
]
431
},
432
{
@@ -443,7 +443,7 @@
443
"ru": ", MQTT онлайн",
444
"zh-chs": ",MQTT在線",
445
"xloc": [
446
- "default.handlebars->29->807"
446
+ "default.handlebars->29->811"
447
]
448
},
449
{
@@ -460,7 +460,7 @@
460
"ru": ", Soft-KVM",
461
"zh-chs": ",軟KVM",
462
"xloc": [
463
- "default.handlebars->29->666"
463
+ "default.handlebars->29->670"
464
]
465
},
466
{
@@ -479,9 +479,9 @@
479
"xloc": [
480
"default-mobile.handlebars->9->231",
481
"default-mobile.handlebars->9->239",
482
- "default.handlebars->29->667",
483
- "default.handlebars->29->698",
484
- "default.handlebars->29->710",
482
+ "default.handlebars->29->671",
483
+ "default.handlebars->29->702",
484
+ "default.handlebars->29->714",
485
"xterm.handlebars->9->6"
486
]
487
},
@@ -604,9 +604,9 @@
604
"xloc": [
605
"default-mobile.handlebars->9->244",
606
"default-mobile.handlebars->9->70",
607
- "default.handlebars->29->1308",
608
- "default.handlebars->29->1604",
609
- "default.handlebars->29->712"
607
+ "default.handlebars->29->1312",
608
+ "default.handlebars->29->1608",
609
+ "default.handlebars->29->716"
610
]
611
},
612
{
@@ -654,7 +654,7 @@
654
"ru": "1 активная сессия",
655
"zh-chs": "1個活動會話",
656
"xloc": [
657
- "default.handlebars->29->1555"
657
+ "default.handlebars->29->1559"
658
]
659
},
660
{
@@ -673,7 +673,7 @@
673
"xloc": [
674
"default-mobile.handlebars->9->335",
675
"default-mobile.handlebars->9->80",
676
- "default.handlebars->29->1327"
676
+ "default.handlebars->29->1331"
677
]
678
},
679
{
@@ -690,9 +690,9 @@
690
"ru": "1 день",
691
"zh-chs": "1天",
692
"xloc": [
693
- "default.handlebars->29->153",
694
- "default.handlebars->29->281",
695
- "default.handlebars->29->295"
693
+ "default.handlebars->29->157",
694
+ "default.handlebars->29->285",
695
+ "default.handlebars->29->299"
696
]
697
},
698
{
@@ -709,7 +709,7 @@
709
"ru": "1 группа",
710
"zh-chs": "1組",
711
"xloc": [
712
- "default.handlebars->29->1525"
712
+ "default.handlebars->29->1529"
713
]
714
},
715
{
@@ -726,9 +726,9 @@
726
"ru": "1 час",
727
"zh-chs": "1小時",
728
"xloc": [
729
- "default.handlebars->29->151",
730
- "default.handlebars->29->279",
731
- "default.handlebars->29->293"
729
+ "default.handlebars->29->155",
730
+ "default.handlebars->29->283",
731
+ "default.handlebars->29->297"
732
]
733
},
734
{
@@ -762,9 +762,9 @@
762
"ru": "1 месяц",
763
"zh-chs": "1個月",
764
"xloc": [
765
- "default.handlebars->29->155",
766
- "default.handlebars->29->283",
767
- "default.handlebars->29->297"
765
+ "default.handlebars->29->159",
766
+ "default.handlebars->29->287",
767
+ "default.handlebars->29->301"
768
]
769
},
770
{
@@ -781,7 +781,7 @@
781
"ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...",
782
"zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...",
783
"xloc": [
784
- "default.handlebars->29->1362"
784
+ "default.handlebars->29->1366"
785
]
786
},
787
{
@@ -798,7 +798,7 @@
798
"ru": "1 устройство",
799
"zh-chs": "1個節點",
800
"xloc": [
801
- "default.handlebars->29->337"
801
+ "default.handlebars->29->341"
802
]
803
},
804
{
@@ -832,7 +832,7 @@
832
"ru": "1 сессия",
833
"zh-chs": "1節",
834
"xloc": [
835
- "default.handlebars->29->1366"
835
+ "default.handlebars->29->1370"
836
]
837
},
838
{
@@ -849,9 +849,9 @@
849
"ru": "1 неделя",
850
"zh-chs": "1週",
851
"xloc": [
852
- "default.handlebars->29->154",
853
- "default.handlebars->29->282",
854
- "default.handlebars->29->296"
852
+ "default.handlebars->29->158",
853
+ "default.handlebars->29->286",
854
+ "default.handlebars->29->300"
855
]
856
},
857
{
@@ -1010,7 +1010,7 @@
1010
"ru": "Активация двухэтапного входа не удалась.",
1011
"zh-chs": "兩步登錄激活失敗。",
1012
"xloc": [
1013
- "default.handlebars->29->108"
1013
+ "default.handlebars->29->112"
1014
]
1015
},
1016
{
@@ -1027,7 +1027,7 @@
1027
"ru": "Удаление активации двухэтапного входа не удалось.",
1028
"zh-chs": "兩步登錄激活刪除失敗。",
1029
"xloc": [
1030
- "default.handlebars->29->113"
1030
+ "default.handlebars->29->117"
1031
]
1032
},
1033
{
@@ -1100,8 +1100,8 @@
1100
"ru": "двухфакторная аутентификация включена",
1101
"zh-chs": "啟用第二因素身份驗證",
1102
"xloc": [
1103
- "default.handlebars->29->1379",
1104
- "default.handlebars->29->1546"
1103
+ "default.handlebars->29->1383",
1104
+ "default.handlebars->29->1550"
1105
]
1106
},
1107
{
@@ -1202,8 +1202,8 @@
1202
"ru": "32-разрядная версия MeshAgent",
1203
"zh-chs": "MeshAgent的32位版本",
1204
"xloc": [
1205
- "default.handlebars->29->313",
1206
- "default.handlebars->29->330"
1205
+ "default.handlebars->29->317",
1206
+ "default.handlebars->29->334"
1207
]
1208
},
1209
{
@@ -1416,7 +1416,7 @@
1416
"zh-chs": "64位版本的MacOS Mesh Agent",
1417
"es": "versión de 64bit de Agente Mesh para MacOs ",
1418
"xloc": [
1419
- "default.handlebars->29->326"
1419
+ "default.handlebars->29->330"
1420
]
1421
},
1422
{
@@ -1433,8 +1433,8 @@
1433
"ru": "64-разрядная версия MeshAgent",
1434
"zh-chs": "MeshAgent的64位版本",
1435
"xloc": [
1436
- "default.handlebars->29->317",
1437
- "default.handlebars->29->333"
1436
+ "default.handlebars->29->321",
1437
+ "default.handlebars->29->337"
1438
]
1439
},
1440
{
@@ -1465,7 +1465,7 @@
1465
"ru": "7-дневная статистика работы",
1466
"zh-chs": "7天電源狀態",
1467
"xloc": [
1468
- "default.handlebars->29->606"
1468
+ "default.handlebars->29->610"
1469
]
1470
},
1471
{
@@ -1518,8 +1518,8 @@
1518
"ru": "8 часов",
1519
"zh-chs": "8小時",
1520
"xloc": [
1521
- "default.handlebars->29->280",
1522
- "default.handlebars->29->294"
1521
+ "default.handlebars->29->284",
1522
+ "default.handlebars->29->298"
1523
]
1524
},
1525
{
@@ -1602,7 +1602,7 @@
1602
"ru": "<a href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\">Аппаратные ключи</a> используются в качестве дополнительной аутентификации.",
1603
"zh-chs": "<a href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\">硬件密鑰</a>用作輔助登錄身份驗證。",
1604
"xloc": [
1605
- "default.handlebars->29->122"
1605
+ "default.handlebars->29->126"
1606
]
1607
},
1608
{
@@ -1705,7 +1705,7 @@
1705
"zh-chs": "ACM",
1706
"xloc": [
1707
"default-mobile.handlebars->9->185",
1708
- "default.handlebars->29->467"
1708
+ "default.handlebars->29->471"
1709
]
1710
},
1711
{
@@ -1722,8 +1722,8 @@
1722
"ru": "AMT",
1723
"zh-chs": "AMT",
1724
"xloc": [
1725
- "default.handlebars->29->172",
1726
- "default.handlebars->29->365"
1725
+ "default.handlebars->29->176",
1726
+ "default.handlebars->29->369"
1727
]
1728
},
1729
{
@@ -1812,7 +1812,7 @@
1812
"ru": "Отказано в доступе",
1813
"zh-chs": "拒絕訪問",
1814
"xloc": [
1815
- "default.handlebars->29->808"
1815
+ "default.handlebars->29->812"
1816
]
1817
},
1818
{
@@ -1847,7 +1847,7 @@
1847
"ru": "Доступ к файлам сервера",
1848
"zh-chs": "訪問服務器文件",
1849
"xloc": [
1850
- "default.handlebars->29->1506"
1850
+ "default.handlebars->29->1510"
1851
]
1852
},
1853
{
@@ -1922,10 +1922,10 @@
1922
"default-mobile.handlebars->9->55",
1923
"default-mobile.handlebars->9->57",
1924
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0",
1925
- "default.handlebars->29->1067",
1926
- "default.handlebars->29->1069",
1927
- "default.handlebars->29->439",
1928
- "default.handlebars->29->441"
1925
+ "default.handlebars->29->1071",
1926
+ "default.handlebars->29->1073",
1927
+ "default.handlebars->29->443",
1928
+ "default.handlebars->29->445"
1929
]
1930
},
1931
{
@@ -1956,8 +1956,8 @@
1956
"zh-chs": "帐户已被锁定",
1957
"es": "La cuenta esta bloqueada",
1958
"xloc": [
1959
- "default.handlebars->29->1380",
1960
- "default.handlebars->29->1503"
1959
+ "default.handlebars->29->1384",
1960
+ "default.handlebars->29->1507"
1961
]
1962
},
1963
{
@@ -2045,7 +2045,7 @@
2045
"ru": "Действиe",
2046
"zh-chs": "行動",
2047
"xloc": [
2048
- "default.handlebars->29->813",
2048
+ "default.handlebars->29->817",
2049
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2050
]
2051
},
@@ -2063,8 +2063,8 @@
2063
"ru": "Файл действий",
2064
"zh-chs": "動作文件",
2065
"xloc": [
2066
- "default.handlebars->29->647",
2067
- "default.handlebars->29->649"
2066
+ "default.handlebars->29->651",
2067
+ "default.handlebars->29->653"
2068
]
2069
},
2070
{
@@ -2083,7 +2083,7 @@
2083
"xloc": [
2084
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
2085
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
2086
- "default.handlebars->29->511",
2086
+ "default.handlebars->29->515",
2087
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
2088
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
2089
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -2139,9 +2139,9 @@
2139
"xloc": [
2140
"default-mobile.handlebars->9->180",
2141
"default-mobile.handlebars->9->182",
2142
- "default.handlebars->29->460",
2143
- "default.handlebars->29->462",
2144
- "default.handlebars->29->778"
2142
+ "default.handlebars->29->464",
2143
+ "default.handlebars->29->466",
2144
+ "default.handlebars->29->782"
2145
]
2146
},
2147
{
@@ -2158,10 +2158,10 @@
2158
"ru": "Активация",
2159
"zh-chs": "激活",
2160
"xloc": [
2161
- "default.handlebars->29->1141",
2162
- "default.handlebars->29->1143",
2163
- "default.handlebars->29->214",
2164
- "default.handlebars->29->216"
2161
+ "default.handlebars->29->1145",
2162
+ "default.handlebars->29->1147",
2163
+ "default.handlebars->29->218",
2164
+ "default.handlebars->29->220"
2165
]
2166
},
2167
{
@@ -2178,7 +2178,7 @@
2178
"ru": "Активный пользователь",
2179
"zh-chs": "活動用戶{0}",
2180
"xloc": [
2181
- "default.handlebars->29->486"
2181
+ "default.handlebars->29->490"
2182
]
2183
},
2184
{
@@ -2195,8 +2195,8 @@
2195
"ru": "Добавить агент",
2196
"zh-chs": "添加代理",
2197
"xloc": [
2198
- "default.handlebars->29->1145",
2199
- "default.handlebars->29->218"
2198
+ "default.handlebars->29->1149",
2199
+ "default.handlebars->29->222"
2200
]
2201
},
2202
{
@@ -2213,7 +2213,7 @@
2213
"ru": "Добавить CIRA",
2214
"zh-chs": "添加CIRA",
2215
"xloc": [
2216
- "default.handlebars->29->208"
2216
+ "default.handlebars->29->212"
2217
]
2218
},
2219
{
@@ -2230,8 +2230,8 @@
2230
"zh-chs": "添加設備",
2231
"es": "Agregar Dispositivo",
2232
"xloc": [
2233
- "default.handlebars->29->1480",
2234
- "default.handlebars->29->1584"
2233
+ "default.handlebars->29->1484",
2234
+ "default.handlebars->29->1588"
2235
]
2236
},
2237
{
@@ -2248,7 +2248,7 @@
2248
"ru": "Добавить событие к устройству",
2249
"zh-chs": "添加設備事件",
2250
"xloc": [
2251
- "default.handlebars->29->589"
2251
+ "default.handlebars->29->593"
2252
]
2253
},
2254
{
@@ -2265,17 +2265,17 @@
2265
"ru": "Добавить группу устройств",
2266
"zh-chs": "添加設備組",
2267
"xloc": [
2268
- "default.handlebars->29->1235",
2269
- "default.handlebars->29->1474",
2270
- "default.handlebars->29->1572",
2271
- "default.handlebars->29->189"
2268
+ "default.handlebars->29->1239",
2269
+ "default.handlebars->29->1478",
2270
+ "default.handlebars->29->1576",
2271
+ "default.handlebars->29->193"
2272
]
2273
},
2274
{
2275
"en": "Add Device Group Permissions",
2276
"nl": "Machtigingen voor apparaatgroep toevoegen",
2277
"xloc": [
2278
- "default.handlebars->29->1232"
2278
+ "default.handlebars->29->1236"
2279
]
2280
},
2281
{
@@ -2289,8 +2289,8 @@
2289
"zh-chs": "添加设备权限",
2290
"es": "Agregar permisos de dispositivo",
2291
"xloc": [
2292
- "default.handlebars->29->1237",
2293
- "default.handlebars->29->1239"
2292
+ "default.handlebars->29->1241",
2293
+ "default.handlebars->29->1243"
2294
]
2295
},
2296
{
@@ -2307,7 +2307,7 @@
2307
"ru": "Добавить Intel® AMT CIRA устройство",
2308
"zh-chs": "添加英特爾®AMT CIRA設備",
2309
"xloc": [
2310
- "default.handlebars->29->264"
2310
+ "default.handlebars->29->268"
2311
]
2312
},
2313
{
@@ -2324,7 +2324,7 @@
2324
"ru": "Добавить Intel® AMT устройство",
2325
"zh-chs": "添加英特爾®AMT設備",
2326
"xloc": [
2327
- "default.handlebars->29->231"
2327
+ "default.handlebars->29->235"
2328
]
2329
},
2330
{
@@ -2341,7 +2341,7 @@
2341
"ru": "Добавить ключ",
2342
"zh-chs": "新增金鑰",
2343
"xloc": [
2344
- "default.handlebars->29->126"
2344
+ "default.handlebars->29->130"
2345
]
2346
},
2347
{
@@ -2358,7 +2358,7 @@
2358
"ru": "Добавить локально",
2359
"zh-chs": "添加本地",
2360
"xloc": [
2361
- "default.handlebars->29->210"
2361
+ "default.handlebars->29->214"
2362
]
2363
},
2364
{
@@ -2375,7 +2375,7 @@
2375
"ru": "Добавить участие",
2376
"zh-chs": "添加會員",
2377
"xloc": [
2378
- "default.handlebars->29->1600"
2378
+ "default.handlebars->29->1604"
2379
]
2380
},
2381
{
@@ -2392,7 +2392,7 @@
2392
"ru": "Добавить Mesh Agent",
2393
"zh-chs": "添加網格代理",
2394
"xloc": [
2395
- "default.handlebars->29->336"
2395
+ "default.handlebars->29->340"
2396
]
2397
},
2398
{
@@ -2409,12 +2409,12 @@
2409
"ru": "Добавить ключ безопасности",
2410
"zh-chs": "添加安全密鑰",
2411
"xloc": [
2412
- "default.handlebars->29->129",
2413
- "default.handlebars->29->131",
2414
- "default.handlebars->29->134",
2412
+ "default.handlebars->29->133",
2413
"default.handlebars->29->135",
2416
- "default.handlebars->29->835",
2417
- "default.handlebars->29->836"
2414
+ "default.handlebars->29->138",
2415
+ "default.handlebars->29->139",
2416
+ "default.handlebars->29->839",
2417
+ "default.handlebars->29->840"
2418
]
2419
},
2420
{
@@ -2432,7 +2432,7 @@
2432
"zh-chs": "添加用戶",
2433
"xloc": [
2434
"default-mobile.handlebars->9->281",
2435
- "default.handlebars->29->546"
2435
+ "default.handlebars->29->550"
2436
]
2437
},
2438
{
@@ -2446,7 +2446,7 @@
2446
"zh-chs": "添加用户设备权限",
2447
"es": "Agregar permisos del usuario del dispositivo",
2448
"xloc": [
2449
- "default.handlebars->29->1242"
2449
+ "default.handlebars->29->1246"
2450
]
2451
},
2452
{
@@ -2463,16 +2463,16 @@
2463
"ru": "Добавить группу пользователей",
2464
"zh-chs": "添加用戶組",
2465
"xloc": [
2466
- "default.handlebars->29->1135",
2467
- "default.handlebars->29->1234",
2468
- "default.handlebars->29->1578",
2469
- "default.handlebars->29->547"
2466
+ "default.handlebars->29->1139",
2467
+ "default.handlebars->29->1238",
2468
+ "default.handlebars->29->1582",
2469
+ "default.handlebars->29->551"
2470
]
2471
},
2472
{
2473
"en": "Add User Group Device Permissions",
2474
"xloc": [
2475
- "default.handlebars->29->1244"
2475
+ "default.handlebars->29->1248"
2476
]
2477
},
2478
{
@@ -2510,8 +2510,8 @@
2510
"ru": "Добавить пользователей",
2511
"zh-chs": "添加用戶",
2512
"xloc": [
2513
- "default.handlebars->29->1134",
2514
- "default.handlebars->29->1469"
2513
+ "default.handlebars->29->1138",
2514
+ "default.handlebars->29->1473"
2515
]
2516
},
2517
{
@@ -2528,7 +2528,7 @@
2528
"ru": "Добавить пользователей в группу устройств",
2529
"zh-chs": "將用戶添加到設備組",
2530
"xloc": [
2531
- "default.handlebars->29->1231"
2531
+ "default.handlebars->29->1235"
2532
]
2533
},
2534
{
@@ -2545,7 +2545,7 @@
2545
"ru": "Добавить пользователей в группу",
2546
"zh-chs": "將用戶添加到用戶組",
2547
"xloc": [
2548
- "default.handlebars->29->1502"
2548
+ "default.handlebars->29->1506"
2549
]
2550
},
2551
{
@@ -2562,7 +2562,7 @@
2562
"ru": "Добавить YubiKey® OTP",
2563
"zh-chs": "添加YubiKey®OTP",
2564
"xloc": [
2565
- "default.handlebars->29->127"
2565
+ "default.handlebars->29->131"
2566
]
2567
},
2568
{
@@ -2579,7 +2579,7 @@
2579
"ru": "Добавить новый Intel® AMT компьютер сканированием локальной сети.",
2580
"zh-chs": "通過掃描本地網絡添加新的英特爾®AMT計算機。",
2581
"xloc": [
2582
- "default.handlebars->29->211"
2582
+ "default.handlebars->29->215"
2583
]
2584
},
2585
{
@@ -2596,8 +2596,8 @@
2596
"ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.",
2597
"zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。",
2598
"xloc": [
2599
- "default.handlebars->29->1136",
2600
- "default.handlebars->29->207"
2599
+ "default.handlebars->29->1140",
2600
+ "default.handlebars->29->211"
2601
]
2602
},
2603
{
@@ -2614,8 +2614,8 @@
2614
"ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.",
2615
"zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。",
2616
"xloc": [
2617
- "default.handlebars->29->1138",
2618
- "default.handlebars->29->209"
2617
+ "default.handlebars->29->1142",
2618
+ "default.handlebars->29->213"
2619
]
2620
},
2621
{
@@ -2632,15 +2632,15 @@
2632
"ru": "Добавить новое Intel® AMT устройство к группе устройств \\\"{0}\\\".",
2633
"zh-chs": "將新的英特爾®AMT設備添加到設備組“{0}”。",
2634
"xloc": [
2635
- "default.handlebars->29->221"
2635
+ "default.handlebars->29->225"
2636
]
2637
},
2638
{
2639
"en": "Add a new computer to this device group by installing the mesh agent.",
2640
"nl": "Voeg een nieuwe computer toe aan deze apparaatgroep door de mesh-agent te installeren.",
2641
"xloc": [
2642
- "default.handlebars->29->1144",
2643
- "default.handlebars->29->217"
2642
+ "default.handlebars->29->1148",
2643
+ "default.handlebars->29->221"
2644
]
2645
},
2646
{
@@ -2657,7 +2657,7 @@
2657
"ru": "Адрес",
2658
"zh-chs": "地址",
2659
"xloc": [
2660
- "default.handlebars->29->185"
2660
+ "default.handlebars->29->189"
2661
]
2662
},
2663
{
@@ -2691,7 +2691,7 @@
2691
"ru": "Режим управления администратора (ACM)",
2692
"zh-chs": "管理員控制模式(ACM)",
2693
"xloc": [
2694
- "default.handlebars->29->780"
2694
+ "default.handlebars->29->784"
2695
]
2696
},
2697
{
@@ -2708,7 +2708,7 @@
2708
"zh-chs": "管理員憑證",
2709
"es": "Credenciales del Administrador",
2710
"xloc": [
2711
- "default.handlebars->29->786"
2711
+ "default.handlebars->29->790"
2712
]
2713
},
2714
{
@@ -2743,7 +2743,7 @@
2743
"ru": "Области администратора",
2744
"zh-chs": "管理領域",
2745
"xloc": [
2746
- "default.handlebars->29->1529"
2746
+ "default.handlebars->29->1533"
2747
]
2748
},
2749
{
@@ -2778,7 +2778,7 @@
2778
"ru": "Административные области",
2779
"zh-chs": "行政領域",
2780
"xloc": [
2781
- "default.handlebars->29->1427"
2781
+ "default.handlebars->29->1431"
2782
]
2783
},
2784
{
@@ -2795,7 +2795,7 @@
2795
"ru": "Администратор",
2796
"zh-chs": "管理員",
2797
"xloc": [
2798
- "default.handlebars->29->1373"
2798
+ "default.handlebars->29->1377"
2799
]
2800
},
2801
{
@@ -2812,7 +2812,7 @@
2812
"ru": "Африканский",
2813
"zh-chs": "南非語",
2814
"xloc": [
2815
- "default.handlebars->29->838"
2815
+ "default.handlebars->29->842"
2816
]
2817
},
2818
{
@@ -2832,10 +2832,10 @@
2832
"default-mobile.handlebars->9->124",
2833
"default-mobile.handlebars->9->177",
2834
"default-mobile.handlebars->9->193",
2835
- "default.handlebars->29->1296",
2836
- "default.handlebars->29->1302",
2837
- "default.handlebars->29->168",
2838
- "default.handlebars->29->361",
2835
+ "default.handlebars->29->1300",
2836
+ "default.handlebars->29->1306",
2837
+ "default.handlebars->29->172",
2838
+ "default.handlebars->29->365",
2839
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
2840
]
2841
},
@@ -2853,8 +2853,8 @@
2853
"ru": "Агент + Intel AMT",
2854
"zh-chs": "代理+英特爾AMT",
2855
"xloc": [
2856
- "default.handlebars->29->1298",
2857
- "default.handlebars->29->1304"
2856
+ "default.handlebars->29->1302",
2857
+ "default.handlebars->29->1308"
2858
]
2859
},
2860
{
@@ -2889,7 +2889,7 @@
2889
"zh-chs": "代理控制台",
2890
"xloc": [
2891
"default-mobile.handlebars->9->316",
2892
- "default.handlebars->29->1252"
2892
+ "default.handlebars->29->1256"
2893
]
2894
},
2895
{
@@ -2906,7 +2906,7 @@
2906
"ru": "Счетчик ошибок агента",
2907
"zh-chs": "座席錯誤計數器",
2908
"xloc": [
2909
- "default.handlebars->29->1613"
2909
+ "default.handlebars->29->1617"
2910
]
2911
},
2912
{
@@ -2975,7 +2975,7 @@
2975
"ru": "Сессии агентов",
2976
"zh-chs": "座席會議",
2977
"xloc": [
2978
- "default.handlebars->29->1629"
2978
+ "default.handlebars->29->1633"
2979
]
2980
},
2981
{
@@ -2993,7 +2993,7 @@
2993
"zh-chs": "代理商標籤",
2994
"xloc": [
2995
"default-mobile.handlebars->9->192",
2996
- "default.handlebars->29->479"
2996
+ "default.handlebars->29->483"
2997
]
2998
},
2999
{
@@ -3010,7 +3010,7 @@
3010
"ru": "Типы агента",
3011
"zh-chs": "代理類型",
3012
"xloc": [
3013
- "default.handlebars->29->1300",
3013
+ "default.handlebars->29->1304",
3014
"default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
3015
]
3016
},
@@ -3028,9 +3028,9 @@
3028
"ru": "Агент подключен",
3029
"zh-chs": "代理已連接",
3030
"xloc": [
3031
- "default.handlebars->29->137",
3032
- "default.handlebars->29->537",
3033
- "default.handlebars->29->538"
3031
+ "default.handlebars->29->141",
3032
+ "default.handlebars->29->541",
3033
+ "default.handlebars->29->542"
3034
]
3035
},
3036
{
@@ -3047,7 +3047,7 @@
3047
"ru": "Агент отключился",
3048
"zh-chs": "代理已斷開連接",
3049
"xloc": [
3050
- "default.handlebars->29->141"
3050
+ "default.handlebars->29->145"
3051
]
3052
},
3053
{
@@ -3064,7 +3064,7 @@
3064
"ru": "Агент оффлайн",
3065
"zh-chs": "代理離線",
3066
"xloc": [
3067
- "default.handlebars->29->806"
3067
+ "default.handlebars->29->810"
3068
]
3069
},
3070
{
@@ -3081,7 +3081,7 @@
3081
"ru": "Агент онлайн",
3082
"zh-chs": "代理在線",
3083
"xloc": [
3084
- "default.handlebars->29->805"
3084
+ "default.handlebars->29->809"
3085
]
3086
},
3087
{
@@ -3098,7 +3098,7 @@
3098
"ru": "Агенты",
3099
"zh-chs": "代理商",
3100
"xloc": [
3101
- "default.handlebars->29->1642"
3101
+ "default.handlebars->29->1646"
3102
]
3103
},
3104
{
@@ -3115,7 +3115,7 @@
3115
"ru": "Албанский",
3116
"zh-chs": "阿爾巴尼亞語",
3117
"xloc": [
3118
- "default.handlebars->29->839"
3118
+ "default.handlebars->29->843"
3119
]
3120
},
3121
{
@@ -3168,9 +3168,9 @@
3168
"ru": "Фокусирование всех",
3169
"zh-chs": "全部聚焦",
3170
"xloc": [
3171
- "default.handlebars->29->668",
3172
- "default.handlebars->29->670",
3173
- "default.handlebars->29->671"
3171
+ "default.handlebars->29->672",
3172
+ "default.handlebars->29->674",
3173
+ "default.handlebars->29->675"
3174
]
3175
},
3176
{
@@ -3187,8 +3187,8 @@
3187
"ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.",
3188
"zh-chs": "允許用戶管理此設備組和該組中的設備。",
3189
"xloc": [
3190
- "default.handlebars->29->1201",
3191
- "default.handlebars->29->1499"
3190
+ "default.handlebars->29->1205",
3191
+ "default.handlebars->29->1503"
3192
]
3193
},
3194
{
@@ -3202,7 +3202,7 @@
3202
"zh-chs": "允许用户管理此设备。",
3203
"es": "Permitir al usuario administrar este dispositivo",
3204
"xloc": [
3205
- "default.handlebars->29->1202"
3205
+ "default.handlebars->29->1206"
3206
]
3207
},
3208
{
@@ -3255,7 +3255,7 @@
3255
"ru": "Поменять (F10 = ESC+0)",
3256
"zh-chs": "備用(F10 = ESC + 0)",
3257
"xloc": [
3258
- "default.handlebars->29->703"
3258
+ "default.handlebars->29->707"
3259
]
3260
},
3261
{
@@ -3289,9 +3289,9 @@
3289
"ru": "Всегда уведомлять",
3290
"zh-chs": "始終通知",
3291
"xloc": [
3292
- "default.handlebars->29->1115",
3293
- "default.handlebars->29->1538",
3294
- "default.handlebars->29->495"
3292
+ "default.handlebars->29->1119",
3293
+ "default.handlebars->29->1542",
3294
+ "default.handlebars->29->499"
3295
]
3296
},
3297
{
@@ -3308,9 +3308,9 @@
3308
"ru": "Всегда запрашивать",
3309
"zh-chs": "總是提示",
3310
"xloc": [
3311
- "default.handlebars->29->1116",
3312
- "default.handlebars->29->1539",
3313
- "default.handlebars->29->496"
3311
+ "default.handlebars->29->1120",
3312
+ "default.handlebars->29->1543",
3313
+ "default.handlebars->29->500"
3314
]
3315
},
3316
{
@@ -3414,7 +3414,7 @@
3414
"ru": "Антивирус",
3415
"zh-chs": "防毒軟件",
3416
"xloc": [
3417
- "default.handlebars->29->485"
3417
+ "default.handlebars->29->489"
3418
]
3419
},
3420
{
@@ -3431,7 +3431,7 @@
3431
"ru": "Любые поддерживаемые",
3432
"zh-chs": "任何支持",
3433
"xloc": [
3434
- "default.handlebars->29->274"
3434
+ "default.handlebars->29->278"
3435
]
3436
},
3437
{
@@ -3448,7 +3448,7 @@
3448
"ru": "Apple MacOS",
3449
"zh-chs": "蘋果MacOS",
3450
"xloc": [
3451
- "default.handlebars->29->304"
3451
+ "default.handlebars->29->308"
3452
]
3453
},
3454
{
@@ -3465,7 +3465,7 @@
3465
"ru": "Только Apple MacOS",
3466
"zh-chs": "僅限Apple MacOS",
3467
"xloc": [
3468
- "default.handlebars->29->276"
3468
+ "default.handlebars->29->280"
3469
]
3470
},
3471
{
@@ -3499,7 +3499,7 @@
3499
"zh-chs": "阿拉伯文(阿爾及利亞)",
3500
"es": "Arabe (Algeria)",
3501
"xloc": [
3502
- "default.handlebars->29->841"
3502
+ "default.handlebars->29->845"
3503
]
3504
},
3505
{
@@ -3516,7 +3516,7 @@
3516
"zh-chs": "阿拉伯文(巴林)",
3517
"es": "Arabe (Bahrain)",
3518
"xloc": [
3519
- "default.handlebars->29->842"
3519
+ "default.handlebars->29->846"
3520
]
3521
},
3522
{
@@ -3533,7 +3533,7 @@
3533
"zh-chs": "阿拉伯文(埃及)",
3534
"es": "Arabe (Egipto)",
3535
"xloc": [
3536
- "default.handlebars->29->843"
3536
+ "default.handlebars->29->847"
3537
]
3538
},
3539
{
@@ -3550,7 +3550,7 @@
3550
"zh-chs": "阿拉伯文(伊拉克)",
3551
"es": "Arabe (Irak)",
3552
"xloc": [
3553
- "default.handlebars->29->844"
3553
+ "default.handlebars->29->848"
3554
]
3555
},
3556
{
@@ -3567,7 +3567,7 @@
3567
"zh-chs": "阿拉伯語(約旦)",
3568
"es": "Árabe (Jordania)",
3569
"xloc": [
3570
- "default.handlebars->29->845"
3570
+ "default.handlebars->29->849"
3571
]
3572
},
3573
{
@@ -3584,7 +3584,7 @@
3584
"zh-chs": "阿拉伯文(科威特)",
3585
"es": "Árabe (Kuwait)",
3586
"xloc": [
3587
- "default.handlebars->29->846"
3587
+ "default.handlebars->29->850"
3588
]
3589
},
3590
{
@@ -3601,7 +3601,7 @@
3601
"zh-chs": "阿拉伯語(黎巴嫩)",
3602
"es": "Árabe (Líbano)",
3603
"xloc": [
3604
- "default.handlebars->29->847"
3604
+ "default.handlebars->29->851"
3605
]
3606
},
3607
{
@@ -3618,7 +3618,7 @@
3618
"zh-chs": "阿拉伯文(利比亞)",
3619
"es": "Árabe (Libia)",
3620
"xloc": [
3621
- "default.handlebars->29->848"
3621
+ "default.handlebars->29->852"
3622
]
3623
},
3624
{
@@ -3635,7 +3635,7 @@
3635
"zh-chs": "阿拉伯文(摩洛哥)",
3636
"es": "Árabe (Marruecos)",
3637
"xloc": [
3638
- "default.handlebars->29->849"
3638
+ "default.handlebars->29->853"
3639
]
3640
},
3641
{
@@ -3652,7 +3652,7 @@
3652
"zh-chs": "阿拉伯文(阿曼)",
3653
"es": "Árabe (Omán)",
3654
"xloc": [
3655
- "default.handlebars->29->850"
3655
+ "default.handlebars->29->854"
3656
]
3657
},
3658
{
@@ -3669,7 +3669,7 @@
3669
"zh-chs": "阿拉伯語(卡塔爾)",
3670
"es": "Árabe (Qatar)",
3671
"xloc": [
3672
- "default.handlebars->29->851"
3672
+ "default.handlebars->29->855"
3673
]
3674
},
3675
{
@@ -3686,7 +3686,7 @@
3686
"zh-chs": "阿拉伯語(沙特阿拉伯)",
3687
"es": "Árabe (Arabia Saudita)",
3688
"xloc": [
3689
- "default.handlebars->29->852"
3689
+ "default.handlebars->29->856"
3690
]
3691
},
3692
{
@@ -3703,7 +3703,7 @@
3703
"zh-chs": "阿拉伯語(標準)",
3704
"es": "Árabe (estándar)",
3705
"xloc": [
3706
- "default.handlebars->29->840"
3706
+ "default.handlebars->29->844"
3707
]
3708
},
3709
{
@@ -3720,7 +3720,7 @@
3720
"zh-chs": "阿拉伯語(敘利亞)",
3721
"es": "Árabe (Siria)",
3722
"xloc": [
3723
- "default.handlebars->29->853"
3723
+ "default.handlebars->29->857"
3724
]
3725
},
3726
{
@@ -3737,7 +3737,7 @@
3737
"zh-chs": "阿拉伯文(突尼斯)",
3738
"es": "Árabe (Túnez)",
3739
"xloc": [
3740
- "default.handlebars->29->854"
3740
+ "default.handlebars->29->858"
3741
]
3742
},
3743
{
@@ -3754,7 +3754,7 @@
3754
"zh-chs": "阿拉伯文(阿聯酋)",
3755
"es": "Árabe (U.A.E.)",
3756
"xloc": [
3757
- "default.handlebars->29->855"
3757
+ "default.handlebars->29->859"
3758
]
3759
},
3760
{
@@ -3771,7 +3771,7 @@
3771
"zh-chs": "阿拉伯文(也門)",
3772
"es": "Árabe (Yemen)",
3773
"xloc": [
3774
- "default.handlebars->29->856"
3774
+ "default.handlebars->29->860"
3775
]
3776
},
3777
{
@@ -3788,7 +3788,7 @@
3788
"zh-chs": "阿拉貢人",
3789
"es": "Aragonés",
3790
"xloc": [
3791
- "default.handlebars->29->857"
3791
+ "default.handlebars->29->861"
3792
]
3793
},
3794
{
@@ -3805,7 +3805,7 @@
3805
"ru": "Архитектура",
3806
"zh-chs": "建築",
3807
"xloc": [
3808
- "default.handlebars->29->754"
3808
+ "default.handlebars->29->758"
3809
]
3810
},
3811
{
@@ -3822,7 +3822,7 @@
3822
"ru": "Вы действительно хотите подключиться к {0} устройствам?",
3823
"zh-chs": "您確定要連接到{0}設備嗎?",
3824
"xloc": [
3825
- "default.handlebars->29->202"
3825
+ "default.handlebars->29->206"
3826
]
3827
},
3828
{
@@ -3840,7 +3840,7 @@
3840
"zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。",
3841
"xloc": [
3842
"default-mobile.handlebars->9->287",
3843
- "default.handlebars->29->1179"
3843
+ "default.handlebars->29->1183"
3844
]
3845
},
3846
{
@@ -3857,7 +3857,7 @@
3857
"ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?",
3858
"zh-chs": "您確定要刪除節點{0}嗎?",
3859
"xloc": [
3860
- "default.handlebars->29->628"
3860
+ "default.handlebars->29->632"
3861
]
3862
},
3863
{
@@ -3874,7 +3874,7 @@
3874
"ru": "Вы действительно хотите деинсталировать выбранного агента?",
3875
"zh-chs": "您確定要卸載所選代理嗎?",
3876
"xloc": [
3877
- "default.handlebars->29->617"
3877
+ "default.handlebars->29->621"
3878
]
3879
},
3880
{
@@ -3891,7 +3891,7 @@
3891
"ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?",
3892
"zh-chs": "您確定要卸載所選的{0}代理嗎?",
3893
"xloc": [
3894
- "default.handlebars->29->616"
3894
+ "default.handlebars->29->620"
3895
]
3896
},
3897
{
@@ -3908,7 +3908,7 @@
3908
"ru": "Вы уверенны, что {0} плагин: {1}",
3909
"zh-chs": "您確定要{0}插件嗎:{1}",
3910
"xloc": [
3911
- "default.handlebars->29->1682"
3911
+ "default.handlebars->29->1686"
3912
]
3913
},
3914
{
@@ -3925,7 +3925,7 @@
3925
"zh-chs": "亞美尼亞人",
3926
"es": "Armenio",
3927
"xloc": [
3928
- "default.handlebars->29->858"
3928
+ "default.handlebars->29->862"
3929
]
3930
},
3931
{
@@ -3956,7 +3956,7 @@
3956
"zh-chs": "阿薩姆語",
3957
"es": "Asamés",
3958
"xloc": [
3959
- "default.handlebars->29->859"
3959
+ "default.handlebars->29->863"
3960
]
3961
},
3962
{
@@ -3973,7 +3973,7 @@
3973
"zh-chs": "阿斯圖里亞斯人",
3974
"es": "Asturiano",
3975
"xloc": [
3976
- "default.handlebars->29->860"
3976
+ "default.handlebars->29->864"
3977
]
3978
},
3979
{
@@ -3990,7 +3990,7 @@
3990
"ru": "Приложение аутентификации",
3991
"zh-chs": "身份驗證應用",
3992
"xloc": [
3993
- "default.handlebars->29->1542"
3993
+ "default.handlebars->29->1546"
3994
]
3995
},
3996
{
@@ -4011,10 +4011,10 @@
4011
"default-mobile.handlebars->9->21",
4012
"default-mobile.handlebars->9->33",
4013
"default-mobile.handlebars->9->35",
4014
- "default.handlebars->29->105",
4015
- "default.handlebars->29->110",
4016
- "default.handlebars->29->824",
4017
- "default.handlebars->29->826"
4014
+ "default.handlebars->29->109",
4015
+ "default.handlebars->29->114",
4016
+ "default.handlebars->29->828",
4017
+ "default.handlebars->29->830"
4018
]
4019
},
4020
{
@@ -4031,7 +4031,7 @@
4031
"ru": "Приложение для аутентификации активированно успешно.",
4032
"zh-chs": "身份驗證器應用程序激活成功。",
4033
"xloc": [
4034
- "default.handlebars->29->106"
4034
+ "default.handlebars->29->110"
4035
]
4036
},
4037
{
@@ -4048,7 +4048,7 @@
4048
"ru": "Приложение для аутентификации удалено.",
4049
"zh-chs": "身份驗證器應用程序已刪除。",
4050
"xloc": [
4051
- "default.handlebars->29->111"
4051
+ "default.handlebars->29->115"
4052
]
4053
},
4054
{
@@ -4082,7 +4082,7 @@
4082
"ru": "Автоудаление",
4083
"zh-chs": "自動刪除",
4084
"xloc": [
4085
- "default.handlebars->29->1103"
4085
+ "default.handlebars->29->1107"
4086
]
4087
},
4088
{
@@ -4136,7 +4136,7 @@
4136
"zh-chs": "阿塞拜疆",
4137
"es": "Azerbaiyano",
4138
"xloc": [
4139
- "default.handlebars->29->861"
4139
+ "default.handlebars->29->865"
4140
]
4141
},
4142
{
@@ -4153,7 +4153,7 @@
4153
"ru": "BIOS",
4154
"zh-chs": "的BIOS",
4155
"xloc": [
4156
- "default.handlebars->29->792"
4156
+ "default.handlebars->29->796"
4157
]
4158
},
4159
{
@@ -4231,7 +4231,7 @@
4231
"ru": "Фоновый и интерактивный",
4232
"zh-chs": "背景與互動",
4233
"xloc": [
4234
- "default.handlebars->29->308"
4234
+ "default.handlebars->29->312"
4235
]
4236
},
4237
{
@@ -4248,9 +4248,9 @@
4248
"ru": "Фоновый и интерактивный",
4249
"zh-chs": "背景與互動",
4250
"xloc": [
4251
- "default.handlebars->29->1279",
4252
- "default.handlebars->29->1286",
4253
- "default.handlebars->29->286"
4251
+ "default.handlebars->29->1283",
4252
+ "default.handlebars->29->1290",
4253
+ "default.handlebars->29->290"
4254
]
4255
},
4256
{
@@ -4267,10 +4267,10 @@
4267
"ru": "Только фоновый",
4268
"zh-chs": "僅背景",
4269
"xloc": [
4270
- "default.handlebars->29->1280",
4271
- "default.handlebars->29->1287",
4272
- "default.handlebars->29->287",
4273
- "default.handlebars->29->309"
4270
+ "default.handlebars->29->1284",
4271
+ "default.handlebars->29->1291",
4272
+ "default.handlebars->29->291",
4273
+ "default.handlebars->29->313"
4274
]
4275
},
4276
{
@@ -4304,7 +4304,7 @@
4304
"ru": "Резервные коды",
4305
"zh-chs": "備用碼",
4306
"xloc": [
4307
- "default.handlebars->29->1544"
4307
+ "default.handlebars->29->1548"
4308
]
4309
},
4310
{
@@ -4321,7 +4321,7 @@
4321
"ru": "Плохой ключ",
4322
"zh-chs": "錯誤的簽名",
4323
"xloc": [
4324
- "default.handlebars->29->1620"
4324
+ "default.handlebars->29->1624"
4325
]
4326
},
4327
{
@@ -4338,7 +4338,7 @@
4338
"ru": "Плохой веб-сертификат",
4339
"zh-chs": "錯誤的網絡證書",
4340
"xloc": [
4341
- "default.handlebars->29->1619"
4341
+ "default.handlebars->29->1623"
4342
]
4343
},
4344
{
@@ -4355,7 +4355,7 @@
4355
"zh-chs": "巴斯克",
4356
"es": "Vasco",
4357
"xloc": [
4358
- "default.handlebars->29->862"
4358
+ "default.handlebars->29->866"
4359
]
4360
},
4361
{
@@ -4389,7 +4389,7 @@
4389
"zh-chs": "白俄羅斯語",
4390
"es": "Bielorruso",
4391
"xloc": [
4392
- "default.handlebars->29->864"
4392
+ "default.handlebars->29->868"
4393
]
4394
},
4395
{
@@ -4406,7 +4406,7 @@
4406
"zh-chs": "孟加拉",
4407
"es": "Bengalí",
4408
"xloc": [
4409
- "default.handlebars->29->865"
4409
+ "default.handlebars->29->869"
4410
]
4411
},
4412
{
@@ -4440,7 +4440,7 @@
4440
"zh-chs": "波斯尼亞人",
4441
"es": "Bosnio",
4442
"xloc": [
4443
- "default.handlebars->29->866"
4443
+ "default.handlebars->29->870"
4444
]
4445
},
4446
{
@@ -4457,7 +4457,7 @@
4457
"zh-chs": "布列塔尼",
4458
"es": "Bretón",
4459
"xloc": [
4460
- "default.handlebars->29->867"
4460
+ "default.handlebars->29->871"
4461
]
4462
},
4463
{
@@ -4474,7 +4474,7 @@
4474
"ru": "Отправить сообщение",
4475
"zh-chs": "廣播",
4476
"xloc": [
4477
- "default.handlebars->29->1467",
4477
+ "default.handlebars->29->1471",
4478
"default.handlebars->container->column_l->p4->3->1->0->3->1"
4479
]
4480
},
@@ -4492,7 +4492,7 @@
4492
"ru": "Отправить сообщение",
4493
"zh-chs": "廣播消息",
4494
"xloc": [
4495
- "default.handlebars->29->1412"
4495
+ "default.handlebars->29->1416"
4496
]
4497
},
4498
{
@@ -4509,7 +4509,7 @@
4509
"ru": "Отправить сообщение всем подключенным пользователям.",
4510
"zh-chs": "向所有連接的用戶廣播消息。",
4511
"xloc": [
4512
- "default.handlebars->29->1411"
4512
+ "default.handlebars->29->1415"
4513
]
4514
},
4515
{
@@ -4526,7 +4526,7 @@
4526
"zh-chs": "保加利亞語",
4527
"es": "Búlgaro",
4528
"xloc": [
4529
- "default.handlebars->29->863"
4529
+ "default.handlebars->29->867"
4530
]
4531
},
4532
{
@@ -4543,7 +4543,7 @@
4543
"zh-chs": "緬甸人",
4544
"es": "Birmano",
4545
"xloc": [
4546
- "default.handlebars->29->868"
4546
+ "default.handlebars->29->872"
4547
]
4548
},
4549
{
@@ -4561,7 +4561,7 @@
4561
"zh-chs": "CCM",
4562
"xloc": [
4563
"default-mobile.handlebars->9->184",
4564
- "default.handlebars->29->465"
4564
+ "default.handlebars->29->469"
4565
]
4566
},
4567
{
@@ -4579,10 +4579,10 @@
4579
"zh-chs": "CIRA",
4580
"xloc": [
4581
"default-mobile.handlebars->9->125",
4582
- "default.handlebars->29->1167",
4583
- "default.handlebars->29->1172",
4584
- "default.handlebars->29->170",
4585
- "default.handlebars->29->363"
4582
+ "default.handlebars->29->1171",
4583
+ "default.handlebars->29->1176",
4584
+ "default.handlebars->29->174",
4585
+ "default.handlebars->29->367"
4586
]
4587
},
4588
{
@@ -4599,7 +4599,7 @@
4599
"ru": "CIRA Сервер",
4600
"zh-chs": "CIRA服務器",
4601
"xloc": [
4602
- "default.handlebars->29->1670"
4602
+ "default.handlebars->29->1674"
4603
]
4604
},
4605
{
@@ -4616,7 +4616,7 @@
4616
"ru": "CIRA Сервер команды",
4617
"zh-chs": "CIRA服務器命令",
4618
"xloc": [
4619
- "default.handlebars->29->1671"
4619
+ "default.handlebars->29->1675"
4620
]
4621
},
4622
{
@@ -4633,7 +4633,7 @@
4633
"ru": "Загрузка CPU",
4634
"zh-chs": "CPU負載",
4635
"xloc": [
4636
- "default.handlebars->29->1634"
4636
+ "default.handlebars->29->1638"
4637
]
4638
},
4639
{
@@ -4650,7 +4650,7 @@
4650
"ru": "Загрузка CPU за последние 15 минут",
4651
"zh-chs": "最近15分鐘的CPU負載",
4652
"xloc": [
4653
- "default.handlebars->29->1637"
4653
+ "default.handlebars->29->1641"
4654
]
4655
},
4656
{
@@ -4667,7 +4667,7 @@
4667
"ru": "Загрузка CPU за последние 5 минут",
4668
"zh-chs": "最近5分鐘的CPU負載",
4669
"xloc": [
4670
- "default.handlebars->29->1636"
4670
+ "default.handlebars->29->1640"
4671
]
4672
},
4673
{
@@ -4684,7 +4684,7 @@
4684
"ru": "Загрузка CPU за последнюю минуту",
4685
"zh-chs": "最後一分鐘的CPU負載",
4686
"xloc": [
4687
- "default.handlebars->29->1635"
4687
+ "default.handlebars->29->1639"
4688
]
4689
},
4690
{
@@ -4701,8 +4701,8 @@
4701
"ru": "CR+LF",
4702
"zh-chs": "CR +低頻",
4703
"xloc": [
4704
- "default.handlebars->29->696",
4705
- "default.handlebars->29->705",
4704
+ "default.handlebars->29->700",
4705
+ "default.handlebars->29->709",
4706
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
4707
]
4708
},
@@ -4720,9 +4720,9 @@
4720
"ru": "Формат CSV",
4721
"zh-chs": "CSV格式",
4722
"xloc": [
4723
- "default.handlebars->29->1348",
4724
- "default.handlebars->29->1403",
4725
- "default.handlebars->29->390"
4723
+ "default.handlebars->29->1352",
4724
+ "default.handlebars->29->1407",
4725
+ "default.handlebars->29->394"
4726
]
4727
},
4728
{
@@ -4739,7 +4739,7 @@
4739
"ru": "Ошибка вызова",
4740
"zh-chs": "通話錯誤",
4741
"xloc": [
4742
- "default.handlebars->29->1683"
4742
+ "default.handlebars->29->1687"
4743
]
4744
},
4745
{
@@ -4758,7 +4758,7 @@
4758
"xloc": [
4759
"default-mobile.handlebars->9->44",
4760
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
4761
- "default.handlebars->29->1088",
4761
+ "default.handlebars->29->1092",
4762
"default.handlebars->container->dialog->idx_dlgButtonBar",
4763
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
4764
"login.handlebars->dialog->idx_dlgButtonBar",
@@ -4780,7 +4780,7 @@
4780
"ru": "Объем / Скорость",
4781
"zh-chs": "容量/速度",
4782
"xloc": [
4783
- "default.handlebars->29->799"
4783
+ "default.handlebars->29->803"
4784
]
4785
},
4786
{
@@ -4797,7 +4797,7 @@
4797
"ru": "Каталонский",
4798
"zh-chs": "加泰羅尼亞語",
4799
"xloc": [
4800
- "default.handlebars->29->869"
4800
+ "default.handlebars->29->873"
4801
]
4802
},
4803
{
@@ -4814,7 +4814,7 @@
4814
"ru": "Установить центр карты здесь",
4815
"zh-chs": "中心地圖在這裡",
4816
"xloc": [
4817
- "default.handlebars->29->430"
4817
+ "default.handlebars->29->434"
4818
]
4819
},
4820
{
@@ -4831,7 +4831,7 @@
4831
"ru": "Чаморро",
4832
"zh-chs": "查莫羅",
4833
"xloc": [
4834
- "default.handlebars->29->870"
4834
+ "default.handlebars->29->874"
4835
]
4836
},
4837
{
@@ -4848,7 +4848,7 @@
4848
"ru": "Смена email для {0}",
4849
"zh-chs": "更改{0}的電子郵件",
4850
"xloc": [
4851
- "default.handlebars->29->1561"
4851
+ "default.handlebars->29->1565"
4852
]
4853
},
4854
{
@@ -4865,9 +4865,9 @@
4865
"ru": "Смена группы",
4866
"zh-chs": "變更組",
4867
"xloc": [
4868
- "default.handlebars->29->518",
4869
- "default.handlebars->29->625",
4870
- "default.handlebars->29->626"
4868
+ "default.handlebars->29->522",
4869
+ "default.handlebars->29->629",
4870
+ "default.handlebars->29->630"
4871
]
4872
},
4873
{
@@ -4885,8 +4885,8 @@
4885
"zh-chs": "更改密碼",
4886
"xloc": [
4887
"default-mobile.handlebars->9->52",
4888
- "default.handlebars->29->1064",
4889
- "default.handlebars->29->1554"
4888
+ "default.handlebars->29->1068",
4889
+ "default.handlebars->29->1558"
4890
]
4891
},
4892
{
@@ -4903,7 +4903,7 @@
4903
"ru": "Смена пароля для {0}",
4904
"zh-chs": "更改{0}的密碼",
4905
"xloc": [
4906
- "default.handlebars->29->1568"
4906
+ "default.handlebars->29->1572"
4907
]
4908
},
4909
{
@@ -4973,7 +4973,7 @@
4973
"zh-chs": "更改該用戶的密碼",
4974
"es": "Cambiar la contraseña para este usuario",
4975
"xloc": [
4976
- "default.handlebars->29->1553"
4976
+ "default.handlebars->29->1557"
4977
]
4978
},
4979
{
@@ -5007,7 +5007,7 @@
5007
"ru": "Измените адрес электронной почты вашей учетной записи здесь.",
5008
"zh-chs": "在此處更改您的帳戶電子郵件地址。",
5009
"xloc": [
5010
- "default.handlebars->29->1051"
5010
+ "default.handlebars->29->1055"
5011
]
5012
},
5013
{
@@ -5024,7 +5024,7 @@
5024
"ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.",
5025
"zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
5026
"xloc": [
5027
- "default.handlebars->29->1057"
5027
+ "default.handlebars->29->1061"
5028
]
5029
},
5030
{
@@ -5041,7 +5041,7 @@
5041
"ru": "Изменение языка потребует перезагрузить страницу.",
5042
"zh-chs": "更改語言將需要刷新頁面。",
5043
"xloc": [
5044
- "default.handlebars->29->1036"
5044
+ "default.handlebars->29->1040"
5045
]
5046
},
5047
{
@@ -5058,9 +5058,9 @@
5058
"ru": "Чат",
5059
"zh-chs": "聊天室",
5060
"xloc": [
5061
- "default.handlebars->29->1365",
5062
- "default.handlebars->29->567",
5063
- "default.handlebars->29->586"
5061
+ "default.handlebars->29->1369",
5062
+ "default.handlebars->29->571",
5063
+ "default.handlebars->29->590"
5064
]
5065
},
5066
{
@@ -5079,8 +5079,8 @@
5079
"xloc": [
5080
"default-mobile.handlebars->9->308",
5081
"default-mobile.handlebars->9->326",
5082
- "default.handlebars->29->1229",
5083
- "default.handlebars->29->1263"
5082
+ "default.handlebars->29->1233",
5083
+ "default.handlebars->29->1267"
5084
]
5085
},
5086
{
@@ -5097,7 +5097,7 @@
5097
"ru": "Чеченский",
5098
"zh-chs": "車臣",
5099
"xloc": [
5100
- "default.handlebars->29->871"
5100
+ "default.handlebars->29->875"
5101
]
5102
},
5103
{
@@ -5114,7 +5114,7 @@
5114
"ru": "Установите флажок и нажмите ОК для очищения журнала ошибок.",
5115
"zh-chs": "檢查並單擊確定以清除錯誤日誌。",
5116
"xloc": [
5117
- "default.handlebars->29->102"
5117
+ "default.handlebars->29->105"
5118
]
5119
},
5120
{
@@ -5131,7 +5131,7 @@
5131
"ru": "Установите флажок и нажмите ОК для начала самообновления.",
5132
"zh-chs": "檢查並單擊確定以開始服務器自我更新。",
5133
"xloc": [
5134
- "default.handlebars->29->97"
5134
+ "default.handlebars->29->100"
5135
]
5136
},
5137
{
@@ -5165,8 +5165,8 @@
5165
"ru": "Проверка...",
5166
"zh-chs": "檢查...",
5167
"xloc": [
5168
- "default.handlebars->29->1677",
5169
- "default.handlebars->29->837"
5168
+ "default.handlebars->29->1681",
5169
+ "default.handlebars->29->841"
5170
]
5171
},
5172
{
@@ -5183,7 +5183,7 @@
5183
"ru": "Китайский",
5184
"zh-chs": "中文",
5185
"xloc": [
5186
- "default.handlebars->29->872"
5186
+ "default.handlebars->29->876"
5187
]
5188
},
5189
{
@@ -5200,7 +5200,7 @@
5200
"zh-chs": "中文(香港)",
5201
"es": "Chino (Hong Kong)",
5202
"xloc": [
5203
- "default.handlebars->29->873"
5203
+ "default.handlebars->29->877"
5204
]
5205
},
5206
{
@@ -5217,7 +5217,7 @@
5217
"zh-chs": "中文(中國)",
5218
"es": "Chino (PRC)",
5219
"xloc": [
5220
- "default.handlebars->29->874"
5220
+ "default.handlebars->29->878"
5221
]
5222
},
5223
{
@@ -5232,7 +5232,7 @@
5232
"zh-chs": "简体中文)",
5233
"es": "Chino (simplificado)",
5234
"xloc": [
5235
- "default.handlebars->29->1034"
5235
+ "default.handlebars->29->1038"
5236
]
5237
},
5238
{
@@ -5249,7 +5249,7 @@
5249
"zh-chs": "中文(新加坡)",
5250
"es": "Chino (Singapur)",
5251
"xloc": [
5252
- "default.handlebars->29->875"
5252
+ "default.handlebars->29->879"
5253
]
5254
},
5255
{
@@ -5266,7 +5266,7 @@
5266
"zh-chs": "中文(台灣)",
5267
"es": "Chino (Taiwán)",
5268
"xloc": [
5269
- "default.handlebars->29->876"
5269
+ "default.handlebars->29->880"
5270
]
5271
},
5272
{
@@ -5301,7 +5301,7 @@
5301
"zh-chs": "楚瓦什",
5302
"es": "Chuvash",
5303
"xloc": [
5304
- "default.handlebars->29->877"
5304
+ "default.handlebars->29->881"
5305
]
5306
},
5307
{
@@ -5318,7 +5318,7 @@
5318
"ru": "Очистка CIRA",
5319
"zh-chs": "清理CIRA",
5320
"xloc": [
5321
- "default.handlebars->29->248"
5321
+ "default.handlebars->29->252"
5322
]
5323
},
5324
{
@@ -5341,11 +5341,11 @@
5341
"default-mobile.handlebars->9->269",
5342
"default-mobile.handlebars->9->28",
5343
"default-mobile.handlebars->9->94",
5344
- "default.handlebars->29->1342",
5345
- "default.handlebars->29->731",
5346
- "default.handlebars->29->733",
5344
+ "default.handlebars->29->1346",
5345
"default.handlebars->29->735",
5346
"default.handlebars->29->737",
5347
+ "default.handlebars->29->739",
5348
+ "default.handlebars->29->741",
5349
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
5350
"default.handlebars->container->column_l->p41->3->1",
5351
"messenger.handlebars->xbottom"
@@ -5365,7 +5365,7 @@
5365
"ru": "Очистить токены",
5366
"zh-chs": "清除令牌",
5367
"xloc": [
5368
- "default.handlebars->29->119"
5368
+ "default.handlebars->29->123"
5369
]
5370
},
5371
{
@@ -5382,7 +5382,7 @@
5382
"ru": "Очистить ядро",
5383
"zh-chs": "清除核心",
5384
"xloc": [
5385
- "default.handlebars->29->815"
5385
+ "default.handlebars->29->819"
5386
]
5387
},
5388
{
@@ -5399,7 +5399,7 @@
5399
"ru": "Удалите ключ из приложения и попробуйте еще раз. У вас есть всего несколько минут, чтобы ввести правильный код.",
5400
"zh-chs": "從應用程序中清除機密,然後重試。您只有幾分鐘的時間來輸入正確的代碼。",
5401
"xloc": [
5402
- "default.handlebars->29->109"
5402
+ "default.handlebars->29->113"
5403
]
5404
},
5405
{
@@ -5413,7 +5413,7 @@
5413
"zh-chs": "清除此通知",
5414
"es": "Borrar esta notificación",
5415
"xloc": [
5416
- "default.handlebars->29->1607"
5416
+ "default.handlebars->29->1611"
5417
]
5418
},
5419
{
@@ -5458,7 +5458,7 @@
5458
"ru": "Для изменения имени устройства на сервере нажмите сюда",
5459
"zh-chs": "單擊此處編輯服務器端設備名稱",
5460
"xloc": [
5461
- "default.handlebars->29->444"
5461
+ "default.handlebars->29->448"
5462
]
5463
},
5464
{
@@ -5504,7 +5504,7 @@
5504
"zh-chs": "單擊確定將驗證郵件發送到:",
5505
"xloc": [
5506
"default-mobile.handlebars->9->37",
5507
- "default.handlebars->29->1048"
5507
+ "default.handlebars->29->1052"
5508
]
5509
},
5510
{
@@ -5538,7 +5538,7 @@
5538
"ru": "Режим управления клиентом (CCM)",
5539
"zh-chs": "客戶端控制模式(CCM)",
5540
"xloc": [
5541
- "default.handlebars->29->779"
5541
+ "default.handlebars->29->783"
5542
]
5543
},
5544
{
@@ -5555,8 +5555,8 @@
5555
"ru": "Клиент инициировал удаленный доступ",
5556
"zh-chs": "客戶端啟動的遠程訪問",
5557
"xloc": [
5558
- "default.handlebars->29->1166",
5559
- "default.handlebars->29->1171"
5558
+ "default.handlebars->29->1170",
5559
+ "default.handlebars->29->1175"
5560
]
5561
},
5562
{
@@ -5591,9 +5591,9 @@
5591
"zh-chs": "關",
5592
"xloc": [
5593
"default-mobile.handlebars->9->26",
5594
- "default.handlebars->29->117",
5595
- "default.handlebars->29->125",
5596
- "default.handlebars->29->689"
5594
+ "default.handlebars->29->121",
5595
+ "default.handlebars->29->129",
5596
+ "default.handlebars->29->693"
5597
]
5598
},
5599
{
@@ -5628,8 +5628,8 @@
5628
"ru": "Общие группы устройств",
5629
"zh-chs": "通用設備組",
5630
"xloc": [
5631
- "default.handlebars->29->1475",
5632
- "default.handlebars->29->1573"
5631
+ "default.handlebars->29->1479",
5632
+ "default.handlebars->29->1577"
5633
]
5634
},
5635
{
@@ -5646,8 +5646,8 @@
5646
"zh-chs": "通用設備",
5647
"es": "Dispositivos comunes",
5648
"xloc": [
5649
- "default.handlebars->29->1481",
5650
- "default.handlebars->29->1585"
5649
+ "default.handlebars->29->1485",
5650
+ "default.handlebars->29->1589"
5651
]
5652
},
5653
{
@@ -5665,7 +5665,7 @@
5665
"zh-chs": "將{1}入口{2}中的{0}限製到此位置?",
5666
"xloc": [
5667
"default-mobile.handlebars->9->89",
5668
- "default.handlebars->29->1337"
5668
+ "default.handlebars->29->1341"
5669
]
5670
},
5671
{
@@ -5684,14 +5684,14 @@
5684
"xloc": [
5685
"default-mobile.handlebars->9->223",
5686
"default-mobile.handlebars->9->288",
5687
- "default.handlebars->29->1180",
5688
- "default.handlebars->29->1390",
5689
- "default.handlebars->29->1452",
5690
- "default.handlebars->29->1495",
5691
- "default.handlebars->29->1571",
5692
- "default.handlebars->29->387",
5693
- "default.handlebars->29->620",
5694
- "default.handlebars->29->629"
5687
+ "default.handlebars->29->1184",
5688
+ "default.handlebars->29->1394",
5689
+ "default.handlebars->29->1456",
5690
+ "default.handlebars->29->1499",
5691
+ "default.handlebars->29->1575",
5692
+ "default.handlebars->29->391",
5693
+ "default.handlebars->29->624",
5694
+ "default.handlebars->29->633"
5695
]
5696
},
5697
{
@@ -5709,7 +5709,7 @@
5709
"zh-chs": "確認將1個副本複製到此位置?",
5710
"xloc": [
5711
"default-mobile.handlebars->9->258",
5712
- "default.handlebars->29->726"
5712
+ "default.handlebars->29->730"
5713
]
5714
},
5715
{
@@ -5727,14 +5727,14 @@
5727
"zh-chs": "確認{0}個條目的副本到此位置?",
5728
"xloc": [
5729
"default-mobile.handlebars->9->257",
5730
- "default.handlebars->29->725"
5730
+ "default.handlebars->29->729"
5731
]
5732
},
5733
{
5734
"en": "Confirm delete selected account(s)?",
5735
"nl": "Bevestig verwijdering geselecteerde account(s)?",
5736
"xloc": [
5737
- "default.handlebars->29->1389"
5737
+ "default.handlebars->29->1393"
5738
]
5739
},
5740
{
@@ -5751,14 +5751,14 @@
5751
"ru": "Подтвердить удаление выбранных устройств?",
5752
"zh-chs": "確認刪除所選設備?",
5753
"xloc": [
5754
- "default.handlebars->29->386"
5754
+ "default.handlebars->29->390"
5755
]
5756
},
5757
{
5758
"en": "Confirm delete selected user groups(s)?",
5759
"nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?",
5760
"xloc": [
5761
- "default.handlebars->29->1451"
5761
+ "default.handlebars->29->1455"
5762
]
5763
},
5764
{
@@ -5775,21 +5775,21 @@
5775
"zh-chs": "確認刪除用戶{0}?",
5776
"es": "Confirmar la eliminación del usuario {0}?",
5777
"xloc": [
5778
- "default.handlebars->29->1570"
5778
+ "default.handlebars->29->1574"
5779
]
5780
},
5781
{
5782
"en": "Confirm membership removal of user \\\"{0}\\\"?",
5783
"nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?",
5784
"xloc": [
5785
- "default.handlebars->29->1498"
5785
+ "default.handlebars->29->1502"
5786
]
5787
},
5788
{
5789
"en": "Confirm membership removal of user group \\\"{0}\\\"?",
5790
"nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?",
5791
"xloc": [
5792
- "default.handlebars->29->1598"
5792
+ "default.handlebars->29->1602"
5793
]
5794
},
5795
{
@@ -5807,7 +5807,7 @@
5807
"zh-chs": "確認將1個入口移動到此位置?",
5808
"xloc": [
5809
"default-mobile.handlebars->9->260",
5810
- "default.handlebars->29->728"
5810
+ "default.handlebars->29->732"
5811
]
5812
},
5813
{
@@ -5825,7 +5825,7 @@
5825
"zh-chs": "確認將{0}個條目移到此位置?",
5826
"xloc": [
5827
"default-mobile.handlebars->9->259",
5828
- "default.handlebars->29->727"
5828
+ "default.handlebars->29->731"
5829
]
5830
},
5831
{
@@ -5842,37 +5842,37 @@
5842
"ru": "Подтвердить перезапись?",
5843
"zh-chs": "確認覆蓋?",
5844
"xloc": [
5845
- "default.handlebars->29->1336"
5845
+ "default.handlebars->29->1340"
5846
]
5847
},
5848
{
5849
"en": "Confirm removal of access rights for device \\\"{0}\\\"?",
5850
"nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?",
5851
"xloc": [
5852
- "default.handlebars->29->1488",
5853
- "default.handlebars->29->1591"
5852
+ "default.handlebars->29->1492",
5853
+ "default.handlebars->29->1595"
5854
]
5855
},
5856
{
5857
"en": "Confirm removal of access rights for device group \\\"{0}\\\"?",
5858
"nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?",
5859
"xloc": [
5860
- "default.handlebars->29->1490",
5861
- "default.handlebars->29->1602"
5860
+ "default.handlebars->29->1494",
5861
+ "default.handlebars->29->1606"
5862
]
5863
},
5864
{
5865
"en": "Confirm removal of access rights for user \\\"{0}\\\"?",
5866
"nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?",
5867
"xloc": [
5868
- "default.handlebars->29->1593"
5868
+ "default.handlebars->29->1597"
5869
]
5870
},
5871
{
5872
"en": "Confirm removal of access rights for user group \\\"{0}\\\"?",
5873
"nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?",
5874
"xloc": [
5875
- "default.handlebars->29->1595"
5875
+ "default.handlebars->29->1599"
5876
]
5877
},
5878
{
@@ -5890,7 +5890,7 @@
5890
"zh-chs": "確認刪除身份驗證器應用程序兩步登錄?",
5891
"xloc": [
5892
"default-mobile.handlebars->9->36",
5893
- "default.handlebars->29->827"
5893
+ "default.handlebars->29->831"
5894
]
5895
},
5896
{
@@ -5936,14 +5936,14 @@
5936
"en": "Confirm removal of rights for user \\\"{0}\\\"?",
5937
"nl": "Bevestig de verwijdering van rechten voor gebruiker \\\"{0}\\\"?",
5938
"xloc": [
5939
- "default.handlebars->29->1272"
5939
+ "default.handlebars->29->1276"
5940
]
5941
},
5942
{
5943
"en": "Confirm removal of rights for user group \\\"{0}\\\"?",
5944
"nl": "Bevestig de verwijdering van rechten voor de gebruikergroep \\\"{0}\\\"?",
5945
"xloc": [
5946
- "default.handlebars->29->1274"
5946
+ "default.handlebars->29->1278"
5947
]
5948
},
5949
{
@@ -5984,8 +5984,8 @@
5984
"default-mobile.handlebars->9->237",
5985
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
5986
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
5987
- "default.handlebars->29->1119",
5988
- "default.handlebars->29->708",
5987
+ "default.handlebars->29->1123",
5988
+ "default.handlebars->29->712",
5989
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
5990
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
5991
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -6006,7 +6006,7 @@
6006
"ru": "Подключиться ко всем",
6007
"zh-chs": "全部連接",
6008
"xloc": [
6009
- "default.handlebars->29->201",
6009
+ "default.handlebars->29->205",
6010
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
6011
]
6012
},
@@ -6024,8 +6024,8 @@
6024
"ru": "Подключиться к серверу",
6025
"zh-chs": "連接到服務器",
6026
"xloc": [
6027
- "default.handlebars->29->1170",
6028
- "default.handlebars->29->1174"
6027
+ "default.handlebars->29->1174",
6028
+ "default.handlebars->29->1178"
6029
]
6030
},
6031
{
@@ -6096,7 +6096,7 @@
6096
"ru": "Подключено Intel® AMT",
6097
"zh-chs": "連接的英特爾®AMT",
6098
"xloc": [
6099
- "default.handlebars->29->1625"
6099
+ "default.handlebars->29->1629"
6100
]
6101
},
6102
{
@@ -6113,7 +6113,7 @@
6113
"ru": "Подключенные пользователи",
6114
"zh-chs": "關聯用戶",
6115
"xloc": [
6116
- "default.handlebars->29->1630"
6116
+ "default.handlebars->29->1634"
6117
]
6118
},
6119
{
@@ -6130,7 +6130,7 @@
6130
"zh-chs": "現在已連接",
6131
"es": "Conectado ahora",
6132
"xloc": [
6133
- "default.handlebars->29->758"
6133
+ "default.handlebars->29->762"
6134
]
6135
},
6136
{
@@ -6167,10 +6167,10 @@
6167
"default-mobile.handlebars->9->2",
6168
"default-mobile.handlebars->9->273",
6169
"default-mobile.handlebars->9->6",
6170
- "default.handlebars->29->195",
6171
- "default.handlebars->29->198",
6172
- "default.handlebars->29->204",
6173
- "default.handlebars->29->749",
6170
+ "default.handlebars->29->199",
6171
+ "default.handlebars->29->202",
6172
+ "default.handlebars->29->208",
6173
+ "default.handlebars->29->753",
6174
"default.handlebars->29->9",
6175
"xterm.handlebars->9->2"
6176
]
@@ -6189,7 +6189,7 @@
6189
"ru": "Подключений ",
6190
"zh-chs": "連接數",
6191
"xloc": [
6192
- "default.handlebars->29->1641"
6192
+ "default.handlebars->29->1645"
6193
]
6194
},
6195
{
@@ -6206,7 +6206,7 @@
6206
"ru": "Ретранслятор подключения",
6207
"zh-chs": "連接繼電器",
6208
"xloc": [
6209
- "default.handlebars->29->1669"
6209
+ "default.handlebars->29->1673"
6210
]
6211
},
6212
{
@@ -6258,9 +6258,9 @@
6258
"zh-chs": "連接性",
6259
"xloc": [
6260
"default-mobile.handlebars->9->198",
6261
- "default.handlebars->29->1305",
6262
- "default.handlebars->29->186",
6263
- "default.handlebars->29->509",
6261
+ "default.handlebars->29->1309",
6262
+ "default.handlebars->29->190",
6263
+ "default.handlebars->29->513",
6264
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
6265
]
6266
},
@@ -6278,8 +6278,8 @@
6278
"ru": "Консоль",
6279
"zh-chs": "安慰",
6280
"xloc": [
6281
- "default.handlebars->29->562",
6282
- "default.handlebars->29->581",
6281
+ "default.handlebars->29->566",
6282
+ "default.handlebars->29->585",
6283
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
6284
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
6285
"default.handlebars->contextMenu->cxconsole"
@@ -6299,7 +6299,7 @@
6299
"ru": "Консоль - ",
6300
"zh-chs": "安慰 -",
6301
"xloc": [
6302
- "default.handlebars->29->445"
6302
+ "default.handlebars->29->449"
6303
]
6304
},
6305
{
@@ -6313,8 +6313,8 @@
6313
"zh-chs": "控制",
6314
"es": "Control",
6315
"xloc": [
6316
- "default.handlebars->29->561",
6317
- "default.handlebars->29->580"
6316
+ "default.handlebars->29->565",
6317
+ "default.handlebars->29->584"
6318
]
6319
},
6320
{
@@ -6331,7 +6331,7 @@
6331
"ru": "Cookie-кодировщик",
6332
"zh-chs": "Cookie編碼器",
6333
"xloc": [
6334
- "default.handlebars->29->1655"
6334
+ "default.handlebars->29->1659"
6335
]
6336
},
6337
{
@@ -6386,7 +6386,7 @@
6386
"ru": "Скопировать ссылку MacOS agent в буфер обмена",
6387
"zh-chs": "將MacOS代理URL複製到剪貼板",
6388
"xloc": [
6389
- "default.handlebars->29->327"
6389
+ "default.handlebars->29->331"
6390
]
6391
},
6392
{
@@ -6400,7 +6400,7 @@
6400
"zh-chs": "将Windows 32位代理URL复制到剪贴板",
6401
"es": "Copiar la URL del Agente de Windows de 32bit al portapapeles",
6402
"xloc": [
6403
- "default.handlebars->29->315"
6403
+ "default.handlebars->29->319"
6404
]
6405
},
6406
{
@@ -6414,7 +6414,7 @@
6414
"zh-chs": "将Windows 64位代理URL复制到剪贴板",
6415
"es": "Copiar la URL del Agente de Windows de 64bit al portapapeles",
6416
"xloc": [
6417
- "default.handlebars->29->319"
6417
+ "default.handlebars->29->323"
6418
]
6419
},
6420
{
@@ -6453,9 +6453,9 @@
6453
"ru": "Скопировать ссылку в буфер обмена",
6454
"zh-chs": "複製鏈接到剪貼板",
6455
"xloc": [
6456
- "default.handlebars->29->1310",
6457
- "default.handlebars->29->1324",
6458
- "default.handlebars->29->299"
6456
+ "default.handlebars->29->1314",
6457
+ "default.handlebars->29->1328",
6458
+ "default.handlebars->29->303"
6459
]
6460
},
6461
{
@@ -6507,7 +6507,7 @@
6507
"ru": "Скопировать действительные коды в буфер обмена",
6508
"zh-chs": "將有效代碼複製到剪貼板",
6509
"xloc": [
6510
- "default.handlebars->29->120"
6510
+ "default.handlebars->29->124"
6511
]
6512
},
6513
{
@@ -6632,7 +6632,7 @@
6632
"ru": "Основной сервер",
6633
"zh-chs": "核心服務器",
6634
"xloc": [
6635
- "default.handlebars->29->1654"
6635
+ "default.handlebars->29->1658"
6636
]
6637
},
6638
{
@@ -6649,7 +6649,7 @@
6649
"zh-chs": "科西嘉人",
6650
"es": "Corso",
6651
"xloc": [
6652
- "default.handlebars->29->878"
6652
+ "default.handlebars->29->882"
6653
]
6654
},
6655
{
@@ -6666,7 +6666,7 @@
6666
"ru": "Создать учетную запись",
6667
"zh-chs": "創建帳號",
6668
"xloc": [
6669
- "default.handlebars->29->1423",
6669
+ "default.handlebars->29->1427",
6670
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
6671
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
6672
]
@@ -6702,7 +6702,7 @@
6702
"ru": "Создать группу пользователей",
6703
"zh-chs": "創建用戶組",
6704
"xloc": [
6705
- "default.handlebars->29->1457"
6705
+ "default.handlebars->29->1461"
6706
]
6707
},
6708
{
@@ -6719,7 +6719,7 @@
6719
"ru": "Создайте новую группу устройств, используя параметры ниже.",
6720
"zh-chs": "使用以下選項創建一個新的設備組。",
6721
"xloc": [
6722
- "default.handlebars->29->1071"
6722
+ "default.handlebars->29->1075"
6723
]
6724
},
6725
{
@@ -6736,7 +6736,7 @@
6736
"ru": "Создать новую группу устройств.",
6737
"zh-chs": "創建一個新的設備組。",
6738
"xloc": [
6739
- "default.handlebars->29->188"
6739
+ "default.handlebars->29->192"
6740
]
6741
},
6742
{
@@ -6753,7 +6753,7 @@
6753
"ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:",
6754
"zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:",
6755
"xloc": [
6756
- "default.handlebars->29->1394"
6756
+ "default.handlebars->29->1398"
6757
]
6758
},
6759
{
@@ -6788,7 +6788,7 @@
6788
"ru": "Создано",
6789
"zh-chs": "創建",
6790
"xloc": [
6791
- "default.handlebars->29->1518"
6791
+ "default.handlebars->29->1522"
6792
]
6793
},
6794
{
@@ -6823,7 +6823,7 @@
6823
"zh-chs": "克里",
6824
"es": "Cree",
6825
"xloc": [
6826
- "default.handlebars->29->879"
6826
+ "default.handlebars->29->883"
6827
]
6828
},
6829
{
@@ -6840,7 +6840,7 @@
6840
"zh-chs": "克羅地亞語",
6841
"es": "Croata",
6842
"xloc": [
6843
- "default.handlebars->29->880"
6843
+ "default.handlebars->29->884"
6844
]
6845
},
6846
{
@@ -6944,7 +6944,7 @@
6944
"ru": "Текущая версия",
6945
"zh-chs": "當前版本",
6946
"xloc": [
6947
- "default.handlebars->29->93"
6947
+ "default.handlebars->29->94"
6948
]
6949
},
6950
{
@@ -6981,7 +6981,7 @@
6981
"zh-chs": "捷克文",
6982
"es": "Checo",
6983
"xloc": [
6984
- "default.handlebars->29->881"
6984
+ "default.handlebars->29->885"
6985
]
6986
},
6987
{
@@ -7015,7 +7015,7 @@
7015
"zh-chs": "丹麥文",
7016
"es": "Danés",
7017
"xloc": [
7018
- "default.handlebars->29->882"
7018
+ "default.handlebars->29->886"
7019
]
7020
},
7021
{
@@ -7032,7 +7032,7 @@
7032
"ru": "DataChannel",
7033
"zh-chs": "數據通道",
7034
"xloc": [
7035
- "default.handlebars->29->665"
7035
+ "default.handlebars->29->669"
7036
]
7037
},
7038
{
@@ -7049,7 +7049,7 @@
7049
"ru": "Дата & Время",
7050
"zh-chs": "日期和時間",
7051
"xloc": [
7052
- "default.handlebars->29->1039"
7052
+ "default.handlebars->29->1043"
7053
]
7054
},
7055
{
@@ -7066,7 +7066,7 @@
7066
"ru": "День",
7067
"zh-chs": "天",
7068
"xloc": [
7069
- "default.handlebars->29->604"
7069
+ "default.handlebars->29->608"
7070
]
7071
},
7072
{
@@ -7083,7 +7083,7 @@
7083
"ru": "Деактивировать режим управления клиентом (CCM)",
7084
"zh-chs": "停用客戶端控制模式(CCM)",
7085
"xloc": [
7086
- "default.handlebars->29->1158"
7086
+ "default.handlebars->29->1162"
7087
]
7088
},
7089
{
@@ -7101,7 +7101,7 @@
7101
"zh-chs": "沉睡",
7102
"xloc": [
7103
"default-mobile.handlebars->9->113",
7104
- "default.handlebars->29->346"
7104
+ "default.handlebars->29->350"
7105
]
7106
},
7107
{
@@ -7122,9 +7122,9 @@
7122
"default-mobile.handlebars->9->84",
7123
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
7124
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
7125
- "default.handlebars->29->1331",
7126
- "default.handlebars->29->417",
7127
- "default.handlebars->29->718",
7125
+ "default.handlebars->29->1335",
7126
+ "default.handlebars->29->421",
7127
+ "default.handlebars->29->722",
7128
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
7129
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
7130
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -7148,14 +7148,14 @@
7148
"zh-chs": "刪除帳戶",
7149
"xloc": [
7150
"default-mobile.handlebars->9->46",
7151
- "default.handlebars->29->1056"
7151
+ "default.handlebars->29->1060"
7152
]
7153
},
7154
{
7155
"en": "Delete Accounts",
7156
"nl": "Verwijder accounts",
7157
"xloc": [
7158
- "default.handlebars->29->1391"
7158
+ "default.handlebars->29->1395"
7159
]
7160
},
7161
{
@@ -7173,7 +7173,7 @@
7173
"zh-chs": "刪除裝置",
7174
"xloc": [
7175
"default-mobile.handlebars->9->202",
7176
- "default.handlebars->29->520"
7176
+ "default.handlebars->29->524"
7177
]
7178
},
7179
{
@@ -7192,8 +7192,8 @@
7192
"xloc": [
7193
"default-mobile.handlebars->9->286",
7194
"default-mobile.handlebars->9->289",
7195
- "default.handlebars->29->1151",
7196
- "default.handlebars->29->1181"
7195
+ "default.handlebars->29->1155",
7196
+ "default.handlebars->29->1185"
7197
]
7198
},
7199
{
@@ -7211,7 +7211,7 @@
7211
"zh-chs": "刪除節點",
7212
"xloc": [
7213
"default-mobile.handlebars->9->221",
7214
- "default.handlebars->29->630"
7214
+ "default.handlebars->29->634"
7215
]
7216
},
7217
{
@@ -7228,7 +7228,7 @@
7228
"ru": "Удалить устройства",
7229
"zh-chs": "刪除節點",
7230
"xloc": [
7231
- "default.handlebars->29->388"
7231
+ "default.handlebars->29->392"
7232
]
7233
},
7234
{
@@ -7245,7 +7245,7 @@
7245
"ru": "Удалить пользователя",
7246
"zh-chs": "刪除用戶",
7247
"xloc": [
7248
- "default.handlebars->29->1552"
7248
+ "default.handlebars->29->1556"
7249
]
7250
},
7251
{
@@ -7262,15 +7262,15 @@
7262
"ru": "Удалить группу пользователей",
7263
"zh-chs": "刪除用戶組",
7264
"xloc": [
7265
- "default.handlebars->29->1486",
7266
- "default.handlebars->29->1496"
7265
+ "default.handlebars->29->1490",
7266
+ "default.handlebars->29->1500"
7267
]
7268
},
7269
{
7270
"en": "Delete User Groups",
7271
"nl": "Gebruikersgroepen verwijderen",
7272
"xloc": [
7273
- "default.handlebars->29->1453"
7273
+ "default.handlebars->29->1457"
7274
]
7275
},
7276
{
@@ -7287,7 +7287,7 @@
7287
"ru": "Удалить пользователя {0}",
7288
"zh-chs": "刪除用戶{0}",
7289
"xloc": [
7290
- "default.handlebars->29->1569"
7290
+ "default.handlebars->29->1573"
7291
]
7292
},
7293
{
@@ -7305,7 +7305,7 @@
7305
"zh-chs": "刪除帳戶",
7306
"xloc": [
7307
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->7->0",
7308
- "default.handlebars->29->1387",
7308
+ "default.handlebars->29->1391",
7309
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
7310
]
7311
},
@@ -7323,14 +7323,14 @@
7323
"ru": "Удалить устройства",
7324
"zh-chs": "刪除設備",
7325
"xloc": [
7326
- "default.handlebars->29->383"
7326
+ "default.handlebars->29->387"
7327
]
7328
},
7329
{
7330
"en": "Delete group",
7331
"nl": "Verwijder groep",
7332
"xloc": [
7333
- "default.handlebars->29->1449"
7333
+ "default.handlebars->29->1453"
7334
]
7335
},
7336
{
@@ -7347,7 +7347,7 @@
7347
"zh-chs": "刪除項目?",
7348
"es": "Borrar artículo?",
7349
"xloc": [
7350
- "default.handlebars->29->418"
7350
+ "default.handlebars->29->422"
7351
]
7352
},
7353
{
@@ -7366,8 +7366,8 @@
7366
"xloc": [
7367
"default-mobile.handlebars->9->252",
7368
"default-mobile.handlebars->9->86",
7369
- "default.handlebars->29->1333",
7370
- "default.handlebars->29->720"
7369
+ "default.handlebars->29->1337",
7370
+ "default.handlebars->29->724"
7371
]
7372
},
7373
{
@@ -7384,7 +7384,7 @@
7384
"ru": "Удалить группу пользователей {0}?",
7385
"zh-chs": "刪除用戶組{0}?",
7386
"xloc": [
7387
- "default.handlebars->29->1494"
7387
+ "default.handlebars->29->1498"
7388
]
7389
},
7390
{
@@ -7403,8 +7403,8 @@
7403
"xloc": [
7404
"default-mobile.handlebars->9->251",
7405
"default-mobile.handlebars->9->85",
7406
- "default.handlebars->29->1332",
7407
- "default.handlebars->29->719"
7406
+ "default.handlebars->29->1336",
7407
+ "default.handlebars->29->723"
7408
]
7409
},
7410
{
@@ -7504,17 +7504,17 @@
7504
"default-mobile.handlebars->9->278",
7505
"default-mobile.handlebars->9->291",
7506
"default-mobile.handlebars->9->63",
7507
- "default.handlebars->29->1076",
7508
- "default.handlebars->29->1100",
7509
- "default.handlebars->29->1183",
7510
- "default.handlebars->29->1456",
7511
- "default.handlebars->29->1461",
7512
- "default.handlebars->29->1463",
7513
- "default.handlebars->29->1492",
7514
- "default.handlebars->29->455",
7515
- "default.handlebars->29->456",
7516
- "default.handlebars->29->661",
7517
- "default.handlebars->29->764",
7507
+ "default.handlebars->29->1080",
7508
+ "default.handlebars->29->1104",
7509
+ "default.handlebars->29->1187",
7510
+ "default.handlebars->29->1460",
7511
+ "default.handlebars->29->1465",
7512
+ "default.handlebars->29->1467",
7513
+ "default.handlebars->29->1496",
7514
+ "default.handlebars->29->459",
7515
+ "default.handlebars->29->460",
7516
+ "default.handlebars->29->665",
7517
+ "default.handlebars->29->768",
7518
"default.handlebars->29->78",
7519
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
7520
]
@@ -7547,8 +7547,8 @@
7547
"ru": "Рабочий стол",
7548
"zh-chs": "桌面",
7549
"xloc": [
7550
- "default.handlebars->29->1188",
7551
- "default.handlebars->29->423",
7550
+ "default.handlebars->29->1192",
7551
+ "default.handlebars->29->427",
7552
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
7553
"default.handlebars->contextMenu->cxdesktop"
7554
]
@@ -7584,9 +7584,9 @@
7584
"ru": "Уведомление на рабочем столе",
7585
"zh-chs": "桌面通知",
7586
"xloc": [
7587
- "default.handlebars->29->1110",
7588
- "default.handlebars->29->1533",
7589
- "default.handlebars->29->490"
7587
+ "default.handlebars->29->1114",
7588
+ "default.handlebars->29->1537",
7589
+ "default.handlebars->29->494"
7590
]
7591
},
7592
{
@@ -7603,9 +7603,9 @@
7603
"ru": "Запрос рабочего стола",
7604
"zh-chs": "桌面提示",
7605
"xloc": [
7606
- "default.handlebars->29->1109",
7607
- "default.handlebars->29->1532",
7608
- "default.handlebars->29->489"
7606
+ "default.handlebars->29->1113",
7607
+ "default.handlebars->29->1536",
7608
+ "default.handlebars->29->493"
7609
]
7610
},
7611
{
@@ -7622,9 +7622,9 @@
7622
"ru": "Запрос рабочего стола + панель инструментов",
7623
"zh-chs": "桌面提示+工具欄",
7624
"xloc": [
7625
- "default.handlebars->29->1107",
7626
- "default.handlebars->29->1530",
7627
- "default.handlebars->29->487"
7625
+ "default.handlebars->29->1111",
7626
+ "default.handlebars->29->1534",
7627
+ "default.handlebars->29->491"
7628
]
7629
},
7630
{
@@ -7648,9 +7648,9 @@
7648
"ru": "Панель инструментов рабочего стола",
7649
"zh-chs": "桌面工具欄",
7650
"xloc": [
7651
- "default.handlebars->29->1108",
7652
- "default.handlebars->29->1531",
7653
- "default.handlebars->29->488"
7651
+ "default.handlebars->29->1112",
7652
+ "default.handlebars->29->1535",
7653
+ "default.handlebars->29->492"
7654
]
7655
},
7656
{
@@ -7719,8 +7719,8 @@
7719
"ru": "Устройство",
7720
"zh-chs": "設備",
7721
"xloc": [
7722
- "default.handlebars->29->1210",
7723
- "default.handlebars->29->1588",
7722
+ "default.handlebars->29->1214",
7723
+ "default.handlebars->29->1592",
7724
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
7725
]
7726
},
@@ -7739,7 +7739,7 @@
7739
"zh-chs": "設備動作",
7740
"xloc": [
7741
"default-mobile.handlebars->9->214",
7742
- "default.handlebars->29->603"
7742
+ "default.handlebars->29->607"
7743
]
7744
},
7745
{
@@ -7756,12 +7756,12 @@
7756
"ru": "Группа устройства",
7757
"zh-chs": "設備組",
7758
"xloc": [
7759
- "default.handlebars->29->1205",
7760
- "default.handlebars->29->1208",
7759
"default.handlebars->29->1209",
7762
- "default.handlebars->29->1478",
7763
- "default.handlebars->29->1484",
7764
- "default.handlebars->29->1576"
7760
+ "default.handlebars->29->1212",
7761
+ "default.handlebars->29->1213",
7762
+ "default.handlebars->29->1482",
7763
+ "default.handlebars->29->1488",
7764
+ "default.handlebars->29->1580"
7765
]
7766
},
7767
{
@@ -7779,7 +7779,7 @@
7779
"zh-chs": "設備組用戶",
7780
"xloc": [
7781
"default-mobile.handlebars->9->332",
7782
- "default.handlebars->29->1270"
7782
+ "default.handlebars->29->1274"
7783
]
7784
},
7785
{
@@ -7797,10 +7797,11 @@
7797
"zh-chs": "設備組",
7798
"xloc": [
7799
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
7800
- "default.handlebars->29->1443",
7801
- "default.handlebars->29->1465",
7802
- "default.handlebars->29->1527",
7803
- "default.handlebars->29->1628",
7800
+ "default.handlebars->29->1361",
7801
+ "default.handlebars->29->1447",
7802
+ "default.handlebars->29->1469",
7803
+ "default.handlebars->29->1531",
7804
+ "default.handlebars->29->1632",
7805
"default.handlebars->container->column_l->p2->p2info->7"
7806
]
7807
},
@@ -7818,7 +7819,7 @@
7819
"zh-chs": "設備信息導出",
7820
"es": "Exportar Información del Dispositivo",
7821
"xloc": [
7821
- "default.handlebars->29->394"
7822
+ "default.handlebars->29->398"
7823
]
7824
},
7825
{
@@ -7835,7 +7836,7 @@
7836
"ru": "Местонахождение устройства",
7837
"zh-chs": "設備位置",
7838
"xloc": [
7838
- "default.handlebars->29->631"
7839
+ "default.handlebars->29->635"
7840
]
7841
},
7842
{
@@ -7853,8 +7854,8 @@
7854
"zh-chs": "設備名稱",
7855
"xloc": [
7856
"default-mobile.handlebars->9->225",
7856
- "default.handlebars->29->222",
7857
- "default.handlebars->29->659",
7857
+ "default.handlebars->29->226",
7858
+ "default.handlebars->29->663",
7859
"player.handlebars->3->9"
7860
]
7861
},
@@ -7872,7 +7873,7 @@
7873
"ru": "Уведомление устройства",
7874
"zh-chs": "設備通知",
7875
"xloc": [
7875
- "default.handlebars->29->594"
7876
+ "default.handlebars->29->598"
7877
]
7878
},
7879
{
@@ -7906,8 +7907,8 @@
7907
"ru": "Подключения устройств.",
7908
"zh-chs": "設備連接。",
7909
"xloc": [
7909
- "default.handlebars->29->1044",
7910
- "default.handlebars->29->1291"
7910
+ "default.handlebars->29->1048",
7911
+ "default.handlebars->29->1295"
7912
]
7913
},
7914
{
@@ -7924,8 +7925,8 @@
7925
"ru": "Отключения устройств.",
7926
"zh-chs": "設備斷開連接。",
7927
"xloc": [
7927
- "default.handlebars->29->1045",
7928
- "default.handlebars->29->1292"
7928
+ "default.handlebars->29->1049",
7929
+ "default.handlebars->29->1296"
7930
]
7931
},
7932
{
@@ -7942,7 +7943,7 @@
7943
"ru": "Примечания могут быть просмотрены и изменены другими администраторами.",
7944
"zh-chs": "其他設備組管理員可以查看和更改設備組註釋。",
7945
"xloc": [
7945
- "default.handlebars->29->592"
7946
+ "default.handlebars->29->596"
7947
]
7948
},
7949
{
@@ -7959,7 +7960,7 @@
7960
"ru": "Устройство обнаружено, но состояние питания не может быть получено.",
7961
"zh-chs": "檢測到設備,但無法獲得電源狀態。",
7962
"xloc": [
7962
- "default.handlebars->29->351"
7963
+ "default.handlebars->29->355"
7964
]
7965
},
7966
{
@@ -7977,7 +7978,7 @@
7978
"zh-chs": "設備正在休眠(S4)",
7979
"xloc": [
7980
"default-mobile.handlebars->9->121",
7980
- "default.handlebars->29->357"
7981
+ "default.handlebars->29->361"
7982
]
7983
},
7984
{
@@ -7995,7 +7996,7 @@
7996
"zh-chs": "設備處於深度睡眠狀態(S3)",
7997
"xloc": [
7998
"default-mobile.handlebars->9->120",
7998
- "default.handlebars->29->356"
7999
+ "default.handlebars->29->360"
8000
]
8001
},
8002
{
@@ -8012,7 +8013,7 @@
8013
"ru": "Устройство находится в состоянии глубокого сна (S3).",
8014
"zh-chs": "設備處於深度睡眠狀態(S3)。",
8015
"xloc": [
8015
- "default.handlebars->29->345"
8016
+ "default.handlebars->29->349"
8017
]
8018
},
8019
{
@@ -8029,7 +8030,7 @@
8030
"ru": "Устройство находится в режиме гибернации (S4).",
8031
"zh-chs": "設備處於休眠狀態(S4)。",
8032
"xloc": [
8032
- "default.handlebars->29->347"
8033
+ "default.handlebars->29->351"
8034
]
8035
},
8036
{
@@ -8046,7 +8047,7 @@
8047
"ru": "Устройство находится в выключенном состоянии (S5).",
8048
"zh-chs": "設備處於關機狀態(S5)。",
8049
"xloc": [
8049
- "default.handlebars->29->349"
8050
+ "default.handlebars->29->353"
8051
]
8052
},
8053
{
@@ -8064,7 +8065,7 @@
8065
"zh-chs": "設備處於睡眠狀態(S1)",
8066
"xloc": [
8067
"default-mobile.handlebars->9->118",
8067
- "default.handlebars->29->354"
8068
+ "default.handlebars->29->358"
8069
]
8070
},
8071
{
@@ -8081,7 +8082,7 @@
8082
"ru": "Устройство находится в спящем режиме (S1).",
8083
"zh-chs": "設備處於睡眠狀態(S1)。",
8084
"xloc": [
8084
- "default.handlebars->29->341"
8085
+ "default.handlebars->29->345"
8086
]
8087
},
8088
{
@@ -8099,7 +8100,7 @@
8100
"zh-chs": "設備處於睡眠狀態(S2)",
8101
"xloc": [
8102
"default-mobile.handlebars->9->119",
8102
- "default.handlebars->29->355"
8103
+ "default.handlebars->29->359"
8104
]
8105
},
8106
{
@@ -8116,7 +8117,7 @@
8117
"ru": "Устройство находится в спящем режиме (S2).",
8118
"zh-chs": "設備處於睡眠狀態(S2)。",
8119
"xloc": [
8119
- "default.handlebars->29->343"
8120
+ "default.handlebars->29->347"
8121
]
8122
},
8123
{
@@ -8134,7 +8135,7 @@
8135
"zh-chs": "設備處於軟斷開狀態(S5)",
8136
"xloc": [
8137
"default-mobile.handlebars->9->122",
8137
- "default.handlebars->29->358"
8138
+ "default.handlebars->29->362"
8139
]
8140
},
8141
{
@@ -8152,7 +8153,7 @@
8153
"zh-chs": "設備已上電",
8154
"xloc": [
8155
"default-mobile.handlebars->9->117",
8155
- "default.handlebars->29->353"
8156
+ "default.handlebars->29->357"
8157
]
8158
},
8159
{
@@ -8169,7 +8170,7 @@
8170
"ru": "Устройство включено.",
8171
"zh-chs": "設備上電。",
8172
"xloc": [
8172
- "default.handlebars->29->339"
8173
+ "default.handlebars->29->343"
8174
]
8175
},
8176
{
@@ -8187,7 +8188,7 @@
8188
"zh-chs": "設備存在,但無法確定電源狀態",
8189
"xloc": [
8190
"default-mobile.handlebars->9->123",
8190
- "default.handlebars->29->359"
8191
+ "default.handlebars->29->363"
8192
]
8193
},
8194
{
@@ -8204,7 +8205,7 @@
8205
"ru": "Имя устройства",
8206
"zh-chs": "設備名稱",
8207
"xloc": [
8207
- "default.handlebars->29->435"
8208
+ "default.handlebars->29->439"
8209
]
8210
},
8211
{
@@ -8221,15 +8222,15 @@
8222
"ru": "DeviceCheckbox",
8223
"zh-chs": "設備複選框",
8224
"xloc": [
8224
- "default.handlebars->29->385"
8225
+ "default.handlebars->29->389"
8226
]
8227
},
8228
{
8229
"en": "Devices",
8230
"nl": "Apparaten",
8231
"xloc": [
8231
- "default.handlebars->29->1444",
8232
- "default.handlebars->29->1466"
8232
+ "default.handlebars->29->1448",
8233
+ "default.handlebars->29->1470"
8234
]
8235
},
8236
{
@@ -8246,7 +8247,7 @@
8247
"ru": "Отключено",
8248
"zh-chs": "殘障人士",
8249
"xloc": [
8249
- "default.handlebars->29->482"
8250
+ "default.handlebars->29->486"
8251
]
8252
},
8253
{
@@ -8265,8 +8266,8 @@
8266
"xloc": [
8267
"default-mobile.handlebars->9->238",
8268
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8268
- "default.handlebars->29->1120",
8269
- "default.handlebars->29->709",
8269
+ "default.handlebars->29->1124",
8270
+ "default.handlebars->29->713",
8271
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
8272
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
8273
"xterm.handlebars->p11->deskarea0->deskarea1->3"
@@ -8306,10 +8307,10 @@
8307
"default-mobile.handlebars->9->1",
8308
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus",
8309
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status",
8309
- "default.handlebars->29->177",
8310
- "default.handlebars->29->194",
8311
- "default.handlebars->29->197",
8312
- "default.handlebars->29->203",
8310
+ "default.handlebars->29->181",
8311
+ "default.handlebars->29->198",
8312
+ "default.handlebars->29->201",
8313
+ "default.handlebars->29->207",
8314
"default.handlebars->29->8",
8315
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus",
8316
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus",
@@ -8348,7 +8349,7 @@
8349
"ru": "Отобразить имя группы устройств",
8350
"zh-chs": "顯示設備組名稱",
8351
"xloc": [
8351
- "default.handlebars->29->1043"
8352
+ "default.handlebars->29->1047"
8353
]
8354
},
8355
{
@@ -8365,7 +8366,7 @@
8366
"ru": "Отображаемое имя",
8367
"zh-chs": "顯示名稱",
8368
"xloc": [
8368
- "default.handlebars->29->680"
8369
+ "default.handlebars->29->684"
8370
]
8371
},
8372
{
@@ -8379,7 +8380,7 @@
8380
"zh-chs": "显示公共链接",
8381
"es": "Mostrar enlace público",
8382
"xloc": [
8382
- "default.handlebars->29->1309"
8383
+ "default.handlebars->29->1313"
8384
]
8385
},
8386
{
@@ -8396,7 +8397,7 @@
8397
"ru": "Ничего не делать",
8398
"zh-chs": "沒做什麼",
8399
"xloc": [
8399
- "default.handlebars->29->1164"
8400
+ "default.handlebars->29->1168"
8401
]
8402
},
8403
{
@@ -8431,8 +8432,8 @@
8432
"ru": "Не настраивать",
8433
"zh-chs": "不要配置",
8434
"xloc": [
8434
- "default.handlebars->29->1168",
8435
- "default.handlebars->29->1173"
8435
+ "default.handlebars->29->1172",
8436
+ "default.handlebars->29->1177"
8437
]
8438
},
8439
{
@@ -8449,7 +8450,7 @@
8450
"ru": "Не подключаться к серверу",
8451
"zh-chs": "不連接服務器",
8452
"xloc": [
8452
- "default.handlebars->29->1169"
8453
+ "default.handlebars->29->1173"
8454
]
8455
},
8456
{
@@ -8503,7 +8504,7 @@
8504
"zh-chs": "下載文件",
8505
"xloc": [
8506
"default-mobile.handlebars->9->271",
8506
- "default.handlebars->29->738"
8507
+ "default.handlebars->29->742"
8508
]
8509
},
8510
{
@@ -8520,7 +8521,7 @@
8521
"ru": "Скачать MeshCentral Router, инструмент сопоставления TCP портов.",
8522
"zh-chs": "下載MeshCentral Router,一個TCP端口映射工具。",
8523
"xloc": [
8523
- "default.handlebars->29->192"
8524
+ "default.handlebars->29->196"
8525
]
8526
},
8527
{
@@ -8537,7 +8538,7 @@
8538
"ru": "Скачать MeshCmd",
8539
"zh-chs": "下載MeshCmd",
8540
"xloc": [
8540
- "default.handlebars->29->651"
8541
+ "default.handlebars->29->655"
8542
]
8543
},
8544
{
@@ -8554,7 +8555,7 @@
8555
"ru": "Скачать MeshCmd, инструмент командной строки, выполняющий множество функций.",
8556
"zh-chs": "下載MeshCmd,這是一個執行許多功能的命令行工具。",
8557
"xloc": [
8557
- "default.handlebars->29->190"
8558
+ "default.handlebars->29->194"
8559
]
8560
},
8561
{
@@ -8588,7 +8589,7 @@
8589
"ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.",
8590
"zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。",
8591
"xloc": [
8591
- "default.handlebars->29->644"
8592
+ "default.handlebars->29->648"
8593
]
8594
},
8595
{
@@ -8639,7 +8640,7 @@
8640
"ru": "Скачать журнал ошибок",
8641
"zh-chs": "下載錯誤日誌",
8642
"xloc": [
8642
- "default.handlebars->29->101"
8643
+ "default.handlebars->29->104"
8644
]
8645
},
8646
{
@@ -8656,7 +8657,7 @@
8657
"ru": "Скачать события состояния питания",
8658
"zh-chs": "下載電源事件",
8659
"xloc": [
8659
- "default.handlebars->29->605"
8660
+ "default.handlebars->29->609"
8661
]
8662
},
8663
{
@@ -8707,7 +8708,7 @@
8708
"zh-chs": "使用以下一種文件格式下載設備列表。",
8709
"es": "Descargue la lista de dispositivos con uno de los formatos de archivo a continuación.",
8710
"xloc": [
8710
- "default.handlebars->29->389"
8711
+ "default.handlebars->29->393"
8712
]
8713
},
8714
{
@@ -8724,7 +8725,7 @@
8725
"ru": "Скачать список событий в одном из форматов ниже.",
8726
"zh-chs": "使用以下一種文件格式下載事件列表。",
8727
"xloc": [
8727
- "default.handlebars->29->1347"
8728
+ "default.handlebars->29->1351"
8729
]
8730
},
8731
{
@@ -8741,7 +8742,7 @@
8742
"ru": "Скачать список пользователей в одном из форматов ниже.",
8743
"zh-chs": "使用以下一種文件格式下載用戶列表。",
8744
"xloc": [
8744
- "default.handlebars->29->1402"
8745
+ "default.handlebars->29->1406"
8746
]
8747
},
8748
{
@@ -8817,7 +8818,7 @@
8818
"en": "Duplicate Agent",
8819
"nl": "Dubbele agent",
8820
"xloc": [
8820
- "default.handlebars->29->1624"
8821
+ "default.handlebars->29->1628"
8822
]
8823
},
8824
{
@@ -8851,7 +8852,7 @@
8852
"ru": "Скопировать группу пользователей",
8853
"zh-chs": "重複的用戶組",
8854
"xloc": [
8854
- "default.handlebars->29->1458"
8855
+ "default.handlebars->29->1462"
8856
]
8857
},
8858
{
@@ -8899,7 +8900,7 @@
8900
"ru": "Во время активации агент будет иметь доступ к паролю администратора.",
8901
"zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。",
8902
"xloc": [
8902
- "default.handlebars->29->1178"
8903
+ "default.handlebars->29->1182"
8904
]
8905
},
8906
{
@@ -8916,7 +8917,7 @@
8917
"zh-chs": "荷蘭語(比利時)",
8918
"es": "Holandés (belga)",
8919
"xloc": [
8919
- "default.handlebars->29->884"
8920
+ "default.handlebars->29->888"
8921
]
8922
},
8923
{
@@ -8933,7 +8934,7 @@
8934
"zh-chs": "荷蘭語(標準)",
8935
"es": "Holandés (estándar)",
8936
"xloc": [
8936
- "default.handlebars->29->883"
8937
+ "default.handlebars->29->887"
8938
]
8939
},
8940
{
@@ -8950,7 +8951,7 @@
8951
"ru": "ОШИБКА:",
8952
"zh-chs": "錯誤:",
8953
"xloc": [
8953
- "default.handlebars->29->136"
8954
+ "default.handlebars->29->140"
8955
]
8956
},
8957
{
@@ -8967,7 +8968,7 @@
8968
"ru": "ОШИБКА: Невозможно добавить ключ.",
8969
"zh-chs": "錯誤:無法添加密鑰。",
8970
"xloc": [
8970
- "default.handlebars->29->132"
8971
+ "default.handlebars->29->136"
8972
]
8973
},
8974
{
@@ -9020,7 +9021,7 @@
9021
"zh-chs": "編輯裝置",
9022
"xloc": [
9023
"default-mobile.handlebars->9->230",
9023
- "default.handlebars->29->664"
9024
+ "default.handlebars->29->668"
9025
]
9026
},
9027
{
@@ -9040,10 +9041,10 @@
9041
"default-mobile.handlebars->9->292",
9042
"default-mobile.handlebars->9->294",
9043
"default-mobile.handlebars->9->312",
9043
- "default.handlebars->29->1184",
9044
- "default.handlebars->29->1214",
9045
- "default.handlebars->29->1236",
9046
- "default.handlebars->29->1248"
9044
+ "default.handlebars->29->1188",
9045
+ "default.handlebars->29->1218",
9046
+ "default.handlebars->29->1240",
9047
+ "default.handlebars->29->1252"
9048
]
9049
},
9050
{
@@ -9060,7 +9061,7 @@
9061
"ru": "Редактировать функции группы устройств",
9062
"zh-chs": "編輯設備組功能",
9063
"xloc": [
9063
- "default.handlebars->29->1200"
9064
+ "default.handlebars->29->1204"
9065
]
9066
},
9067
{
@@ -9077,8 +9078,8 @@
9078
"ru": "Редактировать права группы устройств",
9079
"zh-chs": "編輯設備組權限",
9080
"xloc": [
9080
- "default.handlebars->29->1233",
9081
- "default.handlebars->29->1245"
9081
+ "default.handlebars->29->1237",
9082
+ "default.handlebars->29->1249"
9083
]
9084
},
9085
{
@@ -9095,7 +9096,7 @@
9096
"ru": "Редактировать согласие пользователя группы устройств",
9097
"zh-chs": "編輯設備組用戶同意",
9098
"xloc": [
9098
- "default.handlebars->29->1185"
9099
+ "default.handlebars->29->1189"
9100
]
9101
},
9102
{
@@ -9113,7 +9114,7 @@
9114
"zh-chs": "編輯設備說明",
9115
"xloc": [
9116
"default-mobile.handlebars->9->306",
9116
- "default.handlebars->29->1227"
9117
+ "default.handlebars->29->1231"
9118
]
9119
},
9120
{
@@ -9127,15 +9128,15 @@
9128
"zh-chs": "编辑设备权限",
9129
"es": "Editar los permisos del dispositivo",
9130
"xloc": [
9130
- "default.handlebars->29->1238",
9131
- "default.handlebars->29->1240"
9131
+ "default.handlebars->29->1242",
9132
+ "default.handlebars->29->1244"
9133
]
9134
},
9135
{
9136
"en": "Edit Device User Consent",
9137
"nl": "Gebruikerstoestemming apparaat bewerken",
9138
"xloc": [
9138
- "default.handlebars->29->1187"
9139
+ "default.handlebars->29->1191"
9140
]
9141
},
9142
{
@@ -9149,7 +9150,7 @@
9150
"zh-chs": "编辑组",
9151
"es": "Editar Grupo",
9152
"xloc": [
9152
- "default.handlebars->29->571"
9153
+ "default.handlebars->29->575"
9154
]
9155
},
9156
{
@@ -9167,9 +9168,9 @@
9168
"zh-chs": "編輯英特爾®AMT憑據",
9169
"xloc": [
9170
"default-mobile.handlebars->9->220",
9170
- "default.handlebars->29->470",
9171
- "default.handlebars->29->473",
9172
- "default.handlebars->29->612"
9171
+ "default.handlebars->29->474",
9172
+ "default.handlebars->29->477",
9173
+ "default.handlebars->29->616"
9174
]
9175
},
9176
{
@@ -9187,14 +9188,14 @@
9188
"zh-chs": "編輯筆記",
9189
"xloc": [
9190
"default-mobile.handlebars->9->319",
9190
- "default.handlebars->29->1255"
9191
+ "default.handlebars->29->1259"
9192
]
9193
},
9194
{
9195
"en": "Edit User Consent",
9196
"nl": "Gebruikerstoestemming bewerken",
9197
"xloc": [
9197
- "default.handlebars->29->1186"
9198
+ "default.handlebars->29->1190"
9199
]
9200
},
9201
{
@@ -9211,7 +9212,7 @@
9212
"ru": "Редактировать права пользователя для группы устройств",
9213
"zh-chs": "編輯用戶設備組權限",
9214
"xloc": [
9214
- "default.handlebars->29->1246"
9215
+ "default.handlebars->29->1250"
9216
]
9217
},
9218
{
@@ -9225,7 +9226,7 @@
9226
"zh-chs": "编辑用户设备权限",
9227
"es": "Editar los permisos del usuario del dispositivo",
9228
"xloc": [
9228
- "default.handlebars->29->1241"
9229
+ "default.handlebars->29->1245"
9230
]
9231
},
9232
{
@@ -9242,13 +9243,13 @@
9243
"ru": "Редактировать группу пользователей",
9244
"zh-chs": "編輯用戶組",
9245
"xloc": [
9245
- "default.handlebars->29->1493"
9246
+ "default.handlebars->29->1497"
9247
]
9248
},
9249
{
9250
"en": "Edit User Group Device Permissions",
9251
"xloc": [
9251
- "default.handlebars->29->1243"
9252
+ "default.handlebars->29->1247"
9253
]
9254
},
9255
{
@@ -9283,11 +9284,11 @@
9284
"zh-chs": "電子郵件",
9285
"xloc": [
9286
"default-mobile.handlebars->9->40",
9286
- "default.handlebars->29->1414",
9287
- "default.handlebars->29->1514",
9288
- "default.handlebars->29->1515",
9289
- "default.handlebars->29->1557",
9290
- "default.handlebars->29->270",
9287
+ "default.handlebars->29->1418",
9288
+ "default.handlebars->29->1518",
9289
+ "default.handlebars->29->1519",
9290
+ "default.handlebars->29->1561",
9291
+ "default.handlebars->29->274",
9292
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
9293
"login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3"
9294
]
@@ -9307,7 +9308,7 @@
9308
"zh-chs": "電郵地址變更",
9309
"xloc": [
9310
"default-mobile.handlebars->9->41",
9310
- "default.handlebars->29->1052"
9311
+ "default.handlebars->29->1056"
9312
]
9313
},
9314
{
@@ -9325,7 +9326,7 @@
9326
"es": "Email de autenticación",
9327
"xloc": [
9328
"default-mobile.handlebars->9->30",
9328
- "default.handlebars->29->821"
9329
+ "default.handlebars->29->825"
9330
]
9331
},
9332
{
@@ -9339,7 +9340,7 @@
9340
"zh-chs": "电子邮件流量",
9341
"es": "Tráfico de correo electrónico",
9342
"xloc": [
9342
- "default.handlebars->29->1663"
9343
+ "default.handlebars->29->1667"
9344
]
9345
},
9346
{
@@ -9357,7 +9358,7 @@
9358
"zh-chs": "電子郵件驗證",
9359
"xloc": [
9360
"default-mobile.handlebars->9->39",
9360
- "default.handlebars->29->1050"
9361
+ "default.handlebars->29->1054"
9362
]
9363
},
9364
{
@@ -9365,7 +9366,7 @@
9366
"nl": "E-mail uitnodiging",
9367
"es": "Email de invitación",
9368
"xloc": [
9368
- "default.handlebars->29->267"
9369
+ "default.handlebars->29->271"
9370
]
9371
},
9372
{
@@ -9379,7 +9380,7 @@
9380
"zh-chs": "邮件未验证",
9381
"es": "El email no esta no esta verficado",
9382
"xloc": [
9382
- "default.handlebars->29->1376"
9383
+ "default.handlebars->29->1380"
9384
]
9385
},
9386
{
@@ -9396,8 +9397,8 @@
9397
"ru": "Email подтвержден",
9398
"zh-chs": "電子郵件已驗證",
9399
"xloc": [
9399
- "default.handlebars->29->1377",
9400
- "default.handlebars->29->1511"
9400
+ "default.handlebars->29->1381",
9401
+ "default.handlebars->29->1515"
9402
]
9403
},
9404
{
@@ -9414,7 +9415,7 @@
9415
"ru": "Email подтвержден.",
9416
"zh-chs": "電子郵件已驗證。",
9417
"xloc": [
9417
- "default.handlebars->29->1420"
9418
+ "default.handlebars->29->1424"
9419
]
9420
},
9421
{
@@ -9431,7 +9432,7 @@
9432
"ru": "Email не подтвержден",
9433
"zh-chs": "電子郵件未驗證",
9434
"xloc": [
9434
- "default.handlebars->29->1512"
9435
+ "default.handlebars->29->1516"
9436
]
9437
},
9438
{
@@ -9488,7 +9489,7 @@
9489
"zh-chs": "啟用邀請代碼",
9490
"es": "Habilitar Códigos de Invitación",
9491
"xloc": [
9491
- "default.handlebars->29->1276"
9492
+ "default.handlebars->29->1280"
9493
]
9494
},
9495
{
@@ -9523,7 +9524,7 @@
9524
"es": "Habilitar autenticación de dos factores por correo.",
9525
"xloc": [
9526
"default-mobile.handlebars->9->32",
9526
- "default.handlebars->29->823"
9527
+ "default.handlebars->29->827"
9528
]
9529
},
9530
{
@@ -9574,7 +9575,7 @@
9575
"ru": "Английский",
9576
"zh-chs": "英語",
9577
"xloc": [
9577
- "default.handlebars->29->885"
9578
+ "default.handlebars->29->889"
9579
]
9580
},
9581
{
@@ -9591,7 +9592,7 @@
9592
"zh-chs": "英文(澳洲)",
9593
"es": "Inglés (Australia)",
9594
"xloc": [
9594
- "default.handlebars->29->886"
9595
+ "default.handlebars->29->890"
9596
]
9597
},
9598
{
@@ -9608,7 +9609,7 @@
9609
"zh-chs": "英語(伯利茲)",
9610
"es": "Inglés (belice)",
9611
"xloc": [
9611
- "default.handlebars->29->887"
9612
+ "default.handlebars->29->891"
9613
]
9614
},
9615
{
@@ -9625,7 +9626,7 @@
9626
"zh-chs": "英文(加拿大)",
9627
"es": "Inglés (Canadá)",
9628
"xloc": [
9628
- "default.handlebars->29->888"
9629
+ "default.handlebars->29->892"
9630
]
9631
},
9632
{
@@ -9642,7 +9643,7 @@
9643
"zh-chs": "英文(愛爾蘭)",
9644
"es": "Inglés (Irlanda)",
9645
"xloc": [
9645
- "default.handlebars->29->889"
9646
+ "default.handlebars->29->893"
9647
]
9648
},
9649
{
@@ -9659,7 +9660,7 @@
9660
"zh-chs": "英文(牙買加)",
9661
"es": "Inglés (Jamaica)",
9662
"xloc": [
9662
- "default.handlebars->29->890"
9663
+ "default.handlebars->29->894"
9664
]
9665
},
9666
{
@@ -9676,7 +9677,7 @@
9677
"zh-chs": "英文(紐西蘭)",
9678
"es": "Inglés (Nueva Zelanda)",
9679
"xloc": [
9679
- "default.handlebars->29->891"
9680
+ "default.handlebars->29->895"
9681
]
9682
},
9683
{
@@ -9693,7 +9694,7 @@
9694
"zh-chs": "英文(菲律賓)",
9695
"es": "Inglés (Filipinas)",
9696
"xloc": [
9696
- "default.handlebars->29->892"
9697
+ "default.handlebars->29->896"
9698
]
9699
},
9700
{
@@ -9710,7 +9711,7 @@
9711
"zh-chs": "英語(南非)",
9712
"es": "Inglés (Sudáfrica)",
9713
"xloc": [
9713
- "default.handlebars->29->893"
9714
+ "default.handlebars->29->897"
9715
]
9716
},
9717
{
@@ -9727,7 +9728,7 @@
9728
"zh-chs": "英文(特立尼達和多巴哥)",
9729
"es": "Inglés (Trinidad y Tobago)",
9730
"xloc": [
9730
- "default.handlebars->29->894"
9731
+ "default.handlebars->29->898"
9732
]
9733
},
9734
{
@@ -9744,7 +9745,7 @@
9745
"zh-chs": "英文(英國)",
9746
"es": "Inglés (Reino Unido)",
9747
"xloc": [
9747
- "default.handlebars->29->895"
9748
+ "default.handlebars->29->899"
9749
]
9750
},
9751
{
@@ -9761,7 +9762,7 @@
9762
"zh-chs": "美國英語)",
9763
"es": "Inglés (Estados Unidos)",
9764
"xloc": [
9764
- "default.handlebars->29->896"
9765
+ "default.handlebars->29->900"
9766
]
9767
},
9768
{
@@ -9778,7 +9779,7 @@
9779
"zh-chs": "英文(津巴布韋)",
9780
"es": "Inglés (Zimbabwe)",
9781
"xloc": [
9781
- "default.handlebars->29->897"
9782
+ "default.handlebars->29->901"
9783
]
9784
},
9785
{
@@ -9795,8 +9796,8 @@
9796
"ru": "Ввод",
9797
"zh-chs": "輸入",
9798
"xloc": [
9798
- "default.handlebars->29->1078",
9799
- "default.handlebars->29->1079"
9799
+ "default.handlebars->29->1082",
9800
+ "default.handlebars->29->1083"
9801
]
9802
},
9803
{
@@ -9813,7 +9814,7 @@
9814
"ru": "Введите разделенный запятыми список имен административных областей.",
9815
"zh-chs": "輸入管理領域名稱的逗號分隔列表。",
9816
"xloc": [
9816
- "default.handlebars->29->1424"
9817
+ "default.handlebars->29->1428"
9818
]
9819
},
9820
{
@@ -9830,7 +9831,7 @@
9831
"ru": "Введите диапазон IP-адресов для сканирования Intel AMT устройств.",
9832
"zh-chs": "輸入IP地址範圍以掃描Intel AMT設備。",
9833
"xloc": [
9833
- "default.handlebars->29->237"
9834
+ "default.handlebars->29->241"
9835
]
9836
},
9837
{
@@ -9847,7 +9848,7 @@
9848
"ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.",
9849
"zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
9850
"xloc": [
9850
- "default.handlebars->29->674"
9851
+ "default.handlebars->29->678"
9852
]
9853
},
9854
{
@@ -9882,7 +9883,7 @@
9883
"ru": "Для двухэтапного входа введите токен здесь:",
9884
"zh-chs": "在此處輸入令牌以進行兩步登錄:",
9885
"xloc": [
9885
- "default.handlebars->29->104"
9886
+ "default.handlebars->29->108"
9887
]
9888
},
9889
{
@@ -9899,7 +9900,7 @@
9900
"ru": "Ошибка, Невозможно добавить код.",
9901
"zh-chs": "錯誤,無法添加密鑰。",
9902
"xloc": [
9902
- "default.handlebars->29->130"
9903
+ "default.handlebars->29->134"
9904
]
9905
},
9906
{
@@ -9933,7 +9934,7 @@
9934
"zh-chs": "世界語",
9935
"es": "Esperanto",
9936
"xloc": [
9936
- "default.handlebars->29->898"
9937
+ "default.handlebars->29->902"
9938
]
9939
},
9940
{
@@ -9950,7 +9951,7 @@
9951
"zh-chs": "愛沙尼亞語",
9952
"es": "Estonio",
9953
"xloc": [
9953
- "default.handlebars->29->899"
9954
+ "default.handlebars->29->903"
9955
]
9956
},
9957
{
@@ -9967,7 +9968,7 @@
9968
"ru": "Детали события",
9969
"zh-chs": "活動詳情",
9970
"xloc": [
9970
- "default.handlebars->29->751"
9971
+ "default.handlebars->29->755"
9972
]
9973
},
9974
{
@@ -9984,7 +9985,7 @@
9985
"ru": "Экспорт списка событий",
9986
"zh-chs": "活動列表導出",
9987
"xloc": [
9987
- "default.handlebars->29->1352"
9988
+ "default.handlebars->29->1356"
9989
]
9990
},
9991
{
@@ -10056,7 +10057,7 @@
10057
"zh-chs": "導出設備信息",
10058
"es": "Exportar información del dispositivo",
10059
"xloc": [
10059
- "default.handlebars->29->381"
10060
+ "default.handlebars->29->385"
10061
]
10062
},
10063
{
@@ -10073,7 +10074,7 @@
10074
"ru": "Расширенный ASCII",
10075
"zh-chs": "擴展ASCII",
10076
"xloc": [
10076
- "default.handlebars->29->700"
10077
+ "default.handlebars->29->704"
10078
]
10079
},
10080
{
@@ -10107,7 +10108,7 @@
10108
"ru": "Внешний",
10109
"zh-chs": "外部",
10110
"xloc": [
10110
- "default.handlebars->29->1648"
10111
+ "default.handlebars->29->1652"
10112
]
10113
},
10114
{
@@ -10124,7 +10125,7 @@
10125
"zh-chs": "FYRO馬其頓語",
10126
"es": "Macedonio Macedonia",
10127
"xloc": [
10127
- "default.handlebars->29->949"
10128
+ "default.handlebars->29->953"
10129
]
10130
},
10131
{
@@ -10141,7 +10142,7 @@
10142
"zh-chs": "法羅語",
10143
"es": "Faeroese",
10144
"xloc": [
10144
- "default.handlebars->29->900"
10145
+ "default.handlebars->29->904"
10146
]
10147
},
10148
{
@@ -10175,7 +10176,7 @@
10176
"zh-chs": "波斯語(波斯語)",
10177
"es": "Farsi (Persa)",
10178
"xloc": [
10178
- "default.handlebars->29->901"
10179
+ "default.handlebars->29->905"
10180
]
10181
},
10182
{
@@ -10210,7 +10211,7 @@
10211
"ru": "Функции",
10212
"zh-chs": "特徵",
10213
"xloc": [
10213
- "default.handlebars->29->1106"
10214
+ "default.handlebars->29->1110"
10215
]
10216
},
10217
{
@@ -10227,7 +10228,7 @@
10228
"zh-chs": "斐濟",
10229
"es": "Fiyiano",
10230
"xloc": [
10230
- "default.handlebars->29->902"
10231
+ "default.handlebars->29->906"
10232
]
10233
},
10234
{
@@ -10245,8 +10246,8 @@
10246
"zh-chs": "文件編輯器",
10247
"xloc": [
10248
"default-mobile.handlebars->9->255",
10248
- "default.handlebars->29->415",
10249
- "default.handlebars->29->723"
10249
+ "default.handlebars->29->419",
10250
+ "default.handlebars->29->727"
10251
]
10252
},
10253
{
@@ -10280,7 +10281,7 @@
10281
"ru": "Драйвер файловой системы",
10282
"zh-chs": "FileSystemDriver",
10283
"xloc": [
10283
- "default.handlebars->29->683"
10284
+ "default.handlebars->29->687"
10285
]
10286
},
10287
{
@@ -10297,7 +10298,7 @@
10298
"ru": "Файлы",
10299
"zh-chs": "檔案",
10300
"xloc": [
10300
- "default.handlebars->29->1195",
10301
+ "default.handlebars->29->1199",
10302
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
10303
"default.handlebars->contextMenu->cxfiles"
10304
]
@@ -10333,9 +10334,9 @@
10334
"ru": "Уведомление файлов",
10335
"zh-chs": "文件通知",
10336
"xloc": [
10336
- "default.handlebars->29->1114",
10337
- "default.handlebars->29->1537",
10338
- "default.handlebars->29->494"
10337
+ "default.handlebars->29->1118",
10338
+ "default.handlebars->29->1541",
10339
+ "default.handlebars->29->498"
10340
]
10341
},
10342
{
@@ -10352,9 +10353,9 @@
10353
"ru": "Запрос файлов",
10354
"zh-chs": "文件提示",
10355
"xloc": [
10355
- "default.handlebars->29->1113",
10356
- "default.handlebars->29->1536",
10357
- "default.handlebars->29->493"
10356
+ "default.handlebars->29->1117",
10357
+ "default.handlebars->29->1540",
10358
+ "default.handlebars->29->497"
10359
]
10360
},
10361
{
@@ -10389,7 +10390,7 @@
10390
"ru": "Финский",
10391
"zh-chs": "芬蘭",
10392
"xloc": [
10392
- "default.handlebars->29->903"
10393
+ "default.handlebars->29->907"
10394
]
10395
},
10396
{
@@ -10506,8 +10507,8 @@
10507
"ru": "Принудительно сбросить пароль при следующем входе в систему.",
10508
"zh-chs": "下次登錄時強制重置密碼。",
10509
"xloc": [
10509
- "default.handlebars->29->1418",
10510
- "default.handlebars->29->1566"
10510
+ "default.handlebars->29->1422",
10511
+ "default.handlebars->29->1570"
10512
]
10513
},
10514
{
@@ -10593,8 +10594,8 @@
10594
"ru": "Свободно",
10595
"zh-chs": "自由",
10596
"xloc": [
10596
- "default.handlebars->29->1609",
10597
- "default.handlebars->29->1611"
10597
+ "default.handlebars->29->1613",
10598
+ "default.handlebars->29->1615"
10599
]
10600
},
10601
{
@@ -10629,7 +10630,7 @@
10630
"zh-chs": "法語(比利時)",
10631
"es": "Francés (Bélgica)",
10632
"xloc": [
10632
- "default.handlebars->29->905"
10633
+ "default.handlebars->29->909"
10634
]
10635
},
10636
{
@@ -10646,7 +10647,7 @@
10647
"zh-chs": "法語(加拿大)",
10648
"es": "Francés (Canadá)",
10649
"xloc": [
10649
- "default.handlebars->29->906"
10650
+ "default.handlebars->29->910"
10651
]
10652
},
10653
{
@@ -10663,7 +10664,7 @@
10664
"zh-chs": "法語(法國)",
10665
"es": "Francés (Francia)",
10666
"xloc": [
10666
- "default.handlebars->29->907"
10667
+ "default.handlebars->29->911"
10668
]
10669
},
10670
{
@@ -10680,7 +10681,7 @@
10681
"zh-chs": "法語(盧森堡)",
10682
"es": "Francés (Luxemburgo)",
10683
"xloc": [
10683
- "default.handlebars->29->908"
10684
+ "default.handlebars->29->912"
10685
]
10686
},
10687
{
@@ -10697,7 +10698,7 @@
10698
"zh-chs": "法語(摩納哥)",
10699
"es": "Francés (Mónaco)",
10700
"xloc": [
10700
- "default.handlebars->29->909"
10701
+ "default.handlebars->29->913"
10702
]
10703
},
10704
{
@@ -10714,7 +10715,7 @@
10715
"zh-chs": "法語(標準)",
10716
"es": "Francés (estándar)",
10717
"xloc": [
10717
- "default.handlebars->29->904"
10718
+ "default.handlebars->29->908"
10719
]
10720
},
10721
{
@@ -10731,7 +10732,7 @@
10732
"zh-chs": "法語(瑞士)",
10733
"es": "Francés (Suiza)",
10734
"xloc": [
10734
- "default.handlebars->29->910"
10735
+ "default.handlebars->29->914"
10736
]
10737
},
10738
{
@@ -10748,7 +10749,7 @@
10749
"zh-chs": "弗里斯蘭語",
10750
"es": "Friso",
10751
"xloc": [
10751
- "default.handlebars->29->911"
10752
+ "default.handlebars->29->915"
10753
]
10754
},
10755
{
@@ -10765,7 +10766,7 @@
10766
"zh-chs": "弗留利",
10767
"es": "Friuliano",
10768
"xloc": [
10768
- "default.handlebars->29->912"
10769
+ "default.handlebars->29->916"
10770
]
10771
},
10772
{
@@ -10786,9 +10787,9 @@
10787
"default-mobile.handlebars->9->293",
10788
"default-mobile.handlebars->9->311",
10789
"default-mobile.handlebars->9->67",
10789
- "default.handlebars->29->1085",
10790
- "default.handlebars->29->1213",
10791
- "default.handlebars->29->1430"
10790
+ "default.handlebars->29->1089",
10791
+ "default.handlebars->29->1217",
10792
+ "default.handlebars->29->1434"
10793
]
10794
},
10795
{
@@ -10805,7 +10806,7 @@
10806
"ru": "Администратор с полным доступом (все права)",
10807
"zh-chs": "正式管理員(保留所有權利)",
10808
"xloc": [
10808
- "default.handlebars->29->1247"
10809
+ "default.handlebars->29->1251"
10810
]
10811
},
10812
{
@@ -10836,7 +10837,7 @@
10837
"zh-chs": "完整的設備權限",
10838
"es": "Derechos completos del dispositivo",
10839
"xloc": [
10839
- "default.handlebars->29->554"
10840
+ "default.handlebars->29->558"
10841
]
10842
},
10843
{
@@ -10850,7 +10851,7 @@
10851
"zh-chs": "完全权利",
10852
"es": "Derechos Completos",
10853
"xloc": [
10853
- "default.handlebars->29->570"
10854
+ "default.handlebars->29->574"
10855
]
10856
},
10857
{
@@ -10886,7 +10887,7 @@
10887
"ru": "Администратор с полным доступом",
10888
"zh-chs": "正式管理員",
10889
"xloc": [
10889
- "default.handlebars->29->1507"
10890
+ "default.handlebars->29->1511"
10891
]
10892
},
10893
{
@@ -10903,7 +10904,7 @@
10904
"zh-chs": "蓋爾語(愛爾蘭)",
10905
"es": "Gaélico (Irlandés)",
10906
"xloc": [
10906
- "default.handlebars->29->914"
10907
+ "default.handlebars->29->918"
10908
]
10909
},
10910
{
@@ -10920,7 +10921,7 @@
10921
"zh-chs": "蓋爾語(蘇格蘭語)",
10922
"es": "Gaélico (Escocés)",
10923
"xloc": [
10923
- "default.handlebars->29->913"
10924
+ "default.handlebars->29->917"
10925
]
10926
},
10927
{
@@ -10937,7 +10938,7 @@
10938
"zh-chs": "加拉契人",
10939
"es": "Gallego",
10940
"xloc": [
10940
- "default.handlebars->29->915"
10941
+ "default.handlebars->29->919"
10942
]
10943
},
10944
{
@@ -11010,7 +11011,7 @@
11011
"ru": "Общая информация",
11012
"zh-chs": "一般信息",
11013
"xloc": [
11013
- "default.handlebars->29->422"
11014
+ "default.handlebars->29->426"
11015
]
11016
},
11017
{
@@ -11027,7 +11028,7 @@
11028
"ru": "Генерация новых токенов",
11029
"zh-chs": "生成新令牌",
11030
"xloc": [
11030
- "default.handlebars->29->118"
11031
+ "default.handlebars->29->122"
11032
]
11033
},
11034
{
@@ -11044,7 +11045,7 @@
11045
"zh-chs": "格魯吉亞人",
11046
"es": "Georgiano",
11047
"xloc": [
11047
- "default.handlebars->29->916"
11048
+ "default.handlebars->29->920"
11049
]
11050
},
11051
{
@@ -11061,7 +11062,7 @@
11062
"zh-chs": "德語(奧地利)",
11063
"es": "Alemán (Austria)",
11064
"xloc": [
11064
- "default.handlebars->29->918"
11065
+ "default.handlebars->29->922"
11066
]
11067
},
11068
{
@@ -11078,7 +11079,7 @@
11079
"zh-chs": "德文(德國)",
11080
"es": "Alemán (Alemania)",
11081
"xloc": [
11081
- "default.handlebars->29->919"
11082
+ "default.handlebars->29->923"
11083
]
11084
},
11085
{
@@ -11095,7 +11096,7 @@
11096
"zh-chs": "德文(列支敦士登)",
11097
"es": "Alemán (Liechtenstein)",
11098
"xloc": [
11098
- "default.handlebars->29->920"
11099
+ "default.handlebars->29->924"
11100
]
11101
},
11102
{
@@ -11112,7 +11113,7 @@
11113
"zh-chs": "德語(盧森堡)",
11114
"es": "Alemán (Luxemburgo)",
11115
"xloc": [
11115
- "default.handlebars->29->921"
11116
+ "default.handlebars->29->925"
11117
]
11118
},
11119
{
@@ -11129,7 +11130,7 @@
11130
"zh-chs": "德語(標準)",
11131
"es": "Alemán (Estándar)",
11132
"xloc": [
11132
- "default.handlebars->29->917"
11133
+ "default.handlebars->29->921"
11134
]
11135
},
11136
{
@@ -11146,7 +11147,7 @@
11147
"zh-chs": "德語(瑞士)",
11148
"es": "Alemán (Suiza)",
11149
"xloc": [
11149
- "default.handlebars->29->922"
11150
+ "default.handlebars->29->926"
11151
]
11152
},
11153
{
@@ -11163,7 +11164,7 @@
11164
"ru": "Получить учетные данные MQTT для этого устройства.",
11165
"zh-chs": "獲取此設備的MQTT登錄憑據。",
11166
"xloc": [
11166
- "default.handlebars->29->535"
11167
+ "default.handlebars->29->539"
11168
]
11169
},
11170
{
@@ -11216,7 +11217,7 @@
11217
"ru": "Хорошо",
11218
"zh-chs": "好",
11219
"xloc": [
11219
- "default.handlebars->29->1081"
11220
+ "default.handlebars->29->1085"
11221
]
11222
},
11223
{
@@ -11253,7 +11254,7 @@
11254
"zh-chs": "希臘語",
11255
"es": "Griego",
11256
"xloc": [
11256
- "default.handlebars->29->923"
11257
+ "default.handlebars->29->927"
11258
]
11259
},
11260
{
@@ -11271,7 +11272,7 @@
11272
"zh-chs": "組",
11273
"xloc": [
11274
"default-mobile.handlebars->9->137",
11274
- "default.handlebars->29->447",
11275
+ "default.handlebars->29->451",
11276
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
11277
]
11278
},
@@ -11289,9 +11290,9 @@
11290
"ru": "Групповое действие",
11291
"zh-chs": "集體行動",
11292
"xloc": [
11292
- "default.handlebars->29->1388",
11293
- "default.handlebars->29->1450",
11294
- "default.handlebars->29->384",
11293
+ "default.handlebars->29->1392",
11294
+ "default.handlebars->29->1454",
11295
+ "default.handlebars->29->388",
11296
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
11297
"default.handlebars->container->column_l->p4->3->1->0->3->3",
11298
"default.handlebars->container->column_l->p50->3->1->0->3->3"
@@ -11311,7 +11312,7 @@
11312
"ru": "Члены группы",
11313
"zh-chs": "小組成員",
11314
"xloc": [
11314
- "default.handlebars->29->1470"
11315
+ "default.handlebars->29->1474"
11316
]
11317
},
11318
{
@@ -11328,7 +11329,7 @@
11329
"ru": "Права на группу для пользователя {0}.",
11330
"zh-chs": "用戶{0}的組權限。",
11331
"xloc": [
11331
- "default.handlebars->29->1212"
11332
+ "default.handlebars->29->1216"
11333
]
11334
},
11335
{
@@ -11345,7 +11346,7 @@
11346
"ru": "Права на группу для {0}.",
11347
"zh-chs": "{0}的組權限。",
11348
"xloc": [
11348
- "default.handlebars->29->1211"
11349
+ "default.handlebars->29->1215"
11350
]
11351
},
11352
{
@@ -11379,7 +11380,6 @@
11380
"ru": "Группы",
11381
"zh-chs": "團體",
11382
"xloc": [
11382
- "default.handlebars->29->1357",
11383
"default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups"
11384
]
11385
},
@@ -11397,7 +11397,7 @@
11397
"zh-chs": "古久拉提",
11398
"es": "Gujarati",
11399
"xloc": [
11400
- "default.handlebars->29->924"
11400
+ "default.handlebars->29->928"
11401
]
11402
},
11403
{
@@ -11433,7 +11433,7 @@
11433
"zh-chs": "海地",
11434
"es": "Haitiano",
11435
"xloc": [
11436
- "default.handlebars->29->925"
11436
+ "default.handlebars->29->929"
11437
]
11438
},
11439
{
@@ -11467,7 +11467,7 @@
11467
"ru": "Жесткое отключение агента",
11468
"zh-chs": "硬斷開劑",
11469
"xloc": [
11470
- "default.handlebars->29->819"
11470
+ "default.handlebars->29->823"
11471
]
11472
},
11473
{
@@ -11484,7 +11484,7 @@
11484
"ru": "Всего кучи",
11485
"zh-chs": "堆總數",
11486
"xloc": [
11487
- "default.handlebars->29->1650"
11487
+ "default.handlebars->29->1654"
11488
]
11489
},
11490
{
@@ -11501,7 +11501,7 @@
11501
"ru": "Куча используется",
11502
"zh-chs": "堆使用",
11503
"xloc": [
11504
- "default.handlebars->29->1649"
11504
+ "default.handlebars->29->1653"
11505
]
11506
},
11507
{
@@ -11518,7 +11518,7 @@
11518
"ru": "Иврит",
11519
"zh-chs": "希伯來語",
11520
"xloc": [
11521
- "default.handlebars->29->926"
11521
+ "default.handlebars->29->930"
11522
]
11523
},
11524
{
@@ -11550,7 +11550,7 @@
11550
"ru": "Помочь перевести MeshCentral",
11551
"zh-chs": "幫助翻譯MeshCentral",
11552
"xloc": [
11553
- "default.handlebars->29->1040"
11553
+ "default.handlebars->29->1044"
11554
]
11555
},
11556
{
@@ -11612,7 +11612,7 @@
11612
"xloc": [
11613
"default-mobile.handlebars->9->107",
11614
"default-mobile.handlebars->9->114",
11615
- "default.handlebars->29->348",
11615
+ "default.handlebars->29->352",
11616
"default.handlebars->29->5"
11617
]
11618
},
@@ -11630,7 +11630,7 @@
11630
"ru": "Хинди",
11631
"zh-chs": "印地語",
11632
"xloc": [
11633
- "default.handlebars->29->927"
11633
+ "default.handlebars->29->931"
11634
]
11635
},
11636
{
@@ -11666,7 +11666,7 @@
11666
"zh-chs": "持有1份副本",
11667
"xloc": [
11668
"default-mobile.handlebars->9->264",
11669
- "default.handlebars->29->732"
11669
+ "default.handlebars->29->736"
11670
]
11671
},
11672
{
@@ -11684,7 +11684,7 @@
11684
"zh-chs": "持有1個搬家公司",
11685
"xloc": [
11686
"default-mobile.handlebars->9->268",
11687
- "default.handlebars->29->736"
11687
+ "default.handlebars->29->740"
11688
]
11689
},
11690
{
@@ -11702,7 +11702,7 @@
11702
"zh-chs": "保留{0}個條目進行複制",
11703
"xloc": [
11704
"default-mobile.handlebars->9->262",
11705
- "default.handlebars->29->730"
11705
+ "default.handlebars->29->734"
11706
]
11707
},
11708
{
@@ -11720,7 +11720,7 @@
11720
"zh-chs": "保留{0}個條目以進行移動",
11721
"xloc": [
11722
"default-mobile.handlebars->9->266",
11723
- "default.handlebars->29->734"
11723
+ "default.handlebars->29->738"
11724
]
11725
},
11726
{
@@ -11738,7 +11738,7 @@
11738
"zh-chs": "保持{2}的{0}入口{1}",
11739
"xloc": [
11740
"default-mobile.handlebars->9->91",
11741
- "default.handlebars->29->1339"
11741
+ "default.handlebars->29->1343"
11742
]
11743
},
11744
{
@@ -11759,9 +11759,9 @@
11759
"default-mobile.handlebars->9->140",
11760
"default-mobile.handlebars->9->142",
11761
"default-mobile.handlebars->9->226",
11762
- "default.handlebars->29->223",
11763
- "default.handlebars->29->452",
11764
- "default.handlebars->29->660"
11762
+ "default.handlebars->29->227",
11763
+ "default.handlebars->29->456",
11764
+ "default.handlebars->29->664"
11765
]
11766
},
11767
{
@@ -11778,7 +11778,7 @@
11778
"ru": "Синхронизация имени хоста",
11779
"zh-chs": "主機名同步",
11780
"xloc": [
11781
- "default.handlebars->29->1104"
11781
+ "default.handlebars->29->1108"
11782
]
11783
},
11784
{
@@ -11795,7 +11795,7 @@
11795
"zh-chs": "匈牙利",
11796
"es": "Hungaro",
11797
"xloc": [
11798
- "default.handlebars->29->928"
11798
+ "default.handlebars->29->932"
11799
]
11800
},
11801
{
@@ -11812,7 +11812,7 @@
11812
"ru": "Диапазон IP",
11813
"zh-chs": "IP範圍",
11814
"xloc": [
11815
- "default.handlebars->29->238"
11815
+ "default.handlebars->29->242"
11816
]
11817
},
11818
{
@@ -11847,7 +11847,7 @@
11847
"ru": "IP: {0}",
11848
"zh-chs": "IP:{0}",
11849
"xloc": [
11850
- "default.handlebars->29->772"
11850
+ "default.handlebars->29->776"
11851
]
11852
},
11853
{
@@ -11864,7 +11864,7 @@
11864
"zh-chs": "IP:{0},掩碼:{1},網關:{2}",
11865
"es": "IP: {0}, Mascara: {1}, Puerta de Enlace: {2}",
11866
"xloc": [
11867
- "default.handlebars->29->770"
11867
+ "default.handlebars->29->774"
11868
]
11869
},
11870
{
@@ -11881,8 +11881,8 @@
11881
"zh-chs": "IPv4層",
11882
"es": "Capa IPv4",
11883
"xloc": [
11884
- "default.handlebars->29->769",
11885
- "default.handlebars->29->771"
11884
+ "default.handlebars->29->773",
11885
+ "default.handlebars->29->775"
11886
]
11887
},
11888
{
@@ -11950,7 +11950,7 @@
11950
"zh-chs": "冰島的",
11951
"es": "Islandés",
11952
"xloc": [
11953
- "default.handlebars->29->929"
11953
+ "default.handlebars->29->933"
11954
]
11955
},
11956
{
@@ -11968,7 +11968,7 @@
11968
"zh-chs": "圖標選擇",
11969
"xloc": [
11970
"default-mobile.handlebars->9->224",
11971
- "default.handlebars->29->658"
11971
+ "default.handlebars->29->662"
11972
]
11973
},
11974
{
@@ -11985,7 +11985,7 @@
11985
"ru": "Идентификатор",
11986
"zh-chs": "識別碼",
11987
"xloc": [
11988
- "default.handlebars->29->797"
11988
+ "default.handlebars->29->801"
11989
]
11990
},
11991
{
@@ -12067,7 +12067,7 @@
12067
"es": "Dispositivos Individuales",
12068
"xloc": [
12069
"default-mobile.handlebars->9->96",
12070
- "default.handlebars->29->164"
12070
+ "default.handlebars->29->168"
12071
]
12072
},
12073
{
@@ -12084,7 +12084,7 @@
12084
"zh-chs": "印度尼西亞",
12085
"es": "Indonesio",
12086
"xloc": [
12087
- "default.handlebars->29->930"
12087
+ "default.handlebars->29->934"
12088
]
12089
},
12090
{
@@ -12166,7 +12166,7 @@
12166
"ru": "Установите <a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a> или совместимое приложение и отсканируйте штрих-код, используйте <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>эту ссылку</a> или введите код. Затем введите ниже текущий токен из 6 цифр для активации двухшаговой авторизации.",
12167
"zh-chs": "安裝<a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank> Google身份驗證器</a>或兼容的應用程序並掃描條形碼,使用<a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>此鏈接</a>或輸入密碼。然後,在下面輸入當前的6位數令牌以激活兩步登錄。",
12168
"xloc": [
12169
- "default.handlebars->29->103"
12169
+ "default.handlebars->29->107"
12170
]
12171
},
12172
{
@@ -12199,7 +12199,7 @@
12199
"ru": "Установка CIRA",
12200
"zh-chs": "安裝CIRA",
12201
"xloc": [
12202
- "default.handlebars->29->1137"
12202
+ "default.handlebars->29->1141"
12203
]
12204
},
12205
{
@@ -12216,7 +12216,7 @@
12216
"ru": "Локальная установка",
12217
"zh-chs": "安裝本地",
12218
"xloc": [
12219
- "default.handlebars->29->1139"
12219
+ "default.handlebars->29->1143"
12220
]
12221
},
12222
{
@@ -12233,10 +12233,10 @@
12233
"ru": "Тип установки",
12234
"zh-chs": "安裝類型",
12235
"xloc": [
12236
- "default.handlebars->29->1278",
12237
- "default.handlebars->29->1285",
12238
- "default.handlebars->29->285",
12239
- "default.handlebars->29->307"
12236
+ "default.handlebars->29->1282",
12237
+ "default.handlebars->29->1289",
12238
+ "default.handlebars->29->289",
12239
+ "default.handlebars->29->311"
12240
]
12241
},
12242
{
@@ -12253,7 +12253,7 @@
12253
"ru": "Intel (F10 = ESC+[OM)",
12254
"zh-chs": "英特爾(F10 = ESC + [OM)",
12255
"xloc": [
12256
- "default.handlebars->29->702",
12256
+ "default.handlebars->29->706",
12257
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
12258
]
12259
},
@@ -12271,10 +12271,10 @@
12271
"ru": "Intel AMT",
12272
"zh-chs": "英特爾AMT",
12273
"xloc": [
12274
- "default.handlebars->29->1297",
12275
- "default.handlebars->29->1303",
12276
- "default.handlebars->29->1646",
12277
- "default.handlebars->29->1668"
12274
+ "default.handlebars->29->1301",
12275
+ "default.handlebars->29->1307",
12276
+ "default.handlebars->29->1650",
12277
+ "default.handlebars->29->1672"
12278
]
12279
},
12280
{
@@ -12291,7 +12291,7 @@
12291
"ru": "Подключен Intel AMT CIRA",
12292
"zh-chs": "英特爾AMT CIRA已連接",
12293
"xloc": [
12294
- "default.handlebars->29->139"
12294
+ "default.handlebars->29->143"
12295
]
12296
},
12297
{
@@ -12308,7 +12308,7 @@
12308
"ru": "Отключен Intel AMT CIRA",
12309
"zh-chs": "英特爾AMT CIRA斷開連接",
12310
"xloc": [
12311
- "default.handlebars->29->143"
12311
+ "default.handlebars->29->147"
12312
]
12313
},
12314
{
@@ -12325,7 +12325,7 @@
12325
"ru": "Обнаружен Intel AMT",
12326
"zh-chs": "檢測到英特爾AMT",
12327
"xloc": [
12328
- "default.handlebars->29->138"
12328
+ "default.handlebars->29->142"
12329
]
12330
},
12331
{
@@ -12342,7 +12342,7 @@
12342
"ru": "Intel AMT активирован в режиме администратора",
12343
"zh-chs": "在管理控制模式下激活了Intel AMT",
12344
"xloc": [
12345
- "default.handlebars->29->466"
12345
+ "default.handlebars->29->470"
12346
]
12347
},
12348
{
@@ -12359,7 +12359,7 @@
12359
"ru": "Intel AMT активирован в режиме клиента",
12360
"zh-chs": "英特爾AMT在客戶端控制模式下被激活",
12361
"xloc": [
12362
- "default.handlebars->29->464"
12362
+ "default.handlebars->29->468"
12363
]
12364
},
12365
{
@@ -12376,7 +12376,7 @@
12376
"ru": "Intel AMT настроен с TLS безопасностью сети",
12377
"zh-chs": "英特爾AMT已設置TLS網絡安全性",
12378
"xloc": [
12379
- "default.handlebars->29->468"
12379
+ "default.handlebars->29->472"
12380
]
12381
},
12382
{
@@ -12393,7 +12393,7 @@
12393
"ru": "Intel AMT не обнаружен",
12394
"zh-chs": "未檢測到英特爾AMT",
12395
"xloc": [
12396
- "default.handlebars->29->142"
12396
+ "default.handlebars->29->146"
12397
]
12398
},
12399
{
@@ -12410,7 +12410,7 @@
12410
"ru": "Intel AMT необходимо установить с доверенным FQDN в MEBx или иметь кабельное подключение к локальной сети:",
12411
"zh-chs": "英特爾AMT將需要在MEBx中設置為受信任的FQDN,或者在網絡上具有有線局域網:",
12412
"xloc": [
12413
- "default.handlebars->29->235"
12413
+ "default.handlebars->29->239"
12414
]
12415
},
12416
{
@@ -12427,7 +12427,7 @@
12427
"ru": "Intel ASCII",
12428
"zh-chs": "英特爾ASCII",
12429
"xloc": [
12430
- "default.handlebars->29->701"
12430
+ "default.handlebars->29->705"
12431
]
12432
},
12433
{
@@ -12447,11 +12447,11 @@
12447
"default-mobile.handlebars->9->126",
12448
"default-mobile.handlebars->9->190",
12449
"default-mobile.handlebars->9->195",
12450
- "default.handlebars->29->1121",
12451
- "default.handlebars->29->1131",
12452
- "default.handlebars->29->425",
12453
- "default.handlebars->29->476",
12454
- "default.handlebars->29->504"
12450
+ "default.handlebars->29->1125",
12451
+ "default.handlebars->29->1135",
12452
+ "default.handlebars->29->429",
12453
+ "default.handlebars->29->480",
12454
+ "default.handlebars->29->508"
12455
]
12456
},
12457
{
@@ -12469,7 +12469,7 @@
12469
"zh-chs": "英特爾®AMT CIRA",
12470
"xloc": [
12471
"default-mobile.handlebars->9->194",
12472
- "default.handlebars->29->502"
12472
+ "default.handlebars->29->506"
12473
]
12474
},
12475
{
@@ -12486,9 +12486,9 @@
12486
"ru": "Intel® AMT CIRA подключен и готов к использованию.",
12487
"zh-chs": "英特爾®AMT CIRA已連接並可以使用。",
12488
"xloc": [
12489
- "default.handlebars->29->169",
12490
- "default.handlebars->29->362",
12491
- "default.handlebars->29->501"
12489
+ "default.handlebars->29->173",
12490
+ "default.handlebars->29->366",
12491
+ "default.handlebars->29->505"
12492
]
12493
},
12494
{
@@ -12524,7 +12524,7 @@
12524
"ru": "Политика Intel® AMT",
12525
"zh-chs": "英特爾®AMT政策",
12526
"xloc": [
12527
- "default.handlebars->29->1160"
12527
+ "default.handlebars->29->1164"
12528
]
12529
},
12530
{
@@ -12558,7 +12558,7 @@
12558
"ru": "Intel® AMT Тег",
12559
"zh-chs": "英特爾®AMT標籤",
12560
"xloc": [
12561
- "default.handlebars->29->480"
12561
+ "default.handlebars->29->484"
12562
]
12563
},
12564
{
@@ -12592,8 +12592,8 @@
12592
"ru": "Активация Intel® AMT",
12593
"zh-chs": "英特爾®AMT激活",
12594
"xloc": [
12595
- "default.handlebars->29->233",
12596
- "default.handlebars->29->236"
12595
+ "default.handlebars->29->237",
12596
+ "default.handlebars->29->240"
12597
]
12598
},
12599
{
@@ -12611,8 +12611,8 @@
12611
"zh-chs": "英特爾®AMT已連接",
12612
"xloc": [
12613
"default-mobile.handlebars->9->204",
12614
- "default.handlebars->29->539",
12615
- "default.handlebars->29->540"
12614
+ "default.handlebars->29->543",
12615
+ "default.handlebars->29->544"
12616
]
12617
},
12618
{
@@ -12629,8 +12629,8 @@
12629
"ru": "События Intel® AMT desktop или serial.",
12630
"zh-chs": "英特爾®AMT桌面和串行事件。",
12631
"xloc": [
12632
- "default.handlebars->29->1046",
12633
- "default.handlebars->29->1293"
12632
+ "default.handlebars->29->1050",
12633
+ "default.handlebars->29->1297"
12634
]
12635
},
12636
{
@@ -12648,8 +12648,8 @@
12648
"zh-chs": "檢測到英特爾®AMT",
12649
"xloc": [
12650
"default-mobile.handlebars->9->205",
12651
- "default.handlebars->29->541",
12652
- "default.handlebars->29->542"
12651
+ "default.handlebars->29->545",
12652
+ "default.handlebars->29->546"
12653
]
12654
},
12655
{
@@ -12666,7 +12666,7 @@
12666
"ru": "Intel® AMT маршрутизируется и готов к использованию.",
12667
"zh-chs": "英特爾®AMT可路由並可以使用。",
12668
"xloc": [
12669
- "default.handlebars->29->503"
12669
+ "default.handlebars->29->507"
12670
]
12671
},
12672
{
@@ -12683,8 +12683,8 @@
12683
"ru": "Intel® AMT маршрутизируется.",
12684
"zh-chs": "英特爾®AMT是可路由的。",
12685
"xloc": [
12686
- "default.handlebars->29->171",
12687
- "default.handlebars->29->364"
12686
+ "default.handlebars->29->175",
12687
+ "default.handlebars->29->368"
12688
]
12689
},
12690
{
@@ -12719,8 +12719,8 @@
12719
"zh-chs": "僅限英特爾®AMT,無代理",
12720
"xloc": [
12721
"default-mobile.handlebars->9->275",
12722
- "default.handlebars->29->1075",
12723
- "default.handlebars->29->1097"
12722
+ "default.handlebars->29->1079",
12723
+ "default.handlebars->29->1101"
12724
]
12725
},
12726
{
@@ -12737,7 +12737,7 @@
12737
"ru": "Технология Intel® Active Management",
12738
"zh-chs": "英特爾®主動管理技術",
12739
"xloc": [
12740
- "default.handlebars->29->475"
12740
+ "default.handlebars->29->479"
12741
]
12742
},
12743
{
@@ -12754,7 +12754,7 @@
12754
"ru": "Intel® Active Management Technology (Intel® AMT)",
12755
"zh-chs": "英特爾®主動管理技術(英特爾®AMT)",
12756
"xloc": [
12757
- "default.handlebars->29->789"
12757
+ "default.handlebars->29->793"
12758
]
12759
},
12760
{
@@ -12772,7 +12772,7 @@
12772
"zh-chs": "英特爾®ME",
12773
"xloc": [
12774
"default-mobile.handlebars->9->189",
12775
- "default.handlebars->29->474"
12775
+ "default.handlebars->29->478"
12776
]
12777
},
12778
{
@@ -12790,7 +12790,7 @@
12790
"zh-chs": "英特爾®SM",
12791
"xloc": [
12792
"default-mobile.handlebars->9->191",
12793
- "default.handlebars->29->478"
12793
+ "default.handlebars->29->482"
12794
]
12795
},
12796
{
@@ -12807,7 +12807,7 @@
12807
"ru": "Intel® Standard Manageability",
12808
"zh-chs": "英特爾®標準可管理性",
12809
"xloc": [
12810
- "default.handlebars->29->477"
12810
+ "default.handlebars->29->481"
12811
]
12812
},
12813
{
@@ -12908,7 +12908,7 @@
12908
"ru": "Интерактивный",
12909
"zh-chs": "互動",
12910
"xloc": [
12911
- "default.handlebars->29->684"
12911
+ "default.handlebars->29->688"
12912
]
12913
},
12914
{
@@ -12925,10 +12925,10 @@
12925
"ru": "Только интерактивный режим",
12926
"zh-chs": "僅限互動",
12927
"xloc": [
12928
- "default.handlebars->29->1281",
12929
- "default.handlebars->29->1288",
12930
- "default.handlebars->29->288",
12931
- "default.handlebars->29->310"
12928
+ "default.handlebars->29->1285",
12929
+ "default.handlebars->29->1292",
12930
+ "default.handlebars->29->292",
12931
+ "default.handlebars->29->314"
12932
]
12933
},
12934
{
@@ -12945,7 +12945,7 @@
12945
"ru": "Интерфейсы",
12946
"zh-chs": "介面",
12947
"xloc": [
12948
- "default.handlebars->29->522"
12948
+ "default.handlebars->29->526"
12949
]
12950
},
12951
{
@@ -12962,7 +12962,7 @@
12962
"zh-chs": "因紐特人",
12963
"es": "Inuktitut",
12964
"xloc": [
12965
- "default.handlebars->29->931"
12965
+ "default.handlebars->29->935"
12966
]
12967
},
12968
{
@@ -12979,7 +12979,7 @@
12979
"ru": "Некорректный тип группы устройств",
12980
"zh-chs": "無效的設備組類型",
12981
"xloc": [
12982
- "default.handlebars->29->1623"
12982
+ "default.handlebars->29->1627"
12983
]
12984
},
12985
{
@@ -12996,7 +12996,7 @@
12996
"ru": "Некорректный JSON",
12997
"zh-chs": "無效的JSON",
12998
"xloc": [
12999
- "default.handlebars->29->1617"
12999
+ "default.handlebars->29->1621"
13000
]
13001
},
13002
{
@@ -13013,8 +13013,8 @@
13013
"ru": "Некорректный формат файла JSON.",
13014
"zh-chs": "無效的JSON文件格式。",
13015
"xloc": [
13016
- "default.handlebars->29->1399",
13017
- "default.handlebars->29->1401"
13016
+ "default.handlebars->29->1403",
13017
+ "default.handlebars->29->1405"
13018
]
13019
},
13020
{
@@ -13031,7 +13031,7 @@
13031
"ru": "Некорректный файл JSON: {0}.",
13032
"zh-chs": "無效的JSON文件:{0}。",
13033
"xloc": [
13034
- "default.handlebars->29->1397"
13034
+ "default.handlebars->29->1401"
13035
]
13036
},
13037
{
@@ -13048,7 +13048,7 @@
13048
"ru": "Некорректная сигнатура PKCS",
13049
"zh-chs": "無效的PKCS簽名",
13050
"xloc": [
13051
- "default.handlebars->29->1615"
13051
+ "default.handlebars->29->1619"
13052
]
13053
},
13054
{
@@ -13065,7 +13065,7 @@
13065
"ru": "Некорректная сигнатура RSA",
13066
"zh-chs": "無效的RSA密碼",
13067
"xloc": [
13068
- "default.handlebars->29->1616"
13068
+ "default.handlebars->29->1620"
13069
]
13070
},
13071
{
@@ -13167,7 +13167,7 @@
13167
"ru": "Ссылка для приглашения ({0})",
13168
"zh-chs": "邀請鏈接({0})",
13169
"xloc": [
13170
- "default.handlebars->29->157"
13170
+ "default.handlebars->29->161"
13171
]
13172
},
13173
{
@@ -13184,7 +13184,7 @@
13184
"ru": "Тип приглашения",
13185
"zh-chs": "邀請類型",
13186
"xloc": [
13187
- "default.handlebars->29->265"
13187
+ "default.handlebars->29->269"
13188
]
13189
},
13190
{
@@ -13201,7 +13201,7 @@
13201
"zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:",
13202
"es": "Los códigos de invitación pueden ser usados por cualquiera para unir dispositivos a este grupo de dispositivos usando el siguiente enlace público:",
13203
"xloc": [
This file is too large to show in full.
views/default.handlebars
+27
-13
@@ -1985,15 +1985,19 @@
1985
case 'serverversion': {
1986
if ((xxdialogMode == 2) && (xxdialogTag == 'MeshCentralServerUpdate')) {
1987
var x = '<div class=dialogText>';
1988
- if (!message.current) { message.current = "Unknown"; }
1989
- if (!message.latest) { message.latest = "Unknown"; }
1990
- x += addHtmlValue2("Current Version", '<b>' + EscapeHtml(message.current) + '</b>');
1991
- x += addHtmlValue2("Latest Version", '<b>' + EscapeHtml(message.latest) + '</b>');
1988
+ if (!message.tags.current) { message.tags.current = "Unknown"; }
1989
+ if (!message.tags.stable) { message.tags.stable = "Unknown"; }
1990
+ if (!message.tags.latest) { message.tags.latest = "Unknown"; }
1991
+ x += addHtmlValue2("Current Version", '<b>' + EscapeHtml(message.tags.current) + '</b>');
1992
+ x += '<hr />';
1993
+ x += addHtmlValue2('<label><input id=d2updateCheck1 type=checkbox onclick=server_showVersionDlgUpdate()' + (((message.tags.stable == "Unknown") || (message.tags.current == message.tags.stable))?' disabled':'') + ' /> ' + "Stable Version" + '</label>', '<b>' + EscapeHtml(message.tags.stable) + '</b>');
1994
+ x += addHtmlValue2('<label><input id=d2updateCheck2 type=checkbox onclick=server_showVersionDlgUpdate()' + (((message.tags.latest == "Unknown") || (message.tags.current == message.tags.latest))?' disabled':'') + ' /> ' + "Latest Version" + '</label>', '<b>' + EscapeHtml(message.tags.latest) + '</b>');
1995
x += '</div>';
1993
- if ((message.latest.indexOf('.') == -1) || (message.current == message.latest) || ((features & 2048) == 0)) {
1996
+ if (((message.tags.current == message.tags.latest) && (message.tags.current == message.tags.stable)) || ((features & 2048) == 0)) {
1997
setDialogMode(2, "MeshCentral Version", 1, null, x);
1998
} else {
1996
- setDialogMode(2, "MeshCentral Version", 3, server_showVersionDlgEx, x + '<br /><label><input id=d2updateCheck type=checkbox onclick=server_showVersionDlgUpdate() /> ' + "Check and click OK to start server self-update." + '</label>');
1999
+ x += '<hr />' + "Check and click OK to start server self-update.";
2000
+ setDialogMode(2, "MeshCentral Version", 3, server_showVersionDlgEx, x, message.tags);
2001
server_showVersionDlgUpdate();
2002
}
2003
}
@@ -2004,9 +2008,11 @@
2008
if (message.data == null) {
2009
setDialogMode(2, "MeshCentral Server Errors", 1, null, "Server has no error log.");
2010
} else {
2007
- var x = '<div class="dialogText dialogTextLog"><pre id=d2ServerErrorsLogPre>' + message.data + '<pre></div>';
2008
- setDialogMode(2, "MeshCentral Server Errors", 3, server_showErrorsDlgEx, x + '<br /><div style=float:right><img src=images/link4.png height=10 width=10 title="' + "Download error log" + '" style=cursor:pointer onclick=d2CopyServerErrorsToClip()></div><div><label><input id=d2updateCheck type=checkbox onclick=server_showVersionDlgUpdate() /> ' + "Check and click OK to clear error log." + '</label></div>');
2009
- server_showVersionDlgUpdate();
2011
+ var x = '<div class="dialogText dialogTextLog"><pre id=d2ServerErrorsLogPre>' + EscapeHtml(message.data) + '</pre></div>';
2012
+ x += '<br /><div style=float:right><img src=images/link4.png height=10 width=10 title="' + "Download error log" + '" style=cursor:pointer onclick=d2CopyServerErrorsToClip()></div>';
2013
+ x += '<div><label><input id=d2clearErrorsCheck type=checkbox onclick=server_showErrorsDlgUpdate() /> ' + "Check and click OK to clear error log." + '</label></div>';
2014
+ setDialogMode(2, "MeshCentral Server Errors", 3, server_showErrorsDlgEx, x);
2015
+ server_showErrorsDlgUpdate();
2016
}
2017
}
2018
break;
@@ -8239,8 +8245,16 @@
8245
return false;
8246
}
8247
8242
- function server_showVersionDlgUpdate() { QE('idx_dlgOkButton', Q('d2updateCheck').checked); }
8243
- function server_showVersionDlgEx() { meshserver.send({ action: 'serverupdate' }); }
8248
+ function server_showVersionDlgUpdate() {
8249
+ var stableCheck = Q('d2updateCheck1').checked;
8250
+ var latestCheck = Q('d2updateCheck2').checked;
8251
+ QE('idx_dlgOkButton', ((stableCheck) && (!latestCheck)) || ((!stableCheck) && (latestCheck)));
8252
+ }
8253
+
8254
+ function server_showVersionDlgEx(b, tags) {
8255
+ if (Q('d2updateCheck1').checked) { meshserver.send({ action: 'serverupdate', tag: 'stable', version: tags.stable }); }
8256
+ if (Q('d2updateCheck2').checked) { meshserver.send({ action: 'serverupdate', tag: 'latest', version: tags.latest }); }
8257
+ }
8258
8259
function server_showErrorsDlg() {
8260
if (xxdialogMode) return false;
@@ -8248,7 +8262,7 @@
8262
meshserver.send({ action: 'servererrors' });
8263
return false;
8264
}
8251
- function server_showErrorsDlgUpdate() { QE('idx_dlgOkButton', Q('d2updateCheck').checked); }
8265
+ function server_showErrorsDlgUpdate() { QE('idx_dlgOkButton', Q('d2clearErrorsCheck').checked); }
8266
function server_showErrorsDlgEx() { meshserver.send({ action: 'serverclearerrorlog' }); }
8267
function d2CopyServerErrorsToClip() { saveAs(new Blob([Q('d2ServerErrorsLogPre').innerText], { type: 'application/octet-stream' }), "servererrors.txt"); }
8268
@@ -9623,7 +9637,7 @@
9637
9638
// Display the users using the sorted list
9639
var x = '<table class=p3usersTable cellpadding=0 cellspacing=0>', addHeader = true;
9626
- x += '<th>' + "Name" + '<th style=width:80px>' + "Groups" + '<th style=width:120px>' + nobreak("Last Access") + '<th style=width:120px>' + "Permissions";
9640
+ x += '<th>' + "Name" + '<th style=width:80px>' + "Device Groups" + '<th style=width:120px>' + nobreak("Last Access") + '<th style=width:120px>' + "Permissions";
9641
9642
// Save the list of currently checked users
9643
var checkedUserids = [], elements = document.getElementsByClassName('UserCheckbox');