More work on user groups for individual device permissions.
Ylian Saint-Hilaire committed
Apr 13, 2020 at 11:24 UTC
cc341e67aaff560b2962eb03c263546fbe291802
4 files changed
+1009
-997
meshcentral.js
+5
-3
@@ -1579,7 +1579,7 @@ function CreateMeshCentralServer(config, args) {
1579
1580
// Event any changes on this server only
1581
if ((newConnectivity != oldPowerState) || (newPowerState != oldPowerState)) {
1582
- obj.DispatchEvent(obj.webserver.CreateMeshDispatchTargets(meshid, [nodeid]), obj, { action: 'nodeconnect', meshid: meshid, nodeid: nodeid, conn: newConnectivity, pwr: newPowerState, nolog: 1, nopeers: 1 });
1582
+ obj.DispatchEvent(obj.webserver.CreateNodeDispatchTargets(meshid, nodeid), obj, { action: 'nodeconnect', meshid: meshid, nodeid: nodeid, conn: newConnectivity, pwr: newPowerState, nolog: 1, nopeers: 1 });
1583
}
1584
}
1585
};
@@ -1627,7 +1627,9 @@ function CreateMeshCentralServer(config, args) {
1627
}
1628
1629
// Event the node connection change
1630
- if (eventConnectChange == 1) { obj.DispatchEvent(obj.webserver.CreateMeshDispatchTargets(meshid, [nodeid]), obj, { action: 'nodeconnect', meshid: meshid, nodeid: nodeid, conn: state.connectivity, pwr: state.powerState, ct: connectTime, nolog: 1, nopeers: 1 }); }
1630
+ if (eventConnectChange == 1) {
1631
+ obj.DispatchEvent(obj.webserver.CreateNodeDispatchTargets(meshid, nodeid), obj, { action: 'nodeconnect', meshid: meshid, nodeid: nodeid, conn: state.connectivity, pwr: state.powerState, ct: connectTime, nolog: 1, nopeers: 1 });
1632
+ }
1633
} else {
1634
// Multi server mode
1635
@@ -1700,7 +1702,7 @@ function CreateMeshCentralServer(config, args) {
1702
}
1703
1704
// Event the node connection change
1703
- if (eventConnectChange == 1) { obj.DispatchEvent(obj.webserver.CreateMeshDispatchTargets(meshid, [nodeid]), obj, { action: 'nodeconnect', meshid: meshid, nodeid: nodeid, conn: state.connectivity, pwr: state.powerState, nolog: 1, nopeers: 1 }); }
1705
+ if (eventConnectChange == 1) { obj.DispatchEvent(obj.webserver.CreateNodeDispatchTargets(meshid, nodeid), obj, { action: 'nodeconnect', meshid: meshid, nodeid: nodeid, conn: state.connectivity, pwr: state.powerState, nolog: 1, nopeers: 1 }); }
1706
} else {
1707
// Multi server mode
1708
meshuser.js
+14
-14
@@ -1323,7 +1323,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
1323
change = 'Removed user ' + deluser.name + ' from group ' + mesh.name;
1324
var event = { etype: 'mesh', userid: user._id, username: user.name, meshid: mesh._id, name: mesh.name, mtype: mesh.mtype, desc: mesh.desc, action: 'meshchange', links: mesh.links, msg: change, domain: domain.id, invite: mesh.invite };
1325
if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the mesh. Another event will come.
1326
- parent.parent.DispatchEvent(['*', mesh._id, deluser._id, user._id], obj, event);
1326
+ parent.parent.DispatchEvent(parent.obj.CreateMeshDispatchTargets(mesh, [deluser._id, user._id]), obj, event);
1327
}
1328
} else if (i.startsWith('node/')) {
1329
// Get the node and the rights for this node
@@ -1338,7 +1338,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
1338
// Event the node change
1339
var event = { etype: 'node', userid: user._id, username: user.name, action: 'changenode', nodeid: node._id, domain: domain.id, msg: (command.rights == 0) ? ('Removed user device rights for ' + node.name) : ('Changed user device rights for ' + node.name), node: parent.CloneSafeNode(node) }
1340
if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the mesh. Another event will come.
1341
- parent.parent.DispatchEvent(['*', node.meshid, node._id], obj, event);
1341
+ parent.parent.DispatchEvent(parent.CreateNodeDispatchTargets(node.meshid, node._id), obj, event);
1342
});
1343
}
1344
}
@@ -1742,7 +1742,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
1742
var event = { etype: 'mesh', userid: user._id, username: user.name, meshid: xmesh._id, name: xmesh.name, mtype: xmesh.mtype, desc: xmesh.desc, action: 'meshchange', links: xmesh.links, msg: 'Added group ' + ugrp.name + ' to mesh ' + xmesh.name, domain: domain.id, invite: mesh.invite };
1743
if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the mesh. Another event will come.
1744
//parent.parent.DispatchEvent(['*', xmesh._id, user._id], obj, event);
1745
- pendingDispatchEvents.push([['*', xmesh._id, user._id], obj, event]);
1745
+ pendingDispatchEvents.push([parent.CreateMeshDispatchTargets(xmesh, [user._id]), obj, event]);
1746
}
1747
}
1748
}
@@ -1802,7 +1802,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
1802
// Notify mesh change
1803
var event = { etype: 'mesh', userid: user._id, username: user.name, meshid: xmesh._id, name: xmesh.name, mtype: xmesh.mtype, desc: xmesh.desc, action: 'meshchange', links: xmesh.links, msg: 'Removed group ' + group.name + ' from mesh ' + xmesh.name, domain: domain.id, invite: mesh.invite };
1804
if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the mesh. Another event will come.
1805
- parent.parent.DispatchEvent(['*', xmesh._id, user._id], obj, event);
1805
+ parent.parent.DispatchEvent(parent.CreateMeshDispatchTargets(xmesh, [user._id]), obj, event);
1806
}
1807
}
1808
}
@@ -2292,7 +2292,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2292
2293
// Fire the removal event first, because after this, the event will not route
2294
var event = { etype: 'mesh', userid: user._id, username: user.name, meshid: command.meshid, name: command.meshname, action: 'deletemesh', msg: 'Device group deleted: ' + command.meshname, domain: domain.id };
2295
- parent.parent.DispatchEvent(['*', command.meshid], obj, event); // Even if DB change stream is active, this event need to be acted on.
2295
+ parent.parent.DispatchEvent(parent.CreateMeshDispatchTargets(command.meshid), obj, event); // Even if DB change stream is active, this event need to be acted on.
2296
2297
// Remove all user links to this mesh
2298
for (var j in mesh.links) {
@@ -2391,7 +2391,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2391
db.Set(mesh);
2392
var event = { etype: 'mesh', userid: user._id, username: user.name, meshid: mesh._id, name: mesh.name, mtype: mesh.mtype, desc: mesh.desc, flags: mesh.flags, consent: mesh.consent, action: 'meshchange', links: mesh.links, msg: change, domain: domain.id, invite: mesh.invite };
2393
if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the mesh. Another event will come.
2394
- parent.parent.DispatchEvent(['*', mesh._id, user._id], obj, event);
2394
+ parent.parent.DispatchEvent(parent.CreateMeshDispatchTargets(mesh, [user._id]), obj, event);
2395
}
2396
}
2397
break;
@@ -2481,7 +2481,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2481
// Notify mesh change
2482
var event = { etype: 'mesh', username: newuser.name, userid: user._id, meshid: mesh._id, name: mesh.name, mtype: mesh.mtype, desc: mesh.desc, action: 'meshchange', links: mesh.links, msg: 'Added user ' + newuser.name + ' to mesh ' + mesh.name, domain: domain.id, invite: mesh.invite };
2483
if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the mesh. Another event will come.
2484
- parent.parent.DispatchEvent(['*', mesh._id, user._id, newuserid], obj, event);
2484
+ parent.parent.DispatchEvent(parent.CreateMeshDispatchTargets(mesh, [user._id, newuserid]), obj, event);
2485
msgs.push("Added user " + newuserid.split('/')[2]);
2486
successCount++;
2487
} else {
@@ -2706,7 +2706,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2706
} else {
2707
event = { etype: 'mesh', username: user.name, userid: (deluserid.split('/')[2]), meshid: mesh._id, name: mesh.name, mtype: mesh.mtype, desc: mesh.desc, action: 'meshchange', links: mesh.links, msg: 'Removed user ' + (deluserid.split('/')[2]) + ' from group ' + mesh.name, domain: domain.id, invite: mesh.invite };
2708
}
2709
- parent.parent.DispatchEvent(['*', mesh._id, user._id, command.userid], obj, event);
2709
+ parent.parent.DispatchEvent(parent.CreateMeshDispatchTargets(mesh [user._id, command.userid]), obj, event);
2710
if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'removemeshuser', responseid: command.responseid, result: 'ok' })); } catch (ex) { } }
2711
} else {
2712
if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'removemeshuser', responseid: command.responseid, result: 'User not in group' })); } catch (ex) { } }
@@ -2747,7 +2747,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2747
delete amtpolicy2.password;
2748
var event = { etype: 'mesh', userid: user._id, username: user.name, meshid: mesh._id, amt: amtpolicy2, action: 'meshchange', links: mesh.links, msg: change, domain: domain.id, invite: mesh.invite };
2749
if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the mesh. Another event will come.
2750
- parent.parent.DispatchEvent(['*', mesh._id, user._id], obj, event);
2750
+ parent.parent.DispatchEvent(parent.CreateMeshDispatchTargets(mesh, [user._id]), obj, event);
2751
2752
// Send new policy to all computers on this mesh
2753
//routeCommandToMesh(command.meshid, { action: 'amtPolicy', amtPolicy: amtpolicy });
@@ -2791,7 +2791,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2791
db.Set(device);
2792
2793
// Event the new node
2794
- parent.parent.DispatchEvent(['*', command.meshid, nodeid], obj, { etype: 'node', userid: user._id, username: user.name, action: 'addnode', node: parent.CloneSafeNode(device), msg: 'Added device ' + command.devicename + ' to mesh ' + mesh.name, domain: domain.id });
2794
+ parent.parent.DispatchEvent(parent.CreateMeshDispatchTargets(command.meshid, [nodeid]), obj, { etype: 'node', userid: user._id, username: user.name, action: 'addnode', node: parent.CloneSafeNode(device), msg: 'Added device ' + command.devicename + ' to mesh ' + mesh.name, domain: domain.id });
2795
});
2796
}
2797
break;
@@ -2860,7 +2860,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2860
var newMesh = parent.meshes[command.meshid];
2861
var event = { etype: 'node', userid: user._id, username: user.name, action: 'nodemeshchange', nodeid: node._id, node: node, oldMeshId: oldMeshId, newMeshId: command.meshid, msg: 'Moved device ' + node.name + ' to group ' + newMesh.name, domain: domain.id };
2862
if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the mesh. Another event will come.
2863
- parent.parent.DispatchEvent(['*', oldMeshId, command.meshid, node._id], obj, event);
2863
+ parent.parent.DispatchEvent(parent.CreateMeshDispatchTargets(command.meshid, [oldMeshId, node._id]), obj, event);
2864
});
2865
}
2866
break;
@@ -2913,7 +2913,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2913
var event = { etype: 'node', userid: user._id, username: user.name, action: 'removenode', nodeid: node._id, msg: 'Removed device ' + node.name + ' from group ' + parent.meshes[node.meshid].name, domain: domain.id };
2914
// TODO: We can't use the changeStream for node delete because we will not know the meshid the device was in.
2915
//if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to remove the node. Another event will come.
2916
- parent.parent.DispatchEvent(['*', node.meshid, node._id], obj, event);
2916
+ parent.parent.DispatchEvent(parent.CreateNodeDispatchTargets(node.meshid, node._id), obj, event);
2917
2918
// Disconnect all connections if needed
2919
var state = parent.parent.GetConnectivityState(nodeid);
@@ -3117,7 +3117,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
3117
event.node = parent.CloneSafeNode(node);
3118
if (command.rdpport == 3389) { event.node.rdpport = 3389; }
3119
if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the node. Another event will come.
3120
- parent.parent.DispatchEvent(['*', node.meshid, user._id, node._id], obj, event);
3120
+ parent.parent.DispatchEvent(parent.CreateNodeDispatchTargets(node.meshid, node._id, [user._id]), obj, event);
3121
}
3122
});
3123
break;
@@ -3249,7 +3249,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
3249
if (rights == 0) return;
3250
3251
// Add an event for this device
3252
- var targets = ['*', 'server-users', user._id, node.meshid, node._id];
3252
+ var targets = parent.CreateNodeDispatchTargets(node.meshid, node._id, ['server-users', user._id]);
3253
var event = { etype: 'node', userid: user._id, username: user.name, nodeid: node._id, action: 'manual', msg: decodeURIComponent(command.msg), domain: domain.id };
3254
parent.parent.DispatchEvent(targets, obj, event);
3255
});
translate/translate.json
+977
-976
@@ -14,8 +14,8 @@
14
"ru": " + CIRA",
15
"zh-chs": " + CIRA",
16
"xloc": [
17
- "default.handlebars->27->1131",
18
- "default.handlebars->27->1133"
17
+ "default.handlebars->27->1129",
18
+ "default.handlebars->27->1131"
19
]
20
},
21
{
@@ -174,7 +174,7 @@
174
"ru": " Может быть использована подсказка пароля, но не рекоммендуется.",
175
"zh-chs": " 可以使用密碼提示,但不建議使用。",
176
"xloc": [
177
- "default.handlebars->27->1061"
177
+ "default.handlebars->27->1059"
178
]
179
},
180
{
@@ -191,8 +191,8 @@
191
"ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.",
192
"zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
193
"xloc": [
194
- "default.handlebars->27->1206",
195
- "default.handlebars->27->1485"
194
+ "default.handlebars->27->1204",
195
+ "default.handlebars->27->1486"
196
]
197
},
198
{
@@ -375,7 +375,7 @@
375
"ru": "* Оставьте пустым для установления случайного пароля каждому устройству.",
376
"zh-chs": "*保留空白以為每個設備分配一個隨機密碼。",
377
"xloc": [
378
- "default.handlebars->27->1178"
378
+ "default.handlebars->27->1176"
379
]
380
},
381
{
@@ -443,7 +443,7 @@
443
"ru": ", MQTT онлайн",
444
"zh-chs": ",MQTT在線",
445
"xloc": [
446
- "default.handlebars->27->810"
446
+ "default.handlebars->27->808"
447
]
448
},
449
{
@@ -460,7 +460,7 @@
460
"ru": ", Soft-KVM",
461
"zh-chs": ",軟KVM",
462
"xloc": [
463
- "default.handlebars->27->669"
463
+ "default.handlebars->27->667"
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->670",
483
- "default.handlebars->27->701",
484
- "default.handlebars->27->713",
482
+ "default.handlebars->27->668",
483
+ "default.handlebars->27->699",
484
+ "default.handlebars->27->711",
485
"xterm.handlebars->9->6"
486
]
487
},
@@ -605,8 +605,8 @@
605
"default-mobile.handlebars->9->244",
606
"default-mobile.handlebars->9->70",
607
"default.handlebars->27->1305",
608
- "default.handlebars->27->1588",
609
- "default.handlebars->27->715"
608
+ "default.handlebars->27->1589",
609
+ "default.handlebars->27->713"
610
]
611
},
612
{
@@ -654,7 +654,7 @@
654
"ru": "1 активная сессия",
655
"zh-chs": "1個活動會話",
656
"xloc": [
657
- "default.handlebars->27->1540"
657
+ "default.handlebars->27->1541"
658
]
659
},
660
{
@@ -709,7 +709,7 @@
709
"ru": "1 группа",
710
"zh-chs": "1組",
711
"xloc": [
712
- "default.handlebars->27->1510"
712
+ "default.handlebars->27->1511"
713
]
714
},
715
{
@@ -1101,7 +1101,7 @@
1101
"zh-chs": "啟用第二因素身份驗證",
1102
"xloc": [
1103
"default.handlebars->27->1376",
1104
- "default.handlebars->27->1531"
1104
+ "default.handlebars->27->1532"
1105
]
1106
},
1107
{
@@ -1465,7 +1465,7 @@
1465
"ru": "7-дневная статистика работы",
1466
"zh-chs": "7天電源狀態",
1467
"xloc": [
1468
- "default.handlebars->27->608"
1468
+ "default.handlebars->27->606"
1469
]
1470
},
1471
{
@@ -1705,7 +1705,7 @@
1705
"zh-chs": "ACM",
1706
"xloc": [
1707
"default-mobile.handlebars->9->185",
1708
- "default.handlebars->27->469"
1708
+ "default.handlebars->27->467"
1709
]
1710
},
1711
{
@@ -1812,7 +1812,7 @@
1812
"ru": "Отказано в доступе",
1813
"zh-chs": "拒絕訪問",
1814
"xloc": [
1815
- "default.handlebars->27->811"
1815
+ "default.handlebars->27->809"
1816
]
1817
},
1818
{
@@ -1847,7 +1847,7 @@
1847
"ru": "Доступ к файлам сервера",
1848
"zh-chs": "訪問服務器文件",
1849
"xloc": [
1850
- "default.handlebars->27->1491"
1850
+ "default.handlebars->27->1492"
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->1068",
1926
"default.handlebars->27->1070",
1926
- "default.handlebars->27->1072",
1927
"default.handlebars->27->439",
1928
"default.handlebars->27->441"
1929
]
@@ -1957,7 +1957,7 @@
1957
"es": "La cuenta esta bloqueada",
1958
"xloc": [
1959
"default.handlebars->27->1377",
1960
- "default.handlebars->27->1488"
1960
+ "default.handlebars->27->1489"
1961
]
1962
},
1963
{
@@ -2045,7 +2045,7 @@
2045
"ru": "Действиe",
2046
"zh-chs": "行動",
2047
"xloc": [
2048
- "default.handlebars->27->816",
2048
+ "default.handlebars->27->814",
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->649",
2067
- "default.handlebars->27->651"
2066
+ "default.handlebars->27->647",
2067
+ "default.handlebars->27->649"
2068
]
2069
},
2070
{
@@ -2083,7 +2083,7 @@
2083
"xloc": [
2084
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
2085
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
2086
- "default.handlebars->27->513",
2086
+ "default.handlebars->27->511",
2087
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
2088
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
2089
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -2139,9 +2139,9 @@
2139
"xloc": [
2140
"default-mobile.handlebars->9->180",
2141
"default-mobile.handlebars->9->182",
2142
+ "default.handlebars->27->460",
2143
"default.handlebars->27->462",
2143
- "default.handlebars->27->464",
2144
- "default.handlebars->27->781"
2144
+ "default.handlebars->27->779"
2145
]
2146
},
2147
{
@@ -2158,8 +2158,8 @@
2158
"ru": "Активация",
2159
"zh-chs": "激活",
2160
"xloc": [
2161
+ "default.handlebars->27->1142",
2162
"default.handlebars->27->1144",
2162
- "default.handlebars->27->1146",
2163
"default.handlebars->27->214",
2164
"default.handlebars->27->216"
2165
]
@@ -2178,7 +2178,7 @@
2178
"ru": "Активный пользователь",
2179
"zh-chs": "活動用戶{0}",
2180
"xloc": [
2181
- "default.handlebars->27->488"
2181
+ "default.handlebars->27->486"
2182
]
2183
},
2184
{
@@ -2229,7 +2229,8 @@
2229
"zh-chs": "添加設備",
2230
"es": "Agregar Dispositivo",
2231
"xloc": [
2232
- "default.handlebars->27->1556"
2232
+ "default.handlebars->27->1466",
2233
+ "default.handlebars->27->1557"
2234
]
2235
},
2236
{
@@ -2246,7 +2247,7 @@
2247
"ru": "Добавить событие к устройству",
2248
"zh-chs": "添加設備事件",
2249
"xloc": [
2249
- "default.handlebars->27->591"
2250
+ "default.handlebars->27->589"
2251
]
2252
},
2253
{
@@ -2263,10 +2264,10 @@
2264
"ru": "Добавить группу устройств",
2265
"zh-chs": "添加設備組",
2266
"xloc": [
2267
+ "default.handlebars->27->1233",
2268
"default.handlebars->27->1235",
2267
- "default.handlebars->27->1237",
2269
"default.handlebars->27->1460",
2269
- "default.handlebars->27->1562",
2270
+ "default.handlebars->27->1563",
2271
"default.handlebars->27->189"
2272
]
2273
},
@@ -2281,6 +2282,7 @@
2282
"zh-chs": "添加设备权限",
2283
"es": "Agregar permisos de dispositivo",
2284
"xloc": [
2285
+ "default.handlebars->27->1236",
2286
"default.handlebars->27->1238"
2287
]
2288
},
@@ -2366,7 +2368,7 @@
2368
"ru": "Добавить участие",
2369
"zh-chs": "添加會員",
2370
"xloc": [
2369
- "default.handlebars->27->1584"
2371
+ "default.handlebars->27->1585"
2372
]
2373
},
2374
{
@@ -2404,8 +2406,8 @@
2406
"default.handlebars->27->131",
2407
"default.handlebars->27->134",
2408
"default.handlebars->27->135",
2407
- "default.handlebars->27->838",
2408
- "default.handlebars->27->839"
2409
+ "default.handlebars->27->836",
2410
+ "default.handlebars->27->837"
2411
]
2412
},
2413
{
@@ -2423,7 +2425,7 @@
2425
"zh-chs": "添加用戶",
2426
"xloc": [
2427
"default-mobile.handlebars->9->281",
2426
- "default.handlebars->27->548"
2428
+ "default.handlebars->27->546"
2429
]
2430
},
2431
{
@@ -2455,10 +2457,10 @@
2457
"ru": "Добавить группу пользователей",
2458
"zh-chs": "添加用戶組",
2459
"xloc": [
2458
- "default.handlebars->27->1138",
2459
- "default.handlebars->27->1236",
2460
- "default.handlebars->27->1568",
2461
- "default.handlebars->27->549"
2460
+ "default.handlebars->27->1136",
2461
+ "default.handlebars->27->1234",
2462
+ "default.handlebars->27->1569",
2463
+ "default.handlebars->27->547"
2464
]
2465
},
2466
{
@@ -2492,7 +2494,7 @@
2494
"ru": "Добавить пользователей",
2495
"zh-chs": "添加用戶",
2496
"xloc": [
2495
- "default.handlebars->27->1137",
2497
+ "default.handlebars->27->1135",
2498
"default.handlebars->27->1455"
2499
]
2500
},
@@ -2510,7 +2512,7 @@
2512
"ru": "Добавить пользователей в группу устройств",
2513
"zh-chs": "將用戶添加到設備組",
2514
"xloc": [
2513
- "default.handlebars->27->1234"
2515
+ "default.handlebars->27->1232"
2516
]
2517
},
2518
{
@@ -2527,7 +2529,7 @@
2529
"ru": "Добавить пользователей в группу",
2530
"zh-chs": "將用戶添加到用戶組",
2531
"xloc": [
2530
- "default.handlebars->27->1487"
2532
+ "default.handlebars->27->1488"
2533
]
2534
},
2535
{
@@ -2578,7 +2580,7 @@
2580
"ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.",
2581
"zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。",
2582
"xloc": [
2581
- "default.handlebars->27->1139",
2583
+ "default.handlebars->27->1137",
2584
"default.handlebars->27->207"
2585
]
2586
},
@@ -2596,7 +2598,7 @@
2598
"ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.",
2599
"zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。",
2600
"xloc": [
2599
- "default.handlebars->27->1141",
2601
+ "default.handlebars->27->1139",
2602
"default.handlebars->27->209"
2603
]
2604
},
@@ -2631,7 +2633,7 @@
2633
"ru": "Добавить новый компьютер к этой сети установкой Mesh Agent.",
2634
"zh-chs": "通過安裝網格代理將新計算機添加到該網格。",
2635
"xloc": [
2634
- "default.handlebars->27->1147",
2636
+ "default.handlebars->27->1145",
2637
"default.handlebars->27->217"
2638
]
2639
},
@@ -2683,7 +2685,7 @@
2685
"ru": "Режим управления администратора (ACM)",
2686
"zh-chs": "管理員控制模式(ACM)",
2687
"xloc": [
2686
- "default.handlebars->27->783"
2688
+ "default.handlebars->27->781"
2689
]
2690
},
2691
{
@@ -2700,7 +2702,7 @@
2702
"zh-chs": "管理員憑證",
2703
"es": "Credenciales del Administrador",
2704
"xloc": [
2703
- "default.handlebars->27->789"
2705
+ "default.handlebars->27->787"
2706
]
2707
},
2708
{
@@ -2735,7 +2737,7 @@
2737
"ru": "Области администратора",
2738
"zh-chs": "管理領域",
2739
"xloc": [
2738
- "default.handlebars->27->1514"
2740
+ "default.handlebars->27->1515"
2741
]
2742
},
2743
{
@@ -2804,7 +2806,7 @@
2806
"ru": "Африканский",
2807
"zh-chs": "南非語",
2808
"xloc": [
2807
- "default.handlebars->27->841"
2809
+ "default.handlebars->27->839"
2810
]
2811
},
2812
{
@@ -2898,7 +2900,7 @@
2900
"ru": "Счетчик ошибок агента",
2901
"zh-chs": "座席錯誤計數器",
2902
"xloc": [
2901
- "default.handlebars->27->1597"
2903
+ "default.handlebars->27->1598"
2904
]
2905
},
2906
{
@@ -2967,7 +2969,7 @@
2969
"ru": "Сессии агентов",
2970
"zh-chs": "座席會議",
2971
"xloc": [
2970
- "default.handlebars->27->1613"
2972
+ "default.handlebars->27->1614"
2973
]
2974
},
2975
{
@@ -2985,7 +2987,7 @@
2987
"zh-chs": "代理商標籤",
2988
"xloc": [
2989
"default-mobile.handlebars->9->192",
2988
- "default.handlebars->27->481"
2990
+ "default.handlebars->27->479"
2991
]
2992
},
2993
{
@@ -3021,8 +3023,8 @@
3023
"zh-chs": "代理已連接",
3024
"xloc": [
3025
"default.handlebars->27->137",
3024
- "default.handlebars->27->539",
3025
- "default.handlebars->27->540"
3026
+ "default.handlebars->27->537",
3027
+ "default.handlebars->27->538"
3028
]
3029
},
3030
{
@@ -3056,7 +3058,7 @@
3058
"ru": "Агент оффлайн",
3059
"zh-chs": "代理離線",
3060
"xloc": [
3059
- "default.handlebars->27->809"
3061
+ "default.handlebars->27->807"
3062
]
3063
},
3064
{
@@ -3073,7 +3075,7 @@
3075
"ru": "Агент онлайн",
3076
"zh-chs": "代理在線",
3077
"xloc": [
3076
- "default.handlebars->27->808"
3078
+ "default.handlebars->27->806"
3079
]
3080
},
3081
{
@@ -3090,7 +3092,7 @@
3092
"ru": "Агенты",
3093
"zh-chs": "代理商",
3094
"xloc": [
3093
- "default.handlebars->27->1626"
3095
+ "default.handlebars->27->1627"
3096
]
3097
},
3098
{
@@ -3107,7 +3109,7 @@
3109
"ru": "Албанский",
3110
"zh-chs": "阿爾巴尼亞語",
3111
"xloc": [
3110
- "default.handlebars->27->842"
3112
+ "default.handlebars->27->840"
3113
]
3114
},
3115
{
@@ -3160,9 +3162,9 @@
3162
"ru": "Фокусирование всех",
3163
"zh-chs": "全部聚焦",
3164
"xloc": [
3165
+ "default.handlebars->27->669",
3166
"default.handlebars->27->671",
3164
- "default.handlebars->27->673",
3165
- "default.handlebars->27->674"
3167
+ "default.handlebars->27->672"
3168
]
3169
},
3170
{
@@ -3179,8 +3181,8 @@
3181
"ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.",
3182
"zh-chs": "允許用戶管理此設備組和該組中的設備。",
3183
"xloc": [
3182
- "default.handlebars->27->1204",
3183
- "default.handlebars->27->1484"
3184
+ "default.handlebars->27->1202",
3185
+ "default.handlebars->27->1485"
3186
]
3187
},
3188
{
@@ -3194,7 +3196,7 @@
3196
"zh-chs": "允许用户管理此设备。",
3197
"es": "Permitir al usuario administrar este dispositivo",
3198
"xloc": [
3197
- "default.handlebars->27->1205"
3199
+ "default.handlebars->27->1203"
3200
]
3201
},
3202
{
@@ -3247,7 +3249,7 @@
3249
"ru": "Поменять (F10 = ESC+0)",
3250
"zh-chs": "備用(F10 = ESC + 0)",
3251
"xloc": [
3250
- "default.handlebars->27->706"
3252
+ "default.handlebars->27->704"
3253
]
3254
},
3255
{
@@ -3281,9 +3283,9 @@
3283
"ru": "Всегда уведомлять",
3284
"zh-chs": "始終通知",
3285
"xloc": [
3284
- "default.handlebars->27->1118",
3285
- "default.handlebars->27->1523",
3286
- "default.handlebars->27->497"
3286
+ "default.handlebars->27->1116",
3287
+ "default.handlebars->27->1524",
3288
+ "default.handlebars->27->495"
3289
]
3290
},
3291
{
@@ -3300,9 +3302,9 @@
3302
"ru": "Всегда запрашивать",
3303
"zh-chs": "總是提示",
3304
"xloc": [
3303
- "default.handlebars->27->1119",
3304
- "default.handlebars->27->1524",
3305
- "default.handlebars->27->498"
3305
+ "default.handlebars->27->1117",
3306
+ "default.handlebars->27->1525",
3307
+ "default.handlebars->27->496"
3308
]
3309
},
3310
{
@@ -3406,7 +3408,7 @@
3408
"ru": "Антивирус",
3409
"zh-chs": "防毒軟件",
3410
"xloc": [
3409
- "default.handlebars->27->487"
3411
+ "default.handlebars->27->485"
3412
]
3413
},
3414
{
@@ -3491,7 +3493,7 @@
3493
"zh-chs": "阿拉伯文(阿爾及利亞)",
3494
"es": "Arabe (Algeria)",
3495
"xloc": [
3494
- "default.handlebars->27->844"
3496
+ "default.handlebars->27->842"
3497
]
3498
},
3499
{
@@ -3508,7 +3510,7 @@
3510
"zh-chs": "阿拉伯文(巴林)",
3511
"es": "Arabe (Bahrain)",
3512
"xloc": [
3511
- "default.handlebars->27->845"
3513
+ "default.handlebars->27->843"
3514
]
3515
},
3516
{
@@ -3525,7 +3527,7 @@
3527
"zh-chs": "阿拉伯文(埃及)",
3528
"es": "Arabe (Egipto)",
3529
"xloc": [
3528
- "default.handlebars->27->846"
3530
+ "default.handlebars->27->844"
3531
]
3532
},
3533
{
@@ -3542,7 +3544,7 @@
3544
"zh-chs": "阿拉伯文(伊拉克)",
3545
"es": "Arabe (Irak)",
3546
"xloc": [
3545
- "default.handlebars->27->847"
3547
+ "default.handlebars->27->845"
3548
]
3549
},
3550
{
@@ -3559,7 +3561,7 @@
3561
"zh-chs": "阿拉伯語(約旦)",
3562
"es": "Árabe (Jordania)",
3563
"xloc": [
3562
- "default.handlebars->27->848"
3564
+ "default.handlebars->27->846"
3565
]
3566
},
3567
{
@@ -3576,7 +3578,7 @@
3578
"zh-chs": "阿拉伯文(科威特)",
3579
"es": "Árabe (Kuwait)",
3580
"xloc": [
3579
- "default.handlebars->27->849"
3581
+ "default.handlebars->27->847"
3582
]
3583
},
3584
{
@@ -3593,7 +3595,7 @@
3595
"zh-chs": "阿拉伯語(黎巴嫩)",
3596
"es": "Árabe (Líbano)",
3597
"xloc": [
3596
- "default.handlebars->27->850"
3598
+ "default.handlebars->27->848"
3599
]
3600
},
3601
{
@@ -3610,7 +3612,7 @@
3612
"zh-chs": "阿拉伯文(利比亞)",
3613
"es": "Árabe (Libia)",
3614
"xloc": [
3613
- "default.handlebars->27->851"
3615
+ "default.handlebars->27->849"
3616
]
3617
},
3618
{
@@ -3627,7 +3629,7 @@
3629
"zh-chs": "阿拉伯文(摩洛哥)",
3630
"es": "Árabe (Marruecos)",
3631
"xloc": [
3630
- "default.handlebars->27->852"
3632
+ "default.handlebars->27->850"
3633
]
3634
},
3635
{
@@ -3644,7 +3646,7 @@
3646
"zh-chs": "阿拉伯文(阿曼)",
3647
"es": "Árabe (Omán)",
3648
"xloc": [
3647
- "default.handlebars->27->853"
3649
+ "default.handlebars->27->851"
3650
]
3651
},
3652
{
@@ -3661,7 +3663,7 @@
3663
"zh-chs": "阿拉伯語(卡塔爾)",
3664
"es": "Árabe (Qatar)",
3665
"xloc": [
3664
- "default.handlebars->27->854"
3666
+ "default.handlebars->27->852"
3667
]
3668
},
3669
{
@@ -3678,7 +3680,7 @@
3680
"zh-chs": "阿拉伯語(沙特阿拉伯)",
3681
"es": "Árabe (Arabia Saudita)",
3682
"xloc": [
3681
- "default.handlebars->27->855"
3683
+ "default.handlebars->27->853"
3684
]
3685
},
3686
{
@@ -3695,7 +3697,7 @@
3697
"zh-chs": "阿拉伯語(標準)",
3698
"es": "Árabe (estándar)",
3699
"xloc": [
3698
- "default.handlebars->27->843"
3700
+ "default.handlebars->27->841"
3701
]
3702
},
3703
{
@@ -3712,7 +3714,7 @@
3714
"zh-chs": "阿拉伯語(敘利亞)",
3715
"es": "Árabe (Siria)",
3716
"xloc": [
3715
- "default.handlebars->27->856"
3717
+ "default.handlebars->27->854"
3718
]
3719
},
3720
{
@@ -3729,7 +3731,7 @@
3731
"zh-chs": "阿拉伯文(突尼斯)",
3732
"es": "Árabe (Túnez)",
3733
"xloc": [
3732
- "default.handlebars->27->857"
3734
+ "default.handlebars->27->855"
3735
]
3736
},
3737
{
@@ -3746,7 +3748,7 @@
3748
"zh-chs": "阿拉伯文(阿聯酋)",
3749
"es": "Árabe (U.A.E.)",
3750
"xloc": [
3749
- "default.handlebars->27->858"
3751
+ "default.handlebars->27->856"
3752
]
3753
},
3754
{
@@ -3763,7 +3765,7 @@
3765
"zh-chs": "阿拉伯文(也門)",
3766
"es": "Árabe (Yemen)",
3767
"xloc": [
3766
- "default.handlebars->27->859"
3768
+ "default.handlebars->27->857"
3769
]
3770
},
3771
{
@@ -3780,7 +3782,7 @@
3782
"zh-chs": "阿拉貢人",
3783
"es": "Aragonés",
3784
"xloc": [
3783
- "default.handlebars->27->860"
3785
+ "default.handlebars->27->858"
3786
]
3787
},
3788
{
@@ -3797,7 +3799,7 @@
3799
"ru": "Архитектура",
3800
"zh-chs": "建築",
3801
"xloc": [
3800
- "default.handlebars->27->757"
3802
+ "default.handlebars->27->755"
3803
]
3804
},
3805
{
@@ -3832,7 +3834,7 @@
3834
"zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。",
3835
"xloc": [
3836
"default-mobile.handlebars->9->287",
3835
- "default.handlebars->27->1182"
3837
+ "default.handlebars->27->1180"
3838
]
3839
},
3840
{
@@ -3849,7 +3851,7 @@
3851
"ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?",
3852
"zh-chs": "您確定要刪除節點{0}嗎?",
3853
"xloc": [
3852
- "default.handlebars->27->630"
3854
+ "default.handlebars->27->628"
3855
]
3856
},
3857
{
@@ -3866,7 +3868,7 @@
3868
"ru": "Вы действительно хотите деинсталировать выбранного агента?",
3869
"zh-chs": "您確定要卸載所選代理嗎?",
3870
"xloc": [
3869
- "default.handlebars->27->619"
3871
+ "default.handlebars->27->617"
3872
]
3873
},
3874
{
@@ -3883,7 +3885,7 @@
3885
"ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?",
3886
"zh-chs": "您確定要卸載所選的{0}代理嗎?",
3887
"xloc": [
3886
- "default.handlebars->27->618"
3888
+ "default.handlebars->27->616"
3889
]
3890
},
3891
{
@@ -3900,7 +3902,7 @@
3902
"ru": "Вы уверенны, что {0} плагин: {1}",
3903
"zh-chs": "您確定要{0}插件嗎:{1}",
3904
"xloc": [
3903
- "default.handlebars->27->1666"
3905
+ "default.handlebars->27->1667"
3906
]
3907
},
3908
{
@@ -3917,7 +3919,7 @@
3919
"zh-chs": "亞美尼亞人",
3920
"es": "Armenio",
3921
"xloc": [
3920
- "default.handlebars->27->861"
3922
+ "default.handlebars->27->859"
3923
]
3924
},
3925
{
@@ -3934,7 +3936,7 @@
3936
"zh-chs": "阿薩姆語",
3937
"es": "Asamés",
3938
"xloc": [
3937
- "default.handlebars->27->862"
3939
+ "default.handlebars->27->860"
3940
]
3941
},
3942
{
@@ -3951,7 +3953,7 @@
3953
"zh-chs": "阿斯圖里亞斯人",
3954
"es": "Asturiano",
3955
"xloc": [
3954
- "default.handlebars->27->863"
3956
+ "default.handlebars->27->861"
3957
]
3958
},
3959
{
@@ -3968,7 +3970,7 @@
3970
"ru": "Приложение аутентификации",
3971
"zh-chs": "身份驗證應用",
3972
"xloc": [
3971
- "default.handlebars->27->1527"
3973
+ "default.handlebars->27->1528"
3974
]
3975
},
3976
{
@@ -3991,8 +3993,8 @@
3993
"default-mobile.handlebars->9->35",
3994
"default.handlebars->27->105",
3995
"default.handlebars->27->110",
3994
- "default.handlebars->27->827",
3995
- "default.handlebars->27->829"
3996
+ "default.handlebars->27->825",
3997
+ "default.handlebars->27->827"
3998
]
3999
},
4000
{
@@ -4060,7 +4062,7 @@
4062
"ru": "Автоудаление",
4063
"zh-chs": "自動刪除",
4064
"xloc": [
4063
- "default.handlebars->27->1106"
4065
+ "default.handlebars->27->1104"
4066
]
4067
},
4068
{
@@ -4114,7 +4116,7 @@
4116
"zh-chs": "阿塞拜疆",
4117
"es": "Azerbaiyano",
4118
"xloc": [
4117
- "default.handlebars->27->864"
4119
+ "default.handlebars->27->862"
4120
]
4121
},
4122
{
@@ -4131,7 +4133,7 @@
4133
"ru": "BIOS",
4134
"zh-chs": "的BIOS",
4135
"xloc": [
4134
- "default.handlebars->27->795"
4136
+ "default.handlebars->27->793"
4137
]
4138
},
4139
{
@@ -4282,7 +4284,7 @@
4284
"ru": "Резервные коды",
4285
"zh-chs": "備用碼",
4286
"xloc": [
4285
- "default.handlebars->27->1529"
4287
+ "default.handlebars->27->1530"
4288
]
4289
},
4290
{
@@ -4299,7 +4301,7 @@
4301
"ru": "Плохой ключ",
4302
"zh-chs": "錯誤的簽名",
4303
"xloc": [
4302
- "default.handlebars->27->1604"
4304
+ "default.handlebars->27->1605"
4305
]
4306
},
4307
{
@@ -4316,7 +4318,7 @@
4318
"ru": "Плохой веб-сертификат",
4319
"zh-chs": "錯誤的網絡證書",
4320
"xloc": [
4319
- "default.handlebars->27->1603"
4321
+ "default.handlebars->27->1604"
4322
]
4323
},
4324
{
@@ -4333,7 +4335,7 @@
4335
"zh-chs": "巴斯克",
4336
"es": "Vasco",
4337
"xloc": [
4336
- "default.handlebars->27->865"
4338
+ "default.handlebars->27->863"
4339
]
4340
},
4341
{
@@ -4367,7 +4369,7 @@
4369
"zh-chs": "白俄羅斯語",
4370
"es": "Bielorruso",
4371
"xloc": [
4370
- "default.handlebars->27->867"
4372
+ "default.handlebars->27->865"
4373
]
4374
},
4375
{
@@ -4384,7 +4386,7 @@
4386
"zh-chs": "孟加拉",
4387
"es": "Bengalí",
4388
"xloc": [
4387
- "default.handlebars->27->868"
4389
+ "default.handlebars->27->866"
4390
]
4391
},
4392
{
@@ -4418,7 +4420,7 @@
4420
"zh-chs": "波斯尼亞人",
4421
"es": "Bosnio",
4422
"xloc": [
4421
- "default.handlebars->27->869"
4423
+ "default.handlebars->27->867"
4424
]
4425
},
4426
{
@@ -4435,7 +4437,7 @@
4437
"zh-chs": "布列塔尼",
4438
"es": "Bretón",
4439
"xloc": [
4438
- "default.handlebars->27->870"
4440
+ "default.handlebars->27->868"
4441
]
4442
},
4443
{
@@ -4504,7 +4506,7 @@
4506
"zh-chs": "保加利亞語",
4507
"es": "Búlgaro",
4508
"xloc": [
4507
- "default.handlebars->27->866"
4509
+ "default.handlebars->27->864"
4510
]
4511
},
4512
{
@@ -4521,7 +4523,7 @@
4523
"zh-chs": "緬甸人",
4524
"es": "Birmano",
4525
"xloc": [
4524
- "default.handlebars->27->871"
4526
+ "default.handlebars->27->869"
4527
]
4528
},
4529
{
@@ -4539,7 +4541,7 @@
4541
"zh-chs": "CCM",
4542
"xloc": [
4543
"default-mobile.handlebars->9->184",
4542
- "default.handlebars->27->467"
4544
+ "default.handlebars->27->465"
4545
]
4546
},
4547
{
@@ -4557,8 +4559,8 @@
4559
"zh-chs": "CIRA",
4560
"xloc": [
4561
"default-mobile.handlebars->9->125",
4560
- "default.handlebars->27->1170",
4561
- "default.handlebars->27->1175",
4562
+ "default.handlebars->27->1168",
4563
+ "default.handlebars->27->1173",
4564
"default.handlebars->27->170",
4565
"default.handlebars->27->363"
4566
]
@@ -4577,7 +4579,7 @@
4579
"ru": "CIRA Сервер",
4580
"zh-chs": "CIRA服務器",
4581
"xloc": [
4580
- "default.handlebars->27->1654"
4582
+ "default.handlebars->27->1655"
4583
]
4584
},
4585
{
@@ -4594,7 +4596,7 @@
4596
"ru": "CIRA Сервер команды",
4597
"zh-chs": "CIRA服務器命令",
4598
"xloc": [
4597
- "default.handlebars->27->1655"
4599
+ "default.handlebars->27->1656"
4600
]
4601
},
4602
{
@@ -4611,7 +4613,7 @@
4613
"ru": "Загрузка CPU",
4614
"zh-chs": "CPU負載",
4615
"xloc": [
4614
- "default.handlebars->27->1618"
4616
+ "default.handlebars->27->1619"
4617
]
4618
},
4619
{
@@ -4628,7 +4630,7 @@
4630
"ru": "Загрузка CPU за последние 15 минут",
4631
"zh-chs": "最近15分鐘的CPU負載",
4632
"xloc": [
4631
- "default.handlebars->27->1621"
4633
+ "default.handlebars->27->1622"
4634
]
4635
},
4636
{
@@ -4645,7 +4647,7 @@
4647
"ru": "Загрузка CPU за последние 5 минут",
4648
"zh-chs": "最近5分鐘的CPU負載",
4649
"xloc": [
4648
- "default.handlebars->27->1620"
4650
+ "default.handlebars->27->1621"
4651
]
4652
},
4653
{
@@ -4662,7 +4664,7 @@
4664
"ru": "Загрузка CPU за последнюю минуту",
4665
"zh-chs": "最後一分鐘的CPU負載",
4666
"xloc": [
4665
- "default.handlebars->27->1619"
4667
+ "default.handlebars->27->1620"
4668
]
4669
},
4670
{
@@ -4679,8 +4681,8 @@
4681
"ru": "CR+LF",
4682
"zh-chs": "CR +低頻",
4683
"xloc": [
4682
- "default.handlebars->27->699",
4683
- "default.handlebars->27->708",
4684
+ "default.handlebars->27->697",
4685
+ "default.handlebars->27->706",
4686
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
4687
]
4688
},
@@ -4717,7 +4719,7 @@
4719
"ru": "Ошибка вызова",
4720
"zh-chs": "通話錯誤",
4721
"xloc": [
4720
- "default.handlebars->27->1667"
4722
+ "default.handlebars->27->1668"
4723
]
4724
},
4725
{
@@ -4736,7 +4738,7 @@
4738
"xloc": [
4739
"default-mobile.handlebars->9->44",
4740
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
4739
- "default.handlebars->27->1091",
4741
+ "default.handlebars->27->1089",
4742
"default.handlebars->container->dialog->idx_dlgButtonBar",
4743
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
4744
"login.handlebars->dialog->idx_dlgButtonBar",
@@ -4758,7 +4760,7 @@
4760
"ru": "Объем / Скорость",
4761
"zh-chs": "容量/速度",
4762
"xloc": [
4761
- "default.handlebars->27->802"
4763
+ "default.handlebars->27->800"
4764
]
4765
},
4766
{
@@ -4775,7 +4777,7 @@
4777
"ru": "Каталонский",
4778
"zh-chs": "加泰羅尼亞語",
4779
"xloc": [
4778
- "default.handlebars->27->872"
4780
+ "default.handlebars->27->870"
4781
]
4782
},
4783
{
@@ -4809,7 +4811,7 @@
4811
"ru": "Чаморро",
4812
"zh-chs": "查莫羅",
4813
"xloc": [
4812
- "default.handlebars->27->873"
4814
+ "default.handlebars->27->871"
4815
]
4816
},
4817
{
@@ -4826,7 +4828,7 @@
4828
"ru": "Смена email для {0}",
4829
"zh-chs": "更改{0}的電子郵件",
4830
"xloc": [
4829
- "default.handlebars->27->1546"
4831
+ "default.handlebars->27->1547"
4832
]
4833
},
4834
{
@@ -4843,9 +4845,9 @@
4845
"ru": "Смена группы",
4846
"zh-chs": "變更組",
4847
"xloc": [
4846
- "default.handlebars->27->520",
4847
- "default.handlebars->27->627",
4848
- "default.handlebars->27->628"
4848
+ "default.handlebars->27->518",
4849
+ "default.handlebars->27->625",
4850
+ "default.handlebars->27->626"
4851
]
4852
},
4853
{
@@ -4863,8 +4865,8 @@
4865
"zh-chs": "更改密碼",
4866
"xloc": [
4867
"default-mobile.handlebars->9->52",
4866
- "default.handlebars->27->1067",
4867
- "default.handlebars->27->1539"
4868
+ "default.handlebars->27->1065",
4869
+ "default.handlebars->27->1540"
4870
]
4871
},
4872
{
@@ -4881,7 +4883,7 @@
4883
"ru": "Смена пароля для {0}",
4884
"zh-chs": "更改{0}的密碼",
4885
"xloc": [
4884
- "default.handlebars->27->1553"
4886
+ "default.handlebars->27->1554"
4887
]
4888
},
4889
{
@@ -4951,7 +4953,7 @@
4953
"zh-chs": "更改該用戶的密碼",
4954
"es": "Cambiar la contraseña para este usuario",
4955
"xloc": [
4954
- "default.handlebars->27->1538"
4956
+ "default.handlebars->27->1539"
4957
]
4958
},
4959
{
@@ -4985,7 +4987,7 @@
4987
"ru": "Измените адрес электронной почты вашей учетной записи здесь.",
4988
"zh-chs": "在此處更改您的帳戶電子郵件地址。",
4989
"xloc": [
4988
- "default.handlebars->27->1054"
4990
+ "default.handlebars->27->1052"
4991
]
4992
},
4993
{
@@ -5002,7 +5004,7 @@
5004
"ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.",
5005
"zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
5006
"xloc": [
5005
- "default.handlebars->27->1060"
5007
+ "default.handlebars->27->1058"
5008
]
5009
},
5010
{
@@ -5019,7 +5021,7 @@
5021
"ru": "Изменение языка потребует перезагрузить страницу.",
5022
"zh-chs": "更改語言將需要刷新頁面。",
5023
"xloc": [
5022
- "default.handlebars->27->1039"
5024
+ "default.handlebars->27->1037"
5025
]
5026
},
5027
{
@@ -5037,8 +5039,8 @@
5039
"zh-chs": "聊天室",
5040
"xloc": [
5041
"default.handlebars->27->1362",
5040
- "default.handlebars->27->569",
5041
- "default.handlebars->27->588"
5042
+ "default.handlebars->27->567",
5043
+ "default.handlebars->27->586"
5044
]
5045
},
5046
{
@@ -5057,7 +5059,7 @@
5059
"xloc": [
5060
"default-mobile.handlebars->9->308",
5061
"default-mobile.handlebars->9->326",
5060
- "default.handlebars->27->1232",
5062
+ "default.handlebars->27->1230",
5063
"default.handlebars->27->1262"
5064
]
5065
},
@@ -5075,7 +5077,7 @@
5077
"ru": "Чеченский",
5078
"zh-chs": "車臣",
5079
"xloc": [
5078
- "default.handlebars->27->874"
5080
+ "default.handlebars->27->872"
5081
]
5082
},
5083
{
@@ -5143,8 +5145,8 @@
5145
"ru": "Проверка...",
5146
"zh-chs": "檢查...",
5147
"xloc": [
5146
- "default.handlebars->27->1661",
5147
- "default.handlebars->27->840"
5148
+ "default.handlebars->27->1662",
5149
+ "default.handlebars->27->838"
5150
]
5151
},
5152
{
@@ -5161,7 +5163,7 @@
5163
"ru": "Китайский",
5164
"zh-chs": "中文",
5165
"xloc": [
5164
- "default.handlebars->27->875"
5166
+ "default.handlebars->27->873"
5167
]
5168
},
5169
{
@@ -5178,7 +5180,7 @@
5180
"zh-chs": "中文(香港)",
5181
"es": "Chino (Hong Kong)",
5182
"xloc": [
5181
- "default.handlebars->27->876"
5183
+ "default.handlebars->27->874"
5184
]
5185
},
5186
{
@@ -5195,7 +5197,7 @@
5197
"zh-chs": "中文(中國)",
5198
"es": "Chino (PRC)",
5199
"xloc": [
5198
- "default.handlebars->27->877"
5200
+ "default.handlebars->27->875"
5201
]
5202
},
5203
{
@@ -5210,7 +5212,7 @@
5212
"zh-chs": "简体中文)",
5213
"es": "Chino (simplificado)",
5214
"xloc": [
5213
- "default.handlebars->27->1037"
5215
+ "default.handlebars->27->1035"
5216
]
5217
},
5218
{
@@ -5227,7 +5229,7 @@
5229
"zh-chs": "中文(新加坡)",
5230
"es": "Chino (Singapur)",
5231
"xloc": [
5230
- "default.handlebars->27->878"
5232
+ "default.handlebars->27->876"
5233
]
5234
},
5235
{
@@ -5244,7 +5246,7 @@
5246
"zh-chs": "中文(台灣)",
5247
"es": "Chino (Taiwán)",
5248
"xloc": [
5247
- "default.handlebars->27->879"
5249
+ "default.handlebars->27->877"
5250
]
5251
},
5252
{
@@ -5279,7 +5281,7 @@
5281
"zh-chs": "楚瓦什",
5282
"es": "Chuvash",
5283
"xloc": [
5282
- "default.handlebars->27->880"
5284
+ "default.handlebars->27->878"
5285
]
5286
},
5287
{
@@ -5320,10 +5322,10 @@
5322
"default-mobile.handlebars->9->28",
5323
"default-mobile.handlebars->9->94",
5324
"default.handlebars->27->1339",
5325
+ "default.handlebars->27->732",
5326
"default.handlebars->27->734",
5327
"default.handlebars->27->736",
5328
"default.handlebars->27->738",
5326
- "default.handlebars->27->740",
5329
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
5330
"default.handlebars->container->column_l->p41->3->1",
5331
"messenger.handlebars->xbottom"
@@ -5360,7 +5362,7 @@
5362
"ru": "Очистить ядро",
5363
"zh-chs": "清除核心",
5364
"xloc": [
5363
- "default.handlebars->27->818"
5365
+ "default.handlebars->27->816"
5366
]
5367
},
5368
{
@@ -5391,7 +5393,7 @@
5393
"zh-chs": "清除此通知",
5394
"es": "Borrar esta notificación",
5395
"xloc": [
5394
- "default.handlebars->27->1591"
5396
+ "default.handlebars->27->1592"
5397
]
5398
},
5399
{
@@ -5482,7 +5484,7 @@
5484
"zh-chs": "單擊確定將驗證郵件發送到:",
5485
"xloc": [
5486
"default-mobile.handlebars->9->37",
5485
- "default.handlebars->27->1051"
5487
+ "default.handlebars->27->1049"
5488
]
5489
},
5490
{
@@ -5516,7 +5518,7 @@
5518
"ru": "Режим управления клиентом (CCM)",
5519
"zh-chs": "客戶端控制模式(CCM)",
5520
"xloc": [
5519
- "default.handlebars->27->782"
5521
+ "default.handlebars->27->780"
5522
]
5523
},
5524
{
@@ -5533,8 +5535,8 @@
5535
"ru": "Клиент инициировал удаленный доступ",
5536
"zh-chs": "客戶端啟動的遠程訪問",
5537
"xloc": [
5536
- "default.handlebars->27->1169",
5537
- "default.handlebars->27->1174"
5538
+ "default.handlebars->27->1167",
5539
+ "default.handlebars->27->1172"
5540
]
5541
},
5542
{
@@ -5571,7 +5573,7 @@
5573
"default-mobile.handlebars->9->26",
5574
"default.handlebars->27->117",
5575
"default.handlebars->27->125",
5574
- "default.handlebars->27->692"
5576
+ "default.handlebars->27->690"
5577
]
5578
},
5579
{
@@ -5607,7 +5609,7 @@
5609
"zh-chs": "通用設備組",
5610
"xloc": [
5611
"default.handlebars->27->1461",
5610
- "default.handlebars->27->1563"
5612
+ "default.handlebars->27->1564"
5613
]
5614
},
5615
{
@@ -5624,8 +5626,8 @@
5626
"zh-chs": "通用設備",
5627
"es": "Dispositivos comunes",
5628
"xloc": [
5627
- "default.handlebars->27->1466",
5628
- "default.handlebars->27->1557"
5629
+ "default.handlebars->27->1467",
5630
+ "default.handlebars->27->1558"
5631
]
5632
},
5633
{
@@ -5662,12 +5664,12 @@
5664
"xloc": [
5665
"default-mobile.handlebars->9->223",
5666
"default-mobile.handlebars->9->288",
5665
- "default.handlebars->27->1183",
5667
+ "default.handlebars->27->1181",
5668
"default.handlebars->27->1387",
5667
- "default.handlebars->27->1480",
5669
+ "default.handlebars->27->1481",
5670
"default.handlebars->27->387",
5669
- "default.handlebars->27->622",
5670
- "default.handlebars->27->631"
5671
+ "default.handlebars->27->620",
5672
+ "default.handlebars->27->629"
5673
]
5674
},
5675
{
@@ -5685,7 +5687,7 @@
5687
"zh-chs": "確認將1個副本複製到此位置?",
5688
"xloc": [
5689
"default-mobile.handlebars->9->258",
5688
- "default.handlebars->27->729"
5690
+ "default.handlebars->27->727"
5691
]
5692
},
5693
{
@@ -5703,7 +5705,7 @@
5705
"zh-chs": "確認{0}個條目的副本到此位置?",
5706
"xloc": [
5707
"default-mobile.handlebars->9->257",
5706
- "default.handlebars->27->728"
5708
+ "default.handlebars->27->726"
5709
]
5710
},
5711
{
@@ -5744,7 +5746,7 @@
5746
"zh-chs": "確認刪除用戶{0}?",
5747
"es": "Confirmar la eliminación del usuario {0}?",
5748
"xloc": [
5747
- "default.handlebars->27->1555"
5749
+ "default.handlebars->27->1556"
5750
]
5751
},
5752
{
@@ -5762,7 +5764,7 @@
5764
"zh-chs": "確認將1個入口移動到此位置?",
5765
"xloc": [
5766
"default-mobile.handlebars->9->260",
5765
- "default.handlebars->27->731"
5767
+ "default.handlebars->27->729"
5768
]
5769
},
5770
{
@@ -5780,7 +5782,7 @@
5782
"zh-chs": "確認將{0}個條目移到此位置?",
5783
"xloc": [
5784
"default-mobile.handlebars->9->259",
5783
- "default.handlebars->27->730"
5785
+ "default.handlebars->27->728"
5786
]
5787
},
5788
{
@@ -5815,7 +5817,7 @@
5817
"zh-chs": "確認刪除身份驗證器應用程序兩步登錄?",
5818
"xloc": [
5819
"default-mobile.handlebars->9->36",
5818
- "default.handlebars->27->830"
5820
+ "default.handlebars->27->828"
5821
]
5822
},
5823
{
@@ -5832,8 +5834,8 @@
5834
"ru": "Подтвердить удаление группы устройств {0}?",
5835
"zh-chs": "確認刪除設備組{0}?",
5836
"xloc": [
5835
- "default.handlebars->27->1475",
5836
- "default.handlebars->27->1586"
5837
+ "default.handlebars->27->1476",
5838
+ "default.handlebars->27->1587"
5839
]
5840
},
5841
{
@@ -5847,8 +5849,8 @@
5849
"zh-chs": "确认移除设备{0}?",
5850
"es": "Confirmar la eliminación del dispositivo {0}?",
5851
"xloc": [
5850
- "default.handlebars->27->1473",
5851
- "default.handlebars->27->1575"
5852
+ "default.handlebars->27->1474",
5853
+ "default.handlebars->27->1576"
5854
]
5855
},
5856
{
@@ -5865,13 +5867,13 @@
5867
"ru": "Подтвердить удаление группы {0}?",
5868
"zh-chs": "確認刪除組{0}?",
5869
"xloc": [
5868
- "default.handlebars->27->1582"
5870
+ "default.handlebars->27->1583"
5871
]
5872
},
5873
{
5874
"en": "Confirm removal of user group {0}?",
5875
"xloc": [
5874
- "default.handlebars->27->1579"
5876
+ "default.handlebars->27->1580"
5877
]
5878
},
5879
{
@@ -5890,8 +5892,8 @@
5892
"xloc": [
5893
"default-mobile.handlebars->9->334",
5894
"default.handlebars->27->1271",
5893
- "default.handlebars->27->1483",
5894
- "default.handlebars->27->1577"
5895
+ "default.handlebars->27->1484",
5896
+ "default.handlebars->27->1578"
5897
]
5898
},
5899
{
@@ -5911,8 +5913,8 @@
5913
"default-mobile.handlebars->9->237",
5914
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
5915
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
5914
- "default.handlebars->27->1122",
5915
- "default.handlebars->27->711",
5916
+ "default.handlebars->27->1120",
5917
+ "default.handlebars->27->709",
5918
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
5919
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
5920
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -5951,8 +5953,8 @@
5953
"ru": "Подключиться к серверу",
5954
"zh-chs": "連接到服務器",
5955
"xloc": [
5954
- "default.handlebars->27->1173",
5955
- "default.handlebars->27->1177"
5956
+ "default.handlebars->27->1171",
5957
+ "default.handlebars->27->1175"
5958
]
5959
},
5960
{
@@ -6023,7 +6025,7 @@
6025
"ru": "Подключено Intel® AMT",
6026
"zh-chs": "連接的英特爾®AMT",
6027
"xloc": [
6026
- "default.handlebars->27->1609"
6028
+ "default.handlebars->27->1610"
6029
]
6030
},
6031
{
@@ -6040,7 +6042,7 @@
6042
"ru": "Подключенные пользователи",
6043
"zh-chs": "關聯用戶",
6044
"xloc": [
6043
- "default.handlebars->27->1614"
6045
+ "default.handlebars->27->1615"
6046
]
6047
},
6048
{
@@ -6057,7 +6059,7 @@
6059
"zh-chs": "現在已連接",
6060
"es": "Conectado ahora",
6061
"xloc": [
6060
- "default.handlebars->27->761"
6062
+ "default.handlebars->27->759"
6063
]
6064
},
6065
{
@@ -6097,7 +6099,7 @@
6099
"default.handlebars->27->195",
6100
"default.handlebars->27->198",
6101
"default.handlebars->27->204",
6100
- "default.handlebars->27->752",
6102
+ "default.handlebars->27->750",
6103
"default.handlebars->27->9",
6104
"xterm.handlebars->9->2"
6105
]
@@ -6116,7 +6118,7 @@
6118
"ru": "Подключений ",
6119
"zh-chs": "連接數",
6120
"xloc": [
6119
- "default.handlebars->27->1625"
6121
+ "default.handlebars->27->1626"
6122
]
6123
},
6124
{
@@ -6133,7 +6135,7 @@
6135
"ru": "Ретранслятор подключения",
6136
"zh-chs": "連接繼電器",
6137
"xloc": [
6136
- "default.handlebars->27->1653"
6138
+ "default.handlebars->27->1654"
6139
]
6140
},
6141
{
@@ -6187,7 +6189,7 @@
6189
"default-mobile.handlebars->9->198",
6190
"default.handlebars->27->1302",
6191
"default.handlebars->27->186",
6190
- "default.handlebars->27->511",
6192
+ "default.handlebars->27->509",
6193
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
6194
]
6195
},
@@ -6205,8 +6207,8 @@
6207
"ru": "Консоль",
6208
"zh-chs": "安慰",
6209
"xloc": [
6208
- "default.handlebars->27->564",
6209
- "default.handlebars->27->583",
6210
+ "default.handlebars->27->562",
6211
+ "default.handlebars->27->581",
6212
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
6213
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
6214
"default.handlebars->contextMenu->cxconsole"
@@ -6240,8 +6242,8 @@
6242
"zh-chs": "控制",
6243
"es": "Control",
6244
"xloc": [
6243
- "default.handlebars->27->563",
6244
- "default.handlebars->27->582"
6245
+ "default.handlebars->27->561",
6246
+ "default.handlebars->27->580"
6247
]
6248
},
6249
{
@@ -6258,7 +6260,7 @@
6260
"ru": "Cookie-кодировщик",
6261
"zh-chs": "Cookie編碼器",
6262
"xloc": [
6261
- "default.handlebars->27->1639"
6263
+ "default.handlebars->27->1640"
6264
]
6265
},
6266
{
@@ -6559,7 +6561,7 @@
6561
"ru": "Основной сервер",
6562
"zh-chs": "核心服務器",
6563
"xloc": [
6562
- "default.handlebars->27->1638"
6564
+ "default.handlebars->27->1639"
6565
]
6566
},
6567
{
@@ -6576,7 +6578,7 @@
6578
"zh-chs": "科西嘉人",
6579
"es": "Corso",
6580
"xloc": [
6579
- "default.handlebars->27->881"
6581
+ "default.handlebars->27->879"
6582
]
6583
},
6584
{
@@ -6646,7 +6648,7 @@
6648
"ru": "Создайте новую группу устройств, используя параметры ниже.",
6649
"zh-chs": "使用以下選項創建一個新的設備組。",
6650
"xloc": [
6649
- "default.handlebars->27->1074"
6651
+ "default.handlebars->27->1072"
6652
]
6653
},
6654
{
@@ -6715,7 +6717,7 @@
6717
"ru": "Создано",
6718
"zh-chs": "創建",
6719
"xloc": [
6718
- "default.handlebars->27->1503"
6720
+ "default.handlebars->27->1504"
6721
]
6722
},
6723
{
@@ -6750,7 +6752,7 @@
6752
"zh-chs": "克里",
6753
"es": "Cree",
6754
"xloc": [
6753
- "default.handlebars->27->882"
6755
+ "default.handlebars->27->880"
6756
]
6757
},
6758
{
@@ -6767,7 +6769,7 @@
6769
"zh-chs": "克羅地亞語",
6770
"es": "Croata",
6771
"xloc": [
6770
- "default.handlebars->27->883"
6772
+ "default.handlebars->27->881"
6773
]
6774
},
6775
{
@@ -6908,7 +6910,7 @@
6910
"zh-chs": "捷克文",
6911
"es": "Checo",
6912
"xloc": [
6911
- "default.handlebars->27->884"
6913
+ "default.handlebars->27->882"
6914
]
6915
},
6916
{
@@ -6942,7 +6944,7 @@
6944
"zh-chs": "丹麥文",
6945
"es": "Danés",
6946
"xloc": [
6945
- "default.handlebars->27->885"
6947
+ "default.handlebars->27->883"
6948
]
6949
},
6950
{
@@ -6959,7 +6961,7 @@
6961
"ru": "DataChannel",
6962
"zh-chs": "數據通道",
6963
"xloc": [
6962
- "default.handlebars->27->668"
6964
+ "default.handlebars->27->666"
6965
]
6966
},
6967
{
@@ -6976,7 +6978,7 @@
6978
"ru": "Дата & Время",
6979
"zh-chs": "日期和時間",
6980
"xloc": [
6979
- "default.handlebars->27->1042"
6981
+ "default.handlebars->27->1040"
6982
]
6983
},
6984
{
@@ -6993,7 +6995,7 @@
6995
"ru": "День",
6996
"zh-chs": "天",
6997
"xloc": [
6996
- "default.handlebars->27->606"
6998
+ "default.handlebars->27->604"
6999
]
7000
},
7001
{
@@ -7010,7 +7012,7 @@
7012
"ru": "Деактивировать режим управления клиентом (CCM)",
7013
"zh-chs": "停用客戶端控制模式(CCM)",
7014
"xloc": [
7013
- "default.handlebars->27->1161"
7015
+ "default.handlebars->27->1159"
7016
]
7017
},
7018
{
@@ -7051,7 +7053,7 @@
7053
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
7054
"default.handlebars->27->1328",
7055
"default.handlebars->27->417",
7054
- "default.handlebars->27->721",
7056
+ "default.handlebars->27->719",
7057
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
7058
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
7059
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -7075,7 +7077,7 @@
7077
"zh-chs": "刪除帳戶",
7078
"xloc": [
7079
"default-mobile.handlebars->9->46",
7078
- "default.handlebars->27->1059"
7080
+ "default.handlebars->27->1057"
7081
]
7082
},
7083
{
@@ -7100,7 +7102,7 @@
7102
"zh-chs": "刪除裝置",
7103
"xloc": [
7104
"default-mobile.handlebars->9->202",
7103
- "default.handlebars->27->522"
7105
+ "default.handlebars->27->520"
7106
]
7107
},
7108
{
@@ -7119,8 +7121,8 @@
7121
"xloc": [
7122
"default-mobile.handlebars->9->286",
7123
"default-mobile.handlebars->9->289",
7122
- "default.handlebars->27->1154",
7123
- "default.handlebars->27->1184"
7124
+ "default.handlebars->27->1152",
7125
+ "default.handlebars->27->1182"
7126
]
7127
},
7128
{
@@ -7138,7 +7140,7 @@
7140
"zh-chs": "刪除節點",
7141
"xloc": [
7142
"default-mobile.handlebars->9->221",
7141
- "default.handlebars->27->632"
7143
+ "default.handlebars->27->630"
7144
]
7145
},
7146
{
@@ -7172,7 +7174,7 @@
7174
"ru": "Удалить пользователя",
7175
"zh-chs": "刪除用戶",
7176
"xloc": [
7175
- "default.handlebars->27->1537"
7177
+ "default.handlebars->27->1538"
7178
]
7179
},
7180
{
@@ -7189,8 +7191,8 @@
7191
"ru": "Удалить группу пользователей",
7192
"zh-chs": "刪除用戶組",
7193
"xloc": [
7192
- "default.handlebars->27->1471",
7193
- "default.handlebars->27->1481"
7194
+ "default.handlebars->27->1472",
7195
+ "default.handlebars->27->1482"
7196
]
7197
},
7198
{
@@ -7207,7 +7209,7 @@
7209
"ru": "Удалить пользователя {0}",
7210
"zh-chs": "刪除用戶{0}",
7211
"xloc": [
7210
- "default.handlebars->27->1554"
7212
+ "default.handlebars->27->1555"
7213
]
7214
},
7215
{
@@ -7280,7 +7282,7 @@
7282
"default-mobile.handlebars->9->252",
7283
"default-mobile.handlebars->9->86",
7284
"default.handlebars->27->1330",
7283
- "default.handlebars->27->723"
7285
+ "default.handlebars->27->721"
7286
]
7287
},
7288
{
@@ -7297,7 +7299,7 @@
7299
"ru": "Удалить группу пользователей {0}?",
7300
"zh-chs": "刪除用戶組{0}?",
7301
"xloc": [
7300
- "default.handlebars->27->1479"
7302
+ "default.handlebars->27->1480"
7303
]
7304
},
7305
{
@@ -7317,7 +7319,7 @@
7319
"default-mobile.handlebars->9->251",
7320
"default-mobile.handlebars->9->85",
7321
"default.handlebars->27->1329",
7320
- "default.handlebars->27->722"
7322
+ "default.handlebars->27->720"
7323
]
7324
},
7325
{
@@ -7417,17 +7419,17 @@
7419
"default-mobile.handlebars->9->278",
7420
"default-mobile.handlebars->9->291",
7421
"default-mobile.handlebars->9->63",
7420
- "default.handlebars->27->1079",
7421
- "default.handlebars->27->1103",
7422
- "default.handlebars->27->1186",
7422
+ "default.handlebars->27->1077",
7423
+ "default.handlebars->27->1101",
7424
+ "default.handlebars->27->1184",
7425
"default.handlebars->27->1443",
7426
"default.handlebars->27->1448",
7427
"default.handlebars->27->1450",
7426
- "default.handlebars->27->1477",
7427
- "default.handlebars->27->457",
7428
- "default.handlebars->27->458",
7429
- "default.handlebars->27->664",
7430
- "default.handlebars->27->767",
7428
+ "default.handlebars->27->1478",
7429
+ "default.handlebars->27->455",
7430
+ "default.handlebars->27->456",
7431
+ "default.handlebars->27->662",
7432
+ "default.handlebars->27->765",
7433
"default.handlebars->27->78",
7434
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
7435
]
@@ -7460,7 +7462,7 @@
7462
"ru": "Рабочий стол",
7463
"zh-chs": "桌面",
7464
"xloc": [
7463
- "default.handlebars->27->1191",
7465
+ "default.handlebars->27->1189",
7466
"default.handlebars->27->423",
7467
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
7468
"default.handlebars->contextMenu->cxdesktop"
@@ -7497,9 +7499,9 @@
7499
"ru": "Уведомление на рабочем столе",
7500
"zh-chs": "桌面通知",
7501
"xloc": [
7500
- "default.handlebars->27->1113",
7501
- "default.handlebars->27->1518",
7502
- "default.handlebars->27->492"
7502
+ "default.handlebars->27->1111",
7503
+ "default.handlebars->27->1519",
7504
+ "default.handlebars->27->490"
7505
]
7506
},
7507
{
@@ -7516,9 +7518,9 @@
7518
"ru": "Запрос рабочего стола",
7519
"zh-chs": "桌面提示",
7520
"xloc": [
7519
- "default.handlebars->27->1112",
7520
- "default.handlebars->27->1517",
7521
- "default.handlebars->27->491"
7521
+ "default.handlebars->27->1110",
7522
+ "default.handlebars->27->1518",
7523
+ "default.handlebars->27->489"
7524
]
7525
},
7526
{
@@ -7535,9 +7537,9 @@
7537
"ru": "Запрос рабочего стола + панель инструментов",
7538
"zh-chs": "桌面提示+工具欄",
7539
"xloc": [
7538
- "default.handlebars->27->1110",
7539
- "default.handlebars->27->1515",
7540
- "default.handlebars->27->489"
7540
+ "default.handlebars->27->1108",
7541
+ "default.handlebars->27->1516",
7542
+ "default.handlebars->27->487"
7543
]
7544
},
7545
{
@@ -7554,9 +7556,9 @@
7556
"ru": "Панель инструментов рабочего стола",
7557
"zh-chs": "桌面工具欄",
7558
"xloc": [
7557
- "default.handlebars->27->1111",
7558
- "default.handlebars->27->1516",
7559
- "default.handlebars->27->490"
7559
+ "default.handlebars->27->1109",
7560
+ "default.handlebars->27->1517",
7561
+ "default.handlebars->27->488"
7562
]
7563
},
7564
{
@@ -7625,8 +7627,8 @@
7627
"ru": "Устройство",
7628
"zh-chs": "設備",
7629
"xloc": [
7628
- "default.handlebars->27->1213",
7629
- "default.handlebars->27->1560",
7630
+ "default.handlebars->27->1211",
7631
+ "default.handlebars->27->1561",
7632
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
7633
]
7634
},
@@ -7645,7 +7647,7 @@
7647
"zh-chs": "設備動作",
7648
"xloc": [
7649
"default-mobile.handlebars->9->214",
7648
- "default.handlebars->27->605"
7650
+ "default.handlebars->27->603"
7651
]
7652
},
7653
{
@@ -7662,12 +7664,12 @@
7664
"ru": "Группа устройства",
7665
"zh-chs": "設備組",
7666
"xloc": [
7665
- "default.handlebars->27->1208",
7666
- "default.handlebars->27->1211",
7667
- "default.handlebars->27->1212",
7667
+ "default.handlebars->27->1206",
7668
+ "default.handlebars->27->1209",
7669
+ "default.handlebars->27->1210",
7670
"default.handlebars->27->1464",
7669
- "default.handlebars->27->1469",
7670
- "default.handlebars->27->1566"
7671
+ "default.handlebars->27->1470",
7672
+ "default.handlebars->27->1567"
7673
]
7674
},
7675
{
@@ -7705,8 +7707,8 @@
7707
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
7708
"default.handlebars->27->1439",
7709
"default.handlebars->27->1452",
7708
- "default.handlebars->27->1512",
7709
- "default.handlebars->27->1612",
7710
+ "default.handlebars->27->1513",
7711
+ "default.handlebars->27->1613",
7712
"default.handlebars->container->column_l->p2->9"
7713
]
7714
},
@@ -7741,7 +7743,7 @@
7743
"ru": "Местонахождение устройства",
7744
"zh-chs": "設備位置",
7745
"xloc": [
7744
- "default.handlebars->27->633"
7746
+ "default.handlebars->27->631"
7747
]
7748
},
7749
{
@@ -7760,7 +7762,7 @@
7762
"xloc": [
7763
"default-mobile.handlebars->9->225",
7764
"default.handlebars->27->222",
7763
- "default.handlebars->27->662",
7765
+ "default.handlebars->27->660",
7766
"player.handlebars->3->9"
7767
]
7768
},
@@ -7778,7 +7780,7 @@
7780
"ru": "Уведомление устройства",
7781
"zh-chs": "設備通知",
7782
"xloc": [
7781
- "default.handlebars->27->596"
7783
+ "default.handlebars->27->594"
7784
]
7785
},
7786
{
@@ -7812,7 +7814,7 @@
7814
"ru": "Подключения устройств.",
7815
"zh-chs": "設備連接。",
7816
"xloc": [
7815
- "default.handlebars->27->1047",
7817
+ "default.handlebars->27->1045",
7818
"default.handlebars->27->1288"
7819
]
7820
},
@@ -7830,7 +7832,7 @@
7832
"ru": "Отключения устройств.",
7833
"zh-chs": "設備斷開連接。",
7834
"xloc": [
7833
- "default.handlebars->27->1048",
7835
+ "default.handlebars->27->1046",
7836
"default.handlebars->27->1289"
7837
]
7838
},
@@ -7848,7 +7850,7 @@
7850
"ru": "Примечания могут быть просмотрены и изменены другими администраторами.",
7851
"zh-chs": "其他設備組管理員可以查看和更改設備組註釋。",
7852
"xloc": [
7851
- "default.handlebars->27->594"
7853
+ "default.handlebars->27->592"
7854
]
7855
},
7856
{
@@ -8144,7 +8146,7 @@
8146
"ru": "Отключено",
8147
"zh-chs": "殘障人士",
8148
"xloc": [
8147
- "default.handlebars->27->484"
8149
+ "default.handlebars->27->482"
8150
]
8151
},
8152
{
@@ -8163,8 +8165,8 @@
8165
"xloc": [
8166
"default-mobile.handlebars->9->238",
8167
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8166
- "default.handlebars->27->1123",
8167
- "default.handlebars->27->712",
8168
+ "default.handlebars->27->1121",
8169
+ "default.handlebars->27->710",
8170
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
8171
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
8172
"xterm.handlebars->p11->deskarea0->deskarea1->3"
@@ -8246,7 +8248,7 @@
8248
"ru": "Отобразить имя группы устройств",
8249
"zh-chs": "顯示設備組名稱",
8250
"xloc": [
8249
- "default.handlebars->27->1046"
8251
+ "default.handlebars->27->1044"
8252
]
8253
},
8254
{
@@ -8263,7 +8265,7 @@
8265
"ru": "Отображаемое имя",
8266
"zh-chs": "顯示名稱",
8267
"xloc": [
8266
- "default.handlebars->27->683"
8268
+ "default.handlebars->27->681"
8269
]
8270
},
8271
{
@@ -8294,7 +8296,7 @@
8296
"ru": "Ничего не делать",
8297
"zh-chs": "沒做什麼",
8298
"xloc": [
8297
- "default.handlebars->27->1167"
8299
+ "default.handlebars->27->1165"
8300
]
8301
},
8302
{
@@ -8329,8 +8331,8 @@
8331
"ru": "Не настраивать",
8332
"zh-chs": "不要配置",
8333
"xloc": [
8332
- "default.handlebars->27->1171",
8333
- "default.handlebars->27->1176"
8334
+ "default.handlebars->27->1169",
8335
+ "default.handlebars->27->1174"
8336
]
8337
},
8338
{
@@ -8347,7 +8349,7 @@
8349
"ru": "Не подключаться к серверу",
8350
"zh-chs": "不連接服務器",
8351
"xloc": [
8350
- "default.handlebars->27->1172"
8352
+ "default.handlebars->27->1170"
8353
]
8354
},
8355
{
@@ -8401,7 +8403,7 @@
8403
"zh-chs": "下載文件",
8404
"xloc": [
8405
"default-mobile.handlebars->9->271",
8404
- "default.handlebars->27->741"
8406
+ "default.handlebars->27->739"
8407
]
8408
},
8409
{
@@ -8435,7 +8437,7 @@
8437
"ru": "Скачать MeshCmd",
8438
"zh-chs": "下載MeshCmd",
8439
"xloc": [
8438
- "default.handlebars->27->653"
8440
+ "default.handlebars->27->651"
8441
]
8442
},
8443
{
@@ -8486,7 +8488,7 @@
8488
"ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.",
8489
"zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。",
8490
"xloc": [
8489
- "default.handlebars->27->646"
8491
+ "default.handlebars->27->644"
8492
]
8493
},
8494
{
@@ -8554,7 +8556,7 @@
8556
"ru": "Скачать события состояния питания",
8557
"zh-chs": "下載電源事件",
8558
"xloc": [
8557
- "default.handlebars->27->607"
8559
+ "default.handlebars->27->605"
8560
]
8561
},
8562
{
@@ -8725,7 +8727,7 @@
8727
"ru": "Скопировать агент",
8728
"zh-chs": "代理重複",
8729
"xloc": [
8728
- "default.handlebars->27->1608"
8730
+ "default.handlebars->27->1609"
8731
]
8732
},
8733
{
@@ -8793,7 +8795,7 @@
8795
"ru": "Во время активации агент будет иметь доступ к паролю администратора.",
8796
"zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。",
8797
"xloc": [
8796
- "default.handlebars->27->1181"
8798
+ "default.handlebars->27->1179"
8799
]
8800
},
8801
{
@@ -8810,7 +8812,7 @@
8812
"zh-chs": "荷蘭語(比利時)",
8813
"es": "Holandés (belga)",
8814
"xloc": [
8813
- "default.handlebars->27->887"
8815
+ "default.handlebars->27->885"
8816
]
8817
},
8818
{
@@ -8827,7 +8829,7 @@
8829
"zh-chs": "荷蘭語(標準)",
8830
"es": "Holandés (estándar)",
8831
"xloc": [
8830
- "default.handlebars->27->886"
8832
+ "default.handlebars->27->884"
8833
]
8834
},
8835
{
@@ -8914,7 +8916,7 @@
8916
"zh-chs": "編輯裝置",
8917
"xloc": [
8918
"default-mobile.handlebars->9->230",
8917
- "default.handlebars->27->667"
8919
+ "default.handlebars->27->665"
8920
]
8921
},
8922
{
@@ -8934,8 +8936,8 @@
8936
"default-mobile.handlebars->9->292",
8937
"default-mobile.handlebars->9->294",
8938
"default-mobile.handlebars->9->312",
8937
- "default.handlebars->27->1187",
8938
- "default.handlebars->27->1217",
8939
+ "default.handlebars->27->1185",
8940
+ "default.handlebars->27->1215",
8941
"default.handlebars->27->1247"
8942
]
8943
},
@@ -8953,7 +8955,7 @@
8955
"ru": "Редактировать функции группы устройств",
8956
"zh-chs": "編輯設備組功能",
8957
"xloc": [
8956
- "default.handlebars->27->1203"
8958
+ "default.handlebars->27->1201"
8959
]
8960
},
8961
{
@@ -8987,7 +8989,7 @@
8989
"ru": "Редактировать согласие пользователя группы устройств",
8990
"zh-chs": "編輯設備組用戶同意",
8991
"xloc": [
8990
- "default.handlebars->27->1188"
8992
+ "default.handlebars->27->1186"
8993
]
8994
},
8995
{
@@ -9005,7 +9007,7 @@
9007
"zh-chs": "編輯設備說明",
9008
"xloc": [
9009
"default-mobile.handlebars->9->306",
9008
- "default.handlebars->27->1230"
9010
+ "default.handlebars->27->1228"
9011
]
9012
},
9013
{
@@ -9019,13 +9021,14 @@
9021
"zh-chs": "编辑设备权限",
9022
"es": "Editar los permisos del dispositivo",
9023
"xloc": [
9024
+ "default.handlebars->27->1237",
9025
"default.handlebars->27->1239"
9026
]
9027
},
9028
{
9029
"en": "Edit Device User Consent",
9030
"xloc": [
9028
- "default.handlebars->27->1190"
9031
+ "default.handlebars->27->1188"
9032
]
9033
},
9034
{
@@ -9039,7 +9042,7 @@
9042
"zh-chs": "编辑组",
9043
"es": "Editar Grupo",
9044
"xloc": [
9042
- "default.handlebars->27->573"
9045
+ "default.handlebars->27->571"
9046
]
9047
},
9048
{
@@ -9057,9 +9060,9 @@
9060
"zh-chs": "編輯英特爾®AMT憑據",
9061
"xloc": [
9062
"default-mobile.handlebars->9->220",
9060
- "default.handlebars->27->472",
9061
- "default.handlebars->27->475",
9062
- "default.handlebars->27->614"
9063
+ "default.handlebars->27->470",
9064
+ "default.handlebars->27->473",
9065
+ "default.handlebars->27->612"
9066
]
9067
},
9068
{
@@ -9083,7 +9086,7 @@
9086
{
9087
"en": "Edit User Consent",
9088
"xloc": [
9086
- "default.handlebars->27->1189"
9089
+ "default.handlebars->27->1187"
9090
]
9091
},
9092
{
@@ -9132,7 +9135,7 @@
9135
"ru": "Редактировать группу пользователей",
9136
"zh-chs": "編輯用戶組",
9137
"xloc": [
9135
- "default.handlebars->27->1478"
9138
+ "default.handlebars->27->1479"
9139
]
9140
},
9141
{
@@ -9168,9 +9171,9 @@
9171
"xloc": [
9172
"default-mobile.handlebars->9->40",
9173
"default.handlebars->27->1411",
9171
- "default.handlebars->27->1499",
9174
"default.handlebars->27->1500",
9173
- "default.handlebars->27->1542",
9175
+ "default.handlebars->27->1501",
9176
+ "default.handlebars->27->1543",
9177
"default.handlebars->27->270",
9178
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
9179
"login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3"
@@ -9191,7 +9194,7 @@
9194
"zh-chs": "電郵地址變更",
9195
"xloc": [
9196
"default-mobile.handlebars->9->41",
9194
- "default.handlebars->27->1055"
9197
+ "default.handlebars->27->1053"
9198
]
9199
},
9200
{
@@ -9209,7 +9212,7 @@
9212
"es": "Email de autenticación",
9213
"xloc": [
9214
"default-mobile.handlebars->9->30",
9212
- "default.handlebars->27->824"
9215
+ "default.handlebars->27->822"
9216
]
9217
},
9218
{
@@ -9223,7 +9226,7 @@
9226
"zh-chs": "电子邮件流量",
9227
"es": "Tráfico de correo electrónico",
9228
"xloc": [
9226
- "default.handlebars->27->1647"
9229
+ "default.handlebars->27->1648"
9230
]
9231
},
9232
{
@@ -9241,7 +9244,7 @@
9244
"zh-chs": "電子郵件驗證",
9245
"xloc": [
9246
"default-mobile.handlebars->9->39",
9244
- "default.handlebars->27->1053"
9247
+ "default.handlebars->27->1051"
9248
]
9249
},
9250
{
@@ -9281,7 +9284,7 @@
9284
"zh-chs": "電子郵件已驗證",
9285
"xloc": [
9286
"default.handlebars->27->1374",
9284
- "default.handlebars->27->1496"
9287
+ "default.handlebars->27->1497"
9288
]
9289
},
9290
{
@@ -9315,7 +9318,7 @@
9318
"ru": "Email не подтвержден",
9319
"zh-chs": "電子郵件未驗證",
9320
"xloc": [
9318
- "default.handlebars->27->1497"
9321
+ "default.handlebars->27->1498"
9322
]
9323
},
9324
{
@@ -9407,7 +9410,7 @@
9410
"es": "Habilitar autenticación de dos factores por correo.",
9411
"xloc": [
9412
"default-mobile.handlebars->9->32",
9410
- "default.handlebars->27->826"
9413
+ "default.handlebars->27->824"
9414
]
9415
},
9416
{
@@ -9458,7 +9461,7 @@
9461
"ru": "Английский",
9462
"zh-chs": "英語",
9463
"xloc": [
9461
- "default.handlebars->27->888"
9464
+ "default.handlebars->27->886"
9465
]
9466
},
9467
{
@@ -9475,7 +9478,7 @@
9478
"zh-chs": "英文(澳洲)",
9479
"es": "Inglés (Australia)",
9480
"xloc": [
9478
- "default.handlebars->27->889"
9481
+ "default.handlebars->27->887"
9482
]
9483
},
9484
{
@@ -9492,7 +9495,7 @@
9495
"zh-chs": "英語(伯利茲)",
9496
"es": "Inglés (belice)",
9497
"xloc": [
9495
- "default.handlebars->27->890"
9498
+ "default.handlebars->27->888"
9499
]
9500
},
9501
{
@@ -9509,7 +9512,7 @@
9512
"zh-chs": "英文(加拿大)",
9513
"es": "Inglés (Canadá)",
9514
"xloc": [
9512
- "default.handlebars->27->891"
9515
+ "default.handlebars->27->889"
9516
]
9517
},
9518
{
@@ -9526,7 +9529,7 @@
9529
"zh-chs": "英文(愛爾蘭)",
9530
"es": "Inglés (Irlanda)",
9531
"xloc": [
9529
- "default.handlebars->27->892"
9532
+ "default.handlebars->27->890"
9533
]
9534
},
9535
{
@@ -9543,7 +9546,7 @@
9546
"zh-chs": "英文(牙買加)",
9547
"es": "Inglés (Jamaica)",
9548
"xloc": [
9546
- "default.handlebars->27->893"
9549
+ "default.handlebars->27->891"
9550
]
9551
},
9552
{
@@ -9560,7 +9563,7 @@
9563
"zh-chs": "英文(紐西蘭)",
9564
"es": "Inglés (Nueva Zelanda)",
9565
"xloc": [
9563
- "default.handlebars->27->894"
9566
+ "default.handlebars->27->892"
9567
]
9568
},
9569
{
@@ -9577,7 +9580,7 @@
9580
"zh-chs": "英文(菲律賓)",
9581
"es": "Inglés (Filipinas)",
9582
"xloc": [
9580
- "default.handlebars->27->895"
9583
+ "default.handlebars->27->893"
9584
]
9585
},
9586
{
@@ -9594,7 +9597,7 @@
9597
"zh-chs": "英語(南非)",
9598
"es": "Inglés (Sudáfrica)",
9599
"xloc": [
9597
- "default.handlebars->27->896"
9600
+ "default.handlebars->27->894"
9601
]
9602
},
9603
{
@@ -9611,7 +9614,7 @@
9614
"zh-chs": "英文(特立尼達和多巴哥)",
9615
"es": "Inglés (Trinidad y Tobago)",
9616
"xloc": [
9614
- "default.handlebars->27->897"
9617
+ "default.handlebars->27->895"
9618
]
9619
},
9620
{
@@ -9628,7 +9631,7 @@
9631
"zh-chs": "英文(英國)",
9632
"es": "Inglés (Reino Unido)",
9633
"xloc": [
9631
- "default.handlebars->27->898"
9634
+ "default.handlebars->27->896"
9635
]
9636
},
9637
{
@@ -9645,7 +9648,7 @@
9648
"zh-chs": "美國英語)",
9649
"es": "Inglés (Estados Unidos)",
9650
"xloc": [
9648
- "default.handlebars->27->899"
9651
+ "default.handlebars->27->897"
9652
]
9653
},
9654
{
@@ -9662,7 +9665,7 @@
9665
"zh-chs": "英文(津巴布韋)",
9666
"es": "Inglés (Zimbabwe)",
9667
"xloc": [
9665
- "default.handlebars->27->900"
9668
+ "default.handlebars->27->898"
9669
]
9670
},
9671
{
@@ -9679,8 +9682,8 @@
9682
"ru": "Ввод",
9683
"zh-chs": "輸入",
9684
"xloc": [
9682
- "default.handlebars->27->1081",
9683
- "default.handlebars->27->1082"
9685
+ "default.handlebars->27->1079",
9686
+ "default.handlebars->27->1080"
9687
]
9688
},
9689
{
@@ -9731,7 +9734,7 @@
9734
"ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.",
9735
"zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
9736
"xloc": [
9734
- "default.handlebars->27->677"
9737
+ "default.handlebars->27->675"
9738
]
9739
},
9740
{
@@ -9817,7 +9820,7 @@
9820
"zh-chs": "世界語",
9821
"es": "Esperanto",
9822
"xloc": [
9820
- "default.handlebars->27->901"
9823
+ "default.handlebars->27->899"
9824
]
9825
},
9826
{
@@ -9834,7 +9837,7 @@
9837
"zh-chs": "愛沙尼亞語",
9838
"es": "Estonio",
9839
"xloc": [
9837
- "default.handlebars->27->902"
9840
+ "default.handlebars->27->900"
9841
]
9842
},
9843
{
@@ -9851,7 +9854,7 @@
9854
"ru": "Детали события",
9855
"zh-chs": "活動詳情",
9856
"xloc": [
9854
- "default.handlebars->27->754"
9857
+ "default.handlebars->27->752"
9858
]
9859
},
9860
{
@@ -9957,7 +9960,7 @@
9960
"ru": "Расширенный ASCII",
9961
"zh-chs": "擴展ASCII",
9962
"xloc": [
9960
- "default.handlebars->27->703"
9963
+ "default.handlebars->27->701"
9964
]
9965
},
9966
{
@@ -9991,7 +9994,7 @@
9994
"ru": "Внешний",
9995
"zh-chs": "外部",
9996
"xloc": [
9994
- "default.handlebars->27->1632"
9997
+ "default.handlebars->27->1633"
9998
]
9999
},
10000
{
@@ -10008,7 +10011,7 @@
10011
"zh-chs": "FYRO馬其頓語",
10012
"es": "Macedonio Macedonia",
10013
"xloc": [
10011
- "default.handlebars->27->952"
10014
+ "default.handlebars->27->950"
10015
]
10016
},
10017
{
@@ -10025,7 +10028,7 @@
10028
"zh-chs": "法羅語",
10029
"es": "Faeroese",
10030
"xloc": [
10028
- "default.handlebars->27->903"
10031
+ "default.handlebars->27->901"
10032
]
10033
},
10034
{
@@ -10059,7 +10062,7 @@
10062
"zh-chs": "波斯語(波斯語)",
10063
"es": "Farsi (Persa)",
10064
"xloc": [
10062
- "default.handlebars->27->904"
10065
+ "default.handlebars->27->902"
10066
]
10067
},
10068
{
@@ -10094,7 +10097,7 @@
10097
"ru": "Функции",
10098
"zh-chs": "特徵",
10099
"xloc": [
10097
- "default.handlebars->27->1109"
10100
+ "default.handlebars->27->1107"
10101
]
10102
},
10103
{
@@ -10111,7 +10114,7 @@
10114
"zh-chs": "斐濟",
10115
"es": "Fiyiano",
10116
"xloc": [
10114
- "default.handlebars->27->905"
10117
+ "default.handlebars->27->903"
10118
]
10119
},
10120
{
@@ -10130,7 +10133,7 @@
10133
"xloc": [
10134
"default-mobile.handlebars->9->255",
10135
"default.handlebars->27->415",
10133
- "default.handlebars->27->726"
10136
+ "default.handlebars->27->724"
10137
]
10138
},
10139
{
@@ -10164,7 +10167,7 @@
10167
"ru": "Драйвер файловой системы",
10168
"zh-chs": "FileSystemDriver",
10169
"xloc": [
10167
- "default.handlebars->27->686"
10170
+ "default.handlebars->27->684"
10171
]
10172
},
10173
{
@@ -10181,7 +10184,7 @@
10184
"ru": "Файлы",
10185
"zh-chs": "檔案",
10186
"xloc": [
10184
- "default.handlebars->27->1198",
10187
+ "default.handlebars->27->1196",
10188
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
10189
"default.handlebars->contextMenu->cxfiles"
10190
]
@@ -10217,9 +10220,9 @@
10220
"ru": "Уведомление файлов",
10221
"zh-chs": "文件通知",
10222
"xloc": [
10220
- "default.handlebars->27->1117",
10221
- "default.handlebars->27->1522",
10222
- "default.handlebars->27->496"
10223
+ "default.handlebars->27->1115",
10224
+ "default.handlebars->27->1523",
10225
+ "default.handlebars->27->494"
10226
]
10227
},
10228
{
@@ -10236,9 +10239,9 @@
10239
"ru": "Запрос файлов",
10240
"zh-chs": "文件提示",
10241
"xloc": [
10239
- "default.handlebars->27->1116",
10240
- "default.handlebars->27->1521",
10241
- "default.handlebars->27->495"
10242
+ "default.handlebars->27->1114",
10243
+ "default.handlebars->27->1522",
10244
+ "default.handlebars->27->493"
10245
]
10246
},
10247
{
@@ -10273,7 +10276,7 @@
10276
"ru": "Финский",
10277
"zh-chs": "芬蘭",
10278
"xloc": [
10276
- "default.handlebars->27->906"
10279
+ "default.handlebars->27->904"
10280
]
10281
},
10282
{
@@ -10391,7 +10394,7 @@
10394
"zh-chs": "下次登錄時強制重置密碼。",
10395
"xloc": [
10396
"default.handlebars->27->1415",
10394
- "default.handlebars->27->1551"
10397
+ "default.handlebars->27->1552"
10398
]
10399
},
10400
{
@@ -10477,8 +10480,8 @@
10480
"ru": "Свободно",
10481
"zh-chs": "自由",
10482
"xloc": [
10480
- "default.handlebars->27->1593",
10481
- "default.handlebars->27->1595"
10483
+ "default.handlebars->27->1594",
10484
+ "default.handlebars->27->1596"
10485
]
10486
},
10487
{
@@ -10513,7 +10516,7 @@
10516
"zh-chs": "法語(比利時)",
10517
"es": "Francés (Bélgica)",
10518
"xloc": [
10516
- "default.handlebars->27->908"
10519
+ "default.handlebars->27->906"
10520
]
10521
},
10522
{
@@ -10530,7 +10533,7 @@
10533
"zh-chs": "法語(加拿大)",
10534
"es": "Francés (Canadá)",
10535
"xloc": [
10533
- "default.handlebars->27->909"
10536
+ "default.handlebars->27->907"
10537
]
10538
},
10539
{
@@ -10547,7 +10550,7 @@
10550
"zh-chs": "法語(法國)",
10551
"es": "Francés (Francia)",
10552
"xloc": [
10550
- "default.handlebars->27->910"
10553
+ "default.handlebars->27->908"
10554
]
10555
},
10556
{
@@ -10564,7 +10567,7 @@
10567
"zh-chs": "法語(盧森堡)",
10568
"es": "Francés (Luxemburgo)",
10569
"xloc": [
10567
- "default.handlebars->27->911"
10570
+ "default.handlebars->27->909"
10571
]
10572
},
10573
{
@@ -10581,7 +10584,7 @@
10584
"zh-chs": "法語(摩納哥)",
10585
"es": "Francés (Mónaco)",
10586
"xloc": [
10584
- "default.handlebars->27->912"
10587
+ "default.handlebars->27->910"
10588
]
10589
},
10590
{
@@ -10598,7 +10601,7 @@
10601
"zh-chs": "法語(標準)",
10602
"es": "Francés (estándar)",
10603
"xloc": [
10601
- "default.handlebars->27->907"
10604
+ "default.handlebars->27->905"
10605
]
10606
},
10607
{
@@ -10615,7 +10618,7 @@
10618
"zh-chs": "法語(瑞士)",
10619
"es": "Francés (Suiza)",
10620
"xloc": [
10618
- "default.handlebars->27->913"
10621
+ "default.handlebars->27->911"
10622
]
10623
},
10624
{
@@ -10632,7 +10635,7 @@
10635
"zh-chs": "弗里斯蘭語",
10636
"es": "Friso",
10637
"xloc": [
10635
- "default.handlebars->27->914"
10638
+ "default.handlebars->27->912"
10639
]
10640
},
10641
{
@@ -10649,7 +10652,7 @@
10652
"zh-chs": "弗留利",
10653
"es": "Friuliano",
10654
"xloc": [
10652
- "default.handlebars->27->915"
10655
+ "default.handlebars->27->913"
10656
]
10657
},
10658
{
@@ -10670,8 +10673,8 @@
10673
"default-mobile.handlebars->9->293",
10674
"default-mobile.handlebars->9->311",
10675
"default-mobile.handlebars->9->67",
10673
- "default.handlebars->27->1088",
10674
- "default.handlebars->27->1216",
10676
+ "default.handlebars->27->1086",
10677
+ "default.handlebars->27->1214",
10678
"default.handlebars->27->1427"
10679
]
10680
},
@@ -10720,7 +10723,7 @@
10723
"zh-chs": "完整的設備權限",
10724
"es": "Derechos completos del dispositivo",
10725
"xloc": [
10723
- "default.handlebars->27->556"
10726
+ "default.handlebars->27->554"
10727
]
10728
},
10729
{
@@ -10734,7 +10737,7 @@
10737
"zh-chs": "完全权利",
10738
"es": "Derechos Completos",
10739
"xloc": [
10737
- "default.handlebars->27->572"
10740
+ "default.handlebars->27->570"
10741
]
10742
},
10743
{
@@ -10770,7 +10773,7 @@
10773
"ru": "Администратор с полным доступом",
10774
"zh-chs": "正式管理員",
10775
"xloc": [
10773
- "default.handlebars->27->1492"
10776
+ "default.handlebars->27->1493"
10777
]
10778
},
10779
{
@@ -10787,7 +10790,7 @@
10790
"zh-chs": "蓋爾語(愛爾蘭)",
10791
"es": "Gaélico (Irlandés)",
10792
"xloc": [
10790
- "default.handlebars->27->917"
10793
+ "default.handlebars->27->915"
10794
]
10795
},
10796
{
@@ -10804,7 +10807,7 @@
10807
"zh-chs": "蓋爾語(蘇格蘭語)",
10808
"es": "Gaélico (Escocés)",
10809
"xloc": [
10807
- "default.handlebars->27->916"
10810
+ "default.handlebars->27->914"
10811
]
10812
},
10813
{
@@ -10821,7 +10824,7 @@
10824
"zh-chs": "加拉契人",
10825
"es": "Gallego",
10826
"xloc": [
10824
- "default.handlebars->27->918"
10827
+ "default.handlebars->27->916"
10828
]
10829
},
10830
{
@@ -10928,7 +10931,7 @@
10931
"zh-chs": "格魯吉亞人",
10932
"es": "Georgiano",
10933
"xloc": [
10931
- "default.handlebars->27->919"
10934
+ "default.handlebars->27->917"
10935
]
10936
},
10937
{
@@ -10945,7 +10948,7 @@
10948
"zh-chs": "德語(奧地利)",
10949
"es": "Alemán (Austria)",
10950
"xloc": [
10948
- "default.handlebars->27->921"
10951
+ "default.handlebars->27->919"
10952
]
10953
},
10954
{
@@ -10962,7 +10965,7 @@
10965
"zh-chs": "德文(德國)",
10966
"es": "Alemán (Alemania)",
10967
"xloc": [
10965
- "default.handlebars->27->922"
10968
+ "default.handlebars->27->920"
10969
]
10970
},
10971
{
@@ -10979,7 +10982,7 @@
10982
"zh-chs": "德文(列支敦士登)",
10983
"es": "Alemán (Liechtenstein)",
10984
"xloc": [
10982
- "default.handlebars->27->923"
10985
+ "default.handlebars->27->921"
10986
]
10987
},
10988
{
@@ -10996,7 +10999,7 @@
10999
"zh-chs": "德語(盧森堡)",
11000
"es": "Alemán (Luxemburgo)",
11001
"xloc": [
10999
- "default.handlebars->27->924"
11002
+ "default.handlebars->27->922"
11003
]
11004
},
11005
{
@@ -11013,7 +11016,7 @@
11016
"zh-chs": "德語(標準)",
11017
"es": "Alemán (Estándar)",
11018
"xloc": [
11016
- "default.handlebars->27->920"
11019
+ "default.handlebars->27->918"
11020
]
11021
},
11022
{
@@ -11030,7 +11033,7 @@
11033
"zh-chs": "德語(瑞士)",
11034
"es": "Alemán (Suiza)",
11035
"xloc": [
11033
- "default.handlebars->27->925"
11036
+ "default.handlebars->27->923"
11037
]
11038
},
11039
{
@@ -11047,7 +11050,7 @@
11050
"ru": "Получить учетные данные MQTT для этого устройства.",
11051
"zh-chs": "獲取此設備的MQTT登錄憑據。",
11052
"xloc": [
11050
- "default.handlebars->27->537"
11053
+ "default.handlebars->27->535"
11054
]
11055
},
11056
{
@@ -11100,7 +11103,7 @@
11103
"ru": "Хорошо",
11104
"zh-chs": "好",
11105
"xloc": [
11103
- "default.handlebars->27->1084"
11106
+ "default.handlebars->27->1082"
11107
]
11108
},
11109
{
@@ -11137,7 +11140,7 @@
11140
"zh-chs": "希臘語",
11141
"es": "Griego",
11142
"xloc": [
11140
- "default.handlebars->27->926"
11143
+ "default.handlebars->27->924"
11144
]
11145
},
11146
{
@@ -11210,7 +11213,7 @@
11213
"ru": "Права на группу для пользователя {0}.",
11214
"zh-chs": "用戶{0}的組權限。",
11215
"xloc": [
11213
- "default.handlebars->27->1215"
11216
+ "default.handlebars->27->1213"
11217
]
11218
},
11219
{
@@ -11227,7 +11230,7 @@
11230
"ru": "Права на группу для {0}.",
11231
"zh-chs": "{0}的組權限。",
11232
"xloc": [
11230
- "default.handlebars->27->1214"
11233
+ "default.handlebars->27->1212"
11234
]
11235
},
11236
{
@@ -11279,7 +11282,7 @@
11282
"zh-chs": "古久拉提",
11283
"es": "Gujarati",
11284
"xloc": [
11282
- "default.handlebars->27->927"
11285
+ "default.handlebars->27->925"
11286
]
11287
},
11288
{
@@ -11315,7 +11318,7 @@
11318
"zh-chs": "海地",
11319
"es": "Haitiano",
11320
"xloc": [
11318
- "default.handlebars->27->928"
11321
+ "default.handlebars->27->926"
11322
]
11323
},
11324
{
@@ -11349,7 +11352,7 @@
11352
"ru": "Жесткое отключение агента",
11353
"zh-chs": "硬斷開劑",
11354
"xloc": [
11352
- "default.handlebars->27->822"
11355
+ "default.handlebars->27->820"
11356
]
11357
},
11358
{
@@ -11366,7 +11369,7 @@
11369
"ru": "Всего кучи",
11370
"zh-chs": "堆總數",
11371
"xloc": [
11369
- "default.handlebars->27->1634"
11372
+ "default.handlebars->27->1635"
11373
]
11374
},
11375
{
@@ -11383,7 +11386,7 @@
11386
"ru": "Куча используется",
11387
"zh-chs": "堆使用",
11388
"xloc": [
11386
- "default.handlebars->27->1633"
11389
+ "default.handlebars->27->1634"
11390
]
11391
},
11392
{
@@ -11400,7 +11403,7 @@
11403
"ru": "Иврит",
11404
"zh-chs": "希伯來語",
11405
"xloc": [
11403
- "default.handlebars->27->929"
11406
+ "default.handlebars->27->927"
11407
]
11408
},
11409
{
@@ -11432,7 +11435,7 @@
11435
"ru": "Помочь перевести MeshCentral",
11436
"zh-chs": "幫助翻譯MeshCentral",
11437
"xloc": [
11435
- "default.handlebars->27->1043"
11438
+ "default.handlebars->27->1041"
11439
]
11440
},
11441
{
@@ -11512,7 +11515,7 @@
11515
"ru": "Хинди",
11516
"zh-chs": "印地語",
11517
"xloc": [
11515
- "default.handlebars->27->930"
11518
+ "default.handlebars->27->928"
11519
]
11520
},
11521
{
@@ -11548,7 +11551,7 @@
11551
"zh-chs": "持有1份副本",
11552
"xloc": [
11553
"default-mobile.handlebars->9->264",
11551
- "default.handlebars->27->735"
11554
+ "default.handlebars->27->733"
11555
]
11556
},
11557
{
@@ -11566,7 +11569,7 @@
11569
"zh-chs": "持有1個搬家公司",
11570
"xloc": [
11571
"default-mobile.handlebars->9->268",
11569
- "default.handlebars->27->739"
11572
+ "default.handlebars->27->737"
11573
]
11574
},
11575
{
@@ -11584,7 +11587,7 @@
11587
"zh-chs": "保留{0}個條目進行複制",
11588
"xloc": [
11589
"default-mobile.handlebars->9->262",
11587
- "default.handlebars->27->733"
11590
+ "default.handlebars->27->731"
11591
]
11592
},
11593
{
@@ -11602,7 +11605,7 @@
11605
"zh-chs": "保留{0}個條目以進行移動",
11606
"xloc": [
11607
"default-mobile.handlebars->9->266",
11605
- "default.handlebars->27->737"
11608
+ "default.handlebars->27->735"
11609
]
11610
},
11611
{
@@ -11643,9 +11646,7 @@
11646
"default-mobile.handlebars->9->226",
11647
"default.handlebars->27->223",
11648
"default.handlebars->27->452",
11646
- "default.handlebars->27->453",
11647
- "default.handlebars->27->455",
11648
- "default.handlebars->27->663"
11649
+ "default.handlebars->27->661"
11650
]
11651
},
11652
{
@@ -11662,7 +11663,7 @@
11663
"ru": "Синхронизация имени хоста",
11664
"zh-chs": "主機名同步",
11665
"xloc": [
11665
- "default.handlebars->27->1107"
11666
+ "default.handlebars->27->1105"
11667
]
11668
},
11669
{
@@ -11679,7 +11680,7 @@
11680
"zh-chs": "匈牙利",
11681
"es": "Hungaro",
11682
"xloc": [
11682
- "default.handlebars->27->931"
11683
+ "default.handlebars->27->929"
11684
]
11685
},
11686
{
@@ -11731,7 +11732,7 @@
11732
"ru": "IP: {0}",
11733
"zh-chs": "IP:{0}",
11734
"xloc": [
11734
- "default.handlebars->27->775"
11735
+ "default.handlebars->27->773"
11736
]
11737
},
11738
{
@@ -11748,7 +11749,7 @@
11749
"zh-chs": "IP:{0},掩碼:{1},網關:{2}",
11750
"es": "IP: {0}, Mascara: {1}, Puerta de Enlace: {2}",
11751
"xloc": [
11751
- "default.handlebars->27->773"
11752
+ "default.handlebars->27->771"
11753
]
11754
},
11755
{
@@ -11765,8 +11766,8 @@
11766
"zh-chs": "IPv4層",
11767
"es": "Capa IPv4",
11768
"xloc": [
11768
- "default.handlebars->27->772",
11769
- "default.handlebars->27->774"
11769
+ "default.handlebars->27->770",
11770
+ "default.handlebars->27->772"
11771
]
11772
},
11773
{
@@ -11834,7 +11835,7 @@
11835
"zh-chs": "冰島的",
11836
"es": "Islandés",
11837
"xloc": [
11837
- "default.handlebars->27->932"
11838
+ "default.handlebars->27->930"
11839
]
11840
},
11841
{
@@ -11852,7 +11853,7 @@
11853
"zh-chs": "圖標選擇",
11854
"xloc": [
11855
"default-mobile.handlebars->9->224",
11855
- "default.handlebars->27->661"
11856
+ "default.handlebars->27->659"
11857
]
11858
},
11859
{
@@ -11869,7 +11870,7 @@
11870
"ru": "Идентификатор",
11871
"zh-chs": "識別碼",
11872
"xloc": [
11872
- "default.handlebars->27->800"
11873
+ "default.handlebars->27->798"
11874
]
11875
},
11876
{
@@ -11968,7 +11969,7 @@
11969
"zh-chs": "印度尼西亞",
11970
"es": "Indonesio",
11971
"xloc": [
11971
- "default.handlebars->27->933"
11972
+ "default.handlebars->27->931"
11973
]
11974
},
11975
{
@@ -12037,7 +12038,7 @@
12038
"ru": "Установка",
12039
"zh-chs": "安裝",
12040
"xloc": [
12040
- "default.handlebars->27->1148"
12041
+ "default.handlebars->27->1146"
12042
]
12043
},
12044
{
@@ -12086,7 +12087,7 @@
12087
"ru": "Установка CIRA",
12088
"zh-chs": "安裝CIRA",
12089
"xloc": [
12089
- "default.handlebars->27->1140"
12090
+ "default.handlebars->27->1138"
12091
]
12092
},
12093
{
@@ -12103,7 +12104,7 @@
12104
"ru": "Локальная установка",
12105
"zh-chs": "安裝本地",
12106
"xloc": [
12106
- "default.handlebars->27->1142"
12107
+ "default.handlebars->27->1140"
12108
]
12109
},
12110
{
@@ -12140,7 +12141,7 @@
12141
"ru": "Intel (F10 = ESC+[OM)",
12142
"zh-chs": "英特爾(F10 = ESC + [OM)",
12143
"xloc": [
12143
- "default.handlebars->27->705",
12144
+ "default.handlebars->27->703",
12145
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
12146
]
12147
},
@@ -12160,8 +12161,8 @@
12161
"xloc": [
12162
"default.handlebars->27->1294",
12163
"default.handlebars->27->1300",
12163
- "default.handlebars->27->1630",
12164
- "default.handlebars->27->1652"
12164
+ "default.handlebars->27->1631",
12165
+ "default.handlebars->27->1653"
12166
]
12167
},
12168
{
@@ -12229,7 +12230,7 @@
12230
"ru": "Intel AMT активирован в режиме администратора",
12231
"zh-chs": "在管理控制模式下激活了Intel AMT",
12232
"xloc": [
12232
- "default.handlebars->27->468"
12233
+ "default.handlebars->27->466"
12234
]
12235
},
12236
{
@@ -12246,7 +12247,7 @@
12247
"ru": "Intel AMT активирован в режиме клиента",
12248
"zh-chs": "英特爾AMT在客戶端控制模式下被激活",
12249
"xloc": [
12249
- "default.handlebars->27->466"
12250
+ "default.handlebars->27->464"
12251
]
12252
},
12253
{
@@ -12263,7 +12264,7 @@
12264
"ru": "Intel AMT настроен с TLS безопасностью сети",
12265
"zh-chs": "英特爾AMT已設置TLS網絡安全性",
12266
"xloc": [
12266
- "default.handlebars->27->470"
12267
+ "default.handlebars->27->468"
12268
]
12269
},
12270
{
@@ -12314,7 +12315,7 @@
12315
"ru": "Intel ASCII",
12316
"zh-chs": "英特爾ASCII",
12317
"xloc": [
12317
- "default.handlebars->27->704"
12318
+ "default.handlebars->27->702"
12319
]
12320
},
12321
{
@@ -12334,11 +12335,11 @@
12335
"default-mobile.handlebars->9->126",
12336
"default-mobile.handlebars->9->190",
12337
"default-mobile.handlebars->9->195",
12337
- "default.handlebars->27->1124",
12338
- "default.handlebars->27->1134",
12338
+ "default.handlebars->27->1122",
12339
+ "default.handlebars->27->1132",
12340
"default.handlebars->27->425",
12340
- "default.handlebars->27->478",
12341
- "default.handlebars->27->506"
12341
+ "default.handlebars->27->476",
12342
+ "default.handlebars->27->504"
12343
]
12344
},
12345
{
@@ -12356,7 +12357,7 @@
12357
"zh-chs": "英特爾®AMT CIRA",
12358
"xloc": [
12359
"default-mobile.handlebars->9->194",
12359
- "default.handlebars->27->504"
12360
+ "default.handlebars->27->502"
12361
]
12362
},
12363
{
@@ -12375,7 +12376,7 @@
12376
"xloc": [
12377
"default.handlebars->27->169",
12378
"default.handlebars->27->362",
12378
- "default.handlebars->27->503"
12379
+ "default.handlebars->27->501"
12380
]
12381
},
12382
{
@@ -12411,7 +12412,7 @@
12412
"ru": "Политика Intel® AMT",
12413
"zh-chs": "英特爾®AMT政策",
12414
"xloc": [
12414
- "default.handlebars->27->1163"
12415
+ "default.handlebars->27->1161"
12416
]
12417
},
12418
{
@@ -12445,7 +12446,7 @@
12446
"ru": "Intel® AMT Тег",
12447
"zh-chs": "英特爾®AMT標籤",
12448
"xloc": [
12448
- "default.handlebars->27->482"
12449
+ "default.handlebars->27->480"
12450
]
12451
},
12452
{
@@ -12498,8 +12499,8 @@
12499
"zh-chs": "英特爾®AMT已連接",
12500
"xloc": [
12501
"default-mobile.handlebars->9->204",
12501
- "default.handlebars->27->541",
12502
- "default.handlebars->27->542"
12502
+ "default.handlebars->27->539",
12503
+ "default.handlebars->27->540"
12504
]
12505
},
12506
{
@@ -12516,7 +12517,7 @@
12517
"ru": "События Intel® AMT desktop или serial.",
12518
"zh-chs": "英特爾®AMT桌面和串行事件。",
12519
"xloc": [
12519
- "default.handlebars->27->1049",
12520
+ "default.handlebars->27->1047",
12521
"default.handlebars->27->1290"
12522
]
12523
},
@@ -12535,8 +12536,8 @@
12536
"zh-chs": "檢測到英特爾®AMT",
12537
"xloc": [
12538
"default-mobile.handlebars->9->205",
12538
- "default.handlebars->27->543",
12539
- "default.handlebars->27->544"
12539
+ "default.handlebars->27->541",
12540
+ "default.handlebars->27->542"
12541
]
12542
},
12543
{
@@ -12553,7 +12554,7 @@
12554
"ru": "Intel® AMT маршрутизируется и готов к использованию.",
12555
"zh-chs": "英特爾®AMT可路由並可以使用。",
12556
"xloc": [
12556
- "default.handlebars->27->505"
12557
+ "default.handlebars->27->503"
12558
]
12559
},
12560
{
@@ -12606,8 +12607,8 @@
12607
"zh-chs": "僅限英特爾®AMT,無代理",
12608
"xloc": [
12609
"default-mobile.handlebars->9->275",
12609
- "default.handlebars->27->1078",
12610
- "default.handlebars->27->1100"
12610
+ "default.handlebars->27->1076",
12611
+ "default.handlebars->27->1098"
12612
]
12613
},
12614
{
@@ -12624,7 +12625,7 @@
12625
"ru": "Технология Intel® Active Management",
12626
"zh-chs": "英特爾®主動管理技術",
12627
"xloc": [
12627
- "default.handlebars->27->477"
12628
+ "default.handlebars->27->475"
12629
]
12630
},
12631
{
@@ -12641,7 +12642,7 @@
12642
"ru": "Intel® Active Management Technology (Intel® AMT)",
12643
"zh-chs": "英特爾®主動管理技術(英特爾®AMT)",
12644
"xloc": [
12644
- "default.handlebars->27->792"
12645
+ "default.handlebars->27->790"
12646
]
12647
},
12648
{
@@ -12659,7 +12660,7 @@
12660
"zh-chs": "英特爾®ME",
12661
"xloc": [
12662
"default-mobile.handlebars->9->189",
12662
- "default.handlebars->27->476"
12663
+ "default.handlebars->27->474"
12664
]
12665
},
12666
{
@@ -12677,7 +12678,7 @@
12678
"zh-chs": "英特爾®SM",
12679
"xloc": [
12680
"default-mobile.handlebars->9->191",
12680
- "default.handlebars->27->480"
12681
+ "default.handlebars->27->478"
12682
]
12683
},
12684
{
@@ -12694,7 +12695,7 @@
12695
"ru": "Intel® Standard Manageability",
12696
"zh-chs": "英特爾®標準可管理性",
12697
"xloc": [
12697
- "default.handlebars->27->479"
12698
+ "default.handlebars->27->477"
12699
]
12700
},
12701
{
@@ -12795,7 +12796,7 @@
12796
"ru": "Интерактивный",
12797
"zh-chs": "互動",
12798
"xloc": [
12798
- "default.handlebars->27->687"
12799
+ "default.handlebars->27->685"
12800
]
12801
},
12802
{
@@ -12832,7 +12833,7 @@
12833
"ru": "Интерфейсы",
12834
"zh-chs": "介面",
12835
"xloc": [
12835
- "default.handlebars->27->524"
12836
+ "default.handlebars->27->522"
12837
]
12838
},
12839
{
@@ -12849,7 +12850,7 @@
12850
"zh-chs": "因紐特人",
12851
"es": "Inuktitut",
12852
"xloc": [
12852
- "default.handlebars->27->934"
12853
+ "default.handlebars->27->932"
12854
]
12855
},
12856
{
@@ -12866,7 +12867,7 @@
12867
"ru": "Некорректный тип группы устройств",
12868
"zh-chs": "無效的設備組類型",
12869
"xloc": [
12869
- "default.handlebars->27->1607"
12870
+ "default.handlebars->27->1608"
12871
]
12872
},
12873
{
@@ -12883,7 +12884,7 @@
12884
"ru": "Некорректный JSON",
12885
"zh-chs": "無效的JSON",
12886
"xloc": [
12886
- "default.handlebars->27->1601"
12887
+ "default.handlebars->27->1602"
12888
]
12889
},
12890
{
@@ -12935,7 +12936,7 @@
12936
"ru": "Некорректная сигнатура PKCS",
12937
"zh-chs": "無效的PKCS簽名",
12938
"xloc": [
12938
- "default.handlebars->27->1599"
12939
+ "default.handlebars->27->1600"
12940
]
12941
},
12942
{
@@ -12952,7 +12953,7 @@
12953
"ru": "Некорректная сигнатура RSA",
12954
"zh-chs": "無效的RSA密碼",
12955
"xloc": [
12955
- "default.handlebars->27->1600"
12956
+ "default.handlebars->27->1601"
12957
]
12958
},
12959
{
@@ -13119,7 +13120,7 @@
13120
"ru": "Пригласить",
13121
"zh-chs": "邀請",
13122
"xloc": [
13122
- "default.handlebars->27->1150",
13123
+ "default.handlebars->27->1148",
13124
"default.handlebars->27->220",
13125
"default.handlebars->27->300"
13126
]
@@ -13138,7 +13139,7 @@
13139
"zh-chs": "邀請碼",
13140
"es": "Códigos de invitación",
13141
"xloc": [
13141
- "default.handlebars->27->1128",
13142
+ "default.handlebars->27->1126",
13143
"default.handlebars->27->1274",
13144
"default.handlebars->27->1279",
13145
"default.handlebars->27->1281",
@@ -13176,7 +13177,7 @@
13177
"ru": "Отправить приглашение на установку Mesh Agent",
13178
"zh-chs": "邀請某人在此網格上安裝網格代理。",
13179
"xloc": [
13179
- "default.handlebars->27->1149",
13180
+ "default.handlebars->27->1147",
13181
"default.handlebars->27->219"
13182
]
13183
},
@@ -13211,7 +13212,7 @@
13212
"ru": "Ирландский",
13213
"zh-chs": "愛爾蘭人",
13214
"xloc": [
13214
- "default.handlebars->27->935"
13215
+ "default.handlebars->27->933"
13216
]
13217
},
13218
{
@@ -13228,7 +13229,7 @@
13229
"zh-chs": "意大利語(標準)",
13230
"es": "Italiano (estándar)",
13231
"xloc": [
13231
- "default.handlebars->27->936"
13232
+ "default.handlebars->27->934"
13233
]
13234
},
13235
{
@@ -13245,7 +13246,7 @@
13246
"zh-chs": "義大利文(瑞士)",
13247
"es": "Italiano (Suiza)",
13248
"xloc": [
13248
- "default.handlebars->27->937"
13249
+ "default.handlebars->27->935"
13250
]
13251
},
13252
{
@@ -13281,7 +13282,7 @@
13282
"ru": "Японский",
13283
"zh-chs": "日本",
13284
"xloc": [
13284
- "default.handlebars->27->938"
13285
+ "default.handlebars->27->936"
13286
]
13287
},
13288
{
@@ -13298,7 +13299,7 @@
13299
"zh-chs": "卡納達語",
13300
"es": "Kannada",
13301
"xloc": [
13301
- "default.handlebars->27->939"
13302
+ "default.handlebars->27->937"
13303
]
13304
},
13305
{
@@ -13315,7 +13316,7 @@
13316
"zh-chs": "克什米爾語",
13317
"es": "Cachemira",
13318
"xloc": [
13318
- "default.handlebars->27->940"
13319
+ "default.handlebars->27->938"
13320
]
13321
},
13322
{
@@ -13332,7 +13333,7 @@
13333
"zh-chs": "哈薩克語",
13334
"es": "Kazajo",
13335
"xloc": [
13335
- "default.handlebars->27->941"
13336
+ "default.handlebars->27->939"
13337
]
13338
},
13339
{
@@ -13349,7 +13350,7 @@
13350
"ru": "Драйвер ядра",
13351
"zh-chs": "內核驅動程序",
13352
"xloc": [
13352
- "default.handlebars->27->688"
13353
+ "default.handlebars->27->686"
13354
]
13355
},
13356
{
@@ -13366,8 +13367,8 @@
13367
"ru": "Имя ключа",
13368
"zh-chs": "鍵名",
13369
"xloc": [
13369
- "default.handlebars->27->832",
13370
- "default.handlebars->27->835"
13370
+ "default.handlebars->27->830",
13371
+ "default.handlebars->27->833"
13372
]
13373
},
13374
{
@@ -13401,7 +13402,7 @@
13402
"zh-chs": "高棉語",
13403
"es": "Jemer",
13404
"xloc": [
13404
- "default.handlebars->27->942"
13405
+ "default.handlebars->27->940"
13406
]
13407
},
13408
{
@@ -13418,7 +13419,7 @@
13419
"zh-chs": "吉爾吉斯",
13420
"es": "Kirghiz",
13421
"xloc": [
13421
- "default.handlebars->27->943"
13422
+ "default.handlebars->27->941"
13423
]
13424
},
13425
{
@@ -13435,7 +13436,7 @@
13436
"zh-chs": "克林貢",
13437
"es": "Klingon",
13438
"xloc": [
13438
- "default.handlebars->27->944"
13439
+ "default.handlebars->27->942"
13440
]
13441
},
13442
{
@@ -13452,7 +13453,7 @@
13453
"zh-chs": "已知的",
13454
"es": "Conocido",
13455
"xloc": [
13455
- "default.handlebars->27->791"
13456
+ "default.handlebars->27->789"
13457
]
13458
},
13459
{
@@ -13469,7 +13470,7 @@
13470
"zh-chs": "韓語",
13471
"es": "Coreano",
13472
"xloc": [
13472
- "default.handlebars->27->945"
13473
+ "default.handlebars->27->943"
13474
]
13475
},
13476
{
@@ -13486,7 +13487,7 @@
13487
"zh-chs": "韓語(朝鮮)",
13488
"es": "Coreano (Corea del Norte)",
13489
"xloc": [
13489
- "default.handlebars->27->946"
13490
+ "default.handlebars->27->944"
13491
]
13492
},
13493
{
@@ -13503,7 +13504,7 @@
13504
"zh-chs": "韓語(韓國)",
13505
"es": "Coreano (Corea del Sur)",
13506
"xloc": [
13506
- "default.handlebars->27->947"
13507
+ "default.handlebars->27->945"
13508
]
13509
},
13510
{
@@ -13520,8 +13521,8 @@
13521
"ru": "LF",
13522
"zh-chs": "如果",
13523
"xloc": [
13523
- "default.handlebars->27->700",
13524
- "default.handlebars->27->709"
13524
+ "default.handlebars->27->698",
13525
+ "default.handlebars->27->707"
13526
]
13527
},
13528
{
@@ -13538,7 +13539,7 @@
13539
"ru": "Язык",
13540
"zh-chs": "語言",
13541
"xloc": [
13541
- "default.handlebars->27->1041"
13542
+ "default.handlebars->27->1039"
13543
]
13544
},
13545
{
@@ -13572,7 +13573,7 @@
13573
"ru": "Большой Фокус",
13574
"zh-chs": "大焦點",
13575
"xloc": [
13575
- "default.handlebars->27->676"
13576
+ "default.handlebars->27->674"
13577
]
13578
},
13579
{
@@ -13772,7 +13773,7 @@
13773
"ru": "Последний вход в систему",
13774
"zh-chs": "上次登錄",
13775
"xloc": [
13775
- "default.handlebars->27->1504"
13776
+ "default.handlebars->27->1505"
13777
]
13778
},
13779
{
@@ -13792,9 +13793,9 @@
13793
"default.handlebars->27->70",
13794
"default.handlebars->27->72",
13795
"default.handlebars->27->74",
13795
- "default.handlebars->27->763",
13796
- "default.handlebars->27->764",
13797
- "default.handlebars->27->765"
13796
+ "default.handlebars->27->761",
13797
+ "default.handlebars->27->762",
13798
+ "default.handlebars->27->763"
13799
]
13800
},
13801
{
@@ -13812,8 +13813,8 @@
13813
"zh-chs": "上次代理連接",
13814
"xloc": [
13815
"default.handlebars->27->69",
13815
- "default.handlebars->27->760",
13816
- "default.handlebars->27->762"
13816
+ "default.handlebars->27->758",
13817
+ "default.handlebars->27->760"
13818
]
13819
},
13820
{
@@ -13830,7 +13831,7 @@
13831
"ru": "Последнее изменение: {0}",
13832
"zh-chs": "上次更改:{0}",
13833
"xloc": [
13833
- "default.handlebars->27->1508"
13834
+ "default.handlebars->27->1509"
13835
]
13836
},
13837
{
@@ -13898,7 +13899,7 @@
13899
"ru": "Последнее посещение:",
13900
"zh-chs": "最後一次露面:",
13901
"xloc": [
13901
- "default.handlebars->27->547",
13902
+ "default.handlebars->27->545",
13903
"default.handlebars->27->65"
13904
]
13905
},
@@ -13967,7 +13968,7 @@
13968
"ru": "Латинский",
13969
"zh-chs": "拉丁",
13970
"xloc": [
13970
- "default.handlebars->27->948"
13971
+ "default.handlebars->27->946"
13972
]
13973
},
13974
{
@@ -13984,7 +13985,7 @@
13985
"ru": "Латышский",
13986
"zh-chs": "拉脫維亞語",
13987
"xloc": [
13987
- "default.handlebars->27->949"
13988
+ "default.handlebars->27->947"
13989
]
13990
},
13991
{
@@ -14023,7 +14024,7 @@
14024
"ru": "Меньше",
14025
"zh-chs": "減",
14026
"xloc": [
14026
- "default.handlebars->27->1669"
14027
+ "default.handlebars->27->1670"
14028
]
14029
},
14030
{
@@ -14037,8 +14038,8 @@
14038
"zh-chs": "极限赛事",
14039
"es": "Limitar Eventos",
14040
"xloc": [
14040
- "default.handlebars->27->568",
14041
- "default.handlebars->27->587"
14041
+ "default.handlebars->27->566",
14042
+ "default.handlebars->27->585"
14043
]
14044
},
14045
{
@@ -14075,8 +14076,8 @@
14076
"xloc": [
14077
"default-mobile.handlebars->9->324",
14078
"default.handlebars->27->1260",
14078
- "default.handlebars->27->561",
14079
- "default.handlebars->27->580"
14079
+ "default.handlebars->27->559",
14080
+ "default.handlebars->27->578"
14081
]
14082
},
14083
{
@@ -14094,7 +14095,7 @@
14095
"zh-chs": "僅限於輸入",
14096
"xloc": [
14097
"default-mobile.handlebars->9->299",
14097
- "default.handlebars->27->1222"
14098
+ "default.handlebars->27->1220"
14099
]
14100
},
14101
{
@@ -14261,7 +14262,7 @@
14262
"ru": "Linux ARM, Raspberry Pi (32bit)",
14263
"zh-chs": "Linux ARM,Raspberry Pi(32位)",
14264
"xloc": [
14264
- "default.handlebars->27->644"
14265
+ "default.handlebars->27->642"
14266
]
14267
},
14268
{
@@ -14367,7 +14368,7 @@
14368
"ru": "Linux x86 (32bit)",
14369
"zh-chs": "Linux x86(32位)",
14370
"xloc": [
14370
- "default.handlebars->27->641"
14371
+ "default.handlebars->27->639"
14372
]
14373
},
14374
{
@@ -14384,7 +14385,7 @@
14385
"ru": "Linux x86 (64bit)",
14386
"zh-chs": "Linux x86(64位)",
14387
"xloc": [
14387
- "default.handlebars->27->642"
14388
+ "default.handlebars->27->640"
14389
]
14390
},
14391
{
@@ -14419,7 +14420,7 @@
14420
"ru": "Литовский",
14421
"zh-chs": "立陶宛語",
14422
"xloc": [
14422
- "default.handlebars->27->950"
14423
+ "default.handlebars->27->948"
14424
]
14425
},
14426
{
@@ -14437,10 +14438,10 @@
14438
"zh-chs": "載入中...",
14439
"xloc": [
14440
"default-mobile.handlebars->9->34",
14441
+ "default.handlebars->27->1093",
14442
"default.handlebars->27->1095",
14441
- "default.handlebars->27->1097",
14442
- "default.handlebars->27->635",
14443
- "default.handlebars->27->828"
14443
+ "default.handlebars->27->633",
14444
+ "default.handlebars->27->826"
14445
]
14446
},
14447
{
@@ -14508,7 +14509,7 @@
14509
"ru": "Настройки локализации",
14510
"zh-chs": "本地化設置",
14511
"xloc": [
14511
- "default.handlebars->27->1044",
14512
+ "default.handlebars->27->1042",
14513
"default.handlebars->container->column_l->p2->p2AccountActions->3->5"
14514
]
14515
},
@@ -14526,7 +14527,7 @@
14527
"ru": "Местонахождение",
14528
"zh-chs": "位置",
14529
"xloc": [
14529
- "default.handlebars->27->526"
14530
+ "default.handlebars->27->524"
14531
]
14532
},
14533
{
@@ -14611,7 +14612,7 @@
14612
"ru": "Заблокированная учетная запись",
14613
"zh-chs": "賬戶鎖定",
14614
"xloc": [
14614
- "default.handlebars->27->1489"
14615
+ "default.handlebars->27->1490"
14616
]
14617
},
14618
{
@@ -14628,7 +14629,7 @@
14629
"ru": "Добавить событие",
14630
"zh-chs": "記錄事件",
14631
"xloc": [
14631
- "default.handlebars->27->517"
14632
+ "default.handlebars->27->515"
14633
]
14634
},
14635
{
@@ -14777,7 +14778,7 @@
14778
"ru": "Люксембургский",
14779
"zh-chs": "盧森堡語",
14780
"xloc": [
14780
- "default.handlebars->27->951"
14781
+ "default.handlebars->27->949"
14782
]
14783
},
14784
{
@@ -14794,8 +14795,8 @@
14795
"zh-chs": "MAC層",
14796
"es": "Capa MAC",
14797
"xloc": [
14797
- "default.handlebars->27->768",
14798
- "default.handlebars->27->770"
14798
+ "default.handlebars->27->766",
14799
+ "default.handlebars->27->768"
14800
]
14801
},
14802
{
@@ -14829,7 +14830,7 @@
14830
"ru": "MAC: {0}",
14831
"zh-chs": "MAC:{0}",
14832
"xloc": [
14832
- "default.handlebars->27->771"
14833
+ "default.handlebars->27->769"
14834
]
14835
},
14836
{
@@ -14846,7 +14847,7 @@
14847
"zh-chs": "MAC:{0},網關:{1}",
14848
"es": "MAC: {0}, Puerta de Enlace: {1}",
14849
"xloc": [
14849
- "default.handlebars->27->769"
14850
+ "default.handlebars->27->767"
14851
]
14852
},
14853
{
@@ -14903,9 +14904,9 @@
14904
"default-mobile.handlebars->9->197",
14905
"default.handlebars->27->176",
14906
"default.handlebars->27->369",
14906
- "default.handlebars->27->510",
14907
- "default.handlebars->27->812",
14908
- "default.handlebars->27->813",
14907
+ "default.handlebars->27->508",
14908
+ "default.handlebars->27->810",
14909
+ "default.handlebars->27->811",
14910
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3"
14911
]
14912
},
@@ -14940,7 +14941,7 @@
14941
"ru": "MQTT Вход",
14942
"zh-chs": "MQTT登錄",
14943
"xloc": [
14943
- "default.handlebars->27->538"
14944
+ "default.handlebars->27->536"
14945
]
14946
},
14947
{
@@ -14958,7 +14959,7 @@
14959
"zh-chs": "MQTT通道已連接",
14960
"xloc": [
14961
"default-mobile.handlebars->9->206",
14961
- "default.handlebars->27->546"
14962
+ "default.handlebars->27->544"
14963
]
14964
},
14965
{
@@ -14976,7 +14977,7 @@
14977
"zh-chs": "MQTT已連接",
14978
"xloc": [
14979
"default.handlebars->27->140",
14979
- "default.handlebars->27->545"
14980
+ "default.handlebars->27->543"
14981
]
14982
},
14983
{
@@ -14995,7 +14996,7 @@
14996
"xloc": [
14997
"default.handlebars->27->175",
14998
"default.handlebars->27->368",
14998
- "default.handlebars->27->509"
14999
+ "default.handlebars->27->507"
15000
]
15001
},
15002
{
@@ -15046,7 +15047,7 @@
15047
"ru": "MacOS (64bit)",
15048
"zh-chs": "MacOS(64位)",
15049
"xloc": [
15049
- "default.handlebars->27->643"
15050
+ "default.handlebars->27->641"
15051
]
15052
},
15053
{
@@ -15099,7 +15100,7 @@
15100
"ru": "Сообщения главного сервера",
15101
"zh-chs": "主服務器消息",
15102
"xloc": [
15102
- "default.handlebars->27->1641"
15103
+ "default.handlebars->27->1642"
15104
]
15105
},
15106
{
@@ -15116,7 +15117,7 @@
15117
"ru": "Малайский",
15118
"zh-chs": "馬來語",
15119
"xloc": [
15119
- "default.handlebars->27->953"
15120
+ "default.handlebars->27->951"
15121
]
15122
},
15123
{
@@ -15133,7 +15134,7 @@
15134
"zh-chs": "馬拉雅拉姆語",
15135
"es": "Malayalam",
15136
"xloc": [
15136
- "default.handlebars->27->954"
15137
+ "default.handlebars->27->952"
15138
]
15139
},
15140
{
@@ -15150,7 +15151,7 @@
15151
"zh-chs": "馬耳他語",
15152
"es": "Maltés",
15153
"xloc": [
15153
- "default.handlebars->27->955"
15154
+ "default.handlebars->27->953"
15155
]
15156
},
15157
{
@@ -15187,7 +15188,7 @@
15188
"xloc": [
15189
"default-mobile.handlebars->9->296",
15190
"default-mobile.handlebars->9->314",
15190
- "default.handlebars->27->1219",
15191
+ "default.handlebars->27->1217",
15192
"default.handlebars->27->1249"
15193
]
15194
},
@@ -15207,7 +15208,7 @@
15208
"xloc": [
15209
"default-mobile.handlebars->9->295",
15210
"default-mobile.handlebars->9->313",
15210
- "default.handlebars->27->1218",
15211
+ "default.handlebars->27->1216",
15212
"default.handlebars->27->1248"
15213
]
15214
},
@@ -15222,7 +15223,7 @@
15223
"zh-chs": "管理设备",
15224
"es": "Administrar dispositivos",
15225
"xloc": [
15225
- "default.handlebars->27->575"
15226
+ "default.handlebars->27->573"
15227
]
15228
},
15229
{
@@ -15274,7 +15275,7 @@
15275
"zh-chs": "管理用戶",
15276
"xloc": [
15277
"default.handlebars->27->1431",
15277
- "default.handlebars->27->574"
15278
+ "default.handlebars->27->572"
15279
]
15280
},
15281
{
@@ -15362,7 +15363,7 @@
15363
"ru": "Управление с помощью программного агента",
15364
"zh-chs": "使用軟件代理進行管理",
15365
"xloc": [
15365
- "default.handlebars->27->1077"
15366
+ "default.handlebars->27->1075"
15367
]
15368
},
15369
{
@@ -15380,7 +15381,7 @@
15381
"zh-chs": "使用軟件代理進行管理",
15382
"xloc": [
15383
"default-mobile.handlebars->9->276",
15383
- "default.handlebars->27->1101"
15384
+ "default.handlebars->27->1099"
15385
]
15386
},
15387
{
@@ -15448,7 +15449,7 @@
15449
"zh-chs": "毛利人",
15450
"es": "Maori",
15451
"xloc": [
15451
- "default.handlebars->27->956"
15452
+ "default.handlebars->27->954"
15453
]
15454
},
15455
{
@@ -15483,7 +15484,7 @@
15484
"zh-chs": "馬拉地語",
15485
"es": "Marathi",
15486
"xloc": [
15486
- "default.handlebars->27->957"
15487
+ "default.handlebars->27->955"
15488
]
15489
},
15490
{
@@ -15500,7 +15501,7 @@
15501
"ru": "Достигнуто максимальное число сессий",
15502
"zh-chs": "達到的會話數上限",
15503
"xloc": [
15503
- "default.handlebars->27->1605"
15504
+ "default.handlebars->27->1606"
15505
]
15506
},
15507
{
@@ -15554,7 +15555,7 @@
15555
"ru": "Мегабайт",
15556
"zh-chs": "兆字節",
15557
"xloc": [
15557
- "default.handlebars->27->1631"
15558
+ "default.handlebars->27->1632"
15559
]
15560
},
15561
{
@@ -15571,8 +15572,8 @@
15572
"ru": "ОЗУ",
15573
"zh-chs": "記憶",
15574
"xloc": [
15574
- "default.handlebars->27->1622",
15575
- "default.handlebars->27->805",
15575
+ "default.handlebars->27->1623",
15576
+ "default.handlebars->27->803",
15577
"default.handlebars->container->column_l->p40->3->1->p40type->3"
15578
]
15579
},
@@ -15596,10 +15597,10 @@
15597
"default.handlebars->27->325",
15598
"default.handlebars->27->329",
15599
"default.handlebars->27->332",
15599
- "default.handlebars->27->459",
15600
- "default.handlebars->27->502",
15601
- "default.handlebars->27->759",
15602
- "default.handlebars->27->766"
15600
+ "default.handlebars->27->457",
15601
+ "default.handlebars->27->500",
15602
+ "default.handlebars->27->757",
15603
+ "default.handlebars->27->764"
15604
]
15605
},
15606
{
@@ -15617,7 +15618,7 @@
15618
"zh-chs": "網格代理控制台",
15619
"xloc": [
15620
"default-mobile.handlebars->9->303",
15620
- "default.handlebars->27->1227"
15621
+ "default.handlebars->27->1225"
15622
]
15623
},
15624
{
@@ -15634,7 +15635,7 @@
15635
"ru": "Ретранслятор Mesh",
15636
"zh-chs": "網狀中繼",
15637
"xloc": [
15637
- "default.handlebars->27->508"
15638
+ "default.handlebars->27->506"
15639
]
15640
},
15641
{
@@ -15653,7 +15654,7 @@
15654
"xloc": [
15655
"default.handlebars->27->167",
15656
"default.handlebars->27->360",
15656
- "default.handlebars->27->501"
15657
+ "default.handlebars->27->499"
15658
]
15659
},
15660
{
@@ -15672,7 +15673,7 @@
15673
"xloc": [
15674
"default.handlebars->27->173",
15675
"default.handlebars->27->366",
15675
- "default.handlebars->27->507"
15676
+ "default.handlebars->27->505"
15677
]
15678
},
15679
{
@@ -15689,8 +15690,8 @@
15690
"ru": "MeshAction (.txt)",
15691
"zh-chs": "MeshAction(.txt)",
15692
"xloc": [
15692
- "default.handlebars->27->650",
15693
- "default.handlebars->27->652"
15693
+ "default.handlebars->27->648",
15694
+ "default.handlebars->27->650"
15695
]
15696
},
15697
{
@@ -15707,7 +15708,7 @@
15708
"ru": "Трафик MeshAgent",
15709
"zh-chs": "MeshAgent流量",
15710
"xloc": [
15710
- "default.handlebars->27->1643"
15711
+ "default.handlebars->27->1644"
15712
]
15713
},
15714
{
@@ -15724,7 +15725,7 @@
15725
"ru": "Обновление MeshAgent",
15726
"zh-chs": "MeshAgent更新",
15727
"xloc": [
15727
- "default.handlebars->27->1644"
15728
+ "default.handlebars->27->1645"
15729
]
15730
},
15731
{
@@ -15758,7 +15759,7 @@
15759
"ru": "Ошибки MeshCentral",
15760
"zh-chs": "網格中心錯誤",
15761
"xloc": [
15761
- "default.handlebars->27->1096"
15762
+ "default.handlebars->27->1094"
15763
]
15764
},
15765
{
@@ -15775,7 +15776,7 @@
15776
"ru": "MeshCentral Router ",
15777
"zh-chs": "MeshCentral路由器",
15778
"xloc": [
15778
- "default.handlebars->27->638"
15779
+ "default.handlebars->27->636"
15780
]
15781
},
15782
{
@@ -15792,7 +15793,7 @@
15793
"ru": "MeshCentral Router это инструмент Windows для сопоставления портов TCP. Например, через этот сервер можно установить подключение по RDP к удаленному устройству.",
15794
"zh-chs": "MeshCentral Router是Windows工具,用於TCP端口映射。例如,您可以通過該服務器將RDP放入遠程設備。",
15795
"xloc": [
15795
- "default.handlebars->27->636"
15796
+ "default.handlebars->27->634"
15797
]
15798
},
15799
{
@@ -15827,7 +15828,7 @@
15828
"ru": "Соединения сервера MeshCentral",
15829
"zh-chs": "MeshCentral服務器對等",
15830
"xloc": [
15830
- "default.handlebars->27->1642"
15831
+ "default.handlebars->27->1643"
15832
]
15833
},
15834
{
@@ -15861,7 +15862,7 @@
15862
"ru": "Версия MeshCentral",
15863
"zh-chs": "MeshCentral版本",
15864
"xloc": [
15864
- "default.handlebars->27->1094",
15865
+ "default.handlebars->27->1092",
15866
"default.handlebars->27->95",
15867
"default.handlebars->27->96"
15868
]
@@ -15881,7 +15882,7 @@
15882
"zh-chs": "網格命令",
15883
"xloc": [
15884
"default.handlebars->27->191",
15884
- "default.handlebars->27->648"
15885
+ "default.handlebars->27->646"
15886
]
15887
},
15888
{
@@ -15898,7 +15899,7 @@
15899
"ru": "MeshCmd (Linux ARM, 32bit)",
15900
"zh-chs": "MeshCmd(Linux ARM,32位)",
15901
"xloc": [
15901
- "default.handlebars->27->660"
15902
+ "default.handlebars->27->658"
15903
]
15904
},
15905
{
@@ -15915,7 +15916,7 @@
15916
"ru": "MeshCmd (Linux x86, 32bit)",
15917
"zh-chs": "MeshCmd(Linux x86,32bit)",
15918
"xloc": [
15918
- "default.handlebars->27->657"
15919
+ "default.handlebars->27->655"
15920
]
15921
},
15922
{
@@ -15932,7 +15933,7 @@
15933
"ru": "MeshCmd (Linux x86, 64bit)",
15934
"zh-chs": "MeshCmd(Linux x86,64bit)",
15935
"xloc": [
15935
- "default.handlebars->27->658"
15936
+ "default.handlebars->27->656"
15937
]
15938
},
15939
{
@@ -15949,7 +15950,7 @@
15950
"ru": "MeshCmd (MacOS, 64bit)",
15951
"zh-chs": "MeshCmd(MacOS,64位)",
15952
"xloc": [
15952
- "default.handlebars->27->659"
15953
+ "default.handlebars->27->657"
15954
]
15955
},
15956
{
@@ -15966,7 +15967,7 @@
15967
"ru": "MeshCmd (приложение Win32)",
15968
"zh-chs": "MeshCmd(Win32可執行文件)",
15969
"xloc": [
15969
- "default.handlebars->27->655"
15970
+ "default.handlebars->27->653"
15971
]
15972
},
15973
{
@@ -15983,7 +15984,7 @@
15984
"ru": "MeshCmd (приложение Win64)",
15985
"zh-chs": "MeshCmd(Win64可執行文件)",
15986
"xloc": [
15986
- "default.handlebars->27->656"
15987
+ "default.handlebars->27->654"
15988
]
15989
},
15990
{
@@ -16000,7 +16001,7 @@
16001
"ru": "MeshCmd это утилита с командной строкой, которая позволяет выполнить множество операций. Файл с командами может быть опционально скачан и отредактирован для указания информации о сервере и учетных данных.",
16002
"zh-chs": "MeshCmd是執行許多不同操作的命令行工具。可以選擇下載和編輯操作文件以提供服務器信息和憑據。",
16003
"xloc": [
16003
- "default.handlebars->27->645"
16004
+ "default.handlebars->27->643"
16005
]
16006
},
16007
{
@@ -16072,7 +16073,7 @@
16073
"zh-chs": "信息",
16074
"xloc": [
16075
"default.handlebars->27->289",
16075
- "default.handlebars->27->616"
16076
+ "default.handlebars->27->614"
16077
]
16078
},
16079
{
@@ -16089,7 +16090,7 @@
16090
"ru": "Диспетчер сообщения",
16091
"zh-chs": "郵件調度程序",
16092
"xloc": [
16092
- "default.handlebars->27->1640"
16093
+ "default.handlebars->27->1641"
16094
]
16095
},
16096
{
@@ -16203,7 +16204,7 @@
16204
"zh-chs": "摩爾達維亞人",
16205
"es": "Moldavo",
16206
"xloc": [
16206
- "default.handlebars->27->958"
16207
+ "default.handlebars->27->956"
16208
]
16209
},
16210
{
@@ -16220,7 +16221,7 @@
16221
"ru": "Еще",
16222
"zh-chs": "更多",
16223
"xloc": [
16223
- "default.handlebars->27->1668"
16224
+ "default.handlebars->27->1669"
16225
]
16226
},
16227
{
@@ -16237,7 +16238,7 @@
16238
"ru": "Материнская плата",
16239
"zh-chs": "母板",
16240
"xloc": [
16240
- "default.handlebars->27->801"
16241
+ "default.handlebars->27->799"
16242
]
16243
},
16244
{
@@ -16254,7 +16255,7 @@
16255
"ru": "Переместить это устройство в другую группу устройств",
16256
"zh-chs": "將此設備移到其他設備組",
16257
"xloc": [
16257
- "default.handlebars->27->519"
16258
+ "default.handlebars->27->517"
16259
]
16260
},
16261
{
@@ -16403,7 +16404,7 @@
16404
"ru": "Консоль моего сервера",
16405
"zh-chs": "我的服務器控制台",
16406
"xloc": [
16406
- "default.handlebars->27->807"
16407
+ "default.handlebars->27->805"
16408
]
16409
},
16410
{
@@ -16524,8 +16525,8 @@
16525
"ru": "Мой ключ",
16526
"zh-chs": "我的鑰匙",
16527
"xloc": [
16527
- "default.handlebars->27->833",
16528
- "default.handlebars->27->836"
16528
+ "default.handlebars->27->831",
16529
+ "default.handlebars->27->834"
16530
]
16531
},
16532
{
@@ -16547,20 +16548,20 @@
16548
"default-mobile.handlebars->9->290",
16549
"default-mobile.handlebars->9->59",
16550
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1",
16550
- "default.handlebars->27->1075",
16551
- "default.handlebars->27->1102",
16552
- "default.handlebars->27->1185",
16551
+ "default.handlebars->27->1073",
16552
+ "default.handlebars->27->1100",
16553
+ "default.handlebars->27->1183",
16554
"default.handlebars->27->1353",
16555
"default.handlebars->27->1438",
16556
"default.handlebars->27->1442",
16557
"default.handlebars->27->1447",
16558
"default.handlebars->27->1449",
16558
- "default.handlebars->27->1476",
16559
+ "default.handlebars->27->1477",
16560
"default.handlebars->27->450",
16560
- "default.handlebars->27->682",
16561
- "default.handlebars->27->755",
16561
+ "default.handlebars->27->680",
16562
+ "default.handlebars->27->753",
16563
"default.handlebars->27->77",
16563
- "default.handlebars->27->797",
16564
+ "default.handlebars->27->795",
16565
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3",
16566
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3",
16567
"default.handlebars->container->column_l->p42->p42tbl->1->0->2"
@@ -16614,7 +16615,7 @@
16615
"zh-chs": "納瓦霍人",
16616
"es": "Navajo",
16617
"xloc": [
16617
- "default.handlebars->27->959"
16618
+ "default.handlebars->27->957"
16619
]
16620
},
16621
{
@@ -16631,7 +16632,7 @@
16632
"zh-chs": "恩東加",
16633
"es": "Ndonga",
16634
"xloc": [
16634
- "default.handlebars->27->960"
16635
+ "default.handlebars->27->958"
16636
]
16637
},
16638
{
@@ -16648,7 +16649,7 @@
16649
"zh-chs": "尼泊爾文",
16650
"es": "Nepali",
16651
"xloc": [
16651
- "default.handlebars->27->961"
16652
+ "default.handlebars->27->959"
16653
]
16654
},
16655
{
@@ -16665,7 +16666,7 @@
16666
"ru": "Сетевые интерфейсы",
16667
"zh-chs": "網絡接口",
16668
"xloc": [
16668
- "default.handlebars->27->634"
16669
+ "default.handlebars->27->632"
16670
]
16671
},
16672
{
@@ -16682,7 +16683,7 @@
16683
"ru": "Network Router",
16684
"zh-chs": "網絡路由器",
16685
"xloc": [
16685
- "default.handlebars->27->654"
16686
+ "default.handlebars->27->652"
16687
]
16688
},
16689
{
@@ -16699,7 +16700,7 @@
16700
"zh-chs": "聯網",
16701
"es": "Redes",
16702
"xloc": [
16702
- "default.handlebars->27->776"
16703
+ "default.handlebars->27->774"
16704
]
16705
},
16706
{
@@ -16752,9 +16753,9 @@
16753
"zh-chs": "新設備組",
16754
"xloc": [
16755
"default-mobile.handlebars->9->53",
16755
- "default.handlebars->27->1068",
16756
- "default.handlebars->27->1080",
16757
- "default.handlebars->27->626"
16756
+ "default.handlebars->27->1066",
16757
+ "default.handlebars->27->1078",
16758
+ "default.handlebars->27->624"
16759
]
16760
},
16761
{
@@ -16774,7 +16775,7 @@
16775
"default-mobile.handlebars->9->248",
16776
"default-mobile.handlebars->9->82",
16777
"default.handlebars->27->1326",
16777
- "default.handlebars->27->719",
16778
+ "default.handlebars->27->717",
16779
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
16780
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
16781
]
@@ -16829,8 +16830,8 @@
16830
"xloc": [
16831
"default-mobile.handlebars->9->48",
16832
"default-mobile.handlebars->9->49",
16832
- "default.handlebars->27->1063",
16833
- "default.handlebars->27->1064"
16833
+ "default.handlebars->27->1061",
16834
+ "default.handlebars->27->1062"
16835
]
16836
},
16837
{
@@ -16845,8 +16846,8 @@
16846
"ru": "Нет AMT",
16847
"zh-chs": "没有AMT",
16848
"xloc": [
16848
- "default.handlebars->27->560",
16849
- "default.handlebars->27->579"
16849
+ "default.handlebars->27->558",
16850
+ "default.handlebars->27->577"
16851
]
16852
},
16853
{
@@ -16878,7 +16879,7 @@
16879
"zh-chs": "没有增加的权利",
16880
"es": "Sin derechos añadidos",
16881
"xloc": [
16881
- "default.handlebars->27->571"
16882
+ "default.handlebars->27->569"
16883
]
16884
},
16885
{
@@ -16897,8 +16898,8 @@
16898
"xloc": [
16899
"default-mobile.handlebars->9->187",
16900
"default-mobile.handlebars->9->188",
16900
- "default.handlebars->27->473",
16901
- "default.handlebars->27->474"
16901
+ "default.handlebars->27->471",
16902
+ "default.handlebars->27->472"
16903
]
16904
},
16905
{
@@ -16916,8 +16917,8 @@
16917
"es": "Sin Escritorio",
16918
"xloc": [
16919
"default.handlebars->27->1256",
16919
- "default.handlebars->27->562",
16920
- "default.handlebars->27->581"
16920
+ "default.handlebars->27->560",
16921
+ "default.handlebars->27->579"
16922
]
16923
},
16924
{
@@ -16934,7 +16935,7 @@
16935
"zh-chs": "沒有桌面訪問",
16936
"es": "Sin acceso al escritorio",
16937
"xloc": [
16937
- "default.handlebars->27->1223"
16938
+ "default.handlebars->27->1221"
16939
]
16940
},
16941
{
@@ -16952,8 +16953,8 @@
16953
"zh-chs": "找不到活動",
16954
"xloc": [
16955
"default.handlebars->27->1343",
16955
- "default.handlebars->27->1587",
16956
- "default.handlebars->27->753"
16956
+ "default.handlebars->27->1588",
16957
+ "default.handlebars->27->751"
16958
]
16959
},
16960
{
@@ -16971,7 +16972,7 @@
16972
"zh-chs": "沒有文件訪問",
16973
"xloc": [
16974
"default-mobile.handlebars->9->301",
16974
- "default.handlebars->27->1225"
16975
+ "default.handlebars->27->1223"
16976
]
16977
},
16978
{
@@ -16990,8 +16991,8 @@
16991
"xloc": [
16992
"default-mobile.handlebars->9->322",
16993
"default.handlebars->27->1258",
16993
- "default.handlebars->27->559",
16994
- "default.handlebars->27->578"
16994
+ "default.handlebars->27->557",
16995
+ "default.handlebars->27->576"
16996
]
16997
},
16998
{
@@ -17005,8 +17006,8 @@
17006
"zh-chs": "无输入",
17007
"es": "Sin entrada",
17008
"xloc": [
17008
- "default.handlebars->27->557",
17009
- "default.handlebars->27->576"
17009
+ "default.handlebars->27->555",
17010
+ "default.handlebars->27->574"
17011
]
17012
},
17013
{
@@ -17025,7 +17026,7 @@
17026
"xloc": [
17027
"default-mobile.handlebars->9->302",
17028
"default-mobile.handlebars->9->323",
17028
- "default.handlebars->27->1226",
17029
+ "default.handlebars->27->1224",
17030
"default.handlebars->27->1259"
17031
]
17032
},
@@ -17128,9 +17129,9 @@
17129
"ru": "Политик нет",
17130
"zh-chs": "沒有政策",
17131
"xloc": [
17131
- "default.handlebars->27->1129",
17132
- "default.handlebars->27->1157",
17133
- "default.handlebars->27->1160"
17132
+ "default.handlebars->27->1127",
17133
+ "default.handlebars->27->1155",
17134
+ "default.handlebars->27->1158"
17135
]
17136
},
17137
{
@@ -17150,9 +17151,9 @@
17151
"default-mobile.handlebars->9->285",
17152
"default-mobile.handlebars->9->328",
17153
"default-mobile.handlebars->9->68",
17153
- "default.handlebars->27->1089",
17154
+ "default.handlebars->27->1087",
17155
"default.handlebars->27->1264",
17155
- "default.handlebars->27->590"
17156
+ "default.handlebars->27->588"
17157
]
17158
},
17159
{
@@ -17171,7 +17172,7 @@
17172
"xloc": [
17173
"default-mobile.handlebars->9->218",
17174
"default.handlebars->27->229",
17174
- "default.handlebars->27->612"
17175
+ "default.handlebars->27->610"
17176
]
17177
},
17178
{
@@ -17190,8 +17191,8 @@
17191
"xloc": [
17192
"default-mobile.handlebars->9->321",
17193
"default.handlebars->27->1257",
17193
- "default.handlebars->27->558",
17194
- "default.handlebars->27->577"
17194
+ "default.handlebars->27->556",
17195
+ "default.handlebars->27->575"
17196
]
17197
},
17198
{
@@ -17209,7 +17210,7 @@
17210
"zh-chs": "沒有終端訪問",
17211
"xloc": [
17212
"default-mobile.handlebars->9->300",
17212
- "default.handlebars->27->1224"
17213
+ "default.handlebars->27->1222"
17214
]
17215
},
17216
{
@@ -17244,7 +17245,7 @@
17245
"zh-chs": "沒有共同的設備組",
17246
"xloc": [
17247
"default.handlebars->27->1465",
17247
- "default.handlebars->27->1567"
17248
+ "default.handlebars->27->1568"
17249
]
17250
},
17251
{
@@ -17331,8 +17332,8 @@
17332
"zh-chs": "沒有共同的設備",
17333
"es": "Sin dispositivos en común",
17334
"xloc": [
17334
- "default.handlebars->27->1470",
17335
- "default.handlebars->27->1561"
17335
+ "default.handlebars->27->1471",
17336
+ "default.handlebars->27->1562"
17337
]
17338
},
17339
{
@@ -17435,7 +17436,7 @@
17436
"ru": "Информации об этом устройстве нет",
17437
"zh-chs": "沒有此設備的信息。",
17438
"xloc": [
17438
- "default.handlebars->27->806"
17439
+ "default.handlebars->27->804"
17440
]
17441
},
17442
{
@@ -17486,7 +17487,7 @@
17487
"ru": "Других групп устройств такого же типа не существует.",
17488
"zh-chs": "沒有其他相同類型的設備組。",
17489
"xloc": [
17489
- "default.handlebars->27->629"
17490
+ "default.handlebars->27->627"
17491
]
17492
},
17493
{
@@ -17520,7 +17521,7 @@
17521
"ru": "Нет серверных прав",
17522
"zh-chs": "沒有服務器權限",
17523
"xloc": [
17523
- "default.handlebars->27->1490"
17524
+ "default.handlebars->27->1491"
17525
]
17526
},
17527
{
@@ -17537,7 +17538,7 @@
17538
"ru": "Нет членства в группах пользователей",
17539
"zh-chs": "沒有用戶組成員身份",
17540
"xloc": [
17540
- "default.handlebars->27->1573"
17541
+ "default.handlebars->27->1574"
17542
]
17543
},
17544
{
@@ -17568,7 +17569,7 @@
17569
"zh-chs": "没有拥有特殊设备权限的用户",
17570
"es": "No hay usuarios con permisos especiales para dispositivos.",
17571
"xloc": [
17571
- "default.handlebars->27->555"
17572
+ "default.handlebars->27->553"
17573
]
17574
},
17575
{
@@ -17629,24 +17630,24 @@
17630
"default-mobile.handlebars->9->78",
17631
"default-mobile.handlebars->9->97",
17632
"default-mobile.handlebars->9->98",
17632
- "default.handlebars->27->1104",
17633
- "default.handlebars->27->1108",
17634
- "default.handlebars->27->1120",
17633
+ "default.handlebars->27->1102",
17634
+ "default.handlebars->27->1106",
17635
+ "default.handlebars->27->1118",
17636
+ "default.handlebars->27->1123",
17637
"default.handlebars->27->1125",
17636
- "default.handlebars->27->1127",
17638
"default.handlebars->27->1313",
17639
"default.handlebars->27->1446",
17640
"default.handlebars->27->149",
17640
- "default.handlebars->27->1509",
17641
- "default.handlebars->27->1513",
17642
- "default.handlebars->27->1525",
17641
+ "default.handlebars->27->1510",
17642
+ "default.handlebars->27->1514",
17643
+ "default.handlebars->27->1526",
17644
"default.handlebars->27->165",
17645
"default.handlebars->27->166",
17646
"default.handlebars->27->443",
17647
+ "default.handlebars->27->453",
17648
"default.handlebars->27->454",
17647
- "default.handlebars->27->456",
17648
- "default.handlebars->27->499",
17649
- "default.handlebars->27->512",
17649
+ "default.handlebars->27->497",
17650
+ "default.handlebars->27->510",
17651
"default.handlebars->27->63",
17652
"default.handlebars->container->column_l->p41->3->3->p41traceStatus"
17653
]
@@ -17682,7 +17683,7 @@
17683
"zh-chs": "挪威",
17684
"es": "Noruego",
17685
"xloc": [
17685
- "default.handlebars->27->962"
17686
+ "default.handlebars->27->960"
17687
]
17688
},
17689
{
@@ -17699,7 +17700,7 @@
17700
"zh-chs": "挪威文(Bokmal)",
17701
"es": "Noruego (Bokmal)",
17702
"xloc": [
17702
- "default.handlebars->27->963"
17703
+ "default.handlebars->27->961"
17704
]
17705
},
17706
{
@@ -17716,7 +17717,7 @@
17717
"zh-chs": "挪威文(尼諾斯克)",
17718
"es": "Noruego (Nynorsk)",
17719
"xloc": [
17719
- "default.handlebars->27->964"
17720
+ "default.handlebars->27->962"
17721
]
17722
},
17723
{
@@ -17734,8 +17735,8 @@
17735
"es": "(entrada) No activada",
17736
"xloc": [
17737
"default-mobile.handlebars->9->179",
17737
- "default.handlebars->27->461",
17738
- "default.handlebars->27->780"
17738
+ "default.handlebars->27->459",
17739
+ "default.handlebars->27->778"
17740
]
17741
},
17742
{
@@ -17753,8 +17754,8 @@
17754
"es": "(Pre) No activada",
17755
"xloc": [
17756
"default-mobile.handlebars->9->178",
17756
- "default.handlebars->27->460",
17757
- "default.handlebars->27->779"
17757
+ "default.handlebars->27->458",
17758
+ "default.handlebars->27->777"
17759
]
17760
},
17761
{
@@ -17789,7 +17790,7 @@
17790
"zh-chs": "未知",
17791
"es": "No se Conoce",
17792
"xloc": [
17792
- "default.handlebars->27->790"
17793
+ "default.handlebars->27->788"
17794
]
17795
},
17796
{
@@ -17806,7 +17807,7 @@
17807
"ru": "Не задано",
17808
"zh-chs": "沒有設置",
17809
"xloc": [
17809
- "default.handlebars->27->1495"
17810
+ "default.handlebars->27->1496"
17811
]
17812
},
17813
{
@@ -17823,7 +17824,7 @@
17824
"zh-chs": "未經審核的",
17825
"es": "Sin Verificar",
17826
"xloc": [
17826
- "default.handlebars->27->1544"
17827
+ "default.handlebars->27->1545"
17828
]
17829
},
17830
{
@@ -17840,12 +17841,12 @@
17841
"ru": "Примечания",
17842
"zh-chs": "筆記",
17843
"xloc": [
17843
- "default.handlebars->27->1135",
17844
- "default.handlebars->27->1532",
17845
- "default.handlebars->27->515",
17846
- "default.handlebars->27->567",
17847
- "default.handlebars->27->586",
17848
- "default.handlebars->27->593"
17844
+ "default.handlebars->27->1133",
17845
+ "default.handlebars->27->1533",
17846
+ "default.handlebars->27->513",
17847
+ "default.handlebars->27->565",
17848
+ "default.handlebars->27->584",
17849
+ "default.handlebars->27->591"
17850
]
17851
},
17852
{
@@ -17879,7 +17880,7 @@
17880
"ru": "Настройки уведомлений",
17881
"zh-chs": "通知設置",
17882
"xloc": [
17882
- "default.handlebars->27->1050",
17883
+ "default.handlebars->27->1048",
17884
"default.handlebars->27->1291",
17885
"default.handlebars->container->column_l->p2->p2AccountActions->3->8"
17886
]
@@ -17915,7 +17916,7 @@
17916
"ru": "Звук уведомления",
17917
"zh-chs": "通知聲音。",
17918
"xloc": [
17918
- "default.handlebars->27->1045"
17919
+ "default.handlebars->27->1043"
17920
]
17921
},
17922
{
@@ -17932,7 +17933,7 @@
17933
"ru": "Уведомления",
17934
"zh-chs": "通知事項",
17935
"xloc": [
17935
- "default.handlebars->27->1126"
17936
+ "default.handlebars->27->1124"
17937
]
17938
},
17939
{
@@ -17949,7 +17950,7 @@
17950
"ru": "Уведомить",
17951
"zh-chs": "通知",
17952
"xloc": [
17952
- "default.handlebars->27->1534"
17953
+ "default.handlebars->27->1535"
17954
]
17955
},
17956
{
@@ -17966,9 +17967,9 @@
17967
"ru": "Уведомить пользователя",
17968
"zh-chs": "通知使用者",
17969
"xloc": [
17969
- "default.handlebars->27->1192",
17970
- "default.handlebars->27->1196",
17971
- "default.handlebars->27->1199"
17970
+ "default.handlebars->27->1190",
17971
+ "default.handlebars->27->1194",
17972
+ "default.handlebars->27->1197"
17973
]
17974
},
17975
{
@@ -18004,8 +18005,8 @@
18005
"xloc": [
18006
"default-mobile.handlebars->9->45",
18007
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
18007
- "default.handlebars->27->1092",
18008
- "default.handlebars->27->486",
18008
+ "default.handlebars->27->1090",
18009
+ "default.handlebars->27->484",
18010
"default.handlebars->container->dialog->idx_dlgButtonBar",
18011
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
18012
"login.handlebars->dialog->idx_dlgButtonBar",
@@ -18044,7 +18045,7 @@
18045
"zh-chs": "歐舒丹",
18046
"es": "Occitano",
18047
"xloc": [
18047
- "default.handlebars->27->965"
18048
+ "default.handlebars->27->963"
18049
]
18050
},
18051
{
@@ -18061,7 +18062,7 @@
18062
"ru": "Произошло в {0}",
18063
"zh-chs": "發生在{0}",
18064
"xloc": [
18064
- "default.handlebars->27->1590"
18065
+ "default.handlebars->27->1591"
18066
]
18067
},
18068
{
@@ -18096,7 +18097,7 @@
18097
"zh-chs": "舊密碼:",
18098
"xloc": [
18099
"default-mobile.handlebars->9->47",
18099
- "default.handlebars->27->1062"
18100
+ "default.handlebars->27->1060"
18101
]
18102
},
18103
{
@@ -18150,7 +18151,7 @@
18151
"xloc": [
18152
"default-mobile.handlebars->9->256",
18153
"default.handlebars->27->416",
18153
- "default.handlebars->27->727"
18154
+ "default.handlebars->27->725"
18155
]
18156
},
18157
{
@@ -18185,7 +18186,7 @@
18186
"ru": "Открыть страницу на устройстве",
18187
"zh-chs": "在設備上打開頁面",
18188
"xloc": [
18188
- "default.handlebars->27->595"
18189
+ "default.handlebars->27->593"
18190
]
18191
},
18192
{
@@ -18202,7 +18203,7 @@
18203
"zh-chs": "打開XTerm終端",
18204
"es": "Abrir Terminal XTerm",
18205
"xloc": [
18205
- "default.handlebars->27->529"
18206
+ "default.handlebars->27->527"
18207
]
18208
},
18209
{
@@ -18255,9 +18256,9 @@
18256
"xloc": [
18257
"default.handlebars->27->272",
18258
"default.handlebars->27->301",
18258
- "default.handlebars->27->483",
18259
- "default.handlebars->27->647",
18260
- "default.handlebars->27->758"
18259
+ "default.handlebars->27->481",
18260
+ "default.handlebars->27->645",
18261
+ "default.handlebars->27->756"
18262
]
18263
},
18264
{
@@ -18277,7 +18278,7 @@
18278
"default-mobile.handlebars->9->213",
18279
"default.handlebars->27->1381",
18280
"default.handlebars->27->376",
18280
- "default.handlebars->27->604"
18281
+ "default.handlebars->27->602"
18282
]
18283
},
18284
{
@@ -18311,7 +18312,7 @@
18312
"zh-chs": "奧里亞",
18313
"es": "Oriya",
18314
"xloc": [
18314
- "default.handlebars->27->966"
18315
+ "default.handlebars->27->964"
18316
]
18317
},
18318
{
@@ -18328,7 +18329,7 @@
18329
"zh-chs": "奧羅莫",
18330
"es": "Oromo",
18331
"xloc": [
18331
- "default.handlebars->27->967"
18332
+ "default.handlebars->27->965"
18333
]
18334
},
18335
{
@@ -18379,7 +18380,7 @@
18380
"ru": "Устаревший",
18381
"zh-chs": "過時的",
18382
"xloc": [
18382
- "default.handlebars->27->485"
18383
+ "default.handlebars->27->483"
18384
]
18385
},
18386
{
@@ -18396,7 +18397,7 @@
18397
"ru": "Собственный процесс",
18398
"zh-chs": "自己的過程",
18399
"xloc": [
18399
- "default.handlebars->27->689"
18400
+ "default.handlebars->27->687"
18401
]
18402
},
18403
{
@@ -18414,7 +18415,7 @@
18415
"zh-chs": "PID",
18416
"xloc": [
18417
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0",
18417
- "default.handlebars->27->685",
18418
+ "default.handlebars->27->683",
18419
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1"
18420
]
18421
},
@@ -18432,7 +18433,7 @@
18433
"ru": "Part Number",
18434
"zh-chs": "零件號",
18435
"xloc": [
18435
- "default.handlebars->27->804"
18436
+ "default.handlebars->27->802"
18437
]
18438
},
18439
{
@@ -18496,7 +18497,7 @@
18497
"xloc": [
18498
"default-mobile.handlebars->9->283",
18499
"default-mobile.handlebars->9->66",
18499
- "default.handlebars->27->1087"
18500
+ "default.handlebars->27->1085"
18501
]
18502
},
18503
{
@@ -18513,7 +18514,7 @@
18514
"ru": "Частичные права",
18515
"zh-chs": "部分權利",
18516
"xloc": [
18516
- "default.handlebars->27->1493"
18517
+ "default.handlebars->27->1494"
18518
]
18519
},
18520
{
@@ -18550,13 +18551,13 @@
18551
"default-mobile.handlebars->9->216",
18552
"default.handlebars->27->1412",
18553
"default.handlebars->27->1413",
18553
- "default.handlebars->27->1505",
18554
- "default.handlebars->27->1507",
18555
- "default.handlebars->27->1547",
18554
+ "default.handlebars->27->1506",
18555
+ "default.handlebars->27->1508",
18556
"default.handlebars->27->1548",
18557
+ "default.handlebars->27->1549",
18558
"default.handlebars->27->227",
18559
"default.handlebars->27->256",
18559
- "default.handlebars->27->610"
18560
+ "default.handlebars->27->608"
18561
]
18562
},
18563
{
@@ -18649,7 +18650,7 @@
18650
"ru": "Подсказка пароля",
18651
"zh-chs": "密碼提示",
18652
"xloc": [
18652
- "default.handlebars->27->1549"
18653
+ "default.handlebars->27->1550"
18654
]
18655
},
18656
{
@@ -18667,7 +18668,7 @@
18668
"zh-chs": "密碼提示:",
18669
"xloc": [
18670
"default-mobile.handlebars->9->50",
18670
- "default.handlebars->27->1065"
18671
+ "default.handlebars->27->1063"
18672
]
18673
},
18674
{
@@ -18684,7 +18685,7 @@
18685
"ru": "Пароль не совпадает",
18686
"zh-chs": "密碼不符合",
18687
"xloc": [
18687
- "default.handlebars->27->1166"
18688
+ "default.handlebars->27->1164"
18689
]
18690
},
18691
{
@@ -18719,8 +18720,8 @@
18720
"ru": "Пароль*",
18721
"zh-chs": "密碼*",
18722
"xloc": [
18722
- "default.handlebars->27->1164",
18723
- "default.handlebars->27->1165"
18723
+ "default.handlebars->27->1162",
18724
+ "default.handlebars->27->1163"
18725
]
18726
},
18727
{
@@ -18740,8 +18741,8 @@
18741
"account-invite.html->2->5",
18742
"default-mobile.handlebars->9->42",
18743
"default-mobile.handlebars->9->43",
18743
- "default.handlebars->27->1057",
18744
- "default.handlebars->27->1058",
18744
+ "default.handlebars->27->1055",
18745
+ "default.handlebars->27->1056",
18746
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1",
18747
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1",
18748
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1",
@@ -18773,8 +18774,8 @@
18774
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
18775
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
18776
"default.handlebars->27->1335",
18776
- "default.handlebars->27->710",
18777
- "default.handlebars->27->732",
18777
+ "default.handlebars->27->708",
18778
+ "default.handlebars->27->730",
18779
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->3",
18780
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
18781
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
@@ -18828,7 +18829,7 @@
18829
"ru": "Произвести действие агента",
18830
"zh-chs": "執行代理動作",
18831
"xloc": [
18831
- "default.handlebars->27->815"
18832
+ "default.handlebars->27->813"
18833
]
This file is too large to show in full.
webserver.js
+13
-4
@@ -4463,10 +4463,19 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
4463
var targets = (addedTargets != null) ? addedTargets : [];
4464
if (targets.indexOf('*') == -1) { targets.push('*'); }
4465
if (typeof mesh == 'string') { mesh = obj.meshes[mesh]; }
4466
- if (mesh != null) {
4467
- targets.push(mesh._id);
4468
- for (var i in mesh.links) { if (i.startsWith('ugrp/')) { targets.push(i); } }
4469
- }
4466
+ if (mesh != null) { targets.push(mesh._id); for (var i in mesh.links) { if (i.startsWith('ugrp/')) { targets.push(i); } } }
4467
+ return targets;
4468
+ }
4469
+
4470
+ // Returns a list of displatch targets for a given mesh
4471
+ // We have to target the meshid and all user groups for this mesh, plus any added targets
4472
+ obj.CreateNodeDispatchTargets = function (mesh, nodeid, addedTargets) {
4473
+ var targets = (addedTargets != null) ? addedTargets : [];
4474
+ targets.push(nodeid);
4475
+ if (targets.indexOf('*') == -1) { targets.push('*'); }
4476
+ if (typeof mesh == 'string') { mesh = obj.meshes[mesh]; }
4477
+ if (mesh != null) { targets.push(mesh._id); for (var i in mesh.links) { if (i.startsWith('ugrp/')) { targets.push(i); } } }
4478
+ for (var i in obj.userGroups) { const g = obj.userGroups[i]; if ((g != null) && (g.links != null) && (g.links[nodeid] != null)) { targets.push(i); } }
4479
return targets;
4480
}
4481