Started work on adding user groups in individual device permissions.

Ylian Saint-Hilaire committed Apr 12, 2020 at 22:51 UTC 762347ed5e12a3cd9aa2fca56839c401e0f255c5
4 files changed +1265 -1126
meshuser.js
+32 -14
@@ -2514,7 +2514,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2514 // Convert user names to userid's
2515 if (command.userids == null) {
2516 command.userids = [];
2517 - for (var i in command.usernames) { command.userids.push('user/' + domain.id + '/' + command.usernames[i].toLowerCase()); }
2517 + for (var i in command.usernames) {
2518 + if (command.usernames[i] != null) { command.userids.push('user/' + domain.id + '/' + command.usernames[i].toLowerCase()); }
2519 + }
2520 }
2521
2522 // Get the node and the rights for this node
@@ -2530,12 +2532,18 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2532 var nodeChanged = false;
2533 for (var i in command.userids) {
2534 var newuserid = command.userids[i];
2533 - var newuser = parent.users[newuserid];
2535
2535 - // Search for a user name in that windows domain is the username starts with *\
2536 - if ((newuser == null) && (newuserid.startsWith('user/' + domain.id + '/*\\')) == true) {
2537 - var search = newuserid.split('/')[2].substring(1);
2538 - for (var i in parent.users) { if (i.endsWith(search) && (parent.users[i].domain == domain.id)) { newuser = parent.users[i]; command.userids[i] = newuserid = newuser._id; break; } }
2536 + // Add a user
2537 + var newuser = null;
2538 + if (newuserid.startsWith('ugrp/')) { newuser = parent.userGroups[newuserid]; }
2539 + if (newuserid.startsWith('user/')) {
2540 + newuser = parent.users[newuserid];
2541 +
2542 + // Search for a user name in that windows domain is the username starts with *\
2543 + if ((newuser == null) && (newuserid.startsWith('user/' + domain.id + '/*\\')) == true) {
2544 + var search = newuserid.split('/')[2].substring(1);
2545 + for (var i in parent.users) { if (i.endsWith(search) && (parent.users[i].domain == domain.id)) { newuser = parent.users[i]; command.userids[i] = newuserid = newuser._id; break; } }
2546 + }
2547 }
2548
2549 if (newuser != null) {
@@ -2565,16 +2573,26 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2573 node.links[newuserid] = { rights: command.rights }
2574 nodeChanged = true;
2575 }
2568 -
2576 +
2577 // Save the user to the database
2570 - db.SetUser(newuser);
2571 - parent.parent.DispatchEvent([newuser], obj, 'resubscribe');
2578 + if (newuserid.startsWith('user/')) {
2579 + db.SetUser(newuser);
2580 + parent.parent.DispatchEvent([newuser], obj, 'resubscribe');
2581
2573 - // Notify user change
2574 - var targets = ['*', 'server-users', newuserid];
2575 - var event = { etype: 'user', userid: user._id, username: user.name, action: 'accountchange', msg: (command.rights == 0) ? ('Removed user device rights for ' + newuser.name) : ('Changed user device rights for ' + newuser.name), domain: domain.id, account: parent.CloneSafeUser(newuser), nodeListChange: newuserid };
2576 - if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the user. Another event will come.
2577 - parent.parent.DispatchEvent(targets, obj, event);
2582 + // Notify user change
2583 + var targets = ['*', 'server-users', newuserid];
2584 + var event = { etype: 'user', userid: user._id, username: user.name, action: 'accountchange', msg: (command.rights == 0) ? ('Removed user device rights for ' + newuser.name) : ('Changed user device rights for ' + newuser.name), domain: domain.id, account: parent.CloneSafeUser(newuser), nodeListChange: newuserid };
2585 + if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the user. Another event will come.
2586 + parent.parent.DispatchEvent(targets, obj, event);
2587 + } else if (newuserid.startsWith('ugrp/')) {
2588 + db.Set(newuser);
2589 +
2590 + // Notify user group change
2591 + var targets = ['*', 'server-ugroups', newuser._id];
2592 + var event = { etype: 'ugrp', username: user.name, ugrpid: newuser._id, name: newuser.name, action: 'usergroupchange', links: newuser.links, msg: 'User group changed: ' + newuser.name, domain: domain.id };
2593 + if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the user. Another event will come.
2594 + parent.parent.DispatchEvent(targets, obj, event);
2595 + }
2596 }
2597 }
2598
translate/translate.json
+1127 -1102
@@ -14,8 +14,8 @@
14 "ru": " + CIRA",
15 "zh-chs": " + CIRA",
16 "xloc": [
17 - "default.handlebars->27->1128",
18 - "default.handlebars->27->1130"
17 + "default.handlebars->27->1131",
18 + "default.handlebars->27->1133"
19 ]
20 },
21 {
@@ -174,7 +174,7 @@
174 "ru": " Может быть использована подсказка пароля, но не рекоммендуется.",
175 "zh-chs": " 可以使用密碼提示,但不建議使用。",
176 "xloc": [
177 - "default.handlebars->27->1058"
177 + "default.handlebars->27->1061"
178 ]
179 },
180 {
@@ -191,8 +191,8 @@
191 "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.",
192 "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
193 "xloc": [
194 - "default.handlebars->27->1203",
195 - "default.handlebars->27->1472"
194 + "default.handlebars->27->1206",
195 + "default.handlebars->27->1485"
196 ]
197 },
198 {
@@ -375,7 +375,7 @@
375 "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.",
376 "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。",
377 "xloc": [
378 - "default.handlebars->27->1175"
378 + "default.handlebars->27->1178"
379 ]
380 },
381 {
@@ -408,7 +408,7 @@
408 "zh-chs": ",",
409 "xloc": [
410 "default-mobile.handlebars->9->331",
411 - "default.handlebars->27->1262"
411 + "default.handlebars->27->1268"
412 ]
413 },
414 {
@@ -443,7 +443,7 @@
443 "ru": ", MQTT онлайн",
444 "zh-chs": ",MQTT在線",
445 "xloc": [
446 - "default.handlebars->27->807"
446 + "default.handlebars->27->810"
447 ]
448 },
449 {
@@ -460,7 +460,7 @@
460 "ru": ", Soft-KVM",
461 "zh-chs": ",軟KVM",
462 "xloc": [
463 - "default.handlebars->27->666"
463 + "default.handlebars->27->669"
464 ]
465 },
466 {
@@ -479,9 +479,9 @@
479 "xloc": [
480 "default-mobile.handlebars->9->231",
481 "default-mobile.handlebars->9->239",
482 - "default.handlebars->27->667",
483 - "default.handlebars->27->698",
484 - "default.handlebars->27->710",
482 + "default.handlebars->27->670",
483 + "default.handlebars->27->701",
484 + "default.handlebars->27->713",
485 "xterm.handlebars->9->6"
486 ]
487 },
@@ -604,9 +604,9 @@
604 "xloc": [
605 "default-mobile.handlebars->9->244",
606 "default-mobile.handlebars->9->70",
607 - "default.handlebars->27->1299",
608 - "default.handlebars->27->1573",
609 - "default.handlebars->27->712"
607 + "default.handlebars->27->1305",
608 + "default.handlebars->27->1588",
609 + "default.handlebars->27->715"
610 ]
611 },
612 {
@@ -654,7 +654,7 @@
654 "ru": "1 активная сессия",
655 "zh-chs": "1個活動會話",
656 "xloc": [
657 - "default.handlebars->27->1527"
657 + "default.handlebars->27->1540"
658 ]
659 },
660 {
@@ -673,7 +673,7 @@
673 "xloc": [
674 "default-mobile.handlebars->9->335",
675 "default-mobile.handlebars->9->80",
676 - "default.handlebars->27->1318"
676 + "default.handlebars->27->1324"
677 ]
678 },
679 {
@@ -709,7 +709,7 @@
709 "ru": "1 группа",
710 "zh-chs": "1組",
711 "xloc": [
712 - "default.handlebars->27->1497"
712 + "default.handlebars->27->1510"
713 ]
714 },
715 {
@@ -781,7 +781,7 @@
781 "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...",
782 "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...",
783 "xloc": [
784 - "default.handlebars->27->1353"
784 + "default.handlebars->27->1359"
785 ]
786 },
787 {
@@ -832,7 +832,7 @@
832 "ru": "1 сессия",
833 "zh-chs": "1節",
834 "xloc": [
835 - "default.handlebars->27->1357"
835 + "default.handlebars->27->1363"
836 ]
837 },
838 {
@@ -1100,8 +1100,8 @@
1100 "ru": "двухфакторная аутентификация включена",
1101 "zh-chs": "啟用第二因素身份驗證",
1102 "xloc": [
1103 - "default.handlebars->27->1370",
1104 - "default.handlebars->27->1518"
1103 + "default.handlebars->27->1376",
1104 + "default.handlebars->27->1531"
1105 ]
1106 },
1107 {
@@ -1465,7 +1465,7 @@
1465 "ru": "7-дневная статистика работы",
1466 "zh-chs": "7天電源狀態",
1467 "xloc": [
1468 - "default.handlebars->27->605"
1468 + "default.handlebars->27->608"
1469 ]
1470 },
1471 {
@@ -1812,7 +1812,7 @@
1812 "ru": "Отказано в доступе",
1813 "zh-chs": "拒絕訪問",
1814 "xloc": [
1815 - "default.handlebars->27->808"
1815 + "default.handlebars->27->811"
1816 ]
1817 },
1818 {
@@ -1847,7 +1847,7 @@
1847 "ru": "Доступ к файлам сервера",
1848 "zh-chs": "訪問服務器文件",
1849 "xloc": [
1850 - "default.handlebars->27->1478"
1850 + "default.handlebars->27->1491"
1851 ]
1852 },
1853 {
@@ -1922,8 +1922,8 @@
1922 "default-mobile.handlebars->9->55",
1923 "default-mobile.handlebars->9->57",
1924 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0",
1925 - "default.handlebars->27->1067",
1926 - "default.handlebars->27->1069",
1925 + "default.handlebars->27->1070",
1926 + "default.handlebars->27->1072",
1927 "default.handlebars->27->439",
1928 "default.handlebars->27->441"
1929 ]
@@ -1956,8 +1956,8 @@
1956 "zh-chs": "帐户已被锁定",
1957 "es": "La cuenta esta bloqueada",
1958 "xloc": [
1959 - "default.handlebars->27->1371",
1960 - "default.handlebars->27->1475"
1959 + "default.handlebars->27->1377",
1960 + "default.handlebars->27->1488"
1961 ]
1962 },
1963 {
@@ -2045,7 +2045,7 @@
2045 "ru": "Действиe",
2046 "zh-chs": "行動",
2047 "xloc": [
2048 - "default.handlebars->27->813",
2048 + "default.handlebars->27->816",
2049 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2050 ]
2051 },
@@ -2063,8 +2063,8 @@
2063 "ru": "Файл действий",
2064 "zh-chs": "動作文件",
2065 "xloc": [
2066 - "default.handlebars->27->646",
2067 - "default.handlebars->27->648"
2066 + "default.handlebars->27->649",
2067 + "default.handlebars->27->651"
2068 ]
2069 },
2070 {
@@ -2141,7 +2141,7 @@
2141 "default-mobile.handlebars->9->182",
2142 "default.handlebars->27->462",
2143 "default.handlebars->27->464",
2144 - "default.handlebars->27->778"
2144 + "default.handlebars->27->781"
2145 ]
2146 },
2147 {
@@ -2158,8 +2158,8 @@
2158 "ru": "Активация",
2159 "zh-chs": "激活",
2160 "xloc": [
2161 - "default.handlebars->27->1141",
2162 - "default.handlebars->27->1143",
2161 + "default.handlebars->27->1144",
2162 + "default.handlebars->27->1146",
2163 "default.handlebars->27->214",
2164 "default.handlebars->27->216"
2165 ]
@@ -2229,7 +2229,7 @@
2229 "zh-chs": "添加設備",
2230 "es": "Agregar Dispositivo",
2231 "xloc": [
2232 - "default.handlebars->27->1543"
2232 + "default.handlebars->27->1556"
2233 ]
2234 },
2235 {
@@ -2246,7 +2246,7 @@
2246 "ru": "Добавить событие к устройству",
2247 "zh-chs": "添加設備事件",
2248 "xloc": [
2249 - "default.handlebars->27->588"
2249 + "default.handlebars->27->591"
2250 ]
2251 },
2252 {
@@ -2263,10 +2263,10 @@
2263 "ru": "Добавить группу устройств",
2264 "zh-chs": "添加設備組",
2265 "xloc": [
2266 - "default.handlebars->27->1231",
2267 - "default.handlebars->27->1233",
2268 - "default.handlebars->27->1454",
2269 - "default.handlebars->27->1549",
2266 + "default.handlebars->27->1235",
2267 + "default.handlebars->27->1237",
2268 + "default.handlebars->27->1460",
2269 + "default.handlebars->27->1562",
2270 "default.handlebars->27->189"
2271 ]
2272 },
@@ -2281,7 +2281,7 @@
2281 "zh-chs": "添加设备权限",
2282 "es": "Agregar permisos de dispositivo",
2283 "xloc": [
2284 - "default.handlebars->27->1234"
2284 + "default.handlebars->27->1238"
2285 ]
2286 },
2287 {
@@ -2366,7 +2366,7 @@
2366 "ru": "Добавить участие",
2367 "zh-chs": "添加會員",
2368 "xloc": [
2369 - "default.handlebars->27->1569"
2369 + "default.handlebars->27->1584"
2370 ]
2371 },
2372 {
@@ -2404,8 +2404,8 @@
2404 "default.handlebars->27->131",
2405 "default.handlebars->27->134",
2406 "default.handlebars->27->135",
2407 - "default.handlebars->27->835",
2408 - "default.handlebars->27->836"
2407 + "default.handlebars->27->838",
2408 + "default.handlebars->27->839"
2409 ]
2410 },
2411 {
@@ -2437,7 +2437,8 @@
2437 "zh-chs": "添加用户设备权限",
2438 "es": "Agregar permisos del usuario del dispositivo",
2439 "xloc": [
2440 - "default.handlebars->27->1237"
2440 + "default.handlebars->27->1241",
2441 + "default.handlebars->27->1243"
2442 ]
2443 },
2444 {
@@ -2454,9 +2455,10 @@
2455 "ru": "Добавить группу пользователей",
2456 "zh-chs": "添加用戶組",
2457 "xloc": [
2457 - "default.handlebars->27->1135",
2458 - "default.handlebars->27->1232",
2459 - "default.handlebars->27->1555"
2458 + "default.handlebars->27->1138",
2459 + "default.handlebars->27->1236",
2460 + "default.handlebars->27->1568",
2461 + "default.handlebars->27->549"
2462 ]
2463 },
2464 {
@@ -2490,8 +2492,8 @@
2492 "ru": "Добавить пользователей",
2493 "zh-chs": "添加用戶",
2494 "xloc": [
2493 - "default.handlebars->27->1134",
2494 - "default.handlebars->27->1449"
2495 + "default.handlebars->27->1137",
2496 + "default.handlebars->27->1455"
2497 ]
2498 },
2499 {
@@ -2508,7 +2510,7 @@
2510 "ru": "Добавить пользователей в группу устройств",
2511 "zh-chs": "將用戶添加到設備組",
2512 "xloc": [
2511 - "default.handlebars->27->1230"
2513 + "default.handlebars->27->1234"
2514 ]
2515 },
2516 {
@@ -2525,7 +2527,7 @@
2527 "ru": "Добавить пользователей в группу",
2528 "zh-chs": "將用戶添加到用戶組",
2529 "xloc": [
2528 - "default.handlebars->27->1474"
2530 + "default.handlebars->27->1487"
2531 ]
2532 },
2533 {
@@ -2576,7 +2578,7 @@
2578 "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.",
2579 "zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。",
2580 "xloc": [
2579 - "default.handlebars->27->1136",
2581 + "default.handlebars->27->1139",
2582 "default.handlebars->27->207"
2583 ]
2584 },
@@ -2594,7 +2596,7 @@
2596 "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.",
2597 "zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。",
2598 "xloc": [
2597 - "default.handlebars->27->1138",
2599 + "default.handlebars->27->1141",
2600 "default.handlebars->27->209"
2601 ]
2602 },
@@ -2629,7 +2631,7 @@
2631 "ru": "Добавить новый компьютер к этой сети установкой Mesh Agent.",
2632 "zh-chs": "通過安裝網格代理將新計算機添加到該網格。",
2633 "xloc": [
2632 - "default.handlebars->27->1144",
2634 + "default.handlebars->27->1147",
2635 "default.handlebars->27->217"
2636 ]
2637 },
@@ -2681,7 +2683,7 @@
2683 "ru": "Режим управления администратора (ACM)",
2684 "zh-chs": "管理員控制模式(ACM)",
2685 "xloc": [
2684 - "default.handlebars->27->780"
2686 + "default.handlebars->27->783"
2687 ]
2688 },
2689 {
@@ -2698,7 +2700,7 @@
2700 "zh-chs": "管理員憑證",
2701 "es": "Credenciales del Administrador",
2702 "xloc": [
2701 - "default.handlebars->27->786"
2703 + "default.handlebars->27->789"
2704 ]
2705 },
2706 {
@@ -2733,7 +2735,7 @@
2735 "ru": "Области администратора",
2736 "zh-chs": "管理領域",
2737 "xloc": [
2736 - "default.handlebars->27->1501"
2738 + "default.handlebars->27->1514"
2739 ]
2740 },
2741 {
@@ -2768,7 +2770,7 @@
2770 "ru": "Административные области",
2771 "zh-chs": "行政領域",
2772 "xloc": [
2771 - "default.handlebars->27->1418"
2773 + "default.handlebars->27->1424"
2774 ]
2775 },
2776 {
@@ -2785,7 +2787,7 @@
2787 "ru": "Администратор",
2788 "zh-chs": "管理員",
2789 "xloc": [
2788 - "default.handlebars->27->1364"
2790 + "default.handlebars->27->1370"
2791 ]
2792 },
2793 {
@@ -2802,7 +2804,7 @@
2804 "ru": "Африканский",
2805 "zh-chs": "南非語",
2806 "xloc": [
2805 - "default.handlebars->27->838"
2807 + "default.handlebars->27->841"
2808 ]
2809 },
2810 {
@@ -2822,8 +2824,8 @@
2824 "default-mobile.handlebars->9->124",
2825 "default-mobile.handlebars->9->177",
2826 "default-mobile.handlebars->9->193",
2825 - "default.handlebars->27->1287",
2827 "default.handlebars->27->1293",
2828 + "default.handlebars->27->1299",
2829 "default.handlebars->27->168",
2830 "default.handlebars->27->361",
2831 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -2843,8 +2845,8 @@
2845 "ru": "Агент + Intel AMT",
2846 "zh-chs": "代理+英特爾AMT",
2847 "xloc": [
2846 - "default.handlebars->27->1289",
2847 - "default.handlebars->27->1295"
2848 + "default.handlebars->27->1295",
2849 + "default.handlebars->27->1301"
2850 ]
2851 },
2852 {
@@ -2879,7 +2881,7 @@
2881 "zh-chs": "代理控制台",
2882 "xloc": [
2883 "default-mobile.handlebars->9->316",
2882 - "default.handlebars->27->1245"
2884 + "default.handlebars->27->1251"
2885 ]
2886 },
2887 {
@@ -2896,7 +2898,7 @@
2898 "ru": "Счетчик ошибок агента",
2899 "zh-chs": "座席錯誤計數器",
2900 "xloc": [
2899 - "default.handlebars->27->1582"
2901 + "default.handlebars->27->1597"
2902 ]
2903 },
2904 {
@@ -2965,7 +2967,7 @@
2967 "ru": "Сессии агентов",
2968 "zh-chs": "座席會議",
2969 "xloc": [
2968 - "default.handlebars->27->1598"
2970 + "default.handlebars->27->1613"
2971 ]
2972 },
2973 {
@@ -3000,7 +3002,7 @@
3002 "ru": "Типы агента",
3003 "zh-chs": "代理類型",
3004 "xloc": [
3003 - "default.handlebars->27->1291",
3005 + "default.handlebars->27->1297",
3006 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
3007 ]
3008 },
@@ -3054,7 +3056,7 @@
3056 "ru": "Агент оффлайн",
3057 "zh-chs": "代理離線",
3058 "xloc": [
3057 - "default.handlebars->27->806"
3059 + "default.handlebars->27->809"
3060 ]
3061 },
3062 {
@@ -3071,7 +3073,7 @@
3073 "ru": "Агент онлайн",
3074 "zh-chs": "代理在線",
3075 "xloc": [
3074 - "default.handlebars->27->805"
3076 + "default.handlebars->27->808"
3077 ]
3078 },
3079 {
@@ -3088,7 +3090,7 @@
3090 "ru": "Агенты",
3091 "zh-chs": "代理商",
3092 "xloc": [
3091 - "default.handlebars->27->1611"
3093 + "default.handlebars->27->1626"
3094 ]
3095 },
3096 {
@@ -3105,7 +3107,7 @@
3107 "ru": "Албанский",
3108 "zh-chs": "阿爾巴尼亞語",
3109 "xloc": [
3108 - "default.handlebars->27->839"
3110 + "default.handlebars->27->842"
3111 ]
3112 },
3113 {
@@ -3158,9 +3160,9 @@
3160 "ru": "Фокусирование всех",
3161 "zh-chs": "全部聚焦",
3162 "xloc": [
3161 - "default.handlebars->27->668",
3162 - "default.handlebars->27->670",
3163 - "default.handlebars->27->671"
3163 + "default.handlebars->27->671",
3164 + "default.handlebars->27->673",
3165 + "default.handlebars->27->674"
3166 ]
3167 },
3168 {
@@ -3177,8 +3179,8 @@
3179 "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.",
3180 "zh-chs": "允許用戶管理此設備組和該組中的設備。",
3181 "xloc": [
3180 - "default.handlebars->27->1201",
3181 - "default.handlebars->27->1471"
3182 + "default.handlebars->27->1204",
3183 + "default.handlebars->27->1484"
3184 ]
3185 },
3186 {
@@ -3192,7 +3194,7 @@
3194 "zh-chs": "允许用户管理此设备。",
3195 "es": "Permitir al usuario administrar este dispositivo",
3196 "xloc": [
3195 - "default.handlebars->27->1202"
3197 + "default.handlebars->27->1205"
3198 ]
3199 },
3200 {
@@ -3245,7 +3247,7 @@
3247 "ru": "Поменять (F10 = ESC+0)",
3248 "zh-chs": "備用(F10 = ESC + 0)",
3249 "xloc": [
3248 - "default.handlebars->27->703"
3250 + "default.handlebars->27->706"
3251 ]
3252 },
3253 {
@@ -3279,8 +3281,8 @@
3281 "ru": "Всегда уведомлять",
3282 "zh-chs": "始終通知",
3283 "xloc": [
3282 - "default.handlebars->27->1115",
3283 - "default.handlebars->27->1510",
3284 + "default.handlebars->27->1118",
3285 + "default.handlebars->27->1523",
3286 "default.handlebars->27->497"
3287 ]
3288 },
@@ -3298,8 +3300,8 @@
3300 "ru": "Всегда запрашивать",
3301 "zh-chs": "總是提示",
3302 "xloc": [
3301 - "default.handlebars->27->1116",
3302 - "default.handlebars->27->1511",
3303 + "default.handlebars->27->1119",
3304 + "default.handlebars->27->1524",
3305 "default.handlebars->27->498"
3306 ]
3307 },
@@ -3489,7 +3491,7 @@
3491 "zh-chs": "阿拉伯文(阿爾及利亞)",
3492 "es": "Arabe (Algeria)",
3493 "xloc": [
3492 - "default.handlebars->27->841"
3494 + "default.handlebars->27->844"
3495 ]
3496 },
3497 {
@@ -3506,7 +3508,7 @@
3508 "zh-chs": "阿拉伯文(巴林)",
3509 "es": "Arabe (Bahrain)",
3510 "xloc": [
3509 - "default.handlebars->27->842"
3511 + "default.handlebars->27->845"
3512 ]
3513 },
3514 {
@@ -3523,7 +3525,7 @@
3525 "zh-chs": "阿拉伯文(埃及)",
3526 "es": "Arabe (Egipto)",
3527 "xloc": [
3526 - "default.handlebars->27->843"
3528 + "default.handlebars->27->846"
3529 ]
3530 },
3531 {
@@ -3540,7 +3542,7 @@
3542 "zh-chs": "阿拉伯文(伊拉克)",
3543 "es": "Arabe (Irak)",
3544 "xloc": [
3543 - "default.handlebars->27->844"
3545 + "default.handlebars->27->847"
3546 ]
3547 },
3548 {
@@ -3557,7 +3559,7 @@
3559 "zh-chs": "阿拉伯語(約旦)",
3560 "es": "Árabe (Jordania)",
3561 "xloc": [
3560 - "default.handlebars->27->845"
3562 + "default.handlebars->27->848"
3563 ]
3564 },
3565 {
@@ -3574,7 +3576,7 @@
3576 "zh-chs": "阿拉伯文(科威特)",
3577 "es": "Árabe (Kuwait)",
3578 "xloc": [
3577 - "default.handlebars->27->846"
3579 + "default.handlebars->27->849"
3580 ]
3581 },
3582 {
@@ -3591,7 +3593,7 @@
3593 "zh-chs": "阿拉伯語(黎巴嫩)",
3594 "es": "Árabe (Líbano)",
3595 "xloc": [
3594 - "default.handlebars->27->847"
3596 + "default.handlebars->27->850"
3597 ]
3598 },
3599 {
@@ -3608,7 +3610,7 @@
3610 "zh-chs": "阿拉伯文(利比亞)",
3611 "es": "Árabe (Libia)",
3612 "xloc": [
3611 - "default.handlebars->27->848"
3613 + "default.handlebars->27->851"
3614 ]
3615 },
3616 {
@@ -3625,7 +3627,7 @@
3627 "zh-chs": "阿拉伯文(摩洛哥)",
3628 "es": "Árabe (Marruecos)",
3629 "xloc": [
3628 - "default.handlebars->27->849"
3630 + "default.handlebars->27->852"
3631 ]
3632 },
3633 {
@@ -3642,7 +3644,7 @@
3644 "zh-chs": "阿拉伯文(阿曼)",
3645 "es": "Árabe (Omán)",
3646 "xloc": [
3645 - "default.handlebars->27->850"
3647 + "default.handlebars->27->853"
3648 ]
3649 },
3650 {
@@ -3659,7 +3661,7 @@
3661 "zh-chs": "阿拉伯語(卡塔爾)",
3662 "es": "Árabe (Qatar)",
3663 "xloc": [
3662 - "default.handlebars->27->851"
3664 + "default.handlebars->27->854"
3665 ]
3666 },
3667 {
@@ -3676,7 +3678,7 @@
3678 "zh-chs": "阿拉伯語(沙特阿拉伯)",
3679 "es": "Árabe (Arabia Saudita)",
3680 "xloc": [
3679 - "default.handlebars->27->852"
3681 + "default.handlebars->27->855"
3682 ]
3683 },
3684 {
@@ -3693,7 +3695,7 @@
3695 "zh-chs": "阿拉伯語(標準)",
3696 "es": "Árabe (estándar)",
3697 "xloc": [
3696 - "default.handlebars->27->840"
3698 + "default.handlebars->27->843"
3699 ]
3700 },
3701 {
@@ -3710,7 +3712,7 @@
3712 "zh-chs": "阿拉伯語(敘利亞)",
3713 "es": "Árabe (Siria)",
3714 "xloc": [
3713 - "default.handlebars->27->853"
3715 + "default.handlebars->27->856"
3716 ]
3717 },
3718 {
@@ -3727,7 +3729,7 @@
3729 "zh-chs": "阿拉伯文(突尼斯)",
3730 "es": "Árabe (Túnez)",
3731 "xloc": [
3730 - "default.handlebars->27->854"
3732 + "default.handlebars->27->857"
3733 ]
3734 },
3735 {
@@ -3744,7 +3746,7 @@
3746 "zh-chs": "阿拉伯文(阿聯酋)",
3747 "es": "Árabe (U.A.E.)",
3748 "xloc": [
3747 - "default.handlebars->27->855"
3749 + "default.handlebars->27->858"
3750 ]
3751 },
3752 {
@@ -3761,7 +3763,7 @@
3763 "zh-chs": "阿拉伯文(也門)",
3764 "es": "Árabe (Yemen)",
3765 "xloc": [
3764 - "default.handlebars->27->856"
3766 + "default.handlebars->27->859"
3767 ]
3768 },
3769 {
@@ -3778,7 +3780,7 @@
3780 "zh-chs": "阿拉貢人",
3781 "es": "Aragonés",
3782 "xloc": [
3781 - "default.handlebars->27->857"
3783 + "default.handlebars->27->860"
3784 ]
3785 },
3786 {
@@ -3795,7 +3797,7 @@
3797 "ru": "Архитектура",
3798 "zh-chs": "建築",
3799 "xloc": [
3798 - "default.handlebars->27->754"
3800 + "default.handlebars->27->757"
3801 ]
3802 },
3803 {
@@ -3830,7 +3832,7 @@
3832 "zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。",
3833 "xloc": [
3834 "default-mobile.handlebars->9->287",
3833 - "default.handlebars->27->1179"
3835 + "default.handlebars->27->1182"
3836 ]
3837 },
3838 {
@@ -3847,7 +3849,7 @@
3849 "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?",
3850 "zh-chs": "您確定要刪除節點{0}嗎?",
3851 "xloc": [
3850 - "default.handlebars->27->627"
3852 + "default.handlebars->27->630"
3853 ]
3854 },
3855 {
@@ -3864,7 +3866,7 @@
3866 "ru": "Вы действительно хотите деинсталировать выбранного агента?",
3867 "zh-chs": "您確定要卸載所選代理嗎?",
3868 "xloc": [
3867 - "default.handlebars->27->616"
3869 + "default.handlebars->27->619"
3870 ]
3871 },
3872 {
@@ -3881,7 +3883,7 @@
3883 "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?",
3884 "zh-chs": "您確定要卸載所選的{0}代理嗎?",
3885 "xloc": [
3884 - "default.handlebars->27->615"
3886 + "default.handlebars->27->618"
3887 ]
3888 },
3889 {
@@ -3898,7 +3900,7 @@
3900 "ru": "Вы уверенны, что {0} плагин: {1}",
3901 "zh-chs": "您確定要{0}插件嗎:{1}",
3902 "xloc": [
3901 - "default.handlebars->27->1651"
3903 + "default.handlebars->27->1666"
3904 ]
3905 },
3906 {
@@ -3915,7 +3917,7 @@
3917 "zh-chs": "亞美尼亞人",
3918 "es": "Armenio",
3919 "xloc": [
3918 - "default.handlebars->27->858"
3920 + "default.handlebars->27->861"
3921 ]
3922 },
3923 {
@@ -3932,7 +3934,7 @@
3934 "zh-chs": "阿薩姆語",
3935 "es": "Asamés",
3936 "xloc": [
3935 - "default.handlebars->27->859"
3937 + "default.handlebars->27->862"
3938 ]
3939 },
3940 {
@@ -3949,7 +3951,7 @@
3951 "zh-chs": "阿斯圖里亞斯人",
3952 "es": "Asturiano",
3953 "xloc": [
3952 - "default.handlebars->27->860"
3954 + "default.handlebars->27->863"
3955 ]
3956 },
3957 {
@@ -3966,7 +3968,7 @@
3968 "ru": "Приложение аутентификации",
3969 "zh-chs": "身份驗證應用",
3970 "xloc": [
3969 - "default.handlebars->27->1514"
3971 + "default.handlebars->27->1527"
3972 ]
3973 },
3974 {
@@ -3989,8 +3991,8 @@
3991 "default-mobile.handlebars->9->35",
3992 "default.handlebars->27->105",
3993 "default.handlebars->27->110",
3992 - "default.handlebars->27->824",
3993 - "default.handlebars->27->826"
3994 + "default.handlebars->27->827",
3995 + "default.handlebars->27->829"
3996 ]
3997 },
3998 {
@@ -4058,7 +4060,7 @@
4060 "ru": "Автоудаление",
4061 "zh-chs": "自動刪除",
4062 "xloc": [
4061 - "default.handlebars->27->1103"
4063 + "default.handlebars->27->1106"
4064 ]
4065 },
4066 {
@@ -4112,7 +4114,7 @@
4114 "zh-chs": "阿塞拜疆",
4115 "es": "Azerbaiyano",
4116 "xloc": [
4115 - "default.handlebars->27->861"
4117 + "default.handlebars->27->864"
4118 ]
4119 },
4120 {
@@ -4129,7 +4131,7 @@
4131 "ru": "BIOS",
4132 "zh-chs": "的BIOS",
4133 "xloc": [
4132 - "default.handlebars->27->792"
4134 + "default.handlebars->27->795"
4135 ]
4136 },
4137 {
@@ -4224,8 +4226,8 @@
4226 "ru": "Фоновый и интерактивный",
4227 "zh-chs": "背景與互動",
4228 "xloc": [
4227 - "default.handlebars->27->1270",
4228 - "default.handlebars->27->1277",
4229 + "default.handlebars->27->1276",
4230 + "default.handlebars->27->1283",
4231 "default.handlebars->27->286"
4232 ]
4233 },
@@ -4243,8 +4245,8 @@
4245 "ru": "Только фоновый",
4246 "zh-chs": "僅背景",
4247 "xloc": [
4246 - "default.handlebars->27->1271",
4247 - "default.handlebars->27->1278",
4248 + "default.handlebars->27->1277",
4249 + "default.handlebars->27->1284",
4250 "default.handlebars->27->287",
4251 "default.handlebars->27->309"
4252 ]
@@ -4280,7 +4282,7 @@
4282 "ru": "Резервные коды",
4283 "zh-chs": "備用碼",
4284 "xloc": [
4283 - "default.handlebars->27->1516"
4285 + "default.handlebars->27->1529"
4286 ]
4287 },
4288 {
@@ -4297,7 +4299,7 @@
4299 "ru": "Плохой ключ",
4300 "zh-chs": "錯誤的簽名",
4301 "xloc": [
4300 - "default.handlebars->27->1589"
4302 + "default.handlebars->27->1604"
4303 ]
4304 },
4305 {
@@ -4314,7 +4316,7 @@
4316 "ru": "Плохой веб-сертификат",
4317 "zh-chs": "錯誤的網絡證書",
4318 "xloc": [
4317 - "default.handlebars->27->1588"
4319 + "default.handlebars->27->1603"
4320 ]
4321 },
4322 {
@@ -4331,7 +4333,7 @@
4333 "zh-chs": "巴斯克",
4334 "es": "Vasco",
4335 "xloc": [
4334 - "default.handlebars->27->862"
4336 + "default.handlebars->27->865"
4337 ]
4338 },
4339 {
@@ -4365,7 +4367,7 @@
4367 "zh-chs": "白俄羅斯語",
4368 "es": "Bielorruso",
4369 "xloc": [
4368 - "default.handlebars->27->864"
4370 + "default.handlebars->27->867"
4371 ]
4372 },
4373 {
@@ -4382,7 +4384,7 @@
4384 "zh-chs": "孟加拉",
4385 "es": "Bengalí",
4386 "xloc": [
4385 - "default.handlebars->27->865"
4387 + "default.handlebars->27->868"
4388 ]
4389 },
4390 {
@@ -4416,7 +4418,7 @@
4418 "zh-chs": "波斯尼亞人",
4419 "es": "Bosnio",
4420 "xloc": [
4419 - "default.handlebars->27->866"
4421 + "default.handlebars->27->869"
4422 ]
4423 },
4424 {
@@ -4433,7 +4435,7 @@
4435 "zh-chs": "布列塔尼",
4436 "es": "Bretón",
4437 "xloc": [
4436 - "default.handlebars->27->867"
4438 + "default.handlebars->27->870"
4439 ]
4440 },
4441 {
@@ -4450,7 +4452,7 @@
4452 "ru": "Отправить сообщение",
4453 "zh-chs": "廣播",
4454 "xloc": [
4453 - "default.handlebars->27->1447",
4455 + "default.handlebars->27->1453",
4456 "default.handlebars->container->column_l->p4->3->1->0->3->1"
4457 ]
4458 },
@@ -4468,7 +4470,7 @@
4470 "ru": "Отправить сообщение",
4471 "zh-chs": "廣播消息",
4472 "xloc": [
4471 - "default.handlebars->27->1403"
4473 + "default.handlebars->27->1409"
4474 ]
4475 },
4476 {
@@ -4485,7 +4487,7 @@
4487 "ru": "Отправить сообщение всем подключенным пользователям.",
4488 "zh-chs": "向所有連接的用戶廣播消息。",
4489 "xloc": [
4488 - "default.handlebars->27->1402"
4490 + "default.handlebars->27->1408"
4491 ]
4492 },
4493 {
@@ -4502,7 +4504,7 @@
4504 "zh-chs": "保加利亞語",
4505 "es": "Búlgaro",
4506 "xloc": [
4505 - "default.handlebars->27->863"
4507 + "default.handlebars->27->866"
4508 ]
4509 },
4510 {
@@ -4519,7 +4521,7 @@
4521 "zh-chs": "緬甸人",
4522 "es": "Birmano",
4523 "xloc": [
4522 - "default.handlebars->27->868"
4524 + "default.handlebars->27->871"
4525 ]
4526 },
4527 {
@@ -4555,8 +4557,8 @@
4557 "zh-chs": "CIRA",
4558 "xloc": [
4559 "default-mobile.handlebars->9->125",
4558 - "default.handlebars->27->1167",
4559 - "default.handlebars->27->1172",
4560 + "default.handlebars->27->1170",
4561 + "default.handlebars->27->1175",
4562 "default.handlebars->27->170",
4563 "default.handlebars->27->363"
4564 ]
@@ -4575,7 +4577,7 @@
4577 "ru": "CIRA Сервер",
4578 "zh-chs": "CIRA服務器",
4579 "xloc": [
4578 - "default.handlebars->27->1639"
4580 + "default.handlebars->27->1654"
4581 ]
4582 },
4583 {
@@ -4592,7 +4594,7 @@
4594 "ru": "CIRA Сервер команды",
4595 "zh-chs": "CIRA服務器命令",
4596 "xloc": [
4595 - "default.handlebars->27->1640"
4597 + "default.handlebars->27->1655"
4598 ]
4599 },
4600 {
@@ -4609,7 +4611,7 @@
4611 "ru": "Загрузка CPU",
4612 "zh-chs": "CPU負載",
4613 "xloc": [
4612 - "default.handlebars->27->1603"
4614 + "default.handlebars->27->1618"
4615 ]
4616 },
4617 {
@@ -4626,7 +4628,7 @@
4628 "ru": "Загрузка CPU за последние 15 минут",
4629 "zh-chs": "最近15分鐘的CPU負載",
4630 "xloc": [
4629 - "default.handlebars->27->1606"
4631 + "default.handlebars->27->1621"
4632 ]
4633 },
4634 {
@@ -4643,7 +4645,7 @@
4645 "ru": "Загрузка CPU за последние 5 минут",
4646 "zh-chs": "最近5分鐘的CPU負載",
4647 "xloc": [
4646 - "default.handlebars->27->1605"
4648 + "default.handlebars->27->1620"
4649 ]
4650 },
4651 {
@@ -4660,7 +4662,7 @@
4662 "ru": "Загрузка CPU за последнюю минуту",
4663 "zh-chs": "最後一分鐘的CPU負載",
4664 "xloc": [
4663 - "default.handlebars->27->1604"
4665 + "default.handlebars->27->1619"
4666 ]
4667 },
4668 {
@@ -4677,8 +4679,8 @@
4679 "ru": "CR+LF",
4680 "zh-chs": "CR +低頻",
4681 "xloc": [
4680 - "default.handlebars->27->696",
4681 - "default.handlebars->27->705",
4682 + "default.handlebars->27->699",
4683 + "default.handlebars->27->708",
4684 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
4685 ]
4686 },
@@ -4696,8 +4698,8 @@
4698 "ru": "Формат CSV",
4699 "zh-chs": "CSV格式",
4700 "xloc": [
4699 - "default.handlebars->27->1339",
4700 - "default.handlebars->27->1394",
4701 + "default.handlebars->27->1345",
4702 + "default.handlebars->27->1400",
4703 "default.handlebars->27->390"
4704 ]
4705 },
@@ -4715,7 +4717,7 @@
4717 "ru": "Ошибка вызова",
4718 "zh-chs": "通話錯誤",
4719 "xloc": [
4718 - "default.handlebars->27->1652"
4720 + "default.handlebars->27->1667"
4721 ]
4722 },
4723 {
@@ -4734,7 +4736,7 @@
4736 "xloc": [
4737 "default-mobile.handlebars->9->44",
4738 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
4737 - "default.handlebars->27->1088",
4739 + "default.handlebars->27->1091",
4740 "default.handlebars->container->dialog->idx_dlgButtonBar",
4741 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
4742 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -4756,7 +4758,7 @@
4758 "ru": "Объем / Скорость",
4759 "zh-chs": "容量/速度",
4760 "xloc": [
4759 - "default.handlebars->27->799"
4761 + "default.handlebars->27->802"
4762 ]
4763 },
4764 {
@@ -4773,7 +4775,7 @@
4775 "ru": "Каталонский",
4776 "zh-chs": "加泰羅尼亞語",
4777 "xloc": [
4776 - "default.handlebars->27->869"
4778 + "default.handlebars->27->872"
4779 ]
4780 },
4781 {
@@ -4807,7 +4809,7 @@
4809 "ru": "Чаморро",
4810 "zh-chs": "查莫羅",
4811 "xloc": [
4810 - "default.handlebars->27->870"
4812 + "default.handlebars->27->873"
4813 ]
4814 },
4815 {
@@ -4824,7 +4826,7 @@
4826 "ru": "Смена email для {0}",
4827 "zh-chs": "更改{0}的電子郵件",
4828 "xloc": [
4827 - "default.handlebars->27->1533"
4829 + "default.handlebars->27->1546"
4830 ]
4831 },
4832 {
@@ -4842,8 +4844,8 @@
4844 "zh-chs": "變更組",
4845 "xloc": [
4846 "default.handlebars->27->520",
4845 - "default.handlebars->27->624",
4846 - "default.handlebars->27->625"
4847 + "default.handlebars->27->627",
4848 + "default.handlebars->27->628"
4849 ]
4850 },
4851 {
@@ -4861,8 +4863,8 @@
4863 "zh-chs": "更改密碼",
4864 "xloc": [
4865 "default-mobile.handlebars->9->52",
4864 - "default.handlebars->27->1064",
4865 - "default.handlebars->27->1526"
4866 + "default.handlebars->27->1067",
4867 + "default.handlebars->27->1539"
4868 ]
4869 },
4870 {
@@ -4879,7 +4881,7 @@
4881 "ru": "Смена пароля для {0}",
4882 "zh-chs": "更改{0}的密碼",
4883 "xloc": [
4882 - "default.handlebars->27->1540"
4884 + "default.handlebars->27->1553"
4885 ]
4886 },
4887 {
@@ -4949,7 +4951,7 @@
4951 "zh-chs": "更改該用戶的密碼",
4952 "es": "Cambiar la contraseña para este usuario",
4953 "xloc": [
4952 - "default.handlebars->27->1525"
4954 + "default.handlebars->27->1538"
4955 ]
4956 },
4957 {
@@ -4983,7 +4985,7 @@
4985 "ru": "Измените адрес электронной почты вашей учетной записи здесь.",
4986 "zh-chs": "在此處更改您的帳戶電子郵件地址。",
4987 "xloc": [
4986 - "default.handlebars->27->1051"
4988 + "default.handlebars->27->1054"
4989 ]
4990 },
4991 {
@@ -5000,7 +5002,7 @@
5002 "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.",
5003 "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
5004 "xloc": [
5003 - "default.handlebars->27->1057"
5005 + "default.handlebars->27->1060"
5006 ]
5007 },
5008 {
@@ -5017,7 +5019,7 @@
5019 "ru": "Изменение языка потребует перезагрузить страницу.",
5020 "zh-chs": "更改語言將需要刷新頁面。",
5021 "xloc": [
5020 - "default.handlebars->27->1036"
5022 + "default.handlebars->27->1039"
5023 ]
5024 },
5025 {
@@ -5034,9 +5036,9 @@
5036 "ru": "Чат",
5037 "zh-chs": "聊天室",
5038 "xloc": [
5037 - "default.handlebars->27->1356",
5038 - "default.handlebars->27->566",
5039 - "default.handlebars->27->585"
5039 + "default.handlebars->27->1362",
5040 + "default.handlebars->27->569",
5041 + "default.handlebars->27->588"
5042 ]
5043 },
5044 {
@@ -5055,8 +5057,8 @@
5057 "xloc": [
5058 "default-mobile.handlebars->9->308",
5059 "default-mobile.handlebars->9->326",
5058 - "default.handlebars->27->1228",
5059 - "default.handlebars->27->1256"
5060 + "default.handlebars->27->1232",
5061 + "default.handlebars->27->1262"
5062 ]
5063 },
5064 {
@@ -5073,7 +5075,7 @@
5075 "ru": "Чеченский",
5076 "zh-chs": "車臣",
5077 "xloc": [
5076 - "default.handlebars->27->871"
5078 + "default.handlebars->27->874"
5079 ]
5080 },
5081 {
@@ -5141,8 +5143,8 @@
5143 "ru": "Проверка...",
5144 "zh-chs": "檢查...",
5145 "xloc": [
5144 - "default.handlebars->27->1646",
5145 - "default.handlebars->27->837"
5146 + "default.handlebars->27->1661",
5147 + "default.handlebars->27->840"
5148 ]
5149 },
5150 {
@@ -5159,7 +5161,7 @@
5161 "ru": "Китайский",
5162 "zh-chs": "中文",
5163 "xloc": [
5162 - "default.handlebars->27->872"
5164 + "default.handlebars->27->875"
5165 ]
5166 },
5167 {
@@ -5176,7 +5178,7 @@
5178 "zh-chs": "中文(香港)",
5179 "es": "Chino (Hong Kong)",
5180 "xloc": [
5179 - "default.handlebars->27->873"
5181 + "default.handlebars->27->876"
5182 ]
5183 },
5184 {
@@ -5193,7 +5195,7 @@
5195 "zh-chs": "中文(中國)",
5196 "es": "Chino (PRC)",
5197 "xloc": [
5196 - "default.handlebars->27->874"
5198 + "default.handlebars->27->877"
5199 ]
5200 },
5201 {
@@ -5208,7 +5210,7 @@
5210 "zh-chs": "简体中文)",
5211 "es": "Chino (simplificado)",
5212 "xloc": [
5211 - "default.handlebars->27->1034"
5213 + "default.handlebars->27->1037"
5214 ]
5215 },
5216 {
@@ -5225,7 +5227,7 @@
5227 "zh-chs": "中文(新加坡)",
5228 "es": "Chino (Singapur)",
5229 "xloc": [
5228 - "default.handlebars->27->875"
5230 + "default.handlebars->27->878"
5231 ]
5232 },
5233 {
@@ -5242,7 +5244,7 @@
5244 "zh-chs": "中文(台灣)",
5245 "es": "Chino (Taiwán)",
5246 "xloc": [
5245 - "default.handlebars->27->876"
5247 + "default.handlebars->27->879"
5248 ]
5249 },
5250 {
@@ -5277,7 +5279,7 @@
5279 "zh-chs": "楚瓦什",
5280 "es": "Chuvash",
5281 "xloc": [
5280 - "default.handlebars->27->877"
5282 + "default.handlebars->27->880"
5283 ]
5284 },
5285 {
@@ -5317,11 +5319,11 @@
5319 "default-mobile.handlebars->9->269",
5320 "default-mobile.handlebars->9->28",
5321 "default-mobile.handlebars->9->94",
5320 - "default.handlebars->27->1333",
5321 - "default.handlebars->27->731",
5322 - "default.handlebars->27->733",
5323 - "default.handlebars->27->735",
5324 - "default.handlebars->27->737",
5322 + "default.handlebars->27->1339",
5323 + "default.handlebars->27->734",
5324 + "default.handlebars->27->736",
5325 + "default.handlebars->27->738",
5326 + "default.handlebars->27->740",
5327 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
5328 "default.handlebars->container->column_l->p41->3->1",
5329 "messenger.handlebars->xbottom"
@@ -5358,7 +5360,7 @@
5360 "ru": "Очистить ядро",
5361 "zh-chs": "清除核心",
5362 "xloc": [
5361 - "default.handlebars->27->815"
5363 + "default.handlebars->27->818"
5364 ]
5365 },
5366 {
@@ -5389,7 +5391,7 @@
5391 "zh-chs": "清除此通知",
5392 "es": "Borrar esta notificación",
5393 "xloc": [
5392 - "default.handlebars->27->1576"
5394 + "default.handlebars->27->1591"
5395 ]
5396 },
5397 {
@@ -5480,7 +5482,7 @@
5482 "zh-chs": "單擊確定將驗證郵件發送到:",
5483 "xloc": [
5484 "default-mobile.handlebars->9->37",
5483 - "default.handlebars->27->1048"
5485 + "default.handlebars->27->1051"
5486 ]
5487 },
5488 {
@@ -5514,7 +5516,7 @@
5516 "ru": "Режим управления клиентом (CCM)",
5517 "zh-chs": "客戶端控制模式(CCM)",
5518 "xloc": [
5517 - "default.handlebars->27->779"
5519 + "default.handlebars->27->782"
5520 ]
5521 },
5522 {
@@ -5531,8 +5533,8 @@
5533 "ru": "Клиент инициировал удаленный доступ",
5534 "zh-chs": "客戶端啟動的遠程訪問",
5535 "xloc": [
5534 - "default.handlebars->27->1166",
5535 - "default.handlebars->27->1171"
5536 + "default.handlebars->27->1169",
5537 + "default.handlebars->27->1174"
5538 ]
5539 },
5540 {
@@ -5569,7 +5571,7 @@
5571 "default-mobile.handlebars->9->26",
5572 "default.handlebars->27->117",
5573 "default.handlebars->27->125",
5572 - "default.handlebars->27->689"
5574 + "default.handlebars->27->692"
5575 ]
5576 },
5577 {
@@ -5604,8 +5606,8 @@
5606 "ru": "Общие группы устройств",
5607 "zh-chs": "通用設備組",
5608 "xloc": [
5607 - "default.handlebars->27->1455",
5608 - "default.handlebars->27->1550"
5609 + "default.handlebars->27->1461",
5610 + "default.handlebars->27->1563"
5611 ]
5612 },
5613 {
@@ -5622,7 +5624,8 @@
5624 "zh-chs": "通用設備",
5625 "es": "Dispositivos comunes",
5626 "xloc": [
5625 - "default.handlebars->27->1544"
5627 + "default.handlebars->27->1466",
5628 + "default.handlebars->27->1557"
5629 ]
5630 },
5631 {
@@ -5640,7 +5643,7 @@
5643 "zh-chs": "將{1}入口{2}中的{0}限製到此位置?",
5644 "xloc": [
5645 "default-mobile.handlebars->9->89",
5643 - "default.handlebars->27->1328"
5646 + "default.handlebars->27->1334"
5647 ]
5648 },
5649 {
@@ -5659,12 +5662,12 @@
5662 "xloc": [
5663 "default-mobile.handlebars->9->223",
5664 "default-mobile.handlebars->9->288",
5662 - "default.handlebars->27->1180",
5663 - "default.handlebars->27->1381",
5664 - "default.handlebars->27->1467",
5665 + "default.handlebars->27->1183",
5666 + "default.handlebars->27->1387",
5667 + "default.handlebars->27->1480",
5668 "default.handlebars->27->387",
5666 - "default.handlebars->27->619",
5667 - "default.handlebars->27->628"
5669 + "default.handlebars->27->622",
5670 + "default.handlebars->27->631"
5671 ]
5672 },
5673 {
@@ -5682,7 +5685,7 @@
5685 "zh-chs": "確認將1個副本複製到此位置?",
5686 "xloc": [
5687 "default-mobile.handlebars->9->258",
5685 - "default.handlebars->27->726"
5688 + "default.handlebars->27->729"
5689 ]
5690 },
5691 {
@@ -5700,14 +5703,14 @@
5703 "zh-chs": "確認{0}個條目的副本到此位置?",
5704 "xloc": [
5705 "default-mobile.handlebars->9->257",
5703 - "default.handlebars->27->725"
5706 + "default.handlebars->27->728"
5707 ]
5708 },
5709 {
5710 "en": "Confirm delete selected account(s)?",
5711 "nl": "Bevestig verwijdering geselecteerde account(s)?",
5712 "xloc": [
5710 - "default.handlebars->27->1380"
5713 + "default.handlebars->27->1386"
5714 ]
5715 },
5716 {
@@ -5741,7 +5744,7 @@
5744 "zh-chs": "確認刪除用戶{0}?",
5745 "es": "Confirmar la eliminación del usuario {0}?",
5746 "xloc": [
5744 - "default.handlebars->27->1542"
5747 + "default.handlebars->27->1555"
5748 ]
5749 },
5750 {
@@ -5759,7 +5762,7 @@
5762 "zh-chs": "確認將1個入口移動到此位置?",
5763 "xloc": [
5764 "default-mobile.handlebars->9->260",
5762 - "default.handlebars->27->728"
5765 + "default.handlebars->27->731"
5766 ]
5767 },
5768 {
@@ -5777,7 +5780,7 @@
5780 "zh-chs": "確認將{0}個條目移到此位置?",
5781 "xloc": [
5782 "default-mobile.handlebars->9->259",
5780 - "default.handlebars->27->727"
5783 + "default.handlebars->27->730"
5784 ]
5785 },
5786 {
@@ -5794,7 +5797,7 @@
5797 "ru": "Подтвердить перезапись?",
5798 "zh-chs": "確認覆蓋?",
5799 "xloc": [
5797 - "default.handlebars->27->1327"
5800 + "default.handlebars->27->1333"
5801 ]
5802 },
5803 {
@@ -5812,7 +5815,7 @@
5815 "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?",
5816 "xloc": [
5817 "default-mobile.handlebars->9->36",
5815 - "default.handlebars->27->827"
5818 + "default.handlebars->27->830"
5819 ]
5820 },
5821 {
@@ -5829,8 +5832,8 @@
5832 "ru": "Подтвердить удаление группы устройств {0}?",
5833 "zh-chs": "確認刪除設備組{0}?",
5834 "xloc": [
5832 - "default.handlebars->27->1462",
5833 - "default.handlebars->27->1571"
5835 + "default.handlebars->27->1475",
5836 + "default.handlebars->27->1586"
5837 ]
5838 },
5839 {
@@ -5844,7 +5847,8 @@
5847 "zh-chs": "确认移除设备{0}?",
5848 "es": "Confirmar la eliminación del dispositivo {0}?",
5849 "xloc": [
5847 - "default.handlebars->27->1562"
5850 + "default.handlebars->27->1473",
5851 + "default.handlebars->27->1575"
5852 ]
5853 },
5854 {
@@ -5861,7 +5865,13 @@
5865 "ru": "Подтвердить удаление группы {0}?",
5866 "zh-chs": "確認刪除組{0}?",
5867 "xloc": [
5864 - "default.handlebars->27->1567"
5868 + "default.handlebars->27->1582"
5869 + ]
5870 + },
5871 + {
5872 + "en": "Confirm removal of user group {0}?",
5873 + "xloc": [
5874 + "default.handlebars->27->1579"
5875 ]
5876 },
5877 {
@@ -5879,9 +5889,9 @@
5889 "zh-chs": "確認刪除用戶{0}?",
5890 "xloc": [
5891 "default-mobile.handlebars->9->334",
5882 - "default.handlebars->27->1265",
5883 - "default.handlebars->27->1470",
5884 - "default.handlebars->27->1564"
5892 + "default.handlebars->27->1271",
5893 + "default.handlebars->27->1483",
5894 + "default.handlebars->27->1577"
5895 ]
5896 },
5897 {
@@ -5901,8 +5911,8 @@
5911 "default-mobile.handlebars->9->237",
5912 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
5913 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
5904 - "default.handlebars->27->1119",
5905 - "default.handlebars->27->708",
5914 + "default.handlebars->27->1122",
5915 + "default.handlebars->27->711",
5916 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
5917 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
5918 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -5941,8 +5951,8 @@
5951 "ru": "Подключиться к серверу",
5952 "zh-chs": "連接到服務器",
5953 "xloc": [
5944 - "default.handlebars->27->1170",
5945 - "default.handlebars->27->1174"
5954 + "default.handlebars->27->1173",
5955 + "default.handlebars->27->1177"
5956 ]
5957 },
5958 {
@@ -6013,7 +6023,7 @@
6023 "ru": "Подключено Intel® AMT",
6024 "zh-chs": "連接的英特爾®AMT",
6025 "xloc": [
6016 - "default.handlebars->27->1594"
6026 + "default.handlebars->27->1609"
6027 ]
6028 },
6029 {
@@ -6030,7 +6040,7 @@
6040 "ru": "Подключенные пользователи",
6041 "zh-chs": "關聯用戶",
6042 "xloc": [
6033 - "default.handlebars->27->1599"
6043 + "default.handlebars->27->1614"
6044 ]
6045 },
6046 {
@@ -6047,7 +6057,7 @@
6057 "zh-chs": "現在已連接",
6058 "es": "Conectado ahora",
6059 "xloc": [
6050 - "default.handlebars->27->758"
6060 + "default.handlebars->27->761"
6061 ]
6062 },
6063 {
@@ -6087,7 +6097,7 @@
6097 "default.handlebars->27->195",
6098 "default.handlebars->27->198",
6099 "default.handlebars->27->204",
6090 - "default.handlebars->27->749",
6100 + "default.handlebars->27->752",
6101 "default.handlebars->27->9",
6102 "xterm.handlebars->9->2"
6103 ]
@@ -6106,7 +6116,7 @@
6116 "ru": "Подключений ",
6117 "zh-chs": "連接數",
6118 "xloc": [
6109 - "default.handlebars->27->1610"
6119 + "default.handlebars->27->1625"
6120 ]
6121 },
6122 {
@@ -6123,7 +6133,7 @@
6133 "ru": "Ретранслятор подключения",
6134 "zh-chs": "連接繼電器",
6135 "xloc": [
6126 - "default.handlebars->27->1638"
6136 + "default.handlebars->27->1653"
6137 ]
6138 },
6139 {
@@ -6175,7 +6185,7 @@
6185 "zh-chs": "連接性",
6186 "xloc": [
6187 "default-mobile.handlebars->9->198",
6178 - "default.handlebars->27->1296",
6188 + "default.handlebars->27->1302",
6189 "default.handlebars->27->186",
6190 "default.handlebars->27->511",
6191 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -6195,8 +6205,8 @@
6205 "ru": "Консоль",
6206 "zh-chs": "安慰",
6207 "xloc": [
6198 - "default.handlebars->27->561",
6199 - "default.handlebars->27->580",
6208 + "default.handlebars->27->564",
6209 + "default.handlebars->27->583",
6210 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
6211 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
6212 "default.handlebars->contextMenu->cxconsole"
@@ -6230,8 +6240,8 @@
6240 "zh-chs": "控制",
6241 "es": "Control",
6242 "xloc": [
6233 - "default.handlebars->27->560",
6234 - "default.handlebars->27->579"
6243 + "default.handlebars->27->563",
6244 + "default.handlebars->27->582"
6245 ]
6246 },
6247 {
@@ -6248,7 +6258,7 @@
6258 "ru": "Cookie-кодировщик",
6259 "zh-chs": "Cookie編碼器",
6260 "xloc": [
6251 - "default.handlebars->27->1624"
6261 + "default.handlebars->27->1639"
6262 ]
6263 },
6264 {
@@ -6370,8 +6380,8 @@
6380 "ru": "Скопировать ссылку в буфер обмена",
6381 "zh-chs": "複製鏈接到剪貼板",
6382 "xloc": [
6373 - "default.handlebars->27->1301",
6374 - "default.handlebars->27->1315",
6383 + "default.handlebars->27->1307",
6384 + "default.handlebars->27->1321",
6385 "default.handlebars->27->299"
6386 ]
6387 },
@@ -6549,7 +6559,7 @@
6559 "ru": "Основной сервер",
6560 "zh-chs": "核心服務器",
6561 "xloc": [
6552 - "default.handlebars->27->1623"
6562 + "default.handlebars->27->1638"
6563 ]
6564 },
6565 {
@@ -6566,7 +6576,7 @@
6576 "zh-chs": "科西嘉人",
6577 "es": "Corso",
6578 "xloc": [
6569 - "default.handlebars->27->878"
6579 + "default.handlebars->27->881"
6580 ]
6581 },
6582 {
@@ -6583,7 +6593,7 @@
6593 "ru": "Создать учетную запись",
6594 "zh-chs": "創建帳號",
6595 "xloc": [
6586 - "default.handlebars->27->1414",
6596 + "default.handlebars->27->1420",
6597 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
6598 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
6599 ]
@@ -6619,7 +6629,7 @@
6629 "ru": "Создать группу пользователей",
6630 "zh-chs": "創建用戶組",
6631 "xloc": [
6622 - "default.handlebars->27->1438"
6632 + "default.handlebars->27->1444"
6633 ]
6634 },
6635 {
@@ -6636,7 +6646,7 @@
6646 "ru": "Создайте новую группу устройств, используя параметры ниже.",
6647 "zh-chs": "使用以下選項創建一個新的設備組。",
6648 "xloc": [
6639 - "default.handlebars->27->1071"
6649 + "default.handlebars->27->1074"
6650 ]
6651 },
6652 {
@@ -6670,7 +6680,7 @@
6680 "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:",
6681 "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:",
6682 "xloc": [
6673 - "default.handlebars->27->1385"
6683 + "default.handlebars->27->1391"
6684 ]
6685 },
6686 {
@@ -6705,7 +6715,7 @@
6715 "ru": "Создано",
6716 "zh-chs": "創建",
6717 "xloc": [
6708 - "default.handlebars->27->1490"
6718 + "default.handlebars->27->1503"
6719 ]
6720 },
6721 {
@@ -6740,7 +6750,7 @@
6750 "zh-chs": "克里",
6751 "es": "Cree",
6752 "xloc": [
6743 - "default.handlebars->27->879"
6753 + "default.handlebars->27->882"
6754 ]
6755 },
6756 {
@@ -6757,7 +6767,7 @@
6767 "zh-chs": "克羅地亞語",
6768 "es": "Croata",
6769 "xloc": [
6760 - "default.handlebars->27->880"
6770 + "default.handlebars->27->883"
6771 ]
6772 },
6773 {
@@ -6898,7 +6908,7 @@
6908 "zh-chs": "捷克文",
6909 "es": "Checo",
6910 "xloc": [
6901 - "default.handlebars->27->881"
6911 + "default.handlebars->27->884"
6912 ]
6913 },
6914 {
@@ -6932,7 +6942,7 @@
6942 "zh-chs": "丹麥文",
6943 "es": "Danés",
6944 "xloc": [
6935 - "default.handlebars->27->882"
6945 + "default.handlebars->27->885"
6946 ]
6947 },
6948 {
@@ -6949,7 +6959,7 @@
6959 "ru": "DataChannel",
6960 "zh-chs": "數據通道",
6961 "xloc": [
6952 - "default.handlebars->27->665"
6962 + "default.handlebars->27->668"
6963 ]
6964 },
6965 {
@@ -6966,7 +6976,7 @@
6976 "ru": "Дата & Время",
6977 "zh-chs": "日期和時間",
6978 "xloc": [
6969 - "default.handlebars->27->1039"
6979 + "default.handlebars->27->1042"
6980 ]
6981 },
6982 {
@@ -6983,7 +6993,7 @@
6993 "ru": "День",
6994 "zh-chs": "天",
6995 "xloc": [
6986 - "default.handlebars->27->603"
6996 + "default.handlebars->27->606"
6997 ]
6998 },
6999 {
@@ -7000,7 +7010,7 @@
7010 "ru": "Деактивировать режим управления клиентом (CCM)",
7011 "zh-chs": "停用客戶端控制模式(CCM)",
7012 "xloc": [
7003 - "default.handlebars->27->1158"
7013 + "default.handlebars->27->1161"
7014 ]
7015 },
7016 {
@@ -7039,9 +7049,9 @@
7049 "default-mobile.handlebars->9->84",
7050 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
7051 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
7042 - "default.handlebars->27->1322",
7052 + "default.handlebars->27->1328",
7053 "default.handlebars->27->417",
7044 - "default.handlebars->27->718",
7054 + "default.handlebars->27->721",
7055 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
7056 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
7057 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -7065,14 +7075,14 @@
7075 "zh-chs": "刪除帳戶",
7076 "xloc": [
7077 "default-mobile.handlebars->9->46",
7068 - "default.handlebars->27->1056"
7078 + "default.handlebars->27->1059"
7079 ]
7080 },
7081 {
7082 "en": "Delete Accounts",
7083 "nl": "Verwijder accounts",
7084 "xloc": [
7075 - "default.handlebars->27->1382"
7085 + "default.handlebars->27->1388"
7086 ]
7087 },
7088 {
@@ -7109,8 +7119,8 @@
7119 "xloc": [
7120 "default-mobile.handlebars->9->286",
7121 "default-mobile.handlebars->9->289",
7112 - "default.handlebars->27->1151",
7113 - "default.handlebars->27->1181"
7122 + "default.handlebars->27->1154",
7123 + "default.handlebars->27->1184"
7124 ]
7125 },
7126 {
@@ -7128,7 +7138,7 @@
7138 "zh-chs": "刪除節點",
7139 "xloc": [
7140 "default-mobile.handlebars->9->221",
7131 - "default.handlebars->27->629"
7141 + "default.handlebars->27->632"
7142 ]
7143 },
7144 {
@@ -7162,7 +7172,7 @@
7172 "ru": "Удалить пользователя",
7173 "zh-chs": "刪除用戶",
7174 "xloc": [
7165 - "default.handlebars->27->1524"
7175 + "default.handlebars->27->1537"
7176 ]
7177 },
7178 {
@@ -7179,8 +7189,8 @@
7189 "ru": "Удалить группу пользователей",
7190 "zh-chs": "刪除用戶組",
7191 "xloc": [
7182 - "default.handlebars->27->1460",
7183 - "default.handlebars->27->1468"
7192 + "default.handlebars->27->1471",
7193 + "default.handlebars->27->1481"
7194 ]
7195 },
7196 {
@@ -7197,7 +7207,7 @@
7207 "ru": "Удалить пользователя {0}",
7208 "zh-chs": "刪除用戶{0}",
7209 "xloc": [
7200 - "default.handlebars->27->1541"
7210 + "default.handlebars->27->1554"
7211 ]
7212 },
7213 {
@@ -7215,7 +7225,7 @@
7225 "zh-chs": "刪除帳戶",
7226 "xloc": [
7227 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->7->0",
7218 - "default.handlebars->27->1378",
7228 + "default.handlebars->27->1384",
7229 "default.handlebars->container->column_l->p2->p2AccountActions->3->p2AccountPassActions->7"
7230 ]
7231 },
@@ -7269,8 +7279,8 @@
7279 "xloc": [
7280 "default-mobile.handlebars->9->252",
7281 "default-mobile.handlebars->9->86",
7272 - "default.handlebars->27->1324",
7273 - "default.handlebars->27->720"
7282 + "default.handlebars->27->1330",
7283 + "default.handlebars->27->723"
7284 ]
7285 },
7286 {
@@ -7287,7 +7297,7 @@
7297 "ru": "Удалить группу пользователей {0}?",
7298 "zh-chs": "刪除用戶組{0}?",
7299 "xloc": [
7290 - "default.handlebars->27->1466"
7300 + "default.handlebars->27->1479"
7301 ]
7302 },
7303 {
@@ -7306,8 +7316,8 @@
7316 "xloc": [
7317 "default-mobile.handlebars->9->251",
7318 "default-mobile.handlebars->9->85",
7309 - "default.handlebars->27->1323",
7310 - "default.handlebars->27->719"
7319 + "default.handlebars->27->1329",
7320 + "default.handlebars->27->722"
7321 ]
7322 },
7323 {
@@ -7407,17 +7417,17 @@
7417 "default-mobile.handlebars->9->278",
7418 "default-mobile.handlebars->9->291",
7419 "default-mobile.handlebars->9->63",
7410 - "default.handlebars->27->1076",
7411 - "default.handlebars->27->1100",
7412 - "default.handlebars->27->1183",
7413 - "default.handlebars->27->1437",
7414 - "default.handlebars->27->1442",
7415 - "default.handlebars->27->1444",
7416 - "default.handlebars->27->1464",
7420 + "default.handlebars->27->1079",
7421 + "default.handlebars->27->1103",
7422 + "default.handlebars->27->1186",
7423 + "default.handlebars->27->1443",
7424 + "default.handlebars->27->1448",
7425 + "default.handlebars->27->1450",
7426 + "default.handlebars->27->1477",
7427 "default.handlebars->27->457",
7428 "default.handlebars->27->458",
7419 - "default.handlebars->27->661",
7420 - "default.handlebars->27->764",
7429 + "default.handlebars->27->664",
7430 + "default.handlebars->27->767",
7431 "default.handlebars->27->78",
7432 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
7433 ]
@@ -7450,7 +7460,7 @@
7460 "ru": "Рабочий стол",
7461 "zh-chs": "桌面",
7462 "xloc": [
7453 - "default.handlebars->27->1188",
7463 + "default.handlebars->27->1191",
7464 "default.handlebars->27->423",
7465 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
7466 "default.handlebars->contextMenu->cxdesktop"
@@ -7487,8 +7497,8 @@
7497 "ru": "Уведомление на рабочем столе",
7498 "zh-chs": "桌面通知",
7499 "xloc": [
7490 - "default.handlebars->27->1110",
7491 - "default.handlebars->27->1505",
7500 + "default.handlebars->27->1113",
7501 + "default.handlebars->27->1518",
7502 "default.handlebars->27->492"
7503 ]
7504 },
@@ -7506,8 +7516,8 @@
7516 "ru": "Запрос рабочего стола",
7517 "zh-chs": "桌面提示",
7518 "xloc": [
7509 - "default.handlebars->27->1109",
7510 - "default.handlebars->27->1504",
7519 + "default.handlebars->27->1112",
7520 + "default.handlebars->27->1517",
7521 "default.handlebars->27->491"
7522 ]
7523 },
@@ -7525,8 +7535,8 @@
7535 "ru": "Запрос рабочего стола + панель инструментов",
7536 "zh-chs": "桌面提示+工具欄",
7537 "xloc": [
7528 - "default.handlebars->27->1107",
7529 - "default.handlebars->27->1502",
7538 + "default.handlebars->27->1110",
7539 + "default.handlebars->27->1515",
7540 "default.handlebars->27->489"
7541 ]
7542 },
@@ -7544,8 +7554,8 @@
7554 "ru": "Панель инструментов рабочего стола",
7555 "zh-chs": "桌面工具欄",
7556 "xloc": [
7547 - "default.handlebars->27->1108",
7548 - "default.handlebars->27->1503",
7557 + "default.handlebars->27->1111",
7558 + "default.handlebars->27->1516",
7559 "default.handlebars->27->490"
7560 ]
7561 },
@@ -7615,8 +7625,8 @@
7625 "ru": "Устройство",
7626 "zh-chs": "設備",
7627 "xloc": [
7618 - "default.handlebars->27->1209",
7619 - "default.handlebars->27->1547",
7628 + "default.handlebars->27->1213",
7629 + "default.handlebars->27->1560",
7630 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
7631 ]
7632 },
@@ -7635,7 +7645,7 @@
7645 "zh-chs": "設備動作",
7646 "xloc": [
7647 "default-mobile.handlebars->9->214",
7638 - "default.handlebars->27->602"
7648 + "default.handlebars->27->605"
7649 ]
7650 },
7651 {
@@ -7652,11 +7662,12 @@
7662 "ru": "Группа устройства",
7663 "zh-chs": "設備組",
7664 "xloc": [
7655 - "default.handlebars->27->1205",
7656 - "default.handlebars->27->1207",
7665 "default.handlebars->27->1208",
7658 - "default.handlebars->27->1458",
7659 - "default.handlebars->27->1553"
7666 + "default.handlebars->27->1211",
7667 + "default.handlebars->27->1212",
7668 + "default.handlebars->27->1464",
7669 + "default.handlebars->27->1469",
7670 + "default.handlebars->27->1566"
7671 ]
7672 },
7673 {
@@ -7674,7 +7685,7 @@
7685 "zh-chs": "設備組用戶",
7686 "xloc": [
7687 "default-mobile.handlebars->9->332",
7677 - "default.handlebars->27->1263"
7688 + "default.handlebars->27->1269"
7689 ]
7690 },
7691 {
@@ -7692,10 +7703,10 @@
7703 "zh-chs": "設備組",
7704 "xloc": [
7705 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
7695 - "default.handlebars->27->1433",
7696 - "default.handlebars->27->1446",
7697 - "default.handlebars->27->1499",
7698 - "default.handlebars->27->1597",
7706 + "default.handlebars->27->1439",
7707 + "default.handlebars->27->1452",
7708 + "default.handlebars->27->1512",
7709 + "default.handlebars->27->1612",
7710 "default.handlebars->container->column_l->p2->9"
7711 ]
7712 },
@@ -7730,7 +7741,7 @@
7741 "ru": "Местонахождение устройства",
7742 "zh-chs": "設備位置",
7743 "xloc": [
7733 - "default.handlebars->27->630"
7744 + "default.handlebars->27->633"
7745 ]
7746 },
7747 {
@@ -7749,7 +7760,7 @@
7760 "xloc": [
7761 "default-mobile.handlebars->9->225",
7762 "default.handlebars->27->222",
7752 - "default.handlebars->27->659",
7763 + "default.handlebars->27->662",
7764 "player.handlebars->3->9"
7765 ]
7766 },
@@ -7767,7 +7778,7 @@
7778 "ru": "Уведомление устройства",
7779 "zh-chs": "設備通知",
7780 "xloc": [
7770 - "default.handlebars->27->593"
7781 + "default.handlebars->27->596"
7782 ]
7783 },
7784 {
@@ -7801,8 +7812,8 @@
7812 "ru": "Подключения устройств.",
7813 "zh-chs": "設備連接。",
7814 "xloc": [
7804 - "default.handlebars->27->1044",
7805 - "default.handlebars->27->1282"
7815 + "default.handlebars->27->1047",
7816 + "default.handlebars->27->1288"
7817 ]
7818 },
7819 {
@@ -7819,8 +7830,8 @@
7830 "ru": "Отключения устройств.",
7831 "zh-chs": "設備斷開連接。",
7832 "xloc": [
7822 - "default.handlebars->27->1045",
7823 - "default.handlebars->27->1283"
7833 + "default.handlebars->27->1048",
7834 + "default.handlebars->27->1289"
7835 ]
7836 },
7837 {
@@ -7837,7 +7848,7 @@
7848 "ru": "Примечания могут быть просмотрены и изменены другими администраторами.",
7849 "zh-chs": "其他設備組管理員可以查看和更改設備組註釋。",
7850 "xloc": [
7840 - "default.handlebars->27->591"
7851 + "default.handlebars->27->594"
7852 ]
7853 },
7854 {
@@ -8152,8 +8163,8 @@
8163 "xloc": [
8164 "default-mobile.handlebars->9->238",
8165 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8155 - "default.handlebars->27->1120",
8156 - "default.handlebars->27->709",
8166 + "default.handlebars->27->1123",
8167 + "default.handlebars->27->712",
8168 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
8169 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
8170 "xterm.handlebars->p11->deskarea0->deskarea1->3"
@@ -8235,7 +8246,7 @@
8246 "ru": "Отобразить имя группы устройств",
8247 "zh-chs": "顯示設備組名稱",
8248 "xloc": [
8238 - "default.handlebars->27->1043"
8249 + "default.handlebars->27->1046"
8250 ]
8251 },
8252 {
@@ -8252,7 +8263,7 @@
8263 "ru": "Отображаемое имя",
8264 "zh-chs": "顯示名稱",
8265 "xloc": [
8255 - "default.handlebars->27->680"
8266 + "default.handlebars->27->683"
8267 ]
8268 },
8269 {
@@ -8266,7 +8277,7 @@
8277 "zh-chs": "显示公共链接",
8278 "es": "Mostrar enlace público",
8279 "xloc": [
8269 - "default.handlebars->27->1300"
8280 + "default.handlebars->27->1306"
8281 ]
8282 },
8283 {
@@ -8283,7 +8294,7 @@
8294 "ru": "Ничего не делать",
8295 "zh-chs": "沒做什麼",
8296 "xloc": [
8286 - "default.handlebars->27->1164"
8297 + "default.handlebars->27->1167"
8298 ]
8299 },
8300 {
@@ -8318,8 +8329,8 @@
8329 "ru": "Не настраивать",
8330 "zh-chs": "不要配置",
8331 "xloc": [
8321 - "default.handlebars->27->1168",
8322 - "default.handlebars->27->1173"
8332 + "default.handlebars->27->1171",
8333 + "default.handlebars->27->1176"
8334 ]
8335 },
8336 {
@@ -8336,7 +8347,7 @@
8347 "ru": "Не подключаться к серверу",
8348 "zh-chs": "不連接服務器",
8349 "xloc": [
8339 - "default.handlebars->27->1169"
8350 + "default.handlebars->27->1172"
8351 ]
8352 },
8353 {
@@ -8390,7 +8401,7 @@
8401 "zh-chs": "下載文件",
8402 "xloc": [
8403 "default-mobile.handlebars->9->271",
8393 - "default.handlebars->27->738"
8404 + "default.handlebars->27->741"
8405 ]
8406 },
8407 {
@@ -8424,7 +8435,7 @@
8435 "ru": "Скачать MeshCmd",
8436 "zh-chs": "下載MeshCmd",
8437 "xloc": [
8427 - "default.handlebars->27->650"
8438 + "default.handlebars->27->653"
8439 ]
8440 },
8441 {
@@ -8475,7 +8486,7 @@
8486 "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.",
8487 "zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。",
8488 "xloc": [
8478 - "default.handlebars->27->643"
8489 + "default.handlebars->27->646"
8490 ]
8491 },
8492 {
@@ -8543,7 +8554,7 @@
8554 "ru": "Скачать события состояния питания",
8555 "zh-chs": "下載電源事件",
8556 "xloc": [
8546 - "default.handlebars->27->604"
8557 + "default.handlebars->27->607"
8558 ]
8559 },
8560 {
@@ -8611,7 +8622,7 @@
8622 "ru": "Скачать список событий в одном из форматов ниже.",
8623 "zh-chs": "使用以下一種文件格式下載事件列表。",
8624 "xloc": [
8614 - "default.handlebars->27->1338"
8625 + "default.handlebars->27->1344"
8626 ]
8627 },
8628 {
@@ -8628,7 +8639,7 @@
8639 "ru": "Скачать список пользователей в одном из форматов ниже.",
8640 "zh-chs": "使用以下一種文件格式下載用戶列表。",
8641 "xloc": [
8631 - "default.handlebars->27->1393"
8642 + "default.handlebars->27->1399"
8643 ]
8644 },
8645 {
@@ -8714,7 +8725,7 @@
8725 "ru": "Скопировать агент",
8726 "zh-chs": "代理重複",
8727 "xloc": [
8717 - "default.handlebars->27->1593"
8728 + "default.handlebars->27->1608"
8729 ]
8730 },
8731 {
@@ -8748,7 +8759,7 @@
8759 "ru": "Скопировать группу пользователей",
8760 "zh-chs": "重複的用戶組",
8761 "xloc": [
8751 - "default.handlebars->27->1439"
8762 + "default.handlebars->27->1445"
8763 ]
8764 },
8765 {
@@ -8782,7 +8793,7 @@
8793 "ru": "Во время активации агент будет иметь доступ к паролю администратора.",
8794 "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。",
8795 "xloc": [
8785 - "default.handlebars->27->1178"
8796 + "default.handlebars->27->1181"
8797 ]
8798 },
8799 {
@@ -8799,7 +8810,7 @@
8810 "zh-chs": "荷蘭語(比利時)",
8811 "es": "Holandés (belga)",
8812 "xloc": [
8802 - "default.handlebars->27->884"
8813 + "default.handlebars->27->887"
8814 ]
8815 },
8816 {
@@ -8816,7 +8827,7 @@
8827 "zh-chs": "荷蘭語(標準)",
8828 "es": "Holandés (estándar)",
8829 "xloc": [
8819 - "default.handlebars->27->883"
8830 + "default.handlebars->27->886"
8831 ]
8832 },
8833 {
@@ -8903,7 +8914,7 @@
8914 "zh-chs": "編輯裝置",
8915 "xloc": [
8916 "default-mobile.handlebars->9->230",
8906 - "default.handlebars->27->664"
8917 + "default.handlebars->27->667"
8918 ]
8919 },
8920 {
@@ -8923,9 +8934,9 @@
8934 "default-mobile.handlebars->9->292",
8935 "default-mobile.handlebars->9->294",
8936 "default-mobile.handlebars->9->312",
8926 - "default.handlebars->27->1184",
8927 - "default.handlebars->27->1213",
8928 - "default.handlebars->27->1241"
8937 + "default.handlebars->27->1187",
8938 + "default.handlebars->27->1217",
8939 + "default.handlebars->27->1247"
8940 ]
8941 },
8942 {
@@ -8942,7 +8953,7 @@
8953 "ru": "Редактировать функции группы устройств",
8954 "zh-chs": "編輯設備組功能",
8955 "xloc": [
8945 - "default.handlebars->27->1200"
8956 + "default.handlebars->27->1203"
8957 ]
8958 },
8959 {
@@ -8959,7 +8970,7 @@
8970 "ru": "Редактировать права группы устройств",
8971 "zh-chs": "編輯設備組權限",
8972 "xloc": [
8962 - "default.handlebars->27->1238"
8973 + "default.handlebars->27->1244"
8974 ]
8975 },
8976 {
@@ -8976,7 +8987,7 @@
8987 "ru": "Редактировать согласие пользователя группы устройств",
8988 "zh-chs": "編輯設備組用戶同意",
8989 "xloc": [
8979 - "default.handlebars->27->1185"
8990 + "default.handlebars->27->1188"
8991 ]
8992 },
8993 {
@@ -8994,7 +9005,7 @@
9005 "zh-chs": "編輯設備說明",
9006 "xloc": [
9007 "default-mobile.handlebars->9->306",
8997 - "default.handlebars->27->1226"
9008 + "default.handlebars->27->1230"
9009 ]
9010 },
9011 {
@@ -9008,13 +9019,13 @@
9019 "zh-chs": "编辑设备权限",
9020 "es": "Editar los permisos del dispositivo",
9021 "xloc": [
9011 - "default.handlebars->27->1235"
9022 + "default.handlebars->27->1239"
9023 ]
9024 },
9025 {
9026 "en": "Edit Device User Consent",
9027 "xloc": [
9017 - "default.handlebars->27->1187"
9028 + "default.handlebars->27->1190"
9029 ]
9030 },
9031 {
@@ -9028,7 +9039,7 @@
9039 "zh-chs": "编辑组",
9040 "es": "Editar Grupo",
9041 "xloc": [
9031 - "default.handlebars->27->570"
9042 + "default.handlebars->27->573"
9043 ]
9044 },
9045 {
@@ -9048,7 +9059,7 @@
9059 "default-mobile.handlebars->9->220",
9060 "default.handlebars->27->472",
9061 "default.handlebars->27->475",
9051 - "default.handlebars->27->611"
9062 + "default.handlebars->27->614"
9063 ]
9064 },
9065 {
@@ -9066,13 +9077,13 @@
9077 "zh-chs": "編輯筆記",
9078 "xloc": [
9079 "default-mobile.handlebars->9->319",
9069 - "default.handlebars->27->1248"
9080 + "default.handlebars->27->1254"
9081 ]
9082 },
9083 {
9084 "en": "Edit User Consent",
9085 "xloc": [
9075 - "default.handlebars->27->1186"
9086 + "default.handlebars->27->1189"
9087 ]
9088 },
9089 {
@@ -9089,7 +9100,7 @@
9100 "ru": "Редактировать права пользователя для группы устройств",
9101 "zh-chs": "編輯用戶設備組權限",
9102 "xloc": [
9092 - "default.handlebars->27->1239"
9103 + "default.handlebars->27->1245"
9104 ]
9105 },
9106 {
@@ -9103,7 +9114,8 @@
9114 "zh-chs": "编辑用户设备权限",
9115 "es": "Editar los permisos del usuario del dispositivo",
9116 "xloc": [
9106 - "default.handlebars->27->1236"
9117 + "default.handlebars->27->1240",
9118 + "default.handlebars->27->1242"
9119 ]
9120 },
9121 {
@@ -9120,7 +9132,7 @@
9132 "ru": "Редактировать группу пользователей",
9133 "zh-chs": "編輯用戶組",
9134 "xloc": [
9123 - "default.handlebars->27->1465"
9135 + "default.handlebars->27->1478"
9136 ]
9137 },
9138 {
@@ -9155,10 +9167,10 @@
9167 "zh-chs": "電子郵件",
9168 "xloc": [
9169 "default-mobile.handlebars->9->40",
9158 - "default.handlebars->27->1405",
9159 - "default.handlebars->27->1486",
9160 - "default.handlebars->27->1487",
9161 - "default.handlebars->27->1529",
9170 + "default.handlebars->27->1411",
9171 + "default.handlebars->27->1499",
9172 + "default.handlebars->27->1500",
9173 + "default.handlebars->27->1542",
9174 "default.handlebars->27->270",
9175 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
9176 "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3"
@@ -9179,7 +9191,7 @@
9191 "zh-chs": "電郵地址變更",
9192 "xloc": [
9193 "default-mobile.handlebars->9->41",
9182 - "default.handlebars->27->1052"
9194 + "default.handlebars->27->1055"
9195 ]
9196 },
9197 {
@@ -9197,7 +9209,7 @@
9209 "es": "Email de autenticación",
9210 "xloc": [
9211 "default-mobile.handlebars->9->30",
9200 - "default.handlebars->27->821"
9212 + "default.handlebars->27->824"
9213 ]
9214 },
9215 {
@@ -9211,7 +9223,7 @@
9223 "zh-chs": "电子邮件流量",
9224 "es": "Tráfico de correo electrónico",
9225 "xloc": [
9214 - "default.handlebars->27->1632"
9226 + "default.handlebars->27->1647"
9227 ]
9228 },
9229 {
@@ -9229,7 +9241,7 @@
9241 "zh-chs": "電子郵件驗證",
9242 "xloc": [
9243 "default-mobile.handlebars->9->39",
9232 - "default.handlebars->27->1050"
9244 + "default.handlebars->27->1053"
9245 ]
9246 },
9247 {
@@ -9251,7 +9263,7 @@
9263 "zh-chs": "邮件未验证",
9264 "es": "El email no esta no esta verficado",
9265 "xloc": [
9254 - "default.handlebars->27->1367"
9266 + "default.handlebars->27->1373"
9267 ]
9268 },
9269 {
@@ -9268,8 +9280,8 @@
9280 "ru": "Email подтвержден",
9281 "zh-chs": "電子郵件已驗證",
9282 "xloc": [
9271 - "default.handlebars->27->1368",
9272 - "default.handlebars->27->1483"
9283 + "default.handlebars->27->1374",
9284 + "default.handlebars->27->1496"
9285 ]
9286 },
9287 {
@@ -9286,7 +9298,7 @@
9298 "ru": "Email подтвержден.",
9299 "zh-chs": "電子郵件已驗證。",
9300 "xloc": [
9289 - "default.handlebars->27->1411"
9301 + "default.handlebars->27->1417"
9302 ]
9303 },
9304 {
@@ -9303,7 +9315,7 @@
9315 "ru": "Email не подтвержден",
9316 "zh-chs": "電子郵件未驗證",
9317 "xloc": [
9306 - "default.handlebars->27->1484"
9318 + "default.handlebars->27->1497"
9319 ]
9320 },
9321 {
@@ -9360,7 +9372,7 @@
9372 "zh-chs": "啟用邀請代碼",
9373 "es": "Habilitar Códigos de Invitación",
9374 "xloc": [
9363 - "default.handlebars->27->1267"
9375 + "default.handlebars->27->1273"
9376 ]
9377 },
9378 {
@@ -9395,7 +9407,7 @@
9407 "es": "Habilitar autenticación de dos factores por correo.",
9408 "xloc": [
9409 "default-mobile.handlebars->9->32",
9398 - "default.handlebars->27->823"
9410 + "default.handlebars->27->826"
9411 ]
9412 },
9413 {
@@ -9446,7 +9458,7 @@
9458 "ru": "Английский",
9459 "zh-chs": "英語",
9460 "xloc": [
9449 - "default.handlebars->27->885"
9461 + "default.handlebars->27->888"
9462 ]
9463 },
9464 {
@@ -9463,7 +9475,7 @@
9475 "zh-chs": "英文(澳洲)",
9476 "es": "Inglés (Australia)",
9477 "xloc": [
9466 - "default.handlebars->27->886"
9478 + "default.handlebars->27->889"
9479 ]
9480 },
9481 {
@@ -9480,7 +9492,7 @@
9492 "zh-chs": "英語(伯利茲)",
9493 "es": "Inglés (belice)",
9494 "xloc": [
9483 - "default.handlebars->27->887"
9495 + "default.handlebars->27->890"
9496 ]
9497 },
9498 {
@@ -9497,7 +9509,7 @@
9509 "zh-chs": "英文(加拿大)",
9510 "es": "Inglés (Canadá)",
9511 "xloc": [
9500 - "default.handlebars->27->888"
9512 + "default.handlebars->27->891"
9513 ]
9514 },
9515 {
@@ -9514,7 +9526,7 @@
9526 "zh-chs": "英文(愛爾蘭)",
9527 "es": "Inglés (Irlanda)",
9528 "xloc": [
9517 - "default.handlebars->27->889"
9529 + "default.handlebars->27->892"
9530 ]
9531 },
9532 {
@@ -9531,7 +9543,7 @@
9543 "zh-chs": "英文(牙買加)",
9544 "es": "Inglés (Jamaica)",
9545 "xloc": [
9534 - "default.handlebars->27->890"
9546 + "default.handlebars->27->893"
9547 ]
9548 },
9549 {
@@ -9548,7 +9560,7 @@
9560 "zh-chs": "英文(紐西蘭)",
9561 "es": "Inglés (Nueva Zelanda)",
9562 "xloc": [
9551 - "default.handlebars->27->891"
9563 + "default.handlebars->27->894"
9564 ]
9565 },
9566 {
@@ -9565,7 +9577,7 @@
9577 "zh-chs": "英文(菲律賓)",
9578 "es": "Inglés (Filipinas)",
9579 "xloc": [
9568 - "default.handlebars->27->892"
9580 + "default.handlebars->27->895"
9581 ]
9582 },
9583 {
@@ -9582,7 +9594,7 @@
9594 "zh-chs": "英語(南非)",
9595 "es": "Inglés (Sudáfrica)",
9596 "xloc": [
9585 - "default.handlebars->27->893"
9597 + "default.handlebars->27->896"
9598 ]
9599 },
9600 {
@@ -9599,7 +9611,7 @@
9611 "zh-chs": "英文(特立尼達和多巴哥)",
9612 "es": "Inglés (Trinidad y Tobago)",
9613 "xloc": [
9602 - "default.handlebars->27->894"
9614 + "default.handlebars->27->897"
9615 ]
9616 },
9617 {
@@ -9616,7 +9628,7 @@
9628 "zh-chs": "英文(英國)",
9629 "es": "Inglés (Reino Unido)",
9630 "xloc": [
9619 - "default.handlebars->27->895"
9631 + "default.handlebars->27->898"
9632 ]
9633 },
9634 {
@@ -9633,7 +9645,7 @@
9645 "zh-chs": "美國英語)",
9646 "es": "Inglés (Estados Unidos)",
9647 "xloc": [
9636 - "default.handlebars->27->896"
9648 + "default.handlebars->27->899"
9649 ]
9650 },
9651 {
@@ -9650,7 +9662,7 @@
9662 "zh-chs": "英文(津巴布韋)",
9663 "es": "Inglés (Zimbabwe)",
9664 "xloc": [
9653 - "default.handlebars->27->897"
9665 + "default.handlebars->27->900"
9666 ]
9667 },
9668 {
@@ -9667,8 +9679,8 @@
9679 "ru": "Ввод",
9680 "zh-chs": "輸入",
9681 "xloc": [
9670 - "default.handlebars->27->1078",
9671 - "default.handlebars->27->1079"
9682 + "default.handlebars->27->1081",
9683 + "default.handlebars->27->1082"
9684 ]
9685 },
9686 {
@@ -9685,7 +9697,7 @@
9697 "ru": "Введите разделенный запятыми список имен административных областей.",
9698 "zh-chs": "輸入管理領域名稱的逗號分隔列表。",
9699 "xloc": [
9688 - "default.handlebars->27->1415"
9700 + "default.handlebars->27->1421"
9701 ]
9702 },
9703 {
@@ -9719,7 +9731,7 @@
9731 "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.",
9732 "zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
9733 "xloc": [
9722 - "default.handlebars->27->674"
9734 + "default.handlebars->27->677"
9735 ]
9736 },
9737 {
@@ -9805,7 +9817,7 @@
9817 "zh-chs": "世界語",
9818 "es": "Esperanto",
9819 "xloc": [
9808 - "default.handlebars->27->898"
9820 + "default.handlebars->27->901"
9821 ]
9822 },
9823 {
@@ -9822,7 +9834,7 @@
9834 "zh-chs": "愛沙尼亞語",
9835 "es": "Estonio",
9836 "xloc": [
9825 - "default.handlebars->27->899"
9837 + "default.handlebars->27->902"
9838 ]
9839 },
9840 {
@@ -9839,7 +9851,7 @@
9851 "ru": "Детали события",
9852 "zh-chs": "活動詳情",
9853 "xloc": [
9842 - "default.handlebars->27->751"
9854 + "default.handlebars->27->754"
9855 ]
9856 },
9857 {
@@ -9856,7 +9868,7 @@
9868 "ru": "Экспорт списка событий",
9869 "zh-chs": "活動列表導出",
9870 "xloc": [
9859 - "default.handlebars->27->1343"
9871 + "default.handlebars->27->1349"
9872 ]
9873 },
9874 {
@@ -9945,7 +9957,7 @@
9957 "ru": "Расширенный ASCII",
9958 "zh-chs": "擴展ASCII",
9959 "xloc": [
9948 - "default.handlebars->27->700"
9960 + "default.handlebars->27->703"
9961 ]
9962 },
9963 {
@@ -9979,7 +9991,7 @@
9991 "ru": "Внешний",
9992 "zh-chs": "外部",
9993 "xloc": [
9982 - "default.handlebars->27->1617"
9994 + "default.handlebars->27->1632"
9995 ]
9996 },
9997 {
@@ -9996,7 +10008,7 @@
10008 "zh-chs": "FYRO馬其頓語",
10009 "es": "Macedonio Macedonia",
10010 "xloc": [
9999 - "default.handlebars->27->949"
10011 + "default.handlebars->27->952"
10012 ]
10013 },
10014 {
@@ -10013,7 +10025,7 @@
10025 "zh-chs": "法羅語",
10026 "es": "Faeroese",
10027 "xloc": [
10016 - "default.handlebars->27->900"
10028 + "default.handlebars->27->903"
10029 ]
10030 },
10031 {
@@ -10047,7 +10059,7 @@
10059 "zh-chs": "波斯語(波斯語)",
10060 "es": "Farsi (Persa)",
10061 "xloc": [
10050 - "default.handlebars->27->901"
10062 + "default.handlebars->27->904"
10063 ]
10064 },
10065 {
@@ -10082,7 +10094,7 @@
10094 "ru": "Функции",
10095 "zh-chs": "特徵",
10096 "xloc": [
10085 - "default.handlebars->27->1106"
10097 + "default.handlebars->27->1109"
10098 ]
10099 },
10100 {
@@ -10099,7 +10111,7 @@
10111 "zh-chs": "斐濟",
10112 "es": "Fiyiano",
10113 "xloc": [
10102 - "default.handlebars->27->902"
10114 + "default.handlebars->27->905"
10115 ]
10116 },
10117 {
@@ -10118,7 +10130,7 @@
10130 "xloc": [
10131 "default-mobile.handlebars->9->255",
10132 "default.handlebars->27->415",
10121 - "default.handlebars->27->723"
10133 + "default.handlebars->27->726"
10134 ]
10135 },
10136 {
@@ -10152,7 +10164,7 @@
10164 "ru": "Драйвер файловой системы",
10165 "zh-chs": "FileSystemDriver",
10166 "xloc": [
10155 - "default.handlebars->27->683"
10167 + "default.handlebars->27->686"
10168 ]
10169 },
10170 {
@@ -10169,7 +10181,7 @@
10181 "ru": "Файлы",
10182 "zh-chs": "檔案",
10183 "xloc": [
10172 - "default.handlebars->27->1195",
10184 + "default.handlebars->27->1198",
10185 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
10186 "default.handlebars->contextMenu->cxfiles"
10187 ]
@@ -10205,8 +10217,8 @@
10217 "ru": "Уведомление файлов",
10218 "zh-chs": "文件通知",
10219 "xloc": [
10208 - "default.handlebars->27->1114",
10209 - "default.handlebars->27->1509",
10220 + "default.handlebars->27->1117",
10221 + "default.handlebars->27->1522",
10222 "default.handlebars->27->496"
10223 ]
10224 },
@@ -10224,8 +10236,8 @@
10236 "ru": "Запрос файлов",
10237 "zh-chs": "文件提示",
10238 "xloc": [
10227 - "default.handlebars->27->1113",
10228 - "default.handlebars->27->1508",
10239 + "default.handlebars->27->1116",
10240 + "default.handlebars->27->1521",
10241 "default.handlebars->27->495"
10242 ]
10243 },
@@ -10261,7 +10273,7 @@
10273 "ru": "Финский",
10274 "zh-chs": "芬蘭",
10275 "xloc": [
10264 - "default.handlebars->27->903"
10276 + "default.handlebars->27->906"
10277 ]
10278 },
10279 {
@@ -10378,8 +10390,8 @@
10390 "ru": "Принудительно сбросить пароль при следующем входе в систему.",
10391 "zh-chs": "下次登錄時強制重置密碼。",
10392 "xloc": [
10381 - "default.handlebars->27->1409",
10382 - "default.handlebars->27->1538"
10393 + "default.handlebars->27->1415",
10394 + "default.handlebars->27->1551"
10395 ]
10396 },
10397 {
@@ -10465,8 +10477,8 @@
10477 "ru": "Свободно",
10478 "zh-chs": "自由",
10479 "xloc": [
10468 - "default.handlebars->27->1578",
10469 - "default.handlebars->27->1580"
10480 + "default.handlebars->27->1593",
10481 + "default.handlebars->27->1595"
10482 ]
10483 },
10484 {
@@ -10501,7 +10513,7 @@
10513 "zh-chs": "法語(比利時)",
10514 "es": "Francés (Bélgica)",
10515 "xloc": [
10504 - "default.handlebars->27->905"
10516 + "default.handlebars->27->908"
10517 ]
10518 },
10519 {
@@ -10518,7 +10530,7 @@
10530 "zh-chs": "法語(加拿大)",
10531 "es": "Francés (Canadá)",
10532 "xloc": [
10521 - "default.handlebars->27->906"
10533 + "default.handlebars->27->909"
10534 ]
10535 },
10536 {
@@ -10535,7 +10547,7 @@
10547 "zh-chs": "法語(法國)",
10548 "es": "Francés (Francia)",
10549 "xloc": [
10538 - "default.handlebars->27->907"
10550 + "default.handlebars->27->910"
10551 ]
10552 },
10553 {
@@ -10552,7 +10564,7 @@
10564 "zh-chs": "法語(盧森堡)",
10565 "es": "Francés (Luxemburgo)",
10566 "xloc": [
10555 - "default.handlebars->27->908"
10567 + "default.handlebars->27->911"
10568 ]
10569 },
10570 {
@@ -10569,7 +10581,7 @@
10581 "zh-chs": "法語(摩納哥)",
10582 "es": "Francés (Mónaco)",
10583 "xloc": [
10572 - "default.handlebars->27->909"
10584 + "default.handlebars->27->912"
10585 ]
10586 },
10587 {
@@ -10586,7 +10598,7 @@
10598 "zh-chs": "法語(標準)",
10599 "es": "Francés (estándar)",
10600 "xloc": [
10589 - "default.handlebars->27->904"
10601 + "default.handlebars->27->907"
10602 ]
10603 },
10604 {
@@ -10603,7 +10615,7 @@
10615 "zh-chs": "法語(瑞士)",
10616 "es": "Francés (Suiza)",
10617 "xloc": [
10606 - "default.handlebars->27->910"
10618 + "default.handlebars->27->913"
10619 ]
10620 },
10621 {
@@ -10620,7 +10632,7 @@
10632 "zh-chs": "弗里斯蘭語",
10633 "es": "Friso",
10634 "xloc": [
10623 - "default.handlebars->27->911"
10635 + "default.handlebars->27->914"
10636 ]
10637 },
10638 {
@@ -10637,7 +10649,7 @@
10649 "zh-chs": "弗留利",
10650 "es": "Friuliano",
10651 "xloc": [
10640 - "default.handlebars->27->912"
10652 + "default.handlebars->27->915"
10653 ]
10654 },
10655 {
@@ -10658,9 +10670,9 @@
10670 "default-mobile.handlebars->9->293",
10671 "default-mobile.handlebars->9->311",
10672 "default-mobile.handlebars->9->67",
10661 - "default.handlebars->27->1085",
10662 - "default.handlebars->27->1212",
10663 - "default.handlebars->27->1421"
10673 + "default.handlebars->27->1088",
10674 + "default.handlebars->27->1216",
10675 + "default.handlebars->27->1427"
10676 ]
10677 },
10678 {
@@ -10677,7 +10689,7 @@
10689 "ru": "Администратор с полным доступом (все права)",
10690 "zh-chs": "正式管理員(保留所有權利)",
10691 "xloc": [
10680 - "default.handlebars->27->1240"
10692 + "default.handlebars->27->1246"
10693 ]
10694 },
10695 {
@@ -10708,7 +10720,7 @@
10720 "zh-chs": "完整的設備權限",
10721 "es": "Derechos completos del dispositivo",
10722 "xloc": [
10711 - "default.handlebars->27->553"
10723 + "default.handlebars->27->556"
10724 ]
10725 },
10726 {
@@ -10722,7 +10734,7 @@
10734 "zh-chs": "完全权利",
10735 "es": "Derechos Completos",
10736 "xloc": [
10725 - "default.handlebars->27->569"
10737 + "default.handlebars->27->572"
10738 ]
10739 },
10740 {
@@ -10758,7 +10770,7 @@
10770 "ru": "Администратор с полным доступом",
10771 "zh-chs": "正式管理員",
10772 "xloc": [
10761 - "default.handlebars->27->1479"
10773 + "default.handlebars->27->1492"
10774 ]
10775 },
10776 {
@@ -10775,7 +10787,7 @@
10787 "zh-chs": "蓋爾語(愛爾蘭)",
10788 "es": "Gaélico (Irlandés)",
10789 "xloc": [
10778 - "default.handlebars->27->914"
10790 + "default.handlebars->27->917"
10791 ]
10792 },
10793 {
@@ -10792,7 +10804,7 @@
10804 "zh-chs": "蓋爾語(蘇格蘭語)",
10805 "es": "Gaélico (Escocés)",
10806 "xloc": [
10795 - "default.handlebars->27->913"
10807 + "default.handlebars->27->916"
10808 ]
10809 },
10810 {
@@ -10809,7 +10821,7 @@
10821 "zh-chs": "加拉契人",
10822 "es": "Gallego",
10823 "xloc": [
10812 - "default.handlebars->27->915"
10824 + "default.handlebars->27->918"
10825 ]
10826 },
10827 {
@@ -10916,7 +10928,7 @@
10928 "zh-chs": "格魯吉亞人",
10929 "es": "Georgiano",
10930 "xloc": [
10919 - "default.handlebars->27->916"
10931 + "default.handlebars->27->919"
10932 ]
10933 },
10934 {
@@ -10933,7 +10945,7 @@
10945 "zh-chs": "德語(奧地利)",
10946 "es": "Alemán (Austria)",
10947 "xloc": [
10936 - "default.handlebars->27->918"
10948 + "default.handlebars->27->921"
10949 ]
10950 },
10951 {
@@ -10950,7 +10962,7 @@
10962 "zh-chs": "德文(德國)",
10963 "es": "Alemán (Alemania)",
10964 "xloc": [
10953 - "default.handlebars->27->919"
10965 + "default.handlebars->27->922"
10966 ]
10967 },
10968 {
@@ -10967,7 +10979,7 @@
10979 "zh-chs": "德文(列支敦士登)",
10980 "es": "Alemán (Liechtenstein)",
10981 "xloc": [
10970 - "default.handlebars->27->920"
10982 + "default.handlebars->27->923"
10983 ]
10984 },
10985 {
@@ -10984,7 +10996,7 @@
10996 "zh-chs": "德語(盧森堡)",
10997 "es": "Alemán (Luxemburgo)",
10998 "xloc": [
10987 - "default.handlebars->27->921"
10999 + "default.handlebars->27->924"
11000 ]
11001 },
11002 {
@@ -11001,7 +11013,7 @@
11013 "zh-chs": "德語(標準)",
11014 "es": "Alemán (Estándar)",
11015 "xloc": [
11004 - "default.handlebars->27->917"
11016 + "default.handlebars->27->920"
11017 ]
11018 },
11019 {
@@ -11018,7 +11030,7 @@
11030 "zh-chs": "德語(瑞士)",
11031 "es": "Alemán (Suiza)",
11032 "xloc": [
11021 - "default.handlebars->27->922"
11033 + "default.handlebars->27->925"
11034 ]
11035 },
11036 {
@@ -11088,7 +11100,7 @@
11100 "ru": "Хорошо",
11101 "zh-chs": "好",
11102 "xloc": [
11091 - "default.handlebars->27->1081"
11103 + "default.handlebars->27->1084"
11104 ]
11105 },
11106 {
@@ -11125,7 +11137,7 @@
11137 "zh-chs": "希臘語",
11138 "es": "Griego",
11139 "xloc": [
11128 - "default.handlebars->27->923"
11140 + "default.handlebars->27->926"
11141 ]
11142 },
11143 {
@@ -11161,7 +11173,7 @@
11173 "ru": "Групповое действие",
11174 "zh-chs": "集體行動",
11175 "xloc": [
11164 - "default.handlebars->27->1379",
11176 + "default.handlebars->27->1385",
11177 "default.handlebars->27->384",
11178 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
11179 "default.handlebars->container->column_l->p4->3->1->0->3->3"
@@ -11181,7 +11193,7 @@
11193 "ru": "Члены группы",
11194 "zh-chs": "小組成員",
11195 "xloc": [
11184 - "default.handlebars->27->1450"
11196 + "default.handlebars->27->1456"
11197 ]
11198 },
11199 {
@@ -11198,7 +11210,7 @@
11210 "ru": "Права на группу для пользователя {0}.",
11211 "zh-chs": "用戶{0}的組權限。",
11212 "xloc": [
11201 - "default.handlebars->27->1211"
11213 + "default.handlebars->27->1215"
11214 ]
11215 },
11216 {
@@ -11215,7 +11227,7 @@
11227 "ru": "Права на группу для {0}.",
11228 "zh-chs": "{0}的組權限。",
11229 "xloc": [
11218 - "default.handlebars->27->1210"
11230 + "default.handlebars->27->1214"
11231 ]
11232 },
11233 {
@@ -11249,7 +11261,7 @@
11261 "ru": "Группы",
11262 "zh-chs": "團體",
11263 "xloc": [
11252 - "default.handlebars->27->1348",
11264 + "default.handlebars->27->1354",
11265 "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups"
11266 ]
11267 },
@@ -11267,7 +11279,7 @@
11279 "zh-chs": "古久拉提",
11280 "es": "Gujarati",
11281 "xloc": [
11270 - "default.handlebars->27->924"
11282 + "default.handlebars->27->927"
11283 ]
11284 },
11285 {
@@ -11303,7 +11315,7 @@
11315 "zh-chs": "海地",
11316 "es": "Haitiano",
11317 "xloc": [
11306 - "default.handlebars->27->925"
11318 + "default.handlebars->27->928"
11319 ]
11320 },
11321 {
@@ -11337,7 +11349,7 @@
11349 "ru": "Жесткое отключение агента",
11350 "zh-chs": "硬斷開劑",
11351 "xloc": [
11340 - "default.handlebars->27->819"
11352 + "default.handlebars->27->822"
11353 ]
11354 },
11355 {
@@ -11354,7 +11366,7 @@
11366 "ru": "Всего кучи",
11367 "zh-chs": "堆總數",
11368 "xloc": [
11357 - "default.handlebars->27->1619"
11369 + "default.handlebars->27->1634"
11370 ]
11371 },
11372 {
@@ -11371,7 +11383,7 @@
11383 "ru": "Куча используется",
11384 "zh-chs": "堆使用",
11385 "xloc": [
11374 - "default.handlebars->27->1618"
11386 + "default.handlebars->27->1633"
11387 ]
11388 },
11389 {
@@ -11388,7 +11400,7 @@
11400 "ru": "Иврит",
11401 "zh-chs": "希伯來語",
11402 "xloc": [
11391 - "default.handlebars->27->926"
11403 + "default.handlebars->27->929"
11404 ]
11405 },
11406 {
@@ -11420,7 +11432,7 @@
11432 "ru": "Помочь перевести MeshCentral",
11433 "zh-chs": "幫助翻譯MeshCentral",
11434 "xloc": [
11423 - "default.handlebars->27->1040"
11435 + "default.handlebars->27->1043"
11436 ]
11437 },
11438 {
@@ -11500,7 +11512,7 @@
11512 "ru": "Хинди",
11513 "zh-chs": "印地語",
11514 "xloc": [
11503 - "default.handlebars->27->927"
11515 + "default.handlebars->27->930"
11516 ]
11517 },
11518 {
@@ -11536,7 +11548,7 @@
11548 "zh-chs": "持有1份副本",
11549 "xloc": [
11550 "default-mobile.handlebars->9->264",
11539 - "default.handlebars->27->732"
11551 + "default.handlebars->27->735"
11552 ]
11553 },
11554 {
@@ -11554,7 +11566,7 @@
11566 "zh-chs": "持有1個搬家公司",
11567 "xloc": [
11568 "default-mobile.handlebars->9->268",
11557 - "default.handlebars->27->736"
11569 + "default.handlebars->27->739"
11570 ]
11571 },
11572 {
@@ -11572,7 +11584,7 @@
11584 "zh-chs": "保留{0}個條目進行複制",
11585 "xloc": [
11586 "default-mobile.handlebars->9->262",
11575 - "default.handlebars->27->730"
11587 + "default.handlebars->27->733"
11588 ]
11589 },
11590 {
@@ -11590,7 +11602,7 @@
11602 "zh-chs": "保留{0}個條目以進行移動",
11603 "xloc": [
11604 "default-mobile.handlebars->9->266",
11593 - "default.handlebars->27->734"
11605 + "default.handlebars->27->737"
11606 ]
11607 },
11608 {
@@ -11608,7 +11620,7 @@
11620 "zh-chs": "保持{2}的{0}入口{1}",
11621 "xloc": [
11622 "default-mobile.handlebars->9->91",
11611 - "default.handlebars->27->1330"
11623 + "default.handlebars->27->1336"
11624 ]
11625 },
11626 {
@@ -11633,7 +11645,7 @@
11645 "default.handlebars->27->452",
11646 "default.handlebars->27->453",
11647 "default.handlebars->27->455",
11636 - "default.handlebars->27->660"
11648 + "default.handlebars->27->663"
11649 ]
11650 },
11651 {
@@ -11650,7 +11662,7 @@
11662 "ru": "Синхронизация имени хоста",
11663 "zh-chs": "主機名同步",
11664 "xloc": [
11653 - "default.handlebars->27->1104"
11665 + "default.handlebars->27->1107"
11666 ]
11667 },
11668 {
@@ -11667,7 +11679,7 @@
11679 "zh-chs": "匈牙利",
11680 "es": "Hungaro",
11681 "xloc": [
11670 - "default.handlebars->27->928"
11682 + "default.handlebars->27->931"
11683 ]
11684 },
11685 {
@@ -11719,7 +11731,7 @@
11731 "ru": "IP: {0}",
11732 "zh-chs": "IP:{0}",
11733 "xloc": [
11722 - "default.handlebars->27->772"
11734 + "default.handlebars->27->775"
11735 ]
11736 },
11737 {
@@ -11736,7 +11748,7 @@
11748 "zh-chs": "IP:{0},掩碼:{1},網關:{2}",
11749 "es": "IP: {0}, Mascara: {1}, Puerta de Enlace: {2}",
11750 "xloc": [
11739 - "default.handlebars->27->770"
11751 + "default.handlebars->27->773"
11752 ]
11753 },
11754 {
@@ -11753,8 +11765,8 @@
11765 "zh-chs": "IPv4層",
11766 "es": "Capa IPv4",
11767 "xloc": [
11756 - "default.handlebars->27->769",
11757 - "default.handlebars->27->771"
11768 + "default.handlebars->27->772",
11769 + "default.handlebars->27->774"
11770 ]
11771 },
11772 {
@@ -11822,7 +11834,7 @@
11834 "zh-chs": "冰島的",
11835 "es": "Islandés",
11836 "xloc": [
11825 - "default.handlebars->27->929"
11837 + "default.handlebars->27->932"
11838 ]
11839 },
11840 {
@@ -11840,7 +11852,7 @@
11852 "zh-chs": "圖標選擇",
11853 "xloc": [
11854 "default-mobile.handlebars->9->224",
11843 - "default.handlebars->27->658"
11855 + "default.handlebars->27->661"
11856 ]
11857 },
11858 {
@@ -11857,7 +11869,7 @@
11869 "ru": "Идентификатор",
11870 "zh-chs": "識別碼",
11871 "xloc": [
11860 - "default.handlebars->27->797"
11872 + "default.handlebars->27->800"
11873 ]
11874 },
11875 {
@@ -11956,7 +11968,7 @@
11968 "zh-chs": "印度尼西亞",
11969 "es": "Indonesio",
11970 "xloc": [
11959 - "default.handlebars->27->930"
11971 + "default.handlebars->27->933"
11972 ]
11973 },
11974 {
@@ -12025,7 +12037,7 @@
12037 "ru": "Установка",
12038 "zh-chs": "安裝",
12039 "xloc": [
12028 - "default.handlebars->27->1145"
12040 + "default.handlebars->27->1148"
12041 ]
12042 },
12043 {
@@ -12074,7 +12086,7 @@
12086 "ru": "Установка CIRA",
12087 "zh-chs": "安裝CIRA",
12088 "xloc": [
12077 - "default.handlebars->27->1137"
12089 + "default.handlebars->27->1140"
12090 ]
12091 },
12092 {
@@ -12091,7 +12103,7 @@
12103 "ru": "Локальная установка",
12104 "zh-chs": "安裝本地",
12105 "xloc": [
12094 - "default.handlebars->27->1139"
12106 + "default.handlebars->27->1142"
12107 ]
12108 },
12109 {
@@ -12108,8 +12120,8 @@
12120 "ru": "Тип установки",
12121 "zh-chs": "安裝類型",
12122 "xloc": [
12111 - "default.handlebars->27->1269",
12112 - "default.handlebars->27->1276",
12123 + "default.handlebars->27->1275",
12124 + "default.handlebars->27->1282",
12125 "default.handlebars->27->285",
12126 "default.handlebars->27->307"
12127 ]
@@ -12128,7 +12140,7 @@
12140 "ru": "Intel (F10 = ESC+[OM)",
12141 "zh-chs": "英特爾(F10 = ESC + [OM)",
12142 "xloc": [
12131 - "default.handlebars->27->702",
12143 + "default.handlebars->27->705",
12144 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
12145 ]
12146 },
@@ -12146,10 +12158,10 @@
12158 "ru": "Intel AMT",
12159 "zh-chs": "英特爾AMT",
12160 "xloc": [
12149 - "default.handlebars->27->1288",
12161 "default.handlebars->27->1294",
12151 - "default.handlebars->27->1615",
12152 - "default.handlebars->27->1637"
12162 + "default.handlebars->27->1300",
12163 + "default.handlebars->27->1630",
12164 + "default.handlebars->27->1652"
12165 ]
12166 },
12167 {
@@ -12302,7 +12314,7 @@
12314 "ru": "Intel ASCII",
12315 "zh-chs": "英特爾ASCII",
12316 "xloc": [
12305 - "default.handlebars->27->701"
12317 + "default.handlebars->27->704"
12318 ]
12319 },
12320 {
@@ -12322,8 +12334,8 @@
12334 "default-mobile.handlebars->9->126",
12335 "default-mobile.handlebars->9->190",
12336 "default-mobile.handlebars->9->195",
12325 - "default.handlebars->27->1121",
12326 - "default.handlebars->27->1131",
12337 + "default.handlebars->27->1124",
12338 + "default.handlebars->27->1134",
12339 "default.handlebars->27->425",
12340 "default.handlebars->27->478",
12341 "default.handlebars->27->506"
@@ -12399,7 +12411,7 @@
12411 "ru": "Политика Intel® AMT",
12412 "zh-chs": "英特爾®AMT政策",
12413 "xloc": [
12402 - "default.handlebars->27->1160"
12414 + "default.handlebars->27->1163"
12415 ]
12416 },
12417 {
@@ -12504,8 +12516,8 @@
12516 "ru": "События Intel® AMT desktop или serial.",
12517 "zh-chs": "英特爾®AMT桌面和串行事件。",
12518 "xloc": [
12507 - "default.handlebars->27->1046",
12508 - "default.handlebars->27->1284"
12519 + "default.handlebars->27->1049",
12520 + "default.handlebars->27->1290"
12521 ]
12522 },
12523 {
@@ -12594,8 +12606,8 @@
12606 "zh-chs": "僅限英特爾®AMT,無代理",
12607 "xloc": [
12608 "default-mobile.handlebars->9->275",
12597 - "default.handlebars->27->1075",
12598 - "default.handlebars->27->1097"
12609 + "default.handlebars->27->1078",
12610 + "default.handlebars->27->1100"
12611 ]
12612 },
12613 {
@@ -12629,7 +12641,7 @@
12641 "ru": "Intel® Active Management Technology (Intel® AMT)",
12642 "zh-chs": "英特爾®主動管理技術(英特爾®AMT)",
12643 "xloc": [
12632 - "default.handlebars->27->789"
12644 + "default.handlebars->27->792"
12645 ]
12646 },
12647 {
@@ -12783,7 +12795,7 @@
12795 "ru": "Интерактивный",
12796 "zh-chs": "互動",
12797 "xloc": [
12786 - "default.handlebars->27->684"
12798 + "default.handlebars->27->687"
12799 ]
12800 },
12801 {
@@ -12800,8 +12812,8 @@
12812 "ru": "Только интерактивный режим",
12813 "zh-chs": "僅限互動",
12814 "xloc": [
12803 - "default.handlebars->27->1272",
12804 - "default.handlebars->27->1279",
12815 + "default.handlebars->27->1278",
12816 + "default.handlebars->27->1285",
12817 "default.handlebars->27->288",
12818 "default.handlebars->27->310"
12819 ]
@@ -12837,7 +12849,7 @@
12849 "zh-chs": "因紐特人",
12850 "es": "Inuktitut",
12851 "xloc": [
12840 - "default.handlebars->27->931"
12852 + "default.handlebars->27->934"
12853 ]
12854 },
12855 {
@@ -12854,7 +12866,7 @@
12866 "ru": "Некорректный тип группы устройств",
12867 "zh-chs": "無效的設備組類型",
12868 "xloc": [
12857 - "default.handlebars->27->1592"
12869 + "default.handlebars->27->1607"
12870 ]
12871 },
12872 {
@@ -12871,7 +12883,7 @@
12883 "ru": "Некорректный JSON",
12884 "zh-chs": "無效的JSON",
12885 "xloc": [
12874 - "default.handlebars->27->1586"
12886 + "default.handlebars->27->1601"
12887 ]
12888 },
12889 {
@@ -12888,8 +12900,8 @@
12900 "ru": "Некорректный формат файла JSON.",
12901 "zh-chs": "無效的JSON文件格式。",
12902 "xloc": [
12891 - "default.handlebars->27->1390",
12892 - "default.handlebars->27->1392"
12903 + "default.handlebars->27->1396",
12904 + "default.handlebars->27->1398"
12905 ]
12906 },
12907 {
@@ -12906,7 +12918,7 @@
12918 "ru": "Некорректный файл JSON: {0}.",
12919 "zh-chs": "無效的JSON文件:{0}。",
12920 "xloc": [
12909 - "default.handlebars->27->1388"
12921 + "default.handlebars->27->1394"
12922 ]
12923 },
12924 {
@@ -12923,7 +12935,7 @@
12935 "ru": "Некорректная сигнатура PKCS",
12936 "zh-chs": "無效的PKCS簽名",
12937 "xloc": [
12926 - "default.handlebars->27->1584"
12938 + "default.handlebars->27->1599"
12939 ]
12940 },
12941 {
@@ -12940,7 +12952,7 @@
12952 "ru": "Некорректная сигнатура RSA",
12953 "zh-chs": "無效的RSA密碼",
12954 "xloc": [
12943 - "default.handlebars->27->1585"
12955 + "default.handlebars->27->1600"
12956 ]
12957 },
12958 {
@@ -13076,7 +13088,7 @@
13088 "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:",
13089 "es": "Los códigos de invitación pueden ser usados por cualquiera para unir dispositivos a este grupo de dispositivos usando el siguiente enlace público:",
13090 "xloc": [
13079 - "default.handlebars->27->1274"
13091 + "default.handlebars->27->1280"
13092 ]
13093 },
13094 {
@@ -13107,7 +13119,7 @@
13119 "ru": "Пригласить",
13120 "zh-chs": "邀請",
13121 "xloc": [
13110 - "default.handlebars->27->1147",
13122 + "default.handlebars->27->1150",
13123 "default.handlebars->27->220",
13124 "default.handlebars->27->300"
13125 ]
@@ -13126,11 +13138,11 @@
13138 "zh-chs": "邀請碼",
13139 "es": "Códigos de invitación",
13140 "xloc": [
13129 - "default.handlebars->27->1125",
13130 - "default.handlebars->27->1268",
13131 - "default.handlebars->27->1273",
13132 - "default.handlebars->27->1275",
13133 - "default.handlebars->27->1280"
13141 + "default.handlebars->27->1128",
13142 + "default.handlebars->27->1274",
13143 + "default.handlebars->27->1279",
13144 + "default.handlebars->27->1281",
13145 + "default.handlebars->27->1286"
13146 ]
13147 },
13148 {
@@ -13164,7 +13176,7 @@
13176 "ru": "Отправить приглашение на установку Mesh Agent",
13177 "zh-chs": "邀請某人在此網格上安裝網格代理。",
13178 "xloc": [
13167 - "default.handlebars->27->1146",
13179 + "default.handlebars->27->1149",
13180 "default.handlebars->27->219"
13181 ]
13182 },
@@ -13199,7 +13211,7 @@
13211 "ru": "Ирландский",
13212 "zh-chs": "愛爾蘭人",
13213 "xloc": [
13202 - "default.handlebars->27->932"
13214 + "default.handlebars->27->935"
13215 ]
13216 },
13217 {
@@ -13216,7 +13228,7 @@
13228 "zh-chs": "意大利語(標準)",
13229 "es": "Italiano (estándar)",
13230 "xloc": [
13219 - "default.handlebars->27->933"
13231 + "default.handlebars->27->936"
13232 ]
13233 },
13234 {
@@ -13233,7 +13245,7 @@
13245 "zh-chs": "義大利文(瑞士)",
13246 "es": "Italiano (Suiza)",
13247 "xloc": [
13236 - "default.handlebars->27->934"
13248 + "default.handlebars->27->937"
13249 ]
13250 },
13251 {
@@ -13250,8 +13262,8 @@
13262 "ru": "Формат JSON",
13263 "zh-chs": "JSON格式",
13264 "xloc": [
13253 - "default.handlebars->27->1341",
13254 - "default.handlebars->27->1396",
13265 + "default.handlebars->27->1347",
13266 + "default.handlebars->27->1402",
13267 "default.handlebars->27->392"
13268 ]
13269 },
@@ -13269,7 +13281,7 @@
13281 "ru": "Японский",
13282 "zh-chs": "日本",
13283 "xloc": [
13272 - "default.handlebars->27->935"
13284 + "default.handlebars->27->938"
13285 ]
13286 },
13287 {
@@ -13286,7 +13298,7 @@
13298 "zh-chs": "卡納達語",
13299 "es": "Kannada",
13300 "xloc": [
13289 - "default.handlebars->27->936"
13301 + "default.handlebars->27->939"
13302 ]
13303 },
13304 {
@@ -13303,7 +13315,7 @@
13315 "zh-chs": "克什米爾語",
13316 "es": "Cachemira",
13317 "xloc": [
13306 - "default.handlebars->27->937"
13318 + "default.handlebars->27->940"
13319 ]
13320 },
13321 {
@@ -13320,7 +13332,7 @@
13332 "zh-chs": "哈薩克語",
13333 "es": "Kazajo",
13334 "xloc": [
13323 - "default.handlebars->27->938"
13335 + "default.handlebars->27->941"
13336 ]
13337 },
13338 {
@@ -13337,7 +13349,7 @@
13349 "ru": "Драйвер ядра",
13350 "zh-chs": "內核驅動程序",
13351 "xloc": [
13340 - "default.handlebars->27->685"
13352 + "default.handlebars->27->688"
13353 ]
13354 },
13355 {
@@ -13354,8 +13366,8 @@
13366 "ru": "Имя ключа",
13367 "zh-chs": "鍵名",
13368 "xloc": [
13357 - "default.handlebars->27->829",
13358 - "default.handlebars->27->832"
13369 + "default.handlebars->27->832",
13370 + "default.handlebars->27->835"
13371 ]
13372 },
13373 {
@@ -13389,7 +13401,7 @@
13401 "zh-chs": "高棉語",
13402 "es": "Jemer",
13403 "xloc": [
13392 - "default.handlebars->27->939"
13404 + "default.handlebars->27->942"
13405 ]
13406 },
13407 {
@@ -13406,7 +13418,7 @@
13418 "zh-chs": "吉爾吉斯",
13419 "es": "Kirghiz",
13420 "xloc": [
13409 - "default.handlebars->27->940"
13421 + "default.handlebars->27->943"
13422 ]
13423 },
13424 {
@@ -13423,7 +13435,7 @@
13435 "zh-chs": "克林貢",
13436 "es": "Klingon",
13437 "xloc": [
13426 - "default.handlebars->27->941"
13438 + "default.handlebars->27->944"
13439 ]
13440 },
13441 {
@@ -13440,7 +13452,7 @@
13452 "zh-chs": "已知的",
13453 "es": "Conocido",
13454 "xloc": [
13443 - "default.handlebars->27->788"
13455 + "default.handlebars->27->791"
13456 ]
13457 },
13458 {
@@ -13457,7 +13469,7 @@
13469 "zh-chs": "韓語",
13470 "es": "Coreano",
13471 "xloc": [
13460 - "default.handlebars->27->942"
13472 + "default.handlebars->27->945"
13473 ]
13474 },
13475 {
@@ -13474,7 +13486,7 @@
13486 "zh-chs": "韓語(朝鮮)",
13487 "es": "Coreano (Corea del Norte)",
13488 "xloc": [
13477 - "default.handlebars->27->943"
13489 + "default.handlebars->27->946"
13490 ]
13491 },
13492 {
@@ -13491,7 +13503,7 @@
13503 "zh-chs": "韓語(韓國)",
13504 "es": "Coreano (Corea del Sur)",
13505 "xloc": [
13494 - "default.handlebars->27->944"
13506 + "default.handlebars->27->947"
13507 ]
13508 },
13509 {
@@ -13508,8 +13520,8 @@
13520 "ru": "LF",
13521 "zh-chs": "如果",
13522 "xloc": [
13511 - "default.handlebars->27->697",
13512 - "default.handlebars->27->706"
13523 + "default.handlebars->27->700",
13524 + "default.handlebars->27->709"
13525 ]
13526 },
13527 {
@@ -13526,7 +13538,7 @@
13538 "ru": "Язык",
13539 "zh-chs": "語言",
13540 "xloc": [
13529 - "default.handlebars->27->1038"
13541 + "default.handlebars->27->1041"
13542 ]
13543 },
13544 {
@@ -13560,7 +13572,7 @@
13572 "ru": "Большой Фокус",
13573 "zh-chs": "大焦點",
13574 "xloc": [
13563 - "default.handlebars->27->673"
13575 + "default.handlebars->27->676"
13576 ]
13577 },
13578 {
@@ -13743,7 +13755,7 @@
13755 "ru": "Последний доступ",
13756 "zh-chs": "最後訪問",
13757 "xloc": [
13746 - "default.handlebars->27->1349"
13758 + "default.handlebars->27->1355"
13759 ]
13760 },
13761 {
@@ -13760,7 +13772,7 @@
13772 "ru": "Последний вход в систему",
13773 "zh-chs": "上次登錄",
13774 "xloc": [
13763 - "default.handlebars->27->1491"
13775 + "default.handlebars->27->1504"
13776 ]
13777 },
13778 {
@@ -13780,9 +13792,9 @@
13792 "default.handlebars->27->70",
13793 "default.handlebars->27->72",
13794 "default.handlebars->27->74",
13783 - "default.handlebars->27->760",
13784 - "default.handlebars->27->761",
13785 - "default.handlebars->27->762"
13795 + "default.handlebars->27->763",
13796 + "default.handlebars->27->764",
13797 + "default.handlebars->27->765"
13798 ]
13799 },
13800 {
@@ -13800,8 +13812,8 @@
13812 "zh-chs": "上次代理連接",
13813 "xloc": [
13814 "default.handlebars->27->69",
13803 - "default.handlebars->27->757",
13804 - "default.handlebars->27->759"
13815 + "default.handlebars->27->760",
13816 + "default.handlebars->27->762"
13817 ]
13818 },
13819 {
@@ -13818,7 +13830,7 @@
13830 "ru": "Последнее изменение: {0}",
13831 "zh-chs": "上次更改:{0}",
13832 "xloc": [
13821 - "default.handlebars->27->1495"
13833 + "default.handlebars->27->1508"
13834 ]
13835 },
13836 {
@@ -13869,7 +13881,7 @@
13881 "ru": "Последний вход в систему: {0}",
13882 "zh-chs": "上次登錄:{0}",
13883 "xloc": [
13872 - "default.handlebars->27->1359"
13884 + "default.handlebars->27->1365"
13885 ]
13886 },
13887 {
@@ -13955,7 +13967,7 @@
13967 "ru": "Латинский",
13968 "zh-chs": "拉丁",
13969 "xloc": [
13958 - "default.handlebars->27->945"
13970 + "default.handlebars->27->948"
13971 ]
13972 },
13973 {
@@ -13972,7 +13984,7 @@
13984 "ru": "Латышский",
13985 "zh-chs": "拉脫維亞語",
13986 "xloc": [
13975 - "default.handlebars->27->946"
13987 + "default.handlebars->27->949"
13988 ]
13989 },
13990 {
@@ -14011,7 +14023,7 @@
14023 "ru": "Меньше",
14024 "zh-chs": "減",
14025 "xloc": [
14014 - "default.handlebars->27->1654"
14026 + "default.handlebars->27->1669"
14027 ]
14028 },
14029 {
@@ -14025,8 +14037,8 @@
14037 "zh-chs": "极限赛事",
14038 "es": "Limitar Eventos",
14039 "xloc": [
14028 - "default.handlebars->27->565",
14029 - "default.handlebars->27->584"
14040 + "default.handlebars->27->568",
14041 + "default.handlebars->27->587"
14042 ]
14043 },
14044 {
@@ -14062,9 +14074,9 @@
14074 "zh-chs": "有限輸入",
14075 "xloc": [
14076 "default-mobile.handlebars->9->324",
14065 - "default.handlebars->27->1254",
14066 - "default.handlebars->27->558",
14067 - "default.handlebars->27->577"
14077 + "default.handlebars->27->1260",
14078 + "default.handlebars->27->561",
14079 + "default.handlebars->27->580"
14080 ]
14081 },
14082 {
@@ -14082,7 +14094,7 @@
14094 "zh-chs": "僅限於輸入",
14095 "xloc": [
14096 "default-mobile.handlebars->9->299",
14085 - "default.handlebars->27->1218"
14097 + "default.handlebars->27->1222"
14098 ]
14099 },
14100 {
@@ -14249,7 +14261,7 @@
14261 "ru": "Linux ARM, Raspberry Pi (32bit)",
14262 "zh-chs": "Linux ARM,Raspberry Pi(32位)",
14263 "xloc": [
14252 - "default.handlebars->27->641"
14264 + "default.handlebars->27->644"
14265 ]
14266 },
14267 {
@@ -14355,7 +14367,7 @@
14367 "ru": "Linux x86 (32bit)",
14368 "zh-chs": "Linux x86(32位)",
14369 "xloc": [
14358 - "default.handlebars->27->638"
14370 + "default.handlebars->27->641"
14371 ]
14372 },
14373 {
@@ -14372,7 +14384,7 @@
14384 "ru": "Linux x86 (64bit)",
14385 "zh-chs": "Linux x86(64位)",
14386 "xloc": [
14375 - "default.handlebars->27->639"
14387 + "default.handlebars->27->642"
14388 ]
14389 },
14390 {
@@ -14407,7 +14419,7 @@
14419 "ru": "Литовский",
14420 "zh-chs": "立陶宛語",
14421 "xloc": [
14410 - "default.handlebars->27->947"
14422 + "default.handlebars->27->950"
14423 ]
14424 },
14425 {
@@ -14425,10 +14437,10 @@
14437 "zh-chs": "載入中...",
14438 "xloc": [
14439 "default-mobile.handlebars->9->34",
14428 - "default.handlebars->27->1092",
14429 - "default.handlebars->27->1094",
14430 - "default.handlebars->27->632",
14431 - "default.handlebars->27->825"
14440 + "default.handlebars->27->1095",
14441 + "default.handlebars->27->1097",
14442 + "default.handlebars->27->635",
14443 + "default.handlebars->27->828"
14444 ]
14445 },
14446 {
@@ -14496,7 +14508,7 @@
14508 "ru": "Настройки локализации",
14509 "zh-chs": "本地化設置",
14510 "xloc": [
14499 - "default.handlebars->27->1041",
14511 + "default.handlebars->27->1044",
14512 "default.handlebars->container->column_l->p2->p2AccountActions->3->5"
14513 ]
14514 },
@@ -14548,7 +14560,7 @@
14560 "ru": "Заблокировать учетную запись",
14561 "zh-chs": "鎖定賬戶",
14562 "xloc": [
14551 - "default.handlebars->27->1427"
14563 + "default.handlebars->27->1433"
14564 ]
14565 },
14566 {
@@ -14565,7 +14577,7 @@
14577 "ru": "Заблокировать учетную запись",
14578 "zh-chs": "鎖定賬戶",
14579 "xloc": [
14568 - "default.handlebars->27->1376"
14580 + "default.handlebars->27->1382"
14581 ]
14582 },
14583 {
@@ -14582,7 +14594,7 @@
14594 "ru": "Заблокирован",
14595 "zh-chs": "已鎖定",
14596 "xloc": [
14585 - "default.handlebars->27->1360"
14597 + "default.handlebars->27->1366"
14598 ]
14599 },
14600 {
@@ -14599,7 +14611,7 @@
14611 "ru": "Заблокированная учетная запись",
14612 "zh-chs": "賬戶鎖定",
14613 "xloc": [
14602 - "default.handlebars->27->1476"
14614 + "default.handlebars->27->1489"
14615 ]
14616 },
14617 {
@@ -14765,7 +14777,7 @@
14777 "ru": "Люксембургский",
14778 "zh-chs": "盧森堡語",
14779 "xloc": [
14768 - "default.handlebars->27->948"
14780 + "default.handlebars->27->951"
14781 ]
14782 },
14783 {
@@ -14782,8 +14794,8 @@
14794 "zh-chs": "MAC層",
14795 "es": "Capa MAC",
14796 "xloc": [
14785 - "default.handlebars->27->765",
14786 - "default.handlebars->27->767"
14797 + "default.handlebars->27->768",
14798 + "default.handlebars->27->770"
14799 ]
14800 },
14801 {
@@ -14817,7 +14829,7 @@
14829 "ru": "MAC: {0}",
14830 "zh-chs": "MAC:{0}",
14831 "xloc": [
14820 - "default.handlebars->27->768"
14832 + "default.handlebars->27->771"
14833 ]
14834 },
14835 {
@@ -14834,7 +14846,7 @@
14846 "zh-chs": "MAC:{0},網關:{1}",
14847 "es": "MAC: {0}, Puerta de Enlace: {1}",
14848 "xloc": [
14837 - "default.handlebars->27->766"
14849 + "default.handlebars->27->769"
14850 ]
14851 },
14852 {
@@ -14892,8 +14904,8 @@
14904 "default.handlebars->27->176",
14905 "default.handlebars->27->369",
14906 "default.handlebars->27->510",
14895 - "default.handlebars->27->809",
14896 - "default.handlebars->27->810",
14907 + "default.handlebars->27->812",
14908 + "default.handlebars->27->813",
14909 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3"
14910 ]
14911 },
@@ -15034,7 +15046,7 @@
15046 "ru": "MacOS (64bit)",
15047 "zh-chs": "MacOS(64位)",
15048 "xloc": [
15037 - "default.handlebars->27->640"
15049 + "default.handlebars->27->643"
15050 ]
15051 },
15052 {
@@ -15087,7 +15099,7 @@
15099 "ru": "Сообщения главного сервера",
15100 "zh-chs": "主服務器消息",
15101 "xloc": [
15090 - "default.handlebars->27->1626"
15102 + "default.handlebars->27->1641"
15103 ]
15104 },
15105 {
@@ -15104,7 +15116,7 @@
15116 "ru": "Малайский",
15117 "zh-chs": "馬來語",
15118 "xloc": [
15107 - "default.handlebars->27->950"
15119 + "default.handlebars->27->953"
15120 ]
15121 },
15122 {
@@ -15121,7 +15133,7 @@
15133 "zh-chs": "馬拉雅拉姆語",
15134 "es": "Malayalam",
15135 "xloc": [
15124 - "default.handlebars->27->951"
15136 + "default.handlebars->27->954"
15137 ]
15138 },
15139 {
@@ -15138,7 +15150,7 @@
15150 "zh-chs": "馬耳他語",
15151 "es": "Maltés",
15152 "xloc": [
15141 - "default.handlebars->27->952"
15153 + "default.handlebars->27->955"
15154 ]
15155 },
15156 {
@@ -15175,8 +15187,8 @@
15187 "xloc": [
15188 "default-mobile.handlebars->9->296",
15189 "default-mobile.handlebars->9->314",
15178 - "default.handlebars->27->1215",
15179 - "default.handlebars->27->1243"
15190 + "default.handlebars->27->1219",
15191 + "default.handlebars->27->1249"
15192 ]
15193 },
15194 {
@@ -15195,8 +15207,8 @@
15207 "xloc": [
15208 "default-mobile.handlebars->9->295",
15209 "default-mobile.handlebars->9->313",
15198 - "default.handlebars->27->1214",
15199 - "default.handlebars->27->1242"
15210 + "default.handlebars->27->1218",
15211 + "default.handlebars->27->1248"
15212 ]
15213 },
15214 {
@@ -15210,7 +15222,7 @@
15222 "zh-chs": "管理设备",
15223 "es": "Administrar dispositivos",
15224 "xloc": [
15213 - "default.handlebars->27->572"
15225 + "default.handlebars->27->575"
15226 ]
15227 },
15228 {
@@ -15244,7 +15256,7 @@
15256 "ru": "Управление группами пользователя",
15257 "zh-chs": "管理用戶組",
15258 "xloc": [
15247 - "default.handlebars->27->1426"
15259 + "default.handlebars->27->1432"
15260 ]
15261 },
15262 {
@@ -15261,8 +15273,8 @@
15273 "ru": "Управление пользователями",
15274 "zh-chs": "管理用戶",
15275 "xloc": [
15264 - "default.handlebars->27->1425",
15265 - "default.handlebars->27->571"
15276 + "default.handlebars->27->1431",
15277 + "default.handlebars->27->574"
15278 ]
15279 },
15280 {
@@ -15350,7 +15362,7 @@
15362 "ru": "Управление с помощью программного агента",
15363 "zh-chs": "使用軟件代理進行管理",
15364 "xloc": [
15353 - "default.handlebars->27->1074"
15365 + "default.handlebars->27->1077"
15366 ]
15367 },
15368 {
@@ -15368,7 +15380,7 @@
15380 "zh-chs": "使用軟件代理進行管理",
15381 "xloc": [
15382 "default-mobile.handlebars->9->276",
15371 - "default.handlebars->27->1098"
15383 + "default.handlebars->27->1101"
15384 ]
15385 },
15386 {
@@ -15385,7 +15397,7 @@
15397 "ru": "Менеджер",
15398 "zh-chs": "經理",
15399 "xloc": [
15388 - "default.handlebars->27->1365"
15400 + "default.handlebars->27->1371"
15401 ]
15402 },
15403 {
@@ -15436,7 +15448,7 @@
15448 "zh-chs": "毛利人",
15449 "es": "Maori",
15450 "xloc": [
15439 - "default.handlebars->27->953"
15451 + "default.handlebars->27->956"
15452 ]
15453 },
15454 {
@@ -15471,7 +15483,7 @@
15483 "zh-chs": "馬拉地語",
15484 "es": "Marathi",
15485 "xloc": [
15474 - "default.handlebars->27->954"
15486 + "default.handlebars->27->957"
15487 ]
15488 },
15489 {
@@ -15488,7 +15500,7 @@
15500 "ru": "Достигнуто максимальное число сессий",
15501 "zh-chs": "達到的會話數上限",
15502 "xloc": [
15491 - "default.handlebars->27->1590"
15503 + "default.handlebars->27->1605"
15504 ]
15505 },
15506 {
@@ -15542,7 +15554,7 @@
15554 "ru": "Мегабайт",
15555 "zh-chs": "兆字節",
15556 "xloc": [
15545 - "default.handlebars->27->1616"
15557 + "default.handlebars->27->1631"
15558 ]
15559 },
15560 {
@@ -15559,8 +15571,8 @@
15571 "ru": "ОЗУ",
15572 "zh-chs": "記憶",
15573 "xloc": [
15562 - "default.handlebars->27->1607",
15563 - "default.handlebars->27->802",
15574 + "default.handlebars->27->1622",
15575 + "default.handlebars->27->805",
15576 "default.handlebars->container->column_l->p40->3->1->p40type->3"
15577 ]
15578 },
@@ -15586,8 +15598,8 @@
15598 "default.handlebars->27->332",
15599 "default.handlebars->27->459",
15600 "default.handlebars->27->502",
15589 - "default.handlebars->27->756",
15590 - "default.handlebars->27->763"
15601 + "default.handlebars->27->759",
15602 + "default.handlebars->27->766"
15603 ]
15604 },
15605 {
@@ -15605,7 +15617,7 @@
15617 "zh-chs": "網格代理控制台",
15618 "xloc": [
15619 "default-mobile.handlebars->9->303",
15608 - "default.handlebars->27->1223"
15620 + "default.handlebars->27->1227"
15621 ]
15622 },
15623 {
@@ -15677,8 +15689,8 @@
15689 "ru": "MeshAction (.txt)",
15690 "zh-chs": "MeshAction(.txt)",
15691 "xloc": [
15680 - "default.handlebars->27->647",
15681 - "default.handlebars->27->649"
15692 + "default.handlebars->27->650",
15693 + "default.handlebars->27->652"
15694 ]
15695 },
15696 {
@@ -15695,7 +15707,7 @@
15707 "ru": "Трафик MeshAgent",
15708 "zh-chs": "MeshAgent流量",
15709 "xloc": [
15698 - "default.handlebars->27->1628"
15710 + "default.handlebars->27->1643"
15711 ]
15712 },
15713 {
@@ -15712,7 +15724,7 @@
15724 "ru": "Обновление MeshAgent",
15725 "zh-chs": "MeshAgent更新",
15726 "xloc": [
15715 - "default.handlebars->27->1629"
15727 + "default.handlebars->27->1644"
15728 ]
15729 },
15730 {
@@ -15746,7 +15758,7 @@
15758 "ru": "Ошибки MeshCentral",
15759 "zh-chs": "網格中心錯誤",
15760 "xloc": [
15749 - "default.handlebars->27->1093"
15761 + "default.handlebars->27->1096"
15762 ]
15763 },
15764 {
@@ -15763,7 +15775,7 @@
15775 "ru": "MeshCentral Router ",
15776 "zh-chs": "MeshCentral路由器",
15777 "xloc": [
15766 - "default.handlebars->27->635"
15778 + "default.handlebars->27->638"
15779 ]
15780 },
15781 {
@@ -15780,7 +15792,7 @@
15792 "ru": "MeshCentral Router это инструмент Windows для сопоставления портов TCP. Например, через этот сервер можно установить подключение по RDP к удаленному устройству.",
15793 "zh-chs": "MeshCentral Router是Windows工具,用於TCP端口映射。例如,您可以通過該服務器將RDP放入遠程設備。",
15794 "xloc": [
15783 - "default.handlebars->27->633"
15795 + "default.handlebars->27->636"
15796 ]
15797 },
15798 {
@@ -15815,7 +15827,7 @@
15827 "ru": "Соединения сервера MeshCentral",
15828 "zh-chs": "MeshCentral服務器對等",
15829 "xloc": [
15818 - "default.handlebars->27->1627"
15830 + "default.handlebars->27->1642"
15831 ]
15832 },
15833 {
@@ -15849,7 +15861,7 @@
15861 "ru": "Версия MeshCentral",
15862 "zh-chs": "MeshCentral版本",
15863 "xloc": [
15852 - "default.handlebars->27->1091",
15864 + "default.handlebars->27->1094",
15865 "default.handlebars->27->95",
15866 "default.handlebars->27->96"
15867 ]
@@ -15869,7 +15881,7 @@
15881 "zh-chs": "網格命令",
15882 "xloc": [
15883 "default.handlebars->27->191",
15872 - "default.handlebars->27->645"
15884 + "default.handlebars->27->648"
15885 ]
15886 },
15887 {
@@ -15886,7 +15898,7 @@
15898 "ru": "MeshCmd (Linux ARM, 32bit)",
15899 "zh-chs": "MeshCmd(Linux ARM,32位)",
15900 "xloc": [
15889 - "default.handlebars->27->657"
15901 + "default.handlebars->27->660"
15902 ]
15903 },
15904 {
@@ -15903,7 +15915,7 @@
15915 "ru": "MeshCmd (Linux x86, 32bit)",
15916 "zh-chs": "MeshCmd(Linux x86,32bit)",
15917 "xloc": [
15906 - "default.handlebars->27->654"
15918 + "default.handlebars->27->657"
15919 ]
15920 },
15921 {
@@ -15920,7 +15932,7 @@
15932 "ru": "MeshCmd (Linux x86, 64bit)",
15933 "zh-chs": "MeshCmd(Linux x86,64bit)",
15934 "xloc": [
15923 - "default.handlebars->27->655"
15935 + "default.handlebars->27->658"
15936 ]
15937 },
15938 {
@@ -15937,7 +15949,7 @@
15949 "ru": "MeshCmd (MacOS, 64bit)",
15950 "zh-chs": "MeshCmd(MacOS,64位)",
15951 "xloc": [
15940 - "default.handlebars->27->656"
15952 + "default.handlebars->27->659"
15953 ]
15954 },
15955 {
@@ -15954,7 +15966,7 @@
15966 "ru": "MeshCmd (приложение Win32)",
15967 "zh-chs": "MeshCmd(Win32可執行文件)",
15968 "xloc": [
15957 - "default.handlebars->27->652"
15969 + "default.handlebars->27->655"
15970 ]
15971 },
15972 {
@@ -15971,7 +15983,7 @@
15983 "ru": "MeshCmd (приложение Win64)",
15984 "zh-chs": "MeshCmd(Win64可執行文件)",
15985 "xloc": [
15974 - "default.handlebars->27->653"
15986 + "default.handlebars->27->656"
15987 ]
15988 },
15989 {
@@ -15988,7 +16000,7 @@
16000 "ru": "MeshCmd это утилита с командной строкой, которая позволяет выполнить множество операций. Файл с командами может быть опционально скачан и отредактирован для указания информации о сервере и учетных данных.",
16001 "zh-chs": "MeshCmd是執行許多不同操作的命令行工具。可以選擇下載和編輯操作文件以提供服務器信息和憑據。",
16002 "xloc": [
15991 - "default.handlebars->27->642"
16003 + "default.handlebars->27->645"
16004 ]
16005 },
16006 {
@@ -16060,7 +16072,7 @@
16072 "zh-chs": "信息",
16073 "xloc": [
16074 "default.handlebars->27->289",
16063 - "default.handlebars->27->613"
16075 + "default.handlebars->27->616"
16076 ]
16077 },
16078 {
@@ -16077,7 +16089,7 @@
16089 "ru": "Диспетчер сообщения",
16090 "zh-chs": "郵件調度程序",
16091 "xloc": [
16080 - "default.handlebars->27->1625"
16092 + "default.handlebars->27->1640"
16093 ]
16094 },
16095 {
@@ -16191,7 +16203,7 @@
16203 "zh-chs": "摩爾達維亞人",
16204 "es": "Moldavo",
16205 "xloc": [
16194 - "default.handlebars->27->955"
16206 + "default.handlebars->27->958"
16207 ]
16208 },
16209 {
@@ -16208,7 +16220,7 @@
16220 "ru": "Еще",
16221 "zh-chs": "更多",
16222 "xloc": [
16211 - "default.handlebars->27->1653"
16223 + "default.handlebars->27->1668"
16224 ]
16225 },
16226 {
@@ -16225,7 +16237,7 @@
16237 "ru": "Материнская плата",
16238 "zh-chs": "母板",
16239 "xloc": [
16228 - "default.handlebars->27->798"
16240 + "default.handlebars->27->801"
16241 ]
16242 },
16243 {
@@ -16391,7 +16403,7 @@
16403 "ru": "Консоль моего сервера",
16404 "zh-chs": "我的服務器控制台",
16405 "xloc": [
16394 - "default.handlebars->27->804"
16406 + "default.handlebars->27->807"
16407 ]
16408 },
16409 {
@@ -16512,8 +16524,8 @@
16524 "ru": "Мой ключ",
16525 "zh-chs": "我的鑰匙",
16526 "xloc": [
16515 - "default.handlebars->27->830",
16516 - "default.handlebars->27->833"
16527 + "default.handlebars->27->833",
16528 + "default.handlebars->27->836"
16529 ]
16530 },
16531 {
@@ -16535,20 +16547,20 @@
16547 "default-mobile.handlebars->9->290",
16548 "default-mobile.handlebars->9->59",
16549 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1",
16538 - "default.handlebars->27->1072",
16539 - "default.handlebars->27->1099",
16540 - "default.handlebars->27->1182",
16541 - "default.handlebars->27->1347",
16542 - "default.handlebars->27->1432",
16543 - "default.handlebars->27->1436",
16544 - "default.handlebars->27->1441",
16545 - "default.handlebars->27->1443",
16546 - "default.handlebars->27->1463",
16550 + "default.handlebars->27->1075",
16551 + "default.handlebars->27->1102",
16552 + "default.handlebars->27->1185",
16553 + "default.handlebars->27->1353",
16554 + "default.handlebars->27->1438",
16555 + "default.handlebars->27->1442",
16556 + "default.handlebars->27->1447",
16557 + "default.handlebars->27->1449",
16558 + "default.handlebars->27->1476",
16559 "default.handlebars->27->450",
16548 - "default.handlebars->27->679",
16549 - "default.handlebars->27->752",
16560 + "default.handlebars->27->682",
16561 + "default.handlebars->27->755",
16562 "default.handlebars->27->77",
16551 - "default.handlebars->27->794",
16563 + "default.handlebars->27->797",
16564 "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3",
16565 "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3",
16566 "default.handlebars->container->column_l->p42->p42tbl->1->0->2"
@@ -16585,7 +16597,7 @@
16597 "ru": "Имя1, Имя2, Имя3",
16598 "zh-chs": "名稱1,名稱2,名稱3",
16599 "xloc": [
16588 - "default.handlebars->27->1417"
16600 + "default.handlebars->27->1423"
16601 ]
16602 },
16603 {
@@ -16602,7 +16614,7 @@
16614 "zh-chs": "納瓦霍人",
16615 "es": "Navajo",
16616 "xloc": [
16605 - "default.handlebars->27->956"
16617 + "default.handlebars->27->959"
16618 ]
16619 },
16620 {
@@ -16619,7 +16631,7 @@
16631 "zh-chs": "恩東加",
16632 "es": "Ndonga",
16633 "xloc": [
16622 - "default.handlebars->27->957"
16634 + "default.handlebars->27->960"
16635 ]
16636 },
16637 {
@@ -16636,7 +16648,7 @@
16648 "zh-chs": "尼泊爾文",
16649 "es": "Nepali",
16650 "xloc": [
16639 - "default.handlebars->27->958"
16651 + "default.handlebars->27->961"
16652 ]
16653 },
16654 {
@@ -16653,7 +16665,7 @@
16665 "ru": "Сетевые интерфейсы",
16666 "zh-chs": "網絡接口",
16667 "xloc": [
16656 - "default.handlebars->27->631"
16668 + "default.handlebars->27->634"
16669 ]
16670 },
16671 {
@@ -16670,7 +16682,7 @@
16682 "ru": "Network Router",
16683 "zh-chs": "網絡路由器",
16684 "xloc": [
16673 - "default.handlebars->27->651"
16685 + "default.handlebars->27->654"
16686 ]
16687 },
16688 {
@@ -16687,7 +16699,7 @@
16699 "zh-chs": "聯網",
16700 "es": "Redes",
16701 "xloc": [
16690 - "default.handlebars->27->773"
16702 + "default.handlebars->27->776"
16703 ]
16704 },
16705 {
@@ -16740,9 +16752,9 @@
16752 "zh-chs": "新設備組",
16753 "xloc": [
16754 "default-mobile.handlebars->9->53",
16743 - "default.handlebars->27->1065",
16744 - "default.handlebars->27->1077",
16745 - "default.handlebars->27->623"
16755 + "default.handlebars->27->1068",
16756 + "default.handlebars->27->1080",
16757 + "default.handlebars->27->626"
16758 ]
16759 },
16760 {
@@ -16761,8 +16773,8 @@
16773 "xloc": [
16774 "default-mobile.handlebars->9->248",
16775 "default-mobile.handlebars->9->82",
16764 - "default.handlebars->27->1320",
16765 - "default.handlebars->27->716",
16776 + "default.handlebars->27->1326",
16777 + "default.handlebars->27->719",
16778 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
16779 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
16780 ]
@@ -16817,8 +16829,8 @@
16829 "xloc": [
16830 "default-mobile.handlebars->9->48",
16831 "default-mobile.handlebars->9->49",
16820 - "default.handlebars->27->1060",
16821 - "default.handlebars->27->1061"
16832 + "default.handlebars->27->1063",
16833 + "default.handlebars->27->1064"
16834 ]
16835 },
16836 {
@@ -16833,8 +16845,8 @@
16845 "ru": "Нет AMT",
16846 "zh-chs": "没有AMT",
16847 "xloc": [
16836 - "default.handlebars->27->557",
16837 - "default.handlebars->27->576"
16848 + "default.handlebars->27->560",
16849 + "default.handlebars->27->579"
16850 ]
16851 },
16852 {
@@ -16866,7 +16878,7 @@
16878 "zh-chs": "没有增加的权利",
16879 "es": "Sin derechos añadidos",
16880 "xloc": [
16869 - "default.handlebars->27->568"
16881 + "default.handlebars->27->571"
16882 ]
16883 },
16884 {
@@ -16903,9 +16915,9 @@
16915 "zh-chs": "沒有桌面",
16916 "es": "Sin Escritorio",
16917 "xloc": [
16906 - "default.handlebars->27->1250",
16907 - "default.handlebars->27->559",
16908 - "default.handlebars->27->578"
16918 + "default.handlebars->27->1256",
16919 + "default.handlebars->27->562",
16920 + "default.handlebars->27->581"
16921 ]
16922 },
16923 {
@@ -16922,7 +16934,7 @@
16934 "zh-chs": "沒有桌面訪問",
16935 "es": "Sin acceso al escritorio",
16936 "xloc": [
16925 - "default.handlebars->27->1219"
16937 + "default.handlebars->27->1223"
16938 ]
16939 },
16940 {
@@ -16939,9 +16951,9 @@
16951 "ru": "События не найдены",
16952 "zh-chs": "找不到活動",
16953 "xloc": [
16942 - "default.handlebars->27->1337",
16943 - "default.handlebars->27->1572",
16944 - "default.handlebars->27->750"
16954 + "default.handlebars->27->1343",
16955 + "default.handlebars->27->1587",
16956 + "default.handlebars->27->753"
16957 ]
16958 },
16959 {
@@ -16959,7 +16971,7 @@
16971 "zh-chs": "沒有文件訪問",
16972 "xloc": [
16973 "default-mobile.handlebars->9->301",
16962 - "default.handlebars->27->1221"
16974 + "default.handlebars->27->1225"
16975 ]
16976 },
16977 {
@@ -16977,9 +16989,9 @@
16989 "zh-chs": "沒有文件",
16990 "xloc": [
16991 "default-mobile.handlebars->9->322",
16980 - "default.handlebars->27->1252",
16981 - "default.handlebars->27->556",
16982 - "default.handlebars->27->575"
16992 + "default.handlebars->27->1258",
16993 + "default.handlebars->27->559",
16994 + "default.handlebars->27->578"
16995 ]
16996 },
16997 {
@@ -16993,8 +17005,8 @@
17005 "zh-chs": "无输入",
17006 "es": "Sin entrada",
17007 "xloc": [
16996 - "default.handlebars->27->554",
16997 - "default.handlebars->27->573"
17008 + "default.handlebars->27->557",
17009 + "default.handlebars->27->576"
17010 ]
17011 },
17012 {
@@ -17013,8 +17025,8 @@
17025 "xloc": [
17026 "default-mobile.handlebars->9->302",
17027 "default-mobile.handlebars->9->323",
17016 - "default.handlebars->27->1222",
17017 - "default.handlebars->27->1253"
17028 + "default.handlebars->27->1226",
17029 + "default.handlebars->27->1259"
17030 ]
17031 },
17032 {
@@ -17082,7 +17094,7 @@
17094 "ru": "Нет членов",
17095 "zh-chs": "沒有會員",
17096 "xloc": [
17085 - "default.handlebars->27->1453"
17097 + "default.handlebars->27->1459"
17098 ]
17099 },
17100 {
@@ -17099,7 +17111,7 @@
17111 "ru": "Запретить создание групп устройств",
17112 "zh-chs": "沒有新的設備組",
17113 "xloc": [
17102 - "default.handlebars->27->1428"
17114 + "default.handlebars->27->1434"
17115 ]
17116 },
17117 {
@@ -17116,9 +17128,9 @@
17128 "ru": "Политик нет",
17129 "zh-chs": "沒有政策",
17130 "xloc": [
17119 - "default.handlebars->27->1126",
17120 - "default.handlebars->27->1154",
17121 - "default.handlebars->27->1157"
17131 + "default.handlebars->27->1129",
17132 + "default.handlebars->27->1157",
17133 + "default.handlebars->27->1160"
17134 ]
17135 },
17136 {
@@ -17138,9 +17150,9 @@
17150 "default-mobile.handlebars->9->285",
17151 "default-mobile.handlebars->9->328",
17152 "default-mobile.handlebars->9->68",
17141 - "default.handlebars->27->1086",
17142 - "default.handlebars->27->1258",
17143 - "default.handlebars->27->587"
17153 + "default.handlebars->27->1089",
17154 + "default.handlebars->27->1264",
17155 + "default.handlebars->27->590"
17156 ]
17157 },
17158 {
@@ -17159,7 +17171,7 @@
17171 "xloc": [
17172 "default-mobile.handlebars->9->218",
17173 "default.handlebars->27->229",
17162 - "default.handlebars->27->609"
17174 + "default.handlebars->27->612"
17175 ]
17176 },
17177 {
@@ -17177,9 +17189,9 @@
17189 "zh-chs": "沒有終端",
17190 "xloc": [
17191 "default-mobile.handlebars->9->321",
17180 - "default.handlebars->27->1251",
17181 - "default.handlebars->27->555",
17182 - "default.handlebars->27->574"
17192 + "default.handlebars->27->1257",
17193 + "default.handlebars->27->558",
17194 + "default.handlebars->27->577"
17195 ]
17196 },
17197 {
@@ -17197,7 +17209,7 @@
17209 "zh-chs": "沒有終端訪問",
17210 "xloc": [
17211 "default-mobile.handlebars->9->300",
17200 - "default.handlebars->27->1220"
17212 + "default.handlebars->27->1224"
17213 ]
17214 },
17215 {
@@ -17214,7 +17226,7 @@
17226 "ru": "Нет инструментов (MeshCmd/Router)",
17227 "zh-chs": "沒有工具(MeshCmd /路由器)",
17228 "xloc": [
17217 - "default.handlebars->27->1429"
17229 + "default.handlebars->27->1435"
17230 ]
17231 },
17232 {
@@ -17231,8 +17243,8 @@
17243 "ru": "Нет общих групп устройств",
17244 "zh-chs": "沒有共同的設備組",
17245 "xloc": [
17234 - "default.handlebars->27->1459",
17235 - "default.handlebars->27->1554"
17246 + "default.handlebars->27->1465",
17247 + "default.handlebars->27->1567"
17248 ]
17249 },
17250 {
@@ -17319,7 +17331,8 @@
17331 "zh-chs": "沒有共同的設備",
17332 "es": "Sin dispositivos en común",
17333 "xloc": [
17322 - "default.handlebars->27->1548"
17334 + "default.handlebars->27->1470",
17335 + "default.handlebars->27->1561"
17336 ]
17337 },
17338 {
@@ -17336,7 +17349,7 @@
17349 "ru": "В группе нет устройств.",
17350 "zh-chs": "該設備組中沒有設備。",
17351 "xloc": [
17339 - "default.handlebars->27->1297"
17352 + "default.handlebars->27->1303"
17353 ]
17354 },
17355 {
@@ -17405,7 +17418,7 @@
17418 "ru": "Группы не найдены.",
17419 "zh-chs": "找不到群組。",
17420 "xloc": [
17408 - "default.handlebars->27->1431"
17421 + "default.handlebars->27->1437"
17422 ]
17423 },
17424 {
@@ -17422,7 +17435,7 @@
17435 "ru": "Информации об этом устройстве нет",
17436 "zh-chs": "沒有此設備的信息。",
17437 "xloc": [
17425 - "default.handlebars->27->803"
17438 + "default.handlebars->27->806"
17439 ]
17440 },
17441 {
@@ -17473,7 +17486,7 @@
17486 "ru": "Других групп устройств такого же типа не существует.",
17487 "zh-chs": "沒有其他相同類型的設備組。",
17488 "xloc": [
17476 - "default.handlebars->27->626"
17489 + "default.handlebars->27->629"
17490 ]
17491 },
17492 {
@@ -17507,7 +17520,7 @@
17520 "ru": "Нет серверных прав",
17521 "zh-chs": "沒有服務器權限",
17522 "xloc": [
17510 - "default.handlebars->27->1477"
17523 + "default.handlebars->27->1490"
17524 ]
17525 },
17526 {
@@ -17524,7 +17537,7 @@
17537 "ru": "Нет членства в группах пользователей",
17538 "zh-chs": "沒有用戶組成員身份",
17539 "xloc": [
17527 - "default.handlebars->27->1560"
17540 + "default.handlebars->27->1573"
17541 ]
17542 },
17543 {
@@ -17541,7 +17554,7 @@
17554 "ru": "Пользователи не найдены.",
17555 "zh-chs": "未找到相應的用戶。",
17556 "xloc": [
17544 - "default.handlebars->27->1355"
17557 + "default.handlebars->27->1361"
17558 ]
17559 },
17560 {
@@ -17555,7 +17568,7 @@
17568 "zh-chs": "没有拥有特殊设备权限的用户",
17569 "es": "No hay usuarios con permisos especiales para dispositivos.",
17570 "xloc": [
17558 - "default.handlebars->27->552"
17571 + "default.handlebars->27->555"
17572 ]
17573 },
17574 {
@@ -17616,17 +17629,17 @@
17629 "default-mobile.handlebars->9->78",
17630 "default-mobile.handlebars->9->97",
17631 "default-mobile.handlebars->9->98",
17619 - "default.handlebars->27->1101",
17620 - "default.handlebars->27->1105",
17621 - "default.handlebars->27->1117",
17622 - "default.handlebars->27->1122",
17623 - "default.handlebars->27->1124",
17624 - "default.handlebars->27->1307",
17625 - "default.handlebars->27->1440",
17632 + "default.handlebars->27->1104",
17633 + "default.handlebars->27->1108",
17634 + "default.handlebars->27->1120",
17635 + "default.handlebars->27->1125",
17636 + "default.handlebars->27->1127",
17637 + "default.handlebars->27->1313",
17638 + "default.handlebars->27->1446",
17639 "default.handlebars->27->149",
17627 - "default.handlebars->27->1496",
17628 - "default.handlebars->27->1500",
17629 - "default.handlebars->27->1512",
17640 + "default.handlebars->27->1509",
17641 + "default.handlebars->27->1513",
17642 + "default.handlebars->27->1525",
17643 "default.handlebars->27->165",
17644 "default.handlebars->27->166",
17645 "default.handlebars->27->443",
@@ -17669,7 +17682,7 @@
17682 "zh-chs": "挪威",
17683 "es": "Noruego",
17684 "xloc": [
17672 - "default.handlebars->27->959"
17685 + "default.handlebars->27->962"
17686 ]
17687 },
17688 {
@@ -17686,7 +17699,7 @@
17699 "zh-chs": "挪威文(Bokmal)",
17700 "es": "Noruego (Bokmal)",
17701 "xloc": [
17689 - "default.handlebars->27->960"
17702 + "default.handlebars->27->963"
17703 ]
17704 },
17705 {
@@ -17703,7 +17716,7 @@
17716 "zh-chs": "挪威文(尼諾斯克)",
17717 "es": "Noruego (Nynorsk)",
17718 "xloc": [
17706 - "default.handlebars->27->961"
17719 + "default.handlebars->27->964"
17720 ]
17721 },
17722 {
@@ -17722,7 +17735,7 @@
17735 "xloc": [
17736 "default-mobile.handlebars->9->179",
17737 "default.handlebars->27->461",
17725 - "default.handlebars->27->777"
17738 + "default.handlebars->27->780"
17739 ]
17740 },
17741 {
@@ -17741,7 +17754,7 @@
17754 "xloc": [
17755 "default-mobile.handlebars->9->178",
17756 "default.handlebars->27->460",
17744 - "default.handlebars->27->776"
17757 + "default.handlebars->27->779"
17758 ]
17759 },
17760 {
@@ -17758,8 +17771,8 @@
17771 "ru": "Не подключен",
17772 "zh-chs": "未連接",
17773 "xloc": [
17761 - "default.handlebars->27->1286",
17762 - "default.handlebars->27->1292"
17774 + "default.handlebars->27->1292",
17775 + "default.handlebars->27->1298"
17776 ]
17777 },
17778 {
@@ -17776,7 +17789,7 @@
17789 "zh-chs": "未知",
17790 "es": "No se Conoce",
17791 "xloc": [
17779 - "default.handlebars->27->787"
17792 + "default.handlebars->27->790"
17793 ]
17794 },
17795 {
@@ -17793,7 +17806,7 @@
17806 "ru": "Не задано",
17807 "zh-chs": "沒有設置",
17808 "xloc": [
17796 - "default.handlebars->27->1482"
17809 + "default.handlebars->27->1495"
17810 ]
17811 },
17812 {
@@ -17810,7 +17823,7 @@
17823 "zh-chs": "未經審核的",
17824 "es": "Sin Verificar",
17825 "xloc": [
17813 - "default.handlebars->27->1531"
17826 + "default.handlebars->27->1544"
17827 ]
17828 },

