add asset tag and system model to details and csv export #7576
Signed-off-by: si458 <simonsmith5521@gmail.com>
si458 committed
Jan 29, 2026 at 10:45 UTC
d7ef488ef8facc9ab50f7a78ba024c94f40564e5
6 files changed
+3956
-3782
agents/modules_meshcore/computer-identifiers.js
+10
-2
@@ -18,7 +18,7 @@ function trimIdentifiers(val)
18
{
19
for(var v in val)
20
{
21
- if (!val[v] || val[v] == 'None' || val[v] == '') { delete val[v]; }
21
+ if (!val[v] || val[v] == 'None' || val[v] == '' || val[v].trim() == '') { delete val[v]; }
22
}
23
}
24
function trimResults(val)
@@ -497,9 +497,17 @@ function windows_identifiers()
497
if(values[0]){
498
ret['identifiers']['product_uuid'] = values[0]['UUID'];
499
ret['identifiers']['product_name'] = values[0]['Name'];
500
- trimIdentifiers(ret.identifiers);
500
}
501
502
+ values = require('win-wmi').query('ROOT\\CIMV2', "SELECT * FROM Win32_SystemEnclosure", ['SerialNumber', 'SMBIOSAssetTag', 'Manufacturer']);
503
+ if(values[0]){
504
+ ret['identifiers']['chassis_serial'] = values[0]['SerialNumber'];
505
+ ret['identifiers']['chassis_assettag'] = values[0]['SMBIOSAssetTag'];
506
+ ret['identifiers']['chassis_manufacturer'] = values[0]['Manufacturer'];
507
+ }
508
+
509
+ trimIdentifiers(ret.identifiers);
510
+
511
values = require('win-wmi').query('ROOT\\CIMV2', "SELECT * FROM Win32_PhysicalMemory");
512
if(values[0]){
513
trimResults(values);
meshuser.js
+19
-2
@@ -5161,7 +5161,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
5161
if (type == 'csv') {
5162
try {
5163
// Create the CSV file
5164
- output = 'id,name,rname,host,icon,ip,osdesc,groupname,av,update,firewall,bitlocker,avdetails,tags,lastbootuptime,cpu,osbuild,biosDate,biosVendor,biosVersion,biosSerial,biosMode,boardName,boardVendor,boardVersion,productUuid,tpmversion,tpmmanufacturer,tpmmanufacturerversion,tpmisactivated,tpmisenabled,tpmisowned,totalMemory,agentOpenSSL,agentCommitDate,agentCommitHash,agentCompileTime,netIfCount,macs,addresses,lastConnectTime,lastConnectAddr\r\n';
5164
+ output = 'id,name,rname,host,icon,ip,osdesc,groupname,av,update,firewall,bitlocker,avdetails,tags,lastbootuptime,cpu,osbuild,biosDate,biosVendor,biosVersion,biosSerial,biosMode,boardName,boardVendor,boardVersion,boardSerial,chassisSerial,chassisAssetTag,chassisManufacturer,productUuid,tpmversion,tpmmanufacturer,tpmmanufacturerversion,tpmisactivated,tpmisenabled,tpmisowned,totalMemory,agentOpenSSL,agentCommitDate,agentCommitHash,agentCompileTime,netIfCount,macs,addresses,lastConnectTime,lastConnectAddr\r\n';
5165
for (var i = 0; i < results.length; i++) {
5166
const nodeinfo = results[i];
5167
@@ -5222,6 +5222,14 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
5222
output += ',';
5223
if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.board_version)) { output += csvClean(nodeinfo.sys.hardware.identifiers.board_version); }
5224
output += ',';
5225
+ if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.board_serial)) { output += csvClean(nodeinfo.sys.hardware.identifiers.board_serial); }
5226
+ output += ',';
5227
+ if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.chassis_serial)) { output += csvClean(nodeinfo.sys.hardware.identifiers.chassis_serial); }
5228
+ output += ',';
5229
+ if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.chassis_asset_tag)) { output += csvClean(nodeinfo.sys.hardware.identifiers.chassis_asset_tag); }
5230
+ output += ',';
5231
+ if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.chassis_manufacturer)) { output += csvClean(nodeinfo.sys.hardware.identifiers.chassis_manufacturer); }
5232
+ output += ',';
5233
if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.product_uuid)) { output += csvClean(nodeinfo.sys.hardware.identifiers.product_uuid); }
5234
output += ',';
5235
if (nodeinfo.sys.hardware.tpm && nodeinfo.sys.hardware.tpm.SpecVersion) { output += csvClean(nodeinfo.sys.hardware.tpm.SpecVersion); }
@@ -5262,6 +5270,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
5270
if (nodeinfo.sys.hardware.mobile && (nodeinfo.sys.hardware.mobile.brand)) { output += csvClean(nodeinfo.sys.hardware.mobile.brand); }
5271
output += ',';
5272
output += ',';
5273
+ output += ',';
5274
if (nodeinfo.sys.hardware.mobile && (nodeinfo.sys.hardware.mobile.id)) { output += csvClean(nodeinfo.sys.hardware.mobile.id); }
5275
output += ',';
5276
output += ',';
@@ -5292,6 +5301,14 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
5301
output += ',';
5302
if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.board_version)) { output += csvClean(nodeinfo.sys.hardware.linux.board_version); }
5303
output += ',';
5304
+ if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.board_serial)) { output += csvClean(nodeinfo.sys.hardware.linux.board_serial); }
5305
+ output += ',';
5306
+ if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.chassis_serial)) { output += csvClean(nodeinfo.sys.hardware.linux.chassis_serial); }
5307
+ output += ',';
5308
+ if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.chassis_asset_tag)) { output += csvClean(nodeinfo.sys.hardware.linux.chassis_asset_tag); }
5309
+ output += ',';
5310
+ if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.chassis_manufacturer)) { output += csvClean(nodeinfo.sys.hardware.linux.chassis_manufacturer); }
5311
+ output += ',';
5312
if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.product_uuid)) { output += csvClean(nodeinfo.sys.hardware.linux.product_uuid); }
5313
output += ',';
5314
if (nodeinfo.sys.hardware.tpm && nodeinfo.sys.hardware.tpm.SpecVersion) { output += csvClean(nodeinfo.sys.hardware.tpm.SpecVersion); }
@@ -5319,7 +5336,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
5336
}
5337
}
5338
} else {
5322
- output += ',,,,,,,,,,,,,,,,,,';
5339
+ output += ',,,,,,,,,,,,,,,,,,,';
5340
}
5341
5342
// Agent information
translate/translate.json
+3903
-3778
@@ -26,10 +26,10 @@
26
"zh-chs": " + CIRA",
27
"zh-cht": " + CIRA",
28
"xloc": [
29
- "default.handlebars->119->2241",
30
- "default.handlebars->119->2243",
31
- "default3.handlebars->117->2237",
32
- "default3.handlebars->117->2239"
29
+ "default.handlebars->119->2246",
30
+ "default.handlebars->119->2248",
31
+ "default3.handlebars->117->2242",
32
+ "default3.handlebars->117->2244"
33
]
34
},
35
{
@@ -330,8 +330,8 @@
330
"zh-chs": " 可以使用密码提示,但不建议使用。",
331
"zh-cht": " 可以使用密碼提示,但不建議使用。",
332
"xloc": [
333
- "default.handlebars->119->2113",
334
- "default3.handlebars->117->2093"
333
+ "default.handlebars->119->2118",
334
+ "default3.handlebars->117->2098"
335
]
336
},
337
{
@@ -360,10 +360,10 @@
360
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
361
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
362
"xloc": [
363
- "default.handlebars->119->2367",
364
- "default.handlebars->119->2956",
365
- "default3.handlebars->117->2364",
366
- "default3.handlebars->117->2950"
363
+ "default.handlebars->119->2372",
364
+ "default.handlebars->119->2961",
365
+ "default3.handlebars->117->2369",
366
+ "default3.handlebars->117->2956"
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->2325",
988
+ "default.handlebars->119->2330",
989
"default.handlebars->119->542",
990
- "default3.handlebars->117->2319",
990
+ "default3.handlebars->117->2324",
991
"default3.handlebars->117->538"
992
]
993
},
@@ -1096,21 +1096,21 @@
1096
"zh-chs": ",",
1097
"zh-cht": ",",
1098
"xloc": [
1099
- "default-mobile.handlebars->53->1043",
1099
+ "default-mobile.handlebars->53->1048",
1100
"default-mobile.handlebars->53->804",
1101
"default-mobile.handlebars->53->806",
1102
"default-mobile.handlebars->53->808",
1103
"default.handlebars->119->1644",
1104
"default.handlebars->119->1646",
1105
"default.handlebars->119->1648",
1106
- "default.handlebars->119->2443",
1107
- "default.handlebars->119->2729",
1106
+ "default.handlebars->119->2448",
1107
+ "default.handlebars->119->2734",
1108
"default.handlebars->119->998",
1109
"default3.handlebars->117->1629",
1110
"default3.handlebars->117->1631",
1111
"default3.handlebars->117->1633",
1112
- "default3.handlebars->117->2440",
1113
- "default3.handlebars->117->2726",
1112
+ "default3.handlebars->117->2445",
1113
+ "default3.handlebars->117->2731",
1114
"default3.handlebars->117->994"
1115
]
1116
},
@@ -1285,9 +1285,9 @@
1285
"zh-chs": ",MQTT在线",
1286
"zh-cht": ",MQTT在線",
1287
"xloc": [
1288
- "default-mobile.handlebars->53->944",
1289
- "default.handlebars->119->1785",
1290
- "default3.handlebars->117->1768"
1288
+ "default-mobile.handlebars->53->949",
1289
+ "default.handlebars->119->1790",
1290
+ "default3.handlebars->117->1773"
1291
]
1292
},
1293
{
@@ -1317,9 +1317,9 @@
1317
"zh-cht": ", 不同意",
1318
"xloc": [
1319
"default.handlebars->119->1093",
1320
- "default.handlebars->119->2283",
1320
+ "default.handlebars->119->2288",
1321
"default3.handlebars->117->1089",
1322
- "default3.handlebars->117->2279"
1322
+ "default3.handlebars->117->2284"
1323
]
1324
},
1325
{
@@ -1349,9 +1349,9 @@
1349
"zh-cht": ",提示同意",
1350
"xloc": [
1351
"default.handlebars->119->1094",
1352
- "default.handlebars->119->2284",
1352
+ "default.handlebars->119->2289",
1353
"default3.handlebars->117->1090",
1354
- "default3.handlebars->117->2280"
1354
+ "default3.handlebars->117->2285"
1355
]
1356
},
1357
{
@@ -1410,9 +1410,9 @@
1410
"zh-cht": ", 每天重複",
1411
"xloc": [
1412
"default.handlebars->119->1090",
1413
- "default.handlebars->119->2280",
1413
+ "default.handlebars->119->2285",
1414
"default3.handlebars->117->1086",
1415
- "default3.handlebars->117->2276"
1415
+ "default3.handlebars->117->2281"
1416
]
1417
},
1418
{
@@ -1442,9 +1442,9 @@
1442
"zh-cht": ", 每週重複一次",
1443
"xloc": [
1444
"default.handlebars->119->1091",
1445
- "default.handlebars->119->2281",
1445
+ "default.handlebars->119->2286",
1446
"default3.handlebars->117->1087",
1447
- "default3.handlebars->117->2277"
1447
+ "default3.handlebars->117->2282"
1448
]
1449
},
1450
{
@@ -1619,9 +1619,9 @@
1619
"zh-cht": ", 工具欄",
1620
"xloc": [
1621
"default.handlebars->119->1095",
1622
- "default.handlebars->119->2285",
1622
+ "default.handlebars->119->2290",
1623
"default3.handlebars->117->1091",
1624
- "default3.handlebars->117->2281"
1624
+ "default3.handlebars->117->2286"
1625
]
1626
},
1627
{
@@ -1677,9 +1677,9 @@
1677
"zh-cht": ", 僅查看桌面",
1678
"xloc": [
1679
"default.handlebars->119->1092",
1680
- "default.handlebars->119->2282",
1680
+ "default.handlebars->119->2287",
1681
"default3.handlebars->117->1088",
1682
- "default3.handlebars->117->2278"
1682
+ "default3.handlebars->117->2283"
1683
]
1684
},
1685
{
@@ -2129,8 +2129,8 @@
2129
"en": "0 bps",
2130
"xloc": [
2131
"default-mobile.handlebars->53->365",
2132
- "default.handlebars->119->2526",
2133
- "default3.handlebars->117->2523"
2132
+ "default.handlebars->119->2531",
2133
+ "default3.handlebars->117->2528"
2134
]
2135
},
2136
{
@@ -2237,8 +2237,8 @@
2237
"zh-chs": "1个活跃时段",
2238
"zh-cht": "1個活躍時段",
2239
"xloc": [
2240
- "default.handlebars->119->3051",
2241
- "default3.handlebars->117->3045"
2240
+ "default.handlebars->119->3056",
2241
+ "default3.handlebars->117->3051"
2242
]
2243
},
2244
{
@@ -2267,10 +2267,10 @@
2267
"zh-chs": "1个字节",
2268
"zh-cht": "1個位元組",
2269
"xloc": [
2270
- "default-mobile.handlebars->53->1087",
2270
+ "default-mobile.handlebars->53->1092",
2271
"default-mobile.handlebars->53->373",
2272
- "default.handlebars->119->2537",
2273
- "default3.handlebars->117->2534",
2272
+ "default.handlebars->119->2542",
2273
+ "default3.handlebars->117->2539",
2274
"download.handlebars->7->1",
2275
"download2.handlebars->11->1",
2276
"sharing-mobile.handlebars->53->111",
@@ -2397,8 +2397,8 @@
2397
"zh-chs": "1组",
2398
"zh-cht": "1群",
2399
"xloc": [
2400
- "default.handlebars->119->3006",
2401
- "default3.handlebars->117->3000"
2400
+ "default.handlebars->119->3011",
2401
+ "default3.handlebars->117->3006"
2402
]
2403
},
2404
{
@@ -2462,9 +2462,9 @@
2462
"zh-cht": "1分鐘",
2463
"xloc": [
2464
"default.handlebars->119->1203",
2465
- "default.handlebars->119->2078",
2465
+ "default.handlebars->119->2083",
2466
"default3.handlebars->117->1197",
2467
- "default3.handlebars->117->2059"
2467
+ "default3.handlebars->117->2064"
2468
]
2469
},
2470
{
@@ -2582,8 +2582,8 @@
2582
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
2583
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2584
"xloc": [
2585
- "default.handlebars->119->2761",
2586
- "default3.handlebars->117->2758"
2585
+ "default.handlebars->119->2766",
2586
+ "default3.handlebars->117->2763"
2587
]
2588
},
2589
{
@@ -2847,7 +2847,7 @@
2847
"default-mobile.handlebars->53->420",
2848
"default-mobile.handlebars->53->424",
2849
"default-mobile.handlebars->53->428",
2850
- "default.handlebars->119->2765",
2850
+ "default.handlebars->119->2770",
2851
"default.handlebars->119->460",
2852
"default.handlebars->119->463",
2853
"default.handlebars->119->467",
@@ -2855,7 +2855,7 @@
2855
"default.handlebars->119->475",
2856
"default.handlebars->119->479",
2857
"default.handlebars->119->483",
2858
- "default3.handlebars->117->2762",
2858
+ "default3.handlebars->117->2767",
2859
"default3.handlebars->117->456",
2860
"default3.handlebars->117->459",
2861
"default3.handlebars->117->463",
@@ -3075,9 +3075,9 @@
3075
"zh-cht": "10分鐘",
3076
"xloc": [
3077
"default.handlebars->119->1205",
3078
- "default.handlebars->119->2080",
3078
+ "default.handlebars->119->2085",
3079
"default3.handlebars->117->1199",
3080
- "default3.handlebars->117->2061"
3080
+ "default3.handlebars->117->2066"
3081
]
3082
},
3083
{
@@ -3286,9 +3286,9 @@
3286
"zh-cht": "12小時",
3287
"xloc": [
3288
"default.handlebars->119->1213",
3289
- "default.handlebars->119->2088",
3289
+ "default.handlebars->119->2093",
3290
"default3.handlebars->117->1207",
3291
- "default3.handlebars->117->2069"
3291
+ "default3.handlebars->117->2074"
3292
]
3293
},
3294
{
@@ -3433,9 +3433,9 @@
3433
"zh-cht": "15分鐘",
3434
"xloc": [
3435
"default.handlebars->119->1206",
3436
- "default.handlebars->119->2081",
3436
+ "default.handlebars->119->2086",
3437
"default3.handlebars->117->1200",
3438
- "default3.handlebars->117->2062"
3438
+ "default3.handlebars->117->2067"
3439
]
3440
},
3441
{
@@ -3465,9 +3465,9 @@
3465
"zh-cht": "16小時",
3466
"xloc": [
3467
"default.handlebars->119->1214",
3468
- "default.handlebars->119->2089",
3468
+ "default.handlebars->119->2094",
3469
"default3.handlebars->117->1208",
3470
- "default3.handlebars->117->2070"
3470
+ "default3.handlebars->117->2075"
3471
]
3472
},
3473
{
@@ -3613,9 +3613,9 @@
3613
"zh-cht": "2天",
3614
"xloc": [
3615
"default.handlebars->119->1216",
3616
- "default.handlebars->119->2091",
3616
+ "default.handlebars->119->2096",
3617
"default3.handlebars->117->1210",
3618
- "default3.handlebars->117->2072"
3618
+ "default3.handlebars->117->2077"
3619
]
3620
},
3621
{
@@ -3645,9 +3645,9 @@
3645
"zh-cht": "2小時",
3646
"xloc": [
3647
"default.handlebars->119->1210",
3648
- "default.handlebars->119->2085",
3648
+ "default.handlebars->119->2090",
3649
"default3.handlebars->117->1204",
3650
- "default3.handlebars->117->2066"
3650
+ "default3.handlebars->117->2071"
3651
]
3652
},
3653
{
@@ -3858,9 +3858,9 @@
3858
"zh-cht": "24小時",
3859
"xloc": [
3860
"default.handlebars->119->1215",
3861
- "default.handlebars->119->2090",
3861
+ "default.handlebars->119->2095",
3862
"default3.handlebars->117->1209",
3863
- "default3.handlebars->117->2071"
3863
+ "default3.handlebars->117->2076"
3864
]
3865
},
3866
{
@@ -3947,8 +3947,8 @@
3947
"zh-chs": "2FA备份代码已清除",
3948
"zh-cht": "2FA備份代碼已清除",
3949
"xloc": [
3950
- "default.handlebars->119->2650",
3951
- "default3.handlebars->117->2647"
3950
+ "default.handlebars->119->2655",
3951
+ "default3.handlebars->117->2652"
3952
]
3953
},
3954
{
@@ -4008,8 +4008,8 @@
4008
"zh-chs": "第二个因素",
4009
"zh-cht": "第二個因素",
4010
"xloc": [
4011
- "default.handlebars->119->3238",
4012
- "default3.handlebars->117->3228"
4011
+ "default.handlebars->119->3243",
4012
+ "default3.handlebars->117->3234"
4013
]
4014
},
4015
{
@@ -4038,10 +4038,10 @@
4038
"zh-chs": "启用第二因素身份验证",
4039
"zh-cht": "啟用第二因素身份驗證",
4040
"xloc": [
4041
- "default.handlebars->119->2779",
4042
- "default.handlebars->119->3032",
4043
- "default3.handlebars->117->2776",
4044
- "default3.handlebars->117->3026"
4041
+ "default.handlebars->119->2784",
4042
+ "default.handlebars->119->3037",
4043
+ "default3.handlebars->117->2781",
4044
+ "default3.handlebars->117->3032"
4045
]
4046
},
4047
{
@@ -4213,9 +4213,9 @@
4213
"zh-cht": "30分鐘",
4214
"xloc": [
4215
"default.handlebars->119->1207",
4216
- "default.handlebars->119->2082",
4216
+ "default.handlebars->119->2087",
4217
"default3.handlebars->117->1201",
4218
- "default3.handlebars->117->2063"
4218
+ "default3.handlebars->117->2068"
4219
]
4220
},
4221
{
@@ -4334,9 +4334,9 @@
4334
"zh-cht": "4天",
4335
"xloc": [
4336
"default.handlebars->119->1217",
4337
- "default.handlebars->119->2092",
4337
+ "default.handlebars->119->2097",
4338
"default3.handlebars->117->1211",
4339
- "default3.handlebars->117->2073"
4339
+ "default3.handlebars->117->2078"
4340
]
4341
},
4342
{
@@ -4366,9 +4366,9 @@
4366
"zh-cht": "4個小時",
4367
"xloc": [
4368
"default.handlebars->119->1211",
4369
- "default.handlebars->119->2086",
4369
+ "default.handlebars->119->2091",
4370
"default3.handlebars->117->1205",
4371
- "default3.handlebars->117->2067"
4371
+ "default3.handlebars->117->2072"
4372
]
4373
},
4374
{
@@ -4515,9 +4515,9 @@
4515
"zh-cht": "45分鐘",
4516
"xloc": [
4517
"default.handlebars->119->1208",
4518
- "default.handlebars->119->2083",
4518
+ "default.handlebars->119->2088",
4519
"default3.handlebars->117->1202",
4520
- "default3.handlebars->117->2064"
4520
+ "default3.handlebars->117->2069"
4521
]
4522
},
4523
{
@@ -4576,9 +4576,9 @@
4576
"zh-cht": "5分鐘",
4577
"xloc": [
4578
"default.handlebars->119->1204",
4579
- "default.handlebars->119->2079",
4579
+ "default.handlebars->119->2084",
4580
"default3.handlebars->117->1198",
4581
- "default3.handlebars->117->2060"
4581
+ "default3.handlebars->117->2065"
4582
]
4583
},
4584
{
@@ -4790,9 +4790,9 @@
4790
"zh-cht": "60分鐘",
4791
"xloc": [
4792
"default.handlebars->119->1209",
4793
- "default.handlebars->119->2084",
4793
+ "default.handlebars->119->2089",
4794
"default3.handlebars->117->1203",
4795
- "default3.handlebars->117->2065"
4795
+ "default3.handlebars->117->2070"
4796
]
4797
},
4798
{
@@ -5074,8 +5074,8 @@
5074
"zh-chs": "7天",
5075
"zh-cht": "7天",
5076
"xloc": [
5077
- "default.handlebars->119->2093",
5078
- "default3.handlebars->117->2074"
5077
+ "default.handlebars->119->2098",
5078
+ "default3.handlebars->117->2079"
5079
]
5080
},
5081
{
@@ -5167,11 +5167,11 @@
5167
"zh-cht": "8小時",
5168
"xloc": [
5169
"default.handlebars->119->1212",
5170
- "default.handlebars->119->2087",
5170
+ "default.handlebars->119->2092",
5171
"default.handlebars->119->570",
5172
"default.handlebars->119->584",
5173
"default3.handlebars->117->1206",
5174
- "default3.handlebars->117->2068",
5174
+ "default3.handlebars->117->2073",
5175
"default3.handlebars->117->566",
5176
"default3.handlebars->117->580"
5177
]
@@ -5376,10 +5376,10 @@
5376
"zh-cht": "ACM",
5377
"xloc": [
5378
"default-mobile.handlebars->53->499",
5379
- "default.handlebars->119->2261",
5379
+ "default.handlebars->119->2266",
5380
"default.handlebars->119->448",
5381
"default.handlebars->119->904",
5382
- "default3.handlebars->117->2257",
5382
+ "default3.handlebars->117->2262",
5383
"default3.handlebars->117->444",
5384
"default3.handlebars->117->900"
5385
]
@@ -5511,8 +5511,8 @@
5511
"zh-chs": "操作系统",
5512
"zh-cht": "AMT操作系統",
5513
"xloc": [
5514
- "default.handlebars->119->3397",
5515
- "default3.handlebars->117->3387"
5514
+ "default.handlebars->119->3402",
5515
+ "default3.handlebars->117->3393"
5516
]
5517
},
5518
{
@@ -5540,10 +5540,10 @@
5540
"zh-chs": "AMT-Redir",
5541
"zh-cht": "AMT-Redir",
5542
"xloc": [
5543
- "default.handlebars->119->3248",
5544
- "default.handlebars->119->3301",
5545
- "default3.handlebars->117->3238",
5546
- "default3.handlebars->117->3291"
5543
+ "default.handlebars->119->3253",
5544
+ "default.handlebars->119->3306",
5545
+ "default3.handlebars->117->3244",
5546
+ "default3.handlebars->117->3297"
5547
]
5548
},
5549
{
@@ -5571,10 +5571,10 @@
5571
"zh-chs": "AMT-WSMAN",
5572
"zh-cht": "AMT-WSMAN",
5573
"xloc": [
5574
- "default.handlebars->119->3247",
5575
- "default.handlebars->119->3300",
5576
- "default3.handlebars->117->3237",
5577
- "default3.handlebars->117->3290"
5574
+ "default.handlebars->119->3252",
5575
+ "default.handlebars->119->3305",
5576
+ "default3.handlebars->117->3243",
5577
+ "default3.handlebars->117->3296"
5578
]
5579
},
5580
{
@@ -5594,7 +5594,7 @@
5594
"pl": "Wersja APK MeshAgent",
5595
"uk": "MeshAgent версія APK",
5596
"xloc": [
5597
- "default-mobile.handlebars->53->996",
5597
+ "default-mobile.handlebars->53->1001",
5598
"default.handlebars->119->659",
5599
"default3.handlebars->117->655"
5600
]
@@ -5841,9 +5841,9 @@
5841
"zh-chs": "拒绝访问",
5842
"zh-cht": "拒絕存取",
5843
"xloc": [
5844
- "default-mobile.handlebars->53->945",
5845
- "default.handlebars->119->1786",
5846
- "default3.handlebars->117->1769"
5844
+ "default-mobile.handlebars->53->950",
5845
+ "default.handlebars->119->1791",
5846
+ "default3.handlebars->117->1774"
5847
]
5848
},
5849
{
@@ -5932,8 +5932,8 @@
5932
"zh-chs": "访问服务器档案",
5933
"zh-cht": "存取伺服器檔案",
5934
"xloc": [
5935
- "default.handlebars->119->2962",
5936
- "default3.handlebars->117->2956"
5935
+ "default.handlebars->119->2967",
5936
+ "default3.handlebars->117->2962"
5937
]
5938
},
5939
{
@@ -6060,16 +6060,16 @@
6060
"default-mobile.handlebars->53->468",
6061
"default-mobile.handlebars->53->98",
6062
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
6063
- "default.handlebars->119->2122",
6064
- "default.handlebars->119->2124",
6065
- "default.handlebars->119->3452",
6063
+ "default.handlebars->119->2127",
6064
+ "default.handlebars->119->2129",
6065
+ "default.handlebars->119->3457",
6066
"default.handlebars->119->741",
6067
"default.handlebars->119->864",
6068
"default.handlebars->119->866",
6069
- "default3.handlebars->117->2124",
6070
- "default3.handlebars->117->2125",
6071
- "default3.handlebars->117->3440",
6072
- "default3.handlebars->117->3442",
6069
+ "default3.handlebars->117->2129",
6070
+ "default3.handlebars->117->2130",
6071
+ "default3.handlebars->117->3446",
6072
+ "default3.handlebars->117->3448",
6073
"default3.handlebars->117->737",
6074
"default3.handlebars->117->860",
6075
"default3.handlebars->117->862"
@@ -6101,9 +6101,9 @@
6101
"zh-chs": "帐号设定",
6102
"zh-cht": "帳號設定",
6103
"xloc": [
6104
- "default-mobile.handlebars->53->1054",
6105
- "default.handlebars->119->3321",
6106
- "default3.handlebars->117->3311"
6104
+ "default-mobile.handlebars->53->1059",
6105
+ "default.handlebars->119->3326",
6106
+ "default3.handlebars->117->3317"
6107
]
6108
},
6109
{
@@ -6178,8 +6178,8 @@
6178
"pl": "Konto zmienione di synchronizacji z danymi LDAP.",
6179
"uk": "Акаунт змінено на синхронізацію з даними LDAP.",
6180
"xloc": [
6181
- "default.handlebars->119->2711",
6182
- "default3.handlebars->117->2708"
6181
+ "default.handlebars->119->2716",
6182
+ "default3.handlebars->117->2713"
6183
]
6184
},
6185
{
@@ -6208,8 +6208,8 @@
6208
"zh-chs": "帐户已更改:{0}",
6209
"zh-cht": "帳戶已更改:{0}",
6210
"xloc": [
6211
- "default.handlebars->119->2623",
6212
- "default3.handlebars->117->2620"
6211
+ "default.handlebars->119->2628",
6212
+ "default3.handlebars->117->2625"
6213
]
6214
},
6215
{
@@ -6238,8 +6238,8 @@
6238
"zh-chs": "创建帐户,电子邮件为{0}",
6239
"zh-cht": "創建帳戶,電子郵件為{0}",
6240
"xloc": [
6241
- "default.handlebars->119->2622",
6242
- "default3.handlebars->117->2619"
6241
+ "default.handlebars->119->2627",
6242
+ "default3.handlebars->117->2624"
6243
]
6244
},
6245
{
@@ -6268,8 +6268,8 @@
6268
"zh-chs": "已创建帐户,名称为 {0}。",
6269
"zh-cht": "已創建帳戶,名稱為 {0}。",
6270
"xloc": [
6271
- "default.handlebars->119->2685",
6272
- "default3.handlebars->117->2682"
6271
+ "default.handlebars->119->2690",
6272
+ "default3.handlebars->117->2687"
6273
]
6274
},
6275
{
@@ -6298,8 +6298,8 @@
6298
"zh-chs": "创建帐户,用户名是{0}",
6299
"zh-cht": "帳戶已創建,用戶名是{0}",
6300
"xloc": [
6301
- "default.handlebars->119->2621",
6302
- "default3.handlebars->117->2618"
6301
+ "default.handlebars->119->2626",
6302
+ "default3.handlebars->117->2623"
6303
]
6304
},
6305
{
@@ -6330,11 +6330,11 @@
6330
"xloc": [
6331
"default-mobile.handlebars->53->69",
6332
"default.handlebars->119->222",
6333
- "default.handlebars->119->2781",
6334
- "default.handlebars->119->2959",
6333
+ "default.handlebars->119->2786",
6334
+ "default.handlebars->119->2964",
6335
"default3.handlebars->117->219",
6336
- "default3.handlebars->117->2778",
6337
- "default3.handlebars->117->2953"
6336
+ "default3.handlebars->117->2783",
6337
+ "default3.handlebars->117->2959"
6338
]
6339
},
6340
{
@@ -6363,9 +6363,9 @@
6363
"zh-chs": "达到帐户限制。",
6364
"zh-cht": "達到帳戶限制。",
6365
"xloc": [
6366
- "default-mobile.handlebars->53->1066",
6367
- "default.handlebars->119->3333",
6368
- "default3.handlebars->117->3323",
6366
+ "default-mobile.handlebars->53->1071",
6367
+ "default.handlebars->119->3338",
6368
+ "default3.handlebars->117->3329",
6369
"login-mobile.handlebars->23->6",
6370
"login.handlebars->13->8",
6371
"login2.handlebars->17->206"
@@ -6428,8 +6428,8 @@
6428
"zh-chs": "帐号登录",
6429
"zh-cht": "帳號登錄",
6430
"xloc": [
6431
- "default.handlebars->119->2558",
6432
- "default3.handlebars->117->2555"
6431
+ "default.handlebars->119->2563",
6432
+ "default3.handlebars->117->2560"
6433
]
6434
},
6435
{
@@ -6458,8 +6458,8 @@
6458
"zh-chs": "来自 {0}、{1}、{2} 的帐户登录",
6459
"zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
6460
"xloc": [
6461
- "default.handlebars->119->2664",
6462
- "default3.handlebars->117->2661"
6461
+ "default.handlebars->119->2669",
6462
+ "default3.handlebars->117->2666"
6463
]
6464
},
6465
{
@@ -6473,8 +6473,8 @@
6473
"pl": "Zapisy logowania tokenami użytkownika",
6474
"uk": "Записи токенів входу до акаунту",
6475
"xloc": [
6476
- "default.handlebars->119->3290",
6477
- "default3.handlebars->117->3280"
6476
+ "default.handlebars->119->3295",
6477
+ "default3.handlebars->117->3286"
6478
]
6479
},
6480
{
@@ -6503,8 +6503,8 @@
6503
"zh-chs": "帐户登出",
6504
"zh-cht": "帳戶登出",
6505
"xloc": [
6506
- "default.handlebars->119->2559",
6507
- "default3.handlebars->117->2556"
6506
+ "default.handlebars->119->2564",
6507
+ "default3.handlebars->117->2561"
6508
]
6509
},
6510
{
@@ -6564,8 +6564,8 @@
6564
"zh-chs": "帐户密码已更改:{0}",
6565
"zh-cht": "帳戶密碼已更改:{0}",
6566
"xloc": [
6567
- "default.handlebars->119->2631",
6568
- "default3.handlebars->117->2628"
6567
+ "default.handlebars->119->2636",
6568
+ "default3.handlebars->117->2633"
6569
]
6570
},
6571
{
@@ -6594,8 +6594,8 @@
6594
"zh-chs": "帐户已删除",
6595
"zh-cht": "帳戶已刪除",
6596
"xloc": [
6597
- "default.handlebars->119->2620",
6598
- "default3.handlebars->117->2617"
6597
+ "default.handlebars->119->2625",
6598
+ "default3.handlebars->117->2622"
6599
]
6600
},
6601
{
@@ -6654,10 +6654,10 @@
6654
"zh-chs": "指令",
6655
"zh-cht": "指令",
6656
"xloc": [
6657
- "default-mobile.handlebars->53->960",
6658
- "default.handlebars->119->1801",
6657
+ "default-mobile.handlebars->53->965",
6658
+ "default.handlebars->119->1806",
6659
"default.handlebars->container->column_l->p42->p42tbl->1->0->8",
6660
- "default3.handlebars->117->1784",
6660
+ "default3.handlebars->117->1789",
6661
"default3.handlebars->container->column_l->p42->p42tbl->1->0->17"
6662
]
6663
},
@@ -6847,8 +6847,8 @@
6847
"zh-chs": "如果ACM失败,则激活到CCM",
6848
"zh-cht": "如果ACM失敗,則激活到CCM",
6849
"xloc": [
6850
- "default.handlebars->119->2316",
6851
- "default3.handlebars->117->2310"
6850
+ "default.handlebars->119->2321",
6851
+ "default3.handlebars->117->2315"
6852
]
6853
},
6854
{
@@ -6880,13 +6880,13 @@
6880
"default-mobile.handlebars->53->494",
6881
"default-mobile.handlebars->53->496",
6882
"default-mobile.handlebars->53->816",
6883
- "default-mobile.handlebars->53->845",
6883
+ "default-mobile.handlebars->53->850",
6884
"default.handlebars->119->1656",
6885
- "default.handlebars->119->1685",
6885
+ "default.handlebars->119->1690",
6886
"default.handlebars->119->897",
6887
"default.handlebars->119->899",
6888
"default3.handlebars->117->1639",
6889
- "default3.handlebars->117->1668",
6889
+ "default3.handlebars->117->1673",
6890
"default3.handlebars->117->893",
6891
"default3.handlebars->117->895"
6892
]
@@ -6948,9 +6948,9 @@
6948
"zh-cht": "主動設備共享",
6949
"xloc": [
6950
"default.handlebars->119->1075",
6951
- "default.handlebars->119->2265",
6951
+ "default.handlebars->119->2270",
6952
"default3.handlebars->117->1071",
6953
- "default3.handlebars->117->2261"
6953
+ "default3.handlebars->117->2266"
6954
]
6955
},
6956
{
@@ -6979,8 +6979,8 @@
6979
"zh-chs": "活动登录令牌",
6980
"zh-cht": "活動登錄令牌",
6981
"xloc": [
6982
- "default.handlebars->119->2153",
6983
- "default3.handlebars->117->2153"
6982
+ "default.handlebars->119->2158",
6983
+ "default3.handlebars->117->2158"
6984
]
6985
},
6986
{
@@ -7183,9 +7183,9 @@
7183
"zh-chs": "添加代理",
7184
"zh-cht": "新增代理",
7185
"xloc": [
7186
- "default.handlebars->119->2255",
7186
+ "default.handlebars->119->2260",
7187
"default.handlebars->119->502",
7188
- "default3.handlebars->117->2251",
7188
+ "default3.handlebars->117->2256",
7189
"default3.handlebars->117->498"
7190
]
7191
},
@@ -7241,13 +7241,13 @@
7241
"zh-chs": "添加设备",
7242
"zh-cht": "新增裝置",
7243
"xloc": [
7244
- "default.handlebars->119->2259",
7245
- "default.handlebars->119->2934",
7246
- "default.handlebars->119->3129",
7244
+ "default.handlebars->119->2264",
7245
+ "default.handlebars->119->2939",
7246
+ "default.handlebars->119->3134",
7247
"default.handlebars->119->506",
7248
- "default3.handlebars->117->2255",
7249
- "default3.handlebars->117->2928",
7250
- "default3.handlebars->117->3117",
7248
+ "default3.handlebars->117->2260",
7249
+ "default3.handlebars->117->2934",
7250
+ "default3.handlebars->117->3123",
7251
"default3.handlebars->117->502"
7252
]
7253
},
@@ -7307,13 +7307,13 @@
7307
"zh-chs": "添加设备组",
7308
"zh-cht": "新增裝置群",
7309
"xloc": [
7310
- "default.handlebars->119->2404",
7311
- "default.handlebars->119->2928",
7312
- "default.handlebars->119->3117",
7310
+ "default.handlebars->119->2409",
7311
+ "default.handlebars->119->2933",
7312
+ "default.handlebars->119->3122",
7313
"default.handlebars->119->402",
7314
- "default3.handlebars->117->2401",
7315
- "default3.handlebars->117->2922",
7316
- "default3.handlebars->117->3105",
7314
+ "default3.handlebars->117->2406",
7315
+ "default3.handlebars->117->2928",
7316
+ "default3.handlebars->117->3111",
7317
"default3.handlebars->117->398"
7318
]
7319
},
@@ -7343,8 +7343,8 @@
7343
"zh-chs": "添加设备组权限",
7344
"zh-cht": "新增裝置群權限",
7345
"xloc": [
7346
- "default.handlebars->119->2401",
7347
- "default3.handlebars->117->2398"
7346
+ "default.handlebars->119->2406",
7347
+ "default3.handlebars->117->2403"
7348
]
7349
},
7350
{
@@ -7373,10 +7373,10 @@
7373
"zh-chs": "添加设备权限",
7374
"zh-cht": "新增裝置權限",
7375
"xloc": [
7376
- "default.handlebars->119->2406",
7377
- "default.handlebars->119->2408",
7378
- "default3.handlebars->117->2403",
7379
- "default3.handlebars->117->2405"
7376
+ "default.handlebars->119->2411",
7377
+ "default.handlebars->119->2413",
7378
+ "default3.handlebars->117->2408",
7379
+ "default3.handlebars->117->2410"
7380
]
7381
},
7382
{
@@ -7547,8 +7547,8 @@
7547
"zh-chs": "添加成员身份",
7548
"zh-cht": "新增成員身份",
7549
"xloc": [
7550
- "default.handlebars->119->3149",
7551
- "default3.handlebars->117->3137"
7550
+ "default.handlebars->119->3154",
7551
+ "default3.handlebars->117->3143"
7552
]
7553
},
7554
{
@@ -7633,14 +7633,14 @@
7633
"zh-chs": "添加安全密钥",
7634
"zh-cht": "新增安全密鑰",
7635
"xloc": [
7636
- "default.handlebars->119->1868",
7637
- "default.handlebars->119->1869",
7636
+ "default.handlebars->119->1873",
7637
+ "default.handlebars->119->1874",
7638
"default.handlebars->119->256",
7639
"default.handlebars->119->258",
7640
"default.handlebars->119->261",
7641
"default.handlebars->119->263",
7642
- "default3.handlebars->117->1849",
7643
- "default3.handlebars->117->1850",
7642
+ "default3.handlebars->117->1854",
7643
+ "default3.handlebars->117->1855",
7644
"default3.handlebars->117->251",
7645
"default3.handlebars->117->253",
7646
"default3.handlebars->117->256",
@@ -7673,7 +7673,7 @@
7673
"zh-chs": "添加用户",
7674
"zh-cht": "新增用戶",
7675
"xloc": [
7676
- "default-mobile.handlebars->53->978",
7676
+ "default-mobile.handlebars->53->983",
7677
"default.handlebars->119->1067",
7678
"default3.handlebars->117->1063"
7679
]
@@ -7704,8 +7704,8 @@
7704
"zh-chs": "添加用户设备权限",
7705
"zh-cht": "新增用戶裝置權限",
7706
"xloc": [
7707
- "default.handlebars->119->2411",
7708
- "default3.handlebars->117->2408"
7707
+ "default.handlebars->119->2416",
7708
+ "default3.handlebars->117->2413"
7709
]
7710
},
7711
{
@@ -7735,13 +7735,13 @@
7735
"zh-cht": "新增用戶群",
7736
"xloc": [
7737
"default.handlebars->119->1068",
7738
- "default.handlebars->119->2249",
7739
- "default.handlebars->119->2403",
7740
- "default.handlebars->119->3123",
7738
+ "default.handlebars->119->2254",
7739
+ "default.handlebars->119->2408",
7740
+ "default.handlebars->119->3128",
7741
"default3.handlebars->117->1064",
7742
- "default3.handlebars->117->2245",
7743
- "default3.handlebars->117->2400",
7744
- "default3.handlebars->117->3111"
7742
+ "default3.handlebars->117->2250",
7743
+ "default3.handlebars->117->2405",
7744
+ "default3.handlebars->117->3117"
7745
]
7746
},
7747
{
@@ -7770,8 +7770,8 @@
7770
"zh-chs": "添加用户组设备权限",
7771
"zh-cht": "新增用戶群裝置權限",
7772
"xloc": [
7773
- "default.handlebars->119->2413",
7774
- "default3.handlebars->117->2410"
7773
+ "default.handlebars->119->2418",
7774
+ "default3.handlebars->117->2415"
7775
]
7776
},
7777
{
@@ -7800,7 +7800,7 @@
7800
"zh-chs": "将用户添加到设备组",
7801
"zh-cht": "將用戶新增到裝置群",
7802
"xloc": [
7803
- "default-mobile.handlebars->53->1019"
7803
+ "default-mobile.handlebars->53->1024"
7804
]
7805
},
7806
{
@@ -7855,10 +7855,10 @@
7855
"zh-chs": "添加用户",
7856
"zh-cht": "新增用戶",
7857
"xloc": [
7858
- "default.handlebars->119->2248",
7859
- "default.handlebars->119->2923",
7860
- "default3.handlebars->117->2244",
7861
- "default3.handlebars->117->2917"
7858
+ "default.handlebars->119->2253",
7859
+ "default.handlebars->119->2928",
7860
+ "default3.handlebars->117->2249",
7861
+ "default3.handlebars->117->2923"
7862
]
7863
},
7864
{
@@ -7887,8 +7887,8 @@
7887
"zh-chs": "将用户添加到设备组",
7888
"zh-cht": "將用戶新增到裝置群",
7889
"xloc": [
7890
- "default.handlebars->119->2400",
7891
- "default3.handlebars->117->2397"
7890
+ "default.handlebars->119->2405",
7891
+ "default3.handlebars->117->2402"
7892
]
7893
},
7894
{
@@ -7917,8 +7917,8 @@
7917
"zh-chs": "将用户添加到用户组",
7918
"zh-cht": "將用戶新增到用戶群",
7919
"xloc": [
7920
- "default.handlebars->119->2958",
7921
- "default3.handlebars->117->2952"
7920
+ "default.handlebars->119->2963",
7921
+ "default3.handlebars->117->2958"
7922
]
7923
},
7924
{
@@ -8123,9 +8123,9 @@
8123
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
8124
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
8125
"xloc": [
8126
- "default.handlebars->119->2254",
8126
+ "default.handlebars->119->2259",
8127
"default.handlebars->119->501",
8128
- "default3.handlebars->117->2250",
8128
+ "default3.handlebars->117->2255",
8129
"default3.handlebars->117->497"
8130
]
8131
},
@@ -8155,9 +8155,9 @@
8155
"zh-chs": "添加位于本地网络上的设备。",
8156
"zh-cht": "添加位於本地網絡上的設備。",
8157
"xloc": [
8158
- "default.handlebars->119->2258",
8158
+ "default.handlebars->119->2263",
8159
"default.handlebars->119->505",
8160
- "default3.handlebars->117->2254",
8160
+ "default3.handlebars->117->2259",
8161
"default3.handlebars->117->501"
8162
]
8163
},
@@ -8277,8 +8277,8 @@
8277
"zh-chs": "添加了身份验证应用程序",
8278
"zh-cht": "添加了身份驗證應用程序",
8279
"xloc": [
8280
- "default.handlebars->119->2647",
8281
- "default3.handlebars->117->2644"
8280
+ "default.handlebars->119->2652",
8281
+ "default3.handlebars->117->2649"
8282
]
8283
},
8284
{
@@ -8307,8 +8307,8 @@
8307
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
8308
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
8309
"xloc": [
8310
- "default.handlebars->119->2658",
8311
- "default3.handlebars->117->2655"
8310
+ "default.handlebars->119->2663",
8311
+ "default3.handlebars->117->2660"
8312
]
8313
},
8314
{
@@ -8337,8 +8337,8 @@
8337
"zh-chs": "添加了每天重复的设备共享 {0}。",
8338
"zh-cht": "添加了每天重複的設備共享 {0}。",
8339
"xloc": [
8340
- "default.handlebars->119->2695",
8341
- "default3.handlebars->117->2692"
8340
+ "default.handlebars->119->2700",
8341
+ "default3.handlebars->117->2697"
8342
]
8343
},
8344
{
@@ -8367,8 +8367,8 @@
8367
"zh-chs": "添加了每周重复的设备共享 {0}。",
8368
"zh-cht": "添加了每週重複的設備共享 {0}。",
8369
"xloc": [
8370
- "default.handlebars->119->2696",
8371
- "default3.handlebars->117->2693"
8370
+ "default.handlebars->119->2701",
8371
+ "default3.handlebars->117->2698"
8372
]
8373
},
8374
{
@@ -8397,8 +8397,8 @@
8397
"zh-chs": "添加了无限时间的设备共享 {0}。",
8398
"zh-cht": "添加了無限時間的設備共享 {0}。",
8399
"xloc": [
8400
- "default.handlebars->119->2688",
8401
- "default3.handlebars->117->2685"
8400
+ "default.handlebars->119->2693",
8401
+ "default3.handlebars->117->2690"
8402
]
8403
},
8404
{
@@ -8427,10 +8427,10 @@
8427
"zh-chs": "已将设备{0}添加到设备组{1}",
8428
"zh-cht": "已將設備{0}添加到設備組{1}",
8429
"xloc": [
8430
- "default.handlebars->119->2614",
8431
- "default.handlebars->119->2641",
8432
- "default3.handlebars->117->2611",
8433
- "default3.handlebars->117->2638"
8430
+ "default.handlebars->119->2619",
8431
+ "default.handlebars->119->2646",
8432
+ "default3.handlebars->117->2616",
8433
+ "default3.handlebars->117->2643"
8434
]
8435
},
8436
{
@@ -8459,8 +8459,8 @@
8459
"zh-chs": "添加登录令牌",
8460
"zh-cht": "添加了登錄令牌",
8461
"xloc": [
8462
- "default.handlebars->119->2672",
8463
- "default3.handlebars->117->2669"
8462
+ "default.handlebars->119->2677",
8463
+ "default3.handlebars->117->2674"
8464
]
8465
},
8466
{
@@ -8489,8 +8489,8 @@
8489
"zh-chs": "新增推送通知认证装置",
8490
"zh-cht": "增加推送通知認證設備",
8491
"xloc": [
8492
- "default.handlebars->119->2670",
8493
- "default3.handlebars->117->2667"
8492
+ "default.handlebars->119->2675",
8493
+ "default3.handlebars->117->2672"
8494
]
8495
},
8496
{
@@ -8519,8 +8519,8 @@
8519
"zh-chs": "添加了安全密钥",
8520
"zh-cht": "添加了安全密鑰",
8521
"xloc": [
8522
- "default.handlebars->119->2652",
8523
- "default3.handlebars->117->2649"
8522
+ "default.handlebars->119->2657",
8523
+ "default3.handlebars->117->2654"
8524
]
8525
},
8526
{
@@ -8549,8 +8549,8 @@
8549
"zh-chs": "已将用户组{0}添加到设备组{1}",
8550
"zh-cht": "已將用戶組{0}添加到設備組{1}",
8551
"xloc": [
8552
- "default.handlebars->119->2625",
8553
- "default3.handlebars->117->2622"
8552
+ "default.handlebars->119->2630",
8553
+ "default3.handlebars->117->2627"
8554
]
8555
},
8556
{
@@ -8579,10 +8579,10 @@
8579
"zh-chs": "已将用户{0}添加到用户组{1}",
8580
"zh-cht": "已將用戶{0}添加到用戶組{1}",
8581
"xloc": [
8582
- "default.handlebars->119->2628",
8583
- "default.handlebars->119->2637",
8584
- "default3.handlebars->117->2625",
8585
- "default3.handlebars->117->2634"
8582
+ "default.handlebars->119->2633",
8583
+ "default.handlebars->119->2642",
8584
+ "default3.handlebars->117->2630",
8585
+ "default3.handlebars->117->2639"
8586
]
8587
},
8588
{
@@ -8732,15 +8732,15 @@
8732
"zh-chs": "管理员PowerShell",
8733
"zh-cht": "管理員PowerShell",
8734
"xloc": [
8735
- "default.handlebars->119->3169",
8736
- "default.handlebars->119->3179",
8737
- "default.handlebars->119->3244",
8738
- "default.handlebars->119->3297",
8735
+ "default.handlebars->119->3174",
8736
+ "default.handlebars->119->3184",
8737
+ "default.handlebars->119->3249",
8738
+ "default.handlebars->119->3302",
8739
"default.handlebars->termShellContextMenu->3",
8740
- "default3.handlebars->117->3159",
8741
- "default3.handlebars->117->3169",
8742
- "default3.handlebars->117->3234",
8743
- "default3.handlebars->117->3287",
8740
+ "default3.handlebars->117->3165",
8741
+ "default3.handlebars->117->3175",
8742
+ "default3.handlebars->117->3240",
8743
+ "default3.handlebars->117->3293",
8744
"default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->3->0",
8745
"player.handlebars->29->29",
8746
"xterm.handlebars->termShellContextMenu->cxtermps"
@@ -8772,8 +8772,8 @@
8772
"zh-chs": "管理领域",
8773
"zh-cht": "管理領域",
8774
"xloc": [
8775
- "default.handlebars->119->3010",
8776
- "default3.handlebars->117->3004"
8775
+ "default.handlebars->119->3015",
8776
+ "default3.handlebars->117->3010"
8777
]
8778
},
8779
{
@@ -8833,8 +8833,8 @@
8833
"zh-chs": "管理领域",
8834
"zh-cht": "管理領域",
8835
"xloc": [
8836
- "default.handlebars->119->2855",
8837
- "default3.handlebars->117->2849"
8836
+ "default.handlebars->119->2860",
8837
+ "default3.handlebars->117->2855"
8838
]
8839
},
8840
{
@@ -8863,8 +8863,8 @@
8863
"zh-chs": "管理员",
8864
"zh-cht": "管理員",
8865
"xloc": [
8866
- "default.handlebars->119->2773",
8867
- "default3.handlebars->117->2770"
8866
+ "default.handlebars->119->2778",
8867
+ "default3.handlebars->117->2775"
8868
]
8869
},
8870
{
@@ -8894,8 +8894,8 @@
8894
"zh-cht": "南非文",
8895
"xloc": [
8896
"default-mobile.handlebars->53->115",
8897
- "default.handlebars->119->1871",
8898
- "default3.handlebars->117->1852",
8897
+ "default.handlebars->119->1876",
8898
+ "default3.handlebars->117->1857",
8899
"login2.handlebars->17->1"
8900
]
8901
},
@@ -8929,16 +8929,16 @@
8929
"default-mobile.handlebars->53->458",
8930
"default-mobile.handlebars->53->515",
8931
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8932
- "default.handlebars->119->2484",
8933
- "default.handlebars->119->2497",
8934
- "default.handlebars->119->3395",
8932
+ "default.handlebars->119->2489",
8933
+ "default.handlebars->119->2502",
8934
+ "default.handlebars->119->3400",
8935
"default.handlebars->119->422",
8936
"default.handlebars->119->729",
8937
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8938
"default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm",
8939
- "default3.handlebars->117->2481",
8940
- "default3.handlebars->117->2494",
8941
- "default3.handlebars->117->3385",
8939
+ "default3.handlebars->117->2486",
8940
+ "default3.handlebars->117->2499",
8941
+ "default3.handlebars->117->3391",
8942
"default3.handlebars->117->418",
8943
"default3.handlebars->117->725",
8944
"default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
@@ -8971,10 +8971,10 @@
8971
"zh-chs": "代理+英特尔AMT",
8972
"zh-cht": "代理+Intel® AMT",
8973
"xloc": [
8974
- "default.handlebars->119->2486",
8975
- "default.handlebars->119->2499",
8976
- "default3.handlebars->117->2483",
8977
- "default3.handlebars->117->2496"
8974
+ "default.handlebars->119->2491",
8975
+ "default.handlebars->119->2504",
8976
+ "default3.handlebars->117->2488",
8977
+ "default3.handlebars->117->2501"
8978
]
8979
},
8980
{
@@ -9034,11 +9034,11 @@
9034
"zh-chs": "代理控制台",
9035
"zh-cht": "代理控制台",
9036
"xloc": [
9037
- "default-mobile.handlebars->53->1025",
9037
+ "default-mobile.handlebars->53->1030",
9038
"default-mobile.handlebars->53->597",
9039
- "default.handlebars->119->2421",
9039
+ "default.handlebars->119->2426",
9040
"default.handlebars->119->819",
9041
- "default3.handlebars->117->2418",
9041
+ "default3.handlebars->117->2423",
9042
"default3.handlebars->117->815"
9043
]
9044
},
@@ -9068,8 +9068,8 @@
9068
"zh-chs": "代理错误计数器",
9069
"zh-cht": "代理錯誤計數器",
9070
"xloc": [
9071
- "default.handlebars->119->3363",
9072
- "default3.handlebars->117->3353"
9071
+ "default.handlebars->119->3368",
9072
+ "default3.handlebars->117->3359"
9073
]
9074
},
9075
{
@@ -9292,9 +9292,9 @@
9292
"zh-cht": "代理自行共享",
9293
"xloc": [
9294
"default.handlebars->119->1096",
9295
- "default.handlebars->119->2286",
9295
+ "default.handlebars->119->2291",
9296
"default3.handlebars->117->1092",
9297
- "default3.handlebars->117->2282"
9297
+ "default3.handlebars->117->2287"
9298
]
9299
},
9300
{
@@ -9323,8 +9323,8 @@
9323
"zh-chs": "代理会话",
9324
"zh-cht": "代理時段",
9325
"xloc": [
9326
- "default.handlebars->119->3380",
9327
- "default3.handlebars->117->3370"
9326
+ "default.handlebars->119->3385",
9327
+ "default3.handlebars->117->3376"
9328
]
9329
},
9330
{
@@ -9442,9 +9442,9 @@
9442
"zh-chs": "代理类型",
9443
"zh-cht": "代理類型",
9444
"xloc": [
9445
- "default.handlebars->119->2495",
9445
+ "default.handlebars->119->2500",
9446
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1",
9447
- "default3.handlebars->117->2492",
9447
+ "default3.handlebars->117->2497",
9448
"default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
9449
]
9450
},
@@ -9506,8 +9506,8 @@
9506
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
9507
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
9508
"xloc": [
9509
- "default.handlebars->119->2611",
9510
- "default3.handlebars->117->2608"
9509
+ "default.handlebars->119->2616",
9510
+ "default3.handlebars->117->2613"
9511
]
9512
},
9513
{
@@ -9738,9 +9738,9 @@
9738
"zh-chs": "代理离线",
9739
"zh-cht": "代理離線",
9740
"xloc": [
9741
- "default-mobile.handlebars->53->943",
9742
- "default.handlebars->119->1784",
9743
- "default3.handlebars->117->1767"
9741
+ "default-mobile.handlebars->53->948",
9742
+ "default.handlebars->119->1789",
9743
+ "default3.handlebars->117->1772"
9744
]
9745
},
9746
{
@@ -9769,9 +9769,9 @@
9769
"zh-chs": "代理在线",
9770
"zh-cht": "代理在線",
9771
"xloc": [
9772
- "default-mobile.handlebars->53->942",
9773
- "default.handlebars->119->1783",
9774
- "default3.handlebars->117->1766"
9772
+ "default-mobile.handlebars->53->947",
9773
+ "default.handlebars->119->1788",
9774
+ "default3.handlebars->117->1771"
9775
]
9776
},
9777
{
@@ -10012,11 +10012,11 @@
10012
"zh-chs": "代理",
10013
"zh-cht": "代理",
10014
"xloc": [
10015
- "default.handlebars->119->2452",
10016
- "default.handlebars->119->3408",
10015
+ "default.handlebars->119->2457",
10016
+ "default.handlebars->119->3413",
10017
"default.handlebars->119->589",
10018
- "default3.handlebars->117->2449",
10019
- "default3.handlebars->117->3398",
10018
+ "default3.handlebars->117->2454",
10019
+ "default3.handlebars->117->3404",
10020
"default3.handlebars->117->585"
10021
]
10022
},
@@ -10047,8 +10047,8 @@
10047
"zh-cht": "阿爾巴尼亞文",
10048
"xloc": [
10049
"default-mobile.handlebars->53->116",
10050
- "default.handlebars->119->1872",
10051
- "default3.handlebars->117->1853",
10050
+ "default.handlebars->119->1877",
10051
+ "default3.handlebars->117->1858",
10052
"login2.handlebars->17->2"
10053
]
10054
},
@@ -10094,9 +10094,9 @@
10094
"default-mobile.handlebars->53->372",
10095
"default-mobile.handlebars->53->698",
10096
"default-mobile.handlebars->53->700",
10097
- "default.handlebars->119->3212",
10097
+ "default.handlebars->119->3217",
10098
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1",
10099
- "default3.handlebars->117->3202",
10099
+ "default3.handlebars->117->3208",
10100
"default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1",
10101
"sharing-mobile.handlebars->53->79",
10102
"sharing-mobile.handlebars->53->81"
@@ -10128,8 +10128,8 @@
10128
"zh-chs": "全部可用",
10129
"zh-cht": "全部可用",
10130
"xloc": [
10131
- "default.handlebars->119->2735",
10132
- "default3.handlebars->117->2732"
10131
+ "default.handlebars->119->2740",
10132
+ "default3.handlebars->117->2737"
10133
]
10134
},
10135
{
@@ -10158,9 +10158,9 @@
10158
"zh-chs": "所有可用的代理",
10159
"zh-cht": "所有可用的代理",
10160
"xloc": [
10161
- "default.handlebars->119->2453",
10161
+ "default.handlebars->119->2458",
10162
"default.handlebars->119->590",
10163
- "default3.handlebars->117->2450",
10163
+ "default3.handlebars->117->2455",
10164
"default3.handlebars->117->586"
10165
]
10166
},
@@ -10220,8 +10220,8 @@
10220
"zh-chs": "所有事件",
10221
"zh-cht": "所有事件",
10222
"xloc": [
10223
- "default.handlebars->119->2733",
10224
- "default3.handlebars->117->2730"
10223
+ "default.handlebars->119->2738",
10224
+ "default3.handlebars->117->2735"
10225
]
10226
},
10227
{
@@ -10296,7 +10296,7 @@
10296
"zh-chs": "所有主题",
10297
"zh-cht": "所有主題",
10298
"xloc": [
10299
- "default3.handlebars->117->2121"
10299
+ "default3.handlebars->117->2126"
10300
]
10301
},
10302
{
@@ -10331,8 +10331,8 @@
10331
{
10332
"en": "Allow to override server device name until next connection",
10333
"xloc": [
10334
- "default.handlebars->119->2358",
10335
- "default3.handlebars->117->2355"
10334
+ "default.handlebars->119->2363",
10335
+ "default3.handlebars->117->2360"
10336
]
10337
},
10338
{
@@ -10361,10 +10361,10 @@
10361
"zh-chs": "允许用户管理此设备组和该组中的设备。",
10362
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
10363
"xloc": [
10364
- "default.handlebars->119->2365",
10365
- "default.handlebars->119->2955",
10366
- "default3.handlebars->117->2362",
10367
- "default3.handlebars->117->2949"
10364
+ "default.handlebars->119->2370",
10365
+ "default.handlebars->119->2960",
10366
+ "default3.handlebars->117->2367",
10367
+ "default3.handlebars->117->2955"
10368
]
10369
},
10370
{
@@ -10393,8 +10393,8 @@
10393
"zh-chs": "允许用户管理此设备。",
10394
"zh-cht": "允許用戶管理此裝置。",
10395
"xloc": [
10396
- "default.handlebars->119->2366",
10397
- "default3.handlebars->117->2363"
10396
+ "default.handlebars->119->2371",
10397
+ "default3.handlebars->117->2368"
10398
]
10399
},
10400
{
@@ -10736,13 +10736,13 @@
10736
"zh-chs": "一直通知",
10737
"zh-cht": "一直通知",
10738
"xloc": [
10739
- "default.handlebars->119->2225",
10740
- "default.handlebars->119->2914",
10741
- "default.handlebars->119->3019",
10739
+ "default.handlebars->119->2230",
10740
+ "default.handlebars->119->2919",
10741
+ "default.handlebars->119->3024",
10742
"default.handlebars->119->962",
10743
- "default3.handlebars->117->2221",
10744
- "default3.handlebars->117->2908",
10745
- "default3.handlebars->117->3013",
10743
+ "default3.handlebars->117->2226",
10744
+ "default3.handlebars->117->2914",
10745
+ "default3.handlebars->117->3019",
10746
"default3.handlebars->117->958"
10747
]
10748
},
@@ -10772,13 +10772,13 @@
10772
"zh-chs": "一直提示",
10773
"zh-cht": "一直提示",
10774
"xloc": [
10775
- "default.handlebars->119->2226",
10776
- "default.handlebars->119->2915",
10777
- "default.handlebars->119->3020",
10775
+ "default.handlebars->119->2231",
10776
+ "default.handlebars->119->2920",
10777
+ "default.handlebars->119->3025",
10778
"default.handlebars->119->963",
10779
- "default3.handlebars->117->2222",
10780
- "default3.handlebars->117->2909",
10781
- "default3.handlebars->117->3014",
10779
+ "default3.handlebars->117->2227",
10780
+ "default3.handlebars->117->2915",
10781
+ "default3.handlebars->117->3020",
10782
"default3.handlebars->117->959"
10783
]
10784
},
@@ -10886,8 +10886,8 @@
10886
"pl": "Wystąpił nieznany błąd.",
10887
"uk": "Сталася невідома помилка.",
10888
"xloc": [
10889
- "default.handlebars->119->3158",
10890
- "default3.handlebars->117->3148"
10889
+ "default.handlebars->119->3163",
10890
+ "default3.handlebars->117->3154"
10891
]
10892
},
10893
{
@@ -10952,7 +10952,7 @@
10952
"zh-chs": "Android APK",
10953
"zh-cht": "Android APK",
10954
"xloc": [
10955
- "default-mobile.handlebars->53->997",
10955
+ "default-mobile.handlebars->53->1002",
10956
"default.handlebars->119->658",
10957
"default3.handlebars->117->654"
10958
]
@@ -11038,7 +11038,7 @@
11038
"zh-chs": "安卓安装",
11039
"zh-cht": "安卓安裝",
11040
"xloc": [
11041
- "default-mobile.handlebars->53->999"
11041
+ "default-mobile.handlebars->53->1004"
11042
]
11043
},
11044
{
@@ -11119,10 +11119,10 @@
11119
"zh-chs": "杀毒软件未激活",
11120
"zh-cht": "殺毒軟件未激活",
11121
"xloc": [
11122
- "default.handlebars->119->2488",
11123
- "default.handlebars->119->2502",
11124
- "default3.handlebars->117->2485",
11125
- "default3.handlebars->117->2499"
11122
+ "default.handlebars->119->2493",
11123
+ "default.handlebars->119->2507",
11124
+ "default3.handlebars->117->2490",
11125
+ "default3.handlebars->117->2504"
11126
]
11127
},
11128
{
@@ -11566,8 +11566,8 @@
11566
"zh-cht": "阿拉伯文(阿爾及利亞)",
11567
"xloc": [
11568
"default-mobile.handlebars->53->118",
11569
- "default.handlebars->119->1874",
11570
- "default3.handlebars->117->1855",
11569
+ "default.handlebars->119->1879",
11570
+ "default3.handlebars->117->1860",
11571
"login2.handlebars->17->4"
11572
]
11573
},
@@ -11598,8 +11598,8 @@
11598
"zh-cht": "阿拉伯文(巴林)",
11599
"xloc": [
11600
"default-mobile.handlebars->53->119",
11601
- "default.handlebars->119->1875",
11602
- "default3.handlebars->117->1856",
11601
+ "default.handlebars->119->1880",
11602
+ "default3.handlebars->117->1861",
11603
"login2.handlebars->17->5"
11604
]
11605
},
@@ -11630,8 +11630,8 @@
11630
"zh-cht": "阿拉伯文(埃及)",
11631
"xloc": [
11632
"default-mobile.handlebars->53->120",
11633
- "default.handlebars->119->1876",
11634
- "default3.handlebars->117->1857",
11633
+ "default.handlebars->119->1881",
11634
+ "default3.handlebars->117->1862",
11635
"login2.handlebars->17->6"
11636
]
11637
},
@@ -11662,8 +11662,8 @@
11662
"zh-cht": "阿拉伯文(伊拉克)",
11663
"xloc": [
11664
"default-mobile.handlebars->53->121",
11665
- "default.handlebars->119->1877",
11666
- "default3.handlebars->117->1858",
11665
+ "default.handlebars->119->1882",
11666
+ "default3.handlebars->117->1863",
11667
"login2.handlebars->17->7"
11668
]
11669
},
@@ -11694,8 +11694,8 @@
11694
"zh-cht": "阿拉伯文(約旦)",
11695
"xloc": [
11696
"default-mobile.handlebars->53->122",
11697
- "default.handlebars->119->1878",
11698
- "default3.handlebars->117->1859",
11697
+ "default.handlebars->119->1883",
11698
+ "default3.handlebars->117->1864",
11699
"login2.handlebars->17->8"
11700
]
11701
},
@@ -11726,8 +11726,8 @@
11726
"zh-cht": "阿拉伯文(科威特)",
11727
"xloc": [
11728
"default-mobile.handlebars->53->123",
11729
- "default.handlebars->119->1879",
11730
- "default3.handlebars->117->1860",
11729
+ "default.handlebars->119->1884",
11730
+ "default3.handlebars->117->1865",
11731
"login2.handlebars->17->9"
11732
]
11733
},
@@ -11758,8 +11758,8 @@
11758
"zh-cht": "阿拉伯文(黎巴嫩)",
11759
"xloc": [
11760
"default-mobile.handlebars->53->124",
11761
- "default.handlebars->119->1880",
11762
- "default3.handlebars->117->1861",
11761
+ "default.handlebars->119->1885",
11762
+ "default3.handlebars->117->1866",
11763
"login2.handlebars->17->10"
11764
]
11765
},
@@ -11790,8 +11790,8 @@
11790
"zh-cht": "阿拉伯文(利比亞)",
11791
"xloc": [
11792
"default-mobile.handlebars->53->125",
11793
- "default.handlebars->119->1881",
11794
- "default3.handlebars->117->1862",
11793
+ "default.handlebars->119->1886",
11794
+ "default3.handlebars->117->1867",
11795
"login2.handlebars->17->11"
11796
]
11797
},
@@ -11822,8 +11822,8 @@
11822
"zh-cht": "阿拉伯文(摩洛哥)",
11823
"xloc": [
11824
"default-mobile.handlebars->53->126",
11825
- "default.handlebars->119->1882",
11826
- "default3.handlebars->117->1863",
11825
+ "default.handlebars->119->1887",
11826
+ "default3.handlebars->117->1868",
11827
"login2.handlebars->17->12"
11828
]
11829
},
@@ -11854,8 +11854,8 @@
11854
"zh-cht": "阿拉伯文(阿曼)",
11855
"xloc": [
11856
"default-mobile.handlebars->53->127",
11857
- "default.handlebars->119->1883",
11858
- "default3.handlebars->117->1864",
11857
+ "default.handlebars->119->1888",
11858
+ "default3.handlebars->117->1869",
11859
"login2.handlebars->17->13"
11860
]
11861
},
@@ -11886,8 +11886,8 @@
11886
"zh-cht": "阿拉伯文(卡塔爾)",
11887
"xloc": [
11888
"default-mobile.handlebars->53->128",
11889
- "default.handlebars->119->1884",
11890
- "default3.handlebars->117->1865",
11889
+ "default.handlebars->119->1889",
11890
+ "default3.handlebars->117->1870",
11891
"login2.handlebars->17->14"
11892
]
11893
},
@@ -11918,8 +11918,8 @@
11918
"zh-cht": "阿拉伯文(沙特阿拉伯)",
11919
"xloc": [
11920
"default-mobile.handlebars->53->129",
11921
- "default.handlebars->119->1885",
11922
- "default3.handlebars->117->1866",
11921
+ "default.handlebars->119->1890",
11922
+ "default3.handlebars->117->1871",
11923
"login2.handlebars->17->15"
11924
]
11925
},
@@ -11950,8 +11950,8 @@
11950
"zh-cht": "阿拉伯文(標準)",
11951
"xloc": [
11952
"default-mobile.handlebars->53->117",
11953
- "default.handlebars->119->1873",
11954
- "default3.handlebars->117->1854",
11953
+ "default.handlebars->119->1878",
11954
+ "default3.handlebars->117->1859",
11955
"login2.handlebars->17->3"
11956
]
11957
},
@@ -11982,8 +11982,8 @@
11982
"zh-cht": "阿拉伯文(敘利亞)",
11983
"xloc": [
11984
"default-mobile.handlebars->53->130",
11985
- "default.handlebars->119->1886",
11986
- "default3.handlebars->117->1867",
11985
+ "default.handlebars->119->1891",
11986
+ "default3.handlebars->117->1872",
11987
"login2.handlebars->17->16"
11988
]
11989
},
@@ -12014,8 +12014,8 @@
12014
"zh-cht": "阿拉伯文(突尼斯)",
12015
"xloc": [
12016
"default-mobile.handlebars->53->131",
12017
- "default.handlebars->119->1887",
12018
- "default3.handlebars->117->1868",
12017
+ "default.handlebars->119->1892",
12018
+ "default3.handlebars->117->1873",
12019
"login2.handlebars->17->17"
12020
]
12021
},
@@ -12046,8 +12046,8 @@
12046
"zh-cht": "阿拉伯文(阿聯酋)",
12047
"xloc": [
12048
"default-mobile.handlebars->53->132",
12049
- "default.handlebars->119->1888",
12050
- "default3.handlebars->117->1869",
12049
+ "default.handlebars->119->1893",
12050
+ "default3.handlebars->117->1874",
12051
"login2.handlebars->17->18"
12052
]
12053
},
@@ -12078,8 +12078,8 @@
12078
"zh-cht": "阿拉伯文(也門)",
12079
"xloc": [
12080
"default-mobile.handlebars->53->133",
12081
- "default.handlebars->119->1889",
12082
- "default3.handlebars->117->1870",
12081
+ "default.handlebars->119->1894",
12082
+ "default3.handlebars->117->1875",
12083
"login2.handlebars->17->19"
12084
]
12085
},
@@ -12110,8 +12110,8 @@
12110
"zh-cht": "阿拉貢文",
12111
"xloc": [
12112
"default-mobile.handlebars->53->134",
12113
- "default.handlebars->119->1890",
12114
- "default3.handlebars->117->1871",
12113
+ "default.handlebars->119->1895",
12114
+ "default3.handlebars->117->1876",
12115
"login2.handlebars->17->20"
12116
]
12117
},
@@ -12208,9 +12208,9 @@
12208
"zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
12209
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
12210
"xloc": [
12211
- "default-mobile.handlebars->53->985",
12212
- "default.handlebars->119->2330",
12213
- "default3.handlebars->117->2324"
12211
+ "default-mobile.handlebars->53->990",
12212
+ "default.handlebars->119->2335",
12213
+ "default3.handlebars->117->2329"
12214
]
12215
},
12216
{
@@ -12343,8 +12343,8 @@
12343
"zh-chs": "您确定要{0}插件吗:{1}",
12344
"zh-cht": "你確定要{0}外掛嗎:{1}",
12345
"xloc": [
12346
- "default.handlebars->119->3461",
12347
- "default3.handlebars->117->3451"
12346
+ "default.handlebars->119->3466",
12347
+ "default3.handlebars->117->3457"
12348
]
12349
},
12350
{
@@ -12405,8 +12405,8 @@
12405
"zh-cht": "亞美尼亞文",
12406
"xloc": [
12407
"default-mobile.handlebars->53->135",
12408
- "default.handlebars->119->1891",
12409
- "default3.handlebars->117->1872",
12408
+ "default.handlebars->119->1896",
12409
+ "default3.handlebars->117->1877",
12410
"login2.handlebars->17->21"
12411
]
12412
},
@@ -12619,11 +12619,42 @@
12619
"zh-cht": "阿薩姆文",
12620
"xloc": [
12621
"default-mobile.handlebars->53->136",
12622
- "default.handlebars->119->1892",
12623
- "default3.handlebars->117->1873",
12622
+ "default.handlebars->119->1897",
12623
+ "default3.handlebars->117->1878",
12624
"login2.handlebars->17->22"
12625
]
12626
},
12627
+ {
12628
+ "bs": "Oznaka imovine",
12629
+ "ca": "Etiqueta d'actiu",
12630
+ "cs": "Štítek majetku",
12631
+ "da": "Aktivmærkat",
12632
+ "de": "Anlageetikett",
12633
+ "en": "Asset Tag",
12634
+ "es": "Etiqueta de activo",
12635
+ "fi": "Omaisuusmerkintä",
12636
+ "fr": "Étiquette d'actif",
12637
+ "hi": "एसेट टैग",
12638
+ "hu": "Eszközcímke",
12639
+ "it": "Tag risorsa",
12640
+ "ja": "アセットタグ",
12641
+ "ko": "자산 태그",
12642
+ "nl": "Activatag",
12643
+ "pl": "Etykieta zasobu",
12644
+ "pt": "Etiqueta de ativo",
12645
+ "pt-br": "Etiqueta de ativo",
12646
+ "ru": "Тег актива",
12647
+ "sv": "Tillgångsetikett",
12648
+ "tr": "Varlık Etiketi",
12649
+ "uk": "Тег активу",
12650
+ "zh-chs": "资产标签",
12651
+ "zh-cht": "資產標籤",
12652
+ "xloc": [
12653
+ "default-mobile.handlebars->53->845",
12654
+ "default.handlebars->119->1685",
12655
+ "default3.handlebars->117->1668"
12656
+ ]
12657
+ },
12658
{
12659
"bs": "Asistent",
12660
"ca": "Assistent",
@@ -12799,8 +12830,8 @@
12830
"zh-cht": "阿斯圖里亞斯文",
12831
"xloc": [
12832
"default-mobile.handlebars->53->137",
12802
- "default.handlebars->119->1893",
12803
- "default3.handlebars->117->1874",
12833
+ "default.handlebars->119->1898",
12834
+ "default3.handlebars->117->1879",
12835
"login2.handlebars->17->23"
12836
]
12837
},
@@ -12830,8 +12861,8 @@
12861
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
12862
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
12863
"xloc": [
12833
- "default.handlebars->119->2580",
12834
- "default3.handlebars->117->2577"
12864
+ "default.handlebars->119->2585",
12865
+ "default3.handlebars->117->2582"
12866
]
12867
},
12868
{
@@ -12931,8 +12962,8 @@
12962
"zh-chs": "认证软件",
12963
"zh-cht": "認證軟體",
12964
"xloc": [
12934
- "default.handlebars->119->3023",
12935
- "default3.handlebars->117->3017"
12965
+ "default.handlebars->119->3028",
12966
+ "default3.handlebars->117->3023"
12967
]
12968
},
12969
{
@@ -12961,12 +12992,12 @@
12992
"zh-chs": "认证设备",
12993
"zh-cht": "認證設備",
12994
"xloc": [
12964
- "default.handlebars->119->1854",
12965
- "default.handlebars->119->1856",
12966
- "default.handlebars->119->1860",
12967
- "default3.handlebars->117->1836",
12968
- "default3.handlebars->117->1838",
12969
- "default3.handlebars->117->1841"
12995
+ "default.handlebars->119->1859",
12996
+ "default.handlebars->119->1861",
12997
+ "default.handlebars->119->1865",
12998
+ "default3.handlebars->117->1841",
12999
+ "default3.handlebars->117->1843",
13000
+ "default3.handlebars->117->1846"
13001
]
13002
},
13003
{
@@ -13035,12 +13066,12 @@
13066
"default-mobile.handlebars->53->322",
13067
"default-mobile.handlebars->53->75",
13068
"default-mobile.handlebars->53->80",
13038
- "default.handlebars->119->1850",
13039
- "default.handlebars->119->1852",
13069
+ "default.handlebars->119->1855",
13070
+ "default.handlebars->119->1857",
13071
"default.handlebars->119->230",
13072
"default.handlebars->119->235",
13042
- "default3.handlebars->117->1832",
13043
- "default3.handlebars->117->1834",
13073
+ "default3.handlebars->117->1837",
13074
+ "default3.handlebars->117->1839",
13075
"default3.handlebars->117->227",
13076
"default3.handlebars->117->232"
13077
]
@@ -13192,10 +13223,10 @@
13223
"zh-chs": "自动删除",
13224
"zh-cht": "自動刪除",
13225
"xloc": [
13195
- "default.handlebars->119->2208",
13196
- "default.handlebars->119->2726",
13197
- "default3.handlebars->117->2204",
13198
- "default3.handlebars->117->2723"
13226
+ "default.handlebars->119->2213",
13227
+ "default.handlebars->119->2731",
13228
+ "default3.handlebars->117->2209",
13229
+ "default3.handlebars->117->2728"
13230
]
13231
},
13232
{
@@ -13261,8 +13292,8 @@
13292
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
13293
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
13294
"xloc": [
13264
- "default.handlebars->119->2661",
13265
- "default3.handlebars->117->2658"
13295
+ "default.handlebars->119->2666",
13296
+ "default3.handlebars->117->2663"
13297
]
13298
},
13299
{
@@ -13379,8 +13410,8 @@
13410
"zh-chs": "自动移除非活动设备",
13411
"zh-cht": "自動移除非活動設備",
13412
"xloc": [
13382
- "default.handlebars->119->2360",
13383
- "default3.handlebars->117->2357"
13413
+ "default.handlebars->119->2365",
13414
+ "default3.handlebars->117->2362"
13415
]
13416
},
13417
{
@@ -13409,8 +13440,8 @@
13440
"zh-chs": "可用內存",
13441
"zh-cht": "可用內存",
13442
"xloc": [
13412
- "default.handlebars->119->3389",
13413
- "default3.handlebars->117->3379"
13443
+ "default.handlebars->119->3394",
13444
+ "default3.handlebars->117->3385"
13445
]
13446
},
13447
{
@@ -13440,8 +13471,8 @@
13471
"zh-cht": "阿塞拜疆文",
13472
"xloc": [
13473
"default-mobile.handlebars->53->138",
13443
- "default.handlebars->119->1894",
13444
- "default3.handlebars->117->1875",
13474
+ "default.handlebars->119->1899",
13475
+ "default3.handlebars->117->1880",
13476
"login2.handlebars->17->24"
13477
]
13478
},
@@ -13717,12 +13748,12 @@
13748
"zh-chs": "后台运行与交互式运行",
13749
"zh-cht": "背景與互動",
13750
"xloc": [
13720
- "default.handlebars->119->2459",
13721
- "default.handlebars->119->2466",
13751
+ "default.handlebars->119->2464",
13752
+ "default.handlebars->119->2471",
13753
"default.handlebars->119->576",
13754
"default.handlebars->119->597",
13724
- "default3.handlebars->117->2456",
13725
- "default3.handlebars->117->2463",
13755
+ "default3.handlebars->117->2461",
13756
+ "default3.handlebars->117->2468",
13757
"default3.handlebars->117->572",
13758
"default3.handlebars->117->593"
13759
]
@@ -13754,13 +13785,13 @@
13785
"zh-cht": "僅背景",
13786
"xloc": [
13787
"agentinvite.handlebars->13->9",
13757
- "default.handlebars->119->2460",
13758
- "default.handlebars->119->2468",
13788
+ "default.handlebars->119->2465",
13789
+ "default.handlebars->119->2473",
13790
"default.handlebars->119->577",
13791
"default.handlebars->119->598",
13792
"default.handlebars->119->615",
13762
- "default3.handlebars->117->2457",
13763
- "default3.handlebars->117->2465",
13793
+ "default3.handlebars->117->2462",
13794
+ "default3.handlebars->117->2470",
13795
"default3.handlebars->117->573",
13796
"default3.handlebars->117->594",
13797
"default3.handlebars->117->611"
@@ -13823,10 +13854,10 @@
13854
"zh-chs": "备用码",
13855
"zh-cht": "備用碼",
13856
"xloc": [
13826
- "default.handlebars->119->3027",
13827
- "default.handlebars->119->3265",
13828
- "default3.handlebars->117->3021",
13829
- "default3.handlebars->117->3255"
13857
+ "default.handlebars->119->3032",
13858
+ "default.handlebars->119->3270",
13859
+ "default3.handlebars->117->3027",
13860
+ "default3.handlebars->117->3261"
13861
]
13862
},
13863
{
@@ -13916,8 +13947,8 @@
13947
"zh-chs": "错误的签名",
13948
"zh-cht": "錯誤的簽名",
13949
"xloc": [
13919
- "default.handlebars->119->3370",
13920
- "default3.handlebars->117->3360"
13950
+ "default.handlebars->119->3375",
13951
+ "default3.handlebars->117->3366"
13952
]
13953
},
13954
{
@@ -13946,8 +13977,8 @@
13977
"zh-chs": "错误的网络证书",
13978
"zh-cht": "錯誤的網絡憑證",
13979
"xloc": [
13949
- "default.handlebars->119->3369",
13950
- "default3.handlebars->117->3359"
13980
+ "default.handlebars->119->3374",
13981
+ "default3.handlebars->117->3365"
13982
]
13983
},
13984
{
@@ -13977,8 +14008,8 @@
14008
"zh-cht": "巴斯克",
14009
"xloc": [
14010
"default-mobile.handlebars->53->139",
13980
- "default.handlebars->119->1895",
13981
- "default3.handlebars->117->1876",
14011
+ "default.handlebars->119->1900",
14012
+ "default3.handlebars->117->1881",
14013
"login2.handlebars->17->25"
14014
]
14015
},
@@ -14083,8 +14114,8 @@
14114
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
14115
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
14116
"xloc": [
14086
- "default.handlebars->119->2660",
14087
- "default3.handlebars->117->2657"
14117
+ "default.handlebars->119->2665",
14118
+ "default3.handlebars->117->2662"
14119
]
14120
},
14121
{
@@ -14110,9 +14141,9 @@
14141
"zh-chs": "电池",
14142
"zh-cht": "電池",
14143
"xloc": [
14113
- "default-mobile.handlebars->53->885",
14114
- "default.handlebars->119->1725",
14115
- "default3.handlebars->117->1708"
14144
+ "default-mobile.handlebars->53->890",
14145
+ "default.handlebars->119->1730",
14146
+ "default3.handlebars->117->1713"
14147
]
14148
},
14149
{
@@ -14140,9 +14171,9 @@
14171
"zh-chs": "电池充电",
14172
"zh-cht": "電池充電",
14173
"xloc": [
14143
- "default-mobile.handlebars->53->883",
14144
- "default.handlebars->119->1723",
14145
- "default3.handlebars->117->1706"
14174
+ "default-mobile.handlebars->53->888",
14175
+ "default.handlebars->119->1728",
14176
+ "default3.handlebars->117->1711"
14177
]
14178
},
14179
{
@@ -14172,8 +14203,8 @@
14203
"zh-cht": "白俄羅斯文",
14204
"xloc": [
14205
"default-mobile.handlebars->53->141",
14175
- "default.handlebars->119->1897",
14176
- "default3.handlebars->117->1878",
14206
+ "default.handlebars->119->1902",
14207
+ "default3.handlebars->117->1883",
14208
"login2.handlebars->17->27"
14209
]
14210
},
@@ -14204,8 +14235,8 @@
14235
"zh-cht": "孟加拉",
14236
"xloc": [
14237
"default-mobile.handlebars->53->142",
14207
- "default.handlebars->119->1898",
14208
- "default3.handlebars->117->1879",
14238
+ "default.handlebars->119->1903",
14239
+ "default3.handlebars->117->1884",
14240
"login2.handlebars->17->28"
14241
]
14242
},
@@ -14273,9 +14304,9 @@
14304
"nl": "BitLocker",
14305
"uk": "BitLocker",
14306
"xloc": [
14276
- "default-mobile.handlebars->53->920",
14277
- "default.handlebars->119->1760",
14278
- "default3.handlebars->117->1743"
14307
+ "default-mobile.handlebars->53->925",
14308
+ "default.handlebars->119->1765",
14309
+ "default3.handlebars->117->1748"
14310
]
14311
},
14312
{
@@ -14285,9 +14316,9 @@
14316
"pl": "Informacje o BitLocker",
14317
"uk": "Інформація о BitLocker",
14318
"xloc": [
14288
- "default-mobile.handlebars->53->941",
14289
- "default.handlebars->119->1781",
14290
- "default3.handlebars->117->1764"
14319
+ "default-mobile.handlebars->53->946",
14320
+ "default.handlebars->119->1786",
14321
+ "default3.handlebars->117->1769"
14322
]
14323
},
14324
{
@@ -14348,8 +14379,8 @@
14379
"zh-cht": "波斯尼亞文",
14380
"xloc": [
14381
"default-mobile.handlebars->53->143",
14351
- "default.handlebars->119->1899",
14352
- "default3.handlebars->117->1880",
14382
+ "default.handlebars->119->1904",
14383
+ "default3.handlebars->117->1885",
14384
"login2.handlebars->17->29"
14385
]
14386
},
@@ -14380,8 +14411,8 @@
14411
"zh-cht": "布列塔尼",
14412
"xloc": [
14413
"default-mobile.handlebars->53->144",
14383
- "default.handlebars->119->1900",
14384
- "default3.handlebars->117->1881",
14414
+ "default.handlebars->119->1905",
14415
+ "default3.handlebars->117->1886",
14416
"login2.handlebars->17->30"
14417
]
14418
},
@@ -14411,9 +14442,9 @@
14442
"zh-chs": "广播",
14443
"zh-cht": "廣播",
14444
"xloc": [
14414
- "default.handlebars->119->2921",
14445
+ "default.handlebars->119->2926",
14446
"default.handlebars->container->column_l->p4->3->1->0->3->1",
14416
- "default3.handlebars->117->2915",
14447
+ "default3.handlebars->117->2921",
14448
"default3.handlebars->container->column_l->p4->3->1->0->1->3"
14449
]
14450
},
@@ -14443,8 +14474,8 @@
14474
"zh-chs": "广播消息",
14475
"zh-cht": "廣播消息",
14476
"xloc": [
14446
- "default.handlebars->119->2837",
14447
- "default3.handlebars->117->2833"
14477
+ "default.handlebars->119->2842",
14478
+ "default3.handlebars->117->2839"
14479
]
14480
},
14481
{
@@ -14473,8 +14504,8 @@
14504
"zh-chs": "向所有连接的用户广播消息。",
14505
"zh-cht": "向所有連接的用戶廣播消息。",
14506
"xloc": [
14476
- "default.handlebars->119->2832",
14477
- "default3.handlebars->117->2828"
14507
+ "default.handlebars->119->2837",
14508
+ "default3.handlebars->117->2834"
14509
]
14510
},
14511
{
@@ -14503,8 +14534,8 @@
14534
"zh-chs": "浏览器",
14535
"zh-cht": "瀏覽器",
14536
"xloc": [
14506
- "default.handlebars->119->3236",
14507
- "default3.handlebars->117->3226"
14537
+ "default.handlebars->119->3241",
14538
+ "default3.handlebars->117->3232"
14539
]
14540
},
14541
{
@@ -14595,8 +14626,8 @@
14626
"zh-cht": "保加利亞文",
14627
"xloc": [
14628
"default-mobile.handlebars->53->140",
14598
- "default.handlebars->119->1896",
14599
- "default3.handlebars->117->1877",
14629
+ "default.handlebars->119->1901",
14630
+ "default3.handlebars->117->1882",
14631
"login2.handlebars->17->26"
14632
]
14633
},
@@ -14627,8 +14658,8 @@
14658
"zh-cht": "緬甸文",
14659
"xloc": [
14660
"default-mobile.handlebars->53->145",
14630
- "default.handlebars->119->1901",
14631
- "default3.handlebars->117->1882",
14661
+ "default.handlebars->119->1906",
14662
+ "default3.handlebars->117->1887",
14663
"login2.handlebars->17->31"
14664
]
14665
},
@@ -14658,8 +14689,8 @@
14689
"zh-chs": "默认情况下,不活动的设备将在 1 天后移除。",
14690
"zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
14691
"xloc": [
14661
- "default.handlebars->119->2362",
14662
- "default3.handlebars->117->2359"
14692
+ "default.handlebars->119->2367",
14693
+ "default3.handlebars->117->2364"
14694
]
14695
},
14696
{
@@ -14688,8 +14719,8 @@
14719
"zh-chs": "默认情况下,非活动设备将在 {0} 天后移除。",
14720
"zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
14721
"xloc": [
14691
- "default.handlebars->119->2363",
14692
- "default3.handlebars->117->2360"
14722
+ "default.handlebars->119->2368",
14723
+ "default3.handlebars->117->2365"
14724
]
14725
},
14726
{
@@ -14731,8 +14762,8 @@
14762
"zh-chs": "字节输入",
14763
"zh-cht": "字節輸入",
14764
"xloc": [
14734
- "default.handlebars->119->3232",
14735
- "default3.handlebars->117->3222"
14765
+ "default.handlebars->119->3237",
14766
+ "default3.handlebars->117->3228"
14767
]
14768
},
14769
{
@@ -14761,8 +14792,8 @@
14792
"zh-chs": "字节输出",
14793
"zh-cht": "字節輸出",
14794
"xloc": [
14764
- "default.handlebars->119->3233",
14765
- "default3.handlebars->117->3223"
14795
+ "default.handlebars->119->3238",
14796
+ "default3.handlebars->117->3229"
14797
]
14798
},
14799
{
@@ -14871,8 +14902,8 @@
14902
"zh-chs": "CCM模式",
14903
"zh-cht": "CCM模式",
14904
"xloc": [
14874
- "default.handlebars->119->2313",
14875
- "default3.handlebars->117->2307"
14905
+ "default.handlebars->119->2318",
14906
+ "default3.handlebars->117->2312"
14907
]
14908
},
14909
{
@@ -14880,15 +14911,15 @@
14911
"en": "CD-ROM",
14912
"nl": "CD-ROM",
14913
"xloc": [
14883
- "default-mobile.handlebars->53->913",
14884
- "default-mobile.handlebars->53->925",
14885
- "default-mobile.handlebars->53->932",
14886
- "default.handlebars->119->1753",
14887
- "default.handlebars->119->1765",
14888
- "default.handlebars->119->1772",
14889
- "default3.handlebars->117->1736",
14890
- "default3.handlebars->117->1748",
14891
- "default3.handlebars->117->1755"
14914
+ "default-mobile.handlebars->53->918",
14915
+ "default-mobile.handlebars->53->930",
14916
+ "default-mobile.handlebars->53->937",
14917
+ "default.handlebars->119->1758",
14918
+ "default.handlebars->119->1770",
14919
+ "default.handlebars->119->1777",
14920
+ "default3.handlebars->117->1741",
14921
+ "default3.handlebars->117->1753",
14922
+ "default3.handlebars->117->1760"
14923
]
14924
},
14925
{
@@ -14918,10 +14949,10 @@
14949
"zh-cht": "CIRA",
14950
"xloc": [
14951
"default-mobile.handlebars->53->459",
14921
- "default.handlebars->119->3396",
14952
+ "default.handlebars->119->3401",
14953
"default.handlebars->119->424",
14954
"default.handlebars->119->731",
14924
- "default3.handlebars->117->3386",
14955
+ "default3.handlebars->117->3392",
14956
"default3.handlebars->117->420",
14957
"default3.handlebars->117->727"
14958
]
@@ -14952,8 +14983,8 @@
14983
"zh-chs": "CIRA服务器",
14984
"zh-cht": "CIRA伺服器",
14985
"xloc": [
14955
- "default.handlebars->119->3445",
14956
- "default3.handlebars->117->3435"
14986
+ "default.handlebars->119->3450",
14987
+ "default3.handlebars->117->3441"
14988
]
14989
},
14990
{
@@ -14982,8 +15013,8 @@
15013
"zh-chs": "CIRA服务器命令",
15014
"zh-cht": "CIRA伺服器指令",
15015
"xloc": [
14985
- "default.handlebars->119->3446",
14986
- "default3.handlebars->117->3436"
15016
+ "default.handlebars->119->3451",
15017
+ "default3.handlebars->117->3442"
15018
]
15019
},
15020
{
@@ -15042,8 +15073,8 @@
15073
"zh-chs": "CIRA设置",
15074
"zh-cht": "CIRA設置",
15075
"xloc": [
15045
- "default.handlebars->119->2321",
15046
- "default3.handlebars->117->2314"
15076
+ "default.handlebars->119->2326",
15077
+ "default3.handlebars->117->2319"
15078
]
15079
},
15080
{
@@ -15075,11 +15106,11 @@
15106
"default-mobile.handlebars->53->839",
15107
"default.handlebars->119->1589",
15108
"default.handlebars->119->1679",
15078
- "default.handlebars->119->3421",
15109
+ "default.handlebars->119->3426",
15110
"default.handlebars->container->column_l->p40->3->1->p40type->5",
15111
"default3.handlebars->117->1574",
15112
"default3.handlebars->117->1662",
15082
- "default3.handlebars->117->3411",
15113
+ "default3.handlebars->117->3417",
15114
"default3.handlebars->container->column_l->p40->3->3->p40type->5"
15115
]
15116
},
@@ -15109,8 +15140,8 @@
15140
"zh-chs": "CPU负载",
15141
"zh-cht": "CPU負載",
15142
"xloc": [
15112
- "default.handlebars->119->3385",
15113
- "default3.handlebars->117->3375"
15143
+ "default.handlebars->119->3390",
15144
+ "default3.handlebars->117->3381"
15145
]
15146
},
15147
{
@@ -15139,8 +15170,8 @@
15170
"zh-chs": "最近15分钟的CPU负载",
15171
"zh-cht": "最近15分鐘的CPU負載",
15172
"xloc": [
15142
- "default.handlebars->119->3388",
15143
- "default3.handlebars->117->3378"
15173
+ "default.handlebars->119->3393",
15174
+ "default3.handlebars->117->3384"
15175
]
15176
},
15177
{
@@ -15169,8 +15200,8 @@
15200
"zh-chs": "最近5分钟的CPU负载",
15201
"zh-cht": "最近5分鐘的CPU負載",
15202
"xloc": [
15172
- "default.handlebars->119->3387",
15173
- "default3.handlebars->117->3377"
15203
+ "default.handlebars->119->3392",
15204
+ "default3.handlebars->117->3383"
15205
]
15206
},
15207
{
@@ -15199,8 +15230,8 @@
15230
"zh-chs": "最近一分钟的CPU负载",
15231
"zh-cht": "最近一分鐘的CPU負載",
15232
"xloc": [
15202
- "default.handlebars->119->3386",
15203
- "default3.handlebars->117->3376"
15233
+ "default.handlebars->119->3391",
15234
+ "default3.handlebars->117->3382"
15235
]
15236
},
15237
{
@@ -15266,8 +15297,8 @@
15297
"zh-chs": "CSV",
15298
"zh-cht": "CSV",
15299
"xloc": [
15269
- "default.handlebars->119->2743",
15270
- "default3.handlebars->117->2740"
15300
+ "default.handlebars->119->2748",
15301
+ "default3.handlebars->117->2745"
15302
]
15303
},
15304
{
@@ -15296,11 +15327,11 @@
15327
"zh-chs": "CSV格式",
15328
"zh-cht": "CSV格式",
15329
"xloc": [
15299
- "default.handlebars->119->2747",
15300
- "default.handlebars->119->2824",
15330
+ "default.handlebars->119->2752",
15331
+ "default.handlebars->119->2829",
15332
"default.handlebars->119->804",
15302
- "default3.handlebars->117->2744",
15303
- "default3.handlebars->117->2820",
15333
+ "default3.handlebars->117->2749",
15334
+ "default3.handlebars->117->2826",
15335
"default3.handlebars->117->800"
15336
]
15337
},
@@ -15310,8 +15341,8 @@
15341
"nl": "Het CSV bestandsformaat is als volgt:",
15342
"uk": "Формат файлу CSV нижче:",
15343
"xloc": [
15313
- "default.handlebars->119->2810",
15314
- "default3.handlebars->117->2806"
15344
+ "default.handlebars->119->2815",
15345
+ "default3.handlebars->117->2812"
15346
]
15347
},
15348
{
@@ -15366,8 +15397,8 @@
15397
"zh-chs": "呼叫错误",
15398
"zh-cht": "呼叫錯誤",
15399
"xloc": [
15369
- "default.handlebars->119->3462",
15370
- "default3.handlebars->117->3452"
15400
+ "default.handlebars->119->3467",
15401
+ "default3.handlebars->117->3458"
15402
]
15403
},
15404
{
@@ -15380,10 +15411,10 @@
15411
"pl": "CallMeBot",
15412
"uk": "CallMeBot",
15413
"xloc": [
15383
- "default.handlebars->119->1819",
15384
- "default.handlebars->119->3062",
15385
- "default3.handlebars->117->1801",
15386
- "default3.handlebars->117->3056"
15414
+ "default.handlebars->119->1824",
15415
+ "default.handlebars->119->3067",
15416
+ "default3.handlebars->117->1806",
15417
+ "default3.handlebars->117->3062"
15418
]
15419
},
15420
{
@@ -15445,8 +15476,8 @@
15476
"agent-translations.json",
15477
"default-mobile.handlebars->53->331",
15478
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
15448
- "default.handlebars->119->2175",
15449
- "default.handlebars->119->3451",
15479
+ "default.handlebars->119->2180",
15480
+ "default.handlebars->119->3456",
15481
"default.handlebars->119->549",
15482
"default.handlebars->container->dialog->idx_dlgButtonBar",
15483
"default3.handlebars->117->545",
@@ -15569,30 +15600,30 @@
15600
"zh-chs": "容量",
15601
"zh-cht": "容量",
15602
"xloc": [
15572
- "default-mobile.handlebars->53->888",
15573
- "default-mobile.handlebars->53->894",
15574
- "default-mobile.handlebars->53->900",
15603
+ "default-mobile.handlebars->53->893",
15604
+ "default-mobile.handlebars->53->899",
15605
"default-mobile.handlebars->53->905",
15576
- "default-mobile.handlebars->53->907",
15606
"default-mobile.handlebars->53->910",
15578
- "default-mobile.handlebars->53->922",
15579
- "default-mobile.handlebars->53->929",
15580
- "default.handlebars->119->1728",
15581
- "default.handlebars->119->1734",
15582
- "default.handlebars->119->1740",
15607
+ "default-mobile.handlebars->53->912",
15608
+ "default-mobile.handlebars->53->915",
15609
+ "default-mobile.handlebars->53->927",
15610
+ "default-mobile.handlebars->53->934",
15611
+ "default.handlebars->119->1733",
15612
+ "default.handlebars->119->1739",
15613
"default.handlebars->119->1745",
15584
- "default.handlebars->119->1747",
15614
"default.handlebars->119->1750",
15586
- "default.handlebars->119->1762",
15587
- "default.handlebars->119->1769",
15588
- "default3.handlebars->117->1711",
15589
- "default3.handlebars->117->1717",
15590
- "default3.handlebars->117->1723",
15615
+ "default.handlebars->119->1752",
15616
+ "default.handlebars->119->1755",
15617
+ "default.handlebars->119->1767",
15618
+ "default.handlebars->119->1774",
15619
+ "default3.handlebars->117->1716",
15620
+ "default3.handlebars->117->1722",
15621
"default3.handlebars->117->1728",
15592
- "default3.handlebars->117->1730",
15622
"default3.handlebars->117->1733",
15594
- "default3.handlebars->117->1745",
15595
- "default3.handlebars->117->1752"
15623
+ "default3.handlebars->117->1735",
15624
+ "default3.handlebars->117->1738",
15625
+ "default3.handlebars->117->1750",
15626
+ "default3.handlebars->117->1757"
15627
]
15628
},
15629
{
@@ -15621,15 +15652,15 @@
15652
"zh-chs": "容量/速度",
15653
"zh-cht": "容量/速度",
15654
"xloc": [
15624
- "default-mobile.handlebars->53->886",
15625
- "default-mobile.handlebars->53->892",
15626
- "default-mobile.handlebars->53->898",
15627
- "default.handlebars->119->1726",
15628
- "default.handlebars->119->1732",
15629
- "default.handlebars->119->1738",
15630
- "default3.handlebars->117->1709",
15631
- "default3.handlebars->117->1715",
15632
- "default3.handlebars->117->1721"
15655
+ "default-mobile.handlebars->53->891",
15656
+ "default-mobile.handlebars->53->897",
15657
+ "default-mobile.handlebars->53->903",
15658
+ "default.handlebars->119->1731",
15659
+ "default.handlebars->119->1737",
15660
+ "default.handlebars->119->1743",
15661
+ "default3.handlebars->117->1714",
15662
+ "default3.handlebars->117->1720",
15663
+ "default3.handlebars->117->1726"
15664
]
15665
},
15666
{
@@ -15657,15 +15688,15 @@
15688
"zh-chs": "剩余容量",
15689
"zh-cht": "剩餘容量",
15690
"xloc": [
15660
- "default-mobile.handlebars->53->911",
15661
- "default-mobile.handlebars->53->923",
15662
- "default-mobile.handlebars->53->930",
15663
- "default.handlebars->119->1751",
15664
- "default.handlebars->119->1763",
15665
- "default.handlebars->119->1770",
15666
- "default3.handlebars->117->1734",
15667
- "default3.handlebars->117->1746",
15668
- "default3.handlebars->117->1753"
15691
+ "default-mobile.handlebars->53->916",
15692
+ "default-mobile.handlebars->53->928",
15693
+ "default-mobile.handlebars->53->935",
15694
+ "default.handlebars->119->1756",
15695
+ "default.handlebars->119->1768",
15696
+ "default.handlebars->119->1775",
15697
+ "default3.handlebars->117->1739",
15698
+ "default3.handlebars->117->1751",
15699
+ "default3.handlebars->117->1758"
15700
]
15701
},
15702
{
@@ -15695,8 +15726,8 @@
15726
"zh-cht": "加泰羅尼亞文",
15727
"xloc": [
15728
"default-mobile.handlebars->53->146",
15698
- "default.handlebars->119->1902",
15699
- "default3.handlebars->117->1883",
15729
+ "default.handlebars->119->1907",
15730
+ "default3.handlebars->117->1888",
15731
"login2.handlebars->17->32"
15732
]
15733
},
@@ -15793,7 +15824,7 @@
15824
"en": "Cerulean",
15825
"nl": "Hemelsblauw",
15826
"xloc": [
15796
- "default3.handlebars->117->2097"
15827
+ "default3.handlebars->117->2102"
15828
]
15829
},
15830
{
@@ -15823,8 +15854,8 @@
15854
"zh-cht": "查莫羅",
15855
"xloc": [
15856
"default-mobile.handlebars->53->147",
15826
- "default.handlebars->119->1903",
15827
- "default3.handlebars->117->1884",
15857
+ "default.handlebars->119->1908",
15858
+ "default3.handlebars->117->1889",
15859
"login2.handlebars->17->33"
15860
]
15861
},
@@ -15885,8 +15916,8 @@
15916
"zh-chs": "更改{0}的邮箱",
15917
"zh-cht": "更改{0}的電郵",
15918
"xloc": [
15888
- "default.handlebars->119->3104",
15889
- "default3.handlebars->117->3096"
15919
+ "default.handlebars->119->3109",
15920
+ "default3.handlebars->117->3102"
15921
]
15922
},
15923
{
@@ -15965,10 +15996,10 @@
15996
"zh-cht": "更改密碼",
15997
"xloc": [
15998
"default-mobile.handlebars->53->339",
15968
- "default.handlebars->119->2119",
15969
- "default.handlebars->119->3048",
15970
- "default3.handlebars->117->2095",
15971
- "default3.handlebars->117->3042"
15999
+ "default.handlebars->119->2124",
16000
+ "default.handlebars->119->3053",
16001
+ "default3.handlebars->117->2100",
16002
+ "default3.handlebars->117->3048"
16003
]
16004
},
16005
{
@@ -15997,8 +16028,8 @@
16028
"zh-chs": "更改{0}的密码",
16029
"zh-cht": "更改{0}的密碼",
16030
"xloc": [
16000
- "default.handlebars->119->3113",
16001
- "default3.handlebars->117->3101"
16031
+ "default.handlebars->119->3118",
16032
+ "default3.handlebars->117->3107"
16033
]
16034
},
16035
{
@@ -16027,8 +16058,8 @@
16058
"zh-chs": "更改{0}的真实名称",
16059
"zh-cht": "更改{0}的真實名稱",
16060
"xloc": [
16030
- "default.handlebars->119->3099",
16031
- "default3.handlebars->117->3092"
16061
+ "default.handlebars->119->3104",
16062
+ "default3.handlebars->117->3098"
16063
]
16064
},
16065
{
@@ -16205,8 +16236,8 @@
16236
"zh-chs": "更改该用户的密码",
16237
"zh-cht": "更改該用戶的密碼",
16238
"xloc": [
16208
- "default.handlebars->119->3047",
16209
- "default3.handlebars->117->3041"
16239
+ "default.handlebars->119->3052",
16240
+ "default3.handlebars->117->3047"
16241
]
16242
},
16243
{
@@ -16265,8 +16296,8 @@
16296
"zh-chs": "更改您的邮件地址。",
16297
"zh-cht": "在此處更改你的帳戶電郵地址。",
16298
"xloc": [
16268
- "default.handlebars->119->2106",
16269
- "default3.handlebars->117->2088"
16299
+ "default.handlebars->119->2111",
16300
+ "default3.handlebars->117->2093"
16301
]
16302
},
16303
{
@@ -16295,8 +16326,8 @@
16326
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
16327
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
16328
"xloc": [
16298
- "default.handlebars->119->2112",
16299
- "default3.handlebars->117->2092"
16329
+ "default.handlebars->119->2117",
16330
+ "default3.handlebars->117->2097"
16331
]
16332
},
16333
{
@@ -16325,8 +16356,8 @@
16356
"zh-chs": "更改帐户凭据",
16357
"zh-cht": "帳戶憑證已更改",
16358
"xloc": [
16328
- "default.handlebars->119->2632",
16329
- "default3.handlebars->117->2629"
16359
+ "default.handlebars->119->2637",
16360
+ "default3.handlebars->117->2634"
16361
]
16362
},
16363
{
@@ -16355,8 +16386,8 @@
16386
"zh-chs": "将帐户显示名称更改为 {0}。",
16387
"zh-cht": "將帳戶顯示名稱更改為 {0}。",
16388
"xloc": [
16358
- "default.handlebars->119->2684",
16359
- "default3.handlebars->117->2681"
16389
+ "default.handlebars->119->2689",
16390
+ "default3.handlebars->117->2686"
16391
]
16392
},
16393
{
@@ -16385,10 +16416,10 @@
16416
"zh-chs": "{1}组中的设备{0}已更改:{2}",
16417
"zh-cht": "{1}組中的設備{0}已更改:{2}",
16418
"xloc": [
16388
- "default.handlebars->119->2616",
16389
- "default.handlebars->119->2697",
16390
- "default3.handlebars->117->2613",
16391
- "default3.handlebars->117->2694"
16419
+ "default.handlebars->119->2621",
16420
+ "default.handlebars->119->2702",
16421
+ "default3.handlebars->117->2618",
16422
+ "default3.handlebars->117->2699"
16423
]
16424
},
16425
{
@@ -16417,8 +16448,8 @@
16448
"zh-chs": "语言从{1}更改为{2}",
16449
"zh-cht": "語言從{1}更改為{2}",
16450
"xloc": [
16420
- "default.handlebars->119->2560",
16421
- "default3.handlebars->117->2557"
16451
+ "default.handlebars->119->2565",
16452
+ "default3.handlebars->117->2562"
16453
]
16454
},
16455
{
@@ -16447,10 +16478,10 @@
16478
"zh-chs": "已更改{0}的用户设备权限",
16479
"zh-cht": "已更改{0}的用戶設備權限",
16480
"xloc": [
16450
- "default.handlebars->119->2618",
16451
- "default.handlebars->119->2639",
16452
- "default3.handlebars->117->2615",
16453
- "default3.handlebars->117->2636"
16481
+ "default.handlebars->119->2623",
16482
+ "default.handlebars->119->2644",
16483
+ "default3.handlebars->117->2620",
16484
+ "default3.handlebars->117->2641"
16485
]
16486
},
16487
{
@@ -16506,8 +16537,8 @@
16537
"zh-cht": "更改語言將需要刷新頁面。",
16538
"xloc": [
16539
"default-mobile.handlebars->53->314",
16509
- "default.handlebars->119->2070",
16510
- "default3.handlebars->117->2051"
16540
+ "default.handlebars->119->2075",
16541
+ "default3.handlebars->117->2056"
16542
]
16543
},
16544
{
@@ -16533,9 +16564,9 @@
16564
"zh-chs": "收费率",
16565
"zh-cht": "收費率",
16566
"xloc": [
16536
- "default-mobile.handlebars->53->867",
16537
- "default.handlebars->119->1707",
16538
- "default3.handlebars->117->1690"
16567
+ "default-mobile.handlebars->53->872",
16568
+ "default.handlebars->119->1712",
16569
+ "default3.handlebars->117->1695"
16570
]
16571
},
16572
{
@@ -16561,9 +16592,9 @@
16592
"zh-chs": "收费",
16593
"zh-cht": "收費",
16594
"xloc": [
16564
- "default-mobile.handlebars->53->869",
16565
- "default.handlebars->119->1709",
16566
- "default3.handlebars->117->1692"
16595
+ "default-mobile.handlebars->53->874",
16596
+ "default.handlebars->119->1714",
16597
+ "default3.handlebars->117->1697"
16598
]
16599
},
16600
{
@@ -16595,15 +16626,15 @@
16626
"default.handlebars->119->1009",
16627
"default.handlebars->119->1128",
16628
"default.handlebars->119->1153",
16598
- "default.handlebars->119->2764",
16599
- "default.handlebars->119->3043",
16600
- "default.handlebars->119->3044",
16629
+ "default.handlebars->119->2769",
16630
+ "default.handlebars->119->3048",
16631
+ "default.handlebars->119->3049",
16632
"default3.handlebars->117->1005",
16633
"default3.handlebars->117->1122",
16634
"default3.handlebars->117->1147",
16604
- "default3.handlebars->117->2761",
16605
- "default3.handlebars->117->3037",
16606
- "default3.handlebars->117->3038"
16635
+ "default3.handlebars->117->2766",
16636
+ "default3.handlebars->117->3043",
16637
+ "default3.handlebars->117->3044"
16638
]
16639
},
16640
{
@@ -16632,12 +16663,12 @@
16663
"zh-chs": "聊天并通知",
16664
"zh-cht": "聊天並通知",
16665
"xloc": [
16635
- "default-mobile.handlebars->53->1015",
16636
- "default-mobile.handlebars->53->1035",
16637
- "default.handlebars->119->2394",
16638
- "default.handlebars->119->2432",
16639
- "default3.handlebars->117->2391",
16640
- "default3.handlebars->117->2429"
16666
+ "default-mobile.handlebars->53->1020",
16667
+ "default-mobile.handlebars->53->1040",
16668
+ "default.handlebars->119->2399",
16669
+ "default.handlebars->119->2437",
16670
+ "default3.handlebars->117->2396",
16671
+ "default3.handlebars->117->2434"
16672
]
16673
},
16674
{
@@ -16666,9 +16697,9 @@
16697
"zh-chs": "聊天请求,点击这里接受。",
16698
"zh-cht": "聊天請求,點擊這裡接受。",
16699
"xloc": [
16669
- "default-mobile.handlebars->53->1067",
16670
- "default.handlebars->119->3334",
16671
- "default3.handlebars->117->3324"
16700
+ "default-mobile.handlebars->53->1072",
16701
+ "default.handlebars->119->3339",
16702
+ "default3.handlebars->117->3330"
16703
]
16704
},
16705
{
@@ -16727,8 +16758,8 @@
16758
"zh-cht": "車臣",
16759
"xloc": [
16760
"default-mobile.handlebars->53->148",
16730
- "default.handlebars->119->1904",
16731
- "default3.handlebars->117->1885",
16761
+ "default.handlebars->119->1909",
16762
+ "default3.handlebars->117->1890",
16763
"login2.handlebars->17->34"
16764
]
16765
},
@@ -16893,10 +16924,10 @@
16924
"zh-chs": "检查...",
16925
"zh-cht": "檢查...",
16926
"xloc": [
16896
- "default.handlebars->119->1870",
16897
- "default.handlebars->119->3456",
16898
- "default3.handlebars->117->1851",
16899
- "default3.handlebars->117->3446"
16927
+ "default.handlebars->119->1875",
16928
+ "default.handlebars->119->3461",
16929
+ "default3.handlebars->117->1856",
16930
+ "default3.handlebars->117->3452"
16931
]
16932
},
16933
{
@@ -16922,9 +16953,9 @@
16953
"zh-chs": "化学",
16954
"zh-cht": "化學",
16955
"xloc": [
16925
- "default-mobile.handlebars->53->861",
16926
- "default.handlebars->119->1701",
16927
- "default3.handlebars->117->1684"
16956
+ "default-mobile.handlebars->53->866",
16957
+ "default.handlebars->119->1706",
16958
+ "default3.handlebars->117->1689"
16959
]
16960
},
16961
{
@@ -16954,8 +16985,8 @@
16985
"zh-cht": "中文",
16986
"xloc": [
16987
"default-mobile.handlebars->53->149",
16957
- "default.handlebars->119->1905",
16958
- "default3.handlebars->117->1886",
16988
+ "default.handlebars->119->1910",
16989
+ "default3.handlebars->117->1891",
16990
"login2.handlebars->17->35"
16991
]
16992
},
@@ -16986,8 +17017,8 @@
17017
"zh-cht": "中文(香港)",
17018
"xloc": [
17019
"default-mobile.handlebars->53->150",
16989
- "default.handlebars->119->1906",
16990
- "default3.handlebars->117->1887",
17020
+ "default.handlebars->119->1911",
17021
+ "default3.handlebars->117->1892",
17022
"login2.handlebars->17->36"
17023
]
17024
},
@@ -17018,8 +17049,8 @@
17049
"zh-cht": "中文(中國)",
17050
"xloc": [
17051
"default-mobile.handlebars->53->151",
17021
- "default.handlebars->119->1907",
17022
- "default3.handlebars->117->1888",
17052
+ "default.handlebars->119->1912",
17053
+ "default3.handlebars->117->1893",
17054
"login2.handlebars->17->37"
17055
]
17056
},
@@ -17050,8 +17081,8 @@
17081
"zh-cht": "簡體中文",
17082
"xloc": [
17083
"default-mobile.handlebars->53->311",
17053
- "default.handlebars->119->2067",
17054
- "default3.handlebars->117->2048",
17084
+ "default.handlebars->119->2072",
17085
+ "default3.handlebars->117->2053",
17086
"login2.handlebars->17->197"
17087
]
17088
},
@@ -17082,8 +17113,8 @@
17113
"zh-cht": "中文(新加坡)",
17114
"xloc": [
17115
"default-mobile.handlebars->53->152",
17085
- "default.handlebars->119->1908",
17086
- "default3.handlebars->117->1889",
17116
+ "default.handlebars->119->1913",
17117
+ "default3.handlebars->117->1894",
17118
"login2.handlebars->17->38"
17119
]
17120
},
@@ -17114,8 +17145,8 @@
17145
"zh-cht": "中文(台灣)",
17146
"xloc": [
17147
"default-mobile.handlebars->53->153",
17117
- "default.handlebars->119->1909",
17118
- "default3.handlebars->117->1890",
17148
+ "default.handlebars->119->1914",
17149
+ "default3.handlebars->117->1895",
17150
"login2.handlebars->17->39"
17151
]
17152
},
@@ -17146,8 +17177,8 @@
17177
"zh-cht": "繁體中文",
17178
"xloc": [
17179
"default-mobile.handlebars->53->312",
17149
- "default.handlebars->119->2068",
17150
- "default3.handlebars->117->2049",
17180
+ "default.handlebars->119->2073",
17181
+ "default3.handlebars->117->2054",
17182
"login2.handlebars->17->198"
17183
]
17184
},
@@ -17209,8 +17240,8 @@
17240
"zh-cht": "楚瓦什",
17241
"xloc": [
17242
"default-mobile.handlebars->53->154",
17212
- "default.handlebars->119->1910",
17213
- "default3.handlebars->117->1891",
17243
+ "default.handlebars->119->1915",
17244
+ "default3.handlebars->117->1896",
17245
"login2.handlebars->17->40"
17246
]
17247
},
@@ -17284,14 +17315,14 @@
17315
"default.handlebars->119->1564",
17316
"default.handlebars->119->1566",
17317
"default.handlebars->119->1568",
17287
- "default.handlebars->119->2554",
17318
+ "default.handlebars->119->2559",
17319
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17320
"default.handlebars->container->column_l->p41->3->1",
17321
"default3.handlebars->117->1547",
17322
"default3.handlebars->117->1549",
17323
"default3.handlebars->117->1551",
17324
"default3.handlebars->117->1553",
17294
- "default3.handlebars->117->2551",
17325
+ "default3.handlebars->117->2556",
17326
"default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17327
"default3.handlebars->container->column_l->p41->3->3",
17328
"messenger.handlebars->xbottom->1->1->0->5",
@@ -17483,9 +17514,9 @@
17514
"zh-chs": "全部清除",
17515
"zh-cht": "全部清除",
17516
"xloc": [
17486
- "default-mobile.handlebars->53->1050",
17487
- "default.handlebars->119->3317",
17488
- "default3.handlebars->117->3307"
17517
+ "default-mobile.handlebars->53->1055",
17518
+ "default.handlebars->119->3322",
17519
+ "default3.handlebars->117->3313"
17520
]
17521
},
17522
{
@@ -17545,9 +17576,9 @@
17576
"zh-chs": "清除核心",
17577
"zh-cht": "清除核心",
17578
"xloc": [
17548
- "default-mobile.handlebars->53->951",
17549
- "default.handlebars->119->1792",
17550
- "default3.handlebars->117->1775"
17579
+ "default-mobile.handlebars->53->956",
17580
+ "default.handlebars->119->1797",
17581
+ "default3.handlebars->117->1780"
17582
]
17583
},
17584
{
@@ -17607,9 +17638,9 @@
17638
"zh-chs": "清除此通知",
17639
"zh-cht": "清除此通知",
17640
"xloc": [
17610
- "default-mobile.handlebars->53->1049",
17611
- "default.handlebars->119->3316",
17612
- "default3.handlebars->117->3306"
17641
+ "default-mobile.handlebars->53->1054",
17642
+ "default.handlebars->119->3321",
17643
+ "default3.handlebars->117->3312"
17644
]
17645
},
17646
{
@@ -17725,10 +17756,10 @@
17756
"zh-chs": "单击此处编辑设备组名称",
17757
"zh-cht": "單擊此處編輯裝置群名稱",
17758
"xloc": [
17728
- "default.handlebars->119->2189",
17729
- "default.handlebars->119->2493",
17730
- "default3.handlebars->117->2185",
17731
- "default3.handlebars->117->2490"
17759
+ "default.handlebars->119->2194",
17760
+ "default.handlebars->119->2498",
17761
+ "default3.handlebars->117->2190",
17762
+ "default3.handlebars->117->2495"
17763
]
17764
},
17765
{
@@ -17787,8 +17818,8 @@
17818
"zh-chs": "单击此处编辑用户组名称",
17819
"zh-cht": "單擊此處編輯用戶群名稱",
17820
"xloc": [
17790
- "default.handlebars->119->2894",
17791
- "default3.handlebars->117->2888"
17821
+ "default.handlebars->119->2899",
17822
+ "default3.handlebars->117->2894"
17823
]
17824
},
17825
{
@@ -17933,8 +17964,8 @@
17964
"zh-cht": "單擊確定將驗證電郵發送到:",
17965
"xloc": [
17966
"default-mobile.handlebars->53->324",
17936
- "default.handlebars->119->2103",
17937
- "default3.handlebars->117->2085"
17967
+ "default.handlebars->119->2108",
17968
+ "default3.handlebars->117->2090"
17969
]
17970
},
17971
{
@@ -18080,8 +18111,8 @@
18111
"zh-chs": "客户编号",
18112
"zh-cht": "客戶編號",
18113
"xloc": [
18083
- "default.handlebars->119->2166",
18084
- "default3.handlebars->117->2166"
18114
+ "default.handlebars->119->2171",
18115
+ "default3.handlebars->117->2171"
18116
]
18117
},
18118
{
@@ -18110,8 +18141,8 @@
18141
"zh-chs": "客户端启动的远程访问",
18142
"zh-cht": "客戶端啟動的遠程訪問",
18143
"xloc": [
18113
- "default.handlebars->119->2320",
18114
- "default3.handlebars->117->2315"
18144
+ "default.handlebars->119->2325",
18145
+ "default3.handlebars->117->2320"
18146
]
18147
},
18148
{
@@ -18140,8 +18171,8 @@
18171
"zh-chs": "客户机密",
18172
"zh-cht": "客戶機密",
18173
"xloc": [
18143
- "default.handlebars->119->2167",
18144
- "default3.handlebars->117->2167"
18174
+ "default.handlebars->119->2172",
18175
+ "default3.handlebars->117->2172"
18176
]
18177
},
18178
{
@@ -18207,7 +18238,7 @@
18238
"default.handlebars->119->1536",
18239
"default.handlebars->119->242",
18240
"default.handlebars->119->251",
18210
- "default.handlebars->119->3450",
18241
+ "default.handlebars->119->3455",
18242
"default3.handlebars->117->1453",
18243
"default3.handlebars->117->1521",
18244
"default3.handlebars->117->347",
@@ -18240,8 +18271,8 @@
18271
"zh-chs": "已关闭桌面多路复用会话 \\\"{0}\\\",{1} 秒",
18272
"zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
18273
"xloc": [
18243
- "default.handlebars->119->2704",
18244
- "default3.handlebars->117->2701"
18274
+ "default.handlebars->119->2709",
18275
+ "default3.handlebars->117->2706"
18276
]
18277
},
18278
{
@@ -18270,8 +18301,8 @@
18301
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
18302
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
18303
"xloc": [
18273
- "default.handlebars->119->2565",
18274
- "default3.handlebars->117->2562"
18304
+ "default.handlebars->119->2570",
18305
+ "default3.handlebars->117->2567"
18306
]
18307
},
18308
{
@@ -18483,13 +18514,13 @@
18514
"zh-chs": "指令",
18515
"zh-cht": "指令",
18516
"xloc": [
18486
- "default-mobile.handlebars->53->1037",
18517
+ "default-mobile.handlebars->53->1042",
18518
"default.handlebars->119->1130",
18519
"default.handlebars->119->1155",
18489
- "default.handlebars->119->2434",
18520
+ "default.handlebars->119->2439",
18521
"default3.handlebars->117->1124",
18522
"default3.handlebars->117->1149",
18492
- "default3.handlebars->117->2431"
18523
+ "default3.handlebars->117->2436"
18524
]
18525
},
18526
{
@@ -18572,10 +18603,10 @@
18603
"zh-chs": "通用设备组",
18604
"zh-cht": "通用裝置群",
18605
"xloc": [
18575
- "default.handlebars->119->2929",
18576
- "default.handlebars->119->3118",
18577
- "default3.handlebars->117->2923",
18578
- "default3.handlebars->117->3106"
18606
+ "default.handlebars->119->2934",
18607
+ "default.handlebars->119->3123",
18608
+ "default3.handlebars->117->2929",
18609
+ "default3.handlebars->117->3112"
18610
]
18611
},
18612
{
@@ -18604,10 +18635,10 @@
18635
"zh-chs": "通用设备",
18636
"zh-cht": "通用裝置",
18637
"xloc": [
18607
- "default.handlebars->119->2935",
18608
- "default.handlebars->119->3130",
18609
- "default3.handlebars->117->2929",
18610
- "default3.handlebars->117->3118"
18638
+ "default.handlebars->119->2940",
18639
+ "default.handlebars->119->3135",
18640
+ "default3.handlebars->117->2935",
18641
+ "default3.handlebars->117->3124"
18642
]
18643
},
18644
{
@@ -18736,8 +18767,8 @@
18767
"pl": "Zapisy pliku konfiguracyjnego",
18768
"uk": "Записи файлу конфігурації",
18769
"xloc": [
18739
- "default.handlebars->119->3283",
18740
- "default3.handlebars->117->3273"
18770
+ "default.handlebars->119->3288",
18771
+ "default3.handlebars->117->3279"
18772
]
18773
},
18774
{
@@ -18767,22 +18798,22 @@
18798
"zh-cht": "確認",
18799
"xloc": [
18800
"default-mobile.handlebars->53->615",
18770
- "default-mobile.handlebars->53->986",
18801
+ "default-mobile.handlebars->53->991",
18802
"default.handlebars->119->1304",
18803
"default.handlebars->119->1313",
18773
- "default.handlebars->119->2331",
18774
- "default.handlebars->119->2794",
18775
- "default.handlebars->119->2884",
18776
- "default.handlebars->119->2951",
18777
- "default.handlebars->119->3116",
18804
+ "default.handlebars->119->2336",
18805
+ "default.handlebars->119->2799",
18806
+ "default.handlebars->119->2889",
18807
+ "default.handlebars->119->2956",
18808
+ "default.handlebars->119->3121",
18809
"default.handlebars->119->768",
18810
"default3.handlebars->117->1294",
18811
"default3.handlebars->117->1302",
18781
- "default3.handlebars->117->2325",
18782
- "default3.handlebars->117->2791",
18783
- "default3.handlebars->117->2878",
18784
- "default3.handlebars->117->2945",
18785
- "default3.handlebars->117->3104",
18812
+ "default3.handlebars->117->2330",
18813
+ "default3.handlebars->117->2796",
18814
+ "default3.handlebars->117->2884",
18815
+ "default3.handlebars->117->2951",
18816
+ "default3.handlebars->117->3110",
18817
"default3.handlebars->117->764"
18818
]
18819
},
@@ -18816,7 +18847,7 @@
18847
"en": "Confirm Password",
18848
"nl": "Bevestig wachtwoord",
18849
"xloc": [
18819
- "default3.handlebars->117->2839"
18850
+ "default3.handlebars->117->2845"
18851
]
18852
},
18853
{
@@ -18939,8 +18970,8 @@
18970
"zh-chs": "确认删除选定的帐户?",
18971
"zh-cht": "確認刪除所選帳戶?",
18972
"xloc": [
18942
- "default.handlebars->119->2793",
18943
- "default3.handlebars->117->2790"
18973
+ "default.handlebars->119->2798",
18974
+ "default3.handlebars->117->2795"
18975
]
18976
},
18977
{
@@ -18995,8 +19026,8 @@
19026
"zh-chs": "确认删除选定的用户组?",
19027
"zh-cht": "確認刪除所選用戶群?",
19028
"xloc": [
18998
- "default.handlebars->119->2883",
18999
- "default3.handlebars->117->2877"
19029
+ "default.handlebars->119->2888",
19030
+ "default3.handlebars->117->2883"
19031
]
19032
},
19033
{
@@ -19025,24 +19056,24 @@
19056
"zh-chs": "确认删除用户{0}?",
19057
"zh-cht": "確認刪除用戶{0}?",
19058
"xloc": [
19028
- "default.handlebars->119->3115",
19029
- "default3.handlebars->117->3103"
19059
+ "default.handlebars->119->3120",
19060
+ "default3.handlebars->117->3109"
19061
]
19062
},
19063
{
19064
"en": "Confirm disabling 2FA Duo login security.",
19065
"nl": "Bevestig het uitschakelen van 2FA Duo inlogbeveiliging.",
19066
"xloc": [
19036
- "default.handlebars->119->1849",
19037
- "default3.handlebars->117->1831"
19067
+ "default.handlebars->119->1854",
19068
+ "default3.handlebars->117->1836"
19069
]
19070
},
19071
{
19072
"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.",
19073
"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.",
19074
"xloc": [
19044
- "default.handlebars->119->1847",
19045
- "default3.handlebars->117->1829"
19075
+ "default.handlebars->119->1852",
19076
+ "default3.handlebars->117->1834"
19077
]
19078
},
19079
{
@@ -19071,8 +19102,8 @@
19102
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
19103
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
19104
"xloc": [
19074
- "default.handlebars->119->2954",
19075
- "default3.handlebars->117->2948"
19105
+ "default.handlebars->119->2959",
19106
+ "default3.handlebars->117->2954"
19107
]
19108
},
19109
{
@@ -19101,8 +19132,8 @@
19132
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
19133
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
19134
"xloc": [
19104
- "default.handlebars->119->3147",
19105
- "default3.handlebars->117->3135"
19135
+ "default.handlebars->119->3152",
19136
+ "default3.handlebars->117->3141"
19137
]
19138
},
19139
{
@@ -19225,8 +19256,8 @@
19256
"zh-chs": "确认覆盖?",
19257
"zh-cht": "確認覆蓋?",
19258
"xloc": [
19228
- "default.handlebars->119->2546",
19229
- "default3.handlebars->117->2543"
19259
+ "default.handlebars->119->2551",
19260
+ "default3.handlebars->117->2548"
19261
]
19262
},
19263
{
@@ -19255,10 +19286,10 @@
19286
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
19287
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
19288
"xloc": [
19258
- "default.handlebars->119->2944",
19259
- "default.handlebars->119->3138",
19260
- "default3.handlebars->117->2938",
19261
- "default3.handlebars->117->3126"
19289
+ "default.handlebars->119->2949",
19290
+ "default.handlebars->119->3143",
19291
+ "default3.handlebars->117->2944",
19292
+ "default3.handlebars->117->3132"
19293
]
19294
},
19295
{
@@ -19287,10 +19318,10 @@
19318
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
19319
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
19320
"xloc": [
19290
- "default.handlebars->119->2946",
19291
- "default.handlebars->119->3151",
19292
- "default3.handlebars->117->2940",
19293
- "default3.handlebars->117->3139"
19321
+ "default.handlebars->119->2951",
19322
+ "default.handlebars->119->3156",
19323
+ "default3.handlebars->117->2946",
19324
+ "default3.handlebars->117->3145"
19325
]
19326
},
19327
{
@@ -19319,8 +19350,8 @@
19350
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
19351
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
19352
"xloc": [
19322
- "default.handlebars->119->3140",
19323
- "default3.handlebars->117->3128"
19353
+ "default.handlebars->119->3145",
19354
+ "default3.handlebars->117->3134"
19355
]
19356
},
19357
{
@@ -19349,8 +19380,8 @@
19380
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
19381
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
19382
"xloc": [
19352
- "default.handlebars->119->3143",
19353
- "default3.handlebars->117->3131"
19383
+ "default.handlebars->119->3148",
19384
+ "default3.handlebars->117->3137"
19385
]
19386
},
19387
{
@@ -19379,10 +19410,10 @@
19410
"zh-chs": "确认删除访问权限?",
19411
"zh-cht": "確認刪除訪問權限?",
19412
"xloc": [
19382
- "default.handlebars->119->3141",
19383
- "default.handlebars->119->3144",
19384
- "default3.handlebars->117->3129",
19385
- "default3.handlebars->117->3132"
19413
+ "default.handlebars->119->3146",
19414
+ "default.handlebars->119->3149",
19415
+ "default3.handlebars->117->3135",
19416
+ "default3.handlebars->117->3138"
19417
]
19418
},
19419
{
@@ -19412,8 +19443,8 @@
19443
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
19444
"xloc": [
19445
"default-mobile.handlebars->53->323",
19415
- "default.handlebars->119->1853",
19416
- "default3.handlebars->117->1835"
19446
+ "default.handlebars->119->1858",
19447
+ "default3.handlebars->117->1840"
19448
]
19449
},
19450
{
@@ -19468,8 +19499,8 @@
19499
"zh-chs": "确认删除设备共享“{0}”?",
19500
"zh-cht": "確認刪除設備共享“{0}”?",
19501
"xloc": [
19471
- "default.handlebars->119->3136",
19472
- "default3.handlebars->117->3124"
19502
+ "default.handlebars->119->3141",
19503
+ "default3.handlebars->117->3130"
19504
]
19505
},
19506
{
@@ -19550,8 +19581,8 @@
19581
"zh-chs": "确认移除推送认证设备?",
19582
"zh-cht": "確認移除推送認證設備?",
19583
"xloc": [
19553
- "default.handlebars->119->1855",
19554
- "default3.handlebars->117->1837"
19584
+ "default.handlebars->119->1860",
19585
+ "default3.handlebars->117->1842"
19586
]
19587
},
19588
{
@@ -19580,8 +19611,8 @@
19611
"zh-chs": "确认删除用户“ {0} ”的权限?",
19612
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
19613
"xloc": [
19583
- "default.handlebars->119->2446",
19584
- "default3.handlebars->117->2443"
19614
+ "default.handlebars->119->2451",
19615
+ "default3.handlebars->117->2448"
19616
]
19617
},
19618
{
@@ -19610,8 +19641,8 @@
19641
"zh-chs": "确认删除用户组“ {0} ”的权限?",
19642
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
19643
"xloc": [
19613
- "default.handlebars->119->2448",
19614
- "default3.handlebars->117->2445"
19644
+ "default.handlebars->119->2453",
19645
+ "default3.handlebars->117->2450"
19646
]
19647
},
19648
{
@@ -19670,8 +19701,8 @@
19701
"zh-chs": "确认删除此登录令牌?",
19702
"zh-cht": "確認刪除此登錄令牌?",
19703
"xloc": [
19673
- "default.handlebars->119->2159",
19674
- "default3.handlebars->117->2159"
19704
+ "default.handlebars->119->2164",
19705
+ "default3.handlebars->117->2164"
19706
]
19707
},
19708
{
@@ -19726,7 +19757,7 @@
19757
"zh-chs": "确认删除用户{0}?",
19758
"zh-cht": "確認刪除用戶{0}?",
19759
"xloc": [
19729
- "default-mobile.handlebars->53->1046"
19760
+ "default-mobile.handlebars->53->1051"
19761
]
19762
},
19763
{
@@ -19786,8 +19817,8 @@
19817
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
19818
"xloc": [
19819
"default-mobile.handlebars->53->382",
19789
- "default.handlebars->119->2549",
19790
- "default3.handlebars->117->2546"
19820
+ "default.handlebars->119->2554",
19821
+ "default3.handlebars->117->2551"
19822
]
19823
},
19824
{
@@ -19820,12 +19851,12 @@
19851
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
19852
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
19853
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
19823
- "default.handlebars->119->2229",
19854
+ "default.handlebars->119->2234",
19855
"default.handlebars->119->966",
19856
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
19857
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
19858
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
19828
- "default3.handlebars->117->2225",
19859
+ "default3.handlebars->117->2230",
19860
"default3.handlebars->117->962",
19861
"default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->connectbutton1span->connectbutton1",
19862
"default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->connectbutton2",
@@ -19927,8 +19958,8 @@
19958
"zh-chs": "连接到服务器",
19959
"zh-cht": "連接到伺服器",
19960
"xloc": [
19930
- "default.handlebars->119->2324",
19931
- "default3.handlebars->117->2318"
19961
+ "default.handlebars->119->2329",
19962
+ "default3.handlebars->117->2323"
19963
]
19964
},
19965
{
@@ -20202,8 +20233,8 @@
20233
"zh-chs": "已连接的英特尔®AMT",
20234
"zh-cht": "已連接的Intel® AMT",
20235
"xloc": [
20205
- "default.handlebars->119->3375",
20206
- "default3.handlebars->117->3365"
20236
+ "default.handlebars->119->3380",
20237
+ "default3.handlebars->117->3371"
20238
]
20239
},
20240
{
@@ -20232,8 +20263,8 @@
20263
"zh-chs": "已连接的英特尔®AMT CIRA",
20264
"zh-cht": "已連接的Intel® AMT CIRA",
20265
"xloc": [
20235
- "default.handlebars->119->3376",
20236
- "default3.handlebars->117->3366"
20266
+ "default.handlebars->119->3381",
20267
+ "default3.handlebars->117->3372"
20268
]
20269
},
20270
{
@@ -20262,8 +20293,8 @@
20293
"zh-chs": "已连接的用户",
20294
"zh-cht": "已连接的用户",
20295
"xloc": [
20265
- "default.handlebars->119->3381",
20266
- "default3.handlebars->117->3371"
20296
+ "default.handlebars->119->3386",
20297
+ "default3.handlebars->117->3377"
20298
]
20299
},
20300
{
@@ -20536,8 +20567,8 @@
20567
"zh-chs": "连接数量",
20568
"zh-cht": "連接數量",
20569
"xloc": [
20539
- "default.handlebars->119->3407",
20540
- "default3.handlebars->117->3397"
20570
+ "default.handlebars->119->3412",
20571
+ "default3.handlebars->117->3403"
20572
]
20573
},
20574
{
@@ -20607,8 +20638,8 @@
20638
"zh-chs": "连接转发器",
20639
"zh-cht": "連接轉發器",
20640
"xloc": [
20610
- "default.handlebars->119->3444",
20611
- "default3.handlebars->117->3434"
20641
+ "default.handlebars->119->3449",
20642
+ "default3.handlebars->117->3440"
20643
]
20644
},
20645
{
@@ -20697,11 +20728,11 @@
20728
"zh-cht": "連接性",
20729
"xloc": [
20730
"default-mobile.handlebars->53->520",
20700
- "default.handlebars->119->2500",
20731
+ "default.handlebars->119->2505",
20732
"default.handlebars->119->396",
20733
"default.handlebars->119->983",
20734
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1",
20704
- "default3.handlebars->117->2497",
20735
+ "default3.handlebars->117->2502",
20736
"default3.handlebars->117->392",
20737
"default3.handlebars->117->979",
20738
"default3.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
@@ -20733,8 +20764,8 @@
20764
"zh-chs": "同意",
20765
"zh-cht": "同意",
20766
"xloc": [
20736
- "default.handlebars->119->2725",
20737
- "default3.handlebars->117->2722"
20767
+ "default.handlebars->119->2730",
20768
+ "default3.handlebars->117->2727"
20769
]
20770
},
20771
{
@@ -20895,8 +20926,8 @@
20926
"zh-chs": "Cookie编码器",
20927
"zh-cht": "Cookie編碼器",
20928
"xloc": [
20898
- "default.handlebars->119->3427",
20899
- "default3.handlebars->117->3417"
20929
+ "default.handlebars->119->3432",
20930
+ "default3.handlebars->117->3423"
20931
]
20932
},
20933
{
@@ -21226,14 +21257,14 @@
21257
"zh-chs": "复制连结到剪贴板",
21258
"zh-cht": "複製連結到剪貼板",
21259
"xloc": [
21229
- "default.handlebars->119->2510",
21230
- "default.handlebars->119->2534",
21260
+ "default.handlebars->119->2515",
21261
+ "default.handlebars->119->2539",
21262
"default.handlebars->119->326",
21263
"default.handlebars->119->348",
21264
"default.handlebars->119->350",
21265
"default.handlebars->119->600",
21235
- "default3.handlebars->117->2507",
21236
- "default3.handlebars->117->2531",
21266
+ "default3.handlebars->117->2512",
21267
+ "default3.handlebars->117->2536",
21268
"default3.handlebars->117->321",
21269
"default3.handlebars->117->343",
21270
"default3.handlebars->117->345",
@@ -21396,8 +21427,8 @@
21427
"zh-chs": "复制:“{0}”到“{1}”",
21428
"zh-cht": "複製:“{0}”到“{1}”",
21429
"xloc": [
21399
- "default.handlebars->119->2608",
21400
- "default3.handlebars->117->2605"
21430
+ "default.handlebars->119->2613",
21431
+ "default3.handlebars->117->2610"
21432
]
21433
},
21434
{
@@ -21606,8 +21637,8 @@
21637
"zh-chs": "核心服务器",
21638
"zh-cht": "核心伺服器",
21639
"xloc": [
21609
- "default.handlebars->119->3426",
21610
- "default3.handlebars->117->3416"
21640
+ "default.handlebars->119->3431",
21641
+ "default3.handlebars->117->3422"
21642
]
21643
},
21644
{
@@ -21637,8 +21668,8 @@
21668
"zh-cht": "科西嘉文",
21669
"xloc": [
21670
"default-mobile.handlebars->53->155",
21640
- "default.handlebars->119->1911",
21641
- "default3.handlebars->117->1892",
21671
+ "default.handlebars->119->1916",
21672
+ "default3.handlebars->117->1897",
21673
"login2.handlebars->17->41"
21674
]
21675
},
@@ -21646,7 +21677,7 @@
21677
"en": "Cosmo",
21678
"nl": "Cosmo",
21679
"xloc": [
21649
- "default3.handlebars->117->2098"
21680
+ "default3.handlebars->117->2103"
21681
]
21682
},
21683
{
@@ -21701,8 +21732,8 @@
21732
"zh-chs": "创建帐号",
21733
"zh-cht": "創建帳號",
21734
"xloc": [
21704
- "default.handlebars->119->2851",
21705
- "default3.handlebars->117->2847",
21735
+ "default.handlebars->119->2856",
21736
+ "default3.handlebars->117->2853",
21737
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
21738
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
21739
"login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -21789,9 +21820,9 @@
21820
"zh-chs": "创建登录令牌",
21821
"zh-cht": "創建登錄令牌",
21822
"xloc": [
21792
- "default.handlebars->119->2096",
21823
+ "default.handlebars->119->2101",
21824
"default.handlebars->119->351",
21794
- "default3.handlebars->117->2078"
21825
+ "default3.handlebars->117->2083"
21826
]
21827
},
21828
{
@@ -21820,8 +21851,8 @@
21851
"zh-chs": "创建用户组",
21852
"zh-cht": "創建用戶群",
21853
"xloc": [
21823
- "default.handlebars->119->2891",
21824
- "default3.handlebars->117->2885"
21854
+ "default.handlebars->119->2896",
21855
+ "default3.handlebars->117->2891"
21856
]
21857
},
21858
{
@@ -21880,8 +21911,8 @@
21911
"zh-chs": "使用以下选项创建一个新的设备组。",
21912
"zh-cht": "使用以下選項創建一個新的裝置群。",
21913
"xloc": [
21883
- "default.handlebars->119->2126",
21884
- "default3.handlebars->117->2126"
21914
+ "default.handlebars->119->2131",
21915
+ "default3.handlebars->117->2131"
21916
]
21917
},
21918
{
@@ -21940,8 +21971,8 @@
21971
"zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。",
21972
"zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
21973
"xloc": [
21943
- "default.handlebars->119->2076",
21944
- "default3.handlebars->117->2057"
21974
+ "default.handlebars->119->2081",
21975
+ "default3.handlebars->117->2062"
21976
]
21977
},
21978
{
@@ -21970,8 +22001,8 @@
22001
"zh-chs": "创建文件:“{0}”",
22002
"zh-cht": "創建文件:“{0}”",
22003
"xloc": [
21973
- "default.handlebars->119->2721",
21974
- "default3.handlebars->117->2718"
22004
+ "default.handlebars->119->2726",
22005
+ "default3.handlebars->117->2723"
22006
]
22007
},
22008
{
@@ -22030,8 +22061,8 @@
22061
"zh-chs": "创建文件夹:“{0}”",
22062
"zh-cht": "創建文件夾:“{0}”",
22063
"xloc": [
22033
- "default.handlebars->119->2601",
22034
- "default3.handlebars->117->2598"
22064
+ "default.handlebars->119->2606",
22065
+ "default3.handlebars->117->2603"
22066
]
22067
},
22068
{
@@ -22113,8 +22144,8 @@
22144
"nl": "Maak meerdere accounts tegelijk aan door een JSON of een CSV bestand te importeren",
22145
"uk": "Створіть кілька акаунтів одночасно, імпортувавши файл JSON або CSV",
22146
"xloc": [
22116
- "default.handlebars->119->2808",
22117
- "default3.handlebars->117->2804"
22147
+ "default.handlebars->119->2813",
22148
+ "default3.handlebars->117->2810"
22149
]
22150
},
22151
{
@@ -22174,8 +22205,8 @@
22205
"zh-chs": "创建的设备组:{0}",
22206
"zh-cht": "創建的設備組:{0}",
22207
"xloc": [
22177
- "default.handlebars->119->2612",
22178
- "default3.handlebars->117->2609"
22208
+ "default.handlebars->119->2617",
22209
+ "default3.handlebars->117->2614"
22210
]
22211
},
22212
{
@@ -22286,8 +22317,8 @@
22317
"zh-chs": "创建",
22318
"zh-cht": "創建",
22319
"xloc": [
22289
- "default.handlebars->119->2999",
22290
- "default3.handlebars->117->2993"
22320
+ "default.handlebars->119->3004",
22321
+ "default3.handlebars->117->2999"
22322
]
22323
},
22324
{
@@ -22316,8 +22347,8 @@
22347
"zh-chs": "创建时间",
22348
"zh-cht": "創作時間",
22349
"xloc": [
22319
- "default.handlebars->119->2207",
22320
- "default3.handlebars->117->2203"
22350
+ "default.handlebars->119->2212",
22351
+ "default3.handlebars->117->2208"
22352
]
22353
},
22354
{
@@ -22377,10 +22408,10 @@
22408
"zh-chs": "创建者",
22409
"zh-cht": "創作者",
22410
"xloc": [
22380
- "default.handlebars->119->2205",
22381
- "default.handlebars->119->2206",
22382
- "default3.handlebars->117->2201",
22383
- "default3.handlebars->117->2202"
22411
+ "default.handlebars->119->2210",
22412
+ "default.handlebars->119->2211",
22413
+ "default3.handlebars->117->2206",
22414
+ "default3.handlebars->117->2207"
22415
]
22416
},
22417
{
@@ -22411,10 +22442,10 @@
22442
"xloc": [
22443
"default-mobile.handlebars->53->532",
22444
"default.handlebars->119->1379",
22414
- "default.handlebars->119->2164",
22445
+ "default.handlebars->119->2169",
22446
"default.handlebars->119->995",
22447
"default3.handlebars->117->1365",
22417
- "default3.handlebars->117->2164",
22448
+ "default3.handlebars->117->2169",
22449
"default3.handlebars->117->991"
22450
]
22451
},
@@ -22445,8 +22476,8 @@
22476
"zh-cht": "克里語",
22477
"xloc": [
22478
"default-mobile.handlebars->53->156",
22448
- "default.handlebars->119->1912",
22449
- "default3.handlebars->117->1893",
22479
+ "default.handlebars->119->1917",
22480
+ "default3.handlebars->117->1898",
22481
"login2.handlebars->17->42"
22482
]
22483
},
@@ -22477,8 +22508,8 @@
22508
"zh-cht": "克羅地亞文",
22509
"xloc": [
22510
"default-mobile.handlebars->53->157",
22480
- "default.handlebars->119->1913",
22481
- "default3.handlebars->117->1894",
22511
+ "default.handlebars->119->1918",
22512
+ "default3.handlebars->117->1899",
22513
"login2.handlebars->17->43"
22514
]
22515
},
@@ -22788,9 +22819,9 @@
22819
"zh-chs": "当前密码不正确。",
22820
"zh-cht": "當前密碼不正確。",
22821
"xloc": [
22791
- "default-mobile.handlebars->53->1077",
22792
- "default.handlebars->119->3344",
22793
- "default3.handlebars->117->3334"
22822
+ "default-mobile.handlebars->53->1082",
22823
+ "default.handlebars->119->3349",
22824
+ "default3.handlebars->117->3340"
22825
]
22826
},
22827
{
@@ -22895,7 +22926,7 @@
22926
"en": "Cyborg",
22927
"nl": "Cyborg",
22928
"xloc": [
22898
- "default3.handlebars->117->2099"
22929
+ "default3.handlebars->117->2104"
22930
]
22931
},
22932
{
@@ -22921,9 +22952,9 @@
22952
"zh-chs": "循环计数",
22953
"zh-cht": "循環計數",
22954
"xloc": [
22924
- "default-mobile.handlebars->53->856",
22925
- "default.handlebars->119->1696",
22926
- "default3.handlebars->117->1679"
22955
+ "default-mobile.handlebars->53->861",
22956
+ "default.handlebars->119->1701",
22957
+ "default3.handlebars->117->1684"
22958
]
22959
},
22960
{
@@ -22953,8 +22984,8 @@
22984
"zh-cht": "捷克文",
22985
"xloc": [
22986
"default-mobile.handlebars->53->158",
22956
- "default.handlebars->119->1914",
22957
- "default3.handlebars->117->1895",
22987
+ "default.handlebars->119->1919",
22988
+ "default3.handlebars->117->1900",
22989
"login2.handlebars->17->44"
22990
]
22991
},
@@ -23058,8 +23089,8 @@
23089
"zh-cht": "丹麥文",
23090
"xloc": [
23091
"default-mobile.handlebars->53->159",
23061
- "default.handlebars->119->1915",
23062
- "default3.handlebars->117->1896",
23092
+ "default.handlebars->119->1920",
23093
+ "default3.handlebars->117->1901",
23094
"login2.handlebars->17->45"
23095
]
23096
},
@@ -23098,7 +23129,7 @@
23129
"en": "Darkly",
23130
"nl": "Donker",
23131
"xloc": [
23101
- "default3.handlebars->117->2100"
23132
+ "default3.handlebars->117->2105"
23133
]
23134
},
23135
{
@@ -23144,8 +23175,8 @@
23175
"pl": "Zapisy Bazy Danych",
23176
"uk": "Записи Бази Даних",
23177
"xloc": [
23147
- "default.handlebars->119->3203",
23148
- "default3.handlebars->117->3193"
23178
+ "default.handlebars->119->3208",
23179
+ "default3.handlebars->117->3199"
23180
]
23181
},
23182
{
@@ -23175,8 +23206,8 @@
23206
"zh-cht": "日期和時間",
23207
"xloc": [
23208
"default-mobile.handlebars->53->317",
23178
- "default.handlebars->119->2073",
23179
- "default3.handlebars->117->2054"
23209
+ "default.handlebars->119->2078",
23210
+ "default3.handlebars->117->2059"
23211
]
23212
},
23213
{
@@ -23207,11 +23238,11 @@
23238
"xloc": [
23239
"default-mobile.handlebars->53->605",
23240
"default.handlebars->119->1288",
23210
- "default.handlebars->119->3207",
23211
- "default.handlebars->119->3210",
23241
+ "default.handlebars->119->3212",
23242
+ "default.handlebars->119->3215",
23243
"default3.handlebars->117->1278",
23213
- "default3.handlebars->117->3197",
23214
- "default3.handlebars->117->3200"
23244
+ "default3.handlebars->117->3203",
23245
+ "default3.handlebars->117->3206"
23246
]
23247
},
23248
{
@@ -23240,10 +23271,10 @@
23271
"zh-chs": "停用",
23272
"zh-cht": "停用",
23273
"xloc": [
23243
- "default.handlebars->119->2239",
23244
- "default.handlebars->119->2303",
23245
- "default3.handlebars->117->2235",
23246
- "default3.handlebars->117->2297"
23274
+ "default.handlebars->119->2244",
23275
+ "default.handlebars->119->2308",
23276
+ "default3.handlebars->117->2240",
23277
+ "default3.handlebars->117->2302"
23278
]
23279
},
23280
{
@@ -23272,8 +23303,8 @@
23303
"zh-chs": "如果设置停用CCM",
23304
"zh-cht": "如果設置停用CCM",
23305
"xloc": [
23275
- "default.handlebars->119->2315",
23276
- "default3.handlebars->117->2309"
23306
+ "default.handlebars->119->2320",
23307
+ "default3.handlebars->117->2314"
23308
]
23309
},
23310
{
@@ -23359,15 +23390,15 @@
23390
"zh-chs": "默认",
23391
"zh-cht": "默認",
23392
"xloc": [
23362
- "default.handlebars->119->2838",
23363
- "default.handlebars->119->2887",
23364
- "default.handlebars->119->2898",
23365
- "default.handlebars->119->2972",
23366
- "default3.handlebars->117->2096",
23367
- "default3.handlebars->117->2834",
23368
- "default3.handlebars->117->2881",
23369
- "default3.handlebars->117->2892",
23370
- "default3.handlebars->117->2966"
23393
+ "default.handlebars->119->2843",
23394
+ "default.handlebars->119->2892",
23395
+ "default.handlebars->119->2903",
23396
+ "default.handlebars->119->2977",
23397
+ "default3.handlebars->117->2101",
23398
+ "default3.handlebars->117->2840",
23399
+ "default3.handlebars->117->2887",
23400
+ "default3.handlebars->117->2898",
23401
+ "default3.handlebars->117->2972"
23402
]
23403
},
23404
{
@@ -23434,14 +23465,14 @@
23465
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
23466
"default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
23467
"default.handlebars->119->1547",
23437
- "default.handlebars->119->2541",
23468
+ "default.handlebars->119->2546",
23469
"default.handlebars->119->842",
23470
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
23471
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
23472
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
23473
"default.handlebars->filesContextMenu->5",
23474
"default3.handlebars->117->1532",
23444
- "default3.handlebars->117->2538",
23475
+ "default3.handlebars->117->2543",
23476
"default3.handlebars->117->838",
23477
"default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
23478
"default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -23485,8 +23516,8 @@
23516
"zh-cht": "刪除帳戶",
23517
"xloc": [
23518
"default-mobile.handlebars->53->333",
23488
- "default.handlebars->119->2111",
23489
- "default3.handlebars->117->2091"
23519
+ "default.handlebars->119->2116",
23520
+ "default3.handlebars->117->2096"
23521
]
23522
},
23523
{
@@ -23515,7 +23546,8 @@
23546
"zh-chs": "删除帐户",
23547
"zh-cht": "刪除帳戶",
23548
"xloc": [
23518
- "default.handlebars->119->2795"
23549
+ "default.handlebars->119->2800",
23550
+ "default3.handlebars->117->2797"
23551
]
23552
},
23553
{
@@ -23605,12 +23637,12 @@
23637
"zh-chs": "删除群组",
23638
"zh-cht": "刪除群組",
23639
"xloc": [
23608
- "default-mobile.handlebars->53->984",
23609
- "default-mobile.handlebars->53->987",
23610
- "default.handlebars->119->2291",
23611
- "default.handlebars->119->2332",
23612
- "default3.handlebars->117->2287",
23613
- "default3.handlebars->117->2326"
23640
+ "default-mobile.handlebars->53->989",
23641
+ "default-mobile.handlebars->53->992",
23642
+ "default.handlebars->119->2296",
23643
+ "default.handlebars->119->2337",
23644
+ "default3.handlebars->117->2292",
23645
+ "default3.handlebars->117->2331"
23646
]
23647
},
23648
{
@@ -23696,8 +23728,8 @@
23728
"zh-chs": "删除用户",
23729
"zh-cht": "刪除用戶",
23730
"xloc": [
23699
- "default.handlebars->119->3046",
23700
- "default3.handlebars->117->3040"
23731
+ "default.handlebars->119->3051",
23732
+ "default3.handlebars->117->3046"
23733
]
23734
},
23735
{
@@ -23726,10 +23758,10 @@
23758
"zh-chs": "删除用户群组",
23759
"zh-cht": "刪除用戶群組",
23760
"xloc": [
23729
- "default.handlebars->119->2940",
23730
- "default.handlebars->119->2952",
23731
- "default3.handlebars->117->2934",
23732
- "default3.handlebars->117->2946"
23761
+ "default.handlebars->119->2945",
23762
+ "default.handlebars->119->2957",
23763
+ "default3.handlebars->117->2940",
23764
+ "default3.handlebars->117->2952"
23765
]
23766
},
23767
{
@@ -23758,8 +23790,8 @@
23790
"zh-chs": "删除用户群组",
23791
"zh-cht": "刪除用戶群組",
23792
"xloc": [
23761
- "default.handlebars->119->2885",
23762
- "default3.handlebars->117->2879"
23793
+ "default.handlebars->119->2890",
23794
+ "default3.handlebars->117->2885"
23795
]
23796
},
23797
{
@@ -23788,8 +23820,8 @@
23820
"zh-chs": "删除用户{0}",
23821
"zh-cht": "刪除用戶{0}",
23822
"xloc": [
23791
- "default.handlebars->119->3114",
23792
- "default3.handlebars->117->3102"
23823
+ "default.handlebars->119->3119",
23824
+ "default3.handlebars->117->3108"
23825
]
23826
},
23827
{
@@ -23819,9 +23851,9 @@
23851
"zh-cht": "刪除帳戶",
23852
"xloc": [
23853
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->p2AccountPassActions->5->0",
23822
- "default.handlebars->119->2791",
23854
+ "default.handlebars->119->2796",
23855
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7",
23824
- "default3.handlebars->117->2788",
23856
+ "default3.handlebars->117->2793",
23857
"default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
23858
]
23859
},
@@ -23881,8 +23913,8 @@
23913
"zh-chs": "删除群组",
23914
"zh-cht": "刪除群組",
23915
"xloc": [
23884
- "default.handlebars->119->2881",
23885
- "default3.handlebars->117->2875"
23916
+ "default.handlebars->119->2886",
23917
+ "default3.handlebars->117->2881"
23918
]
23919
},
23920
{
@@ -23941,8 +23973,8 @@
23973
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
23974
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
23975
"xloc": [
23944
- "default.handlebars->119->2603",
23945
- "default3.handlebars->117->2600"
23976
+ "default.handlebars->119->2608",
23977
+ "default3.handlebars->117->2605"
23978
]
23979
},
23980
{
@@ -23974,9 +24006,9 @@
24006
"default-mobile.handlebars->53->379",
24007
"default-mobile.handlebars->53->706",
24008
"default.handlebars->119->1549",
23977
- "default.handlebars->119->2543",
24009
+ "default.handlebars->119->2548",
24010
"default3.handlebars->117->1534",
23979
- "default3.handlebars->117->2540",
24011
+ "default3.handlebars->117->2545",
24012
"sharing-mobile.handlebars->53->86",
24013
"sharing.handlebars->47->62"
24014
]
@@ -24007,8 +24039,8 @@
24039
"zh-chs": "删除用户群组{0}?",
24040
"zh-cht": "刪除用戶群組{0}?",
24041
"xloc": [
24010
- "default.handlebars->119->2950",
24011
- "default3.handlebars->117->2944"
24042
+ "default.handlebars->119->2955",
24043
+ "default3.handlebars->117->2950"
24044
]
24045
},
24046
{
@@ -24040,9 +24072,9 @@
24072
"default-mobile.handlebars->53->378",
24073
"default-mobile.handlebars->53->705",
24074
"default.handlebars->119->1548",
24043
- "default.handlebars->119->2542",
24075
+ "default.handlebars->119->2547",
24076
"default3.handlebars->117->1533",
24045
- "default3.handlebars->117->2539",
24077
+ "default3.handlebars->117->2544",
24078
"sharing-mobile.handlebars->53->85",
24079
"sharing.handlebars->47->61"
24080
]
@@ -24102,8 +24134,8 @@
24134
"zh-chs": "删除:“{0}”",
24135
"zh-cht": "刪除:“{0}”",
24136
"xloc": [
24105
- "default.handlebars->119->2602",
24106
- "default3.handlebars->117->2599"
24137
+ "default.handlebars->119->2607",
24138
+ "default3.handlebars->117->2604"
24139
]
24140
},
24141
{
@@ -24132,8 +24164,8 @@
24164
"zh-chs": "删除:“{0}”,{1}个元素已删除",
24165
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
24166
"xloc": [
24135
- "default.handlebars->119->2604",
24136
- "default3.handlebars->117->2601"
24167
+ "default.handlebars->119->2609",
24168
+ "default3.handlebars->117->2606"
24169
]
24170
},
24171
{
@@ -24182,8 +24214,8 @@
24214
"pl": "Odmówiono zalogowania użytkownika z {0}, {1}, {2}",
24215
"uk": "Відмовлено у вході користувачу з {0}, {1}, {2}",
24216
"xloc": [
24185
- "default.handlebars->119->2712",
24186
- "default3.handlebars->117->2709"
24217
+ "default.handlebars->119->2717",
24218
+ "default3.handlebars->117->2714"
24219
]
24220
},
24221
{
@@ -24355,21 +24387,21 @@
24387
"default-mobile.handlebars->53->623",
24388
"default-mobile.handlebars->53->732",
24389
"default-mobile.handlebars->53->793",
24358
- "default-mobile.handlebars->53->970",
24359
- "default-mobile.handlebars->53->993",
24390
+ "default-mobile.handlebars->53->975",
24391
+ "default-mobile.handlebars->53->998",
24392
"default.handlebars->119->1358",
24393
"default.handlebars->119->1592",
24394
"default.handlebars->119->1623",
24395
"default.handlebars->119->1633",
24396
"default.handlebars->119->169",
24365
- "default.handlebars->119->2136",
24366
- "default.handlebars->119->2198",
24367
- "default.handlebars->119->2338",
24368
- "default.handlebars->119->2723",
24369
- "default.handlebars->119->2890",
24370
- "default.handlebars->119->2901",
24371
- "default.handlebars->119->2902",
24372
- "default.handlebars->119->2948",
24397
+ "default.handlebars->119->2141",
24398
+ "default.handlebars->119->2203",
24399
+ "default.handlebars->119->2343",
24400
+ "default.handlebars->119->2728",
24401
+ "default.handlebars->119->2895",
24402
+ "default.handlebars->119->2906",
24403
+ "default.handlebars->119->2907",
24404
+ "default.handlebars->119->2953",
24405
"default.handlebars->119->883",
24406
"default.handlebars->119->884",
24407
"default.handlebars->container->column_l->p42->p42tbl->1->0->3",
@@ -24378,15 +24410,15 @@
24410
"default3.handlebars->117->1608",
24411
"default3.handlebars->117->1618",
24412
"default3.handlebars->117->167",
24381
- "default3.handlebars->117->2136",
24382
- "default3.handlebars->117->2194",
24383
- "default3.handlebars->117->2334",
24384
- "default3.handlebars->117->2335",
24385
- "default3.handlebars->117->2720",
24386
- "default3.handlebars->117->2884",
24387
- "default3.handlebars->117->2895",
24388
- "default3.handlebars->117->2896",
24389
- "default3.handlebars->117->2942",
24413
+ "default3.handlebars->117->2141",
24414
+ "default3.handlebars->117->2199",
24415
+ "default3.handlebars->117->2339",
24416
+ "default3.handlebars->117->2340",
24417
+ "default3.handlebars->117->2725",
24418
+ "default3.handlebars->117->2890",
24419
+ "default3.handlebars->117->2901",
24420
+ "default3.handlebars->117->2902",
24421
+ "default3.handlebars->117->2948",
24422
"default3.handlebars->117->879",
24423
"default3.handlebars->117->880",
24424
"default3.handlebars->container->column_l->p42->p42tbl->1->0->7"
@@ -24415,9 +24447,9 @@
24447
"zh-chs": "设计容量",
24448
"zh-cht": "設計容量",
24449
"xloc": [
24418
- "default-mobile.handlebars->53->862",
24419
- "default.handlebars->119->1702",
24420
- "default3.handlebars->117->1685"
24450
+ "default-mobile.handlebars->53->867",
24451
+ "default.handlebars->119->1707",
24452
+ "default3.handlebars->117->1690"
24453
]
24454
},
24455
{
@@ -24476,24 +24508,24 @@
24508
"default.handlebars->119->1079",
24509
"default.handlebars->119->1193",
24510
"default.handlebars->119->1477",
24479
- "default.handlebars->119->2269",
24480
- "default.handlebars->119->2344",
24481
- "default.handlebars->119->3177",
24482
- "default.handlebars->119->3242",
24483
- "default.handlebars->119->3295",
24484
- "default.handlebars->119->3401",
24511
+ "default.handlebars->119->2274",
24512
+ "default.handlebars->119->2349",
24513
+ "default.handlebars->119->3182",
24514
+ "default.handlebars->119->3247",
24515
+ "default.handlebars->119->3300",
24516
+ "default.handlebars->119->3406",
24517
"default.handlebars->119->848",
24518
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
24519
"default.handlebars->contextMenu->cxdesktop",
24520
"default3.handlebars->117->1075",
24521
"default3.handlebars->117->1187",
24522
"default3.handlebars->117->1462",
24491
- "default3.handlebars->117->2265",
24492
- "default3.handlebars->117->2341",
24493
- "default3.handlebars->117->3167",
24494
- "default3.handlebars->117->3232",
24495
- "default3.handlebars->117->3285",
24496
- "default3.handlebars->117->3391",
24523
+ "default3.handlebars->117->2270",
24524
+ "default3.handlebars->117->2346",
24525
+ "default3.handlebars->117->3173",
24526
+ "default3.handlebars->117->3238",
24527
+ "default3.handlebars->117->3291",
24528
+ "default3.handlebars->117->3397",
24529
"default3.handlebars->117->844",
24530
"default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
24531
"default3.handlebars->contextMenu->cxdesktop",
@@ -24530,10 +24562,10 @@
24562
"xloc": [
24563
"default.handlebars->119->1083",
24564
"default.handlebars->119->1196",
24533
- "default.handlebars->119->2273",
24565
+ "default.handlebars->119->2278",
24566
"default3.handlebars->117->1079",
24567
"default3.handlebars->117->1190",
24536
- "default3.handlebars->117->2269"
24568
+ "default3.handlebars->117->2274"
24569
]
24570
},
24571
{
@@ -24563,9 +24595,9 @@
24595
"zh-cht": "桌面+終端",
24596
"xloc": [
24597
"default.handlebars->119->1080",
24566
- "default.handlebars->119->2270",
24598
+ "default.handlebars->119->2275",
24599
"default3.handlebars->117->1076",
24568
- "default3.handlebars->117->2266"
24600
+ "default3.handlebars->117->2271"
24601
]
24602
},
24603
{
@@ -24596,10 +24628,10 @@
24628
"xloc": [
24629
"default.handlebars->119->1084",
24630
"default.handlebars->119->1198",
24599
- "default.handlebars->119->2274",
24631
+ "default.handlebars->119->2279",
24632
"default3.handlebars->117->1080",
24633
"default3.handlebars->117->1192",
24602
- "default3.handlebars->117->2270"
24634
+ "default3.handlebars->117->2275"
24635
]
24636
},
24637
{
@@ -24658,8 +24690,8 @@
24690
"zh-chs": "桌面复用",
24691
"zh-cht": "桌面多路復用",
24692
"xloc": [
24661
- "default.handlebars->119->3406",
24662
- "default3.handlebars->117->3396"
24693
+ "default.handlebars->119->3411",
24694
+ "default3.handlebars->117->3402"
24695
]
24696
},
24697
{
@@ -24688,13 +24720,13 @@
24720
"zh-chs": "桌面通知",
24721
"zh-cht": "桌面通知",
24722
"xloc": [
24691
- "default.handlebars->119->2220",
24692
- "default.handlebars->119->2909",
24693
- "default.handlebars->119->3014",
24723
+ "default.handlebars->119->2225",
24724
+ "default.handlebars->119->2914",
24725
+ "default.handlebars->119->3019",
24726
"default.handlebars->119->957",
24695
- "default3.handlebars->117->2216",
24696
- "default3.handlebars->117->2903",
24697
- "default3.handlebars->117->3008",
24727
+ "default3.handlebars->117->2221",
24728
+ "default3.handlebars->117->2909",
24729
+ "default3.handlebars->117->3014",
24730
"default3.handlebars->117->953"
24731
]
24732
},
@@ -24724,13 +24756,13 @@
24756
"zh-chs": "桌面提示",
24757
"zh-cht": "桌面提示",
24758
"xloc": [
24727
- "default.handlebars->119->2219",
24728
- "default.handlebars->119->2908",
24729
- "default.handlebars->119->3013",
24759
+ "default.handlebars->119->2224",
24760
+ "default.handlebars->119->2913",
24761
+ "default.handlebars->119->3018",
24762
"default.handlebars->119->956",
24731
- "default3.handlebars->117->2215",
24732
- "default3.handlebars->117->2902",
24733
- "default3.handlebars->117->3007",
24763
+ "default3.handlebars->117->2220",
24764
+ "default3.handlebars->117->2908",
24765
+ "default3.handlebars->117->3013",
24766
"default3.handlebars->117->952"
24767
]
24768
},
@@ -24760,13 +24792,13 @@
24792
"zh-chs": "桌面提示+工具栏",
24793
"zh-cht": "桌面提示+工具欄",
24794
"xloc": [
24763
- "default.handlebars->119->2217",
24764
- "default.handlebars->119->2906",
24765
- "default.handlebars->119->3011",
24795
+ "default.handlebars->119->2222",
24796
+ "default.handlebars->119->2911",
24797
+ "default.handlebars->119->3016",
24798
"default.handlebars->119->954",
24767
- "default3.handlebars->117->2213",
24768
- "default3.handlebars->117->2900",
24769
- "default3.handlebars->117->3005",
24799
+ "default3.handlebars->117->2218",
24800
+ "default3.handlebars->117->2906",
24801
+ "default3.handlebars->117->3011",
24802
"default3.handlebars->117->950"
24803
]
24804
},
@@ -24796,8 +24828,8 @@
24828
"zh-chs": "桌面会话",
24829
"zh-cht": "桌面會話",
24830
"xloc": [
24799
- "default.handlebars->119->3167",
24800
- "default3.handlebars->117->3157"
24831
+ "default.handlebars->119->3172",
24832
+ "default3.handlebars->117->3163"
24833
]
24834
},
24835
{
@@ -24913,13 +24945,13 @@
24945
"zh-chs": "桌面工具栏",
24946
"zh-cht": "桌面工具欄",
24947
"xloc": [
24916
- "default.handlebars->119->2218",
24917
- "default.handlebars->119->2907",
24918
- "default.handlebars->119->3012",
24948
+ "default.handlebars->119->2223",
24949
+ "default.handlebars->119->2912",
24950
+ "default.handlebars->119->3017",
24951
"default.handlebars->119->955",
24920
- "default3.handlebars->117->2214",
24921
- "default3.handlebars->117->2901",
24922
- "default3.handlebars->117->3006",
24952
+ "default3.handlebars->117->2219",
24953
+ "default3.handlebars->117->2907",
24954
+ "default3.handlebars->117->3012",
24955
"default3.handlebars->117->951"
24956
]
24957
},
@@ -24949,8 +24981,8 @@
24981
"zh-chs": "仅桌面视图",
24982
"zh-cht": "僅桌面視圖",
24983
"xloc": [
24952
- "default.handlebars->119->2987",
24953
- "default3.handlebars->117->2981"
24984
+ "default.handlebars->119->2992",
24985
+ "default3.handlebars->117->2987"
24986
]
24987
},
24988
{
@@ -25106,12 +25138,12 @@
25138
"default-mobile.handlebars->53->562",
25139
"default.handlebars->119->1133",
25140
"default.handlebars->119->1158",
25109
- "default.handlebars->119->2437",
25141
+ "default.handlebars->119->2442",
25142
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
25143
"default.handlebars->contextMenu->cxdetails",
25144
"default3.handlebars->117->1127",
25145
"default3.handlebars->117->1152",
25114
- "default3.handlebars->117->2434",
25146
+ "default3.handlebars->117->2439",
25147
"default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
25148
"default3.handlebars->contextMenu->cxdetails"
25149
]
@@ -25174,20 +25206,20 @@
25206
"xloc": [
25207
"default-mobile.handlebars->53->787",
25208
"default.handlebars->119->1617",
25177
- "default.handlebars->119->1859",
25178
- "default.handlebars->119->2374",
25209
+ "default.handlebars->119->1864",
25210
+ "default.handlebars->119->2379",
25211
"default.handlebars->119->296",
25180
- "default.handlebars->119->3133",
25181
- "default.handlebars->119->3206",
25182
- "default.handlebars->119->3226",
25212
+ "default.handlebars->119->3138",
25213
+ "default.handlebars->119->3211",
25214
+ "default.handlebars->119->3231",
25215
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5",
25216
"default3.handlebars->117->1602",
25185
- "default3.handlebars->117->1840",
25186
- "default3.handlebars->117->2371",
25217
+ "default3.handlebars->117->1845",
25218
+ "default3.handlebars->117->2376",
25219
"default3.handlebars->117->291",
25188
- "default3.handlebars->117->3121",
25189
- "default3.handlebars->117->3196",
25190
- "default3.handlebars->117->3216",
25220
+ "default3.handlebars->117->3127",
25221
+ "default3.handlebars->117->3202",
25222
+ "default3.handlebars->117->3222",
25223
"default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSort->sortselect->5"
25224
]
25225
},
@@ -25339,8 +25371,8 @@
25371
"zh-chs": "设备详情",
25372
"zh-cht": "設備詳情",
25373
"xloc": [
25342
- "default.handlebars->119->2398",
25343
- "default3.handlebars->117->2395"
25374
+ "default.handlebars->119->2403",
25375
+ "default3.handlebars->117->2400"
25376
]
25377
},
25378
{
@@ -25400,29 +25432,29 @@
25432
"zh-cht": "裝置群",
25433
"xloc": [
25434
"agent-translations.json",
25403
- "default-mobile.handlebars->53->1055",
25404
- "default.handlebars->119->2369",
25405
- "default.handlebars->119->2372",
25406
- "default.handlebars->119->2373",
25407
- "default.handlebars->119->2740",
25408
- "default.handlebars->119->2932",
25409
- "default.handlebars->119->2938",
25410
- "default.handlebars->119->3121",
25411
- "default.handlebars->119->3190",
25412
- "default.handlebars->119->3213",
25413
- "default.handlebars->119->3229",
25414
- "default.handlebars->119->3322",
25415
- "default3.handlebars->117->2366",
25416
- "default3.handlebars->117->2369",
25417
- "default3.handlebars->117->2370",
25418
- "default3.handlebars->117->2737",
25419
- "default3.handlebars->117->2926",
25435
+ "default-mobile.handlebars->53->1060",
25436
+ "default.handlebars->119->2374",
25437
+ "default.handlebars->119->2377",
25438
+ "default.handlebars->119->2378",
25439
+ "default.handlebars->119->2745",
25440
+ "default.handlebars->119->2937",
25441
+ "default.handlebars->119->2943",
25442
+ "default.handlebars->119->3126",
25443
+ "default.handlebars->119->3195",
25444
+ "default.handlebars->119->3218",
25445
+ "default.handlebars->119->3234",
25446
+ "default.handlebars->119->3327",
25447
+ "default3.handlebars->117->2371",
25448
+ "default3.handlebars->117->2374",
25449
+ "default3.handlebars->117->2375",
25450
+ "default3.handlebars->117->2742",
25451
"default3.handlebars->117->2932",
25421
- "default3.handlebars->117->3109",
25422
- "default3.handlebars->117->3180",
25423
- "default3.handlebars->117->3203",
25424
- "default3.handlebars->117->3219",
25425
- "default3.handlebars->117->3312"
25452
+ "default3.handlebars->117->2938",
25453
+ "default3.handlebars->117->3115",
25454
+ "default3.handlebars->117->3186",
25455
+ "default3.handlebars->117->3209",
25456
+ "default3.handlebars->117->3225",
25457
+ "default3.handlebars->117->3318"
25458
]
25459
},
25460
{
@@ -25451,9 +25483,9 @@
25483
"zh-chs": "设备组用户",
25484
"zh-cht": "裝置群用戶",
25485
"xloc": [
25454
- "default-mobile.handlebars->53->1044",
25455
- "default.handlebars->119->2444",
25456
- "default3.handlebars->117->2441"
25486
+ "default-mobile.handlebars->53->1049",
25487
+ "default.handlebars->119->2449",
25488
+ "default3.handlebars->117->2446"
25489
]
25490
},
25491
{
@@ -25483,17 +25515,17 @@
25515
"zh-cht": "裝置群",
25516
"xloc": [
25517
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
25486
- "default.handlebars->119->2756",
25487
- "default.handlebars->119->2875",
25488
- "default.handlebars->119->2919",
25489
- "default.handlebars->119->3008",
25490
- "default.handlebars->119->3379",
25518
+ "default.handlebars->119->2761",
25519
+ "default.handlebars->119->2880",
25520
+ "default.handlebars->119->2924",
25521
+ "default.handlebars->119->3013",
25522
+ "default.handlebars->119->3384",
25523
"default.handlebars->container->column_l->p2->p2info->9",
25492
- "default3.handlebars->117->2753",
25493
- "default3.handlebars->117->2869",
25494
- "default3.handlebars->117->2913",
25495
- "default3.handlebars->117->3002",
25496
- "default3.handlebars->117->3369",
25524
+ "default3.handlebars->117->2758",
25525
+ "default3.handlebars->117->2875",
25526
+ "default3.handlebars->117->2919",
25527
+ "default3.handlebars->117->3008",
25528
+ "default3.handlebars->117->3375",
25529
"default3.handlebars->container->column_l->p2->p2info->9"
25530
]
25531
},
@@ -25615,11 +25647,11 @@
25647
"xloc": [
25648
"default-mobile.handlebars->53->621",
25649
"default.handlebars->119->1356",
25618
- "default.handlebars->119->3189",
25650
+ "default.handlebars->119->3194",
25651
"default.handlebars->119->508",
25652
"default.handlebars->119->517",
25653
"default3.handlebars->117->1341",
25622
- "default3.handlebars->117->3179",
25654
+ "default3.handlebars->117->3185",
25655
"default3.handlebars->117->504",
25656
"default3.handlebars->117->513",
25657
"player.handlebars->29->25"
@@ -25683,7 +25715,7 @@
25715
"zh-chs": "设备配对链接",
25716
"zh-cht": "設備配對鏈接",
25717
"xloc": [
25686
- "default-mobile.handlebars->53->998"
25718
+ "default-mobile.handlebars->53->1003"
25719
]
25720
},
25721
{
@@ -25692,8 +25724,8 @@
25724
"nl": "Apparaat is ingeschakeld",
25725
"uk": "Пристрій Увімкнено",
25726
"xloc": [
25695
- "default.handlebars->119->2716",
25696
- "default3.handlebars->117->2713"
25727
+ "default.handlebars->119->2721",
25728
+ "default3.handlebars->117->2718"
25729
]
25730
},
25731
{
@@ -25722,8 +25754,8 @@
25754
"zh-chs": "设备推送",
25755
"zh-cht": "設備推送",
25756
"xloc": [
25725
- "default.handlebars->119->3028",
25726
- "default3.handlebars->117->3022"
25757
+ "default.handlebars->119->3033",
25758
+ "default3.handlebars->117->3028"
25759
]
25760
},
25761
{
@@ -25738,8 +25770,8 @@
25770
"pl": "Zapis Powiadomień Push Urządzenia",
25771
"uk": "Запис Push-Сповіщень Пристрою",
25772
"xloc": [
25741
- "default.handlebars->119->3292",
25742
- "default3.handlebars->117->3282"
25773
+ "default.handlebars->119->3297",
25774
+ "default3.handlebars->117->3288"
25775
]
25776
},
25777
{
@@ -25754,8 +25786,8 @@
25786
"pl": "Zapis SMBIOS urządzenia",
25787
"uk": "SMBIOS запис пристрою",
25788
"xloc": [
25757
- "default.handlebars->119->3291",
25758
- "default3.handlebars->117->3281"
25789
+ "default.handlebars->119->3296",
25790
+ "default3.handlebars->117->3287"
25791
]
25792
},
25793
{
@@ -25837,9 +25869,9 @@
25869
"zh-cht": "設備共享鏈接",
25870
"xloc": [
25871
"default.handlebars->119->1076",
25840
- "default.handlebars->119->2266",
25872
+ "default.handlebars->119->2271",
25873
"default3.handlebars->117->1072",
25842
- "default3.handlebars->117->2262"
25874
+ "default3.handlebars->117->2267"
25875
]
25876
},
25877
{
@@ -25993,17 +26025,17 @@
26025
"default.handlebars->119->1102",
26026
"default.handlebars->119->1106",
26027
"default.handlebars->119->1110",
25996
- "default.handlebars->119->2099",
25997
- "default.handlebars->119->2471",
25998
- "default.handlebars->119->2475",
25999
- "default.handlebars->119->2479",
26028
+ "default.handlebars->119->2104",
26029
+ "default.handlebars->119->2476",
26030
+ "default.handlebars->119->2480",
26031
+ "default.handlebars->119->2484",
26032
"default3.handlebars->117->1096",
26033
"default3.handlebars->117->1100",
26034
"default3.handlebars->117->1104",
26003
- "default3.handlebars->117->2081",
26004
- "default3.handlebars->117->2468",
26005
- "default3.handlebars->117->2472",
26006
- "default3.handlebars->117->2476"
26035
+ "default3.handlebars->117->2086",
26036
+ "default3.handlebars->117->2473",
26037
+ "default3.handlebars->117->2477",
26038
+ "default3.handlebars->117->2481"
26039
]
26040
},
26041
{
@@ -26035,17 +26067,17 @@
26067
"default.handlebars->119->1103",
26068
"default.handlebars->119->1107",
26069
"default.handlebars->119->1111",
26038
- "default.handlebars->119->2100",
26039
- "default.handlebars->119->2472",
26040
- "default.handlebars->119->2476",
26041
- "default.handlebars->119->2480",
26070
+ "default.handlebars->119->2105",
26071
+ "default.handlebars->119->2477",
26072
+ "default.handlebars->119->2481",
26073
+ "default.handlebars->119->2485",
26074
"default3.handlebars->117->1097",
26075
"default3.handlebars->117->1101",
26076
"default3.handlebars->117->1105",
26045
- "default3.handlebars->117->2082",
26046
- "default3.handlebars->117->2469",
26047
- "default3.handlebars->117->2473",
26048
- "default3.handlebars->117->2477"
26077
+ "default3.handlebars->117->2087",
26078
+ "default3.handlebars->117->2474",
26079
+ "default3.handlebars->117->2478",
26080
+ "default3.handlebars->117->2482"
26081
]
26082
},
26083
{
@@ -26074,8 +26106,8 @@
26106
"zh-chs": "创建的设备组:{0}",
26107
"zh-cht": "設備組已創建:{0}",
26108
"xloc": [
26077
- "default.handlebars->119->2633",
26078
- "default3.handlebars->117->2630"
26109
+ "default.handlebars->119->2638",
26110
+ "default3.handlebars->117->2635"
26111
]
26112
},
26113
{
@@ -26104,8 +26136,8 @@
26136
"zh-chs": "设备组已删除:{0}",
26137
"zh-cht": "設備組已刪除:{0}",
26138
"xloc": [
26107
- "default.handlebars->119->2634",
26108
- "default3.handlebars->117->2631"
26139
+ "default.handlebars->119->2639",
26140
+ "default3.handlebars->117->2636"
26141
]
26142
},
26143
{
@@ -26134,8 +26166,8 @@
26166
"zh-chs": "设备组成员身份已更改:{0}",
26167
"zh-cht": "設備組成員身份已更改:{0}",
26168
"xloc": [
26137
- "default.handlebars->119->2635",
26138
- "default3.handlebars->117->2632"
26169
+ "default.handlebars->119->2640",
26170
+ "default3.handlebars->117->2637"
26171
]
26172
},
26173
{
@@ -26195,8 +26227,8 @@
26227
"zh-chs": "设备组通知已更改",
26228
"zh-cht": "設備組通知已更改",
26229
"xloc": [
26198
- "default.handlebars->119->2630",
26199
- "default3.handlebars->117->2627"
26230
+ "default.handlebars->119->2635",
26231
+ "default3.handlebars->117->2632"
26232
]
26233
},
26234
{
@@ -26211,8 +26243,8 @@
26243
"pl": "Zapis grupy urządzeń",
26244
"uk": "Запис групи пристроїв",
26245
"xloc": [
26214
- "default.handlebars->119->3277",
26215
- "default3.handlebars->117->3267"
26246
+ "default.handlebars->119->3282",
26247
+ "default3.handlebars->117->3273"
26248
]
26249
},
26250
{
@@ -26241,8 +26273,8 @@
26273
"zh-chs": "未删除的设备组:{0}",
26274
"zh-cht": "未刪除的設備組:{0}",
26275
"xloc": [
26244
- "default.handlebars->119->2613",
26245
- "default3.handlebars->117->2610"
26276
+ "default.handlebars->119->2618",
26277
+ "default3.handlebars->117->2615"
26278
]
26279
},
26280
{
@@ -26271,8 +26303,8 @@
26303
"zh-chs": "设备组 {0} 已更改:{1}",
26304
"zh-cht": "設備組 {0} 已更改:{1}",
26305
"xloc": [
26274
- "default.handlebars->119->2699",
26275
- "default3.handlebars->117->2696"
26306
+ "default.handlebars->119->2704",
26307
+ "default3.handlebars->117->2701"
26308
]
26309
},
26310
{
@@ -26317,8 +26349,8 @@
26349
"pl": "Zapisy informacji urządzenia",
26350
"uk": "Записи інформації про пристрій",
26351
"xloc": [
26320
- "default.handlebars->119->3279",
26321
- "default3.handlebars->117->3269"
26352
+ "default.handlebars->119->3284",
26353
+ "default3.handlebars->117->3275"
26354
]
26355
},
26356
{
@@ -26948,8 +26980,8 @@
26980
"pl": "Zapisy zmiany stanu zasilania",
26981
"uk": "Записи про зміни стану живлення",
26982
"xloc": [
26951
- "default.handlebars->119->3285",
26952
- "default3.handlebars->117->3275"
26983
+ "default.handlebars->119->3290",
26984
+ "default3.handlebars->117->3281"
26985
]
26986
},
26987
{
@@ -26964,8 +26996,8 @@
26996
"pl": "Zapis urządzenia",
26997
"uk": "Запис пристрою",
26998
"xloc": [
26967
- "default.handlebars->119->3276",
26968
- "default3.handlebars->117->3266"
26999
+ "default.handlebars->119->3281",
27000
+ "default3.handlebars->117->3272"
27001
]
27002
},
27003
{
@@ -26994,8 +27026,8 @@
27026
"zh-chs": "设备请求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
27027
"zh-cht": "設備請求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
27028
"xloc": [
26997
- "default.handlebars->119->2668",
26998
- "default3.handlebars->117->2665"
27029
+ "default.handlebars->119->2673",
27030
+ "default3.handlebars->117->2670"
27031
]
27032
},
27033
{
@@ -27024,8 +27056,8 @@
27056
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
27057
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
27058
"xloc": [
27027
- "default.handlebars->119->2615",
27028
- "default3.handlebars->117->2612"
27059
+ "default.handlebars->119->2620",
27060
+ "default3.handlebars->117->2617"
27061
]
27062
},
27063
{
@@ -27040,8 +27072,8 @@
27072
"pl": "Zapisy udostępniania urządzenia",
27073
"uk": "Записи поширеного пристрою",
27074
"xloc": [
27043
- "default.handlebars->119->3289",
27044
- "default3.handlebars->117->3279"
27075
+ "default.handlebars->119->3294",
27076
+ "default3.handlebars->117->3285"
27077
]
27078
},
27079
{
@@ -27056,8 +27088,8 @@
27088
"pl": "Zapisy urządzenia, użytkowników, grup i inne",
27089
"uk": "Пристрій, користувачі, групи та інші записи",
27090
"xloc": [
27059
- "default.handlebars->119->3293",
27060
- "default3.handlebars->117->3283"
27091
+ "default.handlebars->119->3298",
27092
+ "default3.handlebars->117->3289"
27093
]
27094
},
27095
{
@@ -27086,12 +27118,12 @@
27118
"zh-chs": "设备",
27119
"zh-cht": "裝置",
27120
"xloc": [
27089
- "default.handlebars->119->2289",
27090
- "default.handlebars->119->2876",
27091
- "default.handlebars->119->2920",
27092
- "default3.handlebars->117->2285",
27093
- "default3.handlebars->117->2870",
27094
- "default3.handlebars->117->2914"
27121
+ "default.handlebars->119->2294",
27122
+ "default.handlebars->119->2881",
27123
+ "default.handlebars->119->2925",
27124
+ "default3.handlebars->117->2290",
27125
+ "default3.handlebars->117->2876",
27126
+ "default3.handlebars->117->2920"
27127
]
27128
},
27129
{
@@ -27337,8 +27369,8 @@
27369
"en": "Disabled Duo two-factor authentication",
27370
"nl": "Duo twee factorauthenticatie uitgeschakeld",
27371
"xloc": [
27340
- "default.handlebars->119->2718",
27341
- "default3.handlebars->117->2715"
27372
+ "default.handlebars->119->2723",
27373
+ "default3.handlebars->117->2720"
27374
]
27375
},
27376
{
@@ -27367,8 +27399,8 @@
27399
"zh-chs": "禁用的电子邮件两因素身份验证",
27400
"zh-cht": "禁用的電子郵件兩因素身份驗證",
27401
"xloc": [
27370
- "default.handlebars->119->2646",
27371
- "default3.handlebars->117->2643"
27402
+ "default.handlebars->119->2651",
27403
+ "default3.handlebars->117->2648"
27404
]
27405
},
27406
{
@@ -27394,9 +27426,9 @@
27426
"zh-chs": "出院率",
27427
"zh-cht": "出院率",
27428
"xloc": [
27397
- "default-mobile.handlebars->53->872",
27398
- "default.handlebars->119->1712",
27399
- "default3.handlebars->117->1695"
27429
+ "default-mobile.handlebars->53->877",
27430
+ "default.handlebars->119->1717",
27431
+ "default3.handlebars->117->1700"
27432
]
27433
},
27434
{
@@ -27422,9 +27454,9 @@
27454
"zh-chs": "出院",
27455
"zh-cht": "出院",
27456
"xloc": [
27425
- "default-mobile.handlebars->53->874",
27426
- "default.handlebars->119->1714",
27427
- "default3.handlebars->117->1697"
27457
+ "default-mobile.handlebars->53->879",
27458
+ "default.handlebars->119->1719",
27459
+ "default3.handlebars->117->1702"
27460
]
27461
},
27462
{
@@ -27457,13 +27489,13 @@
27489
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
27490
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
27491
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span",
27460
- "default.handlebars->119->2230",
27492
+ "default.handlebars->119->2235",
27493
"default.handlebars->119->967",
27494
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
27495
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
27496
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
27497
"default.handlebars->deskDisconnectContextMenu->3",
27466
- "default3.handlebars->117->2226",
27498
+ "default3.handlebars->117->2231",
27499
"default3.handlebars->117->963",
27500
"default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->disconnectbutton1span->5->3->0",
27501
"default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->disconnectbutton1span->disconnectbutton1",
@@ -27710,10 +27742,10 @@
27742
"pl": "Discord",
27743
"uk": "Discord",
27744
"xloc": [
27713
- "default.handlebars->119->1817",
27714
- "default.handlebars->119->3060",
27715
- "default3.handlebars->117->1799",
27716
- "default3.handlebars->117->3054"
27745
+ "default.handlebars->119->1822",
27746
+ "default.handlebars->119->3065",
27747
+ "default3.handlebars->117->1804",
27748
+ "default3.handlebars->117->3060"
27749
]
27750
},
27751
{
@@ -27918,8 +27950,8 @@
27950
"zh-chs": "显示设备组名称",
27951
"zh-cht": "顯示裝置群名稱",
27952
"xloc": [
27921
- "default.handlebars->119->2098",
27922
- "default3.handlebars->117->2080"
27953
+ "default.handlebars->119->2103",
27954
+ "default3.handlebars->117->2085"
27955
]
27956
},
27957
{
This file is too large to show in full.
views/default-mobile.handlebars
+8
@@ -6523,6 +6523,14 @@
6523
if (ident.cpu_name) { x += addDetailItem("CPU", EscapeHtml(ident.cpu_name).split('(TM)').join('™').split('(R)').join('®'), s); }
6524
if (ident.gpu_name) { for (var i in ident.gpu_name) { x += addDetailItem("GPU", EscapeHtml(ident.gpu_name[i]).split('(TM)').join('™').split('(R)').join('®'), s); } }
6525
if (x != '') { sections.push({ name: "Motherboard", html: x, img: 'motherboard' }); }
6526
+
6527
+ // System
6528
+ x = '';
6529
+ if (ident.chassis_manufacturer) { x += addDetailItem("Manufacturer", EscapeHtml(ident.chassis_manufacturer), s); }
6530
+ if (ident.product_name) { x += addDetailItem("Product Name", EscapeHtml(ident.product_name), s); }
6531
+ if (ident.chassis_serial) { x += addDetailItem("Serial", EscapeHtml(ident.chassis_serial), s); }
6532
+ if (ident.chassis_assettag) { x += addDetailItem("Asset Tag", EscapeHtml(ident.chassis_assettag), s); }
6533
+ if (x != '') { sections.push({ name: "System", html: x, img: 'system' }); }
6534
}
6535
6536
// TPM
views/default.handlebars
+8
@@ -12423,6 +12423,14 @@
12423
if (ident.cpu_name) { x += addDetailItem("CPU", EscapeHtml(ident.cpu_name).split('(TM)').join('™').split('(R)').join('®'), s); }
12424
if (ident.gpu_name) { for (var i in ident.gpu_name) { x += addDetailItem("GPU", EscapeHtml(ident.gpu_name[i]).split('(TM)').join('™').split('(R)').join('®'), s); } }
12425
if (x != '') { sections.push({ name: "Motherboard", html: x, img: 'motherboard64.png'}); }
12426
+
12427
+ // System
12428
+ x = '';
12429
+ if (ident.chassis_manufacturer) { x += addDetailItem("Manufacturer", EscapeHtml(ident.chassis_manufacturer), s); }
12430
+ if (ident.product_name) { x += addDetailItem("Product Name", EscapeHtml(ident.product_name), s); }
12431
+ if (ident.chassis_serial) { x += addDetailItem("Serial", EscapeHtml(ident.chassis_serial), s); }
12432
+ if (ident.chassis_assettag) { x += addDetailItem("Asset Tag", EscapeHtml(ident.chassis_assettag), s); }
12433
+ if (x != '') { sections.push({ name: "System", html: x, img: 'system64.png' }); }
12434
}
12435
12436
// TPM
views/default3.handlebars
+8
@@ -13466,6 +13466,14 @@
13466
if (ident.cpu_name) { x += addDetailItem("CPU", EscapeHtml(ident.cpu_name).split('(TM)').join('™').split('(R)').join('®'), s); }
13467
if (ident.gpu_name) { for (var i in ident.gpu_name) { x += addDetailItem("GPU", EscapeHtml(ident.gpu_name[i]).split('(TM)').join('™').split('(R)').join('®'), s); } }
13468
if (x != '') { sections.push({ name: "Motherboard", html: x, img: 'motherboard64.png' }); }
13469
+
13470
+ // System
13471
+ x = '';
13472
+ if (ident.chassis_manufacturer) { x += addDetailItem("Manufacturer", EscapeHtml(ident.chassis_manufacturer), s); }
13473
+ if (ident.product_name) { x += addDetailItem("Product Name", EscapeHtml(ident.product_name), s); }
13474
+ if (ident.chassis_serial) { x += addDetailItem("Serial", EscapeHtml(ident.chassis_serial), s); }
13475
+ if (ident.chassis_assettag) { x += addDetailItem("Asset Tag", EscapeHtml(ident.chassis_assettag), s); }
13476
+ if (x != '') { sections.push({ name: "System", html: x, img: 'system64.png' }); }
13477
}
13478
13479
// TPM