Added batch command execution.

Ylian Saint-Hilaire committed Jul 10, 2020 at 23:12 UTC cf8f58cd484ca1daffbd41d62ee727b39db3131c
5 files changed +1611 -1440
agents/meshcore.js
+33
@@ -891,6 +891,39 @@ function createMeshCore(agent) {
891 for (var i in data.macs) { sendWakeOnLan(data.macs[i]); }
892 break;
893 }
894 + case 'runcommands': {
895 + if (mesh.cmdchild != null) { sendConsoleText("Run commands can't execute, already busy."); break; }
896 + MeshServerLog("Running commands", data);
897 + sendConsoleText("Run commands: " + data.cmds);
898 + if (process.platform == 'win32') {
899 + if (data.type == 1) {
900 + // Windows command shell
901 + mesh.cmdchild = require('child_process').execFile(process.env['windir'] + '\\system32\\cmd.exe', ['cmd']);
902 + mesh.cmdchild.descriptorMetadata = 'UserCommandsShell';
903 + mesh.cmdchild.stdout.on('data', function (c) { sendConsoleText(c.toString()); });
904 + mesh.cmdchild.stderr.on('data', function (c) { sendConsoleText(c.toString()); });
905 + mesh.cmdchild.stdin.write(data.cmds + '\r\nexit\r\n');
906 + mesh.cmdchild.on('exit', function () { sendConsoleText("Run commands completed."); delete mesh.cmdchild; });
907 + } else if (data.type == 2) {
908 + // Windows Powershell
909 + mesh.cmdchild = require('child_process').execFile(process.env['windir'] + '\\System32\\WindowsPowerShell\\v1.0\\powershell.exe', ['powershell', '-noprofile', '-nologo', '-command', '-']);
910 + mesh.cmdchild.descriptorMetadata = 'UserCommandsPowerShell';
911 + mesh.cmdchild.stdout.on('data', function (c) { sendConsoleText(c.toString()); });
912 + mesh.cmdchild.stderr.on('data', function (c) { sendConsoleText(c.toString()); });
913 + mesh.cmdchild.stdin.write(data.cmds + '\r\nexit\r\n');
914 + mesh.cmdchild.on('exit', function () { sendConsoleText("Run commands completed."); delete mesh.cmdchild; });
915 + }
916 + } else if (data.type == 3) {
917 + // Linux shell
918 + mesh.cmdchild = require('child_process').execFile('/bin/sh', ['sh']);
919 + mesh.cmdchild.descriptorMetadata = 'UserCommandsShell';
920 + mesh.cmdchild.stdout.on('data', function (c) { sendConsoleText(c.toString()); });
921 + mesh.cmdchild.stderr.on('data', function (c) { sendConsoleText(c.toString()); });
922 + mesh.cmdchild.stdin.write(data.cmds.split('\r').join('') + '\nexit\n');
923 + mesh.cmdchild.on('exit', function () { sendConsoleText("Run commands completed."); delete mesh.cmdchild; });
924 + }
925 + break;
926 + }
927 case 'uninstallagent':
928 // Uninstall this agent
929 var agentName = process.platform == 'win32' ? 'Mesh Agent' : 'meshagent';
meshuser.js
+37 -4
@@ -3338,18 +3338,18 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
3338 db.Get('if' + node._id, function (err, nodeifs) {
3339 if ((nodeifs != null) && (nodeifs.length == 1)) {
3340 var macs = [], nodeif = nodeifs[0];
3341 - for (var i in nodeif.netif) { if (nodeif.netif[i].mac) { macs.push(nodeif.netif[i].mac); } }
3341 + for (var j in nodeif.netif) { if (nodeif.netif[j].mac) { macs.push(nodeif.netif[j].mac); } }
3342
3343 // Have the server send a wake-on-lan packet (Will not work in WAN-only)
3344 if (parent.parent.meshScanner != null) { parent.parent.meshScanner.wakeOnLan(macs); }
3345
3346 // Get the list of mesh this user as access to
3347 var targetMeshes = [];
3348 - for (i in user.links) { targetMeshes.push(i); } // TODO: Include used security groups!!
3348 + for (j in user.links) { targetMeshes.push(j); } // TODO: Include used security groups!!
3349
3350 // Go thru all the connected agents and send wake-on-lan on all the ones in the target mesh list
3351 - for (i in parent.wsagents) {
3352 - var agent = parent.wsagents[i];
3351 + for (j in parent.wsagents) {
3352 + var agent = parent.wsagents[j];
3353 if ((targetMeshes.indexOf(agent.dbMeshKey) >= 0) && (agent.authenticated == 2)) {
3354 //console.log('Asking agent ' + agent.dbNodeKey + ' to wake ' + macs.join(','));
3355 try { agent.send(JSON.stringify({ action: 'wakeonlan', macs: macs })); } catch (ex) { }
@@ -3363,6 +3363,39 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
3363 }
3364 break;
3365 }
3366 + case 'runcommands':
3367 + {
3368 + if (common.validateArray(command.nodeids, 1) == false) break; // Check nodeid's
3369 + if (typeof command.type != 'number') break; // Check command type
3370 + if (typeof command.cmds != 'string') break; // Check commands
3371 +
3372 + for (i in command.nodeids) {
3373 + // Get the node and the rights for this node
3374 + parent.GetNodeWithRights(domain, user, command.nodeids[i], function (node, rights, visible) {
3375 + // Check we have the rights to run commands on this device
3376 + if ((rights & MESHRIGHT_REMOTECONTROL) == 0) return;
3377 +
3378 + // Get the agent and run the commands
3379 + var agent = parent.wsagents[node._id];
3380 + if ((agent != null) && (agent.authenticated == 2) && (agent.agentInfo != null)) {
3381 + // Check if this agent is correct for this command type
3382 + // command.type 1 = Windows Command, 2 = Windows PowerShell, 3 = Linux/BSD/macOS
3383 + var commandsOk = false;
3384 + if ((agent.agentInfo.agentId > 0) && (agent.agentInfo.agentId < 5)) {
3385 + // Windows Agent
3386 + if ((command.type == 1) || (command.type == 2)) { commandsOk = true; }
3387 + } else {
3388 + // Non-Windows Agent
3389 + if (command.type == 3) { commandsOk = true; }
3390 + }
3391 + if (commandsOk == true) {
3392 + try { agent.send(JSON.stringify({ action: 'runcommands', type: command.type, cmds: command.cmds })); } catch (ex) { }
3393 + }
3394 + }
3395 + });
3396 + }
3397 + break;
3398 + }
3399 case 'uninstallagent':
3400 {
3401 if (common.validateArray(command.nodeids, 1) == false) break; // Check nodeid's
package.json
+19 -1
@@ -30,6 +30,8 @@
30 "sample-config-advanced.json"
31 ],
32 "dependencies": {
33 + "archiver": "^4.0.1",
34 + "archiver-zip-encrypted": "^1.0.8",
35 "body-parser": "^1.19.0",
36 "cbor": "^4.1.5",
37 "compression": "^1.7.4",
@@ -39,16 +41,32 @@
41 "express-handlebars": "^3.1.0",
42 "express-ws": "^4.0.0",
43 "html-minifier": "^4.0.0",
44 + "image-size": "^0.8.3",
45 "ipcheck": "^0.1.0",
46 "jsdom": "^16.3.0",
47 + "jwt-simple": "^0.5.6",
48 "minify-js": "0.0.4",
49 "minimist": "^1.2.0",
50 + "mongodb": "^3.5.9",
51 "multiparty": "^4.2.1",
52 "nedb": "^1.8.0",
53 "node-forge": "^0.8.4",
54 + "node-rdpjs-2": "^0.3.5",
55 + "node-windows": "^1.0.0-beta.1",
56 + "otplib": "^10.2.3",
57 + "passport": "^0.4.1",
58 + "passport-azure-oauth2": "^0.1.0",
59 + "passport-github2": "^0.1.12",
60 + "passport-google-oauth20": "^2.0.0",
61 + "passport-reddit": "^0.2.4",
62 + "passport-twitter": "^1.0.4",
63 + "promise": "^8.1.0",
64 + "saslprep": "^1.0.3",
65 + "twilio": "^3.48.0",
66 "ws": "^6.2.1",
67 "xmldom": "^0.1.27",
51 - "yauzl": "^2.10.0"
68 + "yauzl": "^2.10.0",
69 + "yubikeyotp": "^0.2.0"
70 },
71 "devDependencies": {},
72 "repository": {
translate/translate.json
+1478 -1432
@@ -14,8 +14,8 @@
14 "ru": " + CIRA",
15 "zh-chs": " + CIRA",
16 "xloc": [
17 - "default.handlebars->27->1231",
18 - "default.handlebars->27->1233"
17 + "default.handlebars->27->1242",
18 + "default.handlebars->27->1244"
19 ]
20 },
21 {
@@ -174,7 +174,7 @@
174 "ru": " Может быть использована подсказка пароля, но не рекоммендуется.",
175 "zh-chs": " 可以使用密碼提示,但不建議使用。",
176 "xloc": [
177 - "default.handlebars->27->1157"
177 + "default.handlebars->27->1168"
178 ]
179 },
180 {
@@ -191,8 +191,8 @@
191 "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.",
192 "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
193 "xloc": [
194 - "default.handlebars->27->1306",
195 - "default.handlebars->27->1619"
194 + "default.handlebars->27->1317",
195 + "default.handlebars->27->1630"
196 ]
197 },
198 {
@@ -395,7 +395,7 @@
395 "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.",
396 "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。",
397 "xloc": [
398 - "default.handlebars->27->1278"
398 + "default.handlebars->27->1289"
399 ]
400 },
401 {
@@ -429,7 +429,7 @@
429 "zh-chs": ",",
430 "xloc": [
431 "default-mobile.handlebars->9->439",
432 - "default.handlebars->27->1372"
432 + "default.handlebars->27->1383"
433 ]
434 },
435 {
@@ -464,7 +464,7 @@
464 "ru": ", MQTT онлайн",
465 "zh-chs": ",MQTT在線",
466 "xloc": [
467 - "default.handlebars->27->900"
467 + "default.handlebars->27->911"
468 ]
469 },
470 {
@@ -481,7 +481,7 @@
481 "ru": ", Soft-KVM",
482 "zh-chs": ",軟KVM",
483 "xloc": [
484 - "default.handlebars->27->732"
484 + "default.handlebars->27->743"
485 ]
486 },
487 {
@@ -500,9 +500,9 @@
500 "xloc": [
501 "default-mobile.handlebars->9->277",
502 "default-mobile.handlebars->9->286",
503 - "default.handlebars->27->739",
504 - "default.handlebars->27->770",
505 - "default.handlebars->27->782",
503 + "default.handlebars->27->750",
504 + "default.handlebars->27->781",
505 + "default.handlebars->27->793",
506 "xterm.handlebars->9->6"
507 ]
508 },
@@ -583,7 +583,7 @@
583 "en": ", {0} watching",
584 "nl": ", {0} kijken",
585 "xloc": [
586 - "default.handlebars->27->733"
586 + "default.handlebars->27->744"
587 ]
588 },
589 {
@@ -640,9 +640,9 @@
640 "xloc": [
641 "default-mobile.handlebars->9->108",
642 "default-mobile.handlebars->9->288",
643 - "default.handlebars->27->1413",
644 - "default.handlebars->27->1772",
645 - "default.handlebars->27->784"
643 + "default.handlebars->27->1424",
644 + "default.handlebars->27->1783",
645 + "default.handlebars->27->795"
646 ]
647 },
648 {
@@ -691,7 +691,7 @@
691 "ru": "1 активная сессия",
692 "zh-chs": "1個活動會話",
693 "xloc": [
694 - "default.handlebars->27->1688"
694 + "default.handlebars->27->1699"
695 ]
696 },
697 {
@@ -710,14 +710,14 @@
710 "xloc": [
711 "default-mobile.handlebars->9->118",
712 "default-mobile.handlebars->9->443",
713 - "default.handlebars->27->1432"
713 + "default.handlebars->27->1443"
714 ]
715 },
716 {
717 "en": "1 connection",
718 "nl": "1 verbinding",
719 "xloc": [
720 - "default.handlebars->27->735"
720 + "default.handlebars->27->746"
721 ]
722 },
723 {
@@ -753,7 +753,7 @@
753 "ru": "1 группа",
754 "zh-chs": "1組",
755 "xloc": [
756 - "default.handlebars->27->1653"
756 + "default.handlebars->27->1664"
757 ]
758 },
759 {
@@ -825,7 +825,7 @@
825 "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...",
826 "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...",
827 "xloc": [
828 - "default.handlebars->27->1467"
828 + "default.handlebars->27->1478"
829 ]
830 },
831 {
@@ -880,7 +880,7 @@
880 "default-mobile.handlebars->9->162",
881 "default-mobile.handlebars->9->165",
882 "default-mobile.handlebars->9->168",
883 - "default.handlebars->27->1471",
883 + "default.handlebars->27->1482",
884 "default.handlebars->27->228",
885 "default.handlebars->27->231",
886 "default.handlebars->27->234",
@@ -1159,8 +1159,8 @@
1159 "ru": "двухфакторная аутентификация включена",
1160 "zh-chs": "啟用第二因素身份驗證",
1161 "xloc": [
1162 - "default.handlebars->27->1484",
1163 - "default.handlebars->27->1675"
1162 + "default.handlebars->27->1495",
1163 + "default.handlebars->27->1686"
1164 ]
1165 },
1166 {
@@ -1532,7 +1532,7 @@
1532 "ru": "7-дневная статистика работы",
1533 "zh-chs": "7天電源狀態",
1534 "xloc": [
1535 - "default.handlebars->27->665"
1535 + "default.handlebars->27->676"
1536 ]
1537 },
1538 {
@@ -1772,7 +1772,7 @@
1772 "zh-chs": "ACM",
1773 "xloc": [
1774 "default-mobile.handlebars->9->224",
1775 - "default.handlebars->27->517"
1775 + "default.handlebars->27->523"
1776 ]
1777 },
1778 {
@@ -1879,7 +1879,7 @@
1879 "ru": "Отказано в доступе",
1880 "zh-chs": "拒絕訪問",
1881 "xloc": [
1882 - "default.handlebars->27->901"
1882 + "default.handlebars->27->912"
1883 ]
1884 },
1885 {
@@ -1914,7 +1914,7 @@
1914 "ru": "Доступ к файлам сервера",
1915 "zh-chs": "訪問服務器文件",
1916 "xloc": [
1917 - "default.handlebars->27->1625"
1917 + "default.handlebars->27->1636"
1918 ]
1919 },
1920 {
@@ -1989,10 +1989,10 @@
1989 "default-mobile.handlebars->9->93",
1990 "default-mobile.handlebars->9->95",
1991 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
1992 - "default.handlebars->27->1166",
1993 - "default.handlebars->27->1168",
1994 - "default.handlebars->27->486",
1995 - "default.handlebars->27->488"
1992 + "default.handlebars->27->1177",
1993 + "default.handlebars->27->1179",
1994 + "default.handlebars->27->492",
1995 + "default.handlebars->27->494"
1996 ]
1997 },
1998 {
@@ -2038,8 +2038,8 @@
2038 "ru": "Аккаунт заблокирован",
2039 "zh-chs": "帐户已被锁定",
2040 "xloc": [
2041 - "default.handlebars->27->1486",
2042 - "default.handlebars->27->1622"
2041 + "default.handlebars->27->1497",
2042 + "default.handlebars->27->1633"
2043 ]
2044 },
2045 {
@@ -2127,7 +2127,7 @@
2127 "ru": "Действиe",
2128 "zh-chs": "行動",
2129 "xloc": [
2130 - "default.handlebars->27->906",
2130 + "default.handlebars->27->917",
2131 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2132 ]
2133 },
@@ -2145,8 +2145,8 @@
2145 "ru": "Файл действий",
2146 "zh-chs": "動作文件",
2147 "xloc": [
2148 - "default.handlebars->27->708",
2149 - "default.handlebars->27->710"
2148 + "default.handlebars->27->719",
2149 + "default.handlebars->27->721"
2150 ]
2151 },
2152 {
@@ -2166,7 +2166,7 @@
2166 "default-mobile.handlebars->9->241",
2167 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
2168 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
2169 - "default.handlebars->27->562",
2169 + "default.handlebars->27->568",
2170 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
2171 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
2172 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -2223,9 +2223,9 @@
2223 "default-mobile.handlebars->9->219",
2224 "default-mobile.handlebars->9->221",
2225 "default-mobile.handlebars->9->348",
2226 - "default.handlebars->27->510",
2227 - "default.handlebars->27->512",
2228 - "default.handlebars->27->864"
2226 + "default.handlebars->27->516",
2227 + "default.handlebars->27->518",
2228 + "default.handlebars->27->875"
2229 ]
2230 },
2231 {
@@ -2242,8 +2242,8 @@
2242 "ru": "Активация",
2243 "zh-chs": "激活",
2244 "xloc": [
2245 - "default.handlebars->27->1244",
2246 - "default.handlebars->27->1246",
2245 + "default.handlebars->27->1255",
2246 + "default.handlebars->27->1257",
2247 "default.handlebars->27->254",
2248 "default.handlebars->27->256"
2249 ]
@@ -2262,7 +2262,7 @@
2262 "ru": "Активный пользователь",
2263 "zh-chs": "活動用戶{0}",
2264 "xloc": [
2265 - "default.handlebars->27->537"
2265 + "default.handlebars->27->543"
2266 ]
2267 },
2268 {
@@ -2279,7 +2279,7 @@
2279 "ru": "Добавить агент",
2280 "zh-chs": "添加代理",
2281 "xloc": [
2282 - "default.handlebars->27->1248",
2282 + "default.handlebars->27->1259",
2283 "default.handlebars->27->258"
2284 ]
2285 },
@@ -2314,8 +2314,8 @@
2314 "ru": "Добавить устройство",
2315 "zh-chs": "添加設備",
2316 "xloc": [
2317 - "default.handlebars->27->1599",
2318 - "default.handlebars->27->1723"
2317 + "default.handlebars->27->1610",
2318 + "default.handlebars->27->1734"
2319 ]
2320 },
2321 {
@@ -2332,7 +2332,7 @@
2332 "ru": "Добавить событие к устройству",
2333 "zh-chs": "添加設備事件",
2334 "xloc": [
2335 - "default.handlebars->27->646"
2335 + "default.handlebars->27->652"
2336 ]
2337 },
2338 {
@@ -2349,9 +2349,9 @@
2349 "ru": "Добавить группу устройств",
2350 "zh-chs": "添加設備組",
2351 "xloc": [
2352 - "default.handlebars->27->1338",
2353 - "default.handlebars->27->1593",
2354 - "default.handlebars->27->1711",
2352 + "default.handlebars->27->1349",
2353 + "default.handlebars->27->1604",
2354 + "default.handlebars->27->1722",
2355 "default.handlebars->27->216"
2356 ]
2357 },
@@ -2366,7 +2366,7 @@
2366 "nl": "Machtigingen voor apparaatgroep toevoegen",
2367 "zh-chs": "添加设备组权限",
2368 "xloc": [
2369 - "default.handlebars->27->1335"
2369 + "default.handlebars->27->1346"
2370 ]
2371 },
2372 {
@@ -2382,8 +2382,8 @@
2382 "ru": "Добавить разрешения для устройства",
2383 "zh-chs": "添加设备权限",
2384 "xloc": [
2385 - "default.handlebars->27->1340",
2386 - "default.handlebars->27->1342"
2385 + "default.handlebars->27->1351",
2386 + "default.handlebars->27->1353"
2387 ]
2388 },
2389 {
@@ -2468,7 +2468,7 @@
2468 "ru": "Добавить участие",
2469 "zh-chs": "添加會員",
2470 "xloc": [
2471 - "default.handlebars->27->1741"
2471 + "default.handlebars->27->1752"
2472 ]
2473 },
2474 {
@@ -2506,8 +2506,8 @@
2506 "default.handlebars->27->151",
2507 "default.handlebars->27->154",
2508 "default.handlebars->27->155",
2509 - "default.handlebars->27->934",
2510 - "default.handlebars->27->935"
2509 + "default.handlebars->27->945",
2510 + "default.handlebars->27->946"
2511 ]
2512 },
2513 {
@@ -2525,7 +2525,7 @@
2525 "zh-chs": "添加用戶",
2526 "xloc": [
2527 "default-mobile.handlebars->9->388",
2528 - "default.handlebars->27->603"
2528 + "default.handlebars->27->609"
2529 ]
2530 },
2531 {
@@ -2541,7 +2541,7 @@
2541 "ru": "Добавить разрешения для пользовательских устройств",
2542 "zh-chs": "添加用户设备权限",
2543 "xloc": [
2544 - "default.handlebars->27->1345"
2544 + "default.handlebars->27->1356"
2545 ]
2546 },
2547 {
@@ -2558,10 +2558,10 @@
2558 "ru": "Добавить группу пользователей",
2559 "zh-chs": "添加用戶組",
2560 "xloc": [
2561 - "default.handlebars->27->1238",
2562 - "default.handlebars->27->1337",
2563 - "default.handlebars->27->1717",
2564 - "default.handlebars->27->604"
2561 + "default.handlebars->27->1249",
2562 + "default.handlebars->27->1348",
2563 + "default.handlebars->27->1728",
2564 + "default.handlebars->27->610"
2565 ]
2566 },
2567 {
@@ -2575,7 +2575,7 @@
2575 "nl": "Gebruikersmachtigingen voor apparaatgroep toevoegen",
2576 "zh-chs": "添加用户组设备权限",
2577 "xloc": [
2578 - "default.handlebars->27->1347"
2578 + "default.handlebars->27->1358"
2579 ]
2580 },
2581 {
@@ -2620,8 +2620,8 @@
2620 "ru": "Добавить пользователей",
2621 "zh-chs": "添加用戶",
2622 "xloc": [
2623 - "default.handlebars->27->1237",
2624 - "default.handlebars->27->1588"
2623 + "default.handlebars->27->1248",
2624 + "default.handlebars->27->1599"
2625 ]
2626 },
2627 {
@@ -2638,7 +2638,7 @@
2638 "ru": "Добавить пользователей в группу устройств",
2639 "zh-chs": "將用戶添加到設備組",
2640 "xloc": [
2641 - "default.handlebars->27->1334"
2641 + "default.handlebars->27->1345"
2642 ]
2643 },
2644 {
@@ -2655,7 +2655,7 @@
2655 "ru": "Добавить пользователей в группу",
2656 "zh-chs": "將用戶添加到用戶組",
2657 "xloc": [
2658 - "default.handlebars->27->1621"
2658 + "default.handlebars->27->1632"
2659 ]
2660 },
2661 {
@@ -2706,7 +2706,7 @@
2706 "ru": "Добавить новый Intel&reg; AMT компьютер, находящийся в интернете.",
2707 "zh-chs": "添加位於互聯網上的新英特爾&reg;AMT計算機。",
2708 "xloc": [
2709 - "default.handlebars->27->1239",
2709 + "default.handlebars->27->1250",
2710 "default.handlebars->27->247"
2711 ]
2712 },
@@ -2724,7 +2724,7 @@
2724 "ru": "Добавить новый Intel&reg; AMT компьютер, находящийся в локальной сети.",
2725 "zh-chs": "添加位於本地網絡上的新英特爾&reg;AMT計算機。",
2726 "xloc": [
2727 - "default.handlebars->27->1241",
2727 + "default.handlebars->27->1252",
2728 "default.handlebars->27->249"
2729 ]
2730 },
@@ -2756,7 +2756,7 @@
2756 "nl": "Voeg een nieuwe computer toe aan deze apparaatgroep door de mesh-agent te installeren.",
2757 "zh-chs": "通过安装网状代理,将新计算机添加到该设备组。",
2758 "xloc": [
2759 - "default.handlebars->27->1247",
2759 + "default.handlebars->27->1258",
2760 "default.handlebars->27->257"
2761 ]
2762 },
@@ -2809,7 +2809,7 @@
2809 "zh-chs": "管理員控制模式(ACM)",
2810 "xloc": [
2811 "default-mobile.handlebars->9->350",
2812 - "default.handlebars->27->866"
2812 + "default.handlebars->27->877"
2813 ]
2814 },
2815 {
@@ -2827,7 +2827,7 @@
2827 "zh-chs": "管理員憑證",
2828 "xloc": [
2829 "default-mobile.handlebars->9->356",
2830 - "default.handlebars->27->872"
2830 + "default.handlebars->27->883"
2831 ]
2832 },
2833 {
@@ -2862,7 +2862,7 @@
2862 "ru": "Области администратора",
2863 "zh-chs": "管理領域",
2864 "xloc": [
2865 - "default.handlebars->27->1657"
2865 + "default.handlebars->27->1668"
2866 ]
2867 },
2868 {
@@ -2897,7 +2897,7 @@
2897 "ru": "Административные области",
2898 "zh-chs": "行政領域",
2899 "xloc": [
2900 - "default.handlebars->27->1539"
2900 + "default.handlebars->27->1550"
2901 ]
2902 },
2903 {
@@ -2914,7 +2914,7 @@
2914 "ru": "Администратор",
2915 "zh-chs": "管理員",
2916 "xloc": [
2917 - "default.handlebars->27->1478"
2917 + "default.handlebars->27->1489"
2918 ]
2919 },
2920 {
@@ -2931,7 +2931,7 @@
2931 "ru": "Африканский",
2932 "zh-chs": "南非語",
2933 "xloc": [
2934 - "default.handlebars->27->937"
2934 + "default.handlebars->27->948"
2935 ]
2936 },
2937 {
@@ -2951,8 +2951,8 @@
2951 "default-mobile.handlebars->9->192",
2952 "default-mobile.handlebars->9->216",
2953 "default-mobile.handlebars->9->232",
2954 - "default.handlebars->27->1399",
2955 - "default.handlebars->27->1407",
2954 + "default.handlebars->27->1410",
2955 + "default.handlebars->27->1418",
2956 "default.handlebars->27->195",
2957 "default.handlebars->27->403",
2958 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -2972,8 +2972,8 @@
2972 "ru": "Агент + Intel AMT",
2973 "zh-chs": "代理+英特爾AMT",
2974 "xloc": [
2975 - "default.handlebars->27->1401",
2976 - "default.handlebars->27->1409"
2975 + "default.handlebars->27->1412",
2976 + "default.handlebars->27->1420"
2977 ]
2978 },
2979 {
@@ -3008,7 +3008,7 @@
3008 "zh-chs": "代理控制台",
3009 "xloc": [
3010 "default-mobile.handlebars->9->423",
3011 - "default.handlebars->27->1355"
3011 + "default.handlebars->27->1366"
3012 ]
3013 },
3014 {
@@ -3025,7 +3025,7 @@
3025 "ru": "Счетчик ошибок агента",
3026 "zh-chs": "座席錯誤計數器",
3027 "xloc": [
3028 - "default.handlebars->27->1782"
3028 + "default.handlebars->27->1793"
3029 ]
3030 },
3031 {
@@ -3094,7 +3094,7 @@
3094 "ru": "Сессии агентов",
3095 "zh-chs": "座席會議",
3096 "xloc": [
3097 - "default.handlebars->27->1798"
3097 + "default.handlebars->27->1809"
3098 ]
3099 },
3100 {
@@ -3112,7 +3112,7 @@
3112 "zh-chs": "代理商標籤",
3113 "xloc": [
3114 "default-mobile.handlebars->9->231",
3115 - "default.handlebars->27->530"
3115 + "default.handlebars->27->536"
3116 ]
3117 },
3118 {
@@ -3129,7 +3129,7 @@
3129 "ru": "Типы агента",
3130 "zh-chs": "代理類型",
3131 "xloc": [
3132 - "default.handlebars->27->1405",
3132 + "default.handlebars->27->1416",
3133 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
3134 ]
3135 },
@@ -3148,8 +3148,8 @@
3148 "zh-chs": "代理已連接",
3149 "xloc": [
3150 "default.handlebars->27->160",
3151 - "default.handlebars->27->594",
3152 - "default.handlebars->27->595"
3151 + "default.handlebars->27->600",
3152 + "default.handlebars->27->601"
3153 ]
3154 },
3155 {
@@ -3183,7 +3183,7 @@
3183 "ru": "Агент оффлайн",
3184 "zh-chs": "代理離線",
3185 "xloc": [
3186 - "default.handlebars->27->899"
3186 + "default.handlebars->27->910"
3187 ]
3188 },
3189 {
@@ -3200,7 +3200,7 @@
3200 "ru": "Агент онлайн",
3201 "zh-chs": "代理在線",
3202 "xloc": [
3203 - "default.handlebars->27->898"
3203 + "default.handlebars->27->909"
3204 ]
3205 },
3206 {
@@ -3217,7 +3217,7 @@
3217 "ru": "Агенты",
3218 "zh-chs": "代理商",
3219 "xloc": [
3220 - "default.handlebars->27->1811"
3220 + "default.handlebars->27->1822"
3221 ]
3222 },
3223 {
@@ -3234,7 +3234,7 @@
3234 "ru": "Албанский",
3235 "zh-chs": "阿爾巴尼亞語",
3236 "xloc": [
3237 - "default.handlebars->27->938"
3237 + "default.handlebars->27->949"
3238 ]
3239 },
3240 {
@@ -3284,9 +3284,9 @@
3284 "ru": "Фокусирование всех",
3285 "zh-chs": "全部聚焦",
3286 "xloc": [
3287 - "default.handlebars->27->740",
3288 - "default.handlebars->27->742",
3289 - "default.handlebars->27->743"
3287 + "default.handlebars->27->751",
3288 + "default.handlebars->27->753",
3289 + "default.handlebars->27->754"
3290 ]
3291 },
3292 {
@@ -3303,8 +3303,8 @@
3303 "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.",
3304 "zh-chs": "允許用戶管理此設備組和該組中的設備。",
3305 "xloc": [
3306 - "default.handlebars->27->1304",
3307 - "default.handlebars->27->1618"
3306 + "default.handlebars->27->1315",
3307 + "default.handlebars->27->1629"
3308 ]
3309 },
3310 {
@@ -3320,7 +3320,7 @@
3320 "ru": "Разрешить пользователям управлять этим устройством.",
3321 "zh-chs": "允许用户管理此设备。",
3322 "xloc": [
3323 - "default.handlebars->27->1305"
3323 + "default.handlebars->27->1316"
3324 ]
3325 },
3326 {
@@ -3373,7 +3373,7 @@
3373 "ru": "Поменять (F10 = ESC+0)",
3374 "zh-chs": "備用(F10 = ESC + 0)",
3375 "xloc": [
3376 - "default.handlebars->27->775"
3376 + "default.handlebars->27->786"
3377 ]
3378 },
3379 {
@@ -3408,9 +3408,9 @@
3408 "ru": "Всегда уведомлять",
3409 "zh-chs": "始終通知",
3410 "xloc": [
3411 - "default.handlebars->27->1218",
3412 - "default.handlebars->27->1666",
3413 - "default.handlebars->27->546"
3411 + "default.handlebars->27->1229",
3412 + "default.handlebars->27->1677",
3413 + "default.handlebars->27->552"
3414 ]
3415 },
3416 {
@@ -3427,9 +3427,9 @@
3427 "ru": "Всегда запрашивать",
3428 "zh-chs": "總是提示",
3429 "xloc": [
3430 - "default.handlebars->27->1219",
3431 - "default.handlebars->27->1667",
3432 - "default.handlebars->27->547"
3430 + "default.handlebars->27->1230",
3431 + "default.handlebars->27->1678",
3432 + "default.handlebars->27->553"
3433 ]
3434 },
3435 {
@@ -3543,7 +3543,7 @@
3543 "ru": "Антивирус",
3544 "zh-chs": "防毒軟件",
3545 "xloc": [
3546 - "default.handlebars->27->536"
3546 + "default.handlebars->27->542"
3547 ]
3548 },
3549 {
@@ -3628,7 +3628,7 @@
3628 "ru": "Арабский (Алжир)",
3629 "zh-chs": "阿拉伯文(阿爾及利亞)",
3630 "xloc": [
3631 - "default.handlebars->27->940"
3631 + "default.handlebars->27->951"
3632 ]
3633 },
3634 {
@@ -3645,7 +3645,7 @@
3645 "ru": "Арабский (Бахрейн)",
3646 "zh-chs": "阿拉伯文(巴林)",
3647 "xloc": [
3648 - "default.handlebars->27->941"
3648 + "default.handlebars->27->952"
3649 ]
3650 },
3651 {
@@ -3662,7 +3662,7 @@
3662 "ru": "Арабский (Египет)",
3663 "zh-chs": "阿拉伯文(埃及)",
3664 "xloc": [
3665 - "default.handlebars->27->942"
3665 + "default.handlebars->27->953"
3666 ]
3667 },
3668 {
@@ -3679,7 +3679,7 @@
3679 "ru": "Арабский (Ирак)",
3680 "zh-chs": "阿拉伯文(伊拉克)",
3681 "xloc": [
3682 - "default.handlebars->27->943"
3682 + "default.handlebars->27->954"
3683 ]
3684 },
3685 {
@@ -3696,7 +3696,7 @@
3696 "ru": "Арабский (Иордания)",
3697 "zh-chs": "阿拉伯語(約旦)",
3698 "xloc": [
3699 - "default.handlebars->27->944"
3699 + "default.handlebars->27->955"
3700 ]
3701 },
3702 {
@@ -3713,7 +3713,7 @@
3713 "ru": "Арабский (Кувейт)",
3714 "zh-chs": "阿拉伯文(科威特)",
3715 "xloc": [
3716 - "default.handlebars->27->945"
3716 + "default.handlebars->27->956"
3717 ]
3718 },
3719 {
@@ -3730,7 +3730,7 @@
3730 "ru": "Арабский (Ливан)",
3731 "zh-chs": "阿拉伯語(黎巴嫩)",
3732 "xloc": [
3733 - "default.handlebars->27->946"
3733 + "default.handlebars->27->957"
3734 ]
3735 },
3736 {
@@ -3747,7 +3747,7 @@
3747 "ru": "Арабский (Ливия)",
3748 "zh-chs": "阿拉伯文(利比亞)",
3749 "xloc": [
3750 - "default.handlebars->27->947"
3750 + "default.handlebars->27->958"
3751 ]
3752 },
3753 {
@@ -3764,7 +3764,7 @@
3764 "ru": "Арабский (Марокко)",
3765 "zh-chs": "阿拉伯文(摩洛哥)",
3766 "xloc": [
3767 - "default.handlebars->27->948"
3767 + "default.handlebars->27->959"
3768 ]
3769 },
3770 {
@@ -3781,7 +3781,7 @@
3781 "ru": "Арабский (Оман)",
3782 "zh-chs": "阿拉伯文(阿曼)",
3783 "xloc": [
3784 - "default.handlebars->27->949"
3784 + "default.handlebars->27->960"
3785 ]
3786 },
3787 {
@@ -3798,7 +3798,7 @@
3798 "ru": "Арабский (Катар)",
3799 "zh-chs": "阿拉伯語(卡塔爾)",
3800 "xloc": [
3801 - "default.handlebars->27->950"
3801 + "default.handlebars->27->961"
3802 ]
3803 },
3804 {
@@ -3815,7 +3815,7 @@
3815 "ru": "Арабский (Саудовская Аравия)",
3816 "zh-chs": "阿拉伯語(沙特阿拉伯)",
3817 "xloc": [
3818 - "default.handlebars->27->951"
3818 + "default.handlebars->27->962"
3819 ]
3820 },
3821 {
@@ -3832,7 +3832,7 @@
3832 "ru": "Арабский (стандартный)",
3833 "zh-chs": "阿拉伯語(標準)",
3834 "xloc": [
3835 - "default.handlebars->27->939"
3835 + "default.handlebars->27->950"
3836 ]
3837 },
3838 {
@@ -3849,7 +3849,7 @@
3849 "ru": "Арабский (Сирия)",
3850 "zh-chs": "阿拉伯語(敘利亞)",
3851 "xloc": [
3852 - "default.handlebars->27->952"
3852 + "default.handlebars->27->963"
3853 ]
3854 },
3855 {
@@ -3866,7 +3866,7 @@
3866 "ru": "Арабский (Тунис)",
3867 "zh-chs": "阿拉伯文(突尼斯)",
3868 "xloc": [
3869 - "default.handlebars->27->953"
3869 + "default.handlebars->27->964"
3870 ]
3871 },
3872 {
@@ -3883,7 +3883,7 @@
3883 "ru": "Арабский (О.А.Э.)",
3884 "zh-chs": "阿拉伯文(阿聯酋)",
3885 "xloc": [
3886 - "default.handlebars->27->954"
3886 + "default.handlebars->27->965"
3887 ]
3888 },
3889 {
@@ -3900,7 +3900,7 @@
3900 "ru": "Арабский (Йемен)",
3901 "zh-chs": "阿拉伯文(也門)",
3902 "xloc": [
3903 - "default.handlebars->27->955"
3903 + "default.handlebars->27->966"
3904 ]
3905 },
3906 {
@@ -3917,7 +3917,7 @@
3917 "ru": "Арагонский",
3918 "zh-chs": "阿拉貢人",
3919 "xloc": [
3920 - "default.handlebars->27->956"
3920 + "default.handlebars->27->967"
3921 ]
3922 },
3923 {
@@ -3935,7 +3935,7 @@
3935 "zh-chs": "建築",
3936 "xloc": [
3937 "default-mobile.handlebars->9->320",
3938 - "default.handlebars->27->826"
3938 + "default.handlebars->27->837"
3939 ]
3940 },
3941 {
@@ -3970,7 +3970,7 @@
3970 "zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。",
3971 "xloc": [
3972 "default-mobile.handlebars->9->394",
3973 - "default.handlebars->27->1282"
3973 + "default.handlebars->27->1293"
3974 ]
3975 },
3976 {
@@ -3987,7 +3987,7 @@
3987 "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?",
3988 "zh-chs": "您確定要刪除節點{0}嗎?",
3989 "xloc": [
3990 - "default.handlebars->27->687"
3990 + "default.handlebars->27->698"
3991 ]
3992 },
3993 {
@@ -4004,7 +4004,7 @@
4004 "ru": "Вы действительно хотите деинсталировать выбранного агента?",
4005 "zh-chs": "您確定要卸載所選代理嗎?",
4006 "xloc": [
4007 - "default.handlebars->27->676"
4007 + "default.handlebars->27->687"
4008 ]
4009 },
4010 {
@@ -4021,7 +4021,7 @@
4021 "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?",
4022 "zh-chs": "您確定要卸載所選的{0}代理嗎?",
4023 "xloc": [
4024 - "default.handlebars->27->675"
4024 + "default.handlebars->27->686"
4025 ]
4026 },
4027 {
@@ -4038,7 +4038,7 @@
4038 "ru": "Вы уверенны, что {0} плагин: {1}",
4039 "zh-chs": "您確定要{0}插件嗎:{1}",
4040 "xloc": [
4041 - "default.handlebars->27->1851"
4041 + "default.handlebars->27->1862"
4042 ]
4043 },
4044 {
@@ -4055,7 +4055,7 @@
4055 "ru": "Армянский",
4056 "zh-chs": "亞美尼亞人",
4057 "xloc": [
4058 - "default.handlebars->27->957"
4058 + "default.handlebars->27->968"
4059 ]
4060 },
4061 {
@@ -4100,7 +4100,7 @@
4100 "ru": "Ассамский",
4101 "zh-chs": "阿薩姆語",
4102 "xloc": [
4103 - "default.handlebars->27->958"
4103 + "default.handlebars->27->969"
4104 ]
4105 },
4106 {
@@ -4117,7 +4117,7 @@
4117 "ru": "Астурии",
4118 "zh-chs": "阿斯圖里亞斯人",
4119 "xloc": [
4120 - "default.handlebars->27->959"
4120 + "default.handlebars->27->970"
4121 ]
4122 },
4123 {
@@ -4134,7 +4134,7 @@
4134 "ru": "Приложение аутентификации",
4135 "zh-chs": "身份驗證應用",
4136 "xloc": [
4137 - "default.handlebars->27->1670"
4137 + "default.handlebars->27->1681"
4138 ]
4139 },
4140 {
@@ -4157,8 +4157,8 @@
4157 "default-mobile.handlebars->9->73",
4158 "default.handlebars->27->125",
4159 "default.handlebars->27->130",
4160 - "default.handlebars->27->923",
4161 - "default.handlebars->27->925"
4160 + "default.handlebars->27->934",
4161 + "default.handlebars->27->936"
4162 ]
4163 },
4164 {
@@ -4226,7 +4226,7 @@
4226 "ru": "Автоудаление",
4227 "zh-chs": "自動刪除",
4228 "xloc": [
4229 - "default.handlebars->27->1206"
4229 + "default.handlebars->27->1217"
4230 ]
4231 },
4232 {
@@ -4280,7 +4280,7 @@
4280 "ru": "Азербайджанский",
4281 "zh-chs": "阿塞拜疆",
4282 "xloc": [
4283 - "default.handlebars->27->960"
4283 + "default.handlebars->27->971"
4284 ]
4285 },
4286 {
@@ -4298,7 +4298,7 @@
4298 "zh-chs": "的BIOS",
4299 "xloc": [
4300 "default-mobile.handlebars->9->362",
4301 - "default.handlebars->27->878"
4301 + "default.handlebars->27->889"
4302 ]
4303 },
4304 {
@@ -4395,8 +4395,8 @@
4395 "ru": "Фоновый и интерактивный",
4396 "zh-chs": "背景與互動",
4397 "xloc": [
4398 - "default.handlebars->27->1382",
4399 - "default.handlebars->27->1389",
4398 + "default.handlebars->27->1393",
4399 + "default.handlebars->27->1400",
4400 "default.handlebars->27->328"
4401 ]
4402 },
@@ -4414,8 +4414,8 @@
4414 "ru": "Только фоновый",
4415 "zh-chs": "僅背景",
4416 "xloc": [
4417 - "default.handlebars->27->1383",
4418 - "default.handlebars->27->1390",
4417 + "default.handlebars->27->1394",
4418 + "default.handlebars->27->1401",
4419 "default.handlebars->27->329",
4420 "default.handlebars->27->351"
4421 ]
@@ -4451,7 +4451,7 @@
4451 "ru": "Резервные коды",
4452 "zh-chs": "備用碼",
4453 "xloc": [
4454 - "default.handlebars->27->1672"
4454 + "default.handlebars->27->1683"
4455 ]
4456 },
4457 {
@@ -4468,7 +4468,7 @@
4468 "ru": "Плохой ключ",
4469 "zh-chs": "錯誤的簽名",
4470 "xloc": [
4471 - "default.handlebars->27->1789"
4471 + "default.handlebars->27->1800"
4472 ]
4473 },
4474 {
@@ -4485,7 +4485,7 @@
4485 "ru": "Плохой веб-сертификат",
4486 "zh-chs": "錯誤的網絡證書",
4487 "xloc": [
4488 - "default.handlebars->27->1788"
4488 + "default.handlebars->27->1799"
4489 ]
4490 },
4491 {
@@ -4502,7 +4502,7 @@
4502 "ru": "Баскский",
4503 "zh-chs": "巴斯克",
4504 "xloc": [
4505 - "default.handlebars->27->961"
4505 + "default.handlebars->27->972"
4506 ]
4507 },
4508 {
@@ -4536,7 +4536,7 @@
4536 "ru": "Белорусский",
4537 "zh-chs": "白俄羅斯語",
4538 "xloc": [
4539 - "default.handlebars->27->963"
4539 + "default.handlebars->27->974"
4540 ]
4541 },
4542 {
@@ -4553,7 +4553,7 @@
4553 "ru": "Бенгальский",
4554 "zh-chs": "孟加拉",
4555 "xloc": [
4556 - "default.handlebars->27->964"
4556 + "default.handlebars->27->975"
4557 ]
4558 },
4559 {
@@ -4589,7 +4589,7 @@
4589 "ru": "Боснийский",
4590 "zh-chs": "波斯尼亞人",
4591 "xloc": [
4592 - "default.handlebars->27->965"
4592 + "default.handlebars->27->976"
4593 ]
4594 },
4595 {
@@ -4606,7 +4606,7 @@
4606 "ru": "Бретонский",
4607 "zh-chs": "布列塔尼",
4608 "xloc": [
4609 - "default.handlebars->27->966"
4609 + "default.handlebars->27->977"
4610 ]
4611 },
4612 {
@@ -4623,7 +4623,7 @@
4623 "ru": "Отправить сообщение",
4624 "zh-chs": "廣播",
4625 "xloc": [
4626 - "default.handlebars->27->1586",
4626 + "default.handlebars->27->1597",
4627 "default.handlebars->container->column_l->p4->3->1->0->3->1"
4628 ]
4629 },
@@ -4641,7 +4641,7 @@
4641 "ru": "Отправить сообщение",
4642 "zh-chs": "廣播消息",
4643 "xloc": [
4644 - "default.handlebars->27->1521"
4644 + "default.handlebars->27->1532"
4645 ]
4646 },
4647 {
@@ -4658,7 +4658,7 @@
4658 "ru": "Отправить сообщение всем подключенным пользователям.",
4659 "zh-chs": "向所有連接的用戶廣播消息。",
4660 "xloc": [
4661 - "default.handlebars->27->1520"
4661 + "default.handlebars->27->1531"
4662 ]
4663 },
4664 {
@@ -4675,7 +4675,7 @@
4675 "ru": "Болгарский",
4676 "zh-chs": "保加利亞語",
4677 "xloc": [
4678 - "default.handlebars->27->962"
4678 + "default.handlebars->27->973"
4679 ]
4680 },
4681 {
@@ -4692,7 +4692,7 @@
4692 "ru": "Бирманский",
4693 "zh-chs": "緬甸人",
4694 "xloc": [
4695 - "default.handlebars->27->967"
4695 + "default.handlebars->27->978"
4696 ]
4697 },
4698 {
@@ -4710,7 +4710,7 @@
4710 "zh-chs": "CCM",
4711 "xloc": [
4712 "default-mobile.handlebars->9->223",
4713 - "default.handlebars->27->515"
4713 + "default.handlebars->27->521"
4714 ]
4715 },
4716 {
@@ -4728,8 +4728,8 @@
4728 "zh-chs": "CIRA",
4729 "xloc": [
4730 "default-mobile.handlebars->9->193",
4731 - "default.handlebars->27->1270",
4732 - "default.handlebars->27->1275",
4731 + "default.handlebars->27->1281",
4732 + "default.handlebars->27->1286",
4733 "default.handlebars->27->197",
4734 "default.handlebars->27->405"
4735 ]
@@ -4748,7 +4748,7 @@
4748 "ru": "CIRA Сервер",
4749 "zh-chs": "CIRA服務器",
4750 "xloc": [
4751 - "default.handlebars->27->1839"
4751 + "default.handlebars->27->1850"
4752 ]
4753 },
4754 {
@@ -4765,7 +4765,7 @@
4765 "ru": "CIRA Сервер команды",
4766 "zh-chs": "CIRA服務器命令",
4767 "xloc": [
4768 - "default.handlebars->27->1840"
4768 + "default.handlebars->27->1851"
4769 ]
4770 },
4771 {
@@ -4782,7 +4782,7 @@
4782 "zh-chs": "CPU",
4783 "xloc": [
4784 "default-mobile.handlebars->9->368",
4785 - "default.handlebars->27->884"
4785 + "default.handlebars->27->895"
4786 ]
4787 },
4788 {
@@ -4799,7 +4799,7 @@
4799 "ru": "Загрузка CPU",
4800 "zh-chs": "CPU負載",
4801 "xloc": [
4802 - "default.handlebars->27->1803"
4802 + "default.handlebars->27->1814"
4803 ]
4804 },
4805 {
@@ -4816,7 +4816,7 @@
4816 "ru": "Загрузка CPU за последние 15 минут",
4817 "zh-chs": "最近15分鐘的CPU負載",
4818 "xloc": [
4819 - "default.handlebars->27->1806"
4819 + "default.handlebars->27->1817"
4820 ]
4821 },
4822 {
@@ -4833,7 +4833,7 @@
4833 "ru": "Загрузка CPU за последние 5 минут",
4834 "zh-chs": "最近5分鐘的CPU負載",
4835 "xloc": [
4836 - "default.handlebars->27->1805"
4836 + "default.handlebars->27->1816"
4837 ]
4838 },
4839 {
@@ -4850,7 +4850,7 @@
4850 "ru": "Загрузка CPU за последнюю минуту",
4851 "zh-chs": "最後一分鐘的CPU負載",
4852 "xloc": [
4853 - "default.handlebars->27->1804"
4853 + "default.handlebars->27->1815"
4854 ]
4855 },
4856 {
@@ -4867,8 +4867,8 @@
4867 "ru": "CR+LF",
4868 "zh-chs": "CR +低頻",
4869 "xloc": [
4870 - "default.handlebars->27->768",
4871 - "default.handlebars->27->777",
4870 + "default.handlebars->27->779",
4871 + "default.handlebars->27->788",
4872 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
4873 ]
4874 },
@@ -4886,9 +4886,9 @@
4886 "ru": "Формат CSV",
4887 "zh-chs": "CSV格式",
4888 "xloc": [
4889 - "default.handlebars->27->1453",
4890 - "default.handlebars->27->1512",
4891 - "default.handlebars->27->431"
4889 + "default.handlebars->27->1464",
4890 + "default.handlebars->27->1523",
4891 + "default.handlebars->27->437"
4892 ]
4893 },
4894 {
@@ -4905,7 +4905,7 @@
4905 "ru": "Ошибка вызова",
4906 "zh-chs": "通話錯誤",
4907 "xloc": [
4908 - "default.handlebars->27->1852"
4908 + "default.handlebars->27->1863"
4909 ]
4910 },
4911 {
@@ -4924,7 +4924,7 @@
4924 "xloc": [
4925 "default-mobile.handlebars->9->82",
4926 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
4927 - "default.handlebars->27->1187",
4927 + "default.handlebars->27->1198",
4928 "default.handlebars->container->dialog->idx_dlgButtonBar",
4929 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
4930 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -4944,8 +4944,8 @@
4944 "xloc": [
4945 "default-mobile.handlebars->9->376",
4946 "default-mobile.handlebars->9->378",
4947 - "default.handlebars->27->892",
4948 - "default.handlebars->27->894"
4947 + "default.handlebars->27->903",
4948 + "default.handlebars->27->905"
4949 ]
4950 },
4951 {
@@ -4963,7 +4963,7 @@
4963 "zh-chs": "容量/速度",
4964 "xloc": [
4965 "default-mobile.handlebars->9->371",
4966 - "default.handlebars->27->887"
4966 + "default.handlebars->27->898"
4967 ]
4968 },
4969 {
@@ -4980,7 +4980,7 @@
4980 "ru": "Каталонский",
4981 "zh-chs": "加泰羅尼亞語",
4982 "xloc": [
4983 - "default.handlebars->27->968"
4983 + "default.handlebars->27->979"
4984 ]
4985 },
4986 {
@@ -4997,7 +4997,7 @@
4997 "ru": "Установить центр карты здесь",
4998 "zh-chs": "中心地圖在這裡",
4999 "xloc": [
5000 - "default.handlebars->27->477"
5000 + "default.handlebars->27->483"
5001 ]
5002 },
5003 {
@@ -5014,7 +5014,7 @@
5014 "ru": "Чаморро",
5015 "zh-chs": "查莫羅",
5016 "xloc": [
5017 - "default.handlebars->27->969"
5017 + "default.handlebars->27->980"
5018 ]
5019 },
5020 {
@@ -5045,7 +5045,7 @@
5045 "ru": "Смена email для {0}",
5046 "zh-chs": "更改{0}的電子郵件",
5047 "xloc": [
5048 - "default.handlebars->27->1700"
5048 + "default.handlebars->27->1711"
5049 ]
5050 },
5051 {
@@ -5062,9 +5062,9 @@
5062 "ru": "Смена группы",
5063 "zh-chs": "變更組",
5064 "xloc": [
5065 - "default.handlebars->27->571",
5066 - "default.handlebars->27->684",
5067 - "default.handlebars->27->685"
5065 + "default.handlebars->27->577",
5066 + "default.handlebars->27->695",
5067 + "default.handlebars->27->696"
5068 ]
5069 },
5070 {
@@ -5082,8 +5082,8 @@
5082 "zh-chs": "更改密碼",
5083 "xloc": [
5084 "default-mobile.handlebars->9->90",
5085 - "default.handlebars->27->1163",
5086 - "default.handlebars->27->1687"
5085 + "default.handlebars->27->1174",
5086 + "default.handlebars->27->1698"
5087 ]
5088 },
5089 {
@@ -5100,13 +5100,13 @@
5100 "ru": "Смена пароля для {0}",
5101 "zh-chs": "更改{0}的密碼",
5102 "xloc": [
5103 - "default.handlebars->27->1707"
5103 + "default.handlebars->27->1718"
5104 ]
5105 },
5106 {
5107 "en": "Change Real Name for {0}",
5108 "xloc": [
5109 - "default.handlebars->27->1695"
5109 + "default.handlebars->27->1706"
5110 ]
5111 },
5112 {
@@ -5176,7 +5176,7 @@
5176 "ru": "Изменить пароль для этого пользователя",
5177 "zh-chs": "更改該用戶的密碼",
5178 "xloc": [
5179 - "default.handlebars->27->1686"
5179 + "default.handlebars->27->1697"
5180 ]
5181 },
5182 {
@@ -5210,7 +5210,7 @@
5210 "ru": "Измените адрес электронной почты вашей учетной записи здесь.",
5211 "zh-chs": "在此處更改您的帳戶電子郵件地址。",
5212 "xloc": [
5213 - "default.handlebars->27->1150"
5213 + "default.handlebars->27->1161"
5214 ]
5215 },
5216 {
@@ -5227,7 +5227,7 @@
5227 "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.",
5228 "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
5229 "xloc": [
5230 - "default.handlebars->27->1156"
5230 + "default.handlebars->27->1167"
5231 ]
5232 },
5233 {
@@ -5244,7 +5244,7 @@
5244 "ru": "Изменение языка потребует перезагрузить страницу.",
5245 "zh-chs": "更改語言將需要刷新頁面。",
5246 "xloc": [
5247 - "default.handlebars->27->1135"
5247 + "default.handlebars->27->1146"
5248 ]
5249 },
5250 {
@@ -5261,9 +5261,9 @@
5261 "ru": "Чат",
5262 "zh-chs": "聊天室",
5263 "xloc": [
5264 - "default.handlebars->27->1470",
5265 - "default.handlebars->27->624",
5266 - "default.handlebars->27->643"
5264 + "default.handlebars->27->1481",
5265 + "default.handlebars->27->630",
5266 + "default.handlebars->27->649"
5267 ]
5268 },
5269 {
@@ -5282,8 +5282,8 @@
5282 "xloc": [
5283 "default-mobile.handlebars->9->415",
5284 "default-mobile.handlebars->9->433",
5285 - "default.handlebars->27->1332",
5286 - "default.handlebars->27->1366"
5285 + "default.handlebars->27->1343",
5286 + "default.handlebars->27->1377"
5287 ]
5288 },
5289 {
@@ -5307,7 +5307,7 @@
5307 "ru": "Чеченский",
5308 "zh-chs": "車臣",
5309 "xloc": [
5310 - "default.handlebars->27->970"
5310 + "default.handlebars->27->981"
5311 ]
5312 },
5313 {
@@ -5388,8 +5388,8 @@
5388 "ru": "Проверка...",
5389 "zh-chs": "檢查...",
5390 "xloc": [
5391 - "default.handlebars->27->1846",
5392 - "default.handlebars->27->936"
5391 + "default.handlebars->27->1857",
5392 + "default.handlebars->27->947"
5393 ]
5394 },
5395 {
@@ -5406,7 +5406,7 @@
5406 "ru": "Китайский",
5407 "zh-chs": "中文",
5408 "xloc": [
5409 - "default.handlebars->27->971"
5409 + "default.handlebars->27->982"
5410 ]
5411 },
5412 {
@@ -5423,7 +5423,7 @@
5423 "ru": "Китайский (Гонконг)",
5424 "zh-chs": "中文(香港)",
5425 "xloc": [
5426 - "default.handlebars->27->972"
5426 + "default.handlebars->27->983"
5427 ]
5428 },
5429 {
@@ -5440,7 +5440,7 @@
5440 "ru": "Китайский (КНР)",
5441 "zh-chs": "中文(中國)",
5442 "xloc": [
5443 - "default.handlebars->27->973"
5443 + "default.handlebars->27->984"
5444 ]
5445 },
5446 {
@@ -5457,7 +5457,7 @@
5457 "ru": "Упрощенный китайский)",
5458 "zh-chs": "简体中文)",
5459 "xloc": [
5460 - "default.handlebars->27->1133"
5460 + "default.handlebars->27->1144"
5461 ]
5462 },
5463 {
@@ -5474,7 +5474,7 @@
5474 "ru": "Китайский (Сингапур)",
5475 "zh-chs": "中文(新加坡)",
5476 "xloc": [
5477 - "default.handlebars->27->974"
5477 + "default.handlebars->27->985"
5478 ]
5479 },
5480 {
@@ -5491,7 +5491,7 @@
5491 "ru": "Китайский (Тайвань)",
5492 "zh-chs": "中文(台灣)",
5493 "xloc": [
5494 - "default.handlebars->27->975"
5494 + "default.handlebars->27->986"
5495 ]
5496 },
5497 {
@@ -5526,7 +5526,7 @@
5526 "ru": "Чувашский",
5527 "zh-chs": "楚瓦什",
5528 "xloc": [
5529 - "default.handlebars->27->976"
5529 + "default.handlebars->27->987"
5530 ]
5531 },
5532 {
@@ -5566,11 +5566,11 @@
5566 "default-mobile.handlebars->9->311",
5567 "default-mobile.handlebars->9->313",
5568 "default-mobile.handlebars->9->59",
5569 - "default.handlebars->27->1447",
5570 - "default.handlebars->27->803",
5571 - "default.handlebars->27->805",
5572 - "default.handlebars->27->807",
5573 - "default.handlebars->27->809",
5569 + "default.handlebars->27->1458",
5570 + "default.handlebars->27->814",
5571 + "default.handlebars->27->816",
5572 + "default.handlebars->27->818",
5573 + "default.handlebars->27->820",
5574 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
5575 "default.handlebars->container->column_l->p41->3->1",
5576 "messenger.handlebars->xbottom"
@@ -5604,7 +5604,7 @@
5604 "nl": "Wis alle meldingen",
5605 "zh-chs": "全部清除",
5606 "xloc": [
5607 - "default.handlebars->27->1776"
5607 + "default.handlebars->27->1787"
5608 ]
5609 },
5610 {
@@ -5621,7 +5621,7 @@
5621 "ru": "Очистить ядро",
5622 "zh-chs": "清除核心",
5623 "xloc": [
5624 - "default.handlebars->27->908"
5624 + "default.handlebars->27->919"
5625 ]
5626 },
5627 {
@@ -5654,7 +5654,7 @@
5654 "ru": "Очистить это уведомление",
5655 "zh-chs": "清除此通知",
5656 "xloc": [
5657 - "default.handlebars->27->1775"
5657 + "default.handlebars->27->1786"
5658 ]
5659 },
5660 {
@@ -5699,8 +5699,8 @@
5699 "nl": "Klik hier om de apparaatgroepsnaam te bewerken",
5700 "zh-chs": "单击此处编辑设备组名称",
5701 "xloc": [
5702 - "default.handlebars->27->1198",
5703 - "default.handlebars->27->1403"
5702 + "default.handlebars->27->1209",
5703 + "default.handlebars->27->1414"
5704 ]
5705 },
5706 {
@@ -5717,7 +5717,7 @@
5717 "ru": "Для изменения имени устройства на сервере нажмите сюда",
5718 "zh-chs": "單擊此處編輯服務器端設備名稱",
5719 "xloc": [
5720 - "default.handlebars->27->493"
5720 + "default.handlebars->27->499"
5721 ]
5722 },
5723 {
@@ -5730,7 +5730,7 @@
5730 "nl": "Klik hier om de gebruikersgroepsnaam te bewerken",
5731 "zh-chs": "单击此处编辑用户组名称",
5732 "xloc": [
5733 - "default.handlebars->27->1575"
5733 + "default.handlebars->27->1586"
5734 ]
5735 },
5736 {
@@ -5780,7 +5780,7 @@
5780 "zh-chs": "單擊確定將驗證郵件發送到:",
5781 "xloc": [
5782 "default-mobile.handlebars->9->75",
5783 - "default.handlebars->27->1147"
5783 + "default.handlebars->27->1158"
5784 ]
5785 },
5786 {
@@ -5815,7 +5815,7 @@
5815 "zh-chs": "客戶端控制模式(CCM)",
5816 "xloc": [
5817 "default-mobile.handlebars->9->349",
5818 - "default.handlebars->27->865"
5818 + "default.handlebars->27->876"
5819 ]
5820 },
5821 {
@@ -5832,8 +5832,8 @@
5832 "ru": "Клиент инициировал удаленный доступ",
5833 "zh-chs": "客戶端啟動的遠程訪問",
5834 "xloc": [
5835 - "default.handlebars->27->1269",
5836 - "default.handlebars->27->1274"
5835 + "default.handlebars->27->1280",
5836 + "default.handlebars->27->1285"
5837 ]
5838 },
5839 {
@@ -5870,7 +5870,7 @@
5870 "default-mobile.handlebars->9->57",
5871 "default.handlebars->27->137",
5872 "default.handlebars->27->145",
5873 - "default.handlebars->27->761"
5873 + "default.handlebars->27->772"
5874 ]
5875 },
5876 {
@@ -5913,8 +5913,8 @@
5913 "ru": "Общие группы устройств",
5914 "zh-chs": "通用設備組",
5915 "xloc": [
5916 - "default.handlebars->27->1594",
5917 - "default.handlebars->27->1712"
5916 + "default.handlebars->27->1605",
5917 + "default.handlebars->27->1723"
5918 ]
5919 },
5920 {
@@ -5931,8 +5931,8 @@
5931 "ru": "Общие устройства",
5932 "zh-chs": "通用設備",
5933 "xloc": [
5934 - "default.handlebars->27->1600",
5935 - "default.handlebars->27->1724"
5934 + "default.handlebars->27->1611",
5935 + "default.handlebars->27->1735"
5936 ]
5937 },
5938 {
@@ -5950,7 +5950,7 @@
5950 "zh-chs": "將{1}入口{2}中的{0}限製到此位置?",
5951 "xloc": [
5952 "default-mobile.handlebars->9->127",
5953 - "default.handlebars->27->1442"
5953 + "default.handlebars->27->1453"
5954 ]
5955 },
5956 {
@@ -5969,14 +5969,14 @@
5969 "xloc": [
5970 "default-mobile.handlebars->9->269",
5971 "default-mobile.handlebars->9->395",
5972 - "default.handlebars->27->1283",
5973 - "default.handlebars->27->1496",
5974 - "default.handlebars->27->1565",
5975 - "default.handlebars->27->1614",
5976 - "default.handlebars->27->1710",
5977 - "default.handlebars->27->428",
5978 - "default.handlebars->27->679",
5979 - "default.handlebars->27->688"
5972 + "default.handlebars->27->1294",
5973 + "default.handlebars->27->1507",
5974 + "default.handlebars->27->1576",
5975 + "default.handlebars->27->1625",
5976 + "default.handlebars->27->1721",
5977 + "default.handlebars->27->429",
5978 + "default.handlebars->27->690",
5979 + "default.handlebars->27->699"
5980 ]
5981 },
5982 {
@@ -5994,7 +5994,7 @@
5994 "zh-chs": "確認將1個副本複製到此位置?",
5995 "xloc": [
5996 "default-mobile.handlebars->9->302",
5997 - "default.handlebars->27->798"
5997 + "default.handlebars->27->809"
5998 ]
5999 },
6000 {
@@ -6012,7 +6012,7 @@
6012 "zh-chs": "確認{0}個條目的副本到此位置?",
6013 "xloc": [
6014 "default-mobile.handlebars->9->301",
6015 - "default.handlebars->27->797"
6015 + "default.handlebars->27->808"
6016 ]
6017 },
6018 {
@@ -6026,7 +6026,7 @@
6026 "nl": "Bevestig verwijdering geselecteerde account(s)?",
6027 "zh-chs": "确认删除选定的帐户?",
6028 "xloc": [
6029 - "default.handlebars->27->1495"
6029 + "default.handlebars->27->1506"
6030 ]
6031 },
6032 {
@@ -6043,7 +6043,7 @@
6043 "ru": "Подтвердить удаление выбранных устройств?",
6044 "zh-chs": "確認刪除所選設備?",
6045 "xloc": [
6046 - "default.handlebars->27->427"
6046 + "default.handlebars->27->428"
6047 ]
6048 },
6049 {
@@ -6057,7 +6057,7 @@
6057 "nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?",
6058 "zh-chs": "确认删除选定的用户组?",
6059 "xloc": [
6060 - "default.handlebars->27->1564"
6060 + "default.handlebars->27->1575"
6061 ]
6062 },
6063 {
@@ -6074,7 +6074,7 @@
6074 "ru": "Подтвердить удаление пользователя {0}?",
6075 "zh-chs": "確認刪除用戶{0}?",
6076 "xloc": [
6077 - "default.handlebars->27->1709"
6077 + "default.handlebars->27->1720"
6078 ]
6079 },
6080 {
@@ -6088,7 +6088,7 @@
6088 "nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?",
6089 "zh-chs": "确认删除用户\\“ {0} \\”的成员身份?",
6090 "xloc": [
6091 - "default.handlebars->27->1617"
6091 + "default.handlebars->27->1628"
6092 ]
6093 },
6094 {
@@ -6102,7 +6102,7 @@
6102 "nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?",
6103 "zh-chs": "确认删除用户组 “{0}” 的成员身份?",
6104 "xloc": [
6105 - "default.handlebars->27->1739"
6105 + "default.handlebars->27->1750"
6106 ]
6107 },
6108 {
@@ -6120,7 +6120,7 @@
6120 "zh-chs": "確認將1個入口移動到此位置?",
6121 "xloc": [
6122 "default-mobile.handlebars->9->304",
6123 - "default.handlebars->27->800"
6123 + "default.handlebars->27->811"
6124 ]
6125 },
6126 {
@@ -6138,7 +6138,7 @@
6138 "zh-chs": "確認將{0}個條目移到此位置?",
6139 "xloc": [
6140 "default-mobile.handlebars->9->303",
6141 - "default.handlebars->27->799"
6141 + "default.handlebars->27->810"
6142 ]
6143 },
6144 {
@@ -6155,7 +6155,7 @@
6155 "ru": "Подтвердить перезапись?",
6156 "zh-chs": "確認覆蓋?",
6157 "xloc": [
6158 - "default.handlebars->27->1441"
6158 + "default.handlebars->27->1452"
6159 ]
6160 },
6161 {
@@ -6169,8 +6169,8 @@
6169 "nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?",
6170 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
6171 "xloc": [
6172 - "default.handlebars->27->1607",
6173 - "default.handlebars->27->1730"
6172 + "default.handlebars->27->1618",
6173 + "default.handlebars->27->1741"
6174 ]
6175 },
6176 {
@@ -6184,8 +6184,8 @@
6184 "nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?",
6185 "zh-chs": "是否确认删除设备组“ {0}”的访问权限?",
6186 "xloc": [
6187 - "default.handlebars->27->1609",
6188 - "default.handlebars->27->1743"
6187 + "default.handlebars->27->1620",
6188 + "default.handlebars->27->1754"
6189 ]
6190 },
6191 {
@@ -6199,7 +6199,7 @@
6199 "nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?",
6200 "zh-chs": "确认删除用户\\“ {0} \\”的访问权限?",
6201 "xloc": [
6202 - "default.handlebars->27->1732"
6202 + "default.handlebars->27->1743"
6203 ]
6204 },
6205 {
@@ -6213,7 +6213,7 @@
6213 "nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?",
6214 "zh-chs": "确认删除用户组“ {0}”的访问权限?",
6215 "xloc": [
6216 - "default.handlebars->27->1735"
6216 + "default.handlebars->27->1746"
6217 ]
6218 },
6219 {
@@ -6227,8 +6227,8 @@
6227 "nl": "Verwijdering van toegangsrechten bevestigen?",
6228 "zh-chs": "确认删除访问权限?",
6229 "xloc": [
6230 - "default.handlebars->27->1733",
6231 - "default.handlebars->27->1736"
6230 + "default.handlebars->27->1744",
6231 + "default.handlebars->27->1747"
6232 ]
6233 },
6234 {
@@ -6246,7 +6246,7 @@
6246 "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?",
6247 "xloc": [
6248 "default-mobile.handlebars->9->74",
6249 - "default.handlebars->27->926"
6249 + "default.handlebars->27->937"
6250 ]
6251 },
6252 {
@@ -6301,7 +6301,7 @@
6301 "nl": "Bevestig de verwijdering van rechten voor gebruiker \\\"{0}\\\"?",
6302 "zh-chs": "确认删除用户“ {0} ”的权限?",
6303 "xloc": [
6304 - "default.handlebars->27->1375"
6304 + "default.handlebars->27->1386"
6305 ]
6306 },
6307 {
@@ -6315,7 +6315,7 @@
6315 "nl": "Bevestig de verwijdering van rechten voor de gebruikergroep \\\"{0}\\\"?",
6316 "zh-chs": "确认删除用户组“ {0} ”的权限?",
6317 "xloc": [
6318 - "default.handlebars->27->1377"
6318 + "default.handlebars->27->1388"
6319 ]
6320 },
6321 {
@@ -6363,8 +6363,8 @@
6363 "default-mobile.handlebars->9->284",
6364 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
6365 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
6366 - "default.handlebars->27->1222",
6367 - "default.handlebars->27->780",
6366 + "default.handlebars->27->1233",
6367 + "default.handlebars->27->791",
6368 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
6369 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
6370 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -6404,8 +6404,8 @@
6404 "ru": "Подключиться к серверу",
6405 "zh-chs": "連接到服務器",
6406 "xloc": [
6407 - "default.handlebars->27->1273",
6408 - "default.handlebars->27->1277"
6407 + "default.handlebars->27->1284",
6408 + "default.handlebars->27->1288"
6409 ]
6410 },
6411 {
@@ -6476,7 +6476,7 @@
6476 "ru": "Подключено Intel&reg; AMT",
6477 "zh-chs": "連接的英特爾&reg;AMT",
6478 "xloc": [
6479 - "default.handlebars->27->1794"
6479 + "default.handlebars->27->1805"
6480 ]
6481 },
6482 {
@@ -6493,7 +6493,7 @@
6493 "ru": "Подключенные пользователи",
6494 "zh-chs": "關聯用戶",
6495 "xloc": [
6496 - "default.handlebars->27->1799"
6496 + "default.handlebars->27->1810"
6497 ]
6498 },
6499 {
@@ -6511,7 +6511,7 @@
6511 "zh-chs": "現在已連接",
6512 "xloc": [
6513 "default-mobile.handlebars->9->324",
6514 - "default.handlebars->27->830"
6514 + "default.handlebars->27->841"
6515 ]
6516 },
6517 {
@@ -6551,7 +6551,7 @@
6551 "default.handlebars->27->222",
6552 "default.handlebars->27->225",
6553 "default.handlebars->27->244",
6554 - "default.handlebars->27->821",
6554 + "default.handlebars->27->832",
6555 "default.handlebars->27->9",
6556 "xterm.handlebars->9->2"
6557 ]
@@ -6570,7 +6570,7 @@
6570 "ru": "Подключений ",
6571 "zh-chs": "連接數",
6572 "xloc": [
6573 - "default.handlebars->27->1810"
6573 + "default.handlebars->27->1821"
6574 ]
6575 },
6576 {
@@ -6587,7 +6587,7 @@
6587 "ru": "Ретранслятор подключения",
6588 "zh-chs": "連接繼電器",
6589 "xloc": [
6590 - "default.handlebars->27->1838"
6590 + "default.handlebars->27->1849"
6591 ]
6592 },
6593 {
@@ -6639,9 +6639,9 @@
6639 "zh-chs": "連接性",
6640 "xloc": [
6641 "default-mobile.handlebars->9->237",
6642 - "default.handlebars->27->1410",
6642 + "default.handlebars->27->1421",
6643 "default.handlebars->27->213",
6644 - "default.handlebars->27->560",
6644 + "default.handlebars->27->566",
6645 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
6646 ]
6647 },
@@ -6659,8 +6659,8 @@
6659 "ru": "Консоль",
6660 "zh-chs": "安慰",
6661 "xloc": [
6662 - "default.handlebars->27->619",
6663 - "default.handlebars->27->638",
6662 + "default.handlebars->27->625",
6663 + "default.handlebars->27->644",
6664 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
6665 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
6666 "default.handlebars->contextMenu->cxconsole"
@@ -6680,7 +6680,7 @@
6680 "ru": "Консоль - ",
6681 "zh-chs": "安慰 -",
6682 "xloc": [
6683 - "default.handlebars->27->494"
6683 + "default.handlebars->27->500"
6684 ]
6685 },
6686 {
@@ -6696,8 +6696,8 @@
6696 "ru": "контроль",
6697 "zh-chs": "控制",
6698 "xloc": [
6699 - "default.handlebars->27->618",
6700 - "default.handlebars->27->637",
6699 + "default.handlebars->27->624",
6700 + "default.handlebars->27->643",
6701 "messenger.handlebars->13->1"
6702 ]
6703 },
@@ -6715,7 +6715,7 @@
6715 "ru": "Cookie-кодировщик",
6716 "zh-chs": "Cookie編碼器",
6717 "xloc": [
6718 - "default.handlebars->27->1824"
6718 + "default.handlebars->27->1835"
6719 ]
6720 },
6721 {
@@ -6848,8 +6848,8 @@
6848 "ru": "Скопировать ссылку в буфер обмена",
6849 "zh-chs": "複製鏈接到剪貼板",
6850 "xloc": [
6851 - "default.handlebars->27->1415",
6852 - "default.handlebars->27->1429",
6851 + "default.handlebars->27->1426",
6852 + "default.handlebars->27->1440",
6853 "default.handlebars->27->341"
6854 ]
6855 },
@@ -7027,7 +7027,7 @@
7027 "ru": "Основной сервер",
7028 "zh-chs": "核心服務器",
7029 "xloc": [
7030 - "default.handlebars->27->1823"
7030 + "default.handlebars->27->1834"
7031 ]
7032 },
7033 {
@@ -7044,7 +7044,7 @@
7044 "ru": "Kорсиканский",
7045 "zh-chs": "科西嘉人",
7046 "xloc": [
7047 - "default.handlebars->27->977"
7047 + "default.handlebars->27->988"
7048 ]
7049 },
7050 {
@@ -7061,7 +7061,7 @@
7061 "ru": "Создать учетную запись",
7062 "zh-chs": "創建帳號",
7063 "xloc": [
7064 - "default.handlebars->27->1535",
7064 + "default.handlebars->27->1546",
7065 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
7066 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
7067 ]
@@ -7097,7 +7097,7 @@
7097 "ru": "Создать группу пользователей",
7098 "zh-chs": "創建用戶組",
7099 "xloc": [
7100 - "default.handlebars->27->1572"
7100 + "default.handlebars->27->1583"
7101 ]
7102 },
7103 {
@@ -7114,7 +7114,7 @@
7114 "ru": "Создайте новую группу устройств, используя параметры ниже.",
7115 "zh-chs": "使用以下選項創建一個新的設備組。",
7116 "xloc": [
7117 - "default.handlebars->27->1170"
7117 + "default.handlebars->27->1181"
7118 ]
7119 },
7120 {
@@ -7148,7 +7148,7 @@
7148 "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:",
7149 "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:",
7150 "xloc": [
7151 - "default.handlebars->27->1503"
7151 + "default.handlebars->27->1514"
7152 ]
7153 },
7154 {
@@ -7183,7 +7183,7 @@
7183 "ru": "Создано",
7184 "zh-chs": "創建",
7185 "xloc": [
7186 - "default.handlebars->27->1646"
7186 + "default.handlebars->27->1657"
7187 ]
7188 },
7189 {
@@ -7218,7 +7218,7 @@
7218 "ru": "Кри (Канадский язык)",
7219 "zh-chs": "克里",
7220 "xloc": [
7221 - "default.handlebars->27->978"
7221 + "default.handlebars->27->989"
7222 ]
7223 },
7224 {
@@ -7235,7 +7235,7 @@
7235 "ru": "Хорватский",
7236 "zh-chs": "克羅地亞語",
7237 "xloc": [
7238 - "default.handlebars->27->979"
7238 + "default.handlebars->27->990"
7239 ]
7240 },
7241 {
@@ -7376,7 +7376,7 @@
7376 "ru": "Чешский",
7377 "zh-chs": "捷克文",
7378 "xloc": [
7379 - "default.handlebars->27->980"
7379 + "default.handlebars->27->991"
7380 ]
7381 },
7382 {
@@ -7410,7 +7410,7 @@
7410 "ru": "Датский",
7411 "zh-chs": "丹麥文",
7412 "xloc": [
7413 - "default.handlebars->27->981"
7413 + "default.handlebars->27->992"
7414 ]
7415 },
7416 {
@@ -7427,7 +7427,7 @@
7427 "ru": "DataChannel",
7428 "zh-chs": "數據通道",
7429 "xloc": [
7430 - "default.handlebars->27->731"
7430 + "default.handlebars->27->742"
7431 ]
7432 },
7433 {
@@ -7444,7 +7444,7 @@
7444 "ru": "Дата & Время",
7445 "zh-chs": "日期和時間",
7446 "xloc": [
7447 - "default.handlebars->27->1138"
7447 + "default.handlebars->27->1149"
7448 ]
7449 },
7450 {
@@ -7462,7 +7462,7 @@
7462 "zh-chs": "天",
7463 "xloc": [
7464 "default-mobile.handlebars->9->259",
7465 - "default.handlebars->27->663"
7465 + "default.handlebars->27->674"
7466 ]
7467 },
7468 {
@@ -7479,7 +7479,7 @@
7479 "ru": "Деактивировать режим управления клиентом (CCM)",
7480 "zh-chs": "停用客戶端控制模式(CCM)",
7481 "xloc": [
7482 - "default.handlebars->27->1261"
7482 + "default.handlebars->27->1272"
7483 ]
7484 },
7485 {
@@ -7504,10 +7504,10 @@
7504 "en": "Default",
7505 "nl": "Standaard",
7506 "xloc": [
7507 - "default.handlebars->27->1522",
7508 - "default.handlebars->27->1568",
7507 + "default.handlebars->27->1533",
7508 "default.handlebars->27->1579",
7510 - "default.handlebars->27->1635"
7509 + "default.handlebars->27->1590",
7510 + "default.handlebars->27->1646"
7511 ]
7512 },
7513 {
@@ -7528,9 +7528,9 @@
7528 "default-mobile.handlebars->9->294",
7529 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
7530 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
7531 - "default.handlebars->27->1436",
7532 - "default.handlebars->27->464",
7533 - "default.handlebars->27->790",
7531 + "default.handlebars->27->1447",
7532 + "default.handlebars->27->470",
7533 + "default.handlebars->27->801",
7534 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
7535 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
7536 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -7554,7 +7554,7 @@
7554 "zh-chs": "刪除帳戶",
7555 "xloc": [
7556 "default-mobile.handlebars->9->84",
7557 - "default.handlebars->27->1155"
7557 + "default.handlebars->27->1166"
7558 ]
7559 },
7560 {
@@ -7568,7 +7568,7 @@
7568 "nl": "Verwijder accounts",
7569 "zh-chs": "删除帐号",
7570 "xloc": [
7571 - "default.handlebars->27->1497"
7571 + "default.handlebars->27->1508"
7572 ]
7573 },
7574 {
@@ -7586,7 +7586,7 @@
7586 "zh-chs": "刪除裝置",
7587 "xloc": [
7588 "default-mobile.handlebars->9->242",
7589 - "default.handlebars->27->573"
7589 + "default.handlebars->27->579"
7590 ]
7591 },
7592 {
@@ -7605,8 +7605,8 @@
7605 "xloc": [
7606 "default-mobile.handlebars->9->393",
7607 "default-mobile.handlebars->9->396",
7608 - "default.handlebars->27->1254",
7609 - "default.handlebars->27->1284"
7608 + "default.handlebars->27->1265",
7609 + "default.handlebars->27->1295"
7610 ]
7611 },
7612 {
@@ -7624,7 +7624,7 @@
7624 "zh-chs": "刪除節點",
7625 "xloc": [
7626 "default-mobile.handlebars->9->267",
7627 - "default.handlebars->27->689"
7627 + "default.handlebars->27->700"
7628 ]
7629 },
7630 {
@@ -7641,7 +7641,7 @@
7641 "ru": "Удалить устройства",
7642 "zh-chs": "刪除節點",
7643 "xloc": [
7644 - "default.handlebars->27->429"
7644 + "default.handlebars->27->430"
7645 ]
7646 },
7647 {
@@ -7658,7 +7658,7 @@
7658 "ru": "Удалить пользователя",
7659 "zh-chs": "刪除用戶",
7660 "xloc": [
7661 - "default.handlebars->27->1685"
7661 + "default.handlebars->27->1696"
7662 ]
7663 },
7664 {
@@ -7675,8 +7675,8 @@
7675 "ru": "Удалить группу пользователей",
7676 "zh-chs": "刪除用戶組",
7677 "xloc": [
7678 - "default.handlebars->27->1605",
7679 - "default.handlebars->27->1615"
7678 + "default.handlebars->27->1616",
7679 + "default.handlebars->27->1626"
7680 ]
7681 },
7682 {
@@ -7690,7 +7690,7 @@
7690 "nl": "Gebruikersgroepen verwijderen",
7691 "zh-chs": "删除用户组",
7692 "xloc": [
7693 - "default.handlebars->27->1566"
7693 + "default.handlebars->27->1577"
7694 ]
7695 },
7696 {
@@ -7707,7 +7707,7 @@
7707 "ru": "Удалить пользователя {0}",
7708 "zh-chs": "刪除用戶{0}",
7709 "xloc": [
7710 - "default.handlebars->27->1708"
7710 + "default.handlebars->27->1719"
7711 ]
7712 },
7713 {
@@ -7725,7 +7725,7 @@
7725 "zh-chs": "刪除帳戶",
7726 "xloc": [
7727 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
7728 - "default.handlebars->27->1493",
7728 + "default.handlebars->27->1504",
7729 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
7730 ]
7731 },
@@ -7743,7 +7743,7 @@
7743 "ru": "Удалить устройства",
7744 "zh-chs": "刪除設備",
7745 "xloc": [
7746 - "default.handlebars->27->425"
7746 + "default.handlebars->27->426"
7747 ]
7748 },
7749 {
@@ -7757,7 +7757,7 @@
7757 "nl": "Verwijder groep",
7758 "zh-chs": "删除群组",
7759 "xloc": [
7760 - "default.handlebars->27->1562"
7760 + "default.handlebars->27->1573"
7761 ]
7762 },
7763 {
@@ -7774,7 +7774,7 @@
7774 "ru": "Удалить пункт?",
7775 "zh-chs": "刪除項目?",
7776 "xloc": [
7777 - "default.handlebars->27->465"
7777 + "default.handlebars->27->471"
7778 ]
7779 },
7780 {
@@ -7793,8 +7793,8 @@
7793 "xloc": [
7794 "default-mobile.handlebars->9->124",
7795 "default-mobile.handlebars->9->296",
7796 - "default.handlebars->27->1438",
7797 - "default.handlebars->27->792"
7796 + "default.handlebars->27->1449",
7797 + "default.handlebars->27->803"
7798 ]
7799 },
7800 {
@@ -7811,7 +7811,7 @@
7811 "ru": "Удалить группу пользователей {0}?",
7812 "zh-chs": "刪除用戶組{0}?",
7813 "xloc": [
7814 - "default.handlebars->27->1613"
7814 + "default.handlebars->27->1624"
7815 ]
7816 },
7817 {
@@ -7830,8 +7830,8 @@
7830 "xloc": [
7831 "default-mobile.handlebars->9->123",
7832 "default-mobile.handlebars->9->295",
7833 - "default.handlebars->27->1437",
7834 - "default.handlebars->27->791"
7833 + "default.handlebars->27->1448",
7834 + "default.handlebars->27->802"
7835 ]
7836 },
7837 {
@@ -7861,7 +7861,7 @@
7861 "ko": "거부",
7862 "zh-chs": "被拒绝",
7863 "xloc": [
7864 - "default.handlebars->27->727"
7864 + "default.handlebars->27->738"
7865 ]
7866 },
7867 {
@@ -7945,19 +7945,19 @@
7945 "default-mobile.handlebars->9->330",
7946 "default-mobile.handlebars->9->385",
7947 "default-mobile.handlebars->9->398",
7948 - "default.handlebars->27->1175",
7949 - "default.handlebars->27->1203",
7950 - "default.handlebars->27->1286",
7951 - "default.handlebars->27->1571",
7952 - "default.handlebars->27->1581",
7948 + "default.handlebars->27->1186",
7949 + "default.handlebars->27->1214",
7950 + "default.handlebars->27->1297",
7951 "default.handlebars->27->1582",
7954 - "default.handlebars->27->1611",
7955 - "default.handlebars->27->505",
7956 - "default.handlebars->27->506",
7957 - "default.handlebars->27->722",
7952 + "default.handlebars->27->1592",
7953 + "default.handlebars->27->1593",
7954 + "default.handlebars->27->1622",
7955 + "default.handlebars->27->511",
7956 + "default.handlebars->27->512",
7957 + "default.handlebars->27->733",
7958 "default.handlebars->27->77",
7959 - "default.handlebars->27->836",
7960 - "default.handlebars->27->846",
7959 + "default.handlebars->27->847",
7960 + "default.handlebars->27->857",
7961 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
7962 ]
7963 },
@@ -7990,9 +7990,9 @@
7990 "zh-chs": "桌面",
7991 "xloc": [
7992 "default-mobile.handlebars->9->249",
7993 - "default.handlebars->27->1291",
7994 - "default.handlebars->27->1753",
7995 - "default.handlebars->27->470",
7993 + "default.handlebars->27->1302",
7994 + "default.handlebars->27->1764",
7995 + "default.handlebars->27->476",
7996 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
7997 "default.handlebars->contextMenu->cxdesktop"
7998 ]
@@ -8028,9 +8028,9 @@
8028 "ru": "Уведомление на рабочем столе",
8029 "zh-chs": "桌面通知",
8030 "xloc": [
8031 - "default.handlebars->27->1213",
8032 - "default.handlebars->27->1661",
8033 - "default.handlebars->27->541"
8031 + "default.handlebars->27->1224",
8032 + "default.handlebars->27->1672",
8033 + "default.handlebars->27->547"
8034 ]
8035 },
8036 {
@@ -8047,9 +8047,9 @@
8047 "ru": "Запрос рабочего стола",
8048 "zh-chs": "桌面提示",
8049 "xloc": [
8050 - "default.handlebars->27->1212",
8051 - "default.handlebars->27->1660",
8052 - "default.handlebars->27->540"
8050 + "default.handlebars->27->1223",
8051 + "default.handlebars->27->1671",
8052 + "default.handlebars->27->546"
8053 ]
8054 },
8055 {
@@ -8066,9 +8066,9 @@
8066 "ru": "Запрос рабочего стола + панель инструментов",
8067 "zh-chs": "桌面提示+工具欄",
8068 "xloc": [
8069 - "default.handlebars->27->1210",
8070 - "default.handlebars->27->1658",
8071 - "default.handlebars->27->538"
8069 + "default.handlebars->27->1221",
8070 + "default.handlebars->27->1669",
8071 + "default.handlebars->27->544"
8072 ]
8073 },
8074 {
@@ -8099,9 +8099,9 @@
8099 "ru": "Панель инструментов рабочего стола",
8100 "zh-chs": "桌面工具欄",
8101 "xloc": [
8102 - "default.handlebars->27->1211",
8103 - "default.handlebars->27->1659",
8104 - "default.handlebars->27->539"
8102 + "default.handlebars->27->1222",
8103 + "default.handlebars->27->1670",
8104 + "default.handlebars->27->545"
8105 ]
8106 },
8107 {
@@ -8172,8 +8172,8 @@
8172 "ru": "Устройство",
8173 "zh-chs": "設備",
8174 "xloc": [
8175 - "default.handlebars->27->1313",
8176 - "default.handlebars->27->1727",
8175 + "default.handlebars->27->1324",
8176 + "default.handlebars->27->1738",
8177 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
8178 ]
8179 },
@@ -8192,7 +8192,7 @@
8192 "zh-chs": "設備動作",
8193 "xloc": [
8194 "default-mobile.handlebars->9->258",
8195 - "default.handlebars->27->662"
8195 + "default.handlebars->27->669"
8196 ]
8197 },
8198 {
@@ -8209,13 +8209,13 @@
8209 "ru": "Группа устройства",
8210 "zh-chs": "設備組",
8211 "xloc": [
8212 - "default.handlebars->27->1308",
8213 - "default.handlebars->27->1311",
8214 - "default.handlebars->27->1312",
8215 - "default.handlebars->27->1597",
8216 - "default.handlebars->27->1603",
8217 - "default.handlebars->27->1715",
8218 - "default.handlebars->27->1762"
8212 + "default.handlebars->27->1319",
8213 + "default.handlebars->27->1322",
8214 + "default.handlebars->27->1323",
8215 + "default.handlebars->27->1608",
8216 + "default.handlebars->27->1614",
8217 + "default.handlebars->27->1726",
8218 + "default.handlebars->27->1773"
8219 ]
8220 },
8221 {
@@ -8233,7 +8233,7 @@
8233 "zh-chs": "設備組用戶",
8234 "xloc": [
8235 "default-mobile.handlebars->9->440",
8236 - "default.handlebars->27->1373"
8236 + "default.handlebars->27->1384"
8237 ]
8238 },
8239 {
@@ -8251,11 +8251,11 @@
8251 "zh-chs": "設備組",
8252 "xloc": [
8253 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
8254 - "default.handlebars->27->1462",
8255 - "default.handlebars->27->1556",
8256 - "default.handlebars->27->1584",
8257 - "default.handlebars->27->1655",
8258 - "default.handlebars->27->1797",
8254 + "default.handlebars->27->1473",
8255 + "default.handlebars->27->1567",
8256 + "default.handlebars->27->1595",
8257 + "default.handlebars->27->1666",
8258 + "default.handlebars->27->1808",
8259 "default.handlebars->container->column_l->p2->p2info->7"
8260 ]
8261 },
@@ -8273,7 +8273,7 @@
8273 "ru": "Экспорт информации об устройстве",
8274 "zh-chs": "設備信息導出",
8275 "xloc": [
8276 - "default.handlebars->27->435"
8276 + "default.handlebars->27->441"
8277 ]
8278 },
8279 {
@@ -8290,7 +8290,7 @@
8290 "ru": "Местонахождение устройства",
8291 "zh-chs": "設備位置",
8292 "xloc": [
8293 - "default.handlebars->27->690"
8293 + "default.handlebars->27->701"
8294 ]
8295 },
8296 {
@@ -8298,7 +8298,7 @@
8298 "nl": "Apparaatbericht",
8299 "fr": "Message de Service",
8300 "xloc": [
8301 - "default.handlebars->27->651"
8301 + "default.handlebars->27->657"
8302 ]
8303 },
8304 {
@@ -8316,9 +8316,9 @@
8316 "zh-chs": "設備名稱",
8317 "xloc": [
8318 "default-mobile.handlebars->9->271",
8319 - "default.handlebars->27->1761",
8319 + "default.handlebars->27->1772",
8320 "default.handlebars->27->262",
8321 - "default.handlebars->27->720",
8321 + "default.handlebars->27->731",
8322 "player.handlebars->3->9"
8323 ]
8324 },
@@ -8336,7 +8336,7 @@
8336 "ru": "Уведомление устройства",
8337 "zh-chs": "設備通知",
8338 "xloc": [
8339 - "default.handlebars->27->653"
8339 + "default.handlebars->27->659"
8340 ]
8341 },
8342 {
@@ -8370,8 +8370,8 @@
8370 "ru": "Подключения устройств.",
8371 "zh-chs": "設備連接。",
8372 "xloc": [
8373 - "default.handlebars->27->1143",
8374 - "default.handlebars->27->1394"
8373 + "default.handlebars->27->1154",
8374 + "default.handlebars->27->1405"
8375 ]
8376 },
8377 {
@@ -8388,8 +8388,8 @@
8388 "ru": "Отключения устройств.",
8389 "zh-chs": "設備斷開連接。",
8390 "xloc": [
8391 - "default.handlebars->27->1144",
8392 - "default.handlebars->27->1395"
8391 + "default.handlebars->27->1155",
8392 + "default.handlebars->27->1406"
8393 ]
8394 },
8395 {
@@ -8406,7 +8406,7 @@
8406 "ru": "Примечания могут быть просмотрены и изменены другими администраторами.",
8407 "zh-chs": "其他設備組管理員可以查看和更改設備組註釋。",
8408 "xloc": [
8409 - "default.handlebars->27->649"
8409 + "default.handlebars->27->655"
8410 ]
8411 },
8412 {
@@ -8416,7 +8416,7 @@
8416 "default-mobile.handlebars->9->152",
8417 "default-mobile.handlebars->9->205",
8418 "default.handlebars->27->193",
8419 - "default.handlebars->27->491"
8419 + "default.handlebars->27->497"
8420 ]
8421 },
8422 {
@@ -8618,7 +8618,7 @@
8618 "default-mobile.handlebars->9->151",
8619 "default-mobile.handlebars->9->204",
8620 "default.handlebars->27->192",
8621 - "default.handlebars->27->490"
8621 + "default.handlebars->27->496"
8622 ]
8623 },
8624 {
@@ -8688,7 +8688,7 @@
8688 "ru": "Имя устройства",
8689 "zh-chs": "設備名稱",
8690 "xloc": [
8691 - "default.handlebars->27->482"
8691 + "default.handlebars->27->488"
8692 ]
8693 },
8694 {
@@ -8716,8 +8716,8 @@
8716 "nl": "Apparaten",
8717 "zh-chs": "设备",
8718 "xloc": [
8719 - "default.handlebars->27->1557",
8720 - "default.handlebars->27->1585"
8719 + "default.handlebars->27->1568",
8720 + "default.handlebars->27->1596"
8721 ]
8722 },
8723 {
@@ -8734,7 +8734,7 @@
8734 "ru": "Отключено",
8735 "zh-chs": "殘障人士",
8736 "xloc": [
8737 - "default.handlebars->27->533"
8737 + "default.handlebars->27->539"
8738 ]
8739 },
8740 {
@@ -8753,8 +8753,8 @@
8753 "xloc": [
8754 "default-mobile.handlebars->9->285",
8755 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8756 - "default.handlebars->27->1223",
8757 - "default.handlebars->27->781",
8756 + "default.handlebars->27->1234",
8757 + "default.handlebars->27->792",
8758 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
8759 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
8760 "xterm.handlebars->p11->deskarea0->deskarea1->3"
@@ -8810,7 +8810,7 @@
8810 "nl": "Geef een berichtvenster weer op het externe apparaat.",
8811 "fr": "Afficher un message sur le poste distant",
8812 "xloc": [
8813 - "default.handlebars->27->652"
8813 + "default.handlebars->27->658"
8814 ]
8815 },
8816 {
@@ -8835,7 +8835,7 @@
8835 "nl": "Geef een tekstbericht weer op het externe apparaat",
8836 "fr": "Afficher un message sur le poste distant",
8837 "xloc": [
8838 - "default.handlebars->27->569"
8838 + "default.handlebars->27->575"
8839 ]
8840 },
8841 {
@@ -8852,7 +8852,7 @@
8852 "ru": "Отобразить имя группы устройств",
8853 "zh-chs": "顯示設備組名稱",
8854 "xloc": [
8855 - "default.handlebars->27->1142"
8855 + "default.handlebars->27->1153"
8856 ]
8857 },
8858 {
@@ -8869,7 +8869,7 @@
8869 "ru": "Отображаемое имя",
8870 "zh-chs": "顯示名稱",
8871 "xloc": [
8872 - "default.handlebars->27->752"
8872 + "default.handlebars->27->763"
8873 ]
8874 },
8875 {
@@ -8885,7 +8885,7 @@
8885 "ru": "Показать публичную ссылку",
8886 "zh-chs": "显示公共链接",
8887 "xloc": [
8888 - "default.handlebars->27->1414"
8888 + "default.handlebars->27->1425"
8889 ]
8890 },
8891 {
@@ -8902,17 +8902,17 @@
8902 "ru": "Ничего не делать",
8903 "zh-chs": "沒做什麼",
8904 "xloc": [
8905 - "default.handlebars->27->1267"
8905 + "default.handlebars->27->1278"
8906 ]
8907 },
8908 {
8909 "en": "Domain",
8910 "nl": "Domein",
8911 "xloc": [
8912 - "default.handlebars->27->1523",
8913 - "default.handlebars->27->1569",
8914 - "default.handlebars->27->1578",
8915 - "default.handlebars->27->1634",
8912 + "default.handlebars->27->1534",
8913 + "default.handlebars->27->1580",
8914 + "default.handlebars->27->1589",
8915 + "default.handlebars->27->1645",
8916 "mstsc.handlebars->main->1->3->1->2->1->0",
8917 "mstsc.handlebars->main->1->3->1->2->3"
8918 ]
@@ -8927,8 +8927,8 @@
8927 "nl": "Niet configureren",
8928 "zh-chs": "不要配置",
8929 "xloc": [
8930 - "default.handlebars->27->1271",
8931 - "default.handlebars->27->1276"
8930 + "default.handlebars->27->1282",
8931 + "default.handlebars->27->1287"
8932 ]
8933 },
8934 {
@@ -8941,7 +8941,7 @@
8941 "nl": "Maak geen verbinding met de server",
8942 "zh-chs": "不要连接到服务器",
8943 "xloc": [
8944 - "default.handlebars->27->1272"
8944 + "default.handlebars->27->1283"
8945 ]
8946 },
8947 {
@@ -9042,7 +9042,7 @@
9042 "zh-chs": "下載文件",
9043 "xloc": [
9044 "default-mobile.handlebars->9->315",
9045 - "default.handlebars->27->810"
9045 + "default.handlebars->27->821"
9046 ]
9047 },
9048 {
@@ -9076,7 +9076,7 @@
9076 "ru": "Скачать MeshCmd",
9077 "zh-chs": "下載MeshCmd",
9078 "xloc": [
9079 - "default.handlebars->27->712"
9079 + "default.handlebars->27->723"
9080 ]
9081 },
9082 {
@@ -9127,7 +9127,7 @@
9127 "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.",
9128 "zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。",
9129 "xloc": [
9130 - "default.handlebars->27->705"
9130 + "default.handlebars->27->716"
9131 ]
9132 },
9133 {
@@ -9195,7 +9195,7 @@
9195 "ru": "Скачать события состояния питания",
9196 "zh-chs": "下載電源事件",
9197 "xloc": [
9198 - "default.handlebars->27->664"
9198 + "default.handlebars->27->675"
9199 ]
9200 },
9201 {
@@ -9246,7 +9246,7 @@
9246 "ru": "Загрузите список устройств с одним из форматов файлов ниже.",
9247 "zh-chs": "使用以下一種文件格式下載設備列表。",
9248 "xloc": [
9249 - "default.handlebars->27->430"
9249 + "default.handlebars->27->436"
9250 ]
9251 },
9252 {
@@ -9263,7 +9263,7 @@
9263 "ru": "Скачать список событий в одном из форматов ниже.",
9264 "zh-chs": "使用以下一種文件格式下載事件列表。",
9265 "xloc": [
9266 - "default.handlebars->27->1452"
9266 + "default.handlebars->27->1463"
9267 ]
9268 },
9269 {
@@ -9280,7 +9280,7 @@
9280 "ru": "Скачать список пользователей в одном из форматов ниже.",
9281 "zh-chs": "使用以下一種文件格式下載用戶列表。",
9282 "xloc": [
9283 - "default.handlebars->27->1511"
9283 + "default.handlebars->27->1522"
9284 ]
9285 },
9286 {
@@ -9363,7 +9363,7 @@
9363 "nl": "Dubbele agent",
9364 "zh-chs": "代理重复",
9365 "xloc": [
9366 - "default.handlebars->27->1793"
9366 + "default.handlebars->27->1804"
9367 ]
9368 },
9369 {
@@ -9397,7 +9397,7 @@
9397 "ru": "Скопировать группу пользователей",
9398 "zh-chs": "重複的用戶組",
9399 "xloc": [
9400 - "default.handlebars->27->1573"
9400 + "default.handlebars->27->1584"
9401 ]
9402 },
9403 {
@@ -9428,8 +9428,8 @@
9428 "ru": "Длительность",
9429 "zh-chs": "持續時間",
9430 "xloc": [
9431 - "default.handlebars->27->1747",
9432 - "default.handlebars->27->1767",
9431 + "default.handlebars->27->1758",
9432 + "default.handlebars->27->1778",
9433 "player.handlebars->3->2"
9434 ]
9435 },
@@ -9447,7 +9447,7 @@
9447 "ru": "Во время активации агент будет иметь доступ к паролю администратора.",
9448 "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。",
9449 "xloc": [
9450 - "default.handlebars->27->1281"
9450 + "default.handlebars->27->1292"
9451 ]
9452 },
9453 {
@@ -9464,7 +9464,7 @@
9464 "ru": "Голландский (Бельгийский)",
9465 "zh-chs": "荷蘭語(比利時)",
9466 "xloc": [
9467 - "default.handlebars->27->983"
9467 + "default.handlebars->27->994"
9468 ]
9469 },
9470 {
@@ -9481,7 +9481,7 @@
9481 "ru": "Голландский (Стандартный)",
9482 "zh-chs": "荷蘭語(標準)",
9483 "xloc": [
9484 - "default.handlebars->27->982"
9484 + "default.handlebars->27->993"
9485 ]
9486 },
9487 {
@@ -9672,7 +9672,7 @@
9672 "zh-chs": "編輯裝置",
9673 "xloc": [
9674 "default-mobile.handlebars->9->276",
9675 - "default.handlebars->27->725"
9675 + "default.handlebars->27->736"
9676 ]
9677 },
9678 {
@@ -9692,10 +9692,10 @@
9692 "default-mobile.handlebars->9->399",
9693 "default-mobile.handlebars->9->401",
9694 "default-mobile.handlebars->9->419",
9695 - "default.handlebars->27->1287",
9696 - "default.handlebars->27->1317",
9697 - "default.handlebars->27->1339",
9698 - "default.handlebars->27->1351"
9695 + "default.handlebars->27->1298",
9696 + "default.handlebars->27->1328",
9697 + "default.handlebars->27->1350",
9698 + "default.handlebars->27->1362"
9699 ]
9700 },
9701 {
@@ -9712,7 +9712,7 @@
9712 "ru": "Редактировать функции группы устройств",
9713 "zh-chs": "編輯設備組功能",
9714 "xloc": [
9715 - "default.handlebars->27->1303"
9715 + "default.handlebars->27->1314"
9716 ]
9717 },
9718 {
@@ -9729,8 +9729,8 @@
9729 "ru": "Редактировать права группы устройств",
9730 "zh-chs": "編輯設備組權限",
9731 "xloc": [
9732 - "default.handlebars->27->1336",
9733 - "default.handlebars->27->1348"
9732 + "default.handlebars->27->1347",
9733 + "default.handlebars->27->1359"
9734 ]
9735 },
9736 {
@@ -9747,7 +9747,7 @@
9747 "ru": "Редактировать согласие пользователя группы устройств",
9748 "zh-chs": "編輯設備組用戶同意",
9749 "xloc": [
9750 - "default.handlebars->27->1288"
9750 + "default.handlebars->27->1299"
9751 ]
9752 },
9753 {
@@ -9765,7 +9765,7 @@
9765 "zh-chs": "編輯設備說明",
9766 "xloc": [
9767 "default-mobile.handlebars->9->413",
9768 - "default.handlebars->27->1330"
9768 + "default.handlebars->27->1341"
9769 ]
9770 },
9771 {
@@ -9781,8 +9781,8 @@
9781 "ru": "Изменить разрешения устройства",
9782 "zh-chs": "编辑设备权限",
9783 "xloc": [
9784 - "default.handlebars->27->1341",
9785 - "default.handlebars->27->1343"
9784 + "default.handlebars->27->1352",
9785 + "default.handlebars->27->1354"
9786 ]
9787 },
9788 {
@@ -9796,7 +9796,7 @@
9796 "nl": "Gebruikerstoestemming apparaat bewerken",
9797 "zh-chs": "编辑设备用户同意",
9798 "xloc": [
9799 - "default.handlebars->27->1290"
9799 + "default.handlebars->27->1301"
9800 ]
9801 },
9802 {
@@ -9812,7 +9812,7 @@
9812 "ru": "Редактировать группу",
9813 "zh-chs": "编辑组",
9814 "xloc": [
9815 - "default.handlebars->27->628"
9815 + "default.handlebars->27->634"
9816 ]
9817 },
9818 {
@@ -9830,9 +9830,9 @@
9830 "zh-chs": "編輯英特爾&reg;AMT憑據",
9831 "xloc": [
9832 "default-mobile.handlebars->9->266",
9833 - "default.handlebars->27->520",
9834 - "default.handlebars->27->523",
9835 - "default.handlebars->27->671"
9833 + "default.handlebars->27->526",
9834 + "default.handlebars->27->529",
9835 + "default.handlebars->27->682"
9836 ]
9837 },
9838 {
@@ -9850,7 +9850,7 @@
9850 "zh-chs": "編輯筆記",
9851 "xloc": [
9852 "default-mobile.handlebars->9->426",
9853 - "default.handlebars->27->1358"
9853 + "default.handlebars->27->1369"
9854 ]
9855 },
9856 {
@@ -9864,7 +9864,7 @@
9864 "nl": "Gebruikerstoestemming bewerken",
9865 "zh-chs": "编辑用户同意",
9866 "xloc": [
9867 - "default.handlebars->27->1289"
9867 + "default.handlebars->27->1300"
9868 ]
9869 },
9870 {
@@ -9881,7 +9881,7 @@
9881 "ru": "Редактировать права пользователя для группы устройств",
9882 "zh-chs": "編輯用戶設備組權限",
9883 "xloc": [
9884 - "default.handlebars->27->1349"
9884 + "default.handlebars->27->1360"
9885 ]
9886 },
9887 {
@@ -9897,7 +9897,7 @@
9897 "ru": "Изменить разрешения для пользовательских устройств",
9898 "zh-chs": "编辑用户设备权限",
9899 "xloc": [
9900 - "default.handlebars->27->1344"
9900 + "default.handlebars->27->1355"
9901 ]
9902 },
9903 {
@@ -9914,7 +9914,7 @@
9914 "ru": "Редактировать группу пользователей",
9915 "zh-chs": "編輯用戶組",
9916 "xloc": [
9917 - "default.handlebars->27->1612"
9917 + "default.handlebars->27->1623"
9918 ]
9919 },
9920 {
@@ -9928,7 +9928,7 @@
9928 "nl": "Gebruikersmachtigingen voor apparaatgroep bewerken",
9929 "zh-chs": "编辑用户组设备权限",
9930 "xloc": [
9931 - "default.handlebars->27->1346"
9931 + "default.handlebars->27->1357"
9932 ]
9933 },
9934 {
@@ -9963,11 +9963,11 @@
9963 "zh-chs": "電子郵件",
9964 "xloc": [
9965 "default-mobile.handlebars->9->78",
9966 - "default.handlebars->27->1525",
9967 - "default.handlebars->27->1638",
9968 - "default.handlebars->27->1640",
9969 - "default.handlebars->27->1680",
9970 - "default.handlebars->27->1696",
9966 + "default.handlebars->27->1536",
9967 + "default.handlebars->27->1649",
9968 + "default.handlebars->27->1651",
9969 + "default.handlebars->27->1691",
9970 + "default.handlebars->27->1707",
9971 "default.handlebars->27->312",
9972 "login-mobile.handlebars->5->42",
9973 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -9990,7 +9990,7 @@
9990 "zh-chs": "電郵地址變更",
9991 "xloc": [
9992 "default-mobile.handlebars->9->79",
9993 - "default.handlebars->27->1151"
9993 + "default.handlebars->27->1162"
9994 ]
9995 },
9996 {
@@ -10008,7 +10008,7 @@
10008 "zh-chs": "郵件認證",
10009 "xloc": [
10010 "default-mobile.handlebars->9->68",
10011 - "default.handlebars->27->920"
10011 + "default.handlebars->27->931"
10012 ]
10013 },
10014 {
@@ -10053,7 +10053,7 @@
10053 "zh-chs": "電子郵件驗證",
10054 "xloc": [
10055 "default-mobile.handlebars->9->77",
10056 - "default.handlebars->27->1149"
10056 + "default.handlebars->27->1160"
10057 ]
10058 },
10059 {
@@ -10083,7 +10083,7 @@
10083 "ru": "Электронная почта не подтверждена",
10084 "zh-chs": "邮件未验证",
10085 "xloc": [
10086 - "default.handlebars->27->1481"
10086 + "default.handlebars->27->1492"
10087 ]
10088 },
10089 {
@@ -10100,8 +10100,8 @@
10100 "ru": "Email подтвержден",
10101 "zh-chs": "電子郵件已驗證",
10102 "xloc": [
10103 - "default.handlebars->27->1482",
10104 - "default.handlebars->27->1632"
10103 + "default.handlebars->27->1493",
10104 + "default.handlebars->27->1643"
10105 ]
10106 },
10107 {
@@ -10118,7 +10118,7 @@
10118 "ru": "Email подтвержден.",
10119 "zh-chs": "電子郵件已驗證。",
10120 "xloc": [
10121 - "default.handlebars->27->1531"
10121 + "default.handlebars->27->1542"
10122 ]
10123 },
10124 {
@@ -10135,7 +10135,7 @@
10135 "ru": "Email не подтвержден",
10136 "zh-chs": "電子郵件未驗證",
10137 "xloc": [
10138 - "default.handlebars->27->1633"
10138 + "default.handlebars->27->1644"
10139 ]
10140 },
10141 {
@@ -10174,7 +10174,7 @@
10174 "en": "Email verified and forced password reset required.",
10175 "nl": "E-mail geverifieerd en geforceerd opnieuw instellen van wachtwoord vereist.",
10176 "xloc": [
10177 - "default.handlebars->27->1532"
10177 + "default.handlebars->27->1543"
10178 ]
10179 },
10180 {
@@ -10187,7 +10187,7 @@
10187 "nl": "Email/SMS verkeer",
10188 "zh-chs": "电子邮件/短信流量",
10189 "xloc": [
10190 - "default.handlebars->27->1832"
10190 + "default.handlebars->27->1843"
10191 ]
10192 },
10193 {
@@ -10226,7 +10226,7 @@
10226 "ru": "Включить коды приглашения",
10227 "zh-chs": "啟用邀請代碼",
10228 "xloc": [
10229 - "default.handlebars->27->1379"
10229 + "default.handlebars->27->1390"
10230 ]
10231 },
10232 {
@@ -10261,7 +10261,7 @@
10261 "zh-chs": "啟用電子郵件兩因素驗證。",
10262 "xloc": [
10263 "default-mobile.handlebars->9->70",
10264 - "default.handlebars->27->922"
10264 + "default.handlebars->27->933"
10265 ]
10266 },
10267 {
@@ -10285,7 +10285,7 @@
10285 "en": "Enabled",
10286 "nl": "Ingeschakeld",
10287 "xloc": [
10288 - "default.handlebars->27->1769"
10288 + "default.handlebars->27->1780"
10289 ]
10290 },
10291 {
@@ -10309,7 +10309,7 @@
10309 "en": "End Time",
10310 "nl": "Eindtijd",
10311 "xloc": [
10312 - "default.handlebars->27->1766"
10312 + "default.handlebars->27->1777"
10313 ]
10314 },
10315 {
@@ -10326,7 +10326,7 @@
10326 "ru": "Английский",
10327 "zh-chs": "英語",
10328 "xloc": [
10329 - "default.handlebars->27->984"
10329 + "default.handlebars->27->995"
10330 ]
10331 },
10332 {
@@ -10343,7 +10343,7 @@
10343 "ru": "Английский (Австралия)",
10344 "zh-chs": "英文(澳洲)",
10345 "xloc": [
10346 - "default.handlebars->27->985"
10346 + "default.handlebars->27->996"
10347 ]
10348 },
10349 {
@@ -10360,7 +10360,7 @@
10360 "ru": "Английский (Белиз)",
10361 "zh-chs": "英語(伯利茲)",
10362 "xloc": [
10363 - "default.handlebars->27->986"
10363 + "default.handlebars->27->997"
10364 ]
10365 },
10366 {
@@ -10377,7 +10377,7 @@
10377 "ru": "Английский (Канада)",
10378 "zh-chs": "英文(加拿大)",
10379 "xloc": [
10380 - "default.handlebars->27->987"
10380 + "default.handlebars->27->998"
10381 ]
10382 },
10383 {
@@ -10394,7 +10394,7 @@
10394 "ru": "Английский (Ирландия)",
10395 "zh-chs": "英文(愛爾蘭)",
10396 "xloc": [
10397 - "default.handlebars->27->988"
10397 + "default.handlebars->27->999"
10398 ]
10399 },
10400 {
@@ -10411,7 +10411,7 @@
10411 "ru": "Английский (Ямайка)",
10412 "zh-chs": "英文(牙買加)",
10413 "xloc": [
10414 - "default.handlebars->27->989"
10414 + "default.handlebars->27->1000"
10415 ]
10416 },
10417 {
@@ -10428,7 +10428,7 @@
10428 "ru": "Английский (Новая Зеландия)",
10429 "zh-chs": "英文(紐西蘭)",
10430 "xloc": [
10431 - "default.handlebars->27->990"
10431 + "default.handlebars->27->1001"
10432 ]
10433 },
10434 {
@@ -10445,7 +10445,7 @@
10445 "ru": "Английский (Филиппины)",
10446 "zh-chs": "英文(菲律賓)",
10447 "xloc": [
10448 - "default.handlebars->27->991"
10448 + "default.handlebars->27->1002"
10449 ]
10450 },
10451 {
@@ -10462,7 +10462,7 @@
10462 "ru": "Английский (Южная Африка)",
10463 "zh-chs": "英語(南非)",
10464 "xloc": [
10465 - "default.handlebars->27->992"
10465 + "default.handlebars->27->1003"
10466 ]
10467 },
10468 {
@@ -10479,7 +10479,7 @@
10479 "ru": "Английский (Тринидад и Тобаго)",
10480 "zh-chs": "英文(特立尼達和多巴哥)",
10481 "xloc": [
10482 - "default.handlebars->27->993"
10482 + "default.handlebars->27->1004"
10483 ]
10484 },
10485 {
@@ -10496,7 +10496,7 @@
10496 "ru": "Английский (Великобритания)",
10497 "zh-chs": "英文(英國)",
10498 "xloc": [
10499 - "default.handlebars->27->994"
10499 + "default.handlebars->27->1005"
10500 ]
10501 },
10502 {
@@ -10513,7 +10513,7 @@
10513 "ru": "Английский (Соединенные Штаты)",
10514 "zh-chs": "美國英語)",
10515 "xloc": [
10516 - "default.handlebars->27->995"
10516 + "default.handlebars->27->1006"
10517 ]
10518 },
10519 {
@@ -10530,7 +10530,7 @@
10530 "ru": "Английский (Зимбабве)",
10531 "zh-chs": "英文(津巴布韋)",
10532 "xloc": [
10533 - "default.handlebars->27->996"
10533 + "default.handlebars->27->1007"
10534 ]
10535 },
10536 {
@@ -10547,8 +10547,8 @@
10547 "ru": "Ввод",
10548 "zh-chs": "輸入",
10549 "xloc": [
10550 - "default.handlebars->27->1177",
10551 - "default.handlebars->27->1178"
10550 + "default.handlebars->27->1188",
10551 + "default.handlebars->27->1189"
10552 ]
10553 },
10554 {
@@ -10565,7 +10565,7 @@
10565 "ru": "Введите разделенный запятыми список имен административных областей.",
10566 "zh-chs": "輸入管理領域名稱的逗號分隔列表。",
10567 "xloc": [
10568 - "default.handlebars->27->1536"
10568 + "default.handlebars->27->1547"
10569 ]
10570 },
10571 {
@@ -10599,7 +10599,7 @@
10599 "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.",
10600 "zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
10601 "xloc": [
10602 - "default.handlebars->27->746"
10602 + "default.handlebars->27->757"
10603 ]
10604 },
10605 {
@@ -10647,7 +10647,7 @@
10647 "nl": "Voer uw telefoonnummer in dat geschikt is voor SMS. Na verificatie kan het nummer worden gebruikt voor inlogverificatie en andere meldingen.",
10648 "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
10649 "xloc": [
10650 - "default.handlebars->27->917"
10650 + "default.handlebars->27->928"
10651 ]
10652 },
10653 {
@@ -10698,7 +10698,7 @@
10698 "ru": "Эсперанто",
10699 "zh-chs": "世界語",
10700 "xloc": [
10701 - "default.handlebars->27->997"
10701 + "default.handlebars->27->1008"
10702 ]
10703 },
10704 {
@@ -10715,7 +10715,7 @@
10715 "ru": "Эстонский",
10716 "zh-chs": "愛沙尼亞語",
10717 "xloc": [
10718 - "default.handlebars->27->998"
10718 + "default.handlebars->27->1009"
10719 ]
10720 },
10721 {
@@ -10732,7 +10732,7 @@
10732 "ru": "Детали события",
10733 "zh-chs": "活動詳情",
10734 "xloc": [
10735 - "default.handlebars->27->823"
10735 + "default.handlebars->27->834"
10736 ]
10737 },
10738 {
@@ -10749,7 +10749,7 @@
10749 "ru": "Экспорт списка событий",
10750 "zh-chs": "活動列表導出",
10751 "xloc": [
10752 - "default.handlebars->27->1457"
10752 + "default.handlebars->27->1468"
10753 ]
10754 },
10755 {
@@ -10821,7 +10821,7 @@
10821 "ru": "Экспорт информации об устройстве",
10822 "zh-chs": "導出設備信息",
10823 "xloc": [
10824 - "default.handlebars->27->423"
10824 + "default.handlebars->27->424"
10825 ]
10826 },
10827 {
@@ -10838,7 +10838,7 @@
10838 "ru": "Расширенный ASCII",
10839 "zh-chs": "擴展ASCII",
10840 "xloc": [
10841 - "default.handlebars->27->772"
10841 + "default.handlebars->27->783"
10842 ]
10843 },
10844 {
@@ -10872,7 +10872,7 @@
10872 "ru": "Внешний",
10873 "zh-chs": "外部",
10874 "xloc": [
10875 - "default.handlebars->27->1817"
10875 + "default.handlebars->27->1828"
10876 ]
10877 },
10878 {
@@ -10896,7 +10896,7 @@
10896 "ru": "Mакедонский (БЮР)",
10897 "zh-chs": "FYRO馬其頓語",
10898 "xloc": [
10899 - "default.handlebars->27->1048"
10899 + "default.handlebars->27->1059"
10900 ]
10901 },
10902 {
@@ -10913,7 +10913,7 @@
10913 "ru": "Фарерский",
10914 "zh-chs": "法羅語",
10915 "xloc": [
10916 - "default.handlebars->27->999"
10916 + "default.handlebars->27->1010"
10917 ]
10918 },
10919 {
@@ -10943,7 +10943,7 @@
10943 "ko": "원격 터미널 세션을 시작하지 못했습니다 : {0} ({1})",
10944 "zh-chs": "无法启动远程终端会话{0}({1})",
10945 "xloc": [
10946 - "default.handlebars->27->728"
10946 + "default.handlebars->27->739"
10947 ]
10948 },
10949 {
@@ -10960,7 +10960,7 @@
10960 "ru": "Фарси (Персидский)",
10961 "zh-chs": "波斯語(波斯語)",
10962 "xloc": [
10963 - "default.handlebars->27->1000"
10963 + "default.handlebars->27->1011"
10964 ]
10965 },
10966 {
@@ -10995,7 +10995,7 @@
10995 "ru": "Функции",
10996 "zh-chs": "特徵",
10997 "xloc": [
10998 - "default.handlebars->27->1209"
10998 + "default.handlebars->27->1220"
10999 ]
11000 },
11001 {
@@ -11012,7 +11012,7 @@
11012 "ru": "Фиджи",
11013 "zh-chs": "斐濟",
11014 "xloc": [
11015 - "default.handlebars->27->1001"
11015 + "default.handlebars->27->1012"
11016 ]
11017 },
11018 {
@@ -11030,8 +11030,8 @@
11030 "zh-chs": "文件編輯器",
11031 "xloc": [
11032 "default-mobile.handlebars->9->299",
11033 - "default.handlebars->27->462",
11034 - "default.handlebars->27->795"
11033 + "default.handlebars->27->468",
11034 + "default.handlebars->27->806"
11035 ]
11036 },
11037 {
@@ -11065,7 +11065,7 @@
11065 "ru": "Драйвер файловой системы",
11066 "zh-chs": "FileSystemDriver",
11067 "xloc": [
11068 - "default.handlebars->27->755"
11068 + "default.handlebars->27->766"
11069 ]
11070 },
11071 {
@@ -11084,8 +11084,8 @@
11084 "xloc": [
11085 "default-mobile.handlebars->9->167",
11086 "default-mobile.handlebars->9->250",
11087 - "default.handlebars->27->1298",
11088 - "default.handlebars->27->1754",
11087 + "default.handlebars->27->1309",
11088 + "default.handlebars->27->1765",
11089 "default.handlebars->27->236",
11090 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
11091 "default.handlebars->contextMenu->cxfiles"
@@ -11122,9 +11122,9 @@
11122 "ru": "Уведомление файлов",
11123 "zh-chs": "文件通知",
11124 "xloc": [
11125 - "default.handlebars->27->1217",
11126 - "default.handlebars->27->1665",
11127 - "default.handlebars->27->545"
11125 + "default.handlebars->27->1228",
11126 + "default.handlebars->27->1676",
11127 + "default.handlebars->27->551"
11128 ]
11129 },
11130 {
@@ -11141,9 +11141,9 @@
11141 "ru": "Запрос файлов",
11142 "zh-chs": "文件提示",
11143 "xloc": [
11144 - "default.handlebars->27->1216",
11145 - "default.handlebars->27->1664",
11146 - "default.handlebars->27->544"
11144 + "default.handlebars->27->1227",
11145 + "default.handlebars->27->1675",
11146 + "default.handlebars->27->550"
11147 ]
11148 },
11149 {
@@ -11180,7 +11180,7 @@
11180 "ru": "Финский",
11181 "zh-chs": "芬蘭",
11182 "xloc": [
11183 - "default.handlebars->27->1002"
11183 + "default.handlebars->27->1013"
11184 ]
11185 },
11186 {
@@ -11303,8 +11303,8 @@
11303 "ru": "Принудительно сбросить пароль при следующем входе в систему.",
11304 "zh-chs": "下次登錄時強制重置密碼。",
11305 "xloc": [
11306 - "default.handlebars->27->1530",
11307 - "default.handlebars->27->1705"
11306 + "default.handlebars->27->1541",
11307 + "default.handlebars->27->1716"
11308 ]
11309 },
11310 {
@@ -11390,8 +11390,8 @@
11390 "ru": "Свободно",
11391 "zh-chs": "自由",
11392 "xloc": [
11393 - "default.handlebars->27->1778",
11394 - "default.handlebars->27->1780"
11393 + "default.handlebars->27->1789",
11394 + "default.handlebars->27->1791"
11395 ]
11396 },
11397 {
@@ -11426,7 +11426,7 @@
11426 "ru": "Французский (Бельгия)",
11427 "zh-chs": "法語(比利時)",
11428 "xloc": [
11429 - "default.handlebars->27->1004"
11429 + "default.handlebars->27->1015"
11430 ]
11431 },
11432 {
@@ -11443,7 +11443,7 @@
11443 "ru": "Французский (Канада)",
11444 "zh-chs": "法語(加拿大)",
11445 "xloc": [
11446 - "default.handlebars->27->1005"
11446 + "default.handlebars->27->1016"
11447 ]
11448 },
11449 {
@@ -11460,7 +11460,7 @@
11460 "ru": "Французский (Франция)",
11461 "zh-chs": "法語(法國)",
11462 "xloc": [
11463 - "default.handlebars->27->1006"
11463 + "default.handlebars->27->1017"
11464 ]
11465 },
11466 {
@@ -11477,7 +11477,7 @@
11477 "ru": "Французский (Люксембург)",
11478 "zh-chs": "法語(盧森堡)",
11479 "xloc": [
11480 - "default.handlebars->27->1007"
11480 + "default.handlebars->27->1018"
11481 ]
11482 },
11483 {
@@ -11494,7 +11494,7 @@
11494 "ru": "Французский (Монако)",
11495 "zh-chs": "法語(摩納哥)",
11496 "xloc": [
11497 - "default.handlebars->27->1008"
11497 + "default.handlebars->27->1019"
11498 ]
11499 },
11500 {
@@ -11511,7 +11511,7 @@
11511 "ru": "Французский (Стандартный)",
11512 "zh-chs": "法語(標準)",
11513 "xloc": [
11514 - "default.handlebars->27->1003"
11514 + "default.handlebars->27->1014"
11515 ]
11516 },
11517 {
@@ -11528,7 +11528,7 @@
11528 "ru": "Французский (Швейцария)",
11529 "zh-chs": "法語(瑞士)",
11530 "xloc": [
11531 - "default.handlebars->27->1009"
11531 + "default.handlebars->27->1020"
11532 ]
11533 },
11534 {
@@ -11545,7 +11545,7 @@
11545 "ru": "Фризский",
11546 "zh-chs": "弗里斯蘭語",
11547 "xloc": [
11548 - "default.handlebars->27->1010"
11548 + "default.handlebars->27->1021"
11549 ]
11550 },
11551 {
@@ -11562,7 +11562,7 @@
11562 "ru": "Фриульский",
11563 "zh-chs": "弗留利",
11564 "xloc": [
11565 - "default.handlebars->27->1011"
11565 + "default.handlebars->27->1022"
11566 ]
11567 },
11568 {
@@ -11583,9 +11583,9 @@
11583 "default-mobile.handlebars->9->391",
11584 "default-mobile.handlebars->9->400",
11585 "default-mobile.handlebars->9->418",
11586 - "default.handlebars->27->1184",
11587 - "default.handlebars->27->1316",
11588 - "default.handlebars->27->1542"
11586 + "default.handlebars->27->1195",
11587 + "default.handlebars->27->1327",
11588 + "default.handlebars->27->1553"
11589 ]
11590 },
11591 {
@@ -11602,7 +11602,7 @@
11602 "ru": "Администратор с полным доступом (все права)",
11603 "zh-chs": "正式管理員(保留所有權利)",
11604 "xloc": [
11605 - "default.handlebars->27->1350"
11605 + "default.handlebars->27->1361"
11606 ]
11607 },
11608 {
@@ -11633,7 +11633,7 @@
11633 "ru": "Полные права на устройство",
11634 "zh-chs": "完整的設備權限",
11635 "xloc": [
11636 - "default.handlebars->27->611"
11636 + "default.handlebars->27->617"
11637 ]
11638 },
11639 {
@@ -11649,7 +11649,7 @@
11649 "ru": "Полные права",
11650 "zh-chs": "完全权利",
11651 "xloc": [
11652 - "default.handlebars->27->627"
11652 + "default.handlebars->27->633"
11653 ]
11654 },
11655 {
@@ -11685,7 +11685,7 @@
11685 "ru": "Администратор с полным доступом",
11686 "zh-chs": "正式管理員",
11687 "xloc": [
11688 - "default.handlebars->27->1626"
11688 + "default.handlebars->27->1637"
11689 ]
11690 },
11691 {
@@ -11699,7 +11699,7 @@
11699 "zh-chs": "显卡",
11700 "xloc": [
11701 "default-mobile.handlebars->9->369",
11702 - "default.handlebars->27->885"
11702 + "default.handlebars->27->896"
11703 ]
11704 },
11705 {
@@ -11716,7 +11716,7 @@
11716 "ru": "Гэльский (Ирландский)",
11717 "zh-chs": "蓋爾語(愛爾蘭)",
11718 "xloc": [
11719 - "default.handlebars->27->1013"
11719 + "default.handlebars->27->1024"
11720 ]
11721 },
11722 {
@@ -11733,7 +11733,7 @@
11733 "ru": "Гэльский (Шотландия)",
11734 "zh-chs": "蓋爾語(蘇格蘭語)",
11735 "xloc": [
11736 - "default.handlebars->27->1012"
11736 + "default.handlebars->27->1023"
11737 ]
11738 },
11739 {
@@ -11750,7 +11750,7 @@
11750 "ru": "Галицкий",
11751 "zh-chs": "加拉契人",
11752 "xloc": [
11753 - "default.handlebars->27->1014"
11753 + "default.handlebars->27->1025"
11754 ]
11755 },
11756 {
@@ -11824,7 +11824,7 @@
11824 "ru": "Общая информация",
11825 "zh-chs": "一般信息",
11826 "xloc": [
11827 - "default.handlebars->27->469"
11827 + "default.handlebars->27->475"
11828 ]
11829 },
11830 {
@@ -11858,7 +11858,7 @@
11858 "ru": "Грузинский",
11859 "zh-chs": "格魯吉亞人",
11860 "xloc": [
11861 - "default.handlebars->27->1015"
11861 + "default.handlebars->27->1026"
11862 ]
11863 },
11864 {
@@ -11875,7 +11875,7 @@
11875 "ru": "Немецкий (Австрия)",
11876 "zh-chs": "德語(奧地利)",
11877 "xloc": [
11878 - "default.handlebars->27->1017"
11878 + "default.handlebars->27->1028"
11879 ]
11880 },
11881 {
@@ -11892,7 +11892,7 @@
11892 "ru": "Немецкий (Германия)",
11893 "zh-chs": "德文(德國)",
11894 "xloc": [
11895 - "default.handlebars->27->1018"
11895 + "default.handlebars->27->1029"
11896 ]
11897 },
11898 {
@@ -11909,7 +11909,7 @@
11909 "ru": "Немецкий (Лихтенштейн)",
11910 "zh-chs": "德文(列支敦士登)",
11911 "xloc": [
11912 - "default.handlebars->27->1019"
11912 + "default.handlebars->27->1030"
11913 ]
11914 },
11915 {
@@ -11926,7 +11926,7 @@
11926 "ru": "Немецкий (Люксембург)",
11927 "zh-chs": "德語(盧森堡)",
11928 "xloc": [
11929 - "default.handlebars->27->1020"
11929 + "default.handlebars->27->1031"
11930 ]
11931 },
11932 {
@@ -11943,7 +11943,7 @@
11943 "ru": "Немецкий (Стандартный)",
11944 "zh-chs": "德語(標準)",
11945 "xloc": [
11946 - "default.handlebars->27->1016"
11946 + "default.handlebars->27->1027"
11947 ]
11948 },
11949 {
@@ -11960,7 +11960,7 @@
11960 "ru": "Немецкий (Швейцария)",
11961 "zh-chs": "德語(瑞士)",
11962 "xloc": [
11963 - "default.handlebars->27->1021"
11963 + "default.handlebars->27->1032"
11964 ]
11965 },
11966 {
@@ -11977,7 +11977,7 @@
11977 "ru": "Получить учетные данные MQTT для этого устройства.",
11978 "zh-chs": "獲取此設備的MQTT登錄憑據。",
11979 "xloc": [
11980 - "default.handlebars->27->592"
11980 + "default.handlebars->27->598"
11981 ]
11982 },
11983 {
@@ -12043,7 +12043,7 @@
12043 "ru": "Хорошо",
12044 "zh-chs": "好",
12045 "xloc": [
12046 - "default.handlebars->27->1180"
12046 + "default.handlebars->27->1191"
12047 ]
12048 },
12049 {
@@ -12080,7 +12080,7 @@
12080 "ru": "Греческий",
12081 "zh-chs": "希臘語",
12082 "xloc": [
12083 - "default.handlebars->27->1022"
12083 + "default.handlebars->27->1033"
12084 ]
12085 },
12086 {
@@ -12098,7 +12098,7 @@
12098 "zh-chs": "組",
12099 "xloc": [
12100 "default-mobile.handlebars->9->207",
12101 - "default.handlebars->27->497",
12101 + "default.handlebars->27->503",
12102 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
12103 ]
12104 },
@@ -12116,9 +12116,9 @@
12116 "ru": "Групповое действие",
12117 "zh-chs": "集體行動",
12118 "xloc": [
12119 - "default.handlebars->27->1494",
12120 - "default.handlebars->27->1563",
12121 - "default.handlebars->27->426",
12119 + "default.handlebars->27->1505",
12120 + "default.handlebars->27->1574",
12121 + "default.handlebars->27->427",
12122 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
12123 "default.handlebars->container->column_l->p4->3->1->0->3->3",
12124 "default.handlebars->container->column_l->p50->3->1->0->3->3"
@@ -12128,7 +12128,7 @@
12128 "en": "Group Identifier",
12129 "nl": "Groepsidentificatie",
12130 "xloc": [
12131 - "default.handlebars->27->1580"
12131 + "default.handlebars->27->1591"
12132 ]
12133 },
12134 {
@@ -12145,7 +12145,7 @@
12145 "ru": "Члены группы",
12146 "zh-chs": "小組成員",
12147 "xloc": [
12148 - "default.handlebars->27->1589"
12148 + "default.handlebars->27->1600"
12149 ]
12150 },
12151 {
@@ -12162,7 +12162,7 @@
12162 "ru": "Права на группу для пользователя {0}.",
12163 "zh-chs": "用戶{0}的組權限。",
12164 "xloc": [
12165 - "default.handlebars->27->1315"
12165 + "default.handlebars->27->1326"
12166 ]
12167 },
12168 {
@@ -12179,7 +12179,7 @@
12179 "ru": "Права на группу для {0}.",
12180 "zh-chs": "{0}的組權限。",
12181 "xloc": [
12182 - "default.handlebars->27->1314"
12182 + "default.handlebars->27->1325"
12183 ]
12184 },
12185 {
@@ -12230,7 +12230,7 @@
12230 "ru": "Гуджарати",
12231 "zh-chs": "古久拉提",
12232 "xloc": [
12233 - "default.handlebars->27->1023"
12233 + "default.handlebars->27->1034"
12234 ]
12235 },
12236 {
@@ -12266,7 +12266,7 @@
12266 "ru": "Гаитянский",
12267 "zh-chs": "海地",
12268 "xloc": [
12269 - "default.handlebars->27->1024"
12269 + "default.handlebars->27->1035"
12270 ]
12271 },
12272 {
@@ -12300,7 +12300,7 @@
12300 "ru": "Жесткое отключение агента",
12301 "zh-chs": "硬斷開劑",
12302 "xloc": [
12303 - "default.handlebars->27->912"
12303 + "default.handlebars->27->923"
12304 ]
12305 },
12306 {
@@ -12317,7 +12317,7 @@
12317 "ru": "Всего кучи",
12318 "zh-chs": "堆總數",
12319 "xloc": [
12320 - "default.handlebars->27->1819"
12320 + "default.handlebars->27->1830"
12321 ]
12322 },
12323 {
@@ -12334,7 +12334,7 @@
12334 "ru": "Куча используется",
12335 "zh-chs": "堆使用",
12336 "xloc": [
12337 - "default.handlebars->27->1818"
12337 + "default.handlebars->27->1829"
12338 ]
12339 },
12340 {
@@ -12351,7 +12351,7 @@
12351 "ru": "Иврит",
12352 "zh-chs": "希伯來語",
12353 "xloc": [
12354 - "default.handlebars->27->1025"
12354 + "default.handlebars->27->1036"
12355 ]
12356 },
12357 {
@@ -12385,7 +12385,7 @@
12385 "ru": "Помочь перевести MeshCentral",
12386 "zh-chs": "幫助翻譯MeshCentral",
12387 "xloc": [
12388 - "default.handlebars->27->1139"
12388 + "default.handlebars->27->1150"
12389 ]
12390 },
12391 {
@@ -12471,7 +12471,7 @@
12471 "ru": "Хинди",
12472 "zh-chs": "印地語",
12473 "xloc": [
12474 - "default.handlebars->27->1026"
12474 + "default.handlebars->27->1037"
12475 ]
12476 },
12477 {
@@ -12503,7 +12503,7 @@
12503 "zh-chs": "持有1份副本",
12504 "xloc": [
12505 "default-mobile.handlebars->9->308",
12506 - "default.handlebars->27->804"
12506 + "default.handlebars->27->815"
12507 ]
12508 },
12509 {
@@ -12521,7 +12521,7 @@
12521 "zh-chs": "持有1個搬家公司",
12522 "xloc": [
12523 "default-mobile.handlebars->9->312",
12524 - "default.handlebars->27->808"
12524 + "default.handlebars->27->819"
12525 ]
12526 },
12527 {
@@ -12539,7 +12539,7 @@
12539 "zh-chs": "保留{0}個條目進行複制",
12540 "xloc": [
12541 "default-mobile.handlebars->9->306",
12542 - "default.handlebars->27->802"
12542 + "default.handlebars->27->813"
12543 ]
12544 },
12545 {
@@ -12557,7 +12557,7 @@
12557 "zh-chs": "保留{0}個條目以進行移動",
12558 "xloc": [
12559 "default-mobile.handlebars->9->310",
12560 - "default.handlebars->27->806"
12560 + "default.handlebars->27->817"
12561 ]
12562 },
12563 {
@@ -12575,7 +12575,7 @@
12575 "zh-chs": "保持{2}的{0}入口{1}",
12576 "xloc": [
12577 "default-mobile.handlebars->9->129",
12578 - "default.handlebars->27->1444"
12578 + "default.handlebars->27->1455"
12579 ]
12580 },
12581 {
@@ -12597,8 +12597,8 @@
12597 "default-mobile.handlebars->9->212",
12598 "default-mobile.handlebars->9->272",
12599 "default.handlebars->27->263",
12600 - "default.handlebars->27->502",
12601 - "default.handlebars->27->721"
12600 + "default.handlebars->27->508",
12601 + "default.handlebars->27->732"
12602 ]
12603 },
12604 {
@@ -12615,7 +12615,7 @@
12615 "ru": "Синхронизация имени хоста",
12616 "zh-chs": "主機名同步",
12617 "xloc": [
12618 - "default.handlebars->27->1207"
12618 + "default.handlebars->27->1218"
12619 ]
12620 },
12621 {
@@ -12632,7 +12632,7 @@
12632 "ru": "Венгерский",
12633 "zh-chs": "匈牙利",
12634 "xloc": [
12635 - "default.handlebars->27->1027"
12635 + "default.handlebars->27->1038"
12636 ]
12637 },
12638 {
@@ -12687,9 +12687,9 @@
12687 "xloc": [
12688 "default-mobile.handlebars->9->338",
12689 "default-mobile.handlebars->9->342",
12690 - "default.handlebars->27->844",
12691 - "default.handlebars->27->854",
12692 - "default.handlebars->27->858"
12690 + "default.handlebars->27->855",
12691 + "default.handlebars->27->865",
12692 + "default.handlebars->27->869"
12693 ]
12694 },
12695 {
@@ -12708,9 +12708,9 @@
12708 "xloc": [
12709 "default-mobile.handlebars->9->336",
12710 "default-mobile.handlebars->9->340",
12711 - "default.handlebars->27->842",
12712 - "default.handlebars->27->852",
12713 - "default.handlebars->27->856"
12711 + "default.handlebars->27->853",
12712 + "default.handlebars->27->863",
12713 + "default.handlebars->27->867"
12714 ]
12715 },
12716 {
@@ -12729,10 +12729,10 @@
12729 "xloc": [
12730 "default-mobile.handlebars->9->335",
12731 "default-mobile.handlebars->9->337",
12732 - "default.handlebars->27->841",
12733 - "default.handlebars->27->843",
12734 - "default.handlebars->27->851",
12735 - "default.handlebars->27->853"
12732 + "default.handlebars->27->852",
12733 + "default.handlebars->27->854",
12734 + "default.handlebars->27->862",
12735 + "default.handlebars->27->864"
12736 ]
12737 },
12738 {
@@ -12795,8 +12795,8 @@
12795 "xloc": [
12796 "default-mobile.handlebars->9->339",
12797 "default-mobile.handlebars->9->341",
12798 - "default.handlebars->27->855",
12799 - "default.handlebars->27->857"
12798 + "default.handlebars->27->866",
12799 + "default.handlebars->27->868"
12800 ]
12801 },
12802 {
@@ -12834,7 +12834,7 @@
12834 "ru": "Исландский",
12835 "zh-chs": "冰島的",
12836 "xloc": [
12837 - "default.handlebars->27->1028"
12837 + "default.handlebars->27->1039"
12838 ]
12839 },
12840 {
@@ -12852,7 +12852,7 @@
12852 "zh-chs": "圖標選擇",
12853 "xloc": [
12854 "default-mobile.handlebars->9->270",
12855 - "default.handlebars->27->719"
12855 + "default.handlebars->27->730"
12856 ]
12857 },
12858 {
@@ -12870,7 +12870,7 @@
12870 "zh-chs": "識別碼",
12871 "xloc": [
12872 "default-mobile.handlebars->9->367",
12873 - "default.handlebars->27->883"
12873 + "default.handlebars->27->894"
12874 ]
12875 },
12876 {
@@ -12980,7 +12980,7 @@
12980 "ru": "Индонезийский",
12981 "zh-chs": "印度尼西亞",
12982 "xloc": [
12983 - "default.handlebars->27->1029"
12983 + "default.handlebars->27->1040"
12984 ]
12985 },
12986 {
@@ -13097,7 +13097,7 @@
13097 "ru": "Установка CIRA",
13098 "zh-chs": "安裝CIRA",
13099 "xloc": [
13100 - "default.handlebars->27->1240"
13100 + "default.handlebars->27->1251"
13101 ]
13102 },
13103 {
@@ -13114,7 +13114,7 @@
13114 "ru": "Локальная установка",
13115 "zh-chs": "安裝本地",
13116 "xloc": [
13117 - "default.handlebars->27->1242"
13117 + "default.handlebars->27->1253"
13118 ]
13119 },
13120 {
@@ -13131,8 +13131,8 @@
13131 "ru": "Тип установки",
13132 "zh-chs": "安裝類型",
13133 "xloc": [
13134 - "default.handlebars->27->1381",
13135 - "default.handlebars->27->1388",
13134 + "default.handlebars->27->1392",
13135 + "default.handlebars->27->1399",
13136 "default.handlebars->27->327",
13137 "default.handlebars->27->349"
13138 ]
@@ -13151,7 +13151,7 @@
13151 "ru": "Intel (F10 = ESC+[OM)",
13152 "zh-chs": "英特爾(F10 = ESC + [OM)",
13153 "xloc": [
13154 - "default.handlebars->27->774",
13154 + "default.handlebars->27->785",
13155 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
13156 ]
13157 },
@@ -13169,10 +13169,10 @@
13169 "ru": "Intel AMT",
13170 "zh-chs": "英特爾AMT",
13171 "xloc": [
13172 - "default.handlebars->27->1400",
13173 - "default.handlebars->27->1408",
13174 - "default.handlebars->27->1815",
13175 - "default.handlebars->27->1837"
13172 + "default.handlebars->27->1411",
13173 + "default.handlebars->27->1419",
13174 + "default.handlebars->27->1826",
13175 + "default.handlebars->27->1848"
13176 ]
13177 },
13178 {
@@ -13213,14 +13213,14 @@
13213 "en": "Intel AMT Redirection",
13214 "nl": "Intel AMT omleiding",
13215 "xloc": [
13216 - "default.handlebars->27->1756"
13216 + "default.handlebars->27->1767"
13217 ]
13218 },
13219 {
13220 "en": "Intel AMT WSMAN",
13221 "nl": "Intel AMT WSMAN",
13222 "xloc": [
13223 - "default.handlebars->27->1755"
13223 + "default.handlebars->27->1766"
13224 ]
13225 },
13226 {
@@ -13254,7 +13254,7 @@
13254 "ru": "Intel AMT активирован в режиме администратора",
13255 "zh-chs": "在管理控制模式下激活了Intel AMT",
13256 "xloc": [
13257 - "default.handlebars->27->516"
13257 + "default.handlebars->27->522"
13258 ]
13259 },
13260 {
@@ -13271,7 +13271,7 @@
13271 "ru": "Intel AMT активирован в режиме клиента",
13272 "zh-chs": "英特爾AMT在客戶端控制模式下被激活",
13273 "xloc": [
13274 - "default.handlebars->27->514"
13274 + "default.handlebars->27->520"
13275 ]
13276 },
13277 {
@@ -13288,7 +13288,7 @@
13288 "ru": "Intel AMT настроен с TLS безопасностью сети",
13289 "zh-chs": "英特爾AMT已設置TLS網絡安全性",
13290 "xloc": [
13291 - "default.handlebars->27->518"
13291 + "default.handlebars->27->524"
13292 ]
13293 },
13294 {
@@ -13339,7 +13339,7 @@
13339 "ru": "Intel ASCII",
13340 "zh-chs": "英特爾ASCII",
13341 "xloc": [
13342 - "default.handlebars->27->773"
13342 + "default.handlebars->27->784"
13343 ]
13344 },
13345 {
@@ -13359,11 +13359,11 @@
13359 "default-mobile.handlebars->9->194",
13360 "default-mobile.handlebars->9->229",
13361 "default-mobile.handlebars->9->234",
13362 - "default.handlebars->27->1224",
13363 - "default.handlebars->27->1234",
13364 - "default.handlebars->27->472",
13365 - "default.handlebars->27->527",
13366 - "default.handlebars->27->555"
13362 + "default.handlebars->27->1235",
13363 + "default.handlebars->27->1245",
13364 + "default.handlebars->27->478",
13365 + "default.handlebars->27->533",
13366 + "default.handlebars->27->561"
13367 ]
13368 },
13369 {
@@ -13381,7 +13381,7 @@
13381 "zh-chs": "英特爾&reg;AMT CIRA",
13382 "xloc": [
13383 "default-mobile.handlebars->9->233",
13384 - "default.handlebars->27->553"
13384 + "default.handlebars->27->559"
13385 ]
13386 },
13387 {
@@ -13400,7 +13400,7 @@
13400 "xloc": [
13401 "default.handlebars->27->196",
13402 "default.handlebars->27->404",
13403 - "default.handlebars->27->552"
13403 + "default.handlebars->27->558"
13404 ]
13405 },
13406 {
@@ -13449,7 +13449,7 @@
13449 "ru": "Политика Intel&reg; AMT",
13450 "zh-chs": "英特爾&reg;AMT政策",
13451 "xloc": [
13452 - "default.handlebars->27->1263"
13452 + "default.handlebars->27->1274"
13453 ]
13454 },
13455 {
@@ -13483,7 +13483,7 @@
13483 "ru": "Intel&reg; AMT Тег",
13484 "zh-chs": "英特爾&reg;AMT標籤",
13485 "xloc": [
13486 - "default.handlebars->27->531"
13486 + "default.handlebars->27->537"
13487 ]
13488 },
13489 {
@@ -13536,8 +13536,8 @@
13536 "zh-chs": "英特爾&reg;AMT已連接",
13537 "xloc": [
13538 "default-mobile.handlebars->9->244",
13539 - "default.handlebars->27->596",
13540 - "default.handlebars->27->597"
13539 + "default.handlebars->27->602",
13540 + "default.handlebars->27->603"
13541 ]
13542 },
13543 {
@@ -13554,8 +13554,8 @@
13554 "ru": "События Intel&reg; AMT desktop или serial.",
13555 "zh-chs": "英特爾&reg;AMT桌面和串行事件。",
13556 "xloc": [
13557 - "default.handlebars->27->1145",
13558 - "default.handlebars->27->1396"
13557 + "default.handlebars->27->1156",
13558 + "default.handlebars->27->1407"
13559 ]
13560 },
13561 {
@@ -13573,8 +13573,8 @@
13573 "zh-chs": "檢測到英特爾&reg;AMT",
13574 "xloc": [
13575 "default-mobile.handlebars->9->245",
13576 - "default.handlebars->27->598",
13577 - "default.handlebars->27->599"
13576 + "default.handlebars->27->604",
13577 + "default.handlebars->27->605"
13578 ]
13579 },
13580 {
@@ -13591,7 +13591,7 @@
13591 "ru": "Intel&reg; AMT маршрутизируется и готов к использованию.",
13592 "zh-chs": "英特爾&reg;AMT可路由並可以使用。",
13593 "xloc": [
13594 - "default.handlebars->27->554"
13594 + "default.handlebars->27->560"
13595 ]
13596 },
13597 {
@@ -13644,8 +13644,8 @@
13644 "zh-chs": "僅限英特爾&reg;AMT,無代理",
13645 "xloc": [
13646 "default-mobile.handlebars->9->382",
13647 - "default.handlebars->27->1174",
13648 - "default.handlebars->27->1200"
13647 + "default.handlebars->27->1185",
13648 + "default.handlebars->27->1211"
13649 ]
13650 },
13651 {
@@ -13662,7 +13662,7 @@
13662 "ru": "Технология Intel&reg; Active Management",
13663 "zh-chs": "英特爾&reg;主動管理技術",
13664 "xloc": [
13665 - "default.handlebars->27->526"
13665 + "default.handlebars->27->532"
13666 ]
13667 },
13668 {
@@ -13680,7 +13680,7 @@
13680 "zh-chs": "英特爾&reg;主動管理技術(英特爾&reg;AMT)",
13681 "xloc": [
13682 "default-mobile.handlebars->9->359",
13683 - "default.handlebars->27->875"
13683 + "default.handlebars->27->886"
13684 ]
13685 },
13686 {
@@ -13698,7 +13698,7 @@
13698 "zh-chs": "英特爾&reg;ME",
13699 "xloc": [
13700 "default-mobile.handlebars->9->228",
13701 - "default.handlebars->27->525"
13701 + "default.handlebars->27->531"
13702 ]
13703 },
13704 {
@@ -13711,7 +13711,7 @@
13711 "nl": "Intel&reg; Manageability Engine",
13712 "zh-chs": "英特尔&reg;可管理性引擎",
13713 "xloc": [
13714 - "default.handlebars->27->524"
13714 + "default.handlebars->27->530"
13715 ]
13716 },
13717 {
@@ -13729,7 +13729,7 @@
13729 "zh-chs": "英特爾&reg;SM",
13730 "xloc": [
13731 "default-mobile.handlebars->9->230",
13732 - "default.handlebars->27->529"
13732 + "default.handlebars->27->535"
13733 ]
13734 },
13735 {
@@ -13746,7 +13746,7 @@
13746 "ru": "Intel&reg; Standard Manageability",
13747 "zh-chs": "英特爾&reg;標準可管理性",
13748 "xloc": [
13749 - "default.handlebars->27->528"
13749 + "default.handlebars->27->534"
13750 ]
13751 },
13752 {
@@ -13847,7 +13847,7 @@
13847 "ru": "Интерактивный",
13848 "zh-chs": "互動",
13849 "xloc": [
13850 - "default.handlebars->27->756"
13850 + "default.handlebars->27->767"
13851 ]
13852 },
13853 {
@@ -13864,8 +13864,8 @@
13864 "ru": "Только интерактивный режим",
13865 "zh-chs": "僅限互動",
13866 "xloc": [
13867 - "default.handlebars->27->1384",
13868 - "default.handlebars->27->1391",
13867 + "default.handlebars->27->1395",
13868 + "default.handlebars->27->1402",
13869 "default.handlebars->27->330",
13870 "default.handlebars->27->352"
13871 ]
@@ -13884,7 +13884,7 @@
13884 "ru": "Интерфейсы",
13885 "zh-chs": "介面",
13886 "xloc": [
13887 - "default.handlebars->27->575"
13887 + "default.handlebars->27->581"
13888 ]
13889 },
13890 {
@@ -13901,7 +13901,7 @@
13901 "ru": "Инуктитут",
13902 "zh-chs": "因紐特人",
13903 "xloc": [
13904 - "default.handlebars->27->1030"
13904 + "default.handlebars->27->1041"
13905 ]
13906 },
13907 {
@@ -13918,7 +13918,7 @@
13918 "ru": "Некорректный тип группы устройств",
13919 "zh-chs": "無效的設備組類型",
13920 "xloc": [
13921 - "default.handlebars->27->1792"
13921 + "default.handlebars->27->1803"
13922 ]
13923 },
13924 {
@@ -13935,7 +13935,7 @@
13935 "ru": "Некорректный JSON",
13936 "zh-chs": "無效的JSON",
13937 "xloc": [
13938 - "default.handlebars->27->1786"
13938 + "default.handlebars->27->1797"
13939 ]
13940 },
13941 {
@@ -13952,8 +13952,8 @@
13952 "ru": "Некорректный формат файла JSON.",
13953 "zh-chs": "無效的JSON文件格式。",
13954 "xloc": [
13955 - "default.handlebars->27->1508",
13956 - "default.handlebars->27->1510"
13955 + "default.handlebars->27->1519",
13956 + "default.handlebars->27->1521"
13957 ]
13958 },
13959 {
@@ -13970,7 +13970,7 @@
13970 "ru": "Некорректный файл JSON: {0}.",
13971 "zh-chs": "無效的JSON文件:{0}。",
13972 "xloc": [
13973 - "default.handlebars->27->1506"
13973 + "default.handlebars->27->1517"
13974 ]
13975 },
13976 {
@@ -13987,7 +13987,7 @@
13987 "ru": "Некорректная сигнатура PKCS",
13988 "zh-chs": "無效的PKCS簽名",
13989 "xloc": [
13990 - "default.handlebars->27->1784"
13990 + "default.handlebars->27->1795"
13991 ]
13992 },
13993 {
@@ -14004,7 +14004,7 @@
14004 "ru": "Некорректная сигнатура RSA",
14005 "zh-chs": "無效的RSA密碼",
14006 "xloc": [
14007 - "default.handlebars->27->1785"
14007 + "default.handlebars->27->1796"
14008 ]
14009 },
14010 {
@@ -14140,7 +14140,7 @@
14140 "ru": "Коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:",
14141 "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:",
14142 "xloc": [
14143 - "default.handlebars->27->1386"
14143 + "default.handlebars->27->1397"
14144 ]
14145 },
14146 {
@@ -14173,7 +14173,7 @@
14173 "ru": "Пригласить",
14174 "zh-chs": "邀請",
14175 "xloc": [
14176 - "default.handlebars->27->1250",
14176 + "default.handlebars->27->1261",
14177 "default.handlebars->27->260",
14178 "default.handlebars->27->342"
14179 ]
@@ -14192,11 +14192,11 @@
14192 "ru": "Пригласительные коды",
14193 "zh-chs": "邀請碼",
14194 "xloc": [
14195 - "default.handlebars->27->1228",
14196 - "default.handlebars->27->1380",
14197 - "default.handlebars->27->1385",
14198 - "default.handlebars->27->1387",
14199 - "default.handlebars->27->1392"
14195 + "default.handlebars->27->1239",
14196 + "default.handlebars->27->1391",
14197 + "default.handlebars->27->1396",
14198 + "default.handlebars->27->1398",
14199 + "default.handlebars->27->1403"
14200 ]
14201 },
14202 {
@@ -14227,7 +14227,7 @@
14227 "nl": "Nodig iemand uit om de mesh-agent in deze apparaatgroep te installeren.",
14228 "zh-chs": "邀请某人在该设备组上安装网状代理。",
14229 "xloc": [
14230 - "default.handlebars->27->1249",
14230 + "default.handlebars->27->1260",
14231 "default.handlebars->27->259"
14232 ]
14233 },
@@ -14262,7 +14262,7 @@
14262 "ru": "Ирландский",
14263 "zh-chs": "愛爾蘭人",
14264 "xloc": [
14265 - "default.handlebars->27->1031"
14265 + "default.handlebars->27->1042"
14266 ]
14267 },
14268 {
@@ -14279,7 +14279,7 @@
14279 "ru": "Итальянский (Стандартный)",
14280 "zh-chs": "意大利語(標準)",
14281 "xloc": [
14282 - "default.handlebars->27->1032"
14282 + "default.handlebars->27->1043"
14283 ]
14284 },
14285 {
@@ -14296,7 +14296,7 @@
14296 "ru": "Итальянский (Швейцария)",
14297 "zh-chs": "義大利文(瑞士)",
14298 "xloc": [
14299 - "default.handlebars->27->1033"
14299 + "default.handlebars->27->1044"
14300 ]
14301 },
14302 {
@@ -14313,9 +14313,9 @@
14313 "ru": "Формат JSON",
14314 "zh-chs": "JSON格式",
14315 "xloc": [
14316 - "default.handlebars->27->1455",
14317 - "default.handlebars->27->1514",
14318 - "default.handlebars->27->433"
14316 + "default.handlebars->27->1466",
14317 + "default.handlebars->27->1525",
14318 + "default.handlebars->27->439"
14319 ]
14320 },
14321 {
@@ -14332,7 +14332,7 @@
14332 "ru": "Японский",
14333 "zh-chs": "日本",
14334 "xloc": [
14335 - "default.handlebars->27->1034"
14335 + "default.handlebars->27->1045"
14336 ]
14337 },
14338 {
@@ -14349,7 +14349,7 @@
14349 "ru": "Каннада",
14350 "zh-chs": "卡納達語",
14351 "xloc": [
14352 - "default.handlebars->27->1035"
14352 + "default.handlebars->27->1046"
14353 ]
14354 },
14355 {
@@ -14366,7 +14366,7 @@
14366 "ru": "Кашмирский",
14367 "zh-chs": "克什米爾語",
14368 "xloc": [
14369 - "default.handlebars->27->1036"
14369 + "default.handlebars->27->1047"
14370 ]
14371 },
14372 {
@@ -14383,7 +14383,7 @@
14383 "ru": "Казахский",
14384 "zh-chs": "哈薩克語",
14385 "xloc": [
14386 - "default.handlebars->27->1037"
14386 + "default.handlebars->27->1048"
14387 ]
14388 },
14389 {
@@ -14400,7 +14400,7 @@
14400 "ru": "Драйвер ядра",
14401 "zh-chs": "內核驅動程序",
14402 "xloc": [
14403 - "default.handlebars->27->757"
14403 + "default.handlebars->27->768"
14404 ]
14405 },
14406 {
@@ -14417,8 +14417,8 @@
14417 "ru": "Имя ключа",
14418 "zh-chs": "鍵名",
14419 "xloc": [
14420 - "default.handlebars->27->928",
14421 - "default.handlebars->27->931"
14420 + "default.handlebars->27->939",
14421 + "default.handlebars->27->942"
14422 ]
14423 },
14424 {
@@ -14459,7 +14459,7 @@
14459 "ru": "Кхмерский",
14460 "zh-chs": "高棉語",
14461 "xloc": [
14462 - "default.handlebars->27->1038"
14462 + "default.handlebars->27->1049"
14463 ]
14464 },
14465 {
@@ -14476,7 +14476,7 @@
14476 "ru": "Киргизский",
14477 "zh-chs": "吉爾吉斯",
14478 "xloc": [
14479 - "default.handlebars->27->1039"
14479 + "default.handlebars->27->1050"
14480 ]
14481 },
14482 {
@@ -14493,7 +14493,7 @@
14493 "ru": "Клингонский",
14494 "zh-chs": "克林貢",
14495 "xloc": [
14496 - "default.handlebars->27->1040"
14496 + "default.handlebars->27->1051"
14497 ]
14498 },
14499 {
@@ -14511,7 +14511,7 @@
14511 "zh-chs": "已知的",
14512 "xloc": [
14513 "default-mobile.handlebars->9->358",
14514 - "default.handlebars->27->874"
14514 + "default.handlebars->27->885"
14515 ]
14516 },
14517 {
@@ -14528,7 +14528,7 @@
14528 "ru": "Korean",
14529 "zh-chs": "韓語",
14530 "xloc": [
14531 - "default.handlebars->27->1041"
14531 + "default.handlebars->27->1052"
14532 ]
14533 },
14534 {
@@ -14545,7 +14545,7 @@
14545 "ru": "Корейский (Северная Корея)",
14546 "zh-chs": "韓語(朝鮮)",
14547 "xloc": [
14548 - "default.handlebars->27->1042"
14548 + "default.handlebars->27->1053"
14549 ]
14550 },
14551 {
@@ -14562,7 +14562,7 @@
14562 "ru": "Корейский (Южная Корея)",
14563 "zh-chs": "韓語(韓國)",
14564 "xloc": [
14565 - "default.handlebars->27->1043"
14565 + "default.handlebars->27->1054"
14566 ]
14567 },
14568 {
@@ -14579,8 +14579,8 @@
14579 "ru": "LF",
14580 "zh-chs": "如果",
14581 "xloc": [
14582 - "default.handlebars->27->769",
14583 - "default.handlebars->27->778"
14582 + "default.handlebars->27->780",
14583 + "default.handlebars->27->789"
14584 ]
14585 },
14586 {
@@ -14597,7 +14597,7 @@
14597 "ru": "Язык",
14598 "zh-chs": "語言",
14599 "xloc": [
14600 - "default.handlebars->27->1137"
14600 + "default.handlebars->27->1148"
14601 ]
14602 },
14603 {
@@ -14631,7 +14631,7 @@
14631 "ru": "Большой Фокус",
14632 "zh-chs": "大焦點",
14633 "xloc": [
14634 - "default.handlebars->27->745"
14634 + "default.handlebars->27->756"
14635 ]
14636 },
14637 {
@@ -14814,7 +14814,7 @@
14814 "ru": "Последний доступ",
14815 "zh-chs": "最後訪問",
14816 "xloc": [
14817 - "default.handlebars->27->1463"
14817 + "default.handlebars->27->1474"
14818 ]
14819 },
14820 {
@@ -14831,7 +14831,7 @@
14831 "ru": "Последний вход в систему",
14832 "zh-chs": "上次登錄",
14833 "xloc": [
14834 - "default.handlebars->27->1647"
14834 + "default.handlebars->27->1658"
14835 ]
14836 },
14837 {
@@ -14854,9 +14854,9 @@
14854 "default.handlebars->27->69",
14855 "default.handlebars->27->71",
14856 "default.handlebars->27->73",
14857 - "default.handlebars->27->832",
14858 - "default.handlebars->27->833",
14859 - "default.handlebars->27->834"
14857 + "default.handlebars->27->843",
14858 + "default.handlebars->27->844",
14859 + "default.handlebars->27->845"
14860 ]
14861 },
14862 {
@@ -14876,8 +14876,8 @@
14876 "default-mobile.handlebars->9->323",
14877 "default-mobile.handlebars->9->325",
14878 "default.handlebars->27->68",
14879 - "default.handlebars->27->829",
14880 - "default.handlebars->27->831"
14879 + "default.handlebars->27->840",
14880 + "default.handlebars->27->842"
14881 ]
14882 },
14883 {
@@ -14894,7 +14894,7 @@
14894 "ru": "Последнее изменение: {0}",
14895 "zh-chs": "上次更改:{0}",
14896 "xloc": [
14897 - "default.handlebars->27->1651"
14897 + "default.handlebars->27->1662"
14898 ]
14899 },
14900 {
@@ -14945,7 +14945,7 @@
14945 "ru": "Последний вход в систему: {0}",
14946 "zh-chs": "上次登錄:{0}",
14947 "xloc": [
14948 - "default.handlebars->27->1473"
14948 + "default.handlebars->27->1484"
14949 ]
14950 },
14951 {
@@ -14962,7 +14962,7 @@
14962 "ru": "Последнее посещение:",
14963 "zh-chs": "最後一次露面:",
14964 "xloc": [
14965 - "default.handlebars->27->602",
14965 + "default.handlebars->27->608",
14966 "default.handlebars->27->65"
14967 ]
14968 },
@@ -15031,7 +15031,7 @@
15031 "ru": "Латинский",
15032 "zh-chs": "拉丁",
15033 "xloc": [
15034 - "default.handlebars->27->1044"
15034 + "default.handlebars->27->1055"
15035 ]
15036 },
15037 {
@@ -15048,28 +15048,28 @@
15048 "ru": "Латышский",
15049 "zh-chs": "拉脫維亞語",
15050 "xloc": [
15051 - "default.handlebars->27->1045"
15051 + "default.handlebars->27->1056"
15052 ]
15053 },
15054 {
15055 "en": "Launch MeshCentral Router",
15056 "nl": "Start MeshCentral Router",
15057 "xloc": [
15058 - "default.handlebars->27->696"
15058 + "default.handlebars->27->707"
15059 ]
15060 },
15061 {
15062 "en": "Launch noVNC session to this device",
15063 "nl": "Start een noVNC-sessie op dit apparaat",
15064 "xloc": [
15065 - "default.handlebars->27->588"
15065 + "default.handlebars->27->594"
15066 ]
15067 },
15068 {
15069 "en": "Launch web-based RDP session to this device",
15070 "nl": "Start een webgebaseerde RDP-sessie op dit apparaat",
15071 "xloc": [
15072 - "default.handlebars->27->590"
15072 + "default.handlebars->27->596"
15073 ]
15074 },
15075 {
@@ -15082,7 +15082,7 @@
15082 "nl": "Leeg laten voor geen.",
15083 "zh-chs": "一无所有。",
15084 "xloc": [
15085 - "default.handlebars->27->1691"
15085 + "default.handlebars->27->1702"
15086 ]
15087 },
15088 {
@@ -15121,7 +15121,7 @@
15121 "ru": "Меньше",
15122 "zh-chs": "減",
15123 "xloc": [
15124 - "default.handlebars->27->1854"
15124 + "default.handlebars->27->1865"
15125 ]
15126 },
15127 {
@@ -15137,8 +15137,8 @@
15137 "ru": "Предельные события",
15138 "zh-chs": "极限赛事",
15139 "xloc": [
15140 - "default.handlebars->27->623",
15141 - "default.handlebars->27->642"
15140 + "default.handlebars->27->629",
15141 + "default.handlebars->27->648"
15142 ]
15143 },
15144 {
@@ -15174,9 +15174,9 @@
15174 "zh-chs": "有限輸入",
15175 "xloc": [
15176 "default-mobile.handlebars->9->431",
15177 - "default.handlebars->27->1364",
15178 - "default.handlebars->27->616",
15179 - "default.handlebars->27->635"
15177 + "default.handlebars->27->1375",
15178 + "default.handlebars->27->622",
15179 + "default.handlebars->27->641"
15180 ]
15181 },
15182 {
@@ -15194,7 +15194,7 @@
15194 "zh-chs": "僅限於輸入",
15195 "xloc": [
15196 "default-mobile.handlebars->9->406",
15197 - "default.handlebars->27->1322"
15197 + "default.handlebars->27->1333"
15198 ]
15199 },
15200 {
@@ -15367,7 +15367,7 @@
15367 "ru": "Linux ARM, Raspberry Pi (32bit)",
15368 "zh-chs": "Linux ARM,Raspberry Pi(32位)",
15369 "xloc": [
15370 - "default.handlebars->27->703"
15370 + "default.handlebars->27->714"
15371 ]
15372 },
15373 {
@@ -15473,7 +15473,7 @@
15473 "ru": "Linux x86 (32bit)",
15474 "zh-chs": "Linux x86(32位)",
15475 "xloc": [
15476 - "default.handlebars->27->700"
15476 + "default.handlebars->27->711"
15477 ]
15478 },
15479 {
@@ -15490,7 +15490,13 @@
15490 "ru": "Linux x86 (64bit)",
15491 "zh-chs": "Linux x86(64位)",
15492 "xloc": [
15493 - "default.handlebars->27->701"
15493 + "default.handlebars->27->712"
15494 + ]
15495 + },
15496 + {
15497 + "en": "Linux/BSD/macOS Command Shell",
15498 + "xloc": [
15499 + "default.handlebars->27->434"
15500 ]
15501 },
15502 {
@@ -15525,7 +15531,7 @@
15531 "ru": "Литовский",
15532 "zh-chs": "立陶宛語",
15533 "xloc": [
15528 - "default.handlebars->27->1046"
15534 + "default.handlebars->27->1057"
15535 ]
15536 },
15537 {
@@ -15543,10 +15549,10 @@
15549 "zh-chs": "載入中...",
15550 "xloc": [
15551 "default-mobile.handlebars->9->72",
15546 - "default.handlebars->27->1191",
15547 - "default.handlebars->27->1195",
15548 - "default.handlebars->27->692",
15549 - "default.handlebars->27->924"
15552 + "default.handlebars->27->1202",
15553 + "default.handlebars->27->1206",
15554 + "default.handlebars->27->703",
15555 + "default.handlebars->27->935"
15556 ]
15557 },
15558 {
@@ -15615,7 +15621,7 @@
15621 "ru": "Настройки локализации",
15622 "zh-chs": "本地化設置",
15623 "xloc": [
15618 - "default.handlebars->27->1140",
15624 + "default.handlebars->27->1151",
15625 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7"
15626 ]
15627 },
@@ -15633,7 +15639,7 @@
15639 "ru": "Местонахождение",
15640 "zh-chs": "位置",
15641 "xloc": [
15636 - "default.handlebars->27->577"
15642 + "default.handlebars->27->583"
15643 ]
15644 },
15645 {
@@ -15667,7 +15673,7 @@
15673 "ru": "Заблокировать учетную запись",
15674 "zh-chs": "鎖定賬戶",
15675 "xloc": [
15670 - "default.handlebars->27->1549"
15676 + "default.handlebars->27->1560"
15677 ]
15678 },
15679 {
@@ -15684,7 +15690,7 @@
15690 "ru": "Заблокировать учетную запись",
15691 "zh-chs": "鎖定賬戶",
15692 "xloc": [
15687 - "default.handlebars->27->1491"
15693 + "default.handlebars->27->1502"
15694 ]
15695 },
15696 {
@@ -15701,7 +15707,7 @@
15707 "ru": "Заблокирован",
15708 "zh-chs": "已鎖定",
15709 "xloc": [
15704 - "default.handlebars->27->1474"
15710 + "default.handlebars->27->1485"
15711 ]
15712 },
15713 {
@@ -15718,7 +15724,7 @@
15724 "ru": "Заблокированная учетная запись",
15725 "zh-chs": "賬戶鎖定",
15726 "xloc": [
15721 - "default.handlebars->27->1623"
15727 + "default.handlebars->27->1634"
15728 ]
15729 },
15730 {
@@ -15735,7 +15741,7 @@
15741 "ru": "Добавить событие",
15742 "zh-chs": "記錄事件",
15743 "xloc": [
15738 - "default.handlebars->27->566"
15744 + "default.handlebars->27->572"
15745 ]
15746 },
15747 {
@@ -15905,7 +15911,7 @@
15911 "ru": "Люксембургский",
15912 "zh-chs": "盧森堡語",
15913 "xloc": [
15908 - "default.handlebars->27->1047"
15914 + "default.handlebars->27->1058"
15915 ]
15916 },
15917 {
@@ -15924,10 +15930,10 @@
15930 "xloc": [
15931 "default-mobile.handlebars->9->331",
15932 "default-mobile.handlebars->9->333",
15927 - "default.handlebars->27->837",
15928 - "default.handlebars->27->839",
15929 - "default.handlebars->27->847",
15930 - "default.handlebars->27->849"
15933 + "default.handlebars->27->848",
15934 + "default.handlebars->27->850",
15935 + "default.handlebars->27->858",
15936 + "default.handlebars->27->860"
15937 ]
15938 },
15939 {
@@ -15963,8 +15969,8 @@
15969 "zh-chs": "MAC:{0}",
15970 "xloc": [
15971 "default-mobile.handlebars->9->334",
15966 - "default.handlebars->27->840",
15967 - "default.handlebars->27->850"
15972 + "default.handlebars->27->851",
15973 + "default.handlebars->27->861"
15974 ]
15975 },
15976 {
@@ -15982,8 +15988,8 @@
15988 "zh-chs": "MAC:{0},網關:{1}",
15989 "xloc": [
15990 "default-mobile.handlebars->9->332",
15985 - "default.handlebars->27->838",
15986 - "default.handlebars->27->848"
15991 + "default.handlebars->27->849",
15992 + "default.handlebars->27->859"
15993 ]
15994 },
15995 {
@@ -16040,9 +16046,9 @@
16046 "default-mobile.handlebars->9->236",
16047 "default.handlebars->27->203",
16048 "default.handlebars->27->411",
16043 - "default.handlebars->27->559",
16044 - "default.handlebars->27->902",
16045 - "default.handlebars->27->903",
16049 + "default.handlebars->27->565",
16050 + "default.handlebars->27->913",
16051 + "default.handlebars->27->914",
16052 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3"
16053 ]
16054 },
@@ -16077,7 +16083,7 @@
16083 "ru": "MQTT Вход",
16084 "zh-chs": "MQTT登錄",
16085 "xloc": [
16080 - "default.handlebars->27->593"
16086 + "default.handlebars->27->599"
16087 ]
16088 },
16089 {
@@ -16095,7 +16101,7 @@
16101 "zh-chs": "MQTT通道已連接",
16102 "xloc": [
16103 "default-mobile.handlebars->9->246",
16098 - "default.handlebars->27->601"
16104 + "default.handlebars->27->607"
16105 ]
16106 },
16107 {
@@ -16113,7 +16119,7 @@
16119 "zh-chs": "MQTT已連接",
16120 "xloc": [
16121 "default.handlebars->27->163",
16116 - "default.handlebars->27->600"
16122 + "default.handlebars->27->606"
16123 ]
16124 },
16125 {
@@ -16132,7 +16138,7 @@

This file is too large to show in full.

views/default.handlebars
+44 -3
@@ -4233,7 +4233,7 @@
4233 }
4234
4235 var x = "Select an operation to perform on all selected devices. Actions will be performed only with proper rights." + '<br /><br />';
4236 - x += addHtmlValue("Operation", '<select id=d2groupop><option value=100>' + "Wake-up devices" + '</option><option value=4>' + "Sleep devices" + '</option><option value=3>' + "Reset devices" + '</option><option value=2>' + "Power off devices" + '</option><option value=105>' + "Export device information" + '</option><option value=102>' + "Move to device group" + '</option>' + addedOptions + '<option value=101>' + "Delete devices" + '</option></select>');
4236 + x += addHtmlValue("Operation", '<select id=d2groupop><option value=100>' + "Wake-up devices" + '</option><option value=106>' + "Run commands" + '</option><option value=4>' + "Sleep devices" + '</option><option value=3>' + "Reset devices" + '</option><option value=2>' + "Power off devices" + '</option><option value=105>' + "Export device information" + '</option><option value=102>' + "Move to device group" + '</option>' + addedOptions + '<option value=101>' + "Delete devices" + '</option></select>');
4237 setDialogMode(2, "Group Action", 3, groupActionFunctionEx, x);
4238 }
4239
@@ -4273,6 +4273,26 @@
4273 } else if (op == 105) {
4274 // Export device information
4275 p2downloadDeviceInfo();
4276 + } else if (op == 106) {
4277 + // Run commands
4278 + var wintype = false, linuxtype = false, chkNodeIds = getCheckedDevices();
4279 + for (var i in chkNodeIds) {
4280 + var n = getNodeFromId(chkNodeIds[i]);
4281 + if (n.agent) { if ((n.agent.id > 0) && (n.agent.id < 5)) { wintype = true; } else { linuxtype = true; } }
4282 + }
4283 + if ((wintype == true) || (linuxtype == true)) {
4284 + var x = "Run commands on selected devices." + '<br /><br />';
4285 + if (wintype == true) {
4286 + x += '<select id=d2cmdtype style=width:100%>';
4287 + x += '<option value=1>' + "Windows Command Prompt" + '</option><option value=2>' + "Windows PowerShell" + '</option>';
4288 + if (linuxtype == true) { x += '<option value=3>' + "Linux/BSD/macOS Command Shell" + '</option>'; }
4289 + x += '</select>';
4290 + }
4291 + x += '<textarea id=d2runcmd style=background-color:#fcf3cf;width:100%;height:200px;resize:none;overflow-y:scroll></textarea>';
4292 + setDialogMode(2, "Run Commands", 3, d2groupActionFunctionRunCommands, x);
4293 + Q('d2runcmd').focus();
4294 + //QE('idx_dlgOkButton', true);
4295 + }
4296 } else {
4297 // Power operation
4298 meshserver.send({ action: 'poweraction', nodeids: getCheckedDevices(), actiontype: parseInt(op) });
@@ -4309,6 +4329,11 @@
4329
4330 function d2groupActionFunctionDelCheck() { QE('idx_dlgOkButton', Q('d2check').checked); }
4331 function d2groupActionFunctionDelExec() { meshserver.send({ action: 'removedevices', nodeids: getCheckedDevices() }); uncheckAllDevices(); }
4332 + function d2groupActionFunctionRunCommands() {
4333 + var type = 3;
4334 + try { type = parseInt(Q('d2cmdtype').value); } catch (ex) { }
4335 + meshserver.send({ action: 'runcommands', nodeids: getCheckedDevices(), type: type, cmds: Q('d2runcmd').value }); uncheckAllDevices();
4336 + }
4337
4338 function onSortSelectChange(skipsave) {
4339 sort = document.getElementById('sortselect').selectedIndex;
@@ -5763,7 +5788,7 @@
5788 var x = "Select an operation to perform on this device." + '<br /><br />';
5789 var y = '<select id=d2deviceop style=float:right;width:250px>';
5790 if ((rights & 64) != 0) { y += '<option value=100>' + "Wake-up" + '</option>'; } // Wake-up permission
5766 - if ((rights & 8) != 0) { y += '<option value=4>' + "Sleep" + '</option><option value=3>' + "Reset" + '</option><option value=2>' + "Power off" + '</option>'; } // Remote control permission
5791 + if ((rights & 8) != 0) { y += '<option value=106>' + "Run Commands" + '</option><option value=4>' + "Sleep" + '</option><option value=3>' + "Reset" + '</option><option value=2>' + "Power off" + '</option>'; } // Remote control permission
5792 if ((currentNode.conn & 16) != 0) { y += '<option value=103>' + "Send MQTT Message" + '</option>'; }
5793 if (((currentNode.conn & 1) != 0) && ((rights & 32768) != 0)) { y += '<option value=104>' + "Uninstall Agent" + '</option>'; }
5794 y += '</select>';
@@ -5782,12 +5807,29 @@
5807 } else if (op == 104) {
5808 // Uninstall agent
5809 p10showSendUninstallAgentDialog([currentNode._id]);
5810 + } else if (op == 106) {
5811 + // Run commands
5812 + var wintype = false, linuxtype = false;
5813 + if (currentNode.agent) { if ((currentNode.agent.id > 0) && (currentNode.agent.id < 5)) { wintype = true; } else { linuxtype = true; } }
5814 + if ((wintype == true) || (linuxtype == true)) {
5815 + var x = "Run commands on this device." + '<br /><br />';
5816 + if (wintype == true) { x += '<select id=d2cmdtype style=width:100%><option value=1>' + "Windows Command Prompt" + '</option><option value=2>' + "Windows PowerShell" + '</option></select>'; }
5817 + x += '<textarea id=d2runcmd style=background-color:#fcf3cf;width:100%;height:200px;resize:none;overflow-y:scroll></textarea>';
5818 + setDialogMode(2, "Run Commands", 3, deviceRunCmdsFunctionEx, x);
5819 + Q('d2runcmd').focus();
5820 + }
5821 } else {
5822 // Power operation
5823 meshserver.send({ action: 'poweraction', nodeids: [ currentNode._id ], actiontype: parseInt(op) });
5824 }
5825 }
5826
5827 + function deviceRunCmdsFunctionEx() {
5828 + var cmdType = 3;
5829 + if ((currentNode.agent.id > 0) && (currentNode.agent.id < 5)) { cmdType = Q('d2cmdtype').value; }
5830 + meshserver.send({ action: 'runcommands', nodeids: [ currentNode._id ], type: parseInt(cmdType), cmds: Q('d2runcmd').value });
5831 + }
5832 +
5833 // Called when MeshCommander needs new credentials or updated credentials.
5834 function updateAmtCredentials(forceDialog) {
5835 var node = getNodeFromId(currentNode._id);
@@ -8043,7 +8085,6 @@
8085 if (mode == 3) { eventList = currentUserEvents; }
8086 for (var i in eventList) { if (eventList[i].h == h) { xevent = eventList[i]; break; } }
8087 if (xevent) {
8046 - console.log(xevent);
8088 var x = '<div style=overflow-y:auto>';
8089 for (var i in xevent) {
8090 if ((i == 'h') || (i == '_id') || (i == 'ids') || (i == 'domain') || (xevent[i] == null) || (typeof xevent[i] == 'object')) continue;