Added device battery indication

Ylian Saint-Hilaire committed May 30, 2020 at 17:21 UTC bf5be3c1458f5a40f76472996cc905983450e025
7 files changed +1407 -1340
agents/meshcore.js
+10
@@ -2176,6 +2176,16 @@ function createMeshCore(agent) {
2176 response = "Available commands: \r\n" + fin + ".";
2177 break;
2178 }
2179 + case 'setbattery':
2180 + // require('MeshAgent').SendCommand({ action: 'battery', state: 'dc', level: 55 });
2181 + if ((args['_'].length > 0) && ((args['_'][0] == 'ac') || (args['_'][0] == 'dc'))) {
2182 + var b = { action: 'battery', state: args['_'][0] };
2183 + if (args['_'].length == 2) { b.level = parseInt(args['_'][1]); }
2184 + require('MeshAgent').SendCommand(b);
2185 + } else {
2186 + require('MeshAgent').SendCommand({ action: 'battery' });
2187 + }
2188 + break;
2189 case 'fdsnapshot':
2190 require('ChainViewer').getSnapshot().then(function (c) { sendConsoleText(c, this.sessionid); }).parentPromise.sessionid = sessionid;
2191 break;
agents/modules_meshcore/amt-mei.js
+3 -9
@@ -27,7 +27,6 @@ function amt_heci() {
27 this._setupPTHI = function _setupPTHI()
28 {
29 this._amt = heci.create();
30 - this._amt.descriptorMetadata = "amt-pthi";
30 this._amt.BiosVersionLen = 65;
31 this._amt.UnicodeStringLen = 20;
32
@@ -398,25 +397,20 @@ function amt_heci() {
397 fn.apply(this, opt);
398 }, callback, optional);
399 }
401 - this.getProtocolVersion = function getProtocolVersion(callback)
402 - {
400 + this.getProtocolVersion = function getProtocolVersion(callback) {
401 var optional = [];
402 for (var i = 1; i < arguments.length; ++i) { opt.push(arguments[i]); }
403
406 - if (!this._tmpSession) { this._tmpSession = heci.create(); this._tmpSession.parent = this;}
407 - this._tmpSession.doIoctl(heci.IOCTL.HECI_VERSION, Buffer.alloc(5), Buffer.alloc(5), function (status, buffer, self, fn, opt)
408 - {
404 + heci.doIoctl(heci.IOCTL.HECI_VERSION, Buffer.alloc(5), Buffer.alloc(5), function (status, buffer, self, fn, opt) {
405 if (status == 0) {
406 var result = buffer.readUInt8(0).toString() + '.' + buffer.readUInt8(1).toString() + '.' + buffer.readUInt8(2).toString() + '.' + buffer.readUInt16BE(3).toString();
407 opt.unshift(result);
408 fn.apply(self, opt);
409 }
414 - else
415 - {
410 + else {
411 opt.unshift(null);
412 fn.apply(self, opt);
413 }
419 -
414 }, this, callback, optional);
415 }
416 }
meshagent.js
+9
@@ -1351,6 +1351,15 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
1351 obj.updateSessions();
1352 break;
1353 }
1354 + case 'battery': {
1355 + // Device battery and power state
1356 + if (obj.sessions == null) { obj.sessions = {}; }
1357 + if (obj.sessions.battery == null) { obj.sessions.battery = {}; }
1358 + if ((command.state == 'ac') || (command.state == 'dc')) { obj.sessions.battery.state = command.state; } else { delete obj.sessions.battery.state; }
1359 + if ((typeof command.level == 'number') && (command.level >= 0) && (command.level <= 100)) { obj.sessions.battery.level = command.level; } else { delete obj.sessions.battery.level; }
1360 + obj.updateSessions();
1361 + break;
1362 + }
1363 case 'plugin': {
1364 if ((parent.parent.pluginHandler == null) || (typeof command.plugin != 'string')) break;
1365 try {
public/images/batteries48.png
Binary files /dev/null and b/public/images/batteries48.png differ
public/styles/style.css
+17
@@ -784,6 +784,23 @@ NoMeshesPanel img {
784 background-color:#44F;
785 }
786
787 +.deviceBatteryLarge {
788 + position:absolute;
789 + left:10px;
790 + top:140px;
791 + width:28px;
792 + height:48px;
793 + border:none;
794 + box-shadow:none;
795 +}
796 +
797 +.deviceBatteryLarge1 { background: url(../images/batteries48.png) 0px 0px; }
798 +.deviceBatteryLarge2 { background: url(../images/batteries48.png) -28px 0px; }
799 +.deviceBatteryLarge3 { background: url(../images/batteries48.png) -56px 0px; }
800 +.deviceBatteryLarge4 { background: url(../images/batteries48.png) -84px 0px; }
801 +.deviceBatteryLarge5 { background: url(../images/batteries48.png) -112px 0px; }
802 +.deviceBatteryLarge6 { background: url(../images/batteries48.png) -140px 0px; }
803 +
804 .deviceNotifyLargeDot {
805 text-align:center;
806 position:absolute;
translate/translate.json
+1340 -1328
@@ -14,8 +14,8 @@
14 "ru": " + CIRA",
15 "zh-chs": " + CIRA",
16 "xloc": [
17 - "default.handlebars->25->1185",
18 - "default.handlebars->25->1187"
17 + "default.handlebars->25->1187",
18 + "default.handlebars->25->1189"
19 ]
20 },
21 {
@@ -174,7 +174,7 @@
174 "ru": " Может быть использована подсказка пароля, но не рекоммендуется.",
175 "zh-chs": " 可以使用密碼提示,但不建議使用。",
176 "xloc": [
177 - "default.handlebars->25->1111"
177 + "default.handlebars->25->1113"
178 ]
179 },
180 {
@@ -191,8 +191,8 @@
191 "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.",
192 "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
193 "xloc": [
194 - "default.handlebars->25->1260",
195 - "default.handlebars->25->1573"
194 + "default.handlebars->25->1262",
195 + "default.handlebars->25->1575"
196 ]
197 },
198 {
@@ -377,7 +377,7 @@
377 "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.",
378 "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。",
379 "xloc": [
380 - "default.handlebars->25->1232"
380 + "default.handlebars->25->1234"
381 ]
382 },
383 {
@@ -411,7 +411,7 @@
411 "zh-chs": ",",
412 "xloc": [
413 "default-mobile.handlebars->9->431",
414 - "default.handlebars->25->1326"
414 + "default.handlebars->25->1328"
415 ]
416 },
417 {
@@ -446,7 +446,7 @@
446 "ru": ", MQTT онлайн",
447 "zh-chs": ",MQTT在線",
448 "xloc": [
449 - "default.handlebars->25->854"
449 + "default.handlebars->25->856"
450 ]
451 },
452 {
@@ -463,7 +463,7 @@
463 "ru": ", Soft-KVM",
464 "zh-chs": ",軟KVM",
465 "xloc": [
466 - "default.handlebars->25->700"
466 + "default.handlebars->25->702"
467 ]
468 },
469 {
@@ -482,9 +482,9 @@
482 "xloc": [
483 "default-mobile.handlebars->9->273",
484 "default-mobile.handlebars->9->282",
485 - "default.handlebars->25->707",
486 - "default.handlebars->25->738",
487 - "default.handlebars->25->750",
485 + "default.handlebars->25->709",
486 + "default.handlebars->25->740",
487 + "default.handlebars->25->752",
488 "xterm.handlebars->9->6"
489 ]
490 },
@@ -509,7 +509,7 @@
509 {
510 "en": ", for this link to work you must download MeshCentral Router run it and click the install button.",
511 "xloc": [
512 - "default.handlebars->25->664"
512 + "default.handlebars->25->666"
513 ]
514 },
515 {
@@ -567,7 +567,7 @@
567 "en": ", {0} watching",
568 "nl": ", {0} kijken",
569 "xloc": [
570 - "default.handlebars->25->701"
570 + "default.handlebars->25->703"
571 ]
572 },
573 {
@@ -624,9 +624,9 @@
624 "xloc": [
625 "default-mobile.handlebars->9->108",
626 "default-mobile.handlebars->9->284",
627 - "default.handlebars->25->1367",
628 - "default.handlebars->25->1721",
629 - "default.handlebars->25->752"
627 + "default.handlebars->25->1369",
628 + "default.handlebars->25->1723",
629 + "default.handlebars->25->754"
630 ]
631 },
632 {
@@ -675,7 +675,7 @@
675 "ru": "1 активная сессия",
676 "zh-chs": "1個活動會話",
677 "xloc": [
678 - "default.handlebars->25->1639"
678 + "default.handlebars->25->1641"
679 ]
680 },
681 {
@@ -694,14 +694,14 @@
694 "xloc": [
695 "default-mobile.handlebars->9->118",
696 "default-mobile.handlebars->9->435",
697 - "default.handlebars->25->1386"
697 + "default.handlebars->25->1388"
698 ]
699 },
700 {
701 "en": "1 connection",
702 "nl": "1 verbinding",
703 "xloc": [
704 - "default.handlebars->25->703"
704 + "default.handlebars->25->705"
705 ]
706 },
707 {
@@ -737,7 +737,7 @@
737 "ru": "1 группа",
738 "zh-chs": "1組",
739 "xloc": [
740 - "default.handlebars->25->1604"
740 + "default.handlebars->25->1606"
741 ]
742 },
743 {
@@ -809,7 +809,7 @@
809 "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...",
810 "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...",
811 "xloc": [
812 - "default.handlebars->25->1421"
812 + "default.handlebars->25->1423"
813 ]
814 },
815 {
@@ -864,7 +864,7 @@
864 "default-mobile.handlebars->9->160",
865 "default-mobile.handlebars->9->163",
866 "default-mobile.handlebars->9->166",
867 - "default.handlebars->25->1425",
867 + "default.handlebars->25->1427",
868 "default.handlebars->25->210",
869 "default.handlebars->25->213",
870 "default.handlebars->25->216",
@@ -1136,8 +1136,8 @@
1136 "ru": "двухфакторная аутентификация включена",
1137 "zh-chs": "啟用第二因素身份驗證",
1138 "xloc": [
1139 - "default.handlebars->25->1438",
1140 - "default.handlebars->25->1626"
1139 + "default.handlebars->25->1440",
1140 + "default.handlebars->25->1628"
1141 ]
1142 },
1143 {
@@ -1502,7 +1502,7 @@
1502 "ru": "7-дневная статистика работы",
1503 "zh-chs": "7天電源狀態",
1504 "xloc": [
1505 - "default.handlebars->25->633"
1505 + "default.handlebars->25->635"
1506 ]
1507 },
1508 {
@@ -1742,7 +1742,7 @@
1742 "zh-chs": "ACM",
1743 "xloc": [
1744 "default-mobile.handlebars->9->220",
1745 - "default.handlebars->25->489"
1745 + "default.handlebars->25->491"
1746 ]
1747 },
1748 {
@@ -1849,7 +1849,7 @@
1849 "ru": "Отказано в доступе",
1850 "zh-chs": "拒絕訪問",
1851 "xloc": [
1852 - "default.handlebars->25->855"
1852 + "default.handlebars->25->857"
1853 ]
1854 },
1855 {
@@ -1884,7 +1884,7 @@
1884 "ru": "Доступ к файлам сервера",
1885 "zh-chs": "訪問服務器文件",
1886 "xloc": [
1887 - "default.handlebars->25->1579"
1887 + "default.handlebars->25->1581"
1888 ]
1889 },
1890 {
@@ -1959,8 +1959,8 @@
1959 "default-mobile.handlebars->9->93",
1960 "default-mobile.handlebars->9->95",
1961 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
1962 - "default.handlebars->25->1120",
1962 "default.handlebars->25->1122",
1963 + "default.handlebars->25->1124",
1964 "default.handlebars->25->460",
1965 "default.handlebars->25->462"
1966 ]
@@ -2008,8 +2008,8 @@
2008 "ru": "Аккаунт заблокирован",
2009 "zh-chs": "帐户已被锁定",
2010 "xloc": [
2011 - "default.handlebars->25->1440",
2012 - "default.handlebars->25->1576"
2011 + "default.handlebars->25->1442",
2012 + "default.handlebars->25->1578"
2013 ]
2014 },
2015 {
@@ -2097,7 +2097,7 @@
2097 "ru": "Действиe",
2098 "zh-chs": "行動",
2099 "xloc": [
2100 - "default.handlebars->25->860",
2100 + "default.handlebars->25->862",
2101 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2102 ]
2103 },
@@ -2115,8 +2115,8 @@
2115 "ru": "Файл действий",
2116 "zh-chs": "動作文件",
2117 "xloc": [
2118 - "default.handlebars->25->676",
2119 - "default.handlebars->25->678"
2118 + "default.handlebars->25->678",
2119 + "default.handlebars->25->680"
2120 ]
2121 },
2122 {
@@ -2136,7 +2136,7 @@
2136 "default-mobile.handlebars->9->237",
2137 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
2138 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
2139 - "default.handlebars->25->534",
2139 + "default.handlebars->25->536",
2140 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
2141 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
2142 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -2193,9 +2193,9 @@
2193 "default-mobile.handlebars->9->215",
2194 "default-mobile.handlebars->9->217",
2195 "default-mobile.handlebars->9->340",
2196 - "default.handlebars->25->482",
2196 "default.handlebars->25->484",
2198 - "default.handlebars->25->818"
2197 + "default.handlebars->25->486",
2198 + "default.handlebars->25->820"
2199 ]
2200 },
2201 {
@@ -2212,8 +2212,8 @@
2212 "ru": "Активация",
2213 "zh-chs": "激活",
2214 "xloc": [
2215 - "default.handlebars->25->1198",
2215 "default.handlebars->25->1200",
2216 + "default.handlebars->25->1202",
2217 "default.handlebars->25->236",
2218 "default.handlebars->25->238"
2219 ]
@@ -2232,7 +2232,7 @@
2232 "ru": "Активный пользователь",
2233 "zh-chs": "活動用戶{0}",
2234 "xloc": [
2235 - "default.handlebars->25->509"
2235 + "default.handlebars->25->511"
2236 ]
2237 },
2238 {
@@ -2249,7 +2249,7 @@
2249 "ru": "Добавить агент",
2250 "zh-chs": "添加代理",
2251 "xloc": [
2252 - "default.handlebars->25->1202",
2252 + "default.handlebars->25->1204",
2253 "default.handlebars->25->240"
2254 ]
2255 },
@@ -2284,8 +2284,8 @@
2284 "ru": "Добавить устройство",
2285 "zh-chs": "添加設備",
2286 "xloc": [
2287 - "default.handlebars->25->1553",
2288 - "default.handlebars->25->1672"
2287 + "default.handlebars->25->1555",
2288 + "default.handlebars->25->1674"
2289 ]
2290 },
2291 {
@@ -2302,7 +2302,7 @@
2302 "ru": "Добавить событие к устройству",
2303 "zh-chs": "添加設備事件",
2304 "xloc": [
2305 - "default.handlebars->25->614"
2305 + "default.handlebars->25->616"
2306 ]
2307 },
2308 {
@@ -2319,9 +2319,9 @@
2319 "ru": "Добавить группу устройств",
2320 "zh-chs": "添加設備組",
2321 "xloc": [
2322 - "default.handlebars->25->1292",
2323 - "default.handlebars->25->1547",
2324 - "default.handlebars->25->1660",
2322 + "default.handlebars->25->1294",
2323 + "default.handlebars->25->1549",
2324 + "default.handlebars->25->1662",
2325 "default.handlebars->25->198"
2326 ]
2327 },
@@ -2336,7 +2336,7 @@
2336 "nl": "Machtigingen voor apparaatgroep toevoegen",
2337 "zh-chs": "添加设备组权限",
2338 "xloc": [
2339 - "default.handlebars->25->1289"
2339 + "default.handlebars->25->1291"
2340 ]
2341 },
2342 {
@@ -2352,8 +2352,8 @@
2352 "ru": "Добавить разрешения для устройства",
2353 "zh-chs": "添加设备权限",
2354 "xloc": [
2355 - "default.handlebars->25->1294",
2356 - "default.handlebars->25->1296"
2355 + "default.handlebars->25->1296",
2356 + "default.handlebars->25->1298"
2357 ]
2358 },
2359 {
@@ -2438,7 +2438,7 @@
2438 "ru": "Добавить участие",
2439 "zh-chs": "添加會員",
2440 "xloc": [
2441 - "default.handlebars->25->1690"
2441 + "default.handlebars->25->1692"
2442 ]
2443 },
2444 {
@@ -2476,8 +2476,8 @@
2476 "default.handlebars->25->135",
2477 "default.handlebars->25->138",
2478 "default.handlebars->25->139",
2479 - "default.handlebars->25->888",
2480 - "default.handlebars->25->889"
2479 + "default.handlebars->25->890",
2480 + "default.handlebars->25->891"
2481 ]
2482 },
2483 {
@@ -2495,7 +2495,7 @@
2495 "zh-chs": "添加用戶",
2496 "xloc": [
2497 "default-mobile.handlebars->9->380",
2498 - "default.handlebars->25->571"
2498 + "default.handlebars->25->573"
2499 ]
2500 },
2501 {
@@ -2511,7 +2511,7 @@
2511 "ru": "Добавить разрешения для пользовательских устройств",
2512 "zh-chs": "添加用户设备权限",
2513 "xloc": [
2514 - "default.handlebars->25->1299"
2514 + "default.handlebars->25->1301"
2515 ]
2516 },
2517 {
@@ -2528,10 +2528,10 @@
2528 "ru": "Добавить группу пользователей",
2529 "zh-chs": "添加用戶組",
2530 "xloc": [
2531 - "default.handlebars->25->1192",
2532 - "default.handlebars->25->1291",
2533 - "default.handlebars->25->1666",
2534 - "default.handlebars->25->572"
2531 + "default.handlebars->25->1194",
2532 + "default.handlebars->25->1293",
2533 + "default.handlebars->25->1668",
2534 + "default.handlebars->25->574"
2535 ]
2536 },
2537 {
@@ -2545,7 +2545,7 @@
2545 "nl": "Gebruikersmachtigingen voor apparaatgroep toevoegen",
2546 "zh-chs": "添加用户组设备权限",
2547 "xloc": [
2548 - "default.handlebars->25->1301"
2548 + "default.handlebars->25->1303"
2549 ]
2550 },
2551 {
@@ -2590,8 +2590,8 @@
2590 "ru": "Добавить пользователей",
2591 "zh-chs": "添加用戶",
2592 "xloc": [
2593 - "default.handlebars->25->1191",
2594 - "default.handlebars->25->1542"
2593 + "default.handlebars->25->1193",
2594 + "default.handlebars->25->1544"
2595 ]
2596 },
2597 {
@@ -2608,7 +2608,7 @@
2608 "ru": "Добавить пользователей в группу устройств",
2609 "zh-chs": "將用戶添加到設備組",
2610 "xloc": [
2611 - "default.handlebars->25->1288"
2611 + "default.handlebars->25->1290"
2612 ]
2613 },
2614 {
@@ -2625,7 +2625,7 @@
2625 "ru": "Добавить пользователей в группу",
2626 "zh-chs": "將用戶添加到用戶組",
2627 "xloc": [
2628 - "default.handlebars->25->1575"
2628 + "default.handlebars->25->1577"
2629 ]
2630 },
2631 {
@@ -2676,7 +2676,7 @@
2676 "ru": "Добавить новый Intel&reg; AMT компьютер, находящийся в интернете.",
2677 "zh-chs": "添加位於互聯網上的新英特爾&reg;AMT計算機。",
2678 "xloc": [
2679 - "default.handlebars->25->1193",
2679 + "default.handlebars->25->1195",
2680 "default.handlebars->25->229"
2681 ]
2682 },
@@ -2694,7 +2694,7 @@
2694 "ru": "Добавить новый Intel&reg; AMT компьютер, находящийся в локальной сети.",
2695 "zh-chs": "添加位於本地網絡上的新英特爾&reg;AMT計算機。",
2696 "xloc": [
2697 - "default.handlebars->25->1195",
2697 + "default.handlebars->25->1197",
2698 "default.handlebars->25->231"
2699 ]
2700 },
@@ -2726,7 +2726,7 @@
2726 "nl": "Voeg een nieuwe computer toe aan deze apparaatgroep door de mesh-agent te installeren.",
2727 "zh-chs": "通过安装网状代理,将新计算机添加到该设备组。",
2728 "xloc": [
2729 - "default.handlebars->25->1201",
2729 + "default.handlebars->25->1203",
2730 "default.handlebars->25->239"
2731 ]
2732 },
@@ -2779,7 +2779,7 @@
2779 "zh-chs": "管理員控制模式(ACM)",
2780 "xloc": [
2781 "default-mobile.handlebars->9->342",
2782 - "default.handlebars->25->820"
2782 + "default.handlebars->25->822"
2783 ]
2784 },
2785 {
@@ -2797,7 +2797,7 @@
2797 "zh-chs": "管理員憑證",
2798 "xloc": [
2799 "default-mobile.handlebars->9->348",
2800 - "default.handlebars->25->826"
2800 + "default.handlebars->25->828"
2801 ]
2802 },
2803 {
@@ -2832,7 +2832,7 @@
2832 "ru": "Области администратора",
2833 "zh-chs": "管理領域",
2834 "xloc": [
2835 - "default.handlebars->25->1608"
2835 + "default.handlebars->25->1610"
2836 ]
2837 },
2838 {
@@ -2867,7 +2867,7 @@
2867 "ru": "Административные области",
2868 "zh-chs": "行政領域",
2869 "xloc": [
2870 - "default.handlebars->25->1493"
2870 + "default.handlebars->25->1495"
2871 ]
2872 },
2873 {
@@ -2884,7 +2884,7 @@
2884 "ru": "Администратор",
2885 "zh-chs": "管理員",
2886 "xloc": [
2887 - "default.handlebars->25->1432"
2887 + "default.handlebars->25->1434"
2888 ]
2889 },
2890 {
@@ -2901,7 +2901,7 @@
2901 "ru": "Африканский",
2902 "zh-chs": "南非語",
2903 "xloc": [
2904 - "default.handlebars->25->891"
2904 + "default.handlebars->25->893"
2905 ]
2906 },
2907 {
@@ -2921,8 +2921,8 @@
2921 "default-mobile.handlebars->9->190",
2922 "default-mobile.handlebars->9->212",
2923 "default-mobile.handlebars->9->228",
2924 - "default.handlebars->25->1353",
2925 - "default.handlebars->25->1361",
2924 + "default.handlebars->25->1355",
2925 + "default.handlebars->25->1363",
2926 "default.handlebars->25->177",
2927 "default.handlebars->25->383",
2928 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -2942,8 +2942,8 @@
2942 "ru": "Агент + Intel AMT",
2943 "zh-chs": "代理+英特爾AMT",
2944 "xloc": [
2945 - "default.handlebars->25->1355",
2946 - "default.handlebars->25->1363"
2945 + "default.handlebars->25->1357",
2946 + "default.handlebars->25->1365"
2947 ]
2948 },
2949 {
@@ -2978,7 +2978,7 @@
2978 "zh-chs": "代理控制台",
2979 "xloc": [
2980 "default-mobile.handlebars->9->415",
2981 - "default.handlebars->25->1309"
2981 + "default.handlebars->25->1311"
2982 ]
2983 },
2984 {
@@ -2995,7 +2995,7 @@
2995 "ru": "Счетчик ошибок агента",
2996 "zh-chs": "座席錯誤計數器",
2997 "xloc": [
2998 - "default.handlebars->25->1731"
2998 + "default.handlebars->25->1733"
2999 ]
3000 },
3001 {
@@ -3064,7 +3064,7 @@
3064 "ru": "Сессии агентов",
3065 "zh-chs": "座席會議",
3066 "xloc": [
3067 - "default.handlebars->25->1747"
3067 + "default.handlebars->25->1749"
3068 ]
3069 },
3070 {
@@ -3082,7 +3082,7 @@
3082 "zh-chs": "代理商標籤",
3083 "xloc": [
3084 "default-mobile.handlebars->9->227",
3085 - "default.handlebars->25->502"
3085 + "default.handlebars->25->504"
3086 ]
3087 },
3088 {
@@ -3099,7 +3099,7 @@
3099 "ru": "Типы агента",
3100 "zh-chs": "代理類型",
3101 "xloc": [
3102 - "default.handlebars->25->1359",
3102 + "default.handlebars->25->1361",
3103 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
3104 ]
3105 },
@@ -3118,8 +3118,8 @@
3118 "zh-chs": "代理已連接",
3119 "xloc": [
3120 "default.handlebars->25->144",
3121 - "default.handlebars->25->562",
3122 - "default.handlebars->25->563"
3121 + "default.handlebars->25->564",
3122 + "default.handlebars->25->565"
3123 ]
3124 },
3125 {
@@ -3153,7 +3153,7 @@
3153 "ru": "Агент оффлайн",
3154 "zh-chs": "代理離線",
3155 "xloc": [
3156 - "default.handlebars->25->853"
3156 + "default.handlebars->25->855"
3157 ]
3158 },
3159 {
@@ -3170,7 +3170,7 @@
3170 "ru": "Агент онлайн",
3171 "zh-chs": "代理在線",
3172 "xloc": [
3173 - "default.handlebars->25->852"
3173 + "default.handlebars->25->854"
3174 ]
3175 },
3176 {
@@ -3187,7 +3187,7 @@
3187 "ru": "Агенты",
3188 "zh-chs": "代理商",
3189 "xloc": [
3190 - "default.handlebars->25->1760"
3190 + "default.handlebars->25->1762"
3191 ]
3192 },
3193 {
@@ -3204,7 +3204,7 @@
3204 "ru": "Албанский",
3205 "zh-chs": "阿爾巴尼亞語",
3206 "xloc": [
3207 - "default.handlebars->25->892"
3207 + "default.handlebars->25->894"
3208 ]
3209 },
3210 {
@@ -3254,9 +3254,9 @@
3254 "ru": "Фокусирование всех",
3255 "zh-chs": "全部聚焦",
3256 "xloc": [
3257 - "default.handlebars->25->708",
3257 "default.handlebars->25->710",
3259 - "default.handlebars->25->711"
3258 + "default.handlebars->25->712",
3259 + "default.handlebars->25->713"
3260 ]
3261 },
3262 {
@@ -3273,8 +3273,8 @@
3273 "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.",
3274 "zh-chs": "允許用戶管理此設備組和該組中的設備。",
3275 "xloc": [
3276 - "default.handlebars->25->1258",
3277 - "default.handlebars->25->1572"
3276 + "default.handlebars->25->1260",
3277 + "default.handlebars->25->1574"
3278 ]
3279 },
3280 {
@@ -3290,7 +3290,7 @@
3290 "ru": "Разрешить пользователям управлять этим устройством.",
3291 "zh-chs": "允许用户管理此设备。",
3292 "xloc": [
3293 - "default.handlebars->25->1259"
3293 + "default.handlebars->25->1261"
3294 ]
3295 },
3296 {
@@ -3343,7 +3343,7 @@
3343 "ru": "Поменять (F10 = ESC+0)",
3344 "zh-chs": "備用(F10 = ESC + 0)",
3345 "xloc": [
3346 - "default.handlebars->25->743"
3346 + "default.handlebars->25->745"
3347 ]
3348 },
3349 {
@@ -3377,9 +3377,9 @@
3377 "ru": "Всегда уведомлять",
3378 "zh-chs": "始終通知",
3379 "xloc": [
3380 - "default.handlebars->25->1172",
3381 - "default.handlebars->25->1617",
3382 - "default.handlebars->25->518"
3380 + "default.handlebars->25->1174",
3381 + "default.handlebars->25->1619",
3382 + "default.handlebars->25->520"
3383 ]
3384 },
3385 {
@@ -3396,9 +3396,9 @@
3396 "ru": "Всегда запрашивать",
3397 "zh-chs": "總是提示",
3398 "xloc": [
3399 - "default.handlebars->25->1173",
3400 - "default.handlebars->25->1618",
3401 - "default.handlebars->25->519"
3399 + "default.handlebars->25->1175",
3400 + "default.handlebars->25->1620",
3401 + "default.handlebars->25->521"
3402 ]
3403 },
3404 {
@@ -3512,7 +3512,7 @@
3512 "ru": "Антивирус",
3513 "zh-chs": "防毒軟件",
3514 "xloc": [
3515 - "default.handlebars->25->508"
3515 + "default.handlebars->25->510"
3516 ]
3517 },
3518 {
@@ -3597,7 +3597,7 @@
3597 "ru": "Арабский (Алжир)",
3598 "zh-chs": "阿拉伯文(阿爾及利亞)",
3599 "xloc": [
3600 - "default.handlebars->25->894"
3600 + "default.handlebars->25->896"
3601 ]
3602 },
3603 {
@@ -3614,7 +3614,7 @@
3614 "ru": "Арабский (Бахрейн)",
3615 "zh-chs": "阿拉伯文(巴林)",
3616 "xloc": [
3617 - "default.handlebars->25->895"
3617 + "default.handlebars->25->897"
3618 ]
3619 },
3620 {
@@ -3631,7 +3631,7 @@
3631 "ru": "Арабский (Египет)",
3632 "zh-chs": "阿拉伯文(埃及)",
3633 "xloc": [
3634 - "default.handlebars->25->896"
3634 + "default.handlebars->25->898"
3635 ]
3636 },
3637 {
@@ -3648,7 +3648,7 @@
3648 "ru": "Арабский (Ирак)",
3649 "zh-chs": "阿拉伯文(伊拉克)",
3650 "xloc": [
3651 - "default.handlebars->25->897"
3651 + "default.handlebars->25->899"
3652 ]
3653 },
3654 {
@@ -3665,7 +3665,7 @@
3665 "ru": "Арабский (Иордания)",
3666 "zh-chs": "阿拉伯語(約旦)",
3667 "xloc": [
3668 - "default.handlebars->25->898"
3668 + "default.handlebars->25->900"
3669 ]
3670 },
3671 {
@@ -3682,7 +3682,7 @@
3682 "ru": "Арабский (Кувейт)",
3683 "zh-chs": "阿拉伯文(科威特)",
3684 "xloc": [
3685 - "default.handlebars->25->899"
3685 + "default.handlebars->25->901"
3686 ]
3687 },
3688 {
@@ -3699,7 +3699,7 @@
3699 "ru": "Арабский (Ливан)",
3700 "zh-chs": "阿拉伯語(黎巴嫩)",
3701 "xloc": [
3702 - "default.handlebars->25->900"
3702 + "default.handlebars->25->902"
3703 ]
3704 },
3705 {
@@ -3716,7 +3716,7 @@
3716 "ru": "Арабский (Ливия)",
3717 "zh-chs": "阿拉伯文(利比亞)",
3718 "xloc": [
3719 - "default.handlebars->25->901"
3719 + "default.handlebars->25->903"
3720 ]
3721 },
3722 {
@@ -3733,7 +3733,7 @@
3733 "ru": "Арабский (Марокко)",
3734 "zh-chs": "阿拉伯文(摩洛哥)",
3735 "xloc": [
3736 - "default.handlebars->25->902"
3736 + "default.handlebars->25->904"
3737 ]
3738 },
3739 {
@@ -3750,7 +3750,7 @@
3750 "ru": "Арабский (Оман)",
3751 "zh-chs": "阿拉伯文(阿曼)",
3752 "xloc": [
3753 - "default.handlebars->25->903"
3753 + "default.handlebars->25->905"
3754 ]
3755 },
3756 {
@@ -3767,7 +3767,7 @@
3767 "ru": "Арабский (Катар)",
3768 "zh-chs": "阿拉伯語(卡塔爾)",
3769 "xloc": [
3770 - "default.handlebars->25->904"
3770 + "default.handlebars->25->906"
3771 ]
3772 },
3773 {
@@ -3784,7 +3784,7 @@
3784 "ru": "Арабский (Саудовская Аравия)",
3785 "zh-chs": "阿拉伯語(沙特阿拉伯)",
3786 "xloc": [
3787 - "default.handlebars->25->905"
3787 + "default.handlebars->25->907"
3788 ]
3789 },
3790 {
@@ -3801,7 +3801,7 @@
3801 "ru": "Арабский (стандартный)",
3802 "zh-chs": "阿拉伯語(標準)",
3803 "xloc": [
3804 - "default.handlebars->25->893"
3804 + "default.handlebars->25->895"
3805 ]
3806 },
3807 {
@@ -3818,7 +3818,7 @@
3818 "ru": "Арабский (Сирия)",
3819 "zh-chs": "阿拉伯語(敘利亞)",
3820 "xloc": [
3821 - "default.handlebars->25->906"
3821 + "default.handlebars->25->908"
3822 ]
3823 },
3824 {
@@ -3835,7 +3835,7 @@
3835 "ru": "Арабский (Тунис)",
3836 "zh-chs": "阿拉伯文(突尼斯)",
3837 "xloc": [
3838 - "default.handlebars->25->907"
3838 + "default.handlebars->25->909"
3839 ]
3840 },
3841 {
@@ -3852,7 +3852,7 @@
3852 "ru": "Арабский (О.А.Э.)",
3853 "zh-chs": "阿拉伯文(阿聯酋)",
3854 "xloc": [
3855 - "default.handlebars->25->908"
3855 + "default.handlebars->25->910"
3856 ]
3857 },
3858 {
@@ -3869,7 +3869,7 @@
3869 "ru": "Арабский (Йемен)",
3870 "zh-chs": "阿拉伯文(也門)",
3871 "xloc": [
3872 - "default.handlebars->25->909"
3872 + "default.handlebars->25->911"
3873 ]
3874 },
3875 {
@@ -3886,7 +3886,7 @@
3886 "ru": "Арагонский",
3887 "zh-chs": "阿拉貢人",
3888 "xloc": [
3889 - "default.handlebars->25->910"
3889 + "default.handlebars->25->912"
3890 ]
3891 },
3892 {
@@ -3904,7 +3904,7 @@
3904 "zh-chs": "建築",
3905 "xloc": [
3906 "default-mobile.handlebars->9->316",
3907 - "default.handlebars->25->794"
3907 + "default.handlebars->25->796"
3908 ]
3909 },
3910 {
@@ -3939,7 +3939,7 @@
3939 "zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。",
3940 "xloc": [
3941 "default-mobile.handlebars->9->386",
3942 - "default.handlebars->25->1236"
3942 + "default.handlebars->25->1238"
3943 ]
3944 },
3945 {
@@ -3956,7 +3956,7 @@
3956 "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?",
3957 "zh-chs": "您確定要刪除節點{0}嗎?",
3958 "xloc": [
3959 - "default.handlebars->25->655"
3959 + "default.handlebars->25->657"
3960 ]
3961 },
3962 {
@@ -3973,7 +3973,7 @@
3973 "ru": "Вы действительно хотите деинсталировать выбранного агента?",
3974 "zh-chs": "您確定要卸載所選代理嗎?",
3975 "xloc": [
3976 - "default.handlebars->25->644"
3976 + "default.handlebars->25->646"
3977 ]
3978 },
3979 {
@@ -3990,7 +3990,7 @@
3990 "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?",
3991 "zh-chs": "您確定要卸載所選的{0}代理嗎?",
3992 "xloc": [
3993 - "default.handlebars->25->643"
3993 + "default.handlebars->25->645"
3994 ]
3995 },
3996 {
@@ -4007,7 +4007,7 @@
4007 "ru": "Вы уверенны, что {0} плагин: {1}",
4008 "zh-chs": "您確定要{0}插件嗎:{1}",
4009 "xloc": [
4010 - "default.handlebars->25->1800"
4010 + "default.handlebars->25->1802"
4011 ]
4012 },
4013 {
@@ -4024,7 +4024,7 @@
4024 "ru": "Армянский",
4025 "zh-chs": "亞美尼亞人",
4026 "xloc": [
4027 - "default.handlebars->25->911"
4027 + "default.handlebars->25->913"
4028 ]
4029 },
4030 {
@@ -4069,7 +4069,7 @@
4069 "ru": "Ассамский",
4070 "zh-chs": "阿薩姆語",
4071 "xloc": [
4072 - "default.handlebars->25->912"
4072 + "default.handlebars->25->914"
4073 ]
4074 },
4075 {
@@ -4086,7 +4086,7 @@
4086 "ru": "Астурии",
4087 "zh-chs": "阿斯圖里亞斯人",
4088 "xloc": [
4089 - "default.handlebars->25->913"
4089 + "default.handlebars->25->915"
4090 ]
4091 },
4092 {
@@ -4103,7 +4103,7 @@
4103 "ru": "Приложение аутентификации",
4104 "zh-chs": "身份驗證應用",
4105 "xloc": [
4106 - "default.handlebars->25->1621"
4106 + "default.handlebars->25->1623"
4107 ]
4108 },
4109 {
@@ -4126,8 +4126,8 @@
4126 "default-mobile.handlebars->9->73",
4127 "default.handlebars->25->109",
4128 "default.handlebars->25->114",
4129 - "default.handlebars->25->877",
4130 - "default.handlebars->25->879"
4129 + "default.handlebars->25->879",
4130 + "default.handlebars->25->881"
4131 ]
4132 },
4133 {
@@ -4195,7 +4195,7 @@
4195 "ru": "Автоудаление",
4196 "zh-chs": "自動刪除",
4197 "xloc": [
4198 - "default.handlebars->25->1160"
4198 + "default.handlebars->25->1162"
4199 ]
4200 },
4201 {
@@ -4249,7 +4249,7 @@
4249 "ru": "Азербайджанский",
4250 "zh-chs": "阿塞拜疆",
4251 "xloc": [
4252 - "default.handlebars->25->914"
4252 + "default.handlebars->25->916"
4253 ]
4254 },
4255 {
@@ -4267,7 +4267,7 @@
4267 "zh-chs": "的BIOS",
4268 "xloc": [
4269 "default-mobile.handlebars->9->354",
4270 - "default.handlebars->25->832"
4270 + "default.handlebars->25->834"
4271 ]
4272 },
4273 {
@@ -4364,8 +4364,8 @@
4364 "ru": "Фоновый и интерактивный",
4365 "zh-chs": "背景與互動",
4366 "xloc": [
4367 - "default.handlebars->25->1336",
4368 - "default.handlebars->25->1343",
4367 + "default.handlebars->25->1338",
4368 + "default.handlebars->25->1345",
4369 "default.handlebars->25->308"
4370 ]
4371 },
@@ -4383,8 +4383,8 @@
4383 "ru": "Только фоновый",
4384 "zh-chs": "僅背景",
4385 "xloc": [
4386 - "default.handlebars->25->1337",
4387 - "default.handlebars->25->1344",
4386 + "default.handlebars->25->1339",
4387 + "default.handlebars->25->1346",
4388 "default.handlebars->25->309",
4389 "default.handlebars->25->331"
4390 ]
@@ -4420,7 +4420,7 @@
4420 "ru": "Резервные коды",
4421 "zh-chs": "備用碼",
4422 "xloc": [
4423 - "default.handlebars->25->1623"
4423 + "default.handlebars->25->1625"
4424 ]
4425 },
4426 {
@@ -4437,7 +4437,7 @@
4437 "ru": "Плохой ключ",
4438 "zh-chs": "錯誤的簽名",
4439 "xloc": [
4440 - "default.handlebars->25->1738"
4440 + "default.handlebars->25->1740"
4441 ]
4442 },
4443 {
@@ -4454,7 +4454,7 @@
4454 "ru": "Плохой веб-сертификат",
4455 "zh-chs": "錯誤的網絡證書",
4456 "xloc": [
4457 - "default.handlebars->25->1737"
4457 + "default.handlebars->25->1739"
4458 ]
4459 },
4460 {
@@ -4471,7 +4471,7 @@
4471 "ru": "Баскский",
4472 "zh-chs": "巴斯克",
4473 "xloc": [
4474 - "default.handlebars->25->915"
4474 + "default.handlebars->25->917"
4475 ]
4476 },
4477 {
@@ -4505,7 +4505,7 @@
4505 "ru": "Белорусский",
4506 "zh-chs": "白俄羅斯語",
4507 "xloc": [
4508 - "default.handlebars->25->917"
4508 + "default.handlebars->25->919"
4509 ]
4510 },
4511 {
@@ -4522,7 +4522,7 @@
4522 "ru": "Бенгальский",
4523 "zh-chs": "孟加拉",
4524 "xloc": [
4525 - "default.handlebars->25->918"
4525 + "default.handlebars->25->920"
4526 ]
4527 },
4528 {
@@ -4558,7 +4558,7 @@
4558 "ru": "Боснийский",
4559 "zh-chs": "波斯尼亞人",
4560 "xloc": [
4561 - "default.handlebars->25->919"
4561 + "default.handlebars->25->921"
4562 ]
4563 },
4564 {
@@ -4575,7 +4575,7 @@
4575 "ru": "Бретонский",
4576 "zh-chs": "布列塔尼",
4577 "xloc": [
4578 - "default.handlebars->25->920"
4578 + "default.handlebars->25->922"
4579 ]
4580 },
4581 {
@@ -4592,7 +4592,7 @@
4592 "ru": "Отправить сообщение",
4593 "zh-chs": "廣播",
4594 "xloc": [
4595 - "default.handlebars->25->1540",
4595 + "default.handlebars->25->1542",
4596 "default.handlebars->container->column_l->p4->3->1->0->3->1"
4597 ]
4598 },
@@ -4610,7 +4610,7 @@
4610 "ru": "Отправить сообщение",
4611 "zh-chs": "廣播消息",
4612 "xloc": [
4613 - "default.handlebars->25->1475"
4613 + "default.handlebars->25->1477"
4614 ]
4615 },
4616 {
@@ -4627,7 +4627,7 @@
4627 "ru": "Отправить сообщение всем подключенным пользователям.",
4628 "zh-chs": "向所有連接的用戶廣播消息。",
4629 "xloc": [
4630 - "default.handlebars->25->1474"
4630 + "default.handlebars->25->1476"
4631 ]
4632 },
4633 {
@@ -4644,7 +4644,7 @@
4644 "ru": "Болгарский",
4645 "zh-chs": "保加利亞語",
4646 "xloc": [
4647 - "default.handlebars->25->916"
4647 + "default.handlebars->25->918"
4648 ]
4649 },
4650 {
@@ -4661,7 +4661,7 @@
4661 "ru": "Бирманский",
4662 "zh-chs": "緬甸人",
4663 "xloc": [
4664 - "default.handlebars->25->921"
4664 + "default.handlebars->25->923"
4665 ]
4666 },
4667 {
@@ -4679,7 +4679,7 @@
4679 "zh-chs": "CCM",
4680 "xloc": [
4681 "default-mobile.handlebars->9->219",
4682 - "default.handlebars->25->487"
4682 + "default.handlebars->25->489"
4683 ]
4684 },
4685 {
@@ -4697,8 +4697,8 @@
4697 "zh-chs": "CIRA",
4698 "xloc": [
4699 "default-mobile.handlebars->9->191",
4700 - "default.handlebars->25->1224",
4701 - "default.handlebars->25->1229",
4700 + "default.handlebars->25->1226",
4701 + "default.handlebars->25->1231",
4702 "default.handlebars->25->179",
4703 "default.handlebars->25->385"
4704 ]
@@ -4717,7 +4717,7 @@
4717 "ru": "CIRA Сервер",
4718 "zh-chs": "CIRA服務器",
4719 "xloc": [
4720 - "default.handlebars->25->1788"
4720 + "default.handlebars->25->1790"
4721 ]
4722 },
4723 {
@@ -4734,7 +4734,7 @@
4734 "ru": "CIRA Сервер команды",
4735 "zh-chs": "CIRA服務器命令",
4736 "xloc": [
4737 - "default.handlebars->25->1789"
4737 + "default.handlebars->25->1791"
4738 ]
4739 },
4740 {
@@ -4751,7 +4751,7 @@
4751 "zh-chs": "CPU",
4752 "xloc": [
4753 "default-mobile.handlebars->9->360",
4754 - "default.handlebars->25->838"
4754 + "default.handlebars->25->840"
4755 ]
4756 },
4757 {
@@ -4768,7 +4768,7 @@
4768 "ru": "Загрузка CPU",
4769 "zh-chs": "CPU負載",
4770 "xloc": [
4771 - "default.handlebars->25->1752"
4771 + "default.handlebars->25->1754"
4772 ]
4773 },
4774 {
@@ -4785,7 +4785,7 @@
4785 "ru": "Загрузка CPU за последние 15 минут",
4786 "zh-chs": "最近15分鐘的CPU負載",
4787 "xloc": [
4788 - "default.handlebars->25->1755"
4788 + "default.handlebars->25->1757"
4789 ]
4790 },
4791 {
@@ -4802,7 +4802,7 @@
4802 "ru": "Загрузка CPU за последние 5 минут",
4803 "zh-chs": "最近5分鐘的CPU負載",
4804 "xloc": [
4805 - "default.handlebars->25->1754"
4805 + "default.handlebars->25->1756"
4806 ]
4807 },
4808 {
@@ -4819,7 +4819,7 @@
4819 "ru": "Загрузка CPU за последнюю минуту",
4820 "zh-chs": "最後一分鐘的CPU負載",
4821 "xloc": [
4822 - "default.handlebars->25->1753"
4822 + "default.handlebars->25->1755"
4823 ]
4824 },
4825 {
@@ -4836,8 +4836,8 @@
4836 "ru": "CR+LF",
4837 "zh-chs": "CR +低頻",
4838 "xloc": [
4839 - "default.handlebars->25->736",
4840 - "default.handlebars->25->745",
4839 + "default.handlebars->25->738",
4840 + "default.handlebars->25->747",
4841 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
4842 ]
4843 },
@@ -4855,8 +4855,8 @@
4855 "ru": "Формат CSV",
4856 "zh-chs": "CSV格式",
4857 "xloc": [
4858 - "default.handlebars->25->1407",
4859 - "default.handlebars->25->1466",
4858 + "default.handlebars->25->1409",
4859 + "default.handlebars->25->1468",
4860 "default.handlebars->25->411"
4861 ]
4862 },
@@ -4874,7 +4874,7 @@
4874 "ru": "Ошибка вызова",
4875 "zh-chs": "通話錯誤",
4876 "xloc": [
4877 - "default.handlebars->25->1801"
4877 + "default.handlebars->25->1803"
4878 ]
4879 },
4880 {
@@ -4893,7 +4893,7 @@
4893 "xloc": [
4894 "default-mobile.handlebars->9->82",
4895 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
4896 - "default.handlebars->25->1141",
4896 + "default.handlebars->25->1143",
4897 "default.handlebars->container->dialog->idx_dlgButtonBar",
4898 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
4899 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -4913,8 +4913,8 @@
4913 "xloc": [
4914 "default-mobile.handlebars->9->368",
4915 "default-mobile.handlebars->9->370",
4916 - "default.handlebars->25->846",
4917 - "default.handlebars->25->848"
4916 + "default.handlebars->25->848",
4917 + "default.handlebars->25->850"
4918 ]
4919 },
4920 {
@@ -4932,7 +4932,7 @@
4932 "zh-chs": "容量/速度",
4933 "xloc": [
4934 "default-mobile.handlebars->9->363",
4935 - "default.handlebars->25->841"
4935 + "default.handlebars->25->843"
4936 ]
4937 },
4938 {
@@ -4949,7 +4949,7 @@
4949 "ru": "Каталонский",
4950 "zh-chs": "加泰羅尼亞語",
4951 "xloc": [
4952 - "default.handlebars->25->922"
4952 + "default.handlebars->25->924"
4953 ]
4954 },
4955 {
@@ -4983,7 +4983,7 @@
4983 "ru": "Чаморро",
4984 "zh-chs": "查莫羅",
4985 "xloc": [
4986 - "default.handlebars->25->923"
4986 + "default.handlebars->25->925"
4987 ]
4988 },
4989 {
@@ -5014,7 +5014,7 @@
5014 "ru": "Смена email для {0}",
5015 "zh-chs": "更改{0}的電子郵件",
5016 "xloc": [
5017 - "default.handlebars->25->1649"
5017 + "default.handlebars->25->1651"
5018 ]
5019 },
5020 {
@@ -5031,9 +5031,9 @@
5031 "ru": "Смена группы",
5032 "zh-chs": "變更組",
5033 "xloc": [
5034 - "default.handlebars->25->543",
5035 - "default.handlebars->25->652",
5036 - "default.handlebars->25->653"
5034 + "default.handlebars->25->545",
5035 + "default.handlebars->25->654",
5036 + "default.handlebars->25->655"
5037 ]
5038 },
5039 {
@@ -5051,8 +5051,8 @@
5051 "zh-chs": "更改密碼",
5052 "xloc": [
5053 "default-mobile.handlebars->9->90",
5054 - "default.handlebars->25->1117",
5055 - "default.handlebars->25->1638"
5054 + "default.handlebars->25->1119",
5055 + "default.handlebars->25->1640"
5056 ]
5057 },
5058 {
@@ -5069,7 +5069,7 @@
5069 "ru": "Смена пароля для {0}",
5070 "zh-chs": "更改{0}的密碼",
5071 "xloc": [
5072 - "default.handlebars->25->1656"
5072 + "default.handlebars->25->1658"
5073 ]
5074 },
5075 {
@@ -5139,7 +5139,7 @@
5139 "ru": "Изменить пароль для этого пользователя",
5140 "zh-chs": "更改該用戶的密碼",
5141 "xloc": [
5142 - "default.handlebars->25->1637"
5142 + "default.handlebars->25->1639"
5143 ]
5144 },
5145 {
@@ -5173,7 +5173,7 @@
5173 "ru": "Измените адрес электронной почты вашей учетной записи здесь.",
5174 "zh-chs": "在此處更改您的帳戶電子郵件地址。",
5175 "xloc": [
5176 - "default.handlebars->25->1104"
5176 + "default.handlebars->25->1106"
5177 ]
5178 },
5179 {
@@ -5190,7 +5190,7 @@
5190 "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.",
5191 "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
5192 "xloc": [
5193 - "default.handlebars->25->1110"
5193 + "default.handlebars->25->1112"
5194 ]
5195 },
5196 {
@@ -5207,7 +5207,7 @@
5207 "ru": "Изменение языка потребует перезагрузить страницу.",
5208 "zh-chs": "更改語言將需要刷新頁面。",
5209 "xloc": [
5210 - "default.handlebars->25->1089"
5210 + "default.handlebars->25->1091"
5211 ]
5212 },
5213 {
@@ -5224,9 +5224,9 @@
5224 "ru": "Чат",
5225 "zh-chs": "聊天室",
5226 "xloc": [
5227 - "default.handlebars->25->1424",
5228 - "default.handlebars->25->592",
5229 - "default.handlebars->25->611"
5227 + "default.handlebars->25->1426",
5228 + "default.handlebars->25->594",
5229 + "default.handlebars->25->613"
5230 ]
5231 },
5232 {
@@ -5245,8 +5245,8 @@
5245 "xloc": [
5246 "default-mobile.handlebars->9->407",
5247 "default-mobile.handlebars->9->425",
5248 - "default.handlebars->25->1286",
5249 - "default.handlebars->25->1320"
5248 + "default.handlebars->25->1288",
5249 + "default.handlebars->25->1322"
5250 ]
5251 },
5252 {
@@ -5263,7 +5263,7 @@
5263 "ru": "Чеченский",
5264 "zh-chs": "車臣",
5265 "xloc": [
5266 - "default.handlebars->25->924"
5266 + "default.handlebars->25->926"
5267 ]
5268 },
5269 {
@@ -5344,8 +5344,8 @@
5344 "ru": "Проверка...",
5345 "zh-chs": "檢查...",
5346 "xloc": [
5347 - "default.handlebars->25->1795",
5348 - "default.handlebars->25->890"
5347 + "default.handlebars->25->1797",
5348 + "default.handlebars->25->892"
5349 ]
5350 },
5351 {
@@ -5362,7 +5362,7 @@
5362 "ru": "Китайский",
5363 "zh-chs": "中文",
5364 "xloc": [
5365 - "default.handlebars->25->925"
5365 + "default.handlebars->25->927"
5366 ]
5367 },
5368 {
@@ -5379,7 +5379,7 @@
5379 "ru": "Китайский (Гонконг)",
5380 "zh-chs": "中文(香港)",
5381 "xloc": [
5382 - "default.handlebars->25->926"
5382 + "default.handlebars->25->928"
5383 ]
5384 },
5385 {
@@ -5396,7 +5396,7 @@
5396 "ru": "Китайский (КНР)",
5397 "zh-chs": "中文(中國)",
5398 "xloc": [
5399 - "default.handlebars->25->927"
5399 + "default.handlebars->25->929"
5400 ]
5401 },
5402 {
@@ -5413,7 +5413,7 @@
5413 "ru": "Упрощенный китайский)",
5414 "zh-chs": "简体中文)",
5415 "xloc": [
5416 - "default.handlebars->25->1087"
5416 + "default.handlebars->25->1089"
5417 ]
5418 },
5419 {
@@ -5430,7 +5430,7 @@
5430 "ru": "Китайский (Сингапур)",
5431 "zh-chs": "中文(新加坡)",
5432 "xloc": [
5433 - "default.handlebars->25->928"
5433 + "default.handlebars->25->930"
5434 ]
5435 },
5436 {
@@ -5447,7 +5447,7 @@
5447 "ru": "Китайский (Тайвань)",
5448 "zh-chs": "中文(台灣)",
5449 "xloc": [
5450 - "default.handlebars->25->929"
5450 + "default.handlebars->25->931"
5451 ]
5452 },
5453 {
@@ -5482,7 +5482,7 @@
5482 "ru": "Чувашский",
5483 "zh-chs": "楚瓦什",
5484 "xloc": [
5485 - "default.handlebars->25->930"
5485 + "default.handlebars->25->932"
5486 ]
5487 },
5488 {
@@ -5522,11 +5522,11 @@
5522 "default-mobile.handlebars->9->307",
5523 "default-mobile.handlebars->9->309",
5524 "default-mobile.handlebars->9->59",
5525 - "default.handlebars->25->1401",
5526 - "default.handlebars->25->771",
5525 + "default.handlebars->25->1403",
5526 "default.handlebars->25->773",
5527 "default.handlebars->25->775",
5528 "default.handlebars->25->777",
5529 + "default.handlebars->25->779",
5530 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
5531 "default.handlebars->container->column_l->p41->3->1",
5532 "messenger.handlebars->xbottom"
@@ -5560,7 +5560,7 @@
5560 "nl": "Wis alle meldingen",
5561 "zh-chs": "全部清除",
5562 "xloc": [
5563 - "default.handlebars->25->1725"
5563 + "default.handlebars->25->1727"
5564 ]
5565 },
5566 {
@@ -5577,7 +5577,7 @@
5577 "ru": "Очистить ядро",
5578 "zh-chs": "清除核心",
5579 "xloc": [
5580 - "default.handlebars->25->862"
5580 + "default.handlebars->25->864"
5581 ]
5582 },
5583 {
@@ -5610,7 +5610,7 @@
5610 "ru": "Очистить это уведомление",
5611 "zh-chs": "清除此通知",
5612 "xloc": [
5613 - "default.handlebars->25->1724"
5613 + "default.handlebars->25->1726"
5614 ]
5615 },
5616 {
@@ -5655,8 +5655,8 @@
5655 "nl": "Klik hier om de apparaatgroepsnaam te bewerken",
5656 "zh-chs": "单击此处编辑设备组名称",
5657 "xloc": [
5658 - "default.handlebars->25->1152",
5659 - "default.handlebars->25->1357"
5658 + "default.handlebars->25->1154",
5659 + "default.handlebars->25->1359"
5660 ]
5661 },
5662 {
@@ -5673,7 +5673,7 @@
5673 "ru": "Для изменения имени устройства на сервере нажмите сюда",
5674 "zh-chs": "單擊此處編輯服務器端設備名稱",
5675 "xloc": [
5676 - "default.handlebars->25->465"
5676 + "default.handlebars->25->467"
5677 ]
5678 },
5679 {
@@ -5686,7 +5686,7 @@
5686 "nl": "Klik hier om de gebruikersgroepsnaam te bewerken",
5687 "zh-chs": "单击此处编辑用户组名称",
5688 "xloc": [
5689 - "default.handlebars->25->1529"
5689 + "default.handlebars->25->1531"
5690 ]
5691 },
5692 {
@@ -5736,7 +5736,7 @@
5736 "zh-chs": "單擊確定將驗證郵件發送到:",
5737 "xloc": [
5738 "default-mobile.handlebars->9->75",
5739 - "default.handlebars->25->1101"
5739 + "default.handlebars->25->1103"
5740 ]
5741 },
5742 {
@@ -5771,7 +5771,7 @@
5771 "zh-chs": "客戶端控制模式(CCM)",
5772 "xloc": [
5773 "default-mobile.handlebars->9->341",
5774 - "default.handlebars->25->819"
5774 + "default.handlebars->25->821"
5775 ]
5776 },
5777 {
@@ -5788,8 +5788,8 @@
5788 "ru": "Клиент инициировал удаленный доступ",
5789 "zh-chs": "客戶端啟動的遠程訪問",
5790 "xloc": [
5791 - "default.handlebars->25->1223",
5792 - "default.handlebars->25->1228"
5791 + "default.handlebars->25->1225",
5792 + "default.handlebars->25->1230"
5793 ]
5794 },
5795 {
@@ -5826,7 +5826,7 @@
5826 "default-mobile.handlebars->9->57",
5827 "default.handlebars->25->121",
5828 "default.handlebars->25->129",
5829 - "default.handlebars->25->729"
5829 + "default.handlebars->25->731"
5830 ]
5831 },
5832 {
@@ -5861,8 +5861,8 @@
5861 "ru": "Общие группы устройств",
5862 "zh-chs": "通用設備組",
5863 "xloc": [
5864 - "default.handlebars->25->1548",
5865 - "default.handlebars->25->1661"
5864 + "default.handlebars->25->1550",
5865 + "default.handlebars->25->1663"
5866 ]
5867 },
5868 {
@@ -5879,8 +5879,8 @@
5879 "ru": "Общие устройства",
5880 "zh-chs": "通用設備",
5881 "xloc": [
5882 - "default.handlebars->25->1554",
5883 - "default.handlebars->25->1673"
5882 + "default.handlebars->25->1556",
5883 + "default.handlebars->25->1675"
5884 ]
5885 },
5886 {
@@ -5898,7 +5898,7 @@
5898 "zh-chs": "將{1}入口{2}中的{0}限製到此位置?",
5899 "xloc": [
5900 "default-mobile.handlebars->9->127",
5901 - "default.handlebars->25->1396"
5901 + "default.handlebars->25->1398"
5902 ]
5903 },
5904 {
@@ -5917,14 +5917,14 @@
5917 "xloc": [
5918 "default-mobile.handlebars->9->265",
5919 "default-mobile.handlebars->9->387",
5920 - "default.handlebars->25->1237",
5921 - "default.handlebars->25->1450",
5922 - "default.handlebars->25->1519",
5923 - "default.handlebars->25->1568",
5924 - "default.handlebars->25->1659",
5920 + "default.handlebars->25->1239",
5921 + "default.handlebars->25->1452",
5922 + "default.handlebars->25->1521",
5923 + "default.handlebars->25->1570",
5924 + "default.handlebars->25->1661",
5925 "default.handlebars->25->408",
5926 - "default.handlebars->25->647",
5927 - "default.handlebars->25->656"
5926 + "default.handlebars->25->649",
5927 + "default.handlebars->25->658"
5928 ]
5929 },
5930 {
@@ -5942,7 +5942,7 @@
5942 "zh-chs": "確認將1個副本複製到此位置?",
5943 "xloc": [
5944 "default-mobile.handlebars->9->298",
5945 - "default.handlebars->25->766"
5945 + "default.handlebars->25->768"
5946 ]
5947 },
5948 {
@@ -5960,7 +5960,7 @@
5960 "zh-chs": "確認{0}個條目的副本到此位置?",
5961 "xloc": [
5962 "default-mobile.handlebars->9->297",
5963 - "default.handlebars->25->765"
5963 + "default.handlebars->25->767"
5964 ]
5965 },
5966 {
@@ -5974,7 +5974,7 @@
5974 "nl": "Bevestig verwijdering geselecteerde account(s)?",
5975 "zh-chs": "确认删除选定的帐户?",
5976 "xloc": [
5977 - "default.handlebars->25->1449"
5977 + "default.handlebars->25->1451"
5978 ]
5979 },
5980 {
@@ -6005,7 +6005,7 @@
6005 "nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?",
6006 "zh-chs": "确认删除选定的用户组?",
6007 "xloc": [
6008 - "default.handlebars->25->1518"
6008 + "default.handlebars->25->1520"
6009 ]
6010 },
6011 {
@@ -6022,7 +6022,7 @@
6022 "ru": "Подтвердить удаление пользователя {0}?",
6023 "zh-chs": "確認刪除用戶{0}?",
6024 "xloc": [
6025 - "default.handlebars->25->1658"
6025 + "default.handlebars->25->1660"
6026 ]
6027 },
6028 {
@@ -6036,7 +6036,7 @@
6036 "nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?",
6037 "zh-chs": "确认删除用户\\“ {0} \\”的成员身份?",
6038 "xloc": [
6039 - "default.handlebars->25->1571"
6039 + "default.handlebars->25->1573"
6040 ]
6041 },
6042 {
@@ -6050,7 +6050,7 @@
6050 "nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?",
6051 "zh-chs": "确认删除用户组 “{0}” 的成员身份?",
6052 "xloc": [
6053 - "default.handlebars->25->1688"
6053 + "default.handlebars->25->1690"
6054 ]
6055 },
6056 {
@@ -6068,7 +6068,7 @@
6068 "zh-chs": "確認將1個入口移動到此位置?",
6069 "xloc": [
6070 "default-mobile.handlebars->9->300",
6071 - "default.handlebars->25->768"
6071 + "default.handlebars->25->770"
6072 ]
6073 },
6074 {
@@ -6086,7 +6086,7 @@
6086 "zh-chs": "確認將{0}個條目移到此位置?",
6087 "xloc": [
6088 "default-mobile.handlebars->9->299",
6089 - "default.handlebars->25->767"
6089 + "default.handlebars->25->769"
6090 ]
6091 },
6092 {
@@ -6103,7 +6103,7 @@
6103 "ru": "Подтвердить перезапись?",
6104 "zh-chs": "確認覆蓋?",
6105 "xloc": [
6106 - "default.handlebars->25->1395"
6106 + "default.handlebars->25->1397"
6107 ]
6108 },
6109 {
@@ -6117,8 +6117,8 @@
6117 "nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?",
6118 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
6119 "xloc": [
6120 - "default.handlebars->25->1561",
6121 - "default.handlebars->25->1679"
6120 + "default.handlebars->25->1563",
6121 + "default.handlebars->25->1681"
6122 ]
6123 },
6124 {
@@ -6132,8 +6132,8 @@
6132 "nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?",
6133 "zh-chs": "是否确认删除设备组“ {0}”的访问权限?",
6134 "xloc": [
6135 - "default.handlebars->25->1563",
6136 - "default.handlebars->25->1692"
6135 + "default.handlebars->25->1565",
6136 + "default.handlebars->25->1694"
6137 ]
6138 },
6139 {
@@ -6147,7 +6147,7 @@
6147 "nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?",
6148 "zh-chs": "确认删除用户\\“ {0} \\”的访问权限?",
6149 "xloc": [
6150 - "default.handlebars->25->1681"
6150 + "default.handlebars->25->1683"
6151 ]
6152 },
6153 {
@@ -6161,7 +6161,7 @@
6161 "nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?",
6162 "zh-chs": "确认删除用户组“ {0}”的访问权限?",
6163 "xloc": [
6164 - "default.handlebars->25->1684"
6164 + "default.handlebars->25->1686"
6165 ]
6166 },
6167 {
@@ -6175,8 +6175,8 @@
6175 "nl": "Verwijdering van toegangsrechten bevestigen?",
6176 "zh-chs": "确认删除访问权限?",
6177 "xloc": [
6178 - "default.handlebars->25->1682",
6179 - "default.handlebars->25->1685"
6178 + "default.handlebars->25->1684",
6179 + "default.handlebars->25->1687"
6180 ]
6181 },
6182 {
@@ -6194,7 +6194,7 @@
6194 "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?",
6195 "xloc": [
6196 "default-mobile.handlebars->9->74",
6197 - "default.handlebars->25->880"
6197 + "default.handlebars->25->882"
6198 ]
6199 },
6200 {
@@ -6249,7 +6249,7 @@
6249 "nl": "Bevestig de verwijdering van rechten voor gebruiker \\\"{0}\\\"?",
6250 "zh-chs": "确认删除用户“ {0} ”的权限?",
6251 "xloc": [
6252 - "default.handlebars->25->1329"
6252 + "default.handlebars->25->1331"
6253 ]
6254 },
6255 {
@@ -6263,7 +6263,7 @@
6263 "nl": "Bevestig de verwijdering van rechten voor de gebruikergroep \\\"{0}\\\"?",
6264 "zh-chs": "确认删除用户组“ {0} ”的权限?",
6265 "xloc": [
6266 - "default.handlebars->25->1331"
6266 + "default.handlebars->25->1333"
6267 ]
6268 },
6269 {
@@ -6311,8 +6311,8 @@
6311 "default-mobile.handlebars->9->280",
6312 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
6313 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
6314 - "default.handlebars->25->1176",
6315 - "default.handlebars->25->748",
6314 + "default.handlebars->25->1178",
6315 + "default.handlebars->25->750",
6316 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
6317 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
6318 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -6351,8 +6351,8 @@
6351 "ru": "Подключиться к серверу",
6352 "zh-chs": "連接到服務器",
6353 "xloc": [
6354 - "default.handlebars->25->1227",
6355 - "default.handlebars->25->1231"
6354 + "default.handlebars->25->1229",
6355 + "default.handlebars->25->1233"
6356 ]
6357 },
6358 {
@@ -6423,7 +6423,7 @@
6423 "ru": "Подключено Intel&reg; AMT",
6424 "zh-chs": "連接的英特爾&reg;AMT",
6425 "xloc": [
6426 - "default.handlebars->25->1743"
6426 + "default.handlebars->25->1745"
6427 ]
6428 },
6429 {
@@ -6440,7 +6440,7 @@
6440 "ru": "Подключенные пользователи",
6441 "zh-chs": "關聯用戶",
6442 "xloc": [
6443 - "default.handlebars->25->1748"
6443 + "default.handlebars->25->1750"
6444 ]
6445 },
6446 {
@@ -6458,7 +6458,7 @@
6458 "zh-chs": "現在已連接",
6459 "xloc": [
6460 "default-mobile.handlebars->9->320",
6461 - "default.handlebars->25->798"
6461 + "default.handlebars->25->800"
6462 ]
6463 },
6464 {
@@ -6498,7 +6498,7 @@
6498 "default.handlebars->25->204",
6499 "default.handlebars->25->207",
6500 "default.handlebars->25->226",
6501 - "default.handlebars->25->789",
6501 + "default.handlebars->25->791",
6502 "default.handlebars->25->9",
6503 "xterm.handlebars->9->2"
6504 ]
@@ -6517,7 +6517,7 @@
6517 "ru": "Подключений ",
6518 "zh-chs": "連接數",
6519 "xloc": [
6520 - "default.handlebars->25->1759"
6520 + "default.handlebars->25->1761"
6521 ]
6522 },
6523 {
@@ -6534,7 +6534,7 @@
6534 "ru": "Ретранслятор подключения",
6535 "zh-chs": "連接繼電器",
6536 "xloc": [
6537 - "default.handlebars->25->1787"
6537 + "default.handlebars->25->1789"
6538 ]
6539 },
6540 {
@@ -6586,9 +6586,9 @@
6586 "zh-chs": "連接性",
6587 "xloc": [
6588 "default-mobile.handlebars->9->233",
6589 - "default.handlebars->25->1364",
6589 + "default.handlebars->25->1366",
6590 "default.handlebars->25->195",
6591 - "default.handlebars->25->532",
6591 + "default.handlebars->25->534",
6592 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
6593 ]
6594 },
@@ -6606,8 +6606,8 @@
6606 "ru": "Консоль",
6607 "zh-chs": "安慰",
6608 "xloc": [
6609 - "default.handlebars->25->587",
6610 - "default.handlebars->25->606",
6609 + "default.handlebars->25->589",
6610 + "default.handlebars->25->608",
6611 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
6612 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
6613 "default.handlebars->contextMenu->cxconsole"
@@ -6627,7 +6627,7 @@
6627 "ru": "Консоль - ",
6628 "zh-chs": "安慰 -",
6629 "xloc": [
6630 - "default.handlebars->25->466"
6630 + "default.handlebars->25->468"
6631 ]
6632 },
6633 {
@@ -6643,8 +6643,8 @@
6643 "ru": "контроль",
6644 "zh-chs": "控制",
6645 "xloc": [
6646 - "default.handlebars->25->586",
6647 - "default.handlebars->25->605"
6646 + "default.handlebars->25->588",
6647 + "default.handlebars->25->607"
6648 ]
6649 },
6650 {
@@ -6661,7 +6661,7 @@
6661 "ru": "Cookie-кодировщик",
6662 "zh-chs": "Cookie編碼器",
6663 "xloc": [
6664 - "default.handlebars->25->1773"
6664 + "default.handlebars->25->1775"
6665 ]
6666 },
6667 {
@@ -6787,8 +6787,8 @@
6787 "ru": "Скопировать ссылку в буфер обмена",
6788 "zh-chs": "複製鏈接到剪貼板",
6789 "xloc": [
6790 - "default.handlebars->25->1369",
6791 - "default.handlebars->25->1383",
6790 + "default.handlebars->25->1371",
6791 + "default.handlebars->25->1385",
6792 "default.handlebars->25->321"
6793 ]
6794 },
@@ -6966,7 +6966,7 @@
6966 "ru": "Основной сервер",
6967 "zh-chs": "核心服務器",
6968 "xloc": [
6969 - "default.handlebars->25->1772"
6969 + "default.handlebars->25->1774"
6970 ]
6971 },
6972 {
@@ -6983,7 +6983,7 @@
6983 "ru": "Kорсиканский",
6984 "zh-chs": "科西嘉人",
6985 "xloc": [
6986 - "default.handlebars->25->931"
6986 + "default.handlebars->25->933"
6987 ]
6988 },
6989 {
@@ -7000,7 +7000,7 @@
7000 "ru": "Создать учетную запись",
7001 "zh-chs": "創建帳號",
7002 "xloc": [
7003 - "default.handlebars->25->1489",
7003 + "default.handlebars->25->1491",
7004 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
7005 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
7006 ]
@@ -7036,7 +7036,7 @@
7036 "ru": "Создать группу пользователей",
7037 "zh-chs": "創建用戶組",
7038 "xloc": [
7039 - "default.handlebars->25->1526"
7039 + "default.handlebars->25->1528"
7040 ]
7041 },
7042 {
@@ -7053,7 +7053,7 @@
7053 "ru": "Создайте новую группу устройств, используя параметры ниже.",
7054 "zh-chs": "使用以下選項創建一個新的設備組。",
7055 "xloc": [
7056 - "default.handlebars->25->1124"
7056 + "default.handlebars->25->1126"
7057 ]
7058 },
7059 {
@@ -7087,7 +7087,7 @@
7087 "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:",
7088 "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:",
7089 "xloc": [
7090 - "default.handlebars->25->1457"
7090 + "default.handlebars->25->1459"
7091 ]
7092 },
7093 {
@@ -7122,7 +7122,7 @@
7122 "ru": "Создано",
7123 "zh-chs": "創建",
7124 "xloc": [
7125 - "default.handlebars->25->1597"
7125 + "default.handlebars->25->1599"
7126 ]
7127 },
7128 {
@@ -7157,7 +7157,7 @@
7157 "ru": "Кри (Канадский язык)",
7158 "zh-chs": "克里",
7159 "xloc": [
7160 - "default.handlebars->25->932"
7160 + "default.handlebars->25->934"
7161 ]
7162 },
7163 {
@@ -7174,7 +7174,7 @@
7174 "ru": "Хорватский",
7175 "zh-chs": "克羅地亞語",
7176 "xloc": [
7177 - "default.handlebars->25->933"
7177 + "default.handlebars->25->935"
7178 ]
7179 },
7180 {
@@ -7315,7 +7315,7 @@
7315 "ru": "Чешский",
7316 "zh-chs": "捷克文",
7317 "xloc": [
7318 - "default.handlebars->25->934"
7318 + "default.handlebars->25->936"
7319 ]
7320 },
7321 {
@@ -7349,7 +7349,7 @@
7349 "ru": "Датский",
7350 "zh-chs": "丹麥文",
7351 "xloc": [
7352 - "default.handlebars->25->935"
7352 + "default.handlebars->25->937"
7353 ]
7354 },
7355 {
@@ -7366,7 +7366,7 @@
7366 "ru": "DataChannel",
7367 "zh-chs": "數據通道",
7368 "xloc": [
7369 - "default.handlebars->25->699"
7369 + "default.handlebars->25->701"
7370 ]
7371 },
7372 {
@@ -7383,7 +7383,7 @@
7383 "ru": "Дата & Время",
7384 "zh-chs": "日期和時間",
7385 "xloc": [
7386 - "default.handlebars->25->1092"
7386 + "default.handlebars->25->1094"
7387 ]
7388 },
7389 {
@@ -7401,7 +7401,7 @@
7401 "zh-chs": "天",
7402 "xloc": [
7403 "default-mobile.handlebars->9->255",
7404 - "default.handlebars->25->631"
7404 + "default.handlebars->25->633"
7405 ]
7406 },
7407 {
@@ -7418,7 +7418,7 @@
7418 "ru": "Деактивировать режим управления клиентом (CCM)",
7419 "zh-chs": "停用客戶端控制模式(CCM)",
7420 "xloc": [
7421 - "default.handlebars->25->1215"
7421 + "default.handlebars->25->1217"
7422 ]
7423 },
7424 {
@@ -7443,10 +7443,10 @@
7443 "en": "Default",
7444 "nl": "Standaard",
7445 "xloc": [
7446 - "default.handlebars->25->1476",
7447 - "default.handlebars->25->1522",
7448 - "default.handlebars->25->1533",
7449 - "default.handlebars->25->1588"
7446 + "default.handlebars->25->1478",
7447 + "default.handlebars->25->1524",
7448 + "default.handlebars->25->1535",
7449 + "default.handlebars->25->1590"
7450 ]
7451 },
7452 {
@@ -7467,9 +7467,9 @@
7467 "default-mobile.handlebars->9->290",
7468 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
7469 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
7470 - "default.handlebars->25->1390",
7470 + "default.handlebars->25->1392",
7471 "default.handlebars->25->438",
7472 - "default.handlebars->25->758",
7472 + "default.handlebars->25->760",
7473 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
7474 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
7475 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -7493,7 +7493,7 @@
7493 "zh-chs": "刪除帳戶",
7494 "xloc": [
7495 "default-mobile.handlebars->9->84",
7496 - "default.handlebars->25->1109"
7496 + "default.handlebars->25->1111"
7497 ]
7498 },
7499 {
@@ -7507,7 +7507,7 @@
7507 "nl": "Verwijder accounts",
7508 "zh-chs": "删除帐号",
7509 "xloc": [
7510 - "default.handlebars->25->1451"
7510 + "default.handlebars->25->1453"
7511 ]
7512 },
7513 {
@@ -7525,7 +7525,7 @@
7525 "zh-chs": "刪除裝置",
7526 "xloc": [
7527 "default-mobile.handlebars->9->238",
7528 - "default.handlebars->25->545"
7528 + "default.handlebars->25->547"
7529 ]
7530 },
7531 {
@@ -7544,8 +7544,8 @@
7544 "xloc": [
7545 "default-mobile.handlebars->9->385",
7546 "default-mobile.handlebars->9->388",
7547 - "default.handlebars->25->1208",
7548 - "default.handlebars->25->1238"
7547 + "default.handlebars->25->1210",
7548 + "default.handlebars->25->1240"
7549 ]
7550 },
7551 {
@@ -7563,7 +7563,7 @@
7563 "zh-chs": "刪除節點",
7564 "xloc": [
7565 "default-mobile.handlebars->9->263",
7566 - "default.handlebars->25->657"
7566 + "default.handlebars->25->659"
7567 ]
7568 },
7569 {
@@ -7597,7 +7597,7 @@
7597 "ru": "Удалить пользователя",
7598 "zh-chs": "刪除用戶",
7599 "xloc": [
7600 - "default.handlebars->25->1636"
7600 + "default.handlebars->25->1638"
7601 ]
7602 },
7603 {
@@ -7614,8 +7614,8 @@
7614 "ru": "Удалить группу пользователей",
7615 "zh-chs": "刪除用戶組",
7616 "xloc": [
7617 - "default.handlebars->25->1559",
7618 - "default.handlebars->25->1569"
7617 + "default.handlebars->25->1561",
7618 + "default.handlebars->25->1571"
7619 ]
7620 },
7621 {
@@ -7629,7 +7629,7 @@
7629 "nl": "Gebruikersgroepen verwijderen",
7630 "zh-chs": "删除用户组",
7631 "xloc": [
7632 - "default.handlebars->25->1520"
7632 + "default.handlebars->25->1522"
7633 ]
7634 },
7635 {
@@ -7646,7 +7646,7 @@
7646 "ru": "Удалить пользователя {0}",
7647 "zh-chs": "刪除用戶{0}",
7648 "xloc": [
7649 - "default.handlebars->25->1657"
7649 + "default.handlebars->25->1659"
7650 ]
7651 },
7652 {
@@ -7664,7 +7664,7 @@
7664 "zh-chs": "刪除帳戶",
7665 "xloc": [
7666 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
7667 - "default.handlebars->25->1447",
7667 + "default.handlebars->25->1449",
7668 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
7669 ]
7670 },
@@ -7696,7 +7696,7 @@
7696 "nl": "Verwijder groep",
7697 "zh-chs": "删除群组",
7698 "xloc": [
7699 - "default.handlebars->25->1516"
7699 + "default.handlebars->25->1518"
7700 ]
7701 },
7702 {
@@ -7732,8 +7732,8 @@
7732 "xloc": [
7733 "default-mobile.handlebars->9->124",
7734 "default-mobile.handlebars->9->292",
7735 - "default.handlebars->25->1392",
7736 - "default.handlebars->25->760"
7735 + "default.handlebars->25->1394",
7736 + "default.handlebars->25->762"
7737 ]
7738 },
7739 {
@@ -7750,7 +7750,7 @@
7750 "ru": "Удалить группу пользователей {0}?",
7751 "zh-chs": "刪除用戶組{0}?",
7752 "xloc": [
7753 - "default.handlebars->25->1567"
7753 + "default.handlebars->25->1569"
7754 ]
7755 },
7756 {
@@ -7769,8 +7769,8 @@
7769 "xloc": [
7770 "default-mobile.handlebars->9->123",
7771 "default-mobile.handlebars->9->291",
7772 - "default.handlebars->25->1391",
7773 - "default.handlebars->25->759"
7772 + "default.handlebars->25->1393",
7773 + "default.handlebars->25->761"
7774 ]
7775 },
7776 {
@@ -7800,7 +7800,7 @@
7800 "ko": "거부",
7801 "zh-chs": "被拒绝",
7802 "xloc": [
7803 - "default.handlebars->25->695"
7803 + "default.handlebars->25->697"
7804 ]
7805 },
7806 {
@@ -7884,18 +7884,18 @@
7884 "default-mobile.handlebars->9->326",
7885 "default-mobile.handlebars->9->377",
7886 "default-mobile.handlebars->9->390",
7887 - "default.handlebars->25->1129",
7888 - "default.handlebars->25->1157",
7889 - "default.handlebars->25->1240",
7890 - "default.handlebars->25->1525",
7891 - "default.handlebars->25->1535",
7892 - "default.handlebars->25->1536",
7893 - "default.handlebars->25->1565",
7894 - "default.handlebars->25->477",
7895 - "default.handlebars->25->478",
7896 - "default.handlebars->25->690",
7887 + "default.handlebars->25->1131",
7888 + "default.handlebars->25->1159",
7889 + "default.handlebars->25->1242",
7890 + "default.handlebars->25->1527",
7891 + "default.handlebars->25->1537",
7892 + "default.handlebars->25->1538",
7893 + "default.handlebars->25->1567",
7894 + "default.handlebars->25->479",
7895 + "default.handlebars->25->480",
7896 + "default.handlebars->25->692",
7897 "default.handlebars->25->78",
7898 - "default.handlebars->25->804",
7898 + "default.handlebars->25->806",
7899 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
7900 ]
7901 },
@@ -7928,8 +7928,8 @@
7928 "zh-chs": "桌面",
7929 "xloc": [
7930 "default-mobile.handlebars->9->245",
7931 - "default.handlebars->25->1245",
7932 - "default.handlebars->25->1702",
7931 + "default.handlebars->25->1247",
7932 + "default.handlebars->25->1704",
7933 "default.handlebars->25->444",
7934 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
7935 "default.handlebars->contextMenu->cxdesktop"
@@ -7966,9 +7966,9 @@
7966 "ru": "Уведомление на рабочем столе",
7967 "zh-chs": "桌面通知",
7968 "xloc": [
7969 - "default.handlebars->25->1167",
7970 - "default.handlebars->25->1612",
7971 - "default.handlebars->25->513"
7969 + "default.handlebars->25->1169",
7970 + "default.handlebars->25->1614",
7971 + "default.handlebars->25->515"
7972 ]
7973 },
7974 {
@@ -7985,9 +7985,9 @@
7985 "ru": "Запрос рабочего стола",
7986 "zh-chs": "桌面提示",
7987 "xloc": [
7988 - "default.handlebars->25->1166",
7989 - "default.handlebars->25->1611",
7990 - "default.handlebars->25->512"
7988 + "default.handlebars->25->1168",
7989 + "default.handlebars->25->1613",
7990 + "default.handlebars->25->514"
7991 ]
7992 },
7993 {
@@ -8004,9 +8004,9 @@
8004 "ru": "Запрос рабочего стола + панель инструментов",
8005 "zh-chs": "桌面提示+工具欄",
8006 "xloc": [
8007 - "default.handlebars->25->1164",
8008 - "default.handlebars->25->1609",
8009 - "default.handlebars->25->510"
8007 + "default.handlebars->25->1166",
8008 + "default.handlebars->25->1611",
8009 + "default.handlebars->25->512"
8010 ]
8011 },
8012 {
@@ -8037,9 +8037,9 @@
8037 "ru": "Панель инструментов рабочего стола",
8038 "zh-chs": "桌面工具欄",
8039 "xloc": [
8040 - "default.handlebars->25->1165",
8041 - "default.handlebars->25->1610",
8042 - "default.handlebars->25->511"
8040 + "default.handlebars->25->1167",
8041 + "default.handlebars->25->1612",
8042 + "default.handlebars->25->513"
8043 ]
8044 },
8045 {
@@ -8110,8 +8110,8 @@
8110 "ru": "Устройство",
8111 "zh-chs": "設備",
8112 "xloc": [
8113 - "default.handlebars->25->1267",
8114 - "default.handlebars->25->1676",
8113 + "default.handlebars->25->1269",
8114 + "default.handlebars->25->1678",
8115 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
8116 ]
8117 },
@@ -8130,7 +8130,7 @@
8130 "zh-chs": "設備動作",
8131 "xloc": [
8132 "default-mobile.handlebars->9->254",
8133 - "default.handlebars->25->630"
8133 + "default.handlebars->25->632"
8134 ]
8135 },
8136 {
@@ -8147,13 +8147,13 @@
8147 "ru": "Группа устройства",
8148 "zh-chs": "設備組",
8149 "xloc": [
8150 - "default.handlebars->25->1262",
8151 - "default.handlebars->25->1265",
8152 - "default.handlebars->25->1266",
8153 - "default.handlebars->25->1551",
8154 - "default.handlebars->25->1557",
8155 - "default.handlebars->25->1664",
8156 - "default.handlebars->25->1711"
8150 + "default.handlebars->25->1264",
8151 + "default.handlebars->25->1267",
8152 + "default.handlebars->25->1268",
8153 + "default.handlebars->25->1553",
8154 + "default.handlebars->25->1559",
8155 + "default.handlebars->25->1666",
8156 + "default.handlebars->25->1713"
8157 ]
8158 },
8159 {
@@ -8171,7 +8171,7 @@
8171 "zh-chs": "設備組用戶",
8172 "xloc": [
8173 "default-mobile.handlebars->9->432",
8174 - "default.handlebars->25->1327"
8174 + "default.handlebars->25->1329"
8175 ]
8176 },
8177 {
@@ -8189,11 +8189,11 @@
8189 "zh-chs": "設備組",
8190 "xloc": [
8191 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
8192 - "default.handlebars->25->1416",
8193 - "default.handlebars->25->1510",
8194 - "default.handlebars->25->1538",
8195 - "default.handlebars->25->1606",
8196 - "default.handlebars->25->1746",
8192 + "default.handlebars->25->1418",
8193 + "default.handlebars->25->1512",
8194 + "default.handlebars->25->1540",
8195 + "default.handlebars->25->1608",
8196 + "default.handlebars->25->1748",
8197 "default.handlebars->container->column_l->p2->p2info->7"
8198 ]
8199 },
@@ -8228,14 +8228,14 @@
8228 "ru": "Местонахождение устройства",
8229 "zh-chs": "設備位置",
8230 "xloc": [
8231 - "default.handlebars->25->658"
8231 + "default.handlebars->25->660"
8232 ]
8233 },
8234 {
8235 "en": "Device Message",
8236 "nl": "Apparaatbericht",
8237 "xloc": [
8238 - "default.handlebars->25->619"
8238 + "default.handlebars->25->621"
8239 ]
8240 },
8241 {
@@ -8253,9 +8253,9 @@
8253 "zh-chs": "設備名稱",
8254 "xloc": [
8255 "default-mobile.handlebars->9->267",
8256 - "default.handlebars->25->1710",
8256 + "default.handlebars->25->1712",
8257 "default.handlebars->25->244",
8258 - "default.handlebars->25->688",
8258 + "default.handlebars->25->690",
8259 "player.handlebars->3->9"
8260 ]
8261 },
@@ -8273,7 +8273,7 @@
8273 "ru": "Уведомление устройства",
8274 "zh-chs": "設備通知",
8275 "xloc": [
8276 - "default.handlebars->25->621"
8276 + "default.handlebars->25->623"
8277 ]
8278 },
8279 {
@@ -8307,8 +8307,8 @@
8307 "ru": "Подключения устройств.",
8308 "zh-chs": "設備連接。",
8309 "xloc": [
8310 - "default.handlebars->25->1097",
8311 - "default.handlebars->25->1348"
8310 + "default.handlebars->25->1099",
8311 + "default.handlebars->25->1350"
8312 ]
8313 },
8314 {
@@ -8325,8 +8325,8 @@
8325 "ru": "Отключения устройств.",
8326 "zh-chs": "設備斷開連接。",
8327 "xloc": [
8328 - "default.handlebars->25->1098",
8329 - "default.handlebars->25->1349"
8328 + "default.handlebars->25->1100",
8329 + "default.handlebars->25->1351"
8330 ]
8331 },
8332 {
@@ -8343,7 +8343,13 @@
8343 "ru": "Примечания могут быть просмотрены и изменены другими администраторами.",
8344 "zh-chs": "其他設備組管理員可以查看和更改設備組註釋。",
8345 "xloc": [
8346 - "default.handlebars->25->617"
8346 + "default.handlebars->25->619"
8347 + ]
8348 + },
8349 + {
8350 + "en": "Device is battery powered, {0}%",
8351 + "xloc": [
8352 + "default.handlebars->25->465"
8353 ]
8354 },
8355 {
@@ -8538,6 +8544,12 @@
8544 "default.handlebars->25->380"
8545 ]
8546 },
8547 + {
8548 + "en": "Device is plugged-in",
8549 + "xloc": [
8550 + "default.handlebars->25->464"
8551 + ]
8552 + },
8553 {
8554 "cs": "Zařízení je zapnuté",
8555 "de": "Gerät ist eingeschaltet",
@@ -8633,8 +8645,8 @@
8645 "nl": "Apparaten",
8646 "zh-chs": "设备",
8647 "xloc": [
8636 - "default.handlebars->25->1511",
8637 - "default.handlebars->25->1539"
8648 + "default.handlebars->25->1513",
8649 + "default.handlebars->25->1541"
8650 ]
8651 },
8652 {
@@ -8651,7 +8663,7 @@
8663 "ru": "Отключено",
8664 "zh-chs": "殘障人士",
8665 "xloc": [
8654 - "default.handlebars->25->505"
8666 + "default.handlebars->25->507"
8667 ]
8668 },
8669 {
@@ -8670,8 +8682,8 @@
8682 "xloc": [
8683 "default-mobile.handlebars->9->281",
8684 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8673 - "default.handlebars->25->1177",
8674 - "default.handlebars->25->749",
8685 + "default.handlebars->25->1179",
8686 + "default.handlebars->25->751",
8687 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
8688 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
8689 "xterm.handlebars->p11->deskarea0->deskarea1->3"
@@ -8726,7 +8738,7 @@
8738 "en": "Display a message box on the remote device.",
8739 "nl": "Geef een berichtvenster weer op het externe apparaat.",
8740 "xloc": [
8729 - "default.handlebars->25->620"
8741 + "default.handlebars->25->622"
8742 ]
8743 },
8744 {
@@ -8750,7 +8762,7 @@
8762 "en": "Display a text message on the remote device",
8763 "nl": "Geef een tekstbericht weer op het externe apparaat",
8764 "xloc": [
8753 - "default.handlebars->25->541"
8765 + "default.handlebars->25->543"
8766 ]
8767 },
8768 {
@@ -8767,7 +8779,7 @@
8779 "ru": "Отобразить имя группы устройств",
8780 "zh-chs": "顯示設備組名稱",
8781 "xloc": [
8770 - "default.handlebars->25->1096"
8782 + "default.handlebars->25->1098"
8783 ]
8784 },
8785 {
@@ -8784,7 +8796,7 @@
8796 "ru": "Отображаемое имя",
8797 "zh-chs": "顯示名稱",
8798 "xloc": [
8787 - "default.handlebars->25->720"
8799 + "default.handlebars->25->722"
8800 ]
8801 },
8802 {
@@ -8800,7 +8812,7 @@
8812 "ru": "Показать публичную ссылку",
8813 "zh-chs": "显示公共链接",
8814 "xloc": [
8803 - "default.handlebars->25->1368"
8815 + "default.handlebars->25->1370"
8816 ]
8817 },
8818 {
@@ -8817,17 +8829,17 @@
8829 "ru": "Ничего не делать",
8830 "zh-chs": "沒做什麼",
8831 "xloc": [
8820 - "default.handlebars->25->1221"
8832 + "default.handlebars->25->1223"
8833 ]
8834 },
8835 {
8836 "en": "Domain",
8837 "nl": "Domein",
8838 "xloc": [
8827 - "default.handlebars->25->1477",
8828 - "default.handlebars->25->1523",
8829 - "default.handlebars->25->1532",
8830 - "default.handlebars->25->1587"
8839 + "default.handlebars->25->1479",
8840 + "default.handlebars->25->1525",
8841 + "default.handlebars->25->1534",
8842 + "default.handlebars->25->1589"
8843 ]
8844 },
8845 {
@@ -8840,8 +8852,8 @@
8852 "nl": "Niet configureren",
8853 "zh-chs": "不要配置",
8854 "xloc": [
8843 - "default.handlebars->25->1225",
8844 - "default.handlebars->25->1230"
8855 + "default.handlebars->25->1227",
8856 + "default.handlebars->25->1232"
8857 ]
8858 },
8859 {
@@ -8854,7 +8866,7 @@
8866 "nl": "Maak geen verbinding met de server",
8867 "zh-chs": "不要连接到服务器",
8868 "xloc": [
8857 - "default.handlebars->25->1226"
8869 + "default.handlebars->25->1228"
8870 ]
8871 },
8872 {
@@ -8954,7 +8966,7 @@
8966 "zh-chs": "下載文件",
8967 "xloc": [
8968 "default-mobile.handlebars->9->311",
8957 - "default.handlebars->25->778"
8969 + "default.handlebars->25->780"
8970 ]
8971 },
8972 {
@@ -8988,7 +9000,7 @@
9000 "ru": "Скачать MeshCmd",
9001 "zh-chs": "下載MeshCmd",
9002 "xloc": [
8991 - "default.handlebars->25->680"
9003 + "default.handlebars->25->682"
9004 ]
9005 },
9006 {
@@ -9039,7 +9051,7 @@
9051 "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.",
9052 "zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。",
9053 "xloc": [
9042 - "default.handlebars->25->673"
9054 + "default.handlebars->25->675"
9055 ]
9056 },
9057 {
@@ -9107,7 +9119,7 @@
9119 "ru": "Скачать события состояния питания",
9120 "zh-chs": "下載電源事件",
9121 "xloc": [
9110 - "default.handlebars->25->632"
9122 + "default.handlebars->25->634"
9123 ]
9124 },
9125 {
@@ -9175,7 +9187,7 @@
9187 "ru": "Скачать список событий в одном из форматов ниже.",
9188 "zh-chs": "使用以下一種文件格式下載事件列表。",
9189 "xloc": [
9178 - "default.handlebars->25->1406"
9190 + "default.handlebars->25->1408"
9191 ]
9192 },
9193 {
@@ -9192,7 +9204,7 @@
9204 "ru": "Скачать список пользователей в одном из форматов ниже.",
9205 "zh-chs": "使用以下一種文件格式下載用戶列表。",
9206 "xloc": [
9195 - "default.handlebars->25->1465"
9207 + "default.handlebars->25->1467"
9208 ]
9209 },
9210 {
@@ -9275,7 +9287,7 @@
9287 "nl": "Dubbele agent",
9288 "zh-chs": "代理重复",
9289 "xloc": [
9278 - "default.handlebars->25->1742"
9290 + "default.handlebars->25->1744"
9291 ]
9292 },
9293 {
@@ -9309,7 +9321,7 @@
9321 "ru": "Скопировать группу пользователей",
9322 "zh-chs": "重複的用戶組",
9323 "xloc": [
9312 - "default.handlebars->25->1527"
9324 + "default.handlebars->25->1529"
9325 ]
9326 },
9327 {
@@ -9340,8 +9352,8 @@
9352 "ru": "Длительность",
9353 "zh-chs": "持續時間",
9354 "xloc": [
9343 - "default.handlebars->25->1696",
9344 - "default.handlebars->25->1716",
9355 + "default.handlebars->25->1698",
9356 + "default.handlebars->25->1718",
9357 "player.handlebars->3->2"
9358 ]
9359 },
@@ -9359,7 +9371,7 @@
9371 "ru": "Во время активации агент будет иметь доступ к паролю администратора.",
9372 "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。",
9373 "xloc": [
9362 - "default.handlebars->25->1235"
9374 + "default.handlebars->25->1237"
9375 ]
9376 },
9377 {
@@ -9376,7 +9388,7 @@
9388 "ru": "Голландский (Бельгийский)",
9389 "zh-chs": "荷蘭語(比利時)",
9390 "xloc": [
9379 - "default.handlebars->25->937"
9391 + "default.handlebars->25->939"
9392 ]
9393 },
9394 {
@@ -9393,7 +9405,7 @@
9405 "ru": "Голландский (Стандартный)",
9406 "zh-chs": "荷蘭語(標準)",
9407 "xloc": [
9396 - "default.handlebars->25->936"
9408 + "default.handlebars->25->938"
9409 ]
9410 },
9411 {
@@ -9584,7 +9596,7 @@
9596 "zh-chs": "編輯裝置",
9597 "xloc": [
9598 "default-mobile.handlebars->9->272",
9587 - "default.handlebars->25->693"
9599 + "default.handlebars->25->695"
9600 ]
9601 },
9602 {
@@ -9604,10 +9616,10 @@
9616 "default-mobile.handlebars->9->391",
9617 "default-mobile.handlebars->9->393",
9618 "default-mobile.handlebars->9->411",
9607 - "default.handlebars->25->1241",
9608 - "default.handlebars->25->1271",
9609 - "default.handlebars->25->1293",
9610 - "default.handlebars->25->1305"
9619 + "default.handlebars->25->1243",
9620 + "default.handlebars->25->1273",
9621 + "default.handlebars->25->1295",
9622 + "default.handlebars->25->1307"
9623 ]
9624 },
9625 {
@@ -9624,7 +9636,7 @@
9636 "ru": "Редактировать функции группы устройств",
9637 "zh-chs": "編輯設備組功能",
9638 "xloc": [
9627 - "default.handlebars->25->1257"
9639 + "default.handlebars->25->1259"
9640 ]
9641 },
9642 {
@@ -9641,8 +9653,8 @@
9653 "ru": "Редактировать права группы устройств",
9654 "zh-chs": "編輯設備組權限",
9655 "xloc": [
9644 - "default.handlebars->25->1290",
9645 - "default.handlebars->25->1302"
9656 + "default.handlebars->25->1292",
9657 + "default.handlebars->25->1304"
9658 ]
9659 },
9660 {
@@ -9659,7 +9671,7 @@
9671 "ru": "Редактировать согласие пользователя группы устройств",
9672 "zh-chs": "編輯設備組用戶同意",
9673 "xloc": [
9662 - "default.handlebars->25->1242"
9674 + "default.handlebars->25->1244"
9675 ]
9676 },
9677 {
@@ -9677,7 +9689,7 @@
9689 "zh-chs": "編輯設備說明",
9690 "xloc": [
9691 "default-mobile.handlebars->9->405",
9680 - "default.handlebars->25->1284"
9692 + "default.handlebars->25->1286"
9693 ]
9694 },
9695 {
@@ -9693,8 +9705,8 @@
9705 "ru": "Изменить разрешения устройства",
9706 "zh-chs": "编辑设备权限",
9707 "xloc": [
9696 - "default.handlebars->25->1295",
9697 - "default.handlebars->25->1297"
9708 + "default.handlebars->25->1297",
9709 + "default.handlebars->25->1299"
9710 ]
9711 },
9712 {
@@ -9708,7 +9720,7 @@
9720 "nl": "Gebruikerstoestemming apparaat bewerken",
9721 "zh-chs": "编辑设备用户同意",
9722 "xloc": [
9711 - "default.handlebars->25->1244"
9723 + "default.handlebars->25->1246"
9724 ]
9725 },
9726 {
@@ -9724,7 +9736,7 @@
9736 "ru": "Редактировать группу",
9737 "zh-chs": "编辑组",
9738 "xloc": [
9727 - "default.handlebars->25->596"
9739 + "default.handlebars->25->598"
9740 ]
9741 },
9742 {
@@ -9742,9 +9754,9 @@
9754 "zh-chs": "編輯英特爾&reg;AMT憑據",
9755 "xloc": [
9756 "default-mobile.handlebars->9->262",
9745 - "default.handlebars->25->492",
9746 - "default.handlebars->25->495",
9747 - "default.handlebars->25->639"
9757 + "default.handlebars->25->494",
9758 + "default.handlebars->25->497",
9759 + "default.handlebars->25->641"
9760 ]
9761 },
9762 {
@@ -9762,7 +9774,7 @@
9774 "zh-chs": "編輯筆記",
9775 "xloc": [
9776 "default-mobile.handlebars->9->418",
9765 - "default.handlebars->25->1312"
9777 + "default.handlebars->25->1314"
9778 ]
9779 },
9780 {
@@ -9776,7 +9788,7 @@
9788 "nl": "Gebruikerstoestemming bewerken",
9789 "zh-chs": "编辑用户同意",
9790 "xloc": [
9779 - "default.handlebars->25->1243"
9791 + "default.handlebars->25->1245"
9792 ]
9793 },
9794 {
@@ -9793,7 +9805,7 @@
9805 "ru": "Редактировать права пользователя для группы устройств",
9806 "zh-chs": "編輯用戶設備組權限",
9807 "xloc": [
9796 - "default.handlebars->25->1303"
9808 + "default.handlebars->25->1305"
9809 ]
9810 },
9811 {
@@ -9809,7 +9821,7 @@
9821 "ru": "Изменить разрешения для пользовательских устройств",
9822 "zh-chs": "编辑用户设备权限",
9823 "xloc": [
9812 - "default.handlebars->25->1298"
9824 + "default.handlebars->25->1300"
9825 ]
9826 },
9827 {
@@ -9826,7 +9838,7 @@
9838 "ru": "Редактировать группу пользователей",
9839 "zh-chs": "編輯用戶組",
9840 "xloc": [
9829 - "default.handlebars->25->1566"
9841 + "default.handlebars->25->1568"
9842 ]
9843 },
9844 {
@@ -9840,7 +9852,7 @@
9852 "nl": "Gebruikersmachtigingen voor apparaatgroep bewerken",
9853 "zh-chs": "编辑用户组设备权限",
9854 "xloc": [
9843 - "default.handlebars->25->1300"
9855 + "default.handlebars->25->1302"
9856 ]
9857 },
9858 {
@@ -9875,11 +9887,11 @@
9887 "zh-chs": "電子郵件",
9888 "xloc": [
9889 "default-mobile.handlebars->9->78",
9878 - "default.handlebars->25->1479",
9879 - "default.handlebars->25->1591",
9880 - "default.handlebars->25->1592",
9881 - "default.handlebars->25->1631",
9882 - "default.handlebars->25->1645",
9890 + "default.handlebars->25->1481",
9891 + "default.handlebars->25->1593",
9892 + "default.handlebars->25->1594",
9893 + "default.handlebars->25->1633",
9894 + "default.handlebars->25->1647",
9895 "default.handlebars->25->292",
9896 "login-mobile.handlebars->5->42",
9897 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -9902,7 +9914,7 @@
9914 "zh-chs": "電郵地址變更",
9915 "xloc": [
9916 "default-mobile.handlebars->9->79",
9905 - "default.handlebars->25->1105"
9917 + "default.handlebars->25->1107"
9918 ]
9919 },
9920 {
@@ -9920,7 +9932,7 @@
9932 "zh-chs": "郵件認證",
9933 "xloc": [
9934 "default-mobile.handlebars->9->68",
9923 - "default.handlebars->25->874"
9935 + "default.handlebars->25->876"
9936 ]
9937 },
9938 {
@@ -9965,7 +9977,7 @@
9977 "zh-chs": "電子郵件驗證",
9978 "xloc": [
9979 "default-mobile.handlebars->9->77",
9968 - "default.handlebars->25->1103"
9980 + "default.handlebars->25->1105"
9981 ]
9982 },
9983 {
@@ -9995,7 +10007,7 @@
10007 "ru": "Электронная почта не подтверждена",
10008 "zh-chs": "邮件未验证",
10009 "xloc": [
9998 - "default.handlebars->25->1435"
10010 + "default.handlebars->25->1437"
10011 ]
10012 },
10013 {
@@ -10012,8 +10024,8 @@
10024 "ru": "Email подтвержден",
10025 "zh-chs": "電子郵件已驗證",
10026 "xloc": [
10015 - "default.handlebars->25->1436",
10016 - "default.handlebars->25->1585"
10027 + "default.handlebars->25->1438",
10028 + "default.handlebars->25->1587"
10029 ]
10030 },
10031 {
@@ -10030,7 +10042,7 @@
10042 "ru": "Email подтвержден.",
10043 "zh-chs": "電子郵件已驗證。",
10044 "xloc": [
10033 - "default.handlebars->25->1485"
10045 + "default.handlebars->25->1487"
10046 ]
10047 },
10048 {
@@ -10047,7 +10059,7 @@
10059 "ru": "Email не подтвержден",
10060 "zh-chs": "電子郵件未驗證",
10061 "xloc": [
10050 - "default.handlebars->25->1586"
10062 + "default.handlebars->25->1588"
10063 ]
10064 },
10065 {
@@ -10086,7 +10098,7 @@
10098 "en": "Email verified and forced password reset required.",
10099 "nl": "E-mail geverifieerd en geforceerd opnieuw instellen van wachtwoord vereist.",
10100 "xloc": [
10089 - "default.handlebars->25->1486"
10101 + "default.handlebars->25->1488"
10102 ]
10103 },
10104 {
@@ -10099,7 +10111,7 @@
10111 "nl": "Email/SMS verkeer",
10112 "zh-chs": "电子邮件/短信流量",
10113 "xloc": [
10102 - "default.handlebars->25->1781"
10114 + "default.handlebars->25->1783"
10115 ]
10116 },
10117 {
@@ -10138,7 +10150,7 @@
10150 "ru": "Включить коды приглашения",
10151 "zh-chs": "啟用邀請代碼",
10152 "xloc": [
10141 - "default.handlebars->25->1333"
10153 + "default.handlebars->25->1335"
10154 ]
10155 },
10156 {
@@ -10173,7 +10185,7 @@
10185 "zh-chs": "啟用電子郵件兩因素驗證。",
10186 "xloc": [
10187 "default-mobile.handlebars->9->70",
10176 - "default.handlebars->25->876"
10188 + "default.handlebars->25->878"
10189 ]
10190 },
10191 {
@@ -10197,7 +10209,7 @@
10209 "en": "Enabled",
10210 "nl": "Ingeschakeld",
10211 "xloc": [
10200 - "default.handlebars->25->1718"
10212 + "default.handlebars->25->1720"
10213 ]
10214 },
10215 {
@@ -10221,7 +10233,7 @@
10233 "en": "End Time",
10234 "nl": "Eindtijd",
10235 "xloc": [
10224 - "default.handlebars->25->1715"
10236 + "default.handlebars->25->1717"
10237 ]
10238 },
10239 {
@@ -10238,7 +10250,7 @@
10250 "ru": "Английский",
10251 "zh-chs": "英語",
10252 "xloc": [
10241 - "default.handlebars->25->938"
10253 + "default.handlebars->25->940"
10254 ]
10255 },
10256 {
@@ -10255,7 +10267,7 @@
10267 "ru": "Английский (Австралия)",
10268 "zh-chs": "英文(澳洲)",
10269 "xloc": [
10258 - "default.handlebars->25->939"
10270 + "default.handlebars->25->941"
10271 ]
10272 },
10273 {
@@ -10272,7 +10284,7 @@
10284 "ru": "Английский (Белиз)",
10285 "zh-chs": "英語(伯利茲)",
10286 "xloc": [
10275 - "default.handlebars->25->940"
10287 + "default.handlebars->25->942"
10288 ]
10289 },
10290 {
@@ -10289,7 +10301,7 @@
10301 "ru": "Английский (Канада)",
10302 "zh-chs": "英文(加拿大)",
10303 "xloc": [
10292 - "default.handlebars->25->941"
10304 + "default.handlebars->25->943"
10305 ]
10306 },
10307 {
@@ -10306,7 +10318,7 @@
10318 "ru": "Английский (Ирландия)",
10319 "zh-chs": "英文(愛爾蘭)",
10320 "xloc": [
10309 - "default.handlebars->25->942"
10321 + "default.handlebars->25->944"
10322 ]
10323 },
10324 {
@@ -10323,7 +10335,7 @@
10335 "ru": "Английский (Ямайка)",
10336 "zh-chs": "英文(牙買加)",
10337 "xloc": [
10326 - "default.handlebars->25->943"
10338 + "default.handlebars->25->945"
10339 ]
10340 },
10341 {
@@ -10340,7 +10352,7 @@
10352 "ru": "Английский (Новая Зеландия)",
10353 "zh-chs": "英文(紐西蘭)",
10354 "xloc": [
10343 - "default.handlebars->25->944"
10355 + "default.handlebars->25->946"
10356 ]
10357 },
10358 {
@@ -10357,7 +10369,7 @@
10369 "ru": "Английский (Филиппины)",
10370 "zh-chs": "英文(菲律賓)",
10371 "xloc": [
10360 - "default.handlebars->25->945"
10372 + "default.handlebars->25->947"
10373 ]
10374 },
10375 {
@@ -10374,7 +10386,7 @@
10386 "ru": "Английский (Южная Африка)",
10387 "zh-chs": "英語(南非)",
10388 "xloc": [
10377 - "default.handlebars->25->946"
10389 + "default.handlebars->25->948"
10390 ]
10391 },
10392 {
@@ -10391,7 +10403,7 @@
10403 "ru": "Английский (Тринидад и Тобаго)",
10404 "zh-chs": "英文(特立尼達和多巴哥)",
10405 "xloc": [
10394 - "default.handlebars->25->947"
10406 + "default.handlebars->25->949"
10407 ]
10408 },
10409 {
@@ -10408,7 +10420,7 @@
10420 "ru": "Английский (Великобритания)",
10421 "zh-chs": "英文(英國)",
10422 "xloc": [
10411 - "default.handlebars->25->948"
10423 + "default.handlebars->25->950"
10424 ]
10425 },
10426 {
@@ -10425,7 +10437,7 @@
10437 "ru": "Английский (Соединенные Штаты)",
10438 "zh-chs": "美國英語)",
10439 "xloc": [
10428 - "default.handlebars->25->949"
10440 + "default.handlebars->25->951"
10441 ]
10442 },
10443 {
@@ -10442,7 +10454,7 @@
10454 "ru": "Английский (Зимбабве)",
10455 "zh-chs": "英文(津巴布韋)",
10456 "xloc": [
10445 - "default.handlebars->25->950"
10457 + "default.handlebars->25->952"
10458 ]
10459 },
10460 {
@@ -10459,8 +10471,8 @@
10471 "ru": "Ввод",
10472 "zh-chs": "輸入",
10473 "xloc": [
10462 - "default.handlebars->25->1131",
10463 - "default.handlebars->25->1132"
10474 + "default.handlebars->25->1133",
10475 + "default.handlebars->25->1134"
10476 ]
10477 },
10478 {
@@ -10477,7 +10489,7 @@
10489 "ru": "Введите разделенный запятыми список имен административных областей.",
10490 "zh-chs": "輸入管理領域名稱的逗號分隔列表。",
10491 "xloc": [
10480 - "default.handlebars->25->1490"
10492 + "default.handlebars->25->1492"
10493 ]
10494 },
10495 {
@@ -10511,7 +10523,7 @@
10523 "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.",
10524 "zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
10525 "xloc": [
10514 - "default.handlebars->25->714"
10526 + "default.handlebars->25->716"
10527 ]
10528 },
10529 {
@@ -10559,7 +10571,7 @@
10571 "nl": "Voer uw telefoonnummer in dat geschikt is voor SMS. Na verificatie kan het nummer worden gebruikt voor inlogverificatie en andere meldingen.",
10572 "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
10573 "xloc": [
10562 - "default.handlebars->25->871"
10574 + "default.handlebars->25->873"
10575 ]
10576 },
10577 {
@@ -10610,7 +10622,7 @@
10622 "ru": "Эсперанто",
10623 "zh-chs": "世界語",
10624 "xloc": [
10613 - "default.handlebars->25->951"
10625 + "default.handlebars->25->953"
10626 ]
10627 },
10628 {
@@ -10627,7 +10639,7 @@
10639 "ru": "Эстонский",
10640 "zh-chs": "愛沙尼亞語",
10641 "xloc": [
10630 - "default.handlebars->25->952"
10642 + "default.handlebars->25->954"
10643 ]
10644 },
10645 {
@@ -10644,7 +10656,7 @@
10656 "ru": "Детали события",
10657 "zh-chs": "活動詳情",
10658 "xloc": [
10647 - "default.handlebars->25->791"
10659 + "default.handlebars->25->793"
10660 ]
10661 },
10662 {
@@ -10661,7 +10673,7 @@
10673 "ru": "Экспорт списка событий",
10674 "zh-chs": "活動列表導出",
10675 "xloc": [
10664 - "default.handlebars->25->1411"
10676 + "default.handlebars->25->1413"
10677 ]
10678 },
10679 {
@@ -10750,7 +10762,7 @@
10762 "ru": "Расширенный ASCII",
10763 "zh-chs": "擴展ASCII",
10764 "xloc": [
10753 - "default.handlebars->25->740"
10765 + "default.handlebars->25->742"
10766 ]
10767 },
10768 {
@@ -10784,7 +10796,7 @@
10796 "ru": "Внешний",
10797 "zh-chs": "外部",
10798 "xloc": [
10787 - "default.handlebars->25->1766"
10799 + "default.handlebars->25->1768"
10800 ]
10801 },
10802 {
@@ -10801,7 +10813,7 @@
10813 "ru": "Mакедонский (БЮР)",
10814 "zh-chs": "FYRO馬其頓語",
10815 "xloc": [
10804 - "default.handlebars->25->1002"
10816 + "default.handlebars->25->1004"
10817 ]
10818 },
10819 {
@@ -10818,7 +10830,7 @@
10830 "ru": "Фарерский",
10831 "zh-chs": "法羅語",
10832 "xloc": [
10821 - "default.handlebars->25->953"
10833 + "default.handlebars->25->955"
10834 ]
10835 },
10836 {
@@ -10848,7 +10860,7 @@
10860 "ko": "원격 터미널 세션을 시작하지 못했습니다 : {0} ({1})",
10861 "zh-chs": "无法启动远程终端会话{0}({1})",
10862 "xloc": [
10851 - "default.handlebars->25->696"
10863 + "default.handlebars->25->698"
10864 ]
10865 },
10866 {
@@ -10865,7 +10877,7 @@
10877 "ru": "Фарси (Персидский)",
10878 "zh-chs": "波斯語(波斯語)",
10879 "xloc": [
10868 - "default.handlebars->25->954"
10880 + "default.handlebars->25->956"
10881 ]
10882 },
10883 {
@@ -10900,7 +10912,7 @@
10912 "ru": "Функции",
10913 "zh-chs": "特徵",
10914 "xloc": [
10903 - "default.handlebars->25->1163"
10915 + "default.handlebars->25->1165"
10916 ]
10917 },
10918 {
@@ -10917,7 +10929,7 @@
10929 "ru": "Фиджи",
10930 "zh-chs": "斐濟",
10931 "xloc": [
10920 - "default.handlebars->25->955"
10932 + "default.handlebars->25->957"
10933 ]
10934 },
10935 {
@@ -10936,7 +10948,7 @@
10948 "xloc": [
10949 "default-mobile.handlebars->9->295",
10950 "default.handlebars->25->436",
10939 - "default.handlebars->25->763"
10951 + "default.handlebars->25->765"
10952 ]
10953 },
10954 {
@@ -10970,7 +10982,7 @@
10982 "ru": "Драйвер файловой системы",
10983 "zh-chs": "FileSystemDriver",
10984 "xloc": [
10973 - "default.handlebars->25->723"
10985 + "default.handlebars->25->725"
10986 ]
10987 },
10988 {
@@ -10989,8 +11001,8 @@
11001 "xloc": [
11002 "default-mobile.handlebars->9->165",
11003 "default-mobile.handlebars->9->246",
10992 - "default.handlebars->25->1252",
10993 - "default.handlebars->25->1703",
11004 + "default.handlebars->25->1254",
11005 + "default.handlebars->25->1705",
11006 "default.handlebars->25->218",
11007 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
11008 "default.handlebars->contextMenu->cxfiles"
@@ -11027,9 +11039,9 @@
11039 "ru": "Уведомление файлов",
11040 "zh-chs": "文件通知",
11041 "xloc": [
11030 - "default.handlebars->25->1171",
11031 - "default.handlebars->25->1616",
11032 - "default.handlebars->25->517"
11042 + "default.handlebars->25->1173",
11043 + "default.handlebars->25->1618",
11044 + "default.handlebars->25->519"
11045 ]
11046 },
11047 {
@@ -11046,9 +11058,9 @@
11058 "ru": "Запрос файлов",
11059 "zh-chs": "文件提示",
11060 "xloc": [
11049 - "default.handlebars->25->1170",
11050 - "default.handlebars->25->1615",
11051 - "default.handlebars->25->516"
11061 + "default.handlebars->25->1172",
11062 + "default.handlebars->25->1617",
11063 + "default.handlebars->25->518"
11064 ]
11065 },
11066 {
@@ -11085,7 +11097,7 @@
11097 "ru": "Финский",
11098 "zh-chs": "芬蘭",
11099 "xloc": [
11088 - "default.handlebars->25->956"
11100 + "default.handlebars->25->958"
11101 ]
11102 },
11103 {
@@ -11208,8 +11220,8 @@
11220 "ru": "Принудительно сбросить пароль при следующем входе в систему.",
11221 "zh-chs": "下次登錄時強制重置密碼。",
11222 "xloc": [
11211 - "default.handlebars->25->1484",
11212 - "default.handlebars->25->1654"
11223 + "default.handlebars->25->1486",
11224 + "default.handlebars->25->1656"
11225 ]
11226 },
11227 {
@@ -11295,8 +11307,8 @@
11307 "ru": "Свободно",
11308 "zh-chs": "自由",
11309 "xloc": [
11298 - "default.handlebars->25->1727",
11299 - "default.handlebars->25->1729"
11310 + "default.handlebars->25->1729",
11311 + "default.handlebars->25->1731"
11312 ]
11313 },
11314 {
@@ -11331,7 +11343,7 @@
11343 "ru": "Французский (Бельгия)",
11344 "zh-chs": "法語(比利時)",
11345 "xloc": [
11334 - "default.handlebars->25->958"
11346 + "default.handlebars->25->960"
11347 ]
11348 },
11349 {
@@ -11348,7 +11360,7 @@
11360 "ru": "Французский (Канада)",
11361 "zh-chs": "法語(加拿大)",
11362 "xloc": [
11351 - "default.handlebars->25->959"
11363 + "default.handlebars->25->961"
11364 ]
11365 },
11366 {
@@ -11365,7 +11377,7 @@
11377 "ru": "Французский (Франция)",
11378 "zh-chs": "法語(法國)",
11379 "xloc": [
11368 - "default.handlebars->25->960"
11380 + "default.handlebars->25->962"
11381 ]
11382 },
11383 {
@@ -11382,7 +11394,7 @@
11394 "ru": "Французский (Люксембург)",
11395 "zh-chs": "法語(盧森堡)",
11396 "xloc": [
11385 - "default.handlebars->25->961"
11397 + "default.handlebars->25->963"
11398 ]
11399 },
11400 {
@@ -11399,7 +11411,7 @@
11411 "ru": "Французский (Монако)",
11412 "zh-chs": "法語(摩納哥)",
11413 "xloc": [
11402 - "default.handlebars->25->962"
11414 + "default.handlebars->25->964"
11415 ]
11416 },
11417 {
@@ -11416,7 +11428,7 @@
11428 "ru": "Французский (Стандартный)",
11429 "zh-chs": "法語(標準)",
11430 "xloc": [
11419 - "default.handlebars->25->957"
11431 + "default.handlebars->25->959"
11432 ]
11433 },
11434 {
@@ -11433,7 +11445,7 @@
11445 "ru": "Французский (Швейцария)",
11446 "zh-chs": "法語(瑞士)",
11447 "xloc": [
11436 - "default.handlebars->25->963"
11448 + "default.handlebars->25->965"
11449 ]
11450 },
11451 {
@@ -11450,7 +11462,7 @@
11462 "ru": "Фризский",
11463 "zh-chs": "弗里斯蘭語",
11464 "xloc": [
11453 - "default.handlebars->25->964"
11465 + "default.handlebars->25->966"
11466 ]
11467 },
11468 {
@@ -11467,7 +11479,7 @@
11479 "ru": "Фриульский",
11480 "zh-chs": "弗留利",
11481 "xloc": [
11470 - "default.handlebars->25->965"
11482 + "default.handlebars->25->967"
11483 ]
11484 },
11485 {
@@ -11488,9 +11500,9 @@
11500 "default-mobile.handlebars->9->383",
11501 "default-mobile.handlebars->9->392",
11502 "default-mobile.handlebars->9->410",
11491 - "default.handlebars->25->1138",
11492 - "default.handlebars->25->1270",
11493 - "default.handlebars->25->1496"
11503 + "default.handlebars->25->1140",
11504 + "default.handlebars->25->1272",
11505 + "default.handlebars->25->1498"
11506 ]
11507 },
11508 {
@@ -11507,7 +11519,7 @@
11519 "ru": "Администратор с полным доступом (все права)",
11520 "zh-chs": "正式管理員(保留所有權利)",
11521 "xloc": [
11510 - "default.handlebars->25->1304"
11522 + "default.handlebars->25->1306"
11523 ]
11524 },
11525 {
@@ -11538,7 +11550,7 @@
11550 "ru": "Полные права на устройство",
11551 "zh-chs": "完整的設備權限",
11552 "xloc": [
11541 - "default.handlebars->25->579"
11553 + "default.handlebars->25->581"
11554 ]
11555 },
11556 {
@@ -11554,7 +11566,7 @@
11566 "ru": "Полные права",
11567 "zh-chs": "完全权利",
11568 "xloc": [
11557 - "default.handlebars->25->595"
11569 + "default.handlebars->25->597"
11570 ]
11571 },
11572 {
@@ -11590,7 +11602,7 @@
11602 "ru": "Администратор с полным доступом",
11603 "zh-chs": "正式管理員",
11604 "xloc": [
11593 - "default.handlebars->25->1580"
11605 + "default.handlebars->25->1582"
11606 ]
11607 },
11608 {
@@ -11604,7 +11616,7 @@
11616 "zh-chs": "显卡",
11617 "xloc": [
11618 "default-mobile.handlebars->9->361",
11607 - "default.handlebars->25->839"
11619 + "default.handlebars->25->841"
11620 ]
11621 },
11622 {
@@ -11621,7 +11633,7 @@
11633 "ru": "Гэльский (Ирландский)",
11634 "zh-chs": "蓋爾語(愛爾蘭)",
11635 "xloc": [
11624 - "default.handlebars->25->967"
11636 + "default.handlebars->25->969"
11637 ]
11638 },
11639 {
@@ -11638,7 +11650,7 @@
11650 "ru": "Гэльский (Шотландия)",
11651 "zh-chs": "蓋爾語(蘇格蘭語)",
11652 "xloc": [
11641 - "default.handlebars->25->966"
11653 + "default.handlebars->25->968"
11654 ]
11655 },
11656 {
@@ -11655,7 +11667,7 @@
11667 "ru": "Галицкий",
11668 "zh-chs": "加拉契人",
11669 "xloc": [
11658 - "default.handlebars->25->968"
11670 + "default.handlebars->25->970"
11671 ]
11672 },
11673 {
@@ -11763,7 +11775,7 @@
11775 "ru": "Грузинский",
11776 "zh-chs": "格魯吉亞人",
11777 "xloc": [
11766 - "default.handlebars->25->969"
11778 + "default.handlebars->25->971"
11779 ]
11780 },
11781 {
@@ -11780,7 +11792,7 @@
11792 "ru": "Немецкий (Австрия)",
11793 "zh-chs": "德語(奧地利)",
11794 "xloc": [
11783 - "default.handlebars->25->971"
11795 + "default.handlebars->25->973"
11796 ]
11797 },
11798 {
@@ -11797,7 +11809,7 @@
11809 "ru": "Немецкий (Германия)",
11810 "zh-chs": "德文(德國)",
11811 "xloc": [
11800 - "default.handlebars->25->972"
11812 + "default.handlebars->25->974"
11813 ]
11814 },
11815 {
@@ -11814,7 +11826,7 @@
11826 "ru": "Немецкий (Лихтенштейн)",
11827 "zh-chs": "德文(列支敦士登)",
11828 "xloc": [
11817 - "default.handlebars->25->973"
11829 + "default.handlebars->25->975"
11830 ]
11831 },
11832 {
@@ -11831,7 +11843,7 @@
11843 "ru": "Немецкий (Люксембург)",
11844 "zh-chs": "德語(盧森堡)",
11845 "xloc": [
11834 - "default.handlebars->25->974"
11846 + "default.handlebars->25->976"
11847 ]
11848 },
11849 {
@@ -11848,7 +11860,7 @@
11860 "ru": "Немецкий (Стандартный)",
11861 "zh-chs": "德語(標準)",
11862 "xloc": [
11851 - "default.handlebars->25->970"
11863 + "default.handlebars->25->972"
11864 ]
11865 },
11866 {
@@ -11865,7 +11877,7 @@
11877 "ru": "Немецкий (Швейцария)",
11878 "zh-chs": "德語(瑞士)",
11879 "xloc": [
11868 - "default.handlebars->25->975"
11880 + "default.handlebars->25->977"
11881 ]
11882 },
11883 {
@@ -11882,7 +11894,7 @@
11894 "ru": "Получить учетные данные MQTT для этого устройства.",
11895 "zh-chs": "獲取此設備的MQTT登錄憑據。",
11896 "xloc": [
11885 - "default.handlebars->25->560"
11897 + "default.handlebars->25->562"
11898 ]
11899 },
11900 {
@@ -11948,7 +11960,7 @@
11960 "ru": "Хорошо",
11961 "zh-chs": "好",
11962 "xloc": [
11951 - "default.handlebars->25->1134"
11963 + "default.handlebars->25->1136"
11964 ]
11965 },
11966 {
@@ -11985,7 +11997,7 @@
11997 "ru": "Греческий",
11998 "zh-chs": "希臘語",
11999 "xloc": [
11988 - "default.handlebars->25->976"
12000 + "default.handlebars->25->978"
12001 ]
12002 },
12003 {
@@ -12003,7 +12015,7 @@
12015 "zh-chs": "組",
12016 "xloc": [
12017 "default-mobile.handlebars->9->203",
12006 - "default.handlebars->25->469",
12018 + "default.handlebars->25->471",
12019 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
12020 ]
12021 },
@@ -12021,8 +12033,8 @@
12033 "ru": "Групповое действие",
12034 "zh-chs": "集體行動",
12035 "xloc": [
12024 - "default.handlebars->25->1448",
12025 - "default.handlebars->25->1517",
12036 + "default.handlebars->25->1450",
12037 + "default.handlebars->25->1519",
12038 "default.handlebars->25->406",
12039 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
12040 "default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -12033,7 +12045,7 @@
12045 "en": "Group Identifier",
12046 "nl": "Groepsidentificatie",
12047 "xloc": [
12036 - "default.handlebars->25->1534"
12048 + "default.handlebars->25->1536"
12049 ]
12050 },
12051 {
@@ -12050,7 +12062,7 @@
12062 "ru": "Члены группы",
12063 "zh-chs": "小組成員",
12064 "xloc": [
12053 - "default.handlebars->25->1543"
12065 + "default.handlebars->25->1545"
12066 ]
12067 },
12068 {
@@ -12067,7 +12079,7 @@
12079 "ru": "Права на группу для пользователя {0}.",
12080 "zh-chs": "用戶{0}的組權限。",
12081 "xloc": [
12070 - "default.handlebars->25->1269"
12082 + "default.handlebars->25->1271"
12083 ]
12084 },
12085 {
@@ -12084,7 +12096,7 @@
12096 "ru": "Права на группу для {0}.",
12097 "zh-chs": "{0}的組權限。",
12098 "xloc": [
12087 - "default.handlebars->25->1268"
12099 + "default.handlebars->25->1270"
12100 ]
12101 },
12102 {
@@ -12135,7 +12147,7 @@
12147 "ru": "Гуджарати",
12148 "zh-chs": "古久拉提",
12149 "xloc": [
12138 - "default.handlebars->25->977"
12150 + "default.handlebars->25->979"
12151 ]
12152 },
12153 {
@@ -12171,7 +12183,7 @@
12183 "ru": "Гаитянский",
12184 "zh-chs": "海地",
12185 "xloc": [
12174 - "default.handlebars->25->978"
12186 + "default.handlebars->25->980"
12187 ]
12188 },
12189 {
@@ -12205,7 +12217,7 @@
12217 "ru": "Жесткое отключение агента",
12218 "zh-chs": "硬斷開劑",
12219 "xloc": [
12208 - "default.handlebars->25->866"
12220 + "default.handlebars->25->868"
12221 ]
12222 },
12223 {
@@ -12222,7 +12234,7 @@
12234 "ru": "Всего кучи",
12235 "zh-chs": "堆總數",
12236 "xloc": [
12225 - "default.handlebars->25->1768"
12237 + "default.handlebars->25->1770"
12238 ]
12239 },
12240 {
@@ -12239,7 +12251,7 @@
12251 "ru": "Куча используется",
12252 "zh-chs": "堆使用",
12253 "xloc": [
12242 - "default.handlebars->25->1767"
12254 + "default.handlebars->25->1769"
12255 ]
12256 },
12257 {
@@ -12256,7 +12268,7 @@
12268 "ru": "Иврит",
12269 "zh-chs": "希伯來語",
12270 "xloc": [
12259 - "default.handlebars->25->979"
12271 + "default.handlebars->25->981"
12272 ]
12273 },
12274 {
@@ -12290,7 +12302,7 @@
12302 "ru": "Помочь перевести MeshCentral",
12303 "zh-chs": "幫助翻譯MeshCentral",
12304 "xloc": [
12293 - "default.handlebars->25->1093"
12305 + "default.handlebars->25->1095"
12306 ]
12307 },
12308 {
@@ -12376,7 +12388,7 @@
12388 "ru": "Хинди",
12389 "zh-chs": "印地語",
12390 "xloc": [
12379 - "default.handlebars->25->980"
12391 + "default.handlebars->25->982"
12392 ]
12393 },
12394 {
@@ -12412,7 +12424,7 @@
12424 "zh-chs": "持有1份副本",
12425 "xloc": [
12426 "default-mobile.handlebars->9->304",
12415 - "default.handlebars->25->772"
12427 + "default.handlebars->25->774"
12428 ]
12429 },
12430 {
@@ -12430,7 +12442,7 @@
12442 "zh-chs": "持有1個搬家公司",
12443 "xloc": [
12444 "default-mobile.handlebars->9->308",
12433 - "default.handlebars->25->776"
12445 + "default.handlebars->25->778"
12446 ]
12447 },
12448 {
@@ -12448,7 +12460,7 @@
12460 "zh-chs": "保留{0}個條目進行複制",
12461 "xloc": [
12462 "default-mobile.handlebars->9->302",
12451 - "default.handlebars->25->770"
12463 + "default.handlebars->25->772"
12464 ]
12465 },
12466 {
@@ -12466,7 +12478,7 @@
12478 "zh-chs": "保留{0}個條目以進行移動",
12479 "xloc": [
12480 "default-mobile.handlebars->9->306",
12469 - "default.handlebars->25->774"
12481 + "default.handlebars->25->776"
12482 ]
12483 },
12484 {
@@ -12484,7 +12496,7 @@
12496 "zh-chs": "保持{2}的{0}入口{1}",
12497 "xloc": [
12498 "default-mobile.handlebars->9->129",
12487 - "default.handlebars->25->1398"
12499 + "default.handlebars->25->1400"
12500 ]
12501 },
12502 {
@@ -12506,8 +12518,8 @@
12518 "default-mobile.handlebars->9->208",
12519 "default-mobile.handlebars->9->268",
12520 "default.handlebars->25->245",
12509 - "default.handlebars->25->474",
12510 - "default.handlebars->25->689"
12521 + "default.handlebars->25->476",
12522 + "default.handlebars->25->691"
12523 ]
12524 },
12525 {
@@ -12524,7 +12536,7 @@
12536 "ru": "Синхронизация имени хоста",
12537 "zh-chs": "主機名同步",
12538 "xloc": [
12527 - "default.handlebars->25->1161"
12539 + "default.handlebars->25->1163"
12540 ]
12541 },
12542 {
@@ -12541,7 +12553,7 @@
12553 "ru": "Венгерский",
12554 "zh-chs": "匈牙利",
12555 "xloc": [
12544 - "default.handlebars->25->981"
12556 + "default.handlebars->25->983"
12557 ]
12558 },
12559 {
@@ -12594,7 +12606,7 @@
12606 "zh-chs": "IP:{0}",
12607 "xloc": [
12608 "default-mobile.handlebars->9->334",
12597 - "default.handlebars->25->812"
12609 + "default.handlebars->25->814"
12610 ]
12611 },
12612 {
@@ -12612,7 +12624,7 @@
12624 "zh-chs": "IP:{0},掩碼:{1},網關:{2}",
12625 "xloc": [
12626 "default-mobile.handlebars->9->332",
12615 - "default.handlebars->25->810"
12627 + "default.handlebars->25->812"
12628 ]
12629 },
12630 {
@@ -12631,8 +12643,8 @@
12643 "xloc": [
12644 "default-mobile.handlebars->9->331",
12645 "default-mobile.handlebars->9->333",
12634 - "default.handlebars->25->809",
12635 - "default.handlebars->25->811"
12646 + "default.handlebars->25->811",
12647 + "default.handlebars->25->813"
12648 ]
12649 },
12650 {
@@ -12700,7 +12712,7 @@
12712 "ru": "Исландский",
12713 "zh-chs": "冰島的",
12714 "xloc": [
12703 - "default.handlebars->25->982"
12715 + "default.handlebars->25->984"
12716 ]
12717 },
12718 {
@@ -12718,7 +12730,7 @@
12730 "zh-chs": "圖標選擇",
12731 "xloc": [
12732 "default-mobile.handlebars->9->266",
12721 - "default.handlebars->25->687"
12733 + "default.handlebars->25->689"
12734 ]
12735 },
12736 {
@@ -12736,7 +12748,7 @@
12748 "zh-chs": "識別碼",
12749 "xloc": [
12750 "default-mobile.handlebars->9->359",
12739 - "default.handlebars->25->837"
12751 + "default.handlebars->25->839"
12752 ]
12753 },
12754 {
@@ -12839,7 +12851,7 @@
12851 "ru": "Индонезийский",
12852 "zh-chs": "印度尼西亞",
12853 "xloc": [
12842 - "default.handlebars->25->983"
12854 + "default.handlebars->25->985"
12855 ]
12856 },
12857 {
@@ -12956,7 +12968,7 @@
12968 "ru": "Установка CIRA",
12969 "zh-chs": "安裝CIRA",
12970 "xloc": [
12959 - "default.handlebars->25->1194"
12971 + "default.handlebars->25->1196"
12972 ]
12973 },
12974 {
@@ -12973,7 +12985,7 @@
12985 "ru": "Локальная установка",
12986 "zh-chs": "安裝本地",
12987 "xloc": [
12976 - "default.handlebars->25->1196"
12988 + "default.handlebars->25->1198"
12989 ]
12990 },
12991 {
@@ -12990,8 +13002,8 @@
13002 "ru": "Тип установки",
13003 "zh-chs": "安裝類型",
13004 "xloc": [
12993 - "default.handlebars->25->1335",
12994 - "default.handlebars->25->1342",
13005 + "default.handlebars->25->1337",
13006 + "default.handlebars->25->1344",
13007 "default.handlebars->25->307",
13008 "default.handlebars->25->329"
13009 ]
@@ -13010,7 +13022,7 @@
13022 "ru": "Intel (F10 = ESC+[OM)",
13023 "zh-chs": "英特爾(F10 = ESC + [OM)",
13024 "xloc": [
13013 - "default.handlebars->25->742",
13025 + "default.handlebars->25->744",
13026 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
13027 ]
13028 },
@@ -13027,11 +13039,11 @@
13039 "pt": "Intel AMT",
13040 "ru": "Intel AMT",
13041 "zh-chs": "英特爾AMT",
13030 - "xloc": [
13031 - "default.handlebars->25->1354",
13032 - "default.handlebars->25->1362",
13033 - "default.handlebars->25->1764",
13034 - "default.handlebars->25->1786"
13042 + "xloc": [
13043 + "default.handlebars->25->1356",
13044 + "default.handlebars->25->1364",
13045 + "default.handlebars->25->1766",
13046 + "default.handlebars->25->1788"
13047 ]
13048 },
13049 {
@@ -13072,14 +13084,14 @@
13084 "en": "Intel AMT Redirection",
13085 "nl": "Intel AMT omleiding",
13086 "xloc": [
13075 - "default.handlebars->25->1705"
13087 + "default.handlebars->25->1707"
13088 ]
13089 },
13090 {
13091 "en": "Intel AMT WSMAN",
13092 "nl": "Intel AMT WSMAN",
13093 "xloc": [
13082 - "default.handlebars->25->1704"
13094 + "default.handlebars->25->1706"
13095 ]
13096 },
13097 {
@@ -13113,7 +13125,7 @@
13125 "ru": "Intel AMT активирован в режиме администратора",
13126 "zh-chs": "在管理控制模式下激活了Intel AMT",
13127 "xloc": [
13116 - "default.handlebars->25->488"
13128 + "default.handlebars->25->490"
13129 ]
13130 },
13131 {
@@ -13130,7 +13142,7 @@
13142 "ru": "Intel AMT активирован в режиме клиента",
13143 "zh-chs": "英特爾AMT在客戶端控制模式下被激活",
13144 "xloc": [
13133 - "default.handlebars->25->486"
13145 + "default.handlebars->25->488"
13146 ]
13147 },
13148 {
@@ -13147,7 +13159,7 @@
13159 "ru": "Intel AMT настроен с TLS безопасностью сети",
13160 "zh-chs": "英特爾AMT已設置TLS網絡安全性",
13161 "xloc": [
13150 - "default.handlebars->25->490"
13162 + "default.handlebars->25->492"
13163 ]
13164 },
13165 {
@@ -13198,7 +13210,7 @@
13210 "ru": "Intel ASCII",
13211 "zh-chs": "英特爾ASCII",
13212 "xloc": [
13201 - "default.handlebars->25->741"
13213 + "default.handlebars->25->743"
13214 ]
13215 },
13216 {
@@ -13218,11 +13230,11 @@
13230 "default-mobile.handlebars->9->192",
13231 "default-mobile.handlebars->9->225",
13232 "default-mobile.handlebars->9->230",
13221 - "default.handlebars->25->1178",
13222 - "default.handlebars->25->1188",
13233 + "default.handlebars->25->1180",
13234 + "default.handlebars->25->1190",
13235 "default.handlebars->25->446",
13224 - "default.handlebars->25->499",
13225 - "default.handlebars->25->527"
13236 + "default.handlebars->25->501",
13237 + "default.handlebars->25->529"
13238 ]
13239 },
13240 {
@@ -13240,7 +13252,7 @@
13252 "zh-chs": "英特爾&reg;AMT CIRA",
13253 "xloc": [
13254 "default-mobile.handlebars->9->229",
13243 - "default.handlebars->25->525"
13255 + "default.handlebars->25->527"
13256 ]
13257 },
13258 {
@@ -13259,7 +13271,7 @@
13271 "xloc": [
13272 "default.handlebars->25->178",
13273 "default.handlebars->25->384",
13262 - "default.handlebars->25->524"
13274 + "default.handlebars->25->526"
13275 ]
13276 },
13277 {
@@ -13295,7 +13307,7 @@
13307 "ru": "Политика Intel&reg; AMT",
13308 "zh-chs": "英特爾&reg;AMT政策",
13309 "xloc": [
13298 - "default.handlebars->25->1217"
13310 + "default.handlebars->25->1219"
13311 ]
13312 },
13313 {
@@ -13329,7 +13341,7 @@
13341 "ru": "Intel&reg; AMT Тег",
13342 "zh-chs": "英特爾&reg;AMT標籤",
13343 "xloc": [
13332 - "default.handlebars->25->503"
13344 + "default.handlebars->25->505"
13345 ]
13346 },
13347 {
@@ -13382,8 +13394,8 @@
13394 "zh-chs": "英特爾&reg;AMT已連接",
13395 "xloc": [
13396 "default-mobile.handlebars->9->240",
13385 - "default.handlebars->25->564",
13386 - "default.handlebars->25->565"
13397 + "default.handlebars->25->566",
13398 + "default.handlebars->25->567"
13399 ]
13400 },
13401 {
@@ -13400,8 +13412,8 @@
13412 "ru": "События Intel&reg; AMT desktop или serial.",
13413 "zh-chs": "英特爾&reg;AMT桌面和串行事件。",
13414 "xloc": [
13403 - "default.handlebars->25->1099",
13404 - "default.handlebars->25->1350"
13415 + "default.handlebars->25->1101",
13416 + "default.handlebars->25->1352"
13417 ]
13418 },
13419 {
@@ -13419,8 +13431,8 @@
13431 "zh-chs": "檢測到英特爾&reg;AMT",
13432 "xloc": [
13433 "default-mobile.handlebars->9->241",
13422 - "default.handlebars->25->566",
13423 - "default.handlebars->25->567"
13434 + "default.handlebars->25->568",
13435 + "default.handlebars->25->569"
13436 ]
13437 },
13438 {
@@ -13437,7 +13449,7 @@
13449 "ru": "Intel&reg; AMT маршрутизируется и готов к использованию.",
13450 "zh-chs": "英特爾&reg;AMT可路由並可以使用。",
13451 "xloc": [
13440 - "default.handlebars->25->526"
13452 + "default.handlebars->25->528"
13453 ]
13454 },
13455 {
@@ -13490,8 +13502,8 @@
13502 "zh-chs": "僅限英特爾&reg;AMT,無代理",
13503 "xloc": [
13504 "default-mobile.handlebars->9->374",
13493 - "default.handlebars->25->1128",
13494 - "default.handlebars->25->1154"
13505 + "default.handlebars->25->1130",
13506 + "default.handlebars->25->1156"
13507 ]
13508 },
13509 {
@@ -13508,7 +13520,7 @@
13520 "ru": "Технология Intel&reg; Active Management",
13521 "zh-chs": "英特爾&reg;主動管理技術",
13522 "xloc": [
13511 - "default.handlebars->25->498"
13523 + "default.handlebars->25->500"
13524 ]
13525 },
13526 {
@@ -13526,7 +13538,7 @@
13538 "zh-chs": "英特爾&reg;主動管理技術(英特爾&reg;AMT)",
13539 "xloc": [
13540 "default-mobile.handlebars->9->351",
13529 - "default.handlebars->25->829"
13541 + "default.handlebars->25->831"
13542 ]
13543 },
13544 {
@@ -13544,7 +13556,7 @@
13556 "zh-chs": "英特爾&reg;ME",
13557 "xloc": [
13558 "default-mobile.handlebars->9->224",
13547 - "default.handlebars->25->497"
13559 + "default.handlebars->25->499"
13560 ]
13561 },
13562 {
@@ -13557,7 +13569,7 @@
13569 "nl": "Intel&reg; Manageability Engine",
13570 "zh-chs": "英特尔&reg;可管理性引擎",
13571 "xloc": [
13560 - "default.handlebars->25->496"
13572 + "default.handlebars->25->498"
13573 ]
13574 },
13575 {
@@ -13575,7 +13587,7 @@
13587 "zh-chs": "英特爾&reg;SM",
13588 "xloc": [
13589 "default-mobile.handlebars->9->226",
13578 - "default.handlebars->25->501"
13590 + "default.handlebars->25->503"
13591 ]
13592 },
13593 {
@@ -13592,7 +13604,7 @@
13604 "ru": "Intel&reg; Standard Manageability",
13605 "zh-chs": "英特爾&reg;標準可管理性",
13606 "xloc": [
13595 - "default.handlebars->25->500"
13607 + "default.handlebars->25->502"
13608 ]
13609 },
13610 {
@@ -13693,7 +13705,7 @@
13705 "ru": "Интерактивный",
13706 "zh-chs": "互動",
13707 "xloc": [
13696 - "default.handlebars->25->724"
13708 + "default.handlebars->25->726"
13709 ]
13710 },
13711 {
@@ -13710,8 +13722,8 @@
13722 "ru": "Только интерактивный режим",
13723 "zh-chs": "僅限互動",
13724 "xloc": [
13713 - "default.handlebars->25->1338",
13714 - "default.handlebars->25->1345",
13725 + "default.handlebars->25->1340",
13726 + "default.handlebars->25->1347",
13727 "default.handlebars->25->310",
13728 "default.handlebars->25->332"
13729 ]
@@ -13730,7 +13742,7 @@
13742 "ru": "Интерфейсы",
13743 "zh-chs": "介面",
13744 "xloc": [
13733 - "default.handlebars->25->547"
13745 + "default.handlebars->25->549"
13746 ]
13747 },
13748 {
@@ -13747,7 +13759,7 @@
13759 "ru": "Инуктитут",
13760 "zh-chs": "因紐特人",
13761 "xloc": [
13750 - "default.handlebars->25->984"
13762 + "default.handlebars->25->986"
13763 ]
13764 },
13765 {
@@ -13764,7 +13776,7 @@
13776 "ru": "Некорректный тип группы устройств",
13777 "zh-chs": "無效的設備組類型",
13778 "xloc": [
13767 - "default.handlebars->25->1741"
13779 + "default.handlebars->25->1743"
13780 ]
13781 },
13782 {
@@ -13781,7 +13793,7 @@
13793 "ru": "Некорректный JSON",
13794 "zh-chs": "無效的JSON",
13795 "xloc": [
13784 - "default.handlebars->25->1735"
13796 + "default.handlebars->25->1737"
13797 ]
13798 },
13799 {
@@ -13798,8 +13810,8 @@
13810 "ru": "Некорректный формат файла JSON.",
13811 "zh-chs": "無效的JSON文件格式。",
13812 "xloc": [
13801 - "default.handlebars->25->1462",
13802 - "default.handlebars->25->1464"
13813 + "default.handlebars->25->1464",
13814 + "default.handlebars->25->1466"
13815 ]
13816 },
13817 {
@@ -13816,7 +13828,7 @@
13828 "ru": "Некорректный файл JSON: {0}.",
13829 "zh-chs": "無效的JSON文件:{0}。",
13830 "xloc": [
13819 - "default.handlebars->25->1460"
13831 + "default.handlebars->25->1462"
13832 ]
13833 },
13834 {
@@ -13833,7 +13845,7 @@
13845 "ru": "Некорректная сигнатура PKCS",
13846 "zh-chs": "無效的PKCS簽名",
13847 "xloc": [
13836 - "default.handlebars->25->1733"
13848 + "default.handlebars->25->1735"
13849 ]
13850 },
13851 {
@@ -13850,7 +13862,7 @@
13862 "ru": "Некорректная сигнатура RSA",
13863 "zh-chs": "無效的RSA密碼",
13864 "xloc": [
13853 - "default.handlebars->25->1734"
13865 + "default.handlebars->25->1736"
13866 ]
13867 },
13868 {
@@ -13986,7 +13998,7 @@
13998 "ru": "Коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:",
13999 "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:",
14000 "xloc": [
13989 - "default.handlebars->25->1340"
14001 + "default.handlebars->25->1342"
14002 ]
14003 },
14004 {
@@ -14019,7 +14031,7 @@
14031 "ru": "Пригласить",
14032 "zh-chs": "邀請",
14033 "xloc": [
14022 - "default.handlebars->25->1204",
14034 + "default.handlebars->25->1206",
14035 "default.handlebars->25->242",
14036 "default.handlebars->25->322"
14037 ]
@@ -14038,11 +14050,11 @@
14050 "ru": "Пригласительные коды",
14051 "zh-chs": "邀請碼",
14052 "xloc": [
14041 - "default.handlebars->25->1182",
14042 - "default.handlebars->25->1334",
14043 - "default.handlebars->25->1339",
14053 + "default.handlebars->25->1184",
14054 + "default.handlebars->25->1336",
14055 "default.handlebars->25->1341",
14045 - "default.handlebars->25->1346"
14056 + "default.handlebars->25->1343",
14057 + "default.handlebars->25->1348"
14058 ]
14059 },
14060 {
@@ -14073,7 +14085,7 @@
14085 "nl": "Nodig iemand uit om de mesh-agent in deze apparaatgroep te installeren.",
14086 "zh-chs": "邀请某人在该设备组上安装网状代理。",
14087 "xloc": [
14076 - "default.handlebars->25->1203",
14088 + "default.handlebars->25->1205",
14089 "default.handlebars->25->241"
14090 ]
14091 },
@@ -14108,7 +14120,7 @@
14120 "ru": "Ирландский",
14121 "zh-chs": "愛爾蘭人",
14122 "xloc": [
14111 - "default.handlebars->25->985"
14123 + "default.handlebars->25->987"
14124 ]
14125 },
14126 {
@@ -14125,7 +14137,7 @@
14137 "ru": "Итальянский (Стандартный)",
14138 "zh-chs": "意大利語(標準)",
14139 "xloc": [
14128 - "default.handlebars->25->986"
14140 + "default.handlebars->25->988"
14141 ]
14142 },
14143 {
@@ -14142,7 +14154,7 @@
14154 "ru": "Итальянский (Швейцария)",
14155 "zh-chs": "義大利文(瑞士)",
14156 "xloc": [
14145 - "default.handlebars->25->987"
14157 + "default.handlebars->25->989"
14158 ]
14159 },
14160 {
@@ -14159,8 +14171,8 @@
14171 "ru": "Формат JSON",
14172 "zh-chs": "JSON格式",
14173 "xloc": [
14162 - "default.handlebars->25->1409",
14163 - "default.handlebars->25->1468",
14174 + "default.handlebars->25->1411",
14175 + "default.handlebars->25->1470",
14176 "default.handlebars->25->413"
14177 ]
14178 },
@@ -14178,7 +14190,7 @@
14190 "ru": "Японский",
14191 "zh-chs": "日本",
14192 "xloc": [
14181 - "default.handlebars->25->988"
14193 + "default.handlebars->25->990"
14194 ]
14195 },
14196 {
@@ -14195,7 +14207,7 @@
14207 "ru": "Каннада",
14208 "zh-chs": "卡納達語",
14209 "xloc": [
14198 - "default.handlebars->25->989"
14210 + "default.handlebars->25->991"
14211 ]
14212 },
14213 {
@@ -14212,7 +14224,7 @@
14224 "ru": "Кашмирский",
14225 "zh-chs": "克什米爾語",
14226 "xloc": [
14215 - "default.handlebars->25->990"
14227 + "default.handlebars->25->992"
14228 ]
14229 },
14230 {
@@ -14229,7 +14241,7 @@
14241 "ru": "Казахский",
14242 "zh-chs": "哈薩克語",
14243 "xloc": [
14232 - "default.handlebars->25->991"
14244 + "default.handlebars->25->993"
14245 ]
14246 },
14247 {
@@ -14246,7 +14258,7 @@
14258 "ru": "Драйвер ядра",
14259 "zh-chs": "內核驅動程序",
14260 "xloc": [
14249 - "default.handlebars->25->725"
14261 + "default.handlebars->25->727"
14262 ]
14263 },
14264 {
@@ -14263,8 +14275,8 @@
14275 "ru": "Имя ключа",
14276 "zh-chs": "鍵名",
14277 "xloc": [
14266 - "default.handlebars->25->882",
14267 - "default.handlebars->25->885"
14278 + "default.handlebars->25->884",
14279 + "default.handlebars->25->887"
14280 ]
14281 },
14282 {
@@ -14305,7 +14317,7 @@
14317 "ru": "Кхмерский",
14318 "zh-chs": "高棉語",
14319 "xloc": [
14308 - "default.handlebars->25->992"
14320 + "default.handlebars->25->994"
14321 ]
14322 },
14323 {
@@ -14322,7 +14334,7 @@
14334 "ru": "Киргизский",
14335 "zh-chs": "吉爾吉斯",
14336 "xloc": [
14325 - "default.handlebars->25->993"
14337 + "default.handlebars->25->995"
14338 ]
14339 },
14340 {
@@ -14339,7 +14351,7 @@
14351 "ru": "Клингонский",
14352 "zh-chs": "克林貢",
14353 "xloc": [
14342 - "default.handlebars->25->994"
14354 + "default.handlebars->25->996"
14355 ]
14356 },
14357 {
@@ -14357,7 +14369,7 @@
14369 "zh-chs": "已知的",
14370 "xloc": [
14371 "default-mobile.handlebars->9->350",
14360 - "default.handlebars->25->828"
14372 + "default.handlebars->25->830"
14373 ]
14374 },
14375 {
@@ -14374,7 +14386,7 @@
14386 "ru": "Korean",
14387 "zh-chs": "韓語",
14388 "xloc": [
14377 - "default.handlebars->25->995"
14389 + "default.handlebars->25->997"
14390 ]
14391 },
14392 {
@@ -14391,7 +14403,7 @@
14403 "ru": "Корейский (Северная Корея)",
14404 "zh-chs": "韓語(朝鮮)",
14405 "xloc": [
14394 - "default.handlebars->25->996"
14406 + "default.handlebars->25->998"
14407 ]
14408 },
14409 {
@@ -14408,7 +14420,7 @@
14420 "ru": "Корейский (Южная Корея)",
14421 "zh-chs": "韓語(韓國)",
14422 "xloc": [
14411 - "default.handlebars->25->997"
14423 + "default.handlebars->25->999"
14424 ]
14425 },
14426 {
@@ -14425,8 +14437,8 @@
14437 "ru": "LF",
14438 "zh-chs": "如果",
14439 "xloc": [
14428 - "default.handlebars->25->737",
14429 - "default.handlebars->25->746"
14440 + "default.handlebars->25->739",
14441 + "default.handlebars->25->748"
14442 ]
14443 },
14444 {
@@ -14443,7 +14455,7 @@
14455 "ru": "Язык",
14456 "zh-chs": "語言",
14457 "xloc": [
14446 - "default.handlebars->25->1091"
14458 + "default.handlebars->25->1093"
14459 ]
14460 },
14461 {
@@ -14477,7 +14489,7 @@
14489 "ru": "Большой Фокус",
14490 "zh-chs": "大焦點",
14491 "xloc": [
14480 - "default.handlebars->25->713"
14492 + "default.handlebars->25->715"
14493 ]
14494 },
14495 {
@@ -14660,7 +14672,7 @@
14672 "ru": "Последний доступ",
14673 "zh-chs": "最後訪問",
14674 "xloc": [
14663 - "default.handlebars->25->1417"
14675 + "default.handlebars->25->1419"
14676 ]
14677 },
14678 {
@@ -14677,7 +14689,7 @@
14689 "ru": "Последний вход в систему",
14690 "zh-chs": "上次登錄",
14691 "xloc": [
14680 - "default.handlebars->25->1598"
14692 + "default.handlebars->25->1600"
14693 ]
14694 },
14695 {
@@ -14700,9 +14712,9 @@
14712 "default.handlebars->25->70",
14713 "default.handlebars->25->72",
14714 "default.handlebars->25->74",
14703 - "default.handlebars->25->800",
14704 - "default.handlebars->25->801",
14705 - "default.handlebars->25->802"
14715 + "default.handlebars->25->802",
14716 + "default.handlebars->25->803",
14717 + "default.handlebars->25->804"
14718 ]
14719 },
14720 {
@@ -14722,8 +14734,8 @@
14734 "default-mobile.handlebars->9->319",
14735 "default-mobile.handlebars->9->321",
14736 "default.handlebars->25->69",
14725 - "default.handlebars->25->797",
14726 - "default.handlebars->25->799"
14737 + "default.handlebars->25->799",
14738 + "default.handlebars->25->801"
14739 ]
14740 },
14741 {
@@ -14740,7 +14752,7 @@
14752 "ru": "Последнее изменение: {0}",
14753 "zh-chs": "上次更改:{0}",
14754 "xloc": [
14743 - "default.handlebars->25->1602"
14755 + "default.handlebars->25->1604"
14756 ]
14757 },
14758 {
@@ -14791,7 +14803,7 @@
14803 "ru": "Последний вход в систему: {0}",
14804 "zh-chs": "上次登錄:{0}",
14805 "xloc": [
14794 - "default.handlebars->25->1427"
14806 + "default.handlebars->25->1429"
14807 ]
14808 },
14809 {
@@ -14808,7 +14820,7 @@
14820 "ru": "Последнее посещение:",
14821 "zh-chs": "最後一次露面:",
14822 "xloc": [
14811 - "default.handlebars->25->570",
14823 + "default.handlebars->25->572",
14824 "default.handlebars->25->65"
14825 ]
14826 },
@@ -14877,7 +14889,7 @@
14889 "ru": "Латинский",
14890 "zh-chs": "拉丁",
14891 "xloc": [
14880 - "default.handlebars->25->998"
14892 + "default.handlebars->25->1000"
14893 ]
14894 },
14895 {
@@ -14894,7 +14906,7 @@
14906 "ru": "Латышский",
14907 "zh-chs": "拉脫維亞語",
14908 "xloc": [
14897 - "default.handlebars->25->999"
14909 + "default.handlebars->25->1001"
14910 ]
14911 },
14912 {
@@ -14907,7 +14919,7 @@
14919 "nl": "Leeg laten voor geen.",
14920 "zh-chs": "一无所有。",
14921 "xloc": [
14910 - "default.handlebars->25->1642"
14922 + "default.handlebars->25->1644"
14923 ]
14924 },
14925 {
@@ -14946,7 +14958,7 @@
14958 "ru": "Меньше",
14959 "zh-chs": "減",
14960 "xloc": [
14949 - "default.handlebars->25->1803"
14961 + "default.handlebars->25->1805"
14962 ]
14963 },
14964 {
@@ -14962,8 +14974,8 @@
14974 "ru": "Предельные события",
14975 "zh-chs": "极限赛事",
14976 "xloc": [
14965 - "default.handlebars->25->591",
14966 - "default.handlebars->25->610"
14977 + "default.handlebars->25->593",
14978 + "default.handlebars->25->612"
14979 ]
14980 },
14981 {
@@ -14999,9 +15011,9 @@
15011 "zh-chs": "有限輸入",
15012 "xloc": [
15013 "default-mobile.handlebars->9->423",
15002 - "default.handlebars->25->1318",
15003 - "default.handlebars->25->584",
15004 - "default.handlebars->25->603"
15014 + "default.handlebars->25->1320",
15015 + "default.handlebars->25->586",
15016 + "default.handlebars->25->605"
15017 ]
15018 },
15019 {
@@ -15019,7 +15031,7 @@
15031 "zh-chs": "僅限於輸入",
15032 "xloc": [
15033 "default-mobile.handlebars->9->398",
15022 - "default.handlebars->25->1276"
15034 + "default.handlebars->25->1278"
15035 ]
15036 },
15037 {
@@ -15192,7 +15204,7 @@
15204 "ru": "Linux ARM, Raspberry Pi (32bit)",
15205 "zh-chs": "Linux ARM,Raspberry Pi(32位)",
15206 "xloc": [
15195 - "default.handlebars->25->671"
15207 + "default.handlebars->25->673"
15208 ]
15209 },
15210 {
@@ -15298,7 +15310,7 @@
15310 "ru": "Linux x86 (32bit)",
15311 "zh-chs": "Linux x86(32位)",
15312 "xloc": [
15301 - "default.handlebars->25->668"
15313 + "default.handlebars->25->670"
15314 ]
15315 },
15316 {
@@ -15315,7 +15327,7 @@
15327 "ru": "Linux x86 (64bit)",
15328 "zh-chs": "Linux x86(64位)",
15329 "xloc": [
15318 - "default.handlebars->25->669"
15330 + "default.handlebars->25->671"
15331 ]
15332 },
15333 {
@@ -15350,7 +15362,7 @@
15362 "ru": "Литовский",
15363 "zh-chs": "立陶宛語",
15364 "xloc": [
15353 - "default.handlebars->25->1000"
15365 + "default.handlebars->25->1002"
15366 ]
15367 },
15368 {
@@ -15368,10 +15380,10 @@
15380 "zh-chs": "載入中...",
15381 "xloc": [
15382 "default-mobile.handlebars->9->72",
15371 - "default.handlebars->25->1145",
15372 - "default.handlebars->25->1149",
15373 - "default.handlebars->25->660",
15374 - "default.handlebars->25->878"
15383 + "default.handlebars->25->1147",
15384 + "default.handlebars->25->1151",
15385 + "default.handlebars->25->662",
15386 + "default.handlebars->25->880"
15387 ]
15388 },
15389 {
@@ -15439,7 +15451,7 @@
15451 "ru": "Настройки локализации",
15452 "zh-chs": "本地化設置",
15453 "xloc": [
15442 - "default.handlebars->25->1094",
15454 + "default.handlebars->25->1096",
15455 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7"
15456 ]
15457 },
@@ -15457,7 +15469,7 @@
15469 "ru": "Местонахождение",
15470 "zh-chs": "位置",
15471 "xloc": [
15460 - "default.handlebars->25->549"
15472 + "default.handlebars->25->551"
15473 ]
15474 },
15475 {
@@ -15491,7 +15503,7 @@
15503 "ru": "Заблокировать учетную запись",
15504 "zh-chs": "鎖定賬戶",
15505 "xloc": [
15494 - "default.handlebars->25->1503"
15506 + "default.handlebars->25->1505"
15507 ]
15508 },
15509 {
@@ -15508,7 +15520,7 @@
15520 "ru": "Заблокировать учетную запись",
15521 "zh-chs": "鎖定賬戶",
15522 "xloc": [
15511 - "default.handlebars->25->1445"
15523 + "default.handlebars->25->1447"
15524 ]
15525 },
15526 {
@@ -15525,7 +15537,7 @@
15537 "ru": "Заблокирован",
15538 "zh-chs": "已鎖定",
15539 "xloc": [
15528 - "default.handlebars->25->1428"
15540 + "default.handlebars->25->1430"
15541 ]
15542 },
15543 {
@@ -15542,7 +15554,7 @@
15554 "ru": "Заблокированная учетная запись",
15555 "zh-chs": "賬戶鎖定",
15556 "xloc": [
15545 - "default.handlebars->25->1577"
15557 + "default.handlebars->25->1579"
15558 ]
15559 },
15560 {
@@ -15559,7 +15571,7 @@
15571 "ru": "Добавить событие",
15572 "zh-chs": "記錄事件",
15573 "xloc": [
15562 - "default.handlebars->25->538"
15574 + "default.handlebars->25->540"
15575 ]
15576 },
15577 {
@@ -15729,7 +15741,7 @@
15741 "ru": "Люксембургский",
15742 "zh-chs": "盧森堡語",
15743 "xloc": [
15732 - "default.handlebars->25->1001"
15744 + "default.handlebars->25->1003"
15745 ]
15746 },
15747 {
@@ -15748,8 +15760,8 @@
15760 "xloc": [
15761 "default-mobile.handlebars->9->327",
15762 "default-mobile.handlebars->9->329",
15751 - "default.handlebars->25->805",
15752 - "default.handlebars->25->807"
15763 + "default.handlebars->25->807",
15764 + "default.handlebars->25->809"
15765 ]
15766 },
15767 {
@@ -15784,7 +15796,7 @@
15796 "zh-chs": "MAC:{0}",
15797 "xloc": [
15798 "default-mobile.handlebars->9->330",
15787 - "default.handlebars->25->808"
15799 + "default.handlebars->25->810"
15800 ]
15801 },
15802 {
@@ -15802,7 +15814,7 @@
15814 "zh-chs": "MAC:{0},網關:{1}",
15815 "xloc": [
15816 "default-mobile.handlebars->9->328",
15805 - "default.handlebars->25->806"
15817 + "default.handlebars->25->808"
15818 ]
15819 },
15820 {
@@ -15859,9 +15871,9 @@
15871 "default-mobile.handlebars->9->232",
15872 "default.handlebars->25->185",
15873 "default.handlebars->25->391",
15862 - "default.handlebars->25->531",
15863 - "default.handlebars->25->856",
15864 - "default.handlebars->25->857",
15874 + "default.handlebars->25->533",
15875 + "default.handlebars->25->858",
15876 + "default.handlebars->25->859",
15877 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3"
15878 ]
15879 },
@@ -15896,7 +15908,7 @@
15908 "ru": "MQTT Вход",
15909 "zh-chs": "MQTT登錄",
15910 "xloc": [
15899 - "default.handlebars->25->561"
15911 + "default.handlebars->25->563"
15912 ]
15913 },
15914 {
@@ -15914,7 +15926,7 @@
15926 "zh-chs": "MQTT通道已連接",
15927 "xloc": [
15928 "default-mobile.handlebars->9->242",
15917 - "default.handlebars->25->569"
15929 + "default.handlebars->25->571"
15930 ]
15931 },
15932 {
@@ -15932,7 +15944,7 @@
15944 "zh-chs": "MQTT已連接",
15945 "xloc": [
15946 "default.handlebars->25->147",
15935 - "default.handlebars->25->568"
15947 + "default.handlebars->25->570"
15948 ]
15949 },
15950 {
@@ -15951,7 +15963,7 @@
15963 "xloc": [
15964 "default.handlebars->25->184",
15965 "default.handlebars->25->390",
15954 - "default.handlebars->25->530"
15966 + "default.handlebars->25->532"
15967 ]
15968 },
15969 {
@@ -16002,7 +16014,7 @@
16014 "ru": "MacOS (64bit)",
16015 "zh-chs": "MacOS(64位)",
16016 "xloc": [
16005 - "default.handlebars->25->670"
16017 + "default.handlebars->25->672"
16018 ]
16019 },
16020 {
@@ -16055,7 +16067,7 @@
16067 "ru": "Сообщения главного сервера",
16068 "zh-chs": "主服務器消息",
16069 "xloc": [
16058 - "default.handlebars->25->1775"
16070 + "default.handlebars->25->1777"
16071 ]
16072 },
16073 {
@@ -16072,7 +16084,7 @@
16084 "ru": "Малайский",
16085 "zh-chs": "馬來語",
16086 "xloc": [
16075 - "default.handlebars->25->1003"
16087 + "default.handlebars->25->1005"
16088 ]
16089 },
16090 {
@@ -16089,7 +16101,7 @@
16101 "ru": "Малаяламский",
16102 "zh-chs": "馬拉雅拉姆語",
16103 "xloc": [
16092 - "default.handlebars->25->1004"
16104 + "default.handlebars->25->1006"
16105 ]
16106 },
16107 {
@@ -16106,7 +16118,7 @@
16118 "ru": "Мальтийский",
16119 "zh-chs": "馬耳他語",
16120 "xloc": [
16109 - "default.handlebars->25->1005"
16121 + "default.handlebars->25->1007"
16122 ]
16123 },
16124 {
@@ -16143,8 +16155,8 @@
16155 "xloc": [
16156 "default-mobile.handlebars->9->395",
16157 "default-mobile.handlebars->9->413",
16146 - "default.handlebars->25->1273",
16147 - "default.handlebars->25->1307"
16158 + "default.handlebars->25->1275",
16159 + "default.handlebars->25->1309"
16160 ]
16161 },
16162 {
@@ -16163,8 +16175,8 @@
16175 "xloc": [
16176 "default-mobile.handlebars->9->394",
16177 "default-mobile.handlebars->9->412",
16166 - "default.handlebars->25->1272",
16167 - "default.handlebars->25->1306"
16178 + "default.handlebars->25->1274",
16179 + "default.handlebars->25->1308"
16180 ]
16181 },
16182 {
@@ -16180,14 +16192,14 @@
16192 "ru": "Управление устройствами",
16193 "zh-chs": "管理设备",
16194 "xloc": [
16183 - "default.handlebars->25->598"
16195 + "default.handlebars->25->600"
16196 ]
16197 },
16198 {
16199 "en": "Manage Recordings",
16200 "nl": "Beheeer opnames",
16201 "xloc": [
16190 - "default.handlebars->25->1502"
16202 + "default.handlebars->25->1504"
16203 ]
16204 },
16205 {
@@ -16221,7 +16233,7 @@
16233 "ru": "Управление группами пользователя",
16234 "zh-chs": "管理用戶組",
16235 "xloc": [
16224 - "default.handlebars->25->1501"
16236 + "default.handlebars->25->1503"
16237 ]
16238 },
16239 {
@@ -16238,8 +16250,8 @@
16250 "ru": "Управление пользователями",
16251 "zh-chs": "管理用戶",
16252 "xloc": [
16241 - "default.handlebars->25->1500",
16242 - "default.handlebars->25->597"
16253 + "default.handlebars->25->1502",
16254 + "default.handlebars->25->599"
16255 ]
16256 },
16257 {
@@ -16343,7 +16355,7 @@
16355 "ru": "Управление с помощью программного агента",
16356 "zh-chs": "使用軟件代理進行管理",
16357 "xloc": [
16346 - "default.handlebars->25->1127"
16358 + "default.handlebars->25->1129"
16359 ]
16360 },
16361 {
@@ -16361,7 +16373,7 @@
16373 "zh-chs": "使用軟件代理進行管理",
16374 "xloc": [
16375 "default-mobile.handlebars->9->375",
16364 - "default.handlebars->25->1155"
16376 + "default.handlebars->25->1157"
16377 ]
16378 },
16379 {
@@ -16378,7 +16390,7 @@
16390 "ru": "Менеджер",
16391 "zh-chs": "經理",
16392 "xloc": [
16381 - "default.handlebars->25->1433"
16393 + "default.handlebars->25->1435"
16394 ]
16395 },
16396 {
@@ -16429,7 +16441,7 @@
16441 "ru": "Маори",
16442 "zh-chs": "毛利人",
16443 "xloc": [
16432 - "default.handlebars->25->1006"
16444 + "default.handlebars->25->1008"
16445 ]
16446 },
16447 {
@@ -16464,7 +16476,7 @@
16476 "ru": "Маратхи",
16477 "zh-chs": "馬拉地語",
16478 "xloc": [
16467 - "default.handlebars->25->1007"
16479 + "default.handlebars->25->1009"
16480 ]
16481 },
16482 {
@@ -16481,7 +16493,7 @@
16493 "ru": "Достигнуто максимальное число сессий",
16494 "zh-chs": "達到的會話數上限",
16495 "xloc": [
16484 - "default.handlebars->25->1739"
16496 + "default.handlebars->25->1741"
16497 ]
16498 },
16499 {
@@ -16535,7 +16547,7 @@
16547 "ru": "Мегабайт",
16548 "zh-chs": "兆字節",
16549 "xloc": [
16538 - "default.handlebars->25->1765"
16550 + "default.handlebars->25->1767"

This file is too large to show in full.

views/default.handlebars
+28 -3
@@ -488,6 +488,7 @@
488 <td style=width:20px></td>
489 <td style=width:200px;vertical-align:top;position:relative valign=top>
490 <img id="p10deviceNotify" onclick=showDeviceSessions(null,null,event) class=deviceNotifyLargeDot src=images/icon-relay-notify-40.png width=40 height=40>
491 + <div id="p10deviceBattery" class="deviceBatteryLarge deviceBatteryLarge1"></div>
492 <a href=# onclick=p10showiconselector()><img id=MainComputerImage></a>
493 <div id=MainComputerState></div>
494 </td>
@@ -2646,8 +2647,8 @@
2647 node.pwr = message.event.pwr;
2648 node.lastconnect = Date.now();
2649
2649 - // Clear sesssion information if needed
2650 - if ((node.conn & 1) == 0) { delete node.sessions; }
2650 + // Clear sesssion and battery information if needed
2651 + if ((node.conn & 1) == 0) { delete node.sessions; delete node.battery; }
2652
2653 // Web page update
2654 masterUpdate(1 | 4 | 16);
@@ -5007,7 +5008,31 @@
5008 currentNode = node;
5009
5010 // Device Notification
5010 - QV('p10deviceNotify', currentNode.sessions != null);
5011 + QV('p10deviceNotify', (currentNode.sessions != null) && ((currentNode.sessions.kvm != null) || (currentNode.sessions.terminal != null) || (currentNode.sessions.files != null)));
5012 +
5013 + // Device Battery
5014 + QV('p10deviceBattery', false);
5015 + if ((currentNode.sessions != null) && (currentNode.sessions.battery != null)) {
5016 + var bat = currentNode.sessions.battery;
5017 + if (bat.state == 'ac') {
5018 + QV('p10deviceBattery', true);
5019 + Q('p10deviceBattery').className = 'deviceBatteryLarge deviceBatteryLarge6';
5020 + Q('p10deviceBattery').title = "Device is plugged-in";
5021 + } else {
5022 + Q('p10deviceBattery').title = format("Device is battery powered, {0}%", bat.level);
5023 + if ((typeof bat.level == 'number') && (bat.level >= 0) && (bat.level <= 100)) {
5024 + QV('p10deviceBattery', true);
5025 + var lvl = (Math.floor((bat.level + 10) / 25) + 1);
5026 + if (lvl > 5) { lvl = 5; }
5027 + Q('p10deviceBattery').className = 'deviceBatteryLarge deviceBatteryLarge' + lvl;
5028 + } else {
5029 + QV('p10deviceBattery', true);
5030 + Q('p10deviceBattery').className = 'deviceBatteryLarge deviceBatteryLarge5';
5031 + }
5032 + }
5033 + } else {
5034 + QV('p10deviceBattery', false);
5035 + }
5036
5037 // Add node name
5038 var nname = EscapeHtml(node.name), nnameEx;