add battery to details tabs for windows devices #7332
Signed-off-by: si458 <simonsmith5521@gmail.com>
si458 committed
Dec 17, 2025 at 12:39 UTC
5dbe225176cdf4bd51f0099a6f41b822c49c0cf7
7 files changed
+4377
-3750
agents/modules_meshcore/computer-identifiers.js
+51
@@ -523,6 +523,57 @@ function windows_identifiers()
523
}
524
} catch (ex) { }
525
526
+ // Windows Batteries
527
+ IntToStrLE = function (v) { return String.fromCharCode(v & 0xFF, (v >> 8) & 0xFF, (v >> 16) & 0xFF, (v >> 24) & 0xFF); };
528
+ try {
529
+ function mergeJSONArrays() {
530
+ var resultMap = {};
531
+ var result = [];
532
+ // Loop through all arguments (arrays)
533
+ for (var i = 0; i < arguments.length; i++) {
534
+ var currentArray = arguments[i];
535
+ // Skip if not an array
536
+ if (!currentArray || currentArray.constructor !== Array) {
537
+ continue;
538
+ }
539
+ // Process each object in the array
540
+ for (var j = 0; j < currentArray.length; j++) {
541
+ var obj = currentArray[j];
542
+ // Skip if not an object or missing InstanceName
543
+ if (!obj || typeof obj !== 'object' || !obj.InstanceName) {
544
+ continue;
545
+ }
546
+ var name = obj.InstanceName;
547
+ // Create new entry if it doesn't exist
548
+ if (!resultMap[name]) {
549
+ resultMap[name] = { InstanceName: name };
550
+ result.push(resultMap[name]);
551
+ }
552
+ // Copy all properties except InstanceName
553
+ for (var key in obj) {
554
+ if (obj.hasOwnProperty(key) && key !== 'InstanceName') {
555
+ resultMap[name][key] = obj[key];
556
+ }
557
+ }
558
+ }
559
+ }
560
+ return result;
561
+ }
562
+ values = require('win-wmi').query('ROOT\\WMI', "SELECT * FROM BatteryCycleCount",['InstanceName','CycleCount']);
563
+ 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));
570
+ }
571
+ }
572
+ var values6 = require('win-wmi').query('ROOT\\WMI', "SELECT * FROM BatteryStatus",['InstanceName','ChargeRate','Charging','DischargeRate','Discharging','RemainingCapacity','Voltage']);
573
+ ret.battery = mergeJSONArrays(values, values2, values3, values4, values5, values6);
574
+ }
575
+ catch (ex) { }
576
+
577
return (ret);
578
}
579
function macos_identifiers()
public/images/details/battery32.png
Binary files /dev/null and b/public/images/details/battery32.png differ
public/images/details/battery64.png
Binary files /dev/null and b/public/images/details/battery64.png differ
translate/translate.json
+4226
-3733
@@ -26,10 +26,10 @@
26
"zh-chs": " + CIRA",
27
"zh-cht": " + CIRA",
28
"xloc": [
29
- "default.handlebars->119->2206",
30
- "default.handlebars->119->2208",
31
- "default3.handlebars->117->2202",
32
- "default3.handlebars->117->2204"
29
+ "default.handlebars->119->2233",
30
+ "default.handlebars->119->2235",
31
+ "default3.handlebars->117->2229",
32
+ "default3.handlebars->117->2231"
33
]
34
},
35
{
@@ -330,8 +330,8 @@
330
"zh-chs": " 可以使用密码提示,但不建议使用。",
331
"zh-cht": " 可以使用密碼提示,但不建議使用。",
332
"xloc": [
333
- "default.handlebars->119->2078",
334
- "default3.handlebars->117->2058"
333
+ "default.handlebars->119->2105",
334
+ "default3.handlebars->117->2085"
335
]
336
},
337
{
@@ -360,10 +360,10 @@
360
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
361
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
362
"xloc": [
363
- "default.handlebars->119->2332",
364
- "default.handlebars->119->2921",
365
- "default3.handlebars->117->2329",
366
- "default3.handlebars->117->2915"
363
+ "default.handlebars->119->2359",
364
+ "default.handlebars->119->2948",
365
+ "default3.handlebars->117->2356",
366
+ "default3.handlebars->117->2942"
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->2290",
988
+ "default.handlebars->119->2317",
989
"default.handlebars->119->542",
990
- "default3.handlebars->117->2284",
990
+ "default3.handlebars->117->2311",
991
"default3.handlebars->117->538"
992
]
993
},
@@ -1096,21 +1096,21 @@
1096
"zh-chs": ",",
1097
"zh-cht": ",",
1098
"xloc": [
1099
- "default-mobile.handlebars->53->1012",
1099
+ "default-mobile.handlebars->53->1039",
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->2408",
1107
- "default.handlebars->119->2694",
1106
+ "default.handlebars->119->2435",
1107
+ "default.handlebars->119->2721",
1108
"default.handlebars->119->997",
1109
"default3.handlebars->117->1625",
1110
"default3.handlebars->117->1627",
1111
"default3.handlebars->117->1629",
1112
- "default3.handlebars->117->2405",
1113
- "default3.handlebars->117->2691",
1112
+ "default3.handlebars->117->2432",
1113
+ "default3.handlebars->117->2718",
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->913",
1289
- "default.handlebars->119->1750",
1290
- "default3.handlebars->117->1733"
1288
+ "default-mobile.handlebars->53->940",
1289
+ "default.handlebars->119->1777",
1290
+ "default3.handlebars->117->1760"
1291
]
1292
},
1293
{
@@ -1317,9 +1317,9 @@
1317
"zh-cht": ", 不同意",
1318
"xloc": [
1319
"default.handlebars->119->1092",
1320
- "default.handlebars->119->2248",
1320
+ "default.handlebars->119->2275",
1321
"default3.handlebars->117->1088",
1322
- "default3.handlebars->117->2244"
1322
+ "default3.handlebars->117->2271"
1323
]
1324
},
1325
{
@@ -1349,9 +1349,9 @@
1349
"zh-cht": ",提示同意",
1350
"xloc": [
1351
"default.handlebars->119->1093",
1352
- "default.handlebars->119->2249",
1352
+ "default.handlebars->119->2276",
1353
"default3.handlebars->117->1089",
1354
- "default3.handlebars->117->2245"
1354
+ "default3.handlebars->117->2272"
1355
]
1356
},
1357
{
@@ -1410,9 +1410,9 @@
1410
"zh-cht": ", 每天重複",
1411
"xloc": [
1412
"default.handlebars->119->1089",
1413
- "default.handlebars->119->2245",
1413
+ "default.handlebars->119->2272",
1414
"default3.handlebars->117->1085",
1415
- "default3.handlebars->117->2241"
1415
+ "default3.handlebars->117->2268"
1416
]
1417
},
1418
{
@@ -1442,9 +1442,9 @@
1442
"zh-cht": ", 每週重複一次",
1443
"xloc": [
1444
"default.handlebars->119->1090",
1445
- "default.handlebars->119->2246",
1445
+ "default.handlebars->119->2273",
1446
"default3.handlebars->117->1086",
1447
- "default3.handlebars->117->2242"
1447
+ "default3.handlebars->117->2269"
1448
]
1449
},
1450
{
@@ -1619,9 +1619,9 @@
1619
"zh-cht": ", 工具欄",
1620
"xloc": [
1621
"default.handlebars->119->1094",
1622
- "default.handlebars->119->2250",
1622
+ "default.handlebars->119->2277",
1623
"default3.handlebars->117->1090",
1624
- "default3.handlebars->117->2246"
1624
+ "default3.handlebars->117->2273"
1625
]
1626
},
1627
{
@@ -1677,9 +1677,9 @@
1677
"zh-cht": ", 僅查看桌面",
1678
"xloc": [
1679
"default.handlebars->119->1091",
1680
- "default.handlebars->119->2247",
1680
+ "default.handlebars->119->2274",
1681
"default3.handlebars->117->1087",
1682
- "default3.handlebars->117->2243"
1682
+ "default3.handlebars->117->2270"
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->2474",
2055
- "default.handlebars->119->3165",
2054
+ "default.handlebars->119->2501",
2055
+ "default.handlebars->119->3192",
2056
"default3.handlebars->117->1516",
2057
- "default3.handlebars->117->2471",
2058
- "default3.handlebars->117->3155",
2057
+ "default3.handlebars->117->2498",
2058
+ "default3.handlebars->117->3182",
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->2492",
2146
- "default3.handlebars->117->2489"
2145
+ "default.handlebars->119->2519",
2146
+ "default3.handlebars->117->2516"
2147
]
2148
},
2149
{
@@ -2250,8 +2250,8 @@
2250
"zh-chs": "1个活跃时段",
2251
"zh-cht": "1個活躍時段",
2252
"xloc": [
2253
- "default.handlebars->119->3016",
2254
- "default3.handlebars->117->3010"
2253
+ "default.handlebars->119->3043",
2254
+ "default3.handlebars->117->3037"
2255
]
2256
},
2257
{
@@ -2280,10 +2280,10 @@
2280
"zh-chs": "1个字节",
2281
"zh-cht": "1個位元組",
2282
"xloc": [
2283
- "default-mobile.handlebars->53->1056",
2283
+ "default-mobile.handlebars->53->1083",
2284
"default-mobile.handlebars->53->375",
2285
- "default.handlebars->119->2503",
2286
- "default3.handlebars->117->2500",
2285
+ "default.handlebars->119->2530",
2286
+ "default3.handlebars->117->2527",
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->2971",
2414
- "default3.handlebars->117->2965"
2413
+ "default.handlebars->119->2998",
2414
+ "default3.handlebars->117->2992"
2415
]
2416
},
2417
{
@@ -2475,9 +2475,9 @@
2475
"zh-cht": "1分鐘",
2476
"xloc": [
2477
"default.handlebars->119->1202",
2478
- "default.handlebars->119->2043",
2478
+ "default.handlebars->119->2070",
2479
"default3.handlebars->117->1196",
2480
- "default3.handlebars->117->2024"
2480
+ "default3.handlebars->117->2051"
2481
]
2482
},
2483
{
@@ -2595,8 +2595,8 @@
2595
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
2596
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2597
"xloc": [
2598
- "default.handlebars->119->2726",
2599
- "default3.handlebars->117->2723"
2598
+ "default.handlebars->119->2753",
2599
+ "default3.handlebars->117->2750"
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->2730",
2863
+ "default.handlebars->119->2757",
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->2727",
2871
+ "default3.handlebars->117->2754",
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->2045",
3091
+ "default.handlebars->119->2072",
3092
"default3.handlebars->117->1198",
3093
- "default3.handlebars->117->2026"
3093
+ "default3.handlebars->117->2053"
3094
]
3095
},
3096
{
@@ -3299,9 +3299,9 @@
3299
"zh-cht": "12小時",
3300
"xloc": [
3301
"default.handlebars->119->1212",
3302
- "default.handlebars->119->2053",
3302
+ "default.handlebars->119->2080",
3303
"default3.handlebars->117->1206",
3304
- "default3.handlebars->117->2034"
3304
+ "default3.handlebars->117->2061"
3305
]
3306
},
3307
{
@@ -3446,9 +3446,9 @@
3446
"zh-cht": "15分鐘",
3447
"xloc": [
3448
"default.handlebars->119->1205",
3449
- "default.handlebars->119->2046",
3449
+ "default.handlebars->119->2073",
3450
"default3.handlebars->117->1199",
3451
- "default3.handlebars->117->2027"
3451
+ "default3.handlebars->117->2054"
3452
]
3453
},
3454
{
@@ -3478,9 +3478,9 @@
3478
"zh-cht": "16小時",
3479
"xloc": [
3480
"default.handlebars->119->1213",
3481
- "default.handlebars->119->2054",
3481
+ "default.handlebars->119->2081",
3482
"default3.handlebars->117->1207",
3483
- "default3.handlebars->117->2035"
3483
+ "default3.handlebars->117->2062"
3484
]
3485
},
3486
{
@@ -3626,9 +3626,9 @@
3626
"zh-cht": "2天",
3627
"xloc": [
3628
"default.handlebars->119->1215",
3629
- "default.handlebars->119->2056",
3629
+ "default.handlebars->119->2083",
3630
"default3.handlebars->117->1209",
3631
- "default3.handlebars->117->2037"
3631
+ "default3.handlebars->117->2064"
3632
]
3633
},
3634
{
@@ -3658,9 +3658,9 @@
3658
"zh-cht": "2小時",
3659
"xloc": [
3660
"default.handlebars->119->1209",
3661
- "default.handlebars->119->2050",
3661
+ "default.handlebars->119->2077",
3662
"default3.handlebars->117->1203",
3663
- "default3.handlebars->117->2031"
3663
+ "default3.handlebars->117->2058"
3664
]
3665
},
3666
{
@@ -3871,9 +3871,9 @@
3871
"zh-cht": "24小時",
3872
"xloc": [
3873
"default.handlebars->119->1214",
3874
- "default.handlebars->119->2055",
3874
+ "default.handlebars->119->2082",
3875
"default3.handlebars->117->1208",
3876
- "default3.handlebars->117->2036"
3876
+ "default3.handlebars->117->2063"
3877
]
3878
},
3879
{
@@ -3960,8 +3960,8 @@
3960
"zh-chs": "2FA备份代码已清除",
3961
"zh-cht": "2FA備份代碼已清除",
3962
"xloc": [
3963
- "default.handlebars->119->2616",
3964
- "default3.handlebars->117->2613"
3963
+ "default.handlebars->119->2643",
3964
+ "default3.handlebars->117->2640"
3965
]
3966
},
3967
{
@@ -4021,8 +4021,8 @@
4021
"zh-chs": "第二个因素",
4022
"zh-cht": "第二個因素",
4023
"xloc": [
4024
- "default.handlebars->119->3204",
4025
- "default3.handlebars->117->3194"
4024
+ "default.handlebars->119->3231",
4025
+ "default3.handlebars->117->3221"
4026
]
4027
},
4028
{
@@ -4051,10 +4051,10 @@
4051
"zh-chs": "启用第二因素身份验证",
4052
"zh-cht": "啟用第二因素身份驗證",
4053
"xloc": [
4054
- "default.handlebars->119->2744",
4055
- "default.handlebars->119->2997",
4056
- "default3.handlebars->117->2741",
4057
- "default3.handlebars->117->2991"
4054
+ "default.handlebars->119->2771",
4055
+ "default.handlebars->119->3024",
4056
+ "default3.handlebars->117->2768",
4057
+ "default3.handlebars->117->3018"
4058
]
4059
},
4060
{
@@ -4226,9 +4226,9 @@
4226
"zh-cht": "30分鐘",
4227
"xloc": [
4228
"default.handlebars->119->1206",
4229
- "default.handlebars->119->2047",
4229
+ "default.handlebars->119->2074",
4230
"default3.handlebars->117->1200",
4231
- "default3.handlebars->117->2028"
4231
+ "default3.handlebars->117->2055"
4232
]
4233
},
4234
{
@@ -4347,9 +4347,9 @@
4347
"zh-cht": "4天",
4348
"xloc": [
4349
"default.handlebars->119->1216",
4350
- "default.handlebars->119->2057",
4350
+ "default.handlebars->119->2084",
4351
"default3.handlebars->117->1210",
4352
- "default3.handlebars->117->2038"
4352
+ "default3.handlebars->117->2065"
4353
]
4354
},
4355
{
@@ -4379,9 +4379,9 @@
4379
"zh-cht": "4個小時",
4380
"xloc": [
4381
"default.handlebars->119->1210",
4382
- "default.handlebars->119->2051",
4382
+ "default.handlebars->119->2078",
4383
"default3.handlebars->117->1204",
4384
- "default3.handlebars->117->2032"
4384
+ "default3.handlebars->117->2059"
4385
]
4386
},
4387
{
@@ -4528,9 +4528,9 @@
4528
"zh-cht": "45分鐘",
4529
"xloc": [
4530
"default.handlebars->119->1207",
4531
- "default.handlebars->119->2048",
4531
+ "default.handlebars->119->2075",
4532
"default3.handlebars->117->1201",
4533
- "default3.handlebars->117->2029"
4533
+ "default3.handlebars->117->2056"
4534
]
4535
},
4536
{
@@ -4589,9 +4589,9 @@
4589
"zh-cht": "5分鐘",
4590
"xloc": [
4591
"default.handlebars->119->1203",
4592
- "default.handlebars->119->2044",
4592
+ "default.handlebars->119->2071",
4593
"default3.handlebars->117->1197",
4594
- "default3.handlebars->117->2025"
4594
+ "default3.handlebars->117->2052"
4595
]
4596
},
4597
{
@@ -4803,9 +4803,9 @@
4803
"zh-cht": "60分鐘",
4804
"xloc": [
4805
"default.handlebars->119->1208",
4806
- "default.handlebars->119->2049",
4806
+ "default.handlebars->119->2076",
4807
"default3.handlebars->117->1202",
4808
- "default3.handlebars->117->2030"
4808
+ "default3.handlebars->117->2057"
4809
]
4810
},
4811
{
@@ -5087,8 +5087,8 @@
5087
"zh-chs": "7天",
5088
"zh-cht": "7天",
5089
"xloc": [
5090
- "default.handlebars->119->2058",
5091
- "default3.handlebars->117->2039"
5090
+ "default.handlebars->119->2085",
5091
+ "default3.handlebars->117->2066"
5092
]
5093
},
5094
{
@@ -5180,11 +5180,11 @@
5180
"zh-cht": "8小時",
5181
"xloc": [
5182
"default.handlebars->119->1211",
5183
- "default.handlebars->119->2052",
5183
+ "default.handlebars->119->2079",
5184
"default.handlebars->119->570",
5185
"default.handlebars->119->584",
5186
"default3.handlebars->117->1205",
5187
- "default3.handlebars->117->2033",
5187
+ "default3.handlebars->117->2060",
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->2226",
5392
+ "default.handlebars->119->2253",
5393
"default.handlebars->119->448",
5394
"default.handlebars->119->904",
5395
- "default3.handlebars->117->2222",
5395
+ "default3.handlebars->117->2249",
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->3363",
5528
- "default3.handlebars->117->3353"
5527
+ "default.handlebars->119->3390",
5528
+ "default3.handlebars->117->3380"
5529
]
5530
},
5531
{
@@ -5553,10 +5553,10 @@
5553
"zh-chs": "AMT-Redir",
5554
"zh-cht": "AMT-Redir",
5555
"xloc": [
5556
- "default.handlebars->119->3214",
5557
- "default.handlebars->119->3267",
5558
- "default3.handlebars->117->3204",
5559
- "default3.handlebars->117->3257"
5556
+ "default.handlebars->119->3241",
5557
+ "default.handlebars->119->3294",
5558
+ "default3.handlebars->117->3231",
5559
+ "default3.handlebars->117->3284"
5560
]
5561
},
5562
{
@@ -5584,10 +5584,10 @@
5584
"zh-chs": "AMT-WSMAN",
5585
"zh-cht": "AMT-WSMAN",
5586
"xloc": [
5587
- "default.handlebars->119->3213",
5588
- "default.handlebars->119->3266",
5589
- "default3.handlebars->117->3203",
5590
- "default3.handlebars->117->3256"
5587
+ "default.handlebars->119->3240",
5588
+ "default.handlebars->119->3293",
5589
+ "default3.handlebars->117->3230",
5590
+ "default3.handlebars->117->3283"
5591
]
5592
},
5593
{
@@ -5607,7 +5607,7 @@
5607
"pl": "Wersja APK MeshAgent",
5608
"uk": "MeshAgent версія APK",
5609
"xloc": [
5610
- "default-mobile.handlebars->53->965",
5610
+ "default-mobile.handlebars->53->992",
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->914",
5858
- "default.handlebars->119->1751",
5859
- "default3.handlebars->117->1734"
5857
+ "default-mobile.handlebars->53->941",
5858
+ "default.handlebars->119->1778",
5859
+ "default3.handlebars->117->1761"
5860
]
5861
},
5862
{
@@ -5945,8 +5945,8 @@
5945
"zh-chs": "访问服务器档案",
5946
"zh-cht": "存取伺服器檔案",
5947
"xloc": [
5948
- "default.handlebars->119->2927",
5949
- "default3.handlebars->117->2921"
5948
+ "default.handlebars->119->2954",
5949
+ "default3.handlebars->117->2948"
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->2087",
6077
- "default.handlebars->119->2089",
6078
- "default.handlebars->119->3418",
6076
+ "default.handlebars->119->2114",
6077
+ "default.handlebars->119->2116",
6078
+ "default.handlebars->119->3445",
6079
"default.handlebars->119->741",
6080
"default.handlebars->119->864",
6081
"default.handlebars->119->866",
6082
- "default3.handlebars->117->2089",
6083
- "default3.handlebars->117->2090",
6084
- "default3.handlebars->117->3406",
6085
- "default3.handlebars->117->3408",
6082
+ "default3.handlebars->117->2116",
6083
+ "default3.handlebars->117->2117",
6084
+ "default3.handlebars->117->3433",
6085
+ "default3.handlebars->117->3435",
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->1023",
6118
- "default.handlebars->119->3287",
6119
- "default3.handlebars->117->3277"
6117
+ "default-mobile.handlebars->53->1050",
6118
+ "default.handlebars->119->3314",
6119
+ "default3.handlebars->117->3304"
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->2677",
6195
- "default3.handlebars->117->2674"
6194
+ "default.handlebars->119->2704",
6195
+ "default3.handlebars->117->2701"
6196
]
6197
},
6198
{
@@ -6221,8 +6221,8 @@
6221
"zh-chs": "帐户已更改:{0}",
6222
"zh-cht": "帳戶已更改:{0}",
6223
"xloc": [
6224
- "default.handlebars->119->2589",
6225
- "default3.handlebars->117->2586"
6224
+ "default.handlebars->119->2616",
6225
+ "default3.handlebars->117->2613"
6226
]
6227
},
6228
{
@@ -6251,8 +6251,8 @@
6251
"zh-chs": "创建帐户,电子邮件为{0}",
6252
"zh-cht": "創建帳戶,電子郵件為{0}",
6253
"xloc": [
6254
- "default.handlebars->119->2588",
6255
- "default3.handlebars->117->2585"
6254
+ "default.handlebars->119->2615",
6255
+ "default3.handlebars->117->2612"
6256
]
6257
},
6258
{
@@ -6281,8 +6281,8 @@
6281
"zh-chs": "已创建帐户,名称为 {0}。",
6282
"zh-cht": "已創建帳戶,名稱為 {0}。",
6283
"xloc": [
6284
- "default.handlebars->119->2651",
6285
- "default3.handlebars->117->2648"
6284
+ "default.handlebars->119->2678",
6285
+ "default3.handlebars->117->2675"
6286
]
6287
},
6288
{
@@ -6311,8 +6311,8 @@
6311
"zh-chs": "创建帐户,用户名是{0}",
6312
"zh-cht": "帳戶已創建,用戶名是{0}",
6313
"xloc": [
6314
- "default.handlebars->119->2587",
6315
- "default3.handlebars->117->2584"
6314
+ "default.handlebars->119->2614",
6315
+ "default3.handlebars->117->2611"
6316
]
6317
},
6318
{
@@ -6343,11 +6343,11 @@
6343
"xloc": [
6344
"default-mobile.handlebars->53->69",
6345
"default.handlebars->119->222",
6346
- "default.handlebars->119->2746",
6347
- "default.handlebars->119->2924",
6346
+ "default.handlebars->119->2773",
6347
+ "default.handlebars->119->2951",
6348
"default3.handlebars->117->219",
6349
- "default3.handlebars->117->2743",
6350
- "default3.handlebars->117->2918"
6349
+ "default3.handlebars->117->2770",
6350
+ "default3.handlebars->117->2945"
6351
]
6352
},
6353
{
@@ -6376,9 +6376,9 @@
6376
"zh-chs": "达到帐户限制。",
6377
"zh-cht": "達到帳戶限制。",
6378
"xloc": [
6379
- "default-mobile.handlebars->53->1035",
6380
- "default.handlebars->119->3299",
6381
- "default3.handlebars->117->3289",
6379
+ "default-mobile.handlebars->53->1062",
6380
+ "default.handlebars->119->3326",
6381
+ "default3.handlebars->117->3316",
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->2524",
6445
- "default3.handlebars->117->2521"
6444
+ "default.handlebars->119->2551",
6445
+ "default3.handlebars->117->2548"
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->2630",
6475
- "default3.handlebars->117->2627"
6474
+ "default.handlebars->119->2657",
6475
+ "default3.handlebars->117->2654"
6476
]
6477
},
6478
{
@@ -6486,8 +6486,8 @@
6486
"pl": "Zapisy logowania tokenami użytkownika",
6487
"uk": "Записи токенів входу до акаунту",
6488
"xloc": [
6489
- "default.handlebars->119->3256",
6490
- "default3.handlebars->117->3246"
6489
+ "default.handlebars->119->3283",
6490
+ "default3.handlebars->117->3273"
6491
]
6492
},
6493
{
@@ -6516,8 +6516,8 @@
6516
"zh-chs": "帐户登出",
6517
"zh-cht": "帳戶登出",
6518
"xloc": [
6519
- "default.handlebars->119->2525",
6520
- "default3.handlebars->117->2522"
6519
+ "default.handlebars->119->2552",
6520
+ "default3.handlebars->117->2549"
6521
]
6522
},
6523
{
@@ -6577,8 +6577,8 @@
6577
"zh-chs": "帐户密码已更改:{0}",
6578
"zh-cht": "帳戶密碼已更改:{0}",
6579
"xloc": [
6580
- "default.handlebars->119->2597",
6581
- "default3.handlebars->117->2594"
6580
+ "default.handlebars->119->2624",
6581
+ "default3.handlebars->117->2621"
6582
]
6583
},
6584
{
@@ -6607,8 +6607,8 @@
6607
"zh-chs": "帐户已删除",
6608
"zh-cht": "帳戶已刪除",
6609
"xloc": [
6610
- "default.handlebars->119->2586",
6611
- "default3.handlebars->117->2583"
6610
+ "default.handlebars->119->2613",
6611
+ "default3.handlebars->117->2610"
6612
]
6613
},
6614
{
@@ -6667,10 +6667,10 @@
6667
"zh-chs": "指令",
6668
"zh-cht": "指令",
6669
"xloc": [
6670
- "default-mobile.handlebars->53->929",
6671
- "default.handlebars->119->1766",
6670
+ "default-mobile.handlebars->53->956",
6671
+ "default.handlebars->119->1793",
6672
"default.handlebars->container->column_l->p42->p42tbl->1->0->8",
6673
- "default3.handlebars->117->1749",
6673
+ "default3.handlebars->117->1776",
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->2281",
6864
- "default3.handlebars->117->2275"
6863
+ "default.handlebars->119->2308",
6864
+ "default3.handlebars->117->2302"
6865
]
6866
},
6867
{
@@ -6893,10 +6893,13 @@
6893
"default-mobile.handlebars->53->496",
6894
"default-mobile.handlebars->53->498",
6895
"default-mobile.handlebars->53->816",
6896
+ "default-mobile.handlebars->53->845",
6897
"default.handlebars->119->1652",
6898
+ "default.handlebars->119->1681",
6899
"default.handlebars->119->897",
6900
"default.handlebars->119->899",
6901
"default3.handlebars->117->1635",
6902
+ "default3.handlebars->117->1664",
6903
"default3.handlebars->117->893",
6904
"default3.handlebars->117->895"
6905
]
@@ -6958,9 +6961,9 @@
6961
"zh-cht": "主動設備共享",
6962
"xloc": [
6963
"default.handlebars->119->1074",
6961
- "default.handlebars->119->2230",
6964
+ "default.handlebars->119->2257",
6965
"default3.handlebars->117->1070",
6963
- "default3.handlebars->117->2226"
6966
+ "default3.handlebars->117->2253"
6967
]
6968
},
6969
{
@@ -6989,8 +6992,8 @@
6992
"zh-chs": "活动登录令牌",
6993
"zh-cht": "活動登錄令牌",
6994
"xloc": [
6992
- "default.handlebars->119->2118",
6993
- "default3.handlebars->117->2118"
6995
+ "default.handlebars->119->2145",
6996
+ "default3.handlebars->117->2145"
6997
]
6998
},
6999
{
@@ -7193,9 +7196,9 @@
7196
"zh-chs": "添加代理",
7197
"zh-cht": "新增代理",
7198
"xloc": [
7196
- "default.handlebars->119->2220",
7199
+ "default.handlebars->119->2247",
7200
"default.handlebars->119->502",
7198
- "default3.handlebars->117->2216",
7201
+ "default3.handlebars->117->2243",
7202
"default3.handlebars->117->498"
7203
]
7204
},
@@ -7251,13 +7254,13 @@
7254
"zh-chs": "添加设备",
7255
"zh-cht": "新增裝置",
7256
"xloc": [
7254
- "default.handlebars->119->2224",
7255
- "default.handlebars->119->2899",
7256
- "default.handlebars->119->3094",
7257
+ "default.handlebars->119->2251",
7258
+ "default.handlebars->119->2926",
7259
+ "default.handlebars->119->3121",
7260
"default.handlebars->119->506",
7258
- "default3.handlebars->117->2220",
7259
- "default3.handlebars->117->2893",
7260
- "default3.handlebars->117->3082",
7261
+ "default3.handlebars->117->2247",
7262
+ "default3.handlebars->117->2920",
7263
+ "default3.handlebars->117->3109",
7264
"default3.handlebars->117->502"
7265
]
7266
},
@@ -7317,13 +7320,13 @@
7320
"zh-chs": "添加设备组",
7321
"zh-cht": "新增裝置群",
7322
"xloc": [
7320
- "default.handlebars->119->2369",
7321
- "default.handlebars->119->2893",
7322
- "default.handlebars->119->3082",
7323
+ "default.handlebars->119->2396",
7324
+ "default.handlebars->119->2920",
7325
+ "default.handlebars->119->3109",
7326
"default.handlebars->119->402",
7324
- "default3.handlebars->117->2366",
7325
- "default3.handlebars->117->2887",
7326
- "default3.handlebars->117->3070",
7327
+ "default3.handlebars->117->2393",
7328
+ "default3.handlebars->117->2914",
7329
+ "default3.handlebars->117->3097",
7330
"default3.handlebars->117->398"
7331
]
7332
},
@@ -7353,8 +7356,8 @@
7356
"zh-chs": "添加设备组权限",
7357
"zh-cht": "新增裝置群權限",
7358
"xloc": [
7356
- "default.handlebars->119->2366",
7357
- "default3.handlebars->117->2363"
7359
+ "default.handlebars->119->2393",
7360
+ "default3.handlebars->117->2390"
7361
]
7362
},
7363
{
@@ -7383,10 +7386,10 @@
7386
"zh-chs": "添加设备权限",
7387
"zh-cht": "新增裝置權限",
7388
"xloc": [
7386
- "default.handlebars->119->2371",
7387
- "default.handlebars->119->2373",
7388
- "default3.handlebars->117->2368",
7389
- "default3.handlebars->117->2370"
7389
+ "default.handlebars->119->2398",
7390
+ "default.handlebars->119->2400",
7391
+ "default3.handlebars->117->2395",
7392
+ "default3.handlebars->117->2397"
7393
]
7394
},
7395
{
@@ -7557,8 +7560,8 @@
7560
"zh-chs": "添加成员身份",
7561
"zh-cht": "新增成員身份",
7562
"xloc": [
7560
- "default.handlebars->119->3114",
7561
- "default3.handlebars->117->3102"
7563
+ "default.handlebars->119->3141",
7564
+ "default3.handlebars->117->3129"
7565
]
7566
},
7567
{
@@ -7643,14 +7646,14 @@
7646
"zh-chs": "添加安全密钥",
7647
"zh-cht": "新增安全密鑰",
7648
"xloc": [
7646
- "default.handlebars->119->1833",
7647
- "default.handlebars->119->1834",
7649
+ "default.handlebars->119->1860",
7650
+ "default.handlebars->119->1861",
7651
"default.handlebars->119->256",
7652
"default.handlebars->119->258",
7653
"default.handlebars->119->261",
7654
"default.handlebars->119->263",
7652
- "default3.handlebars->117->1814",
7653
- "default3.handlebars->117->1815",
7655
+ "default3.handlebars->117->1841",
7656
+ "default3.handlebars->117->1842",
7657
"default3.handlebars->117->251",
7658
"default3.handlebars->117->253",
7659
"default3.handlebars->117->256",
@@ -7683,7 +7686,7 @@
7686
"zh-chs": "添加用户",
7687
"zh-cht": "新增用戶",
7688
"xloc": [
7686
- "default-mobile.handlebars->53->947",
7689
+ "default-mobile.handlebars->53->974",
7690
"default.handlebars->119->1066",
7691
"default3.handlebars->117->1062"
7692
]
@@ -7714,8 +7717,8 @@
7717
"zh-chs": "添加用户设备权限",
7718
"zh-cht": "新增用戶裝置權限",
7719
"xloc": [
7717
- "default.handlebars->119->2376",
7718
- "default3.handlebars->117->2373"
7720
+ "default.handlebars->119->2403",
7721
+ "default3.handlebars->117->2400"
7722
]
7723
},
7724
{
@@ -7745,13 +7748,13 @@
7748
"zh-cht": "新增用戶群",
7749
"xloc": [
7750
"default.handlebars->119->1067",
7748
- "default.handlebars->119->2214",
7749
- "default.handlebars->119->2368",
7750
- "default.handlebars->119->3088",
7751
+ "default.handlebars->119->2241",
7752
+ "default.handlebars->119->2395",
7753
+ "default.handlebars->119->3115",
7754
"default3.handlebars->117->1063",
7752
- "default3.handlebars->117->2210",
7753
- "default3.handlebars->117->2365",
7754
- "default3.handlebars->117->3076"
7755
+ "default3.handlebars->117->2237",
7756
+ "default3.handlebars->117->2392",
7757
+ "default3.handlebars->117->3103"
7758
]
7759
},
7760
{
@@ -7780,8 +7783,8 @@
7783
"zh-chs": "添加用户组设备权限",
7784
"zh-cht": "新增用戶群裝置權限",
7785
"xloc": [
7783
- "default.handlebars->119->2378",
7784
- "default3.handlebars->117->2375"
7786
+ "default.handlebars->119->2405",
7787
+ "default3.handlebars->117->2402"
7788
]
7789
},
7790
{
@@ -7810,7 +7813,7 @@
7813
"zh-chs": "将用户添加到设备组",
7814
"zh-cht": "將用戶新增到裝置群",
7815
"xloc": [
7813
- "default-mobile.handlebars->53->988"
7816
+ "default-mobile.handlebars->53->1015"
7817
]
7818
},
7819
{
@@ -7865,10 +7868,10 @@
7868
"zh-chs": "添加用户",
7869
"zh-cht": "新增用戶",
7870
"xloc": [
7868
- "default.handlebars->119->2213",
7869
- "default.handlebars->119->2888",
7870
- "default3.handlebars->117->2209",
7871
- "default3.handlebars->117->2882"
7871
+ "default.handlebars->119->2240",
7872
+ "default.handlebars->119->2915",
7873
+ "default3.handlebars->117->2236",
7874
+ "default3.handlebars->117->2909"
7875
]
7876
},
7877
{
@@ -7897,8 +7900,8 @@
7900
"zh-chs": "将用户添加到设备组",
7901
"zh-cht": "將用戶新增到裝置群",
7902
"xloc": [
7900
- "default.handlebars->119->2365",
7901
- "default3.handlebars->117->2362"
7903
+ "default.handlebars->119->2392",
7904
+ "default3.handlebars->117->2389"
7905
]
7906
},
7907
{
@@ -7927,8 +7930,8 @@
7930
"zh-chs": "将用户添加到用户组",
7931
"zh-cht": "將用戶新增到用戶群",
7932
"xloc": [
7930
- "default.handlebars->119->2923",
7931
- "default3.handlebars->117->2917"
7933
+ "default.handlebars->119->2950",
7934
+ "default3.handlebars->117->2944"
7935
]
7936
},
7937
{
@@ -8133,9 +8136,9 @@
8136
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
8137
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
8138
"xloc": [
8136
- "default.handlebars->119->2219",
8139
+ "default.handlebars->119->2246",
8140
"default.handlebars->119->501",
8138
- "default3.handlebars->117->2215",
8141
+ "default3.handlebars->117->2242",
8142
"default3.handlebars->117->497"
8143
]
8144
},
@@ -8165,9 +8168,9 @@
8168
"zh-chs": "添加位于本地网络上的设备。",
8169
"zh-cht": "添加位於本地網絡上的設備。",
8170
"xloc": [
8168
- "default.handlebars->119->2223",
8171
+ "default.handlebars->119->2250",
8172
"default.handlebars->119->505",
8170
- "default3.handlebars->117->2219",
8173
+ "default3.handlebars->117->2246",
8174
"default3.handlebars->117->501"
8175
]
8176
},
@@ -8287,8 +8290,8 @@
8290
"zh-chs": "添加了身份验证应用程序",
8291
"zh-cht": "添加了身份驗證應用程序",
8292
"xloc": [
8290
- "default.handlebars->119->2613",
8291
- "default3.handlebars->117->2610"
8293
+ "default.handlebars->119->2640",
8294
+ "default3.handlebars->117->2637"
8295
]
8296
},
8297
{
@@ -8317,8 +8320,8 @@
8320
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
8321
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
8322
"xloc": [
8320
- "default.handlebars->119->2624",
8321
- "default3.handlebars->117->2621"
8323
+ "default.handlebars->119->2651",
8324
+ "default3.handlebars->117->2648"
8325
]
8326
},
8327
{
@@ -8347,8 +8350,8 @@
8350
"zh-chs": "添加了每天重复的设备共享 {0}。",
8351
"zh-cht": "添加了每天重複的設備共享 {0}。",
8352
"xloc": [
8350
- "default.handlebars->119->2661",
8351
- "default3.handlebars->117->2658"
8353
+ "default.handlebars->119->2688",
8354
+ "default3.handlebars->117->2685"
8355
]
8356
},
8357
{
@@ -8377,8 +8380,8 @@
8380
"zh-chs": "添加了每周重复的设备共享 {0}。",
8381
"zh-cht": "添加了每週重複的設備共享 {0}。",
8382
"xloc": [
8380
- "default.handlebars->119->2662",
8381
- "default3.handlebars->117->2659"
8383
+ "default.handlebars->119->2689",
8384
+ "default3.handlebars->117->2686"
8385
]
8386
},
8387
{
@@ -8407,8 +8410,8 @@
8410
"zh-chs": "添加了无限时间的设备共享 {0}。",
8411
"zh-cht": "添加了無限時間的設備共享 {0}。",
8412
"xloc": [
8410
- "default.handlebars->119->2654",
8411
- "default3.handlebars->117->2651"
8413
+ "default.handlebars->119->2681",
8414
+ "default3.handlebars->117->2678"
8415
]
8416
},
8417
{
@@ -8437,10 +8440,10 @@
8440
"zh-chs": "已将设备{0}添加到设备组{1}",
8441
"zh-cht": "已將設備{0}添加到設備組{1}",
8442
"xloc": [
8440
- "default.handlebars->119->2580",
8443
"default.handlebars->119->2607",
8442
- "default3.handlebars->117->2577",
8443
- "default3.handlebars->117->2604"
8444
+ "default.handlebars->119->2634",
8445
+ "default3.handlebars->117->2604",
8446
+ "default3.handlebars->117->2631"
8447
]
8448
},
8449
{
@@ -8469,8 +8472,8 @@
8472
"zh-chs": "添加登录令牌",
8473
"zh-cht": "添加了登錄令牌",
8474
"xloc": [
8472
- "default.handlebars->119->2638",
8473
- "default3.handlebars->117->2635"
8475
+ "default.handlebars->119->2665",
8476
+ "default3.handlebars->117->2662"
8477
]
8478
},
8479
{
@@ -8499,8 +8502,8 @@
8502
"zh-chs": "新增推送通知认证装置",
8503
"zh-cht": "增加推送通知認證設備",
8504
"xloc": [
8502
- "default.handlebars->119->2636",
8503
- "default3.handlebars->117->2633"
8505
+ "default.handlebars->119->2663",
8506
+ "default3.handlebars->117->2660"
8507
]
8508
},
8509
{
@@ -8529,8 +8532,8 @@
8532
"zh-chs": "添加了安全密钥",
8533
"zh-cht": "添加了安全密鑰",
8534
"xloc": [
8532
- "default.handlebars->119->2618",
8533
- "default3.handlebars->117->2615"
8535
+ "default.handlebars->119->2645",
8536
+ "default3.handlebars->117->2642"
8537
]
8538
},
8539
{
@@ -8559,8 +8562,8 @@
8562
"zh-chs": "已将用户组{0}添加到设备组{1}",
8563
"zh-cht": "已將用戶組{0}添加到設備組{1}",
8564
"xloc": [
8562
- "default.handlebars->119->2591",
8563
- "default3.handlebars->117->2588"
8565
+ "default.handlebars->119->2618",
8566
+ "default3.handlebars->117->2615"
8567
]
8568
},
8569
{
@@ -8589,10 +8592,10 @@
8592
"zh-chs": "已将用户{0}添加到用户组{1}",
8593
"zh-cht": "已將用戶{0}添加到用戶組{1}",
8594
"xloc": [
8592
- "default.handlebars->119->2594",
8593
- "default.handlebars->119->2603",
8594
- "default3.handlebars->117->2591",
8595
- "default3.handlebars->117->2600"
8595
+ "default.handlebars->119->2621",
8596
+ "default.handlebars->119->2630",
8597
+ "default3.handlebars->117->2618",
8598
+ "default3.handlebars->117->2627"
8599
]
8600
},
8601
{
@@ -8742,15 +8745,15 @@
8745
"zh-chs": "管理员PowerShell",
8746
"zh-cht": "管理員PowerShell",
8747
"xloc": [
8745
- "default.handlebars->119->3134",
8746
- "default.handlebars->119->3144",
8747
- "default.handlebars->119->3210",
8748
- "default.handlebars->119->3263",
8748
+ "default.handlebars->119->3161",
8749
+ "default.handlebars->119->3171",
8750
+ "default.handlebars->119->3237",
8751
+ "default.handlebars->119->3290",
8752
"default.handlebars->termShellContextMenu->3",
8750
- "default3.handlebars->117->3124",
8751
- "default3.handlebars->117->3134",
8752
- "default3.handlebars->117->3200",
8753
- "default3.handlebars->117->3253",
8753
+ "default3.handlebars->117->3151",
8754
+ "default3.handlebars->117->3161",
8755
+ "default3.handlebars->117->3227",
8756
+ "default3.handlebars->117->3280",
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"
@@ -8782,8 +8785,8 @@
8785
"zh-chs": "管理领域",
8786
"zh-cht": "管理領域",
8787
"xloc": [
8785
- "default.handlebars->119->2975",
8786
- "default3.handlebars->117->2969"
8788
+ "default.handlebars->119->3002",
8789
+ "default3.handlebars->117->2996"
8790
]
8791
},
8792
{
@@ -8843,8 +8846,8 @@
8846
"zh-chs": "管理领域",
8847
"zh-cht": "管理領域",
8848
"xloc": [
8846
- "default.handlebars->119->2820",
8847
- "default3.handlebars->117->2814"
8849
+ "default.handlebars->119->2847",
8850
+ "default3.handlebars->117->2841"
8851
]
8852
},
8853
{
@@ -8873,8 +8876,8 @@
8876
"zh-chs": "管理员",
8877
"zh-cht": "管理員",
8878
"xloc": [
8876
- "default.handlebars->119->2738",
8877
- "default3.handlebars->117->2735"
8879
+ "default.handlebars->119->2765",
8880
+ "default3.handlebars->117->2762"
8881
]
8882
},
8883
{
@@ -8904,8 +8907,8 @@
8907
"zh-cht": "南非文",
8908
"xloc": [
8909
"default-mobile.handlebars->53->115",
8907
- "default.handlebars->119->1836",
8908
- "default3.handlebars->117->1817",
8910
+ "default.handlebars->119->1863",
8911
+ "default3.handlebars->117->1844",
8912
"login2.handlebars->17->1"
8913
]
8914
},
@@ -8939,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",
8942
- "default.handlebars->119->2449",
8943
- "default.handlebars->119->2462",
8944
- "default.handlebars->119->3361",
8945
+ "default.handlebars->119->2476",
8946
+ "default.handlebars->119->2489",
8947
+ "default.handlebars->119->3388",
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",
8949
- "default3.handlebars->117->2446",
8950
- "default3.handlebars->117->2459",
8951
- "default3.handlebars->117->3351",
8952
+ "default3.handlebars->117->2473",
8953
+ "default3.handlebars->117->2486",
8954
+ "default3.handlebars->117->3378",
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",
@@ -8981,10 +8984,10 @@
8984
"zh-chs": "代理+英特尔AMT",
8985
"zh-cht": "代理+Intel® AMT",
8986
"xloc": [
8984
- "default.handlebars->119->2451",
8985
- "default.handlebars->119->2464",
8986
- "default3.handlebars->117->2448",
8987
- "default3.handlebars->117->2461"
8987
+ "default.handlebars->119->2478",
8988
+ "default.handlebars->119->2491",
8989
+ "default3.handlebars->117->2475",
8990
+ "default3.handlebars->117->2488"
8991
]
8992
},
8993
{
@@ -9044,11 +9047,11 @@
9047
"zh-chs": "代理控制台",
9048
"zh-cht": "代理控制台",
9049
"xloc": [
9050
+ "default-mobile.handlebars->53->1021",
9051
"default-mobile.handlebars->53->599",
9048
- "default-mobile.handlebars->53->994",
9049
- "default.handlebars->119->2386",
9052
+ "default.handlebars->119->2413",
9053
"default.handlebars->119->819",
9051
- "default3.handlebars->117->2383",
9054
+ "default3.handlebars->117->2410",
9055
"default3.handlebars->117->815"
9056
]
9057
},
@@ -9078,8 +9081,8 @@
9081
"zh-chs": "代理错误计数器",
9082
"zh-cht": "代理錯誤計數器",
9083
"xloc": [
9081
- "default.handlebars->119->3329",
9082
- "default3.handlebars->117->3319"
9084
+ "default.handlebars->119->3356",
9085
+ "default3.handlebars->117->3346"
9086
]
9087
},
9088
{
@@ -9302,9 +9305,9 @@
9305
"zh-cht": "代理自行共享",
9306
"xloc": [
9307
"default.handlebars->119->1095",
9305
- "default.handlebars->119->2251",
9308
+ "default.handlebars->119->2278",
9309
"default3.handlebars->117->1091",
9307
- "default3.handlebars->117->2247"
9310
+ "default3.handlebars->117->2274"
9311
]
9312
},
9313
{
@@ -9333,8 +9336,8 @@
9336
"zh-chs": "代理会话",
9337
"zh-cht": "代理時段",
9338
"xloc": [
9336
- "default.handlebars->119->3346",
9337
- "default3.handlebars->117->3336"
9339
+ "default.handlebars->119->3373",
9340
+ "default3.handlebars->117->3363"
9341
]
9342
},
9343
{
@@ -9452,9 +9455,9 @@
9455
"zh-chs": "代理类型",
9456
"zh-cht": "代理類型",
9457
"xloc": [
9455
- "default.handlebars->119->2460",
9458
+ "default.handlebars->119->2487",
9459
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1",
9457
- "default3.handlebars->117->2457",
9460
+ "default3.handlebars->117->2484",
9461
"default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
9462
]
9463
},
@@ -9516,8 +9519,8 @@
9519
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
9520
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
9521
"xloc": [
9519
- "default.handlebars->119->2577",
9520
- "default3.handlebars->117->2574"
9522
+ "default.handlebars->119->2604",
9523
+ "default3.handlebars->117->2601"
9524
]
9525
},
9526
{
@@ -9748,9 +9751,9 @@
9751
"zh-chs": "代理离线",
9752
"zh-cht": "代理離線",
9753
"xloc": [
9751
- "default-mobile.handlebars->53->912",
9752
- "default.handlebars->119->1749",
9753
- "default3.handlebars->117->1732"
9754
+ "default-mobile.handlebars->53->939",
9755
+ "default.handlebars->119->1776",
9756
+ "default3.handlebars->117->1759"
9757
]
9758
},
9759
{
@@ -9779,9 +9782,9 @@
9782
"zh-chs": "代理在线",
9783
"zh-cht": "代理在線",
9784
"xloc": [
9782
- "default-mobile.handlebars->53->911",
9783
- "default.handlebars->119->1748",
9784
- "default3.handlebars->117->1731"
9785
+ "default-mobile.handlebars->53->938",
9786
+ "default.handlebars->119->1775",
9787
+ "default3.handlebars->117->1758"
9788
]
9789
},
9790
{
@@ -10022,11 +10025,11 @@
10025
"zh-chs": "代理",
10026
"zh-cht": "代理",
10027
"xloc": [
10025
- "default.handlebars->119->2417",
10026
- "default.handlebars->119->3374",
10028
+ "default.handlebars->119->2444",
10029
+ "default.handlebars->119->3401",
10030
"default.handlebars->119->589",
10028
- "default3.handlebars->117->2414",
10029
- "default3.handlebars->117->3364",
10031
+ "default3.handlebars->117->2441",
10032
+ "default3.handlebars->117->3391",
10033
"default3.handlebars->117->585"
10034
]
10035
},
@@ -10057,8 +10060,8 @@
10060
"zh-cht": "阿爾巴尼亞文",
10061
"xloc": [
10062
"default-mobile.handlebars->53->116",
10060
- "default.handlebars->119->1837",
10061
- "default3.handlebars->117->1818",
10063
+ "default.handlebars->119->1864",
10064
+ "default3.handlebars->117->1845",
10065
"login2.handlebars->17->2"
10066
]
10067
},
@@ -10104,9 +10107,9 @@
10107
"default-mobile.handlebars->53->374",
10108
"default-mobile.handlebars->53->701",
10109
"default-mobile.handlebars->53->703",
10107
- "default.handlebars->119->3178",
10110
+ "default.handlebars->119->3205",
10111
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1",
10109
- "default3.handlebars->117->3168",
10112
+ "default3.handlebars->117->3195",
10113
"default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1",
10114
"sharing-mobile.handlebars->53->80",
10115
"sharing-mobile.handlebars->53->82"
@@ -10138,8 +10141,8 @@
10141
"zh-chs": "全部可用",
10142
"zh-cht": "全部可用",
10143
"xloc": [
10141
- "default.handlebars->119->2700",
10142
- "default3.handlebars->117->2697"
10144
+ "default.handlebars->119->2727",
10145
+ "default3.handlebars->117->2724"
10146
]
10147
},
10148
{
@@ -10168,9 +10171,9 @@
10171
"zh-chs": "所有可用的代理",
10172
"zh-cht": "所有可用的代理",
10173
"xloc": [
10171
- "default.handlebars->119->2418",
10174
+ "default.handlebars->119->2445",
10175
"default.handlebars->119->590",
10173
- "default3.handlebars->117->2415",
10176
+ "default3.handlebars->117->2442",
10177
"default3.handlebars->117->586"
10178
]
10179
},
@@ -10230,8 +10233,8 @@
10233
"zh-chs": "所有事件",
10234
"zh-cht": "所有事件",
10235
"xloc": [
10233
- "default.handlebars->119->2698",
10234
- "default3.handlebars->117->2695"
10236
+ "default.handlebars->119->2725",
10237
+ "default3.handlebars->117->2722"
10238
]
10239
},
10240
{
@@ -10306,7 +10309,7 @@
10309
"zh-chs": "所有主题",
10310
"zh-cht": "所有主題",
10311
"xloc": [
10309
- "default3.handlebars->117->2086"
10312
+ "default3.handlebars->117->2113"
10313
]
10314
},
10315
{
@@ -10341,8 +10344,8 @@
10344
{
10345
"en": "Allow to override server device name until next connection",
10346
"xloc": [
10344
- "default.handlebars->119->2323",
10345
- "default3.handlebars->117->2320"
10347
+ "default.handlebars->119->2350",
10348
+ "default3.handlebars->117->2347"
10349
]
10350
},
10351
{
@@ -10371,10 +10374,10 @@
10374
"zh-chs": "允许用户管理此设备组和该组中的设备。",
10375
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
10376
"xloc": [
10374
- "default.handlebars->119->2330",
10375
- "default.handlebars->119->2920",
10376
- "default3.handlebars->117->2327",
10377
- "default3.handlebars->117->2914"
10377
+ "default.handlebars->119->2357",
10378
+ "default.handlebars->119->2947",
10379
+ "default3.handlebars->117->2354",
10380
+ "default3.handlebars->117->2941"
10381
]
10382
},
10383
{
@@ -10403,8 +10406,8 @@
10406
"zh-chs": "允许用户管理此设备。",
10407
"zh-cht": "允許用戶管理此裝置。",
10408
"xloc": [
10406
- "default.handlebars->119->2331",
10407
- "default3.handlebars->117->2328"
10409
+ "default.handlebars->119->2358",
10410
+ "default3.handlebars->117->2355"
10411
]
10412
},
10413
{
@@ -10746,13 +10749,13 @@
10749
"zh-chs": "一直通知",
10750
"zh-cht": "一直通知",
10751
"xloc": [
10749
- "default.handlebars->119->2190",
10750
- "default.handlebars->119->2879",
10751
- "default.handlebars->119->2984",
10752
+ "default.handlebars->119->2217",
10753
+ "default.handlebars->119->2906",
10754
+ "default.handlebars->119->3011",
10755
"default.handlebars->119->961",
10753
- "default3.handlebars->117->2186",
10754
- "default3.handlebars->117->2873",
10755
- "default3.handlebars->117->2978",
10756
+ "default3.handlebars->117->2213",
10757
+ "default3.handlebars->117->2900",
10758
+ "default3.handlebars->117->3005",
10759
"default3.handlebars->117->957"
10760
]
10761
},
@@ -10782,13 +10785,13 @@
10785
"zh-chs": "一直提示",
10786
"zh-cht": "一直提示",
10787
"xloc": [
10785
- "default.handlebars->119->2191",
10786
- "default.handlebars->119->2880",
10787
- "default.handlebars->119->2985",
10788
+ "default.handlebars->119->2218",
10789
+ "default.handlebars->119->2907",
10790
+ "default.handlebars->119->3012",
10791
"default.handlebars->119->962",
10789
- "default3.handlebars->117->2187",
10790
- "default3.handlebars->117->2874",
10791
- "default3.handlebars->117->2979",
10792
+ "default3.handlebars->117->2214",
10793
+ "default3.handlebars->117->2901",
10794
+ "default3.handlebars->117->3006",
10795
"default3.handlebars->117->958"
10796
]
10797
},
@@ -10896,8 +10899,8 @@
10899
"pl": "Wystąpił nieznany błąd.",
10900
"uk": "Сталася невідома помилка.",
10901
"xloc": [
10899
- "default.handlebars->119->3123",
10900
- "default3.handlebars->117->3113"
10902
+ "default.handlebars->119->3150",
10903
+ "default3.handlebars->117->3140"
10904
]
10905
},
10906
{
@@ -10962,7 +10965,7 @@
10965
"zh-chs": "Android APK",
10966
"zh-cht": "Android APK",
10967
"xloc": [
10965
- "default-mobile.handlebars->53->966",
10968
+ "default-mobile.handlebars->53->993",
10969
"default.handlebars->119->658",
10970
"default3.handlebars->117->654"
10971
]
@@ -11048,7 +11051,7 @@
11051
"zh-chs": "安卓安装",
11052
"zh-cht": "安卓安裝",
11053
"xloc": [
11051
- "default-mobile.handlebars->53->968"
11054
+ "default-mobile.handlebars->53->995"
11055
]
11056
},
11057
{
@@ -11129,10 +11132,10 @@
11132
"zh-chs": "杀毒软件未激活",
11133
"zh-cht": "殺毒軟件未激活",
11134
"xloc": [
11132
- "default.handlebars->119->2453",
11133
- "default.handlebars->119->2467",
11134
- "default3.handlebars->117->2450",
11135
- "default3.handlebars->117->2464"
11135
+ "default.handlebars->119->2480",
11136
+ "default.handlebars->119->2494",
11137
+ "default3.handlebars->117->2477",
11138
+ "default3.handlebars->117->2491"
11139
]
11140
},
11141
{
@@ -11576,8 +11579,8 @@
11579
"zh-cht": "阿拉伯文(阿爾及利亞)",
11580
"xloc": [
11581
"default-mobile.handlebars->53->118",
11579
- "default.handlebars->119->1839",
11580
- "default3.handlebars->117->1820",
11582
+ "default.handlebars->119->1866",
11583
+ "default3.handlebars->117->1847",
11584
"login2.handlebars->17->4"
11585
]
11586
},
@@ -11608,8 +11611,8 @@
11611
"zh-cht": "阿拉伯文(巴林)",
11612
"xloc": [
11613
"default-mobile.handlebars->53->119",
11611
- "default.handlebars->119->1840",
11612
- "default3.handlebars->117->1821",
11614
+ "default.handlebars->119->1867",
11615
+ "default3.handlebars->117->1848",
11616
"login2.handlebars->17->5"
11617
]
11618
},
@@ -11640,8 +11643,8 @@
11643
"zh-cht": "阿拉伯文(埃及)",
11644
"xloc": [
11645
"default-mobile.handlebars->53->120",
11643
- "default.handlebars->119->1841",
11644
- "default3.handlebars->117->1822",
11646
+ "default.handlebars->119->1868",
11647
+ "default3.handlebars->117->1849",
11648
"login2.handlebars->17->6"
11649
]
11650
},
@@ -11672,8 +11675,8 @@
11675
"zh-cht": "阿拉伯文(伊拉克)",
11676
"xloc": [
11677
"default-mobile.handlebars->53->121",
11675
- "default.handlebars->119->1842",
11676
- "default3.handlebars->117->1823",
11678
+ "default.handlebars->119->1869",
11679
+ "default3.handlebars->117->1850",
11680
"login2.handlebars->17->7"
11681
]
11682
},
@@ -11704,8 +11707,8 @@
11707
"zh-cht": "阿拉伯文(約旦)",
11708
"xloc": [
11709
"default-mobile.handlebars->53->122",
11707
- "default.handlebars->119->1843",
11708
- "default3.handlebars->117->1824",
11710
+ "default.handlebars->119->1870",
11711
+ "default3.handlebars->117->1851",
11712
"login2.handlebars->17->8"
11713
]
11714
},
@@ -11736,8 +11739,8 @@
11739
"zh-cht": "阿拉伯文(科威特)",
11740
"xloc": [
11741
"default-mobile.handlebars->53->123",
11739
- "default.handlebars->119->1844",
11740
- "default3.handlebars->117->1825",
11742
+ "default.handlebars->119->1871",
11743
+ "default3.handlebars->117->1852",
11744
"login2.handlebars->17->9"
11745
]
11746
},
@@ -11768,8 +11771,8 @@
11771
"zh-cht": "阿拉伯文(黎巴嫩)",
11772
"xloc": [
11773
"default-mobile.handlebars->53->124",
11771
- "default.handlebars->119->1845",
11772
- "default3.handlebars->117->1826",
11774
+ "default.handlebars->119->1872",
11775
+ "default3.handlebars->117->1853",
11776
"login2.handlebars->17->10"
11777
]
11778
},
@@ -11800,8 +11803,8 @@
11803
"zh-cht": "阿拉伯文(利比亞)",
11804
"xloc": [
11805
"default-mobile.handlebars->53->125",
11803
- "default.handlebars->119->1846",
11804
- "default3.handlebars->117->1827",
11806
+ "default.handlebars->119->1873",
11807
+ "default3.handlebars->117->1854",
11808
"login2.handlebars->17->11"
11809
]
11810
},
@@ -11832,8 +11835,8 @@
11835
"zh-cht": "阿拉伯文(摩洛哥)",
11836
"xloc": [
11837
"default-mobile.handlebars->53->126",
11835
- "default.handlebars->119->1847",
11836
- "default3.handlebars->117->1828",
11838
+ "default.handlebars->119->1874",
11839
+ "default3.handlebars->117->1855",
11840
"login2.handlebars->17->12"
11841
]
11842
},
@@ -11864,8 +11867,8 @@
11867
"zh-cht": "阿拉伯文(阿曼)",
11868
"xloc": [
11869
"default-mobile.handlebars->53->127",
11867
- "default.handlebars->119->1848",
11868
- "default3.handlebars->117->1829",
11870
+ "default.handlebars->119->1875",
11871
+ "default3.handlebars->117->1856",
11872
"login2.handlebars->17->13"
11873
]
11874
},
@@ -11896,8 +11899,8 @@
11899
"zh-cht": "阿拉伯文(卡塔爾)",
11900
"xloc": [
11901
"default-mobile.handlebars->53->128",
11899
- "default.handlebars->119->1849",
11900
- "default3.handlebars->117->1830",
11902
+ "default.handlebars->119->1876",
11903
+ "default3.handlebars->117->1857",
11904
"login2.handlebars->17->14"
11905
]
11906
},
@@ -11928,8 +11931,8 @@
11931
"zh-cht": "阿拉伯文(沙特阿拉伯)",
11932
"xloc": [
11933
"default-mobile.handlebars->53->129",
11931
- "default.handlebars->119->1850",
11932
- "default3.handlebars->117->1831",
11934
+ "default.handlebars->119->1877",
11935
+ "default3.handlebars->117->1858",
11936
"login2.handlebars->17->15"
11937
]
11938
},
@@ -11960,8 +11963,8 @@
11963
"zh-cht": "阿拉伯文(標準)",
11964
"xloc": [
11965
"default-mobile.handlebars->53->117",
11963
- "default.handlebars->119->1838",
11964
- "default3.handlebars->117->1819",
11966
+ "default.handlebars->119->1865",
11967
+ "default3.handlebars->117->1846",
11968
"login2.handlebars->17->3"
11969
]
11970
},
@@ -11992,8 +11995,8 @@
11995
"zh-cht": "阿拉伯文(敘利亞)",
11996
"xloc": [
11997
"default-mobile.handlebars->53->130",
11995
- "default.handlebars->119->1851",
11996
- "default3.handlebars->117->1832",
11998
+ "default.handlebars->119->1878",
11999
+ "default3.handlebars->117->1859",
12000
"login2.handlebars->17->16"
12001
]
12002
},
@@ -12024,8 +12027,8 @@
12027
"zh-cht": "阿拉伯文(突尼斯)",
12028
"xloc": [
12029
"default-mobile.handlebars->53->131",
12027
- "default.handlebars->119->1852",
12028
- "default3.handlebars->117->1833",
12030
+ "default.handlebars->119->1879",
12031
+ "default3.handlebars->117->1860",
12032
"login2.handlebars->17->17"
12033
]
12034
},
@@ -12056,8 +12059,8 @@
12059
"zh-cht": "阿拉伯文(阿聯酋)",
12060
"xloc": [
12061
"default-mobile.handlebars->53->132",
12059
- "default.handlebars->119->1853",
12060
- "default3.handlebars->117->1834",
12062
+ "default.handlebars->119->1880",
12063
+ "default3.handlebars->117->1861",
12064
"login2.handlebars->17->18"
12065
]
12066
},
@@ -12088,8 +12091,8 @@
12091
"zh-cht": "阿拉伯文(也門)",
12092
"xloc": [
12093
"default-mobile.handlebars->53->133",
12091
- "default.handlebars->119->1854",
12092
- "default3.handlebars->117->1835",
12094
+ "default.handlebars->119->1881",
12095
+ "default3.handlebars->117->1862",
12096
"login2.handlebars->17->19"
12097
]
12098
},
@@ -12120,8 +12123,8 @@
12123
"zh-cht": "阿拉貢文",
12124
"xloc": [
12125
"default-mobile.handlebars->53->134",
12123
- "default.handlebars->119->1855",
12124
- "default3.handlebars->117->1836",
12126
+ "default.handlebars->119->1882",
12127
+ "default3.handlebars->117->1863",
12128
"login2.handlebars->17->20"
12129
]
12130
},
@@ -12218,9 +12221,9 @@
12221
"zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
12222
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
12223
"xloc": [
12221
- "default-mobile.handlebars->53->954",
12222
- "default.handlebars->119->2295",
12223
- "default3.handlebars->117->2289"
12224
+ "default-mobile.handlebars->53->981",
12225
+ "default.handlebars->119->2322",
12226
+ "default3.handlebars->117->2316"
12227
]
12228
},
12229
{
@@ -12353,8 +12356,8 @@
12356
"zh-chs": "您确定要{0}插件吗:{1}",
12357
"zh-cht": "你確定要{0}外掛嗎:{1}",
12358
"xloc": [
12356
- "default.handlebars->119->3427",
12357
- "default3.handlebars->117->3417"
12359
+ "default.handlebars->119->3454",
12360
+ "default3.handlebars->117->3444"
12361
]
12362
},
12363
{
@@ -12415,8 +12418,8 @@
12418
"zh-cht": "亞美尼亞文",
12419
"xloc": [
12420
"default-mobile.handlebars->53->135",
12418
- "default.handlebars->119->1856",
12419
- "default3.handlebars->117->1837",
12421
+ "default.handlebars->119->1883",
12422
+ "default3.handlebars->117->1864",
12423
"login2.handlebars->17->21"
12424
]
12425
},
@@ -12629,8 +12632,8 @@
12632
"zh-cht": "阿薩姆文",
12633
"xloc": [
12634
"default-mobile.handlebars->53->136",
12632
- "default.handlebars->119->1857",
12633
- "default3.handlebars->117->1838",
12635
+ "default.handlebars->119->1884",
12636
+ "default3.handlebars->117->1865",
12637
"login2.handlebars->17->22"
12638
]
12639
},
@@ -12809,8 +12812,8 @@
12812
"zh-cht": "阿斯圖里亞斯文",
12813
"xloc": [
12814
"default-mobile.handlebars->53->137",
12812
- "default.handlebars->119->1858",
12813
- "default3.handlebars->117->1839",
12815
+ "default.handlebars->119->1885",
12816
+ "default3.handlebars->117->1866",
12817
"login2.handlebars->17->23"
12818
]
12819
},
@@ -12840,8 +12843,8 @@
12843
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
12844
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
12845
"xloc": [
12843
- "default.handlebars->119->2546",
12844
- "default3.handlebars->117->2543"
12846
+ "default.handlebars->119->2573",
12847
+ "default3.handlebars->117->2570"
12848
]
12849
},
12850
{
@@ -12941,8 +12944,8 @@
12944
"zh-chs": "认证软件",
12945
"zh-cht": "認證軟體",
12946
"xloc": [
12944
- "default.handlebars->119->2988",
12945
- "default3.handlebars->117->2982"
12947
+ "default.handlebars->119->3015",
12948
+ "default3.handlebars->117->3009"
12949
]
12950
},
12951
{
@@ -12971,12 +12974,12 @@
12974
"zh-chs": "认证设备",
12975
"zh-cht": "認證設備",
12976
"xloc": [
12974
- "default.handlebars->119->1819",
12975
- "default.handlebars->119->1821",
12976
- "default.handlebars->119->1825",
12977
- "default3.handlebars->117->1801",
12978
- "default3.handlebars->117->1803",
12979
- "default3.handlebars->117->1806"
12977
+ "default.handlebars->119->1846",
12978
+ "default.handlebars->119->1848",
12979
+ "default.handlebars->119->1852",
12980
+ "default3.handlebars->117->1828",
12981
+ "default3.handlebars->117->1830",
12982
+ "default3.handlebars->117->1833"
12983
]
12984
},
12985
{
@@ -13045,12 +13048,12 @@
13048
"default-mobile.handlebars->53->322",
13049
"default-mobile.handlebars->53->75",
13050
"default-mobile.handlebars->53->80",
13048
- "default.handlebars->119->1815",
13049
- "default.handlebars->119->1817",
13051
+ "default.handlebars->119->1842",
13052
+ "default.handlebars->119->1844",
13053
"default.handlebars->119->230",
13054
"default.handlebars->119->235",
13052
- "default3.handlebars->117->1797",
13053
- "default3.handlebars->117->1799",
13055
+ "default3.handlebars->117->1824",
13056
+ "default3.handlebars->117->1826",
13057
"default3.handlebars->117->227",
13058
"default3.handlebars->117->232"
13059
]
@@ -13202,10 +13205,10 @@
13205
"zh-chs": "自动删除",
13206
"zh-cht": "自動刪除",
13207
"xloc": [
13205
- "default.handlebars->119->2173",
13206
- "default.handlebars->119->2691",
13207
- "default3.handlebars->117->2169",
13208
- "default3.handlebars->117->2688"
13208
+ "default.handlebars->119->2200",
13209
+ "default.handlebars->119->2718",
13210
+ "default3.handlebars->117->2196",
13211
+ "default3.handlebars->117->2715"
13212
]
13213
},
13214
{
@@ -13271,8 +13274,8 @@
13274
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
13275
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
13276
"xloc": [
13274
- "default.handlebars->119->2627",
13275
- "default3.handlebars->117->2624"
13277
+ "default.handlebars->119->2654",
13278
+ "default3.handlebars->117->2651"
13279
]
13280
},
13281
{
@@ -13389,8 +13392,8 @@
13392
"zh-chs": "自动移除非活动设备",
13393
"zh-cht": "自動移除非活動設備",
13394
"xloc": [
13392
- "default.handlebars->119->2325",
13393
- "default3.handlebars->117->2322"
13395
+ "default.handlebars->119->2352",
13396
+ "default3.handlebars->117->2349"
13397
]
13398
},
13399
{
@@ -13419,8 +13422,8 @@
13422
"zh-chs": "可用內存",
13423
"zh-cht": "可用內存",
13424
"xloc": [
13422
- "default.handlebars->119->3355",
13423
- "default3.handlebars->117->3345"
13425
+ "default.handlebars->119->3382",
13426
+ "default3.handlebars->117->3372"
13427
]
13428
},
13429
{
@@ -13450,8 +13453,8 @@
13453
"zh-cht": "阿塞拜疆文",
13454
"xloc": [
13455
"default-mobile.handlebars->53->138",
13453
- "default.handlebars->119->1859",
13454
- "default3.handlebars->117->1840",
13456
+ "default.handlebars->119->1886",
13457
+ "default3.handlebars->117->1867",
13458
"login2.handlebars->17->24"
13459
]
13460
},
@@ -13727,12 +13730,12 @@
13730
"zh-chs": "后台运行与交互式运行",
13731
"zh-cht": "背景與互動",
13732
"xloc": [
13730
- "default.handlebars->119->2424",
13731
- "default.handlebars->119->2431",
13733
+ "default.handlebars->119->2451",
13734
+ "default.handlebars->119->2458",
13735
"default.handlebars->119->576",
13736
"default.handlebars->119->597",
13734
- "default3.handlebars->117->2421",
13735
- "default3.handlebars->117->2428",
13737
+ "default3.handlebars->117->2448",
13738
+ "default3.handlebars->117->2455",
13739
"default3.handlebars->117->572",
13740
"default3.handlebars->117->593"
13741
]
@@ -13764,13 +13767,13 @@
13767
"zh-cht": "僅背景",
13768
"xloc": [
13769
"agentinvite.handlebars->13->9",
13767
- "default.handlebars->119->2425",
13768
- "default.handlebars->119->2433",
13770
+ "default.handlebars->119->2452",
13771
+ "default.handlebars->119->2460",
13772
"default.handlebars->119->577",
13773
"default.handlebars->119->598",
13774
"default.handlebars->119->615",
13772
- "default3.handlebars->117->2422",
13773
- "default3.handlebars->117->2430",
13775
+ "default3.handlebars->117->2449",
13776
+ "default3.handlebars->117->2457",
13777
"default3.handlebars->117->573",
13778
"default3.handlebars->117->594",
13779
"default3.handlebars->117->611"
@@ -13833,10 +13836,10 @@
13836
"zh-chs": "备用码",
13837
"zh-cht": "備用碼",
13838
"xloc": [
13836
- "default.handlebars->119->2992",
13837
- "default.handlebars->119->3231",
13838
- "default3.handlebars->117->2986",
13839
- "default3.handlebars->117->3221"
13839
+ "default.handlebars->119->3019",
13840
+ "default.handlebars->119->3258",
13841
+ "default3.handlebars->117->3013",
13842
+ "default3.handlebars->117->3248"
13843
]
13844
},
13845
{
@@ -13926,8 +13929,8 @@
13929
"zh-chs": "错误的签名",
13930
"zh-cht": "錯誤的簽名",
13931
"xloc": [
13929
- "default.handlebars->119->3336",
13930
- "default3.handlebars->117->3326"
13932
+ "default.handlebars->119->3363",
13933
+ "default3.handlebars->117->3353"
13934
]
13935
},
13936
{
@@ -13956,8 +13959,8 @@
13959
"zh-chs": "错误的网络证书",
13960
"zh-cht": "錯誤的網絡憑證",
13961
"xloc": [
13959
- "default.handlebars->119->3335",
13960
- "default3.handlebars->117->3325"
13962
+ "default.handlebars->119->3362",
13963
+ "default3.handlebars->117->3352"
13964
]
13965
},
13966
{
@@ -13987,8 +13990,8 @@
13990
"zh-cht": "巴斯克",
13991
"xloc": [
13992
"default-mobile.handlebars->53->139",
13990
- "default.handlebars->119->1860",
13991
- "default3.handlebars->117->1841",
13993
+ "default.handlebars->119->1887",
13994
+ "default3.handlebars->117->1868",
13995
"login2.handlebars->17->25"
13996
]
13997
},
@@ -14093,8 +14096,36 @@
14096
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
14097
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
14098
"xloc": [
14096
- "default.handlebars->119->2626",
14097
- "default3.handlebars->117->2623"
14099
+ "default.handlebars->119->2653",
14100
+ "default3.handlebars->117->2650"
14101
+ ]
14102
+ },
14103
+ {
14104
+ "bs": "Baterija",
14105
+ "cs": "Baterie",
14106
+ "da": "Batteri",
14107
+ "de": "Batterie",
14108
+ "en": "Battery",
14109
+ "es": "Batería",
14110
+ "fi": "Akku",
14111
+ "fr": "Batterie",
14112
+ "hi": "बैटरी",
14113
+ "it": "Batteria",
14114
+ "ja": "バッテリー",
14115
+ "ko": "배터리",
14116
+ "nl": "Batterij",
14117
+ "pl": "Bateria",
14118
+ "pt": "Bateria",
14119
+ "pt-br": "Bateria",
14120
+ "ru": "Батарея",
14121
+ "sv": "Batteri",
14122
+ "tr": "Pil",
14123
+ "zh-chs": "电池",
14124
+ "zh-cht": "電池",
14125
+ "xloc": [
14126
+ "default-mobile.handlebars->53->881",
14127
+ "default.handlebars->119->1717",
14128
+ "default3.handlebars->117->1700"
14129
]
14130
},
14131
{
@@ -14124,8 +14155,8 @@
14155
"zh-cht": "白俄羅斯文",
14156
"xloc": [
14157
"default-mobile.handlebars->53->141",
14127
- "default.handlebars->119->1862",
14128
- "default3.handlebars->117->1843",
14158
+ "default.handlebars->119->1889",
14159
+ "default3.handlebars->117->1870",
14160
"login2.handlebars->17->27"
14161
]
14162
},
@@ -14156,8 +14187,8 @@
14187
"zh-cht": "孟加拉",
14188
"xloc": [
14189
"default-mobile.handlebars->53->142",
14159
- "default.handlebars->119->1863",
14160
- "default3.handlebars->117->1844",
14190
+ "default.handlebars->119->1890",
14191
+ "default3.handlebars->117->1871",
14192
"login2.handlebars->17->28"
14193
]
14194
},
@@ -14225,9 +14256,9 @@
14256
"nl": "BitLocker",
14257
"uk": "BitLocker",
14258
"xloc": [
14228
- "default-mobile.handlebars->53->889",
14229
- "default.handlebars->119->1725",
14230
- "default3.handlebars->117->1708"
14259
+ "default-mobile.handlebars->53->916",
14260
+ "default.handlebars->119->1752",
14261
+ "default3.handlebars->117->1735"
14262
]
14263
},
14264
{
@@ -14237,9 +14268,9 @@
14268
"pl": "Informacje o BitLocker",
14269
"uk": "Інформація о BitLocker",
14270
"xloc": [
14240
- "default-mobile.handlebars->53->910",
14241
- "default.handlebars->119->1746",
14242
- "default3.handlebars->117->1729"
14271
+ "default-mobile.handlebars->53->937",
14272
+ "default.handlebars->119->1773",
14273
+ "default3.handlebars->117->1756"
14274
]
14275
},
14276
{
@@ -14300,8 +14331,8 @@
14331
"zh-cht": "波斯尼亞文",
14332
"xloc": [
14333
"default-mobile.handlebars->53->143",
14303
- "default.handlebars->119->1864",
14304
- "default3.handlebars->117->1845",
14334
+ "default.handlebars->119->1891",
14335
+ "default3.handlebars->117->1872",
14336
"login2.handlebars->17->29"
14337
]
14338
},
@@ -14332,8 +14363,8 @@
14363
"zh-cht": "布列塔尼",
14364
"xloc": [
14365
"default-mobile.handlebars->53->144",
14335
- "default.handlebars->119->1865",
14336
- "default3.handlebars->117->1846",
14366
+ "default.handlebars->119->1892",
14367
+ "default3.handlebars->117->1873",
14368
"login2.handlebars->17->30"
14369
]
14370
},
@@ -14363,9 +14394,9 @@
14394
"zh-chs": "广播",
14395
"zh-cht": "廣播",
14396
"xloc": [
14366
- "default.handlebars->119->2886",
14397
+ "default.handlebars->119->2913",
14398
"default.handlebars->container->column_l->p4->3->1->0->3->1",
14368
- "default3.handlebars->117->2880",
14399
+ "default3.handlebars->117->2907",
14400
"default3.handlebars->container->column_l->p4->3->1->0->1->3"
14401
]
14402
},
@@ -14395,8 +14426,8 @@
14426
"zh-chs": "广播消息",
14427
"zh-cht": "廣播消息",
14428
"xloc": [
14398
- "default.handlebars->119->2802",
14399
- "default3.handlebars->117->2798"
14429
+ "default.handlebars->119->2829",
14430
+ "default3.handlebars->117->2825"
14431
]
14432
},
14433
{
@@ -14425,8 +14456,8 @@
14456
"zh-chs": "向所有连接的用户广播消息。",
14457
"zh-cht": "向所有連接的用戶廣播消息。",
14458
"xloc": [
14428
- "default.handlebars->119->2797",
14429
- "default3.handlebars->117->2793"
14459
+ "default.handlebars->119->2824",
14460
+ "default3.handlebars->117->2820"
14461
]
14462
},
14463
{
@@ -14455,8 +14486,8 @@
14486
"zh-chs": "浏览器",
14487
"zh-cht": "瀏覽器",
14488
"xloc": [
14458
- "default.handlebars->119->3202",
14459
- "default3.handlebars->117->3192"
14489
+ "default.handlebars->119->3229",
14490
+ "default3.handlebars->117->3219"
14491
]
14492
},
14493
{
@@ -14547,8 +14578,8 @@
14578
"zh-cht": "保加利亞文",
14579
"xloc": [
14580
"default-mobile.handlebars->53->140",
14550
- "default.handlebars->119->1861",
14551
- "default3.handlebars->117->1842",
14581
+ "default.handlebars->119->1888",
14582
+ "default3.handlebars->117->1869",
14583
"login2.handlebars->17->26"
14584
]
14585
},
@@ -14579,8 +14610,8 @@
14610
"zh-cht": "緬甸文",
14611
"xloc": [
14612
"default-mobile.handlebars->53->145",
14582
- "default.handlebars->119->1866",
14583
- "default3.handlebars->117->1847",
14613
+ "default.handlebars->119->1893",
14614
+ "default3.handlebars->117->1874",
14615
"login2.handlebars->17->31"
14616
]
14617
},
@@ -14610,8 +14641,8 @@
14641
"zh-chs": "默认情况下,不活动的设备将在 1 天后移除。",
14642
"zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
14643
"xloc": [
14613
- "default.handlebars->119->2327",
14614
- "default3.handlebars->117->2324"
14644
+ "default.handlebars->119->2354",
14645
+ "default3.handlebars->117->2351"
14646
]
14647
},
14648
{
@@ -14640,8 +14671,8 @@
14671
"zh-chs": "默认情况下,非活动设备将在 {0} 天后移除。",
14672
"zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
14673
"xloc": [
14643
- "default.handlebars->119->2328",
14644
- "default3.handlebars->117->2325"
14674
+ "default.handlebars->119->2355",
14675
+ "default3.handlebars->117->2352"
14676
]
14677
},
14678
{
@@ -14683,8 +14714,8 @@
14714
"zh-chs": "字节输入",
14715
"zh-cht": "字節輸入",
14716
"xloc": [
14686
- "default.handlebars->119->3198",
14687
- "default3.handlebars->117->3188"
14717
+ "default.handlebars->119->3225",
14718
+ "default3.handlebars->117->3215"
14719
]
14720
},
14721
{
@@ -14713,8 +14744,8 @@
14744
"zh-chs": "字节输出",
14745
"zh-cht": "字節輸出",
14746
"xloc": [
14716
- "default.handlebars->119->3199",
14717
- "default3.handlebars->117->3189"
14747
+ "default.handlebars->119->3226",
14748
+ "default3.handlebars->117->3216"
14749
]
14750
},
14751
{
@@ -14823,8 +14854,8 @@
14854
"zh-chs": "CCM模式",
14855
"zh-cht": "CCM模式",
14856
"xloc": [
14826
- "default.handlebars->119->2278",
14827
- "default3.handlebars->117->2272"
14857
+ "default.handlebars->119->2305",
14858
+ "default3.handlebars->117->2299"
14859
]
14860
},
14861
{
@@ -14832,15 +14863,15 @@
14863
"en": "CD-ROM",
14864
"nl": "CD-ROM",
14865
"xloc": [
14835
- "default-mobile.handlebars->53->882",
14836
- "default-mobile.handlebars->53->894",
14837
- "default-mobile.handlebars->53->901",
14838
- "default.handlebars->119->1718",
14839
- "default.handlebars->119->1730",
14840
- "default.handlebars->119->1737",
14841
- "default3.handlebars->117->1701",
14842
- "default3.handlebars->117->1713",
14843
- "default3.handlebars->117->1720"
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"
14875
]
14876
},
14877
{
@@ -14870,10 +14901,10 @@
14901
"zh-cht": "CIRA",
14902
"xloc": [
14903
"default-mobile.handlebars->53->461",
14873
- "default.handlebars->119->3362",
14904
+ "default.handlebars->119->3389",
14905
"default.handlebars->119->424",
14906
"default.handlebars->119->731",
14876
- "default3.handlebars->117->3352",
14907
+ "default3.handlebars->117->3379",
14908
"default3.handlebars->117->420",
14909
"default3.handlebars->117->727"
14910
]
@@ -14904,8 +14935,8 @@
14935
"zh-chs": "CIRA服务器",
14936
"zh-cht": "CIRA伺服器",
14937
"xloc": [
14907
- "default.handlebars->119->3411",
14908
- "default3.handlebars->117->3401"
14938
+ "default.handlebars->119->3438",
14939
+ "default3.handlebars->117->3428"
14940
]
14941
},
14942
{
@@ -14934,8 +14965,8 @@
14965
"zh-chs": "CIRA服务器命令",
14966
"zh-cht": "CIRA伺服器指令",
14967
"xloc": [
14937
- "default.handlebars->119->3412",
14938
- "default3.handlebars->117->3402"
14968
+ "default.handlebars->119->3439",
14969
+ "default3.handlebars->117->3429"
14970
]
14971
},
14972
{
@@ -14994,8 +15025,8 @@
15025
"zh-chs": "CIRA设置",
15026
"zh-cht": "CIRA設置",
15027
"xloc": [
14997
- "default.handlebars->119->2286",
14998
- "default3.handlebars->117->2279"
15028
+ "default.handlebars->119->2313",
15029
+ "default3.handlebars->117->2306"
15030
]
15031
},
15032
{
@@ -15027,11 +15058,11 @@
15058
"default-mobile.handlebars->53->839",
15059
"default.handlebars->119->1588",
15060
"default.handlebars->119->1675",
15030
- "default.handlebars->119->3387",
15061
+ "default.handlebars->119->3414",
15062
"default.handlebars->container->column_l->p40->3->1->p40type->5",
15063
"default3.handlebars->117->1573",
15064
"default3.handlebars->117->1658",
15034
- "default3.handlebars->117->3377",
15065
+ "default3.handlebars->117->3404",
15066
"default3.handlebars->container->column_l->p40->3->3->p40type->5"
15067
]
15068
},
@@ -15061,8 +15092,8 @@
15092
"zh-chs": "CPU负载",
15093
"zh-cht": "CPU負載",
15094
"xloc": [
15064
- "default.handlebars->119->3351",
15065
- "default3.handlebars->117->3341"
15095
+ "default.handlebars->119->3378",
15096
+ "default3.handlebars->117->3368"
15097
]
15098
},
15099
{
@@ -15091,8 +15122,8 @@
15122
"zh-chs": "最近15分钟的CPU负载",
15123
"zh-cht": "最近15分鐘的CPU負載",
15124
"xloc": [
15094
- "default.handlebars->119->3354",
15095
- "default3.handlebars->117->3344"
15125
+ "default.handlebars->119->3381",
15126
+ "default3.handlebars->117->3371"
15127
]
15128
},
15129
{
@@ -15121,8 +15152,8 @@
15152
"zh-chs": "最近5分钟的CPU负载",
15153
"zh-cht": "最近5分鐘的CPU負載",
15154
"xloc": [
15124
- "default.handlebars->119->3353",
15125
- "default3.handlebars->117->3343"
15155
+ "default.handlebars->119->3380",
15156
+ "default3.handlebars->117->3370"
15157
]
15158
},
15159
{
@@ -15151,8 +15182,8 @@
15182
"zh-chs": "最近一分钟的CPU负载",
15183
"zh-cht": "最近一分鐘的CPU負載",
15184
"xloc": [
15154
- "default.handlebars->119->3352",
15155
- "default3.handlebars->117->3342"
15185
+ "default.handlebars->119->3379",
15186
+ "default3.handlebars->117->3369"
15187
]
15188
},
15189
{
@@ -15218,8 +15249,8 @@
15249
"zh-chs": "CSV",
15250
"zh-cht": "CSV",
15251
"xloc": [
15221
- "default.handlebars->119->2708",
15222
- "default3.handlebars->117->2705"
15252
+ "default.handlebars->119->2735",
15253
+ "default3.handlebars->117->2732"
15254
]
15255
},
15256
{
@@ -15248,11 +15279,11 @@
15279
"zh-chs": "CSV格式",
15280
"zh-cht": "CSV格式",
15281
"xloc": [
15251
- "default.handlebars->119->2712",
15252
- "default.handlebars->119->2789",
15282
+ "default.handlebars->119->2739",
15283
+ "default.handlebars->119->2816",
15284
"default.handlebars->119->804",
15254
- "default3.handlebars->117->2709",
15255
- "default3.handlebars->117->2785",
15285
+ "default3.handlebars->117->2736",
15286
+ "default3.handlebars->117->2812",
15287
"default3.handlebars->117->800"
15288
]
15289
},
@@ -15262,8 +15293,8 @@
15293
"nl": "Het CSV bestandsformaat is als volgt:",
15294
"uk": "Формат файлу CSV нижче:",
15295
"xloc": [
15265
- "default.handlebars->119->2775",
15266
- "default3.handlebars->117->2771"
15296
+ "default.handlebars->119->2802",
15297
+ "default3.handlebars->117->2798"
15298
]
15299
},
15300
{
@@ -15318,8 +15349,8 @@
15349
"zh-chs": "呼叫错误",
15350
"zh-cht": "呼叫錯誤",
15351
"xloc": [
15321
- "default.handlebars->119->3428",
15322
- "default3.handlebars->117->3418"
15352
+ "default.handlebars->119->3455",
15353
+ "default3.handlebars->117->3445"
15354
]
15355
},
15356
{
@@ -15332,10 +15363,10 @@
15363
"pl": "CallMeBot",
15364
"uk": "CallMeBot",
15365
"xloc": [
15335
- "default.handlebars->119->1784",
15336
- "default.handlebars->119->3027",
15337
- "default3.handlebars->117->1766",
15338
- "default3.handlebars->117->3021"
15366
+ "default.handlebars->119->1811",
15367
+ "default.handlebars->119->3054",
15368
+ "default3.handlebars->117->1793",
15369
+ "default3.handlebars->117->3048"
15370
]
15371
},
15372
{
@@ -15397,8 +15428,8 @@
15428
"agent-translations.json",
15429
"default-mobile.handlebars->53->331",
15430
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
15400
- "default.handlebars->119->2140",
15401
- "default.handlebars->119->3417",
15431
+ "default.handlebars->119->2167",
15432
+ "default.handlebars->119->3444",
15433
"default.handlebars->119->549",
15434
"default.handlebars->container->dialog->idx_dlgButtonBar",
15435
"default3.handlebars->117->545",
@@ -15521,30 +15552,30 @@
15552
"zh-chs": "容量",
15553
"zh-cht": "容量",
15554
"xloc": [
15524
- "default-mobile.handlebars->53->857",
15525
- "default-mobile.handlebars->53->863",
15526
- "default-mobile.handlebars->53->869",
15527
- "default-mobile.handlebars->53->874",
15528
- "default-mobile.handlebars->53->876",
15529
- "default-mobile.handlebars->53->879",
15530
- "default-mobile.handlebars->53->891",
15531
- "default-mobile.handlebars->53->898",
15532
- "default.handlebars->119->1693",
15533
- "default.handlebars->119->1699",
15534
- "default.handlebars->119->1705",
15535
- "default.handlebars->119->1710",
15536
- "default.handlebars->119->1712",
15537
- "default.handlebars->119->1715",
15538
- "default.handlebars->119->1727",
15539
- "default.handlebars->119->1734",
15540
- "default3.handlebars->117->1676",
15541
- "default3.handlebars->117->1682",
15542
- "default3.handlebars->117->1688",
15543
- "default3.handlebars->117->1693",
15544
- "default3.handlebars->117->1695",
15545
- "default3.handlebars->117->1698",
15546
- "default3.handlebars->117->1710",
15547
- "default3.handlebars->117->1717"
15555
+ "default-mobile.handlebars->53->884",
15556
+ "default-mobile.handlebars->53->890",
15557
+ "default-mobile.handlebars->53->896",
15558
+ "default-mobile.handlebars->53->901",
15559
+ "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",
15567
+ "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",
15575
+ "default3.handlebars->117->1722",
15576
+ "default3.handlebars->117->1725",
15577
+ "default3.handlebars->117->1737",
15578
+ "default3.handlebars->117->1744"
15579
]
15580
},
15581
{
@@ -15573,32 +15604,51 @@
15604
"zh-chs": "容量/速度",
15605
"zh-cht": "容量/速度",
15606
"xloc": [
15576
- "default-mobile.handlebars->53->855",
15577
- "default-mobile.handlebars->53->861",
15578
- "default-mobile.handlebars->53->867",
15579
- "default.handlebars->119->1691",
15580
- "default.handlebars->119->1697",
15581
- "default.handlebars->119->1703",
15582
- "default3.handlebars->117->1674",
15583
- "default3.handlebars->117->1680",
15584
- "default3.handlebars->117->1686"
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"
15616
]
15617
},
15618
{
15619
+ "bs": "Preostali kapacitet",
15620
"ca": "Capacitat restant",
15621
+ "cs": "Zbývající kapacita",
15622
+ "da": "Resterende kapacitet",
15623
+ "de": "Verbleibende Kapazität",
15624
"en": "Capacity Remaining",
15625
+ "es": "Capacidad restante",
15626
+ "fi": "Jäljellä oleva kapasiteetti",
15627
+ "fr": "Capacité restante",
15628
+ "hi": "क्षमता शेष",
15629
+ "it": "Capacità rimanente",
15630
+ "ja": "残り容量",
15631
+ "ko": "남은 용량",
15632
"nl": "Resterende capaciteit",
15633
+ "pl": "Pozostała pojemność",
15634
+ "pt": "Capacidade restante",
15635
+ "pt-br": "Capacidade restante",
15636
+ "ru": "Оставшаяся емкость",
15637
+ "sv": "Återstående kapacitet",
15638
+ "tr": "Kalan Kapasite",
15639
"uk": "Вільне місце",
15640
+ "zh-chs": "剩余容量",
15641
+ "zh-cht": "剩餘容量",
15642
"xloc": [
15593
- "default-mobile.handlebars->53->880",
15594
- "default-mobile.handlebars->53->892",
15595
- "default-mobile.handlebars->53->899",
15596
- "default.handlebars->119->1716",
15597
- "default.handlebars->119->1728",
15598
- "default.handlebars->119->1735",
15599
- "default3.handlebars->117->1699",
15600
- "default3.handlebars->117->1711",
15601
- "default3.handlebars->117->1718"
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"
15652
]
15653
},
15654
{
@@ -15628,8 +15678,8 @@
15678
"zh-cht": "加泰羅尼亞文",
15679
"xloc": [
15680
"default-mobile.handlebars->53->146",
15631
- "default.handlebars->119->1867",
15632
- "default3.handlebars->117->1848",
15681
+ "default.handlebars->119->1894",
15682
+ "default3.handlebars->117->1875",
15683
"login2.handlebars->17->32"
15684
]
15685
},
@@ -15726,7 +15776,7 @@
15776
"en": "Cerulean",
15777
"nl": "Hemelsblauw",
15778
"xloc": [
15729
- "default3.handlebars->117->2062"
15779
+ "default3.handlebars->117->2089"
15780
]
15781
},
15782
{
@@ -15756,8 +15806,8 @@
15806
"zh-cht": "查莫羅",
15807
"xloc": [
15808
"default-mobile.handlebars->53->147",
15759
- "default.handlebars->119->1868",
15760
- "default3.handlebars->117->1849",
15809
+ "default.handlebars->119->1895",
15810
+ "default3.handlebars->117->1876",
15811
"login2.handlebars->17->33"
15812
]
15813
},
@@ -15818,8 +15868,8 @@
15868
"zh-chs": "更改{0}的邮箱",
15869
"zh-cht": "更改{0}的電郵",
15870
"xloc": [
15821
- "default.handlebars->119->3069",
15822
- "default3.handlebars->117->3061"
15871
+ "default.handlebars->119->3096",
15872
+ "default3.handlebars->117->3088"
15873
]
15874
},
15875
{
@@ -15898,10 +15948,10 @@
15948
"zh-cht": "更改密碼",
15949
"xloc": [
15950
"default-mobile.handlebars->53->339",
15901
- "default.handlebars->119->2084",
15902
- "default.handlebars->119->3013",
15903
- "default3.handlebars->117->2060",
15904
- "default3.handlebars->117->3007"
15951
+ "default.handlebars->119->2111",
15952
+ "default.handlebars->119->3040",
15953
+ "default3.handlebars->117->2087",
15954
+ "default3.handlebars->117->3034"
15955
]
15956
},
15957
{
@@ -15930,8 +15980,8 @@
15980
"zh-chs": "更改{0}的密码",
15981
"zh-cht": "更改{0}的密碼",
15982
"xloc": [
15933
- "default.handlebars->119->3078",
15934
- "default3.handlebars->117->3066"
15983
+ "default.handlebars->119->3105",
15984
+ "default3.handlebars->117->3093"
15985
]
15986
},
15987
{
@@ -15960,8 +16010,8 @@
16010
"zh-chs": "更改{0}的真实名称",
16011
"zh-cht": "更改{0}的真實名稱",
16012
"xloc": [
15963
- "default.handlebars->119->3064",
15964
- "default3.handlebars->117->3057"
16013
+ "default.handlebars->119->3091",
16014
+ "default3.handlebars->117->3084"
16015
]
16016
},
16017
{
@@ -16138,8 +16188,8 @@
16188
"zh-chs": "更改该用户的密码",
16189
"zh-cht": "更改該用戶的密碼",
16190
"xloc": [
16141
- "default.handlebars->119->3012",
16142
- "default3.handlebars->117->3006"
16191
+ "default.handlebars->119->3039",
16192
+ "default3.handlebars->117->3033"
16193
]
16194
},
16195
{
@@ -16198,8 +16248,8 @@
16248
"zh-chs": "更改您的邮件地址。",
16249
"zh-cht": "在此處更改你的帳戶電郵地址。",
16250
"xloc": [
16201
- "default.handlebars->119->2071",
16202
- "default3.handlebars->117->2053"
16251
+ "default.handlebars->119->2098",
16252
+ "default3.handlebars->117->2080"
16253
]
16254
},
16255
{
@@ -16228,8 +16278,8 @@
16278
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
16279
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
16280
"xloc": [
16231
- "default.handlebars->119->2077",
16232
- "default3.handlebars->117->2057"
16281
+ "default.handlebars->119->2104",
16282
+ "default3.handlebars->117->2084"
16283
]
16284
},
16285
{
@@ -16258,8 +16308,8 @@
16308
"zh-chs": "更改帐户凭据",
16309
"zh-cht": "帳戶憑證已更改",
16310
"xloc": [
16261
- "default.handlebars->119->2598",
16262
- "default3.handlebars->117->2595"
16311
+ "default.handlebars->119->2625",
16312
+ "default3.handlebars->117->2622"
16313
]
16314
},
16315
{
@@ -16288,8 +16338,8 @@
16338
"zh-chs": "将帐户显示名称更改为 {0}。",
16339
"zh-cht": "將帳戶顯示名稱更改為 {0}。",
16340
"xloc": [
16291
- "default.handlebars->119->2650",
16292
- "default3.handlebars->117->2647"
16341
+ "default.handlebars->119->2677",
16342
+ "default3.handlebars->117->2674"
16343
]
16344
},
16345
{
@@ -16318,10 +16368,10 @@
16368
"zh-chs": "{1}组中的设备{0}已更改:{2}",
16369
"zh-cht": "{1}組中的設備{0}已更改:{2}",
16370
"xloc": [
16321
- "default.handlebars->119->2582",
16322
- "default.handlebars->119->2663",
16323
- "default3.handlebars->117->2579",
16324
- "default3.handlebars->117->2660"
16371
+ "default.handlebars->119->2609",
16372
+ "default.handlebars->119->2690",
16373
+ "default3.handlebars->117->2606",
16374
+ "default3.handlebars->117->2687"
16375
]
16376
},
16377
{
@@ -16350,8 +16400,8 @@
16400
"zh-chs": "语言从{1}更改为{2}",
16401
"zh-cht": "語言從{1}更改為{2}",
16402
"xloc": [
16353
- "default.handlebars->119->2526",
16354
- "default3.handlebars->117->2523"
16403
+ "default.handlebars->119->2553",
16404
+ "default3.handlebars->117->2550"
16405
]
16406
},
16407
{
@@ -16380,10 +16430,10 @@
16430
"zh-chs": "已更改{0}的用户设备权限",
16431
"zh-cht": "已更改{0}的用戶設備權限",
16432
"xloc": [
16383
- "default.handlebars->119->2584",
16384
- "default.handlebars->119->2605",
16385
- "default3.handlebars->117->2581",
16386
- "default3.handlebars->117->2602"
16433
+ "default.handlebars->119->2611",
16434
+ "default.handlebars->119->2632",
16435
+ "default3.handlebars->117->2608",
16436
+ "default3.handlebars->117->2629"
16437
]
16438
},
16439
{
@@ -16439,8 +16489,64 @@
16489
"zh-cht": "更改語言將需要刷新頁面。",
16490
"xloc": [
16491
"default-mobile.handlebars->53->314",
16442
- "default.handlebars->119->2035",
16443
- "default3.handlebars->117->2016"
16492
+ "default.handlebars->119->2062",
16493
+ "default3.handlebars->117->2043"
16494
+ ]
16495
+ },
16496
+ {
16497
+ "bs": "Charge Rate",
16498
+ "cs": "Sazba poplatků",
16499
+ "da": "Opladningssats",
16500
+ "de": "Gebührensatz",
16501
+ "en": "Charge Rate",
16502
+ "es": "Tasa de carga",
16503
+ "fi": "Maksuprosentti",
16504
+ "fr": "Taux de facturation",
16505
+ "hi": "शुल्क दर",
16506
+ "it": "Tasso di addebito",
16507
+ "ja": "充電速度",
16508
+ "ko": "청구율",
16509
+ "nl": "Kostentarief",
16510
+ "pl": "Szybkość ładowania",
16511
+ "pt": "Taxa de cobrança",
16512
+ "pt-br": "Taxa de cobrança",
16513
+ "ru": "Ставка заряда",
16514
+ "sv": "Debiteringshastighet",
16515
+ "tr": "Şarj Oranı",
16516
+ "zh-chs": "收费率",
16517
+ "zh-cht": "收費率",
16518
+ "xloc": [
16519
+ "default-mobile.handlebars->53->867",
16520
+ "default.handlebars->119->1703",
16521
+ "default3.handlebars->117->1686"
16522
+ ]
16523
+ },
16524
+ {
16525
+ "bs": "Punjenje",
16526
+ "cs": "Nabíjení",
16527
+ "da": "Opladning",
16528
+ "de": "Aufladen",
16529
+ "en": "Charging",
16530
+ "es": "Cargando",
16531
+ "fi": "Lataus",
16532
+ "fr": "Chargement",
16533
+ "hi": "चार्ज",
16534
+ "it": "In carica",
16535
+ "ja": "充電",
16536
+ "ko": "충전 중",
16537
+ "nl": "Opladen",
16538
+ "pl": "Ładowanie",
16539
+ "pt": "Carregando",
16540
+ "pt-br": "Carregando",
16541
+ "ru": "Зарядка",
16542
+ "sv": "Laddar",
16543
+ "tr": "Şarj etme",
16544
+ "zh-chs": "收费",
16545
+ "zh-cht": "收費",
16546
+ "xloc": [
16547
+ "default-mobile.handlebars->53->869",
16548
+ "default.handlebars->119->1705",
16549
+ "default3.handlebars->117->1688"
16550
]
16551
},
16552
{
@@ -16472,15 +16578,15 @@
16578
"default.handlebars->119->1008",
16579
"default.handlebars->119->1127",
16580
"default.handlebars->119->1152",
16475
- "default.handlebars->119->2729",
16476
- "default.handlebars->119->3008",
16477
- "default.handlebars->119->3009",
16581
+ "default.handlebars->119->2756",
16582
+ "default.handlebars->119->3035",
16583
+ "default.handlebars->119->3036",
16584
"default3.handlebars->117->1004",
16585
"default3.handlebars->117->1121",
16586
"default3.handlebars->117->1146",
16481
- "default3.handlebars->117->2726",
16482
- "default3.handlebars->117->3002",
16483
- "default3.handlebars->117->3003"
16587
+ "default3.handlebars->117->2753",
16588
+ "default3.handlebars->117->3029",
16589
+ "default3.handlebars->117->3030"
16590
]
16591
},
16592
{
@@ -16509,12 +16615,12 @@
16615
"zh-chs": "聊天并通知",
16616
"zh-cht": "聊天並通知",
16617
"xloc": [
16512
- "default-mobile.handlebars->53->1004",
16513
- "default-mobile.handlebars->53->984",
16514
- "default.handlebars->119->2359",
16515
- "default.handlebars->119->2397",
16516
- "default3.handlebars->117->2356",
16517
- "default3.handlebars->117->2394"
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"
16624
]
16625
},
16626
{
@@ -16543,9 +16649,9 @@
16649
"zh-chs": "聊天请求,点击这里接受。",
16650
"zh-cht": "聊天請求,點擊這裡接受。",
16651
"xloc": [
16546
- "default-mobile.handlebars->53->1036",
16547
- "default.handlebars->119->3300",
16548
- "default3.handlebars->117->3290"
16652
+ "default-mobile.handlebars->53->1063",
16653
+ "default.handlebars->119->3327",
16654
+ "default3.handlebars->117->3317"
16655
]
16656
},
16657
{
@@ -16604,8 +16710,8 @@
16710
"zh-cht": "車臣",
16711
"xloc": [
16712
"default-mobile.handlebars->53->148",
16607
- "default.handlebars->119->1869",
16608
- "default3.handlebars->117->1850",
16713
+ "default.handlebars->119->1896",
16714
+ "default3.handlebars->117->1877",
16715
"login2.handlebars->17->34"
16716
]
16717
},
@@ -16770,10 +16876,38 @@
16876
"zh-chs": "检查...",
16877
"zh-cht": "檢查...",
16878
"xloc": [
16773
- "default.handlebars->119->1835",
16774
- "default.handlebars->119->3422",
16775
- "default3.handlebars->117->1816",
16776
- "default3.handlebars->117->3412"
16879
+ "default.handlebars->119->1862",
16880
+ "default.handlebars->119->3449",
16881
+ "default3.handlebars->117->1843",
16882
+ "default3.handlebars->117->3439"
16883
+ ]
16884
+ },
16885
+ {
16886
+ "bs": "hemija",
16887
+ "cs": "Chemie",
16888
+ "da": "Kemi",
16889
+ "de": "Chemie",
16890
+ "en": "Chemistry",
16891
+ "es": "Química",
16892
+ "fi": "Kemia",
16893
+ "fr": "Chimie",
16894
+ "hi": "रसायन विज्ञान",
16895
+ "it": "Chimica",
16896
+ "ja": "化学",
16897
+ "ko": "화학",
16898
+ "nl": "Scheikunde",
16899
+ "pl": "Chemia",
16900
+ "pt": "Química",
16901
+ "pt-br": "Química",
16902
+ "ru": "Химия",
16903
+ "sv": "Kemi",
16904
+ "tr": "Kimya",
16905
+ "zh-chs": "化学",
16906
+ "zh-cht": "化學",
16907
+ "xloc": [
16908
+ "default-mobile.handlebars->53->861",
16909
+ "default.handlebars->119->1697",
16910
+ "default3.handlebars->117->1680"
16911
]
16912
},
16913
{
@@ -16803,8 +16937,8 @@
16937
"zh-cht": "中文",
16938
"xloc": [
16939
"default-mobile.handlebars->53->149",
16806
- "default.handlebars->119->1870",
16807
- "default3.handlebars->117->1851",
16940
+ "default.handlebars->119->1897",
16941
+ "default3.handlebars->117->1878",
16942
"login2.handlebars->17->35"
16943
]
16944
},
@@ -16835,8 +16969,8 @@
16969
"zh-cht": "中文(香港)",
16970
"xloc": [
16971
"default-mobile.handlebars->53->150",
16838
- "default.handlebars->119->1871",
16839
- "default3.handlebars->117->1852",
16972
+ "default.handlebars->119->1898",
16973
+ "default3.handlebars->117->1879",
16974
"login2.handlebars->17->36"
16975
]
16976
},
@@ -16867,8 +17001,8 @@
17001
"zh-cht": "中文(中國)",
17002
"xloc": [
17003
"default-mobile.handlebars->53->151",
16870
- "default.handlebars->119->1872",
16871
- "default3.handlebars->117->1853",
17004
+ "default.handlebars->119->1899",
17005
+ "default3.handlebars->117->1880",
17006
"login2.handlebars->17->37"
17007
]
17008
},
@@ -16899,8 +17033,8 @@
17033
"zh-cht": "簡體中文",
17034
"xloc": [
17035
"default-mobile.handlebars->53->311",
16902
- "default.handlebars->119->2032",
16903
- "default3.handlebars->117->2013",
17036
+ "default.handlebars->119->2059",
17037
+ "default3.handlebars->117->2040",
17038
"login2.handlebars->17->197"
17039
]
17040
},
@@ -16931,8 +17065,8 @@
17065
"zh-cht": "中文(新加坡)",
17066
"xloc": [
17067
"default-mobile.handlebars->53->152",
16934
- "default.handlebars->119->1873",
16935
- "default3.handlebars->117->1854",
17068
+ "default.handlebars->119->1900",
17069
+ "default3.handlebars->117->1881",
17070
"login2.handlebars->17->38"
17071
]
17072
},
@@ -16963,8 +17097,8 @@
17097
"zh-cht": "中文(台灣)",
17098
"xloc": [
17099
"default-mobile.handlebars->53->153",
16966
- "default.handlebars->119->1874",
16967
- "default3.handlebars->117->1855",
17100
+ "default.handlebars->119->1901",
17101
+ "default3.handlebars->117->1882",
17102
"login2.handlebars->17->39"
17103
]
17104
},
@@ -16995,8 +17129,8 @@
17129
"zh-cht": "繁體中文",
17130
"xloc": [
17131
"default-mobile.handlebars->53->312",
16998
- "default.handlebars->119->2033",
16999
- "default3.handlebars->117->2014",
17132
+ "default.handlebars->119->2060",
17133
+ "default3.handlebars->117->2041",
17134
"login2.handlebars->17->198"
17135
]
17136
},
@@ -17058,8 +17192,8 @@
17192
"zh-cht": "楚瓦什",
17193
"xloc": [
17194
"default-mobile.handlebars->53->154",
17061
- "default.handlebars->119->1875",
17062
- "default3.handlebars->117->1856",
17195
+ "default.handlebars->119->1902",
17196
+ "default3.handlebars->117->1883",
17197
"login2.handlebars->17->40"
17198
]
17199
},
@@ -17133,14 +17267,14 @@
17267
"default.handlebars->119->1563",
17268
"default.handlebars->119->1565",
17269
"default.handlebars->119->1567",
17136
- "default.handlebars->119->2520",
17270
+ "default.handlebars->119->2547",
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",
17143
- "default3.handlebars->117->2517",
17277
+ "default3.handlebars->117->2544",
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",
@@ -17332,9 +17466,9 @@
17466
"zh-chs": "全部清除",
17467
"zh-cht": "全部清除",
17468
"xloc": [
17335
- "default-mobile.handlebars->53->1019",
17336
- "default.handlebars->119->3283",
17337
- "default3.handlebars->117->3273"
17469
+ "default-mobile.handlebars->53->1046",
17470
+ "default.handlebars->119->3310",
17471
+ "default3.handlebars->117->3300"
17472
]
17473
},
17474
{
@@ -17394,9 +17528,9 @@
17528
"zh-chs": "清除核心",
17529
"zh-cht": "清除核心",
17530
"xloc": [
17397
- "default-mobile.handlebars->53->920",
17398
- "default.handlebars->119->1757",
17399
- "default3.handlebars->117->1740"
17531
+ "default-mobile.handlebars->53->947",
17532
+ "default.handlebars->119->1784",
17533
+ "default3.handlebars->117->1767"
17534
]
17535
},
17536
{
@@ -17456,9 +17590,9 @@
17590
"zh-chs": "清除此通知",
17591
"zh-cht": "清除此通知",
17592
"xloc": [
17459
- "default-mobile.handlebars->53->1018",
17460
- "default.handlebars->119->3282",
17461
- "default3.handlebars->117->3272"
17593
+ "default-mobile.handlebars->53->1045",
17594
+ "default.handlebars->119->3309",
17595
+ "default3.handlebars->117->3299"
17596
]
17597
},
17598
{
@@ -17574,10 +17708,10 @@
17708
"zh-chs": "单击此处编辑设备组名称",
17709
"zh-cht": "單擊此處編輯裝置群名稱",
17710
"xloc": [
17577
- "default.handlebars->119->2154",
17578
- "default.handlebars->119->2458",
17579
- "default3.handlebars->117->2150",
17580
- "default3.handlebars->117->2455"
17711
+ "default.handlebars->119->2181",
17712
+ "default.handlebars->119->2485",
17713
+ "default3.handlebars->117->2177",
17714
+ "default3.handlebars->117->2482"
17715
]
17716
},
17717
{
@@ -17636,8 +17770,8 @@
17770
"zh-chs": "单击此处编辑用户组名称",
17771
"zh-cht": "單擊此處編輯用戶群名稱",
17772
"xloc": [
17639
- "default.handlebars->119->2859",
17640
- "default3.handlebars->117->2853"
17773
+ "default.handlebars->119->2886",
17774
+ "default3.handlebars->117->2880"
17775
]
17776
},
17777
{
@@ -17782,8 +17916,8 @@
17916
"zh-cht": "單擊確定將驗證電郵發送到:",
17917
"xloc": [
17918
"default-mobile.handlebars->53->324",
17785
- "default.handlebars->119->2068",
17786
- "default3.handlebars->117->2050"
17919
+ "default.handlebars->119->2095",
17920
+ "default3.handlebars->117->2077"
17921
]
17922
},
17923
{
@@ -17929,8 +18063,8 @@
18063
"zh-chs": "客户编号",
18064
"zh-cht": "客戶編號",
18065
"xloc": [
17932
- "default.handlebars->119->2131",
17933
- "default3.handlebars->117->2131"
18066
+ "default.handlebars->119->2158",
18067
+ "default3.handlebars->117->2158"
18068
]
18069
},
18070
{
@@ -17959,8 +18093,8 @@
18093
"zh-chs": "客户端启动的远程访问",
18094
"zh-cht": "客戶端啟動的遠程訪問",
18095
"xloc": [
17962
- "default.handlebars->119->2285",
17963
- "default3.handlebars->117->2280"
18096
+ "default.handlebars->119->2312",
18097
+ "default3.handlebars->117->2307"
18098
]
18099
},
18100
{
@@ -17989,8 +18123,8 @@
18123
"zh-chs": "客户机密",
18124
"zh-cht": "客戶機密",
18125
"xloc": [
17992
- "default.handlebars->119->2132",
17993
- "default3.handlebars->117->2132"
18126
+ "default.handlebars->119->2159",
18127
+ "default3.handlebars->117->2159"
18128
]
18129
},
18130
{
@@ -18056,7 +18190,7 @@
18190
"default.handlebars->119->1536",
18191
"default.handlebars->119->242",
18192
"default.handlebars->119->251",
18059
- "default.handlebars->119->3416",
18193
+ "default.handlebars->119->3443",
18194
"default3.handlebars->117->1452",
18195
"default3.handlebars->117->1521",
18196
"default3.handlebars->117->347",
@@ -18089,8 +18223,8 @@
18223
"zh-chs": "已关闭桌面多路复用会话 \\\"{0}\\\",{1} 秒",
18224
"zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
18225
"xloc": [
18092
- "default.handlebars->119->2670",
18093
- "default3.handlebars->117->2667"
18226
+ "default.handlebars->119->2697",
18227
+ "default3.handlebars->117->2694"
18228
]
18229
},
18230
{
@@ -18119,8 +18253,8 @@
18253
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
18254
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
18255
"xloc": [
18122
- "default.handlebars->119->2531",
18123
- "default3.handlebars->117->2528"
18256
+ "default.handlebars->119->2558",
18257
+ "default3.handlebars->117->2555"
18258
]
18259
},
18260
{
@@ -18332,13 +18466,13 @@
18466
"zh-chs": "指令",
18467
"zh-cht": "指令",
18468
"xloc": [
18335
- "default-mobile.handlebars->53->1006",
18469
+ "default-mobile.handlebars->53->1033",
18470
"default.handlebars->119->1129",
18471
"default.handlebars->119->1154",
18338
- "default.handlebars->119->2399",
18472
+ "default.handlebars->119->2426",
18473
"default3.handlebars->117->1123",
18474
"default3.handlebars->117->1148",
18341
- "default3.handlebars->117->2396"
18475
+ "default3.handlebars->117->2423"
18476
]
18477
},
18478
{
@@ -18421,10 +18555,10 @@
18555
"zh-chs": "通用设备组",
18556
"zh-cht": "通用裝置群",
18557
"xloc": [
18424
- "default.handlebars->119->2894",
18425
- "default.handlebars->119->3083",
18426
- "default3.handlebars->117->2888",
18427
- "default3.handlebars->117->3071"
18558
+ "default.handlebars->119->2921",
18559
+ "default.handlebars->119->3110",
18560
+ "default3.handlebars->117->2915",
18561
+ "default3.handlebars->117->3098"
18562
]
18563
},
18564
{
@@ -18453,10 +18587,10 @@
18587
"zh-chs": "通用设备",
18588
"zh-cht": "通用裝置",
18589
"xloc": [
18456
- "default.handlebars->119->2900",
18457
- "default.handlebars->119->3095",
18458
- "default3.handlebars->117->2894",
18459
- "default3.handlebars->117->3083"
18590
+ "default.handlebars->119->2927",
18591
+ "default.handlebars->119->3122",
18592
+ "default3.handlebars->117->2921",
18593
+ "default3.handlebars->117->3110"
18594
]
18595
},
18596
{
@@ -18585,8 +18719,8 @@
18719
"pl": "Zapisy pliku konfiguracyjnego",
18720
"uk": "Записи файлу конфігурації",
18721
"xloc": [
18588
- "default.handlebars->119->3249",
18589
- "default3.handlebars->117->3239"
18722
+ "default.handlebars->119->3276",
18723
+ "default3.handlebars->117->3266"
18724
]
18725
},
18726
{
@@ -18616,22 +18750,22 @@
18750
"zh-cht": "確認",
18751
"xloc": [
18752
"default-mobile.handlebars->53->617",
18619
- "default-mobile.handlebars->53->955",
18753
+ "default-mobile.handlebars->53->982",
18754
"default.handlebars->119->1303",
18755
"default.handlebars->119->1312",
18622
- "default.handlebars->119->2296",
18623
- "default.handlebars->119->2759",
18624
- "default.handlebars->119->2849",
18625
- "default.handlebars->119->2916",
18626
- "default.handlebars->119->3081",
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",
18761
"default.handlebars->119->768",
18762
"default3.handlebars->117->1293",
18763
"default3.handlebars->117->1301",
18630
- "default3.handlebars->117->2290",
18631
- "default3.handlebars->117->2756",
18632
- "default3.handlebars->117->2843",
18633
- "default3.handlebars->117->2910",
18634
- "default3.handlebars->117->3069",
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",
18769
"default3.handlebars->117->764"
18770
]
18771
},
@@ -18665,7 +18799,7 @@
18799
"en": "Confirm Password",
18800
"nl": "Bevestig wachtwoord",
18801
"xloc": [
18668
- "default3.handlebars->117->2804"
18802
+ "default3.handlebars->117->2831"
18803
]
18804
},
18805
{
@@ -18788,8 +18922,8 @@
18922
"zh-chs": "确认删除选定的帐户?",
18923
"zh-cht": "確認刪除所選帳戶?",
18924
"xloc": [
18791
- "default.handlebars->119->2758",
18792
- "default3.handlebars->117->2755"
18925
+ "default.handlebars->119->2785",
18926
+ "default3.handlebars->117->2782"
18927
]
18928
},
18929
{
@@ -18844,8 +18978,8 @@
18978
"zh-chs": "确认删除选定的用户组?",
18979
"zh-cht": "確認刪除所選用戶群?",
18980
"xloc": [
18847
- "default.handlebars->119->2848",
18848
- "default3.handlebars->117->2842"
18981
+ "default.handlebars->119->2875",
18982
+ "default3.handlebars->117->2869"
18983
]
18984
},
18985
{
@@ -18874,24 +19008,24 @@
19008
"zh-chs": "确认删除用户{0}?",
19009
"zh-cht": "確認刪除用戶{0}?",
19010
"xloc": [
18877
- "default.handlebars->119->3080",
18878
- "default3.handlebars->117->3068"
19011
+ "default.handlebars->119->3107",
19012
+ "default3.handlebars->117->3095"
19013
]
19014
},
19015
{
19016
"en": "Confirm disabling 2FA Duo login security.",
19017
"nl": "Bevestig het uitschakelen van 2FA Duo inlogbeveiliging.",
19018
"xloc": [
18885
- "default.handlebars->119->1814",
18886
- "default3.handlebars->117->1796"
19019
+ "default.handlebars->119->1841",
19020
+ "default3.handlebars->117->1823"
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": [
18893
- "default.handlebars->119->1812",
18894
- "default3.handlebars->117->1794"
19027
+ "default.handlebars->119->1839",
19028
+ "default3.handlebars->117->1821"
19029
]
19030
},
19031
{
@@ -18920,8 +19054,8 @@
19054
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
19055
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
19056
"xloc": [
18923
- "default.handlebars->119->2919",
18924
- "default3.handlebars->117->2913"
19057
+ "default.handlebars->119->2946",
19058
+ "default3.handlebars->117->2940"
19059
]
19060
},
19061
{
@@ -18950,8 +19084,8 @@
19084
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
19085
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
19086
"xloc": [
18953
- "default.handlebars->119->3112",
18954
- "default3.handlebars->117->3100"
19087
+ "default.handlebars->119->3139",
19088
+ "default3.handlebars->117->3127"
19089
]
19090
},
19091
{
@@ -19074,8 +19208,8 @@
19208
"zh-chs": "确认覆盖?",
19209
"zh-cht": "確認覆蓋?",
19210
"xloc": [
19077
- "default.handlebars->119->2512",
19078
- "default3.handlebars->117->2509"
19211
+ "default.handlebars->119->2539",
19212
+ "default3.handlebars->117->2536"
19213
]
19214
},
19215
{
@@ -19104,10 +19238,10 @@
19238
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
19239
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
19240
"xloc": [
19107
- "default.handlebars->119->2909",
19108
- "default.handlebars->119->3103",
19109
- "default3.handlebars->117->2903",
19110
- "default3.handlebars->117->3091"
19241
+ "default.handlebars->119->2936",
19242
+ "default.handlebars->119->3130",
19243
+ "default3.handlebars->117->2930",
19244
+ "default3.handlebars->117->3118"
19245
]
19246
},
19247
{
@@ -19136,10 +19270,10 @@
19270
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
19271
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
19272
"xloc": [
19139
- "default.handlebars->119->2911",
19140
- "default.handlebars->119->3116",
19141
- "default3.handlebars->117->2905",
19142
- "default3.handlebars->117->3104"
19273
+ "default.handlebars->119->2938",
19274
+ "default.handlebars->119->3143",
19275
+ "default3.handlebars->117->2932",
19276
+ "default3.handlebars->117->3131"
19277
]
19278
},
19279
{
@@ -19168,8 +19302,8 @@
19302
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
19303
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
19304
"xloc": [
19171
- "default.handlebars->119->3105",
19172
- "default3.handlebars->117->3093"
19305
+ "default.handlebars->119->3132",
19306
+ "default3.handlebars->117->3120"
19307
]
19308
},
19309
{
@@ -19198,8 +19332,8 @@
19332
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
19333
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
19334
"xloc": [
19201
- "default.handlebars->119->3108",
19202
- "default3.handlebars->117->3096"
19335
+ "default.handlebars->119->3135",
19336
+ "default3.handlebars->117->3123"
19337
]
19338
},
19339
{
@@ -19228,10 +19362,10 @@
19362
"zh-chs": "确认删除访问权限?",
19363
"zh-cht": "確認刪除訪問權限?",
19364
"xloc": [
19231
- "default.handlebars->119->3106",
19232
- "default.handlebars->119->3109",
19233
- "default3.handlebars->117->3094",
19234
- "default3.handlebars->117->3097"
19365
+ "default.handlebars->119->3133",
19366
+ "default.handlebars->119->3136",
19367
+ "default3.handlebars->117->3121",
19368
+ "default3.handlebars->117->3124"
19369
]
19370
},
19371
{
@@ -19261,8 +19395,8 @@
19395
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
19396
"xloc": [
19397
"default-mobile.handlebars->53->323",
19264
- "default.handlebars->119->1818",
19265
- "default3.handlebars->117->1800"
19398
+ "default.handlebars->119->1845",
19399
+ "default3.handlebars->117->1827"
19400
]
19401
},
19402
{
@@ -19317,8 +19451,8 @@
19451
"zh-chs": "确认删除设备共享“{0}”?",
19452
"zh-cht": "確認刪除設備共享“{0}”?",
19453
"xloc": [
19320
- "default.handlebars->119->3101",
19321
- "default3.handlebars->117->3089"
19454
+ "default.handlebars->119->3128",
19455
+ "default3.handlebars->117->3116"
19456
]
19457
},
19458
{
@@ -19399,8 +19533,8 @@
19533
"zh-chs": "确认移除推送认证设备?",
19534
"zh-cht": "確認移除推送認證設備?",
19535
"xloc": [
19402
- "default.handlebars->119->1820",
19403
- "default3.handlebars->117->1802"
19536
+ "default.handlebars->119->1847",
19537
+ "default3.handlebars->117->1829"
19538
]
19539
},
19540
{
@@ -19429,8 +19563,8 @@
19563
"zh-chs": "确认删除用户“ {0} ”的权限?",
19564
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
19565
"xloc": [
19432
- "default.handlebars->119->2411",
19433
- "default3.handlebars->117->2408"
19566
+ "default.handlebars->119->2438",
19567
+ "default3.handlebars->117->2435"
19568
]
19569
},
19570
{
@@ -19459,8 +19593,8 @@
19593
"zh-chs": "确认删除用户组“ {0} ”的权限?",
19594
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
19595
"xloc": [
19462
- "default.handlebars->119->2413",
19463
- "default3.handlebars->117->2410"
19596
+ "default.handlebars->119->2440",
19597
+ "default3.handlebars->117->2437"
19598
]
19599
},
19600
{
@@ -19519,8 +19653,8 @@
19653
"zh-chs": "确认删除此登录令牌?",
19654
"zh-cht": "確認刪除此登錄令牌?",
19655
"xloc": [
19522
- "default.handlebars->119->2124",
19523
- "default3.handlebars->117->2124"
19656
+ "default.handlebars->119->2151",
19657
+ "default3.handlebars->117->2151"
19658
]
19659
},
19660
{
@@ -19575,7 +19709,7 @@
19709
"zh-chs": "确认删除用户{0}?",
19710
"zh-cht": "確認刪除用戶{0}?",
19711
"xloc": [
19578
- "default-mobile.handlebars->53->1015"
19712
+ "default-mobile.handlebars->53->1042"
19713
]
19714
},
19715
{
@@ -19635,8 +19769,8 @@
19769
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
19770
"xloc": [
19771
"default-mobile.handlebars->53->384",
19638
- "default.handlebars->119->2515",
19639
- "default3.handlebars->117->2512"
19772
+ "default.handlebars->119->2542",
19773
+ "default3.handlebars->117->2539"
19774
]
19775
},
19776
{
@@ -19669,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",
19672
- "default.handlebars->119->2194",
19806
+ "default.handlebars->119->2221",
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",
19677
- "default3.handlebars->117->2190",
19811
+ "default3.handlebars->117->2217",
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",
@@ -19776,8 +19910,8 @@
19910
"zh-chs": "连接到服务器",
19911
"zh-cht": "連接到伺服器",
19912
"xloc": [
19779
- "default.handlebars->119->2289",
19780
- "default3.handlebars->117->2283"
19913
+ "default.handlebars->119->2316",
19914
+ "default3.handlebars->117->2310"
19915
]
19916
},
19917
{
@@ -20051,8 +20185,8 @@
20185
"zh-chs": "已连接的英特尔®AMT",
20186
"zh-cht": "已連接的Intel® AMT",
20187
"xloc": [
20054
- "default.handlebars->119->3341",
20055
- "default3.handlebars->117->3331"
20188
+ "default.handlebars->119->3368",
20189
+ "default3.handlebars->117->3358"
20190
]
20191
},
20192
{
@@ -20081,8 +20215,8 @@
20215
"zh-chs": "已连接的英特尔®AMT CIRA",
20216
"zh-cht": "已連接的Intel® AMT CIRA",
20217
"xloc": [
20084
- "default.handlebars->119->3342",
20085
- "default3.handlebars->117->3332"
20218
+ "default.handlebars->119->3369",
20219
+ "default3.handlebars->117->3359"
20220
]
20221
},
20222
{
@@ -20111,8 +20245,8 @@
20245
"zh-chs": "已连接的用户",
20246
"zh-cht": "已连接的用户",
20247
"xloc": [
20114
- "default.handlebars->119->3347",
20115
- "default3.handlebars->117->3337"
20248
+ "default.handlebars->119->3374",
20249
+ "default3.handlebars->117->3364"
20250
]
20251
},
20252
{
@@ -20385,8 +20519,8 @@
20519
"zh-chs": "连接数量",
20520
"zh-cht": "連接數量",
20521
"xloc": [
20388
- "default.handlebars->119->3373",
20389
- "default3.handlebars->117->3363"
20522
+ "default.handlebars->119->3400",
20523
+ "default3.handlebars->117->3390"
20524
]
20525
},
20526
{
@@ -20456,8 +20590,8 @@
20590
"zh-chs": "连接转发器",
20591
"zh-cht": "連接轉發器",
20592
"xloc": [
20459
- "default.handlebars->119->3410",
20460
- "default3.handlebars->117->3400"
20593
+ "default.handlebars->119->3437",
20594
+ "default3.handlebars->117->3427"
20595
]
20596
},
20597
{
@@ -20546,11 +20680,11 @@
20680
"zh-cht": "連接性",
20681
"xloc": [
20682
"default-mobile.handlebars->53->522",
20549
- "default.handlebars->119->2465",
20683
+ "default.handlebars->119->2492",
20684
"default.handlebars->119->396",
20685
"default.handlebars->119->982",
20686
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1",
20553
- "default3.handlebars->117->2462",
20687
+ "default3.handlebars->117->2489",
20688
"default3.handlebars->117->392",
20689
"default3.handlebars->117->978",
20690
"default3.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
@@ -20582,8 +20716,8 @@
20716
"zh-chs": "同意",
20717
"zh-cht": "同意",
20718
"xloc": [
20585
- "default.handlebars->119->2690",
20586
- "default3.handlebars->117->2687"
20719
+ "default.handlebars->119->2717",
20720
+ "default3.handlebars->117->2714"
20721
]
20722
},
20723
{
@@ -20744,8 +20878,8 @@
20878
"zh-chs": "Cookie编码器",
20879
"zh-cht": "Cookie編碼器",
20880
"xloc": [
20747
- "default.handlebars->119->3393",
20748
- "default3.handlebars->117->3383"
20881
+ "default.handlebars->119->3420",
20882
+ "default3.handlebars->117->3410"
20883
]
20884
},
20885
{
@@ -21075,14 +21209,14 @@
21209
"zh-chs": "复制连结到剪贴板",
21210
"zh-cht": "複製連結到剪貼板",
21211
"xloc": [
21078
- "default.handlebars->119->2476",
21079
- "default.handlebars->119->2500",
21212
+ "default.handlebars->119->2503",
21213
+ "default.handlebars->119->2527",
21214
"default.handlebars->119->326",
21215
"default.handlebars->119->348",
21216
"default.handlebars->119->350",
21217
"default.handlebars->119->600",
21084
- "default3.handlebars->117->2473",
21085
- "default3.handlebars->117->2497",
21218
+ "default3.handlebars->117->2500",
21219
+ "default3.handlebars->117->2524",
21220
"default3.handlebars->117->321",
21221
"default3.handlebars->117->343",
21222
"default3.handlebars->117->345",
@@ -21245,8 +21379,8 @@
21379
"zh-chs": "复制:“{0}”到“{1}”",
21380
"zh-cht": "複製:“{0}”到“{1}”",
21381
"xloc": [
21248
- "default.handlebars->119->2574",
21249
- "default3.handlebars->117->2571"
21382
+ "default.handlebars->119->2601",
21383
+ "default3.handlebars->117->2598"
21384
]
21385
},
21386
{
@@ -21455,8 +21589,8 @@
21589
"zh-chs": "核心服务器",
21590
"zh-cht": "核心伺服器",
21591
"xloc": [
21458
- "default.handlebars->119->3392",
21459
- "default3.handlebars->117->3382"
21592
+ "default.handlebars->119->3419",
21593
+ "default3.handlebars->117->3409"
21594
]
21595
},
21596
{
@@ -21486,8 +21620,8 @@
21620
"zh-cht": "科西嘉文",
21621
"xloc": [
21622
"default-mobile.handlebars->53->155",
21489
- "default.handlebars->119->1876",
21490
- "default3.handlebars->117->1857",
21623
+ "default.handlebars->119->1903",
21624
+ "default3.handlebars->117->1884",
21625
"login2.handlebars->17->41"
21626
]
21627
},
@@ -21495,7 +21629,7 @@
21629
"en": "Cosmo",
21630
"nl": "Cosmo",
21631
"xloc": [
21498
- "default3.handlebars->117->2063"
21632
+ "default3.handlebars->117->2090"
21633
]
21634
},
21635
{
@@ -21550,8 +21684,8 @@
21684
"zh-chs": "创建帐号",
21685
"zh-cht": "創建帳號",
21686
"xloc": [
21553
- "default.handlebars->119->2816",
21554
- "default3.handlebars->117->2812",
21687
+ "default.handlebars->119->2843",
21688
+ "default3.handlebars->117->2839",
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"
@@ -21638,9 +21772,9 @@
21772
"zh-chs": "创建登录令牌",
21773
"zh-cht": "創建登錄令牌",
21774
"xloc": [
21641
- "default.handlebars->119->2061",
21775
+ "default.handlebars->119->2088",
21776
"default.handlebars->119->351",
21643
- "default3.handlebars->117->2043"
21777
+ "default3.handlebars->117->2070"
21778
]
21779
},
21780
{
@@ -21669,8 +21803,8 @@
21803
"zh-chs": "创建用户组",
21804
"zh-cht": "創建用戶群",
21805
"xloc": [
21672
- "default.handlebars->119->2856",
21673
- "default3.handlebars->117->2850"
21806
+ "default.handlebars->119->2883",
21807
+ "default3.handlebars->117->2877"
21808
]
21809
},
21810
{
@@ -21729,8 +21863,8 @@
21863
"zh-chs": "使用以下选项创建一个新的设备组。",
21864
"zh-cht": "使用以下選項創建一個新的裝置群。",
21865
"xloc": [
21732
- "default.handlebars->119->2091",
21733
- "default3.handlebars->117->2091"
21866
+ "default.handlebars->119->2118",
21867
+ "default3.handlebars->117->2118"
21868
]
21869
},
21870
{
@@ -21789,8 +21923,8 @@
21923
"zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。",
21924
"zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
21925
"xloc": [
21792
- "default.handlebars->119->2041",
21793
- "default3.handlebars->117->2022"
21926
+ "default.handlebars->119->2068",
21927
+ "default3.handlebars->117->2049"
21928
]
21929
},
21930
{
@@ -21849,8 +21983,8 @@
21983
"zh-chs": "创建文件夹:“{0}”",
21984
"zh-cht": "創建文件夾:“{0}”",
21985
"xloc": [
21852
- "default.handlebars->119->2567",
21853
- "default3.handlebars->117->2564"
21986
+ "default.handlebars->119->2594",
21987
+ "default3.handlebars->117->2591"
21988
]
21989
},
21990
{
@@ -21932,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": [
21935
- "default.handlebars->119->2773",
21936
- "default3.handlebars->117->2769"
22069
+ "default.handlebars->119->2800",
22070
+ "default3.handlebars->117->2796"
22071
]
22072
},
22073
{
@@ -21993,8 +22127,8 @@
22127
"zh-chs": "创建的设备组:{0}",
22128
"zh-cht": "創建的設備組:{0}",
22129
"xloc": [
21996
- "default.handlebars->119->2578",
21997
- "default3.handlebars->117->2575"
22130
+ "default.handlebars->119->2605",
22131
+ "default3.handlebars->117->2602"
22132
]
22133
},
22134
{
@@ -22105,8 +22239,8 @@
22239
"zh-chs": "创建",
22240
"zh-cht": "創建",
22241
"xloc": [
22108
- "default.handlebars->119->2964",
22109
- "default3.handlebars->117->2958"
22242
+ "default.handlebars->119->2991",
22243
+ "default3.handlebars->117->2985"
22244
]
22245
},
22246
{
@@ -22135,8 +22269,8 @@
22269
"zh-chs": "创建时间",
22270
"zh-cht": "創作時間",
22271
"xloc": [
22138
- "default.handlebars->119->2172",
22139
- "default3.handlebars->117->2168"
22272
+ "default.handlebars->119->2199",
22273
+ "default3.handlebars->117->2195"
22274
]
22275
},
22276
{
@@ -22196,10 +22330,10 @@
22330
"zh-chs": "创建者",
22331
"zh-cht": "創作者",
22332
"xloc": [
22199
- "default.handlebars->119->2170",
22200
- "default.handlebars->119->2171",
22201
- "default3.handlebars->117->2166",
22202
- "default3.handlebars->117->2167"
22333
+ "default.handlebars->119->2197",
22334
+ "default.handlebars->119->2198",
22335
+ "default3.handlebars->117->2193",
22336
+ "default3.handlebars->117->2194"
22337
]
22338
},
22339
{
@@ -22230,10 +22364,10 @@
22364
"xloc": [
22365
"default-mobile.handlebars->53->534",
22366
"default.handlebars->119->1378",
22233
- "default.handlebars->119->2129",
22367
+ "default.handlebars->119->2156",
22368
"default.handlebars->119->994",
22369
"default3.handlebars->117->1364",
22236
- "default3.handlebars->117->2129",
22370
+ "default3.handlebars->117->2156",
22371
"default3.handlebars->117->990"
22372
]
22373
},
@@ -22264,8 +22398,8 @@
22398
"zh-cht": "克里語",
22399
"xloc": [
22400
"default-mobile.handlebars->53->156",
22267
- "default.handlebars->119->1877",
22268
- "default3.handlebars->117->1858",
22401
+ "default.handlebars->119->1904",
22402
+ "default3.handlebars->117->1885",
22403
"login2.handlebars->17->42"
22404
]
22405
},
@@ -22296,8 +22430,8 @@
22430
"zh-cht": "克羅地亞文",
22431
"xloc": [
22432
"default-mobile.handlebars->53->157",
22299
- "default.handlebars->119->1878",
22300
- "default3.handlebars->117->1859",
22433
+ "default.handlebars->119->1905",
22434
+ "default3.handlebars->117->1886",
22435
"login2.handlebars->17->43"
22436
]
22437
},
@@ -22607,9 +22741,9 @@
22741
"zh-chs": "当前密码不正确。",
22742
"zh-cht": "當前密碼不正確。",
22743
"xloc": [
22610
- "default-mobile.handlebars->53->1046",
22611
- "default.handlebars->119->3310",
22612
- "default3.handlebars->117->3300"
22744
+ "default-mobile.handlebars->53->1073",
22745
+ "default.handlebars->119->3337",
22746
+ "default3.handlebars->117->3327"
22747
]
22748
},
22749
{
@@ -22714,7 +22848,35 @@
22848
"en": "Cyborg",
22849
"nl": "Cyborg",
22850
"xloc": [
22717
- "default3.handlebars->117->2064"
22851
+ "default3.handlebars->117->2091"
22852
+ ]
22853
+ },
22854
+ {
22855
+ "bs": "Cycle Count",
22856
+ "cs": "Počet cyklů",
22857
+ "da": "Cyklustælling",
22858
+ "de": "Zyklusanzahl",
22859
+ "en": "Cycle Count",
22860
+ "es": "Conteo de ciclos",
22861
+ "fi": "Cycle Count",
22862
+ "fr": "Nombre de cycles",
22863
+ "hi": "चक्र गणना",
22864
+ "it": "Conteggio cicli",
22865
+ "ja": "サイクルカウント",
22866
+ "ko": "사이클 수",
22867
+ "nl": "Cyclustelling",
22868
+ "pl": "Liczba cykli",
22869
+ "pt": "Contagem de ciclos",
22870
+ "pt-br": "Contagem de ciclos",
22871
+ "ru": "Количество циклов",
22872
+ "sv": "Cykelräkning",
22873
+ "tr": "Döngü Sayısı",
22874
+ "zh-chs": "循环计数",
22875
+ "zh-cht": "循環計數",
22876
+ "xloc": [
22877
+ "default-mobile.handlebars->53->856",
22878
+ "default.handlebars->119->1692",
22879
+ "default3.handlebars->117->1675"
22880
]
22881
},
22882
{
@@ -22744,8 +22906,8 @@
22906
"zh-cht": "捷克文",
22907
"xloc": [
22908
"default-mobile.handlebars->53->158",
22747
- "default.handlebars->119->1879",
22748
- "default3.handlebars->117->1860",
22909
+ "default.handlebars->119->1906",
22910
+ "default3.handlebars->117->1887",
22911
"login2.handlebars->17->44"
22912
]
22913
},
@@ -22849,8 +23011,8 @@
23011
"zh-cht": "丹麥文",
23012
"xloc": [
23013
"default-mobile.handlebars->53->159",
22852
- "default.handlebars->119->1880",
22853
- "default3.handlebars->117->1861",
23014
+ "default.handlebars->119->1907",
23015
+ "default3.handlebars->117->1888",
23016
"login2.handlebars->17->45"
23017
]
23018
},
@@ -22889,7 +23051,7 @@
23051
"en": "Darkly",
23052
"nl": "Donker",
23053
"xloc": [
22892
- "default3.handlebars->117->2065"
23054
+ "default3.handlebars->117->2092"
23055
]
23056
},
23057
{
@@ -22935,8 +23097,8 @@
23097
"pl": "Zapisy Bazy Danych",
23098
"uk": "Записи Бази Даних",
23099
"xloc": [
22938
- "default.handlebars->119->3169",
22939
- "default3.handlebars->117->3159"
23100
+ "default.handlebars->119->3196",
23101
+ "default3.handlebars->117->3186"
23102
]
23103
},
23104
{
@@ -22966,8 +23128,8 @@
23128
"zh-cht": "日期和時間",
23129
"xloc": [
23130
"default-mobile.handlebars->53->317",
22969
- "default.handlebars->119->2038",
22970
- "default3.handlebars->117->2019"
23131
+ "default.handlebars->119->2065",
23132
+ "default3.handlebars->117->2046"
23133
]
23134
},
23135
{
@@ -22998,11 +23160,11 @@
23160
"xloc": [
23161
"default-mobile.handlebars->53->607",
23162
"default.handlebars->119->1287",
23001
- "default.handlebars->119->3173",
23002
- "default.handlebars->119->3176",
23163
+ "default.handlebars->119->3200",
23164
+ "default.handlebars->119->3203",
23165
"default3.handlebars->117->1277",
23004
- "default3.handlebars->117->3163",
23005
- "default3.handlebars->117->3166"
23166
+ "default3.handlebars->117->3190",
23167
+ "default3.handlebars->117->3193"
23168
]
23169
},
23170
{
@@ -23031,10 +23193,10 @@
23193
"zh-chs": "停用",
23194
"zh-cht": "停用",
23195
"xloc": [
23034
- "default.handlebars->119->2204",
23035
- "default.handlebars->119->2268",
23036
- "default3.handlebars->117->2200",
23037
- "default3.handlebars->117->2262"
23196
+ "default.handlebars->119->2231",
23197
+ "default.handlebars->119->2295",
23198
+ "default3.handlebars->117->2227",
23199
+ "default3.handlebars->117->2289"
23200
]
23201
},
23202
{
@@ -23063,8 +23225,8 @@
23225
"zh-chs": "如果设置停用CCM",
23226
"zh-cht": "如果設置停用CCM",
23227
"xloc": [
23066
- "default.handlebars->119->2280",
23067
- "default3.handlebars->117->2274"
23228
+ "default.handlebars->119->2307",
23229
+ "default3.handlebars->117->2301"
23230
]
23231
},
23232
{
@@ -23150,15 +23312,15 @@
23312
"zh-chs": "默认",
23313
"zh-cht": "默認",
23314
"xloc": [
23153
- "default.handlebars->119->2803",
23154
- "default.handlebars->119->2852",
23155
- "default.handlebars->119->2863",
23156
- "default.handlebars->119->2937",
23157
- "default3.handlebars->117->2061",
23158
- "default3.handlebars->117->2799",
23159
- "default3.handlebars->117->2846",
23160
- "default3.handlebars->117->2857",
23161
- "default3.handlebars->117->2931"
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"
23324
]
23325
},
23326
{
@@ -23225,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",
23228
- "default.handlebars->119->2507",
23390
+ "default.handlebars->119->2534",
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",
23235
- "default3.handlebars->117->2504",
23397
+ "default3.handlebars->117->2531",
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",
@@ -23276,8 +23438,8 @@
23438
"zh-cht": "刪除帳戶",
23439
"xloc": [
23440
"default-mobile.handlebars->53->333",
23279
- "default.handlebars->119->2076",
23280
- "default3.handlebars->117->2056"
23441
+ "default.handlebars->119->2103",
23442
+ "default3.handlebars->117->2083"
23443
]
23444
},
23445
{
@@ -23306,7 +23468,7 @@
23468
"zh-chs": "删除帐户",
23469
"zh-cht": "刪除帳戶",
23470
"xloc": [
23309
- "default.handlebars->119->2760"
23471
+ "default.handlebars->119->2787"
23472
]
23473
},
23474
{
@@ -23396,12 +23558,12 @@
23558
"zh-chs": "删除群组",
23559
"zh-cht": "刪除群組",
23560
"xloc": [
23399
- "default-mobile.handlebars->53->953",
23400
- "default-mobile.handlebars->53->956",
23401
- "default.handlebars->119->2256",
23402
- "default.handlebars->119->2297",
23403
- "default3.handlebars->117->2252",
23404
- "default3.handlebars->117->2291"
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"
23567
]
23568
},
23569
{
@@ -23487,8 +23649,8 @@
23649
"zh-chs": "删除用户",
23650
"zh-cht": "刪除用戶",
23651
"xloc": [
23490
- "default.handlebars->119->3011",
23491
- "default3.handlebars->117->3005"
23652
+ "default.handlebars->119->3038",
23653
+ "default3.handlebars->117->3032"
23654
]
23655
},
23656
{
@@ -23517,10 +23679,10 @@
23679
"zh-chs": "删除用户群组",
23680
"zh-cht": "刪除用戶群組",
23681
"xloc": [
23520
- "default.handlebars->119->2905",
23521
- "default.handlebars->119->2917",
23522
- "default3.handlebars->117->2899",
23523
- "default3.handlebars->117->2911"
23682
+ "default.handlebars->119->2932",
23683
+ "default.handlebars->119->2944",
23684
+ "default3.handlebars->117->2926",
23685
+ "default3.handlebars->117->2938"
23686
]
23687
},
23688
{
@@ -23549,8 +23711,8 @@
23711
"zh-chs": "删除用户群组",
23712
"zh-cht": "刪除用戶群組",
23713
"xloc": [
23552
- "default.handlebars->119->2850",
23553
- "default3.handlebars->117->2844"
23714
+ "default.handlebars->119->2877",
23715
+ "default3.handlebars->117->2871"
23716
]
23717
},
23718
{
@@ -23579,8 +23741,8 @@
23741
"zh-chs": "删除用户{0}",
23742
"zh-cht": "刪除用戶{0}",
23743
"xloc": [
23582
- "default.handlebars->119->3079",
23583
- "default3.handlebars->117->3067"
23744
+ "default.handlebars->119->3106",
23745
+ "default3.handlebars->117->3094"
23746
]
23747
},
23748
{
@@ -23610,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",
23613
- "default.handlebars->119->2756",
23775
+ "default.handlebars->119->2783",
23776
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7",
23615
- "default3.handlebars->117->2753",
23777
+ "default3.handlebars->117->2780",
23778
"default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
23779
]
23780
},
@@ -23672,8 +23834,8 @@
23834
"zh-chs": "删除群组",
23835
"zh-cht": "刪除群組",
23836
"xloc": [
23675
- "default.handlebars->119->2846",
23676
- "default3.handlebars->117->2840"
23837
+ "default.handlebars->119->2873",
23838
+ "default3.handlebars->117->2867"
23839
]
23840
},
23841
{
@@ -23732,8 +23894,8 @@
23894
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
23895
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
23896
"xloc": [
23735
- "default.handlebars->119->2569",
23736
- "default3.handlebars->117->2566"
23897
+ "default.handlebars->119->2596",
23898
+ "default3.handlebars->117->2593"
23899
]
23900
},
23901
{
@@ -23765,9 +23927,9 @@
23927
"default-mobile.handlebars->53->381",
23928
"default-mobile.handlebars->53->709",
23929
"default.handlebars->119->1548",
23768
- "default.handlebars->119->2509",
23930
+ "default.handlebars->119->2536",
23931
"default3.handlebars->117->1533",
23770
- "default3.handlebars->117->2506",
23932
+ "default3.handlebars->117->2533",
23933
"sharing-mobile.handlebars->53->87",
23934
"sharing.handlebars->47->63"
23935
]
@@ -23798,8 +23960,8 @@
23960
"zh-chs": "删除用户群组{0}?",
23961
"zh-cht": "刪除用戶群組{0}?",
23962
"xloc": [
23801
- "default.handlebars->119->2915",
23802
- "default3.handlebars->117->2909"
23963
+ "default.handlebars->119->2942",
23964
+ "default3.handlebars->117->2936"
23965
]
23966
},
23967
{
@@ -23831,9 +23993,9 @@
23993
"default-mobile.handlebars->53->380",
23994
"default-mobile.handlebars->53->708",
23995
"default.handlebars->119->1547",
23834
- "default.handlebars->119->2508",
23996
+ "default.handlebars->119->2535",
23997
"default3.handlebars->117->1532",
23836
- "default3.handlebars->117->2505",
23998
+ "default3.handlebars->117->2532",
23999
"sharing-mobile.handlebars->53->86",
24000
"sharing.handlebars->47->62"
24001
]
@@ -23893,8 +24055,8 @@
24055
"zh-chs": "删除:“{0}”",
24056
"zh-cht": "刪除:“{0}”",
24057
"xloc": [
23896
- "default.handlebars->119->2568",
23897
- "default3.handlebars->117->2565"
24058
+ "default.handlebars->119->2595",
24059
+ "default3.handlebars->117->2592"
24060
]
24061
},
24062
{
@@ -23923,8 +24085,8 @@
24085
"zh-chs": "删除:“{0}”,{1}个元素已删除",
24086
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
24087
"xloc": [
23926
- "default.handlebars->119->2570",
23927
- "default3.handlebars->117->2567"
24088
+ "default.handlebars->119->2597",
24089
+ "default3.handlebars->117->2594"
24090
]
24091
},
24092
{
@@ -23973,8 +24135,8 @@
24135
"pl": "Odmówiono zalogowania użytkownika z {0}, {1}, {2}",
24136
"uk": "Відмовлено у вході користувачу з {0}, {1}, {2}",
24137
"xloc": [
23976
- "default.handlebars->119->2678",
23977
- "default3.handlebars->117->2675"
24138
+ "default.handlebars->119->2705",
24139
+ "default3.handlebars->117->2702"
24140
]
24141
},
24142
{
@@ -24146,21 +24308,21 @@
24308
"default-mobile.handlebars->53->625",
24309
"default-mobile.handlebars->53->735",
24310
"default-mobile.handlebars->53->793",
24149
- "default-mobile.handlebars->53->939",
24150
- "default-mobile.handlebars->53->962",
24311
+ "default-mobile.handlebars->53->966",
24312
+ "default-mobile.handlebars->53->989",
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",
24156
- "default.handlebars->119->2101",
24157
- "default.handlebars->119->2163",
24158
- "default.handlebars->119->2303",
24159
- "default.handlebars->119->2688",
24160
- "default.handlebars->119->2855",
24161
- "default.handlebars->119->2866",
24162
- "default.handlebars->119->2867",
24163
- "default.handlebars->119->2913",
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",
24326
"default.handlebars->119->883",
24327
"default.handlebars->119->884",
24328
"default.handlebars->container->column_l->p42->p42tbl->1->0->3",
@@ -24169,20 +24331,48 @@
24331
"default3.handlebars->117->1604",
24332
"default3.handlebars->117->1614",
24333
"default3.handlebars->117->167",
24172
- "default3.handlebars->117->2101",
24173
- "default3.handlebars->117->2159",
24174
- "default3.handlebars->117->2299",
24175
- "default3.handlebars->117->2300",
24176
- "default3.handlebars->117->2685",
24177
- "default3.handlebars->117->2849",
24178
- "default3.handlebars->117->2860",
24179
- "default3.handlebars->117->2861",
24180
- "default3.handlebars->117->2907",
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",
24343
"default3.handlebars->117->879",
24344
"default3.handlebars->117->880",
24345
"default3.handlebars->container->column_l->p42->p42tbl->1->0->7"
24346
]
24347
},
24348
+ {
24349
+ "bs": "Dizajn Kapacitet",
24350
+ "cs": "Kapacita designu",
24351
+ "da": "Design kapacitet",
24352
+ "de": "Designkapazität",
24353
+ "en": "Design Capacity",
24354
+ "es": "Capacidad de diseño",
24355
+ "fi": "Suunnittelukapasiteetti",
24356
+ "fr": "Capacité de conception",
24357
+ "hi": "डिज़ाइन क्षमता",
24358
+ "it": "Capacità di progettazione",
24359
+ "ja": "設計能力",
24360
+ "ko": "설계능력",
24361
+ "nl": "Ontwerpcapaciteit",
24362
+ "pl": "Pojemność projektowa",
24363
+ "pt": "Capacidade de projeto",
24364
+ "pt-br": "Capacidade de projeto",
24365
+ "ru": "Проектная мощность",
24366
+ "sv": "Designkapacitet",
24367
+ "tr": "Tasarım Kapasitesi",
24368
+ "zh-chs": "设计容量",
24369
+ "zh-cht": "設計容量",
24370
+ "xloc": [
24371
+ "default-mobile.handlebars->53->862",
24372
+ "default.handlebars->119->1698",
24373
+ "default3.handlebars->117->1681"
24374
+ ]
24375
+ },
24376
{
24377
"bs": "DeskControl",
24378
"ca": "DeskControl",
@@ -24239,24 +24429,24 @@
24429
"default.handlebars->119->1078",
24430
"default.handlebars->119->1192",
24431
"default.handlebars->119->1476",
24242
- "default.handlebars->119->2234",
24243
- "default.handlebars->119->2309",
24244
- "default.handlebars->119->3142",
24245
- "default.handlebars->119->3208",
24246
- "default.handlebars->119->3261",
24247
- "default.handlebars->119->3367",
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",
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",
24254
- "default3.handlebars->117->2230",
24255
- "default3.handlebars->117->2306",
24256
- "default3.handlebars->117->3132",
24257
- "default3.handlebars->117->3198",
24258
- "default3.handlebars->117->3251",
24259
- "default3.handlebars->117->3357",
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",
24450
"default3.handlebars->117->844",
24451
"default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
24452
"default3.handlebars->contextMenu->cxdesktop",
@@ -24293,10 +24483,10 @@
24483
"xloc": [
24484
"default.handlebars->119->1082",
24485
"default.handlebars->119->1195",
24296
- "default.handlebars->119->2238",
24486
+ "default.handlebars->119->2265",
24487
"default3.handlebars->117->1078",
24488
"default3.handlebars->117->1189",
24299
- "default3.handlebars->117->2234"
24489
+ "default3.handlebars->117->2261"
24490
]
24491
},
24492
{
@@ -24326,9 +24516,9 @@
24516
"zh-cht": "桌面+終端",
24517
"xloc": [
24518
"default.handlebars->119->1079",
24329
- "default.handlebars->119->2235",
24519
+ "default.handlebars->119->2262",
24520
"default3.handlebars->117->1075",
24331
- "default3.handlebars->117->2231"
24521
+ "default3.handlebars->117->2258"
24522
]
24523
},
24524
{
@@ -24359,10 +24549,10 @@
24549
"xloc": [
24550
"default.handlebars->119->1083",
24551
"default.handlebars->119->1197",
24362
- "default.handlebars->119->2239",
24552
+ "default.handlebars->119->2266",
24553
"default3.handlebars->117->1079",
24554
"default3.handlebars->117->1191",
24365
- "default3.handlebars->117->2235"
24555
+ "default3.handlebars->117->2262"
24556
]
24557
},
24558
{
@@ -24421,8 +24611,8 @@
24611
"zh-chs": "桌面复用",
24612
"zh-cht": "桌面多路復用",
24613
"xloc": [
24424
- "default.handlebars->119->3372",
24425
- "default3.handlebars->117->3362"
24614
+ "default.handlebars->119->3399",
24615
+ "default3.handlebars->117->3389"
24616
]
24617
},
24618
{
@@ -24451,13 +24641,13 @@
24641
"zh-chs": "桌面通知",
24642
"zh-cht": "桌面通知",
24643
"xloc": [
24454
- "default.handlebars->119->2185",
24455
- "default.handlebars->119->2874",
24456
- "default.handlebars->119->2979",
24644
+ "default.handlebars->119->2212",
24645
+ "default.handlebars->119->2901",
24646
+ "default.handlebars->119->3006",
24647
"default.handlebars->119->956",
24458
- "default3.handlebars->117->2181",
24459
- "default3.handlebars->117->2868",
24460
- "default3.handlebars->117->2973",
24648
+ "default3.handlebars->117->2208",
24649
+ "default3.handlebars->117->2895",
24650
+ "default3.handlebars->117->3000",
24651
"default3.handlebars->117->952"
24652
]
24653
},
@@ -24487,13 +24677,13 @@
24677
"zh-chs": "桌面提示",
24678
"zh-cht": "桌面提示",
24679
"xloc": [
24490
- "default.handlebars->119->2184",
24491
- "default.handlebars->119->2873",
24492
- "default.handlebars->119->2978",
24680
+ "default.handlebars->119->2211",
24681
+ "default.handlebars->119->2900",
24682
+ "default.handlebars->119->3005",
24683
"default.handlebars->119->955",
24494
- "default3.handlebars->117->2180",
24495
- "default3.handlebars->117->2867",
24496
- "default3.handlebars->117->2972",
24684
+ "default3.handlebars->117->2207",
24685
+ "default3.handlebars->117->2894",
24686
+ "default3.handlebars->117->2999",
24687
"default3.handlebars->117->951"
24688
]
24689
},
@@ -24523,13 +24713,13 @@
24713
"zh-chs": "桌面提示+工具栏",
24714
"zh-cht": "桌面提示+工具欄",
24715
"xloc": [
24526
- "default.handlebars->119->2182",
24527
- "default.handlebars->119->2871",
24528
- "default.handlebars->119->2976",
24716
+ "default.handlebars->119->2209",
24717
+ "default.handlebars->119->2898",
24718
+ "default.handlebars->119->3003",
24719
"default.handlebars->119->953",
24530
- "default3.handlebars->117->2178",
24531
- "default3.handlebars->117->2865",
24532
- "default3.handlebars->117->2970",
24720
+ "default3.handlebars->117->2205",
24721
+ "default3.handlebars->117->2892",
24722
+ "default3.handlebars->117->2997",
24723
"default3.handlebars->117->949"
24724
]
24725
},
@@ -24559,8 +24749,8 @@
24749
"zh-chs": "桌面会话",
24750
"zh-cht": "桌面會話",
24751
"xloc": [
24562
- "default.handlebars->119->3132",
24563
- "default3.handlebars->117->3122"
24752
+ "default.handlebars->119->3159",
24753
+ "default3.handlebars->117->3149"
24754
]
24755
},
24756
{
@@ -24676,13 +24866,13 @@
24866
"zh-chs": "桌面工具栏",
24867
"zh-cht": "桌面工具欄",
24868
"xloc": [
24679
- "default.handlebars->119->2183",
24680
- "default.handlebars->119->2872",
24681
- "default.handlebars->119->2977",
24869
+ "default.handlebars->119->2210",
24870
+ "default.handlebars->119->2899",
24871
+ "default.handlebars->119->3004",
24872
"default.handlebars->119->954",
24683
- "default3.handlebars->117->2179",
24684
- "default3.handlebars->117->2866",
24685
- "default3.handlebars->117->2971",
24873
+ "default3.handlebars->117->2206",
24874
+ "default3.handlebars->117->2893",
24875
+ "default3.handlebars->117->2998",
24876
"default3.handlebars->117->950"
24877
]
24878
},
@@ -24712,8 +24902,8 @@
24902
"zh-chs": "仅桌面视图",
24903
"zh-cht": "僅桌面視圖",
24904
"xloc": [
24715
- "default.handlebars->119->2952",
24716
- "default3.handlebars->117->2946"
24905
+ "default.handlebars->119->2979",
24906
+ "default3.handlebars->117->2973"
24907
]
24908
},
24909
{
@@ -24869,12 +25059,12 @@
25059
"default-mobile.handlebars->53->564",
25060
"default.handlebars->119->1132",
25061
"default.handlebars->119->1157",
24872
- "default.handlebars->119->2402",
25062
+ "default.handlebars->119->2429",
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",
24877
- "default3.handlebars->117->2399",
25067
+ "default3.handlebars->117->2426",
25068
"default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
25069
"default3.handlebars->contextMenu->cxdetails"
25070
]
@@ -24937,20 +25127,20 @@
25127
"xloc": [
25128
"default-mobile.handlebars->53->787",
25129
"default.handlebars->119->1613",
24940
- "default.handlebars->119->1824",
24941
- "default.handlebars->119->2339",
25130
+ "default.handlebars->119->1851",
25131
+ "default.handlebars->119->2366",
25132
"default.handlebars->119->296",
24943
- "default.handlebars->119->3098",
24944
- "default.handlebars->119->3172",
24945
- "default.handlebars->119->3192",
25133
+ "default.handlebars->119->3125",
25134
+ "default.handlebars->119->3199",
25135
+ "default.handlebars->119->3219",
25136
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5",
25137
"default3.handlebars->117->1598",
24948
- "default3.handlebars->117->1805",
24949
- "default3.handlebars->117->2336",
25138
+ "default3.handlebars->117->1832",
25139
+ "default3.handlebars->117->2363",
25140
"default3.handlebars->117->291",
24951
- "default3.handlebars->117->3086",
24952
- "default3.handlebars->117->3162",
24953
- "default3.handlebars->117->3182",
25141
+ "default3.handlebars->117->3113",
25142
+ "default3.handlebars->117->3189",
25143
+ "default3.handlebars->117->3209",
25144
"default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSort->sortselect->5"
25145
]
25146
},
@@ -25102,8 +25292,8 @@
25292
"zh-chs": "设备详情",
25293
"zh-cht": "設備詳情",
25294
"xloc": [
25105
- "default.handlebars->119->2363",
25106
- "default3.handlebars->117->2360"
25295
+ "default.handlebars->119->2390",
25296
+ "default3.handlebars->117->2387"
25297
]
25298
},
25299
{
@@ -25163,29 +25353,29 @@
25353
"zh-cht": "裝置群",
25354
"xloc": [
25355
"agent-translations.json",
25166
- "default-mobile.handlebars->53->1024",
25167
- "default.handlebars->119->2334",
25168
- "default.handlebars->119->2337",
25169
- "default.handlebars->119->2338",
25170
- "default.handlebars->119->2705",
25171
- "default.handlebars->119->2897",
25172
- "default.handlebars->119->2903",
25173
- "default.handlebars->119->3086",
25174
- "default.handlebars->119->3155",
25175
- "default.handlebars->119->3179",
25176
- "default.handlebars->119->3195",
25177
- "default.handlebars->119->3288",
25178
- "default3.handlebars->117->2331",
25179
- "default3.handlebars->117->2334",
25180
- "default3.handlebars->117->2335",
25181
- "default3.handlebars->117->2702",
25182
- "default3.handlebars->117->2891",
25183
- "default3.handlebars->117->2897",
25184
- "default3.handlebars->117->3074",
25185
- "default3.handlebars->117->3145",
25186
- "default3.handlebars->117->3169",
25187
- "default3.handlebars->117->3185",
25188
- "default3.handlebars->117->3278"
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"
25379
]
25380
},
25381
{
@@ -25214,9 +25404,9 @@
25404
"zh-chs": "设备组用户",
25405
"zh-cht": "裝置群用戶",
25406
"xloc": [
25217
- "default-mobile.handlebars->53->1013",
25218
- "default.handlebars->119->2409",
25219
- "default3.handlebars->117->2406"
25407
+ "default-mobile.handlebars->53->1040",
25408
+ "default.handlebars->119->2436",
25409
+ "default3.handlebars->117->2433"
25410
]
25411
},
25412
{
@@ -25246,17 +25436,17 @@
25436
"zh-cht": "裝置群",
25437
"xloc": [
25438
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
25249
- "default.handlebars->119->2721",
25250
- "default.handlebars->119->2840",
25251
- "default.handlebars->119->2884",
25252
- "default.handlebars->119->2973",
25253
- "default.handlebars->119->3345",
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",
25444
"default.handlebars->container->column_l->p2->p2info->9",
25255
- "default3.handlebars->117->2718",
25256
- "default3.handlebars->117->2834",
25257
- "default3.handlebars->117->2878",
25258
- "default3.handlebars->117->2967",
25259
- "default3.handlebars->117->3335",
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",
25450
"default3.handlebars->container->column_l->p2->p2info->9"
25451
]
25452
},
@@ -25378,11 +25568,11 @@
25568
"xloc": [
25569
"default-mobile.handlebars->53->623",
25570
"default.handlebars->119->1355",
25381
- "default.handlebars->119->3154",
25571
+ "default.handlebars->119->3181",
25572
"default.handlebars->119->508",
25573
"default.handlebars->119->517",
25574
"default3.handlebars->117->1340",
25385
- "default3.handlebars->117->3144",
25575
+ "default3.handlebars->117->3171",
25576
"default3.handlebars->117->504",
25577
"default3.handlebars->117->513",
25578
"player.handlebars->29->25"
@@ -25446,7 +25636,7 @@
25636
"zh-chs": "设备配对链接",
25637
"zh-cht": "設備配對鏈接",
25638
"xloc": [
25449
- "default-mobile.handlebars->53->967"
25639
+ "default-mobile.handlebars->53->994"
25640
]
25641
},
25642
{
@@ -25455,8 +25645,8 @@
25645
"nl": "Apparaat is ingeschakeld",
25646
"uk": "Пристрій Увімкнено",
25647
"xloc": [
25458
- "default.handlebars->119->2682",
25459
- "default3.handlebars->117->2679"
25648
+ "default.handlebars->119->2709",
25649
+ "default3.handlebars->117->2706"
25650
]
25651
},
25652
{
@@ -25485,8 +25675,8 @@
25675
"zh-chs": "设备推送",
25676
"zh-cht": "設備推送",
25677
"xloc": [
25488
- "default.handlebars->119->2993",
25489
- "default3.handlebars->117->2987"
25678
+ "default.handlebars->119->3020",
25679
+ "default3.handlebars->117->3014"
25680
]
25681
},
25682
{
@@ -25501,8 +25691,8 @@
25691
"pl": "Zapis Powiadomień Push Urządzenia",
25692
"uk": "Запис Push-Сповіщень Пристрою",
25693
"xloc": [
25504
- "default.handlebars->119->3258",
25505
- "default3.handlebars->117->3248"
25694
+ "default.handlebars->119->3285",
25695
+ "default3.handlebars->117->3275"
25696
]
25697
},
25698
{
@@ -25517,8 +25707,8 @@
25707
"pl": "Zapis SMBIOS urządzenia",
25708
"uk": "SMBIOS запис пристрою",
25709
"xloc": [
25520
- "default.handlebars->119->3257",
25521
- "default3.handlebars->117->3247"
25710
+ "default.handlebars->119->3284",
25711
+ "default3.handlebars->117->3274"
25712
]
25713
},
25714
{
@@ -25600,9 +25790,9 @@
25790
"zh-cht": "設備共享鏈接",
25791
"xloc": [
25792
"default.handlebars->119->1075",
25603
- "default.handlebars->119->2231",
25793
+ "default.handlebars->119->2258",
25794
"default3.handlebars->117->1071",
25605
- "default3.handlebars->117->2227"
25795
+ "default3.handlebars->117->2254"
25796
]
25797
},
25798
{
@@ -25756,17 +25946,17 @@
25946
"default.handlebars->119->1101",
25947
"default.handlebars->119->1105",
25948
"default.handlebars->119->1109",
25759
- "default.handlebars->119->2064",
25760
- "default.handlebars->119->2436",
25761
- "default.handlebars->119->2440",
25762
- "default.handlebars->119->2444",
25949
+ "default.handlebars->119->2091",
25950
+ "default.handlebars->119->2463",
25951
+ "default.handlebars->119->2467",
25952
+ "default.handlebars->119->2471",
25953
"default3.handlebars->117->1095",
25954
"default3.handlebars->117->1099",
25955
"default3.handlebars->117->1103",
25766
- "default3.handlebars->117->2046",
25767
- "default3.handlebars->117->2433",
25768
- "default3.handlebars->117->2437",
25769
- "default3.handlebars->117->2441"
25956
+ "default3.handlebars->117->2073",
25957
+ "default3.handlebars->117->2460",
25958
+ "default3.handlebars->117->2464",
25959
+ "default3.handlebars->117->2468"
25960
]
25961
},
25962
{
@@ -25798,17 +25988,17 @@
25988
"default.handlebars->119->1102",
25989
"default.handlebars->119->1106",
25990
"default.handlebars->119->1110",
25801
- "default.handlebars->119->2065",
25802
- "default.handlebars->119->2437",
25803
- "default.handlebars->119->2441",
25804
- "default.handlebars->119->2445",
25991
+ "default.handlebars->119->2092",
25992
+ "default.handlebars->119->2464",
25993
+ "default.handlebars->119->2468",
25994
+ "default.handlebars->119->2472",
25995
"default3.handlebars->117->1096",
25996
"default3.handlebars->117->1100",
25997
"default3.handlebars->117->1104",
25808
- "default3.handlebars->117->2047",
25809
- "default3.handlebars->117->2434",
25810
- "default3.handlebars->117->2438",
25811
- "default3.handlebars->117->2442"
25998
+ "default3.handlebars->117->2074",
25999
+ "default3.handlebars->117->2461",
26000
+ "default3.handlebars->117->2465",
26001
+ "default3.handlebars->117->2469"
26002
]
26003
},
26004
{
@@ -25837,8 +26027,8 @@
26027
"zh-chs": "创建的设备组:{0}",
26028
"zh-cht": "設備組已創建:{0}",
26029
"xloc": [
25840
- "default.handlebars->119->2599",
25841
- "default3.handlebars->117->2596"
26030
+ "default.handlebars->119->2626",
26031
+ "default3.handlebars->117->2623"
26032
]
26033
},
26034
{
@@ -25867,8 +26057,8 @@
26057
"zh-chs": "设备组已删除:{0}",
26058
"zh-cht": "設備組已刪除:{0}",
26059
"xloc": [
25870
- "default.handlebars->119->2600",
25871
- "default3.handlebars->117->2597"
26060
+ "default.handlebars->119->2627",
26061
+ "default3.handlebars->117->2624"
26062
]
26063
},
26064
{
@@ -25897,8 +26087,8 @@
26087
"zh-chs": "设备组成员身份已更改:{0}",
26088
"zh-cht": "設備組成員身份已更改:{0}",
26089
"xloc": [
25900
- "default.handlebars->119->2601",
25901
- "default3.handlebars->117->2598"
26090
+ "default.handlebars->119->2628",
26091
+ "default3.handlebars->117->2625"
26092
]
26093
},
26094
{
@@ -25958,8 +26148,8 @@
26148
"zh-chs": "设备组通知已更改",
26149
"zh-cht": "設備組通知已更改",
26150
"xloc": [
25961
- "default.handlebars->119->2596",
25962
- "default3.handlebars->117->2593"
26151
+ "default.handlebars->119->2623",
26152
+ "default3.handlebars->117->2620"
26153
]
26154
},
26155
{
@@ -25974,8 +26164,8 @@
26164
"pl": "Zapis grupy urządzeń",
26165
"uk": "Запис групи пристроїв",
26166
"xloc": [
25977
- "default.handlebars->119->3243",
25978
- "default3.handlebars->117->3233"
26167
+ "default.handlebars->119->3270",
26168
+ "default3.handlebars->117->3260"
26169
]
26170
},
26171
{
@@ -26004,8 +26194,8 @@
26194
"zh-chs": "未删除的设备组:{0}",
26195
"zh-cht": "未刪除的設備組:{0}",
26196
"xloc": [
26007
- "default.handlebars->119->2579",
26008
- "default3.handlebars->117->2576"
26197
+ "default.handlebars->119->2606",
26198
+ "default3.handlebars->117->2603"
26199
]
26200
},
26201
{
@@ -26034,8 +26224,8 @@
26224
"zh-chs": "设备组 {0} 已更改:{1}",
26225
"zh-cht": "設備組 {0} 已更改:{1}",
26226
"xloc": [
26037
- "default.handlebars->119->2665",
26038
- "default3.handlebars->117->2662"
26227
+ "default.handlebars->119->2692",
26228
+ "default3.handlebars->117->2689"
26229
]
26230
},
26231
{
@@ -26080,8 +26270,8 @@
26270
"pl": "Zapisy informacji urządzenia",
26271
"uk": "Записи інформації про пристрій",
26272
"xloc": [
26083
- "default.handlebars->119->3245",
26084
- "default3.handlebars->117->3235"
26273
+ "default.handlebars->119->3272",
26274
+ "default3.handlebars->117->3262"
26275
]
26276
},
26277
{
@@ -26711,8 +26901,8 @@
26901
"pl": "Zapisy zmiany stanu zasilania",
26902
"uk": "Записи про зміни стану живлення",
26903
"xloc": [
26714
- "default.handlebars->119->3251",
26715
- "default3.handlebars->117->3241"
26904
+ "default.handlebars->119->3278",
26905
+ "default3.handlebars->117->3268"
26906
]
26907
},
26908
{
@@ -26727,8 +26917,8 @@
26917
"pl": "Zapis urządzenia",
26918
"uk": "Запис пристрою",
26919
"xloc": [
26730
- "default.handlebars->119->3242",
26731
- "default3.handlebars->117->3232"
26920
+ "default.handlebars->119->3269",
26921
+ "default3.handlebars->117->3259"
26922
]
26923
},
26924
{
@@ -26757,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": [
26760
- "default.handlebars->119->2634",
26761
- "default3.handlebars->117->2631"
26950
+ "default.handlebars->119->2661",
26951
+ "default3.handlebars->117->2658"
26952
]
26953
},
26954
{
@@ -26787,8 +26977,8 @@
26977
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
26978
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
26979
"xloc": [
26790
- "default.handlebars->119->2581",
26791
- "default3.handlebars->117->2578"
26980
+ "default.handlebars->119->2608",
26981
+ "default3.handlebars->117->2605"
26982
]
26983
},
26984
{
@@ -26803,8 +26993,8 @@
26993
"pl": "Zapisy udostępniania urządzenia",
26994
"uk": "Записи поширеного пристрою",
26995
"xloc": [
26806
- "default.handlebars->119->3255",
26807
- "default3.handlebars->117->3245"
26996
+ "default.handlebars->119->3282",
26997
+ "default3.handlebars->117->3272"
26998
]
26999
},
27000
{
@@ -26819,8 +27009,8 @@
27009
"pl": "Zapisy urządzenia, użytkowników, grup i inne",
27010
"uk": "Пристрій, користувачі, групи та інші записи",
27011
"xloc": [
26822
- "default.handlebars->119->3259",
26823
- "default3.handlebars->117->3249"
27012
+ "default.handlebars->119->3286",
27013
+ "default3.handlebars->117->3276"
27014
]
27015
},
27016
{
@@ -26849,12 +27039,12 @@
27039
"zh-chs": "设备",
27040
"zh-cht": "裝置",
27041
"xloc": [
26852
- "default.handlebars->119->2254",
26853
- "default.handlebars->119->2841",
26854
- "default.handlebars->119->2885",
26855
- "default3.handlebars->117->2250",
26856
- "default3.handlebars->117->2835",
26857
- "default3.handlebars->117->2879"
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"
27048
]
27049
},
27050
{
@@ -27100,8 +27290,8 @@
27290
"en": "Disabled Duo two-factor authentication",
27291
"nl": "Duo twee factorauthenticatie uitgeschakeld",
27292
"xloc": [
27103
- "default.handlebars->119->2684",
27104
- "default3.handlebars->117->2681"
27293
+ "default.handlebars->119->2711",
27294
+ "default3.handlebars->117->2708"
27295
]
27296
},
27297
{
@@ -27130,8 +27320,64 @@
27320
"zh-chs": "禁用的电子邮件两因素身份验证",
27321
"zh-cht": "禁用的電子郵件兩因素身份驗證",
27322
"xloc": [
This file is too large to show in full.
views/default-mobile.handlebars
+34
-6
@@ -6518,12 +6518,40 @@
6518
if (hardware.tpm) {
6519
var x = '', tpm = hardware.tpm;
6520
if (tpm.SpecVersion) { x += addDetailItem("SpecVersion", parseFloat(EscapeHtml(tpm.SpecVersion)).toFixed(1), s); }
6521
- if (tpm.ManufacturerId) { x += addDetailItem("ManufacturerId", EscapeHtml(tpm.ManufacturerId), s); }
6522
- if (tpm.ManufacturerVersion) { x += addDetailItem("ManufacturerVersion", EscapeHtml(tpm.ManufacturerVersion), s); }
6523
- if (tpm.IsActivated != null) { x += addDetailItem("IsActivated", (tpm.IsActivated ? "Yes" : "No"), s); }
6524
- if (tpm.IsEnabled != null) { x += addDetailItem("IsEnabled", (tpm.IsEnabled ? "Yes" : "No"), s); }
6525
- if (tpm.IsOwned != null) { x += addDetailItem("IsOwned", (tpm.IsOwned ? "Yes" : "No"), s); }
6526
- if (x != '') { sections.push({ name: "TPM", html: x, img: 'tpm'}); }
6521
+ if (tpm.ManufacturerId) { x += addDetailItem("Identifier", EscapeHtml(tpm.ManufacturerId), s); }
6522
+ if (tpm.ManufacturerVersion) { x += addDetailItem("Version", EscapeHtml(tpm.ManufacturerVersion), s); }
6523
+ if (tpm.IsActivated != null) { x += addDetailItem("Activated", (tpm.IsActivated ? "Yes" : "No"), s); }
6524
+ if (tpm.IsEnabled != null) { x += addDetailItem("Enabled", (tpm.IsEnabled ? "Yes" : "No"), s); }
6525
+ if (tpm.IsOwned != null) { x += addDetailItem("Owned", (tpm.IsOwned ? "Yes" : "No"), s); }
6526
+ if (x != '') { sections.push({ name: "TPM", html: x, img: 'tpm' }); }
6527
+ }
6528
+
6529
+ // Batteries
6530
+ if (hardware.battery) {
6531
+ var x = '';
6532
+ x += '<table style=width:100%>';
6533
+ for (var i in hardware.battery) {
6534
+ var battery = hardware.battery[i];
6535
+ x += '<tr><td><div class=style10 style=border-radius:5px;padding:8px>';
6536
+ x += '<div style=margin-bottom:3px><b>' + EscapeHtml(battery.DeviceName ? battery.DeviceName : "Unknown") + '</b></div>';
6537
+ if (battery.CycleCount) { x += addDetailItem("Cycle Count", EscapeHtml(battery.CycleCount), s); }
6538
+ if (battery.FullChargedCapacity) { x += addDetailItem("Full Charged Capacity", format("{0} mWh", battery.FullChargedCapacity), s); }
6539
+ if (battery.EstimatedRuntime) { x += addDetailItem("Estimated Runtime", format("{0} minutes", Math.floor((battery.EstimatedRuntime / 60))), s); }
6540
+ if (battery.Chemistry) { x += addDetailItem("Chemistry", EscapeHtml(battery.Chemistry), s); }
6541
+ if (battery.DesignedCapacity) { x += addDetailItem("Design Capacity", format("{0} mWh", battery.DesignedCapacity), s); }
6542
+ if (battery.ManufactureDate) { x += addDetailItem("Manufacture Date", EscapeHtml(battery.ManufactureDate), s); }
6543
+ if (battery.ManufactureName) { x += addDetailItem("Manufacture Name", EscapeHtml(battery.ManufactureName), s); }
6544
+ if (battery.SerialNumber) { x += addDetailItem("Serial Number", EscapeHtml(battery.SerialNumber), s); }
6545
+ if (battery.ChargeRate) { x += addDetailItem("Charge Rate", format("{0} mW", battery.ChargeRate), s); }
6546
+ if (battery.Charging != null) { x += addDetailItem("Charging", (battery.Charging ? "Yes" : "No"), s); }
6547
+ if (battery.DischargeRate) { x += addDetailItem("Discharge Rate", format("{0} mW", battery.DischargeRate), s); }
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
+ x += '</div>';
6552
+ }
6553
+ x += '</table>';
6554
+ if (x != '') { sections.push({ name: "Battery", html: x, img: 'battery'}); }
6555
}
6556
6557
if (hardware.windows) {
views/default.handlebars
+34
-6
@@ -12399,12 +12399,40 @@
12399
if (hardware.tpm) {
12400
var x = '', tpm = hardware.tpm;
12401
if (tpm.SpecVersion) { x += addDetailItem("SpecVersion", parseFloat(EscapeHtml(tpm.SpecVersion)).toFixed(1), s); }
12402
- if (tpm.ManufacturerId) { x += addDetailItem("ManufacturerId", EscapeHtml(tpm.ManufacturerId), s); }
12403
- if (tpm.ManufacturerVersion) { x += addDetailItem("ManufacturerVersion", EscapeHtml(tpm.ManufacturerVersion), s); }
12404
- if (tpm.IsActivated != null) { x += addDetailItem("IsActivated", (tpm.IsActivated ? "Yes" : "No"), s); }
12405
- if (tpm.IsEnabled != null) { x += addDetailItem("IsEnabled", (tpm.IsEnabled ? "Yes" : "No"), s); }
12406
- if (tpm.IsOwned != null) { x += addDetailItem("IsOwned", (tpm.IsOwned ? "Yes" : "No"), s); }
12407
- if (x != '') { sections.push({ name: "TPM", html: x, img: 'tpm64.png'}); }
12402
+ if (tpm.ManufacturerId) { x += addDetailItem("Identifier", EscapeHtml(tpm.ManufacturerId), s); }
12403
+ if (tpm.ManufacturerVersion) { x += addDetailItem("Version", EscapeHtml(tpm.ManufacturerVersion), s); }
12404
+ if (tpm.IsActivated != null) { x += addDetailItem("Activated", (tpm.IsActivated ? "Yes" : "No"), s); }
12405
+ if (tpm.IsEnabled != null) { x += addDetailItem("Enabled", (tpm.IsEnabled ? "Yes" : "No"), s); }
12406
+ if (tpm.IsOwned != null) { x += addDetailItem("Owned", (tpm.IsOwned ? "Yes" : "No"), s); }
12407
+ if (x != '') { sections.push({ name: "TPM", html: x, img: 'tpm64.png' }); }
12408
+ }
12409
+
12410
+ // Batteries
12411
+ if (hardware.battery) {
12412
+ var x = '';
12413
+ x += '<table style=width:100%>';
12414
+ for (var i in hardware.battery) {
12415
+ var battery = hardware.battery[i];
12416
+ x += '<tr><td><div class=style10 style=border-radius:5px;padding:8px>';
12417
+ x += '<div style=margin-bottom:3px><b>' + EscapeHtml(battery.DeviceName ? battery.DeviceName : "Unknown") + '</b></div>';
12418
+ if (battery.CycleCount) { x += addDetailItem("Cycle Count", EscapeHtml(battery.CycleCount), s); }
12419
+ if (battery.FullChargedCapacity) { x += addDetailItem("Full Charged Capacity", format("{0} mWh", battery.FullChargedCapacity), s); }
12420
+ if (battery.EstimatedRuntime) { x += addDetailItem("Estimated Runtime", format("{0} minutes", Math.floor((battery.EstimatedRuntime / 60))), s); }
12421
+ if (battery.Chemistry) { x += addDetailItem("Chemistry", EscapeHtml(battery.Chemistry), s); }
12422
+ if (battery.DesignedCapacity) { x += addDetailItem("Design Capacity", format("{0} mWh", battery.DesignedCapacity), s); }
12423
+ if (battery.ManufactureDate) { x += addDetailItem("Manufacture Date", EscapeHtml(battery.ManufactureDate), s); }
12424
+ if (battery.ManufactureName) { x += addDetailItem("Manufacture Name", EscapeHtml(battery.ManufactureName), s); }
12425
+ if (battery.SerialNumber) { x += addDetailItem("Serial Number", EscapeHtml(battery.SerialNumber), s); }
12426
+ if (battery.ChargeRate) { x += addDetailItem("Charge Rate", format("{0} mW", battery.ChargeRate), s); }
12427
+ if (battery.Charging != null) { x += addDetailItem("Charging", (battery.Charging ? "Yes" : "No"), s); }
12428
+ if (battery.DischargeRate) { x += addDetailItem("Discharge Rate", format("{0} mW", battery.DischargeRate), s); }
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
+ x += '</div>';
12433
+ }
12434
+ x += '</table>';
12435
+ if (x != '') { sections.push({ name: "Battery", html: x, img: 'battery64.png'}); }
12436
}
12437
12438
if (hardware.windows) {
views/default3.handlebars
+32
-5
@@ -13440,14 +13440,41 @@
13440
if (hardware.tpm) {
13441
var x = '', tpm = hardware.tpm;
13442
if (tpm.SpecVersion) { x += addDetailItem("SpecVersion", parseFloat(EscapeHtml(tpm.SpecVersion)).toFixed(1), s); }
13443
- if (tpm.ManufacturerId) { x += addDetailItem("ManufacturerId", EscapeHtml(tpm.ManufacturerId), s); }
13444
- if (tpm.ManufacturerVersion) { x += addDetailItem("ManufacturerVersion", EscapeHtml(tpm.ManufacturerVersion), s); }
13445
- if (tpm.IsActivated != null) { x += addDetailItem("IsActivated", (tpm.IsActivated ? "Yes" : "No"), s); }
13446
- if (tpm.IsEnabled != null) { x += addDetailItem("IsEnabled", (tpm.IsEnabled ? "Yes" : "No"), s); }
13447
- if (tpm.IsOwned != null) { x += addDetailItem("IsOwned", (tpm.IsOwned ? "Yes" : "No"), s); }
13443
+ if (tpm.ManufacturerId) { x += addDetailItem("Identifier", EscapeHtml(tpm.ManufacturerId), s); }
13444
+ if (tpm.ManufacturerVersion) { x += addDetailItem("Version", EscapeHtml(tpm.ManufacturerVersion), s); }
13445
+ if (tpm.IsActivated != null) { x += addDetailItem("Activated", (tpm.IsActivated ? "Yes" : "No"), s); }
13446
+ if (tpm.IsEnabled != null) { x += addDetailItem("Enabled", (tpm.IsEnabled ? "Yes" : "No"), s); }
13447
+ if (tpm.IsOwned != null) { x += addDetailItem("Owned", (tpm.IsOwned ? "Yes" : "No"), s); }
13448
if (x != '') { sections.push({ name: "TPM", html: x, img: 'tpm64.png' }); }
13449
}
13450
13451
+ if (hardware.battery) {
13452
+ var x = '';
13453
+ x += '<table class="table table-hover" style=width:100%>';
13454
+ for (var i in hardware.battery) {
13455
+ var battery = hardware.battery[i];
13456
+ x += '<tr><td><div class=style10 style=border-radius:5px;padding:8px>';
13457
+ x += '<div style=margin-bottom:3px><b>' + EscapeHtml(battery.DeviceName ? battery.DeviceName : "Unknown") + '</b></div>';
13458
+ if (battery.CycleCount) { x += addDetailItem("Cycle Count", EscapeHtml(battery.CycleCount), s); }
13459
+ if (battery.FullChargedCapacity) { x += addDetailItem("Full Charged Capacity", format("{0} mWh", battery.FullChargedCapacity), s); }
13460
+ if (battery.EstimatedRuntime) { x += addDetailItem("Estimated Runtime", format("{0} minutes", Math.floor((battery.EstimatedRuntime / 60))), s); }
13461
+ if (battery.Chemistry) { x += addDetailItem("Chemistry", EscapeHtml(battery.Chemistry), s); }
13462
+ if (battery.DesignedCapacity) { x += addDetailItem("Design Capacity", format("{0} mWh", battery.DesignedCapacity), s); }
13463
+ if (battery.ManufactureDate) { x += addDetailItem("Manufacture Date", EscapeHtml(battery.ManufactureDate), s); }
13464
+ if (battery.ManufactureName) { x += addDetailItem("Manufacture Name", EscapeHtml(battery.ManufactureName), s); }
13465
+ if (battery.SerialNumber) { x += addDetailItem("Serial Number", EscapeHtml(battery.SerialNumber), s); }
13466
+ if (battery.ChargeRate) { x += addDetailItem("Charge Rate", format("{0} mW", battery.ChargeRate), s); }
13467
+ if (battery.Charging != null) { x += addDetailItem("Charging", (battery.Charging ? "Yes" : "No"), s); }
13468
+ if (battery.DischargeRate) { x += addDetailItem("Discharge Rate", format("{0} mW", battery.DischargeRate), s); }
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
+ x += '</div>';
13473
+ }
13474
+ x += '</table>';
13475
+ if (x != '') { sections.push({ name: "Battery", html: x, img: 'battery64.png'}); }
13476
+ }
13477
+
13478
if (hardware.windows) {
13479
if (hardware.windows.memory && (hardware.windows.memory.length > 0)) {
13480
var x = '';