track/show locked active users #6782

Signed-off-by: si458 <simonsmith5521@gmail.com>

si458 committed Feb 14, 2025 at 15:42 UTC edeef03f00147c46c37851b3225a9655a9f9754c
6 files changed +5153 -5119
agents/meshcore.js
+29 -23
@@ -655,33 +655,39 @@ var meshCoreObj = { action: 'coreinfo', value: (require('MeshAgent').coreHash ?
655 try { require('os').name().then(function (v) { meshCoreObj.osdesc = v; meshCoreObjChanged(); }); } catch (ex) { }
656
657 // Setup logged in user monitoring (THIS IS BROKEN IN WIN7)
658 -try {
659 - var userSession = require('user-sessions');
660 - userSession.on('changed', function onUserSessionChanged() {
661 - userSession.enumerateUsers().then(function (users) {
662 - if (process.platform == 'linux') {
663 - if (userSession._startTime == null) {
664 - userSession._startTime = Date.now();
665 - userSession._count = users.length;
666 - }
667 - else if (Date.now() - userSession._startTime < 10000 && users.length == userSession._count) {
668 - userSession.removeAllListeners('changed');
669 - return;
670 - }
658 +function onUserSessionChanged(user, locked) {
659 + userSession.enumerateUsers().then(function (users) {
660 + if (process.platform == 'linux') {
661 + if (userSession._startTime == null) {
662 + userSession._startTime = Date.now();
663 + userSession._count = users.length;
664 }
672 -
673 - var u = [], a = users.Active;
674 - for (var i = 0; i < a.length; i++) {
675 - var un = a[i].Domain ? (a[i].Domain + '\\' + a[i].Username) : (a[i].Username);
676 - if (u.indexOf(un) == -1) { u.push(un); } // Only push users in the list once.
665 + else if (Date.now() - userSession._startTime < 10000 && users.length == userSession._count) {
666 + userSession.removeAllListeners('changed');
667 + return;
668 }
678 - meshCoreObj.users = u;
679 - meshCoreObjChanged();
680 - });
669 + }
670 +
671 + var u = [], a = users.Active;
672 + if(meshCoreObj.lusers == null) { meshCoreObj.lusers = []; }
673 + for (var i = 0; i < a.length; i++) {
674 + var un = a[i].Domain ? (a[i].Domain + '\\' + a[i].Username) : (a[i].Username);
675 + if (user && locked && (JSON.stringify(a[i]) === JSON.stringify(user))) { if (meshCoreObj.lusers.indexOf(un) == -1) { meshCoreObj.lusers.push(un); } }
676 + else if (user && !locked && (JSON.stringify(a[i]) === JSON.stringify(user))) { meshCoreObj.lusers.splice(meshCoreObj.lusers.indexOf(un), 1); }
677 + if (u.indexOf(un) == -1) { u.push(un); } // Only push users in the list once.
678 + }
679 + meshCoreObj.lusers = meshCoreObj.lusers;
680 + meshCoreObj.users = u;
681 + meshCoreObjChanged();
682 });
683 +}
684 +
685 +try {
686 + var userSession = require('user-sessions');
687 + userSession.on('changed', function () { onUserSessionChanged(null, false); });
688 userSession.emit('changed');
683 - //userSession.on('locked', function (user) { sendConsoleText('[' + (user.Domain ? user.Domain + '\\' : '') + user.Username + '] has LOCKED the desktop'); });
684 - //userSession.on('unlocked', function (user) { sendConsoleText('[' + (user.Domain ? user.Domain + '\\' : '') + user.Username + '] has UNLOCKED the desktop'); });
689 + userSession.on('locked', function (user) { if(user != undefined && user != null) { onUserSessionChanged(user, true); } });
690 + userSession.on('unlocked', function (user) { if(user != undefined && user != null) { onUserSessionChanged(user, false); } });
691 } catch (ex) { }
692
693 var meshServerConnectionState = 0;
meshagent.js
+2 -1
@@ -1936,8 +1936,9 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
1936 change = 1; // Don't save this change as an event to the db, so no log=1.
1937 parent.removePmtFromAllOtherNodes(device); // We need to make sure to remove this push messaging token from any other device on this server, all domains included.
1938 }
1939 -
1939 +
1940 if ((command.users != null) && (Array.isArray(command.users)) && (device.users != command.users)) { device.users = command.users; change = 1; } // Don't save this to the db.
1941 + if ((command.lusers != null) && (Array.isArray(command.lusers)) && (device.lusers != command.lusers)) { device.lusers = command.lusers; change = 1; } // Don't save this to the db.
1942 if ((mesh.mtype == 2) && (!args.wanonly)) {
1943 // In WAN mode, the hostname of a computer is not important. Don't log hostname changes.
1944 if (device.host != obj.remoteaddr) { device.host = obj.remoteaddr; change = 1; changes.push('host'); }
translate/translate.json
+5097 -5088
@@ -5,8 +5,8 @@
5 "en": " (",
6 "nl": " (",
7 "xloc": [
8 - "default.handlebars->47->1544",
9 - "default3.handlebars->35->1529"
8 + "default.handlebars->47->1545",
9 + "default3.handlebars->35->1530"
10 ]
11 },
12 {
@@ -35,10 +35,10 @@
35 "zh-cht": " + CIRA",
36 "uk": " + CIRA",
37 "xloc": [
38 - "default.handlebars->47->2214",
39 - "default.handlebars->47->2216",
40 - "default3.handlebars->35->2209",
41 - "default3.handlebars->35->2211"
38 + "default.handlebars->47->2215",
39 + "default.handlebars->47->2217",
40 + "default3.handlebars->35->2210",
41 + "default3.handlebars->35->2212"
42 ]
43 },
44 {
@@ -339,8 +339,8 @@
339 "zh-cht": " 可以使用密碼提示,但不建議使用。",
340 "uk": " Підказку для пароля можна використати, але не рекомендується.",
341 "xloc": [
342 - "default.handlebars->47->2088",
343 - "default3.handlebars->35->2067"
342 + "default.handlebars->47->2089",
343 + "default3.handlebars->35->2068"
344 ]
345 },
346 {
@@ -369,10 +369,10 @@
369 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
370 "uk": " Користувачам потрібно підключитися хоча б раз до цього серверу, щоб мати можливість бути доданими у групи пристроїв.",
371 "xloc": [
372 - "default.handlebars->47->2338",
373 - "default.handlebars->47->2920",
374 - "default3.handlebars->35->2334",
375 - "default3.handlebars->35->2913"
372 + "default.handlebars->47->2339",
373 + "default.handlebars->47->2921",
374 + "default3.handlebars->35->2335",
375 + "default3.handlebars->35->2914"
376 ]
377 },
378 {
@@ -966,8 +966,8 @@
966 "ru": ")",
967 "xloc": [
968 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1",
969 - "default.handlebars->47->1545",
970 - "default3.handlebars->35->1530"
969 + "default.handlebars->47->1546",
970 + "default3.handlebars->35->1531"
971 ]
972 },
973 {
@@ -996,9 +996,9 @@
996 "zh-cht": "* 8-16個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
997 "uk": "* 8-16 символів, 1 велика літера, 1 маленька літера, 1 цифра, 1 спеціальний знак.",
998 "xloc": [
999 - "default.handlebars->47->2298",
999 + "default.handlebars->47->2299",
1000 "default.handlebars->47->534",
1001 - "default3.handlebars->35->2291",
1001 + "default3.handlebars->35->2292",
1002 "default3.handlebars->35->531"
1003 ]
1004 },
@@ -1106,22 +1106,22 @@
1106 "zh-chs": ",",
1107 "zh-cht": ",",
1108 "xloc": [
1109 - "default-mobile.handlebars->11->1018",
1110 - "default-mobile.handlebars->11->811",
1111 - "default-mobile.handlebars->11->813",
1112 - "default-mobile.handlebars->11->815",
1113 - "default.handlebars->47->1011",
1114 - "default.handlebars->47->1651",
1115 - "default.handlebars->47->1653",
1116 - "default.handlebars->47->1655",
1117 - "default.handlebars->47->2414",
1118 - "default.handlebars->47->2693",
1119 - "default3.handlebars->35->1008",
1120 - "default3.handlebars->35->1635",
1121 - "default3.handlebars->35->1637",
1122 - "default3.handlebars->35->1639",
1123 - "default3.handlebars->35->2410",
1124 - "default3.handlebars->35->2689"
1109 + "default-mobile.handlebars->11->1019",
1110 + "default-mobile.handlebars->11->812",
1111 + "default-mobile.handlebars->11->814",
1112 + "default-mobile.handlebars->11->816",
1113 + "default.handlebars->47->1012",
1114 + "default.handlebars->47->1652",
1115 + "default.handlebars->47->1654",
1116 + "default.handlebars->47->1656",
1117 + "default.handlebars->47->2415",
1118 + "default.handlebars->47->2694",
1119 + "default3.handlebars->35->1009",
1120 + "default3.handlebars->35->1636",
1121 + "default3.handlebars->35->1638",
1122 + "default3.handlebars->35->1640",
1123 + "default3.handlebars->35->2411",
1124 + "default3.handlebars->35->2690"
1125 ]
1126 },
1127 {
@@ -1295,9 +1295,9 @@
1295 "zh-cht": ",MQTT在線",
1296 "uk": ", MQTT працює",
1297 "xloc": [
1298 - "default-mobile.handlebars->11->920",
1299 - "default.handlebars->47->1761",
1300 - "default3.handlebars->35->1743"
1298 + "default-mobile.handlebars->11->921",
1299 + "default.handlebars->47->1762",
1300 + "default3.handlebars->35->1744"
1301 ]
1302 },
1303 {
@@ -1326,10 +1326,10 @@
1326 "zh-cht": ", 不同意",
1327 "uk": ", Нема Погодження",
1328 "xloc": [
1329 - "default.handlebars->47->1106",
1330 - "default.handlebars->47->2256",
1331 - "default3.handlebars->35->1103",
1332 - "default3.handlebars->35->2251"
1329 + "default.handlebars->47->1107",
1330 + "default.handlebars->47->2257",
1331 + "default3.handlebars->35->1104",
1332 + "default3.handlebars->35->2252"
1333 ]
1334 },
1335 {
@@ -1358,10 +1358,10 @@
1358 "zh-cht": ",提示同意",
1359 "uk": ", Запит на погодження",
1360 "xloc": [
1361 - "default.handlebars->47->1107",
1362 - "default.handlebars->47->2257",
1363 - "default3.handlebars->35->1104",
1364 - "default3.handlebars->35->2252"
1361 + "default.handlebars->47->1108",
1362 + "default.handlebars->47->2258",
1363 + "default3.handlebars->35->1105",
1364 + "default3.handlebars->35->2253"
1365 ]
1366 },
1367 {
@@ -1389,8 +1389,8 @@
1389 "zh-chs": ", RDP",
1390 "zh-cht": ", RDP",
1391 "xloc": [
1392 - "default.handlebars->47->1406",
1393 - "default3.handlebars->35->1393"
1392 + "default.handlebars->47->1407",
1393 + "default3.handlebars->35->1394"
1394 ]
1395 },
1396 {
@@ -1419,10 +1419,10 @@
1419 "zh-cht": ", 每天重複",
1420 "uk": ", Повторюється щодня",
1421 "xloc": [
1422 - "default.handlebars->47->1103",
1423 - "default.handlebars->47->2253",
1424 - "default3.handlebars->35->1100",
1425 - "default3.handlebars->35->2248"
1422 + "default.handlebars->47->1104",
1423 + "default.handlebars->47->2254",
1424 + "default3.handlebars->35->1101",
1425 + "default3.handlebars->35->2249"
1426 ]
1427 },
1428 {
@@ -1451,10 +1451,10 @@
1451 "zh-cht": ", 每週重複一次",
1452 "uk": ", Повторюється щотижня",
1453 "xloc": [
1454 - "default.handlebars->47->1104",
1455 - "default.handlebars->47->2254",
1456 - "default3.handlebars->35->1101",
1457 - "default3.handlebars->35->2249"
1454 + "default.handlebars->47->1105",
1455 + "default.handlebars->47->2255",
1456 + "default3.handlebars->35->1102",
1457 + "default3.handlebars->35->2250"
1458 ]
1459 },
1460 {
@@ -1539,8 +1539,8 @@
1539 "zh-cht": ", SFTP",
1540 "xloc": [
1541 "default-mobile.handlebars->11->705",
1542 - "default.handlebars->47->1528",
1543 - "default3.handlebars->35->1513"
1542 + "default.handlebars->47->1529",
1543 + "default3.handlebars->35->1514"
1544 ]
1545 },
1546 {
@@ -1568,8 +1568,8 @@
1568 "zh-chs": ", SSH",
1569 "zh-cht": ", SSH",
1570 "xloc": [
1571 - "default.handlebars->47->1496",
1572 - "default3.handlebars->35->1481"
1571 + "default.handlebars->47->1497",
1572 + "default3.handlebars->35->1482"
1573 ]
1574 },
1575 {
@@ -1597,8 +1597,8 @@
1597 "zh-chs": ",软体KVM",
1598 "zh-cht": ",軟體KVM",
1599 "xloc": [
1600 - "default.handlebars->47->1389",
1601 - "default3.handlebars->35->1376",
1600 + "default.handlebars->47->1390",
1601 + "default3.handlebars->35->1377",
1602 "sharing.handlebars->11->12"
1603 ]
1604 },
@@ -1628,10 +1628,10 @@
1628 "zh-cht": ", 工具欄",
1629 "uk": ", Панель Засобів",
1630 "xloc": [
1631 - "default.handlebars->47->1108",
1632 - "default.handlebars->47->2258",
1633 - "default3.handlebars->35->1105",
1634 - "default3.handlebars->35->2253"
1631 + "default.handlebars->47->1109",
1632 + "default.handlebars->47->2259",
1633 + "default3.handlebars->35->1106",
1634 + "default3.handlebars->35->2254"
1635 ]
1636 },
1637 {
@@ -1686,10 +1686,10 @@
1686 "zh-cht": ", 僅查看桌面",
1687 "uk": ", Тільки перегляд стільниці",
1688 "xloc": [
1689 - "default.handlebars->47->1105",
1690 - "default.handlebars->47->2255",
1691 - "default3.handlebars->35->1102",
1692 - "default3.handlebars->35->2250"
1689 + "default.handlebars->47->1106",
1690 + "default.handlebars->47->2256",
1691 + "default3.handlebars->35->1103",
1692 + "default3.handlebars->35->2251"
1693 ]
1694 },
1695 {
@@ -1720,12 +1720,12 @@
1720 "default-mobile.handlebars->11->646",
1721 "default-mobile.handlebars->11->683",
1722 "default-mobile.handlebars->11->706",
1723 - "default.handlebars->47->1405",
1724 - "default.handlebars->47->1497",
1725 - "default.handlebars->47->1529",
1726 - "default3.handlebars->35->1392",
1727 - "default3.handlebars->35->1482",
1728 - "default3.handlebars->35->1514",
1723 + "default.handlebars->47->1406",
1724 + "default.handlebars->47->1498",
1725 + "default.handlebars->47->1530",
1726 + "default3.handlebars->35->1393",
1727 + "default3.handlebars->35->1483",
1728 + "default3.handlebars->35->1515",
1729 "sharing.handlebars->11->19",
1730 "sharing.handlebars->11->27",
1731 "sharing.handlebars->11->44",
@@ -1960,8 +1960,8 @@
1960 "zh-cht": ",{0}觀看",
1961 "uk": ", {0} стежень(ння)",
1962 "xloc": [
1963 - "default.handlebars->47->1400",
1964 - "default3.handlebars->35->1387",
1963 + "default.handlebars->47->1401",
1964 + "default3.handlebars->35->1388",
1965 "sharing.handlebars->11->13"
1966 ]
1967 },
@@ -2056,12 +2056,12 @@
2056 "default-mobile.handlebars->11->356",
2057 "default-mobile.handlebars->11->358",
2058 "default-mobile.handlebars->11->712",
2059 - "default.handlebars->47->1543",
2060 - "default.handlebars->47->2480",
2061 - "default.handlebars->47->3157",
2062 - "default3.handlebars->35->1528",
2063 - "default3.handlebars->35->2476",
2064 - "default3.handlebars->35->3144",
2059 + "default.handlebars->47->1544",
2060 + "default.handlebars->47->2481",
2061 + "default.handlebars->47->3158",
2062 + "default3.handlebars->35->1529",
2063 + "default3.handlebars->35->2477",
2064 + "default3.handlebars->35->3145",
2065 "sharing.handlebars->11->50"
2066 ]
2067 },
@@ -2247,8 +2247,8 @@
2247 "zh-cht": "1個活躍時段",
2248 "uk": "1 активна сесія",
2249 "xloc": [
2250 - "default.handlebars->47->3015",
2251 - "default3.handlebars->35->3008"
2250 + "default.handlebars->47->3016",
2251 + "default3.handlebars->35->3009"
2252 ]
2253 },
2254 {
@@ -2277,10 +2277,10 @@
2277 "zh-cht": "1個位元組",
2278 "uk": "1 байт",
2279 "xloc": [
2280 - "default-mobile.handlebars->11->1062",
2280 + "default-mobile.handlebars->11->1063",
2281 "default-mobile.handlebars->11->368",
2282 - "default.handlebars->47->2504",
2283 - "default3.handlebars->35->2500",
2282 + "default.handlebars->47->2505",
2283 + "default3.handlebars->35->2501",
2284 "download.handlebars->3->1",
2285 "download2.handlebars->5->1",
2286 "sharing.handlebars->11->101"
@@ -2341,8 +2341,8 @@
2341 "zh-cht": "1位聯絡文",
2342 "uk": "1 підключення",
2343 "xloc": [
2344 - "default.handlebars->47->1402",
2345 - "default3.handlebars->35->1389",
2344 + "default.handlebars->47->1403",
2345 + "default3.handlebars->35->1390",
2346 "sharing.handlebars->11->15"
2347 ]
2348 },
@@ -2406,8 +2406,8 @@
2406 "zh-cht": "1群",
2407 "uk": "1 група",
2408 "xloc": [
2409 - "default.handlebars->47->2970",
2410 - "default3.handlebars->35->2963"
2409 + "default.handlebars->47->2971",
2410 + "default3.handlebars->35->2964"
2411 ]
2412 },
2413 {
@@ -2470,10 +2470,10 @@
2470 "zh-cht": "1分鐘",
2471 "uk": "1 хвилина",
2472 "xloc": [
2473 - "default.handlebars->47->1216",
2474 - "default.handlebars->47->2053",
2475 - "default3.handlebars->35->1211",
2476 - "default3.handlebars->35->2033"
2473 + "default.handlebars->47->1217",
2474 + "default.handlebars->47->2054",
2475 + "default3.handlebars->35->1212",
2476 + "default3.handlebars->35->2034"
2477 ]
2478 },
2479 {
@@ -2566,8 +2566,8 @@
2566 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2567 "uk": "ще 1 користувача не показано, використовуйте поле пошуку для перегляду користувачів...",
2568 "xloc": [
2569 - "default.handlebars->47->2725",
2570 - "default3.handlebars->35->2721"
2569 + "default.handlebars->47->2726",
2570 + "default3.handlebars->35->2722"
2571 ]
2572 },
2573 {
@@ -2679,8 +2679,8 @@
2679 "uk": "1 секунда",
2680 "xloc": [
2681 "default-mobile.handlebars->11->582",
2682 - "default.handlebars->47->1254",
2683 - "default3.handlebars->35->1249"
2682 + "default.handlebars->47->1255",
2683 + "default3.handlebars->35->1250"
2684 ]
2685 },
2686 {
@@ -2806,7 +2806,7 @@
2806 "default-mobile.handlebars->11->437",
2807 "default-mobile.handlebars->11->441",
2808 "default-mobile.handlebars->11->445",
2809 - "default.handlebars->47->2729",
2809 + "default.handlebars->47->2730",
2810 "default.handlebars->47->453",
2811 "default.handlebars->47->456",
2812 "default.handlebars->47->460",
@@ -2814,7 +2814,7 @@
2814 "default.handlebars->47->468",
2815 "default.handlebars->47->472",
2816 "default.handlebars->47->476",
2817 - "default3.handlebars->35->2725",
2817 + "default3.handlebars->35->2726",
2818 "default3.handlebars->35->450",
2819 "default3.handlebars->35->453",
2820 "default3.handlebars->35->457",
@@ -3033,10 +3033,10 @@
3033 "zh-cht": "10分鐘",
3034 "uk": "10 хвилин",
3035 "xloc": [
3036 - "default.handlebars->47->1218",
3037 - "default.handlebars->47->2055",
3038 - "default3.handlebars->35->1213",
3039 - "default3.handlebars->35->2035"
3036 + "default.handlebars->47->1219",
3037 + "default.handlebars->47->2056",
3038 + "default3.handlebars->35->1214",
3039 + "default3.handlebars->35->2036"
3040 ]
3041 },
3042 {
@@ -3066,8 +3066,8 @@
3066 "uk": "10 секунд",
3067 "xloc": [
3068 "default-mobile.handlebars->11->584",
3069 - "default.handlebars->47->1256",
3070 - "default3.handlebars->35->1251"
3069 + "default.handlebars->47->1257",
3070 + "default3.handlebars->35->1252"
3071 ]
3072 },
3073 {
@@ -3243,10 +3243,10 @@
3243 "zh-cht": "12小時",
3244 "uk": "12 годин",
3245 "xloc": [
3246 - "default.handlebars->47->1226",
3247 - "default.handlebars->47->2063",
3248 - "default3.handlebars->35->1221",
3249 - "default3.handlebars->35->2043"
3246 + "default.handlebars->47->1227",
3247 + "default.handlebars->47->2064",
3248 + "default3.handlebars->35->1222",
3249 + "default3.handlebars->35->2044"
3250 ]
3251 },
3252 {
@@ -3389,10 +3389,10 @@
3389 "zh-cht": "15分鐘",
3390 "uk": "15 хвилин",
3391 "xloc": [
3392 - "default.handlebars->47->1219",
3393 - "default.handlebars->47->2056",
3394 - "default3.handlebars->35->1214",
3395 - "default3.handlebars->35->2036"
3392 + "default.handlebars->47->1220",
3393 + "default.handlebars->47->2057",
3394 + "default3.handlebars->35->1215",
3395 + "default3.handlebars->35->2037"
3396 ]
3397 },
3398 {
@@ -3421,10 +3421,10 @@
3421 "zh-cht": "16小時",
3422 "uk": "16 годин",
3423 "xloc": [
3424 - "default.handlebars->47->1227",
3425 - "default.handlebars->47->2064",
3426 - "default3.handlebars->35->1222",
3427 - "default3.handlebars->35->2044"
3424 + "default.handlebars->47->1228",
3425 + "default.handlebars->47->2065",
3426 + "default3.handlebars->35->1223",
3427 + "default3.handlebars->35->2045"
3428 ]
3429 },
3430 {
@@ -3569,10 +3569,10 @@
3569 "zh-cht": "2天",
3570 "uk": "2 дні",
3571 "xloc": [
3572 - "default.handlebars->47->1229",
3573 - "default.handlebars->47->2066",
3574 - "default3.handlebars->35->1224",
3575 - "default3.handlebars->35->2046"
3572 + "default.handlebars->47->1230",
3573 + "default.handlebars->47->2067",
3574 + "default3.handlebars->35->1225",
3575 + "default3.handlebars->35->2047"
3576 ]
3577 },
3578 {
@@ -3601,10 +3601,10 @@
3601 "zh-cht": "2小時",
3602 "uk": "2 години",
3603 "xloc": [
3604 - "default.handlebars->47->1223",
3605 - "default.handlebars->47->2060",
3606 - "default3.handlebars->35->1218",
3607 - "default3.handlebars->35->2040"
3604 + "default.handlebars->47->1224",
3605 + "default.handlebars->47->2061",
3606 + "default3.handlebars->35->1219",
3607 + "default3.handlebars->35->2041"
3608 ]
3609 },
3610 {
@@ -3814,10 +3814,10 @@
3814 "zh-cht": "24小時",
3815 "uk": "24 години",
3816 "xloc": [
3817 - "default.handlebars->47->1228",
3818 - "default.handlebars->47->2065",
3819 - "default3.handlebars->35->1223",
3820 - "default3.handlebars->35->2045"
3817 + "default.handlebars->47->1229",
3818 + "default.handlebars->47->2066",
3819 + "default3.handlebars->35->1224",
3820 + "default3.handlebars->35->2046"
3821 ]
3822 },
3823 {
@@ -3903,8 +3903,8 @@
3903 "zh-cht": "2FA備份代碼已清除",
3904 "uk": "ДФА резервні коди очищено",
3905 "xloc": [
3906 - "default.handlebars->47->2617",
3907 - "default3.handlebars->35->2613"
3906 + "default.handlebars->47->2618",
3907 + "default3.handlebars->35->2614"
3908 ]
3909 },
3910 {
@@ -3964,8 +3964,8 @@
3964 "zh-cht": "第二個因素",
3965 "uk": "Двофакторний",
3966 "xloc": [
3967 - "default.handlebars->47->3194",
3968 - "default3.handlebars->35->3181"
3967 + "default.handlebars->47->3195",
3968 + "default3.handlebars->35->3182"
3969 ]
3970 },
3971 {
@@ -3994,10 +3994,10 @@
3994 "zh-cht": "啟用第二因素身份驗證",
3995 "uk": "Двофакторна автентифікація увімкнена",
3996 "xloc": [
3997 - "default.handlebars->47->2743",
3998 - "default.handlebars->47->2996",
3999 - "default3.handlebars->35->2739",
4000 - "default3.handlebars->35->2989"
3997 + "default.handlebars->47->2744",
3998 + "default.handlebars->47->2997",
3999 + "default3.handlebars->35->2740",
4000 + "default3.handlebars->35->2990"
4001 ]
4002 },
4003 {
@@ -4167,10 +4167,10 @@
4167 "zh-cht": "30分鐘",
4168 "uk": "30 хвилин",
4169 "xloc": [
4170 - "default.handlebars->47->1220",
4171 - "default.handlebars->47->2057",
4172 - "default3.handlebars->35->1215",
4173 - "default3.handlebars->35->2037"
4170 + "default.handlebars->47->1221",
4171 + "default.handlebars->47->2058",
4172 + "default3.handlebars->35->1216",
4173 + "default3.handlebars->35->2038"
4174 ]
4175 },
4176 {
@@ -4200,8 +4200,8 @@
4200 "uk": "32-біта",
4201 "xloc": [
4202 "default-mobile.handlebars->11->750",
4203 - "default.handlebars->47->1608",
4204 - "default3.handlebars->35->1592"
4203 + "default.handlebars->47->1609",
4204 + "default3.handlebars->35->1593"
4205 ]
4206 },
4207 {
@@ -4287,10 +4287,10 @@
4287 "zh-cht": "4天",
4288 "uk": "4 дні",
4289 "xloc": [
4290 - "default.handlebars->47->1230",
4291 - "default.handlebars->47->2067",
4292 - "default3.handlebars->35->1225",
4293 - "default3.handlebars->35->2047"
4290 + "default.handlebars->47->1231",
4291 + "default.handlebars->47->2068",
4292 + "default3.handlebars->35->1226",
4293 + "default3.handlebars->35->2048"
4294 ]
4295 },
4296 {
@@ -4319,10 +4319,10 @@
4319 "zh-cht": "4個小時",
4320 "uk": "4 години",
4321 "xloc": [
4322 - "default.handlebars->47->1224",
4323 - "default.handlebars->47->2061",
4324 - "default3.handlebars->35->1219",
4325 - "default3.handlebars->35->2041"
4322 + "default.handlebars->47->1225",
4323 + "default.handlebars->47->2062",
4324 + "default3.handlebars->35->1220",
4325 + "default3.handlebars->35->2042"
4326 ]
4327 },
4328 {
@@ -4468,10 +4468,10 @@
4468 "zh-cht": "45分鐘",
4469 "uk": "45 хвилин",
4470 "xloc": [
4471 - "default.handlebars->47->1221",
4472 - "default.handlebars->47->2058",
4473 - "default3.handlebars->35->1216",
4474 - "default3.handlebars->35->2038"
4471 + "default.handlebars->47->1222",
4472 + "default.handlebars->47->2059",
4473 + "default3.handlebars->35->1217",
4474 + "default3.handlebars->35->2039"
4475 ]
4476 },
4477 {
@@ -4529,10 +4529,10 @@
4529 "zh-cht": "5分鐘",
4530 "uk": "5 хвилин",
4531 "xloc": [
4532 - "default.handlebars->47->1217",
4533 - "default.handlebars->47->2054",
4534 - "default3.handlebars->35->1212",
4535 - "default3.handlebars->35->2034"
4532 + "default.handlebars->47->1218",
4533 + "default.handlebars->47->2055",
4534 + "default3.handlebars->35->1213",
4535 + "default3.handlebars->35->2035"
4536 ]
4537 },
4538 {
@@ -4562,8 +4562,8 @@
4562 "uk": "5 секунд",
4563 "xloc": [
4564 "default-mobile.handlebars->11->583",
4565 - "default.handlebars->47->1255",
4566 - "default3.handlebars->35->1250"
4565 + "default.handlebars->47->1256",
4566 + "default3.handlebars->35->1251"
4567 ]
4568 },
4569 {
@@ -4742,10 +4742,10 @@
4742 "zh-cht": "60分鐘",
4743 "uk": "60 хвилин",
4744 "xloc": [
4745 - "default.handlebars->47->1222",
4746 - "default.handlebars->47->2059",
4747 - "default3.handlebars->35->1217",
4748 - "default3.handlebars->35->2039"
4745 + "default.handlebars->47->1223",
4746 + "default.handlebars->47->2060",
4747 + "default3.handlebars->35->1218",
4748 + "default3.handlebars->35->2040"
4749 ]
4750 },
4751 {
@@ -4833,8 +4833,8 @@
4833 "zh-cht": "64 位",
4834 "xloc": [
4835 "default-mobile.handlebars->11->752",
4836 - "default.handlebars->47->1610",
4837 - "default3.handlebars->35->1594"
4836 + "default.handlebars->47->1611",
4837 + "default3.handlebars->35->1595"
4838 ]
4839 },
4840 {
@@ -4996,8 +4996,8 @@
4996 "zh-cht": "7天電源狀態",
4997 "uk": "7-денний стан живлення",
4998 "xloc": [
4999 - "default.handlebars->47->1301",
5000 - "default3.handlebars->35->1291"
4999 + "default.handlebars->47->1302",
5000 + "default3.handlebars->35->1292"
5001 ]
5002 },
5003 {
@@ -5026,8 +5026,8 @@
5026 "zh-cht": "7天",
5027 "uk": "7 днів",
5028 "xloc": [
5029 - "default.handlebars->47->2068",
5030 - "default3.handlebars->35->2048"
5029 + "default.handlebars->47->2069",
5030 + "default3.handlebars->35->2049"
5031 ]
5032 },
5033 {
@@ -5117,12 +5117,12 @@
5117 "zh-cht": "8小時",
5118 "uk": "8 годин",
5119 "xloc": [
5120 - "default.handlebars->47->1225",
5121 - "default.handlebars->47->2062",
5120 + "default.handlebars->47->1226",
5121 + "default.handlebars->47->2063",
5122 "default.handlebars->47->562",
5123 "default.handlebars->47->576",
5124 - "default3.handlebars->35->1220",
5125 - "default3.handlebars->35->2042",
5124 + "default3.handlebars->35->1221",
5125 + "default3.handlebars->35->2043",
5126 "default3.handlebars->35->559",
5127 "default3.handlebars->35->573"
5128 ]
@@ -5326,10 +5326,10 @@
5326 "zh-cht": "ACM",
5327 "xloc": [
5328 "default-mobile.handlebars->11->516",
5329 - "default.handlebars->47->2234",
5329 + "default.handlebars->47->2235",
5330 "default.handlebars->47->442",
5331 "default.handlebars->47->920",
5332 - "default3.handlebars->35->2229",
5332 + "default3.handlebars->35->2230",
5333 "default3.handlebars->35->439",
5334 "default3.handlebars->35->917"
5335 ]
@@ -5460,8 +5460,8 @@
5460 "zh-chs": "操作系统",
5461 "zh-cht": "AMT操作系統",
5462 "xloc": [
5463 - "default.handlebars->47->3339",
5464 - "default3.handlebars->35->3326"
5463 + "default.handlebars->47->3340",
5464 + "default3.handlebars->35->3327"
5465 ]
5466 },
5467 {
@@ -5489,8 +5489,8 @@
5489 "zh-chs": "AMT-Redir",
5490 "zh-cht": "AMT-Redir",
5491 "xloc": [
5492 - "default.handlebars->47->3201",
5493 - "default3.handlebars->35->3188"
5492 + "default.handlebars->47->3202",
5493 + "default3.handlebars->35->3189"
5494 ]
5495 },
5496 {
@@ -5518,8 +5518,8 @@
5518 "zh-chs": "AMT-WSMAN",
5519 "zh-cht": "AMT-WSMAN",
5520 "xloc": [
5521 - "default.handlebars->47->3200",
5522 - "default3.handlebars->35->3187"
5521 + "default.handlebars->47->3201",
5522 + "default3.handlebars->35->3188"
5523 ]
5524 },
5525 {
@@ -5538,7 +5538,7 @@
5538 "pl": "Wersja APK MeshAgent",
5539 "uk": "MeshAgent версія APK",
5540 "xloc": [
5541 - "default-mobile.handlebars->11->971",
5541 + "default-mobile.handlebars->11->972",
5542 "default.handlebars->47->651",
5543 "default3.handlebars->35->648"
5544 ]
@@ -5776,9 +5776,9 @@
5776 "zh-cht": "拒絕存取",
5777 "uk": "Доступ Відмовлено",
5778 "xloc": [
5779 - "default-mobile.handlebars->11->921",
5780 - "default.handlebars->47->1762",
5781 - "default3.handlebars->35->1744"
5779 + "default-mobile.handlebars->11->922",
5780 + "default.handlebars->47->1763",
5781 + "default3.handlebars->35->1745"
5782 ]
5783 },
5784 {
@@ -5867,8 +5867,8 @@
5867 "zh-cht": "存取伺服器檔案",
5868 "uk": "Доступ до файлів серверу",
5869 "xloc": [
5870 - "default.handlebars->47->2926",
5871 - "default3.handlebars->35->2919"
5870 + "default.handlebars->47->2927",
5871 + "default3.handlebars->35->2920"
5872 ]
5873 },
5874 {
@@ -5995,16 +5995,16 @@
5995 "default-mobile.handlebars->11->485",
5996 "default-mobile.handlebars->11->96",
5997 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
5998 - "default.handlebars->47->2097",
5999 - "default.handlebars->47->2099",
6000 - "default.handlebars->47->3393",
5998 + "default.handlebars->47->2098",
5999 + "default.handlebars->47->2100",
6000 + "default.handlebars->47->3394",
6001 "default.handlebars->47->733",
6002 "default.handlebars->47->880",
6003 "default.handlebars->47->882",
6004 - "default3.handlebars->35->2098",
6004 "default3.handlebars->35->2099",
6006 - "default3.handlebars->35->3378",
6007 - "default3.handlebars->35->3380",
6005 + "default3.handlebars->35->2100",
6006 + "default3.handlebars->35->3379",
6007 + "default3.handlebars->35->3381",
6008 "default3.handlebars->35->730",
6009 "default3.handlebars->35->877",
6010 "default3.handlebars->35->879"
@@ -6036,9 +6036,9 @@
6036 "zh-cht": "帳號設定",
6037 "uk": "Налаштування Акаунту",
6038 "xloc": [
6039 - "default-mobile.handlebars->11->1029",
6040 - "default.handlebars->47->3264",
6041 - "default3.handlebars->35->3251"
6039 + "default-mobile.handlebars->11->1030",
6040 + "default.handlebars->47->3265",
6041 + "default3.handlebars->35->3252"
6042 ]
6043 },
6044 {
@@ -6112,8 +6112,8 @@
6112 "pl": "Konto zmienione di synchronizacji z danymi LDAP.",
6113 "uk": "Акаунт змінено на синхронізацію з даними LDAP.",
6114 "xloc": [
6115 - "default.handlebars->47->2678",
6116 - "default3.handlebars->35->2674"
6115 + "default.handlebars->47->2679",
6116 + "default3.handlebars->35->2675"
6117 ]
6118 },
6119 {
@@ -6142,8 +6142,8 @@
6142 "zh-cht": "帳戶已更改:{0}",
6143 "uk": "Акаунт змінено: {0}",
6144 "xloc": [
6145 - "default.handlebars->47->2590",
6146 - "default3.handlebars->35->2586"
6145 + "default.handlebars->47->2591",
6146 + "default3.handlebars->35->2587"
6147 ]
6148 },
6149 {
@@ -6172,8 +6172,8 @@
6172 "zh-cht": "創建帳戶,電子郵件為{0}",
6173 "uk": "Акаунт створено з е-поштою {0}",
6174 "xloc": [
6175 - "default.handlebars->47->2589",
6176 - "default3.handlebars->35->2585"
6175 + "default.handlebars->47->2590",
6176 + "default3.handlebars->35->2586"
6177 ]
6178 },
6179 {
@@ -6202,8 +6202,8 @@
6202 "zh-cht": "已創建帳戶,名稱為 {0}。",
6203 "uk": "Акаунт створено із іменем {0}.",
6204 "xloc": [
6205 - "default.handlebars->47->2652",
6206 - "default3.handlebars->35->2648"
6205 + "default.handlebars->47->2653",
6206 + "default3.handlebars->35->2649"
6207 ]
6208 },
6209 {
@@ -6232,8 +6232,8 @@
6232 "zh-cht": "帳戶已創建,用戶名是{0}",
6233 "uk": "Акаунт створено із іменем користувача {0}",
6234 "xloc": [
6235 - "default.handlebars->47->2588",
6236 - "default3.handlebars->35->2584"
6235 + "default.handlebars->47->2589",
6236 + "default3.handlebars->35->2585"
6237 ]
6238 },
6239 {
@@ -6264,11 +6264,11 @@
6264 "xloc": [
6265 "default-mobile.handlebars->11->67",
6266 "default.handlebars->47->215",
6267 - "default.handlebars->47->2745",
6268 - "default.handlebars->47->2923",
6267 + "default.handlebars->47->2746",
6268 + "default.handlebars->47->2924",
6269 "default3.handlebars->35->214",
6270 - "default3.handlebars->35->2741",
6271 - "default3.handlebars->35->2916"
6270 + "default3.handlebars->35->2742",
6271 + "default3.handlebars->35->2917"
6272 ]
6273 },
6274 {
@@ -6297,9 +6297,9 @@
6297 "zh-cht": "達到帳戶限制。",
6298 "uk": "Досягнуто обмеження акаунту.",
6299 "xloc": [
6300 - "default-mobile.handlebars->11->1041",
6301 - "default.handlebars->47->3276",
6302 - "default3.handlebars->35->3263",
6300 + "default-mobile.handlebars->11->1042",
6301 + "default.handlebars->47->3277",
6302 + "default3.handlebars->35->3264",
6303 "login-mobile.handlebars->5->6",
6304 "login.handlebars->5->8",
6305 "login2.handlebars->7->206"
@@ -6362,8 +6362,8 @@
6362 "zh-cht": "帳號登錄",
6363 "uk": "Вхід до акаунту",
6364 "xloc": [
6365 - "default.handlebars->47->2525",
6366 - "default3.handlebars->35->2521"
6365 + "default.handlebars->47->2526",
6366 + "default3.handlebars->35->2522"
6367 ]
6368 },
6369 {
@@ -6392,8 +6392,8 @@
6392 "zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
6393 "uk": "Вхід до акаунту з {0}, {1}, {2}",
6394 "xloc": [
6395 - "default.handlebars->47->2631",
6396 - "default3.handlebars->35->2627"
6395 + "default.handlebars->47->2632",
6396 + "default3.handlebars->35->2628"
6397 ]
6398 },
6399 {
@@ -6407,8 +6407,8 @@
6407 "pl": "Zapisy logowania tokenami użytkownika",
6408 "uk": "Записи токенів входу до акаунту",
6409 "xloc": [
6410 - "default.handlebars->47->3243",
6411 - "default3.handlebars->35->3230"
6410 + "default.handlebars->47->3244",
6411 + "default3.handlebars->35->3231"
6412 ]
6413 },
6414 {
@@ -6437,8 +6437,8 @@
6437 "zh-cht": "帳戶登出",
6438 "uk": "Вихід з акаунту",
6439 "xloc": [
6440 - "default.handlebars->47->2526",
6441 - "default3.handlebars->35->2522"
6440 + "default.handlebars->47->2527",
6441 + "default3.handlebars->35->2523"
6442 ]
6443 },
6444 {
@@ -6498,8 +6498,8 @@
6498 "zh-cht": "帳戶密碼已更改:{0}",
6499 "uk": "Пароль до акаунту змінено: {0}",
6500 "xloc": [
6501 - "default.handlebars->47->2598",
6502 - "default3.handlebars->35->2594"
6501 + "default.handlebars->47->2599",
6502 + "default3.handlebars->35->2595"
6503 ]
6504 },
6505 {
@@ -6528,8 +6528,8 @@
6528 "zh-cht": "帳戶已刪除",
6529 "uk": "Акаунт видалено",
6530 "xloc": [
6531 - "default.handlebars->47->2587",
6532 - "default3.handlebars->35->2583"
6531 + "default.handlebars->47->2588",
6532 + "default3.handlebars->35->2584"
6533 ]
6534 },
6535 {
@@ -6588,10 +6588,10 @@
6588 "zh-cht": "指令",
6589 "uk": "Дія",
6590 "xloc": [
6591 - "default-mobile.handlebars->11->927",
6592 - "default.handlebars->47->1768",
6591 + "default-mobile.handlebars->11->928",
6592 + "default.handlebars->47->1769",
6593 "default.handlebars->container->column_l->p42->p42tbl->1->0->8",
6594 - "default3.handlebars->35->1750",
6594 + "default3.handlebars->35->1751",
6595 "default3.handlebars->container->column_l->p42->p42tbl->1->0->17"
6596 ]
6597 },
@@ -6621,10 +6621,10 @@
6621 "zh-cht": "動作檔案",
6622 "uk": "Файл Операцій",
6623 "xloc": [
6624 - "default.handlebars->47->1348",
6625 - "default.handlebars->47->1350",
6626 - "default3.handlebars->35->1336",
6627 - "default3.handlebars->35->1338"
6624 + "default.handlebars->47->1349",
6625 + "default.handlebars->47->1351",
6626 + "default3.handlebars->35->1337",
6627 + "default3.handlebars->35->1339"
6628 ]
6629 },
6630 {
@@ -6657,11 +6657,11 @@
6657 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
6658 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
6659 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
6660 - "default.handlebars->47->1012",
6660 + "default.handlebars->47->1013",
6661 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
6662 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
6663 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1",
6664 - "default3.handlebars->35->1009",
6664 + "default3.handlebars->35->1010",
6665 "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->3",
6666 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->3",
6667 "default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->3"
@@ -6781,8 +6781,8 @@
6781 "zh-cht": "如果ACM失敗,則激活到CCM",
6782 "uk": "Активувати CCM, якщо ACM зазнало невдачі",
6783 "xloc": [
6784 - "default.handlebars->47->2289",
6785 - "default3.handlebars->35->2282"
6784 + "default.handlebars->47->2290",
6785 + "default3.handlebars->35->2283"
6786 ]
6787 },
6788 {
@@ -6813,11 +6813,11 @@
6813 "xloc": [
6814 "default-mobile.handlebars->11->511",
6815 "default-mobile.handlebars->11->513",
6816 - "default-mobile.handlebars->11->823",
6817 - "default.handlebars->47->1663",
6816 + "default-mobile.handlebars->11->824",
6817 + "default.handlebars->47->1664",
6818 "default.handlebars->47->913",
6819 "default.handlebars->47->915",
6820 - "default3.handlebars->35->1645",
6820 + "default3.handlebars->35->1646",
6821 "default3.handlebars->35->910",
6822 "default3.handlebars->35->912"
6823 ]
@@ -6878,10 +6878,10 @@
6878 "zh-cht": "主動設備共享",
6879 "uk": "Спільний доступ до пристрою активний",
6880 "xloc": [
6881 - "default.handlebars->47->1088",
6882 - "default.handlebars->47->2238",
6883 - "default3.handlebars->35->1085",
6884 - "default3.handlebars->35->2233"
6881 + "default.handlebars->47->1089",
6882 + "default.handlebars->47->2239",
6883 + "default3.handlebars->35->1086",
6884 + "default3.handlebars->35->2234"
6885 ]
6886 },
6887 {
@@ -6910,8 +6910,8 @@
6910 "zh-cht": "活動登錄令牌",
6911 "uk": "Активні Токени Входу",
6912 "xloc": [
6913 - "default.handlebars->47->2128",
6914 - "default3.handlebars->35->2127"
6913 + "default.handlebars->47->2129",
6914 + "default3.handlebars->35->2128"
6915 ]
6916 },
6917 {
@@ -6940,9 +6940,9 @@
6940 "zh-cht": "活躍用戶",
6941 "uk": "Активний Користувач",
6942 "xloc": [
6943 - "default-mobile.handlebars->11->784",
6944 - "default.handlebars->47->966",
6945 - "default3.handlebars->35->963"
6943 + "default-mobile.handlebars->11->785",
6944 + "default.handlebars->47->967",
6945 + "default3.handlebars->35->964"
6946 ]
6947 },
6948 {
@@ -6971,9 +6971,9 @@
6971 "zh-cht": "活躍用戶",
6972 "uk": "Користувачі Активні",
6973 "xloc": [
6974 - "default-mobile.handlebars->11->783",
6975 - "default.handlebars->47->965",
6976 - "default3.handlebars->35->962"
6974 + "default-mobile.handlebars->11->784",
6975 + "default.handlebars->47->966",
6976 + "default3.handlebars->35->963"
6977 ]
6978 },
6979 {
@@ -7029,10 +7029,10 @@
7029 "uk": "Додати",
7030 "xloc": [
7031 "default-mobile.handlebars->11->675",
7032 - "default.handlebars->47->1438",
7033 - "default.handlebars->47->1444",
7034 - "default3.handlebars->35->1425",
7035 - "default3.handlebars->35->1431"
7032 + "default.handlebars->47->1439",
7033 + "default.handlebars->47->1445",
7034 + "default3.handlebars->35->1426",
7035 + "default3.handlebars->35->1432"
7036 ]
7037 },
7038 {
@@ -7113,9 +7113,9 @@
7113 "zh-cht": "新增代理",
7114 "uk": "Додати Агента",
7115 "xloc": [
7116 - "default.handlebars->47->2228",
7116 + "default.handlebars->47->2229",
7117 "default.handlebars->47->494",
7118 - "default3.handlebars->35->2223",
7118 + "default3.handlebars->35->2224",
7119 "default3.handlebars->35->491"
7120 ]
7121 },
@@ -7171,13 +7171,13 @@
7171 "zh-cht": "新增裝置",
7172 "uk": "Додати Пристрій",
7173 "xloc": [
7174 - "default.handlebars->47->2232",
7175 - "default.handlebars->47->2898",
7176 - "default.handlebars->47->3093",
7174 + "default.handlebars->47->2233",
7175 + "default.handlebars->47->2899",
7176 + "default.handlebars->47->3094",
7177 "default.handlebars->47->498",
7178 - "default3.handlebars->35->2227",
7179 - "default3.handlebars->35->2891",
7180 - "default3.handlebars->35->3080",
7178 + "default3.handlebars->35->2228",
7179 + "default3.handlebars->35->2892",
7180 + "default3.handlebars->35->3081",
7181 "default3.handlebars->35->495"
7182 ]
7183 },
@@ -7207,8 +7207,8 @@
7207 "zh-cht": "新增裝置日誌",
7208 "uk": "Додати Подію Пристрою",
7209 "xloc": [
7210 - "default.handlebars->47->1174",
7211 - "default3.handlebars->35->1169"
7210 + "default.handlebars->47->1175",
7211 + "default3.handlebars->35->1170"
7212 ]
7213 },
7214 {
@@ -7237,13 +7237,13 @@
7237 "zh-cht": "新增裝置群",
7238 "uk": "Додати Групу Пристроїв",
7239 "xloc": [
7240 - "default.handlebars->47->2375",
7241 - "default.handlebars->47->2892",
7242 - "default.handlebars->47->3081",
7240 + "default.handlebars->47->2376",
7241 + "default.handlebars->47->2893",
7242 + "default.handlebars->47->3082",
7243 "default.handlebars->47->395",
7244 - "default3.handlebars->35->2371",
7245 - "default3.handlebars->35->2885",
7246 - "default3.handlebars->35->3068",
7244 + "default3.handlebars->35->2372",
7245 + "default3.handlebars->35->2886",
7246 + "default3.handlebars->35->3069",
7247 "default3.handlebars->35->392"
7248 ]
7249 },
@@ -7273,8 +7273,8 @@
7273 "zh-cht": "新增裝置群權限",
7274 "uk": "Додайте Дозволи Групи Пристроїв",
7275 "xloc": [
7276 - "default.handlebars->47->2372",
7277 - "default3.handlebars->35->2368"
7276 + "default.handlebars->47->2373",
7277 + "default3.handlebars->35->2369"
7278 ]
7279 },
7280 {
@@ -7303,10 +7303,10 @@
7303 "zh-cht": "新增裝置權限",
7304 "uk": "Додати Дозволи Пристрою",
7305 "xloc": [
7306 - "default.handlebars->47->2377",
7307 - "default.handlebars->47->2379",
7308 - "default3.handlebars->35->2373",
7309 - "default3.handlebars->35->2375"
7306 + "default.handlebars->47->2378",
7307 + "default.handlebars->47->2380",
7308 + "default3.handlebars->35->2374",
7309 + "default3.handlebars->35->2376"
7310 ]
7311 },
7312 {
@@ -7477,8 +7477,8 @@
7477 "zh-cht": "新增成員身份",
7478 "uk": "Додати Приналежність",
7479 "xloc": [
7480 - "default.handlebars->47->3113",
7481 - "default3.handlebars->35->3100"
7480 + "default.handlebars->47->3114",
7481 + "default3.handlebars->35->3101"
7482 ]
7483 },
7484 {
@@ -7563,14 +7563,14 @@
7563 "zh-cht": "新增安全密鑰",
7564 "uk": "Додати Ключ Безпеки",
7565 "xloc": [
7566 - "default.handlebars->47->1843",
7566 "default.handlebars->47->1844",
7567 + "default.handlebars->47->1845",
7568 "default.handlebars->47->249",
7569 "default.handlebars->47->251",
7570 "default.handlebars->47->254",
7571 "default.handlebars->47->256",
7572 - "default3.handlebars->35->1823",
7572 "default3.handlebars->35->1824",
7573 + "default3.handlebars->35->1825",
7574 "default3.handlebars->35->246",
7575 "default3.handlebars->35->248",
7576 "default3.handlebars->35->251",
@@ -7603,9 +7603,9 @@
7603 "zh-cht": "新增用戶",
7604 "uk": "Додати Користувача",
7605 "xloc": [
7606 - "default-mobile.handlebars->11->953",
7607 - "default.handlebars->47->1080",
7608 - "default3.handlebars->35->1077"
7606 + "default-mobile.handlebars->11->954",
7607 + "default.handlebars->47->1081",
7608 + "default3.handlebars->35->1078"
7609 ]
7610 },
7611 {
@@ -7634,8 +7634,8 @@
7634 "zh-cht": "新增用戶裝置權限",
7635 "uk": "Додати Дозволи для Пристрою Користувача",
7636 "xloc": [
7637 - "default.handlebars->47->2382",
7638 - "default3.handlebars->35->2378"
7637 + "default.handlebars->47->2383",
7638 + "default3.handlebars->35->2379"
7639 ]
7640 },
7641 {
@@ -7664,14 +7664,14 @@
7664 "zh-cht": "新增用戶群",
7665 "uk": "Додати Групу Користувачів",
7666 "xloc": [
7667 - "default.handlebars->47->1081",
7668 - "default.handlebars->47->2222",
7669 - "default.handlebars->47->2374",
7670 - "default.handlebars->47->3087",
7671 - "default3.handlebars->35->1078",
7672 - "default3.handlebars->35->2217",
7673 - "default3.handlebars->35->2370",
7674 - "default3.handlebars->35->3074"
7667 + "default.handlebars->47->1082",
7668 + "default.handlebars->47->2223",
7669 + "default.handlebars->47->2375",
7670 + "default.handlebars->47->3088",
7671 + "default3.handlebars->35->1079",
7672 + "default3.handlebars->35->2218",
7673 + "default3.handlebars->35->2371",
7674 + "default3.handlebars->35->3075"
7675 ]
7676 },
7677 {
@@ -7700,8 +7700,8 @@
7700 "zh-cht": "新增用戶群裝置權限",
7701 "uk": "Додати Дозволи на Пристрої Групи Користувачів",
7702 "xloc": [
7703 - "default.handlebars->47->2384",
7704 - "default3.handlebars->35->2380"
7703 + "default.handlebars->47->2385",
7704 + "default3.handlebars->35->2381"
7705 ]
7706 },
7707 {
@@ -7730,7 +7730,7 @@
7730 "zh-cht": "將用戶新增到裝置群",
7731 "uk": "Додати Користувача до Групи Пристроїв",
7732 "xloc": [
7733 - "default-mobile.handlebars->11->994"
7733 + "default-mobile.handlebars->11->995"
7734 ]
7735 },
7736 {
@@ -7785,10 +7785,10 @@
7785 "zh-cht": "新增用戶",
7786 "uk": "Додати Користувачів",
7787 "xloc": [
7788 - "default.handlebars->47->2221",
7789 - "default.handlebars->47->2887",
7790 - "default3.handlebars->35->2216",
7791 - "default3.handlebars->35->2880"
7788 + "default.handlebars->47->2222",
7789 + "default.handlebars->47->2888",
7790 + "default3.handlebars->35->2217",
7791 + "default3.handlebars->35->2881"
7792 ]
7793 },
7794 {
@@ -7817,8 +7817,8 @@
7817 "zh-cht": "將用戶新增到裝置群",
7818 "uk": "Додати Користувачів до Групи Пристроїв",
7819 "xloc": [
7820 - "default.handlebars->47->2371",
7821 - "default3.handlebars->35->2367"
7820 + "default.handlebars->47->2372",
7821 + "default3.handlebars->35->2368"
7822 ]
7823 },
7824 {
@@ -7847,8 +7847,8 @@
7847 "zh-cht": "將用戶新增到用戶群",
7848 "uk": "Додати Користувачів до Групи Користувачів",
7849 "xloc": [
7850 - "default.handlebars->47->2922",
7851 - "default3.handlebars->35->2915"
7850 + "default.handlebars->47->2923",
7851 + "default3.handlebars->35->2916"
7852 ]
7853 },
7854 {
@@ -8053,9 +8053,9 @@
8053 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
8054 "uk": "Додати новий комп'ютер до цієї групи пристроїв, встановивши MeshAgent.",
8055 "xloc": [
8056 - "default.handlebars->47->2227",
8056 + "default.handlebars->47->2228",
8057 "default.handlebars->47->493",
8058 - "default3.handlebars->35->2222",
8058 + "default3.handlebars->35->2223",
8059 "default3.handlebars->35->490"
8060 ]
8061 },
@@ -8085,9 +8085,9 @@
8085 "zh-cht": "添加位於本地網絡上的設備。",
8086 "uk": "Додати пристрій, що знаходиться в локальній мережі.",
8087 "xloc": [
8088 - "default.handlebars->47->2231",
8088 + "default.handlebars->47->2232",
8089 "default.handlebars->47->497",
8090 - "default3.handlebars->35->2226",
8090 + "default3.handlebars->35->2227",
8091 "default3.handlebars->35->494"
8092 ]
8093 },
@@ -8207,8 +8207,8 @@
8207 "zh-cht": "添加了身份驗證應用程序",
8208 "uk": "Додано застосунок автентифікації",
8209 "xloc": [
8210 - "default.handlebars->47->2614",
8211 - "default3.handlebars->35->2610"
8210 + "default.handlebars->47->2615",
8211 + "default3.handlebars->35->2611"
8212 ]
8213 },
8214 {
@@ -8237,8 +8237,8 @@
8237 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
8238 "uk": "Додано поширення пристрою {0} від {1} до {2}",
8239 "xloc": [
8240 - "default.handlebars->47->2625",
8241 - "default3.handlebars->35->2621"
8240 + "default.handlebars->47->2626",
8241 + "default3.handlebars->35->2622"
8242 ]
8243 },
8244 {
@@ -8267,8 +8267,8 @@
8267 "zh-cht": "添加了每天重複的設備共享 {0}。",
8268 "uk": "Додано поширення пристрою {0}, із щоденною переактивацією.",
8269 "xloc": [
8270 - "default.handlebars->47->2662",
8271 - "default3.handlebars->35->2658"
8270 + "default.handlebars->47->2663",
8271 + "default3.handlebars->35->2659"
8272 ]
8273 },
8274 {
@@ -8297,8 +8297,8 @@
8297 "zh-cht": "添加了每週重複的設備共享 {0}。",
8298 "uk": "Додано поширення пристрою {0}, із щотижневою переактивацією.",
8299 "xloc": [
8300 - "default.handlebars->47->2663",
8301 - "default3.handlebars->35->2659"
8300 + "default.handlebars->47->2664",
8301 + "default3.handlebars->35->2660"
8302 ]
8303 },
8304 {
@@ -8327,8 +8327,8 @@
8327 "zh-cht": "添加了無限時間的設備共享 {0}。",
8328 "uk": "Додано поширення пристрою {0} без обмеження часу.",
8329 "xloc": [
8330 - "default.handlebars->47->2655",
8331 - "default3.handlebars->35->2651"
8330 + "default.handlebars->47->2656",
8331 + "default3.handlebars->35->2652"
8332 ]
8333 },
8334 {
@@ -8357,10 +8357,10 @@
8357 "zh-cht": "已將設備{0}添加到設備組{1}",
8358 "uk": "Пристрій {0} додано до групи пристроїв {1}",
8359 "xloc": [
8360 - "default.handlebars->47->2581",
8361 - "default.handlebars->47->2608",
8362 - "default3.handlebars->35->2577",
8363 - "default3.handlebars->35->2604"
8360 + "default.handlebars->47->2582",
8361 + "default.handlebars->47->2609",
8362 + "default3.handlebars->35->2578",
8363 + "default3.handlebars->35->2605"
8364 ]
8365 },
8366 {
@@ -8389,8 +8389,8 @@
8389 "zh-cht": "添加了登錄令牌",
8390 "uk": "Додано токен лоґіну",
8391 "xloc": [
8392 - "default.handlebars->47->2639",
8393 - "default3.handlebars->35->2635"
8392 + "default.handlebars->47->2640",
8393 + "default3.handlebars->35->2636"
8394 ]
8395 },
8396 {
@@ -8419,8 +8419,8 @@
8419 "zh-cht": "增加推送通知認證設備",
8420 "uk": "На пристрій додано автентифікацію через push-сповіщення",
8421 "xloc": [
8422 - "default.handlebars->47->2637",
8423 - "default3.handlebars->35->2633"
8422 + "default.handlebars->47->2638",
8423 + "default3.handlebars->35->2634"
8424 ]
8425 },
8426 {
@@ -8449,8 +8449,8 @@
8449 "zh-cht": "添加了安全密鑰",
8450 "uk": "Додано Ключ Безпеки",
8451 "xloc": [
8452 - "default.handlebars->47->2619",
8453 - "default3.handlebars->35->2615"
8452 + "default.handlebars->47->2620",
8453 + "default3.handlebars->35->2616"
8454 ]
8455 },
8456 {
@@ -8479,8 +8479,8 @@
8479 "zh-cht": "已將用戶組{0}添加到設備組{1}",
8480 "uk": "Групу користувачів {0} додано до групи пристроїв {1}",
8481 "xloc": [
8482 - "default.handlebars->47->2592",
8483 - "default3.handlebars->35->2588"
8482 + "default.handlebars->47->2593",
8483 + "default3.handlebars->35->2589"
8484 ]
8485 },
8486 {
@@ -8509,10 +8509,10 @@
8509 "zh-cht": "已將用戶{0}添加到用戶組{1}",
8510 "uk": "Додано користувача {0} до групи користувачів {1}",
8511 "xloc": [
8512 - "default.handlebars->47->2595",
8513 - "default.handlebars->47->2604",
8514 - "default3.handlebars->35->2591",
8515 - "default3.handlebars->35->2600"
8512 + "default.handlebars->47->2596",
8513 + "default.handlebars->47->2605",
8514 + "default3.handlebars->35->2592",
8515 + "default3.handlebars->35->2601"
8516 ]
8517 },
8518 {
@@ -8600,9 +8600,9 @@
8600 "zh-cht": "管理員控制模式(ACM)",
8601 "uk": "Режим Керування Адміністратора (eng. ACM)",
8602 "xloc": [
8603 - "default-mobile.handlebars->11->825",
8604 - "default.handlebars->47->1665",
8605 - "default3.handlebars->35->1647"
8603 + "default-mobile.handlebars->11->826",
8604 + "default.handlebars->47->1666",
8605 + "default3.handlebars->35->1648"
8606 ]
8607 },
8608 {
@@ -8631,9 +8631,9 @@
8631 "zh-cht": "管理員憑證",
8632 "uk": "Облікові Дані Адміністратора",
8633 "xloc": [
8634 - "default-mobile.handlebars->11->831",
8635 - "default.handlebars->47->1671",
8636 - "default3.handlebars->35->1653"
8634 + "default-mobile.handlebars->11->832",
8635 + "default.handlebars->47->1672",
8636 + "default3.handlebars->35->1654"
8637 ]
8638 },
8639 {
@@ -8693,8 +8693,8 @@
8693 "zh-cht": "管理領域",
8694 "uk": "Області Адміністратора",
8695 "xloc": [
8696 - "default.handlebars->47->2974",
8697 - "default3.handlebars->35->2967"
8696 + "default.handlebars->47->2975",
8697 + "default3.handlebars->35->2968"
8698 ]
8699 },
8700 {
@@ -8754,8 +8754,8 @@
8754 "zh-cht": "管理領域",
8755 "uk": "Адміністративні Області",
8756 "xloc": [
8757 - "default.handlebars->47->2819",
8758 - "default3.handlebars->35->2812"
8757 + "default.handlebars->47->2820",
8758 + "default3.handlebars->35->2813"
8759 ]
8760 },
8761 {
@@ -8784,8 +8784,8 @@
8784 "zh-cht": "管理員",
8785 "uk": "Адміністратор",
8786 "xloc": [
8787 - "default.handlebars->47->2737",
8788 - "default3.handlebars->35->2733"
8787 + "default.handlebars->47->2738",
8788 + "default3.handlebars->35->2734"
8789 ]
8790 },
8791 {
@@ -8815,8 +8815,8 @@
8815 "uk": "Африканська",
8816 "xloc": [
8817 "default-mobile.handlebars->11->113",
8818 - "default.handlebars->47->1846",
8819 - "default3.handlebars->35->1826",
8818 + "default.handlebars->47->1847",
8819 + "default3.handlebars->35->1827",
8820 "login2.handlebars->7->1"
8821 ]
8822 },
@@ -8850,16 +8850,16 @@
8850 "default-mobile.handlebars->11->475",
8851 "default-mobile.handlebars->11->532",
8852 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8853 - "default.handlebars->47->2455",
8854 - "default.handlebars->47->2468",
8855 - "default.handlebars->47->3337",
8853 + "default.handlebars->47->2456",
8854 + "default.handlebars->47->2469",
8855 + "default.handlebars->47->3338",
8856 "default.handlebars->47->415",
8857 "default.handlebars->47->721",
8858 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8859 "default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm",
8860 - "default3.handlebars->35->2451",
8861 - "default3.handlebars->35->2464",
8862 - "default3.handlebars->35->3324",
8860 + "default3.handlebars->35->2452",
8861 + "default3.handlebars->35->2465",
8862 + "default3.handlebars->35->3325",
8863 "default3.handlebars->35->412",
8864 "default3.handlebars->35->718",
8865 "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
@@ -8892,10 +8892,10 @@
8892 "zh-cht": "代理+Intel&reg; AMT",
8893 "uk": "Агент + Intel&reg; AMT",
8894 "xloc": [
8895 - "default.handlebars->47->2457",
8896 - "default.handlebars->47->2470",
8897 - "default3.handlebars->35->2453",
8898 - "default3.handlebars->35->2466"
8895 + "default.handlebars->47->2458",
8896 + "default.handlebars->47->2471",
8897 + "default3.handlebars->35->2454",
8898 + "default3.handlebars->35->2467"
8899 ]
8900 },
8901 {
@@ -8955,11 +8955,11 @@
8955 "zh-cht": "代理控制台",
8956 "uk": "Консоль Агента",
8957 "xloc": [
8958 - "default-mobile.handlebars->11->1000",
8958 + "default-mobile.handlebars->11->1001",
8959 "default-mobile.handlebars->11->611",
8960 - "default.handlebars->47->2392",
8960 + "default.handlebars->47->2393",
8961 "default.handlebars->47->811",
8962 - "default3.handlebars->35->2388",
8962 + "default3.handlebars->35->2389",
8963 "default3.handlebars->35->808"
8964 ]
8965 },
@@ -8989,8 +8989,8 @@
8989 "zh-cht": "代理錯誤計數器",
8990 "uk": "Лічильник Помилок Агента",
8991 "xloc": [
8992 - "default.handlebars->47->3306",
8993 - "default3.handlebars->35->3293"
8992 + "default.handlebars->47->3307",
8993 + "default3.handlebars->35->3294"
8994 ]
8995 },
8996 {
@@ -9208,10 +9208,10 @@
9208 "zh-cht": "代理自行共享",
9209 "uk": "Само-Поширення Агента",
9210 "xloc": [
9211 - "default.handlebars->47->1109",
9212 - "default.handlebars->47->2259",
9213 - "default3.handlebars->35->1106",
9214 - "default3.handlebars->35->2254"
9211 + "default.handlebars->47->1110",
9212 + "default.handlebars->47->2260",
9213 + "default3.handlebars->35->1107",
9214 + "default3.handlebars->35->2255"
9215 ]
9216 },
9217 {
@@ -9240,8 +9240,8 @@
9240 "zh-cht": "代理時段",
9241 "uk": "Сесії Агента",
9242 "xloc": [
9243 - "default.handlebars->47->3322",
9244 - "default3.handlebars->35->3309"
9243 + "default.handlebars->47->3323",
9244 + "default3.handlebars->35->3310"
9245 ]
9246 },
9247 {
@@ -9359,9 +9359,9 @@
9359 "zh-cht": "代理類型",
9360 "uk": "Тип Агента",
9361 "xloc": [
9362 - "default.handlebars->47->2466",
9362 + "default.handlebars->47->2467",
9363 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1",
9364 - "default3.handlebars->35->2462",
9364 + "default3.handlebars->35->2463",
9365 "default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
9366 ]
9367 },
@@ -9423,8 +9423,8 @@
9423 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
9424 "uk": "Агент закрив сесію зі стисненням {0}% між агентом і сервером. Надіслано: {1}, стиснуто: {2}",
9425 "xloc": [
9426 - "default.handlebars->47->2578",
9427 - "default3.handlebars->35->2574"
9426 + "default.handlebars->47->2579",
9427 + "default3.handlebars->35->2575"
9428 ]
9429 },
9430 {
@@ -9453,11 +9453,11 @@
9453 "zh-cht": "代理已連接",
9454 "uk": "Агент підключено",
9455 "xloc": [
9456 - "default.handlebars->47->1067",
9456 "default.handlebars->47->1068",
9457 + "default.handlebars->47->1069",
9458 "default.handlebars->47->265",
9459 - "default3.handlebars->35->1064",
9459 "default3.handlebars->35->1065",
9460 + "default3.handlebars->35->1066",
9461 "default3.handlebars->35->262"
9462 ]
9463 },
@@ -9655,9 +9655,9 @@
9655 "zh-cht": "代理離線",
9656 "uk": "Агент офлайн",
9657 "xloc": [
9658 - "default-mobile.handlebars->11->919",
9659 - "default.handlebars->47->1760",
9660 - "default3.handlebars->35->1742"
9658 + "default-mobile.handlebars->11->920",
9659 + "default.handlebars->47->1761",
9660 + "default3.handlebars->35->1743"
9661 ]
9662 },
9663 {
@@ -9686,9 +9686,9 @@
9686 "zh-cht": "代理在線",
9687 "uk": "Агент онлайн",
9688 "xloc": [
9689 - "default-mobile.handlebars->11->918",
9690 - "default.handlebars->47->1759",
9691 - "default3.handlebars->35->1741"
9689 + "default-mobile.handlebars->11->919",
9690 + "default.handlebars->47->1760",
9691 + "default3.handlebars->35->1742"
9692 ]
9693 },
9694 {
@@ -9795,8 +9795,8 @@
9795 "zh-cht": "代理在特權降低的遠程設備上運行。",
9796 "uk": "Агент працює на віддаленому пристрої без прав адміністратора.",
9797 "xloc": [
9798 - "default.handlebars->47->1061",
9799 - "default3.handlebars->35->1058"
9798 + "default.handlebars->47->1062",
9799 + "default3.handlebars->35->1059"
9800 ]
9801 },
9802 {
@@ -9929,11 +9929,11 @@
9929 "zh-cht": "代理",
9930 "uk": "Агент",
9931 "xloc": [
9932 - "default.handlebars->47->2423",
9933 - "default.handlebars->47->3350",
9932 + "default.handlebars->47->2424",
9933 + "default.handlebars->47->3351",
9934 "default.handlebars->47->581",
9935 - "default3.handlebars->35->2419",
9936 - "default3.handlebars->35->3337",
9935 + "default3.handlebars->35->2420",
9936 + "default3.handlebars->35->3338",
9937 "default3.handlebars->35->578"
9938 ]
9939 },
@@ -9964,8 +9964,8 @@
9964 "uk": "Албанська",
9965 "xloc": [
9966 "default-mobile.handlebars->11->114",
9967 - "default.handlebars->47->1847",
9968 - "default3.handlebars->35->1827",
9967 + "default.handlebars->47->1848",
9968 + "default3.handlebars->35->1828",
9969 "login2.handlebars->7->2"
9970 ]
9971 },
@@ -9976,9 +9976,9 @@
9976 "pl": "Okno Powiadomienia",
9977 "uk": "Вікно Попередження",
9978 "xloc": [
9979 - "default.handlebars->47->1193",
9979 + "default.handlebars->47->1194",
9980 "default.handlebars->47->774",
9981 - "default3.handlebars->35->1188",
9981 + "default3.handlebars->35->1189",
9982 "default3.handlebars->35->771"
9983 ]
9984 },
@@ -10011,9 +10011,9 @@
10011 "default-mobile.handlebars->11->367",
10012 "default-mobile.handlebars->11->713",
10013 "default-mobile.handlebars->11->715",
10014 - "default.handlebars->47->3170",
10014 + "default.handlebars->47->3171",
10015 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1",
10016 - "default3.handlebars->35->3157",
10016 + "default3.handlebars->35->3158",
10017 "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1"
10018 ]
10019 },
@@ -10043,8 +10043,8 @@
10043 "zh-cht": "全部可用",
10044 "uk": "Усі Наявні",
10045 "xloc": [
10046 - "default.handlebars->47->2699",
10047 - "default3.handlebars->35->2695"
10046 + "default.handlebars->47->2700",
10047 + "default3.handlebars->35->2696"
10048 ]
10049 },
10050 {
@@ -10073,9 +10073,9 @@
10073 "zh-cht": "所有可用的代理",
10074 "uk": "Усі Наявні Агенти",
10075 "xloc": [
10076 - "default.handlebars->47->2424",
10076 + "default.handlebars->47->2425",
10077 "default.handlebars->47->582",
10078 - "default3.handlebars->35->2420",
10078 + "default3.handlebars->35->2421",
10079 "default3.handlebars->35->579"
10080 ]
10081 },
@@ -10105,8 +10105,8 @@
10105 "zh-cht": "所有顯示",
10106 "uk": "Усі Дисплеї",
10107 "xloc": [
10108 - "default.handlebars->47->1489",
10109 - "default3.handlebars->35->1474"
10108 + "default.handlebars->47->1490",
10109 + "default3.handlebars->35->1475"
10110 ]
10111 },
10112 {
@@ -10135,8 +10135,8 @@
10135 "zh-cht": "所有事件",
10136 "uk": "Усі Події",
10137 "xloc": [
10138 - "default.handlebars->47->2697",
10139 - "default3.handlebars->35->2693"
10138 + "default.handlebars->47->2698",
10139 + "default3.handlebars->35->2694"
10140 ]
10141 },
10142 {
@@ -10165,12 +10165,12 @@
10165 "zh-cht": "全部聚焦",
10166 "uk": "Фокусувати Все",
10167 "xloc": [
10168 - "default.handlebars->47->1407",
10169 - "default.handlebars->47->1409",
10168 + "default.handlebars->47->1408",
10169 "default.handlebars->47->1410",
10171 - "default3.handlebars->35->1394",
10172 - "default3.handlebars->35->1396",
10173 - "default3.handlebars->35->1397"
10170 + "default.handlebars->47->1411",
10171 + "default3.handlebars->35->1395",
10172 + "default3.handlebars->35->1397",
10173 + "default3.handlebars->35->1398"
10174 ]
10175 },
10176 {
@@ -10191,7 +10191,7 @@
10191 "en": "All Themes",
10192 "nl": "Alle thema's",
10193 "xloc": [
10194 - "default3.handlebars->35->2095"
10194 + "default3.handlebars->35->2096"
10195 ]
10196 },
10197 {
@@ -10249,10 +10249,10 @@
10249 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
10250 "uk": "Дозволити користувачам керувати цією групою пристроїв і пристроями в цій групі.",
10251 "xloc": [
10252 - "default.handlebars->47->2336",
10253 - "default.handlebars->47->2919",
10254 - "default3.handlebars->35->2332",
10255 - "default3.handlebars->35->2912"
10252 + "default.handlebars->47->2337",
10253 + "default.handlebars->47->2920",
10254 + "default3.handlebars->35->2333",
10255 + "default3.handlebars->35->2913"
10256 ]
10257 },
10258 {
@@ -10281,8 +10281,8 @@
10281 "zh-cht": "允許用戶管理此裝置。",
10282 "uk": "Дозволити користувачам керувати цим пристроєм.",
10283 "xloc": [
10284 - "default.handlebars->47->2337",
10285 - "default3.handlebars->35->2333"
10284 + "default.handlebars->47->2338",
10285 + "default3.handlebars->35->2334"
10286 ]
10287 },
10288 {
@@ -10400,10 +10400,10 @@
10400 "xloc": [
10401 "default-mobile.handlebars->11->668",
10402 "default-mobile.handlebars->11->672",
10403 - "default.handlebars->47->1431",
10404 - "default.handlebars->47->1435",
10405 - "default3.handlebars->35->1418",
10406 - "default3.handlebars->35->1422"
10403 + "default.handlebars->47->1432",
10404 + "default.handlebars->47->1436",
10405 + "default3.handlebars->35->1419",
10406 + "default3.handlebars->35->1423"
10407 ]
10408 },
10409 {
@@ -10432,8 +10432,8 @@
10432 "zh-cht": "替代Shell",
10433 "uk": "Alt Оболонка",
10434 "xloc": [
10435 - "default.handlebars->47->1397",
10436 - "default3.handlebars->35->1384"
10435 + "default.handlebars->47->1398",
10436 + "default3.handlebars->35->1385"
10437 ]
10438 },
10439 {
@@ -10522,8 +10522,8 @@
10522 "zh-cht": "備用(F10 = ESC + 0)",
10523 "uk": "Замінити (F10 = ESC+0)",
10524 "xloc": [
10525 - "default.handlebars->47->1523",
10526 - "default3.handlebars->35->1508",
10525 + "default.handlebars->47->1524",
10526 + "default3.handlebars->35->1509",
10527 "sharing.handlebars->11->37"
10528 ]
10529 },
@@ -10620,14 +10620,14 @@
10620 "zh-cht": "一直通知",
10621 "uk": "Завжди Сповіщувати",
10622 "xloc": [
10623 - "default.handlebars->47->2198",
10624 - "default.handlebars->47->2878",
10625 - "default.handlebars->47->2983",
10626 - "default.handlebars->47->975",
10627 - "default3.handlebars->35->2193",
10628 - "default3.handlebars->35->2871",
10629 - "default3.handlebars->35->2976",
10630 - "default3.handlebars->35->972"
10623 + "default.handlebars->47->2199",
10624 + "default.handlebars->47->2879",
10625 + "default.handlebars->47->2984",
10626 + "default.handlebars->47->976",
10627 + "default3.handlebars->35->2194",
10628 + "default3.handlebars->35->2872",
10629 + "default3.handlebars->35->2977",
10630 + "default3.handlebars->35->973"
10631 ]
10632 },
10633 {
@@ -10656,14 +10656,14 @@
10656 "zh-cht": "一直提示",
10657 "uk": "Завжди Запитувати",
10658 "xloc": [
10659 - "default.handlebars->47->2199",
10660 - "default.handlebars->47->2879",
10661 - "default.handlebars->47->2984",
10662 - "default.handlebars->47->976",
10663 - "default3.handlebars->35->2194",
10664 - "default3.handlebars->35->2872",
10665 - "default3.handlebars->35->2977",
10666 - "default3.handlebars->35->973"
10659 + "default.handlebars->47->2200",
10660 + "default.handlebars->47->2880",
10661 + "default.handlebars->47->2985",
10662 + "default.handlebars->47->977",
10663 + "default3.handlebars->35->2195",
10664 + "default3.handlebars->35->2873",
10665 + "default3.handlebars->35->2978",
10666 + "default3.handlebars->35->974"
10667 ]
10668 },
10669 {
@@ -10770,8 +10770,8 @@
10770 "pl": "Wystąpił nieznany błąd.",
10771 "uk": "Сталася невідома помилка.",
10772 "xloc": [
10773 - "default.handlebars->47->3122",
10774 - "default3.handlebars->35->3109"
10773 + "default.handlebars->47->3123",
10774 + "default3.handlebars->35->3110"
10775 ]
10776 },
10777 {
@@ -10835,7 +10835,7 @@
10835 "zh-cht": "Android APK",
10836 "uk": "Android APK",
10837 "xloc": [
10838 - "default-mobile.handlebars->11->972",
10838 + "default-mobile.handlebars->11->973",
10839 "default.handlebars->47->650",
10840 "default3.handlebars->35->647"
10841 ]
@@ -10924,7 +10924,7 @@
10924 "zh-cht": "安卓安裝",
10925 "uk": "Інсталяція Android",
10926 "xloc": [
10927 - "default-mobile.handlebars->11->974"
10927 + "default-mobile.handlebars->11->975"
10928 ]
10929 },
10930 {
@@ -10943,9 +10943,9 @@
10943 "nl": "Android Versie",
10944 "uk": "Версія Android",
10945 "xloc": [
10946 - "default-mobile.handlebars->11->800",
10947 - "default.handlebars->47->1630",
10948 - "default3.handlebars->35->1614"
10946 + "default-mobile.handlebars->11->801",
10947 + "default.handlebars->47->1631",
10948 + "default3.handlebars->35->1615"
10949 ]
10950 },
10951 {
@@ -11005,10 +11005,10 @@
11005 "zh-cht": "殺毒軟件未激活",
11006 "uk": "Антивірус непрацюючий",
11007 "xloc": [
11008 - "default.handlebars->47->2459",
11009 - "default.handlebars->47->2473",
11010 - "default3.handlebars->35->2455",
11011 - "default3.handlebars->35->2469"
11008 + "default.handlebars->47->2460",
11009 + "default.handlebars->47->2474",
11010 + "default3.handlebars->35->2456",
11011 + "default3.handlebars->35->2470"
11012 ]
11013 },
11014 {
@@ -11452,8 +11452,8 @@
11452 "uk": "Арабська (Алжир)",
11453 "xloc": [
11454 "default-mobile.handlebars->11->116",
11455 - "default.handlebars->47->1849",
11456 - "default3.handlebars->35->1829",
11455 + "default.handlebars->47->1850",
11456 + "default3.handlebars->35->1830",
11457 "login2.handlebars->7->4"
11458 ]
11459 },
@@ -11484,8 +11484,8 @@
11484 "uk": "Арабська (Бахрейн)",
11485 "xloc": [
11486 "default-mobile.handlebars->11->117",
11487 - "default.handlebars->47->1850",
11488 - "default3.handlebars->35->1830",
11487 + "default.handlebars->47->1851",
11488 + "default3.handlebars->35->1831",
11489 "login2.handlebars->7->5"
11490 ]
11491 },
@@ -11516,8 +11516,8 @@
11516 "uk": "Арабська (Єгипет)",
11517 "xloc": [
11518 "default-mobile.handlebars->11->118",
11519 - "default.handlebars->47->1851",
11520 - "default3.handlebars->35->1831",
11519 + "default.handlebars->47->1852",
11520 + "default3.handlebars->35->1832",
11521 "login2.handlebars->7->6"
11522 ]
11523 },
@@ -11548,8 +11548,8 @@
11548 "uk": "Арабська (Ірак)",
11549 "xloc": [
11550 "default-mobile.handlebars->11->119",
11551 - "default.handlebars->47->1852",
11552 - "default3.handlebars->35->1832",
11551 + "default.handlebars->47->1853",
11552 + "default3.handlebars->35->1833",
11553 "login2.handlebars->7->7"
11554 ]
11555 },
@@ -11580,8 +11580,8 @@
11580 "uk": "Арабська (Йорданія)",
11581 "xloc": [
11582 "default-mobile.handlebars->11->120",
11583 - "default.handlebars->47->1853",
11584 - "default3.handlebars->35->1833",
11583 + "default.handlebars->47->1854",
11584 + "default3.handlebars->35->1834",
11585 "login2.handlebars->7->8"
11586 ]
11587 },
@@ -11612,8 +11612,8 @@
11612 "uk": "Арабська (Кувейт)",
11613 "xloc": [
11614 "default-mobile.handlebars->11->121",
11615 - "default.handlebars->47->1854",
11616 - "default3.handlebars->35->1834",
11615 + "default.handlebars->47->1855",
11616 + "default3.handlebars->35->1835",
11617 "login2.handlebars->7->9"
11618 ]
11619 },
@@ -11644,8 +11644,8 @@
11644 "uk": "Арабська (Ліван)",
11645 "xloc": [
11646 "default-mobile.handlebars->11->122",
11647 - "default.handlebars->47->1855",
11648 - "default3.handlebars->35->1835",
11647 + "default.handlebars->47->1856",
11648 + "default3.handlebars->35->1836",
11649 "login2.handlebars->7->10"
11650 ]
11651 },
@@ -11676,8 +11676,8 @@
11676 "uk": "Арабська (Лівія)",
11677 "xloc": [
11678 "default-mobile.handlebars->11->123",
11679 - "default.handlebars->47->1856",
11680 - "default3.handlebars->35->1836",
11679 + "default.handlebars->47->1857",
11680 + "default3.handlebars->35->1837",
11681 "login2.handlebars->7->11"
11682 ]
11683 },
@@ -11708,8 +11708,8 @@
11708 "uk": "Арабська (Марокко)",
11709 "xloc": [
11710 "default-mobile.handlebars->11->124",
11711 - "default.handlebars->47->1857",
11712 - "default3.handlebars->35->1837",
11711 + "default.handlebars->47->1858",
11712 + "default3.handlebars->35->1838",
11713 "login2.handlebars->7->12"
11714 ]
11715 },
@@ -11740,8 +11740,8 @@
11740 "uk": "Арабська (Оман)",
11741 "xloc": [
11742 "default-mobile.handlebars->11->125",
11743 - "default.handlebars->47->1858",
11744 - "default3.handlebars->35->1838",
11743 + "default.handlebars->47->1859",
11744 + "default3.handlebars->35->1839",
11745 "login2.handlebars->7->13"
11746 ]
11747 },
@@ -11772,8 +11772,8 @@
11772 "uk": "Арабська (Катар)",
11773 "xloc": [
11774 "default-mobile.handlebars->11->126",
11775 - "default.handlebars->47->1859",
11776 - "default3.handlebars->35->1839",
11775 + "default.handlebars->47->1860",
11776 + "default3.handlebars->35->1840",
11777 "login2.handlebars->7->14"
11778 ]
11779 },
@@ -11804,8 +11804,8 @@
11804 "uk": "Арабська (Саудівська Аравія)",
11805 "xloc": [
11806 "default-mobile.handlebars->11->127",
11807 - "default.handlebars->47->1860",
11808 - "default3.handlebars->35->1840",
11807 + "default.handlebars->47->1861",
11808 + "default3.handlebars->35->1841",
11809 "login2.handlebars->7->15"
11810 ]
11811 },
@@ -11836,8 +11836,8 @@
11836 "uk": "Арабська (Стандартна)",
11837 "xloc": [
11838 "default-mobile.handlebars->11->115",
11839 - "default.handlebars->47->1848",
11840 - "default3.handlebars->35->1828",
11839 + "default.handlebars->47->1849",
11840 + "default3.handlebars->35->1829",
11841 "login2.handlebars->7->3"
11842 ]
11843 },
@@ -11868,8 +11868,8 @@
11868 "uk": "Арабська (Сирія)",
11869 "xloc": [
11870 "default-mobile.handlebars->11->128",
11871 - "default.handlebars->47->1861",
11872 - "default3.handlebars->35->1841",
11871 + "default.handlebars->47->1862",
11872 + "default3.handlebars->35->1842",
11873 "login2.handlebars->7->16"
11874 ]
11875 },
@@ -11900,8 +11900,8 @@
11900 "uk": "Арабська (Туніс)",
11901 "xloc": [
11902 "default-mobile.handlebars->11->129",
11903 - "default.handlebars->47->1862",
11904 - "default3.handlebars->35->1842",
11903 + "default.handlebars->47->1863",
11904 + "default3.handlebars->35->1843",
11905 "login2.handlebars->7->17"
11906 ]
11907 },
@@ -11932,8 +11932,8 @@
11932 "uk": "Арабська (ОАЕ)",
11933 "xloc": [
11934 "default-mobile.handlebars->11->130",
11935 - "default.handlebars->47->1863",
11936 - "default3.handlebars->35->1843",
11935 + "default.handlebars->47->1864",
11936 + "default3.handlebars->35->1844",
11937 "login2.handlebars->7->18"
11938 ]
11939 },
@@ -11964,8 +11964,8 @@
11964 "uk": "Арабська (Ємен)",
11965 "xloc": [
11966 "default-mobile.handlebars->11->131",
11967 - "default.handlebars->47->1864",
11968 - "default3.handlebars->35->1844",
11967 + "default.handlebars->47->1865",
11968 + "default3.handlebars->35->1845",
11969 "login2.handlebars->7->19"
11970 ]
11971 },
@@ -11996,8 +11996,8 @@
11996 "uk": "Арагонська",
11997 "xloc": [
11998 "default-mobile.handlebars->11->132",
11999 - "default.handlebars->47->1865",
12000 - "default3.handlebars->35->1845",
11999 + "default.handlebars->47->1866",
12000 + "default3.handlebars->35->1846",
12001 "login2.handlebars->7->20"
12002 ]
12003 },
@@ -12030,12 +12030,12 @@
12030 "default-mobile.handlebars->11->749",
12031 "default-mobile.handlebars->11->751",
12032 "default-mobile.handlebars->11->753",
12033 - "default.handlebars->47->1607",
12034 - "default.handlebars->47->1609",
12035 - "default.handlebars->47->1611",
12036 - "default3.handlebars->35->1591",
12037 - "default3.handlebars->35->1593",
12038 - "default3.handlebars->35->1595"
12033 + "default.handlebars->47->1608",
12034 + "default.handlebars->47->1610",
12035 + "default.handlebars->47->1612",
12036 + "default3.handlebars->35->1592",
12037 + "default3.handlebars->35->1594",
12038 + "default3.handlebars->35->1596"
12039 ]
12040 },
12041 {
@@ -12094,9 +12094,9 @@
12094 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
12095 "uk": "Ви впевнені, що бажаєте видалити групу {0}? Видалення групи пристроїв також видалить всю інформацію про пристрої в цій групі.",
12096 "xloc": [
12097 - "default-mobile.handlebars->11->960",
12098 - "default.handlebars->47->2303",
12099 - "default3.handlebars->35->2296"
12097 + "default-mobile.handlebars->11->961",
12098 + "default.handlebars->47->2304",
12099 + "default3.handlebars->35->2297"
12100 ]
12101 },
12102 {
@@ -12125,8 +12125,8 @@
12125 "zh-cht": "你確定要刪除節點{0}嗎?",
12126 "uk": "Ви впевнені, що хочете видалити вузол {0}?",
12127 "xloc": [
12128 - "default.handlebars->47->1323",
12129 - "default3.handlebars->35->1313"
12128 + "default.handlebars->47->1324",
12129 + "default3.handlebars->35->1314"
12130 ]
12131 },
12132 {
@@ -12135,7 +12135,7 @@
12135 "nl": "Weet u zeker dat u dit bestand/ deze map op het bureaublad van het externe apparaat wilt openen?",
12136 "uk": "Ви впевнені, що бажаєте відкрити цей файл/теку на стільниці віддаленого пристрою?",
12137 "xloc": [
12138 - "default.handlebars->47->1547"
12138 + "default.handlebars->47->1548"
12139 ]
12140 },
12141 {
@@ -12164,8 +12164,8 @@
12164 "zh-cht": "你確定要卸載所選代理嗎?",
12165 "uk": "Ви впевнені, що хочете видалити відібраний агент?",
12166 "xloc": [
12167 - "default.handlebars->47->1312",
12168 - "default3.handlebars->35->1303"
12167 + "default.handlebars->47->1313",
12168 + "default3.handlebars->35->1304"
12169 ]
12170 },
12171 {
@@ -12194,8 +12194,8 @@
12194 "zh-cht": "你確定要卸載所選的{0}代理嗎?",
12195 "uk": "Ви впевнені, що бажаєте видалити відібрані агенти {0}?",
12196 "xloc": [
12197 - "default.handlebars->47->1311",
12198 - "default3.handlebars->35->1302"
12197 + "default.handlebars->47->1312",
12198 + "default3.handlebars->35->1303"
12199 ]
12200 },
12201 {
@@ -12224,8 +12224,8 @@
12224 "zh-cht": "你確定要{0}外掛嗎:{1}",
12225 "uk": "Ви впевнені, що хочете {0} плаґін: {1}",
12226 "xloc": [
12227 - "default.handlebars->47->3402",
12228 - "default3.handlebars->35->3389"
12227 + "default.handlebars->47->3403",
12228 + "default3.handlebars->35->3390"
12229 ]
12230 },
12231 {
@@ -12286,8 +12286,8 @@
12286 "uk": "Вірменська",
12287 "xloc": [
12288 "default-mobile.handlebars->11->133",
12289 - "default.handlebars->47->1866",
12290 - "default3.handlebars->35->1846",
12289 + "default.handlebars->47->1867",
12290 + "default3.handlebars->35->1847",
12291 "login2.handlebars->7->21"
12292 ]
12293 },
@@ -12500,8 +12500,8 @@
12500 "uk": "Асамська",
12501 "xloc": [
12502 "default-mobile.handlebars->11->134",
12503 - "default.handlebars->47->1867",
12504 - "default3.handlebars->35->1847",
12503 + "default.handlebars->47->1868",
12504 + "default3.handlebars->35->1848",
12505 "login2.handlebars->7->22"
12506 ]
12507 },
@@ -12680,8 +12680,8 @@
12680 "uk": "Астурійська",
12681 "xloc": [
12682 "default-mobile.handlebars->11->135",
12683 - "default.handlebars->47->1868",
12684 - "default3.handlebars->35->1848",
12683 + "default.handlebars->47->1869",
12684 + "default3.handlebars->35->1849",
12685 "login2.handlebars->7->23"
12686 ]
12687 },
@@ -12711,8 +12711,8 @@
12711 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
12712 "uk": "Спроба активувати режим Intel(R) AMT ACM",
12713 "xloc": [
12714 - "default.handlebars->47->2547",
12715 - "default3.handlebars->35->2543"
12714 + "default.handlebars->47->2548",
12715 + "default3.handlebars->35->2544"
12716 ]
12717 },
12718 {
@@ -12770,12 +12770,12 @@
12770 "default-mobile.handlebars->11->684",
12771 "default-mobile.handlebars->11->688",
12772 "default-mobile.handlebars->11->700",
12773 - "default.handlebars->47->1498",
12774 - "default.handlebars->47->1502",
12775 - "default.handlebars->47->1514",
12776 - "default3.handlebars->35->1483",
12777 - "default3.handlebars->35->1487",
12778 - "default3.handlebars->35->1499",
12773 + "default.handlebars->47->1499",
12774 + "default.handlebars->47->1503",
12775 + "default.handlebars->47->1515",
12776 + "default3.handlebars->35->1484",
12777 + "default3.handlebars->35->1488",
12778 + "default3.handlebars->35->1500",
12779 "ssh.handlebars->3->21",
12780 "ssh.handlebars->3->22",
12781 "ssh.handlebars->3->5",
@@ -12808,8 +12808,8 @@
12808 "zh-cht": "認證軟體",
12809 "uk": "Застосунок Автентифікації",
12810 "xloc": [
12811 - "default.handlebars->47->2987",
12812 - "default3.handlebars->35->2980"
12811 + "default.handlebars->47->2988",
12812 + "default3.handlebars->35->2981"
12813 ]
12814 },
12815 {
@@ -12838,12 +12838,12 @@
12838 "zh-cht": "認證設備",
12839 "uk": "Пристрій Автентифікації",
12840 "xloc": [
12841 - "default.handlebars->47->1829",
12842 - "default.handlebars->47->1831",
12843 - "default.handlebars->47->1835",
12844 - "default3.handlebars->35->1810",
12845 - "default3.handlebars->35->1812",
12846 - "default3.handlebars->35->1815"
12841 + "default.handlebars->47->1830",
12842 + "default.handlebars->47->1832",
12843 + "default.handlebars->47->1836",
12844 + "default3.handlebars->35->1811",
12845 + "default3.handlebars->35->1813",
12846 + "default3.handlebars->35->1816"
12847 ]
12848 },
12849 {
@@ -12874,10 +12874,10 @@
12874 "xloc": [
12875 "default-mobile.handlebars->11->701",
12876 "default-mobile.handlebars->11->707",
12877 - "default.handlebars->47->1516",
12878 - "default.handlebars->47->1531",
12879 - "default3.handlebars->35->1501",
12880 - "default3.handlebars->35->1516"
12877 + "default.handlebars->47->1517",
12878 + "default.handlebars->47->1532",
12879 + "default3.handlebars->35->1502",
12880 + "default3.handlebars->35->1517"
12881 ]
12882 },
12883 {
@@ -12910,12 +12910,12 @@
12910 "default-mobile.handlebars->11->320",
12911 "default-mobile.handlebars->11->73",
12912 "default-mobile.handlebars->11->78",
12913 - "default.handlebars->47->1825",
12914 - "default.handlebars->47->1827",
12913 + "default.handlebars->47->1826",
12914 + "default.handlebars->47->1828",
12915 "default.handlebars->47->223",
12916 "default.handlebars->47->228",
12917 - "default3.handlebars->35->1806",
12918 - "default3.handlebars->35->1808",
12917 + "default3.handlebars->35->1807",
12918 + "default3.handlebars->35->1809",
12919 "default3.handlebars->35->222",
12920 "default3.handlebars->35->227"
12921 ]
@@ -13067,10 +13067,10 @@
13067 "zh-cht": "自動刪除",
13068 "uk": "Авто-Видалення",
13069 "xloc": [
13070 - "default.handlebars->47->2183",
13071 - "default.handlebars->47->2690",
13072 - "default3.handlebars->35->2178",
13073 - "default3.handlebars->35->2686"
13070 + "default.handlebars->47->2184",
13071 + "default.handlebars->47->2691",
13072 + "default3.handlebars->35->2179",
13073 + "default3.handlebars->35->2687"
13074 ]
13075 },
13076 {
@@ -13135,8 +13135,8 @@
13135 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
13136 "uk": "Автоматичне завантаження файлу дампа ядра агента: \\\"{0}\\\"",
13137 "xloc": [
13138 - "default.handlebars->47->2628",
13139 - "default3.handlebars->35->2624"
13138 + "default.handlebars->47->2629",
13139 + "default3.handlebars->35->2625"
13140 ]
13141 },
13142 {
@@ -13253,8 +13253,8 @@
13253 "zh-cht": "自動移除非活動設備",
13254 "uk": "Автоматично видаляти неактивні пристрої",
13255 "xloc": [
13256 - "default.handlebars->47->2331",
13257 - "default3.handlebars->35->2327"
13256 + "default.handlebars->47->2332",
13257 + "default3.handlebars->35->2328"
13258 ]
13259 },
13260 {
@@ -13283,8 +13283,8 @@
13283 "zh-cht": "可用內存",
13284 "uk": "Доступна пам'ять",
13285 "xloc": [
13286 - "default.handlebars->47->3331",
13287 - "default3.handlebars->35->3318"
13286 + "default.handlebars->47->3332",
13287 + "default3.handlebars->35->3319"
13288 ]
13289 },
13290 {
@@ -13314,8 +13314,8 @@
13314 "uk": "Азербайджанська",
13315 "xloc": [
13316 "default-mobile.handlebars->11->136",
13317 - "default.handlebars->47->1869",
13318 - "default3.handlebars->35->1849",
13317 + "default.handlebars->47->1870",
13318 + "default3.handlebars->35->1850",
13319 "login2.handlebars->7->24"
13320 ]
13321 },
@@ -13388,9 +13388,9 @@
13388 "zh-cht": "的BIOS",
13389 "uk": "BIOS",
13390 "xloc": [
13391 - "default-mobile.handlebars->11->840",
13392 - "default.handlebars->47->1680",
13393 - "default3.handlebars->35->1662"
13391 + "default-mobile.handlebars->11->841",
13392 + "default.handlebars->47->1681",
13393 + "default3.handlebars->35->1663"
13394 ]
13395 },
13396 {
@@ -13529,8 +13529,8 @@
13529 "uk": "BackSpace",
13530 "xloc": [
13531 "default-mobile.handlebars->11->649",
13532 - "default.handlebars->47->1413",
13533 - "default3.handlebars->35->1400"
13532 + "default.handlebars->47->1414",
13533 + "default3.handlebars->35->1401"
13534 ]
13535 },
13536 {
@@ -13590,12 +13590,12 @@
13590 "zh-cht": "背景與互動",
13591 "uk": "Фоновий та Інтерактивний",
13592 "xloc": [
13593 - "default.handlebars->47->2430",
13594 - "default.handlebars->47->2437",
13593 + "default.handlebars->47->2431",
13594 + "default.handlebars->47->2438",
13595 "default.handlebars->47->568",
13596 "default.handlebars->47->589",
13597 - "default3.handlebars->35->2426",
13598 - "default3.handlebars->35->2433",
13597 + "default3.handlebars->35->2427",
13598 + "default3.handlebars->35->2434",
13599 "default3.handlebars->35->565",
13600 "default3.handlebars->35->586"
13601 ]
@@ -13627,13 +13627,13 @@
13627 "uk": "Лише Фоновий",
13628 "xloc": [
13629 "agentinvite.handlebars->3->9",
13630 - "default.handlebars->47->2431",
13631 - "default.handlebars->47->2439",
13630 + "default.handlebars->47->2432",
13631 + "default.handlebars->47->2440",
13632 "default.handlebars->47->569",
13633 "default.handlebars->47->590",
13634 "default.handlebars->47->607",
13635 - "default3.handlebars->35->2427",
13636 - "default3.handlebars->35->2435",
13635 + "default3.handlebars->35->2428",
13636 + "default3.handlebars->35->2436",
13637 "default3.handlebars->35->566",
13638 "default3.handlebars->35->587",
13639 "default3.handlebars->35->604"
@@ -13696,10 +13696,10 @@
13696 "zh-cht": "備用碼",
13697 "uk": "Резервні Коди",
13698 "xloc": [
13699 - "default.handlebars->47->2991",
13700 - "default.handlebars->47->3218",
13701 - "default3.handlebars->35->2984",
13702 - "default3.handlebars->35->3205"
13699 + "default.handlebars->47->2992",
13700 + "default.handlebars->47->3219",
13701 + "default3.handlebars->35->2985",
13702 + "default3.handlebars->35->3206"
13703 ]
13704 },
13705 {
@@ -13789,8 +13789,8 @@
13789 "zh-cht": "錯誤的簽名",
13790 "uk": "Помилковий Підпис",
13791 "xloc": [
13792 - "default.handlebars->47->3313",
13793 - "default3.handlebars->35->3300"
13792 + "default.handlebars->47->3314",
13793 + "default3.handlebars->35->3301"
13794 ]
13795 },
13796 {
@@ -13819,8 +13819,8 @@
13819 "zh-cht": "錯誤的網絡憑證",
13820 "uk": "Недійсний Веб-Сертифікат",
13821 "xloc": [
13822 - "default.handlebars->47->3312",
13823 - "default3.handlebars->35->3299"
13822 + "default.handlebars->47->3313",
13823 + "default3.handlebars->35->3300"
13824 ]
13825 },
13826 {
@@ -13850,8 +13850,8 @@
13850 "uk": "Баскська",
13851 "xloc": [
13852 "default-mobile.handlebars->11->137",
13853 - "default.handlebars->47->1870",
13854 - "default3.handlebars->35->1850",
13853 + "default.handlebars->47->1871",
13854 + "default3.handlebars->35->1851",
13855 "login2.handlebars->7->25"
13856 ]
13857 },
@@ -13955,8 +13955,8 @@
13955 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
13956 "uk": "Пакетне завантаження файлів ({0}) до теки {1}",
13957 "xloc": [
13958 - "default.handlebars->47->2627",
13959 - "default3.handlebars->35->2623"
13958 + "default.handlebars->47->2628",
13959 + "default3.handlebars->35->2624"
13960 ]
13961 },
13962 {
@@ -13986,8 +13986,8 @@
13986 "uk": "Білоруська",
13987 "xloc": [
13988 "default-mobile.handlebars->11->139",
13989 - "default.handlebars->47->1872",
13990 - "default3.handlebars->35->1852",
13989 + "default.handlebars->47->1873",
13990 + "default3.handlebars->35->1853",
13991 "login2.handlebars->7->27"
13992 ]
13993 },
@@ -14018,8 +14018,8 @@
14018 "uk": "Бенгальська",
14019 "xloc": [
14020 "default-mobile.handlebars->11->140",
14021 - "default.handlebars->47->1873",
14022 - "default3.handlebars->35->1853",
14021 + "default.handlebars->47->1874",
14022 + "default3.handlebars->35->1854",
14023 "login2.handlebars->7->28"
14024 ]
14025 },
@@ -14087,9 +14087,9 @@
14087 "nl": "BitLocker",
14088 "uk": "BitLocker",
14089 "xloc": [
14090 - "default-mobile.handlebars->11->896",
14091 - "default.handlebars->47->1736",
14092 - "default3.handlebars->35->1718"
14090 + "default-mobile.handlebars->11->897",
14091 + "default.handlebars->47->1737",
14092 + "default3.handlebars->35->1719"
14093 ]
14094 },
14095 {
@@ -14099,9 +14099,9 @@
14099 "pl": "Informacje o BitLocker",
14100 "uk": "Інформація о BitLocker",
14101 "xloc": [
14102 - "default-mobile.handlebars->11->917",
14103 - "default.handlebars->47->1757",
14104 - "default3.handlebars->35->1739"
14102 + "default-mobile.handlebars->11->918",
14103 + "default.handlebars->47->1758",
14104 + "default3.handlebars->35->1740"
14105 ]
14106 },
14107 {
@@ -14130,9 +14130,9 @@
14130 "zh-cht": "引導加載程序",
14131 "uk": "Завантажувач",
14132 "xloc": [
14133 - "default-mobile.handlebars->11->797",
14134 - "default.handlebars->47->1627",
14135 - "default3.handlebars->35->1611"
14133 + "default-mobile.handlebars->11->798",
14134 + "default.handlebars->47->1628",
14135 + "default3.handlebars->35->1612"
14136 ]
14137 },
14138 {
@@ -14162,8 +14162,8 @@
14162 "uk": "Боснійська",
14163 "xloc": [
14164 "default-mobile.handlebars->11->141",
14165 - "default.handlebars->47->1874",
14166 - "default3.handlebars->35->1854",
14165 + "default.handlebars->47->1875",
14166 + "default3.handlebars->35->1855",
14167 "login2.handlebars->7->29"
14168 ]
14169 },
@@ -14194,8 +14194,8 @@
14194 "uk": "Бретонська",
14195 "xloc": [
14196 "default-mobile.handlebars->11->142",
14197 - "default.handlebars->47->1875",
14198 - "default3.handlebars->35->1855",
14197 + "default.handlebars->47->1876",
14198 + "default3.handlebars->35->1856",
14199 "login2.handlebars->7->30"
14200 ]
14201 },
@@ -14225,9 +14225,9 @@
14225 "zh-cht": "廣播",
14226 "uk": "Широкомовне",
14227 "xloc": [
14228 - "default.handlebars->47->2885",
14228 + "default.handlebars->47->2886",
14229 "default.handlebars->container->column_l->p4->3->1->0->3->1",
14230 - "default3.handlebars->35->2878",
14230 + "default3.handlebars->35->2879",
14231 "default3.handlebars->container->column_l->p4->3->1->0->1->3"
14232 ]
14233 },
@@ -14257,8 +14257,8 @@
14257 "zh-cht": "廣播消息",
14258 "uk": "Широкомовне Повідомлення",
14259 "xloc": [
14260 - "default.handlebars->47->2801",
14261 - "default3.handlebars->35->2796"
14260 + "default.handlebars->47->2802",
14261 + "default3.handlebars->35->2797"
14262 ]
14263 },
14264 {
@@ -14287,8 +14287,8 @@
14287 "zh-cht": "向所有連接的用戶廣播消息。",
14288 "uk": "Широкомовне повідомлення всім підключеним користувачам.",
14289 "xloc": [
14290 - "default.handlebars->47->2796",
14291 - "default3.handlebars->35->2791"
14290 + "default.handlebars->47->2797",
14291 + "default3.handlebars->35->2792"
14292 ]
14293 },
14294 {
@@ -14317,8 +14317,8 @@
14317 "zh-cht": "瀏覽器",
14318 "uk": "Браузер",
14319 "xloc": [
14320 - "default.handlebars->47->3192",
14321 - "default3.handlebars->35->3179"
14320 + "default.handlebars->47->3193",
14321 + "default3.handlebars->35->3180"
14322 ]
14323 },
14324 {
@@ -14409,8 +14409,8 @@
14409 "uk": "Болгарська",
14410 "xloc": [
14411 "default-mobile.handlebars->11->138",
14412 - "default.handlebars->47->1871",
14413 - "default3.handlebars->35->1851",
14412 + "default.handlebars->47->1872",
14413 + "default3.handlebars->35->1852",
14414 "login2.handlebars->7->26"
14415 ]
14416 },
@@ -14441,8 +14441,8 @@
14441 "uk": "Бірманська",
14442 "xloc": [
14443 "default-mobile.handlebars->11->143",
14444 - "default.handlebars->47->1876",
14445 - "default3.handlebars->35->1856",
14444 + "default.handlebars->47->1877",
14445 + "default3.handlebars->35->1857",
14446 "login2.handlebars->7->31"
14447 ]
14448 },
@@ -14472,8 +14472,8 @@
14472 "zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
14473 "uk": "Типово неактивні пристрої видаляються через 1 день.",
14474 "xloc": [
14475 - "default.handlebars->47->2333",
14476 - "default3.handlebars->35->2329"
14475 + "default.handlebars->47->2334",
14476 + "default3.handlebars->35->2330"
14477 ]
14478 },
14479 {
@@ -14502,8 +14502,8 @@
14502 "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
14503 "uk": "Типово неактивні пристрої видаляються через {0} дн.",
14504 "xloc": [
14505 - "default.handlebars->47->2334",
14506 - "default3.handlebars->35->2330"
14505 + "default.handlebars->47->2335",
14506 + "default3.handlebars->35->2331"
14507 ]
14508 },
14509 {
@@ -14545,8 +14545,8 @@
14545 "zh-cht": "字節輸入",
14546 "uk": "Байт Вх.",
14547 "xloc": [
14548 - "default.handlebars->47->3188",
14549 - "default3.handlebars->35->3175"
14548 + "default.handlebars->47->3189",
14549 + "default3.handlebars->35->3176"
14550 ]
14551 },
14552 {
@@ -14575,8 +14575,8 @@
14575 "zh-cht": "字節輸出",
14576 "uk": "Байт Вих.",
14577 "xloc": [
14578 - "default.handlebars->47->3189",
14579 - "default3.handlebars->35->3176"
14578 + "default.handlebars->47->3190",
14579 + "default3.handlebars->35->3177"
14580 ]
14581 },
14582 {
@@ -14685,8 +14685,8 @@
14685 "zh-cht": "CCM模式",
14686 "uk": "Режим CCM",
14687 "xloc": [
14688 - "default.handlebars->47->2286",
14689 - "default3.handlebars->35->2279"
14688 + "default.handlebars->47->2287",
14689 + "default3.handlebars->35->2280"
14690 ]
14691 },
14692 {
@@ -14694,15 +14694,15 @@
14694 "en": "CD-ROM",
14695 "nl": "CD-ROM",
14696 "xloc": [
14697 - "default-mobile.handlebars->11->889",
14698 - "default-mobile.handlebars->11->901",
14699 - "default-mobile.handlebars->11->908",
14700 - "default.handlebars->47->1729",
14701 - "default.handlebars->47->1741",
14702 - "default.handlebars->47->1748",
14703 - "default3.handlebars->35->1711",
14704 - "default3.handlebars->35->1723",
14705 - "default3.handlebars->35->1730"
14697 + "default-mobile.handlebars->11->890",
14698 + "default-mobile.handlebars->11->902",
14699 + "default-mobile.handlebars->11->909",
14700 + "default.handlebars->47->1730",
14701 + "default.handlebars->47->1742",
14702 + "default.handlebars->47->1749",
14703 + "default3.handlebars->35->1712",
14704 + "default3.handlebars->35->1724",
14705 + "default3.handlebars->35->1731"
14706 ]
14707 },
14708 {
@@ -14732,10 +14732,10 @@
14732 "uk": "CIRA",
14733 "xloc": [
14734 "default-mobile.handlebars->11->476",
14735 - "default.handlebars->47->3338",
14735 + "default.handlebars->47->3339",
14736 "default.handlebars->47->417",
14737 "default.handlebars->47->723",
14738 - "default3.handlebars->35->3325",
14738 + "default3.handlebars->35->3326",
14739 "default3.handlebars->35->414",
14740 "default3.handlebars->35->720"
14741 ]
@@ -14766,8 +14766,8 @@
14766 "zh-cht": "CIRA伺服器",
14767 "uk": "Сервер CIRA",
14768 "xloc": [
14769 - "default.handlebars->47->3386",
14770 - "default3.handlebars->35->3373"
14769 + "default.handlebars->47->3387",
14770 + "default3.handlebars->35->3374"
14771 ]
14772 },
14773 {
@@ -14796,8 +14796,8 @@
14796 "zh-cht": "CIRA伺服器指令",
14797 "uk": "Команди Сервера CIRA",
14798 "xloc": [
14799 - "default.handlebars->47->3387",
14800 - "default3.handlebars->35->3374"
14799 + "default.handlebars->47->3388",
14800 + "default3.handlebars->35->3375"
14801 ]
14802 },
14803 {
@@ -14856,8 +14856,8 @@
14856 "zh-cht": "CIRA設置",
14857 "uk": "Налаштування CIRA",
14858 "xloc": [
14859 - "default.handlebars->47->2294",
14860 - "default3.handlebars->35->2286"
14859 + "default.handlebars->47->2295",
14860 + "default3.handlebars->35->2287"
14861 ]
14862 },
14863 {
@@ -14886,14 +14886,14 @@
14886 "zh-cht": "CPU",
14887 "uk": "ЦП",
14888 "xloc": [
14889 - "default-mobile.handlebars->11->846",
14890 - "default.handlebars->47->1602",
14891 - "default.handlebars->47->1686",
14892 - "default.handlebars->47->3362",
14889 + "default-mobile.handlebars->11->847",
14890 + "default.handlebars->47->1603",
14891 + "default.handlebars->47->1687",
14892 + "default.handlebars->47->3363",
14893 "default.handlebars->container->column_l->p40->3->1->p40type->5",
14894 - "default3.handlebars->35->1586",
14895 - "default3.handlebars->35->1668",
14896 - "default3.handlebars->35->3349",
14894 + "default3.handlebars->35->1587",
14895 + "default3.handlebars->35->1669",
14896 + "default3.handlebars->35->3350",
14897 "default3.handlebars->container->column_l->p40->3->3->p40type->5"
14898 ]
14899 },
@@ -14923,8 +14923,8 @@
14923 "zh-cht": "CPU負載",
14924 "uk": "Навантаження ЦП",
14925 "xloc": [
14926 - "default.handlebars->47->3327",
14927 - "default3.handlebars->35->3314"
14926 + "default.handlebars->47->3328",
14927 + "default3.handlebars->35->3315"
14928 ]
14929 },
14930 {
@@ -14953,8 +14953,8 @@
14953 "zh-cht": "最近15分鐘的CPU負載",
14954 "uk": "Навантаження ЦП за останні 15 хвилин",
14955 "xloc": [
14956 - "default.handlebars->47->3330",
14957 - "default3.handlebars->35->3317"
14956 + "default.handlebars->47->3331",
14957 + "default3.handlebars->35->3318"
14958 ]
14959 },
14960 {
@@ -14983,8 +14983,8 @@
14983 "zh-cht": "最近5分鐘的CPU負載",
14984 "uk": "Навантаження ЦП за останні 5 хвилин",
14985 "xloc": [
14986 - "default.handlebars->47->3329",
14987 - "default3.handlebars->35->3316"
14986 + "default.handlebars->47->3330",
14987 + "default3.handlebars->35->3317"
14988 ]
14989 },
14990 {
@@ -15013,8 +15013,8 @@
15013 "zh-cht": "最近一分鐘的CPU負載",
15014 "uk": "Навантаження ЦП за останню хвилину",
15015 "xloc": [
15016 - "default.handlebars->47->3328",
15017 - "default3.handlebars->35->3315"
15016 + "default.handlebars->47->3329",
15017 + "default3.handlebars->35->3316"
15018 ]
15019 },
15020 {
@@ -15043,11 +15043,11 @@
15043 "zh-cht": "CR+LF",
15044 "uk": "CR+LF",
15045 "xloc": [
15046 - "default.handlebars->47->1494",
15047 - "default.handlebars->47->1525",
15046 + "default.handlebars->47->1495",
15047 + "default.handlebars->47->1526",
15048 "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
15049 - "default3.handlebars->35->1479",
15050 - "default3.handlebars->35->1510",
15049 + "default3.handlebars->35->1480",
15050 + "default3.handlebars->35->1511",
15051 "default3.handlebars->container->column_l->p12->termTable->1->1->4->1->3->terminalSettingsButtons",
15052 "sharing.handlebars->11->25",
15053 "sharing.handlebars->11->39",
@@ -15080,8 +15080,8 @@
15080 "zh-cht": "CSV",
15081 "uk": "CSV",
15082 "xloc": [
15083 - "default.handlebars->47->2707",
15084 - "default3.handlebars->35->2703"
15083 + "default.handlebars->47->2708",
15084 + "default3.handlebars->35->2704"
15085 ]
15086 },
15087 {
@@ -15110,11 +15110,11 @@
15110 "zh-cht": "CSV格式",
15111 "uk": "Формат CSV",
15112 "xloc": [
15113 - "default.handlebars->47->2711",
15114 - "default.handlebars->47->2788",
15113 + "default.handlebars->47->2712",
15114 + "default.handlebars->47->2789",
15115 "default.handlebars->47->796",
15116 - "default3.handlebars->35->2707",
15117 - "default3.handlebars->35->2783",
15116 + "default3.handlebars->35->2708",
15117 + "default3.handlebars->35->2784",
15118 "default3.handlebars->35->793"
15119 ]
15120 },
@@ -15124,8 +15124,8 @@
15124 "nl": "Het CSV bestandsformaat is als volgt:",
15125 "uk": "Формат файлу CSV нижче:",
15126 "xloc": [
15127 - "default.handlebars->47->2774",
15128 - "default3.handlebars->35->2769"
15127 + "default.handlebars->47->2775",
15128 + "default3.handlebars->35->2770"
15129 ]
15130 },
15131 {
@@ -15180,8 +15180,8 @@
15180 "zh-cht": "呼叫錯誤",
15181 "uk": "Помилка Виклику",
15182 "xloc": [
15183 - "default.handlebars->47->3403",
15184 - "default3.handlebars->35->3390"
15183 + "default.handlebars->47->3404",
15184 + "default3.handlebars->35->3391"
15185 ]
15186 },
15187 {
@@ -15194,10 +15194,10 @@
15194 "pl": "CallMeBot",
15195 "uk": "CallMeBot",
15196 "xloc": [
15197 - "default.handlebars->47->1794",
15198 - "default.handlebars->47->3026",
15199 - "default3.handlebars->35->1775",
15200 - "default3.handlebars->35->3019"
15197 + "default.handlebars->47->1795",
15198 + "default.handlebars->47->3027",
15199 + "default3.handlebars->35->1776",
15200 + "default3.handlebars->35->3020"
15201 ]
15202 },
15203 {
@@ -15259,8 +15259,8 @@
15259 "agent-translations.json",
15260 "default-mobile.handlebars->11->329",
15261 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
15262 - "default.handlebars->47->2150",
15263 - "default.handlebars->47->3392",
15262 + "default.handlebars->47->2151",
15263 + "default.handlebars->47->3393",
15264 "default.handlebars->47->541",
15265 "default.handlebars->container->dialog->idx_dlgButtonBar",
15266 "default3.handlebars->35->538",
@@ -15382,30 +15382,30 @@
15382 "zh-cht": "容量",
15383 "uk": "Ємність",
15384 "xloc": [
15385 - "default-mobile.handlebars->11->864",
15386 - "default-mobile.handlebars->11->870",
15387 - "default-mobile.handlebars->11->876",
15388 - "default-mobile.handlebars->11->881",
15389 - "default-mobile.handlebars->11->883",
15390 - "default-mobile.handlebars->11->886",
15391 - "default-mobile.handlebars->11->898",
15392 - "default-mobile.handlebars->11->905",
15393 - "default.handlebars->47->1704",
15394 - "default.handlebars->47->1710",
15395 - "default.handlebars->47->1716",
15396 - "default.handlebars->47->1721",
15397 - "default.handlebars->47->1723",
15398 - "default.handlebars->47->1726",
15399 - "default.handlebars->47->1738",
15400 - "default.handlebars->47->1745",
15401 - "default3.handlebars->35->1686",
15402 - "default3.handlebars->35->1692",
15403 - "default3.handlebars->35->1698",
15404 - "default3.handlebars->35->1703",
15405 - "default3.handlebars->35->1705",
15406 - "default3.handlebars->35->1708",
15407 - "default3.handlebars->35->1720",
15408 - "default3.handlebars->35->1727"
15385 + "default-mobile.handlebars->11->865",
15386 + "default-mobile.handlebars->11->871",
15387 + "default-mobile.handlebars->11->877",
15388 + "default-mobile.handlebars->11->882",
15389 + "default-mobile.handlebars->11->884",
15390 + "default-mobile.handlebars->11->887",
15391 + "default-mobile.handlebars->11->899",
15392 + "default-mobile.handlebars->11->906",
15393 + "default.handlebars->47->1705",
15394 + "default.handlebars->47->1711",
15395 + "default.handlebars->47->1717",
15396 + "default.handlebars->47->1722",
15397 + "default.handlebars->47->1724",
15398 + "default.handlebars->47->1727",
15399 + "default.handlebars->47->1739",
15400 + "default.handlebars->47->1746",
15401 + "default3.handlebars->35->1687",
15402 + "default3.handlebars->35->1693",
15403 + "default3.handlebars->35->1699",
15404 + "default3.handlebars->35->1704",
15405 + "default3.handlebars->35->1706",
15406 + "default3.handlebars->35->1709",
15407 + "default3.handlebars->35->1721",
15408 + "default3.handlebars->35->1728"
15409 ]
15410 },
15411 {
@@ -15434,15 +15434,15 @@
15434 "zh-cht": "容量/速度",
15435 "uk": "Ємність / Швидкість",
15436 "xloc": [
15437 - "default-mobile.handlebars->11->862",
15438 - "default-mobile.handlebars->11->868",
15439 - "default-mobile.handlebars->11->874",
15440 - "default.handlebars->47->1702",
15441 - "default.handlebars->47->1708",
15442 - "default.handlebars->47->1714",
15443 - "default3.handlebars->35->1684",
15444 - "default3.handlebars->35->1690",
15445 - "default3.handlebars->35->1696"
15437 + "default-mobile.handlebars->11->863",
15438 + "default-mobile.handlebars->11->869",
15439 + "default-mobile.handlebars->11->875",
15440 + "default.handlebars->47->1703",
15441 + "default.handlebars->47->1709",
15442 + "default.handlebars->47->1715",
15443 + "default3.handlebars->35->1685",
15444 + "default3.handlebars->35->1691",
15445 + "default3.handlebars->35->1697"
15446 ]
15447 },
15448 {
@@ -15451,15 +15451,15 @@
15451 "nl": "Resterende capaciteit",
15452 "uk": "Залишок ємності",
15453 "xloc": [
15454 - "default-mobile.handlebars->11->887",
15455 - "default-mobile.handlebars->11->899",
15456 - "default-mobile.handlebars->11->906",
15457 - "default.handlebars->47->1727",
15458 - "default.handlebars->47->1739",
15459 - "default.handlebars->47->1746",
15460 - "default3.handlebars->35->1709",
15461 - "default3.handlebars->35->1721",
15462 - "default3.handlebars->35->1728"
15454 + "default-mobile.handlebars->11->888",
15455 + "default-mobile.handlebars->11->900",
15456 + "default-mobile.handlebars->11->907",
15457 + "default.handlebars->47->1728",
15458 + "default.handlebars->47->1740",
15459 + "default.handlebars->47->1747",
15460 + "default3.handlebars->35->1710",
15461 + "default3.handlebars->35->1722",
15462 + "default3.handlebars->35->1729"
15463 ]
15464 },
15465 {
@@ -15489,8 +15489,8 @@
15489 "uk": "Каталанська",
15490 "xloc": [
15491 "default-mobile.handlebars->11->144",
15492 - "default.handlebars->47->1877",
15493 - "default3.handlebars->35->1857",
15492 + "default.handlebars->47->1878",
15493 + "default3.handlebars->35->1858",
15494 "login2.handlebars->7->32"
15495 ]
15496 },
@@ -15587,7 +15587,7 @@
15587 "en": "Cerulean",
15588 "nl": "Hemelsblauw",
15589 "xloc": [
15590 - "default3.handlebars->35->2071"
15590 + "default3.handlebars->35->2072"
15591 ]
15592 },
15593 {
@@ -15617,8 +15617,8 @@
15617 "uk": "Чаморро",
15618 "xloc": [
15619 "default-mobile.handlebars->11->145",
15620 - "default.handlebars->47->1878",
15621 - "default3.handlebars->35->1858",
15620 + "default.handlebars->47->1879",
15621 + "default3.handlebars->35->1859",
15622 "login2.handlebars->7->33"
15623 ]
15624 },
@@ -15679,8 +15679,8 @@
15679 "zh-cht": "更改{0}的電郵",
15680 "uk": "Змінити е-пошту для {0}",
15681 "xloc": [
15682 - "default.handlebars->47->3068",
15683 - "default3.handlebars->35->3059"
15682 + "default.handlebars->47->3069",
15683 + "default3.handlebars->35->3060"
15684 ]
15685 },
15686 {
@@ -15709,12 +15709,12 @@
15709 "zh-cht": "更改群",
15710 "uk": "Змінити Групу",
15711 "xloc": [
15712 - "default.handlebars->47->1033",
15713 - "default.handlebars->47->1320",
15712 + "default.handlebars->47->1034",
15713 "default.handlebars->47->1321",
15715 - "default3.handlebars->35->1030",
15716 - "default3.handlebars->35->1311",
15717 - "default3.handlebars->35->1312"
15714 + "default.handlebars->47->1322",
15715 + "default3.handlebars->35->1031",
15716 + "default3.handlebars->35->1312",
15717 + "default3.handlebars->35->1313"
15718 ]
15719 },
15720 {
@@ -15758,10 +15758,10 @@
15758 "uk": "Змінити Пароль",
15759 "xloc": [
15760 "default-mobile.handlebars->11->337",
15761 - "default.handlebars->47->2094",
15762 - "default.handlebars->47->3012",
15763 - "default3.handlebars->35->2069",
15764 - "default3.handlebars->35->3005"
15761 + "default.handlebars->47->2095",
15762 + "default.handlebars->47->3013",
15763 + "default3.handlebars->35->2070",
15764 + "default3.handlebars->35->3006"
15765 ]
15766 },
15767 {
@@ -15790,8 +15790,8 @@
15790 "zh-cht": "更改{0}的密碼",
15791 "uk": "Змінити пароль для {0}",
15792 "xloc": [
15793 - "default.handlebars->47->3077",
15794 - "default3.handlebars->35->3064"
15793 + "default.handlebars->47->3078",
15794 + "default3.handlebars->35->3065"
15795 ]
15796 },
15797 {
@@ -15820,8 +15820,8 @@
15820 "zh-cht": "更改{0}的真實名稱",
15821 "uk": "Змінити справжнє ім'я для {0}",
15822 "xloc": [
15823 - "default.handlebars->47->3063",
15824 - "default3.handlebars->35->3055"
15823 + "default.handlebars->47->3064",
15824 + "default3.handlebars->35->3056"
15825 ]
15826 },
15827 {
@@ -15998,8 +15998,8 @@
15998 "zh-cht": "更改該用戶的密碼",
15999 "uk": "Змінити пароль для цього користувача",
16000 "xloc": [
16001 - "default.handlebars->47->3011",
16002 - "default3.handlebars->35->3004"
16001 + "default.handlebars->47->3012",
16002 + "default3.handlebars->35->3005"
16003 ]
16004 },
16005 {
@@ -16058,8 +16058,8 @@
16058 "zh-cht": "在此處更改你的帳戶電郵地址。",
16059 "uk": "Змініть адресу е-пошти свого акаунту тут.",
16060 "xloc": [
16061 - "default.handlebars->47->2081",
16062 - "default3.handlebars->35->2062"
16061 + "default.handlebars->47->2082",
16062 + "default3.handlebars->35->2063"
16063 ]
16064 },
16065 {
@@ -16088,8 +16088,8 @@
16088 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
16089 "uk": "Змініть пароль свого акаунту, ввівши старий пароль та двічі новий пароль в поля нижче.",
16090 "xloc": [
16091 - "default.handlebars->47->2087",
16092 - "default3.handlebars->35->2066"
16091 + "default.handlebars->47->2088",
16092 + "default3.handlebars->35->2067"
16093 ]
16094 },
16095 {
@@ -16118,8 +16118,8 @@
16118 "zh-cht": "帳戶憑證已更改",
16119 "uk": "Змінено облікові дані акаунту",
16120 "xloc": [
16121 - "default.handlebars->47->2599",
16122 - "default3.handlebars->35->2595"
16121 + "default.handlebars->47->2600",
16122 + "default3.handlebars->35->2596"
16123 ]
16124 },
16125 {
@@ -16148,8 +16148,8 @@
16148 "zh-cht": "將帳戶顯示名稱更改為 {0}。",
16149 "uk": "Відображене ім'я акаунту змінено на {0}.",
16150 "xloc": [
16151 - "default.handlebars->47->2651",
16152 - "default3.handlebars->35->2647"
16151 + "default.handlebars->47->2652",
16152 + "default3.handlebars->35->2648"
16153 ]
16154 },
16155 {
@@ -16178,10 +16178,10 @@
16178 "zh-cht": "{1}組中的設備{0}已更改:{2}",
16179 "uk": "Пристрій {0} змінено з групи {1}: {2}",
16180 "xloc": [
16181 - "default.handlebars->47->2583",
16182 - "default.handlebars->47->2664",
16183 - "default3.handlebars->35->2579",
16184 - "default3.handlebars->35->2660"
16181 + "default.handlebars->47->2584",
16182 + "default.handlebars->47->2665",
16183 + "default3.handlebars->35->2580",
16184 + "default3.handlebars->35->2661"
16185 ]
16186 },
16187 {
@@ -16210,8 +16210,8 @@
16210 "zh-cht": "語言從{1}更改為{2}",
16211 "uk": "Мову змінено з {1} на {2}",
16212 "xloc": [
16213 - "default.handlebars->47->2527",
16214 - "default3.handlebars->35->2523"
16213 + "default.handlebars->47->2528",
16214 + "default3.handlebars->35->2524"
16215 ]
16216 },
16217 {
@@ -16240,10 +16240,10 @@
16240 "zh-cht": "已更改{0}的用戶設備權限",
16241 "uk": "Права користувача пристрою змінено для {0}",
16242 "xloc": [
16243 - "default.handlebars->47->2585",
16244 - "default.handlebars->47->2606",
16245 - "default3.handlebars->35->2581",
16246 - "default3.handlebars->35->2602"
16243 + "default.handlebars->47->2586",
16244 + "default.handlebars->47->2607",
16245 + "default3.handlebars->35->2582",
16246 + "default3.handlebars->35->2603"
16247 ]
16248 },
16249 {
@@ -16299,8 +16299,8 @@
16299 "uk": "Зміна мови потребуватиме освіження сторінки.",
16300 "xloc": [
16301 "default-mobile.handlebars->11->312",
16302 - "default.handlebars->47->2045",
16303 - "default3.handlebars->35->2025"
16302 + "default.handlebars->47->2046",
16303 + "default3.handlebars->35->2026"
16304 ]
16305 },
16306 {
@@ -16329,18 +16329,18 @@
16329 "zh-cht": "聊天",
16330 "uk": "Чат",
16331 "xloc": [
16332 - "default.handlebars->47->1022",
16333 - "default.handlebars->47->1141",
16334 - "default.handlebars->47->1166",
16335 - "default.handlebars->47->2728",
16336 - "default.handlebars->47->3007",
16332 + "default.handlebars->47->1023",
16333 + "default.handlebars->47->1142",
16334 + "default.handlebars->47->1167",
16335 + "default.handlebars->47->2729",
16336 "default.handlebars->47->3008",
16338 - "default3.handlebars->35->1019",
16339 - "default3.handlebars->35->1136",
16340 - "default3.handlebars->35->1161",
16341 - "default3.handlebars->35->2724",
16342 - "default3.handlebars->35->3000",
16343 - "default3.handlebars->35->3001"
16337 + "default.handlebars->47->3009",
16338 + "default3.handlebars->35->1020",
16339 + "default3.handlebars->35->1137",
16340 + "default3.handlebars->35->1162",
16341 + "default3.handlebars->35->2725",
16342 + "default3.handlebars->35->3001",
16343 + "default3.handlebars->35->3002"
16344 ]
16345 },
16346 {
@@ -16369,12 +16369,12 @@
16369 "zh-cht": "聊天並通知",
16370 "uk": "Чат і Сповіщення",
16371 "xloc": [
16372 - "default-mobile.handlebars->11->1010",
16373 - "default-mobile.handlebars->11->990",
16374 - "default.handlebars->47->2365",
16375 - "default.handlebars->47->2403",
16376 - "default3.handlebars->35->2361",
16377 - "default3.handlebars->35->2399"
16372 + "default-mobile.handlebars->11->1011",
16373 + "default-mobile.handlebars->11->991",
16374 + "default.handlebars->47->2366",
16375 + "default.handlebars->47->2404",
16376 + "default3.handlebars->35->2362",
16377 + "default3.handlebars->35->2400"
16378 ]
16379 },
16380 {
@@ -16403,9 +16403,9 @@
16403 "zh-cht": "聊天請求,點擊這裡接受。",
16404 "uk": "Запит на чат, натисніть тут, щоб прийняти",
16405 "xloc": [
16406 - "default-mobile.handlebars->11->1042",
16407 - "default.handlebars->47->3277",
16408 - "default3.handlebars->35->3264"
16406 + "default-mobile.handlebars->11->1043",
16407 + "default.handlebars->47->3278",
16408 + "default3.handlebars->35->3265"
16409 ]
16410 },
16411 {
@@ -16464,8 +16464,8 @@
16464 "uk": "Чеченська",
16465 "xloc": [
16466 "default-mobile.handlebars->11->146",
16467 - "default.handlebars->47->1879",
16468 - "default3.handlebars->35->1859",
16467 + "default.handlebars->47->1880",
16468 + "default3.handlebars->35->1860",
16469 "login2.handlebars->7->34"
16470 ]
16471 },
@@ -16630,10 +16630,10 @@
16630 "zh-cht": "檢查...",
16631 "uk": "Перевірка...",
16632 "xloc": [
16633 - "default.handlebars->47->1845",
16634 - "default.handlebars->47->3397",
16635 - "default3.handlebars->35->1825",
16636 - "default3.handlebars->35->3384"
16633 + "default.handlebars->47->1846",
16634 + "default.handlebars->47->3398",
16635 + "default3.handlebars->35->1826",
16636 + "default3.handlebars->35->3385"
16637 ]
16638 },
16639 {
@@ -16663,8 +16663,8 @@
16663 "uk": "Китайська",
16664 "xloc": [
16665 "default-mobile.handlebars->11->147",
16666 - "default.handlebars->47->1880",
16667 - "default3.handlebars->35->1860",
16666 + "default.handlebars->47->1881",
16667 + "default3.handlebars->35->1861",
16668 "login2.handlebars->7->35"
16669 ]
16670 },
@@ -16695,8 +16695,8 @@
16695 "uk": "Китайська (Гонконг)",
16696 "xloc": [
16697 "default-mobile.handlebars->11->148",
16698 - "default.handlebars->47->1881",
16699 - "default3.handlebars->35->1861",
16698 + "default.handlebars->47->1882",
16699 + "default3.handlebars->35->1862",
16700 "login2.handlebars->7->36"
16701 ]
16702 },
@@ -16727,8 +16727,8 @@
16727 "uk": "Китайська (КНР)",
16728 "xloc": [
16729 "default-mobile.handlebars->11->149",
16730 - "default.handlebars->47->1882",
16731 - "default3.handlebars->35->1862",
16730 + "default.handlebars->47->1883",
16731 + "default3.handlebars->35->1863",
16732 "login2.handlebars->7->37"
16733 ]
16734 },
@@ -16759,8 +16759,8 @@
16759 "uk": "Китайська (Спрощена)",
16760 "xloc": [
16761 "default-mobile.handlebars->11->309",
16762 - "default.handlebars->47->2042",
16763 - "default3.handlebars->35->2022",
16762 + "default.handlebars->47->2043",
16763 + "default3.handlebars->35->2023",
16764 "login2.handlebars->7->197"
16765 ]
16766 },
@@ -16791,8 +16791,8 @@
16791 "uk": "Китайська (Сінгапур)",
16792 "xloc": [
16793 "default-mobile.handlebars->11->150",
16794 - "default.handlebars->47->1883",
16795 - "default3.handlebars->35->1863",
16794 + "default.handlebars->47->1884",
16795 + "default3.handlebars->35->1864",
16796 "login2.handlebars->7->38"
16797 ]
16798 },
@@ -16823,8 +16823,8 @@
16823 "uk": "Китайська (Тайвань)",
16824 "xloc": [
16825 "default-mobile.handlebars->11->151",
16826 - "default.handlebars->47->1884",
16827 - "default3.handlebars->35->1864",
16826 + "default.handlebars->47->1885",
16827 + "default3.handlebars->35->1865",
16828 "login2.handlebars->7->39"
16829 ]
16830 },
@@ -16855,8 +16855,8 @@
16855 "uk": "Китайська (Традиційна)",
16856 "xloc": [
16857 "default-mobile.handlebars->11->310",
16858 - "default.handlebars->47->2043",
16859 - "default3.handlebars->35->2023",
16858 + "default.handlebars->47->2044",
16859 + "default3.handlebars->35->2024",
16860 "login2.handlebars->7->198"
16861 ]
16862 },
@@ -16918,8 +16918,8 @@
16918 "uk": "Чуваська",
16919 "xloc": [
16920 "default-mobile.handlebars->11->152",
16921 - "default.handlebars->47->1885",
16922 - "default3.handlebars->35->1865",
16921 + "default.handlebars->47->1886",
16922 + "default3.handlebars->35->1866",
16923 "login2.handlebars->7->40"
16924 ]
16925 },
@@ -16989,18 +16989,18 @@
16989 "default-mobile.handlebars->11->738",
16990 "default-mobile.handlebars->11->87",
16991 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
16992 - "default.handlebars->47->1575",
16993 - "default.handlebars->47->1577",
16994 - "default.handlebars->47->1579",
16995 - "default.handlebars->47->1581",
16996 - "default.handlebars->47->2521",
16992 + "default.handlebars->47->1576",
16993 + "default.handlebars->47->1578",
16994 + "default.handlebars->47->1580",
16995 + "default.handlebars->47->1582",
16996 + "default.handlebars->47->2522",
16997 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
16998 "default.handlebars->container->column_l->p41->3->1",
16999 - "default3.handlebars->35->1559",
17000 - "default3.handlebars->35->1561",
17001 - "default3.handlebars->35->1563",
17002 - "default3.handlebars->35->1565",
17003 - "default3.handlebars->35->2517",
16999 + "default3.handlebars->35->1560",
17000 + "default3.handlebars->35->1562",
17001 + "default3.handlebars->35->1564",
17002 + "default3.handlebars->35->1566",
17003 + "default3.handlebars->35->2518",
17004 "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17005 "default3.handlebars->container->column_l->p41->3->3",
17006 "messenger.handlebars->xbottom->1->1->0->5",
@@ -17037,7 +17037,7 @@
17037 "uk": "Видалити облікові дані RDP?",
17038 "xloc": [
17039 "default-mobile.handlebars->11->634",
17040 - "default.handlebars->47->1366"
17040 + "default.handlebars->47->1367"
17041 ]
17042 },
17043 {
@@ -17067,7 +17067,7 @@
17067 "uk": "Очистити облікові дані SSH?",
17068 "xloc": [
17069 "default-mobile.handlebars->11->632",
17070 - "default.handlebars->47->1364"
17070 + "default.handlebars->47->1365"
17071 ]
17072 },
17073 {
@@ -17188,9 +17188,9 @@
17188 "zh-cht": "全部清除",
17189 "uk": "Очистити все",
17190 "xloc": [
17191 - "default-mobile.handlebars->11->1025",
17192 - "default.handlebars->47->3260",
17193 - "default3.handlebars->35->3247"
17191 + "default-mobile.handlebars->11->1026",
17192 + "default.handlebars->47->3261",
17193 + "default3.handlebars->35->3248"
17194 ]
17195 },
17196 {
@@ -17250,9 +17250,9 @@
17250 "zh-cht": "清除核心",
17251 "uk": "Очистити ядро",
17252 "xloc": [
17253 - "default-mobile.handlebars->11->929",
17254 - "default.handlebars->47->1770",
17255 - "default3.handlebars->35->1752"
17253 + "default-mobile.handlebars->11->930",
17254 + "default.handlebars->47->1771",
17255 + "default3.handlebars->35->1753"
17256 ]
17257 },
17258 {
@@ -17312,9 +17312,9 @@
17312 "zh-cht": "清除此通知",
17313 "uk": "Очистити це сповіщення",
17314 "xloc": [
17315 - "default-mobile.handlebars->11->1024",
17316 - "default.handlebars->47->3259",
17317 - "default3.handlebars->35->3246"
17315 + "default-mobile.handlebars->11->1025",
17316 + "default.handlebars->47->3260",
17317 + "default3.handlebars->35->3247"
17318 ]
17319 },
17320 {
@@ -17430,10 +17430,10 @@
17430 "zh-cht": "單擊此處編輯裝置群名稱",
17431 "uk": "Клікніть тут, щоб змінити назву групи пристроїв",
17432 "xloc": [
17433 - "default.handlebars->47->2164",
17434 - "default.handlebars->47->2464",
17435 - "default3.handlebars->35->2159",
17436 - "default3.handlebars->35->2460"
17433 + "default.handlebars->47->2165",
17434 + "default.handlebars->47->2465",
17435 + "default3.handlebars->35->2160",
17436 + "default3.handlebars->35->2461"
17437 ]
17438 },
17439 {
@@ -17492,8 +17492,8 @@
17492 "zh-cht": "單擊此處編輯用戶群名稱",
17493 "uk": "Клікніть тут, щоб змінити назву групи користувачів",
17494 "xloc": [
17495 - "default.handlebars->47->2858",
17496 - "default3.handlebars->35->2851"
17495 + "default.handlebars->47->2859",
17496 + "default3.handlebars->35->2852"
17497 ]
17498 },
17499 {
@@ -17638,8 +17638,8 @@
17638 "uk": "Клікнути OK, щоб надіслати електронний лист для підтвердження на:",
17639 "xloc": [
17640 "default-mobile.handlebars->11->322",
17641 - "default.handlebars->47->2078",
17642 - "default3.handlebars->35->2059"
17641 + "default.handlebars->47->2079",
17642 + "default3.handlebars->35->2060"
17643 ]
17644 },
17645 {
@@ -17754,9 +17754,9 @@
17754 "zh-cht": "客戶端控制模式(CCM)",
17755 "uk": "Режим керування клієнтом (eng. CCM)",
17756 "xloc": [
17757 - "default-mobile.handlebars->11->824",
17758 - "default.handlebars->47->1664",
17759 - "default3.handlebars->35->1646"
17757 + "default-mobile.handlebars->11->825",
17758 + "default.handlebars->47->1665",
17759 + "default3.handlebars->35->1647"
17760 ]
17761 },
17762 {
@@ -17785,8 +17785,8 @@
17785 "zh-cht": "客戶編號",
17786 "uk": "ID Клієнта",
17787 "xloc": [
17788 - "default.handlebars->47->2141",
17789 - "default3.handlebars->35->2140"
17788 + "default.handlebars->47->2142",
17789 + "default3.handlebars->35->2141"
17790 ]
17791 },
17792 {
@@ -17815,8 +17815,8 @@
17815 "zh-cht": "客戶端啟動的遠程訪問",
17816 "uk": "Клієнт Ініціював Віддалений Доступ",
17817 "xloc": [
17818 - "default.handlebars->47->2293",
17819 - "default3.handlebars->35->2287"
17818 + "default.handlebars->47->2294",
17819 + "default3.handlebars->35->2288"
17820 ]
17821 },
17822 {
@@ -17845,8 +17845,8 @@
17845 "zh-cht": "客戶機密",
17846 "uk": "Секретний Ключ Клієнта",
17847 "xloc": [
17848 - "default.handlebars->47->2142",
17849 - "default3.handlebars->35->2141"
17848 + "default.handlebars->47->2143",
17849 + "default3.handlebars->35->2142"
17850 ]
17851 },
17852 {
@@ -17908,13 +17908,13 @@
17908 "xloc": [
17909 "agent-translations.json",
17910 "default-mobile.handlebars->11->85",
17911 - "default.handlebars->47->1478",
17912 - "default.handlebars->47->1550",
17911 + "default.handlebars->47->1479",
17912 + "default.handlebars->47->1551",
17913 "default.handlebars->47->235",
17914 "default.handlebars->47->244",
17915 - "default.handlebars->47->3391",
17916 - "default3.handlebars->35->1464",
17917 - "default3.handlebars->35->1534",
17915 + "default.handlebars->47->3392",
17916 + "default3.handlebars->35->1465",
17917 + "default3.handlebars->35->1535",
17918 "sharing.handlebars->11->52"
17919 ]
17920 },
@@ -17944,8 +17944,8 @@
17944 "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
17945 "uk": "Закрито сесію мультиплексної стільниці \\\"{0}\\\", {1} секунд(и)",
17946 "xloc": [
17947 - "default.handlebars->47->2671",
17948 - "default3.handlebars->35->2667"
17947 + "default.handlebars->47->2672",
17948 + "default3.handlebars->35->2668"
17949 ]
17950 },
17951 {
@@ -17974,8 +17974,8 @@
17974 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
17975 "uk": "Закрито сесію мультиплексної стільниці, {0} секунд(и)",
17976 "xloc": [
17977 - "default.handlebars->47->2532",
17978 - "default3.handlebars->35->2528"
17977 + "default.handlebars->47->2533",
17978 + "default3.handlebars->35->2529"
17979 ]
17980 },
17981 {
@@ -18187,13 +18187,13 @@
18187 "zh-cht": "指令",
18188 "uk": "Команди",
18189 "xloc": [
18190 - "default-mobile.handlebars->11->1012",
18191 - "default.handlebars->47->1143",
18192 - "default.handlebars->47->1168",
18193 - "default.handlebars->47->2405",
18194 - "default3.handlebars->35->1138",
18195 - "default3.handlebars->35->1163",
18196 - "default3.handlebars->35->2401"
18190 + "default-mobile.handlebars->11->1013",
18191 + "default.handlebars->47->1144",
18192 + "default.handlebars->47->1169",
18193 + "default.handlebars->47->2406",
18194 + "default3.handlebars->35->1139",
18195 + "default3.handlebars->35->1164",
18196 + "default3.handlebars->35->2402"
18197 ]
18198 },
18199 {
@@ -18276,10 +18276,10 @@
18276 "zh-cht": "通用裝置群",
18277 "uk": "Пов'язані Групи Пристроїв",
18278 "xloc": [
18279 - "default.handlebars->47->2893",
18280 - "default.handlebars->47->3082",
18281 - "default3.handlebars->35->2886",
18282 - "default3.handlebars->35->3069"
18279 + "default.handlebars->47->2894",
18280 + "default.handlebars->47->3083",
18281 + "default3.handlebars->35->2887",
18282 + "default3.handlebars->35->3070"
18283 ]
18284 },
18285 {
@@ -18308,10 +18308,10 @@
18308 "zh-cht": "通用裝置",
18309 "uk": "Пов'язані Пристрої",
18310 "xloc": [
18311 - "default.handlebars->47->2899",
18312 - "default.handlebars->47->3094",
18313 - "default3.handlebars->35->2892",
18314 - "default3.handlebars->35->3081"
18311 + "default.handlebars->47->2900",
18312 + "default.handlebars->47->3095",
18313 + "default3.handlebars->35->2893",
18314 + "default3.handlebars->35->3082"
18315 ]
18316 },
18317 {
@@ -18340,9 +18340,9 @@
18340 "zh-cht": "編譯時間",
18341 "uk": "Час компіляції",
18342 "xloc": [
18343 - "default-mobile.handlebars->11->793",
18344 - "default.handlebars->47->1623",
18345 - "default3.handlebars->35->1607"
18343 + "default-mobile.handlebars->11->794",
18344 + "default.handlebars->47->1624",
18345 + "default3.handlebars->35->1608"
18346 ]
18347 },
18348 {
@@ -18397,8 +18397,8 @@
18397 "zh-cht": "壓縮檔案...",
18398 "uk": "Стиснення файлів...",
18399 "xloc": [
18400 - "default.handlebars->47->1536",
18401 - "default3.handlebars->35->1521",
18400 + "default.handlebars->47->1537",
18401 + "default3.handlebars->35->1522",
18402 "sharing.handlebars->11->47"
18403 ]
18404 },
@@ -18440,8 +18440,8 @@
18440 "pl": "Zapisy pliku konfiguracyjnego",
18441 "uk": "Записи файлу конфігурації",
18442 "xloc": [
18443 - "default.handlebars->47->3236",
18444 - "default3.handlebars->35->3223"
18443 + "default.handlebars->47->3237",
18444 + "default3.handlebars->35->3224"
18445 ]
18446 },
18447 {
@@ -18471,22 +18471,22 @@
18471 "uk": "Підтвердити",
18472 "xloc": [
18473 "default-mobile.handlebars->11->629",
18474 - "default-mobile.handlebars->11->961",
18475 - "default.handlebars->47->1315",
18476 - "default.handlebars->47->1324",
18477 - "default.handlebars->47->2304",
18478 - "default.handlebars->47->2758",
18479 - "default.handlebars->47->2848",
18480 - "default.handlebars->47->2915",
18481 - "default.handlebars->47->3080",
18474 + "default-mobile.handlebars->11->962",
18475 + "default.handlebars->47->1316",
18476 + "default.handlebars->47->1325",
18477 + "default.handlebars->47->2305",
18478 + "default.handlebars->47->2759",
18479 + "default.handlebars->47->2849",
18480 + "default.handlebars->47->2916",
18481 + "default.handlebars->47->3081",
18482 "default.handlebars->47->760",
18483 - "default3.handlebars->35->1306",
18484 - "default3.handlebars->35->1314",
18485 - "default3.handlebars->35->2297",
18486 - "default3.handlebars->35->2754",
18487 - "default3.handlebars->35->2841",
18488 - "default3.handlebars->35->2908",
18489 - "default3.handlebars->35->3067",
18483 + "default3.handlebars->35->1307",
18484 + "default3.handlebars->35->1315",
18485 + "default3.handlebars->35->2298",
18486 + "default3.handlebars->35->2755",
18487 + "default3.handlebars->35->2842",
18488 + "default3.handlebars->35->2909",
18489 + "default3.handlebars->35->3068",
18490 "default3.handlebars->35->757"
18491 ]
18492 },
@@ -18520,7 +18520,7 @@
18520 "en": "Confirm Password",
18521 "nl": "Bevestig wachtwoord",
18522 "xloc": [
18523 - "default3.handlebars->35->2802"
18523 + "default3.handlebars->35->2803"
18524 ]
18525 },
18526 {
@@ -18550,8 +18550,8 @@
18550 "uk": "Підтвердити копіювання 1 запису до цієї локації?",
18551 "xloc": [
18552 "default-mobile.handlebars->11->727",
18553 - "default.handlebars->47->1570",
18554 - "default3.handlebars->35->1554",
18553 + "default.handlebars->47->1571",
18554 + "default3.handlebars->35->1555",
18555 "sharing.handlebars->11->70"
18556 ]
18557 },
@@ -18581,8 +18581,8 @@
18581 "zh-cht": "確認{0}個條目的複製到此位置?",
18582 "uk": "Підтвердити копіювання {0} записів до цієї локації?",
18583 "xloc": [
18584 - "default.handlebars->47->1569",
18585 - "default3.handlebars->35->1553",
18584 + "default.handlebars->47->1570",
18585 + "default3.handlebars->35->1554",
18586 "sharing.handlebars->11->69"
18587 ]
18588 },
@@ -18641,8 +18641,8 @@
18641 "zh-cht": "確認刪除所選帳戶?",
18642 "uk": "Підтвердити видалення відібраних акаунтів?",
18643 "xloc": [
18644 - "default.handlebars->47->2757",
18645 - "default3.handlebars->35->2753"
18644 + "default.handlebars->47->2758",
18645 + "default3.handlebars->35->2754"
18646 ]
18647 },
18648 {
@@ -18697,8 +18697,8 @@
18697 "zh-cht": "確認刪除所選用戶群?",
18698 "uk": "Підтвердити видалення відібраних груп користувачів?",
18699 "xloc": [
18700 - "default.handlebars->47->2847",
18701 - "default3.handlebars->35->2840"
18700 + "default.handlebars->47->2848",
18701 + "default3.handlebars->35->2841"
18702 ]
18703 },
18704 {
@@ -18727,24 +18727,24 @@
18727 "zh-cht": "確認刪除用戶{0}?",
18728 "uk": "Підтвердити видалення користувача {0}?",
18729 "xloc": [
18730 - "default.handlebars->47->3079",
18731 - "default3.handlebars->35->3066"
18730 + "default.handlebars->47->3080",
18731 + "default3.handlebars->35->3067"
18732 ]
18733 },
18734 {
18735 "en": "Confirm disabling 2FA Duo login security.",
18736 "nl": "Bevestig het uitschakelen van 2FA Duo inlogbeveiliging.",
18737 "xloc": [
18738 - "default.handlebars->47->1824",
18739 - "default3.handlebars->35->1805"
18738 + "default.handlebars->47->1825",
18739 + "default3.handlebars->35->1806"
18740 ]
18741 },
18742 {
18743 "en": "Confirm enabling of Duo 2FA login security. Once enabled you will be given the option to use Duo at login for added security. Click ok to go thru the steps to enable Duo.",
18744 "nl": "Bevestig het inschakelen van Duo 2FA inlogbeveiliging. Eenmaal ingeschakeld, krijgt u de mogelijkheid om Duo te gebruiken bij het inloggen voor extra veiligheid. Klik op OK om de stappen te doorlopen om Duo in te schakelen.",
18745 "xloc": [
18746 - "default.handlebars->47->1822",
18747 - "default3.handlebars->35->1803"
18746 + "default.handlebars->47->1823",
18747 + "default3.handlebars->35->1804"
18748 ]
18749 },
18750 {
@@ -18773,8 +18773,8 @@
18773 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
18774 "uk": "Підтвердити видалення приналежності у користувача \\\"{0}\\\"?",
18775 "xloc": [
18776 - "default.handlebars->47->2918",
18777 - "default3.handlebars->35->2911"
18776 + "default.handlebars->47->2919",
18777 + "default3.handlebars->35->2912"
18778 ]
18779 },
18780 {
@@ -18803,8 +18803,8 @@
18803 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
18804 "uk": "Підтвердити видалення приналежності до групи користувачів \\\"{0}\\\"?",
18805 "xloc": [
18806 - "default.handlebars->47->3111",
18807 - "default3.handlebars->35->3098"
18806 + "default.handlebars->47->3112",
18807 + "default3.handlebars->35->3099"
18808 ]
18809 },
18810 {
@@ -18834,8 +18834,8 @@
18834 "uk": "Підтвердити переміщення 1 запису до цієї локації?",
18835 "xloc": [
18836 "default-mobile.handlebars->11->729",
18837 - "default.handlebars->47->1572",
18838 - "default3.handlebars->35->1556",
18837 + "default.handlebars->47->1573",
18838 + "default3.handlebars->35->1557",
18839 "sharing.handlebars->11->72"
18840 ]
18841 },
@@ -18865,8 +18865,8 @@
18865 "zh-cht": "確認將{0}個條目移到該位置?",
18866 "uk": "Підтвердити переміщення {0} записів до цієї локації?",
18867 "xloc": [
18868 - "default.handlebars->47->1571",
18869 - "default3.handlebars->35->1555",
18868 + "default.handlebars->47->1572",
18869 + "default3.handlebars->35->1556",
18870 "sharing.handlebars->11->71"
18871 ]
18872 },
@@ -18925,8 +18925,8 @@
18925 "zh-cht": "確認覆蓋?",
18926 "uk": "Підтвердити перезапис?",
18927 "xloc": [
18928 - "default.handlebars->47->2513",
18929 - "default3.handlebars->35->2509"
18928 + "default.handlebars->47->2514",
18929 + "default3.handlebars->35->2510"
18930 ]
18931 },
18932 {
@@ -18955,10 +18955,10 @@
18955 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
18956 "uk": "Підтвердити видалення прав доступу для пристрою \\\"{0}\\\"?",
18957 "xloc": [
18958 - "default.handlebars->47->2908",
18959 - "default.handlebars->47->3102",
18960 - "default3.handlebars->35->2901",
18961 - "default3.handlebars->35->3089"
18958 + "default.handlebars->47->2909",
18959 + "default.handlebars->47->3103",
18960 + "default3.handlebars->35->2902",
18961 + "default3.handlebars->35->3090"
18962 ]
18963 },
18964 {
@@ -18987,10 +18987,10 @@
18987 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
18988 "uk": "Підтвердити видалення прав доступу для групи пристроїв \\\"{0}\\\"?",
18989 "xloc": [
18990 - "default.handlebars->47->2910",
18991 - "default.handlebars->47->3115",
18992 - "default3.handlebars->35->2903",
18993 - "default3.handlebars->35->3102"
18990 + "default.handlebars->47->2911",
18991 + "default.handlebars->47->3116",
18992 + "default3.handlebars->35->2904",
18993 + "default3.handlebars->35->3103"
18994 ]
18995 },
18996 {
@@ -19019,8 +19019,8 @@
19019 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
19020 "uk": "Підтвердити видалення прав доступу для користувача \\\"{0}\\\"?",
19021 "xloc": [
19022 - "default.handlebars->47->3104",
19023 - "default3.handlebars->35->3091"
19022 + "default.handlebars->47->3105",
19023 + "default3.handlebars->35->3092"
19024 ]
19025 },
19026 {
@@ -19049,8 +19049,8 @@
19049 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
19050 "uk": "Підтвердити видалення прав доступу для групи користувачів \\\"{0}\\\"?",
19051 "xloc": [
19052 - "default.handlebars->47->3107",
19053 - "default3.handlebars->35->3094"
19052 + "default.handlebars->47->3108",
19053 + "default3.handlebars->35->3095"
19054 ]
19055 },
19056 {
@@ -19079,10 +19079,10 @@
19079 "zh-cht": "確認刪除訪問權限?",
19080 "uk": "Підтвердити видалення прав доступу?",
19081 "xloc": [
19082 - "default.handlebars->47->3105",
19083 - "default.handlebars->47->3108",
19084 - "default3.handlebars->35->3092",
19085 - "default3.handlebars->35->3095"
19082 + "default.handlebars->47->3106",
19083 + "default.handlebars->47->3109",
19084 + "default3.handlebars->35->3093",
19085 + "default3.handlebars->35->3096"
19086 ]
19087 },
19088 {
@@ -19112,8 +19112,8 @@
19112 "uk": "Підтвердити видалення двофакторної автентифікації через застосунок?",
19113 "xloc": [
19114 "default-mobile.handlebars->11->321",
19115 - "default.handlebars->47->1828",
19116 - "default3.handlebars->35->1809"
19115 + "default.handlebars->47->1829",
19116 + "default3.handlebars->35->1810"
19117 ]
19118 },
19119 {
@@ -19168,8 +19168,8 @@
19168 "zh-cht": "確認刪除設備共享“{0}”?",
19169 "uk": "Підтвердити скасування поширення пристрою \\\"{0}\\\"?",
19170 "xloc": [
19171 - "default.handlebars->47->3100",
19172 - "default3.handlebars->35->3087"
19171 + "default.handlebars->47->3101",
19172 + "default3.handlebars->35->3088"
19173 ]
19174 },
19175 {
@@ -19250,8 +19250,8 @@
19250 "zh-cht": "確認移除推送認證設備?",
19251 "uk": "Підтвердити видалення пристрою push-автентифікації?",
19252 "xloc": [
19253 - "default.handlebars->47->1830",
19254 - "default3.handlebars->35->1811"
19253 + "default.handlebars->47->1831",
19254 + "default3.handlebars->35->1812"
19255 ]
19256 },
19257 {
@@ -19280,8 +19280,8 @@
19280 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
19281 "uk": "Підтвердити видалення прав користувача \\\"{0}\\\"?",
19282 "xloc": [
19283 - "default.handlebars->47->2417",
19284 - "default3.handlebars->35->2413"
19283 + "default.handlebars->47->2418",
19284 + "default3.handlebars->35->2414"
19285 ]
19286 },
19287 {
@@ -19310,8 +19310,8 @@
19310 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
19311 "uk": "Підтвердити видалення прав для групи користувачів \\\"{0}\\\"?",
19312 "xloc": [
19313 - "default.handlebars->47->2419",
19314 - "default3.handlebars->35->2415"
19313 + "default.handlebars->47->2420",
19314 + "default3.handlebars->35->2416"
19315 ]
19316 },
19317 {
@@ -19370,8 +19370,8 @@
19370 "zh-cht": "確認刪除此登錄令牌?",
19371 "uk": "Підтвердити видалення цього токена входу?",
19372 "xloc": [
19373 - "default.handlebars->47->2134",
19374 - "default3.handlebars->35->2133"
19373 + "default.handlebars->47->2135",
19374 + "default3.handlebars->35->2134"
19375 ]
19376 },
19377 {
@@ -19426,7 +19426,7 @@
19426 "zh-cht": "確認刪除用戶{0}?",
19427 "uk": "Підтвердити видалення користувача {0}?",
19428 "xloc": [
19429 - "default-mobile.handlebars->11->1021"
19429 + "default-mobile.handlebars->11->1022"
19430 ]
19431 },
19432 {
@@ -19486,8 +19486,8 @@
19486 "uk": "Підтвердити {0} із {1} записів{2} для цієї локації?",
19487 "xloc": [
19488 "default-mobile.handlebars->11->377",
19489 - "default.handlebars->47->2516",
19490 - "default3.handlebars->35->2512"
19489 + "default.handlebars->47->2517",
19490 + "default3.handlebars->35->2513"
19491 ]
19492 },
19493 {
@@ -19520,13 +19520,13 @@
19520 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
19521 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
19522 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
19523 - "default.handlebars->47->2202",
19524 - "default.handlebars->47->979",
19523 + "default.handlebars->47->2203",
19524 + "default.handlebars->47->980",
19525 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
19526 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
19527 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
19528 - "default3.handlebars->35->2197",
19529 - "default3.handlebars->35->976",
19528 + "default3.handlebars->35->2198",
19529 + "default3.handlebars->35->977",
19530 "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->connectbutton1span->connectbutton1",
19531 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->connectbutton2",
19532 "default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->1->p13Connectspan->p13Connect",
@@ -19623,8 +19623,8 @@
19623 "zh-cht": "連接到伺服器",
19624 "uk": "Підключитися до сервера",
19625 "xloc": [
19626 - "default.handlebars->47->2297",
19627 - "default3.handlebars->35->2290"
19626 + "default.handlebars->47->2298",
19627 + "default3.handlebars->35->2291"
19628 ]
19629 },
19630 {
@@ -19897,8 +19897,8 @@
19897 "zh-cht": "已連接的Intel&reg; AMT",
19898 "uk": "Підключено Intel&reg; AMT",
19899 "xloc": [
19900 - "default.handlebars->47->3318",
19901 - "default3.handlebars->35->3305"
19900 + "default.handlebars->47->3319",
19901 + "default3.handlebars->35->3306"
19902 ]
19903 },
19904 {
@@ -19927,8 +19927,8 @@
19927 "zh-cht": "已连接的用户",
19928 "uk": "Підключені Користувачі",
19929 "xloc": [
19930 - "default.handlebars->47->3323",
19931 - "default3.handlebars->35->3310"
19930 + "default.handlebars->47->3324",
19931 + "default3.handlebars->35->3311"
19932 ]
19933 },
19934 {
@@ -19987,9 +19987,9 @@
19987 "zh-cht": "現在已連接",
19988 "uk": "Підключено зараз",
19989 "xloc": [
19990 - "default-mobile.handlebars->11->788",
19991 - "default.handlebars->47->1618",
19992 - "default3.handlebars->35->1602"
19990 + "default-mobile.handlebars->11->789",
19991 + "default.handlebars->47->1619",
19992 + "default3.handlebars->35->1603"
19993 ]
19994 },
19995 {
@@ -20131,12 +20131,12 @@
20131 "default-mobile.handlebars->11->2",
20132 "default-mobile.handlebars->11->50",
20133 "default-mobile.handlebars->11->745",
20134 - "default.handlebars->47->1598",
20134 + "default.handlebars->47->1599",
20135 "default.handlebars->47->401",
20136 "default.handlebars->47->404",
20137 "default.handlebars->47->484",
20138 "default.handlebars->47->9",
20139 - "default3.handlebars->35->1582",
20139 + "default3.handlebars->35->1583",
20140 "default3.handlebars->35->398",
20141 "default3.handlebars->35->401",
20142 "default3.handlebars->35->481",
@@ -20199,8 +20199,8 @@
20199 "zh-cht": "連接數量",
20200 "uk": "Кількість Підключень",
20201 "xloc": [
20202 - "default.handlebars->47->3349",
20203 - "default3.handlebars->35->3336"
20202 + "default.handlebars->47->3350",
20203 + "default3.handlebars->35->3337"
20204 ]
20205 },
20206 {
@@ -20230,10 +20230,10 @@
20230 "uk": "Помилка Підключення",
20231 "xloc": [
20232 "default-mobile.handlebars->11->708",
20233 - "default.handlebars->47->1515",
20234 - "default.handlebars->47->1532",
20235 - "default3.handlebars->35->1500",
20236 - "default3.handlebars->35->1517",
20233 + "default.handlebars->47->1516",
20234 + "default.handlebars->47->1533",
20235 + "default3.handlebars->35->1501",
20236 + "default3.handlebars->35->1518",
20237 "login2.handlebars->7->232"
20238 ]
20239 },
@@ -20263,8 +20263,8 @@
20263 "zh-cht": "連接轉發器",
20264 "uk": "Ретрансляція Підключення",
20265 "xloc": [
20266 - "default.handlebars->47->3385",
20267 - "default3.handlebars->35->3372"
20266 + "default.handlebars->47->3386",
20267 + "default3.handlebars->35->3373"
20268 ]
20269 },
20270 {
@@ -20353,13 +20353,13 @@
20353 "uk": "Сполучення",
20354 "xloc": [
20355 "default-mobile.handlebars->11->537",
20356 - "default.handlebars->47->2471",
20356 + "default.handlebars->47->2472",
20357 "default.handlebars->47->389",
20358 - "default.handlebars->47->996",
20358 + "default.handlebars->47->997",
20359 "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1",
20360 - "default3.handlebars->35->2467",
20360 + "default3.handlebars->35->2468",
20361 "default3.handlebars->35->386",
20362 - "default3.handlebars->35->993",
20362 + "default3.handlebars->35->994",
20363 "default3.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
20364 ]
20365 },
@@ -20389,8 +20389,8 @@
20389 "zh-cht": "同意",
20390 "uk": "Згода",
20391 "xloc": [
20392 - "default.handlebars->47->2689",
20393 - "default3.handlebars->35->2685"
20392 + "default.handlebars->47->2690",
20393 + "default3.handlebars->35->2686"
20394 ]
20395 },
20396 {
@@ -20420,13 +20420,13 @@
20420 "uk": "Консоль",
20421 "xloc": [
20422 "default-mobile.handlebars->11->577",
20423 - "default.handlebars->47->1136",
20424 - "default.handlebars->47->1161",
20423 + "default.handlebars->47->1137",
20424 + "default.handlebars->47->1162",
20425 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
20426 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
20427 "default.handlebars->contextMenu->cxconsole",
20428 - "default3.handlebars->35->1131",
20429 - "default3.handlebars->35->1156",
20428 + "default3.handlebars->35->1132",
20429 + "default3.handlebars->35->1157",
20430 "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
20431 "default3.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
20432 "default3.handlebars->contextMenu->cxconsole"
@@ -20488,10 +20488,10 @@
20488 "zh-cht": "控制",
20489 "uk": "Керування",
20490 "xloc": [
20491 - "default.handlebars->47->1135",
20492 - "default.handlebars->47->1160",
20493 - "default3.handlebars->35->1130",
20494 - "default3.handlebars->35->1155",
20491 + "default.handlebars->47->1136",
20492 + "default.handlebars->47->1161",
20493 + "default3.handlebars->35->1131",
20494 + "default3.handlebars->35->1156",
20495 "messenger.handlebars->remoteImage->3->2"
20496 ]
20497 },
@@ -20551,8 +20551,8 @@
20551 "zh-cht": "Cookie編碼器",
20552 "uk": "Cookie кодувальник",
20553 "xloc": [
20554 - "default.handlebars->47->3368",
20555 - "default3.handlebars->35->3355"
20554 + "default.handlebars->47->3369",
20555 + "default3.handlebars->35->3356"
20556 ]
20557 },
20558 {
@@ -20880,14 +20880,14 @@
20880 "zh-cht": "複製連結到剪貼板",
20881 "uk": "Копіювати посилання до буфера обміну",
20882 "xloc": [
20883 - "default.handlebars->47->2482",
20884 - "default.handlebars->47->2501",
20883 + "default.handlebars->47->2483",
20884 + "default.handlebars->47->2502",
20885 "default.handlebars->47->319",
20886 "default.handlebars->47->341",
20887 "default.handlebars->47->343",
20888 "default.handlebars->47->592",
20889 - "default3.handlebars->35->2478",
20890 - "default3.handlebars->35->2497",
20889 + "default3.handlebars->35->2479",
20890 + "default3.handlebars->35->2498",
20891 "default3.handlebars->35->316",
20892 "default3.handlebars->35->338",
20893 "default3.handlebars->35->340",
@@ -21050,8 +21050,8 @@
21050 "zh-cht": "複製:“{0}”到“{1}”",
21051 "uk": "Копіювати: \\\"{0}\\\" до \\\"{1}\\\"",
21052 "xloc": [
21053 - "default.handlebars->47->2575",
21054 - "default3.handlebars->35->2571"
21053 + "default.handlebars->47->2576",
21054 + "default3.handlebars->35->2572"
21055 ]
21056 },
21057 {
@@ -21260,8 +21260,8 @@
21260 "zh-cht": "核心伺服器",
21261 "uk": "Центральний Сервер",
21262 "xloc": [
21263 - "default.handlebars->47->3367",
21264 - "default3.handlebars->35->3354"
21263 + "default.handlebars->47->3368",
21264 + "default3.handlebars->35->3355"
21265 ]
21266 },
21267 {
@@ -21291,8 +21291,8 @@
21291 "uk": "Корсиканська",
21292 "xloc": [
21293 "default-mobile.handlebars->11->153",
21294 - "default.handlebars->47->1886",
21295 - "default3.handlebars->35->1866",
21294 + "default.handlebars->47->1887",
21295 + "default3.handlebars->35->1867",
21296 "login2.handlebars->7->41"
21297 ]
21298 },
@@ -21300,7 +21300,7 @@
21300 "en": "Cosmo",
21301 "nl": "Cosmo",
21302 "xloc": [
21303 - "default3.handlebars->35->2072"
21303 + "default3.handlebars->35->2073"
21304 ]
21305 },
21306 {
@@ -21355,8 +21355,8 @@
21355 "zh-cht": "創建帳號",
21356 "uk": "Створити Акаунт",
21357 "xloc": [
21358 - "default.handlebars->47->2815",
21359 - "default3.handlebars->35->2810",
21358 + "default.handlebars->47->2816",
21359 + "default3.handlebars->35->2811",
21360 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
21361 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
21362 "login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -21443,9 +21443,9 @@
21443 "zh-cht": "創建登錄令牌",
21444 "uk": "Створити Токен Входу",
21445 "xloc": [
21446 - "default.handlebars->47->2071",
21446 + "default.handlebars->47->2072",
21447 "default.handlebars->47->344",
21448 - "default3.handlebars->35->2052",
21448 + "default3.handlebars->35->2053",
21449 "default3.handlebars->35->341"
21450 ]
21451 },
@@ -21475,8 +21475,8 @@
21475 "zh-cht": "創建用戶群",
21476 "uk": "Створити Групу Користувачів",
21477 "xloc": [
21478 - "default.handlebars->47->2855",
21479 - "default3.handlebars->35->2848"
21478 + "default.handlebars->47->2856",
21479 + "default3.handlebars->35->2849"
21480 ]
21481 },
21482 {
@@ -21505,8 +21505,8 @@
21505 "zh-cht": "創建鏈結以與訪客共享此裝置",
21506 "uk": "Створіть посилання, щоб поділитися цим пристроєм з гостем",
21507 "xloc": [
21508 - "default.handlebars->47->1025",
21509 - "default3.handlebars->35->1022"
21508 + "default.handlebars->47->1026",
21509 + "default3.handlebars->35->1023"
21510 ]
21511 },
21512 {
@@ -21535,8 +21535,8 @@
21535 "zh-cht": "使用以下選項創建一個新的裝置群。",
21536 "uk": "Створіть нову групу пристроїв за допомогою параметрів нижче.",
21537 "xloc": [
21538 - "default.handlebars->47->2101",
21539 - "default3.handlebars->35->2100"
21538 + "default.handlebars->47->2102",
21539 + "default3.handlebars->35->2101"
21540 ]
21541 },
21542 {
@@ -21595,8 +21595,8 @@
21595 "zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
21596 "uk": "Створіть тимчасове ім'я користувача та пароль, які можна використовувати як альтернативний лоґін для входу до вашого акаунту. Це корисно, щоб надати засобам або іншим службам доступ до вашого акаунту.",
21597 "xloc": [
21598 - "default.handlebars->47->2051",
21599 - "default3.handlebars->35->2031"
21598 + "default.handlebars->47->2052",
21599 + "default3.handlebars->35->2032"
21600 ]
21601 },
21602 {
@@ -21655,8 +21655,8 @@
21655 "zh-cht": "創建文件夾:“{0}”",
21656 "uk": "Створити теку: \\\"{0}\\\"",
21657 "xloc": [
21658 - "default.handlebars->47->2568",
21659 - "default3.handlebars->35->2564"
21658 + "default.handlebars->47->2569",
21659 + "default3.handlebars->35->2565"
21660 ]
21661 },
21662 {
@@ -21737,8 +21737,8 @@
21737 "nl": "Maak meerdere accounts tegelijk aan door een JSON of een CSV bestand te importeren",
21738 "uk": "Створіть кілька акаунтів одночасно, імпортувавши файл JSON або CSV",
21739 "xloc": [
21740 - "default.handlebars->47->2772",
21741 - "default3.handlebars->35->2767"
21740 + "default.handlebars->47->2773",
21741 + "default3.handlebars->35->2768"
21742 ]
21743 },
21744 {
@@ -21798,8 +21798,8 @@
21798 "zh-cht": "創建的設備組:{0}",
21799 "uk": "Створена група пристроїв: {0}",
21800 "xloc": [
21801 - "default.handlebars->47->2579",
21802 - "default3.handlebars->35->2575"
21801 + "default.handlebars->47->2580",
21802 + "default3.handlebars->35->2576"
21803 ]
21804 },
21805 {
@@ -21828,8 +21828,8 @@
21828 "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
21829 "uk": "Створює з'єднання, яке дозволяє гостю без акаунту віддалено керувати цим пристроєм впродовж обмеженого часу.",
21830 "xloc": [
21831 - "default.handlebars->47->1204",
21832 - "default3.handlebars->35->1199"
21831 + "default.handlebars->47->1205",
21832 + "default3.handlebars->35->1200"
21833 ]
21834 },
21835 {
@@ -21910,8 +21910,8 @@
21910 "zh-cht": "創建",
21911 "uk": "Створено",
21912 "xloc": [
21913 - "default.handlebars->47->2963",
21914 - "default3.handlebars->35->2956"
21913 + "default.handlebars->47->2964",
21914 + "default3.handlebars->35->2957"
21915 ]
21916 },
21917 {
@@ -21940,8 +21940,8 @@
21940 "zh-cht": "創作時間",
21941 "uk": "Час Створення",
21942 "xloc": [
21943 - "default.handlebars->47->2182",
21944 - "default3.handlebars->35->2177"
21943 + "default.handlebars->47->2183",
21944 + "default3.handlebars->35->2178"
21945 ]
21946 },
21947 {
@@ -22001,10 +22001,10 @@
22001 "zh-cht": "創作者",
22002 "uk": "Творець",
22003 "xloc": [
22004 - "default.handlebars->47->2180",
22004 "default.handlebars->47->2181",
22006 - "default3.handlebars->35->2175",
22007 - "default3.handlebars->35->2176"
22005 + "default.handlebars->47->2182",
22006 + "default3.handlebars->35->2176",
22007 + "default3.handlebars->35->2177"
22008 ]
22009 },
22010 {
@@ -22034,12 +22034,12 @@
22034 "uk": "Облікові Дані",
22035 "xloc": [
22036 "default-mobile.handlebars->11->549",
22037 - "default.handlebars->47->1008",
22038 - "default.handlebars->47->1390",
22039 - "default.handlebars->47->2139",
22040 - "default3.handlebars->35->1005",
22041 - "default3.handlebars->35->1377",
22042 - "default3.handlebars->35->2138"
22037 + "default.handlebars->47->1009",
22038 + "default.handlebars->47->1391",
22039 + "default.handlebars->47->2140",
22040 + "default3.handlebars->35->1006",
22041 + "default3.handlebars->35->1378",
22042 + "default3.handlebars->35->2139"
22043 ]
22044 },
22045 {
@@ -22069,8 +22069,8 @@
22069 "uk": "Крі",
22070 "xloc": [
22071 "default-mobile.handlebars->11->154",
22072 - "default.handlebars->47->1887",
22073 - "default3.handlebars->35->1867",
22072 + "default.handlebars->47->1888",
22073 + "default3.handlebars->35->1868",
22074 "login2.handlebars->7->42"
22075 ]
22076 },
@@ -22101,8 +22101,8 @@
22101 "uk": "Хорватська",
22102 "xloc": [
22103 "default-mobile.handlebars->11->155",
22104 - "default.handlebars->47->1888",
22105 - "default3.handlebars->35->1868",
22104 + "default.handlebars->47->1889",
22105 + "default3.handlebars->35->1869",
22106 "login2.handlebars->7->43"
22107 ]
22108 },
@@ -22198,11 +22198,11 @@
22198 "xloc": [
22199 "default-mobile.handlebars->11->669",
22200 "default-mobile.handlebars->11->673",
22201 - "default.handlebars->47->1432",
22202 - "default.handlebars->47->1436",
22201 + "default.handlebars->47->1433",
22202 + "default.handlebars->47->1437",
22203 "default.handlebars->47->62",
22204 - "default3.handlebars->35->1419",
22205 - "default3.handlebars->35->1423",
22204 + "default3.handlebars->35->1420",
22205 + "default3.handlebars->35->1424",
22206 "default3.handlebars->35->62",
22207 "sharing.handlebars->11->24"
22208 ]
@@ -22407,9 +22407,9 @@
22407 "zh-cht": "當前密碼不正確。",
22408 "uk": "Поточний пароль неправильний.",
22409 "xloc": [
22410 - "default-mobile.handlebars->11->1052",
22411 - "default.handlebars->47->3287",
22412 - "default3.handlebars->35->3274"
22410 + "default-mobile.handlebars->11->1053",
22411 + "default.handlebars->47->3288",
22412 + "default3.handlebars->35->3275"
22413 ]
22414 },
22415 {
@@ -22512,7 +22512,7 @@
22512 "en": "Cyborg",
22513 "nl": "Cyborg",
22514 "xloc": [
22515 - "default3.handlebars->35->2073"
22515 + "default3.handlebars->35->2074"
22516 ]
22517 },
22518 {
@@ -22542,8 +22542,8 @@
22542 "uk": "Чеська",
22543 "xloc": [
22544 "default-mobile.handlebars->11->156",
22545 - "default.handlebars->47->1889",
22546 - "default3.handlebars->35->1869",
22545 + "default.handlebars->47->1890",
22546 + "default3.handlebars->35->1870",
22547 "login2.handlebars->7->44"
22548 ]
22549 },
@@ -22554,9 +22554,9 @@
22554 "pl": "Serwery DNS",
22555 "uk": "DNS Сервери",
22556 "xloc": [
22557 - "default-mobile.handlebars->11->814",
22558 - "default.handlebars->47->1654",
22559 - "default3.handlebars->35->1638"
22557 + "default-mobile.handlebars->11->815",
22558 + "default.handlebars->47->1655",
22559 + "default3.handlebars->35->1639"
22560 ]
22561 },
22562 {
@@ -22646,8 +22646,8 @@
22646 "uk": "Данська",
22647 "xloc": [
22648 "default-mobile.handlebars->11->157",
22649 - "default.handlebars->47->1890",
22650 - "default3.handlebars->35->1870",
22649 + "default.handlebars->47->1891",
22650 + "default3.handlebars->35->1871",
22651 "login2.handlebars->7->45"
22652 ]
22653 },
@@ -22686,7 +22686,7 @@
22686 "en": "Darkly",
22687 "nl": "Donker",
22688 "xloc": [
22689 - "default3.handlebars->35->2074"
22689 + "default3.handlebars->35->2075"
22690 ]
22691 },
22692 {
@@ -22715,8 +22715,8 @@
22715 "zh-cht": "數據通道",
22716 "uk": "Канал даних",
22717 "xloc": [
22718 - "default.handlebars->47->1388",
22719 - "default3.handlebars->35->1375",
22718 + "default.handlebars->47->1389",
22719 + "default3.handlebars->35->1376",
22720 "sharing.handlebars->11->11"
22721 ]
22722 },
@@ -22732,8 +22732,8 @@
22732 "pl": "Zapisy Bazy Danych",
22733 "uk": "Записи Бази Даних",
22734 "xloc": [
22735 - "default.handlebars->47->3161",
22736 - "default3.handlebars->35->3148"
22735 + "default.handlebars->47->3162",
22736 + "default3.handlebars->35->3149"
22737 ]
22738 },
22739 {
@@ -22763,8 +22763,8 @@
22763 "uk": "Дата та Час",
22764 "xloc": [
22765 "default-mobile.handlebars->11->315",
22766 - "default.handlebars->47->2048",
22767 - "default3.handlebars->35->2028"
22766 + "default.handlebars->47->2049",
22767 + "default3.handlebars->35->2029"
22768 ]
22769 },
22770 {
@@ -22794,12 +22794,12 @@
22794 "uk": "День",
22795 "xloc": [
22796 "default-mobile.handlebars->11->619",
22797 - "default.handlebars->47->1299",
22798 - "default.handlebars->47->3165",
22799 - "default.handlebars->47->3168",
22800 - "default3.handlebars->35->1290",
22801 - "default3.handlebars->35->3152",
22802 - "default3.handlebars->35->3155"
22797 + "default.handlebars->47->1300",
22798 + "default.handlebars->47->3166",
22799 + "default.handlebars->47->3169",
22800 + "default3.handlebars->35->1291",
22801 + "default3.handlebars->35->3153",
22802 + "default3.handlebars->35->3156"
22803 ]
22804 },
22805 {
@@ -22828,10 +22828,10 @@
22828 "zh-cht": "停用",
22829 "uk": "Деактивувати",
22830 "xloc": [
22831 - "default.handlebars->47->2212",
22832 - "default.handlebars->47->2276",
22833 - "default3.handlebars->35->2207",
22834 - "default3.handlebars->35->2269"
22831 + "default.handlebars->47->2213",
22832 + "default.handlebars->47->2277",
22833 + "default3.handlebars->35->2208",
22834 + "default3.handlebars->35->2270"
22835 ]
22836 },
22837 {
@@ -22860,8 +22860,8 @@
22860 "zh-cht": "如果設置停用CCM",
22861 "uk": "Деактивувати CCM, якщо встановлено",
22862 "xloc": [
22863 - "default.handlebars->47->2288",
22864 - "default3.handlebars->35->2281"
22863 + "default.handlebars->47->2289",
22864 + "default3.handlebars->35->2282"
22865 ]
22866 },
22867 {
@@ -22947,15 +22947,15 @@
22947 "zh-cht": "默認",
22948 "uk": "Типовий",
22949 "xloc": [
22950 - "default.handlebars->47->2802",
22951 - "default.handlebars->47->2851",
22952 - "default.handlebars->47->2862",
22953 - "default.handlebars->47->2936",
22954 - "default3.handlebars->35->2070",
22955 - "default3.handlebars->35->2797",
22956 - "default3.handlebars->35->2844",
22957 - "default3.handlebars->35->2855",
22958 - "default3.handlebars->35->2929"
22950 + "default.handlebars->47->2803",
22951 + "default.handlebars->47->2852",
22952 + "default.handlebars->47->2863",
22953 + "default.handlebars->47->2937",
22954 + "default3.handlebars->35->2071",
22955 + "default3.handlebars->35->2798",
22956 + "default3.handlebars->35->2845",
22957 + "default3.handlebars->35->2856",
22958 + "default3.handlebars->35->2930"
22959 ]
22960 },
22961 {
@@ -22985,8 +22985,8 @@
22985 "uk": "Del",
22986 "xloc": [
22987 "default-mobile.handlebars->11->656",
22988 - "default.handlebars->47->1420",
22989 - "default3.handlebars->35->1407"
22988 + "default.handlebars->47->1421",
22989 + "default3.handlebars->35->1408"
22990 ]
22991 },
22992 {
@@ -23020,15 +23020,15 @@
23020 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
23021 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
23022 "default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
23023 - "default.handlebars->47->1560",
23024 - "default.handlebars->47->2508",
23023 + "default.handlebars->47->1561",
23024 + "default.handlebars->47->2509",
23025 "default.handlebars->47->858",
23026 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
23027 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
23028 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
23029 "default.handlebars->filesContextMenu->5",
23030 - "default3.handlebars->35->1544",
23031 - "default3.handlebars->35->2504",
23030 + "default3.handlebars->35->1545",
23031 + "default3.handlebars->35->2505",
23032 "default3.handlebars->35->855",
23033 "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
23034 "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -23069,8 +23069,8 @@
23069 "uk": "Видалити Акаунт",
23070 "xloc": [
23071 "default-mobile.handlebars->11->331",
23072 - "default.handlebars->47->2086",
23073 - "default3.handlebars->35->2065"
23072 + "default.handlebars->47->2087",
23073 + "default3.handlebars->35->2066"
23074 ]
23075 },
23076 {
@@ -23099,7 +23099,7 @@
23099 "zh-cht": "刪除帳戶",
23100 "uk": "Видалити Акаунти",
23101 "xloc": [
23102 - "default.handlebars->47->2759"
23102 + "default.handlebars->47->2760"
23103 ]
23104 },
23105 {
@@ -23129,8 +23129,8 @@
23129 "uk": "Видалити Пристрій",
23130 "xloc": [
23131 "default-mobile.handlebars->11->558",
23132 - "default.handlebars->47->1035",
23133 - "default3.handlebars->35->1032"
23132 + "default.handlebars->47->1036",
23133 + "default3.handlebars->35->1033"
23134 ]
23135 },
23136 {
@@ -23189,12 +23189,12 @@
23189 "zh-cht": "刪除群組",
23190 "uk": "Видалити Групу",
23191 "xloc": [
23192 - "default-mobile.handlebars->11->959",
23193 - "default-mobile.handlebars->11->962",
23194 - "default.handlebars->47->2264",
23195 - "default.handlebars->47->2305",
23196 - "default3.handlebars->35->2259",
23197 - "default3.handlebars->35->2298"
23192 + "default-mobile.handlebars->11->960",
23193 + "default-mobile.handlebars->11->963",
23194 + "default.handlebars->47->2265",
23195 + "default.handlebars->47->2306",
23196 + "default3.handlebars->35->2260",
23197 + "default3.handlebars->35->2299"
23198 ]
23199 },
23200 {
@@ -23224,8 +23224,8 @@
23224 "uk": "Видалити Вузол",
23225 "xloc": [
23226 "default-mobile.handlebars->11->627",
23227 - "default.handlebars->47->1325",
23228 - "default3.handlebars->35->1315"
23227 + "default.handlebars->47->1326",
23228 + "default3.handlebars->35->1316"
23229 ]
23230 },
23231 {
@@ -23280,8 +23280,8 @@
23280 "zh-cht": "刪除用戶",
23281 "uk": "Видалити Користувача",
23282 "xloc": [
23283 - "default.handlebars->47->3010",
23284 - "default3.handlebars->35->3003"
23283 + "default.handlebars->47->3011",
23284 + "default3.handlebars->35->3004"
23285 ]
23286 },
23287 {
@@ -23310,10 +23310,10 @@
23310 "zh-cht": "刪除用戶群組",
23311 "uk": "Видалити Групу Користувачів",
23312 "xloc": [
23313 - "default.handlebars->47->2904",
23314 - "default.handlebars->47->2916",
23315 - "default3.handlebars->35->2897",
23316 - "default3.handlebars->35->2909"
23313 + "default.handlebars->47->2905",
23314 + "default.handlebars->47->2917",
23315 + "default3.handlebars->35->2898",
23316 + "default3.handlebars->35->2910"
23317 ]
23318 },
23319 {
@@ -23342,8 +23342,8 @@
23342 "zh-cht": "刪除用戶群組",
23343 "uk": "Видалити Групи Користувачів",
23344 "xloc": [
23345 - "default.handlebars->47->2849",
23346 - "default3.handlebars->35->2842"
23345 + "default.handlebars->47->2850",
23346 + "default3.handlebars->35->2843"
23347 ]
23348 },
23349 {
@@ -23372,8 +23372,8 @@
23372 "zh-cht": "刪除用戶{0}",
23373 "uk": "Видалити Користувача {0}",
23374 "xloc": [
23375 - "default.handlebars->47->3078",
23376 - "default3.handlebars->35->3065"
23375 + "default.handlebars->47->3079",
23376 + "default3.handlebars->35->3066"
23377 ]
23378 },
23379 {
@@ -23403,9 +23403,9 @@
23403 "uk": "Видалити акаунт",
23404 "xloc": [
23405 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->p2AccountPassActions->5->0",
23406 - "default.handlebars->47->2755",
23406 + "default.handlebars->47->2756",
23407 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7",
23408 - "default3.handlebars->35->2751",
23408 + "default3.handlebars->35->2752",
23409 "default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
23410 ]
23411 },
@@ -23465,8 +23465,8 @@
23465 "zh-cht": "刪除群組",
23466 "uk": "Видалити групу",
23467 "xloc": [
23468 - "default.handlebars->47->2845",
23469 - "default3.handlebars->35->2838"
23468 + "default.handlebars->47->2846",
23469 + "default3.handlebars->35->2839"
23470 ]
23471 },
23472 {
@@ -23525,8 +23525,8 @@
23525 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
23526 "uk": "Видалити рекурсивно: \\\"{0}\\\", {1} елемент(ів) видалено",
23527 "xloc": [
23528 - "default.handlebars->47->2570",
23529 - "default3.handlebars->35->2566"
23528 + "default.handlebars->47->2571",
23529 + "default3.handlebars->35->2567"
23530 ]
23531 },
23532 {
@@ -23557,10 +23557,10 @@
23557 "xloc": [
23558 "default-mobile.handlebars->11->374",
23559 "default-mobile.handlebars->11->721",
23560 - "default.handlebars->47->1562",
23561 - "default.handlebars->47->2510",
23562 - "default3.handlebars->35->1546",
23563 - "default3.handlebars->35->2506",
23560 + "default.handlebars->47->1563",
23561 + "default.handlebars->47->2511",
23562 + "default3.handlebars->35->1547",
23563 + "default3.handlebars->35->2507",
23564 "sharing.handlebars->11->63"
23565 ]
23566 },
@@ -23590,8 +23590,8 @@
23590 "zh-cht": "刪除用戶群組{0}?",
23591 "uk": "Видалити групу користувачів {0}?",
23592 "xloc": [
23593 - "default.handlebars->47->2914",
23594 - "default3.handlebars->35->2907"
23593 + "default.handlebars->47->2915",
23594 + "default3.handlebars->35->2908"
23595 ]
23596 },
23597 {
@@ -23622,10 +23622,10 @@
23622 "xloc": [
23623 "default-mobile.handlebars->11->373",
23624 "default-mobile.handlebars->11->720",
23625 - "default.handlebars->47->1561",
23626 - "default.handlebars->47->2509",
23627 - "default3.handlebars->35->1545",
23628 - "default3.handlebars->35->2505",
23625 + "default.handlebars->47->1562",
23626 + "default.handlebars->47->2510",
23627 + "default3.handlebars->35->1546",
23628 + "default3.handlebars->35->2506",
23629 "sharing.handlebars->11->62"
23630 ]
23631 },
@@ -23684,8 +23684,8 @@
23684 "zh-cht": "刪除:“{0}”",
23685 "uk": "Видалити: \\\"{0}\\\"",
23686 "xloc": [
23687 - "default.handlebars->47->2569",
23688 - "default3.handlebars->35->2565"
23687 + "default.handlebars->47->2570",
23688 + "default3.handlebars->35->2566"

This file is too large to show in full.

views/default-mobile.handlebars
+9 -2
@@ -2031,6 +2031,8 @@
2031 // Change the node
2032 node.name = message.event.node.name;
2033 node.rname = message.event.node.rname;
2034 + node.lusers = message.event.node.lusers;
2035 + node.users = message.event.node.users;
2036 node.host = message.event.node.host;
2037 node.desc = message.event.node.desc;
2038 node.publicip = message.event.node.publicip;
@@ -6272,7 +6274,12 @@
6274 }
6275
6276 // Active Users
6275 - if (node.users && (node.users.length > 0)) { x += addDetailItem(((node.users.length > 1)?"Active Users":"Active User"), EscapeHtml(node.users.join(', '))); }
6277 + if (node.users && node.users.length > 0) {
6278 + var u = node.users.map(function(user) {
6279 + return addKeyLinkConditional(EscapeHtml(user), "Locked", (node.lusers && node.lusers.indexOf(user) >= 0));
6280 + }).join(', ');
6281 + x += addDetailItem((node.users.length > 1 ? "Active Users" : "Active User"), u);
6282 + }
6283
6284 if (x != '') { sections.push({ name: "Operating System", html: x, img: 'software' }); }
6285
@@ -7584,7 +7591,7 @@
7591 function addLink(x, f) { return '<a style=cursor:pointer;text-decoration:none onclick=\'' + f + '\'>&diams; ' + x + '</a>'; }
7592 function addLinkConditional(x, f, c) { if (c) return addLink(x, f); return x; }
7593 function addKeyLink(x, f) { return '<span tabindex=0 style=cursor:pointer;text-decoration:none onclick=' + f + ' onkeypress="if (event.key==\'Enter\') { ' + f + ' } ">' + x + ' <img class=hoverButton src=images/key16.png></span>'; }
7587 - function addKeyLinkConditional(x, f, c) { if (c) return addKeyLink(x, f); return x; }
7594 + function addKeyLinkConditional(x, t, c) { if (c) return '<span title=\'' + t + '\'>' + x + ' <img class=hoverButton src=images/key16.png></span>'; return x }
7595 function passwordcheck(p) { var re = /(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&*()]).{8,}/; return re.test(p); }
7596 function getFileSizeStr(size) { if (typeof size != 'number') { size = 0; } if (size == 1) return "1 byte"; return format('{0} bytes', size); }
7597 function joinPaths() { var x = []; for (var i in arguments) { var w = arguments[i]; if ((w != null) && (w != '')) { while (w.endsWith('/') || w.endsWith('\\')) { w = w.substring(0, w.length - 1); } while (w.startsWith('/') || w.startsWith('\\')) { w = w.substring(1); } x.push(w); } } return x.join('/'); }
views/default.handlebars
+8 -2
@@ -3531,6 +3531,7 @@
3531 // Change the node
3532 node.name = message.event.node.name;
3533 node.rname = message.event.node.rname;
3534 + node.lusers = message.event.node.lusers;
3535 node.users = message.event.node.users;
3536 node.host = message.event.node.host;
3537 node.desc = message.event.node.desc;
@@ -7650,7 +7651,12 @@
7651 }
7652
7653 // Active Users
7653 - if (node.users && (node.users.length > 0)) { x += addDeviceAttribute(((node.users.length > 1)?"Active Users":"Active User"), EscapeHtml(node.users.join(', '))); }
7654 + if (node.users && node.users.length > 0) {
7655 + var u = node.users.map(function(user) {
7656 + return addKeyLinkConditional(EscapeHtml(user), "Locked", (node.lusers && node.lusers.indexOf(user) >= 0));
7657 + }).join(', ');
7658 + x += addDeviceAttribute((node.users.length > 1 ? "Active Users" : "Active User"), u);
7659 + }
7660
7661 // Display device user consent
7662 if ((node.agent != null) && (node.agent.id != 14) && (node.mtype != 3)) {
@@ -19195,7 +19201,7 @@
19201 function addLink(x, f) { return '<span tabindex=0 style=cursor:pointer;text-decoration:none onclick=\'' + f + '\' onkeypress="if (event.key==\'Enter\') {' + f + '} ">' + x + ' <img class=hoverButton src=images/link5.png></span>'; }
19202 function addLinkConditional(x, f, c) { if (c) return addLink(x, f); return x; }
19203 function addKeyLink(x, f) { return '<span tabindex=0 style=cursor:pointer;text-decoration:none onclick=' + f + ' onkeypress="if (event.key==\'Enter\') { ' + f + ' } ">' + x + ' <img class=hoverButton src=images/key16.png></span>'; }
19198 - function addKeyLinkConditional(x, f, c) { if (c) return addKeyLink(x, f); return x; }
19204 + function addKeyLinkConditional(x, t, c) { if (c) return '<span title=\'' + t + '\'>' + x + ' <img class=hoverButton src=images/key16.png></span>'; return x }
19205 function haltEvent(e) { if (e.preventDefault) e.preventDefault(); if (e.stopPropagation) e.stopPropagation(); return false; }
19206 function addOption(q, t, i) { var option = document.createElement('option'); option.text = t; option.value = i; Q(q).add(option); }
19207 function passwordcheck(p) { return (p.length > 7) && (/\d/.test(p)) && (/[a-z]/.test(p)) && (/[A-Z]/.test(p)) && (/\W/.test(p)); }
views/default3.handlebars
+8 -3
@@ -3993,6 +3993,7 @@
3993 // Change the node
3994 node.name = message.event.node.name;
3995 node.rname = message.event.node.rname;
3996 + node.lusers = message.event.node.lusers;
3997 node.users = message.event.node.users;
3998 node.host = message.event.node.host;
3999 node.desc = message.event.node.desc;
@@ -8319,8 +8320,12 @@
8320 }
8321
8322 // Active Users
8322 - if (node.users && node.conn && (node.users.length > 0) && (node.conn & 1)) { x += addDeviceAttribute(((node.users.length > 1) ? "Active Users" : "Active User"), EscapeHtml(node.users.join(', '))); }
8323 -
8323 + if (node.users && node.users.length > 0) {
8324 + var u = node.users.map(function(user) {
8325 + return addKeyLinkConditional(EscapeHtml(user), "Locked", (node.lusers && node.lusers.indexOf(user) >= 0));
8326 + }).join(', ');
8327 + x += addDeviceAttribute((node.users.length > 1 ? "Active Users" : "Active User"), u);
8328 + }
8329 // Display device user consent
8330 if ((node.agent != null) && (node.agent.id != 14) && (node.mtype != 3)) {
8331 var meshFeatures = [];
@@ -20507,7 +20512,7 @@
20512 function addLink(x, f) { return '<span tabindex=0 role="button" onclick=\'' + f + '\' onkeypress="if (event.key==\'Enter\') {' + f + '} ">' + x + ' <i class="fa-solid fa-pencil fa-xs"></i></span>'; }
20513 function addLinkConditional(x, f, c) { if (c) return addLink(x, f); return x; }
20514 function addKeyLink(x, f) { return '<span tabindex=0 role=button onclick=' + f + ' onkeypress="if (event.key==\'Enter\') { ' + f + ' } ">' + x + ' <i class="fa-solid fa-key"></i></span>'; }
20510 - function addKeyLinkConditional(x, f, c) { if (c) return addKeyLink(x, f); return x; }
20515 + function addKeyLinkConditional(x, t, c) { if (c) return '<span title=\'' + t + '\'>' + x + ' <i class="fa-solid fa-key"></i></span>'; return x }
20516 function haltEvent(e) { if (e.preventDefault) e.preventDefault(); if (e.stopPropagation) e.stopPropagation(); return false; }
20517 function addOption(q, t, i) { var option = document.createElement('option'); option.text = t; option.value = i; Q(q).add(option); }
20518 function passwordcheck(p) { return (p.length > 7) && (/\d/.test(p)) && (/[a-z]/.test(p)) && (/[A-Z]/.test(p)) && (/\W/.test(p)); }