This file is too large to show in full.

views/default.handlebars
+105 -9
@@ -5085,23 +5085,44 @@
5085
5086 // Show user device permissions
5087 x = '';
5088 - if (meshrights & 7) { x += '<a href=# onclick="return p20showAddMeshUserDialog(5)" style=cursor:pointer;margin-right:10px><img src=images/icon-addnew.png border=0 height=12 width=12> ' + "Add User" + '</a>'; }
5088 + if (meshrights & 7) {
5089 + x += '<a href=# onclick="return p20showAddMeshUserDialog(5)" style=cursor:pointer;margin-right:10px><img src=images/icon-addnew.png border=0 height=12 width=12> ' + "Add User" + '</a>';
5090 + if (usergroups != null) {
5091 + var userGroupCount = 0, newUserGroup = false;
5092 + for (var i in usergroups) { userGroupCount++; if ((currentNode.links == null) || (currentNode.links[i] == null)) { newUserGroup = true; } }
5093 + if ((userGroupCount > 0) && (newUserGroup)) { x += '<a href=# onclick="return p20showAddMeshUserDialog(6)" style=cursor:pointer;margin-right:10px><img src=images/icon-addnew.png border=0 height=12 width=12> ' + "Add User Group" + '</a>'; }
5094 + }
5095 + }
5096 +
5097 x += '<table style="color:black;background-color:#EEE;border-color:#AAA;border-width:1px;border-style:solid;border-collapse:collapse" border=0 cellpadding=2 cellspacing=0 width=100%><tbody><tr style=background-color:#AAAAAA;font-weight:bold><th scope=col style=text-align:left;width:430px>' + "User Authorizations" + '</th><th scope=col style=text-align:left></th></tr>';
5098 var count = 1;
5099 if (currentNode.links != null) {
5100 // Sort the list of users to display
5101 var useridlist = [];
5094 - for (var i in currentNode.links) { if (i.startsWith('user/')) { useridlist.push(i); } }
5102 + for (var i in currentNode.links) { if (i.startsWith('user/') || i.startsWith('ugrp/')) { useridlist.push(i); } }
5103 useridlist.sort();
5104 for (var i in useridlist) {
5097 - var trash = '', rights = '', userid = useridlist[i], srights = currentNode.links[userid].rights, username = EscapeHtml(userid.split('/')[2]), rights = makeUserDeviceRightsString(srights);
5105 + var trash = '', rights = '', userid = useridlist[i], srights = currentNode.links[userid].rights, username = EscapeHtml(userid.split('/')[2]), rights = makeUserDeviceRightsString(srights), ugroup = false;
5106 if ((users != null) && (users[userid] != null)) { username = EscapeHtml(users[userid].name); }
5107 + if ((usergroups != null) && (usergroups[userid] != null)) { username = EscapeHtml(usergroups[userid].name); ugroup = true; }
5108 if ((meshrights & 2) != 0) {
5100 - trash = '<a href=# onclick=\'return p30removeUserFromNode(event,"' + encodeURIComponent(userid) + '")\' title=\"' + "Remove user rights to this device group" + '\" style=cursor:pointer><img src=images/trash.png border=0 height=10 width=10></a>';
5101 - rights = '<div style=cursor:pointer onclick=p20showAddMeshUserDialog(5,\"' + encodeURIComponent(userid) + '\")>' + rights + ' <img class=hoverButton style=cursor:pointer src=images/link5.png></div>';
5109 + if (ugroup) {
5110 + trash = '<a href=# onclick=\'return p30removeUserFromNode(event,"' + encodeURIComponent(userid) + '")\' title=\"' + "Remove user group rights to this device group" + '\" style=cursor:pointer><img src=images/trash.png border=0 height=10 width=10></a>';
5111 + rights = '<div style=cursor:pointer onclick=p20showAddMeshUserDialog(6,\"' + encodeURIComponent(userid) + '\")>' + rights + ' <img class=hoverButton style=cursor:pointer src=images/link5.png></div>';
5112 + } else {
5113 + trash = '<a href=# onclick=\'return p30removeUserFromNode(event,"' + encodeURIComponent(userid) + '")\' title=\"' + "Remove user rights to this device group" + '\" style=cursor:pointer><img src=images/trash.png border=0 height=10 width=10></a>';
5114 + rights = '<div style=cursor:pointer onclick=p20showAddMeshUserDialog(5,\"' + encodeURIComponent(userid) + '\")>' + rights + ' <img class=hoverButton style=cursor:pointer src=images/link5.png></div>';
5115 + }
5116 + }
5117 + if (users != null) {
5118 + if (ugroup) {
5119 + username = '<a href=# onclick=\'gotoUserGroup("' + encodeURIComponent(userid) + '");haltEvent(event);\'>' + username + '</a>';
5120 + } else {
5121 + username = '<a href=# onclick=\'gotoUser("' + encodeURIComponent(userid) + '");haltEvent(event);\'>' + username + '</a>';
5122 + }
5123 }
5103 - if (users != null) { username = '<a href=# onclick=\'gotoUser("' + encodeURIComponent(userid) + '");haltEvent(event);\'>' + username + '</a>'; }
5104 - x += '<tr ' + (((++count % 2) == 0) ? 'style=background-color:#DDD' : '') + '><td style=width:30%><div title=\"' + "User" + '\" class=m2></div><div>&nbsp;' + username + '<div></div></div></td><td style=width:70%><div style=float:right>' + trash + '</div><div>' + rights + '</div></td></tr>';
5124 +
5125 + x += '<tr ' + (((++count % 2) == 0) ? 'style=background-color:#DDD' : '') + '><td style=width:30%><div title=\"' + (ugroup?"User Group":"User") + '\" class=m' + (ugroup?4:2) + '></div><div>&nbsp;' + username + '<div></div></div></td><td style=width:70%><div style=float:right>' + trash + '</div><div>' + rights + '</div></td></tr>';
5126 }
5127 }
5128 if (count == 1) { x += '<tr><td><div style=padding:6px>&nbsp;<i>' + "No users with special device permissions" + '</i><div></div></div></td><td></td></tr>'; }
@@ -8549,6 +8570,15 @@
8570 var y = '';
8571 for (var i in usergroups) { if ((currentMesh.links == null) || (currentMesh.links[i] == null)) { y += '<option value=' + encodeURIComponent(i) + '>' + EscapeHtml(usergroups[i].name) + '</option>'; } }
8572 x += addHtmlValue("User Group", '<div style=width:230px;margin:0;padding:0><select onchange=p20validateAddMeshUserDialog() id=dp2groupid style=width:100%>' + y + '</select></div>');
8573 + } else if (userid === 6) {
8574 + if (usergroups == null) return;
8575 + var y = '';
8576 + if (selected == null) {
8577 + for (var i in usergroups) { if ((currentNode.links == null) || (currentNode.links[i] == null)) { y += '<option value=' + encodeURIComponent(i) + '>' + EscapeHtml(usergroups[i].name) + '</option>'; } }
8578 + } else {
8579 + y += '<option value=' + selected + '>' + EscapeHtml(usergroups[decodeURIComponent(selected)].name) + '</option>';
8580 + }
8581 + x += addHtmlValue("User Group", '<div style=width:230px;margin:0;padding:0><select onchange=p20validateAddMeshUserDialog() id=dp2groupid style=width:100%' + (selected?' disabled':'') + '>' + y + '</select></div>');
8582 } else if (userid === 3) {
8583 var y = '';
8584 for (var i in meshes) { if ((currentUserGroup.links == null) || (currentUserGroup.links[i] == null)) { y += '<option value=' + encodeURIComponent(i) + '>' + EscapeHtml(meshes[i].name) + '</option>'; } }
@@ -8578,7 +8608,7 @@
8608 }
8609 }
8610 x += '<div style="height:120px;overflow-y:scroll;border:1px solid gray">';
8581 - if ((userid != 4) && (userid != 5)) {
8611 + if ((userid != 4) && (userid != 5) && (userid != 6)) {
8612 x += '<label><input type=checkbox onchange=p20validateAddMeshUserDialog() id=p20fulladmin>' + "Full Administrator" + '</label><br>';
8613 x += '<label><input type=checkbox onchange=p20validateAddMeshUserDialog() id=p20editmesh>' + "Edit Device Group" + '</label><br>';
8614 x += '<label><input type=checkbox onchange=p20validateAddMeshUserDialog() id=p20manageusers>' + "Manage Device Group Users" + '</label><br>';
@@ -8637,6 +8667,28 @@
8667 if (urights & 32768) { Q('p20uninstall').checked = true; }
8668 }
8669 Q('dp20username').focus();
8670 + } else if (userid === 6) {
8671 + setDialogMode(2, selected?"Edit User Device Permissions":"Add User Device Permissions", 3, p20showAddMeshUserDialogEx, x, userid);
8672 + if (selected != null) {
8673 + selected = decodeURIComponent(selected);
8674 + var urights = currentNode.links[selected].rights;
8675 + if (urights & 8) {
8676 + Q('p20remotecontrol').checked = true;
8677 + if (urights & 65536) { Q('p20nodesktop').checked = true; }
8678 + if (urights & 256) { Q('p20remoteview').checked = true; }
8679 + if (urights & 512) { Q('p20noterminal').checked = true; }
8680 + if (urights & 1024) { Q('p20nofiles').checked = true; }
8681 + if (urights & 2048) { Q('p20noamt').checked = true; }
8682 + if (urights & 4096) { Q('p20remotelimitedinput').checked = true; }
8683 + }
8684 + if (urights & 16) { Q('p20meshagentconsole').checked = true; }
8685 + if (urights & 32) { Q('p20meshserverfiles').checked = true; }
8686 + if (urights & 64) { Q('p20wakedevices').checked = true; }
8687 + if (urights & 128) { Q('p20editnotes').checked = true; }
8688 + if (urights & 8192) { Q('p20limitevents').checked = true; }
8689 + if (urights & 16384) { Q('p20chatnotify').checked = true; }
8690 + if (urights & 32768) { Q('p20uninstall').checked = true; }
8691 + }
8692 } else {
8693 if (userid.startsWith('ugrp/')) {
8694 setDialogMode(2, "Edit Device Group Permissions", 7, p20showAddMeshUserDialogEx, x, userid);
@@ -8816,6 +8868,9 @@
8868 var users = Q('dp20username').value.split(','), users2 = [];
8869 for (var i in users) { users2.push(users[i].trim()); }
8870 meshserver.send({ action: 'adddeviceuser', nodeid: currentNode._id, nodename: currentNode.name, usernames: users2, rights: meshadmin });
8871 + } else if (t === 6) {
8872 + var ugrpid = decodeURIComponent(Q('dp2groupid').value);
8873 + if (currentNode != null) { meshserver.send({ action: 'adddeviceuser', nodeid: currentNode._id, nodename: currentNode.name, userids: [ ugrpid ], rights: meshadmin }); }
8874 } else {
8875 if (t == null) {
8876 var users = Q('dp20username').value.split(','), users2 = [];
@@ -10124,6 +10179,31 @@
10179 if (count == 1) { x += '<tr><td><div style=padding:6px>&nbsp;<i>' + "No device groups in common" + '</i><div></div></div></td><td></td></tr>'; }
10180 x += '</tbody></table>';
10181
10182 + count = 1;
10183 + //var deviceGroupCount = 0, newDeviceGroup = false;
10184 + //for (var i in meshes) { deviceGroupCount++; if ((currentUserGroup.links == null) || (currentUserGroup.links[i] == null)) { newDeviceGroup = true; } }
10185 + //if ((deviceGroupCount > 0) && (newDeviceGroup)) { x += '<a href=# onclick="return p20showAddMeshUserDialog(3)" style=cursor:pointer;margin-right:10px><img src=images/icon-addnew.png border=0 height=12 width=12> ' + "Add Device Group" + '</a>'; }
10186 + x += '<br /><table style="color:black;background-color:#EEE;border-color:#AAA;border-width:1px;border-style:solid;border-collapse:collapse" border=0 cellpadding=2 cellspacing=0 width=100%><tbody><tr style=background-color:#AAAAAA;font-weight:bold><th scope=col style=text-align:left;width:430px>' + "Common Devices" + '</th><th scope=col style=text-align:left></th></tr>';
10187 + if (currentUserGroup.links) {
10188 + for (var i in currentUserGroup.links) {
10189 + if (i.startsWith('node/')) {
10190 + var r = currentUserGroup.links[i].rights, node = getNodeFromId(i), trash = '', rights = makeUserDeviceRightsString(r), cr = GetNodeRights(node);
10191 + if (node == null) { continue; }
10192 + var nodename = '<i>' + "Unknown Device" + '</i>';
10193 + if (node) { nodename = '<a href=# onclick=\'gotoDevice("' + node._id + '");haltEvent(event);\'>' + node.name + '</a>'; } else {}
10194 + if ((cr & 2) != 0) {
10195 + trash = '<a href=# onclick=\'return p51removeDeviceFromUserGroup(event,"' + encodeURIComponent(node._id) + '")\' title=\"' + "Remove user group rights to this device" + '\" style=cursor:pointer><img src=images/trash.png border=0 height=10 width=10></a>';
10196 +
10197 + // TODO
10198 + //rights = '<div style=cursor:pointer onclick=p20showAddMeshUserDialog(5,\"' + encodeURIComponent(userid) + '\")>' + rights + ' <img class=hoverButton style=cursor:pointer src=images/link5.png></div>';
10199 + }
10200 + x += '<tr ' + (((++count % 2) == 0) ? 'style=background-color:#DDD' : '') + '><td style=width:30%><div title=\"' + "Device Group" + '\" class=m99></div><div>&nbsp;' + nodename + '<div></div></div></td><td style=width:70%><div style=float:right>' + trash + '</div><div>' + rights + '</div></td></tr>';
10201 + }
10202 + }
10203 + }
10204 + if (count == 1) { x += '<tr><td><div style=padding:6px>&nbsp;<i>' + "No devices in common" + '</i><div></div></div></td><td></td></tr>'; }
10205 + x += '</tbody></table>';
10206 +
10207 if ((userinfo.siteadmin & 256) != 0) {
10208 x += '<div style=font-size:x-small;text-align:right><span><a href=# onclick=p51showDeleteUserGroupDialog() style=cursor:pointer>' + "Delete User Group" + '</a></span></div>';
10209 }
@@ -10140,6 +10220,17 @@
10220 }
10221 }
10222
10223 + function p51removeDeviceFromUserGroup(e, nodeid) {
10224 + if (xxdialogMode) return;
10225 + var node = getNodeFromId(decodeURIComponent(nodeid));
10226 + if (node == null) return;
10227 + setDialogMode(2, "Remove Device", 3, p51removeDeviceFromUserGroupEx, format("Confirm removal of device {0}?", node.name), node._id);
10228 + }
10229 +
10230 + function p51removeDeviceFromUserGroupEx(b, nodeid) {
10231 + meshserver.send({ action: 'adddeviceuser', nodeid: nodeid, userids: [ currentUserGroup._id ], rights: 0 });
10232 + }
10233 +
10234 function p51removeMeshFromUserGroup(e, meshid) {
10235 if (xxdialogMode) return;
10236 var mesh = meshes[decodeURIComponent(meshid)];
@@ -10564,7 +10655,12 @@
10655 function p30removeUserFromNode(event, userid) {
10656 if (xxdialogMode) return;
10657 var user = users[decodeURIComponent(userid)];
10567 - setDialogMode(2, "Remove User", 3, function(b, user) { meshserver.send({ action: 'adddeviceuser', nodeid: currentNode._id, nodename: currentNode.name, userids: [ user._id ], rights: 0 }); }, format("Confirm removal of user {0}?", user.name), user);
10658 + if (user != null) {
10659 + setDialogMode(2, "Remove User", 3, function(b, user) { meshserver.send({ action: 'adddeviceuser', nodeid: currentNode._id, nodename: currentNode.name, userids: [ user._id ], rights: 0 }); }, format("Confirm removal of user {0}?", user.name), user);
10660 + } else if (usergroups != null) {
10661 + user = usergroups[decodeURIComponent(userid)];
10662 + if (user != null) { setDialogMode(2, "Remove User", 3, function(b, user) { meshserver.send({ action: 'adddeviceuser', nodeid: currentNode._id, nodename: currentNode.name, userids: [ user._id ], rights: 0 }); }, format("Confirm removal of user group {0}?", user.name), user); }
10663 + }
10664 }
10665
10666 function p30RemoveUserGroup(button, ugrpid) {
webserver.js
+1 -1
@@ -274,7 +274,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
274 // Check device links, if a link points to an unknown user, remove it.
275 if (device.links != null) {
276 for (var j in device.links) {
277 - if (obj.users[j] == null) {
277 + if ((obj.users[j] == null) && (obj.userGroups[j] == null)) {
278 delete device.links[j];
279 if (Object.keys(device.links).length == 0) { delete device.links; }
280 }