fix battery health and add battery charge #7332
Signed-off-by: si458 <simonsmith5521@gmail.com>
si458 committed
Dec 20, 2025 at 14:02 UTC
1066414a1888fc37a850adfc96815f76350a1175
5 files changed
+3699
-3644
agents/modules_meshcore/computer-identifiers.js
+28
-9
@@ -426,7 +426,8 @@ function linux_identifiers()
426
"Discharging": isDischarging,
427
"RemainingCapacity": toMilli(thedata.energy_now),
428
"Voltage": toMilli(thedata.voltage_now),
429
- "Health": (thedata.energy_now && thedata.energy_full_design ? Math.floor((thedata.energy_now / thedata.energy_full_design) * 100) : 0)
429
+ "Health": (thedata.energy_full && thedata.energy_full_design ? Math.floor((thedata.energy_full / thedata.energy_full_design) * 100) : 0),
430
+ "BatteryCharge": (thedata.energy_now && thedata.energy_full ? Math.floor((thedata.energy_now / thedata.energy_full) * 100) : 0)
431
};
432
values.battery.push(batteryJson);
433
}
@@ -615,24 +616,42 @@ function windows_identifiers()
616
}
617
var values5 = require('win-wmi').query('ROOT\\WMI', "SELECT * FROM BatteryStatus",['InstanceName','ChargeRate','Charging','DischargeRate','Discharging','RemainingCapacity','Voltage']);
618
var values6 = [];
618
- if (values4.length > 0 && values5.length > 0) {
619
- for (i = 0; i < values5.length; ++i) {
619
+ if (values2.length > 0 && values4.length > 0) {
620
+ for (i = 0; i < values2.length; ++i) {
621
for (var j = 0; j < values4.length; ++j) {
621
- if (values5[i].InstanceName == values4[j].InstanceName) {
622
- if (values4[j].DesignedCapacity && values4[j].DesignedCapacity > 0) {
622
+ if (values2[i].InstanceName == values4[j].InstanceName) {
623
+ if ((values4[j].DesignedCapacity && values4[j].DesignedCapacity > 0) && (values2[i].FullChargedCapacity && values2[i].FullChargedCapacity > 0)) {
624
values6[i] = {
624
- Health: Math.floor((values5[i].RemainingCapacity / values4[j].DesignedCapacity) * 100),
625
- InstanceName: values5[i].InstanceName
625
+ Health: Math.floor((values2[i].FullChargedCapacity / values4[j].DesignedCapacity) * 100),
626
+ InstanceName: values2[i].InstanceName
627
};
628
} else {
628
- values6[i] = { Health: 0, InstanceName: values5[i].InstanceName };
629
+ values6[i] = { Health: 0, InstanceName: values2[i].InstanceName };
630
}
631
break;
632
}
633
}
634
}
635
}
635
- ret.battery = mergeJSONArrays(values, values2, values3, values4, values5, values6);
636
+ var values7 = [];
637
+ if (values2.length > 0 && values5.length > 0) {
638
+ for (i = 0; i < values2.length; ++i) {
639
+ for (var j = 0; j < values5.length; ++j) {
640
+ if (values2[i].InstanceName == values5[j].InstanceName) {
641
+ if ((values2[i].FullChargedCapacity && values2[i].FullChargedCapacity > 0) && (values5[j].RemainingCapacity && values5[j].RemainingCapacity > 0)) {
642
+ values7[i] = {
643
+ BatteryCharge: Math.floor((values5[j].RemainingCapacity / values2[i].FullChargedCapacity) * 100),
644
+ InstanceName: values2[i].InstanceName
645
+ };
646
+ } else {
647
+ values7[i] = { BatteryCharge: 0, InstanceName: values2[i].InstanceName };
648
+ }
649
+ break;
650
+ }
651
+ }
652
+ }
653
+ }
654
+ ret.battery = mergeJSONArrays(values, values2, values3, values4, values5, values6, values7);
655
} catch (ex) { }
656
657
return (ret);
translate/translate.json
+3665
-3632
@@ -26,10 +26,10 @@
26
"zh-chs": " + CIRA",
27
"zh-cht": " + CIRA",
28
"xloc": [
29
- "default.handlebars->119->2235",
29
"default.handlebars->119->2237",
31
- "default3.handlebars->117->2231",
32
- "default3.handlebars->117->2233"
30
+ "default.handlebars->119->2239",
31
+ "default3.handlebars->117->2233",
32
+ "default3.handlebars->117->2235"
33
]
34
},
35
{
@@ -330,8 +330,8 @@
330
"zh-chs": " 可以使用密码提示,但不建议使用。",
331
"zh-cht": " 可以使用密碼提示,但不建議使用。",
332
"xloc": [
333
- "default.handlebars->119->2107",
334
- "default3.handlebars->117->2087"
333
+ "default.handlebars->119->2109",
334
+ "default3.handlebars->117->2089"
335
]
336
},
337
{
@@ -360,10 +360,10 @@
360
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
361
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
362
"xloc": [
363
- "default.handlebars->119->2361",
364
- "default.handlebars->119->2950",
365
- "default3.handlebars->117->2358",
366
- "default3.handlebars->117->2944"
363
+ "default.handlebars->119->2363",
364
+ "default.handlebars->119->2952",
365
+ "default3.handlebars->117->2360",
366
+ "default3.handlebars->117->2946"
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->2319",
988
+ "default.handlebars->119->2321",
989
"default.handlebars->119->542",
990
- "default3.handlebars->117->2313",
990
+ "default3.handlebars->117->2315",
991
"default3.handlebars->117->538"
992
]
993
},
@@ -1096,21 +1096,21 @@
1096
"zh-chs": ",",
1097
"zh-cht": ",",
1098
"xloc": [
1099
- "default-mobile.handlebars->53->1041",
1099
+ "default-mobile.handlebars->53->1043",
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->2437",
1107
- "default.handlebars->119->2723",
1106
+ "default.handlebars->119->2439",
1107
+ "default.handlebars->119->2725",
1108
"default.handlebars->119->997",
1109
"default3.handlebars->117->1625",
1110
"default3.handlebars->117->1627",
1111
"default3.handlebars->117->1629",
1112
- "default3.handlebars->117->2434",
1113
- "default3.handlebars->117->2720",
1112
+ "default3.handlebars->117->2436",
1113
+ "default3.handlebars->117->2722",
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->942",
1289
- "default.handlebars->119->1779",
1290
- "default3.handlebars->117->1762"
1288
+ "default-mobile.handlebars->53->944",
1289
+ "default.handlebars->119->1781",
1290
+ "default3.handlebars->117->1764"
1291
]
1292
},
1293
{
@@ -1317,9 +1317,9 @@
1317
"zh-cht": ", 不同意",
1318
"xloc": [
1319
"default.handlebars->119->1092",
1320
- "default.handlebars->119->2277",
1320
+ "default.handlebars->119->2279",
1321
"default3.handlebars->117->1088",
1322
- "default3.handlebars->117->2273"
1322
+ "default3.handlebars->117->2275"
1323
]
1324
},
1325
{
@@ -1349,9 +1349,9 @@
1349
"zh-cht": ",提示同意",
1350
"xloc": [
1351
"default.handlebars->119->1093",
1352
- "default.handlebars->119->2278",
1352
+ "default.handlebars->119->2280",
1353
"default3.handlebars->117->1089",
1354
- "default3.handlebars->117->2274"
1354
+ "default3.handlebars->117->2276"
1355
]
1356
},
1357
{
@@ -1410,9 +1410,9 @@
1410
"zh-cht": ", 每天重複",
1411
"xloc": [
1412
"default.handlebars->119->1089",
1413
- "default.handlebars->119->2274",
1413
+ "default.handlebars->119->2276",
1414
"default3.handlebars->117->1085",
1415
- "default3.handlebars->117->2270"
1415
+ "default3.handlebars->117->2272"
1416
]
1417
},
1418
{
@@ -1442,9 +1442,9 @@
1442
"zh-cht": ", 每週重複一次",
1443
"xloc": [
1444
"default.handlebars->119->1090",
1445
- "default.handlebars->119->2275",
1445
+ "default.handlebars->119->2277",
1446
"default3.handlebars->117->1086",
1447
- "default3.handlebars->117->2271"
1447
+ "default3.handlebars->117->2273"
1448
]
1449
},
1450
{
@@ -1619,9 +1619,9 @@
1619
"zh-cht": ", 工具欄",
1620
"xloc": [
1621
"default.handlebars->119->1094",
1622
- "default.handlebars->119->2279",
1622
+ "default.handlebars->119->2281",
1623
"default3.handlebars->117->1090",
1624
- "default3.handlebars->117->2275"
1624
+ "default3.handlebars->117->2277"
1625
]
1626
},
1627
{
@@ -1677,9 +1677,9 @@
1677
"zh-cht": ", 僅查看桌面",
1678
"xloc": [
1679
"default.handlebars->119->1091",
1680
- "default.handlebars->119->2276",
1680
+ "default.handlebars->119->2278",
1681
"default3.handlebars->117->1087",
1682
- "default3.handlebars->117->2272"
1682
+ "default3.handlebars->117->2274"
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->2503",
2055
- "default.handlebars->119->3194",
2054
+ "default.handlebars->119->2505",
2055
+ "default.handlebars->119->3196",
2056
"default3.handlebars->117->1516",
2057
- "default3.handlebars->117->2500",
2058
- "default3.handlebars->117->3184",
2057
+ "default3.handlebars->117->2502",
2058
+ "default3.handlebars->117->3186",
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->2521",
2146
- "default3.handlebars->117->2518"
2145
+ "default.handlebars->119->2523",
2146
+ "default3.handlebars->117->2520"
2147
]
2148
},
2149
{
@@ -2250,8 +2250,8 @@
2250
"zh-chs": "1个活跃时段",
2251
"zh-cht": "1個活躍時段",
2252
"xloc": [
2253
- "default.handlebars->119->3045",
2254
- "default3.handlebars->117->3039"
2253
+ "default.handlebars->119->3047",
2254
+ "default3.handlebars->117->3041"
2255
]
2256
},
2257
{
@@ -2280,10 +2280,10 @@
2280
"zh-chs": "1个字节",
2281
"zh-cht": "1個位元組",
2282
"xloc": [
2283
- "default-mobile.handlebars->53->1085",
2283
+ "default-mobile.handlebars->53->1087",
2284
"default-mobile.handlebars->53->375",
2285
- "default.handlebars->119->2532",
2286
- "default3.handlebars->117->2529",
2285
+ "default.handlebars->119->2534",
2286
+ "default3.handlebars->117->2531",
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->3000",
2414
- "default3.handlebars->117->2994"
2413
+ "default.handlebars->119->3002",
2414
+ "default3.handlebars->117->2996"
2415
]
2416
},
2417
{
@@ -2475,9 +2475,9 @@
2475
"zh-cht": "1分鐘",
2476
"xloc": [
2477
"default.handlebars->119->1202",
2478
- "default.handlebars->119->2072",
2478
+ "default.handlebars->119->2074",
2479
"default3.handlebars->117->1196",
2480
- "default3.handlebars->117->2053"
2480
+ "default3.handlebars->117->2055"
2481
]
2482
},
2483
{
@@ -2595,8 +2595,8 @@
2595
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
2596
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2597
"xloc": [
2598
- "default.handlebars->119->2755",
2599
- "default3.handlebars->117->2752"
2598
+ "default.handlebars->119->2757",
2599
+ "default3.handlebars->117->2754"
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->2759",
2863
+ "default.handlebars->119->2761",
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->2756",
2871
+ "default3.handlebars->117->2758",
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->2074",
3091
+ "default.handlebars->119->2076",
3092
"default3.handlebars->117->1198",
3093
- "default3.handlebars->117->2055"
3093
+ "default3.handlebars->117->2057"
3094
]
3095
},
3096
{
@@ -3299,9 +3299,9 @@
3299
"zh-cht": "12小時",
3300
"xloc": [
3301
"default.handlebars->119->1212",
3302
- "default.handlebars->119->2082",
3302
+ "default.handlebars->119->2084",
3303
"default3.handlebars->117->1206",
3304
- "default3.handlebars->117->2063"
3304
+ "default3.handlebars->117->2065"
3305
]
3306
},
3307
{
@@ -3446,9 +3446,9 @@
3446
"zh-cht": "15分鐘",
3447
"xloc": [
3448
"default.handlebars->119->1205",
3449
- "default.handlebars->119->2075",
3449
+ "default.handlebars->119->2077",
3450
"default3.handlebars->117->1199",
3451
- "default3.handlebars->117->2056"
3451
+ "default3.handlebars->117->2058"
3452
]
3453
},
3454
{
@@ -3478,9 +3478,9 @@
3478
"zh-cht": "16小時",
3479
"xloc": [
3480
"default.handlebars->119->1213",
3481
- "default.handlebars->119->2083",
3481
+ "default.handlebars->119->2085",
3482
"default3.handlebars->117->1207",
3483
- "default3.handlebars->117->2064"
3483
+ "default3.handlebars->117->2066"
3484
]
3485
},
3486
{
@@ -3626,9 +3626,9 @@
3626
"zh-cht": "2天",
3627
"xloc": [
3628
"default.handlebars->119->1215",
3629
- "default.handlebars->119->2085",
3629
+ "default.handlebars->119->2087",
3630
"default3.handlebars->117->1209",
3631
- "default3.handlebars->117->2066"
3631
+ "default3.handlebars->117->2068"
3632
]
3633
},
3634
{
@@ -3658,9 +3658,9 @@
3658
"zh-cht": "2小時",
3659
"xloc": [
3660
"default.handlebars->119->1209",
3661
- "default.handlebars->119->2079",
3661
+ "default.handlebars->119->2081",
3662
"default3.handlebars->117->1203",
3663
- "default3.handlebars->117->2060"
3663
+ "default3.handlebars->117->2062"
3664
]
3665
},
3666
{
@@ -3871,9 +3871,9 @@
3871
"zh-cht": "24小時",
3872
"xloc": [
3873
"default.handlebars->119->1214",
3874
- "default.handlebars->119->2084",
3874
+ "default.handlebars->119->2086",
3875
"default3.handlebars->117->1208",
3876
- "default3.handlebars->117->2065"
3876
+ "default3.handlebars->117->2067"
3877
]
3878
},
3879
{
@@ -3960,8 +3960,8 @@
3960
"zh-chs": "2FA备份代码已清除",
3961
"zh-cht": "2FA備份代碼已清除",
3962
"xloc": [
3963
- "default.handlebars->119->2645",
3964
- "default3.handlebars->117->2642"
3963
+ "default.handlebars->119->2647",
3964
+ "default3.handlebars->117->2644"
3965
]
3966
},
3967
{
@@ -4021,8 +4021,8 @@
4021
"zh-chs": "第二个因素",
4022
"zh-cht": "第二個因素",
4023
"xloc": [
4024
- "default.handlebars->119->3233",
4025
- "default3.handlebars->117->3223"
4024
+ "default.handlebars->119->3235",
4025
+ "default3.handlebars->117->3225"
4026
]
4027
},
4028
{
@@ -4051,10 +4051,10 @@
4051
"zh-chs": "启用第二因素身份验证",
4052
"zh-cht": "啟用第二因素身份驗證",
4053
"xloc": [
4054
- "default.handlebars->119->2773",
4055
- "default.handlebars->119->3026",
4056
- "default3.handlebars->117->2770",
4057
- "default3.handlebars->117->3020"
4054
+ "default.handlebars->119->2775",
4055
+ "default.handlebars->119->3028",
4056
+ "default3.handlebars->117->2772",
4057
+ "default3.handlebars->117->3022"
4058
]
4059
},
4060
{
@@ -4226,9 +4226,9 @@
4226
"zh-cht": "30分鐘",
4227
"xloc": [
4228
"default.handlebars->119->1206",
4229
- "default.handlebars->119->2076",
4229
+ "default.handlebars->119->2078",
4230
"default3.handlebars->117->1200",
4231
- "default3.handlebars->117->2057"
4231
+ "default3.handlebars->117->2059"
4232
]
4233
},
4234
{
@@ -4347,9 +4347,9 @@
4347
"zh-cht": "4天",
4348
"xloc": [
4349
"default.handlebars->119->1216",
4350
- "default.handlebars->119->2086",
4350
+ "default.handlebars->119->2088",
4351
"default3.handlebars->117->1210",
4352
- "default3.handlebars->117->2067"
4352
+ "default3.handlebars->117->2069"
4353
]
4354
},
4355
{
@@ -4379,9 +4379,9 @@
4379
"zh-cht": "4個小時",
4380
"xloc": [
4381
"default.handlebars->119->1210",
4382
- "default.handlebars->119->2080",
4382
+ "default.handlebars->119->2082",
4383
"default3.handlebars->117->1204",
4384
- "default3.handlebars->117->2061"
4384
+ "default3.handlebars->117->2063"
4385
]
4386
},
4387
{
@@ -4528,9 +4528,9 @@
4528
"zh-cht": "45分鐘",
4529
"xloc": [
4530
"default.handlebars->119->1207",
4531
- "default.handlebars->119->2077",
4531
+ "default.handlebars->119->2079",
4532
"default3.handlebars->117->1201",
4533
- "default3.handlebars->117->2058"
4533
+ "default3.handlebars->117->2060"
4534
]
4535
},
4536
{
@@ -4589,9 +4589,9 @@
4589
"zh-cht": "5分鐘",
4590
"xloc": [
4591
"default.handlebars->119->1203",
4592
- "default.handlebars->119->2073",
4592
+ "default.handlebars->119->2075",
4593
"default3.handlebars->117->1197",
4594
- "default3.handlebars->117->2054"
4594
+ "default3.handlebars->117->2056"
4595
]
4596
},
4597
{
@@ -4803,9 +4803,9 @@
4803
"zh-cht": "60分鐘",
4804
"xloc": [
4805
"default.handlebars->119->1208",
4806
- "default.handlebars->119->2078",
4806
+ "default.handlebars->119->2080",
4807
"default3.handlebars->117->1202",
4808
- "default3.handlebars->117->2059"
4808
+ "default3.handlebars->117->2061"
4809
]
4810
},
4811
{
@@ -5087,8 +5087,8 @@
5087
"zh-chs": "7天",
5088
"zh-cht": "7天",
5089
"xloc": [
5090
- "default.handlebars->119->2087",
5091
- "default3.handlebars->117->2068"
5090
+ "default.handlebars->119->2089",
5091
+ "default3.handlebars->117->2070"
5092
]
5093
},
5094
{
@@ -5180,11 +5180,11 @@
5180
"zh-cht": "8小時",
5181
"xloc": [
5182
"default.handlebars->119->1211",
5183
- "default.handlebars->119->2081",
5183
+ "default.handlebars->119->2083",
5184
"default.handlebars->119->570",
5185
"default.handlebars->119->584",
5186
"default3.handlebars->117->1205",
5187
- "default3.handlebars->117->2062",
5187
+ "default3.handlebars->117->2064",
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->2255",
5392
+ "default.handlebars->119->2257",
5393
"default.handlebars->119->448",
5394
"default.handlebars->119->904",
5395
- "default3.handlebars->117->2251",
5395
+ "default3.handlebars->117->2253",
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->3392",
5528
- "default3.handlebars->117->3382"
5527
+ "default.handlebars->119->3394",
5528
+ "default3.handlebars->117->3384"
5529
]
5530
},
5531
{
@@ -5553,10 +5553,10 @@
5553
"zh-chs": "AMT-Redir",
5554
"zh-cht": "AMT-Redir",
5555
"xloc": [
5556
- "default.handlebars->119->3243",
5557
- "default.handlebars->119->3296",
5558
- "default3.handlebars->117->3233",
5559
- "default3.handlebars->117->3286"
5556
+ "default.handlebars->119->3245",
5557
+ "default.handlebars->119->3298",
5558
+ "default3.handlebars->117->3235",
5559
+ "default3.handlebars->117->3288"
5560
]
5561
},
5562
{
@@ -5584,10 +5584,10 @@
5584
"zh-chs": "AMT-WSMAN",
5585
"zh-cht": "AMT-WSMAN",
5586
"xloc": [
5587
- "default.handlebars->119->3242",
5588
- "default.handlebars->119->3295",
5589
- "default3.handlebars->117->3232",
5590
- "default3.handlebars->117->3285"
5587
+ "default.handlebars->119->3244",
5588
+ "default.handlebars->119->3297",
5589
+ "default3.handlebars->117->3234",
5590
+ "default3.handlebars->117->3287"
5591
]
5592
},
5593
{
@@ -5607,7 +5607,7 @@
5607
"pl": "Wersja APK MeshAgent",
5608
"uk": "MeshAgent версія APK",
5609
"xloc": [
5610
- "default-mobile.handlebars->53->994",
5610
+ "default-mobile.handlebars->53->996",
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->943",
5858
- "default.handlebars->119->1780",
5859
- "default3.handlebars->117->1763"
5857
+ "default-mobile.handlebars->53->945",
5858
+ "default.handlebars->119->1782",
5859
+ "default3.handlebars->117->1765"
5860
]
5861
},
5862
{
@@ -5945,8 +5945,8 @@
5945
"zh-chs": "访问服务器档案",
5946
"zh-cht": "存取伺服器檔案",
5947
"xloc": [
5948
- "default.handlebars->119->2956",
5949
- "default3.handlebars->117->2950"
5948
+ "default.handlebars->119->2958",
5949
+ "default3.handlebars->117->2952"
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->2116",
6076
"default.handlebars->119->2118",
6078
- "default.handlebars->119->3447",
6077
+ "default.handlebars->119->2120",
6078
+ "default.handlebars->119->3449",
6079
"default.handlebars->119->741",
6080
"default.handlebars->119->864",
6081
"default.handlebars->119->866",
6082
- "default3.handlebars->117->2118",
6083
- "default3.handlebars->117->2119",
6084
- "default3.handlebars->117->3435",
6082
+ "default3.handlebars->117->2120",
6083
+ "default3.handlebars->117->2121",
6084
"default3.handlebars->117->3437",
6085
+ "default3.handlebars->117->3439",
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->1052",
6118
- "default.handlebars->119->3316",
6119
- "default3.handlebars->117->3306"
6117
+ "default-mobile.handlebars->53->1054",
6118
+ "default.handlebars->119->3318",
6119
+ "default3.handlebars->117->3308"
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->2706",
6195
- "default3.handlebars->117->2703"
6194
+ "default.handlebars->119->2708",
6195
+ "default3.handlebars->117->2705"
6196
]
6197
},
6198
{
@@ -6221,8 +6221,8 @@
6221
"zh-chs": "帐户已更改:{0}",
6222
"zh-cht": "帳戶已更改:{0}",
6223
"xloc": [
6224
- "default.handlebars->119->2618",
6225
- "default3.handlebars->117->2615"
6224
+ "default.handlebars->119->2620",
6225
+ "default3.handlebars->117->2617"
6226
]
6227
},
6228
{
@@ -6251,8 +6251,8 @@
6251
"zh-chs": "创建帐户,电子邮件为{0}",
6252
"zh-cht": "創建帳戶,電子郵件為{0}",
6253
"xloc": [
6254
- "default.handlebars->119->2617",
6255
- "default3.handlebars->117->2614"
6254
+ "default.handlebars->119->2619",
6255
+ "default3.handlebars->117->2616"
6256
]
6257
},
6258
{
@@ -6281,8 +6281,8 @@
6281
"zh-chs": "已创建帐户,名称为 {0}。",
6282
"zh-cht": "已創建帳戶,名稱為 {0}。",
6283
"xloc": [
6284
- "default.handlebars->119->2680",
6285
- "default3.handlebars->117->2677"
6284
+ "default.handlebars->119->2682",
6285
+ "default3.handlebars->117->2679"
6286
]
6287
},
6288
{
@@ -6311,8 +6311,8 @@
6311
"zh-chs": "创建帐户,用户名是{0}",
6312
"zh-cht": "帳戶已創建,用戶名是{0}",
6313
"xloc": [
6314
- "default.handlebars->119->2616",
6315
- "default3.handlebars->117->2613"
6314
+ "default.handlebars->119->2618",
6315
+ "default3.handlebars->117->2615"
6316
]
6317
},
6318
{
@@ -6343,11 +6343,11 @@
6343
"xloc": [
6344
"default-mobile.handlebars->53->69",
6345
"default.handlebars->119->222",
6346
- "default.handlebars->119->2775",
6347
- "default.handlebars->119->2953",
6346
+ "default.handlebars->119->2777",
6347
+ "default.handlebars->119->2955",
6348
"default3.handlebars->117->219",
6349
- "default3.handlebars->117->2772",
6350
- "default3.handlebars->117->2947"
6349
+ "default3.handlebars->117->2774",
6350
+ "default3.handlebars->117->2949"
6351
]
6352
},
6353
{
@@ -6376,9 +6376,9 @@
6376
"zh-chs": "达到帐户限制。",
6377
"zh-cht": "達到帳戶限制。",
6378
"xloc": [
6379
- "default-mobile.handlebars->53->1064",
6380
- "default.handlebars->119->3328",
6381
- "default3.handlebars->117->3318",
6379
+ "default-mobile.handlebars->53->1066",
6380
+ "default.handlebars->119->3330",
6381
+ "default3.handlebars->117->3320",
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->2553",
6445
- "default3.handlebars->117->2550"
6444
+ "default.handlebars->119->2555",
6445
+ "default3.handlebars->117->2552"
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->2659",
6475
- "default3.handlebars->117->2656"
6474
+ "default.handlebars->119->2661",
6475
+ "default3.handlebars->117->2658"
6476
]
6477
},
6478
{
@@ -6486,8 +6486,8 @@
6486
"pl": "Zapisy logowania tokenami użytkownika",
6487
"uk": "Записи токенів входу до акаунту",
6488
"xloc": [
6489
- "default.handlebars->119->3285",
6490
- "default3.handlebars->117->3275"
6489
+ "default.handlebars->119->3287",
6490
+ "default3.handlebars->117->3277"
6491
]
6492
},
6493
{
@@ -6516,8 +6516,8 @@
6516
"zh-chs": "帐户登出",
6517
"zh-cht": "帳戶登出",
6518
"xloc": [
6519
- "default.handlebars->119->2554",
6520
- "default3.handlebars->117->2551"
6519
+ "default.handlebars->119->2556",
6520
+ "default3.handlebars->117->2553"
6521
]
6522
},
6523
{
@@ -6577,8 +6577,8 @@
6577
"zh-chs": "帐户密码已更改:{0}",
6578
"zh-cht": "帳戶密碼已更改:{0}",
6579
"xloc": [
6580
- "default.handlebars->119->2626",
6581
- "default3.handlebars->117->2623"
6580
+ "default.handlebars->119->2628",
6581
+ "default3.handlebars->117->2625"
6582
]
6583
},
6584
{
@@ -6607,8 +6607,8 @@
6607
"zh-chs": "帐户已删除",
6608
"zh-cht": "帳戶已刪除",
6609
"xloc": [
6610
- "default.handlebars->119->2615",
6611
- "default3.handlebars->117->2612"
6610
+ "default.handlebars->119->2617",
6611
+ "default3.handlebars->117->2614"
6612
]
6613
},
6614
{
@@ -6667,10 +6667,10 @@
6667
"zh-chs": "指令",
6668
"zh-cht": "指令",
6669
"xloc": [
6670
- "default-mobile.handlebars->53->958",
6671
- "default.handlebars->119->1795",
6670
+ "default-mobile.handlebars->53->960",
6671
+ "default.handlebars->119->1797",
6672
"default.handlebars->container->column_l->p42->p42tbl->1->0->8",
6673
- "default3.handlebars->117->1778",
6673
+ "default3.handlebars->117->1780",
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->2310",
6864
- "default3.handlebars->117->2304"
6863
+ "default.handlebars->119->2312",
6864
+ "default3.handlebars->117->2306"
6865
]
6866
},
6867
{
@@ -6961,9 +6961,9 @@
6961
"zh-cht": "主動設備共享",
6962
"xloc": [
6963
"default.handlebars->119->1074",
6964
- "default.handlebars->119->2259",
6964
+ "default.handlebars->119->2261",
6965
"default3.handlebars->117->1070",
6966
- "default3.handlebars->117->2255"
6966
+ "default3.handlebars->117->2257"
6967
]
6968
},
6969
{
@@ -6992,8 +6992,8 @@
6992
"zh-chs": "活动登录令牌",
6993
"zh-cht": "活動登錄令牌",
6994
"xloc": [
6995
- "default.handlebars->119->2147",
6996
- "default3.handlebars->117->2147"
6995
+ "default.handlebars->119->2149",
6996
+ "default3.handlebars->117->2149"
6997
]
6998
},
6999
{
@@ -7196,9 +7196,9 @@
7196
"zh-chs": "添加代理",
7197
"zh-cht": "新增代理",
7198
"xloc": [
7199
- "default.handlebars->119->2249",
7199
+ "default.handlebars->119->2251",
7200
"default.handlebars->119->502",
7201
- "default3.handlebars->117->2245",
7201
+ "default3.handlebars->117->2247",
7202
"default3.handlebars->117->498"
7203
]
7204
},
@@ -7254,13 +7254,13 @@
7254
"zh-chs": "添加设备",
7255
"zh-cht": "新增裝置",
7256
"xloc": [
7257
- "default.handlebars->119->2253",
7258
- "default.handlebars->119->2928",
7259
- "default.handlebars->119->3123",
7257
+ "default.handlebars->119->2255",
7258
+ "default.handlebars->119->2930",
7259
+ "default.handlebars->119->3125",
7260
"default.handlebars->119->506",
7261
- "default3.handlebars->117->2249",
7262
- "default3.handlebars->117->2922",
7263
- "default3.handlebars->117->3111",
7261
+ "default3.handlebars->117->2251",
7262
+ "default3.handlebars->117->2924",
7263
+ "default3.handlebars->117->3113",
7264
"default3.handlebars->117->502"
7265
]
7266
},
@@ -7320,13 +7320,13 @@
7320
"zh-chs": "添加设备组",
7321
"zh-cht": "新增裝置群",
7322
"xloc": [
7323
- "default.handlebars->119->2398",
7324
- "default.handlebars->119->2922",
7325
- "default.handlebars->119->3111",
7323
+ "default.handlebars->119->2400",
7324
+ "default.handlebars->119->2924",
7325
+ "default.handlebars->119->3113",
7326
"default.handlebars->119->402",
7327
- "default3.handlebars->117->2395",
7328
- "default3.handlebars->117->2916",
7329
- "default3.handlebars->117->3099",
7327
+ "default3.handlebars->117->2397",
7328
+ "default3.handlebars->117->2918",
7329
+ "default3.handlebars->117->3101",
7330
"default3.handlebars->117->398"
7331
]
7332
},
@@ -7356,8 +7356,8 @@
7356
"zh-chs": "添加设备组权限",
7357
"zh-cht": "新增裝置群權限",
7358
"xloc": [
7359
- "default.handlebars->119->2395",
7360
- "default3.handlebars->117->2392"
7359
+ "default.handlebars->119->2397",
7360
+ "default3.handlebars->117->2394"
7361
]
7362
},
7363
{
@@ -7386,10 +7386,10 @@
7386
"zh-chs": "添加设备权限",
7387
"zh-cht": "新增裝置權限",
7388
"xloc": [
7389
- "default.handlebars->119->2400",
7389
"default.handlebars->119->2402",
7391
- "default3.handlebars->117->2397",
7392
- "default3.handlebars->117->2399"
7390
+ "default.handlebars->119->2404",
7391
+ "default3.handlebars->117->2399",
7392
+ "default3.handlebars->117->2401"
7393
]
7394
},
7395
{
@@ -7560,8 +7560,8 @@
7560
"zh-chs": "添加成员身份",
7561
"zh-cht": "新增成員身份",
7562
"xloc": [
7563
- "default.handlebars->119->3143",
7564
- "default3.handlebars->117->3131"
7563
+ "default.handlebars->119->3145",
7564
+ "default3.handlebars->117->3133"
7565
]
7566
},
7567
{
@@ -7646,14 +7646,14 @@
7646
"zh-chs": "添加安全密钥",
7647
"zh-cht": "新增安全密鑰",
7648
"xloc": [
7649
- "default.handlebars->119->1862",
7650
- "default.handlebars->119->1863",
7649
+ "default.handlebars->119->1864",
7650
+ "default.handlebars->119->1865",
7651
"default.handlebars->119->256",
7652
"default.handlebars->119->258",
7653
"default.handlebars->119->261",
7654
"default.handlebars->119->263",
7655
- "default3.handlebars->117->1843",
7656
- "default3.handlebars->117->1844",
7655
+ "default3.handlebars->117->1845",
7656
+ "default3.handlebars->117->1846",
7657
"default3.handlebars->117->251",
7658
"default3.handlebars->117->253",
7659
"default3.handlebars->117->256",
@@ -7686,7 +7686,7 @@
7686
"zh-chs": "添加用户",
7687
"zh-cht": "新增用戶",
7688
"xloc": [
7689
- "default-mobile.handlebars->53->976",
7689
+ "default-mobile.handlebars->53->978",
7690
"default.handlebars->119->1066",
7691
"default3.handlebars->117->1062"
7692
]
@@ -7717,8 +7717,8 @@
7717
"zh-chs": "添加用户设备权限",
7718
"zh-cht": "新增用戶裝置權限",
7719
"xloc": [
7720
- "default.handlebars->119->2405",
7721
- "default3.handlebars->117->2402"
7720
+ "default.handlebars->119->2407",
7721
+ "default3.handlebars->117->2404"
7722
]
7723
},
7724
{
@@ -7748,13 +7748,13 @@
7748
"zh-cht": "新增用戶群",
7749
"xloc": [
7750
"default.handlebars->119->1067",
7751
- "default.handlebars->119->2243",
7752
- "default.handlebars->119->2397",
7753
- "default.handlebars->119->3117",
7751
+ "default.handlebars->119->2245",
7752
+ "default.handlebars->119->2399",
7753
+ "default.handlebars->119->3119",
7754
"default3.handlebars->117->1063",
7755
- "default3.handlebars->117->2239",
7756
- "default3.handlebars->117->2394",
7757
- "default3.handlebars->117->3105"
7755
+ "default3.handlebars->117->2241",
7756
+ "default3.handlebars->117->2396",
7757
+ "default3.handlebars->117->3107"
7758
]
7759
},
7760
{
@@ -7783,8 +7783,8 @@
7783
"zh-chs": "添加用户组设备权限",
7784
"zh-cht": "新增用戶群裝置權限",
7785
"xloc": [
7786
- "default.handlebars->119->2407",
7787
- "default3.handlebars->117->2404"
7786
+ "default.handlebars->119->2409",
7787
+ "default3.handlebars->117->2406"
7788
]
7789
},
7790
{
@@ -7813,7 +7813,7 @@
7813
"zh-chs": "将用户添加到设备组",
7814
"zh-cht": "將用戶新增到裝置群",
7815
"xloc": [
7816
- "default-mobile.handlebars->53->1017"
7816
+ "default-mobile.handlebars->53->1019"
7817
]
7818
},
7819
{
@@ -7868,10 +7868,10 @@
7868
"zh-chs": "添加用户",
7869
"zh-cht": "新增用戶",
7870
"xloc": [
7871
- "default.handlebars->119->2242",
7872
- "default.handlebars->119->2917",
7873
- "default3.handlebars->117->2238",
7874
- "default3.handlebars->117->2911"
7871
+ "default.handlebars->119->2244",
7872
+ "default.handlebars->119->2919",
7873
+ "default3.handlebars->117->2240",
7874
+ "default3.handlebars->117->2913"
7875
]
7876
},
7877
{
@@ -7900,8 +7900,8 @@
7900
"zh-chs": "将用户添加到设备组",
7901
"zh-cht": "將用戶新增到裝置群",
7902
"xloc": [
7903
- "default.handlebars->119->2394",
7904
- "default3.handlebars->117->2391"
7903
+ "default.handlebars->119->2396",
7904
+ "default3.handlebars->117->2393"
7905
]
7906
},
7907
{
@@ -7930,8 +7930,8 @@
7930
"zh-chs": "将用户添加到用户组",
7931
"zh-cht": "將用戶新增到用戶群",
7932
"xloc": [
7933
- "default.handlebars->119->2952",
7934
- "default3.handlebars->117->2946"
7933
+ "default.handlebars->119->2954",
7934
+ "default3.handlebars->117->2948"
7935
]
7936
},
7937
{
@@ -8136,9 +8136,9 @@
8136
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
8137
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
8138
"xloc": [
8139
- "default.handlebars->119->2248",
8139
+ "default.handlebars->119->2250",
8140
"default.handlebars->119->501",
8141
- "default3.handlebars->117->2244",
8141
+ "default3.handlebars->117->2246",
8142
"default3.handlebars->117->497"
8143
]
8144
},
@@ -8168,9 +8168,9 @@
8168
"zh-chs": "添加位于本地网络上的设备。",
8169
"zh-cht": "添加位於本地網絡上的設備。",
8170
"xloc": [
8171
- "default.handlebars->119->2252",
8171
+ "default.handlebars->119->2254",
8172
"default.handlebars->119->505",
8173
- "default3.handlebars->117->2248",
8173
+ "default3.handlebars->117->2250",
8174
"default3.handlebars->117->501"
8175
]
8176
},
@@ -8290,8 +8290,8 @@
8290
"zh-chs": "添加了身份验证应用程序",
8291
"zh-cht": "添加了身份驗證應用程序",
8292
"xloc": [
8293
- "default.handlebars->119->2642",
8294
- "default3.handlebars->117->2639"
8293
+ "default.handlebars->119->2644",
8294
+ "default3.handlebars->117->2641"
8295
]
8296
},
8297
{
@@ -8320,8 +8320,8 @@
8320
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
8321
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
8322
"xloc": [
8323
- "default.handlebars->119->2653",
8324
- "default3.handlebars->117->2650"
8323
+ "default.handlebars->119->2655",
8324
+ "default3.handlebars->117->2652"
8325
]
8326
},
8327
{
@@ -8350,8 +8350,8 @@
8350
"zh-chs": "添加了每天重复的设备共享 {0}。",
8351
"zh-cht": "添加了每天重複的設備共享 {0}。",
8352
"xloc": [
8353
- "default.handlebars->119->2690",
8354
- "default3.handlebars->117->2687"
8353
+ "default.handlebars->119->2692",
8354
+ "default3.handlebars->117->2689"
8355
]
8356
},
8357
{
@@ -8380,8 +8380,8 @@
8380
"zh-chs": "添加了每周重复的设备共享 {0}。",
8381
"zh-cht": "添加了每週重複的設備共享 {0}。",
8382
"xloc": [
8383
- "default.handlebars->119->2691",
8384
- "default3.handlebars->117->2688"
8383
+ "default.handlebars->119->2693",
8384
+ "default3.handlebars->117->2690"
8385
]
8386
},
8387
{
@@ -8410,8 +8410,8 @@
8410
"zh-chs": "添加了无限时间的设备共享 {0}。",
8411
"zh-cht": "添加了無限時間的設備共享 {0}。",
8412
"xloc": [
8413
- "default.handlebars->119->2683",
8414
- "default3.handlebars->117->2680"
8413
+ "default.handlebars->119->2685",
8414
+ "default3.handlebars->117->2682"
8415
]
8416
},
8417
{
@@ -8440,10 +8440,10 @@
8440
"zh-chs": "已将设备{0}添加到设备组{1}",
8441
"zh-cht": "已將設備{0}添加到設備組{1}",
8442
"xloc": [
8443
- "default.handlebars->119->2609",
8444
- "default.handlebars->119->2636",
8445
- "default3.handlebars->117->2606",
8446
- "default3.handlebars->117->2633"
8443
+ "default.handlebars->119->2611",
8444
+ "default.handlebars->119->2638",
8445
+ "default3.handlebars->117->2608",
8446
+ "default3.handlebars->117->2635"
8447
]
8448
},
8449
{
@@ -8472,8 +8472,8 @@
8472
"zh-chs": "添加登录令牌",
8473
"zh-cht": "添加了登錄令牌",
8474
"xloc": [
8475
- "default.handlebars->119->2667",
8476
- "default3.handlebars->117->2664"
8475
+ "default.handlebars->119->2669",
8476
+ "default3.handlebars->117->2666"
8477
]
8478
},
8479
{
@@ -8502,8 +8502,8 @@
8502
"zh-chs": "新增推送通知认证装置",
8503
"zh-cht": "增加推送通知認證設備",
8504
"xloc": [
8505
- "default.handlebars->119->2665",
8506
- "default3.handlebars->117->2662"
8505
+ "default.handlebars->119->2667",
8506
+ "default3.handlebars->117->2664"
8507
]
8508
},
8509
{
@@ -8532,8 +8532,8 @@
8532
"zh-chs": "添加了安全密钥",
8533
"zh-cht": "添加了安全密鑰",
8534
"xloc": [
8535
- "default.handlebars->119->2647",
8536
- "default3.handlebars->117->2644"
8535
+ "default.handlebars->119->2649",
8536
+ "default3.handlebars->117->2646"
8537
]
8538
},
8539
{
@@ -8562,8 +8562,8 @@
8562
"zh-chs": "已将用户组{0}添加到设备组{1}",
8563
"zh-cht": "已將用戶組{0}添加到設備組{1}",
8564
"xloc": [
8565
- "default.handlebars->119->2620",
8566
- "default3.handlebars->117->2617"
8565
+ "default.handlebars->119->2622",
8566
+ "default3.handlebars->117->2619"
8567
]
8568
},
8569
{
@@ -8592,10 +8592,10 @@
8592
"zh-chs": "已将用户{0}添加到用户组{1}",
8593
"zh-cht": "已將用戶{0}添加到用戶組{1}",
8594
"xloc": [
8595
- "default.handlebars->119->2623",
8596
- "default.handlebars->119->2632",
8597
- "default3.handlebars->117->2620",
8598
- "default3.handlebars->117->2629"
8595
+ "default.handlebars->119->2625",
8596
+ "default.handlebars->119->2634",
8597
+ "default3.handlebars->117->2622",
8598
+ "default3.handlebars->117->2631"
8599
]
8600
},
8601
{
@@ -8745,15 +8745,15 @@
8745
"zh-chs": "管理员PowerShell",
8746
"zh-cht": "管理員PowerShell",
8747
"xloc": [
8748
- "default.handlebars->119->3163",
8749
- "default.handlebars->119->3173",
8750
- "default.handlebars->119->3239",
8751
- "default.handlebars->119->3292",
8748
+ "default.handlebars->119->3165",
8749
+ "default.handlebars->119->3175",
8750
+ "default.handlebars->119->3241",
8751
+ "default.handlebars->119->3294",
8752
"default.handlebars->termShellContextMenu->3",
8753
- "default3.handlebars->117->3153",
8754
- "default3.handlebars->117->3163",
8755
- "default3.handlebars->117->3229",
8756
- "default3.handlebars->117->3282",
8753
+ "default3.handlebars->117->3155",
8754
+ "default3.handlebars->117->3165",
8755
+ "default3.handlebars->117->3231",
8756
+ "default3.handlebars->117->3284",
8757
"default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->3->0",
8758
"player.handlebars->29->29",
8759
"xterm.handlebars->termShellContextMenu->cxtermps"
@@ -8785,8 +8785,8 @@
8785
"zh-chs": "管理领域",
8786
"zh-cht": "管理領域",
8787
"xloc": [
8788
- "default.handlebars->119->3004",
8789
- "default3.handlebars->117->2998"
8788
+ "default.handlebars->119->3006",
8789
+ "default3.handlebars->117->3000"
8790
]
8791
},
8792
{
@@ -8846,8 +8846,8 @@
8846
"zh-chs": "管理领域",
8847
"zh-cht": "管理領域",
8848
"xloc": [
8849
- "default.handlebars->119->2849",
8850
- "default3.handlebars->117->2843"
8849
+ "default.handlebars->119->2851",
8850
+ "default3.handlebars->117->2845"
8851
]
8852
},
8853
{
@@ -8876,8 +8876,8 @@
8876
"zh-chs": "管理员",
8877
"zh-cht": "管理員",
8878
"xloc": [
8879
- "default.handlebars->119->2767",
8880
- "default3.handlebars->117->2764"
8879
+ "default.handlebars->119->2769",
8880
+ "default3.handlebars->117->2766"
8881
]
8882
},
8883
{
@@ -8907,8 +8907,8 @@
8907
"zh-cht": "南非文",
8908
"xloc": [
8909
"default-mobile.handlebars->53->115",
8910
- "default.handlebars->119->1865",
8911
- "default3.handlebars->117->1846",
8910
+ "default.handlebars->119->1867",
8911
+ "default3.handlebars->117->1848",
8912
"login2.handlebars->17->1"
8913
]
8914
},
@@ -8942,16 +8942,16 @@
8942
"default-mobile.handlebars->53->460",
8943
"default-mobile.handlebars->53->517",
8944
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8945
- "default.handlebars->119->2478",
8946
- "default.handlebars->119->2491",
8947
- "default.handlebars->119->3390",
8945
+ "default.handlebars->119->2480",
8946
+ "default.handlebars->119->2493",
8947
+ "default.handlebars->119->3392",
8948
"default.handlebars->119->422",
8949
"default.handlebars->119->729",
8950
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8951
"default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm",
8952
- "default3.handlebars->117->2475",
8953
- "default3.handlebars->117->2488",
8954
- "default3.handlebars->117->3380",
8952
+ "default3.handlebars->117->2477",
8953
+ "default3.handlebars->117->2490",
8954
+ "default3.handlebars->117->3382",
8955
"default3.handlebars->117->418",
8956
"default3.handlebars->117->725",
8957
"default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
@@ -8984,10 +8984,10 @@
8984
"zh-chs": "代理+英特尔AMT",
8985
"zh-cht": "代理+Intel® AMT",
8986
"xloc": [
8987
- "default.handlebars->119->2480",
8988
- "default.handlebars->119->2493",
8989
- "default3.handlebars->117->2477",
8990
- "default3.handlebars->117->2490"
8987
+ "default.handlebars->119->2482",
8988
+ "default.handlebars->119->2495",
8989
+ "default3.handlebars->117->2479",
8990
+ "default3.handlebars->117->2492"
8991
]
8992
},
8993
{
@@ -9047,11 +9047,11 @@
9047
"zh-chs": "代理控制台",
9048
"zh-cht": "代理控制台",
9049
"xloc": [
9050
- "default-mobile.handlebars->53->1023",
9050
+ "default-mobile.handlebars->53->1025",
9051
"default-mobile.handlebars->53->599",
9052
- "default.handlebars->119->2415",
9052
+ "default.handlebars->119->2417",
9053
"default.handlebars->119->819",
9054
- "default3.handlebars->117->2412",
9054
+ "default3.handlebars->117->2414",
9055
"default3.handlebars->117->815"
9056
]
9057
},
@@ -9081,8 +9081,8 @@
9081
"zh-chs": "代理错误计数器",
9082
"zh-cht": "代理錯誤計數器",
9083
"xloc": [
9084
- "default.handlebars->119->3358",
9085
- "default3.handlebars->117->3348"
9084
+ "default.handlebars->119->3360",
9085
+ "default3.handlebars->117->3350"
9086
]
9087
},
9088
{
@@ -9305,9 +9305,9 @@
9305
"zh-cht": "代理自行共享",
9306
"xloc": [
9307
"default.handlebars->119->1095",
9308
- "default.handlebars->119->2280",
9308
+ "default.handlebars->119->2282",
9309
"default3.handlebars->117->1091",
9310
- "default3.handlebars->117->2276"
9310
+ "default3.handlebars->117->2278"
9311
]
9312
},
9313
{
@@ -9336,8 +9336,8 @@
9336
"zh-chs": "代理会话",
9337
"zh-cht": "代理時段",
9338
"xloc": [
9339
- "default.handlebars->119->3375",
9340
- "default3.handlebars->117->3365"
9339
+ "default.handlebars->119->3377",
9340
+ "default3.handlebars->117->3367"
9341
]
9342
},
9343
{
@@ -9455,9 +9455,9 @@
9455
"zh-chs": "代理类型",
9456
"zh-cht": "代理類型",
9457
"xloc": [
9458
- "default.handlebars->119->2489",
9458
+ "default.handlebars->119->2491",
9459
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1",
9460
- "default3.handlebars->117->2486",
9460
+ "default3.handlebars->117->2488",
9461
"default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
9462
]
9463
},
@@ -9519,8 +9519,8 @@
9519
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
9520
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
9521
"xloc": [
9522
- "default.handlebars->119->2606",
9523
- "default3.handlebars->117->2603"
9522
+ "default.handlebars->119->2608",
9523
+ "default3.handlebars->117->2605"
9524
]
9525
},
9526
{
@@ -9751,9 +9751,9 @@
9751
"zh-chs": "代理离线",
9752
"zh-cht": "代理離線",
9753
"xloc": [
9754
- "default-mobile.handlebars->53->941",
9755
- "default.handlebars->119->1778",
9756
- "default3.handlebars->117->1761"
9754
+ "default-mobile.handlebars->53->943",
9755
+ "default.handlebars->119->1780",
9756
+ "default3.handlebars->117->1763"
9757
]
9758
},
9759
{
@@ -9782,9 +9782,9 @@
9782
"zh-chs": "代理在线",
9783
"zh-cht": "代理在線",
9784
"xloc": [
9785
- "default-mobile.handlebars->53->940",
9786
- "default.handlebars->119->1777",
9787
- "default3.handlebars->117->1760"
9785
+ "default-mobile.handlebars->53->942",
9786
+ "default.handlebars->119->1779",
9787
+ "default3.handlebars->117->1762"
9788
]
9789
},
9790
{
@@ -10025,11 +10025,11 @@
10025
"zh-chs": "代理",
10026
"zh-cht": "代理",
10027
"xloc": [
10028
- "default.handlebars->119->2446",
10029
- "default.handlebars->119->3403",
10028
+ "default.handlebars->119->2448",
10029
+ "default.handlebars->119->3405",
10030
"default.handlebars->119->589",
10031
- "default3.handlebars->117->2443",
10032
- "default3.handlebars->117->3393",
10031
+ "default3.handlebars->117->2445",
10032
+ "default3.handlebars->117->3395",
10033
"default3.handlebars->117->585"
10034
]
10035
},
@@ -10060,8 +10060,8 @@
10060
"zh-cht": "阿爾巴尼亞文",
10061
"xloc": [
10062
"default-mobile.handlebars->53->116",
10063
- "default.handlebars->119->1866",
10064
- "default3.handlebars->117->1847",
10063
+ "default.handlebars->119->1868",
10064
+ "default3.handlebars->117->1849",
10065
"login2.handlebars->17->2"
10066
]
10067
},
@@ -10107,9 +10107,9 @@
10107
"default-mobile.handlebars->53->374",
10108
"default-mobile.handlebars->53->701",
10109
"default-mobile.handlebars->53->703",
10110
- "default.handlebars->119->3207",
10110
+ "default.handlebars->119->3209",
10111
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1",
10112
- "default3.handlebars->117->3197",
10112
+ "default3.handlebars->117->3199",
10113
"default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1",
10114
"sharing-mobile.handlebars->53->80",
10115
"sharing-mobile.handlebars->53->82"
@@ -10141,8 +10141,8 @@
10141
"zh-chs": "全部可用",
10142
"zh-cht": "全部可用",
10143
"xloc": [
10144
- "default.handlebars->119->2729",
10145
- "default3.handlebars->117->2726"
10144
+ "default.handlebars->119->2731",
10145
+ "default3.handlebars->117->2728"
10146
]
10147
},
10148
{
@@ -10171,9 +10171,9 @@
10171
"zh-chs": "所有可用的代理",
10172
"zh-cht": "所有可用的代理",
10173
"xloc": [
10174
- "default.handlebars->119->2447",
10174
+ "default.handlebars->119->2449",
10175
"default.handlebars->119->590",
10176
- "default3.handlebars->117->2444",
10176
+ "default3.handlebars->117->2446",
10177
"default3.handlebars->117->586"
10178
]
10179
},
@@ -10233,8 +10233,8 @@
10233
"zh-chs": "所有事件",
10234
"zh-cht": "所有事件",
10235
"xloc": [
10236
- "default.handlebars->119->2727",
10237
- "default3.handlebars->117->2724"
10236
+ "default.handlebars->119->2729",
10237
+ "default3.handlebars->117->2726"
10238
]
10239
},
10240
{
@@ -10309,7 +10309,7 @@
10309
"zh-chs": "所有主题",
10310
"zh-cht": "所有主題",
10311
"xloc": [
10312
- "default3.handlebars->117->2115"
10312
+ "default3.handlebars->117->2117"
10313
]
10314
},
10315
{
@@ -10344,8 +10344,8 @@
10344
{
10345
"en": "Allow to override server device name until next connection",
10346
"xloc": [
10347
- "default.handlebars->119->2352",
10348
- "default3.handlebars->117->2349"
10347
+ "default.handlebars->119->2354",
10348
+ "default3.handlebars->117->2351"
10349
]
10350
},
10351
{
@@ -10374,10 +10374,10 @@
10374
"zh-chs": "允许用户管理此设备组和该组中的设备。",
10375
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
10376
"xloc": [
10377
- "default.handlebars->119->2359",
10378
- "default.handlebars->119->2949",
10379
- "default3.handlebars->117->2356",
10380
- "default3.handlebars->117->2943"
10377
+ "default.handlebars->119->2361",
10378
+ "default.handlebars->119->2951",
10379
+ "default3.handlebars->117->2358",
10380
+ "default3.handlebars->117->2945"
10381
]
10382
},
10383
{
@@ -10406,8 +10406,8 @@
10406
"zh-chs": "允许用户管理此设备。",
10407
"zh-cht": "允許用戶管理此裝置。",
10408
"xloc": [
10409
- "default.handlebars->119->2360",
10410
- "default3.handlebars->117->2357"
10409
+ "default.handlebars->119->2362",
10410
+ "default3.handlebars->117->2359"
10411
]
10412
},
10413
{
@@ -10749,13 +10749,13 @@
10749
"zh-chs": "一直通知",
10750
"zh-cht": "一直通知",
10751
"xloc": [
10752
- "default.handlebars->119->2219",
10753
- "default.handlebars->119->2908",
10754
- "default.handlebars->119->3013",
10752
+ "default.handlebars->119->2221",
10753
+ "default.handlebars->119->2910",
10754
+ "default.handlebars->119->3015",
10755
"default.handlebars->119->961",
10756
- "default3.handlebars->117->2215",
10757
- "default3.handlebars->117->2902",
10758
- "default3.handlebars->117->3007",
10756
+ "default3.handlebars->117->2217",
10757
+ "default3.handlebars->117->2904",
10758
+ "default3.handlebars->117->3009",
10759
"default3.handlebars->117->957"
10760
]
10761
},
@@ -10785,13 +10785,13 @@
10785
"zh-chs": "一直提示",
10786
"zh-cht": "一直提示",
10787
"xloc": [
10788
- "default.handlebars->119->2220",
10789
- "default.handlebars->119->2909",
10790
- "default.handlebars->119->3014",
10788
+ "default.handlebars->119->2222",
10789
+ "default.handlebars->119->2911",
10790
+ "default.handlebars->119->3016",
10791
"default.handlebars->119->962",
10792
- "default3.handlebars->117->2216",
10793
- "default3.handlebars->117->2903",
10794
- "default3.handlebars->117->3008",
10792
+ "default3.handlebars->117->2218",
10793
+ "default3.handlebars->117->2905",
10794
+ "default3.handlebars->117->3010",
10795
"default3.handlebars->117->958"
10796
]
10797
},
@@ -10899,8 +10899,8 @@
10899
"pl": "Wystąpił nieznany błąd.",
10900
"uk": "Сталася невідома помилка.",
10901
"xloc": [
10902
- "default.handlebars->119->3152",
10903
- "default3.handlebars->117->3142"
10902
+ "default.handlebars->119->3154",
10903
+ "default3.handlebars->117->3144"
10904
]
10905
},
10906
{
@@ -10965,7 +10965,7 @@
10965
"zh-chs": "Android APK",
10966
"zh-cht": "Android APK",
10967
"xloc": [
10968
- "default-mobile.handlebars->53->995",
10968
+ "default-mobile.handlebars->53->997",
10969
"default.handlebars->119->658",
10970
"default3.handlebars->117->654"
10971
]
@@ -11051,7 +11051,7 @@
11051
"zh-chs": "安卓安装",
11052
"zh-cht": "安卓安裝",
11053
"xloc": [
11054
- "default-mobile.handlebars->53->997"
11054
+ "default-mobile.handlebars->53->999"
11055
]
11056
},
11057
{
@@ -11132,10 +11132,10 @@
11132
"zh-chs": "杀毒软件未激活",
11133
"zh-cht": "殺毒軟件未激活",
11134
"xloc": [
11135
- "default.handlebars->119->2482",
11136
- "default.handlebars->119->2496",
11137
- "default3.handlebars->117->2479",
11138
- "default3.handlebars->117->2493"
11135
+ "default.handlebars->119->2484",
11136
+ "default.handlebars->119->2498",
11137
+ "default3.handlebars->117->2481",
11138
+ "default3.handlebars->117->2495"
11139
]
11140
},
11141
{
@@ -11579,8 +11579,8 @@
11579
"zh-cht": "阿拉伯文(阿爾及利亞)",
11580
"xloc": [
11581
"default-mobile.handlebars->53->118",
11582
- "default.handlebars->119->1868",
11583
- "default3.handlebars->117->1849",
11582
+ "default.handlebars->119->1870",
11583
+ "default3.handlebars->117->1851",
11584
"login2.handlebars->17->4"
11585
]
11586
},
@@ -11611,8 +11611,8 @@
11611
"zh-cht": "阿拉伯文(巴林)",
11612
"xloc": [
11613
"default-mobile.handlebars->53->119",
11614
- "default.handlebars->119->1869",
11615
- "default3.handlebars->117->1850",
11614
+ "default.handlebars->119->1871",
11615
+ "default3.handlebars->117->1852",
11616
"login2.handlebars->17->5"
11617
]
11618
},
@@ -11643,8 +11643,8 @@
11643
"zh-cht": "阿拉伯文(埃及)",
11644
"xloc": [
11645
"default-mobile.handlebars->53->120",
11646
- "default.handlebars->119->1870",
11647
- "default3.handlebars->117->1851",
11646
+ "default.handlebars->119->1872",
11647
+ "default3.handlebars->117->1853",
11648
"login2.handlebars->17->6"
11649
]
11650
},
@@ -11675,8 +11675,8 @@
11675
"zh-cht": "阿拉伯文(伊拉克)",
11676
"xloc": [
11677
"default-mobile.handlebars->53->121",
11678
- "default.handlebars->119->1871",
11679
- "default3.handlebars->117->1852",
11678
+ "default.handlebars->119->1873",
11679
+ "default3.handlebars->117->1854",
11680
"login2.handlebars->17->7"
11681
]
11682
},
@@ -11707,8 +11707,8 @@
11707
"zh-cht": "阿拉伯文(約旦)",
11708
"xloc": [
11709
"default-mobile.handlebars->53->122",
11710
- "default.handlebars->119->1872",
11711
- "default3.handlebars->117->1853",
11710
+ "default.handlebars->119->1874",
11711
+ "default3.handlebars->117->1855",
11712
"login2.handlebars->17->8"
11713
]
11714
},
@@ -11739,8 +11739,8 @@
11739
"zh-cht": "阿拉伯文(科威特)",
11740
"xloc": [
11741
"default-mobile.handlebars->53->123",
11742
- "default.handlebars->119->1873",
11743
- "default3.handlebars->117->1854",
11742
+ "default.handlebars->119->1875",
11743
+ "default3.handlebars->117->1856",
11744
"login2.handlebars->17->9"
11745
]
11746
},
@@ -11771,8 +11771,8 @@
11771
"zh-cht": "阿拉伯文(黎巴嫩)",
11772
"xloc": [
11773
"default-mobile.handlebars->53->124",
11774
- "default.handlebars->119->1874",
11775
- "default3.handlebars->117->1855",
11774
+ "default.handlebars->119->1876",
11775
+ "default3.handlebars->117->1857",
11776
"login2.handlebars->17->10"
11777
]
11778
},
@@ -11803,8 +11803,8 @@
11803
"zh-cht": "阿拉伯文(利比亞)",
11804
"xloc": [
11805
"default-mobile.handlebars->53->125",
11806
- "default.handlebars->119->1875",
11807
- "default3.handlebars->117->1856",
11806
+ "default.handlebars->119->1877",
11807
+ "default3.handlebars->117->1858",
11808
"login2.handlebars->17->11"
11809
]
11810
},
@@ -11835,8 +11835,8 @@
11835
"zh-cht": "阿拉伯文(摩洛哥)",
11836
"xloc": [
11837
"default-mobile.handlebars->53->126",
11838
- "default.handlebars->119->1876",
11839
- "default3.handlebars->117->1857",
11838
+ "default.handlebars->119->1878",
11839
+ "default3.handlebars->117->1859",
11840
"login2.handlebars->17->12"
11841
]
11842
},
@@ -11867,8 +11867,8 @@
11867
"zh-cht": "阿拉伯文(阿曼)",
11868
"xloc": [
11869
"default-mobile.handlebars->53->127",
11870
- "default.handlebars->119->1877",
11871
- "default3.handlebars->117->1858",
11870
+ "default.handlebars->119->1879",
11871
+ "default3.handlebars->117->1860",
11872
"login2.handlebars->17->13"
11873
]
11874
},
@@ -11899,8 +11899,8 @@
11899
"zh-cht": "阿拉伯文(卡塔爾)",
11900
"xloc": [
11901
"default-mobile.handlebars->53->128",
11902
- "default.handlebars->119->1878",
11903
- "default3.handlebars->117->1859",
11902
+ "default.handlebars->119->1880",
11903
+ "default3.handlebars->117->1861",
11904
"login2.handlebars->17->14"
11905
]
11906
},
@@ -11931,8 +11931,8 @@
11931
"zh-cht": "阿拉伯文(沙特阿拉伯)",
11932
"xloc": [
11933
"default-mobile.handlebars->53->129",
11934
- "default.handlebars->119->1879",
11935
- "default3.handlebars->117->1860",
11934
+ "default.handlebars->119->1881",
11935
+ "default3.handlebars->117->1862",
11936
"login2.handlebars->17->15"
11937
]
11938
},
@@ -11963,8 +11963,8 @@
11963
"zh-cht": "阿拉伯文(標準)",
11964
"xloc": [
11965
"default-mobile.handlebars->53->117",
11966
- "default.handlebars->119->1867",
11967
- "default3.handlebars->117->1848",
11966
+ "default.handlebars->119->1869",
11967
+ "default3.handlebars->117->1850",
11968
"login2.handlebars->17->3"
11969
]
11970
},
@@ -11995,8 +11995,8 @@
11995
"zh-cht": "阿拉伯文(敘利亞)",
11996
"xloc": [
11997
"default-mobile.handlebars->53->130",
11998
- "default.handlebars->119->1880",
11999
- "default3.handlebars->117->1861",
11998
+ "default.handlebars->119->1882",
11999
+ "default3.handlebars->117->1863",
12000
"login2.handlebars->17->16"
12001
]
12002
},
@@ -12027,8 +12027,8 @@
12027
"zh-cht": "阿拉伯文(突尼斯)",
12028
"xloc": [
12029
"default-mobile.handlebars->53->131",
12030
- "default.handlebars->119->1881",
12031
- "default3.handlebars->117->1862",
12030
+ "default.handlebars->119->1883",
12031
+ "default3.handlebars->117->1864",
12032
"login2.handlebars->17->17"
12033
]
12034
},
@@ -12059,8 +12059,8 @@
12059
"zh-cht": "阿拉伯文(阿聯酋)",
12060
"xloc": [
12061
"default-mobile.handlebars->53->132",
12062
- "default.handlebars->119->1882",
12063
- "default3.handlebars->117->1863",
12062
+ "default.handlebars->119->1884",
12063
+ "default3.handlebars->117->1865",
12064
"login2.handlebars->17->18"
12065
]
12066
},
@@ -12091,8 +12091,8 @@
12091
"zh-cht": "阿拉伯文(也門)",
12092
"xloc": [
12093
"default-mobile.handlebars->53->133",
12094
- "default.handlebars->119->1883",
12095
- "default3.handlebars->117->1864",
12094
+ "default.handlebars->119->1885",
12095
+ "default3.handlebars->117->1866",
12096
"login2.handlebars->17->19"
12097
]
12098
},
@@ -12123,8 +12123,8 @@
12123
"zh-cht": "阿拉貢文",
12124
"xloc": [
12125
"default-mobile.handlebars->53->134",
12126
- "default.handlebars->119->1884",
12127
- "default3.handlebars->117->1865",
12126
+ "default.handlebars->119->1886",
12127
+ "default3.handlebars->117->1867",
12128
"login2.handlebars->17->20"
12129
]
12130
},
@@ -12221,9 +12221,9 @@
12221
"zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
12222
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
12223
"xloc": [
12224
- "default-mobile.handlebars->53->983",
12225
- "default.handlebars->119->2324",
12226
- "default3.handlebars->117->2318"
12224
+ "default-mobile.handlebars->53->985",
12225
+ "default.handlebars->119->2326",
12226
+ "default3.handlebars->117->2320"
12227
]
12228
},
12229
{
@@ -12356,8 +12356,8 @@
12356
"zh-chs": "您确定要{0}插件吗:{1}",
12357
"zh-cht": "你確定要{0}外掛嗎:{1}",
12358
"xloc": [
12359
- "default.handlebars->119->3456",
12360
- "default3.handlebars->117->3446"
12359
+ "default.handlebars->119->3458",
12360
+ "default3.handlebars->117->3448"
12361
]
12362
},
12363
{
@@ -12418,8 +12418,8 @@
12418
"zh-cht": "亞美尼亞文",
12419
"xloc": [
12420
"default-mobile.handlebars->53->135",
12421
- "default.handlebars->119->1885",
12422
- "default3.handlebars->117->1866",
12421
+ "default.handlebars->119->1887",
12422
+ "default3.handlebars->117->1868",
12423
"login2.handlebars->17->21"
12424
]
12425
},
@@ -12632,8 +12632,8 @@
12632
"zh-cht": "阿薩姆文",
12633
"xloc": [
12634
"default-mobile.handlebars->53->136",
12635
- "default.handlebars->119->1886",
12636
- "default3.handlebars->117->1867",
12635
+ "default.handlebars->119->1888",
12636
+ "default3.handlebars->117->1869",
12637
"login2.handlebars->17->22"
12638
]
12639
},
@@ -12812,8 +12812,8 @@
12812
"zh-cht": "阿斯圖里亞斯文",
12813
"xloc": [
12814
"default-mobile.handlebars->53->137",
12815
- "default.handlebars->119->1887",
12816
- "default3.handlebars->117->1868",
12815
+ "default.handlebars->119->1889",
12816
+ "default3.handlebars->117->1870",
12817
"login2.handlebars->17->23"
12818
]
12819
},
@@ -12843,8 +12843,8 @@
12843
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
12844
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
12845
"xloc": [
12846
- "default.handlebars->119->2575",
12847
- "default3.handlebars->117->2572"
12846
+ "default.handlebars->119->2577",
12847
+ "default3.handlebars->117->2574"
12848
]
12849
},
12850
{
@@ -12944,8 +12944,8 @@
12944
"zh-chs": "认证软件",
12945
"zh-cht": "認證軟體",
12946
"xloc": [
12947
- "default.handlebars->119->3017",
12948
- "default3.handlebars->117->3011"
12947
+ "default.handlebars->119->3019",
12948
+ "default3.handlebars->117->3013"
12949
]
12950
},
12951
{
@@ -12974,12 +12974,12 @@
12974
"zh-chs": "认证设备",
12975
"zh-cht": "認證設備",
12976
"xloc": [
12977
- "default.handlebars->119->1848",
12977
"default.handlebars->119->1850",
12979
- "default.handlebars->119->1854",
12980
- "default3.handlebars->117->1830",
12978
+ "default.handlebars->119->1852",
12979
+ "default.handlebars->119->1856",
12980
"default3.handlebars->117->1832",
12982
- "default3.handlebars->117->1835"
12981
+ "default3.handlebars->117->1834",
12982
+ "default3.handlebars->117->1837"
12983
]
12984
},
12985
{
@@ -13048,12 +13048,12 @@
13048
"default-mobile.handlebars->53->322",
13049
"default-mobile.handlebars->53->75",
13050
"default-mobile.handlebars->53->80",
13051
- "default.handlebars->119->1844",
13051
"default.handlebars->119->1846",
13052
+ "default.handlebars->119->1848",
13053
"default.handlebars->119->230",
13054
"default.handlebars->119->235",
13055
- "default3.handlebars->117->1826",
13055
"default3.handlebars->117->1828",
13056
+ "default3.handlebars->117->1830",
13057
"default3.handlebars->117->227",
13058
"default3.handlebars->117->232"
13059
]
@@ -13205,10 +13205,10 @@
13205
"zh-chs": "自动删除",
13206
"zh-cht": "自動刪除",
13207
"xloc": [
13208
- "default.handlebars->119->2202",
13209
- "default.handlebars->119->2720",
13210
- "default3.handlebars->117->2198",
13211
- "default3.handlebars->117->2717"
13208
+ "default.handlebars->119->2204",
13209
+ "default.handlebars->119->2722",
13210
+ "default3.handlebars->117->2200",
13211
+ "default3.handlebars->117->2719"
13212
]
13213
},
13214
{
@@ -13274,8 +13274,8 @@
13274
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
13275
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
13276
"xloc": [
13277
- "default.handlebars->119->2656",
13278
- "default3.handlebars->117->2653"
13277
+ "default.handlebars->119->2658",
13278
+ "default3.handlebars->117->2655"
13279
]
13280
},
13281
{
@@ -13392,8 +13392,8 @@
13392
"zh-chs": "自动移除非活动设备",
13393
"zh-cht": "自動移除非活動設備",
13394
"xloc": [
13395
- "default.handlebars->119->2354",
13396
- "default3.handlebars->117->2351"
13395
+ "default.handlebars->119->2356",
13396
+ "default3.handlebars->117->2353"
13397
]
13398
},
13399
{
@@ -13422,8 +13422,8 @@
13422
"zh-chs": "可用內存",
13423
"zh-cht": "可用內存",
13424
"xloc": [
13425
- "default.handlebars->119->3384",
13426
- "default3.handlebars->117->3374"
13425
+ "default.handlebars->119->3386",
13426
+ "default3.handlebars->117->3376"
13427
]
13428
},
13429
{
@@ -13453,8 +13453,8 @@
13453
"zh-cht": "阿塞拜疆文",
13454
"xloc": [
13455
"default-mobile.handlebars->53->138",
13456
- "default.handlebars->119->1888",
13457
- "default3.handlebars->117->1869",
13456
+ "default.handlebars->119->1890",
13457
+ "default3.handlebars->117->1871",
13458
"login2.handlebars->17->24"
13459
]
13460
},
@@ -13730,12 +13730,12 @@
13730
"zh-chs": "后台运行与交互式运行",
13731
"zh-cht": "背景與互動",
13732
"xloc": [
13733
- "default.handlebars->119->2453",
13734
- "default.handlebars->119->2460",
13733
+ "default.handlebars->119->2455",
13734
+ "default.handlebars->119->2462",
13735
"default.handlebars->119->576",
13736
"default.handlebars->119->597",
13737
- "default3.handlebars->117->2450",
13738
- "default3.handlebars->117->2457",
13737
+ "default3.handlebars->117->2452",
13738
+ "default3.handlebars->117->2459",
13739
"default3.handlebars->117->572",
13740
"default3.handlebars->117->593"
13741
]
@@ -13767,13 +13767,13 @@
13767
"zh-cht": "僅背景",
13768
"xloc": [
13769
"agentinvite.handlebars->13->9",
13770
- "default.handlebars->119->2454",
13771
- "default.handlebars->119->2462",
13770
+ "default.handlebars->119->2456",
13771
+ "default.handlebars->119->2464",
13772
"default.handlebars->119->577",
13773
"default.handlebars->119->598",
13774
"default.handlebars->119->615",
13775
- "default3.handlebars->117->2451",
13776
- "default3.handlebars->117->2459",
13775
+ "default3.handlebars->117->2453",
13776
+ "default3.handlebars->117->2461",
13777
"default3.handlebars->117->573",
13778
"default3.handlebars->117->594",
13779
"default3.handlebars->117->611"
@@ -13836,10 +13836,10 @@
13836
"zh-chs": "备用码",
13837
"zh-cht": "備用碼",
13838
"xloc": [
13839
- "default.handlebars->119->3021",
13840
- "default.handlebars->119->3260",
13841
- "default3.handlebars->117->3015",
13842
- "default3.handlebars->117->3250"
13839
+ "default.handlebars->119->3023",
13840
+ "default.handlebars->119->3262",
13841
+ "default3.handlebars->117->3017",
13842
+ "default3.handlebars->117->3252"
13843
]
13844
},
13845
{
@@ -13929,8 +13929,8 @@
13929
"zh-chs": "错误的签名",
13930
"zh-cht": "錯誤的簽名",
13931
"xloc": [
13932
- "default.handlebars->119->3365",
13933
- "default3.handlebars->117->3355"
13932
+ "default.handlebars->119->3367",
13933
+ "default3.handlebars->117->3357"
13934
]
13935
},
13936
{
@@ -13959,8 +13959,8 @@
13959
"zh-chs": "错误的网络证书",
13960
"zh-cht": "錯誤的網絡憑證",
13961
"xloc": [
13962
- "default.handlebars->119->3364",
13963
- "default3.handlebars->117->3354"
13962
+ "default.handlebars->119->3366",
13963
+ "default3.handlebars->117->3356"
13964
]
13965
},
13966
{
@@ -13990,8 +13990,8 @@
13990
"zh-cht": "巴斯克",
13991
"xloc": [
13992
"default-mobile.handlebars->53->139",
13993
- "default.handlebars->119->1889",
13994
- "default3.handlebars->117->1870",
13993
+ "default.handlebars->119->1891",
13994
+ "default3.handlebars->117->1872",
13995
"login2.handlebars->17->25"
13996
]
13997
},
@@ -14096,8 +14096,8 @@
14096
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
14097
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
14098
"xloc": [
14099
- "default.handlebars->119->2655",
14100
- "default3.handlebars->117->2652"
14099
+ "default.handlebars->119->2657",
14100
+ "default3.handlebars->117->2654"
14101
]
14102
},
14103
{
@@ -14122,6 +14122,36 @@
14122
"tr": "Pil",
14123
"zh-chs": "电池",
14124
"zh-cht": "電池",
14125
+ "xloc": [
14126
+ "default-mobile.handlebars->53->885",
14127
+ "default.handlebars->119->1721",
14128
+ "default3.handlebars->117->1704"
14129
+ ]
14130
+ },
14131
+ {
14132
+ "bs": "Napunjenost baterije",
14133
+ "ca": "Carrega de la bateria",
14134
+ "cs": "Nabití baterie",
14135
+ "da": "Batteriopladning",
14136
+ "de": "Batterieladung",
14137
+ "en": "Battery Charge",
14138
+ "es": "Carga de batería",
14139
+ "fi": "Akun lataus",
14140
+ "fr": "Charge de la batterie",
14141
+ "hi": "बैटरी चार्ज",
14142
+ "it": "Carica della batteria",
14143
+ "ja": "バッテリー充電",
14144
+ "ko": "배터리 충전",
14145
+ "nl": "Batterij opladen",
14146
+ "pl": "Ładowanie baterii",
14147
+ "pt": "Carga da bateria",
14148
+ "pt-br": "Carga da bateria",
14149
+ "ru": "Заряд батареи",
14150
+ "sv": "Batteriladdning",
14151
+ "tr": "Pil Şarjı",
14152
+ "uk": "Заряд батареї",
14153
+ "zh-chs": "电池充电",
14154
+ "zh-cht": "電池充電",
14155
"xloc": [
14156
"default-mobile.handlebars->53->883",
14157
"default.handlebars->119->1719",
@@ -14155,8 +14185,8 @@
14185
"zh-cht": "白俄羅斯文",
14186
"xloc": [
14187
"default-mobile.handlebars->53->141",
14158
- "default.handlebars->119->1891",
14159
- "default3.handlebars->117->1872",
14188
+ "default.handlebars->119->1893",
14189
+ "default3.handlebars->117->1874",
14190
"login2.handlebars->17->27"
14191
]
14192
},
@@ -14187,8 +14217,8 @@
14217
"zh-cht": "孟加拉",
14218
"xloc": [
14219
"default-mobile.handlebars->53->142",
14190
- "default.handlebars->119->1892",
14191
- "default3.handlebars->117->1873",
14220
+ "default.handlebars->119->1894",
14221
+ "default3.handlebars->117->1875",
14222
"login2.handlebars->17->28"
14223
]
14224
},
@@ -14256,9 +14286,9 @@
14286
"nl": "BitLocker",
14287
"uk": "BitLocker",
14288
"xloc": [
14259
- "default-mobile.handlebars->53->918",
14260
- "default.handlebars->119->1754",
14261
- "default3.handlebars->117->1737"
14289
+ "default-mobile.handlebars->53->920",
14290
+ "default.handlebars->119->1756",
14291
+ "default3.handlebars->117->1739"
14292
]
14293
},
14294
{
@@ -14268,9 +14298,9 @@
14298
"pl": "Informacje o BitLocker",
14299
"uk": "Інформація о BitLocker",
14300
"xloc": [
14271
- "default-mobile.handlebars->53->939",
14272
- "default.handlebars->119->1775",
14273
- "default3.handlebars->117->1758"
14301
+ "default-mobile.handlebars->53->941",
14302
+ "default.handlebars->119->1777",
14303
+ "default3.handlebars->117->1760"
14304
]
14305
},
14306
{
@@ -14331,8 +14361,8 @@
14361
"zh-cht": "波斯尼亞文",
14362
"xloc": [
14363
"default-mobile.handlebars->53->143",
14334
- "default.handlebars->119->1893",
14335
- "default3.handlebars->117->1874",
14364
+ "default.handlebars->119->1895",
14365
+ "default3.handlebars->117->1876",
14366
"login2.handlebars->17->29"
14367
]
14368
},
@@ -14363,8 +14393,8 @@
14393
"zh-cht": "布列塔尼",
14394
"xloc": [
14395
"default-mobile.handlebars->53->144",
14366
- "default.handlebars->119->1894",
14367
- "default3.handlebars->117->1875",
14396
+ "default.handlebars->119->1896",
14397
+ "default3.handlebars->117->1877",
14398
"login2.handlebars->17->30"
14399
]
14400
},
@@ -14394,9 +14424,9 @@
14424
"zh-chs": "广播",
14425
"zh-cht": "廣播",
14426
"xloc": [
14397
- "default.handlebars->119->2915",
14427
+ "default.handlebars->119->2917",
14428
"default.handlebars->container->column_l->p4->3->1->0->3->1",
14399
- "default3.handlebars->117->2909",
14429
+ "default3.handlebars->117->2911",
14430
"default3.handlebars->container->column_l->p4->3->1->0->1->3"
14431
]
14432
},
@@ -14426,8 +14456,8 @@
14456
"zh-chs": "广播消息",
14457
"zh-cht": "廣播消息",
14458
"xloc": [
14429
- "default.handlebars->119->2831",
14430
- "default3.handlebars->117->2827"
14459
+ "default.handlebars->119->2833",
14460
+ "default3.handlebars->117->2829"
14461
]
14462
},
14463
{
@@ -14456,8 +14486,8 @@
14486
"zh-chs": "向所有连接的用户广播消息。",
14487
"zh-cht": "向所有連接的用戶廣播消息。",
14488
"xloc": [
14459
- "default.handlebars->119->2826",
14460
- "default3.handlebars->117->2822"
14489
+ "default.handlebars->119->2828",
14490
+ "default3.handlebars->117->2824"
14491
]
14492
},
14493
{
@@ -14486,8 +14516,8 @@
14516
"zh-chs": "浏览器",
14517
"zh-cht": "瀏覽器",
14518
"xloc": [
14489
- "default.handlebars->119->3231",
14490
- "default3.handlebars->117->3221"
14519
+ "default.handlebars->119->3233",
14520
+ "default3.handlebars->117->3223"
14521
]
14522
},
14523
{
@@ -14578,8 +14608,8 @@
14608
"zh-cht": "保加利亞文",
14609
"xloc": [
14610
"default-mobile.handlebars->53->140",
14581
- "default.handlebars->119->1890",
14582
- "default3.handlebars->117->1871",
14611
+ "default.handlebars->119->1892",
14612
+ "default3.handlebars->117->1873",
14613
"login2.handlebars->17->26"
14614
]
14615
},
@@ -14610,8 +14640,8 @@
14640
"zh-cht": "緬甸文",
14641
"xloc": [
14642
"default-mobile.handlebars->53->145",
14613
- "default.handlebars->119->1895",
14614
- "default3.handlebars->117->1876",
14643
+ "default.handlebars->119->1897",
14644
+ "default3.handlebars->117->1878",
14645
"login2.handlebars->17->31"
14646
]
14647
},
@@ -14641,8 +14671,8 @@
14671
"zh-chs": "默认情况下,不活动的设备将在 1 天后移除。",
14672
"zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
14673
"xloc": [
14644
- "default.handlebars->119->2356",
14645
- "default3.handlebars->117->2353"
14674
+ "default.handlebars->119->2358",
14675
+ "default3.handlebars->117->2355"
14676
]
14677
},
14678
{
@@ -14671,8 +14701,8 @@
14701
"zh-chs": "默认情况下,非活动设备将在 {0} 天后移除。",
14702
"zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
14703
"xloc": [
14674
- "default.handlebars->119->2357",
14675
- "default3.handlebars->117->2354"
14704
+ "default.handlebars->119->2359",
14705
+ "default3.handlebars->117->2356"
14706
]
14707
},
14708
{
@@ -14714,8 +14744,8 @@
14744
"zh-chs": "字节输入",
14745
"zh-cht": "字節輸入",
14746
"xloc": [
14717
- "default.handlebars->119->3227",
14718
- "default3.handlebars->117->3217"
14747
+ "default.handlebars->119->3229",
14748
+ "default3.handlebars->117->3219"
14749
]
14750
},
14751
{
@@ -14744,8 +14774,8 @@
14774
"zh-chs": "字节输出",
14775
"zh-cht": "字節輸出",
14776
"xloc": [
14747
- "default.handlebars->119->3228",
14748
- "default3.handlebars->117->3218"
14777
+ "default.handlebars->119->3230",
14778
+ "default3.handlebars->117->3220"
14779
]
14780
},
14781
{
@@ -14854,8 +14884,8 @@
14884
"zh-chs": "CCM模式",
14885
"zh-cht": "CCM模式",
14886
"xloc": [
14857
- "default.handlebars->119->2307",
14858
- "default3.handlebars->117->2301"
14887
+ "default.handlebars->119->2309",
14888
+ "default3.handlebars->117->2303"
14889
]
14890
},
14891
{
@@ -14863,15 +14893,15 @@
14893
"en": "CD-ROM",
14894
"nl": "CD-ROM",
14895
"xloc": [
14866
- "default-mobile.handlebars->53->911",
14867
- "default-mobile.handlebars->53->923",
14868
- "default-mobile.handlebars->53->930",
14869
- "default.handlebars->119->1747",
14870
- "default.handlebars->119->1759",
14871
- "default.handlebars->119->1766",
14872
- "default3.handlebars->117->1730",
14873
- "default3.handlebars->117->1742",
14874
- "default3.handlebars->117->1749"
14896
+ "default-mobile.handlebars->53->913",
14897
+ "default-mobile.handlebars->53->925",
14898
+ "default-mobile.handlebars->53->932",
14899
+ "default.handlebars->119->1749",
14900
+ "default.handlebars->119->1761",
14901
+ "default.handlebars->119->1768",
14902
+ "default3.handlebars->117->1732",
14903
+ "default3.handlebars->117->1744",
14904
+ "default3.handlebars->117->1751"
14905
]
14906
},
14907
{
@@ -14901,10 +14931,10 @@
14931
"zh-cht": "CIRA",
14932
"xloc": [
14933
"default-mobile.handlebars->53->461",
14904
- "default.handlebars->119->3391",
14934
+ "default.handlebars->119->3393",
14935
"default.handlebars->119->424",
14936
"default.handlebars->119->731",
14907
- "default3.handlebars->117->3381",
14937
+ "default3.handlebars->117->3383",
14938
"default3.handlebars->117->420",
14939
"default3.handlebars->117->727"
14940
]
@@ -14935,8 +14965,8 @@
14965
"zh-chs": "CIRA服务器",
14966
"zh-cht": "CIRA伺服器",
14967
"xloc": [
14938
- "default.handlebars->119->3440",
14939
- "default3.handlebars->117->3430"
14968
+ "default.handlebars->119->3442",
14969
+ "default3.handlebars->117->3432"
14970
]
14971
},
14972
{
@@ -14965,8 +14995,8 @@
14995
"zh-chs": "CIRA服务器命令",
14996
"zh-cht": "CIRA伺服器指令",
14997
"xloc": [
14968
- "default.handlebars->119->3441",
14969
- "default3.handlebars->117->3431"
14998
+ "default.handlebars->119->3443",
14999
+ "default3.handlebars->117->3433"
15000
]
15001
},
15002
{
@@ -15025,8 +15055,8 @@
15055
"zh-chs": "CIRA设置",
15056
"zh-cht": "CIRA設置",
15057
"xloc": [
15028
- "default.handlebars->119->2315",
15029
- "default3.handlebars->117->2308"
15058
+ "default.handlebars->119->2317",
15059
+ "default3.handlebars->117->2310"
15060
]
15061
},
15062
{
@@ -15058,11 +15088,11 @@
15088
"default-mobile.handlebars->53->839",
15089
"default.handlebars->119->1588",
15090
"default.handlebars->119->1675",
15061
- "default.handlebars->119->3416",
15091
+ "default.handlebars->119->3418",
15092
"default.handlebars->container->column_l->p40->3->1->p40type->5",
15093
"default3.handlebars->117->1573",
15094
"default3.handlebars->117->1658",
15065
- "default3.handlebars->117->3406",
15095
+ "default3.handlebars->117->3408",
15096
"default3.handlebars->container->column_l->p40->3->3->p40type->5"
15097
]
15098
},
@@ -15092,8 +15122,8 @@
15122
"zh-chs": "CPU负载",
15123
"zh-cht": "CPU負載",
15124
"xloc": [
15095
- "default.handlebars->119->3380",
15096
- "default3.handlebars->117->3370"
15125
+ "default.handlebars->119->3382",
15126
+ "default3.handlebars->117->3372"
15127
]
15128
},
15129
{
@@ -15122,8 +15152,8 @@
15152
"zh-chs": "最近15分钟的CPU负载",
15153
"zh-cht": "最近15分鐘的CPU負載",
15154
"xloc": [
15125
- "default.handlebars->119->3383",
15126
- "default3.handlebars->117->3373"
15155
+ "default.handlebars->119->3385",
15156
+ "default3.handlebars->117->3375"
15157
]
15158
},
15159
{
@@ -15152,8 +15182,8 @@
15182
"zh-chs": "最近5分钟的CPU负载",
15183
"zh-cht": "最近5分鐘的CPU負載",
15184
"xloc": [
15155
- "default.handlebars->119->3382",
15156
- "default3.handlebars->117->3372"
15185
+ "default.handlebars->119->3384",
15186
+ "default3.handlebars->117->3374"
15187
]
15188
},
15189
{
@@ -15182,8 +15212,8 @@
15212
"zh-chs": "最近一分钟的CPU负载",
15213
"zh-cht": "最近一分鐘的CPU負載",
15214
"xloc": [
15185
- "default.handlebars->119->3381",
15186
- "default3.handlebars->117->3371"
15215
+ "default.handlebars->119->3383",
15216
+ "default3.handlebars->117->3373"
15217
]
15218
},
15219
{
@@ -15249,8 +15279,8 @@
15279
"zh-chs": "CSV",
15280
"zh-cht": "CSV",
15281
"xloc": [
15252
- "default.handlebars->119->2737",
15253
- "default3.handlebars->117->2734"
15282
+ "default.handlebars->119->2739",
15283
+ "default3.handlebars->117->2736"
15284
]
15285
},
15286
{
@@ -15279,11 +15309,11 @@
15309
"zh-chs": "CSV格式",
15310
"zh-cht": "CSV格式",
15311
"xloc": [
15282
- "default.handlebars->119->2741",
15283
- "default.handlebars->119->2818",
15312
+ "default.handlebars->119->2743",
15313
+ "default.handlebars->119->2820",
15314
"default.handlebars->119->804",
15285
- "default3.handlebars->117->2738",
15286
- "default3.handlebars->117->2814",
15315
+ "default3.handlebars->117->2740",
15316
+ "default3.handlebars->117->2816",
15317
"default3.handlebars->117->800"
15318
]
15319
},
@@ -15293,8 +15323,8 @@
15323
"nl": "Het CSV bestandsformaat is als volgt:",
15324
"uk": "Формат файлу CSV нижче:",
15325
"xloc": [
15296
- "default.handlebars->119->2804",
15297
- "default3.handlebars->117->2800"
15326
+ "default.handlebars->119->2806",
15327
+ "default3.handlebars->117->2802"
15328
]
15329
},
15330
{
@@ -15349,8 +15379,8 @@
15379
"zh-chs": "呼叫错误",
15380
"zh-cht": "呼叫錯誤",
15381
"xloc": [
15352
- "default.handlebars->119->3457",
15353
- "default3.handlebars->117->3447"
15382
+ "default.handlebars->119->3459",
15383
+ "default3.handlebars->117->3449"
15384
]
15385
},
15386
{
@@ -15363,10 +15393,10 @@
15393
"pl": "CallMeBot",
15394
"uk": "CallMeBot",
15395
"xloc": [
15366
- "default.handlebars->119->1813",
15367
- "default.handlebars->119->3056",
15368
- "default3.handlebars->117->1795",
15369
- "default3.handlebars->117->3050"
15396
+ "default.handlebars->119->1815",
15397
+ "default.handlebars->119->3058",
15398
+ "default3.handlebars->117->1797",
15399
+ "default3.handlebars->117->3052"
15400
]
15401
},
15402
{
@@ -15428,8 +15458,8 @@
15458
"agent-translations.json",
15459
"default-mobile.handlebars->53->331",
15460
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
15431
- "default.handlebars->119->2169",
15432
- "default.handlebars->119->3446",
15461
+ "default.handlebars->119->2171",
15462
+ "default.handlebars->119->3448",
15463
"default.handlebars->119->549",
15464
"default.handlebars->container->dialog->idx_dlgButtonBar",
15465
"default3.handlebars->117->545",
@@ -15552,30 +15582,30 @@
15582
"zh-chs": "容量",
15583
"zh-cht": "容量",
15584
"xloc": [
15555
- "default-mobile.handlebars->53->886",
15556
- "default-mobile.handlebars->53->892",
15557
- "default-mobile.handlebars->53->898",
15558
- "default-mobile.handlebars->53->903",
15585
+ "default-mobile.handlebars->53->888",
15586
+ "default-mobile.handlebars->53->894",
15587
+ "default-mobile.handlebars->53->900",
15588
"default-mobile.handlebars->53->905",
15560
- "default-mobile.handlebars->53->908",
15561
- "default-mobile.handlebars->53->920",
15562
- "default-mobile.handlebars->53->927",
15563
- "default.handlebars->119->1722",
15564
- "default.handlebars->119->1728",
15565
- "default.handlebars->119->1734",
15566
- "default.handlebars->119->1739",
15589
+ "default-mobile.handlebars->53->907",
15590
+ "default-mobile.handlebars->53->910",
15591
+ "default-mobile.handlebars->53->922",
15592
+ "default-mobile.handlebars->53->929",
15593
+ "default.handlebars->119->1724",
15594
+ "default.handlebars->119->1730",
15595
+ "default.handlebars->119->1736",
15596
"default.handlebars->119->1741",
15568
- "default.handlebars->119->1744",
15569
- "default.handlebars->119->1756",
15570
- "default.handlebars->119->1763",
15571
- "default3.handlebars->117->1705",
15572
- "default3.handlebars->117->1711",
15573
- "default3.handlebars->117->1717",
15574
- "default3.handlebars->117->1722",
15597
+ "default.handlebars->119->1743",
15598
+ "default.handlebars->119->1746",
15599
+ "default.handlebars->119->1758",
15600
+ "default.handlebars->119->1765",
15601
+ "default3.handlebars->117->1707",
15602
+ "default3.handlebars->117->1713",
15603
+ "default3.handlebars->117->1719",
15604
"default3.handlebars->117->1724",
15576
- "default3.handlebars->117->1727",
15577
- "default3.handlebars->117->1739",
15578
- "default3.handlebars->117->1746"
15605
+ "default3.handlebars->117->1726",
15606
+ "default3.handlebars->117->1729",
15607
+ "default3.handlebars->117->1741",
15608
+ "default3.handlebars->117->1748"
15609
]
15610
},
15611
{
@@ -15604,15 +15634,15 @@
15634
"zh-chs": "容量/速度",
15635
"zh-cht": "容量/速度",
15636
"xloc": [
15607
- "default-mobile.handlebars->53->884",
15608
- "default-mobile.handlebars->53->890",
15609
- "default-mobile.handlebars->53->896",
15610
- "default.handlebars->119->1720",
15611
- "default.handlebars->119->1726",
15612
- "default.handlebars->119->1732",
15613
- "default3.handlebars->117->1703",
15614
- "default3.handlebars->117->1709",
15615
- "default3.handlebars->117->1715"
15637
+ "default-mobile.handlebars->53->886",
15638
+ "default-mobile.handlebars->53->892",
15639
+ "default-mobile.handlebars->53->898",
15640
+ "default.handlebars->119->1722",
15641
+ "default.handlebars->119->1728",
15642
+ "default.handlebars->119->1734",
15643
+ "default3.handlebars->117->1705",
15644
+ "default3.handlebars->117->1711",
15645
+ "default3.handlebars->117->1717"
15646
]
15647
},
15648
{
@@ -15640,15 +15670,15 @@
15670
"zh-chs": "剩余容量",
15671
"zh-cht": "剩餘容量",
15672
"xloc": [
15643
- "default-mobile.handlebars->53->909",
15644
- "default-mobile.handlebars->53->921",
15645
- "default-mobile.handlebars->53->928",
15646
- "default.handlebars->119->1745",
15647
- "default.handlebars->119->1757",
15648
- "default.handlebars->119->1764",
15649
- "default3.handlebars->117->1728",
15650
- "default3.handlebars->117->1740",
15651
- "default3.handlebars->117->1747"
15673
+ "default-mobile.handlebars->53->911",
15674
+ "default-mobile.handlebars->53->923",
15675
+ "default-mobile.handlebars->53->930",
15676
+ "default.handlebars->119->1747",
15677
+ "default.handlebars->119->1759",
15678
+ "default.handlebars->119->1766",
15679
+ "default3.handlebars->117->1730",
15680
+ "default3.handlebars->117->1742",
15681
+ "default3.handlebars->117->1749"
15682
]
15683
},
15684
{
@@ -15678,8 +15708,8 @@
15708
"zh-cht": "加泰羅尼亞文",
15709
"xloc": [
15710
"default-mobile.handlebars->53->146",
15681
- "default.handlebars->119->1896",
15682
- "default3.handlebars->117->1877",
15711
+ "default.handlebars->119->1898",
15712
+ "default3.handlebars->117->1879",
15713
"login2.handlebars->17->32"
15714
]
15715
},
@@ -15776,7 +15806,7 @@
15806
"en": "Cerulean",
15807
"nl": "Hemelsblauw",
15808
"xloc": [
15779
- "default3.handlebars->117->2091"
15809
+ "default3.handlebars->117->2093"
15810
]
15811
},
15812
{
@@ -15806,8 +15836,8 @@
15836
"zh-cht": "查莫羅",
15837
"xloc": [
15838
"default-mobile.handlebars->53->147",
15809
- "default.handlebars->119->1897",
15810
- "default3.handlebars->117->1878",
15839
+ "default.handlebars->119->1899",
15840
+ "default3.handlebars->117->1880",
15841
"login2.handlebars->17->33"
15842
]
15843
},
@@ -15868,8 +15898,8 @@
15898
"zh-chs": "更改{0}的邮箱",
15899
"zh-cht": "更改{0}的電郵",
15900
"xloc": [
15871
- "default.handlebars->119->3098",
15872
- "default3.handlebars->117->3090"
15901
+ "default.handlebars->119->3100",
15902
+ "default3.handlebars->117->3092"
15903
]
15904
},
15905
{
@@ -15948,10 +15978,10 @@
15978
"zh-cht": "更改密碼",
15979
"xloc": [
15980
"default-mobile.handlebars->53->339",
15951
- "default.handlebars->119->2113",
15952
- "default.handlebars->119->3042",
15953
- "default3.handlebars->117->2089",
15954
- "default3.handlebars->117->3036"
15981
+ "default.handlebars->119->2115",
15982
+ "default.handlebars->119->3044",
15983
+ "default3.handlebars->117->2091",
15984
+ "default3.handlebars->117->3038"
15985
]
15986
},
15987
{
@@ -15980,8 +16010,8 @@
16010
"zh-chs": "更改{0}的密码",
16011
"zh-cht": "更改{0}的密碼",
16012
"xloc": [
15983
- "default.handlebars->119->3107",
15984
- "default3.handlebars->117->3095"
16013
+ "default.handlebars->119->3109",
16014
+ "default3.handlebars->117->3097"
16015
]
16016
},
16017
{
@@ -16010,8 +16040,8 @@
16040
"zh-chs": "更改{0}的真实名称",
16041
"zh-cht": "更改{0}的真實名稱",
16042
"xloc": [
16013
- "default.handlebars->119->3093",
16014
- "default3.handlebars->117->3086"
16043
+ "default.handlebars->119->3095",
16044
+ "default3.handlebars->117->3088"
16045
]
16046
},
16047
{
@@ -16188,8 +16218,8 @@
16218
"zh-chs": "更改该用户的密码",
16219
"zh-cht": "更改該用戶的密碼",
16220
"xloc": [
16191
- "default.handlebars->119->3041",
16192
- "default3.handlebars->117->3035"
16221
+ "default.handlebars->119->3043",
16222
+ "default3.handlebars->117->3037"
16223
]
16224
},
16225
{
@@ -16248,8 +16278,8 @@
16278
"zh-chs": "更改您的邮件地址。",
16279
"zh-cht": "在此處更改你的帳戶電郵地址。",
16280
"xloc": [
16251
- "default.handlebars->119->2100",
16252
- "default3.handlebars->117->2082"
16281
+ "default.handlebars->119->2102",
16282
+ "default3.handlebars->117->2084"
16283
]
16284
},
16285
{
@@ -16278,8 +16308,8 @@
16308
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
16309
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
16310
"xloc": [
16281
- "default.handlebars->119->2106",
16282
- "default3.handlebars->117->2086"
16311
+ "default.handlebars->119->2108",
16312
+ "default3.handlebars->117->2088"
16313
]
16314
},
16315
{
@@ -16308,8 +16338,8 @@
16338
"zh-chs": "更改帐户凭据",
16339
"zh-cht": "帳戶憑證已更改",
16340
"xloc": [
16311
- "default.handlebars->119->2627",
16312
- "default3.handlebars->117->2624"
16341
+ "default.handlebars->119->2629",
16342
+ "default3.handlebars->117->2626"
16343
]
16344
},
16345
{
@@ -16338,8 +16368,8 @@
16368
"zh-chs": "将帐户显示名称更改为 {0}。",
16369
"zh-cht": "將帳戶顯示名稱更改為 {0}。",
16370
"xloc": [
16341
- "default.handlebars->119->2679",
16342
- "default3.handlebars->117->2676"
16371
+ "default.handlebars->119->2681",
16372
+ "default3.handlebars->117->2678"
16373
]
16374
},
16375
{
@@ -16368,10 +16398,10 @@
16398
"zh-chs": "{1}组中的设备{0}已更改:{2}",
16399
"zh-cht": "{1}組中的設備{0}已更改:{2}",
16400
"xloc": [
16371
- "default.handlebars->119->2611",
16372
- "default.handlebars->119->2692",
16373
- "default3.handlebars->117->2608",
16374
- "default3.handlebars->117->2689"
16401
+ "default.handlebars->119->2613",
16402
+ "default.handlebars->119->2694",
16403
+ "default3.handlebars->117->2610",
16404
+ "default3.handlebars->117->2691"
16405
]
16406
},
16407
{
@@ -16400,8 +16430,8 @@
16430
"zh-chs": "语言从{1}更改为{2}",
16431
"zh-cht": "語言從{1}更改為{2}",
16432
"xloc": [
16403
- "default.handlebars->119->2555",
16404
- "default3.handlebars->117->2552"
16433
+ "default.handlebars->119->2557",
16434
+ "default3.handlebars->117->2554"
16435
]
16436
},
16437
{
@@ -16430,10 +16460,10 @@
16460
"zh-chs": "已更改{0}的用户设备权限",
16461
"zh-cht": "已更改{0}的用戶設備權限",
16462
"xloc": [
16433
- "default.handlebars->119->2613",
16434
- "default.handlebars->119->2634",
16435
- "default3.handlebars->117->2610",
16436
- "default3.handlebars->117->2631"
16463
+ "default.handlebars->119->2615",
16464
+ "default.handlebars->119->2636",
16465
+ "default3.handlebars->117->2612",
16466
+ "default3.handlebars->117->2633"
16467
]
16468
},
16469
{
@@ -16489,8 +16519,8 @@
16519
"zh-cht": "更改語言將需要刷新頁面。",
16520
"xloc": [
16521
"default-mobile.handlebars->53->314",
16492
- "default.handlebars->119->2064",
16493
- "default3.handlebars->117->2045"
16522
+ "default.handlebars->119->2066",
16523
+ "default3.handlebars->117->2047"
16524
]
16525
},
16526
{
@@ -16578,15 +16608,15 @@
16608
"default.handlebars->119->1008",
16609
"default.handlebars->119->1127",
16610
"default.handlebars->119->1152",
16581
- "default.handlebars->119->2758",
16582
- "default.handlebars->119->3037",
16583
- "default.handlebars->119->3038",
16611
+ "default.handlebars->119->2760",
16612
+ "default.handlebars->119->3039",
16613
+ "default.handlebars->119->3040",
16614
"default3.handlebars->117->1004",
16615
"default3.handlebars->117->1121",
16616
"default3.handlebars->117->1146",
16587
- "default3.handlebars->117->2755",
16588
- "default3.handlebars->117->3031",
16589
- "default3.handlebars->117->3032"
16617
+ "default3.handlebars->117->2757",
16618
+ "default3.handlebars->117->3033",
16619
+ "default3.handlebars->117->3034"
16620
]
16621
},
16622
{
@@ -16615,12 +16645,12 @@
16645
"zh-chs": "聊天并通知",
16646
"zh-cht": "聊天並通知",
16647
"xloc": [
16618
- "default-mobile.handlebars->53->1013",
16619
- "default-mobile.handlebars->53->1033",
16620
- "default.handlebars->119->2388",
16621
- "default.handlebars->119->2426",
16622
- "default3.handlebars->117->2385",
16623
- "default3.handlebars->117->2423"
16648
+ "default-mobile.handlebars->53->1015",
16649
+ "default-mobile.handlebars->53->1035",
16650
+ "default.handlebars->119->2390",
16651
+ "default.handlebars->119->2428",
16652
+ "default3.handlebars->117->2387",
16653
+ "default3.handlebars->117->2425"
16654
]
16655
},
16656
{
@@ -16649,9 +16679,9 @@
16679
"zh-chs": "聊天请求,点击这里接受。",
16680
"zh-cht": "聊天請求,點擊這裡接受。",
16681
"xloc": [
16652
- "default-mobile.handlebars->53->1065",
16653
- "default.handlebars->119->3329",
16654
- "default3.handlebars->117->3319"
16682
+ "default-mobile.handlebars->53->1067",
16683
+ "default.handlebars->119->3331",
16684
+ "default3.handlebars->117->3321"
16685
]
16686
},
16687
{
@@ -16710,8 +16740,8 @@
16740
"zh-cht": "車臣",
16741
"xloc": [
16742
"default-mobile.handlebars->53->148",
16713
- "default.handlebars->119->1898",
16714
- "default3.handlebars->117->1879",
16743
+ "default.handlebars->119->1900",
16744
+ "default3.handlebars->117->1881",
16745
"login2.handlebars->17->34"
16746
]
16747
},
@@ -16876,10 +16906,10 @@
16906
"zh-chs": "检查...",
16907
"zh-cht": "檢查...",
16908
"xloc": [
16879
- "default.handlebars->119->1864",
16880
- "default.handlebars->119->3451",
16881
- "default3.handlebars->117->1845",
16882
- "default3.handlebars->117->3441"
16909
+ "default.handlebars->119->1866",
16910
+ "default.handlebars->119->3453",
16911
+ "default3.handlebars->117->1847",
16912
+ "default3.handlebars->117->3443"
16913
]
16914
},
16915
{
@@ -16937,8 +16967,8 @@
16967
"zh-cht": "中文",
16968
"xloc": [
16969
"default-mobile.handlebars->53->149",
16940
- "default.handlebars->119->1899",
16941
- "default3.handlebars->117->1880",
16970
+ "default.handlebars->119->1901",
16971
+ "default3.handlebars->117->1882",
16972
"login2.handlebars->17->35"
16973
]
16974
},
@@ -16969,8 +16999,8 @@
16999
"zh-cht": "中文(香港)",
17000
"xloc": [
17001
"default-mobile.handlebars->53->150",
16972
- "default.handlebars->119->1900",
16973
- "default3.handlebars->117->1881",
17002
+ "default.handlebars->119->1902",
17003
+ "default3.handlebars->117->1883",
17004
"login2.handlebars->17->36"
17005
]
17006
},
@@ -17001,8 +17031,8 @@
17031
"zh-cht": "中文(中國)",
17032
"xloc": [
17033
"default-mobile.handlebars->53->151",
17004
- "default.handlebars->119->1901",
17005
- "default3.handlebars->117->1882",
17034
+ "default.handlebars->119->1903",
17035
+ "default3.handlebars->117->1884",
17036
"login2.handlebars->17->37"
17037
]
17038
},
@@ -17033,8 +17063,8 @@
17063
"zh-cht": "簡體中文",
17064
"xloc": [
17065
"default-mobile.handlebars->53->311",
17036
- "default.handlebars->119->2061",
17037
- "default3.handlebars->117->2042",
17066
+ "default.handlebars->119->2063",
17067
+ "default3.handlebars->117->2044",
17068
"login2.handlebars->17->197"
17069
]
17070
},
@@ -17065,8 +17095,8 @@
17095
"zh-cht": "中文(新加坡)",
17096
"xloc": [
17097
"default-mobile.handlebars->53->152",
17068
- "default.handlebars->119->1902",
17069
- "default3.handlebars->117->1883",
17098
+ "default.handlebars->119->1904",
17099
+ "default3.handlebars->117->1885",
17100
"login2.handlebars->17->38"
17101
]
17102
},
@@ -17097,8 +17127,8 @@
17127
"zh-cht": "中文(台灣)",
17128
"xloc": [
17129
"default-mobile.handlebars->53->153",
17100
- "default.handlebars->119->1903",
17101
- "default3.handlebars->117->1884",
17130
+ "default.handlebars->119->1905",
17131
+ "default3.handlebars->117->1886",
17132
"login2.handlebars->17->39"
17133
]
17134
},
@@ -17129,8 +17159,8 @@
17159
"zh-cht": "繁體中文",
17160
"xloc": [
17161
"default-mobile.handlebars->53->312",
17132
- "default.handlebars->119->2062",
17133
- "default3.handlebars->117->2043",
17162
+ "default.handlebars->119->2064",
17163
+ "default3.handlebars->117->2045",
17164
"login2.handlebars->17->198"
17165
]
17166
},
@@ -17192,8 +17222,8 @@
17222
"zh-cht": "楚瓦什",
17223
"xloc": [
17224
"default-mobile.handlebars->53->154",
17195
- "default.handlebars->119->1904",
17196
- "default3.handlebars->117->1885",
17225
+ "default.handlebars->119->1906",
17226
+ "default3.handlebars->117->1887",
17227
"login2.handlebars->17->40"
17228
]
17229
},
@@ -17267,14 +17297,14 @@
17297
"default.handlebars->119->1563",
17298
"default.handlebars->119->1565",
17299
"default.handlebars->119->1567",
17270
- "default.handlebars->119->2549",
17300
+ "default.handlebars->119->2551",
17301
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17302
"default.handlebars->container->column_l->p41->3->1",
17303
"default3.handlebars->117->1546",
17304
"default3.handlebars->117->1548",
17305
"default3.handlebars->117->1550",
17306
"default3.handlebars->117->1552",
17277
- "default3.handlebars->117->2546",
17307
+ "default3.handlebars->117->2548",
17308
"default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17309
"default3.handlebars->container->column_l->p41->3->3",
17310
"messenger.handlebars->xbottom->1->1->0->5",
@@ -17466,9 +17496,9 @@
17496
"zh-chs": "全部清除",
17497
"zh-cht": "全部清除",
17498
"xloc": [
17469
- "default-mobile.handlebars->53->1048",
17470
- "default.handlebars->119->3312",
17471
- "default3.handlebars->117->3302"
17499
+ "default-mobile.handlebars->53->1050",
17500
+ "default.handlebars->119->3314",
17501
+ "default3.handlebars->117->3304"
17502
]
17503
},
17504
{
@@ -17528,9 +17558,9 @@
17558
"zh-chs": "清除核心",
17559
"zh-cht": "清除核心",
17560
"xloc": [
17531
- "default-mobile.handlebars->53->949",
17532
- "default.handlebars->119->1786",
17533
- "default3.handlebars->117->1769"
17561
+ "default-mobile.handlebars->53->951",
17562
+ "default.handlebars->119->1788",
17563
+ "default3.handlebars->117->1771"
17564
]
17565
},
17566
{
@@ -17590,9 +17620,9 @@
17620
"zh-chs": "清除此通知",
17621
"zh-cht": "清除此通知",
17622
"xloc": [
17593
- "default-mobile.handlebars->53->1047",
17594
- "default.handlebars->119->3311",
17595
- "default3.handlebars->117->3301"
17623
+ "default-mobile.handlebars->53->1049",
17624
+ "default.handlebars->119->3313",
17625
+ "default3.handlebars->117->3303"
17626
]
17627
},
17628
{
@@ -17708,10 +17738,10 @@
17738
"zh-chs": "单击此处编辑设备组名称",
17739
"zh-cht": "單擊此處編輯裝置群名稱",
17740
"xloc": [
17711
- "default.handlebars->119->2183",
17712
- "default.handlebars->119->2487",
17713
- "default3.handlebars->117->2179",
17714
- "default3.handlebars->117->2484"
17741
+ "default.handlebars->119->2185",
17742
+ "default.handlebars->119->2489",
17743
+ "default3.handlebars->117->2181",
17744
+ "default3.handlebars->117->2486"
17745
]
17746
},
17747
{
@@ -17770,8 +17800,8 @@
17800
"zh-chs": "单击此处编辑用户组名称",
17801
"zh-cht": "單擊此處編輯用戶群名稱",
17802
"xloc": [
17773
- "default.handlebars->119->2888",
17774
- "default3.handlebars->117->2882"
17803
+ "default.handlebars->119->2890",
17804
+ "default3.handlebars->117->2884"
17805
]
17806
},
17807
{
@@ -17916,8 +17946,8 @@
17946
"zh-cht": "單擊確定將驗證電郵發送到:",
17947
"xloc": [
17948
"default-mobile.handlebars->53->324",
17919
- "default.handlebars->119->2097",
17920
- "default3.handlebars->117->2079"
17949
+ "default.handlebars->119->2099",
17950
+ "default3.handlebars->117->2081"
17951
]
17952
},
17953
{
@@ -18063,8 +18093,8 @@
18093
"zh-chs": "客户编号",
18094
"zh-cht": "客戶編號",
18095
"xloc": [
18066
- "default.handlebars->119->2160",
18067
- "default3.handlebars->117->2160"
18096
+ "default.handlebars->119->2162",
18097
+ "default3.handlebars->117->2162"
18098
]
18099
},
18100
{
@@ -18093,8 +18123,8 @@
18123
"zh-chs": "客户端启动的远程访问",
18124
"zh-cht": "客戶端啟動的遠程訪問",
18125
"xloc": [
18096
- "default.handlebars->119->2314",
18097
- "default3.handlebars->117->2309"
18126
+ "default.handlebars->119->2316",
18127
+ "default3.handlebars->117->2311"
18128
]
18129
},
18130
{
@@ -18123,8 +18153,8 @@
18153
"zh-chs": "客户机密",
18154
"zh-cht": "客戶機密",
18155
"xloc": [
18126
- "default.handlebars->119->2161",
18127
- "default3.handlebars->117->2161"
18156
+ "default.handlebars->119->2163",
18157
+ "default3.handlebars->117->2163"
18158
]
18159
},
18160
{
@@ -18190,7 +18220,7 @@
18220
"default.handlebars->119->1536",
18221
"default.handlebars->119->242",
18222
"default.handlebars->119->251",
18193
- "default.handlebars->119->3445",
18223
+ "default.handlebars->119->3447",
18224
"default3.handlebars->117->1452",
18225
"default3.handlebars->117->1521",
18226
"default3.handlebars->117->347",
@@ -18223,8 +18253,8 @@
18253
"zh-chs": "已关闭桌面多路复用会话 \\\"{0}\\\",{1} 秒",
18254
"zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
18255
"xloc": [
18226
- "default.handlebars->119->2699",
18227
- "default3.handlebars->117->2696"
18256
+ "default.handlebars->119->2701",
18257
+ "default3.handlebars->117->2698"
18258
]
18259
},
18260
{
@@ -18253,8 +18283,8 @@
18283
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
18284
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
18285
"xloc": [
18256
- "default.handlebars->119->2560",
18257
- "default3.handlebars->117->2557"
18286
+ "default.handlebars->119->2562",
18287
+ "default3.handlebars->117->2559"
18288
]
18289
},
18290
{
@@ -18466,13 +18496,13 @@
18496
"zh-chs": "指令",
18497
"zh-cht": "指令",
18498
"xloc": [
18469
- "default-mobile.handlebars->53->1035",
18499
+ "default-mobile.handlebars->53->1037",
18500
"default.handlebars->119->1129",
18501
"default.handlebars->119->1154",
18472
- "default.handlebars->119->2428",
18502
+ "default.handlebars->119->2430",
18503
"default3.handlebars->117->1123",
18504
"default3.handlebars->117->1148",
18475
- "default3.handlebars->117->2425"
18505
+ "default3.handlebars->117->2427"
18506
]
18507
},
18508
{
@@ -18555,10 +18585,10 @@
18585
"zh-chs": "通用设备组",
18586
"zh-cht": "通用裝置群",
18587
"xloc": [
18558
- "default.handlebars->119->2923",
18559
- "default.handlebars->119->3112",
18560
- "default3.handlebars->117->2917",
18561
- "default3.handlebars->117->3100"
18588
+ "default.handlebars->119->2925",
18589
+ "default.handlebars->119->3114",
18590
+ "default3.handlebars->117->2919",
18591
+ "default3.handlebars->117->3102"
18592
]
18593
},
18594
{
@@ -18587,10 +18617,10 @@
18617
"zh-chs": "通用设备",
18618
"zh-cht": "通用裝置",
18619
"xloc": [
18590
- "default.handlebars->119->2929",
18591
- "default.handlebars->119->3124",
18592
- "default3.handlebars->117->2923",
18593
- "default3.handlebars->117->3112"
18620
+ "default.handlebars->119->2931",
18621
+ "default.handlebars->119->3126",
18622
+ "default3.handlebars->117->2925",
18623
+ "default3.handlebars->117->3114"
18624
]
18625
},
18626
{
@@ -18719,8 +18749,8 @@
18749
"pl": "Zapisy pliku konfiguracyjnego",
18750
"uk": "Записи файлу конфігурації",
18751
"xloc": [
18722
- "default.handlebars->119->3278",
18723
- "default3.handlebars->117->3268"
18752
+ "default.handlebars->119->3280",
18753
+ "default3.handlebars->117->3270"
18754
]
18755
},
18756
{
@@ -18750,22 +18780,22 @@
18780
"zh-cht": "確認",
18781
"xloc": [
18782
"default-mobile.handlebars->53->617",
18753
- "default-mobile.handlebars->53->984",
18783
+ "default-mobile.handlebars->53->986",
18784
"default.handlebars->119->1303",
18785
"default.handlebars->119->1312",
18756
- "default.handlebars->119->2325",
18757
- "default.handlebars->119->2788",
18758
- "default.handlebars->119->2878",
18759
- "default.handlebars->119->2945",
18760
- "default.handlebars->119->3110",
18786
+ "default.handlebars->119->2327",
18787
+ "default.handlebars->119->2790",
18788
+ "default.handlebars->119->2880",
18789
+ "default.handlebars->119->2947",
18790
+ "default.handlebars->119->3112",
18791
"default.handlebars->119->768",
18792
"default3.handlebars->117->1293",
18793
"default3.handlebars->117->1301",
18764
- "default3.handlebars->117->2319",
18765
- "default3.handlebars->117->2785",
18766
- "default3.handlebars->117->2872",
18767
- "default3.handlebars->117->2939",
18768
- "default3.handlebars->117->3098",
18794
+ "default3.handlebars->117->2321",
18795
+ "default3.handlebars->117->2787",
18796
+ "default3.handlebars->117->2874",
18797
+ "default3.handlebars->117->2941",
18798
+ "default3.handlebars->117->3100",
18799
"default3.handlebars->117->764"
18800
]
18801
},
@@ -18799,7 +18829,7 @@
18829
"en": "Confirm Password",
18830
"nl": "Bevestig wachtwoord",
18831
"xloc": [
18802
- "default3.handlebars->117->2833"
18832
+ "default3.handlebars->117->2835"
18833
]
18834
},
18835
{
@@ -18922,8 +18952,8 @@
18952
"zh-chs": "确认删除选定的帐户?",
18953
"zh-cht": "確認刪除所選帳戶?",
18954
"xloc": [
18925
- "default.handlebars->119->2787",
18926
- "default3.handlebars->117->2784"
18955
+ "default.handlebars->119->2789",
18956
+ "default3.handlebars->117->2786"
18957
]
18958
},
18959
{
@@ -18978,8 +19008,8 @@
19008
"zh-chs": "确认删除选定的用户组?",
19009
"zh-cht": "確認刪除所選用戶群?",
19010
"xloc": [
18981
- "default.handlebars->119->2877",
18982
- "default3.handlebars->117->2871"
19011
+ "default.handlebars->119->2879",
19012
+ "default3.handlebars->117->2873"
19013
]
19014
},
19015
{
@@ -19008,24 +19038,24 @@
19038
"zh-chs": "确认删除用户{0}?",
19039
"zh-cht": "確認刪除用戶{0}?",
19040
"xloc": [
19011
- "default.handlebars->119->3109",
19012
- "default3.handlebars->117->3097"
19041
+ "default.handlebars->119->3111",
19042
+ "default3.handlebars->117->3099"
19043
]
19044
},
19045
{
19046
"en": "Confirm disabling 2FA Duo login security.",
19047
"nl": "Bevestig het uitschakelen van 2FA Duo inlogbeveiliging.",
19048
"xloc": [
19019
- "default.handlebars->119->1843",
19020
- "default3.handlebars->117->1825"
19049
+ "default.handlebars->119->1845",
19050
+ "default3.handlebars->117->1827"
19051
]
19052
},
19053
{
19054
"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.",
19055
"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.",
19056
"xloc": [
19027
- "default.handlebars->119->1841",
19028
- "default3.handlebars->117->1823"
19057
+ "default.handlebars->119->1843",
19058
+ "default3.handlebars->117->1825"
19059
]
19060
},
19061
{
@@ -19054,8 +19084,8 @@
19084
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
19085
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
19086
"xloc": [
19057
- "default.handlebars->119->2948",
19058
- "default3.handlebars->117->2942"
19087
+ "default.handlebars->119->2950",
19088
+ "default3.handlebars->117->2944"
19089
]
19090
},
19091
{
@@ -19084,8 +19114,8 @@
19114
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
19115
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
19116
"xloc": [
19087
- "default.handlebars->119->3141",
19088
- "default3.handlebars->117->3129"
19117
+ "default.handlebars->119->3143",
19118
+ "default3.handlebars->117->3131"
19119
]
19120
},
19121
{
@@ -19208,8 +19238,8 @@
19238
"zh-chs": "确认覆盖?",
19239
"zh-cht": "確認覆蓋?",
19240
"xloc": [
19211
- "default.handlebars->119->2541",
19212
- "default3.handlebars->117->2538"
19241
+ "default.handlebars->119->2543",
19242
+ "default3.handlebars->117->2540"
19243
]
19244
},
19245
{
@@ -19238,10 +19268,10 @@
19268
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
19269
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
19270
"xloc": [
19241
- "default.handlebars->119->2938",
19242
- "default.handlebars->119->3132",
19243
- "default3.handlebars->117->2932",
19244
- "default3.handlebars->117->3120"
19271
+ "default.handlebars->119->2940",
19272
+ "default.handlebars->119->3134",
19273
+ "default3.handlebars->117->2934",
19274
+ "default3.handlebars->117->3122"
19275
]
19276
},
19277
{
@@ -19270,10 +19300,10 @@
19300
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
19301
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
19302
"xloc": [
19273
- "default.handlebars->119->2940",
19274
- "default.handlebars->119->3145",
19275
- "default3.handlebars->117->2934",
19276
- "default3.handlebars->117->3133"
19303
+ "default.handlebars->119->2942",
19304
+ "default.handlebars->119->3147",
19305
+ "default3.handlebars->117->2936",
19306
+ "default3.handlebars->117->3135"
19307
]
19308
},
19309
{
@@ -19302,8 +19332,8 @@
19332
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
19333
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
19334
"xloc": [
19305
- "default.handlebars->119->3134",
19306
- "default3.handlebars->117->3122"
19335
+ "default.handlebars->119->3136",
19336
+ "default3.handlebars->117->3124"
19337
]
19338
},
19339
{
@@ -19332,8 +19362,8 @@
19362
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
19363
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
19364
"xloc": [
19335
- "default.handlebars->119->3137",
19336
- "default3.handlebars->117->3125"
19365
+ "default.handlebars->119->3139",
19366
+ "default3.handlebars->117->3127"
19367
]
19368
},
19369
{
@@ -19362,10 +19392,10 @@
19392
"zh-chs": "确认删除访问权限?",
19393
"zh-cht": "確認刪除訪問權限?",
19394
"xloc": [
19365
- "default.handlebars->119->3135",
19366
- "default.handlebars->119->3138",
19367
- "default3.handlebars->117->3123",
19368
- "default3.handlebars->117->3126"
19395
+ "default.handlebars->119->3137",
19396
+ "default.handlebars->119->3140",
19397
+ "default3.handlebars->117->3125",
19398
+ "default3.handlebars->117->3128"
19399
]
19400
},
19401
{
@@ -19395,8 +19425,8 @@
19425
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
19426
"xloc": [
19427
"default-mobile.handlebars->53->323",
19398
- "default.handlebars->119->1847",
19399
- "default3.handlebars->117->1829"
19428
+ "default.handlebars->119->1849",
19429
+ "default3.handlebars->117->1831"
19430
]
19431
},
19432
{
@@ -19451,8 +19481,8 @@
19481
"zh-chs": "确认删除设备共享“{0}”?",
19482
"zh-cht": "確認刪除設備共享“{0}”?",
19483
"xloc": [
19454
- "default.handlebars->119->3130",
19455
- "default3.handlebars->117->3118"
19484
+ "default.handlebars->119->3132",
19485
+ "default3.handlebars->117->3120"
19486
]
19487
},
19488
{
@@ -19533,8 +19563,8 @@
19563
"zh-chs": "确认移除推送认证设备?",
19564
"zh-cht": "確認移除推送認證設備?",
19565
"xloc": [
19536
- "default.handlebars->119->1849",
19537
- "default3.handlebars->117->1831"
19566
+ "default.handlebars->119->1851",
19567
+ "default3.handlebars->117->1833"
19568
]
19569
},
19570
{
@@ -19563,8 +19593,8 @@
19593
"zh-chs": "确认删除用户“ {0} ”的权限?",
19594
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
19595
"xloc": [
19566
- "default.handlebars->119->2440",
19567
- "default3.handlebars->117->2437"
19596
+ "default.handlebars->119->2442",
19597
+ "default3.handlebars->117->2439"
19598
]
19599
},
19600
{
@@ -19593,8 +19623,8 @@
19623
"zh-chs": "确认删除用户组“ {0} ”的权限?",
19624
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
19625
"xloc": [
19596
- "default.handlebars->119->2442",
19597
- "default3.handlebars->117->2439"
19626
+ "default.handlebars->119->2444",
19627
+ "default3.handlebars->117->2441"
19628
]
19629
},
19630
{
@@ -19653,8 +19683,8 @@
19683
"zh-chs": "确认删除此登录令牌?",
19684
"zh-cht": "確認刪除此登錄令牌?",
19685
"xloc": [
19656
- "default.handlebars->119->2153",
19657
- "default3.handlebars->117->2153"
19686
+ "default.handlebars->119->2155",
19687
+ "default3.handlebars->117->2155"
19688
]
19689
},
19690
{
@@ -19709,7 +19739,7 @@
19739
"zh-chs": "确认删除用户{0}?",
19740
"zh-cht": "確認刪除用戶{0}?",
19741
"xloc": [
19712
- "default-mobile.handlebars->53->1044"
19742
+ "default-mobile.handlebars->53->1046"
19743
]
19744
},
19745
{
@@ -19769,8 +19799,8 @@
19799
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
19800
"xloc": [
19801
"default-mobile.handlebars->53->384",
19772
- "default.handlebars->119->2544",
19773
- "default3.handlebars->117->2541"
19802
+ "default.handlebars->119->2546",
19803
+ "default3.handlebars->117->2543"
19804
]
19805
},
19806
{
@@ -19803,12 +19833,12 @@
19833
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
19834
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
19835
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
19806
- "default.handlebars->119->2223",
19836
+ "default.handlebars->119->2225",
19837
"default.handlebars->119->965",
19838
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
19839
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
19840
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
19811
- "default3.handlebars->117->2219",
19841
+ "default3.handlebars->117->2221",
19842
"default3.handlebars->117->961",
19843
"default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->connectbutton1span->connectbutton1",
19844
"default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->connectbutton2",
@@ -19910,8 +19940,8 @@
19940
"zh-chs": "连接到服务器",
19941
"zh-cht": "連接到伺服器",
19942
"xloc": [
19913
- "default.handlebars->119->2318",
19914
- "default3.handlebars->117->2312"
19943
+ "default.handlebars->119->2320",
19944
+ "default3.handlebars->117->2314"
19945
]
19946
},
19947
{
@@ -20185,8 +20215,8 @@
20215
"zh-chs": "已连接的英特尔®AMT",
20216
"zh-cht": "已連接的Intel® AMT",
20217
"xloc": [
20188
- "default.handlebars->119->3370",
20189
- "default3.handlebars->117->3360"
20218
+ "default.handlebars->119->3372",
20219
+ "default3.handlebars->117->3362"
20220
]
20221
},
20222
{
@@ -20215,8 +20245,8 @@
20245
"zh-chs": "已连接的英特尔®AMT CIRA",
20246
"zh-cht": "已連接的Intel® AMT CIRA",
20247
"xloc": [
20218
- "default.handlebars->119->3371",
20219
- "default3.handlebars->117->3361"
20248
+ "default.handlebars->119->3373",
20249
+ "default3.handlebars->117->3363"
20250
]
20251
},
20252
{
@@ -20245,8 +20275,8 @@
20275
"zh-chs": "已连接的用户",
20276
"zh-cht": "已连接的用户",
20277
"xloc": [
20248
- "default.handlebars->119->3376",
20249
- "default3.handlebars->117->3366"
20278
+ "default.handlebars->119->3378",
20279
+ "default3.handlebars->117->3368"
20280
]
20281
},
20282
{
@@ -20519,8 +20549,8 @@
20549
"zh-chs": "连接数量",
20550
"zh-cht": "連接數量",
20551
"xloc": [
20522
- "default.handlebars->119->3402",
20523
- "default3.handlebars->117->3392"
20552
+ "default.handlebars->119->3404",
20553
+ "default3.handlebars->117->3394"
20554
]
20555
},
20556
{
@@ -20590,8 +20620,8 @@
20620
"zh-chs": "连接转发器",
20621
"zh-cht": "連接轉發器",
20622
"xloc": [
20593
- "default.handlebars->119->3439",
20594
- "default3.handlebars->117->3429"
20623
+ "default.handlebars->119->3441",
20624
+ "default3.handlebars->117->3431"
20625
]
20626
},
20627
{
@@ -20680,11 +20710,11 @@
20710
"zh-cht": "連接性",
20711
"xloc": [
20712
"default-mobile.handlebars->53->522",
20683
- "default.handlebars->119->2494",
20713
+ "default.handlebars->119->2496",
20714
"default.handlebars->119->396",
20715
"default.handlebars->119->982",
20716
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1",
20687
- "default3.handlebars->117->2491",
20717
+ "default3.handlebars->117->2493",
20718
"default3.handlebars->117->392",
20719
"default3.handlebars->117->978",
20720
"default3.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
@@ -20716,8 +20746,8 @@
20746
"zh-chs": "同意",
20747
"zh-cht": "同意",
20748
"xloc": [
20719
- "default.handlebars->119->2719",
20720
- "default3.handlebars->117->2716"
20749
+ "default.handlebars->119->2721",
20750
+ "default3.handlebars->117->2718"
20751
]
20752
},
20753
{
@@ -20878,8 +20908,8 @@
20908
"zh-chs": "Cookie编码器",
20909
"zh-cht": "Cookie編碼器",
20910
"xloc": [
20881
- "default.handlebars->119->3422",
20882
- "default3.handlebars->117->3412"
20911
+ "default.handlebars->119->3424",
20912
+ "default3.handlebars->117->3414"
20913
]
20914
},
20915
{
@@ -21209,14 +21239,14 @@
21239
"zh-chs": "复制连结到剪贴板",
21240
"zh-cht": "複製連結到剪貼板",
21241
"xloc": [
21212
- "default.handlebars->119->2505",
21213
- "default.handlebars->119->2529",
21242
+ "default.handlebars->119->2507",
21243
+ "default.handlebars->119->2531",
21244
"default.handlebars->119->326",
21245
"default.handlebars->119->348",
21246
"default.handlebars->119->350",
21247
"default.handlebars->119->600",
21218
- "default3.handlebars->117->2502",
21219
- "default3.handlebars->117->2526",
21248
+ "default3.handlebars->117->2504",
21249
+ "default3.handlebars->117->2528",
21250
"default3.handlebars->117->321",
21251
"default3.handlebars->117->343",
21252
"default3.handlebars->117->345",
@@ -21379,8 +21409,8 @@
21409
"zh-chs": "复制:“{0}”到“{1}”",
21410
"zh-cht": "複製:“{0}”到“{1}”",
21411
"xloc": [
21382
- "default.handlebars->119->2603",
21383
- "default3.handlebars->117->2600"
21412
+ "default.handlebars->119->2605",
21413
+ "default3.handlebars->117->2602"
21414
]
21415
},
21416
{
@@ -21589,8 +21619,8 @@
21619
"zh-chs": "核心服务器",
21620
"zh-cht": "核心伺服器",
21621
"xloc": [
21592
- "default.handlebars->119->3421",
21593
- "default3.handlebars->117->3411"
21622
+ "default.handlebars->119->3423",
21623
+ "default3.handlebars->117->3413"
21624
]
21625
},
21626
{
@@ -21620,8 +21650,8 @@
21650
"zh-cht": "科西嘉文",
21651
"xloc": [
21652
"default-mobile.handlebars->53->155",
21623
- "default.handlebars->119->1905",
21624
- "default3.handlebars->117->1886",
21653
+ "default.handlebars->119->1907",
21654
+ "default3.handlebars->117->1888",
21655
"login2.handlebars->17->41"
21656
]
21657
},
@@ -21629,7 +21659,7 @@
21659
"en": "Cosmo",
21660
"nl": "Cosmo",
21661
"xloc": [
21632
- "default3.handlebars->117->2092"
21662
+ "default3.handlebars->117->2094"
21663
]
21664
},
21665
{
@@ -21684,8 +21714,8 @@
21714
"zh-chs": "创建帐号",
21715
"zh-cht": "創建帳號",
21716
"xloc": [
21687
- "default.handlebars->119->2845",
21688
- "default3.handlebars->117->2841",
21717
+ "default.handlebars->119->2847",
21718
+ "default3.handlebars->117->2843",
21719
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
21720
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
21721
"login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -21772,9 +21802,9 @@
21802
"zh-chs": "创建登录令牌",
21803
"zh-cht": "創建登錄令牌",
21804
"xloc": [
21775
- "default.handlebars->119->2090",
21805
+ "default.handlebars->119->2092",
21806
"default.handlebars->119->351",
21777
- "default3.handlebars->117->2072"
21807
+ "default3.handlebars->117->2074"
21808
]
21809
},
21810
{
@@ -21803,8 +21833,8 @@
21833
"zh-chs": "创建用户组",
21834
"zh-cht": "創建用戶群",
21835
"xloc": [
21806
- "default.handlebars->119->2885",
21807
- "default3.handlebars->117->2879"
21836
+ "default.handlebars->119->2887",
21837
+ "default3.handlebars->117->2881"
21838
]
21839
},
21840
{
@@ -21863,8 +21893,8 @@
21893
"zh-chs": "使用以下选项创建一个新的设备组。",
21894
"zh-cht": "使用以下選項創建一個新的裝置群。",
21895
"xloc": [
21866
- "default.handlebars->119->2120",
21867
- "default3.handlebars->117->2120"
21896
+ "default.handlebars->119->2122",
21897
+ "default3.handlebars->117->2122"
21898
]
21899
},
21900
{
@@ -21923,8 +21953,8 @@
21953
"zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。",
21954
"zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
21955
"xloc": [
21926
- "default.handlebars->119->2070",
21927
- "default3.handlebars->117->2051"
21956
+ "default.handlebars->119->2072",
21957
+ "default3.handlebars->117->2053"
21958
]
21959
},
21960
{
@@ -21983,8 +22013,8 @@
22013
"zh-chs": "创建文件夹:“{0}”",
22014
"zh-cht": "創建文件夾:“{0}”",
22015
"xloc": [
21986
- "default.handlebars->119->2596",
21987
- "default3.handlebars->117->2593"
22016
+ "default.handlebars->119->2598",
22017
+ "default3.handlebars->117->2595"
22018
]
22019
},
22020
{
@@ -22066,8 +22096,8 @@
22096
"nl": "Maak meerdere accounts tegelijk aan door een JSON of een CSV bestand te importeren",
22097
"uk": "Створіть кілька акаунтів одночасно, імпортувавши файл JSON або CSV",
22098
"xloc": [
22069
- "default.handlebars->119->2802",
22070
- "default3.handlebars->117->2798"
22099
+ "default.handlebars->119->2804",
22100
+ "default3.handlebars->117->2800"
22101
]
22102
},
22103
{
@@ -22127,8 +22157,8 @@
22157
"zh-chs": "创建的设备组:{0}",
22158
"zh-cht": "創建的設備組:{0}",
22159
"xloc": [
22130
- "default.handlebars->119->2607",
22131
- "default3.handlebars->117->2604"
22160
+ "default.handlebars->119->2609",
22161
+ "default3.handlebars->117->2606"
22162
]
22163
},
22164
{
@@ -22239,8 +22269,8 @@
22269
"zh-chs": "创建",
22270
"zh-cht": "創建",
22271
"xloc": [
22242
- "default.handlebars->119->2993",
22243
- "default3.handlebars->117->2987"
22272
+ "default.handlebars->119->2995",
22273
+ "default3.handlebars->117->2989"
22274
]
22275
},
22276
{
@@ -22269,8 +22299,8 @@
22299
"zh-chs": "创建时间",
22300
"zh-cht": "創作時間",
22301
"xloc": [
22272
- "default.handlebars->119->2201",
22273
- "default3.handlebars->117->2197"
22302
+ "default.handlebars->119->2203",
22303
+ "default3.handlebars->117->2199"
22304
]
22305
},
22306
{
@@ -22330,10 +22360,10 @@
22360
"zh-chs": "创建者",
22361
"zh-cht": "創作者",
22362
"xloc": [
22333
- "default.handlebars->119->2199",
22334
- "default.handlebars->119->2200",
22335
- "default3.handlebars->117->2195",
22336
- "default3.handlebars->117->2196"
22363
+ "default.handlebars->119->2201",
22364
+ "default.handlebars->119->2202",
22365
+ "default3.handlebars->117->2197",
22366
+ "default3.handlebars->117->2198"
22367
]
22368
},
22369
{
@@ -22364,10 +22394,10 @@
22394
"xloc": [
22395
"default-mobile.handlebars->53->534",
22396
"default.handlebars->119->1378",
22367
- "default.handlebars->119->2158",
22397
+ "default.handlebars->119->2160",
22398
"default.handlebars->119->994",
22399
"default3.handlebars->117->1364",
22370
- "default3.handlebars->117->2158",
22400
+ "default3.handlebars->117->2160",
22401
"default3.handlebars->117->990"
22402
]
22403
},
@@ -22398,8 +22428,8 @@
22428
"zh-cht": "克里語",
22429
"xloc": [
22430
"default-mobile.handlebars->53->156",
22401
- "default.handlebars->119->1906",
22402
- "default3.handlebars->117->1887",
22431
+ "default.handlebars->119->1908",
22432
+ "default3.handlebars->117->1889",
22433
"login2.handlebars->17->42"
22434
]
22435
},
@@ -22430,8 +22460,8 @@
22460
"zh-cht": "克羅地亞文",
22461
"xloc": [
22462
"default-mobile.handlebars->53->157",
22433
- "default.handlebars->119->1907",
22434
- "default3.handlebars->117->1888",
22463
+ "default.handlebars->119->1909",
22464
+ "default3.handlebars->117->1890",
22465
"login2.handlebars->17->43"
22466
]
22467
},
@@ -22741,9 +22771,9 @@
22771
"zh-chs": "当前密码不正确。",
22772
"zh-cht": "當前密碼不正確。",
22773
"xloc": [
22744
- "default-mobile.handlebars->53->1075",
22745
- "default.handlebars->119->3339",
22746
- "default3.handlebars->117->3329"
22774
+ "default-mobile.handlebars->53->1077",
22775
+ "default.handlebars->119->3341",
22776
+ "default3.handlebars->117->3331"
22777
]
22778
},
22779
{
@@ -22848,7 +22878,7 @@
22878
"en": "Cyborg",
22879
"nl": "Cyborg",
22880
"xloc": [
22851
- "default3.handlebars->117->2093"
22881
+ "default3.handlebars->117->2095"
22882
]
22883
},
22884
{
@@ -22906,8 +22936,8 @@
22936
"zh-cht": "捷克文",
22937
"xloc": [
22938
"default-mobile.handlebars->53->158",
22909
- "default.handlebars->119->1908",
22910
- "default3.handlebars->117->1889",
22939
+ "default.handlebars->119->1910",
22940
+ "default3.handlebars->117->1891",
22941
"login2.handlebars->17->44"
22942
]
22943
},
@@ -23011,8 +23041,8 @@
23041
"zh-cht": "丹麥文",
23042
"xloc": [
23043
"default-mobile.handlebars->53->159",
23014
- "default.handlebars->119->1909",
23015
- "default3.handlebars->117->1890",
23044
+ "default.handlebars->119->1911",
23045
+ "default3.handlebars->117->1892",
23046
"login2.handlebars->17->45"
23047
]
23048
},
@@ -23051,7 +23081,7 @@
23081
"en": "Darkly",
23082
"nl": "Donker",
23083
"xloc": [
23054
- "default3.handlebars->117->2094"
23084
+ "default3.handlebars->117->2096"
23085
]
23086
},
23087
{
@@ -23097,8 +23127,8 @@
23127
"pl": "Zapisy Bazy Danych",
23128
"uk": "Записи Бази Даних",
23129
"xloc": [
23100
- "default.handlebars->119->3198",
23101
- "default3.handlebars->117->3188"
23130
+ "default.handlebars->119->3200",
23131
+ "default3.handlebars->117->3190"
23132
]
23133
},
23134
{
@@ -23128,8 +23158,8 @@
23158
"zh-cht": "日期和時間",
23159
"xloc": [
23160
"default-mobile.handlebars->53->317",
23131
- "default.handlebars->119->2067",
23132
- "default3.handlebars->117->2048"
23161
+ "default.handlebars->119->2069",
23162
+ "default3.handlebars->117->2050"
23163
]
23164
},
23165
{
@@ -23160,11 +23190,11 @@
23190
"xloc": [
23191
"default-mobile.handlebars->53->607",
23192
"default.handlebars->119->1287",
23163
- "default.handlebars->119->3202",
23164
- "default.handlebars->119->3205",
23193
+ "default.handlebars->119->3204",
23194
+ "default.handlebars->119->3207",
23195
"default3.handlebars->117->1277",
23166
- "default3.handlebars->117->3192",
23167
- "default3.handlebars->117->3195"
23196
+ "default3.handlebars->117->3194",
23197
+ "default3.handlebars->117->3197"
23198
]
23199
},
23200
{
@@ -23193,10 +23223,10 @@
23223
"zh-chs": "停用",
23224
"zh-cht": "停用",
23225
"xloc": [
23196
- "default.handlebars->119->2233",
23197
- "default.handlebars->119->2297",
23198
- "default3.handlebars->117->2229",
23199
- "default3.handlebars->117->2291"
23226
+ "default.handlebars->119->2235",
23227
+ "default.handlebars->119->2299",
23228
+ "default3.handlebars->117->2231",
23229
+ "default3.handlebars->117->2293"
23230
]
23231
},
23232
{
@@ -23225,8 +23255,8 @@
23255
"zh-chs": "如果设置停用CCM",
23256
"zh-cht": "如果設置停用CCM",
23257
"xloc": [
23228
- "default.handlebars->119->2309",
23229
- "default3.handlebars->117->2303"
23258
+ "default.handlebars->119->2311",
23259
+ "default3.handlebars->117->2305"
23260
]
23261
},
23262
{
@@ -23312,15 +23342,15 @@
23342
"zh-chs": "默认",
23343
"zh-cht": "默認",
23344
"xloc": [
23315
- "default.handlebars->119->2832",
23316
- "default.handlebars->119->2881",
23317
- "default.handlebars->119->2892",
23318
- "default.handlebars->119->2966",
23319
- "default3.handlebars->117->2090",
23320
- "default3.handlebars->117->2828",
23321
- "default3.handlebars->117->2875",
23322
- "default3.handlebars->117->2886",
23323
- "default3.handlebars->117->2960"
23345
+ "default.handlebars->119->2834",
23346
+ "default.handlebars->119->2883",
23347
+ "default.handlebars->119->2894",
23348
+ "default.handlebars->119->2968",
23349
+ "default3.handlebars->117->2092",
23350
+ "default3.handlebars->117->2830",
23351
+ "default3.handlebars->117->2877",
23352
+ "default3.handlebars->117->2888",
23353
+ "default3.handlebars->117->2962"
23354
]
23355
},
23356
{
@@ -23387,14 +23417,14 @@
23417
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
23418
"default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
23419
"default.handlebars->119->1546",
23390
- "default.handlebars->119->2536",
23420
+ "default.handlebars->119->2538",
23421
"default.handlebars->119->842",
23422
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
23423
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
23424
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
23425
"default.handlebars->filesContextMenu->5",
23426
"default3.handlebars->117->1531",
23397
- "default3.handlebars->117->2533",
23427
+ "default3.handlebars->117->2535",
23428
"default3.handlebars->117->838",
23429
"default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
23430
"default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -23438,8 +23468,8 @@
23468
"zh-cht": "刪除帳戶",
23469
"xloc": [
23470
"default-mobile.handlebars->53->333",
23441
- "default.handlebars->119->2105",
23442
- "default3.handlebars->117->2085"
23471
+ "default.handlebars->119->2107",
23472
+ "default3.handlebars->117->2087"
23473
]
23474
},
23475
{
@@ -23468,7 +23498,7 @@
23498
"zh-chs": "删除帐户",
23499
"zh-cht": "刪除帳戶",
23500
"xloc": [
23471
- "default.handlebars->119->2789"
23501
+ "default.handlebars->119->2791"
23502
]
23503
},
23504
{
@@ -23558,12 +23588,12 @@
23588
"zh-chs": "删除群组",
23589
"zh-cht": "刪除群組",
23590
"xloc": [
23561
- "default-mobile.handlebars->53->982",
23562
- "default-mobile.handlebars->53->985",
23563
- "default.handlebars->119->2285",
23564
- "default.handlebars->119->2326",
23565
- "default3.handlebars->117->2281",
23566
- "default3.handlebars->117->2320"
23591
+ "default-mobile.handlebars->53->984",
23592
+ "default-mobile.handlebars->53->987",
23593
+ "default.handlebars->119->2287",
23594
+ "default.handlebars->119->2328",
23595
+ "default3.handlebars->117->2283",
23596
+ "default3.handlebars->117->2322"
23597
]
23598
},
23599
{
@@ -23649,8 +23679,8 @@
23679
"zh-chs": "删除用户",
23680
"zh-cht": "刪除用戶",
23681
"xloc": [
23652
- "default.handlebars->119->3040",
23653
- "default3.handlebars->117->3034"
23682
+ "default.handlebars->119->3042",
23683
+ "default3.handlebars->117->3036"
23684
]
23685
},
23686
{
@@ -23679,10 +23709,10 @@
23709
"zh-chs": "删除用户群组",
23710
"zh-cht": "刪除用戶群組",
23711
"xloc": [
23682
- "default.handlebars->119->2934",
23683
- "default.handlebars->119->2946",
23684
- "default3.handlebars->117->2928",
23685
- "default3.handlebars->117->2940"
23712
+ "default.handlebars->119->2936",
23713
+ "default.handlebars->119->2948",
23714
+ "default3.handlebars->117->2930",
23715
+ "default3.handlebars->117->2942"
23716
]
23717
},
23718
{
@@ -23711,8 +23741,8 @@
23741
"zh-chs": "删除用户群组",
23742
"zh-cht": "刪除用戶群組",
23743
"xloc": [
23714
- "default.handlebars->119->2879",
23715
- "default3.handlebars->117->2873"
23744
+ "default.handlebars->119->2881",
23745
+ "default3.handlebars->117->2875"
23746
]
23747
},
23748
{
@@ -23741,8 +23771,8 @@
23771
"zh-chs": "删除用户{0}",
23772
"zh-cht": "刪除用戶{0}",
23773
"xloc": [
23744
- "default.handlebars->119->3108",
23745
- "default3.handlebars->117->3096"
23774
+ "default.handlebars->119->3110",
23775
+ "default3.handlebars->117->3098"
23776
]
23777
},
23778
{
@@ -23772,9 +23802,9 @@
23802
"zh-cht": "刪除帳戶",
23803
"xloc": [
23804
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->p2AccountPassActions->5->0",
23775
- "default.handlebars->119->2785",
23805
+ "default.handlebars->119->2787",
23806
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7",
23777
- "default3.handlebars->117->2782",
23807
+ "default3.handlebars->117->2784",
23808
"default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
23809
]
23810
},
@@ -23834,8 +23864,8 @@
23864
"zh-chs": "删除群组",
23865
"zh-cht": "刪除群組",
23866
"xloc": [
23837
- "default.handlebars->119->2875",
23838
- "default3.handlebars->117->2869"
23867
+ "default.handlebars->119->2877",
23868
+ "default3.handlebars->117->2871"
23869
]
23870
},
23871
{
@@ -23894,8 +23924,8 @@
23924
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
23925
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
23926
"xloc": [
23897
- "default.handlebars->119->2598",
23898
- "default3.handlebars->117->2595"
23927
+ "default.handlebars->119->2600",
23928
+ "default3.handlebars->117->2597"
23929
]
23930
},
23931
{
@@ -23927,9 +23957,9 @@
23957
"default-mobile.handlebars->53->381",
23958
"default-mobile.handlebars->53->709",
23959
"default.handlebars->119->1548",
23930
- "default.handlebars->119->2538",
23960
+ "default.handlebars->119->2540",
23961
"default3.handlebars->117->1533",
23932
- "default3.handlebars->117->2535",
23962
+ "default3.handlebars->117->2537",
23963
"sharing-mobile.handlebars->53->87",
23964
"sharing.handlebars->47->63"
23965
]
@@ -23960,8 +23990,8 @@
23990
"zh-chs": "删除用户群组{0}?",
23991
"zh-cht": "刪除用戶群組{0}?",
23992
"xloc": [
23963
- "default.handlebars->119->2944",
23964
- "default3.handlebars->117->2938"
23993
+ "default.handlebars->119->2946",
23994
+ "default3.handlebars->117->2940"
23995
]
23996
},
23997
{
@@ -23993,9 +24023,9 @@
24023
"default-mobile.handlebars->53->380",
24024
"default-mobile.handlebars->53->708",
24025
"default.handlebars->119->1547",
23996
- "default.handlebars->119->2537",
24026
+ "default.handlebars->119->2539",
24027
"default3.handlebars->117->1532",
23998
- "default3.handlebars->117->2534",
24028
+ "default3.handlebars->117->2536",
24029
"sharing-mobile.handlebars->53->86",
24030
"sharing.handlebars->47->62"
24031
]
@@ -24055,8 +24085,8 @@
24085
"zh-chs": "删除:“{0}”",
24086
"zh-cht": "刪除:“{0}”",
24087
"xloc": [
24058
- "default.handlebars->119->2597",
24059
- "default3.handlebars->117->2594"
24088
+ "default.handlebars->119->2599",
24089
+ "default3.handlebars->117->2596"
24090
]
24091
},
24092
{
@@ -24085,8 +24115,8 @@
24115
"zh-chs": "删除:“{0}”,{1}个元素已删除",
24116
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
24117
"xloc": [
24088
- "default.handlebars->119->2599",
24089
- "default3.handlebars->117->2596"
24118
+ "default.handlebars->119->2601",
24119
+ "default3.handlebars->117->2598"
24120
]
24121
},
24122
{
@@ -24135,8 +24165,8 @@
24165
"pl": "Odmówiono zalogowania użytkownika z {0}, {1}, {2}",
24166
"uk": "Відмовлено у вході користувачу з {0}, {1}, {2}",
24167
"xloc": [
24138
- "default.handlebars->119->2707",
24139
- "default3.handlebars->117->2704"
24168
+ "default.handlebars->119->2709",
24169
+ "default3.handlebars->117->2706"
24170
]
24171
},
24172
{
@@ -24308,21 +24338,21 @@
24338
"default-mobile.handlebars->53->625",
24339
"default-mobile.handlebars->53->735",
24340
"default-mobile.handlebars->53->793",
24311
- "default-mobile.handlebars->53->968",
24312
- "default-mobile.handlebars->53->991",
24341
+ "default-mobile.handlebars->53->970",
24342
+ "default-mobile.handlebars->53->993",
24343
"default.handlebars->119->1357",
24344
"default.handlebars->119->1591",
24345
"default.handlebars->119->1619",
24346
"default.handlebars->119->1629",
24347
"default.handlebars->119->169",
24318
- "default.handlebars->119->2130",
24319
- "default.handlebars->119->2192",
24320
- "default.handlebars->119->2332",
24321
- "default.handlebars->119->2717",
24322
- "default.handlebars->119->2884",
24323
- "default.handlebars->119->2895",
24324
- "default.handlebars->119->2896",
24325
- "default.handlebars->119->2942",
24348
+ "default.handlebars->119->2132",
24349
+ "default.handlebars->119->2194",
24350
+ "default.handlebars->119->2334",
24351
+ "default.handlebars->119->2719",
24352
+ "default.handlebars->119->2886",
24353
+ "default.handlebars->119->2897",
24354
+ "default.handlebars->119->2898",
24355
+ "default.handlebars->119->2944",
24356
"default.handlebars->119->883",
24357
"default.handlebars->119->884",
24358
"default.handlebars->container->column_l->p42->p42tbl->1->0->3",
@@ -24331,15 +24361,15 @@
24361
"default3.handlebars->117->1604",
24362
"default3.handlebars->117->1614",
24363
"default3.handlebars->117->167",
24334
- "default3.handlebars->117->2130",
24335
- "default3.handlebars->117->2188",
24336
- "default3.handlebars->117->2328",
24337
- "default3.handlebars->117->2329",
24338
- "default3.handlebars->117->2714",
24339
- "default3.handlebars->117->2878",
24340
- "default3.handlebars->117->2889",
24341
- "default3.handlebars->117->2890",
24342
- "default3.handlebars->117->2936",
24364
+ "default3.handlebars->117->2132",
24365
+ "default3.handlebars->117->2190",
24366
+ "default3.handlebars->117->2330",
24367
+ "default3.handlebars->117->2331",
24368
+ "default3.handlebars->117->2716",
24369
+ "default3.handlebars->117->2880",
24370
+ "default3.handlebars->117->2891",
24371
+ "default3.handlebars->117->2892",
24372
+ "default3.handlebars->117->2938",
24373
"default3.handlebars->117->879",
24374
"default3.handlebars->117->880",
24375
"default3.handlebars->container->column_l->p42->p42tbl->1->0->7"
@@ -24429,24 +24459,24 @@
24459
"default.handlebars->119->1078",
24460
"default.handlebars->119->1192",
24461
"default.handlebars->119->1476",
24432
- "default.handlebars->119->2263",
24433
- "default.handlebars->119->2338",
24434
- "default.handlebars->119->3171",
24435
- "default.handlebars->119->3237",
24436
- "default.handlebars->119->3290",
24437
- "default.handlebars->119->3396",
24462
+ "default.handlebars->119->2265",
24463
+ "default.handlebars->119->2340",
24464
+ "default.handlebars->119->3173",
24465
+ "default.handlebars->119->3239",
24466
+ "default.handlebars->119->3292",
24467
+ "default.handlebars->119->3398",
24468
"default.handlebars->119->848",
24469
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
24470
"default.handlebars->contextMenu->cxdesktop",
24471
"default3.handlebars->117->1074",
24472
"default3.handlebars->117->1186",
24473
"default3.handlebars->117->1461",
24444
- "default3.handlebars->117->2259",
24445
- "default3.handlebars->117->2335",
24446
- "default3.handlebars->117->3161",
24447
- "default3.handlebars->117->3227",
24448
- "default3.handlebars->117->3280",
24449
- "default3.handlebars->117->3386",
24474
+ "default3.handlebars->117->2261",
24475
+ "default3.handlebars->117->2337",
24476
+ "default3.handlebars->117->3163",
24477
+ "default3.handlebars->117->3229",
24478
+ "default3.handlebars->117->3282",
24479
+ "default3.handlebars->117->3388",
24480
"default3.handlebars->117->844",
24481
"default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
24482
"default3.handlebars->contextMenu->cxdesktop",
@@ -24483,10 +24513,10 @@
24513
"xloc": [
24514
"default.handlebars->119->1082",
24515
"default.handlebars->119->1195",
24486
- "default.handlebars->119->2267",
24516
+ "default.handlebars->119->2269",
24517
"default3.handlebars->117->1078",
24518
"default3.handlebars->117->1189",
24489
- "default3.handlebars->117->2263"
24519
+ "default3.handlebars->117->2265"
24520
]
24521
},
24522
{
@@ -24516,9 +24546,9 @@
24546
"zh-cht": "桌面+終端",
24547
"xloc": [
24548
"default.handlebars->119->1079",
24519
- "default.handlebars->119->2264",
24549
+ "default.handlebars->119->2266",
24550
"default3.handlebars->117->1075",
24521
- "default3.handlebars->117->2260"
24551
+ "default3.handlebars->117->2262"
24552
]
24553
},
24554
{
@@ -24549,10 +24579,10 @@
24579
"xloc": [
24580
"default.handlebars->119->1083",
24581
"default.handlebars->119->1197",
24552
- "default.handlebars->119->2268",
24582
+ "default.handlebars->119->2270",
24583
"default3.handlebars->117->1079",
24584
"default3.handlebars->117->1191",
24555
- "default3.handlebars->117->2264"
24585
+ "default3.handlebars->117->2266"
24586
]
24587
},
24588
{
@@ -24611,8 +24641,8 @@
24641
"zh-chs": "桌面复用",
24642
"zh-cht": "桌面多路復用",
24643
"xloc": [
24614
- "default.handlebars->119->3401",
24615
- "default3.handlebars->117->3391"
24644
+ "default.handlebars->119->3403",
24645
+ "default3.handlebars->117->3393"
24646
]
24647
},
24648
{
@@ -24641,13 +24671,13 @@
24671
"zh-chs": "桌面通知",
24672
"zh-cht": "桌面通知",
24673
"xloc": [
24644
- "default.handlebars->119->2214",
24645
- "default.handlebars->119->2903",
24646
- "default.handlebars->119->3008",
24674
+ "default.handlebars->119->2216",
24675
+ "default.handlebars->119->2905",
24676
+ "default.handlebars->119->3010",
24677
"default.handlebars->119->956",
24648
- "default3.handlebars->117->2210",
24649
- "default3.handlebars->117->2897",
24650
- "default3.handlebars->117->3002",
24678
+ "default3.handlebars->117->2212",
24679
+ "default3.handlebars->117->2899",
24680
+ "default3.handlebars->117->3004",
24681
"default3.handlebars->117->952"
24682
]
24683
},
@@ -24677,13 +24707,13 @@
24707
"zh-chs": "桌面提示",
24708
"zh-cht": "桌面提示",
24709
"xloc": [
24680
- "default.handlebars->119->2213",
24681
- "default.handlebars->119->2902",
24682
- "default.handlebars->119->3007",
24710
+ "default.handlebars->119->2215",
24711
+ "default.handlebars->119->2904",
24712
+ "default.handlebars->119->3009",
24713
"default.handlebars->119->955",
24684
- "default3.handlebars->117->2209",
24685
- "default3.handlebars->117->2896",
24686
- "default3.handlebars->117->3001",
24714
+ "default3.handlebars->117->2211",
24715
+ "default3.handlebars->117->2898",
24716
+ "default3.handlebars->117->3003",
24717
"default3.handlebars->117->951"
24718
]
24719
},
@@ -24713,13 +24743,13 @@
24743
"zh-chs": "桌面提示+工具栏",
24744
"zh-cht": "桌面提示+工具欄",
24745
"xloc": [
24716
- "default.handlebars->119->2211",
24717
- "default.handlebars->119->2900",
24718
- "default.handlebars->119->3005",
24746
+ "default.handlebars->119->2213",
24747
+ "default.handlebars->119->2902",
24748
+ "default.handlebars->119->3007",
24749
"default.handlebars->119->953",
24720
- "default3.handlebars->117->2207",
24721
- "default3.handlebars->117->2894",
24722
- "default3.handlebars->117->2999",
24750
+ "default3.handlebars->117->2209",
24751
+ "default3.handlebars->117->2896",
24752
+ "default3.handlebars->117->3001",
24753
"default3.handlebars->117->949"
24754
]
24755
},
@@ -24749,8 +24779,8 @@
24779
"zh-chs": "桌面会话",
24780
"zh-cht": "桌面會話",
24781
"xloc": [
24752
- "default.handlebars->119->3161",
24753
- "default3.handlebars->117->3151"
24782
+ "default.handlebars->119->3163",
24783
+ "default3.handlebars->117->3153"
24784
]
24785
},
24786
{
@@ -24866,13 +24896,13 @@
24896
"zh-chs": "桌面工具栏",
24897
"zh-cht": "桌面工具欄",
24898
"xloc": [
24869
- "default.handlebars->119->2212",
24870
- "default.handlebars->119->2901",
24871
- "default.handlebars->119->3006",
24899
+ "default.handlebars->119->2214",
24900
+ "default.handlebars->119->2903",
24901
+ "default.handlebars->119->3008",
24902
"default.handlebars->119->954",
24873
- "default3.handlebars->117->2208",
24874
- "default3.handlebars->117->2895",
24875
- "default3.handlebars->117->3000",
24903
+ "default3.handlebars->117->2210",
24904
+ "default3.handlebars->117->2897",
24905
+ "default3.handlebars->117->3002",
24906
"default3.handlebars->117->950"
24907
]
24908
},
@@ -24902,8 +24932,8 @@
24932
"zh-chs": "仅桌面视图",
24933
"zh-cht": "僅桌面視圖",
24934
"xloc": [
24905
- "default.handlebars->119->2981",
24906
- "default3.handlebars->117->2975"
24935
+ "default.handlebars->119->2983",
24936
+ "default3.handlebars->117->2977"
24937
]
24938
},
24939
{
@@ -25059,12 +25089,12 @@
25089
"default-mobile.handlebars->53->564",
25090
"default.handlebars->119->1132",
25091
"default.handlebars->119->1157",
25062
- "default.handlebars->119->2431",
25092
+ "default.handlebars->119->2433",
25093
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
25094
"default.handlebars->contextMenu->cxdetails",
25095
"default3.handlebars->117->1126",
25096
"default3.handlebars->117->1151",
25067
- "default3.handlebars->117->2428",
25097
+ "default3.handlebars->117->2430",
25098
"default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
25099
"default3.handlebars->contextMenu->cxdetails"
25100
]
@@ -25127,20 +25157,20 @@
25157
"xloc": [
25158
"default-mobile.handlebars->53->787",
25159
"default.handlebars->119->1613",
25130
- "default.handlebars->119->1853",
25131
- "default.handlebars->119->2368",
25160
+ "default.handlebars->119->1855",
25161
+ "default.handlebars->119->2370",
25162
"default.handlebars->119->296",
25133
- "default.handlebars->119->3127",
25134
- "default.handlebars->119->3201",
25135
- "default.handlebars->119->3221",
25163
+ "default.handlebars->119->3129",
25164
+ "default.handlebars->119->3203",
25165
+ "default.handlebars->119->3223",
25166
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5",
25167
"default3.handlebars->117->1598",
25138
- "default3.handlebars->117->1834",
25139
- "default3.handlebars->117->2365",
25168
+ "default3.handlebars->117->1836",
25169
+ "default3.handlebars->117->2367",
25170
"default3.handlebars->117->291",
25141
- "default3.handlebars->117->3115",
25142
- "default3.handlebars->117->3191",
25143
- "default3.handlebars->117->3211",
25171
+ "default3.handlebars->117->3117",
25172
+ "default3.handlebars->117->3193",
25173
+ "default3.handlebars->117->3213",
25174
"default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSort->sortselect->5"
25175
]
25176
},
@@ -25292,8 +25322,8 @@
25322
"zh-chs": "设备详情",
25323
"zh-cht": "設備詳情",
25324
"xloc": [
25295
- "default.handlebars->119->2392",
25296
- "default3.handlebars->117->2389"
25325
+ "default.handlebars->119->2394",
25326
+ "default3.handlebars->117->2391"
25327
]
25328
},
25329
{
@@ -25353,29 +25383,29 @@
25383
"zh-cht": "裝置群",
25384
"xloc": [
25385
"agent-translations.json",
25356
- "default-mobile.handlebars->53->1053",
25357
- "default.handlebars->119->2363",
25358
- "default.handlebars->119->2366",
25359
- "default.handlebars->119->2367",
25360
- "default.handlebars->119->2734",
25361
- "default.handlebars->119->2926",
25362
- "default.handlebars->119->2932",
25363
- "default.handlebars->119->3115",
25364
- "default.handlebars->119->3184",
25365
- "default.handlebars->119->3208",
25366
- "default.handlebars->119->3224",
25367
- "default.handlebars->119->3317",
25368
- "default3.handlebars->117->2360",
25369
- "default3.handlebars->117->2363",
25370
- "default3.handlebars->117->2364",
25371
- "default3.handlebars->117->2731",
25372
- "default3.handlebars->117->2920",
25373
- "default3.handlebars->117->2926",
25374
- "default3.handlebars->117->3103",
25375
- "default3.handlebars->117->3174",
25376
- "default3.handlebars->117->3198",
25377
- "default3.handlebars->117->3214",
25378
- "default3.handlebars->117->3307"
25386
+ "default-mobile.handlebars->53->1055",
25387
+ "default.handlebars->119->2365",
25388
+ "default.handlebars->119->2368",
25389
+ "default.handlebars->119->2369",
25390
+ "default.handlebars->119->2736",
25391
+ "default.handlebars->119->2928",
25392
+ "default.handlebars->119->2934",
25393
+ "default.handlebars->119->3117",
25394
+ "default.handlebars->119->3186",
25395
+ "default.handlebars->119->3210",
25396
+ "default.handlebars->119->3226",
25397
+ "default.handlebars->119->3319",
25398
+ "default3.handlebars->117->2362",
25399
+ "default3.handlebars->117->2365",
25400
+ "default3.handlebars->117->2366",
25401
+ "default3.handlebars->117->2733",
25402
+ "default3.handlebars->117->2922",
25403
+ "default3.handlebars->117->2928",
25404
+ "default3.handlebars->117->3105",
25405
+ "default3.handlebars->117->3176",
25406
+ "default3.handlebars->117->3200",
25407
+ "default3.handlebars->117->3216",
25408
+ "default3.handlebars->117->3309"
25409
]
25410
},
25411
{
@@ -25404,9 +25434,9 @@
25434
"zh-chs": "设备组用户",
25435
"zh-cht": "裝置群用戶",
25436
"xloc": [
25407
- "default-mobile.handlebars->53->1042",
25408
- "default.handlebars->119->2438",
25409
- "default3.handlebars->117->2435"
25437
+ "default-mobile.handlebars->53->1044",
25438
+ "default.handlebars->119->2440",
25439
+ "default3.handlebars->117->2437"
25440
]
25441
},
25442
{
@@ -25436,17 +25466,17 @@
25466
"zh-cht": "裝置群",
25467
"xloc": [
25468
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
25439
- "default.handlebars->119->2750",
25440
- "default.handlebars->119->2869",
25441
- "default.handlebars->119->2913",
25442
- "default.handlebars->119->3002",
25443
- "default.handlebars->119->3374",
25469
+ "default.handlebars->119->2752",
25470
+ "default.handlebars->119->2871",
25471
+ "default.handlebars->119->2915",
25472
+ "default.handlebars->119->3004",
25473
+ "default.handlebars->119->3376",
25474
"default.handlebars->container->column_l->p2->p2info->9",
25445
- "default3.handlebars->117->2747",
25446
- "default3.handlebars->117->2863",
25447
- "default3.handlebars->117->2907",
25448
- "default3.handlebars->117->2996",
25449
- "default3.handlebars->117->3364",
25475
+ "default3.handlebars->117->2749",
25476
+ "default3.handlebars->117->2865",
25477
+ "default3.handlebars->117->2909",
25478
+ "default3.handlebars->117->2998",
25479
+ "default3.handlebars->117->3366",
25480
"default3.handlebars->container->column_l->p2->p2info->9"
25481
]
25482
},
@@ -25568,11 +25598,11 @@
25598
"xloc": [
25599
"default-mobile.handlebars->53->623",
25600
"default.handlebars->119->1355",
25571
- "default.handlebars->119->3183",
25601
+ "default.handlebars->119->3185",
25602
"default.handlebars->119->508",
25603
"default.handlebars->119->517",
25604
"default3.handlebars->117->1340",
25575
- "default3.handlebars->117->3173",
25605
+ "default3.handlebars->117->3175",
25606
"default3.handlebars->117->504",
25607
"default3.handlebars->117->513",
25608
"player.handlebars->29->25"
@@ -25636,7 +25666,7 @@
25666
"zh-chs": "设备配对链接",
25667
"zh-cht": "設備配對鏈接",
25668
"xloc": [
25639
- "default-mobile.handlebars->53->996"
25669
+ "default-mobile.handlebars->53->998"
25670
]
25671
},
25672
{
@@ -25645,8 +25675,8 @@
25675
"nl": "Apparaat is ingeschakeld",
25676
"uk": "Пристрій Увімкнено",
25677
"xloc": [
25648
- "default.handlebars->119->2711",
25649
- "default3.handlebars->117->2708"
25678
+ "default.handlebars->119->2713",
25679
+ "default3.handlebars->117->2710"
25680
]
25681
},
25682
{
@@ -25675,8 +25705,8 @@
25705
"zh-chs": "设备推送",
25706
"zh-cht": "設備推送",
25707
"xloc": [
25678
- "default.handlebars->119->3022",
25679
- "default3.handlebars->117->3016"
25708
+ "default.handlebars->119->3024",
25709
+ "default3.handlebars->117->3018"
25710
]
25711
},
25712
{
@@ -25691,8 +25721,8 @@
25721
"pl": "Zapis Powiadomień Push Urządzenia",
25722
"uk": "Запис Push-Сповіщень Пристрою",
25723
"xloc": [
25694
- "default.handlebars->119->3287",
25695
- "default3.handlebars->117->3277"
25724
+ "default.handlebars->119->3289",
25725
+ "default3.handlebars->117->3279"
25726
]
25727
},
25728
{
@@ -25707,8 +25737,8 @@
25737
"pl": "Zapis SMBIOS urządzenia",
25738
"uk": "SMBIOS запис пристрою",
25739
"xloc": [
25710
- "default.handlebars->119->3286",
25711
- "default3.handlebars->117->3276"
25740
+ "default.handlebars->119->3288",
25741
+ "default3.handlebars->117->3278"
25742
]
25743
},
25744
{
@@ -25790,9 +25820,9 @@
25820
"zh-cht": "設備共享鏈接",
25821
"xloc": [
25822
"default.handlebars->119->1075",
25793
- "default.handlebars->119->2260",
25823
+ "default.handlebars->119->2262",
25824
"default3.handlebars->117->1071",
25795
- "default3.handlebars->117->2256"
25825
+ "default3.handlebars->117->2258"
25826
]
25827
},
25828
{
@@ -25946,17 +25976,17 @@
25976
"default.handlebars->119->1101",
25977
"default.handlebars->119->1105",
25978
"default.handlebars->119->1109",
25949
- "default.handlebars->119->2093",
25950
- "default.handlebars->119->2465",
25951
- "default.handlebars->119->2469",
25952
- "default.handlebars->119->2473",
25979
+ "default.handlebars->119->2095",
25980
+ "default.handlebars->119->2467",
25981
+ "default.handlebars->119->2471",
25982
+ "default.handlebars->119->2475",
25983
"default3.handlebars->117->1095",
25984
"default3.handlebars->117->1099",
25985
"default3.handlebars->117->1103",
25956
- "default3.handlebars->117->2075",
25957
- "default3.handlebars->117->2462",
25958
- "default3.handlebars->117->2466",
25959
- "default3.handlebars->117->2470"
25986
+ "default3.handlebars->117->2077",
25987
+ "default3.handlebars->117->2464",
25988
+ "default3.handlebars->117->2468",
25989
+ "default3.handlebars->117->2472"
25990
]
25991
},
25992
{
@@ -25988,17 +26018,17 @@
26018
"default.handlebars->119->1102",
26019
"default.handlebars->119->1106",
26020
"default.handlebars->119->1110",
25991
- "default.handlebars->119->2094",
25992
- "default.handlebars->119->2466",
25993
- "default.handlebars->119->2470",
25994
- "default.handlebars->119->2474",
26021
+ "default.handlebars->119->2096",
26022
+ "default.handlebars->119->2468",
26023
+ "default.handlebars->119->2472",
26024
+ "default.handlebars->119->2476",
26025
"default3.handlebars->117->1096",
26026
"default3.handlebars->117->1100",
26027
"default3.handlebars->117->1104",
25998
- "default3.handlebars->117->2076",
25999
- "default3.handlebars->117->2463",
26000
- "default3.handlebars->117->2467",
26001
- "default3.handlebars->117->2471"
26028
+ "default3.handlebars->117->2078",
26029
+ "default3.handlebars->117->2465",
26030
+ "default3.handlebars->117->2469",
26031
+ "default3.handlebars->117->2473"
26032
]
26033
},
26034
{
@@ -26027,8 +26057,8 @@
26057
"zh-chs": "创建的设备组:{0}",
26058
"zh-cht": "設備組已創建:{0}",
26059
"xloc": [
26030
- "default.handlebars->119->2628",
26031
- "default3.handlebars->117->2625"
26060
+ "default.handlebars->119->2630",
26061
+ "default3.handlebars->117->2627"
26062
]
26063
},
26064
{
@@ -26057,8 +26087,8 @@
26087
"zh-chs": "设备组已删除:{0}",
26088
"zh-cht": "設備組已刪除:{0}",
26089
"xloc": [
26060
- "default.handlebars->119->2629",
26061
- "default3.handlebars->117->2626"
26090
+ "default.handlebars->119->2631",
26091
+ "default3.handlebars->117->2628"
26092
]
26093
},
26094
{
@@ -26087,8 +26117,8 @@
26117
"zh-chs": "设备组成员身份已更改:{0}",
26118
"zh-cht": "設備組成員身份已更改:{0}",
26119
"xloc": [
26090
- "default.handlebars->119->2630",
26091
- "default3.handlebars->117->2627"
26120
+ "default.handlebars->119->2632",
26121
+ "default3.handlebars->117->2629"
26122
]
26123
},
26124
{
@@ -26148,8 +26178,8 @@
26178
"zh-chs": "设备组通知已更改",
26179
"zh-cht": "設備組通知已更改",
26180
"xloc": [
26151
- "default.handlebars->119->2625",
26152
- "default3.handlebars->117->2622"
26181
+ "default.handlebars->119->2627",
26182
+ "default3.handlebars->117->2624"
26183
]
26184
},
26185
{
@@ -26164,8 +26194,8 @@
26194
"pl": "Zapis grupy urządzeń",
26195
"uk": "Запис групи пристроїв",
26196
"xloc": [
26167
- "default.handlebars->119->3272",
26168
- "default3.handlebars->117->3262"
26197
+ "default.handlebars->119->3274",
26198
+ "default3.handlebars->117->3264"
26199
]
26200
},
26201
{
@@ -26194,8 +26224,8 @@
26224
"zh-chs": "未删除的设备组:{0}",
26225
"zh-cht": "未刪除的設備組:{0}",
26226
"xloc": [
26197
- "default.handlebars->119->2608",
26198
- "default3.handlebars->117->2605"
26227
+ "default.handlebars->119->2610",
26228
+ "default3.handlebars->117->2607"
26229
]
26230
},
26231
{
@@ -26224,8 +26254,8 @@
26254
"zh-chs": "设备组 {0} 已更改:{1}",
26255
"zh-cht": "設備組 {0} 已更改:{1}",
26256
"xloc": [
26227
- "default.handlebars->119->2694",
26228
- "default3.handlebars->117->2691"
26257
+ "default.handlebars->119->2696",
26258
+ "default3.handlebars->117->2693"
26259
]
26260
},
26261
{
@@ -26270,8 +26300,8 @@
26300
"pl": "Zapisy informacji urządzenia",
26301
"uk": "Записи інформації про пристрій",
26302
"xloc": [
26273
- "default.handlebars->119->3274",
26274
- "default3.handlebars->117->3264"
26303
+ "default.handlebars->119->3276",
26304
+ "default3.handlebars->117->3266"
26305
]
26306
},
26307
{
@@ -26901,8 +26931,8 @@
26931
"pl": "Zapisy zmiany stanu zasilania",
26932
"uk": "Записи про зміни стану живлення",
26933
"xloc": [
26904
- "default.handlebars->119->3280",
26905
- "default3.handlebars->117->3270"
26934
+ "default.handlebars->119->3282",
26935
+ "default3.handlebars->117->3272"
26936
]
26937
},
26938
{
@@ -26917,8 +26947,8 @@
26947
"pl": "Zapis urządzenia",
26948
"uk": "Запис пристрою",
26949
"xloc": [
26920
- "default.handlebars->119->3271",
26921
- "default3.handlebars->117->3261"
26950
+ "default.handlebars->119->3273",
26951
+ "default3.handlebars->117->3263"
26952
]
26953
},
26954
{
@@ -26947,8 +26977,8 @@
26977
"zh-chs": "设备请求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
26978
"zh-cht": "設備請求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
26979
"xloc": [
26950
- "default.handlebars->119->2663",
26951
- "default3.handlebars->117->2660"
26980
+ "default.handlebars->119->2665",
26981
+ "default3.handlebars->117->2662"
26982
]
26983
},
26984
{
@@ -26977,8 +27007,8 @@
27007
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
27008
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
27009
"xloc": [
26980
- "default.handlebars->119->2610",
26981
- "default3.handlebars->117->2607"
27010
+ "default.handlebars->119->2612",
27011
+ "default3.handlebars->117->2609"
27012
]
27013
},
27014
{
@@ -26993,8 +27023,8 @@
27023
"pl": "Zapisy udostępniania urządzenia",
27024
"uk": "Записи поширеного пристрою",
27025
"xloc": [
26996
- "default.handlebars->119->3284",
26997
- "default3.handlebars->117->3274"
27026
+ "default.handlebars->119->3286",
27027
+ "default3.handlebars->117->3276"
27028
]
27029
},
27030
{
@@ -27009,8 +27039,8 @@
27039
"pl": "Zapisy urządzenia, użytkowników, grup i inne",
27040
"uk": "Пристрій, користувачі, групи та інші записи",
27041
"xloc": [
27012
- "default.handlebars->119->3288",
27013
- "default3.handlebars->117->3278"
27042
+ "default.handlebars->119->3290",
27043
+ "default3.handlebars->117->3280"
27044
]
27045
},
27046
{
@@ -27039,12 +27069,12 @@
27069
"zh-chs": "设备",
27070
"zh-cht": "裝置",
27071
"xloc": [
27042
- "default.handlebars->119->2283",
27043
- "default.handlebars->119->2870",
27044
- "default.handlebars->119->2914",
27045
- "default3.handlebars->117->2279",
27046
- "default3.handlebars->117->2864",
27047
- "default3.handlebars->117->2908"
27072
+ "default.handlebars->119->2285",
27073
+ "default.handlebars->119->2872",
27074
+ "default.handlebars->119->2916",
27075
+ "default3.handlebars->117->2281",
27076
+ "default3.handlebars->117->2866",
27077
+ "default3.handlebars->117->2910"
27078
]
27079
},
27080
{
@@ -27290,8 +27320,8 @@
27320
"en": "Disabled Duo two-factor authentication",
27321
"nl": "Duo twee factorauthenticatie uitgeschakeld",
27322
"xloc": [
27293
- "default.handlebars->119->2713",
27294
- "default3.handlebars->117->2710"
27323
+ "default.handlebars->119->2715",
27324
+ "default3.handlebars->117->2712"
27325
]
27326
},
27327
{
@@ -27320,8 +27350,8 @@
27350
"zh-chs": "禁用的电子邮件两因素身份验证",
27351
"zh-cht": "禁用的電子郵件兩因素身份驗證",
27352
"xloc": [
27323
- "default.handlebars->119->2641",
27324
- "default3.handlebars->117->2638"
27353
+ "default.handlebars->119->2643",
27354
+ "default3.handlebars->117->2640"
27355
]
27356
},
27357
{
@@ -27410,13 +27440,13 @@
27440
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
27441
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
27442
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span",
27413
- "default.handlebars->119->2224",
27443
+ "default.handlebars->119->2226",
27444
"default.handlebars->119->966",
27445
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
27446
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
27447
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
27448
"default.handlebars->deskDisconnectContextMenu->3",
27419
- "default3.handlebars->117->2220",
27449
+ "default3.handlebars->117->2222",
27450
"default3.handlebars->117->962",
27451
"default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->disconnectbutton1span->5->3->0",
27452
"default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->disconnectbutton1span->disconnectbutton1",
@@ -27663,10 +27693,10 @@
27693
"pl": "Discord",
27694
"uk": "Discord",
27695
"xloc": [
27666
- "default.handlebars->119->1811",
27667
- "default.handlebars->119->3054",
27668
- "default3.handlebars->117->1793",
27669
- "default3.handlebars->117->3048"
27696
+ "default.handlebars->119->1813",
27697
+ "default.handlebars->119->3056",
27698
+ "default3.handlebars->117->1795",
27699
+ "default3.handlebars->117->3050"
27700
]
27701
},
27702
{
@@ -27871,8 +27901,8 @@
27901
"zh-chs": "显示设备组名称",
27902
"zh-cht": "顯示裝置群名稱",
27903
"xloc": [
27874
- "default.handlebars->119->2092",
27875
- "default3.handlebars->117->2074"
27904
+ "default.handlebars->119->2094",
27905
+ "default3.handlebars->117->2076"
27906
]
27907
},
27908
{
@@ -27931,8 +27961,8 @@
27961
"zh-chs": "显示公共连结",
27962
"zh-cht": "顯示公共鏈結",
27963
"xloc": [
27934
- "default.handlebars->119->2504",
27935
- "default3.handlebars->117->2501"
27964
+ "default.handlebars->119->2506",
27965
+ "default3.handlebars->117->2503"
27966
]
27967
},
27968
{
@@ -27972,8 +28002,8 @@
28002
"pl": "Wyświetl okno powiadomienia, tytuł=\\\"{0}\\\", wiadomość=\\\"{1}\\\"",
28003
"uk": "Показ вікна попередження, title=\\\"{0}\\\", message=\\\"{1}\\\"",
28004
"xloc": [
27975
- "default.handlebars->119->2710",
27976
- "default3.handlebars->117->2707"
28005
+ "default.handlebars->119->2712",
28006
+ "default3.handlebars->117->2709"
28007
]
28008
},
28009
{
@@ -28002,8 +28032,8 @@
28032
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
28033
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
28034
"xloc": [
28005
- "default.handlebars->119->2570",
28006
- "default3.handlebars->117->2567"
28035
+ "default.handlebars->119->2572",
28036
+ "default3.handlebars->117->2569"
28037
]
28038
},
28039
{
@@ -28032,8 +28062,8 @@
28062
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
28063
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
28064
"xloc": [
28035
- "default.handlebars->119->2578",
28036
- "default3.handlebars->117->2575"
28065
+ "default.handlebars->119->2580",
28066
+ "default3.handlebars->117->2577"
28067
]
28068
},
28069
{
@@ -28062,10 +28092,10 @@
28092
"zh-chs": "什么都不做",
28093
"zh-cht": "什麼都不做",
28094
"xloc": [
28065
- "default.handlebars->119->2312",
28066
- "default.handlebars->119->2316",
28067
- "default3.handlebars->117->2306",
28068
- "default3.handlebars->117->2310"
28095
+ "default.handlebars->119->2314",
28096
+ "default.handlebars->119->2318",
28097
+ "default3.handlebars->117->2308",
28098
+ "default3.handlebars->117->2312"
28099
]
28100
},
28101
{
@@ -28096,16 +28126,16 @@
28126
"xloc": [
28127
"default.handlebars->119->137",
28128
"default.handlebars->119->1381",
28099
- "default.handlebars->119->2833",
28100
- "default.handlebars->119->2882",
28101
- "default.handlebars->119->2891",
28102
- "default.handlebars->119->2965",
28129
+ "default.handlebars->119->2835",
28130
+ "default.handlebars->119->2884",
28131
+ "default.handlebars->119->2893",
28132
+ "default.handlebars->119->2967",
28133
"default3.handlebars->117->135",
28134
"default3.handlebars->117->1367",
28105
- "default3.handlebars->117->2829",
28106
- "default3.handlebars->117->2876",
28107
- "default3.handlebars->117->2885",
28108
- "default3.handlebars->117->2959",
28135
+ "default3.handlebars->117->2831",
28136
+ "default3.handlebars->117->2878",
28137
+ "default3.handlebars->117->2887",
28138
+ "default3.handlebars->117->2961",
28139
"mstsc.handlebars->main->1->3->1->rowdomain->1->0",
28140
"mstsc.handlebars->main->1->3->1->rowdomain->3"
28141
]
@@ -28162,8 +28192,8 @@
28192
"zh-chs": "请勿更改,如果设置请保留CCM",
28193
"zh-cht": "請勿更改,如果設置請保留CCM",
28194
"xloc": [
28165
- "default.handlebars->119->2308",
28166
- "default3.handlebars->117->2302"
28195
+ "default.handlebars->119->2310",
28196
+ "default3.handlebars->117->2304"
28197
]
28198
},
28199
{
@@ -28218,8 +28248,8 @@
28248
"zh-chs": "不要连接到服务器",
28249
"zh-cht": "不要連接到伺服器",
28250
"xloc": [
28221
- "default.handlebars->119->2317",
28222
- "default3.handlebars->117->2311"
28251
+ "default.handlebars->119->2319",
28252
+ "default3.handlebars->117->2313"
28253
]
28254
},
28255
{
@@ -28639,10 +28669,10 @@
28669
"zh-chs": "下载报告",
28670
"zh-cht": "下載報告",
28671
"xloc": [
28642
- "default.handlebars->119->2739",
28672
+ "default.handlebars->119->2741",
28673
"default.handlebars->container->column_l->p3->3->1->0->3",
28674
"default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv",
28645
- "default3.handlebars->117->2736",
28675
+ "default3.handlebars->117->2738",
28676
"default3.handlebars->container->column_l->p60->3->1->0->1->1->p60downloadReportDiv"
28677
]
28678
},
@@ -28762,8 +28792,8 @@
28792
"zh-chs": "下载设备列表",
28793
"zh-cht": "下載設備列表",
28794
"xloc": [
28765
- "default.handlebars->119->2281",
28766
- "default3.handlebars->117->2277"
28795
+ "default.handlebars->119->2283",
28796
+ "default3.handlebars->117->2279"
28797
]
28798
},
28799
{
@@ -29002,8 +29032,8 @@
This file is too large to show in full.
views/default-mobile.handlebars
+2
-1
@@ -6548,7 +6548,8 @@
6548
if (battery.Discharging != null) { x += addDetailItem("Discharging", (battery.Discharging ? "Yes" : "No"), s); }
6549
if (battery.RemainingCapacity) { x += addDetailItem("Remaining Capacity", format("{0} mWh", battery.RemainingCapacity), s); }
6550
if (battery.Voltage) { x += addDetailItem("Voltage", format("{0} V", (battery.Voltage / 1000)), s); }
6551
- if (battery.Health) { x += addDetailItem("Health", format("{0} %", battery.Health), s); }
6551
+ if (battery.Health) { x += addDetailItem("Health", format("{0} %", battery.Health), s); }
6552
+ if (battery.BatteryCharge) { x += addDetailItem("Battery Charge", format("{0} %", battery.BatteryCharge), s); }
6553
x += '</div>';
6554
}
6555
x += '</table>';
views/default.handlebars
+2
-1
@@ -12429,7 +12429,8 @@
12429
if (battery.Discharging != null) { x += addDetailItem("Discharging", (battery.Discharging ? "Yes" : "No"), s); }
12430
if (battery.RemainingCapacity) { x += addDetailItem("Remaining Capacity", format("{0} mWh", battery.RemainingCapacity), s); }
12431
if (battery.Voltage) { x += addDetailItem("Voltage", format("{0} V", (battery.Voltage / 1000)), s); }
12432
- if (battery.Health) { x += addDetailItem("Health", format("{0} %", battery.Health), s); }
12432
+ if (battery.Health) { x += addDetailItem("Health", format("{0} %", battery.Health), s); }
12433
+ if (battery.BatteryCharge) { x += addDetailItem("Battery Charge", format("{0} %", battery.BatteryCharge), s); }
12434
x += '</div>';
12435
}
12436
x += '</table>';
views/default3.handlebars
+2
-1
@@ -13469,7 +13469,8 @@
13469
if (battery.Discharging != null) { x += addDetailItem("Discharging", (battery.Discharging ? "Yes" : "No"), s); }
13470
if (battery.RemainingCapacity) { x += addDetailItem("Remaining Capacity", format("{0} mWh", battery.RemainingCapacity), s); }
13471
if (battery.Voltage) { x += addDetailItem("Voltage", format("{0} V", (battery.Voltage / 1000)), s); }
13472
- if (battery.Health) { x += addDetailItem("Health", format("{0} %", battery.Health), s); }
13472
+ if (battery.Health) { x += addDetailItem("Health", format("{0} %", battery.Health), s); }
13473
+ if (battery.BatteryCharge) { x += addDetailItem("Battery Charge", format("{0} %", battery.BatteryCharge), s); }
13474
x += '</div>';
13475
}
13476
x += '</table>';