add battery for linux and health calculations #7332

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

si458 committed Dec 18, 2025 at 19:15 UTC 01146696f2b077323c051e9377aad01d005b747a
5 files changed +3746 -3643
agents/modules_meshcore/computer-identifiers.js
+70 -9
@@ -388,6 +388,51 @@ function linux_identifiers()
388 }
389 } catch (ex) { }
390
391 + // Linux Batteries
392 + try {
393 + var batteries = require('fs').readdirSync('/sys/class/power_supply/');
394 + if (batteries.length != 0) {
395 + values.battery = [];
396 + for (var i in batteries) {
397 + const filesToRead = [
398 + 'capacity', 'cycle_count', 'energy_full', 'energy_full_design',
399 + 'energy_now', 'manufacturer', 'model_name', 'power_now',
400 + 'serial_number', 'status', 'technology', 'voltage_now'
401 + ];
402 + const thedata = {};
403 + for (var x in filesToRead) {
404 + try {
405 + const content = require('fs').readFileSync('/sys/class/power_supply/' + batteries[i] + '/' + filesToRead[x]).toString().trim();
406 + thedata[filesToRead[x]] = /^\d+$/.test(content) ? parseInt(content, 10) : content;
407 + } catch (err) { }
408 + }
409 + if (Object.keys(thedata).length === 0) continue; // No data read, skip
410 + const status = (thedata.status || '').toLowerCase();
411 + const isCharging = status === 'charging';
412 + const isDischarging = status === 'discharging';
413 + const toMilli = function (val) { return Math.round((val || 0) / 1000) }; // Convert from µ units to m units (divide by 1000)
414 + const batteryJson = {
415 + "InstanceName": batteries[i],
416 + "CycleCount": thedata.cycle_count || 0,
417 + "FullChargedCapacity": toMilli(thedata.energy_full),
418 + "Chemistry": (thedata.technology || ''),
419 + "DesignedCapacity": toMilli(thedata.energy_full_design),
420 + "DeviceName": thedata.model_name || "Battery",
421 + "ManufactureName": thedata.manufacturer || "Unknown",
422 + "SerialNumber": thedata.serial_number || "unknown",
423 + "ChargeRate": isCharging ? toMilli(thedata.power_now) : 0,
424 + "Charging": isCharging,
425 + "DischargeRate": isDischarging ? toMilli(thedata.power_now) : 0,
426 + "Discharging": isDischarging,
427 + "RemainingCapacity": toMilli(thedata.energy_now),
428 + "Voltage": toMilli(thedata.voltage_now),
429 + "Health": (thedata.energy_now && thedata.energy_full_design ? Math.floor((thedata.energy_now / thedata.energy_full_design) * 100) : 0)
430 + };
431 + values.battery.push(batteryJson);
432 + }
433 + }
434 + } catch (ex) { }
435 +
436 return (values);
437 }
438
@@ -561,18 +606,34 @@ function windows_identifiers()
606 }
607 values = require('win-wmi').query('ROOT\\WMI', "SELECT * FROM BatteryCycleCount",['InstanceName','CycleCount']);
608 var values2 = require('win-wmi').query('ROOT\\WMI', "SELECT * FROM BatteryFullChargedCapacity",['InstanceName','FullChargedCapacity']);
564 - var values3 = require('win-wmi').query('ROOT\\WMI', "SELECT * FROM BatteryFullChargedCapacity",['InstanceName','FullChargedCapacity']);
565 - var values4 = require('win-wmi').query('ROOT\\WMI', "SELECT * FROM BatteryRuntime",['InstanceName','EstimatedRuntime']);
566 - var values5 = require('win-wmi').query('ROOT\\WMI', "SELECT * FROM BatteryStaticData",['InstanceName','Chemistry','DesignedCapacity','DeviceName','ManufactureDate','ManufactureName','SerialNumber']);
567 - for (i = 0; i < values5.length; ++i) {
568 - if (values5[i].Chemistry) {
569 - values5[i].Chemistry = IntToStrLE(parseInt(values5[i].Chemistry));
609 + var values3 = require('win-wmi').query('ROOT\\WMI', "SELECT * FROM BatteryRuntime",['InstanceName','EstimatedRuntime']);
610 + var values4 = require('win-wmi').query('ROOT\\WMI', "SELECT * FROM BatteryStaticData",['InstanceName','Chemistry','DesignedCapacity','DeviceName','ManufactureDate','ManufactureName','SerialNumber']);
611 + for (i = 0; i < values4.length; ++i) {
612 + if (values4[i].Chemistry) {
613 + values4[i].Chemistry = IntToStrLE(parseInt(values4[i].Chemistry));
614 + }
615 + }
616 + var values5 = require('win-wmi').query('ROOT\\WMI', "SELECT * FROM BatteryStatus",['InstanceName','ChargeRate','Charging','DischargeRate','Discharging','RemainingCapacity','Voltage']);
617 + var values6 = [];
618 + if (values4.length > 0 && values5.length > 0) {
619 + for (i = 0; i < values5.length; ++i) {
620 + for (var j = 0; j < values4.length; ++j) {
621 + if (values5[i].InstanceName == values4[j].InstanceName) {
622 + if (values4[j].DesignedCapacity && values4[j].DesignedCapacity > 0) {
623 + values6[i] = {
624 + Health: Math.floor((values5[i].RemainingCapacity / values4[j].DesignedCapacity) * 100),
625 + InstanceName: values5[i].InstanceName
626 + };
627 + } else {
628 + values6[i] = { Health: 0, InstanceName: values5[i].InstanceName };
629 + }
630 + break;
631 + }
632 + }
633 }
634 }
572 - var values6 = require('win-wmi').query('ROOT\\WMI', "SELECT * FROM BatteryStatus",['InstanceName','ChargeRate','Charging','DischargeRate','Discharging','RemainingCapacity','Voltage']);
635 ret.battery = mergeJSONArrays(values, values2, values3, values4, values5, values6);
574 - }
575 - catch (ex) { }
636 + } catch (ex) { }
637
638 return (ret);
639 }
translate/translate.json
+3673 -3634
@@ -26,10 +26,10 @@
26 "zh-chs": " + CIRA",
27 "zh-cht": " + CIRA",
28 "xloc": [
29 - "default.handlebars->119->2233",
29 "default.handlebars->119->2235",
31 - "default3.handlebars->117->2229",
32 - "default3.handlebars->117->2231"
30 + "default.handlebars->119->2237",
31 + "default3.handlebars->117->2231",
32 + "default3.handlebars->117->2233"
33 ]
34 },
35 {
@@ -330,8 +330,8 @@
330 "zh-chs": " 可以使用密码提示,但不建议使用。",
331 "zh-cht": " 可以使用密碼提示,但不建議使用。",
332 "xloc": [
333 - "default.handlebars->119->2105",
334 - "default3.handlebars->117->2085"
333 + "default.handlebars->119->2107",
334 + "default3.handlebars->117->2087"
335 ]
336 },
337 {
@@ -360,10 +360,10 @@
360 "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
361 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
362 "xloc": [
363 - "default.handlebars->119->2359",
364 - "default.handlebars->119->2948",
365 - "default3.handlebars->117->2356",
366 - "default3.handlebars->117->2942"
363 + "default.handlebars->119->2361",
364 + "default.handlebars->119->2950",
365 + "default3.handlebars->117->2358",
366 + "default3.handlebars->117->2944"
367 ]
368 },
369 {
@@ -985,9 +985,9 @@
985 "zh-chs": "* 8-16个字符,1个大写,1个小写,1个数字,1个非字母数字。",
986 "zh-cht": "* 8-16個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
987 "xloc": [
988 - "default.handlebars->119->2317",
988 + "default.handlebars->119->2319",
989 "default.handlebars->119->542",
990 - "default3.handlebars->117->2311",
990 + "default3.handlebars->117->2313",
991 "default3.handlebars->117->538"
992 ]
993 },
@@ -1096,21 +1096,21 @@
1096 "zh-chs": ",",
1097 "zh-cht": ",",
1098 "xloc": [
1099 - "default-mobile.handlebars->53->1039",
1099 + "default-mobile.handlebars->53->1041",
1100 "default-mobile.handlebars->53->804",
1101 "default-mobile.handlebars->53->806",
1102 "default-mobile.handlebars->53->808",
1103 "default.handlebars->119->1640",
1104 "default.handlebars->119->1642",
1105 "default.handlebars->119->1644",
1106 - "default.handlebars->119->2435",
1107 - "default.handlebars->119->2721",
1106 + "default.handlebars->119->2437",
1107 + "default.handlebars->119->2723",
1108 "default.handlebars->119->997",
1109 "default3.handlebars->117->1625",
1110 "default3.handlebars->117->1627",
1111 "default3.handlebars->117->1629",
1112 - "default3.handlebars->117->2432",
1113 - "default3.handlebars->117->2718",
1112 + "default3.handlebars->117->2434",
1113 + "default3.handlebars->117->2720",
1114 "default3.handlebars->117->993"
1115 ]
1116 },
@@ -1285,9 +1285,9 @@
1285 "zh-chs": ",MQTT在线",
1286 "zh-cht": ",MQTT在線",
1287 "xloc": [
1288 - "default-mobile.handlebars->53->940",
1289 - "default.handlebars->119->1777",
1290 - "default3.handlebars->117->1760"
1288 + "default-mobile.handlebars->53->942",
1289 + "default.handlebars->119->1779",
1290 + "default3.handlebars->117->1762"
1291 ]
1292 },
1293 {
@@ -1317,9 +1317,9 @@
1317 "zh-cht": ", 不同意",
1318 "xloc": [
1319 "default.handlebars->119->1092",
1320 - "default.handlebars->119->2275",
1320 + "default.handlebars->119->2277",
1321 "default3.handlebars->117->1088",
1322 - "default3.handlebars->117->2271"
1322 + "default3.handlebars->117->2273"
1323 ]
1324 },
1325 {
@@ -1349,9 +1349,9 @@
1349 "zh-cht": ",提示同意",
1350 "xloc": [
1351 "default.handlebars->119->1093",
1352 - "default.handlebars->119->2276",
1352 + "default.handlebars->119->2278",
1353 "default3.handlebars->117->1089",
1354 - "default3.handlebars->117->2272"
1354 + "default3.handlebars->117->2274"
1355 ]
1356 },
1357 {
@@ -1410,9 +1410,9 @@
1410 "zh-cht": ", 每天重複",
1411 "xloc": [
1412 "default.handlebars->119->1089",
1413 - "default.handlebars->119->2272",
1413 + "default.handlebars->119->2274",
1414 "default3.handlebars->117->1085",
1415 - "default3.handlebars->117->2268"
1415 + "default3.handlebars->117->2270"
1416 ]
1417 },
1418 {
@@ -1442,9 +1442,9 @@
1442 "zh-cht": ", 每週重複一次",
1443 "xloc": [
1444 "default.handlebars->119->1090",
1445 - "default.handlebars->119->2273",
1445 + "default.handlebars->119->2275",
1446 "default3.handlebars->117->1086",
1447 - "default3.handlebars->117->2269"
1447 + "default3.handlebars->117->2271"
1448 ]
1449 },
1450 {
@@ -1619,9 +1619,9 @@
1619 "zh-cht": ", 工具欄",
1620 "xloc": [
1621 "default.handlebars->119->1094",
1622 - "default.handlebars->119->2277",
1622 + "default.handlebars->119->2279",
1623 "default3.handlebars->117->1090",
1624 - "default3.handlebars->117->2273"
1624 + "default3.handlebars->117->2275"
1625 ]
1626 },
1627 {
@@ -1677,9 +1677,9 @@
1677 "zh-cht": ", 僅查看桌面",
1678 "xloc": [
1679 "default.handlebars->119->1091",
1680 - "default.handlebars->119->2274",
1680 + "default.handlebars->119->2276",
1681 "default3.handlebars->117->1087",
1682 - "default3.handlebars->117->2270"
1682 + "default3.handlebars->117->2272"
1683 ]
1684 },
1685 {
@@ -2051,11 +2051,11 @@
2051 "default-mobile.handlebars->53->360",
2052 "default-mobile.handlebars->53->700",
2053 "default.handlebars->119->1531",
2054 - "default.handlebars->119->2501",
2055 - "default.handlebars->119->3192",
2054 + "default.handlebars->119->2503",
2055 + "default.handlebars->119->3194",
2056 "default3.handlebars->117->1516",
2057 - "default3.handlebars->117->2498",
2058 - "default3.handlebars->117->3182",
2057 + "default3.handlebars->117->2500",
2058 + "default3.handlebars->117->3184",
2059 "sharing-mobile.handlebars->53->79",
2060 "sharing.handlebars->47->50"
2061 ]
@@ -2142,8 +2142,8 @@
2142 "en": "0 bps",
2143 "xloc": [
2144 "default-mobile.handlebars->53->367",
2145 - "default.handlebars->119->2519",
2146 - "default3.handlebars->117->2516"
2145 + "default.handlebars->119->2521",
2146 + "default3.handlebars->117->2518"
2147 ]
2148 },
2149 {
@@ -2250,8 +2250,8 @@
2250 "zh-chs": "1个活跃时段",
2251 "zh-cht": "1個活躍時段",
2252 "xloc": [
2253 - "default.handlebars->119->3043",
2254 - "default3.handlebars->117->3037"
2253 + "default.handlebars->119->3045",
2254 + "default3.handlebars->117->3039"
2255 ]
2256 },
2257 {
@@ -2280,10 +2280,10 @@
2280 "zh-chs": "1个字节",
2281 "zh-cht": "1個位元組",
2282 "xloc": [
2283 - "default-mobile.handlebars->53->1083",
2283 + "default-mobile.handlebars->53->1085",
2284 "default-mobile.handlebars->53->375",
2285 - "default.handlebars->119->2530",
2286 - "default3.handlebars->117->2527",
2285 + "default.handlebars->119->2532",
2286 + "default3.handlebars->117->2529",
2287 "download.handlebars->7->1",
2288 "download2.handlebars->11->1",
2289 "sharing-mobile.handlebars->53->112",
@@ -2410,8 +2410,8 @@
2410 "zh-chs": "1组",
2411 "zh-cht": "1群",
2412 "xloc": [
2413 - "default.handlebars->119->2998",
2414 - "default3.handlebars->117->2992"
2413 + "default.handlebars->119->3000",
2414 + "default3.handlebars->117->2994"
2415 ]
2416 },
2417 {
@@ -2475,9 +2475,9 @@
2475 "zh-cht": "1分鐘",
2476 "xloc": [
2477 "default.handlebars->119->1202",
2478 - "default.handlebars->119->2070",
2478 + "default.handlebars->119->2072",
2479 "default3.handlebars->117->1196",
2480 - "default3.handlebars->117->2051"
2480 + "default3.handlebars->117->2053"
2481 ]
2482 },
2483 {
@@ -2595,8 +2595,8 @@
2595 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
2596 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2597 "xloc": [
2598 - "default.handlebars->119->2753",
2599 - "default3.handlebars->117->2750"
2598 + "default.handlebars->119->2755",
2599 + "default3.handlebars->117->2752"
2600 ]
2601 },
2602 {
@@ -2860,7 +2860,7 @@
2860 "default-mobile.handlebars->53->422",
2861 "default-mobile.handlebars->53->426",
2862 "default-mobile.handlebars->53->430",
2863 - "default.handlebars->119->2757",
2863 + "default.handlebars->119->2759",
2864 "default.handlebars->119->460",
2865 "default.handlebars->119->463",
2866 "default.handlebars->119->467",
@@ -2868,7 +2868,7 @@
2868 "default.handlebars->119->475",
2869 "default.handlebars->119->479",
2870 "default.handlebars->119->483",
2871 - "default3.handlebars->117->2754",
2871 + "default3.handlebars->117->2756",
2872 "default3.handlebars->117->456",
2873 "default3.handlebars->117->459",
2874 "default3.handlebars->117->463",
@@ -3088,9 +3088,9 @@
3088 "zh-cht": "10分鐘",
3089 "xloc": [
3090 "default.handlebars->119->1204",
3091 - "default.handlebars->119->2072",
3091 + "default.handlebars->119->2074",
3092 "default3.handlebars->117->1198",
3093 - "default3.handlebars->117->2053"
3093 + "default3.handlebars->117->2055"
3094 ]
3095 },
3096 {
@@ -3299,9 +3299,9 @@
3299 "zh-cht": "12小時",
3300 "xloc": [
3301 "default.handlebars->119->1212",
3302 - "default.handlebars->119->2080",
3302 + "default.handlebars->119->2082",
3303 "default3.handlebars->117->1206",
3304 - "default3.handlebars->117->2061"
3304 + "default3.handlebars->117->2063"
3305 ]
3306 },
3307 {
@@ -3446,9 +3446,9 @@
3446 "zh-cht": "15分鐘",
3447 "xloc": [
3448 "default.handlebars->119->1205",
3449 - "default.handlebars->119->2073",
3449 + "default.handlebars->119->2075",
3450 "default3.handlebars->117->1199",
3451 - "default3.handlebars->117->2054"
3451 + "default3.handlebars->117->2056"
3452 ]
3453 },
3454 {
@@ -3478,9 +3478,9 @@
3478 "zh-cht": "16小時",
3479 "xloc": [
3480 "default.handlebars->119->1213",
3481 - "default.handlebars->119->2081",
3481 + "default.handlebars->119->2083",
3482 "default3.handlebars->117->1207",
3483 - "default3.handlebars->117->2062"
3483 + "default3.handlebars->117->2064"
3484 ]
3485 },
3486 {
@@ -3626,9 +3626,9 @@
3626 "zh-cht": "2天",
3627 "xloc": [
3628 "default.handlebars->119->1215",
3629 - "default.handlebars->119->2083",
3629 + "default.handlebars->119->2085",
3630 "default3.handlebars->117->1209",
3631 - "default3.handlebars->117->2064"
3631 + "default3.handlebars->117->2066"
3632 ]
3633 },
3634 {
@@ -3658,9 +3658,9 @@
3658 "zh-cht": "2小時",
3659 "xloc": [
3660 "default.handlebars->119->1209",
3661 - "default.handlebars->119->2077",
3661 + "default.handlebars->119->2079",
3662 "default3.handlebars->117->1203",
3663 - "default3.handlebars->117->2058"
3663 + "default3.handlebars->117->2060"
3664 ]
3665 },
3666 {
@@ -3871,9 +3871,9 @@
3871 "zh-cht": "24小時",
3872 "xloc": [
3873 "default.handlebars->119->1214",
3874 - "default.handlebars->119->2082",
3874 + "default.handlebars->119->2084",
3875 "default3.handlebars->117->1208",
3876 - "default3.handlebars->117->2063"
3876 + "default3.handlebars->117->2065"
3877 ]
3878 },
3879 {
@@ -3960,8 +3960,8 @@
3960 "zh-chs": "2FA备份代码已清除",
3961 "zh-cht": "2FA備份代碼已清除",
3962 "xloc": [
3963 - "default.handlebars->119->2643",
3964 - "default3.handlebars->117->2640"
3963 + "default.handlebars->119->2645",
3964 + "default3.handlebars->117->2642"
3965 ]
3966 },
3967 {
@@ -4021,8 +4021,8 @@
4021 "zh-chs": "第二个因素",
4022 "zh-cht": "第二個因素",
4023 "xloc": [
4024 - "default.handlebars->119->3231",
4025 - "default3.handlebars->117->3221"
4024 + "default.handlebars->119->3233",
4025 + "default3.handlebars->117->3223"
4026 ]
4027 },
4028 {
@@ -4051,10 +4051,10 @@
4051 "zh-chs": "启用第二因素身份验证",
4052 "zh-cht": "啟用第二因素身份驗證",
4053 "xloc": [
4054 - "default.handlebars->119->2771",
4055 - "default.handlebars->119->3024",
4056 - "default3.handlebars->117->2768",
4057 - "default3.handlebars->117->3018"
4054 + "default.handlebars->119->2773",
4055 + "default.handlebars->119->3026",
4056 + "default3.handlebars->117->2770",
4057 + "default3.handlebars->117->3020"
4058 ]
4059 },
4060 {
@@ -4226,9 +4226,9 @@
4226 "zh-cht": "30分鐘",
4227 "xloc": [
4228 "default.handlebars->119->1206",
4229 - "default.handlebars->119->2074",
4229 + "default.handlebars->119->2076",
4230 "default3.handlebars->117->1200",
4231 - "default3.handlebars->117->2055"
4231 + "default3.handlebars->117->2057"
4232 ]
4233 },
4234 {
@@ -4347,9 +4347,9 @@
4347 "zh-cht": "4天",
4348 "xloc": [
4349 "default.handlebars->119->1216",
4350 - "default.handlebars->119->2084",
4350 + "default.handlebars->119->2086",
4351 "default3.handlebars->117->1210",
4352 - "default3.handlebars->117->2065"
4352 + "default3.handlebars->117->2067"
4353 ]
4354 },
4355 {
@@ -4379,9 +4379,9 @@
4379 "zh-cht": "4個小時",
4380 "xloc": [
4381 "default.handlebars->119->1210",
4382 - "default.handlebars->119->2078",
4382 + "default.handlebars->119->2080",
4383 "default3.handlebars->117->1204",
4384 - "default3.handlebars->117->2059"
4384 + "default3.handlebars->117->2061"
4385 ]
4386 },
4387 {
@@ -4528,9 +4528,9 @@
4528 "zh-cht": "45分鐘",
4529 "xloc": [
4530 "default.handlebars->119->1207",
4531 - "default.handlebars->119->2075",
4531 + "default.handlebars->119->2077",
4532 "default3.handlebars->117->1201",
4533 - "default3.handlebars->117->2056"
4533 + "default3.handlebars->117->2058"
4534 ]
4535 },
4536 {
@@ -4589,9 +4589,9 @@
4589 "zh-cht": "5分鐘",
4590 "xloc": [
4591 "default.handlebars->119->1203",
4592 - "default.handlebars->119->2071",
4592 + "default.handlebars->119->2073",
4593 "default3.handlebars->117->1197",
4594 - "default3.handlebars->117->2052"
4594 + "default3.handlebars->117->2054"
4595 ]
4596 },
4597 {
@@ -4803,9 +4803,9 @@
4803 "zh-cht": "60分鐘",
4804 "xloc": [
4805 "default.handlebars->119->1208",
4806 - "default.handlebars->119->2076",
4806 + "default.handlebars->119->2078",
4807 "default3.handlebars->117->1202",
4808 - "default3.handlebars->117->2057"
4808 + "default3.handlebars->117->2059"
4809 ]
4810 },
4811 {
@@ -5087,8 +5087,8 @@
5087 "zh-chs": "7天",
5088 "zh-cht": "7天",
5089 "xloc": [
5090 - "default.handlebars->119->2085",
5091 - "default3.handlebars->117->2066"
5090 + "default.handlebars->119->2087",
5091 + "default3.handlebars->117->2068"
5092 ]
5093 },
5094 {
@@ -5180,11 +5180,11 @@
5180 "zh-cht": "8小時",
5181 "xloc": [
5182 "default.handlebars->119->1211",
5183 - "default.handlebars->119->2079",
5183 + "default.handlebars->119->2081",
5184 "default.handlebars->119->570",
5185 "default.handlebars->119->584",
5186 "default3.handlebars->117->1205",
5187 - "default3.handlebars->117->2060",
5187 + "default3.handlebars->117->2062",
5188 "default3.handlebars->117->566",
5189 "default3.handlebars->117->580"
5190 ]
@@ -5389,10 +5389,10 @@
5389 "zh-cht": "ACM",
5390 "xloc": [
5391 "default-mobile.handlebars->53->501",
5392 - "default.handlebars->119->2253",
5392 + "default.handlebars->119->2255",
5393 "default.handlebars->119->448",
5394 "default.handlebars->119->904",
5395 - "default3.handlebars->117->2249",
5395 + "default3.handlebars->117->2251",
5396 "default3.handlebars->117->444",
5397 "default3.handlebars->117->900"
5398 ]
@@ -5524,8 +5524,8 @@
5524 "zh-chs": "操作系统",
5525 "zh-cht": "AMT操作系統",
5526 "xloc": [
5527 - "default.handlebars->119->3390",
5528 - "default3.handlebars->117->3380"
5527 + "default.handlebars->119->3392",
5528 + "default3.handlebars->117->3382"
5529 ]
5530 },
5531 {
@@ -5553,10 +5553,10 @@
5553 "zh-chs": "AMT-Redir",
5554 "zh-cht": "AMT-Redir",
5555 "xloc": [
5556 - "default.handlebars->119->3241",
5557 - "default.handlebars->119->3294",
5558 - "default3.handlebars->117->3231",
5559 - "default3.handlebars->117->3284"
5556 + "default.handlebars->119->3243",
5557 + "default.handlebars->119->3296",
5558 + "default3.handlebars->117->3233",
5559 + "default3.handlebars->117->3286"
5560 ]
5561 },
5562 {
@@ -5584,10 +5584,10 @@
5584 "zh-chs": "AMT-WSMAN",
5585 "zh-cht": "AMT-WSMAN",
5586 "xloc": [
5587 - "default.handlebars->119->3240",
5588 - "default.handlebars->119->3293",
5589 - "default3.handlebars->117->3230",
5590 - "default3.handlebars->117->3283"
5587 + "default.handlebars->119->3242",
5588 + "default.handlebars->119->3295",
5589 + "default3.handlebars->117->3232",
5590 + "default3.handlebars->117->3285"
5591 ]
5592 },
5593 {
@@ -5607,7 +5607,7 @@
5607 "pl": "Wersja APK MeshAgent",
5608 "uk": "MeshAgent версія APK",
5609 "xloc": [
5610 - "default-mobile.handlebars->53->992",
5610 + "default-mobile.handlebars->53->994",
5611 "default.handlebars->119->659",
5612 "default3.handlebars->117->655"
5613 ]
@@ -5854,9 +5854,9 @@
5854 "zh-chs": "拒绝访问",
5855 "zh-cht": "拒絕存取",
5856 "xloc": [
5857 - "default-mobile.handlebars->53->941",
5858 - "default.handlebars->119->1778",
5859 - "default3.handlebars->117->1761"
5857 + "default-mobile.handlebars->53->943",
5858 + "default.handlebars->119->1780",
5859 + "default3.handlebars->117->1763"
5860 ]
5861 },
5862 {
@@ -5945,8 +5945,8 @@
5945 "zh-chs": "访问服务器档案",
5946 "zh-cht": "存取伺服器檔案",
5947 "xloc": [
5948 - "default.handlebars->119->2954",
5949 - "default3.handlebars->117->2948"
5948 + "default.handlebars->119->2956",
5949 + "default3.handlebars->117->2950"
5950 ]
5951 },
5952 {
@@ -6073,16 +6073,16 @@
6073 "default-mobile.handlebars->53->470",
6074 "default-mobile.handlebars->53->98",
6075 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
6076 - "default.handlebars->119->2114",
6076 "default.handlebars->119->2116",
6078 - "default.handlebars->119->3445",
6077 + "default.handlebars->119->2118",
6078 + "default.handlebars->119->3447",
6079 "default.handlebars->119->741",
6080 "default.handlebars->119->864",
6081 "default.handlebars->119->866",
6082 - "default3.handlebars->117->2116",
6083 - "default3.handlebars->117->2117",
6084 - "default3.handlebars->117->3433",
6082 + "default3.handlebars->117->2118",
6083 + "default3.handlebars->117->2119",
6084 "default3.handlebars->117->3435",
6085 + "default3.handlebars->117->3437",
6086 "default3.handlebars->117->737",
6087 "default3.handlebars->117->860",
6088 "default3.handlebars->117->862"
@@ -6114,9 +6114,9 @@
6114 "zh-chs": "帐号设定",
6115 "zh-cht": "帳號設定",
6116 "xloc": [
6117 - "default-mobile.handlebars->53->1050",
6118 - "default.handlebars->119->3314",
6119 - "default3.handlebars->117->3304"
6117 + "default-mobile.handlebars->53->1052",
6118 + "default.handlebars->119->3316",
6119 + "default3.handlebars->117->3306"
6120 ]
6121 },
6122 {
@@ -6191,8 +6191,8 @@
6191 "pl": "Konto zmienione di synchronizacji z danymi LDAP.",
6192 "uk": "Акаунт змінено на синхронізацію з даними LDAP.",
6193 "xloc": [
6194 - "default.handlebars->119->2704",
6195 - "default3.handlebars->117->2701"
6194 + "default.handlebars->119->2706",
6195 + "default3.handlebars->117->2703"
6196 ]
6197 },
6198 {
@@ -6221,8 +6221,8 @@
6221 "zh-chs": "帐户已更改:{0}",
6222 "zh-cht": "帳戶已更改:{0}",
6223 "xloc": [
6224 - "default.handlebars->119->2616",
6225 - "default3.handlebars->117->2613"
6224 + "default.handlebars->119->2618",
6225 + "default3.handlebars->117->2615"
6226 ]
6227 },
6228 {
@@ -6251,8 +6251,8 @@
6251 "zh-chs": "创建帐户,电子邮件为{0}",
6252 "zh-cht": "創建帳戶,電子郵件為{0}",
6253 "xloc": [
6254 - "default.handlebars->119->2615",
6255 - "default3.handlebars->117->2612"
6254 + "default.handlebars->119->2617",
6255 + "default3.handlebars->117->2614"
6256 ]
6257 },
6258 {
@@ -6281,8 +6281,8 @@
6281 "zh-chs": "已创建帐户,名称为 {0}。",
6282 "zh-cht": "已創建帳戶,名稱為 {0}。",
6283 "xloc": [
6284 - "default.handlebars->119->2678",
6285 - "default3.handlebars->117->2675"
6284 + "default.handlebars->119->2680",
6285 + "default3.handlebars->117->2677"
6286 ]
6287 },
6288 {
@@ -6311,8 +6311,8 @@
6311 "zh-chs": "创建帐户,用户名是{0}",
6312 "zh-cht": "帳戶已創建,用戶名是{0}",
6313 "xloc": [
6314 - "default.handlebars->119->2614",
6315 - "default3.handlebars->117->2611"
6314 + "default.handlebars->119->2616",
6315 + "default3.handlebars->117->2613"
6316 ]
6317 },
6318 {
@@ -6343,11 +6343,11 @@
6343 "xloc": [
6344 "default-mobile.handlebars->53->69",
6345 "default.handlebars->119->222",
6346 - "default.handlebars->119->2773",
6347 - "default.handlebars->119->2951",
6346 + "default.handlebars->119->2775",
6347 + "default.handlebars->119->2953",
6348 "default3.handlebars->117->219",
6349 - "default3.handlebars->117->2770",
6350 - "default3.handlebars->117->2945"
6349 + "default3.handlebars->117->2772",
6350 + "default3.handlebars->117->2947"
6351 ]
6352 },
6353 {
@@ -6376,9 +6376,9 @@
6376 "zh-chs": "达到帐户限制。",
6377 "zh-cht": "達到帳戶限制。",
6378 "xloc": [
6379 - "default-mobile.handlebars->53->1062",
6380 - "default.handlebars->119->3326",
6381 - "default3.handlebars->117->3316",
6379 + "default-mobile.handlebars->53->1064",
6380 + "default.handlebars->119->3328",
6381 + "default3.handlebars->117->3318",
6382 "login-mobile.handlebars->23->6",
6383 "login.handlebars->13->8",
6384 "login2.handlebars->17->206"
@@ -6441,8 +6441,8 @@
6441 "zh-chs": "帐号登录",
6442 "zh-cht": "帳號登錄",
6443 "xloc": [
6444 - "default.handlebars->119->2551",
6445 - "default3.handlebars->117->2548"
6444 + "default.handlebars->119->2553",
6445 + "default3.handlebars->117->2550"
6446 ]
6447 },
6448 {
@@ -6471,8 +6471,8 @@
6471 "zh-chs": "来自 {0}、{1}、{2} 的帐户登录",
6472 "zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
6473 "xloc": [
6474 - "default.handlebars->119->2657",
6475 - "default3.handlebars->117->2654"
6474 + "default.handlebars->119->2659",
6475 + "default3.handlebars->117->2656"
6476 ]
6477 },
6478 {
@@ -6486,8 +6486,8 @@
6486 "pl": "Zapisy logowania tokenami użytkownika",
6487 "uk": "Записи токенів входу до акаунту",
6488 "xloc": [
6489 - "default.handlebars->119->3283",
6490 - "default3.handlebars->117->3273"
6489 + "default.handlebars->119->3285",
6490 + "default3.handlebars->117->3275"
6491 ]
6492 },
6493 {
@@ -6516,8 +6516,8 @@
6516 "zh-chs": "帐户登出",
6517 "zh-cht": "帳戶登出",
6518 "xloc": [
6519 - "default.handlebars->119->2552",
6520 - "default3.handlebars->117->2549"
6519 + "default.handlebars->119->2554",
6520 + "default3.handlebars->117->2551"
6521 ]
6522 },
6523 {
@@ -6577,8 +6577,8 @@
6577 "zh-chs": "帐户密码已更改:{0}",
6578 "zh-cht": "帳戶密碼已更改:{0}",
6579 "xloc": [
6580 - "default.handlebars->119->2624",
6581 - "default3.handlebars->117->2621"
6580 + "default.handlebars->119->2626",
6581 + "default3.handlebars->117->2623"
6582 ]
6583 },
6584 {
@@ -6607,8 +6607,8 @@
6607 "zh-chs": "帐户已删除",
6608 "zh-cht": "帳戶已刪除",
6609 "xloc": [
6610 - "default.handlebars->119->2613",
6611 - "default3.handlebars->117->2610"
6610 + "default.handlebars->119->2615",
6611 + "default3.handlebars->117->2612"
6612 ]
6613 },
6614 {
@@ -6667,10 +6667,10 @@
6667 "zh-chs": "指令",
6668 "zh-cht": "指令",
6669 "xloc": [
6670 - "default-mobile.handlebars->53->956",
6671 - "default.handlebars->119->1793",
6670 + "default-mobile.handlebars->53->958",
6671 + "default.handlebars->119->1795",
6672 "default.handlebars->container->column_l->p42->p42tbl->1->0->8",
6673 - "default3.handlebars->117->1776",
6673 + "default3.handlebars->117->1778",
6674 "default3.handlebars->container->column_l->p42->p42tbl->1->0->17"
6675 ]
6676 },
@@ -6860,8 +6860,8 @@
6860 "zh-chs": "如果ACM失败,则激活到CCM",
6861 "zh-cht": "如果ACM失敗,則激活到CCM",
6862 "xloc": [
6863 - "default.handlebars->119->2308",
6864 - "default3.handlebars->117->2302"
6863 + "default.handlebars->119->2310",
6864 + "default3.handlebars->117->2304"
6865 ]
6866 },
6867 {
@@ -6961,9 +6961,9 @@
6961 "zh-cht": "主動設備共享",
6962 "xloc": [
6963 "default.handlebars->119->1074",
6964 - "default.handlebars->119->2257",
6964 + "default.handlebars->119->2259",
6965 "default3.handlebars->117->1070",
6966 - "default3.handlebars->117->2253"
6966 + "default3.handlebars->117->2255"
6967 ]
6968 },
6969 {
@@ -6992,8 +6992,8 @@
6992 "zh-chs": "活动登录令牌",
6993 "zh-cht": "活動登錄令牌",
6994 "xloc": [
6995 - "default.handlebars->119->2145",
6996 - "default3.handlebars->117->2145"
6995 + "default.handlebars->119->2147",
6996 + "default3.handlebars->117->2147"
6997 ]
6998 },
6999 {
@@ -7196,9 +7196,9 @@
7196 "zh-chs": "添加代理",
7197 "zh-cht": "新增代理",
7198 "xloc": [
7199 - "default.handlebars->119->2247",
7199 + "default.handlebars->119->2249",
7200 "default.handlebars->119->502",
7201 - "default3.handlebars->117->2243",
7201 + "default3.handlebars->117->2245",
7202 "default3.handlebars->117->498"
7203 ]
7204 },
@@ -7254,13 +7254,13 @@
7254 "zh-chs": "添加设备",
7255 "zh-cht": "新增裝置",
7256 "xloc": [
7257 - "default.handlebars->119->2251",
7258 - "default.handlebars->119->2926",
7259 - "default.handlebars->119->3121",
7257 + "default.handlebars->119->2253",
7258 + "default.handlebars->119->2928",
7259 + "default.handlebars->119->3123",
7260 "default.handlebars->119->506",
7261 - "default3.handlebars->117->2247",
7262 - "default3.handlebars->117->2920",
7263 - "default3.handlebars->117->3109",
7261 + "default3.handlebars->117->2249",
7262 + "default3.handlebars->117->2922",
7263 + "default3.handlebars->117->3111",
7264 "default3.handlebars->117->502"
7265 ]
7266 },
@@ -7320,13 +7320,13 @@
7320 "zh-chs": "添加设备组",
7321 "zh-cht": "新增裝置群",
7322 "xloc": [
7323 - "default.handlebars->119->2396",
7324 - "default.handlebars->119->2920",
7325 - "default.handlebars->119->3109",
7323 + "default.handlebars->119->2398",
7324 + "default.handlebars->119->2922",
7325 + "default.handlebars->119->3111",
7326 "default.handlebars->119->402",
7327 - "default3.handlebars->117->2393",
7328 - "default3.handlebars->117->2914",
7329 - "default3.handlebars->117->3097",
7327 + "default3.handlebars->117->2395",
7328 + "default3.handlebars->117->2916",
7329 + "default3.handlebars->117->3099",
7330 "default3.handlebars->117->398"
7331 ]
7332 },
@@ -7356,8 +7356,8 @@
7356 "zh-chs": "添加设备组权限",
7357 "zh-cht": "新增裝置群權限",
7358 "xloc": [
7359 - "default.handlebars->119->2393",
7360 - "default3.handlebars->117->2390"
7359 + "default.handlebars->119->2395",
7360 + "default3.handlebars->117->2392"
7361 ]
7362 },
7363 {
@@ -7386,10 +7386,10 @@
7386 "zh-chs": "添加设备权限",
7387 "zh-cht": "新增裝置權限",
7388 "xloc": [
7389 - "default.handlebars->119->2398",
7389 "default.handlebars->119->2400",
7391 - "default3.handlebars->117->2395",
7392 - "default3.handlebars->117->2397"
7390 + "default.handlebars->119->2402",
7391 + "default3.handlebars->117->2397",
7392 + "default3.handlebars->117->2399"
7393 ]
7394 },
7395 {
@@ -7560,8 +7560,8 @@
7560 "zh-chs": "添加成员身份",
7561 "zh-cht": "新增成員身份",
7562 "xloc": [
7563 - "default.handlebars->119->3141",
7564 - "default3.handlebars->117->3129"
7563 + "default.handlebars->119->3143",
7564 + "default3.handlebars->117->3131"
7565 ]
7566 },
7567 {
@@ -7646,14 +7646,14 @@
7646 "zh-chs": "添加安全密钥",
7647 "zh-cht": "新增安全密鑰",
7648 "xloc": [
7649 - "default.handlebars->119->1860",
7650 - "default.handlebars->119->1861",
7649 + "default.handlebars->119->1862",
7650 + "default.handlebars->119->1863",
7651 "default.handlebars->119->256",
7652 "default.handlebars->119->258",
7653 "default.handlebars->119->261",
7654 "default.handlebars->119->263",
7655 - "default3.handlebars->117->1841",
7656 - "default3.handlebars->117->1842",
7655 + "default3.handlebars->117->1843",
7656 + "default3.handlebars->117->1844",
7657 "default3.handlebars->117->251",
7658 "default3.handlebars->117->253",
7659 "default3.handlebars->117->256",
@@ -7686,7 +7686,7 @@
7686 "zh-chs": "添加用户",
7687 "zh-cht": "新增用戶",
7688 "xloc": [
7689 - "default-mobile.handlebars->53->974",
7689 + "default-mobile.handlebars->53->976",
7690 "default.handlebars->119->1066",
7691 "default3.handlebars->117->1062"
7692 ]
@@ -7717,8 +7717,8 @@
7717 "zh-chs": "添加用户设备权限",
7718 "zh-cht": "新增用戶裝置權限",
7719 "xloc": [
7720 - "default.handlebars->119->2403",
7721 - "default3.handlebars->117->2400"
7720 + "default.handlebars->119->2405",
7721 + "default3.handlebars->117->2402"
7722 ]
7723 },
7724 {
@@ -7748,13 +7748,13 @@
7748 "zh-cht": "新增用戶群",
7749 "xloc": [
7750 "default.handlebars->119->1067",
7751 - "default.handlebars->119->2241",
7752 - "default.handlebars->119->2395",
7753 - "default.handlebars->119->3115",
7751 + "default.handlebars->119->2243",
7752 + "default.handlebars->119->2397",
7753 + "default.handlebars->119->3117",
7754 "default3.handlebars->117->1063",
7755 - "default3.handlebars->117->2237",
7756 - "default3.handlebars->117->2392",
7757 - "default3.handlebars->117->3103"
7755 + "default3.handlebars->117->2239",
7756 + "default3.handlebars->117->2394",
7757 + "default3.handlebars->117->3105"
7758 ]
7759 },
7760 {
@@ -7783,8 +7783,8 @@
7783 "zh-chs": "添加用户组设备权限",
7784 "zh-cht": "新增用戶群裝置權限",
7785 "xloc": [
7786 - "default.handlebars->119->2405",
7787 - "default3.handlebars->117->2402"
7786 + "default.handlebars->119->2407",
7787 + "default3.handlebars->117->2404"
7788 ]
7789 },
7790 {
@@ -7813,7 +7813,7 @@
7813 "zh-chs": "将用户添加到设备组",
7814 "zh-cht": "將用戶新增到裝置群",
7815 "xloc": [
7816 - "default-mobile.handlebars->53->1015"
7816 + "default-mobile.handlebars->53->1017"
7817 ]
7818 },
7819 {
@@ -7868,10 +7868,10 @@
7868 "zh-chs": "添加用户",
7869 "zh-cht": "新增用戶",
7870 "xloc": [
7871 - "default.handlebars->119->2240",
7872 - "default.handlebars->119->2915",
7873 - "default3.handlebars->117->2236",
7874 - "default3.handlebars->117->2909"
7871 + "default.handlebars->119->2242",
7872 + "default.handlebars->119->2917",
7873 + "default3.handlebars->117->2238",
7874 + "default3.handlebars->117->2911"
7875 ]
7876 },
7877 {
@@ -7900,8 +7900,8 @@
7900 "zh-chs": "将用户添加到设备组",
7901 "zh-cht": "將用戶新增到裝置群",
7902 "xloc": [
7903 - "default.handlebars->119->2392",
7904 - "default3.handlebars->117->2389"
7903 + "default.handlebars->119->2394",
7904 + "default3.handlebars->117->2391"
7905 ]
7906 },
7907 {
@@ -7930,8 +7930,8 @@
7930 "zh-chs": "将用户添加到用户组",
7931 "zh-cht": "將用戶新增到用戶群",
7932 "xloc": [
7933 - "default.handlebars->119->2950",
7934 - "default3.handlebars->117->2944"
7933 + "default.handlebars->119->2952",
7934 + "default3.handlebars->117->2946"
7935 ]
7936 },
7937 {
@@ -8136,9 +8136,9 @@
8136 "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
8137 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
8138 "xloc": [
8139 - "default.handlebars->119->2246",
8139 + "default.handlebars->119->2248",
8140 "default.handlebars->119->501",
8141 - "default3.handlebars->117->2242",
8141 + "default3.handlebars->117->2244",
8142 "default3.handlebars->117->497"
8143 ]
8144 },
@@ -8168,9 +8168,9 @@
8168 "zh-chs": "添加位于本地网络上的设备。",
8169 "zh-cht": "添加位於本地網絡上的設備。",
8170 "xloc": [
8171 - "default.handlebars->119->2250",
8171 + "default.handlebars->119->2252",
8172 "default.handlebars->119->505",
8173 - "default3.handlebars->117->2246",
8173 + "default3.handlebars->117->2248",
8174 "default3.handlebars->117->501"
8175 ]
8176 },
@@ -8290,8 +8290,8 @@
8290 "zh-chs": "添加了身份验证应用程序",
8291 "zh-cht": "添加了身份驗證應用程序",
8292 "xloc": [
8293 - "default.handlebars->119->2640",
8294 - "default3.handlebars->117->2637"
8293 + "default.handlebars->119->2642",
8294 + "default3.handlebars->117->2639"
8295 ]
8296 },
8297 {
@@ -8320,8 +8320,8 @@
8320 "zh-chs": "已将设备共享{0}从{1}添加到{2}",
8321 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
8322 "xloc": [
8323 - "default.handlebars->119->2651",
8324 - "default3.handlebars->117->2648"
8323 + "default.handlebars->119->2653",
8324 + "default3.handlebars->117->2650"
8325 ]
8326 },
8327 {
@@ -8350,8 +8350,8 @@
8350 "zh-chs": "添加了每天重复的设备共享 {0}。",
8351 "zh-cht": "添加了每天重複的設備共享 {0}。",
8352 "xloc": [
8353 - "default.handlebars->119->2688",
8354 - "default3.handlebars->117->2685"
8353 + "default.handlebars->119->2690",
8354 + "default3.handlebars->117->2687"
8355 ]
8356 },
8357 {
@@ -8380,8 +8380,8 @@
8380 "zh-chs": "添加了每周重复的设备共享 {0}。",
8381 "zh-cht": "添加了每週重複的設備共享 {0}。",
8382 "xloc": [
8383 - "default.handlebars->119->2689",
8384 - "default3.handlebars->117->2686"
8383 + "default.handlebars->119->2691",
8384 + "default3.handlebars->117->2688"
8385 ]
8386 },
8387 {
@@ -8410,8 +8410,8 @@
8410 "zh-chs": "添加了无限时间的设备共享 {0}。",
8411 "zh-cht": "添加了無限時間的設備共享 {0}。",
8412 "xloc": [
8413 - "default.handlebars->119->2681",
8414 - "default3.handlebars->117->2678"
8413 + "default.handlebars->119->2683",
8414 + "default3.handlebars->117->2680"
8415 ]
8416 },
8417 {
@@ -8440,10 +8440,10 @@
8440 "zh-chs": "已将设备{0}添加到设备组{1}",
8441 "zh-cht": "已將設備{0}添加到設備組{1}",
8442 "xloc": [
8443 - "default.handlebars->119->2607",
8444 - "default.handlebars->119->2634",
8445 - "default3.handlebars->117->2604",
8446 - "default3.handlebars->117->2631"
8443 + "default.handlebars->119->2609",
8444 + "default.handlebars->119->2636",
8445 + "default3.handlebars->117->2606",
8446 + "default3.handlebars->117->2633"
8447 ]
8448 },
8449 {
@@ -8472,8 +8472,8 @@
8472 "zh-chs": "添加登录令牌",
8473 "zh-cht": "添加了登錄令牌",
8474 "xloc": [
8475 - "default.handlebars->119->2665",
8476 - "default3.handlebars->117->2662"
8475 + "default.handlebars->119->2667",
8476 + "default3.handlebars->117->2664"
8477 ]
8478 },
8479 {
@@ -8502,8 +8502,8 @@
8502 "zh-chs": "新增推送通知认证装置",
8503 "zh-cht": "增加推送通知認證設備",
8504 "xloc": [
8505 - "default.handlebars->119->2663",
8506 - "default3.handlebars->117->2660"
8505 + "default.handlebars->119->2665",
8506 + "default3.handlebars->117->2662"
8507 ]
8508 },
8509 {
@@ -8532,8 +8532,8 @@
8532 "zh-chs": "添加了安全密钥",
8533 "zh-cht": "添加了安全密鑰",
8534 "xloc": [
8535 - "default.handlebars->119->2645",
8536 - "default3.handlebars->117->2642"
8535 + "default.handlebars->119->2647",
8536 + "default3.handlebars->117->2644"
8537 ]
8538 },
8539 {
@@ -8562,8 +8562,8 @@
8562 "zh-chs": "已将用户组{0}添加到设备组{1}",
8563 "zh-cht": "已將用戶組{0}添加到設備組{1}",
8564 "xloc": [
8565 - "default.handlebars->119->2618",
8566 - "default3.handlebars->117->2615"
8565 + "default.handlebars->119->2620",
8566 + "default3.handlebars->117->2617"
8567 ]
8568 },
8569 {
@@ -8592,10 +8592,10 @@
8592 "zh-chs": "已将用户{0}添加到用户组{1}",
8593 "zh-cht": "已將用戶{0}添加到用戶組{1}",
8594 "xloc": [
8595 - "default.handlebars->119->2621",
8596 - "default.handlebars->119->2630",
8597 - "default3.handlebars->117->2618",
8598 - "default3.handlebars->117->2627"
8595 + "default.handlebars->119->2623",
8596 + "default.handlebars->119->2632",
8597 + "default3.handlebars->117->2620",
8598 + "default3.handlebars->117->2629"
8599 ]
8600 },
8601 {
@@ -8745,15 +8745,15 @@
8745 "zh-chs": "管理员PowerShell",
8746 "zh-cht": "管理員PowerShell",
8747 "xloc": [
8748 - "default.handlebars->119->3161",
8749 - "default.handlebars->119->3171",
8750 - "default.handlebars->119->3237",
8751 - "default.handlebars->119->3290",
8748 + "default.handlebars->119->3163",
8749 + "default.handlebars->119->3173",
8750 + "default.handlebars->119->3239",
8751 + "default.handlebars->119->3292",
8752 "default.handlebars->termShellContextMenu->3",
8753 - "default3.handlebars->117->3151",
8754 - "default3.handlebars->117->3161",
8755 - "default3.handlebars->117->3227",
8756 - "default3.handlebars->117->3280",
8753 + "default3.handlebars->117->3153",
8754 + "default3.handlebars->117->3163",
8755 + "default3.handlebars->117->3229",
8756 + "default3.handlebars->117->3282",
8757 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->3->0",
8758 "player.handlebars->29->29",
8759 "xterm.handlebars->termShellContextMenu->cxtermps"
@@ -8785,8 +8785,8 @@
8785 "zh-chs": "管理领域",
8786 "zh-cht": "管理領域",
8787 "xloc": [
8788 - "default.handlebars->119->3002",
8789 - "default3.handlebars->117->2996"
8788 + "default.handlebars->119->3004",
8789 + "default3.handlebars->117->2998"
8790 ]
8791 },
8792 {
@@ -8846,8 +8846,8 @@
8846 "zh-chs": "管理领域",
8847 "zh-cht": "管理領域",
8848 "xloc": [
8849 - "default.handlebars->119->2847",
8850 - "default3.handlebars->117->2841"
8849 + "default.handlebars->119->2849",
8850 + "default3.handlebars->117->2843"
8851 ]
8852 },
8853 {
@@ -8876,8 +8876,8 @@
8876 "zh-chs": "管理员",
8877 "zh-cht": "管理員",
8878 "xloc": [
8879 - "default.handlebars->119->2765",
8880 - "default3.handlebars->117->2762"
8879 + "default.handlebars->119->2767",
8880 + "default3.handlebars->117->2764"
8881 ]
8882 },
8883 {
@@ -8907,8 +8907,8 @@
8907 "zh-cht": "南非文",
8908 "xloc": [
8909 "default-mobile.handlebars->53->115",
8910 - "default.handlebars->119->1863",
8911 - "default3.handlebars->117->1844",
8910 + "default.handlebars->119->1865",
8911 + "default3.handlebars->117->1846",
8912 "login2.handlebars->17->1"
8913 ]
8914 },
@@ -8942,16 +8942,16 @@
8942 "default-mobile.handlebars->53->460",
8943 "default-mobile.handlebars->53->517",
8944 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8945 - "default.handlebars->119->2476",
8946 - "default.handlebars->119->2489",
8947 - "default.handlebars->119->3388",
8945 + "default.handlebars->119->2478",
8946 + "default.handlebars->119->2491",
8947 + "default.handlebars->119->3390",
8948 "default.handlebars->119->422",
8949 "default.handlebars->119->729",
8950 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8951 "default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm",
8952 - "default3.handlebars->117->2473",
8953 - "default3.handlebars->117->2486",
8954 - "default3.handlebars->117->3378",
8952 + "default3.handlebars->117->2475",
8953 + "default3.handlebars->117->2488",
8954 + "default3.handlebars->117->3380",
8955 "default3.handlebars->117->418",
8956 "default3.handlebars->117->725",
8957 "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
@@ -8984,10 +8984,10 @@
8984 "zh-chs": "代理+英特尔AMT",
8985 "zh-cht": "代理+Intel&reg; AMT",
8986 "xloc": [
8987 - "default.handlebars->119->2478",
8988 - "default.handlebars->119->2491",
8989 - "default3.handlebars->117->2475",
8990 - "default3.handlebars->117->2488"
8987 + "default.handlebars->119->2480",
8988 + "default.handlebars->119->2493",
8989 + "default3.handlebars->117->2477",
8990 + "default3.handlebars->117->2490"
8991 ]
8992 },
8993 {
@@ -9047,11 +9047,11 @@
9047 "zh-chs": "代理控制台",
9048 "zh-cht": "代理控制台",
9049 "xloc": [
9050 - "default-mobile.handlebars->53->1021",
9050 + "default-mobile.handlebars->53->1023",
9051 "default-mobile.handlebars->53->599",
9052 - "default.handlebars->119->2413",
9052 + "default.handlebars->119->2415",
9053 "default.handlebars->119->819",
9054 - "default3.handlebars->117->2410",
9054 + "default3.handlebars->117->2412",
9055 "default3.handlebars->117->815"
9056 ]
9057 },
@@ -9081,8 +9081,8 @@
9081 "zh-chs": "代理错误计数器",
9082 "zh-cht": "代理錯誤計數器",
9083 "xloc": [
9084 - "default.handlebars->119->3356",
9085 - "default3.handlebars->117->3346"
9084 + "default.handlebars->119->3358",
9085 + "default3.handlebars->117->3348"
9086 ]
9087 },
9088 {
@@ -9305,9 +9305,9 @@
9305 "zh-cht": "代理自行共享",
9306 "xloc": [
9307 "default.handlebars->119->1095",
9308 - "default.handlebars->119->2278",
9308 + "default.handlebars->119->2280",
9309 "default3.handlebars->117->1091",
9310 - "default3.handlebars->117->2274"
9310 + "default3.handlebars->117->2276"
9311 ]
9312 },
9313 {
@@ -9336,8 +9336,8 @@
9336 "zh-chs": "代理会话",
9337 "zh-cht": "代理時段",
9338 "xloc": [
9339 - "default.handlebars->119->3373",
9340 - "default3.handlebars->117->3363"
9339 + "default.handlebars->119->3375",
9340 + "default3.handlebars->117->3365"
9341 ]
9342 },
9343 {
@@ -9455,9 +9455,9 @@
9455 "zh-chs": "代理类型",
9456 "zh-cht": "代理類型",
9457 "xloc": [
9458 - "default.handlebars->119->2487",
9458 + "default.handlebars->119->2489",
9459 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1",
9460 - "default3.handlebars->117->2484",
9460 + "default3.handlebars->117->2486",
9461 "default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
9462 ]
9463 },
@@ -9519,8 +9519,8 @@
9519 "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
9520 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
9521 "xloc": [
9522 - "default.handlebars->119->2604",
9523 - "default3.handlebars->117->2601"
9522 + "default.handlebars->119->2606",
9523 + "default3.handlebars->117->2603"
9524 ]
9525 },
9526 {
@@ -9751,9 +9751,9 @@
9751 "zh-chs": "代理离线",
9752 "zh-cht": "代理離線",
9753 "xloc": [
9754 - "default-mobile.handlebars->53->939",
9755 - "default.handlebars->119->1776",
9756 - "default3.handlebars->117->1759"
9754 + "default-mobile.handlebars->53->941",
9755 + "default.handlebars->119->1778",
9756 + "default3.handlebars->117->1761"
9757 ]
9758 },
9759 {
@@ -9782,9 +9782,9 @@
9782 "zh-chs": "代理在线",
9783 "zh-cht": "代理在線",
9784 "xloc": [
9785 - "default-mobile.handlebars->53->938",
9786 - "default.handlebars->119->1775",
9787 - "default3.handlebars->117->1758"
9785 + "default-mobile.handlebars->53->940",
9786 + "default.handlebars->119->1777",
9787 + "default3.handlebars->117->1760"
9788 ]
9789 },
9790 {
@@ -10025,11 +10025,11 @@
10025 "zh-chs": "代理",
10026 "zh-cht": "代理",
10027 "xloc": [
10028 - "default.handlebars->119->2444",
10029 - "default.handlebars->119->3401",
10028 + "default.handlebars->119->2446",
10029 + "default.handlebars->119->3403",
10030 "default.handlebars->119->589",
10031 - "default3.handlebars->117->2441",
10032 - "default3.handlebars->117->3391",
10031 + "default3.handlebars->117->2443",
10032 + "default3.handlebars->117->3393",
10033 "default3.handlebars->117->585"
10034 ]
10035 },
@@ -10060,8 +10060,8 @@
10060 "zh-cht": "阿爾巴尼亞文",
10061 "xloc": [
10062 "default-mobile.handlebars->53->116",
10063 - "default.handlebars->119->1864",
10064 - "default3.handlebars->117->1845",
10063 + "default.handlebars->119->1866",
10064 + "default3.handlebars->117->1847",
10065 "login2.handlebars->17->2"
10066 ]
10067 },
@@ -10107,9 +10107,9 @@
10107 "default-mobile.handlebars->53->374",
10108 "default-mobile.handlebars->53->701",
10109 "default-mobile.handlebars->53->703",
10110 - "default.handlebars->119->3205",
10110 + "default.handlebars->119->3207",
10111 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1",
10112 - "default3.handlebars->117->3195",
10112 + "default3.handlebars->117->3197",
10113 "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1",
10114 "sharing-mobile.handlebars->53->80",
10115 "sharing-mobile.handlebars->53->82"
@@ -10141,8 +10141,8 @@
10141 "zh-chs": "全部可用",
10142 "zh-cht": "全部可用",
10143 "xloc": [
10144 - "default.handlebars->119->2727",
10145 - "default3.handlebars->117->2724"
10144 + "default.handlebars->119->2729",
10145 + "default3.handlebars->117->2726"
10146 ]
10147 },
10148 {
@@ -10171,9 +10171,9 @@
10171 "zh-chs": "所有可用的代理",
10172 "zh-cht": "所有可用的代理",
10173 "xloc": [
10174 - "default.handlebars->119->2445",
10174 + "default.handlebars->119->2447",
10175 "default.handlebars->119->590",
10176 - "default3.handlebars->117->2442",
10176 + "default3.handlebars->117->2444",
10177 "default3.handlebars->117->586"
10178 ]
10179 },
@@ -10233,8 +10233,8 @@
10233 "zh-chs": "所有事件",
10234 "zh-cht": "所有事件",
10235 "xloc": [
10236 - "default.handlebars->119->2725",
10237 - "default3.handlebars->117->2722"
10236 + "default.handlebars->119->2727",
10237 + "default3.handlebars->117->2724"
10238 ]
10239 },
10240 {
@@ -10309,7 +10309,7 @@
10309 "zh-chs": "所有主题",
10310 "zh-cht": "所有主題",
10311 "xloc": [
10312 - "default3.handlebars->117->2113"
10312 + "default3.handlebars->117->2115"
10313 ]
10314 },
10315 {
@@ -10344,8 +10344,8 @@
10344 {
10345 "en": "Allow to override server device name until next connection",
10346 "xloc": [
10347 - "default.handlebars->119->2350",
10348 - "default3.handlebars->117->2347"
10347 + "default.handlebars->119->2352",
10348 + "default3.handlebars->117->2349"
10349 ]
10350 },
10351 {
@@ -10374,10 +10374,10 @@
10374 "zh-chs": "允许用户管理此设备组和该组中的设备。",
10375 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
10376 "xloc": [
10377 - "default.handlebars->119->2357",
10378 - "default.handlebars->119->2947",
10379 - "default3.handlebars->117->2354",
10380 - "default3.handlebars->117->2941"
10377 + "default.handlebars->119->2359",
10378 + "default.handlebars->119->2949",
10379 + "default3.handlebars->117->2356",
10380 + "default3.handlebars->117->2943"
10381 ]
10382 },
10383 {
@@ -10406,8 +10406,8 @@
10406 "zh-chs": "允许用户管理此设备。",
10407 "zh-cht": "允許用戶管理此裝置。",
10408 "xloc": [
10409 - "default.handlebars->119->2358",
10410 - "default3.handlebars->117->2355"
10409 + "default.handlebars->119->2360",
10410 + "default3.handlebars->117->2357"
10411 ]
10412 },
10413 {
@@ -10749,13 +10749,13 @@
10749 "zh-chs": "一直通知",
10750 "zh-cht": "一直通知",
10751 "xloc": [
10752 - "default.handlebars->119->2217",
10753 - "default.handlebars->119->2906",
10754 - "default.handlebars->119->3011",
10752 + "default.handlebars->119->2219",
10753 + "default.handlebars->119->2908",
10754 + "default.handlebars->119->3013",
10755 "default.handlebars->119->961",
10756 - "default3.handlebars->117->2213",
10757 - "default3.handlebars->117->2900",
10758 - "default3.handlebars->117->3005",
10756 + "default3.handlebars->117->2215",
10757 + "default3.handlebars->117->2902",
10758 + "default3.handlebars->117->3007",
10759 "default3.handlebars->117->957"
10760 ]
10761 },
@@ -10785,13 +10785,13 @@
10785 "zh-chs": "一直提示",
10786 "zh-cht": "一直提示",
10787 "xloc": [
10788 - "default.handlebars->119->2218",
10789 - "default.handlebars->119->2907",
10790 - "default.handlebars->119->3012",
10788 + "default.handlebars->119->2220",
10789 + "default.handlebars->119->2909",
10790 + "default.handlebars->119->3014",
10791 "default.handlebars->119->962",
10792 - "default3.handlebars->117->2214",
10793 - "default3.handlebars->117->2901",
10794 - "default3.handlebars->117->3006",
10792 + "default3.handlebars->117->2216",
10793 + "default3.handlebars->117->2903",
10794 + "default3.handlebars->117->3008",
10795 "default3.handlebars->117->958"
10796 ]
10797 },
@@ -10899,8 +10899,8 @@
10899 "pl": "Wystąpił nieznany błąd.",
10900 "uk": "Сталася невідома помилка.",
10901 "xloc": [
10902 - "default.handlebars->119->3150",
10903 - "default3.handlebars->117->3140"
10902 + "default.handlebars->119->3152",
10903 + "default3.handlebars->117->3142"
10904 ]
10905 },
10906 {
@@ -10965,7 +10965,7 @@
10965 "zh-chs": "Android APK",
10966 "zh-cht": "Android APK",
10967 "xloc": [
10968 - "default-mobile.handlebars->53->993",
10968 + "default-mobile.handlebars->53->995",
10969 "default.handlebars->119->658",
10970 "default3.handlebars->117->654"
10971 ]
@@ -11051,7 +11051,7 @@
11051 "zh-chs": "安卓安装",
11052 "zh-cht": "安卓安裝",
11053 "xloc": [
11054 - "default-mobile.handlebars->53->995"
11054 + "default-mobile.handlebars->53->997"
11055 ]
11056 },
11057 {
@@ -11132,10 +11132,10 @@
11132 "zh-chs": "杀毒软件未激活",
11133 "zh-cht": "殺毒軟件未激活",
11134 "xloc": [
11135 - "default.handlebars->119->2480",
11136 - "default.handlebars->119->2494",
11137 - "default3.handlebars->117->2477",
11138 - "default3.handlebars->117->2491"
11135 + "default.handlebars->119->2482",
11136 + "default.handlebars->119->2496",
11137 + "default3.handlebars->117->2479",
11138 + "default3.handlebars->117->2493"
11139 ]
11140 },
11141 {
@@ -11579,8 +11579,8 @@
11579 "zh-cht": "阿拉伯文(阿爾及利亞)",
11580 "xloc": [
11581 "default-mobile.handlebars->53->118",
11582 - "default.handlebars->119->1866",
11583 - "default3.handlebars->117->1847",
11582 + "default.handlebars->119->1868",
11583 + "default3.handlebars->117->1849",
11584 "login2.handlebars->17->4"
11585 ]
11586 },
@@ -11611,8 +11611,8 @@
11611 "zh-cht": "阿拉伯文(巴林)",
11612 "xloc": [
11613 "default-mobile.handlebars->53->119",
11614 - "default.handlebars->119->1867",
11615 - "default3.handlebars->117->1848",
11614 + "default.handlebars->119->1869",
11615 + "default3.handlebars->117->1850",
11616 "login2.handlebars->17->5"
11617 ]
11618 },
@@ -11643,8 +11643,8 @@
11643 "zh-cht": "阿拉伯文(埃及)",
11644 "xloc": [
11645 "default-mobile.handlebars->53->120",
11646 - "default.handlebars->119->1868",
11647 - "default3.handlebars->117->1849",
11646 + "default.handlebars->119->1870",
11647 + "default3.handlebars->117->1851",
11648 "login2.handlebars->17->6"
11649 ]
11650 },
@@ -11675,8 +11675,8 @@
11675 "zh-cht": "阿拉伯文(伊拉克)",
11676 "xloc": [
11677 "default-mobile.handlebars->53->121",
11678 - "default.handlebars->119->1869",
11679 - "default3.handlebars->117->1850",
11678 + "default.handlebars->119->1871",
11679 + "default3.handlebars->117->1852",
11680 "login2.handlebars->17->7"
11681 ]
11682 },
@@ -11707,8 +11707,8 @@
11707 "zh-cht": "阿拉伯文(約旦)",
11708 "xloc": [
11709 "default-mobile.handlebars->53->122",
11710 - "default.handlebars->119->1870",
11711 - "default3.handlebars->117->1851",
11710 + "default.handlebars->119->1872",
11711 + "default3.handlebars->117->1853",
11712 "login2.handlebars->17->8"
11713 ]
11714 },
@@ -11739,8 +11739,8 @@
11739 "zh-cht": "阿拉伯文(科威特)",
11740 "xloc": [
11741 "default-mobile.handlebars->53->123",
11742 - "default.handlebars->119->1871",
11743 - "default3.handlebars->117->1852",
11742 + "default.handlebars->119->1873",
11743 + "default3.handlebars->117->1854",
11744 "login2.handlebars->17->9"
11745 ]
11746 },
@@ -11771,8 +11771,8 @@
11771 "zh-cht": "阿拉伯文(黎巴嫩)",
11772 "xloc": [
11773 "default-mobile.handlebars->53->124",
11774 - "default.handlebars->119->1872",
11775 - "default3.handlebars->117->1853",
11774 + "default.handlebars->119->1874",
11775 + "default3.handlebars->117->1855",
11776 "login2.handlebars->17->10"
11777 ]
11778 },
@@ -11803,8 +11803,8 @@
11803 "zh-cht": "阿拉伯文(利比亞)",
11804 "xloc": [
11805 "default-mobile.handlebars->53->125",
11806 - "default.handlebars->119->1873",
11807 - "default3.handlebars->117->1854",
11806 + "default.handlebars->119->1875",
11807 + "default3.handlebars->117->1856",
11808 "login2.handlebars->17->11"
11809 ]
11810 },
@@ -11835,8 +11835,8 @@
11835 "zh-cht": "阿拉伯文(摩洛哥)",
11836 "xloc": [
11837 "default-mobile.handlebars->53->126",
11838 - "default.handlebars->119->1874",
11839 - "default3.handlebars->117->1855",
11838 + "default.handlebars->119->1876",
11839 + "default3.handlebars->117->1857",
11840 "login2.handlebars->17->12"
11841 ]
11842 },
@@ -11867,8 +11867,8 @@
11867 "zh-cht": "阿拉伯文(阿曼)",
11868 "xloc": [
11869 "default-mobile.handlebars->53->127",
11870 - "default.handlebars->119->1875",
11871 - "default3.handlebars->117->1856",
11870 + "default.handlebars->119->1877",
11871 + "default3.handlebars->117->1858",
11872 "login2.handlebars->17->13"
11873 ]
11874 },
@@ -11899,8 +11899,8 @@
11899 "zh-cht": "阿拉伯文(卡塔爾)",
11900 "xloc": [
11901 "default-mobile.handlebars->53->128",
11902 - "default.handlebars->119->1876",
11903 - "default3.handlebars->117->1857",
11902 + "default.handlebars->119->1878",
11903 + "default3.handlebars->117->1859",
11904 "login2.handlebars->17->14"
11905 ]
11906 },
@@ -11931,8 +11931,8 @@
11931 "zh-cht": "阿拉伯文(沙特阿拉伯)",
11932 "xloc": [
11933 "default-mobile.handlebars->53->129",
11934 - "default.handlebars->119->1877",
11935 - "default3.handlebars->117->1858",
11934 + "default.handlebars->119->1879",
11935 + "default3.handlebars->117->1860",
11936 "login2.handlebars->17->15"
11937 ]
11938 },
@@ -11963,8 +11963,8 @@
11963 "zh-cht": "阿拉伯文(標準)",
11964 "xloc": [
11965 "default-mobile.handlebars->53->117",
11966 - "default.handlebars->119->1865",
11967 - "default3.handlebars->117->1846",
11966 + "default.handlebars->119->1867",
11967 + "default3.handlebars->117->1848",
11968 "login2.handlebars->17->3"
11969 ]
11970 },
@@ -11995,8 +11995,8 @@
11995 "zh-cht": "阿拉伯文(敘利亞)",
11996 "xloc": [
11997 "default-mobile.handlebars->53->130",
11998 - "default.handlebars->119->1878",
11999 - "default3.handlebars->117->1859",
11998 + "default.handlebars->119->1880",
11999 + "default3.handlebars->117->1861",
12000 "login2.handlebars->17->16"
12001 ]
12002 },
@@ -12027,8 +12027,8 @@
12027 "zh-cht": "阿拉伯文(突尼斯)",
12028 "xloc": [
12029 "default-mobile.handlebars->53->131",
12030 - "default.handlebars->119->1879",
12031 - "default3.handlebars->117->1860",
12030 + "default.handlebars->119->1881",
12031 + "default3.handlebars->117->1862",
12032 "login2.handlebars->17->17"
12033 ]
12034 },
@@ -12059,8 +12059,8 @@
12059 "zh-cht": "阿拉伯文(阿聯酋)",
12060 "xloc": [
12061 "default-mobile.handlebars->53->132",
12062 - "default.handlebars->119->1880",
12063 - "default3.handlebars->117->1861",
12062 + "default.handlebars->119->1882",
12063 + "default3.handlebars->117->1863",
12064 "login2.handlebars->17->18"
12065 ]
12066 },
@@ -12091,8 +12091,8 @@
12091 "zh-cht": "阿拉伯文(也門)",
12092 "xloc": [
12093 "default-mobile.handlebars->53->133",
12094 - "default.handlebars->119->1881",
12095 - "default3.handlebars->117->1862",
12094 + "default.handlebars->119->1883",
12095 + "default3.handlebars->117->1864",
12096 "login2.handlebars->17->19"
12097 ]
12098 },
@@ -12123,8 +12123,8 @@
12123 "zh-cht": "阿拉貢文",
12124 "xloc": [
12125 "default-mobile.handlebars->53->134",
12126 - "default.handlebars->119->1882",
12127 - "default3.handlebars->117->1863",
12126 + "default.handlebars->119->1884",
12127 + "default3.handlebars->117->1865",
12128 "login2.handlebars->17->20"
12129 ]
12130 },
@@ -12221,9 +12221,9 @@
12221 "zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
12222 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
12223 "xloc": [
12224 - "default-mobile.handlebars->53->981",
12225 - "default.handlebars->119->2322",
12226 - "default3.handlebars->117->2316"
12224 + "default-mobile.handlebars->53->983",
12225 + "default.handlebars->119->2324",
12226 + "default3.handlebars->117->2318"
12227 ]
12228 },
12229 {
@@ -12356,8 +12356,8 @@
12356 "zh-chs": "您确定要{0}插件吗:{1}",
12357 "zh-cht": "你確定要{0}外掛嗎:{1}",
12358 "xloc": [
12359 - "default.handlebars->119->3454",
12360 - "default3.handlebars->117->3444"
12359 + "default.handlebars->119->3456",
12360 + "default3.handlebars->117->3446"
12361 ]
12362 },
12363 {
@@ -12418,8 +12418,8 @@
12418 "zh-cht": "亞美尼亞文",
12419 "xloc": [
12420 "default-mobile.handlebars->53->135",
12421 - "default.handlebars->119->1883",
12422 - "default3.handlebars->117->1864",
12421 + "default.handlebars->119->1885",
12422 + "default3.handlebars->117->1866",
12423 "login2.handlebars->17->21"
12424 ]
12425 },
@@ -12632,8 +12632,8 @@
12632 "zh-cht": "阿薩姆文",
12633 "xloc": [
12634 "default-mobile.handlebars->53->136",
12635 - "default.handlebars->119->1884",
12636 - "default3.handlebars->117->1865",
12635 + "default.handlebars->119->1886",
12636 + "default3.handlebars->117->1867",
12637 "login2.handlebars->17->22"
12638 ]
12639 },
@@ -12812,8 +12812,8 @@
12812 "zh-cht": "阿斯圖里亞斯文",
12813 "xloc": [
12814 "default-mobile.handlebars->53->137",
12815 - "default.handlebars->119->1885",
12816 - "default3.handlebars->117->1866",
12815 + "default.handlebars->119->1887",
12816 + "default3.handlebars->117->1868",
12817 "login2.handlebars->17->23"
12818 ]
12819 },
@@ -12843,8 +12843,8 @@
12843 "zh-chs": "尝试激活英特尔(R)AMT ACM模式",
12844 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
12845 "xloc": [
12846 - "default.handlebars->119->2573",
12847 - "default3.handlebars->117->2570"
12846 + "default.handlebars->119->2575",
12847 + "default3.handlebars->117->2572"
12848 ]
12849 },
12850 {
@@ -12944,8 +12944,8 @@
12944 "zh-chs": "认证软件",
12945 "zh-cht": "認證軟體",
12946 "xloc": [
12947 - "default.handlebars->119->3015",
12948 - "default3.handlebars->117->3009"
12947 + "default.handlebars->119->3017",
12948 + "default3.handlebars->117->3011"
12949 ]
12950 },
12951 {
@@ -12974,12 +12974,12 @@
12974 "zh-chs": "认证设备",
12975 "zh-cht": "認證設備",
12976 "xloc": [
12977 - "default.handlebars->119->1846",
12977 "default.handlebars->119->1848",
12979 - "default.handlebars->119->1852",
12980 - "default3.handlebars->117->1828",
12978 + "default.handlebars->119->1850",
12979 + "default.handlebars->119->1854",
12980 "default3.handlebars->117->1830",
12982 - "default3.handlebars->117->1833"
12981 + "default3.handlebars->117->1832",
12982 + "default3.handlebars->117->1835"
12983 ]
12984 },
12985 {
@@ -13048,12 +13048,12 @@
13048 "default-mobile.handlebars->53->322",
13049 "default-mobile.handlebars->53->75",
13050 "default-mobile.handlebars->53->80",
13051 - "default.handlebars->119->1842",
13051 "default.handlebars->119->1844",
13052 + "default.handlebars->119->1846",
13053 "default.handlebars->119->230",
13054 "default.handlebars->119->235",
13055 - "default3.handlebars->117->1824",
13055 "default3.handlebars->117->1826",
13056 + "default3.handlebars->117->1828",
13057 "default3.handlebars->117->227",
13058 "default3.handlebars->117->232"
13059 ]
@@ -13205,10 +13205,10 @@
13205 "zh-chs": "自动删除",
13206 "zh-cht": "自動刪除",
13207 "xloc": [
13208 - "default.handlebars->119->2200",
13209 - "default.handlebars->119->2718",
13210 - "default3.handlebars->117->2196",
13211 - "default3.handlebars->117->2715"
13208 + "default.handlebars->119->2202",
13209 + "default.handlebars->119->2720",
13210 + "default3.handlebars->117->2198",
13211 + "default3.handlebars->117->2717"
13212 ]
13213 },
13214 {
@@ -13274,8 +13274,8 @@
13274 "zh-chs": "自动下载代理程序核心转储文件:“{0}”",
13275 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
13276 "xloc": [
13277 - "default.handlebars->119->2654",
13278 - "default3.handlebars->117->2651"
13277 + "default.handlebars->119->2656",
13278 + "default3.handlebars->117->2653"
13279 ]
13280 },
13281 {
@@ -13392,8 +13392,8 @@
13392 "zh-chs": "自动移除非活动设备",
13393 "zh-cht": "自動移除非活動設備",
13394 "xloc": [
13395 - "default.handlebars->119->2352",
13396 - "default3.handlebars->117->2349"
13395 + "default.handlebars->119->2354",
13396 + "default3.handlebars->117->2351"
13397 ]
13398 },
13399 {
@@ -13422,8 +13422,8 @@
13422 "zh-chs": "可用內存",
13423 "zh-cht": "可用內存",
13424 "xloc": [
13425 - "default.handlebars->119->3382",
13426 - "default3.handlebars->117->3372"
13425 + "default.handlebars->119->3384",
13426 + "default3.handlebars->117->3374"
13427 ]
13428 },
13429 {
@@ -13453,8 +13453,8 @@
13453 "zh-cht": "阿塞拜疆文",
13454 "xloc": [
13455 "default-mobile.handlebars->53->138",
13456 - "default.handlebars->119->1886",
13457 - "default3.handlebars->117->1867",
13456 + "default.handlebars->119->1888",
13457 + "default3.handlebars->117->1869",
13458 "login2.handlebars->17->24"
13459 ]
13460 },
@@ -13730,12 +13730,12 @@
13730 "zh-chs": "后台运行与交互式运行",
13731 "zh-cht": "背景與互動",
13732 "xloc": [
13733 - "default.handlebars->119->2451",
13734 - "default.handlebars->119->2458",
13733 + "default.handlebars->119->2453",
13734 + "default.handlebars->119->2460",
13735 "default.handlebars->119->576",
13736 "default.handlebars->119->597",
13737 - "default3.handlebars->117->2448",
13738 - "default3.handlebars->117->2455",
13737 + "default3.handlebars->117->2450",
13738 + "default3.handlebars->117->2457",
13739 "default3.handlebars->117->572",
13740 "default3.handlebars->117->593"
13741 ]
@@ -13767,13 +13767,13 @@
13767 "zh-cht": "僅背景",
13768 "xloc": [
13769 "agentinvite.handlebars->13->9",
13770 - "default.handlebars->119->2452",
13771 - "default.handlebars->119->2460",
13770 + "default.handlebars->119->2454",
13771 + "default.handlebars->119->2462",
13772 "default.handlebars->119->577",
13773 "default.handlebars->119->598",
13774 "default.handlebars->119->615",
13775 - "default3.handlebars->117->2449",
13776 - "default3.handlebars->117->2457",
13775 + "default3.handlebars->117->2451",
13776 + "default3.handlebars->117->2459",
13777 "default3.handlebars->117->573",
13778 "default3.handlebars->117->594",
13779 "default3.handlebars->117->611"
@@ -13836,10 +13836,10 @@
13836 "zh-chs": "备用码",
13837 "zh-cht": "備用碼",
13838 "xloc": [
13839 - "default.handlebars->119->3019",
13840 - "default.handlebars->119->3258",
13841 - "default3.handlebars->117->3013",
13842 - "default3.handlebars->117->3248"
13839 + "default.handlebars->119->3021",
13840 + "default.handlebars->119->3260",
13841 + "default3.handlebars->117->3015",
13842 + "default3.handlebars->117->3250"
13843 ]
13844 },
13845 {
@@ -13929,8 +13929,8 @@
13929 "zh-chs": "错误的签名",
13930 "zh-cht": "錯誤的簽名",
13931 "xloc": [
13932 - "default.handlebars->119->3363",
13933 - "default3.handlebars->117->3353"
13932 + "default.handlebars->119->3365",
13933 + "default3.handlebars->117->3355"
13934 ]
13935 },
13936 {
@@ -13959,8 +13959,8 @@
13959 "zh-chs": "错误的网络证书",
13960 "zh-cht": "錯誤的網絡憑證",
13961 "xloc": [
13962 - "default.handlebars->119->3362",
13963 - "default3.handlebars->117->3352"
13962 + "default.handlebars->119->3364",
13963 + "default3.handlebars->117->3354"
13964 ]
13965 },
13966 {
@@ -13990,8 +13990,8 @@
13990 "zh-cht": "巴斯克",
13991 "xloc": [
13992 "default-mobile.handlebars->53->139",
13993 - "default.handlebars->119->1887",
13994 - "default3.handlebars->117->1868",
13993 + "default.handlebars->119->1889",
13994 + "default3.handlebars->117->1870",
13995 "login2.handlebars->17->25"
13996 ]
13997 },
@@ -14096,8 +14096,8 @@
14096 "zh-chs": "将{0}个文件批量上传到文件夹{1}",
14097 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
14098 "xloc": [
14099 - "default.handlebars->119->2653",
14100 - "default3.handlebars->117->2650"
14099 + "default.handlebars->119->2655",
14100 + "default3.handlebars->117->2652"
14101 ]
14102 },
14103 {
@@ -14123,9 +14123,9 @@
14123 "zh-chs": "电池",
14124 "zh-cht": "電池",
14125 "xloc": [
14126 - "default-mobile.handlebars->53->881",
14127 - "default.handlebars->119->1717",
14128 - "default3.handlebars->117->1700"
14126 + "default-mobile.handlebars->53->883",
14127 + "default.handlebars->119->1719",
14128 + "default3.handlebars->117->1702"
14129 ]
14130 },
14131 {
@@ -14155,8 +14155,8 @@
14155 "zh-cht": "白俄羅斯文",
14156 "xloc": [
14157 "default-mobile.handlebars->53->141",
14158 - "default.handlebars->119->1889",
14159 - "default3.handlebars->117->1870",
14158 + "default.handlebars->119->1891",
14159 + "default3.handlebars->117->1872",
14160 "login2.handlebars->17->27"
14161 ]
14162 },
@@ -14187,8 +14187,8 @@
14187 "zh-cht": "孟加拉",
14188 "xloc": [
14189 "default-mobile.handlebars->53->142",
14190 - "default.handlebars->119->1890",
14191 - "default3.handlebars->117->1871",
14190 + "default.handlebars->119->1892",
14191 + "default3.handlebars->117->1873",
14192 "login2.handlebars->17->28"
14193 ]
14194 },
@@ -14256,9 +14256,9 @@
14256 "nl": "BitLocker",
14257 "uk": "BitLocker",
14258 "xloc": [
14259 - "default-mobile.handlebars->53->916",
14260 - "default.handlebars->119->1752",
14261 - "default3.handlebars->117->1735"
14259 + "default-mobile.handlebars->53->918",
14260 + "default.handlebars->119->1754",
14261 + "default3.handlebars->117->1737"
14262 ]
14263 },
14264 {
@@ -14268,9 +14268,9 @@
14268 "pl": "Informacje o BitLocker",
14269 "uk": "Інформація о BitLocker",
14270 "xloc": [
14271 - "default-mobile.handlebars->53->937",
14272 - "default.handlebars->119->1773",
14273 - "default3.handlebars->117->1756"
14271 + "default-mobile.handlebars->53->939",
14272 + "default.handlebars->119->1775",
14273 + "default3.handlebars->117->1758"
14274 ]
14275 },
14276 {
@@ -14331,8 +14331,8 @@
14331 "zh-cht": "波斯尼亞文",
14332 "xloc": [
14333 "default-mobile.handlebars->53->143",
14334 - "default.handlebars->119->1891",
14335 - "default3.handlebars->117->1872",
14334 + "default.handlebars->119->1893",
14335 + "default3.handlebars->117->1874",
14336 "login2.handlebars->17->29"
14337 ]
14338 },
@@ -14363,8 +14363,8 @@
14363 "zh-cht": "布列塔尼",
14364 "xloc": [
14365 "default-mobile.handlebars->53->144",
14366 - "default.handlebars->119->1892",
14367 - "default3.handlebars->117->1873",
14366 + "default.handlebars->119->1894",
14367 + "default3.handlebars->117->1875",
14368 "login2.handlebars->17->30"
14369 ]
14370 },
@@ -14394,9 +14394,9 @@
14394 "zh-chs": "广播",
14395 "zh-cht": "廣播",
14396 "xloc": [
14397 - "default.handlebars->119->2913",
14397 + "default.handlebars->119->2915",
14398 "default.handlebars->container->column_l->p4->3->1->0->3->1",
14399 - "default3.handlebars->117->2907",
14399 + "default3.handlebars->117->2909",
14400 "default3.handlebars->container->column_l->p4->3->1->0->1->3"
14401 ]
14402 },
@@ -14426,8 +14426,8 @@
14426 "zh-chs": "广播消息",
14427 "zh-cht": "廣播消息",
14428 "xloc": [
14429 - "default.handlebars->119->2829",
14430 - "default3.handlebars->117->2825"
14429 + "default.handlebars->119->2831",
14430 + "default3.handlebars->117->2827"
14431 ]
14432 },
14433 {
@@ -14456,8 +14456,8 @@
14456 "zh-chs": "向所有连接的用户广播消息。",
14457 "zh-cht": "向所有連接的用戶廣播消息。",
14458 "xloc": [
14459 - "default.handlebars->119->2824",
14460 - "default3.handlebars->117->2820"
14459 + "default.handlebars->119->2826",
14460 + "default3.handlebars->117->2822"
14461 ]
14462 },
14463 {
@@ -14486,8 +14486,8 @@
14486 "zh-chs": "浏览器",
14487 "zh-cht": "瀏覽器",
14488 "xloc": [
14489 - "default.handlebars->119->3229",
14490 - "default3.handlebars->117->3219"
14489 + "default.handlebars->119->3231",
14490 + "default3.handlebars->117->3221"
14491 ]
14492 },
14493 {
@@ -14578,8 +14578,8 @@
14578 "zh-cht": "保加利亞文",
14579 "xloc": [
14580 "default-mobile.handlebars->53->140",
14581 - "default.handlebars->119->1888",
14582 - "default3.handlebars->117->1869",
14581 + "default.handlebars->119->1890",
14582 + "default3.handlebars->117->1871",
14583 "login2.handlebars->17->26"
14584 ]
14585 },
@@ -14610,8 +14610,8 @@
14610 "zh-cht": "緬甸文",
14611 "xloc": [
14612 "default-mobile.handlebars->53->145",
14613 - "default.handlebars->119->1893",
14614 - "default3.handlebars->117->1874",
14613 + "default.handlebars->119->1895",
14614 + "default3.handlebars->117->1876",
14615 "login2.handlebars->17->31"
14616 ]
14617 },
@@ -14641,8 +14641,8 @@
14641 "zh-chs": "默认情况下,不活动的设备将在 1 天后移除。",
14642 "zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
14643 "xloc": [
14644 - "default.handlebars->119->2354",
14645 - "default3.handlebars->117->2351"
14644 + "default.handlebars->119->2356",
14645 + "default3.handlebars->117->2353"
14646 ]
14647 },
14648 {
@@ -14671,8 +14671,8 @@
14671 "zh-chs": "默认情况下,非活动设备将在 {0} 天后移除。",
14672 "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
14673 "xloc": [
14674 - "default.handlebars->119->2355",
14675 - "default3.handlebars->117->2352"
14674 + "default.handlebars->119->2357",
14675 + "default3.handlebars->117->2354"
14676 ]
14677 },
14678 {
@@ -14714,8 +14714,8 @@
14714 "zh-chs": "字节输入",
14715 "zh-cht": "字節輸入",
14716 "xloc": [
14717 - "default.handlebars->119->3225",
14718 - "default3.handlebars->117->3215"
14717 + "default.handlebars->119->3227",
14718 + "default3.handlebars->117->3217"
14719 ]
14720 },
14721 {
@@ -14744,8 +14744,8 @@
14744 "zh-chs": "字节输出",
14745 "zh-cht": "字節輸出",
14746 "xloc": [
14747 - "default.handlebars->119->3226",
14748 - "default3.handlebars->117->3216"
14747 + "default.handlebars->119->3228",
14748 + "default3.handlebars->117->3218"
14749 ]
14750 },
14751 {
@@ -14854,8 +14854,8 @@
14854 "zh-chs": "CCM模式",
14855 "zh-cht": "CCM模式",
14856 "xloc": [
14857 - "default.handlebars->119->2305",
14858 - "default3.handlebars->117->2299"
14857 + "default.handlebars->119->2307",
14858 + "default3.handlebars->117->2301"
14859 ]
14860 },
14861 {
@@ -14863,15 +14863,15 @@
14863 "en": "CD-ROM",
14864 "nl": "CD-ROM",
14865 "xloc": [
14866 - "default-mobile.handlebars->53->909",
14867 - "default-mobile.handlebars->53->921",
14868 - "default-mobile.handlebars->53->928",
14869 - "default.handlebars->119->1745",
14870 - "default.handlebars->119->1757",
14871 - "default.handlebars->119->1764",
14872 - "default3.handlebars->117->1728",
14873 - "default3.handlebars->117->1740",
14874 - "default3.handlebars->117->1747"
14866 + "default-mobile.handlebars->53->911",
14867 + "default-mobile.handlebars->53->923",
14868 + "default-mobile.handlebars->53->930",
14869 + "default.handlebars->119->1747",
14870 + "default.handlebars->119->1759",
14871 + "default.handlebars->119->1766",
14872 + "default3.handlebars->117->1730",
14873 + "default3.handlebars->117->1742",
14874 + "default3.handlebars->117->1749"
14875 ]
14876 },
14877 {
@@ -14901,10 +14901,10 @@
14901 "zh-cht": "CIRA",
14902 "xloc": [
14903 "default-mobile.handlebars->53->461",
14904 - "default.handlebars->119->3389",
14904 + "default.handlebars->119->3391",
14905 "default.handlebars->119->424",
14906 "default.handlebars->119->731",
14907 - "default3.handlebars->117->3379",
14907 + "default3.handlebars->117->3381",
14908 "default3.handlebars->117->420",
14909 "default3.handlebars->117->727"
14910 ]
@@ -14935,8 +14935,8 @@
14935 "zh-chs": "CIRA服务器",
14936 "zh-cht": "CIRA伺服器",
14937 "xloc": [
14938 - "default.handlebars->119->3438",
14939 - "default3.handlebars->117->3428"
14938 + "default.handlebars->119->3440",
14939 + "default3.handlebars->117->3430"
14940 ]
14941 },
14942 {
@@ -14965,8 +14965,8 @@
14965 "zh-chs": "CIRA服务器命令",
14966 "zh-cht": "CIRA伺服器指令",
14967 "xloc": [
14968 - "default.handlebars->119->3439",
14969 - "default3.handlebars->117->3429"
14968 + "default.handlebars->119->3441",
14969 + "default3.handlebars->117->3431"
14970 ]
14971 },
14972 {
@@ -15025,8 +15025,8 @@
15025 "zh-chs": "CIRA设置",
15026 "zh-cht": "CIRA設置",
15027 "xloc": [
15028 - "default.handlebars->119->2313",
15029 - "default3.handlebars->117->2306"
15028 + "default.handlebars->119->2315",
15029 + "default3.handlebars->117->2308"
15030 ]
15031 },
15032 {
@@ -15058,11 +15058,11 @@
15058 "default-mobile.handlebars->53->839",
15059 "default.handlebars->119->1588",
15060 "default.handlebars->119->1675",
15061 - "default.handlebars->119->3414",
15061 + "default.handlebars->119->3416",
15062 "default.handlebars->container->column_l->p40->3->1->p40type->5",
15063 "default3.handlebars->117->1573",
15064 "default3.handlebars->117->1658",
15065 - "default3.handlebars->117->3404",
15065 + "default3.handlebars->117->3406",
15066 "default3.handlebars->container->column_l->p40->3->3->p40type->5"
15067 ]
15068 },
@@ -15092,8 +15092,8 @@
15092 "zh-chs": "CPU负载",
15093 "zh-cht": "CPU負載",
15094 "xloc": [
15095 - "default.handlebars->119->3378",
15096 - "default3.handlebars->117->3368"
15095 + "default.handlebars->119->3380",
15096 + "default3.handlebars->117->3370"
15097 ]
15098 },
15099 {
@@ -15122,8 +15122,8 @@
15122 "zh-chs": "最近15分钟的CPU负载",
15123 "zh-cht": "最近15分鐘的CPU負載",
15124 "xloc": [
15125 - "default.handlebars->119->3381",
15126 - "default3.handlebars->117->3371"
15125 + "default.handlebars->119->3383",
15126 + "default3.handlebars->117->3373"
15127 ]
15128 },
15129 {
@@ -15152,8 +15152,8 @@
15152 "zh-chs": "最近5分钟的CPU负载",
15153 "zh-cht": "最近5分鐘的CPU負載",
15154 "xloc": [
15155 - "default.handlebars->119->3380",
15156 - "default3.handlebars->117->3370"
15155 + "default.handlebars->119->3382",
15156 + "default3.handlebars->117->3372"
15157 ]
15158 },
15159 {
@@ -15182,8 +15182,8 @@
15182 "zh-chs": "最近一分钟的CPU负载",
15183 "zh-cht": "最近一分鐘的CPU負載",
15184 "xloc": [
15185 - "default.handlebars->119->3379",
15186 - "default3.handlebars->117->3369"
15185 + "default.handlebars->119->3381",
15186 + "default3.handlebars->117->3371"
15187 ]
15188 },
15189 {
@@ -15249,8 +15249,8 @@
15249 "zh-chs": "CSV",
15250 "zh-cht": "CSV",
15251 "xloc": [
15252 - "default.handlebars->119->2735",
15253 - "default3.handlebars->117->2732"
15252 + "default.handlebars->119->2737",
15253 + "default3.handlebars->117->2734"
15254 ]
15255 },
15256 {
@@ -15279,11 +15279,11 @@
15279 "zh-chs": "CSV格式",
15280 "zh-cht": "CSV格式",
15281 "xloc": [
15282 - "default.handlebars->119->2739",
15283 - "default.handlebars->119->2816",
15282 + "default.handlebars->119->2741",
15283 + "default.handlebars->119->2818",
15284 "default.handlebars->119->804",
15285 - "default3.handlebars->117->2736",
15286 - "default3.handlebars->117->2812",
15285 + "default3.handlebars->117->2738",
15286 + "default3.handlebars->117->2814",
15287 "default3.handlebars->117->800"
15288 ]
15289 },
@@ -15293,8 +15293,8 @@
15293 "nl": "Het CSV bestandsformaat is als volgt:",
15294 "uk": "Формат файлу CSV нижче:",
15295 "xloc": [
15296 - "default.handlebars->119->2802",
15297 - "default3.handlebars->117->2798"
15296 + "default.handlebars->119->2804",
15297 + "default3.handlebars->117->2800"
15298 ]
15299 },
15300 {
@@ -15349,8 +15349,8 @@
15349 "zh-chs": "呼叫错误",
15350 "zh-cht": "呼叫錯誤",
15351 "xloc": [
15352 - "default.handlebars->119->3455",
15353 - "default3.handlebars->117->3445"
15352 + "default.handlebars->119->3457",
15353 + "default3.handlebars->117->3447"
15354 ]
15355 },
15356 {
@@ -15363,10 +15363,10 @@
15363 "pl": "CallMeBot",
15364 "uk": "CallMeBot",
15365 "xloc": [
15366 - "default.handlebars->119->1811",
15367 - "default.handlebars->119->3054",
15368 - "default3.handlebars->117->1793",
15369 - "default3.handlebars->117->3048"
15366 + "default.handlebars->119->1813",
15367 + "default.handlebars->119->3056",
15368 + "default3.handlebars->117->1795",
15369 + "default3.handlebars->117->3050"
15370 ]
15371 },
15372 {
@@ -15428,8 +15428,8 @@
15428 "agent-translations.json",
15429 "default-mobile.handlebars->53->331",
15430 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
15431 - "default.handlebars->119->2167",
15432 - "default.handlebars->119->3444",
15431 + "default.handlebars->119->2169",
15432 + "default.handlebars->119->3446",
15433 "default.handlebars->119->549",
15434 "default.handlebars->container->dialog->idx_dlgButtonBar",
15435 "default3.handlebars->117->545",
@@ -15552,30 +15552,30 @@
15552 "zh-chs": "容量",
15553 "zh-cht": "容量",
15554 "xloc": [
15555 - "default-mobile.handlebars->53->884",
15556 - "default-mobile.handlebars->53->890",
15557 - "default-mobile.handlebars->53->896",
15558 - "default-mobile.handlebars->53->901",
15555 + "default-mobile.handlebars->53->886",
15556 + "default-mobile.handlebars->53->892",
15557 + "default-mobile.handlebars->53->898",
15558 "default-mobile.handlebars->53->903",
15560 - "default-mobile.handlebars->53->906",
15561 - "default-mobile.handlebars->53->918",
15562 - "default-mobile.handlebars->53->925",
15563 - "default.handlebars->119->1720",
15564 - "default.handlebars->119->1726",
15565 - "default.handlebars->119->1732",
15566 - "default.handlebars->119->1737",
15559 + "default-mobile.handlebars->53->905",
15560 + "default-mobile.handlebars->53->908",
15561 + "default-mobile.handlebars->53->920",
15562 + "default-mobile.handlebars->53->927",
15563 + "default.handlebars->119->1722",
15564 + "default.handlebars->119->1728",
15565 + "default.handlebars->119->1734",
15566 "default.handlebars->119->1739",
15568 - "default.handlebars->119->1742",
15569 - "default.handlebars->119->1754",
15570 - "default.handlebars->119->1761",
15571 - "default3.handlebars->117->1703",
15572 - "default3.handlebars->117->1709",
15573 - "default3.handlebars->117->1715",
15574 - "default3.handlebars->117->1720",
15567 + "default.handlebars->119->1741",
15568 + "default.handlebars->119->1744",
15569 + "default.handlebars->119->1756",
15570 + "default.handlebars->119->1763",
15571 + "default3.handlebars->117->1705",
15572 + "default3.handlebars->117->1711",
15573 + "default3.handlebars->117->1717",
15574 "default3.handlebars->117->1722",
15576 - "default3.handlebars->117->1725",
15577 - "default3.handlebars->117->1737",
15578 - "default3.handlebars->117->1744"
15575 + "default3.handlebars->117->1724",
15576 + "default3.handlebars->117->1727",
15577 + "default3.handlebars->117->1739",
15578 + "default3.handlebars->117->1746"
15579 ]
15580 },
15581 {
@@ -15604,15 +15604,15 @@
15604 "zh-chs": "容量/速度",
15605 "zh-cht": "容量/速度",
15606 "xloc": [
15607 - "default-mobile.handlebars->53->882",
15608 - "default-mobile.handlebars->53->888",
15609 - "default-mobile.handlebars->53->894",
15610 - "default.handlebars->119->1718",
15611 - "default.handlebars->119->1724",
15612 - "default.handlebars->119->1730",
15613 - "default3.handlebars->117->1701",
15614 - "default3.handlebars->117->1707",
15615 - "default3.handlebars->117->1713"
15607 + "default-mobile.handlebars->53->884",
15608 + "default-mobile.handlebars->53->890",
15609 + "default-mobile.handlebars->53->896",
15610 + "default.handlebars->119->1720",
15611 + "default.handlebars->119->1726",
15612 + "default.handlebars->119->1732",
15613 + "default3.handlebars->117->1703",
15614 + "default3.handlebars->117->1709",
15615 + "default3.handlebars->117->1715"
15616 ]
15617 },
15618 {
@@ -15640,15 +15640,15 @@
15640 "zh-chs": "剩余容量",
15641 "zh-cht": "剩餘容量",
15642 "xloc": [
15643 - "default-mobile.handlebars->53->907",
15644 - "default-mobile.handlebars->53->919",
15645 - "default-mobile.handlebars->53->926",
15646 - "default.handlebars->119->1743",
15647 - "default.handlebars->119->1755",
15648 - "default.handlebars->119->1762",
15649 - "default3.handlebars->117->1726",
15650 - "default3.handlebars->117->1738",
15651 - "default3.handlebars->117->1745"
15643 + "default-mobile.handlebars->53->909",
15644 + "default-mobile.handlebars->53->921",
15645 + "default-mobile.handlebars->53->928",
15646 + "default.handlebars->119->1745",
15647 + "default.handlebars->119->1757",
15648 + "default.handlebars->119->1764",
15649 + "default3.handlebars->117->1728",
15650 + "default3.handlebars->117->1740",
15651 + "default3.handlebars->117->1747"
15652 ]
15653 },
15654 {
@@ -15678,8 +15678,8 @@
15678 "zh-cht": "加泰羅尼亞文",
15679 "xloc": [
15680 "default-mobile.handlebars->53->146",
15681 - "default.handlebars->119->1894",
15682 - "default3.handlebars->117->1875",
15681 + "default.handlebars->119->1896",
15682 + "default3.handlebars->117->1877",
15683 "login2.handlebars->17->32"
15684 ]
15685 },
@@ -15776,7 +15776,7 @@
15776 "en": "Cerulean",
15777 "nl": "Hemelsblauw",
15778 "xloc": [
15779 - "default3.handlebars->117->2089"
15779 + "default3.handlebars->117->2091"
15780 ]
15781 },
15782 {
@@ -15806,8 +15806,8 @@
15806 "zh-cht": "查莫羅",
15807 "xloc": [
15808 "default-mobile.handlebars->53->147",
15809 - "default.handlebars->119->1895",
15810 - "default3.handlebars->117->1876",
15809 + "default.handlebars->119->1897",
15810 + "default3.handlebars->117->1878",
15811 "login2.handlebars->17->33"
15812 ]
15813 },
@@ -15868,8 +15868,8 @@
15868 "zh-chs": "更改{0}的邮箱",
15869 "zh-cht": "更改{0}的電郵",
15870 "xloc": [
15871 - "default.handlebars->119->3096",
15872 - "default3.handlebars->117->3088"
15871 + "default.handlebars->119->3098",
15872 + "default3.handlebars->117->3090"
15873 ]
15874 },
15875 {
@@ -15948,10 +15948,10 @@
15948 "zh-cht": "更改密碼",
15949 "xloc": [
15950 "default-mobile.handlebars->53->339",
15951 - "default.handlebars->119->2111",
15952 - "default.handlebars->119->3040",
15953 - "default3.handlebars->117->2087",
15954 - "default3.handlebars->117->3034"
15951 + "default.handlebars->119->2113",
15952 + "default.handlebars->119->3042",
15953 + "default3.handlebars->117->2089",
15954 + "default3.handlebars->117->3036"
15955 ]
15956 },
15957 {
@@ -15980,8 +15980,8 @@
15980 "zh-chs": "更改{0}的密码",
15981 "zh-cht": "更改{0}的密碼",
15982 "xloc": [
15983 - "default.handlebars->119->3105",
15984 - "default3.handlebars->117->3093"
15983 + "default.handlebars->119->3107",
15984 + "default3.handlebars->117->3095"
15985 ]
15986 },
15987 {
@@ -16010,8 +16010,8 @@
16010 "zh-chs": "更改{0}的真实名称",
16011 "zh-cht": "更改{0}的真實名稱",
16012 "xloc": [
16013 - "default.handlebars->119->3091",
16014 - "default3.handlebars->117->3084"
16013 + "default.handlebars->119->3093",
16014 + "default3.handlebars->117->3086"
16015 ]
16016 },
16017 {
@@ -16188,8 +16188,8 @@
16188 "zh-chs": "更改该用户的密码",
16189 "zh-cht": "更改該用戶的密碼",
16190 "xloc": [
16191 - "default.handlebars->119->3039",
16192 - "default3.handlebars->117->3033"
16191 + "default.handlebars->119->3041",
16192 + "default3.handlebars->117->3035"
16193 ]
16194 },
16195 {
@@ -16248,8 +16248,8 @@
16248 "zh-chs": "更改您的邮件地址。",
16249 "zh-cht": "在此處更改你的帳戶電郵地址。",
16250 "xloc": [
16251 - "default.handlebars->119->2098",
16252 - "default3.handlebars->117->2080"
16251 + "default.handlebars->119->2100",
16252 + "default3.handlebars->117->2082"
16253 ]
16254 },
16255 {
@@ -16278,8 +16278,8 @@
16278 "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
16279 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
16280 "xloc": [
16281 - "default.handlebars->119->2104",
16282 - "default3.handlebars->117->2084"
16281 + "default.handlebars->119->2106",
16282 + "default3.handlebars->117->2086"
16283 ]
16284 },
16285 {
@@ -16308,8 +16308,8 @@
16308 "zh-chs": "更改帐户凭据",
16309 "zh-cht": "帳戶憑證已更改",
16310 "xloc": [
16311 - "default.handlebars->119->2625",
16312 - "default3.handlebars->117->2622"
16311 + "default.handlebars->119->2627",
16312 + "default3.handlebars->117->2624"
16313 ]
16314 },
16315 {
@@ -16338,8 +16338,8 @@
16338 "zh-chs": "将帐户显示名称更改为 {0}。",
16339 "zh-cht": "將帳戶顯示名稱更改為 {0}。",
16340 "xloc": [
16341 - "default.handlebars->119->2677",
16342 - "default3.handlebars->117->2674"
16341 + "default.handlebars->119->2679",
16342 + "default3.handlebars->117->2676"
16343 ]
16344 },
16345 {
@@ -16368,10 +16368,10 @@
16368 "zh-chs": "{1}组中的设备{0}已更改:{2}",
16369 "zh-cht": "{1}組中的設備{0}已更改:{2}",
16370 "xloc": [
16371 - "default.handlebars->119->2609",
16372 - "default.handlebars->119->2690",
16373 - "default3.handlebars->117->2606",
16374 - "default3.handlebars->117->2687"
16371 + "default.handlebars->119->2611",
16372 + "default.handlebars->119->2692",
16373 + "default3.handlebars->117->2608",
16374 + "default3.handlebars->117->2689"
16375 ]
16376 },
16377 {
@@ -16400,8 +16400,8 @@
16400 "zh-chs": "语言从{1}更改为{2}",
16401 "zh-cht": "語言從{1}更改為{2}",
16402 "xloc": [
16403 - "default.handlebars->119->2553",
16404 - "default3.handlebars->117->2550"
16403 + "default.handlebars->119->2555",
16404 + "default3.handlebars->117->2552"
16405 ]
16406 },
16407 {
@@ -16430,10 +16430,10 @@
16430 "zh-chs": "已更改{0}的用户设备权限",
16431 "zh-cht": "已更改{0}的用戶設備權限",
16432 "xloc": [
16433 - "default.handlebars->119->2611",
16434 - "default.handlebars->119->2632",
16435 - "default3.handlebars->117->2608",
16436 - "default3.handlebars->117->2629"
16433 + "default.handlebars->119->2613",
16434 + "default.handlebars->119->2634",
16435 + "default3.handlebars->117->2610",
16436 + "default3.handlebars->117->2631"
16437 ]
16438 },
16439 {
@@ -16489,8 +16489,8 @@
16489 "zh-cht": "更改語言將需要刷新頁面。",
16490 "xloc": [
16491 "default-mobile.handlebars->53->314",
16492 - "default.handlebars->119->2062",
16493 - "default3.handlebars->117->2043"
16492 + "default.handlebars->119->2064",
16493 + "default3.handlebars->117->2045"
16494 ]
16495 },
16496 {
@@ -16578,15 +16578,15 @@
16578 "default.handlebars->119->1008",
16579 "default.handlebars->119->1127",
16580 "default.handlebars->119->1152",
16581 - "default.handlebars->119->2756",
16582 - "default.handlebars->119->3035",
16583 - "default.handlebars->119->3036",
16581 + "default.handlebars->119->2758",
16582 + "default.handlebars->119->3037",
16583 + "default.handlebars->119->3038",
16584 "default3.handlebars->117->1004",
16585 "default3.handlebars->117->1121",
16586 "default3.handlebars->117->1146",
16587 - "default3.handlebars->117->2753",
16588 - "default3.handlebars->117->3029",
16589 - "default3.handlebars->117->3030"
16587 + "default3.handlebars->117->2755",
16588 + "default3.handlebars->117->3031",
16589 + "default3.handlebars->117->3032"
16590 ]
16591 },
16592 {
@@ -16615,12 +16615,12 @@
16615 "zh-chs": "聊天并通知",
16616 "zh-cht": "聊天並通知",
16617 "xloc": [
16618 - "default-mobile.handlebars->53->1011",
16619 - "default-mobile.handlebars->53->1031",
16620 - "default.handlebars->119->2386",
16621 - "default.handlebars->119->2424",
16622 - "default3.handlebars->117->2383",
16623 - "default3.handlebars->117->2421"
16618 + "default-mobile.handlebars->53->1013",
16619 + "default-mobile.handlebars->53->1033",
16620 + "default.handlebars->119->2388",
16621 + "default.handlebars->119->2426",
16622 + "default3.handlebars->117->2385",
16623 + "default3.handlebars->117->2423"
16624 ]
16625 },
16626 {
@@ -16649,9 +16649,9 @@
16649 "zh-chs": "聊天请求,点击这里接受。",
16650 "zh-cht": "聊天請求,點擊這裡接受。",
16651 "xloc": [
16652 - "default-mobile.handlebars->53->1063",
16653 - "default.handlebars->119->3327",
16654 - "default3.handlebars->117->3317"
16652 + "default-mobile.handlebars->53->1065",
16653 + "default.handlebars->119->3329",
16654 + "default3.handlebars->117->3319"
16655 ]
16656 },
16657 {
@@ -16710,8 +16710,8 @@
16710 "zh-cht": "車臣",
16711 "xloc": [
16712 "default-mobile.handlebars->53->148",
16713 - "default.handlebars->119->1896",
16714 - "default3.handlebars->117->1877",
16713 + "default.handlebars->119->1898",
16714 + "default3.handlebars->117->1879",
16715 "login2.handlebars->17->34"
16716 ]
16717 },
@@ -16876,10 +16876,10 @@
16876 "zh-chs": "检查...",
16877 "zh-cht": "檢查...",
16878 "xloc": [
16879 - "default.handlebars->119->1862",
16880 - "default.handlebars->119->3449",
16881 - "default3.handlebars->117->1843",
16882 - "default3.handlebars->117->3439"
16879 + "default.handlebars->119->1864",
16880 + "default.handlebars->119->3451",
16881 + "default3.handlebars->117->1845",
16882 + "default3.handlebars->117->3441"
16883 ]
16884 },
16885 {
@@ -16937,8 +16937,8 @@
16937 "zh-cht": "中文",
16938 "xloc": [
16939 "default-mobile.handlebars->53->149",
16940 - "default.handlebars->119->1897",
16941 - "default3.handlebars->117->1878",
16940 + "default.handlebars->119->1899",
16941 + "default3.handlebars->117->1880",
16942 "login2.handlebars->17->35"
16943 ]
16944 },
@@ -16969,8 +16969,8 @@
16969 "zh-cht": "中文(香港)",
16970 "xloc": [
16971 "default-mobile.handlebars->53->150",
16972 - "default.handlebars->119->1898",
16973 - "default3.handlebars->117->1879",
16972 + "default.handlebars->119->1900",
16973 + "default3.handlebars->117->1881",
16974 "login2.handlebars->17->36"
16975 ]
16976 },
@@ -17001,8 +17001,8 @@
17001 "zh-cht": "中文(中國)",
17002 "xloc": [
17003 "default-mobile.handlebars->53->151",
17004 - "default.handlebars->119->1899",
17005 - "default3.handlebars->117->1880",
17004 + "default.handlebars->119->1901",
17005 + "default3.handlebars->117->1882",
17006 "login2.handlebars->17->37"
17007 ]
17008 },
@@ -17033,8 +17033,8 @@
17033 "zh-cht": "簡體中文",
17034 "xloc": [
17035 "default-mobile.handlebars->53->311",
17036 - "default.handlebars->119->2059",
17037 - "default3.handlebars->117->2040",
17036 + "default.handlebars->119->2061",
17037 + "default3.handlebars->117->2042",
17038 "login2.handlebars->17->197"
17039 ]
17040 },
@@ -17065,8 +17065,8 @@
17065 "zh-cht": "中文(新加坡)",
17066 "xloc": [
17067 "default-mobile.handlebars->53->152",
17068 - "default.handlebars->119->1900",
17069 - "default3.handlebars->117->1881",
17068 + "default.handlebars->119->1902",
17069 + "default3.handlebars->117->1883",
17070 "login2.handlebars->17->38"
17071 ]
17072 },
@@ -17097,8 +17097,8 @@
17097 "zh-cht": "中文(台灣)",
17098 "xloc": [
17099 "default-mobile.handlebars->53->153",
17100 - "default.handlebars->119->1901",
17101 - "default3.handlebars->117->1882",
17100 + "default.handlebars->119->1903",
17101 + "default3.handlebars->117->1884",
17102 "login2.handlebars->17->39"
17103 ]
17104 },
@@ -17129,8 +17129,8 @@
17129 "zh-cht": "繁體中文",
17130 "xloc": [
17131 "default-mobile.handlebars->53->312",
17132 - "default.handlebars->119->2060",
17133 - "default3.handlebars->117->2041",
17132 + "default.handlebars->119->2062",
17133 + "default3.handlebars->117->2043",
17134 "login2.handlebars->17->198"
17135 ]
17136 },
@@ -17192,8 +17192,8 @@
17192 "zh-cht": "楚瓦什",
17193 "xloc": [
17194 "default-mobile.handlebars->53->154",
17195 - "default.handlebars->119->1902",
17196 - "default3.handlebars->117->1883",
17195 + "default.handlebars->119->1904",
17196 + "default3.handlebars->117->1885",
17197 "login2.handlebars->17->40"
17198 ]
17199 },
@@ -17267,14 +17267,14 @@
17267 "default.handlebars->119->1563",
17268 "default.handlebars->119->1565",
17269 "default.handlebars->119->1567",
17270 - "default.handlebars->119->2547",
17270 + "default.handlebars->119->2549",
17271 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17272 "default.handlebars->container->column_l->p41->3->1",
17273 "default3.handlebars->117->1546",
17274 "default3.handlebars->117->1548",
17275 "default3.handlebars->117->1550",
17276 "default3.handlebars->117->1552",
17277 - "default3.handlebars->117->2544",
17277 + "default3.handlebars->117->2546",
17278 "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17279 "default3.handlebars->container->column_l->p41->3->3",
17280 "messenger.handlebars->xbottom->1->1->0->5",
@@ -17466,9 +17466,9 @@
17466 "zh-chs": "全部清除",
17467 "zh-cht": "全部清除",
17468 "xloc": [
17469 - "default-mobile.handlebars->53->1046",
17470 - "default.handlebars->119->3310",
17471 - "default3.handlebars->117->3300"
17469 + "default-mobile.handlebars->53->1048",
17470 + "default.handlebars->119->3312",
17471 + "default3.handlebars->117->3302"
17472 ]
17473 },
17474 {
@@ -17528,9 +17528,9 @@
17528 "zh-chs": "清除核心",
17529 "zh-cht": "清除核心",
17530 "xloc": [
17531 - "default-mobile.handlebars->53->947",
17532 - "default.handlebars->119->1784",
17533 - "default3.handlebars->117->1767"
17531 + "default-mobile.handlebars->53->949",
17532 + "default.handlebars->119->1786",
17533 + "default3.handlebars->117->1769"
17534 ]
17535 },
17536 {
@@ -17590,9 +17590,9 @@
17590 "zh-chs": "清除此通知",
17591 "zh-cht": "清除此通知",
17592 "xloc": [
17593 - "default-mobile.handlebars->53->1045",
17594 - "default.handlebars->119->3309",
17595 - "default3.handlebars->117->3299"
17593 + "default-mobile.handlebars->53->1047",
17594 + "default.handlebars->119->3311",
17595 + "default3.handlebars->117->3301"
17596 ]
17597 },
17598 {
@@ -17708,10 +17708,10 @@
17708 "zh-chs": "单击此处编辑设备组名称",
17709 "zh-cht": "單擊此處編輯裝置群名稱",
17710 "xloc": [
17711 - "default.handlebars->119->2181",
17712 - "default.handlebars->119->2485",
17713 - "default3.handlebars->117->2177",
17714 - "default3.handlebars->117->2482"
17711 + "default.handlebars->119->2183",
17712 + "default.handlebars->119->2487",
17713 + "default3.handlebars->117->2179",
17714 + "default3.handlebars->117->2484"
17715 ]
17716 },
17717 {
@@ -17770,8 +17770,8 @@
17770 "zh-chs": "单击此处编辑用户组名称",
17771 "zh-cht": "單擊此處編輯用戶群名稱",
17772 "xloc": [
17773 - "default.handlebars->119->2886",
17774 - "default3.handlebars->117->2880"
17773 + "default.handlebars->119->2888",
17774 + "default3.handlebars->117->2882"
17775 ]
17776 },
17777 {
@@ -17916,8 +17916,8 @@
17916 "zh-cht": "單擊確定將驗證電郵發送到:",
17917 "xloc": [
17918 "default-mobile.handlebars->53->324",
17919 - "default.handlebars->119->2095",
17920 - "default3.handlebars->117->2077"
17919 + "default.handlebars->119->2097",
17920 + "default3.handlebars->117->2079"
17921 ]
17922 },
17923 {
@@ -18063,8 +18063,8 @@
18063 "zh-chs": "客户编号",
18064 "zh-cht": "客戶編號",
18065 "xloc": [
18066 - "default.handlebars->119->2158",
18067 - "default3.handlebars->117->2158"
18066 + "default.handlebars->119->2160",
18067 + "default3.handlebars->117->2160"
18068 ]
18069 },
18070 {
@@ -18093,8 +18093,8 @@
18093 "zh-chs": "客户端启动的远程访问",
18094 "zh-cht": "客戶端啟動的遠程訪問",
18095 "xloc": [
18096 - "default.handlebars->119->2312",
18097 - "default3.handlebars->117->2307"
18096 + "default.handlebars->119->2314",
18097 + "default3.handlebars->117->2309"
18098 ]
18099 },
18100 {
@@ -18123,8 +18123,8 @@
18123 "zh-chs": "客户机密",
18124 "zh-cht": "客戶機密",
18125 "xloc": [
18126 - "default.handlebars->119->2159",
18127 - "default3.handlebars->117->2159"
18126 + "default.handlebars->119->2161",
18127 + "default3.handlebars->117->2161"
18128 ]
18129 },
18130 {
@@ -18190,7 +18190,7 @@
18190 "default.handlebars->119->1536",
18191 "default.handlebars->119->242",
18192 "default.handlebars->119->251",
18193 - "default.handlebars->119->3443",
18193 + "default.handlebars->119->3445",
18194 "default3.handlebars->117->1452",
18195 "default3.handlebars->117->1521",
18196 "default3.handlebars->117->347",
@@ -18223,8 +18223,8 @@
18223 "zh-chs": "已关闭桌面多路复用会话 \\\"{0}\\\",{1} 秒",
18224 "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
18225 "xloc": [
18226 - "default.handlebars->119->2697",
18227 - "default3.handlebars->117->2694"
18226 + "default.handlebars->119->2699",
18227 + "default3.handlebars->117->2696"
18228 ]
18229 },
18230 {
@@ -18253,8 +18253,8 @@
18253 "zh-chs": "封闭式桌面多路复用会话,{0}秒",
18254 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
18255 "xloc": [
18256 - "default.handlebars->119->2558",
18257 - "default3.handlebars->117->2555"
18256 + "default.handlebars->119->2560",
18257 + "default3.handlebars->117->2557"
18258 ]
18259 },
18260 {
@@ -18466,13 +18466,13 @@
18466 "zh-chs": "指令",
18467 "zh-cht": "指令",
18468 "xloc": [
18469 - "default-mobile.handlebars->53->1033",
18469 + "default-mobile.handlebars->53->1035",
18470 "default.handlebars->119->1129",
18471 "default.handlebars->119->1154",
18472 - "default.handlebars->119->2426",
18472 + "default.handlebars->119->2428",
18473 "default3.handlebars->117->1123",
18474 "default3.handlebars->117->1148",
18475 - "default3.handlebars->117->2423"
18475 + "default3.handlebars->117->2425"
18476 ]
18477 },
18478 {
@@ -18555,10 +18555,10 @@
18555 "zh-chs": "通用设备组",
18556 "zh-cht": "通用裝置群",
18557 "xloc": [
18558 - "default.handlebars->119->2921",
18559 - "default.handlebars->119->3110",
18560 - "default3.handlebars->117->2915",
18561 - "default3.handlebars->117->3098"
18558 + "default.handlebars->119->2923",
18559 + "default.handlebars->119->3112",
18560 + "default3.handlebars->117->2917",
18561 + "default3.handlebars->117->3100"
18562 ]
18563 },
18564 {
@@ -18587,10 +18587,10 @@
18587 "zh-chs": "通用设备",
18588 "zh-cht": "通用裝置",
18589 "xloc": [
18590 - "default.handlebars->119->2927",
18591 - "default.handlebars->119->3122",
18592 - "default3.handlebars->117->2921",
18593 - "default3.handlebars->117->3110"
18590 + "default.handlebars->119->2929",
18591 + "default.handlebars->119->3124",
18592 + "default3.handlebars->117->2923",
18593 + "default3.handlebars->117->3112"
18594 ]
18595 },
18596 {
@@ -18719,8 +18719,8 @@
18719 "pl": "Zapisy pliku konfiguracyjnego",
18720 "uk": "Записи файлу конфігурації",
18721 "xloc": [
18722 - "default.handlebars->119->3276",
18723 - "default3.handlebars->117->3266"
18722 + "default.handlebars->119->3278",
18723 + "default3.handlebars->117->3268"
18724 ]
18725 },
18726 {
@@ -18750,22 +18750,22 @@
18750 "zh-cht": "確認",
18751 "xloc": [
18752 "default-mobile.handlebars->53->617",
18753 - "default-mobile.handlebars->53->982",
18753 + "default-mobile.handlebars->53->984",
18754 "default.handlebars->119->1303",
18755 "default.handlebars->119->1312",
18756 - "default.handlebars->119->2323",
18757 - "default.handlebars->119->2786",
18758 - "default.handlebars->119->2876",
18759 - "default.handlebars->119->2943",
18760 - "default.handlebars->119->3108",
18756 + "default.handlebars->119->2325",
18757 + "default.handlebars->119->2788",
18758 + "default.handlebars->119->2878",
18759 + "default.handlebars->119->2945",
18760 + "default.handlebars->119->3110",
18761 "default.handlebars->119->768",
18762 "default3.handlebars->117->1293",
18763 "default3.handlebars->117->1301",
18764 - "default3.handlebars->117->2317",
18765 - "default3.handlebars->117->2783",
18766 - "default3.handlebars->117->2870",
18767 - "default3.handlebars->117->2937",
18768 - "default3.handlebars->117->3096",
18764 + "default3.handlebars->117->2319",
18765 + "default3.handlebars->117->2785",
18766 + "default3.handlebars->117->2872",
18767 + "default3.handlebars->117->2939",
18768 + "default3.handlebars->117->3098",
18769 "default3.handlebars->117->764"
18770 ]
18771 },
@@ -18799,7 +18799,7 @@
18799 "en": "Confirm Password",
18800 "nl": "Bevestig wachtwoord",
18801 "xloc": [
18802 - "default3.handlebars->117->2831"
18802 + "default3.handlebars->117->2833"
18803 ]
18804 },
18805 {
@@ -18922,8 +18922,8 @@
18922 "zh-chs": "确认删除选定的帐户?",
18923 "zh-cht": "確認刪除所選帳戶?",
18924 "xloc": [
18925 - "default.handlebars->119->2785",
18926 - "default3.handlebars->117->2782"
18925 + "default.handlebars->119->2787",
18926 + "default3.handlebars->117->2784"
18927 ]
18928 },
18929 {
@@ -18978,8 +18978,8 @@
18978 "zh-chs": "确认删除选定的用户组?",
18979 "zh-cht": "確認刪除所選用戶群?",
18980 "xloc": [
18981 - "default.handlebars->119->2875",
18982 - "default3.handlebars->117->2869"
18981 + "default.handlebars->119->2877",
18982 + "default3.handlebars->117->2871"
18983 ]
18984 },
18985 {
@@ -19008,24 +19008,24 @@
19008 "zh-chs": "确认删除用户{0}?",
19009 "zh-cht": "確認刪除用戶{0}?",
19010 "xloc": [
19011 - "default.handlebars->119->3107",
19012 - "default3.handlebars->117->3095"
19011 + "default.handlebars->119->3109",
19012 + "default3.handlebars->117->3097"
19013 ]
19014 },
19015 {
19016 "en": "Confirm disabling 2FA Duo login security.",
19017 "nl": "Bevestig het uitschakelen van 2FA Duo inlogbeveiliging.",
19018 "xloc": [
19019 - "default.handlebars->119->1841",
19020 - "default3.handlebars->117->1823"
19019 + "default.handlebars->119->1843",
19020 + "default3.handlebars->117->1825"
19021 ]
19022 },
19023 {
19024 "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.",
19025 "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.",
19026 "xloc": [
19027 - "default.handlebars->119->1839",
19028 - "default3.handlebars->117->1821"
19027 + "default.handlebars->119->1841",
19028 + "default3.handlebars->117->1823"
19029 ]
19030 },
19031 {
@@ -19054,8 +19054,8 @@
19054 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
19055 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
19056 "xloc": [
19057 - "default.handlebars->119->2946",
19058 - "default3.handlebars->117->2940"
19057 + "default.handlebars->119->2948",
19058 + "default3.handlebars->117->2942"
19059 ]
19060 },
19061 {
@@ -19084,8 +19084,8 @@
19084 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
19085 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
19086 "xloc": [
19087 - "default.handlebars->119->3139",
19088 - "default3.handlebars->117->3127"
19087 + "default.handlebars->119->3141",
19088 + "default3.handlebars->117->3129"
19089 ]
19090 },
19091 {
@@ -19208,8 +19208,8 @@
19208 "zh-chs": "确认覆盖?",
19209 "zh-cht": "確認覆蓋?",
19210 "xloc": [
19211 - "default.handlebars->119->2539",
19212 - "default3.handlebars->117->2536"
19211 + "default.handlebars->119->2541",
19212 + "default3.handlebars->117->2538"
19213 ]
19214 },
19215 {
@@ -19238,10 +19238,10 @@
19238 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
19239 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
19240 "xloc": [
19241 - "default.handlebars->119->2936",
19242 - "default.handlebars->119->3130",
19243 - "default3.handlebars->117->2930",
19244 - "default3.handlebars->117->3118"
19241 + "default.handlebars->119->2938",
19242 + "default.handlebars->119->3132",
19243 + "default3.handlebars->117->2932",
19244 + "default3.handlebars->117->3120"
19245 ]
19246 },
19247 {
@@ -19270,10 +19270,10 @@
19270 "zh-chs": "确认删除设备组“ {0} ”的访问权限?",
19271 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
19272 "xloc": [
19273 - "default.handlebars->119->2938",
19274 - "default.handlebars->119->3143",
19275 - "default3.handlebars->117->2932",
19276 - "default3.handlebars->117->3131"
19273 + "default.handlebars->119->2940",
19274 + "default.handlebars->119->3145",
19275 + "default3.handlebars->117->2934",
19276 + "default3.handlebars->117->3133"
19277 ]
19278 },
19279 {
@@ -19302,8 +19302,8 @@
19302 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
19303 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
19304 "xloc": [
19305 - "default.handlebars->119->3132",
19306 - "default3.handlebars->117->3120"
19305 + "default.handlebars->119->3134",
19306 + "default3.handlebars->117->3122"
19307 ]
19308 },
19309 {
@@ -19332,8 +19332,8 @@
19332 "zh-chs": "确认删除用户组“ {0} ”的访问权限?",
19333 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
19334 "xloc": [
19335 - "default.handlebars->119->3135",
19336 - "default3.handlebars->117->3123"
19335 + "default.handlebars->119->3137",
19336 + "default3.handlebars->117->3125"
19337 ]
19338 },
19339 {
@@ -19362,10 +19362,10 @@
19362 "zh-chs": "确认删除访问权限?",
19363 "zh-cht": "確認刪除訪問權限?",
19364 "xloc": [
19365 - "default.handlebars->119->3133",
19366 - "default.handlebars->119->3136",
19367 - "default3.handlebars->117->3121",
19368 - "default3.handlebars->117->3124"
19365 + "default.handlebars->119->3135",
19366 + "default.handlebars->119->3138",
19367 + "default3.handlebars->117->3123",
19368 + "default3.handlebars->117->3126"
19369 ]
19370 },
19371 {
@@ -19395,8 +19395,8 @@
19395 "zh-cht": "確認刪除身份驗證軟體兩步登入?",
19396 "xloc": [
19397 "default-mobile.handlebars->53->323",
19398 - "default.handlebars->119->1845",
19399 - "default3.handlebars->117->1827"
19398 + "default.handlebars->119->1847",
19399 + "default3.handlebars->117->1829"
19400 ]
19401 },
19402 {
@@ -19451,8 +19451,8 @@
19451 "zh-chs": "确认删除设备共享“{0}”?",
19452 "zh-cht": "確認刪除設備共享“{0}”?",
19453 "xloc": [
19454 - "default.handlebars->119->3128",
19455 - "default3.handlebars->117->3116"
19454 + "default.handlebars->119->3130",
19455 + "default3.handlebars->117->3118"
19456 ]
19457 },
19458 {
@@ -19533,8 +19533,8 @@
19533 "zh-chs": "确认移除推送认证设备?",
19534 "zh-cht": "確認移除推送認證設備?",
19535 "xloc": [
19536 - "default.handlebars->119->1847",
19537 - "default3.handlebars->117->1829"
19536 + "default.handlebars->119->1849",
19537 + "default3.handlebars->117->1831"
19538 ]
19539 },
19540 {
@@ -19563,8 +19563,8 @@
19563 "zh-chs": "确认删除用户“ {0} ”的权限?",
19564 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
19565 "xloc": [
19566 - "default.handlebars->119->2438",
19567 - "default3.handlebars->117->2435"
19566 + "default.handlebars->119->2440",
19567 + "default3.handlebars->117->2437"
19568 ]
19569 },
19570 {
@@ -19593,8 +19593,8 @@
19593 "zh-chs": "确认删除用户组“ {0} ”的权限?",
19594 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
19595 "xloc": [
19596 - "default.handlebars->119->2440",
19597 - "default3.handlebars->117->2437"
19596 + "default.handlebars->119->2442",
19597 + "default3.handlebars->117->2439"
19598 ]
19599 },
19600 {
@@ -19653,8 +19653,8 @@
19653 "zh-chs": "确认删除此登录令牌?",
19654 "zh-cht": "確認刪除此登錄令牌?",
19655 "xloc": [
19656 - "default.handlebars->119->2151",
19657 - "default3.handlebars->117->2151"
19656 + "default.handlebars->119->2153",
19657 + "default3.handlebars->117->2153"
19658 ]
19659 },
19660 {
@@ -19709,7 +19709,7 @@
19709 "zh-chs": "确认删除用户{0}?",
19710 "zh-cht": "確認刪除用戶{0}?",
19711 "xloc": [
19712 - "default-mobile.handlebars->53->1042"
19712 + "default-mobile.handlebars->53->1044"
19713 ]
19714 },
19715 {
@@ -19769,8 +19769,8 @@
19769 "zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
19770 "xloc": [
19771 "default-mobile.handlebars->53->384",
19772 - "default.handlebars->119->2542",
19773 - "default3.handlebars->117->2539"
19772 + "default.handlebars->119->2544",
19773 + "default3.handlebars->117->2541"
19774 ]
19775 },
19776 {
@@ -19803,12 +19803,12 @@
19803 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
19804 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
19805 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
19806 - "default.handlebars->119->2221",
19806 + "default.handlebars->119->2223",
19807 "default.handlebars->119->965",
19808 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
19809 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
19810 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
19811 - "default3.handlebars->117->2217",
19811 + "default3.handlebars->117->2219",
19812 "default3.handlebars->117->961",
19813 "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->connectbutton1span->connectbutton1",
19814 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->connectbutton2",
@@ -19910,8 +19910,8 @@
19910 "zh-chs": "连接到服务器",
19911 "zh-cht": "連接到伺服器",
19912 "xloc": [
19913 - "default.handlebars->119->2316",
19914 - "default3.handlebars->117->2310"
19913 + "default.handlebars->119->2318",
19914 + "default3.handlebars->117->2312"
19915 ]
19916 },
19917 {
@@ -20185,8 +20185,8 @@
20185 "zh-chs": "已连接的英特尔&reg;AMT",
20186 "zh-cht": "已連接的Intel&reg; AMT",
20187 "xloc": [
20188 - "default.handlebars->119->3368",
20189 - "default3.handlebars->117->3358"
20188 + "default.handlebars->119->3370",
20189 + "default3.handlebars->117->3360"
20190 ]
20191 },
20192 {
@@ -20215,8 +20215,8 @@
20215 "zh-chs": "已连接的英特尔&reg;AMT CIRA",
20216 "zh-cht": "已連接的Intel&reg; AMT CIRA",
20217 "xloc": [
20218 - "default.handlebars->119->3369",
20219 - "default3.handlebars->117->3359"
20218 + "default.handlebars->119->3371",
20219 + "default3.handlebars->117->3361"
20220 ]
20221 },
20222 {
@@ -20245,8 +20245,8 @@
20245 "zh-chs": "已连接的用户",
20246 "zh-cht": "已连接的用户",
20247 "xloc": [
20248 - "default.handlebars->119->3374",
20249 - "default3.handlebars->117->3364"
20248 + "default.handlebars->119->3376",
20249 + "default3.handlebars->117->3366"
20250 ]
20251 },
20252 {
@@ -20519,8 +20519,8 @@
20519 "zh-chs": "连接数量",
20520 "zh-cht": "連接數量",
20521 "xloc": [
20522 - "default.handlebars->119->3400",
20523 - "default3.handlebars->117->3390"
20522 + "default.handlebars->119->3402",
20523 + "default3.handlebars->117->3392"
20524 ]
20525 },
20526 {
@@ -20590,8 +20590,8 @@
20590 "zh-chs": "连接转发器",
20591 "zh-cht": "連接轉發器",
20592 "xloc": [
20593 - "default.handlebars->119->3437",
20594 - "default3.handlebars->117->3427"
20593 + "default.handlebars->119->3439",
20594 + "default3.handlebars->117->3429"
20595 ]
20596 },
20597 {
@@ -20680,11 +20680,11 @@
20680 "zh-cht": "連接性",
20681 "xloc": [
20682 "default-mobile.handlebars->53->522",
20683 - "default.handlebars->119->2492",
20683 + "default.handlebars->119->2494",
20684 "default.handlebars->119->396",
20685 "default.handlebars->119->982",
20686 "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1",
20687 - "default3.handlebars->117->2489",
20687 + "default3.handlebars->117->2491",
20688 "default3.handlebars->117->392",
20689 "default3.handlebars->117->978",
20690 "default3.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
@@ -20716,8 +20716,8 @@
20716 "zh-chs": "同意",
20717 "zh-cht": "同意",
20718 "xloc": [
20719 - "default.handlebars->119->2717",
20720 - "default3.handlebars->117->2714"
20719 + "default.handlebars->119->2719",
20720 + "default3.handlebars->117->2716"
20721 ]
20722 },
20723 {
@@ -20878,8 +20878,8 @@
20878 "zh-chs": "Cookie编码器",
20879 "zh-cht": "Cookie編碼器",
20880 "xloc": [
20881 - "default.handlebars->119->3420",
20882 - "default3.handlebars->117->3410"
20881 + "default.handlebars->119->3422",
20882 + "default3.handlebars->117->3412"
20883 ]
20884 },
20885 {
@@ -21209,14 +21209,14 @@
21209 "zh-chs": "复制连结到剪贴板",
21210 "zh-cht": "複製連結到剪貼板",
21211 "xloc": [
21212 - "default.handlebars->119->2503",
21213 - "default.handlebars->119->2527",
21212 + "default.handlebars->119->2505",
21213 + "default.handlebars->119->2529",
21214 "default.handlebars->119->326",
21215 "default.handlebars->119->348",
21216 "default.handlebars->119->350",
21217 "default.handlebars->119->600",
21218 - "default3.handlebars->117->2500",
21219 - "default3.handlebars->117->2524",
21218 + "default3.handlebars->117->2502",
21219 + "default3.handlebars->117->2526",
21220 "default3.handlebars->117->321",
21221 "default3.handlebars->117->343",
21222 "default3.handlebars->117->345",
@@ -21379,8 +21379,8 @@
21379 "zh-chs": "复制:“{0}”到“{1}”",
21380 "zh-cht": "複製:“{0}”到“{1}”",
21381 "xloc": [
21382 - "default.handlebars->119->2601",
21383 - "default3.handlebars->117->2598"
21382 + "default.handlebars->119->2603",
21383 + "default3.handlebars->117->2600"
21384 ]
21385 },
21386 {
@@ -21589,8 +21589,8 @@
21589 "zh-chs": "核心服务器",
21590 "zh-cht": "核心伺服器",
21591 "xloc": [
21592 - "default.handlebars->119->3419",
21593 - "default3.handlebars->117->3409"
21592 + "default.handlebars->119->3421",
21593 + "default3.handlebars->117->3411"
21594 ]
21595 },
21596 {
@@ -21620,8 +21620,8 @@
21620 "zh-cht": "科西嘉文",
21621 "xloc": [
21622 "default-mobile.handlebars->53->155",
21623 - "default.handlebars->119->1903",
21624 - "default3.handlebars->117->1884",
21623 + "default.handlebars->119->1905",
21624 + "default3.handlebars->117->1886",
21625 "login2.handlebars->17->41"
21626 ]
21627 },
@@ -21629,7 +21629,7 @@
21629 "en": "Cosmo",
21630 "nl": "Cosmo",
21631 "xloc": [
21632 - "default3.handlebars->117->2090"
21632 + "default3.handlebars->117->2092"
21633 ]
21634 },
21635 {
@@ -21684,8 +21684,8 @@
21684 "zh-chs": "创建帐号",
21685 "zh-cht": "創建帳號",
21686 "xloc": [
21687 - "default.handlebars->119->2843",
21688 - "default3.handlebars->117->2839",
21687 + "default.handlebars->119->2845",
21688 + "default3.handlebars->117->2841",
21689 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
21690 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
21691 "login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -21772,9 +21772,9 @@
21772 "zh-chs": "创建登录令牌",
21773 "zh-cht": "創建登錄令牌",
21774 "xloc": [
21775 - "default.handlebars->119->2088",
21775 + "default.handlebars->119->2090",
21776 "default.handlebars->119->351",
21777 - "default3.handlebars->117->2070"
21777 + "default3.handlebars->117->2072"
21778 ]
21779 },
21780 {
@@ -21803,8 +21803,8 @@
21803 "zh-chs": "创建用户组",
21804 "zh-cht": "創建用戶群",
21805 "xloc": [
21806 - "default.handlebars->119->2883",
21807 - "default3.handlebars->117->2877"
21806 + "default.handlebars->119->2885",
21807 + "default3.handlebars->117->2879"
21808 ]
21809 },
21810 {
@@ -21863,8 +21863,8 @@
21863 "zh-chs": "使用以下选项创建一个新的设备组。",
21864 "zh-cht": "使用以下選項創建一個新的裝置群。",
21865 "xloc": [
21866 - "default.handlebars->119->2118",
21867 - "default3.handlebars->117->2118"
21866 + "default.handlebars->119->2120",
21867 + "default3.handlebars->117->2120"
21868 ]
21869 },
21870 {
@@ -21923,8 +21923,8 @@
21923 "zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。",
21924 "zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
21925 "xloc": [
21926 - "default.handlebars->119->2068",
21927 - "default3.handlebars->117->2049"
21926 + "default.handlebars->119->2070",
21927 + "default3.handlebars->117->2051"
21928 ]
21929 },
21930 {
@@ -21983,8 +21983,8 @@
21983 "zh-chs": "创建文件夹:“{0}”",
21984 "zh-cht": "創建文件夾:“{0}”",
21985 "xloc": [
21986 - "default.handlebars->119->2594",
21987 - "default3.handlebars->117->2591"
21986 + "default.handlebars->119->2596",
21987 + "default3.handlebars->117->2593"
21988 ]
21989 },
21990 {
@@ -22066,8 +22066,8 @@
22066 "nl": "Maak meerdere accounts tegelijk aan door een JSON of een CSV bestand te importeren",
22067 "uk": "Створіть кілька акаунтів одночасно, імпортувавши файл JSON або CSV",
22068 "xloc": [
22069 - "default.handlebars->119->2800",
22070 - "default3.handlebars->117->2796"
22069 + "default.handlebars->119->2802",
22070 + "default3.handlebars->117->2798"
22071 ]
22072 },
22073 {
@@ -22127,8 +22127,8 @@
22127 "zh-chs": "创建的设备组:{0}",
22128 "zh-cht": "創建的設備組:{0}",
22129 "xloc": [
22130 - "default.handlebars->119->2605",
22131 - "default3.handlebars->117->2602"
22130 + "default.handlebars->119->2607",
22131 + "default3.handlebars->117->2604"
22132 ]
22133 },
22134 {
@@ -22239,8 +22239,8 @@
22239 "zh-chs": "创建",
22240 "zh-cht": "創建",
22241 "xloc": [
22242 - "default.handlebars->119->2991",
22243 - "default3.handlebars->117->2985"
22242 + "default.handlebars->119->2993",
22243 + "default3.handlebars->117->2987"
22244 ]
22245 },
22246 {
@@ -22269,8 +22269,8 @@
22269 "zh-chs": "创建时间",
22270 "zh-cht": "創作時間",
22271 "xloc": [
22272 - "default.handlebars->119->2199",
22273 - "default3.handlebars->117->2195"
22272 + "default.handlebars->119->2201",
22273 + "default3.handlebars->117->2197"
22274 ]
22275 },
22276 {
@@ -22330,10 +22330,10 @@
22330 "zh-chs": "创建者",
22331 "zh-cht": "創作者",
22332 "xloc": [
22333 - "default.handlebars->119->2197",
22334 - "default.handlebars->119->2198",
22335 - "default3.handlebars->117->2193",
22336 - "default3.handlebars->117->2194"
22333 + "default.handlebars->119->2199",
22334 + "default.handlebars->119->2200",
22335 + "default3.handlebars->117->2195",
22336 + "default3.handlebars->117->2196"
22337 ]
22338 },
22339 {
@@ -22364,10 +22364,10 @@
22364 "xloc": [
22365 "default-mobile.handlebars->53->534",
22366 "default.handlebars->119->1378",
22367 - "default.handlebars->119->2156",
22367 + "default.handlebars->119->2158",
22368 "default.handlebars->119->994",
22369 "default3.handlebars->117->1364",
22370 - "default3.handlebars->117->2156",
22370 + "default3.handlebars->117->2158",
22371 "default3.handlebars->117->990"
22372 ]
22373 },
@@ -22398,8 +22398,8 @@
22398 "zh-cht": "克里語",
22399 "xloc": [
22400 "default-mobile.handlebars->53->156",
22401 - "default.handlebars->119->1904",
22402 - "default3.handlebars->117->1885",
22401 + "default.handlebars->119->1906",
22402 + "default3.handlebars->117->1887",
22403 "login2.handlebars->17->42"
22404 ]
22405 },
@@ -22430,8 +22430,8 @@
22430 "zh-cht": "克羅地亞文",
22431 "xloc": [
22432 "default-mobile.handlebars->53->157",
22433 - "default.handlebars->119->1905",
22434 - "default3.handlebars->117->1886",
22433 + "default.handlebars->119->1907",
22434 + "default3.handlebars->117->1888",
22435 "login2.handlebars->17->43"
22436 ]
22437 },
@@ -22741,9 +22741,9 @@
22741 "zh-chs": "当前密码不正确。",
22742 "zh-cht": "當前密碼不正確。",
22743 "xloc": [
22744 - "default-mobile.handlebars->53->1073",
22745 - "default.handlebars->119->3337",
22746 - "default3.handlebars->117->3327"
22744 + "default-mobile.handlebars->53->1075",
22745 + "default.handlebars->119->3339",
22746 + "default3.handlebars->117->3329"
22747 ]
22748 },
22749 {
@@ -22848,7 +22848,7 @@
22848 "en": "Cyborg",
22849 "nl": "Cyborg",
22850 "xloc": [
22851 - "default3.handlebars->117->2091"
22851 + "default3.handlebars->117->2093"
22852 ]
22853 },
22854 {
@@ -22906,8 +22906,8 @@
22906 "zh-cht": "捷克文",
22907 "xloc": [
22908 "default-mobile.handlebars->53->158",
22909 - "default.handlebars->119->1906",
22910 - "default3.handlebars->117->1887",
22909 + "default.handlebars->119->1908",
22910 + "default3.handlebars->117->1889",
22911 "login2.handlebars->17->44"
22912 ]
22913 },
@@ -23011,8 +23011,8 @@
23011 "zh-cht": "丹麥文",
23012 "xloc": [
23013 "default-mobile.handlebars->53->159",
23014 - "default.handlebars->119->1907",
23015 - "default3.handlebars->117->1888",
23014 + "default.handlebars->119->1909",
23015 + "default3.handlebars->117->1890",
23016 "login2.handlebars->17->45"
23017 ]
23018 },
@@ -23051,7 +23051,7 @@
23051 "en": "Darkly",
23052 "nl": "Donker",
23053 "xloc": [
23054 - "default3.handlebars->117->2092"
23054 + "default3.handlebars->117->2094"
23055 ]
23056 },
23057 {
@@ -23097,8 +23097,8 @@
23097 "pl": "Zapisy Bazy Danych",
23098 "uk": "Записи Бази Даних",
23099 "xloc": [
23100 - "default.handlebars->119->3196",
23101 - "default3.handlebars->117->3186"
23100 + "default.handlebars->119->3198",
23101 + "default3.handlebars->117->3188"
23102 ]
23103 },
23104 {
@@ -23128,8 +23128,8 @@
23128 "zh-cht": "日期和時間",
23129 "xloc": [
23130 "default-mobile.handlebars->53->317",
23131 - "default.handlebars->119->2065",
23132 - "default3.handlebars->117->2046"
23131 + "default.handlebars->119->2067",
23132 + "default3.handlebars->117->2048"
23133 ]
23134 },
23135 {
@@ -23160,11 +23160,11 @@
23160 "xloc": [
23161 "default-mobile.handlebars->53->607",
23162 "default.handlebars->119->1287",
23163 - "default.handlebars->119->3200",
23164 - "default.handlebars->119->3203",
23163 + "default.handlebars->119->3202",
23164 + "default.handlebars->119->3205",
23165 "default3.handlebars->117->1277",
23166 - "default3.handlebars->117->3190",
23167 - "default3.handlebars->117->3193"
23166 + "default3.handlebars->117->3192",
23167 + "default3.handlebars->117->3195"
23168 ]
23169 },
23170 {
@@ -23193,10 +23193,10 @@
23193 "zh-chs": "停用",
23194 "zh-cht": "停用",
23195 "xloc": [
23196 - "default.handlebars->119->2231",
23197 - "default.handlebars->119->2295",
23198 - "default3.handlebars->117->2227",
23199 - "default3.handlebars->117->2289"
23196 + "default.handlebars->119->2233",
23197 + "default.handlebars->119->2297",
23198 + "default3.handlebars->117->2229",
23199 + "default3.handlebars->117->2291"
23200 ]
23201 },
23202 {
@@ -23225,8 +23225,8 @@
23225 "zh-chs": "如果设置停用CCM",
23226 "zh-cht": "如果設置停用CCM",
23227 "xloc": [
23228 - "default.handlebars->119->2307",
23229 - "default3.handlebars->117->2301"
23228 + "default.handlebars->119->2309",
23229 + "default3.handlebars->117->2303"
23230 ]
23231 },
23232 {
@@ -23312,15 +23312,15 @@
23312 "zh-chs": "默认",
23313 "zh-cht": "默認",
23314 "xloc": [
23315 - "default.handlebars->119->2830",
23316 - "default.handlebars->119->2879",
23317 - "default.handlebars->119->2890",
23318 - "default.handlebars->119->2964",
23319 - "default3.handlebars->117->2088",
23320 - "default3.handlebars->117->2826",
23321 - "default3.handlebars->117->2873",
23322 - "default3.handlebars->117->2884",
23323 - "default3.handlebars->117->2958"
23315 + "default.handlebars->119->2832",
23316 + "default.handlebars->119->2881",
23317 + "default.handlebars->119->2892",
23318 + "default.handlebars->119->2966",
23319 + "default3.handlebars->117->2090",
23320 + "default3.handlebars->117->2828",
23321 + "default3.handlebars->117->2875",
23322 + "default3.handlebars->117->2886",
23323 + "default3.handlebars->117->2960"
23324 ]
23325 },
23326 {
@@ -23387,14 +23387,14 @@
23387 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
23388 "default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
23389 "default.handlebars->119->1546",
23390 - "default.handlebars->119->2534",
23390 + "default.handlebars->119->2536",
23391 "default.handlebars->119->842",
23392 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
23393 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
23394 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
23395 "default.handlebars->filesContextMenu->5",
23396 "default3.handlebars->117->1531",
23397 - "default3.handlebars->117->2531",
23397 + "default3.handlebars->117->2533",
23398 "default3.handlebars->117->838",
23399 "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
23400 "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -23438,8 +23438,8 @@
23438 "zh-cht": "刪除帳戶",
23439 "xloc": [
23440 "default-mobile.handlebars->53->333",
23441 - "default.handlebars->119->2103",
23442 - "default3.handlebars->117->2083"
23441 + "default.handlebars->119->2105",
23442 + "default3.handlebars->117->2085"
23443 ]
23444 },
23445 {
@@ -23468,7 +23468,7 @@
23468 "zh-chs": "删除帐户",
23469 "zh-cht": "刪除帳戶",
23470 "xloc": [
23471 - "default.handlebars->119->2787"
23471 + "default.handlebars->119->2789"
23472 ]
23473 },
23474 {
@@ -23558,12 +23558,12 @@
23558 "zh-chs": "删除群组",
23559 "zh-cht": "刪除群組",
23560 "xloc": [
23561 - "default-mobile.handlebars->53->980",
23562 - "default-mobile.handlebars->53->983",
23563 - "default.handlebars->119->2283",
23564 - "default.handlebars->119->2324",
23565 - "default3.handlebars->117->2279",
23566 - "default3.handlebars->117->2318"
23561 + "default-mobile.handlebars->53->982",
23562 + "default-mobile.handlebars->53->985",
23563 + "default.handlebars->119->2285",
23564 + "default.handlebars->119->2326",
23565 + "default3.handlebars->117->2281",
23566 + "default3.handlebars->117->2320"
23567 ]
23568 },
23569 {
@@ -23649,8 +23649,8 @@
23649 "zh-chs": "删除用户",
23650 "zh-cht": "刪除用戶",
23651 "xloc": [
23652 - "default.handlebars->119->3038",
23653 - "default3.handlebars->117->3032"
23652 + "default.handlebars->119->3040",
23653 + "default3.handlebars->117->3034"
23654 ]
23655 },
23656 {
@@ -23679,10 +23679,10 @@
23679 "zh-chs": "删除用户群组",
23680 "zh-cht": "刪除用戶群組",
23681 "xloc": [
23682 - "default.handlebars->119->2932",
23683 - "default.handlebars->119->2944",
23684 - "default3.handlebars->117->2926",
23685 - "default3.handlebars->117->2938"
23682 + "default.handlebars->119->2934",
23683 + "default.handlebars->119->2946",
23684 + "default3.handlebars->117->2928",
23685 + "default3.handlebars->117->2940"
23686 ]
23687 },
23688 {
@@ -23711,8 +23711,8 @@
23711 "zh-chs": "删除用户群组",
23712 "zh-cht": "刪除用戶群組",
23713 "xloc": [
23714 - "default.handlebars->119->2877",
23715 - "default3.handlebars->117->2871"
23714 + "default.handlebars->119->2879",
23715 + "default3.handlebars->117->2873"
23716 ]
23717 },
23718 {
@@ -23741,8 +23741,8 @@
23741 "zh-chs": "删除用户{0}",
23742 "zh-cht": "刪除用戶{0}",
23743 "xloc": [
23744 - "default.handlebars->119->3106",
23745 - "default3.handlebars->117->3094"
23744 + "default.handlebars->119->3108",
23745 + "default3.handlebars->117->3096"
23746 ]
23747 },
23748 {
@@ -23772,9 +23772,9 @@
23772 "zh-cht": "刪除帳戶",
23773 "xloc": [
23774 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->p2AccountPassActions->5->0",
23775 - "default.handlebars->119->2783",
23775 + "default.handlebars->119->2785",
23776 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7",
23777 - "default3.handlebars->117->2780",
23777 + "default3.handlebars->117->2782",
23778 "default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
23779 ]
23780 },
@@ -23834,8 +23834,8 @@
23834 "zh-chs": "删除群组",
23835 "zh-cht": "刪除群組",
23836 "xloc": [
23837 - "default.handlebars->119->2873",
23838 - "default3.handlebars->117->2867"
23837 + "default.handlebars->119->2875",
23838 + "default3.handlebars->117->2869"
23839 ]
23840 },
23841 {
@@ -23894,8 +23894,8 @@
23894 "zh-chs": "递归删除:“{0}”,{1}个元素已删除",
23895 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
23896 "xloc": [
23897 - "default.handlebars->119->2596",
23898 - "default3.handlebars->117->2593"
23897 + "default.handlebars->119->2598",
23898 + "default3.handlebars->117->2595"
23899 ]
23900 },
23901 {
@@ -23927,9 +23927,9 @@
23927 "default-mobile.handlebars->53->381",
23928 "default-mobile.handlebars->53->709",
23929 "default.handlebars->119->1548",
23930 - "default.handlebars->119->2536",
23930 + "default.handlebars->119->2538",
23931 "default3.handlebars->117->1533",
23932 - "default3.handlebars->117->2533",
23932 + "default3.handlebars->117->2535",
23933 "sharing-mobile.handlebars->53->87",
23934 "sharing.handlebars->47->63"
23935 ]
@@ -23960,8 +23960,8 @@
23960 "zh-chs": "删除用户群组{0}?",
23961 "zh-cht": "刪除用戶群組{0}?",
23962 "xloc": [
23963 - "default.handlebars->119->2942",
23964 - "default3.handlebars->117->2936"
23963 + "default.handlebars->119->2944",
23964 + "default3.handlebars->117->2938"
23965 ]
23966 },
23967 {
@@ -23993,9 +23993,9 @@
23993 "default-mobile.handlebars->53->380",
23994 "default-mobile.handlebars->53->708",
23995 "default.handlebars->119->1547",
23996 - "default.handlebars->119->2535",
23996 + "default.handlebars->119->2537",
23997 "default3.handlebars->117->1532",
23998 - "default3.handlebars->117->2532",
23998 + "default3.handlebars->117->2534",
23999 "sharing-mobile.handlebars->53->86",
24000 "sharing.handlebars->47->62"
24001 ]
@@ -24055,8 +24055,8 @@
24055 "zh-chs": "删除:“{0}”",
24056 "zh-cht": "刪除:“{0}”",
24057 "xloc": [
24058 - "default.handlebars->119->2595",
24059 - "default3.handlebars->117->2592"
24058 + "default.handlebars->119->2597",
24059 + "default3.handlebars->117->2594"
24060 ]
24061 },
24062 {
@@ -24085,8 +24085,8 @@
24085 "zh-chs": "删除:“{0}”,{1}个元素已删除",
24086 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
24087 "xloc": [
24088 - "default.handlebars->119->2597",
24089 - "default3.handlebars->117->2594"
24088 + "default.handlebars->119->2599",
24089 + "default3.handlebars->117->2596"
24090 ]
24091 },
24092 {
@@ -24135,8 +24135,8 @@
24135 "pl": "Odmówiono zalogowania użytkownika z {0}, {1}, {2}",
24136 "uk": "Відмовлено у вході користувачу з {0}, {1}, {2}",
24137 "xloc": [
24138 - "default.handlebars->119->2705",
24139 - "default3.handlebars->117->2702"
24138 + "default.handlebars->119->2707",
24139 + "default3.handlebars->117->2704"
24140 ]
24141 },
24142 {
@@ -24308,21 +24308,21 @@
24308 "default-mobile.handlebars->53->625",
24309 "default-mobile.handlebars->53->735",
24310 "default-mobile.handlebars->53->793",
24311 - "default-mobile.handlebars->53->966",
24312 - "default-mobile.handlebars->53->989",
24311 + "default-mobile.handlebars->53->968",
24312 + "default-mobile.handlebars->53->991",
24313 "default.handlebars->119->1357",
24314 "default.handlebars->119->1591",
24315 "default.handlebars->119->1619",
24316 "default.handlebars->119->1629",
24317 "default.handlebars->119->169",
24318 - "default.handlebars->119->2128",
24319 - "default.handlebars->119->2190",
24320 - "default.handlebars->119->2330",
24321 - "default.handlebars->119->2715",
24322 - "default.handlebars->119->2882",
24323 - "default.handlebars->119->2893",
24324 - "default.handlebars->119->2894",
24325 - "default.handlebars->119->2940",
24318 + "default.handlebars->119->2130",
24319 + "default.handlebars->119->2192",
24320 + "default.handlebars->119->2332",
24321 + "default.handlebars->119->2717",
24322 + "default.handlebars->119->2884",
24323 + "default.handlebars->119->2895",
24324 + "default.handlebars->119->2896",
24325 + "default.handlebars->119->2942",
24326 "default.handlebars->119->883",
24327 "default.handlebars->119->884",
24328 "default.handlebars->container->column_l->p42->p42tbl->1->0->3",
@@ -24331,15 +24331,15 @@
24331 "default3.handlebars->117->1604",
24332 "default3.handlebars->117->1614",
24333 "default3.handlebars->117->167",
24334 - "default3.handlebars->117->2128",
24335 - "default3.handlebars->117->2186",
24336 - "default3.handlebars->117->2326",
24337 - "default3.handlebars->117->2327",
24338 - "default3.handlebars->117->2712",
24339 - "default3.handlebars->117->2876",
24340 - "default3.handlebars->117->2887",
24341 - "default3.handlebars->117->2888",
24342 - "default3.handlebars->117->2934",
24334 + "default3.handlebars->117->2130",
24335 + "default3.handlebars->117->2188",
24336 + "default3.handlebars->117->2328",
24337 + "default3.handlebars->117->2329",
24338 + "default3.handlebars->117->2714",
24339 + "default3.handlebars->117->2878",
24340 + "default3.handlebars->117->2889",
24341 + "default3.handlebars->117->2890",
24342 + "default3.handlebars->117->2936",
24343 "default3.handlebars->117->879",
24344 "default3.handlebars->117->880",
24345 "default3.handlebars->container->column_l->p42->p42tbl->1->0->7"
@@ -24429,24 +24429,24 @@
24429 "default.handlebars->119->1078",
24430 "default.handlebars->119->1192",
24431 "default.handlebars->119->1476",
24432 - "default.handlebars->119->2261",
24433 - "default.handlebars->119->2336",
24434 - "default.handlebars->119->3169",
24435 - "default.handlebars->119->3235",
24436 - "default.handlebars->119->3288",
24437 - "default.handlebars->119->3394",
24432 + "default.handlebars->119->2263",
24433 + "default.handlebars->119->2338",
24434 + "default.handlebars->119->3171",
24435 + "default.handlebars->119->3237",
24436 + "default.handlebars->119->3290",
24437 + "default.handlebars->119->3396",
24438 "default.handlebars->119->848",
24439 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
24440 "default.handlebars->contextMenu->cxdesktop",
24441 "default3.handlebars->117->1074",
24442 "default3.handlebars->117->1186",
24443 "default3.handlebars->117->1461",
24444 - "default3.handlebars->117->2257",
24445 - "default3.handlebars->117->2333",
24446 - "default3.handlebars->117->3159",
24447 - "default3.handlebars->117->3225",
24448 - "default3.handlebars->117->3278",
24449 - "default3.handlebars->117->3384",
24444 + "default3.handlebars->117->2259",
24445 + "default3.handlebars->117->2335",
24446 + "default3.handlebars->117->3161",
24447 + "default3.handlebars->117->3227",
24448 + "default3.handlebars->117->3280",
24449 + "default3.handlebars->117->3386",
24450 "default3.handlebars->117->844",
24451 "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
24452 "default3.handlebars->contextMenu->cxdesktop",
@@ -24483,10 +24483,10 @@
24483 "xloc": [
24484 "default.handlebars->119->1082",
24485 "default.handlebars->119->1195",
24486 - "default.handlebars->119->2265",
24486 + "default.handlebars->119->2267",
24487 "default3.handlebars->117->1078",
24488 "default3.handlebars->117->1189",
24489 - "default3.handlebars->117->2261"
24489 + "default3.handlebars->117->2263"
24490 ]
24491 },
24492 {
@@ -24516,9 +24516,9 @@
24516 "zh-cht": "桌面+終端",
24517 "xloc": [
24518 "default.handlebars->119->1079",
24519 - "default.handlebars->119->2262",
24519 + "default.handlebars->119->2264",
24520 "default3.handlebars->117->1075",
24521 - "default3.handlebars->117->2258"
24521 + "default3.handlebars->117->2260"
24522 ]
24523 },
24524 {
@@ -24549,10 +24549,10 @@
24549 "xloc": [
24550 "default.handlebars->119->1083",
24551 "default.handlebars->119->1197",
24552 - "default.handlebars->119->2266",
24552 + "default.handlebars->119->2268",
24553 "default3.handlebars->117->1079",
24554 "default3.handlebars->117->1191",
24555 - "default3.handlebars->117->2262"
24555 + "default3.handlebars->117->2264"
24556 ]
24557 },
24558 {
@@ -24611,8 +24611,8 @@
24611 "zh-chs": "桌面复用",
24612 "zh-cht": "桌面多路復用",
24613 "xloc": [
24614 - "default.handlebars->119->3399",
24615 - "default3.handlebars->117->3389"
24614 + "default.handlebars->119->3401",
24615 + "default3.handlebars->117->3391"
24616 ]
24617 },
24618 {
@@ -24641,13 +24641,13 @@
24641 "zh-chs": "桌面通知",
24642 "zh-cht": "桌面通知",
24643 "xloc": [
24644 - "default.handlebars->119->2212",
24645 - "default.handlebars->119->2901",
24646 - "default.handlebars->119->3006",
24644 + "default.handlebars->119->2214",
24645 + "default.handlebars->119->2903",
24646 + "default.handlebars->119->3008",
24647 "default.handlebars->119->956",
24648 - "default3.handlebars->117->2208",
24649 - "default3.handlebars->117->2895",
24650 - "default3.handlebars->117->3000",
24648 + "default3.handlebars->117->2210",
24649 + "default3.handlebars->117->2897",
24650 + "default3.handlebars->117->3002",
24651 "default3.handlebars->117->952"
24652 ]
24653 },
@@ -24677,13 +24677,13 @@
24677 "zh-chs": "桌面提示",
24678 "zh-cht": "桌面提示",
24679 "xloc": [
24680 - "default.handlebars->119->2211",
24681 - "default.handlebars->119->2900",
24682 - "default.handlebars->119->3005",
24680 + "default.handlebars->119->2213",
24681 + "default.handlebars->119->2902",
24682 + "default.handlebars->119->3007",
24683 "default.handlebars->119->955",
24684 - "default3.handlebars->117->2207",
24685 - "default3.handlebars->117->2894",
24686 - "default3.handlebars->117->2999",
24684 + "default3.handlebars->117->2209",
24685 + "default3.handlebars->117->2896",
24686 + "default3.handlebars->117->3001",
24687 "default3.handlebars->117->951"
24688 ]
24689 },
@@ -24713,13 +24713,13 @@
24713 "zh-chs": "桌面提示+工具栏",
24714 "zh-cht": "桌面提示+工具欄",
24715 "xloc": [
24716 - "default.handlebars->119->2209",
24717 - "default.handlebars->119->2898",
24718 - "default.handlebars->119->3003",
24716 + "default.handlebars->119->2211",
24717 + "default.handlebars->119->2900",
24718 + "default.handlebars->119->3005",
24719 "default.handlebars->119->953",
24720 - "default3.handlebars->117->2205",
24721 - "default3.handlebars->117->2892",
24722 - "default3.handlebars->117->2997",
24720 + "default3.handlebars->117->2207",
24721 + "default3.handlebars->117->2894",
24722 + "default3.handlebars->117->2999",
24723 "default3.handlebars->117->949"
24724 ]
24725 },
@@ -24749,8 +24749,8 @@
24749 "zh-chs": "桌面会话",
24750 "zh-cht": "桌面會話",
24751 "xloc": [
24752 - "default.handlebars->119->3159",
24753 - "default3.handlebars->117->3149"
24752 + "default.handlebars->119->3161",
24753 + "default3.handlebars->117->3151"
24754 ]
24755 },
24756 {
@@ -24866,13 +24866,13 @@
24866 "zh-chs": "桌面工具栏",
24867 "zh-cht": "桌面工具欄",
24868 "xloc": [
24869 - "default.handlebars->119->2210",
24870 - "default.handlebars->119->2899",
24871 - "default.handlebars->119->3004",
24869 + "default.handlebars->119->2212",
24870 + "default.handlebars->119->2901",
24871 + "default.handlebars->119->3006",
24872 "default.handlebars->119->954",
24873 - "default3.handlebars->117->2206",
24874 - "default3.handlebars->117->2893",
24875 - "default3.handlebars->117->2998",
24873 + "default3.handlebars->117->2208",
24874 + "default3.handlebars->117->2895",
24875 + "default3.handlebars->117->3000",
24876 "default3.handlebars->117->950"
24877 ]
24878 },
@@ -24902,8 +24902,8 @@
24902 "zh-chs": "仅桌面视图",
24903 "zh-cht": "僅桌面視圖",
24904 "xloc": [
24905 - "default.handlebars->119->2979",
24906 - "default3.handlebars->117->2973"
24905 + "default.handlebars->119->2981",
24906 + "default3.handlebars->117->2975"
24907 ]
24908 },
24909 {
@@ -25059,12 +25059,12 @@
25059 "default-mobile.handlebars->53->564",
25060 "default.handlebars->119->1132",
25061 "default.handlebars->119->1157",
25062 - "default.handlebars->119->2429",
25062 + "default.handlebars->119->2431",
25063 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
25064 "default.handlebars->contextMenu->cxdetails",
25065 "default3.handlebars->117->1126",
25066 "default3.handlebars->117->1151",
25067 - "default3.handlebars->117->2426",
25067 + "default3.handlebars->117->2428",
25068 "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
25069 "default3.handlebars->contextMenu->cxdetails"
25070 ]
@@ -25127,20 +25127,20 @@
25127 "xloc": [
25128 "default-mobile.handlebars->53->787",
25129 "default.handlebars->119->1613",
25130 - "default.handlebars->119->1851",
25131 - "default.handlebars->119->2366",
25130 + "default.handlebars->119->1853",
25131 + "default.handlebars->119->2368",
25132 "default.handlebars->119->296",
25133 - "default.handlebars->119->3125",
25134 - "default.handlebars->119->3199",
25135 - "default.handlebars->119->3219",
25133 + "default.handlebars->119->3127",
25134 + "default.handlebars->119->3201",
25135 + "default.handlebars->119->3221",
25136 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5",
25137 "default3.handlebars->117->1598",
25138 - "default3.handlebars->117->1832",
25139 - "default3.handlebars->117->2363",
25138 + "default3.handlebars->117->1834",
25139 + "default3.handlebars->117->2365",
25140 "default3.handlebars->117->291",
25141 - "default3.handlebars->117->3113",
25142 - "default3.handlebars->117->3189",
25143 - "default3.handlebars->117->3209",
25141 + "default3.handlebars->117->3115",
25142 + "default3.handlebars->117->3191",
25143 + "default3.handlebars->117->3211",
25144 "default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSort->sortselect->5"
25145 ]
25146 },
@@ -25292,8 +25292,8 @@
25292 "zh-chs": "设备详情",
25293 "zh-cht": "設備詳情",
25294 "xloc": [
25295 - "default.handlebars->119->2390",
25296 - "default3.handlebars->117->2387"
25295 + "default.handlebars->119->2392",
25296 + "default3.handlebars->117->2389"
25297 ]
25298 },
25299 {
@@ -25353,29 +25353,29 @@
25353 "zh-cht": "裝置群",
25354 "xloc": [
25355 "agent-translations.json",
25356 - "default-mobile.handlebars->53->1051",
25357 - "default.handlebars->119->2361",
25358 - "default.handlebars->119->2364",
25359 - "default.handlebars->119->2365",
25360 - "default.handlebars->119->2732",
25361 - "default.handlebars->119->2924",
25362 - "default.handlebars->119->2930",
25363 - "default.handlebars->119->3113",
25364 - "default.handlebars->119->3182",
25365 - "default.handlebars->119->3206",
25366 - "default.handlebars->119->3222",
25367 - "default.handlebars->119->3315",
25368 - "default3.handlebars->117->2358",
25369 - "default3.handlebars->117->2361",
25370 - "default3.handlebars->117->2362",
25371 - "default3.handlebars->117->2729",
25372 - "default3.handlebars->117->2918",
25373 - "default3.handlebars->117->2924",
25374 - "default3.handlebars->117->3101",
25375 - "default3.handlebars->117->3172",
25376 - "default3.handlebars->117->3196",
25377 - "default3.handlebars->117->3212",
25378 - "default3.handlebars->117->3305"
25356 + "default-mobile.handlebars->53->1053",
25357 + "default.handlebars->119->2363",
25358 + "default.handlebars->119->2366",
25359 + "default.handlebars->119->2367",
25360 + "default.handlebars->119->2734",
25361 + "default.handlebars->119->2926",
25362 + "default.handlebars->119->2932",
25363 + "default.handlebars->119->3115",
25364 + "default.handlebars->119->3184",
25365 + "default.handlebars->119->3208",
25366 + "default.handlebars->119->3224",
25367 + "default.handlebars->119->3317",
25368 + "default3.handlebars->117->2360",
25369 + "default3.handlebars->117->2363",
25370 + "default3.handlebars->117->2364",
25371 + "default3.handlebars->117->2731",
25372 + "default3.handlebars->117->2920",
25373 + "default3.handlebars->117->2926",
25374 + "default3.handlebars->117->3103",
25375 + "default3.handlebars->117->3174",
25376 + "default3.handlebars->117->3198",
25377 + "default3.handlebars->117->3214",
25378 + "default3.handlebars->117->3307"
25379 ]
25380 },
25381 {
@@ -25404,9 +25404,9 @@
25404 "zh-chs": "设备组用户",
25405 "zh-cht": "裝置群用戶",
25406 "xloc": [
25407 - "default-mobile.handlebars->53->1040",
25408 - "default.handlebars->119->2436",
25409 - "default3.handlebars->117->2433"
25407 + "default-mobile.handlebars->53->1042",
25408 + "default.handlebars->119->2438",
25409 + "default3.handlebars->117->2435"
25410 ]
25411 },
25412 {
@@ -25436,17 +25436,17 @@
25436 "zh-cht": "裝置群",
25437 "xloc": [
25438 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
25439 - "default.handlebars->119->2748",
25440 - "default.handlebars->119->2867",
25441 - "default.handlebars->119->2911",
25442 - "default.handlebars->119->3000",
25443 - "default.handlebars->119->3372",
25439 + "default.handlebars->119->2750",
25440 + "default.handlebars->119->2869",
25441 + "default.handlebars->119->2913",
25442 + "default.handlebars->119->3002",
25443 + "default.handlebars->119->3374",
25444 "default.handlebars->container->column_l->p2->p2info->9",
25445 - "default3.handlebars->117->2745",
25446 - "default3.handlebars->117->2861",
25447 - "default3.handlebars->117->2905",
25448 - "default3.handlebars->117->2994",
25449 - "default3.handlebars->117->3362",
25445 + "default3.handlebars->117->2747",
25446 + "default3.handlebars->117->2863",
25447 + "default3.handlebars->117->2907",
25448 + "default3.handlebars->117->2996",
25449 + "default3.handlebars->117->3364",
25450 "default3.handlebars->container->column_l->p2->p2info->9"
25451 ]
25452 },
@@ -25568,11 +25568,11 @@
25568 "xloc": [
25569 "default-mobile.handlebars->53->623",
25570 "default.handlebars->119->1355",
25571 - "default.handlebars->119->3181",
25571 + "default.handlebars->119->3183",
25572 "default.handlebars->119->508",
25573 "default.handlebars->119->517",
25574 "default3.handlebars->117->1340",
25575 - "default3.handlebars->117->3171",
25575 + "default3.handlebars->117->3173",
25576 "default3.handlebars->117->504",
25577 "default3.handlebars->117->513",
25578 "player.handlebars->29->25"
@@ -25636,7 +25636,7 @@
25636 "zh-chs": "设备配对链接",
25637 "zh-cht": "設備配對鏈接",
25638 "xloc": [
25639 - "default-mobile.handlebars->53->994"
25639 + "default-mobile.handlebars->53->996"
25640 ]
25641 },
25642 {
@@ -25645,8 +25645,8 @@
25645 "nl": "Apparaat is ingeschakeld",
25646 "uk": "Пристрій Увімкнено",
25647 "xloc": [
25648 - "default.handlebars->119->2709",
25649 - "default3.handlebars->117->2706"
25648 + "default.handlebars->119->2711",
25649 + "default3.handlebars->117->2708"
25650 ]
25651 },
25652 {
@@ -25675,8 +25675,8 @@
25675 "zh-chs": "设备推送",
25676 "zh-cht": "設備推送",
25677 "xloc": [
25678 - "default.handlebars->119->3020",
25679 - "default3.handlebars->117->3014"
25678 + "default.handlebars->119->3022",
25679 + "default3.handlebars->117->3016"
25680 ]
25681 },
25682 {
@@ -25691,8 +25691,8 @@
25691 "pl": "Zapis Powiadomień Push Urządzenia",
25692 "uk": "Запис Push-Сповіщень Пристрою",
25693 "xloc": [
25694 - "default.handlebars->119->3285",
25695 - "default3.handlebars->117->3275"
25694 + "default.handlebars->119->3287",
25695 + "default3.handlebars->117->3277"
25696 ]
25697 },
25698 {
@@ -25707,8 +25707,8 @@
25707 "pl": "Zapis SMBIOS urządzenia",
25708 "uk": "SMBIOS запис пристрою",
25709 "xloc": [
25710 - "default.handlebars->119->3284",
25711 - "default3.handlebars->117->3274"
25710 + "default.handlebars->119->3286",
25711 + "default3.handlebars->117->3276"
25712 ]
25713 },
25714 {
@@ -25790,9 +25790,9 @@
25790 "zh-cht": "設備共享鏈接",
25791 "xloc": [
25792 "default.handlebars->119->1075",
25793 - "default.handlebars->119->2258",
25793 + "default.handlebars->119->2260",
25794 "default3.handlebars->117->1071",
25795 - "default3.handlebars->117->2254"
25795 + "default3.handlebars->117->2256"
25796 ]
25797 },
25798 {
@@ -25946,17 +25946,17 @@
25946 "default.handlebars->119->1101",
25947 "default.handlebars->119->1105",
25948 "default.handlebars->119->1109",
25949 - "default.handlebars->119->2091",
25950 - "default.handlebars->119->2463",
25951 - "default.handlebars->119->2467",
25952 - "default.handlebars->119->2471",
25949 + "default.handlebars->119->2093",
25950 + "default.handlebars->119->2465",
25951 + "default.handlebars->119->2469",
25952 + "default.handlebars->119->2473",
25953 "default3.handlebars->117->1095",
25954 "default3.handlebars->117->1099",
25955 "default3.handlebars->117->1103",
25956 - "default3.handlebars->117->2073",
25957 - "default3.handlebars->117->2460",
25958 - "default3.handlebars->117->2464",
25959 - "default3.handlebars->117->2468"
25956 + "default3.handlebars->117->2075",
25957 + "default3.handlebars->117->2462",
25958 + "default3.handlebars->117->2466",
25959 + "default3.handlebars->117->2470"
25960 ]
25961 },
25962 {
@@ -25988,17 +25988,17 @@
25988 "default.handlebars->119->1102",
25989 "default.handlebars->119->1106",
25990 "default.handlebars->119->1110",
25991 - "default.handlebars->119->2092",
25992 - "default.handlebars->119->2464",
25993 - "default.handlebars->119->2468",
25994 - "default.handlebars->119->2472",
25991 + "default.handlebars->119->2094",
25992 + "default.handlebars->119->2466",
25993 + "default.handlebars->119->2470",
25994 + "default.handlebars->119->2474",
25995 "default3.handlebars->117->1096",
25996 "default3.handlebars->117->1100",
25997 "default3.handlebars->117->1104",
25998 - "default3.handlebars->117->2074",
25999 - "default3.handlebars->117->2461",
26000 - "default3.handlebars->117->2465",
26001 - "default3.handlebars->117->2469"
25998 + "default3.handlebars->117->2076",
25999 + "default3.handlebars->117->2463",
26000 + "default3.handlebars->117->2467",
26001 + "default3.handlebars->117->2471"
26002 ]
26003 },
26004 {
@@ -26027,8 +26027,8 @@
26027 "zh-chs": "创建的设备组:{0}",
26028 "zh-cht": "設備組已創建:{0}",
26029 "xloc": [
26030 - "default.handlebars->119->2626",
26031 - "default3.handlebars->117->2623"
26030 + "default.handlebars->119->2628",
26031 + "default3.handlebars->117->2625"
26032 ]
26033 },
26034 {
@@ -26057,8 +26057,8 @@
26057 "zh-chs": "设备组已删除:{0}",
26058 "zh-cht": "設備組已刪除:{0}",
26059 "xloc": [
26060 - "default.handlebars->119->2627",
26061 - "default3.handlebars->117->2624"
26060 + "default.handlebars->119->2629",
26061 + "default3.handlebars->117->2626"
26062 ]
26063 },
26064 {
@@ -26087,8 +26087,8 @@
26087 "zh-chs": "设备组成员身份已更改:{0}",
26088 "zh-cht": "設備組成員身份已更改:{0}",
26089 "xloc": [
26090 - "default.handlebars->119->2628",
26091 - "default3.handlebars->117->2625"
26090 + "default.handlebars->119->2630",
26091 + "default3.handlebars->117->2627"
26092 ]
26093 },
26094 {
@@ -26148,8 +26148,8 @@
26148 "zh-chs": "设备组通知已更改",
26149 "zh-cht": "設備組通知已更改",
26150 "xloc": [
26151 - "default.handlebars->119->2623",
26152 - "default3.handlebars->117->2620"
26151 + "default.handlebars->119->2625",
26152 + "default3.handlebars->117->2622"
26153 ]
26154 },
26155 {
@@ -26164,8 +26164,8 @@
26164 "pl": "Zapis grupy urządzeń",
26165 "uk": "Запис групи пристроїв",
26166 "xloc": [
26167 - "default.handlebars->119->3270",
26168 - "default3.handlebars->117->3260"
26167 + "default.handlebars->119->3272",
26168 + "default3.handlebars->117->3262"
26169 ]
26170 },
26171 {
@@ -26194,8 +26194,8 @@
26194 "zh-chs": "未删除的设备组:{0}",
26195 "zh-cht": "未刪除的設備組:{0}",
26196 "xloc": [
26197 - "default.handlebars->119->2606",
26198 - "default3.handlebars->117->2603"
26197 + "default.handlebars->119->2608",
26198 + "default3.handlebars->117->2605"
26199 ]
26200 },
26201 {
@@ -26224,8 +26224,8 @@
26224 "zh-chs": "设备组 {0} 已更改:{1}",
26225 "zh-cht": "設備組 {0} 已更改:{1}",
26226 "xloc": [
26227 - "default.handlebars->119->2692",
26228 - "default3.handlebars->117->2689"
26227 + "default.handlebars->119->2694",
26228 + "default3.handlebars->117->2691"
26229 ]
26230 },
26231 {
@@ -26270,8 +26270,8 @@
26270 "pl": "Zapisy informacji urządzenia",
26271 "uk": "Записи інформації про пристрій",
26272 "xloc": [
26273 - "default.handlebars->119->3272",
26274 - "default3.handlebars->117->3262"
26273 + "default.handlebars->119->3274",
26274 + "default3.handlebars->117->3264"
26275 ]
26276 },
26277 {
@@ -26901,8 +26901,8 @@
26901 "pl": "Zapisy zmiany stanu zasilania",
26902 "uk": "Записи про зміни стану живлення",
26903 "xloc": [
26904 - "default.handlebars->119->3278",
26905 - "default3.handlebars->117->3268"
26904 + "default.handlebars->119->3280",
26905 + "default3.handlebars->117->3270"
26906 ]
26907 },
26908 {
@@ -26917,8 +26917,8 @@
26917 "pl": "Zapis urządzenia",
26918 "uk": "Запис пристрою",
26919 "xloc": [
26920 - "default.handlebars->119->3269",
26921 - "default3.handlebars->117->3259"
26920 + "default.handlebars->119->3271",
26921 + "default3.handlebars->117->3261"
26922 ]
26923 },
26924 {
@@ -26947,8 +26947,8 @@
26947 "zh-chs": "设备请求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
26948 "zh-cht": "設備請求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
26949 "xloc": [
26950 - "default.handlebars->119->2661",
26951 - "default3.handlebars->117->2658"
26950 + "default.handlebars->119->2663",
26951 + "default3.handlebars->117->2660"
26952 ]
26953 },
26954 {
@@ -26977,8 +26977,8 @@
26977 "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
26978 "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
26979 "xloc": [
26980 - "default.handlebars->119->2608",
26981 - "default3.handlebars->117->2605"
26980 + "default.handlebars->119->2610",
26981 + "default3.handlebars->117->2607"
26982 ]
26983 },
26984 {
@@ -26993,8 +26993,8 @@
26993 "pl": "Zapisy udostępniania urządzenia",
26994 "uk": "Записи поширеного пристрою",
26995 "xloc": [
26996 - "default.handlebars->119->3282",
26997 - "default3.handlebars->117->3272"
26996 + "default.handlebars->119->3284",
26997 + "default3.handlebars->117->3274"
26998 ]
26999 },
27000 {
@@ -27009,8 +27009,8 @@
27009 "pl": "Zapisy urządzenia, użytkowników, grup i inne",
27010 "uk": "Пристрій, користувачі, групи та інші записи",
27011 "xloc": [
27012 - "default.handlebars->119->3286",
27013 - "default3.handlebars->117->3276"
27012 + "default.handlebars->119->3288",
27013 + "default3.handlebars->117->3278"
27014 ]
27015 },
27016 {
@@ -27039,12 +27039,12 @@
27039 "zh-chs": "设备",
27040 "zh-cht": "裝置",
27041 "xloc": [
27042 - "default.handlebars->119->2281",
27043 - "default.handlebars->119->2868",
27044 - "default.handlebars->119->2912",
27045 - "default3.handlebars->117->2277",
27046 - "default3.handlebars->117->2862",
27047 - "default3.handlebars->117->2906"
27042 + "default.handlebars->119->2283",
27043 + "default.handlebars->119->2870",
27044 + "default.handlebars->119->2914",
27045 + "default3.handlebars->117->2279",
27046 + "default3.handlebars->117->2864",
27047 + "default3.handlebars->117->2908"
27048 ]
27049 },
27050 {
@@ -27290,8 +27290,8 @@
27290 "en": "Disabled Duo two-factor authentication",
27291 "nl": "Duo twee factorauthenticatie uitgeschakeld",
27292 "xloc": [
27293 - "default.handlebars->119->2711",
27294 - "default3.handlebars->117->2708"
27293 + "default.handlebars->119->2713",
27294 + "default3.handlebars->117->2710"
27295 ]
27296 },
27297 {
@@ -27320,8 +27320,8 @@
27320 "zh-chs": "禁用的电子邮件两因素身份验证",
27321 "zh-cht": "禁用的電子郵件兩因素身份驗證",
27322 "xloc": [
27323 - "default.handlebars->119->2639",
27324 - "default3.handlebars->117->2636"
27323 + "default.handlebars->119->2641",
27324 + "default3.handlebars->117->2638"
27325 ]
27326 },
27327 {
@@ -27410,13 +27410,13 @@
27410 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
27411 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
27412 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span",
27413 - "default.handlebars->119->2222",
27413 + "default.handlebars->119->2224",
27414 "default.handlebars->119->966",
27415 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
27416 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
27417 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
27418 "default.handlebars->deskDisconnectContextMenu->3",
27419 - "default3.handlebars->117->2218",
27419 + "default3.handlebars->117->2220",
27420 "default3.handlebars->117->962",
27421 "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->disconnectbutton1span->5->3->0",
27422 "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->disconnectbutton1span->disconnectbutton1",
@@ -27663,10 +27663,10 @@
27663 "pl": "Discord",
27664 "uk": "Discord",
27665 "xloc": [
27666 - "default.handlebars->119->1809",
27667 - "default.handlebars->119->3052",
27668 - "default3.handlebars->117->1791",
27669 - "default3.handlebars->117->3046"
27666 + "default.handlebars->119->1811",
27667 + "default.handlebars->119->3054",
27668 + "default3.handlebars->117->1793",
27669 + "default3.handlebars->117->3048"
27670 ]
27671 },
27672 {
@@ -27871,8 +27871,8 @@
27871 "zh-chs": "显示设备组名称",
27872 "zh-cht": "顯示裝置群名稱",
27873 "xloc": [
27874 - "default.handlebars->119->2090",
27875 - "default3.handlebars->117->2072"
27874 + "default.handlebars->119->2092",
27875 + "default3.handlebars->117->2074"
27876 ]
27877 },
27878 {
@@ -27931,8 +27931,8 @@
27931 "zh-chs": "显示公共连结",
27932 "zh-cht": "顯示公共鏈結",
27933 "xloc": [
27934 - "default.handlebars->119->2502",
27935 - "default3.handlebars->117->2499"
27934 + "default.handlebars->119->2504",
27935 + "default3.handlebars->117->2501"
27936 ]
27937 },
27938 {
@@ -27972,8 +27972,8 @@
27972 "pl": "Wyświetl okno powiadomienia, tytuł=\\\"{0}\\\", wiadomość=\\\"{1}\\\"",
27973 "uk": "Показ вікна попередження, title=\\\"{0}\\\", message=\\\"{1}\\\"",
27974 "xloc": [
27975 - "default.handlebars->119->2708",
27976 - "default3.handlebars->117->2705"
27975 + "default.handlebars->119->2710",
27976 + "default3.handlebars->117->2707"
27977 ]
27978 },
27979 {
@@ -28002,8 +28002,8 @@
28002 "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
28003 "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
28004 "xloc": [
28005 - "default.handlebars->119->2568",
28006 - "default3.handlebars->117->2565"
28005 + "default.handlebars->119->2570",
28006 + "default3.handlebars->117->2567"
28007 ]
28008 },
28009 {
@@ -28032,8 +28032,8 @@
28032 "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
28033 "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
28034 "xloc": [
28035 - "default.handlebars->119->2576",
28036 - "default3.handlebars->117->2573"
28035 + "default.handlebars->119->2578",
28036 + "default3.handlebars->117->2575"
28037 ]
28038 },
28039 {
@@ -28062,10 +28062,10 @@
28062 "zh-chs": "什么都不做",
28063 "zh-cht": "什麼都不做",
28064 "xloc": [
28065 - "default.handlebars->119->2310",
28066 - "default.handlebars->119->2314",
28067 - "default3.handlebars->117->2304",
28068 - "default3.handlebars->117->2308"
28065 + "default.handlebars->119->2312",
28066 + "default.handlebars->119->2316",
28067 + "default3.handlebars->117->2306",
28068 + "default3.handlebars->117->2310"
28069 ]
28070 },
28071 {
@@ -28096,16 +28096,16 @@
28096 "xloc": [
28097 "default.handlebars->119->137",
28098 "default.handlebars->119->1381",
28099 - "default.handlebars->119->2831",
28100 - "default.handlebars->119->2880",
28101 - "default.handlebars->119->2889",
28102 - "default.handlebars->119->2963",
28099 + "default.handlebars->119->2833",
28100 + "default.handlebars->119->2882",
28101 + "default.handlebars->119->2891",
28102 + "default.handlebars->119->2965",
28103 "default3.handlebars->117->135",
28104 "default3.handlebars->117->1367",
28105 - "default3.handlebars->117->2827",
28106 - "default3.handlebars->117->2874",
28107 - "default3.handlebars->117->2883",
28108 - "default3.handlebars->117->2957",
28105 + "default3.handlebars->117->2829",
28106 + "default3.handlebars->117->2876",
28107 + "default3.handlebars->117->2885",
28108 + "default3.handlebars->117->2959",
28109 "mstsc.handlebars->main->1->3->1->rowdomain->1->0",
28110 "mstsc.handlebars->main->1->3->1->rowdomain->3"
28111 ]
@@ -28162,8 +28162,8 @@
28162 "zh-chs": "请勿更改,如果设置请保留CCM",
28163 "zh-cht": "請勿更改,如果設置請保留CCM",
28164 "xloc": [
28165 - "default.handlebars->119->2306",
28166 - "default3.handlebars->117->2300"
28165 + "default.handlebars->119->2308",
28166 + "default3.handlebars->117->2302"
28167 ]
28168 },
28169 {
@@ -28218,8 +28218,8 @@
28218 "zh-chs": "不要连接到服务器",
28219 "zh-cht": "不要連接到伺服器",
28220 "xloc": [
28221 - "default.handlebars->119->2315",
28222 - "default3.handlebars->117->2309"
28221 + "default.handlebars->119->2317",
28222 + "default3.handlebars->117->2311"
28223 ]
28224 },
28225 {
@@ -28639,10 +28639,10 @@
28639 "zh-chs": "下载报告",
28640 "zh-cht": "下載報告",
28641 "xloc": [
28642 - "default.handlebars->119->2737",
28642 + "default.handlebars->119->2739",
28643 "default.handlebars->container->column_l->p3->3->1->0->3",
28644 "default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv",
28645 - "default3.handlebars->117->2734",
28645 + "default3.handlebars->117->2736",
28646 "default3.handlebars->container->column_l->p60->3->1->0->1->1->p60downloadReportDiv"
28647 ]
28648 },
@@ -28762,8 +28762,8 @@
28762 "zh-chs": "下载设备列表",
28763 "zh-cht": "下載設備列表",
28764 "xloc": [
28765 - "default.handlebars->119->2279",
28766 - "default3.handlebars->117->2275"
28765 + "default.handlebars->119->2281",
28766 + "default3.handlebars->117->2277"
28767 ]
28768 },
28769 {
@@ -29002,8 +29002,8 @@
29002 "zh-chs": "使用以下一种档案格式下载事件列表。",
29003 "zh-cht": "使用以下一種檔案格式下載事件列表。",
29004 "xloc": [
29005 - "default.handlebars->119->2738",
29006 - "default3.handlebars->117->2735"
29005 + "default.handlebars->119->2740",
29006 + "default3.handlebars->117->2737"
29007 ]
29008 },
29009 {
@@ -29032,8 +29032,8 @@
29032 "zh-chs": "使用以下一种档案格式下载用户列表。",
29033 "zh-cht": "使用以下一種檔案格式下載用戶列表。",
29034 "xloc": [
29035 - "default.handlebars->119->2815",
29036 - "default3.handlebars->117->2811"
29035 + "default.handlebars->119->2817",
29036 + "default3.handlebars->117->2813"
29037 ]
29038 },
29039 {
@@ -29153,8 +29153,8 @@
29153 "zh-chs": "下载:“{0}”",
29154 "zh-cht": "下載:“{0}”",

This file is too large to show in full.

views/default-mobile.handlebars
+1
@@ -6548,6 +6548,7 @@
6548 if (battery.Discharging != null) { x += addDetailItem("Discharging", (battery.Discharging ? "Yes" : "No"), s); }
6549 if (battery.RemainingCapacity) { x += addDetailItem("Remaining Capacity", format("{0} mWh", battery.RemainingCapacity), s); }
6550 if (battery.Voltage) { x += addDetailItem("Voltage", format("{0} V", (battery.Voltage / 1000)), s); }
6551 + if (battery.Health) { x += addDetailItem("Health", format("{0} %", battery.Health), s); }
6552 x += '</div>';
6553 }
6554 x += '</table>';
views/default.handlebars
+1
@@ -12429,6 +12429,7 @@
12429 if (battery.Discharging != null) { x += addDetailItem("Discharging", (battery.Discharging ? "Yes" : "No"), s); }
12430 if (battery.RemainingCapacity) { x += addDetailItem("Remaining Capacity", format("{0} mWh", battery.RemainingCapacity), s); }
12431 if (battery.Voltage) { x += addDetailItem("Voltage", format("{0} V", (battery.Voltage / 1000)), s); }
12432 + if (battery.Health) { x += addDetailItem("Health", format("{0} %", battery.Health), s); }
12433 x += '</div>';
12434 }
12435 x += '</table>';
views/default3.handlebars
+1
@@ -13469,6 +13469,7 @@
13469 if (battery.Discharging != null) { x += addDetailItem("Discharging", (battery.Discharging ? "Yes" : "No"), s); }
13470 if (battery.RemainingCapacity) { x += addDetailItem("Remaining Capacity", format("{0} mWh", battery.RemainingCapacity), s); }
13471 if (battery.Voltage) { x += addDetailItem("Voltage", format("{0} V", (battery.Voltage / 1000)), s); }
13472 + if (battery.Health) { x += addDetailItem("Health", format("{0} %", battery.Health), s); }
13473 x += '</div>';
13474 }
13475 x += '</table>';