add linux arch/kernel release/kernel build to details/export/meshctrl
Signed-off-by: si458 <simonsmith5521@gmail.com>
si458 committed
May 16, 2026 at 12:05 UTC
df5e7937be234bba3d5bb7d04d79d5a6adb02f81
7 files changed
+4226
-4096
agents/modules_meshcore/computer-identifiers.js
+19
@@ -161,6 +161,25 @@ function linux_identifiers()
161
}
162
} catch (xx) { }
163
164
+ // Kernel info
165
+ child = require('child_process').execFile('/bin/sh', ['sh']);
166
+ child.stdout.str = ''; child.stdout.on('data', dataHandler);
167
+ child.stdin.write('uname -r\nexit\n');
168
+ child.waitExit();
169
+ try { ret['kernel_release'] = child.stdout.str.trim(); } catch (xx) { }
170
+
171
+ child = require('child_process').execFile('/bin/sh', ['sh']);
172
+ child.stdout.str = ''; child.stdout.on('data', dataHandler);
173
+ child.stdin.write('uname -v\nexit\n');
174
+ child.waitExit();
175
+ try { ret['kernel_build'] = child.stdout.str.trim(); } catch (xx) { }
176
+
177
+ child = require('child_process').execFile('/bin/sh', ['sh']);
178
+ child.stdout.str = ''; child.stdout.on('data', dataHandler);
179
+ child.stdin.write('uname -m\nexit\n');
180
+ child.waitExit();
181
+ try { ret['arch'] = child.stdout.str.trim(); } catch (xx) { }
182
+
183
// Fetch GPU info
184
child = require('child_process').execFile('/bin/sh', ['sh']);
185
child.stdout.str = ''; child.stdout.on('data', dataHandler);
meshctrl.js
+6
-1
@@ -2998,11 +2998,16 @@ function displayDeviceInfo(sysinfo, lastconnect, network, nodes) {
2998
// Operating System
2999
var hardware = null;
3000
if ((sysinfo != null) && (sysinfo.hardware != null)) { hardware = sysinfo.hardware; }
3001
- if ((hardware && hardware.windows && hardware.windows.osinfo) || node.osdesc) {
3001
+ if ((hardware && hardware.windows && hardware.windows.osinfo) || (hardware && hardware.linux) || node.osdesc) {
3002
var output = {}, outputCount = 0;
3003
if (node.rname) { output["Name"] = node.rname; outputCount++; }
3004
if (node.osdesc) { output["Version"] = node.osdesc; outputCount++; }
3005
if (hardware && hardware.windows && hardware.windows.osinfo) { var m = hardware.windows.osinfo; if (m.OSArchitecture) { output["Architecture"] = m.OSArchitecture; outputCount++; } }
3006
+ if (hardware && hardware.linux) {
3007
+ if (hardware.linux.arch) { output["Architecture"] = hardware.linux.arch; outputCount++; }
3008
+ if (hardware.linux.kernel_release) { output["Kernel Release"] = hardware.linux.kernel_release; outputCount++; }
3009
+ if (hardware.linux.kernel_build) { output["Kernel Build"] = hardware.linux.kernel_build; outputCount++; }
3010
+ }
3011
if (outputCount > 0) { info["Operating System"] = output; }
3012
}
3013
meshuser.js
+15
-2
@@ -5271,7 +5271,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
5271
if (type == 'csv') {
5272
try {
5273
// Create the CSV file
5274
- 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';
5274
+ output = 'id,name,rname,host,icon,ip,osdesc,groupname,av,update,firewall,bitlocker,avdetails,tags,lastbootuptime,cpu,osbuild,arch,kernelRelease,kernelBuild,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';
5275
for (var i = 0; i < results.length; i++) {
5276
const nodeinfo = results[i];
5277
@@ -5316,6 +5316,10 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
5316
output += ',';
5317
if (nodeinfo.sys.hardware.windows.osinfo && (nodeinfo.sys.hardware.windows.osinfo.BuildNumber)) { output += csvClean(nodeinfo.sys.hardware.windows.osinfo.BuildNumber); }
5318
output += ',';
5319
+ if (nodeinfo.sys.hardware.windows.osinfo && nodeinfo.sys.hardware.windows.osinfo.OSArchitecture) { output += csvClean(nodeinfo.sys.hardware.windows.osinfo.OSArchitecture); }
5320
+ output += ',';
5321
+ output += ',';
5322
+ output += ',';
5323
if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.bios_date)) { output += csvClean(nodeinfo.sys.hardware.identifiers.bios_date); }
5324
output += ',';
5325
if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.bios_vendor)) { output += csvClean(nodeinfo.sys.hardware.identifiers.bios_vendor); }
@@ -5371,6 +5375,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
5375
output += ',';
5376
output += ',';
5377
output += ',';
5378
+ output += ',';
5379
+ output += ',';
5380
+ output += ',';
5381
if (nodeinfo.sys.hardware.mobile && (nodeinfo.sys.hardware.mobile.bootloader)) { output += csvClean(nodeinfo.sys.hardware.mobile.bootloader); }
5382
output += ',';
5383
output += ',';
@@ -5397,6 +5404,12 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
5404
output += ',';
5405
if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.cpu_name)) { output += csvClean(nodeinfo.sys.hardware.identifiers.cpu_name); }
5406
output += ',,';
5407
+ if (nodeinfo.sys.hardware.linux && nodeinfo.sys.hardware.linux.arch) { output += csvClean(nodeinfo.sys.hardware.linux.arch); }
5408
+ output += ',';
5409
+ if (nodeinfo.sys.hardware.linux && nodeinfo.sys.hardware.linux.kernel_release) { output += csvClean(nodeinfo.sys.hardware.linux.kernel_release); }
5410
+ output += ',';
5411
+ if (nodeinfo.sys.hardware.linux && nodeinfo.sys.hardware.linux.kernel_build) { output += csvClean(nodeinfo.sys.hardware.linux.kernel_build); }
5412
+ output += ',';
5413
if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.bios_date)) { output += csvClean(nodeinfo.sys.hardware.linux.bios_date); }
5414
output += ',';
5415
if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.bios_vendor)) { output += csvClean(nodeinfo.sys.hardware.linux.bios_vendor); }
@@ -5449,7 +5462,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
5462
}
5463
}
5464
} else {
5452
- output += ',,,,,,,,,,,,,,,,,,,,,,';
5465
+ output += ',,,,,,,,,,,,,,,,,,,,,,,,,';
5466
}
5467
5468
// Agent information
translate/translate.json
+4164
-4093
@@ -26,10 +26,10 @@
26
"zh-chs": " + CIRA",
27
"zh-cht": " + CIRA",
28
"xloc": [
29
- "default.handlebars->121->2278",
30
- "default.handlebars->121->2280",
31
- "default3.handlebars->121->2267",
32
- "default3.handlebars->121->2269"
29
+ "default.handlebars->121->2283",
30
+ "default.handlebars->121->2285",
31
+ "default3.handlebars->121->2272",
32
+ "default3.handlebars->121->2274"
33
]
34
},
35
{
@@ -278,8 +278,8 @@
278
"zh-chs": " 可以使用密码提示,但不建议使用。",
279
"zh-cht": " 可以使用密碼提示,但不建議使用。",
280
"xloc": [
281
- "default.handlebars->121->2146",
282
- "default3.handlebars->121->2121"
281
+ "default.handlebars->121->2151",
282
+ "default3.handlebars->121->2126"
283
]
284
},
285
{
@@ -308,10 +308,10 @@
308
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
309
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
310
"xloc": [
311
- "default.handlebars->121->2404",
312
- "default.handlebars->121->2993",
313
- "default3.handlebars->121->2394",
314
- "default3.handlebars->121->2981"
311
+ "default.handlebars->121->2409",
312
+ "default.handlebars->121->2998",
313
+ "default3.handlebars->121->2399",
314
+ "default3.handlebars->121->2986"
315
]
316
},
317
{
@@ -569,9 +569,9 @@
569
"zh-chs": "* 8-16个字符,1个大写,1个小写,1个数字,1个非字母数字。",
570
"zh-cht": "* 8-16個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
571
"xloc": [
572
- "default.handlebars->121->2362",
572
+ "default.handlebars->121->2367",
573
"default.handlebars->121->566",
574
- "default3.handlebars->121->2349",
574
+ "default3.handlebars->121->2354",
575
"default3.handlebars->121->557"
576
]
577
},
@@ -654,22 +654,22 @@
654
"zh-chs": ",",
655
"zh-cht": ",",
656
"xloc": [
657
- "default-mobile.handlebars->55->1058",
658
- "default-mobile.handlebars->55->814",
659
- "default-mobile.handlebars->55->816",
660
- "default-mobile.handlebars->55->818",
657
+ "default-mobile.handlebars->55->1063",
658
+ "default-mobile.handlebars->55->819",
659
+ "default-mobile.handlebars->55->821",
660
+ "default-mobile.handlebars->55->823",
661
"default.handlebars->121->1023",
662
- "default.handlebars->121->1672",
663
- "default.handlebars->121->1674",
664
- "default.handlebars->121->1676",
665
- "default.handlebars->121->2480",
666
- "default.handlebars->121->2766",
662
+ "default.handlebars->121->1677",
663
+ "default.handlebars->121->1679",
664
+ "default.handlebars->121->1681",
665
+ "default.handlebars->121->2485",
666
+ "default.handlebars->121->2771",
667
"default3.handlebars->121->1014",
668
- "default3.handlebars->121->1652",
669
- "default3.handlebars->121->1654",
670
- "default3.handlebars->121->1656",
671
- "default3.handlebars->121->2470",
672
- "default3.handlebars->121->2756"
668
+ "default3.handlebars->121->1657",
669
+ "default3.handlebars->121->1659",
670
+ "default3.handlebars->121->1661",
671
+ "default3.handlebars->121->2475",
672
+ "default3.handlebars->121->2761"
673
]
674
},
675
{
@@ -817,9 +817,9 @@
817
"zh-chs": ",MQTT在线",
818
"zh-cht": ",MQTT在線",
819
"xloc": [
820
- "default-mobile.handlebars->55->959",
821
- "default.handlebars->121->1818",
822
- "default3.handlebars->121->1796"
820
+ "default-mobile.handlebars->55->964",
821
+ "default.handlebars->121->1823",
822
+ "default3.handlebars->121->1801"
823
]
824
},
825
{
@@ -849,9 +849,9 @@
849
"zh-cht": ", 不同意",
850
"xloc": [
851
"default.handlebars->121->1118",
852
- "default.handlebars->121->2320",
852
+ "default.handlebars->121->2325",
853
"default3.handlebars->121->1109",
854
- "default3.handlebars->121->2309"
854
+ "default3.handlebars->121->2314"
855
]
856
},
857
{
@@ -881,9 +881,9 @@
881
"zh-cht": ",提示同意",
882
"xloc": [
883
"default.handlebars->121->1119",
884
- "default.handlebars->121->2321",
884
+ "default.handlebars->121->2326",
885
"default3.handlebars->121->1110",
886
- "default3.handlebars->121->2310"
886
+ "default3.handlebars->121->2315"
887
]
888
},
889
{
@@ -942,9 +942,9 @@
942
"zh-cht": ", 每天重複",
943
"xloc": [
944
"default.handlebars->121->1115",
945
- "default.handlebars->121->2317",
945
+ "default.handlebars->121->2322",
946
"default3.handlebars->121->1106",
947
- "default3.handlebars->121->2306"
947
+ "default3.handlebars->121->2311"
948
]
949
},
950
{
@@ -974,9 +974,9 @@
974
"zh-cht": ", 每週重複一次",
975
"xloc": [
976
"default.handlebars->121->1116",
977
- "default.handlebars->121->2318",
977
+ "default.handlebars->121->2323",
978
"default3.handlebars->121->1107",
979
- "default3.handlebars->121->2307"
979
+ "default3.handlebars->121->2312"
980
]
981
},
982
{
@@ -1125,9 +1125,9 @@
1125
"zh-cht": ", 工具欄",
1126
"xloc": [
1127
"default.handlebars->121->1120",
1128
- "default.handlebars->121->2322",
1128
+ "default.handlebars->121->2327",
1129
"default3.handlebars->121->1111",
1130
- "default3.handlebars->121->2311"
1130
+ "default3.handlebars->121->2316"
1131
]
1132
},
1133
{
@@ -1157,9 +1157,9 @@
1157
"zh-cht": ", 僅查看桌面",
1158
"xloc": [
1159
"default.handlebars->121->1117",
1160
- "default.handlebars->121->2319",
1160
+ "default.handlebars->121->2324",
1161
"default3.handlebars->121->1108",
1162
- "default3.handlebars->121->2308"
1162
+ "default3.handlebars->121->2313"
1163
]
1164
},
1165
{
@@ -1456,8 +1456,8 @@
1456
"en": "0 bps",
1457
"xloc": [
1458
"default-mobile.handlebars->55->370",
1459
- "default.handlebars->121->2563",
1460
- "default3.handlebars->121->2553"
1459
+ "default.handlebars->121->2568",
1460
+ "default3.handlebars->121->2558"
1461
]
1462
},
1463
{
@@ -1514,8 +1514,8 @@
1514
"zh-chs": "1个活跃时段",
1515
"zh-cht": "1個活躍時段",
1516
"xloc": [
1517
- "default.handlebars->121->3088",
1518
- "default3.handlebars->121->3076"
1517
+ "default.handlebars->121->3093",
1518
+ "default3.handlebars->121->3081"
1519
]
1520
},
1521
{
@@ -1544,10 +1544,10 @@
1544
"zh-chs": "1个字节",
1545
"zh-cht": "1個位元組",
1546
"xloc": [
1547
- "default-mobile.handlebars->55->1102",
1547
+ "default-mobile.handlebars->55->1107",
1548
"default-mobile.handlebars->55->378",
1549
- "default.handlebars->121->2574",
1550
- "default3.handlebars->121->2564",
1549
+ "default.handlebars->121->2579",
1550
+ "default3.handlebars->121->2569",
1551
"download.handlebars->7->1",
1552
"download2.handlebars->11->1",
1553
"sharing-mobile.handlebars->55->111",
@@ -1674,8 +1674,8 @@
1674
"zh-chs": "1组",
1675
"zh-cht": "1群",
1676
"xloc": [
1677
- "default.handlebars->121->3043",
1678
- "default3.handlebars->121->3031"
1677
+ "default.handlebars->121->3048",
1678
+ "default3.handlebars->121->3036"
1679
]
1680
},
1681
{
@@ -1739,9 +1739,9 @@
1739
"zh-cht": "1分鐘",
1740
"xloc": [
1741
"default.handlebars->121->1228",
1742
- "default.handlebars->121->2111",
1742
+ "default.handlebars->121->2116",
1743
"default3.handlebars->121->1217",
1744
- "default3.handlebars->121->2087"
1744
+ "default3.handlebars->121->2092"
1745
]
1746
},
1747
{
@@ -1859,8 +1859,8 @@
1859
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1860
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1861
"xloc": [
1862
- "default.handlebars->121->2798",
1863
- "default3.handlebars->121->2788"
1862
+ "default.handlebars->121->2803",
1863
+ "default3.handlebars->121->2793"
1864
]
1865
},
1866
{
@@ -2072,7 +2072,7 @@
2072
"default-mobile.handlebars->55->425",
2073
"default-mobile.handlebars->55->429",
2074
"default-mobile.handlebars->55->433",
2075
- "default.handlebars->121->2802",
2075
+ "default.handlebars->121->2807",
2076
"default.handlebars->121->484",
2077
"default.handlebars->121->487",
2078
"default.handlebars->121->491",
@@ -2080,7 +2080,7 @@
2080
"default.handlebars->121->499",
2081
"default.handlebars->121->503",
2082
"default.handlebars->121->507",
2083
- "default3.handlebars->121->2792",
2083
+ "default3.handlebars->121->2797",
2084
"default3.handlebars->121->475",
2085
"default3.handlebars->121->478",
2086
"default3.handlebars->121->482",
@@ -2300,9 +2300,9 @@
2300
"zh-cht": "10分鐘",
2301
"xloc": [
2302
"default.handlebars->121->1230",
2303
- "default.handlebars->121->2113",
2303
+ "default.handlebars->121->2118",
2304
"default3.handlebars->121->1219",
2305
- "default3.handlebars->121->2089"
2305
+ "default3.handlebars->121->2094"
2306
]
2307
},
2308
{
@@ -2511,9 +2511,9 @@
2511
"zh-cht": "12小時",
2512
"xloc": [
2513
"default.handlebars->121->1238",
2514
- "default.handlebars->121->2121",
2514
+ "default.handlebars->121->2126",
2515
"default3.handlebars->121->1227",
2516
- "default3.handlebars->121->2097"
2516
+ "default3.handlebars->121->2102"
2517
]
2518
},
2519
{
@@ -2633,9 +2633,9 @@
2633
"zh-cht": "15分鐘",
2634
"xloc": [
2635
"default.handlebars->121->1231",
2636
- "default.handlebars->121->2114",
2636
+ "default.handlebars->121->2119",
2637
"default3.handlebars->121->1220",
2638
- "default3.handlebars->121->2090"
2638
+ "default3.handlebars->121->2095"
2639
]
2640
},
2641
{
@@ -2665,9 +2665,9 @@
2665
"zh-cht": "16小時",
2666
"xloc": [
2667
"default.handlebars->121->1239",
2668
- "default.handlebars->121->2122",
2668
+ "default.handlebars->121->2127",
2669
"default3.handlebars->121->1228",
2670
- "default3.handlebars->121->2098"
2670
+ "default3.handlebars->121->2103"
2671
]
2672
},
2673
{
@@ -2813,9 +2813,9 @@
2813
"zh-cht": "2天",
2814
"xloc": [
2815
"default.handlebars->121->1241",
2816
- "default.handlebars->121->2124",
2816
+ "default.handlebars->121->2129",
2817
"default3.handlebars->121->1230",
2818
- "default3.handlebars->121->2100"
2818
+ "default3.handlebars->121->2105"
2819
]
2820
},
2821
{
@@ -2845,9 +2845,9 @@
2845
"zh-cht": "2小時",
2846
"xloc": [
2847
"default.handlebars->121->1235",
2848
- "default.handlebars->121->2118",
2848
+ "default.handlebars->121->2123",
2849
"default3.handlebars->121->1224",
2850
- "default3.handlebars->121->2094"
2850
+ "default3.handlebars->121->2099"
2851
]
2852
},
2853
{
@@ -3058,9 +3058,9 @@
3058
"zh-cht": "24小時",
3059
"xloc": [
3060
"default.handlebars->121->1240",
3061
- "default.handlebars->121->2123",
3061
+ "default.handlebars->121->2128",
3062
"default3.handlebars->121->1229",
3063
- "default3.handlebars->121->2099"
3063
+ "default3.handlebars->121->2104"
3064
]
3065
},
3066
{
@@ -3121,8 +3121,8 @@
3121
"zh-chs": "2FA备份代码已清除",
3122
"zh-cht": "2FA備份代碼已清除",
3123
"xloc": [
3124
- "default.handlebars->121->2687",
3125
- "default3.handlebars->121->2677"
3124
+ "default.handlebars->121->2692",
3125
+ "default3.handlebars->121->2682"
3126
]
3127
},
3128
{
@@ -3182,8 +3182,8 @@
3182
"zh-chs": "第二个因素",
3183
"zh-cht": "第二個因素",
3184
"xloc": [
3185
- "default.handlebars->121->3275",
3186
- "default3.handlebars->121->3259"
3185
+ "default.handlebars->121->3280",
3186
+ "default3.handlebars->121->3264"
3187
]
3188
},
3189
{
@@ -3212,10 +3212,10 @@
3212
"zh-chs": "启用第二因素身份验证",
3213
"zh-cht": "啟用第二因素身份驗證",
3214
"xloc": [
3215
- "default.handlebars->121->2816",
3216
- "default.handlebars->121->3069",
3217
- "default3.handlebars->121->2806",
3218
- "default3.handlebars->121->3057"
3215
+ "default.handlebars->121->2821",
3216
+ "default.handlebars->121->3074",
3217
+ "default3.handlebars->121->2811",
3218
+ "default3.handlebars->121->3062"
3219
]
3220
},
3221
{
@@ -3387,9 +3387,9 @@
3387
"zh-cht": "30分鐘",
3388
"xloc": [
3389
"default.handlebars->121->1232",
3390
- "default.handlebars->121->2115",
3390
+ "default.handlebars->121->2120",
3391
"default3.handlebars->121->1221",
3392
- "default3.handlebars->121->2091"
3392
+ "default3.handlebars->121->2096"
3393
]
3394
},
3395
{
@@ -3419,8 +3419,11 @@
3419
"zh-cht": "32 位",
3420
"xloc": [
3421
"default-mobile.handlebars->55->741",
3422
+ "default-mobile.handlebars->55->753",
3423
"default.handlebars->121->1621",
3423
- "default3.handlebars->121->1601"
3424
+ "default.handlebars->121->1636",
3425
+ "default3.handlebars->121->1601",
3426
+ "default3.handlebars->121->1613"
3427
]
3428
},
3429
{
@@ -3482,9 +3485,9 @@
3485
"zh-cht": "4天",
3486
"xloc": [
3487
"default.handlebars->121->1242",
3485
- "default.handlebars->121->2125",
3488
+ "default.handlebars->121->2130",
3489
"default3.handlebars->121->1231",
3487
- "default3.handlebars->121->2101"
3490
+ "default3.handlebars->121->2106"
3491
]
3492
},
3493
{
@@ -3514,9 +3517,9 @@
3517
"zh-cht": "4個小時",
3518
"xloc": [
3519
"default.handlebars->121->1236",
3517
- "default.handlebars->121->2119",
3520
+ "default.handlebars->121->2124",
3521
"default3.handlebars->121->1225",
3519
- "default3.handlebars->121->2095"
3522
+ "default3.handlebars->121->2100"
3523
]
3524
},
3525
{
@@ -3663,9 +3666,9 @@
3666
"zh-cht": "45分鐘",
3667
"xloc": [
3668
"default.handlebars->121->1233",
3666
- "default.handlebars->121->2116",
3669
+ "default.handlebars->121->2121",
3670
"default3.handlebars->121->1222",
3668
- "default3.handlebars->121->2092"
3671
+ "default3.handlebars->121->2097"
3672
]
3673
},
3674
{
@@ -3724,9 +3727,9 @@
3727
"zh-cht": "5分鐘",
3728
"xloc": [
3729
"default.handlebars->121->1229",
3727
- "default.handlebars->121->2112",
3730
+ "default.handlebars->121->2117",
3731
"default3.handlebars->121->1218",
3729
- "default3.handlebars->121->2088"
3732
+ "default3.handlebars->121->2093"
3733
]
3734
},
3735
{
@@ -3938,9 +3941,9 @@
3941
"zh-cht": "60分鐘",
3942
"xloc": [
3943
"default.handlebars->121->1234",
3941
- "default.handlebars->121->2117",
3944
+ "default.handlebars->121->2122",
3945
"default3.handlebars->121->1223",
3943
- "default3.handlebars->121->2093"
3946
+ "default3.handlebars->121->2098"
3947
]
3948
},
3949
{
@@ -4029,8 +4032,11 @@
4032
"zh-cht": "64 位",
4033
"xloc": [
4034
"default-mobile.handlebars->55->743",
4035
+ "default-mobile.handlebars->55->752",
4036
"default.handlebars->121->1623",
4033
- "default3.handlebars->121->1603"
4037
+ "default.handlebars->121->1635",
4038
+ "default3.handlebars->121->1603",
4039
+ "default3.handlebars->121->1612"
4040
]
4041
},
4042
{
@@ -4118,8 +4124,8 @@
4124
"zh-chs": "7天",
4125
"zh-cht": "7天",
4126
"xloc": [
4121
- "default.handlebars->121->2126",
4122
- "default3.handlebars->121->2102"
4127
+ "default.handlebars->121->2131",
4128
+ "default3.handlebars->121->2107"
4129
]
4130
},
4131
{
@@ -4211,11 +4217,11 @@
4217
"zh-cht": "8小時",
4218
"xloc": [
4219
"default.handlebars->121->1237",
4214
- "default.handlebars->121->2120",
4220
+ "default.handlebars->121->2125",
4221
"default.handlebars->121->594",
4222
"default.handlebars->121->608",
4223
"default3.handlebars->121->1226",
4218
- "default3.handlebars->121->2096",
4224
+ "default3.handlebars->121->2101",
4225
"default3.handlebars->121->585",
4226
"default3.handlebars->121->599"
4227
]
@@ -4420,10 +4426,10 @@
4426
"zh-cht": "ACM",
4427
"xloc": [
4428
"default-mobile.handlebars->55->504",
4423
- "default.handlebars->121->2298",
4429
+ "default.handlebars->121->2303",
4430
"default.handlebars->121->472",
4431
"default.handlebars->121->928",
4426
- "default3.handlebars->121->2287",
4432
+ "default3.handlebars->121->2292",
4433
"default3.handlebars->121->463",
4434
"default3.handlebars->121->919"
4435
]
@@ -4505,8 +4511,8 @@
4511
"zh-chs": "操作系统",
4512
"zh-cht": "AMT操作系統",
4513
"xloc": [
4508
- "default.handlebars->121->3434",
4509
- "default3.handlebars->121->3418"
4514
+ "default.handlebars->121->3439",
4515
+ "default3.handlebars->121->3423"
4516
]
4517
},
4518
{
@@ -4534,10 +4540,10 @@
4540
"zh-chs": "AMT-Redir",
4541
"zh-cht": "AMT-Redir",
4542
"xloc": [
4537
- "default.handlebars->121->3285",
4538
- "default.handlebars->121->3338",
4539
- "default3.handlebars->121->3269",
4540
- "default3.handlebars->121->3322"
4543
+ "default.handlebars->121->3290",
4544
+ "default.handlebars->121->3343",
4545
+ "default3.handlebars->121->3274",
4546
+ "default3.handlebars->121->3327"
4547
]
4548
},
4549
{
@@ -4565,10 +4571,10 @@
4571
"zh-chs": "AMT-WSMAN",
4572
"zh-cht": "AMT-WSMAN",
4573
"xloc": [
4568
- "default.handlebars->121->3284",
4569
- "default.handlebars->121->3337",
4570
- "default3.handlebars->121->3268",
4571
- "default3.handlebars->121->3321"
4574
+ "default.handlebars->121->3289",
4575
+ "default.handlebars->121->3342",
4576
+ "default3.handlebars->121->3273",
4577
+ "default3.handlebars->121->3326"
4578
]
4579
},
4580
{
@@ -4588,7 +4594,7 @@
4594
"pl": "Wersja APK MeshAgent",
4595
"uk": "MeshAgent версія APK",
4596
"xloc": [
4591
- "default-mobile.handlebars->55->1011",
4597
+ "default-mobile.handlebars->55->1016",
4598
"default.handlebars->121->683",
4599
"default3.handlebars->121->674"
4600
]
@@ -4801,8 +4807,8 @@
4807
"zh-chs": "影音",
4808
"zh-cht": "視聽",
4809
"xloc": [
4804
- "default-mobile.handlebars->55->752",
4805
- "default-mobile.handlebars->55->754",
4810
+ "default-mobile.handlebars->55->757",
4811
+ "default-mobile.handlebars->55->759",
4812
"default.handlebars->121->947",
4813
"default.handlebars->121->949",
4814
"default3.handlebars->121->938",
@@ -4835,9 +4841,9 @@
4841
"zh-chs": "拒绝访问",
4842
"zh-cht": "拒絕存取",
4843
"xloc": [
4838
- "default-mobile.handlebars->55->960",
4839
- "default.handlebars->121->1819",
4840
- "default3.handlebars->121->1797"
4844
+ "default-mobile.handlebars->55->965",
4845
+ "default.handlebars->121->1824",
4846
+ "default3.handlebars->121->1802"
4847
]
4848
},
4849
{
@@ -4926,8 +4932,8 @@
4932
"zh-chs": "访问服务器档案",
4933
"zh-cht": "存取伺服器檔案",
4934
"xloc": [
4929
- "default.handlebars->121->2999",
4930
- "default3.handlebars->121->2987"
4935
+ "default.handlebars->121->3004",
4936
+ "default3.handlebars->121->2992"
4937
]
4938
},
4939
{
@@ -5054,16 +5060,16 @@
5060
"default-mobile.handlebars->55->471",
5061
"default-mobile.handlebars->55->473",
5062
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
5057
- "default.handlebars->121->2155",
5058
- "default.handlebars->121->2157",
5059
- "default.handlebars->121->3489",
5063
+ "default.handlebars->121->2160",
5064
+ "default.handlebars->121->2162",
5065
+ "default.handlebars->121->3494",
5066
"default.handlebars->121->765",
5067
"default.handlebars->121->888",
5068
"default.handlebars->121->890",
5063
- "default3.handlebars->121->2152",
5064
- "default3.handlebars->121->2153",
5065
- "default3.handlebars->121->3471",
5066
- "default3.handlebars->121->3473",
5069
+ "default3.handlebars->121->2157",
5070
+ "default3.handlebars->121->2158",
5071
+ "default3.handlebars->121->3476",
5072
+ "default3.handlebars->121->3478",
5073
"default3.handlebars->121->756",
5074
"default3.handlebars->121->879",
5075
"default3.handlebars->121->881"
@@ -5095,9 +5101,9 @@
5101
"zh-chs": "帐号设定",
5102
"zh-cht": "帳號設定",
5103
"xloc": [
5098
- "default-mobile.handlebars->55->1069",
5099
- "default.handlebars->121->3358",
5100
- "default3.handlebars->121->3342"
5104
+ "default-mobile.handlebars->55->1074",
5105
+ "default.handlebars->121->3363",
5106
+ "default3.handlebars->121->3347"
5107
]
5108
},
5109
{
@@ -5172,8 +5178,8 @@
5178
"pl": "Konto zmienione di synchronizacji z danymi LDAP.",
5179
"uk": "Акаунт змінено на синхронізацію з даними LDAP.",
5180
"xloc": [
5175
- "default.handlebars->121->2748",
5176
- "default3.handlebars->121->2738"
5181
+ "default.handlebars->121->2753",
5182
+ "default3.handlebars->121->2743"
5183
]
5184
},
5185
{
@@ -5202,8 +5208,8 @@
5208
"zh-chs": "帐户已更改:{0}",
5209
"zh-cht": "帳戶已更改:{0}",
5210
"xloc": [
5205
- "default.handlebars->121->2660",
5206
- "default3.handlebars->121->2650"
5211
+ "default.handlebars->121->2665",
5212
+ "default3.handlebars->121->2655"
5213
]
5214
},
5215
{
@@ -5232,8 +5238,8 @@
5238
"zh-chs": "创建帐户,电子邮件为{0}",
5239
"zh-cht": "創建帳戶,電子郵件為{0}",
5240
"xloc": [
5235
- "default.handlebars->121->2659",
5236
- "default3.handlebars->121->2649"
5241
+ "default.handlebars->121->2664",
5242
+ "default3.handlebars->121->2654"
5243
]
5244
},
5245
{
@@ -5262,8 +5268,8 @@
5268
"zh-chs": "已创建帐户,名称为 {0}。",
5269
"zh-cht": "已創建帳戶,名稱為 {0}。",
5270
"xloc": [
5265
- "default.handlebars->121->2722",
5266
- "default3.handlebars->121->2712"
5271
+ "default.handlebars->121->2727",
5272
+ "default3.handlebars->121->2717"
5273
]
5274
},
5275
{
@@ -5292,8 +5298,8 @@
5298
"zh-chs": "创建帐户,用户名是{0}",
5299
"zh-cht": "帳戶已創建,用戶名是{0}",
5300
"xloc": [
5295
- "default.handlebars->121->2658",
5296
- "default3.handlebars->121->2648"
5301
+ "default.handlebars->121->2663",
5302
+ "default3.handlebars->121->2653"
5303
]
5304
},
5305
{
@@ -5324,11 +5330,11 @@
5330
"xloc": [
5331
"default-mobile.handlebars->55->74",
5332
"default.handlebars->121->227",
5327
- "default.handlebars->121->2818",
5328
- "default.handlebars->121->2996",
5333
+ "default.handlebars->121->2823",
5334
+ "default.handlebars->121->3001",
5335
"default3.handlebars->121->224",
5330
- "default3.handlebars->121->2808",
5331
- "default3.handlebars->121->2984"
5336
+ "default3.handlebars->121->2813",
5337
+ "default3.handlebars->121->2989"
5338
]
5339
},
5340
{
@@ -5357,9 +5363,9 @@
5363
"zh-chs": "达到帐户限制。",
5364
"zh-cht": "達到帳戶限制。",
5365
"xloc": [
5360
- "default-mobile.handlebars->55->1081",
5361
- "default.handlebars->121->3370",
5362
- "default3.handlebars->121->3354",
5366
+ "default-mobile.handlebars->55->1086",
5367
+ "default.handlebars->121->3375",
5368
+ "default3.handlebars->121->3359",
5369
"login-mobile.handlebars->23->6",
5370
"login.handlebars->13->8",
5371
"login2.handlebars->17->206"
@@ -5422,8 +5428,8 @@
5428
"zh-chs": "帐号登录",
5429
"zh-cht": "帳號登錄",
5430
"xloc": [
5425
- "default.handlebars->121->2595",
5426
- "default3.handlebars->121->2585"
5431
+ "default.handlebars->121->2600",
5432
+ "default3.handlebars->121->2590"
5433
]
5434
},
5435
{
@@ -5452,8 +5458,8 @@
5458
"zh-chs": "来自 {0}、{1}、{2} 的帐户登录",
5459
"zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
5460
"xloc": [
5455
- "default.handlebars->121->2701",
5456
- "default3.handlebars->121->2691"
5461
+ "default.handlebars->121->2706",
5462
+ "default3.handlebars->121->2696"
5463
]
5464
},
5465
{
@@ -5467,8 +5473,8 @@
5473
"pl": "Zapisy logowania tokenami użytkownika",
5474
"uk": "Записи токенів входу до акаунту",
5475
"xloc": [
5470
- "default.handlebars->121->3327",
5471
- "default3.handlebars->121->3311"
5476
+ "default.handlebars->121->3332",
5477
+ "default3.handlebars->121->3316"
5478
]
5479
},
5480
{
@@ -5497,8 +5503,8 @@
5503
"zh-chs": "帐户登出",
5504
"zh-cht": "帳戶登出",
5505
"xloc": [
5500
- "default.handlebars->121->2596",
5501
- "default3.handlebars->121->2586"
5506
+ "default.handlebars->121->2601",
5507
+ "default3.handlebars->121->2591"
5508
]
5509
},
5510
{
@@ -5558,8 +5564,8 @@
5564
"zh-chs": "帐户密码已更改:{0}",
5565
"zh-cht": "帳戶密碼已更改:{0}",
5566
"xloc": [
5561
- "default.handlebars->121->2668",
5562
- "default3.handlebars->121->2658"
5567
+ "default.handlebars->121->2673",
5568
+ "default3.handlebars->121->2663"
5569
]
5570
},
5571
{
@@ -5588,8 +5594,8 @@
5594
"zh-chs": "帐户已删除",
5595
"zh-cht": "帳戶已刪除",
5596
"xloc": [
5591
- "default.handlebars->121->2657",
5592
- "default3.handlebars->121->2647"
5597
+ "default.handlebars->121->2662",
5598
+ "default3.handlebars->121->2652"
5599
]
5600
},
5601
{
@@ -5648,10 +5654,10 @@
5654
"zh-chs": "指令",
5655
"zh-cht": "指令",
5656
"xloc": [
5651
- "default-mobile.handlebars->55->975",
5652
- "default.handlebars->121->1834",
5657
+ "default-mobile.handlebars->55->980",
5658
+ "default.handlebars->121->1839",
5659
"default.handlebars->container->column_l->p42->p42tbl->1->0->8",
5654
- "default3.handlebars->121->1812",
5660
+ "default3.handlebars->121->1817",
5661
"default3.handlebars->container->column_l->p42->p42tbl->1->0->17"
5662
]
5663
},
@@ -5841,8 +5847,8 @@
5847
"zh-chs": "如果ACM失败,则激活到CCM",
5848
"zh-cht": "如果ACM失敗,則激活到CCM",
5849
"xloc": [
5844
- "default.handlebars->121->2353",
5845
- "default3.handlebars->121->2340"
5850
+ "default.handlebars->121->2358",
5851
+ "default3.handlebars->121->2345"
5852
]
5853
},
5854
{
@@ -5873,14 +5879,14 @@
5879
"xloc": [
5880
"default-mobile.handlebars->55->499",
5881
"default-mobile.handlebars->55->501",
5876
- "default-mobile.handlebars->55->826",
5877
- "default-mobile.handlebars->55->860",
5878
- "default.handlebars->121->1684",
5879
- "default.handlebars->121->1718",
5882
+ "default-mobile.handlebars->55->831",
5883
+ "default-mobile.handlebars->55->865",
5884
+ "default.handlebars->121->1689",
5885
+ "default.handlebars->121->1723",
5886
"default.handlebars->121->921",
5887
"default.handlebars->121->923",
5882
- "default3.handlebars->121->1662",
5883
- "default3.handlebars->121->1696",
5888
+ "default3.handlebars->121->1667",
5889
+ "default3.handlebars->121->1701",
5890
"default3.handlebars->121->912",
5891
"default3.handlebars->121->914"
5892
]
@@ -5942,9 +5948,9 @@
5948
"zh-cht": "主動設備共享",
5949
"xloc": [
5950
"default.handlebars->121->1100",
5945
- "default.handlebars->121->2302",
5951
+ "default.handlebars->121->2307",
5952
"default3.handlebars->121->1091",
5947
- "default3.handlebars->121->2291"
5953
+ "default3.handlebars->121->2296"
5954
]
5955
},
5956
{
@@ -5973,8 +5979,8 @@
5979
"zh-chs": "活动登录令牌",
5980
"zh-cht": "活動登錄令牌",
5981
"xloc": [
5976
- "default.handlebars->121->2188",
5977
- "default3.handlebars->121->2181"
5982
+ "default.handlebars->121->2193",
5983
+ "default3.handlebars->121->2186"
5984
]
5985
},
5986
{
@@ -6003,7 +6009,7 @@
6009
"zh-chs": "活跃用户",
6010
"zh-cht": "活躍用戶",
6011
"xloc": [
6006
- "default-mobile.handlebars->55->782",
6012
+ "default-mobile.handlebars->55->787",
6013
"default.handlebars->121->977",
6014
"default3.handlebars->121->968"
6015
]
@@ -6034,7 +6040,7 @@
6040
"zh-chs": "活跃用户",
6041
"zh-cht": "活躍用戶",
6042
"xloc": [
6037
- "default-mobile.handlebars->55->781",
6043
+ "default-mobile.handlebars->55->786",
6044
"default.handlebars->121->976",
6045
"default3.handlebars->121->967"
6046
]
@@ -6099,9 +6105,9 @@
6105
"zh-chs": "添加代理",
6106
"zh-cht": "新增代理",
6107
"xloc": [
6102
- "default.handlebars->121->2292",
6108
+ "default.handlebars->121->2297",
6109
"default.handlebars->121->526",
6104
- "default3.handlebars->121->2281",
6110
+ "default3.handlebars->121->2286",
6111
"default3.handlebars->121->517"
6112
]
6113
},
@@ -6131,13 +6137,13 @@
6137
"zh-chs": "添加设备",
6138
"zh-cht": "新增裝置",
6139
"xloc": [
6134
- "default.handlebars->121->2296",
6135
- "default.handlebars->121->2971",
6136
- "default.handlebars->121->3166",
6140
+ "default.handlebars->121->2301",
6141
+ "default.handlebars->121->2976",
6142
+ "default.handlebars->121->3171",
6143
"default.handlebars->121->530",
6138
- "default3.handlebars->121->2285",
6139
- "default3.handlebars->121->2959",
6140
- "default3.handlebars->121->3148",
6144
+ "default3.handlebars->121->2290",
6145
+ "default3.handlebars->121->2964",
6146
+ "default3.handlebars->121->3153",
6147
"default3.handlebars->121->521"
6148
]
6149
},
@@ -6197,13 +6203,13 @@
6203
"zh-chs": "添加设备组",
6204
"zh-cht": "新增裝置群",
6205
"xloc": [
6200
- "default.handlebars->121->2441",
6201
- "default.handlebars->121->2965",
6202
- "default.handlebars->121->3154",
6206
+ "default.handlebars->121->2446",
6207
+ "default.handlebars->121->2970",
6208
+ "default.handlebars->121->3159",
6209
"default.handlebars->121->426",
6204
- "default3.handlebars->121->2431",
6205
- "default3.handlebars->121->2953",
6206
- "default3.handlebars->121->3136",
6210
+ "default3.handlebars->121->2436",
6211
+ "default3.handlebars->121->2958",
6212
+ "default3.handlebars->121->3141",
6213
"default3.handlebars->121->417"
6214
]
6215
},
@@ -6233,8 +6239,8 @@
6239
"zh-chs": "添加设备组权限",
6240
"zh-cht": "新增裝置群權限",
6241
"xloc": [
6236
- "default.handlebars->121->2438",
6237
- "default3.handlebars->121->2428"
6242
+ "default.handlebars->121->2443",
6243
+ "default3.handlebars->121->2433"
6244
]
6245
},
6246
{
@@ -6263,10 +6269,10 @@
6269
"zh-chs": "添加设备权限",
6270
"zh-cht": "新增裝置權限",
6271
"xloc": [
6266
- "default.handlebars->121->2443",
6267
- "default.handlebars->121->2445",
6268
- "default3.handlebars->121->2433",
6269
- "default3.handlebars->121->2435"
6272
+ "default.handlebars->121->2448",
6273
+ "default.handlebars->121->2450",
6274
+ "default3.handlebars->121->2438",
6275
+ "default3.handlebars->121->2440"
6276
]
6277
},
6278
{
@@ -6385,8 +6391,8 @@
6391
"zh-chs": "添加成员身份",
6392
"zh-cht": "新增成員身份",
6393
"xloc": [
6388
- "default.handlebars->121->3186",
6389
- "default3.handlebars->121->3168"
6394
+ "default.handlebars->121->3191",
6395
+ "default3.handlebars->121->3173"
6396
]
6397
},
6398
{
@@ -6445,14 +6451,14 @@
6451
"zh-chs": "添加安全密钥",
6452
"zh-cht": "新增安全密鑰",
6453
"xloc": [
6448
- "default.handlebars->121->1901",
6449
- "default.handlebars->121->1902",
6454
+ "default.handlebars->121->1906",
6455
+ "default.handlebars->121->1907",
6456
"default.handlebars->121->261",
6457
"default.handlebars->121->263",
6458
"default.handlebars->121->266",
6459
"default.handlebars->121->268",
6454
- "default3.handlebars->121->1877",
6455
- "default3.handlebars->121->1878",
6460
+ "default3.handlebars->121->1882",
6461
+ "default3.handlebars->121->1883",
6462
"default3.handlebars->121->256",
6463
"default3.handlebars->121->258",
6464
"default3.handlebars->121->261",
@@ -6485,7 +6491,7 @@
6491
"zh-chs": "添加用户",
6492
"zh-cht": "新增用戶",
6493
"xloc": [
6488
- "default-mobile.handlebars->55->993",
6494
+ "default-mobile.handlebars->55->998",
6495
"default.handlebars->121->1092",
6496
"default3.handlebars->121->1083"
6497
]
@@ -6516,8 +6522,8 @@
6522
"zh-chs": "添加用户设备权限",
6523
"zh-cht": "新增用戶裝置權限",
6524
"xloc": [
6519
- "default.handlebars->121->2448",
6520
- "default3.handlebars->121->2438"
6525
+ "default.handlebars->121->2453",
6526
+ "default3.handlebars->121->2443"
6527
]
6528
},
6529
{
@@ -6547,13 +6553,13 @@
6553
"zh-cht": "新增用戶群",
6554
"xloc": [
6555
"default.handlebars->121->1093",
6550
- "default.handlebars->121->2286",
6551
- "default.handlebars->121->2440",
6552
- "default.handlebars->121->3160",
6556
+ "default.handlebars->121->2291",
6557
+ "default.handlebars->121->2445",
6558
+ "default.handlebars->121->3165",
6559
"default3.handlebars->121->1084",
6554
- "default3.handlebars->121->2275",
6555
- "default3.handlebars->121->2430",
6556
- "default3.handlebars->121->3142"
6560
+ "default3.handlebars->121->2280",
6561
+ "default3.handlebars->121->2435",
6562
+ "default3.handlebars->121->3147"
6563
]
6564
},
6565
{
@@ -6582,8 +6588,8 @@
6588
"zh-chs": "添加用户组设备权限",
6589
"zh-cht": "新增用戶群裝置權限",
6590
"xloc": [
6585
- "default.handlebars->121->2450",
6586
- "default3.handlebars->121->2440"
6591
+ "default.handlebars->121->2455",
6592
+ "default3.handlebars->121->2445"
6593
]
6594
},
6595
{
@@ -6612,7 +6618,7 @@
6618
"zh-chs": "将用户添加到设备组",
6619
"zh-cht": "將用戶新增到裝置群",
6620
"xloc": [
6615
- "default-mobile.handlebars->55->1034"
6621
+ "default-mobile.handlebars->55->1039"
6622
]
6623
},
6624
{
@@ -6641,10 +6647,10 @@
6647
"zh-chs": "添加用户",
6648
"zh-cht": "新增用戶",
6649
"xloc": [
6644
- "default.handlebars->121->2285",
6645
- "default.handlebars->121->2960",
6646
- "default3.handlebars->121->2274",
6647
- "default3.handlebars->121->2948"
6650
+ "default.handlebars->121->2290",
6651
+ "default.handlebars->121->2965",
6652
+ "default3.handlebars->121->2279",
6653
+ "default3.handlebars->121->2953"
6654
]
6655
},
6656
{
@@ -6673,8 +6679,8 @@
6679
"zh-chs": "将用户添加到设备组",
6680
"zh-cht": "將用戶新增到裝置群",
6681
"xloc": [
6676
- "default.handlebars->121->2437",
6677
- "default3.handlebars->121->2427"
6682
+ "default.handlebars->121->2442",
6683
+ "default3.handlebars->121->2432"
6684
]
6685
},
6686
{
@@ -6703,8 +6709,8 @@
6709
"zh-chs": "将用户添加到用户组",
6710
"zh-cht": "將用戶新增到用戶群",
6711
"xloc": [
6706
- "default.handlebars->121->2995",
6707
- "default3.handlebars->121->2983"
6712
+ "default.handlebars->121->3000",
6713
+ "default3.handlebars->121->2988"
6714
]
6715
},
6716
{
@@ -6883,9 +6889,9 @@
6889
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
6890
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
6891
"xloc": [
6886
- "default.handlebars->121->2291",
6892
+ "default.handlebars->121->2296",
6893
"default.handlebars->121->525",
6888
- "default3.handlebars->121->2280",
6894
+ "default3.handlebars->121->2285",
6895
"default3.handlebars->121->516"
6896
]
6897
},
@@ -6915,9 +6921,9 @@
6921
"zh-chs": "添加位于本地网络上的设备。",
6922
"zh-cht": "添加位於本地網絡上的設備。",
6923
"xloc": [
6918
- "default.handlebars->121->2295",
6924
+ "default.handlebars->121->2300",
6925
"default.handlebars->121->529",
6920
- "default3.handlebars->121->2284",
6926
+ "default3.handlebars->121->2289",
6927
"default3.handlebars->121->520"
6928
]
6929
},
@@ -7037,8 +7043,8 @@
7043
"zh-chs": "添加了身份验证应用程序",
7044
"zh-cht": "添加了身份驗證應用程序",
7045
"xloc": [
7040
- "default.handlebars->121->2684",
7041
- "default3.handlebars->121->2674"
7046
+ "default.handlebars->121->2689",
7047
+ "default3.handlebars->121->2679"
7048
]
7049
},
7050
{
@@ -7067,8 +7073,8 @@
7073
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
7074
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
7075
"xloc": [
7070
- "default.handlebars->121->2695",
7071
- "default3.handlebars->121->2685"
7076
+ "default.handlebars->121->2700",
7077
+ "default3.handlebars->121->2690"
7078
]
7079
},
7080
{
@@ -7097,8 +7103,8 @@
7103
"zh-chs": "添加了每天重复的设备共享 {0}。",
7104
"zh-cht": "添加了每天重複的設備共享 {0}。",
7105
"xloc": [
7100
- "default.handlebars->121->2732",
7101
- "default3.handlebars->121->2722"
7106
+ "default.handlebars->121->2737",
7107
+ "default3.handlebars->121->2727"
7108
]
7109
},
7110
{
@@ -7127,8 +7133,8 @@
7133
"zh-chs": "添加了每周重复的设备共享 {0}。",
7134
"zh-cht": "添加了每週重複的設備共享 {0}。",
7135
"xloc": [
7130
- "default.handlebars->121->2733",
7131
- "default3.handlebars->121->2723"
7136
+ "default.handlebars->121->2738",
7137
+ "default3.handlebars->121->2728"
7138
]
7139
},
7140
{
@@ -7157,8 +7163,8 @@
7163
"zh-chs": "添加了无限时间的设备共享 {0}。",
7164
"zh-cht": "添加了無限時間的設備共享 {0}。",
7165
"xloc": [
7160
- "default.handlebars->121->2725",
7161
- "default3.handlebars->121->2715"
7166
+ "default.handlebars->121->2730",
7167
+ "default3.handlebars->121->2720"
7168
]
7169
},
7170
{
@@ -7187,10 +7193,10 @@
7193
"zh-chs": "已将设备{0}添加到设备组{1}",
7194
"zh-cht": "已將設備{0}添加到設備組{1}",
7195
"xloc": [
7190
- "default.handlebars->121->2651",
7191
- "default.handlebars->121->2678",
7192
- "default3.handlebars->121->2641",
7193
- "default3.handlebars->121->2668"
7196
+ "default.handlebars->121->2656",
7197
+ "default.handlebars->121->2683",
7198
+ "default3.handlebars->121->2646",
7199
+ "default3.handlebars->121->2673"
7200
]
7201
},
7202
{
@@ -7219,8 +7225,8 @@
7225
"zh-chs": "添加登录令牌",
7226
"zh-cht": "添加了登錄令牌",
7227
"xloc": [
7222
- "default.handlebars->121->2709",
7223
- "default3.handlebars->121->2699"
7228
+ "default.handlebars->121->2714",
7229
+ "default3.handlebars->121->2704"
7230
]
7231
},
7232
{
@@ -7249,8 +7255,8 @@
7255
"zh-chs": "新增推送通知认证装置",
7256
"zh-cht": "增加推送通知認證設備",
7257
"xloc": [
7252
- "default.handlebars->121->2707",
7253
- "default3.handlebars->121->2697"
7258
+ "default.handlebars->121->2712",
7259
+ "default3.handlebars->121->2702"
7260
]
7261
},
7262
{
@@ -7279,8 +7285,8 @@
7285
"zh-chs": "添加了安全密钥",
7286
"zh-cht": "添加了安全密鑰",
7287
"xloc": [
7282
- "default.handlebars->121->2689",
7283
- "default3.handlebars->121->2679"
7288
+ "default.handlebars->121->2694",
7289
+ "default3.handlebars->121->2684"
7290
]
7291
},
7292
{
@@ -7309,8 +7315,8 @@
7315
"zh-chs": "已将用户组{0}添加到设备组{1}",
7316
"zh-cht": "已將用戶組{0}添加到設備組{1}",
7317
"xloc": [
7312
- "default.handlebars->121->2662",
7313
- "default3.handlebars->121->2652"
7318
+ "default.handlebars->121->2667",
7319
+ "default3.handlebars->121->2657"
7320
]
7321
},
7322
{
@@ -7339,10 +7345,10 @@
7345
"zh-chs": "已将用户{0}添加到用户组{1}",
7346
"zh-cht": "已將用戶{0}添加到用戶組{1}",
7347
"xloc": [
7342
- "default.handlebars->121->2665",
7343
- "default.handlebars->121->2674",
7344
- "default3.handlebars->121->2655",
7345
- "default3.handlebars->121->2664"
7348
+ "default.handlebars->121->2670",
7349
+ "default.handlebars->121->2679",
7350
+ "default3.handlebars->121->2660",
7351
+ "default3.handlebars->121->2669"
7352
]
7353
},
7354
{
@@ -7430,9 +7436,9 @@
7436
"zh-chs": "管理员控制模式(ACM)",
7437
"zh-cht": "管理員控制模式(ACM)",
7438
"xloc": [
7433
- "default-mobile.handlebars->55->828",
7434
- "default.handlebars->121->1686",
7435
- "default3.handlebars->121->1664"
7439
+ "default-mobile.handlebars->55->833",
7440
+ "default.handlebars->121->1691",
7441
+ "default3.handlebars->121->1669"
7442
]
7443
},
7444
{
@@ -7461,9 +7467,9 @@
7467
"zh-chs": "管理员凭证",
7468
"zh-cht": "管理員憑證",
7469
"xloc": [
7464
- "default-mobile.handlebars->55->834",
7465
- "default.handlebars->121->1692",
7466
- "default3.handlebars->121->1670"
7470
+ "default-mobile.handlebars->55->839",
7471
+ "default.handlebars->121->1697",
7472
+ "default3.handlebars->121->1675"
7473
]
7474
},
7475
{
@@ -7492,15 +7498,15 @@
7498
"zh-chs": "管理员PowerShell",
7499
"zh-cht": "管理員PowerShell",
7500
"xloc": [
7495
- "default.handlebars->121->3206",
7496
- "default.handlebars->121->3216",
7497
- "default.handlebars->121->3281",
7498
- "default.handlebars->121->3334",
7501
+ "default.handlebars->121->3211",
7502
+ "default.handlebars->121->3221",
7503
+ "default.handlebars->121->3286",
7504
+ "default.handlebars->121->3339",
7505
"default.handlebars->termShellContextMenu->3",
7500
- "default3.handlebars->121->3190",
7501
- "default3.handlebars->121->3200",
7502
- "default3.handlebars->121->3265",
7503
- "default3.handlebars->121->3318",
7506
+ "default3.handlebars->121->3195",
7507
+ "default3.handlebars->121->3205",
7508
+ "default3.handlebars->121->3270",
7509
+ "default3.handlebars->121->3323",
7510
"default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->3->0",
7511
"player.handlebars->31->29",
7512
"xterm.handlebars->termShellContextMenu->cxtermps"
@@ -7532,8 +7538,8 @@
7538
"zh-chs": "管理领域",
7539
"zh-cht": "管理領域",
7540
"xloc": [
7535
- "default.handlebars->121->3047",
7536
- "default3.handlebars->121->3035"
7541
+ "default.handlebars->121->3052",
7542
+ "default3.handlebars->121->3040"
7543
]
7544
},
7545
{
@@ -7593,8 +7599,8 @@
7599
"zh-chs": "管理领域",
7600
"zh-cht": "管理領域",
7601
"xloc": [
7596
- "default.handlebars->121->2892",
7597
- "default3.handlebars->121->2880"
7602
+ "default.handlebars->121->2897",
7603
+ "default3.handlebars->121->2885"
7604
]
7605
},
7606
{
@@ -7623,8 +7629,8 @@
7629
"zh-chs": "管理员",
7630
"zh-cht": "管理員",
7631
"xloc": [
7626
- "default.handlebars->121->2810",
7627
- "default3.handlebars->121->2800"
7632
+ "default.handlebars->121->2815",
7633
+ "default3.handlebars->121->2805"
7634
]
7635
},
7636
{
@@ -7654,8 +7660,8 @@
7660
"zh-cht": "南非文",
7661
"xloc": [
7662
"default-mobile.handlebars->55->120",
7657
- "default.handlebars->121->1904",
7658
- "default3.handlebars->121->1880",
7663
+ "default.handlebars->121->1909",
7664
+ "default3.handlebars->121->1885",
7665
"login2.handlebars->17->1"
7666
]
7667
},
@@ -7689,16 +7695,16 @@
7695
"default-mobile.handlebars->55->463",
7696
"default-mobile.handlebars->55->520",
7697
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
7692
- "default.handlebars->121->2521",
7693
- "default.handlebars->121->2534",
7694
- "default.handlebars->121->3432",
7698
+ "default.handlebars->121->2526",
7699
+ "default.handlebars->121->2539",
7700
+ "default.handlebars->121->3437",
7701
"default.handlebars->121->446",
7702
"default.handlebars->121->753",
7703
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
7704
"default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm",
7699
- "default3.handlebars->121->2511",
7700
- "default3.handlebars->121->2524",
7701
- "default3.handlebars->121->3416",
7705
+ "default3.handlebars->121->2516",
7706
+ "default3.handlebars->121->2529",
7707
+ "default3.handlebars->121->3421",
7708
"default3.handlebars->121->437",
7709
"default3.handlebars->121->744",
7710
"default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
@@ -7731,10 +7737,10 @@
7737
"zh-chs": "代理+英特尔AMT",
7738
"zh-cht": "代理+Intel® AMT",
7739
"xloc": [
7734
- "default.handlebars->121->2523",
7735
- "default.handlebars->121->2536",
7736
- "default3.handlebars->121->2513",
7737
- "default3.handlebars->121->2526"
7740
+ "default.handlebars->121->2528",
7741
+ "default.handlebars->121->2541",
7742
+ "default3.handlebars->121->2518",
7743
+ "default3.handlebars->121->2531"
7744
]
7745
},
7746
{
@@ -7794,11 +7800,11 @@
7800
"zh-chs": "代理控制台",
7801
"zh-cht": "代理控制台",
7802
"xloc": [
7797
- "default-mobile.handlebars->55->1040",
7803
+ "default-mobile.handlebars->55->1045",
7804
"default-mobile.handlebars->55->602",
7799
- "default.handlebars->121->2458",
7805
+ "default.handlebars->121->2463",
7806
"default.handlebars->121->843",
7801
- "default3.handlebars->121->2448",
7807
+ "default3.handlebars->121->2453",
7808
"default3.handlebars->121->834"
7809
]
7810
},
@@ -7828,8 +7834,8 @@
7834
"zh-chs": "代理错误计数器",
7835
"zh-cht": "代理錯誤計數器",
7836
"xloc": [
7831
- "default.handlebars->121->3400",
7832
- "default3.handlebars->121->3384"
7837
+ "default.handlebars->121->3405",
7838
+ "default3.handlebars->121->3389"
7839
]
7840
},
7841
{
@@ -8026,9 +8032,9 @@
8032
"zh-cht": "代理自行共享",
8033
"xloc": [
8034
"default.handlebars->121->1121",
8029
- "default.handlebars->121->2323",
8035
+ "default.handlebars->121->2328",
8036
"default3.handlebars->121->1112",
8031
- "default3.handlebars->121->2312"
8037
+ "default3.handlebars->121->2317"
8038
]
8039
},
8040
{
@@ -8057,8 +8063,8 @@
8063
"zh-chs": "代理会话",
8064
"zh-cht": "代理時段",
8065
"xloc": [
8060
- "default.handlebars->121->3417",
8061
- "default3.handlebars->121->3401"
8066
+ "default.handlebars->121->3422",
8067
+ "default3.handlebars->121->3406"
8068
]
8069
},
8070
{
@@ -8150,9 +8156,9 @@
8156
"zh-chs": "代理类型",
8157
"zh-cht": "代理類型",
8158
"xloc": [
8153
- "default.handlebars->121->2532",
8159
+ "default.handlebars->121->2537",
8160
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1",
8155
- "default3.handlebars->121->2522",
8161
+ "default3.handlebars->121->2527",
8162
"default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
8163
]
8164
},
@@ -8214,8 +8220,8 @@
8220
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
8221
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
8222
"xloc": [
8217
- "default.handlebars->121->2648",
8218
- "default3.handlebars->121->2638"
8223
+ "default.handlebars->121->2653",
8224
+ "default3.handlebars->121->2643"
8225
]
8226
},
8227
{
@@ -8368,9 +8374,9 @@
8374
"zh-chs": "代理离线",
8375
"zh-cht": "代理離線",
8376
"xloc": [
8371
- "default-mobile.handlebars->55->958",
8372
- "default.handlebars->121->1817",
8373
- "default3.handlebars->121->1795"
8377
+ "default-mobile.handlebars->55->963",
8378
+ "default.handlebars->121->1822",
8379
+ "default3.handlebars->121->1800"
8380
]
8381
},
8382
{
@@ -8399,9 +8405,9 @@
8405
"zh-chs": "代理在线",
8406
"zh-cht": "代理在線",
8407
"xloc": [
8402
- "default-mobile.handlebars->55->957",
8403
- "default.handlebars->121->1816",
8404
- "default3.handlebars->121->1794"
8408
+ "default-mobile.handlebars->55->962",
8409
+ "default.handlebars->121->1821",
8410
+ "default3.handlebars->121->1799"
8411
]
8412
},
8413
{
@@ -8460,11 +8466,11 @@
8466
"zh-chs": "代理",
8467
"zh-cht": "代理",
8468
"xloc": [
8463
- "default.handlebars->121->2489",
8464
- "default.handlebars->121->3445",
8469
+ "default.handlebars->121->2494",
8470
+ "default.handlebars->121->3450",
8471
"default.handlebars->121->613",
8466
- "default3.handlebars->121->2479",
8467
- "default3.handlebars->121->3429",
8472
+ "default3.handlebars->121->2484",
8473
+ "default3.handlebars->121->3434",
8474
"default3.handlebars->121->604"
8475
]
8476
},
@@ -8495,8 +8501,8 @@
8501
"zh-cht": "阿爾巴尼亞文",
8502
"xloc": [
8503
"default-mobile.handlebars->55->121",
8498
- "default.handlebars->121->1905",
8499
- "default3.handlebars->121->1881",
8504
+ "default.handlebars->121->1910",
8505
+ "default3.handlebars->121->1886",
8506
"login2.handlebars->17->2"
8507
]
8508
},
@@ -8542,9 +8548,9 @@
8548
"default-mobile.handlebars->55->377",
8549
"default-mobile.handlebars->55->703",
8550
"default-mobile.handlebars->55->705",
8545
- "default.handlebars->121->3249",
8551
+ "default.handlebars->121->3254",
8552
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1",
8547
- "default3.handlebars->121->3233",
8553
+ "default3.handlebars->121->3238",
8554
"default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1",
8555
"sharing-mobile.handlebars->55->79",
8556
"sharing-mobile.handlebars->55->81"
@@ -8576,8 +8582,8 @@
8582
"zh-chs": "全部可用",
8583
"zh-cht": "全部可用",
8584
"xloc": [
8579
- "default.handlebars->121->2772",
8580
- "default3.handlebars->121->2762"
8585
+ "default.handlebars->121->2777",
8586
+ "default3.handlebars->121->2767"
8587
]
8588
},
8589
{
@@ -8606,9 +8612,9 @@
8612
"zh-chs": "所有可用的代理",
8613
"zh-cht": "所有可用的代理",
8614
"xloc": [
8609
- "default.handlebars->121->2490",
8615
+ "default.handlebars->121->2495",
8616
"default.handlebars->121->614",
8611
- "default3.handlebars->121->2480",
8617
+ "default3.handlebars->121->2485",
8618
"default3.handlebars->121->605"
8619
]
8620
},
@@ -8668,8 +8674,8 @@
8674
"zh-chs": "所有事件",
8675
"zh-cht": "所有事件",
8676
"xloc": [
8671
- "default.handlebars->121->2770",
8672
- "default3.handlebars->121->2760"
8677
+ "default.handlebars->121->2775",
8678
+ "default3.handlebars->121->2765"
8679
]
8680
},
8681
{
@@ -8744,7 +8750,7 @@
8750
"zh-chs": "所有主题",
8751
"zh-cht": "所有主題",
8752
"xloc": [
8747
- "default3.handlebars->121->2149"
8753
+ "default3.handlebars->121->2154"
8754
]
8755
},
8756
{
@@ -8779,8 +8785,8 @@
8785
{
8786
"en": "Allow to override server device name until next connection",
8787
"xloc": [
8782
- "default.handlebars->121->2395",
8783
- "default3.handlebars->121->2385"
8788
+ "default.handlebars->121->2400",
8789
+ "default3.handlebars->121->2390"
8790
]
8791
},
8792
{
@@ -8809,10 +8815,10 @@
8815
"zh-chs": "允许用户管理此设备组和该组中的设备。",
8816
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
8817
"xloc": [
8812
- "default.handlebars->121->2402",
8813
- "default.handlebars->121->2992",
8814
- "default3.handlebars->121->2392",
8815
- "default3.handlebars->121->2980"
8818
+ "default.handlebars->121->2407",
8819
+ "default.handlebars->121->2997",
8820
+ "default3.handlebars->121->2397",
8821
+ "default3.handlebars->121->2985"
8822
]
8823
},
8824
{
@@ -8841,8 +8847,8 @@
8847
"zh-chs": "允许用户管理此设备。",
8848
"zh-cht": "允許用戶管理此裝置。",
8849
"xloc": [
8844
- "default.handlebars->121->2403",
8845
- "default3.handlebars->121->2393"
8850
+ "default.handlebars->121->2408",
8851
+ "default3.handlebars->121->2398"
8852
]
8853
},
8854
{
@@ -8872,11 +8878,11 @@
8878
"zh-cht": "允許",
8879
"xloc": [
8880
"default.handlebars->121->306",
8875
- "default.handlebars->121->3508",
8876
- "default.handlebars->121->3511",
8881
+ "default.handlebars->121->3513",
8882
+ "default.handlebars->121->3516",
8883
"default3.handlebars->121->302",
8878
- "default3.handlebars->121->3492",
8879
- "default3.handlebars->121->3495"
8884
+ "default3.handlebars->121->3497",
8885
+ "default3.handlebars->121->3500"
8886
]
8887
},
8888
{
@@ -9136,13 +9142,13 @@
9142
"zh-chs": "一直通知",
9143
"zh-cht": "一直通知",
9144
"xloc": [
9139
- "default.handlebars->121->2262",
9140
- "default.handlebars->121->2951",
9141
- "default.handlebars->121->3056",
9145
+ "default.handlebars->121->2267",
9146
+ "default.handlebars->121->2956",
9147
+ "default.handlebars->121->3061",
9148
"default.handlebars->121->987",
9143
- "default3.handlebars->121->2251",
9144
- "default3.handlebars->121->2939",
9145
- "default3.handlebars->121->3044",
9149
+ "default3.handlebars->121->2256",
9150
+ "default3.handlebars->121->2944",
9151
+ "default3.handlebars->121->3049",
9152
"default3.handlebars->121->978"
9153
]
9154
},
@@ -9172,13 +9178,13 @@
9178
"zh-chs": "一直提示",
9179
"zh-cht": "一直提示",
9180
"xloc": [
9175
- "default.handlebars->121->2263",
9176
- "default.handlebars->121->2952",
9177
- "default.handlebars->121->3057",
9181
+ "default.handlebars->121->2268",
9182
+ "default.handlebars->121->2957",
9183
+ "default.handlebars->121->3062",
9184
"default.handlebars->121->988",
9179
- "default3.handlebars->121->2252",
9180
- "default3.handlebars->121->2940",
9181
- "default3.handlebars->121->3045",
9185
+ "default3.handlebars->121->2257",
9186
+ "default3.handlebars->121->2945",
9187
+ "default3.handlebars->121->3050",
9188
"default3.handlebars->121->979"
9189
]
9190
},
@@ -9260,8 +9266,8 @@
9266
"pl": "Wystąpił nieznany błąd.",
9267
"uk": "Сталася невідома помилка.",
9268
"xloc": [
9263
- "default.handlebars->121->3195",
9264
- "default3.handlebars->121->3179"
9269
+ "default.handlebars->121->3200",
9270
+ "default3.handlebars->121->3184"
9271
]
9272
},
9273
{
@@ -9326,7 +9332,7 @@
9332
"zh-chs": "Android APK",
9333
"zh-cht": "Android APK",
9334
"xloc": [
9329
- "default-mobile.handlebars->55->1012",
9335
+ "default-mobile.handlebars->55->1017",
9336
"default.handlebars->121->682",
9337
"default3.handlebars->121->673"
9338
]
@@ -9386,7 +9392,7 @@
9392
"zh-chs": "安卓安装",
9393
"zh-cht": "安卓安裝",
9394
"xloc": [
9389
- "default-mobile.handlebars->55->1014"
9395
+ "default-mobile.handlebars->55->1019"
9396
]
9397
},
9398
{
@@ -9405,9 +9411,9 @@
9411
"nl": "Android Versie",
9412
"uk": "Версія Android",
9413
"xloc": [
9408
- "default-mobile.handlebars->55->801",
9409
- "default.handlebars->121->1649",
9410
- "default3.handlebars->121->1629"
9414
+ "default-mobile.handlebars->55->806",
9415
+ "default.handlebars->121->1654",
9416
+ "default3.handlebars->121->1634"
9417
]
9418
},
9419
{
@@ -9467,10 +9473,10 @@
9473
"zh-chs": "杀毒软件未激活",
9474
"zh-cht": "殺毒軟件未激活",
9475
"xloc": [
9470
- "default.handlebars->121->2525",
9471
- "default.handlebars->121->2539",
9472
- "default3.handlebars->121->2515",
9473
- "default3.handlebars->121->2529"
9476
+ "default.handlebars->121->2530",
9477
+ "default.handlebars->121->2544",
9478
+ "default3.handlebars->121->2520",
9479
+ "default3.handlebars->121->2534"
9480
]
9481
},
9482
{
@@ -9499,7 +9505,7 @@
9505
"zh-chs": "杀毒软件",
9506
"zh-cht": "防毒軟體",
9507
"xloc": [
9502
- "default-mobile.handlebars->55->778",
9508
+ "default-mobile.handlebars->55->783",
9509
"default.handlebars->121->973",
9510
"default3.handlebars->121->964"
9511
]
@@ -9789,8 +9795,8 @@
9795
"zh-cht": "阿拉伯文(阿爾及利亞)",
9796
"xloc": [
9797
"default-mobile.handlebars->55->123",
9792
- "default.handlebars->121->1907",
9793
- "default3.handlebars->121->1883",
9798
+ "default.handlebars->121->1912",
9799
+ "default3.handlebars->121->1888",
9800
"login2.handlebars->17->4"
9801
]
9802
},
@@ -9821,8 +9827,8 @@
9827
"zh-cht": "阿拉伯文(巴林)",
9828
"xloc": [
9829
"default-mobile.handlebars->55->124",
9824
- "default.handlebars->121->1908",
9825
- "default3.handlebars->121->1884",
9830
+ "default.handlebars->121->1913",
9831
+ "default3.handlebars->121->1889",
9832
"login2.handlebars->17->5"
9833
]
9834
},
@@ -9853,8 +9859,8 @@
9859
"zh-cht": "阿拉伯文(埃及)",
9860
"xloc": [
9861
"default-mobile.handlebars->55->125",
9856
- "default.handlebars->121->1909",
9857
- "default3.handlebars->121->1885",
9862
+ "default.handlebars->121->1914",
9863
+ "default3.handlebars->121->1890",
9864
"login2.handlebars->17->6"
9865
]
9866
},
@@ -9885,8 +9891,8 @@
9891
"zh-cht": "阿拉伯文(伊拉克)",
9892
"xloc": [
9893
"default-mobile.handlebars->55->126",
9888
- "default.handlebars->121->1910",
9889
- "default3.handlebars->121->1886",
9894
+ "default.handlebars->121->1915",
9895
+ "default3.handlebars->121->1891",
9896
"login2.handlebars->17->7"
9897
]
9898
},
@@ -9917,8 +9923,8 @@
9923
"zh-cht": "阿拉伯文(約旦)",
9924
"xloc": [
9925
"default-mobile.handlebars->55->127",
9920
- "default.handlebars->121->1911",
9921
- "default3.handlebars->121->1887",
9926
+ "default.handlebars->121->1916",
9927
+ "default3.handlebars->121->1892",
9928
"login2.handlebars->17->8"
9929
]
9930
},
@@ -9949,8 +9955,8 @@
9955
"zh-cht": "阿拉伯文(科威特)",
9956
"xloc": [
9957
"default-mobile.handlebars->55->128",
9952
- "default.handlebars->121->1912",
9953
- "default3.handlebars->121->1888",
9958
+ "default.handlebars->121->1917",
9959
+ "default3.handlebars->121->1893",
9960
"login2.handlebars->17->9"
9961
]
9962
},
@@ -9981,8 +9987,8 @@
9987
"zh-cht": "阿拉伯文(黎巴嫩)",
9988
"xloc": [
9989
"default-mobile.handlebars->55->129",
9984
- "default.handlebars->121->1913",
9985
- "default3.handlebars->121->1889",
9990
+ "default.handlebars->121->1918",
9991
+ "default3.handlebars->121->1894",
9992
"login2.handlebars->17->10"
9993
]
9994
},
@@ -10013,8 +10019,8 @@
10019
"zh-cht": "阿拉伯文(利比亞)",
10020
"xloc": [
10021
"default-mobile.handlebars->55->130",
10016
- "default.handlebars->121->1914",
10017
- "default3.handlebars->121->1890",
10022
+ "default.handlebars->121->1919",
10023
+ "default3.handlebars->121->1895",
10024
"login2.handlebars->17->11"
10025
]
10026
},
@@ -10045,8 +10051,8 @@
10051
"zh-cht": "阿拉伯文(摩洛哥)",
10052
"xloc": [
10053
"default-mobile.handlebars->55->131",
10048
- "default.handlebars->121->1915",
10049
- "default3.handlebars->121->1891",
10054
+ "default.handlebars->121->1920",
10055
+ "default3.handlebars->121->1896",
10056
"login2.handlebars->17->12"
10057
]
10058
},
@@ -10077,8 +10083,8 @@
10083
"zh-cht": "阿拉伯文(阿曼)",
10084
"xloc": [
10085
"default-mobile.handlebars->55->132",
10080
- "default.handlebars->121->1916",
10081
- "default3.handlebars->121->1892",
10086
+ "default.handlebars->121->1921",
10087
+ "default3.handlebars->121->1897",
10088
"login2.handlebars->17->13"
10089
]
10090
},
@@ -10109,8 +10115,8 @@
10115
"zh-cht": "阿拉伯文(卡塔爾)",
10116
"xloc": [
10117
"default-mobile.handlebars->55->133",
10112
- "default.handlebars->121->1917",
10113
- "default3.handlebars->121->1893",
10118
+ "default.handlebars->121->1922",
10119
+ "default3.handlebars->121->1898",
10120
"login2.handlebars->17->14"
10121
]
10122
},
@@ -10141,8 +10147,8 @@
10147
"zh-cht": "阿拉伯文(沙特阿拉伯)",
10148
"xloc": [
10149
"default-mobile.handlebars->55->134",
10144
- "default.handlebars->121->1918",
10145
- "default3.handlebars->121->1894",
10150
+ "default.handlebars->121->1923",
10151
+ "default3.handlebars->121->1899",
10152
"login2.handlebars->17->15"
10153
]
10154
},
@@ -10173,8 +10179,8 @@
10179
"zh-cht": "阿拉伯文(標準)",
10180
"xloc": [
10181
"default-mobile.handlebars->55->122",
10176
- "default.handlebars->121->1906",
10177
- "default3.handlebars->121->1882",
10182
+ "default.handlebars->121->1911",
10183
+ "default3.handlebars->121->1887",
10184
"login2.handlebars->17->3"
10185
]
10186
},
@@ -10205,8 +10211,8 @@
10211
"zh-cht": "阿拉伯文(敘利亞)",
10212
"xloc": [
10213
"default-mobile.handlebars->55->135",
10208
- "default.handlebars->121->1919",
10209
- "default3.handlebars->121->1895",
10214
+ "default.handlebars->121->1924",
10215
+ "default3.handlebars->121->1900",
10216
"login2.handlebars->17->16"
10217
]
10218
},
@@ -10237,8 +10243,8 @@
10243
"zh-cht": "阿拉伯文(突尼斯)",
10244
"xloc": [
10245
"default-mobile.handlebars->55->136",
10240
- "default.handlebars->121->1920",
10241
- "default3.handlebars->121->1896",
10246
+ "default.handlebars->121->1925",
10247
+ "default3.handlebars->121->1901",
10248
"login2.handlebars->17->17"
10249
]
10250
},
@@ -10269,8 +10275,8 @@
10275
"zh-cht": "阿拉伯文(阿聯酋)",
10276
"xloc": [
10277
"default-mobile.handlebars->55->137",
10272
- "default.handlebars->121->1921",
10273
- "default3.handlebars->121->1897",
10278
+ "default.handlebars->121->1926",
10279
+ "default3.handlebars->121->1902",
10280
"login2.handlebars->17->18"
10281
]
10282
},
@@ -10301,8 +10307,8 @@
10307
"zh-cht": "阿拉伯文(也門)",
10308
"xloc": [
10309
"default-mobile.handlebars->55->138",
10304
- "default.handlebars->121->1922",
10305
- "default3.handlebars->121->1898",
10310
+ "default.handlebars->121->1927",
10311
+ "default3.handlebars->121->1903",
10312
"login2.handlebars->17->19"
10313
]
10314
},
@@ -10333,8 +10339,8 @@
10339
"zh-cht": "阿拉貢文",
10340
"xloc": [
10341
"default-mobile.handlebars->55->139",
10336
- "default.handlebars->121->1923",
10337
- "default3.handlebars->121->1899",
10342
+ "default.handlebars->121->1928",
10343
+ "default3.handlebars->121->1904",
10344
"login2.handlebars->17->20"
10345
]
10346
},
@@ -10367,12 +10373,15 @@
10373
"default-mobile.handlebars->55->740",
10374
"default-mobile.handlebars->55->742",
10375
"default-mobile.handlebars->55->744",
10376
+ "default-mobile.handlebars->55->751",
10377
"default.handlebars->121->1620",
10378
"default.handlebars->121->1622",
10379
"default.handlebars->121->1624",
10380
+ "default.handlebars->121->1634",
10381
"default3.handlebars->121->1600",
10382
"default3.handlebars->121->1602",
10375
- "default3.handlebars->121->1604"
10383
+ "default3.handlebars->121->1604",
10384
+ "default3.handlebars->121->1611"
10385
]
10386
},
10387
{
@@ -10431,9 +10440,9 @@
10440
"zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
10441
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
10442
"xloc": [
10434
- "default-mobile.handlebars->55->1000",
10435
- "default.handlebars->121->2367",
10436
- "default3.handlebars->121->2354"
10443
+ "default-mobile.handlebars->55->1005",
10444
+ "default.handlebars->121->2372",
10445
+ "default3.handlebars->121->2359"
10446
]
10447
},
10448
{
@@ -10563,8 +10572,8 @@
10572
"zh-chs": "您确定要{0}插件吗:{1}",
10573
"zh-cht": "你確定要{0}外掛嗎:{1}",
10574
"xloc": [
10566
- "default.handlebars->121->3498",
10567
- "default3.handlebars->121->3482"
10575
+ "default.handlebars->121->3503",
10576
+ "default3.handlebars->121->3487"
10577
]
10578
},
10579
{
@@ -10625,8 +10634,8 @@
10634
"zh-cht": "亞美尼亞文",
10635
"xloc": [
10636
"default-mobile.handlebars->55->140",
10628
- "default.handlebars->121->1924",
10629
- "default3.handlebars->121->1900",
10637
+ "default.handlebars->121->1929",
10638
+ "default3.handlebars->121->1905",
10639
"login2.handlebars->17->21"
10640
]
10641
},
@@ -10839,8 +10848,8 @@
10848
"zh-cht": "阿薩姆文",
10849
"xloc": [
10850
"default-mobile.handlebars->55->141",
10842
- "default.handlebars->121->1925",
10843
- "default3.handlebars->121->1901",
10851
+ "default.handlebars->121->1930",
10852
+ "default3.handlebars->121->1906",
10853
"login2.handlebars->17->22"
10854
]
10855
},
@@ -10870,9 +10879,9 @@
10879
"zh-chs": "资产标签",
10880
"zh-cht": "資產標籤",
10881
"xloc": [
10873
- "default-mobile.handlebars->55->855",
10874
- "default.handlebars->121->1713",
10875
- "default3.handlebars->121->1691"
10882
+ "default-mobile.handlebars->55->860",
10883
+ "default.handlebars->121->1718",
10884
+ "default3.handlebars->121->1696"
10885
]
10886
},
10887
{
@@ -11024,8 +11033,8 @@
11033
"zh-cht": "阿斯圖里亞斯文",
11034
"xloc": [
11035
"default-mobile.handlebars->55->142",
11027
- "default.handlebars->121->1926",
11028
- "default3.handlebars->121->1902",
11036
+ "default.handlebars->121->1931",
11037
+ "default3.handlebars->121->1907",
11038
"login2.handlebars->17->23"
11039
]
11040
},
@@ -11055,8 +11064,8 @@
11064
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
11065
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
11066
"xloc": [
11058
- "default.handlebars->121->2617",
11059
- "default3.handlebars->121->2607"
11067
+ "default.handlebars->121->2622",
11068
+ "default3.handlebars->121->2612"
11069
]
11070
},
11071
{
@@ -11130,8 +11139,8 @@
11139
"zh-chs": "认证软件",
11140
"zh-cht": "認證軟體",
11141
"xloc": [
11133
- "default.handlebars->121->3060",
11134
- "default3.handlebars->121->3048"
11142
+ "default.handlebars->121->3065",
11143
+ "default3.handlebars->121->3053"
11144
]
11145
},
11146
{
@@ -11160,12 +11169,12 @@
11169
"zh-chs": "认证设备",
11170
"zh-cht": "認證設備",
11171
"xloc": [
11163
- "default.handlebars->121->1887",
11164
- "default.handlebars->121->1889",
11165
- "default.handlebars->121->1893",
11166
- "default3.handlebars->121->1864",
11167
- "default3.handlebars->121->1866",
11168
- "default3.handlebars->121->1869"
11172
+ "default.handlebars->121->1892",
11173
+ "default.handlebars->121->1894",
11174
+ "default.handlebars->121->1898",
11175
+ "default3.handlebars->121->1869",
11176
+ "default3.handlebars->121->1871",
11177
+ "default3.handlebars->121->1874"
11178
]
11179
},
11180
{
@@ -11234,12 +11243,12 @@
11243
"default-mobile.handlebars->55->327",
11244
"default-mobile.handlebars->55->80",
11245
"default-mobile.handlebars->55->85",
11237
- "default.handlebars->121->1883",
11238
- "default.handlebars->121->1885",
11246
+ "default.handlebars->121->1888",
11247
+ "default.handlebars->121->1890",
11248
"default.handlebars->121->235",
11249
"default.handlebars->121->240",
11241
- "default3.handlebars->121->1860",
11242
- "default3.handlebars->121->1862",
11250
+ "default3.handlebars->121->1865",
11251
+ "default3.handlebars->121->1867",
11252
"default3.handlebars->121->232",
11253
"default3.handlebars->121->237"
11254
]
@@ -11391,10 +11400,10 @@
11400
"zh-chs": "自动删除",
11401
"zh-cht": "自動刪除",
11402
"xloc": [
11394
- "default.handlebars->121->2245",
11395
- "default.handlebars->121->2763",
11396
- "default3.handlebars->121->2234",
11397
- "default3.handlebars->121->2753"
11403
+ "default.handlebars->121->2250",
11404
+ "default.handlebars->121->2768",
11405
+ "default3.handlebars->121->2239",
11406
+ "default3.handlebars->121->2758"
11407
]
11408
},
11409
{
@@ -11460,8 +11469,8 @@
11469
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
11470
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
11471
"xloc": [
11463
- "default.handlebars->121->2698",
11464
- "default3.handlebars->121->2688"
11472
+ "default.handlebars->121->2703",
11473
+ "default3.handlebars->121->2693"
11474
]
11475
},
11476
{
@@ -11552,8 +11561,8 @@
11561
"zh-chs": "自动移除非活动设备",
11562
"zh-cht": "自動移除非活動設備",
11563
"xloc": [
11555
- "default.handlebars->121->2397",
11556
- "default3.handlebars->121->2387"
11564
+ "default.handlebars->121->2402",
11565
+ "default3.handlebars->121->2392"
11566
]
11567
},
11568
{
@@ -11582,8 +11591,8 @@
11591
"zh-chs": "可用內存",
11592
"zh-cht": "可用內存",
11593
"xloc": [
11585
- "default.handlebars->121->3426",
11586
- "default3.handlebars->121->3410"
11594
+ "default.handlebars->121->3431",
11595
+ "default3.handlebars->121->3415"
11596
]
11597
},
11598
{
@@ -11613,8 +11622,8 @@
11622
"zh-cht": "阿塞拜疆文",
11623
"xloc": [
11624
"default-mobile.handlebars->55->143",
11616
- "default.handlebars->121->1927",
11617
- "default3.handlebars->121->1903",
11625
+ "default.handlebars->121->1932",
11626
+ "default3.handlebars->121->1908",
11627
"login2.handlebars->17->24"
11628
]
11629
},
@@ -11652,9 +11661,9 @@
11661
"zh-chs": "坏的",
11662
"zh-cht": "壞的",
11663
"xloc": [
11655
- "default-mobile.handlebars->55->755",
11656
- "default-mobile.handlebars->55->759",
11657
- "default-mobile.handlebars->55->763",
11664
+ "default-mobile.handlebars->55->760",
11665
+ "default-mobile.handlebars->55->764",
11666
+ "default-mobile.handlebars->55->768",
11667
"default.handlebars->121->460",
11668
"default.handlebars->121->462",
11669
"default.handlebars->121->464",
@@ -11695,9 +11704,9 @@
11704
"zh-chs": "的BIOS",
11705
"zh-cht": "的BIOS",
11706
"xloc": [
11698
- "default-mobile.handlebars->55->843",
11699
- "default.handlebars->121->1701",
11700
- "default3.handlebars->121->1679"
11707
+ "default-mobile.handlebars->55->848",
11708
+ "default.handlebars->121->1706",
11709
+ "default3.handlebars->121->1684"
11710
]
11711
},
11712
{
@@ -11898,12 +11907,12 @@
11907
"zh-chs": "后台运行与交互式运行",
11908
"zh-cht": "背景與互動",
11909
"xloc": [
11901
- "default.handlebars->121->2496",
11902
- "default.handlebars->121->2503",
11910
+ "default.handlebars->121->2501",
11911
+ "default.handlebars->121->2508",
11912
"default.handlebars->121->600",
11913
"default.handlebars->121->621",
11905
- "default3.handlebars->121->2486",
11906
- "default3.handlebars->121->2493",
11914
+ "default3.handlebars->121->2491",
11915
+ "default3.handlebars->121->2498",
11916
"default3.handlebars->121->591",
11917
"default3.handlebars->121->612"
11918
]
@@ -11935,13 +11944,13 @@
11944
"zh-cht": "僅背景",
11945
"xloc": [
11946
"agentinvite.handlebars->13->9",
11938
- "default.handlebars->121->2497",
11939
- "default.handlebars->121->2505",
11947
+ "default.handlebars->121->2502",
11948
+ "default.handlebars->121->2510",
11949
"default.handlebars->121->601",
11950
"default.handlebars->121->622",
11951
"default.handlebars->121->639",
11943
- "default3.handlebars->121->2487",
11944
- "default3.handlebars->121->2495",
11952
+ "default3.handlebars->121->2492",
11953
+ "default3.handlebars->121->2500",
11954
"default3.handlebars->121->592",
11955
"default3.handlebars->121->613",
11956
"default3.handlebars->121->630"
@@ -12004,10 +12013,10 @@
12013
"zh-chs": "备用码",
12014
"zh-cht": "備用碼",
12015
"xloc": [
12007
- "default.handlebars->121->3064",
12008
- "default.handlebars->121->3302",
12009
- "default3.handlebars->121->3052",
12010
- "default3.handlebars->121->3286"
12016
+ "default.handlebars->121->3069",
12017
+ "default.handlebars->121->3307",
12018
+ "default3.handlebars->121->3057",
12019
+ "default3.handlebars->121->3291"
12020
]
12021
},
12022
{
@@ -12097,8 +12106,8 @@
12106
"zh-chs": "错误的签名",
12107
"zh-cht": "錯誤的簽名",
12108
"xloc": [
12100
- "default.handlebars->121->3407",
12101
- "default3.handlebars->121->3391"
12109
+ "default.handlebars->121->3412",
12110
+ "default3.handlebars->121->3396"
12111
]
12112
},
12113
{
@@ -12127,8 +12136,8 @@
12136
"zh-chs": "错误的网络证书",
12137
"zh-cht": "錯誤的網絡憑證",
12138
"xloc": [
12130
- "default.handlebars->121->3406",
12131
- "default3.handlebars->121->3390"
12139
+ "default.handlebars->121->3411",
12140
+ "default3.handlebars->121->3395"
12141
]
12142
},
12143
{
@@ -12158,8 +12167,8 @@
12167
"zh-cht": "巴斯克",
12168
"xloc": [
12169
"default-mobile.handlebars->55->144",
12161
- "default.handlebars->121->1928",
12162
- "default3.handlebars->121->1904",
12170
+ "default.handlebars->121->1933",
12171
+ "default3.handlebars->121->1909",
12172
"login2.handlebars->17->25"
12173
]
12174
},
@@ -12264,8 +12273,8 @@
12273
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
12274
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
12275
"xloc": [
12267
- "default.handlebars->121->2697",
12268
- "default3.handlebars->121->2687"
12276
+ "default.handlebars->121->2702",
12277
+ "default3.handlebars->121->2692"
12278
]
12279
},
12280
{
@@ -12291,9 +12300,9 @@
12300
"zh-chs": "电池",
12301
"zh-cht": "電池",
12302
"xloc": [
12294
- "default-mobile.handlebars->55->900",
12295
- "default.handlebars->121->1758",
12296
- "default3.handlebars->121->1736"
12303
+ "default-mobile.handlebars->55->905",
12304
+ "default.handlebars->121->1763",
12305
+ "default3.handlebars->121->1741"
12306
]
12307
},
12308
{
@@ -12321,9 +12330,9 @@
12330
"zh-chs": "电池充电",
12331
"zh-cht": "電池充電",
12332
"xloc": [
12324
- "default-mobile.handlebars->55->898",
12325
- "default.handlebars->121->1756",
12326
- "default3.handlebars->121->1734"
12333
+ "default-mobile.handlebars->55->903",
12334
+ "default.handlebars->121->1761",
12335
+ "default3.handlebars->121->1739"
12336
]
12337
},
12338
{
@@ -12353,8 +12362,8 @@
12362
"zh-cht": "白俄羅斯文",
12363
"xloc": [
12364
"default-mobile.handlebars->55->146",
12356
- "default.handlebars->121->1930",
12357
- "default3.handlebars->121->1906",
12365
+ "default.handlebars->121->1935",
12366
+ "default3.handlebars->121->1911",
12367
"login2.handlebars->17->27"
12368
]
12369
},
@@ -12385,8 +12394,8 @@
12394
"zh-cht": "孟加拉",
12395
"xloc": [
12396
"default-mobile.handlebars->55->147",
12388
- "default.handlebars->121->1931",
12389
- "default3.handlebars->121->1907",
12397
+ "default.handlebars->121->1936",
12398
+ "default3.handlebars->121->1912",
12399
"login2.handlebars->17->28"
12400
]
12401
},
@@ -12428,9 +12437,9 @@
12437
"nl": "BitLocker",
12438
"uk": "BitLocker",
12439
"xloc": [
12431
- "default-mobile.handlebars->55->935",
12432
- "default.handlebars->121->1793",
12433
- "default3.handlebars->121->1771"
12440
+ "default-mobile.handlebars->55->940",
12441
+ "default.handlebars->121->1798",
12442
+ "default3.handlebars->121->1776"
12443
]
12444
},
12445
{
@@ -12440,9 +12449,9 @@
12449
"pl": "Informacje o BitLocker",
12450
"uk": "Інформація о BitLocker",
12451
"xloc": [
12443
- "default-mobile.handlebars->55->956",
12444
- "default.handlebars->121->1814",
12445
- "default3.handlebars->121->1792"
12452
+ "default-mobile.handlebars->55->961",
12453
+ "default.handlebars->121->1819",
12454
+ "default3.handlebars->121->1797"
12455
]
12456
},
12457
{
@@ -12471,9 +12480,9 @@
12480
"zh-chs": "引导加载程序",
12481
"zh-cht": "引導加載程序",
12482
"xloc": [
12474
- "default-mobile.handlebars->55->798",
12475
- "default.handlebars->121->1646",
12476
- "default3.handlebars->121->1626"
12483
+ "default-mobile.handlebars->55->803",
12484
+ "default.handlebars->121->1651",
12485
+ "default3.handlebars->121->1631"
12486
]
12487
},
12488
{
@@ -12503,8 +12512,8 @@
12512
"zh-cht": "波斯尼亞文",
12513
"xloc": [
12514
"default-mobile.handlebars->55->148",
12506
- "default.handlebars->121->1932",
12507
- "default3.handlebars->121->1908",
12515
+ "default.handlebars->121->1937",
12516
+ "default3.handlebars->121->1913",
12517
"login2.handlebars->17->29"
12518
]
12519
},
@@ -12535,8 +12544,8 @@
12544
"zh-cht": "布列塔尼",
12545
"xloc": [
12546
"default-mobile.handlebars->55->149",
12538
- "default.handlebars->121->1933",
12539
- "default3.handlebars->121->1909",
12547
+ "default.handlebars->121->1938",
12548
+ "default3.handlebars->121->1914",
12549
"login2.handlebars->17->30"
12550
]
12551
},
@@ -12566,9 +12575,9 @@
12575
"zh-chs": "广播",
12576
"zh-cht": "廣播",
12577
"xloc": [
12569
- "default.handlebars->121->2958",
12578
+ "default.handlebars->121->2963",
12579
"default.handlebars->container->column_l->p4->3->1->0->3->1",
12571
- "default3.handlebars->121->2946",
12580
+ "default3.handlebars->121->2951",
12581
"default3.handlebars->container->column_l->p4->3->1->0->1->3"
12582
]
12583
},
@@ -12598,8 +12607,8 @@
12607
"zh-chs": "广播消息",
12608
"zh-cht": "廣播消息",
12609
"xloc": [
12601
- "default.handlebars->121->2874",
12602
- "default3.handlebars->121->2864"
12610
+ "default.handlebars->121->2879",
12611
+ "default3.handlebars->121->2869"
12612
]
12613
},
12614
{
@@ -12628,8 +12637,8 @@
12637
"zh-chs": "向所有连接的用户广播消息。",
12638
"zh-cht": "向所有連接的用戶廣播消息。",
12639
"xloc": [
12631
- "default.handlebars->121->2869",
12632
- "default3.handlebars->121->2859"
12640
+ "default.handlebars->121->2874",
12641
+ "default3.handlebars->121->2864"
12642
]
12643
},
12644
{
@@ -12658,8 +12667,8 @@
12667
"zh-chs": "浏览器",
12668
"zh-cht": "瀏覽器",
12669
"xloc": [
12661
- "default.handlebars->121->3273",
12662
- "default3.handlebars->121->3257"
12670
+ "default.handlebars->121->3278",
12671
+ "default3.handlebars->121->3262"
12672
]
12673
},
12674
{
@@ -12781,8 +12790,8 @@
12790
"zh-cht": "保加利亞文",
12791
"xloc": [
12792
"default-mobile.handlebars->55->145",
12784
- "default.handlebars->121->1929",
12785
- "default3.handlebars->121->1905",
12793
+ "default.handlebars->121->1934",
12794
+ "default3.handlebars->121->1910",
12795
"login2.handlebars->17->26"
12796
]
12797
},
@@ -12813,8 +12822,8 @@
12822
"zh-cht": "緬甸文",
12823
"xloc": [
12824
"default-mobile.handlebars->55->150",
12816
- "default.handlebars->121->1934",
12817
- "default3.handlebars->121->1910",
12825
+ "default.handlebars->121->1939",
12826
+ "default3.handlebars->121->1915",
12827
"login2.handlebars->17->31"
12828
]
12829
},
@@ -12844,8 +12853,8 @@
12853
"zh-chs": "默认情况下,不活动的设备将在 1 天后移除。",
12854
"zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
12855
"xloc": [
12847
- "default.handlebars->121->2399",
12848
- "default3.handlebars->121->2389"
12856
+ "default.handlebars->121->2404",
12857
+ "default3.handlebars->121->2394"
12858
]
12859
},
12860
{
@@ -12874,8 +12883,8 @@
12883
"zh-chs": "默认情况下,非活动设备将在 {0} 天后移除。",
12884
"zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
12885
"xloc": [
12877
- "default.handlebars->121->2400",
12878
- "default3.handlebars->121->2390"
12886
+ "default.handlebars->121->2405",
12887
+ "default3.handlebars->121->2395"
12888
]
12889
},
12890
{
@@ -12917,8 +12926,8 @@
12926
"zh-chs": "字节输入",
12927
"zh-cht": "字節輸入",
12928
"xloc": [
12920
- "default.handlebars->121->3269",
12921
- "default3.handlebars->121->3253"
12929
+ "default.handlebars->121->3274",
12930
+ "default3.handlebars->121->3258"
12931
]
12932
},
12933
{
@@ -12947,8 +12956,8 @@
12956
"zh-chs": "字节输出",
12957
"zh-cht": "字節輸出",
12958
"xloc": [
12950
- "default.handlebars->121->3270",
12951
- "default3.handlebars->121->3254"
12959
+ "default.handlebars->121->3275",
12960
+ "default3.handlebars->121->3259"
12961
]
12962
},
12963
{
@@ -13057,8 +13066,8 @@
13066
"zh-chs": "CCM模式",
13067
"zh-cht": "CCM模式",
13068
"xloc": [
13060
- "default.handlebars->121->2350",
13061
- "default3.handlebars->121->2337"
13069
+ "default.handlebars->121->2355",
13070
+ "default3.handlebars->121->2342"
13071
]
13072
},
13073
{
@@ -13066,15 +13075,15 @@
13075
"en": "CD-ROM",
13076
"nl": "CD-ROM",
13077
"xloc": [
13069
- "default-mobile.handlebars->55->928",
13070
- "default-mobile.handlebars->55->940",
13071
- "default-mobile.handlebars->55->947",
13072
- "default.handlebars->121->1786",
13073
- "default.handlebars->121->1798",
13074
- "default.handlebars->121->1805",
13075
- "default3.handlebars->121->1764",
13076
- "default3.handlebars->121->1776",
13077
- "default3.handlebars->121->1783"
13078
+ "default-mobile.handlebars->55->933",
13079
+ "default-mobile.handlebars->55->945",
13080
+ "default-mobile.handlebars->55->952",
13081
+ "default.handlebars->121->1791",
13082
+ "default.handlebars->121->1803",
13083
+ "default.handlebars->121->1810",
13084
+ "default3.handlebars->121->1769",
13085
+ "default3.handlebars->121->1781",
13086
+ "default3.handlebars->121->1788"
13087
]
13088
},
13089
{
@@ -13104,10 +13113,10 @@
13113
"zh-cht": "CIRA",
13114
"xloc": [
13115
"default-mobile.handlebars->55->464",
13107
- "default.handlebars->121->3433",
13116
+ "default.handlebars->121->3438",
13117
"default.handlebars->121->448",
13118
"default.handlebars->121->755",
13110
- "default3.handlebars->121->3417",
13119
+ "default3.handlebars->121->3422",
13120
"default3.handlebars->121->439",
13121
"default3.handlebars->121->746"
13122
]
@@ -13138,8 +13147,8 @@
13147
"zh-chs": "CIRA服务器",
13148
"zh-cht": "CIRA伺服器",
13149
"xloc": [
13141
- "default.handlebars->121->3482",
13142
- "default3.handlebars->121->3466"
13150
+ "default.handlebars->121->3487",
13151
+ "default3.handlebars->121->3471"
13152
]
13153
},
13154
{
@@ -13168,8 +13177,8 @@
13177
"zh-chs": "CIRA服务器命令",
13178
"zh-cht": "CIRA伺服器指令",
13179
"xloc": [
13171
- "default.handlebars->121->3483",
13172
- "default3.handlebars->121->3467"
13180
+ "default.handlebars->121->3488",
13181
+ "default3.handlebars->121->3472"
13182
]
13183
},
13184
{
@@ -13228,8 +13237,8 @@
13237
"zh-chs": "CIRA设置",
13238
"zh-cht": "CIRA設置",
13239
"xloc": [
13231
- "default.handlebars->121->2358",
13232
- "default3.handlebars->121->2344"
13240
+ "default.handlebars->121->2363",
13241
+ "default3.handlebars->121->2349"
13242
]
13243
},
13244
{
@@ -13258,14 +13267,14 @@
13267
"zh-chs": "CPU",
13268
"zh-cht": "CPU",
13269
"xloc": [
13261
- "default-mobile.handlebars->55->849",
13270
+ "default-mobile.handlebars->55->854",
13271
"default.handlebars->121->1614",
13263
- "default.handlebars->121->1707",
13264
- "default.handlebars->121->3458",
13272
+ "default.handlebars->121->1712",
13273
+ "default.handlebars->121->3463",
13274
"default.handlebars->container->column_l->p40->3->1->p40type->5",
13275
"default3.handlebars->121->1594",
13267
- "default3.handlebars->121->1685",
13268
- "default3.handlebars->121->3442",
13276
+ "default3.handlebars->121->1690",
13277
+ "default3.handlebars->121->3447",
13278
"default3.handlebars->container->column_l->p40->3->3->p40type->5"
13279
]
13280
},
@@ -13295,8 +13304,8 @@
13304
"zh-chs": "CPU负载",
13305
"zh-cht": "CPU負載",
13306
"xloc": [
13298
- "default.handlebars->121->3422",
13299
- "default3.handlebars->121->3406"
13307
+ "default.handlebars->121->3427",
13308
+ "default3.handlebars->121->3411"
13309
]
13310
},
13311
{
@@ -13325,8 +13334,8 @@
13334
"zh-chs": "最近15分钟的CPU负载",
13335
"zh-cht": "最近15分鐘的CPU負載",
13336
"xloc": [
13328
- "default.handlebars->121->3425",
13329
- "default3.handlebars->121->3409"
13337
+ "default.handlebars->121->3430",
13338
+ "default3.handlebars->121->3414"
13339
]
13340
},
13341
{
@@ -13355,8 +13364,8 @@
13364
"zh-chs": "最近5分钟的CPU负载",
13365
"zh-cht": "最近5分鐘的CPU負載",
13366
"xloc": [
13358
- "default.handlebars->121->3424",
13359
- "default3.handlebars->121->3408"
13367
+ "default.handlebars->121->3429",
13368
+ "default3.handlebars->121->3413"
13369
]
13370
},
13371
{
@@ -13385,8 +13394,8 @@
13394
"zh-chs": "最近一分钟的CPU负载",
13395
"zh-cht": "最近一分鐘的CPU負載",
13396
"xloc": [
13388
- "default.handlebars->121->3423",
13389
- "default3.handlebars->121->3407"
13397
+ "default.handlebars->121->3428",
13398
+ "default3.handlebars->121->3412"
13399
]
13400
},
13401
{
@@ -13452,8 +13461,8 @@
13461
"zh-chs": "CSV",
13462
"zh-cht": "CSV",
13463
"xloc": [
13455
- "default.handlebars->121->2780",
13456
- "default3.handlebars->121->2770"
13464
+ "default.handlebars->121->2785",
13465
+ "default3.handlebars->121->2775"
13466
]
13467
},
13468
{
@@ -13482,11 +13491,11 @@
13491
"zh-chs": "CSV格式",
13492
"zh-cht": "CSV格式",
13493
"xloc": [
13485
- "default.handlebars->121->2784",
13486
- "default.handlebars->121->2861",
13494
+ "default.handlebars->121->2789",
13495
+ "default.handlebars->121->2866",
13496
"default.handlebars->121->828",
13488
- "default3.handlebars->121->2774",
13489
- "default3.handlebars->121->2851",
13497
+ "default3.handlebars->121->2779",
13498
+ "default3.handlebars->121->2856",
13499
"default3.handlebars->121->819"
13500
]
13501
},
@@ -13496,8 +13505,8 @@
13505
"nl": "Het CSV bestandsformaat is als volgt:",
13506
"uk": "Формат файлу CSV нижче:",
13507
"xloc": [
13499
- "default.handlebars->121->2847",
13500
- "default3.handlebars->121->2837"
13508
+ "default.handlebars->121->2852",
13509
+ "default3.handlebars->121->2842"
13510
]
13511
},
13512
{
@@ -13526,8 +13535,8 @@
13535
"zh-chs": "呼叫错误",
13536
"zh-cht": "呼叫錯誤",
13537
"xloc": [
13529
- "default.handlebars->121->3517",
13530
- "default3.handlebars->121->3502"
13538
+ "default.handlebars->121->3522",
13539
+ "default3.handlebars->121->3507"
13540
]
13541
},
13542
{
@@ -13540,10 +13549,10 @@
13549
"pl": "CallMeBot",
13550
"uk": "CallMeBot",
13551
"xloc": [
13543
- "default.handlebars->121->1852",
13544
- "default.handlebars->121->3099",
13545
- "default3.handlebars->121->1829",
13546
- "default3.handlebars->121->3087"
13552
+ "default.handlebars->121->1857",
13553
+ "default.handlebars->121->3104",
13554
+ "default3.handlebars->121->1834",
13555
+ "default3.handlebars->121->3092"
13556
]
13557
},
13558
{
@@ -13605,12 +13614,12 @@
13614
"agent-translations.json",
13615
"default-mobile.handlebars->55->336",
13616
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
13608
- "default.handlebars->121->2210",
13609
- "default.handlebars->121->3488",
13610
- "default.handlebars->121->3502",
13617
+ "default.handlebars->121->2215",
13618
+ "default.handlebars->121->3493",
13619
+ "default.handlebars->121->3507",
13620
"default.handlebars->121->573",
13621
"default.handlebars->container->dialog->idx_dlgButtonBar",
13613
- "default3.handlebars->121->3486",
13622
+ "default3.handlebars->121->3491",
13623
"default3.handlebars->121->564",
13624
"default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->5->idx_dlgCancelButton",
13625
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -13679,30 +13688,30 @@
13688
"zh-chs": "容量",
13689
"zh-cht": "容量",
13690
"xloc": [
13682
- "default-mobile.handlebars->55->903",
13683
- "default-mobile.handlebars->55->909",
13684
- "default-mobile.handlebars->55->915",
13691
+ "default-mobile.handlebars->55->908",
13692
+ "default-mobile.handlebars->55->914",
13693
"default-mobile.handlebars->55->920",
13686
- "default-mobile.handlebars->55->922",
13694
"default-mobile.handlebars->55->925",
13688
- "default-mobile.handlebars->55->937",
13689
- "default-mobile.handlebars->55->944",
13690
- "default.handlebars->121->1761",
13691
- "default.handlebars->121->1767",
13692
- "default.handlebars->121->1773",
13695
+ "default-mobile.handlebars->55->927",
13696
+ "default-mobile.handlebars->55->930",
13697
+ "default-mobile.handlebars->55->942",
13698
+ "default-mobile.handlebars->55->949",
13699
+ "default.handlebars->121->1766",
13700
+ "default.handlebars->121->1772",
13701
"default.handlebars->121->1778",
13694
- "default.handlebars->121->1780",
13702
"default.handlebars->121->1783",
13696
- "default.handlebars->121->1795",
13697
- "default.handlebars->121->1802",
13698
- "default3.handlebars->121->1739",
13699
- "default3.handlebars->121->1745",
13700
- "default3.handlebars->121->1751",
13703
+ "default.handlebars->121->1785",
13704
+ "default.handlebars->121->1788",
13705
+ "default.handlebars->121->1800",
13706
+ "default.handlebars->121->1807",
13707
+ "default3.handlebars->121->1744",
13708
+ "default3.handlebars->121->1750",
13709
"default3.handlebars->121->1756",
13702
- "default3.handlebars->121->1758",
13710
"default3.handlebars->121->1761",
13704
- "default3.handlebars->121->1773",
13705
- "default3.handlebars->121->1780"
13711
+ "default3.handlebars->121->1763",
13712
+ "default3.handlebars->121->1766",
13713
+ "default3.handlebars->121->1778",
13714
+ "default3.handlebars->121->1785"
13715
]
13716
},
13717
{
@@ -13731,15 +13740,15 @@
13740
"zh-chs": "容量/速度",
13741
"zh-cht": "容量/速度",
13742
"xloc": [
13734
- "default-mobile.handlebars->55->901",
13735
- "default-mobile.handlebars->55->907",
13736
- "default-mobile.handlebars->55->913",
13737
- "default.handlebars->121->1759",
13738
- "default.handlebars->121->1765",
13739
- "default.handlebars->121->1771",
13740
- "default3.handlebars->121->1737",
13741
- "default3.handlebars->121->1743",
13742
- "default3.handlebars->121->1749"
13743
+ "default-mobile.handlebars->55->906",
13744
+ "default-mobile.handlebars->55->912",
13745
+ "default-mobile.handlebars->55->918",
13746
+ "default.handlebars->121->1764",
13747
+ "default.handlebars->121->1770",
13748
+ "default.handlebars->121->1776",
13749
+ "default3.handlebars->121->1742",
13750
+ "default3.handlebars->121->1748",
13751
+ "default3.handlebars->121->1754"
13752
]
13753
},
13754
{
@@ -13767,15 +13776,15 @@
13776
"zh-chs": "剩余容量",
13777
"zh-cht": "剩餘容量",
13778
"xloc": [
13770
- "default-mobile.handlebars->55->926",
13771
- "default-mobile.handlebars->55->938",
13772
- "default-mobile.handlebars->55->945",
13773
- "default.handlebars->121->1784",
13774
- "default.handlebars->121->1796",
13775
- "default.handlebars->121->1803",
13776
- "default3.handlebars->121->1762",
13777
- "default3.handlebars->121->1774",
13778
- "default3.handlebars->121->1781"
13779
+ "default-mobile.handlebars->55->931",
13780
+ "default-mobile.handlebars->55->943",
13781
+ "default-mobile.handlebars->55->950",
13782
+ "default.handlebars->121->1789",
13783
+ "default.handlebars->121->1801",
13784
+ "default.handlebars->121->1808",
13785
+ "default3.handlebars->121->1767",
13786
+ "default3.handlebars->121->1779",
13787
+ "default3.handlebars->121->1786"
13788
]
13789
},
13790
{
@@ -13805,8 +13814,8 @@
13814
"zh-cht": "加泰羅尼亞文",
13815
"xloc": [
13816
"default-mobile.handlebars->55->151",
13808
- "default.handlebars->121->1935",
13809
- "default3.handlebars->121->1911",
13817
+ "default.handlebars->121->1940",
13818
+ "default3.handlebars->121->1916",
13819
"login2.handlebars->17->32"
13820
]
13821
},
@@ -13877,7 +13886,7 @@
13886
"en": "Cerulean",
13887
"nl": "Hemelsblauw",
13888
"xloc": [
13880
- "default3.handlebars->121->2125"
13889
+ "default3.handlebars->121->2130"
13890
]
13891
},
13892
{
@@ -13907,8 +13916,8 @@
13916
"zh-cht": "查莫羅",
13917
"xloc": [
13918
"default-mobile.handlebars->55->152",
13910
- "default.handlebars->121->1936",
13911
- "default3.handlebars->121->1912",
13919
+ "default.handlebars->121->1941",
13920
+ "default3.handlebars->121->1917",
13921
"login2.handlebars->17->33"
13922
]
13923
},
@@ -13969,8 +13978,8 @@
13978
"zh-chs": "更改{0}的邮箱",
13979
"zh-cht": "更改{0}的電郵",
13980
"xloc": [
13972
- "default.handlebars->121->3141",
13973
- "default3.handlebars->121->3127"
13981
+ "default.handlebars->121->3146",
13982
+ "default3.handlebars->121->3132"
13983
]
13984
},
13985
{
@@ -14049,10 +14058,10 @@
14058
"zh-cht": "更改密碼",
14059
"xloc": [
14060
"default-mobile.handlebars->55->344",
14052
- "default.handlebars->121->2152",
14053
- "default.handlebars->121->3085",
14054
- "default3.handlebars->121->2123",
14055
- "default3.handlebars->121->3073"
14061
+ "default.handlebars->121->2157",
14062
+ "default.handlebars->121->3090",
14063
+ "default3.handlebars->121->2128",
14064
+ "default3.handlebars->121->3078"
14065
]
14066
},
14067
{
@@ -14081,8 +14090,8 @@
14090
"zh-chs": "更改{0}的密码",
14091
"zh-cht": "更改{0}的密碼",
14092
"xloc": [
14084
- "default.handlebars->121->3150",
14085
- "default3.handlebars->121->3132"
14093
+ "default.handlebars->121->3155",
14094
+ "default3.handlebars->121->3137"
14095
]
14096
},
14097
{
@@ -14111,8 +14120,8 @@
14120
"zh-chs": "更改{0}的真实名称",
14121
"zh-cht": "更改{0}的真實名稱",
14122
"xloc": [
14114
- "default.handlebars->121->3136",
14115
- "default3.handlebars->121->3123"
14123
+ "default.handlebars->121->3141",
14124
+ "default3.handlebars->121->3128"
14125
]
14126
},
14127
{
@@ -14263,8 +14272,8 @@
14272
"zh-chs": "更改该用户的密码",
14273
"zh-cht": "更改該用戶的密碼",
14274
"xloc": [
14266
- "default.handlebars->121->3084",
14267
- "default3.handlebars->121->3072"
14275
+ "default.handlebars->121->3089",
14276
+ "default3.handlebars->121->3077"
14277
]
14278
},
14279
{
@@ -14323,8 +14332,8 @@
14332
"zh-chs": "更改您的邮件地址。",
14333
"zh-cht": "在此處更改你的帳戶電郵地址。",
14334
"xloc": [
14326
- "default.handlebars->121->2139",
14327
- "default3.handlebars->121->2116"
14335
+ "default.handlebars->121->2144",
14336
+ "default3.handlebars->121->2121"
14337
]
14338
},
14339
{
@@ -14353,8 +14362,8 @@
14362
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
14363
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
14364
"xloc": [
14356
- "default.handlebars->121->2145",
14357
- "default3.handlebars->121->2120"
14365
+ "default.handlebars->121->2150",
14366
+ "default3.handlebars->121->2125"
14367
]
14368
},
14369
{
@@ -14383,8 +14392,8 @@
14392
"zh-chs": "更改帐户凭据",
14393
"zh-cht": "帳戶憑證已更改",
14394
"xloc": [
14386
- "default.handlebars->121->2669",
14387
- "default3.handlebars->121->2659"
14395
+ "default.handlebars->121->2674",
14396
+ "default3.handlebars->121->2664"
14397
]
14398
},
14399
{
@@ -14413,8 +14422,8 @@
14422
"zh-chs": "将帐户显示名称更改为 {0}。",
14423
"zh-cht": "將帳戶顯示名稱更改為 {0}。",
14424
"xloc": [
14416
- "default.handlebars->121->2721",
14417
- "default3.handlebars->121->2711"
14425
+ "default.handlebars->121->2726",
14426
+ "default3.handlebars->121->2716"
14427
]
14428
},
14429
{
@@ -14443,10 +14452,10 @@
14452
"zh-chs": "{1}组中的设备{0}已更改:{2}",
14453
"zh-cht": "{1}組中的設備{0}已更改:{2}",
14454
"xloc": [
14446
- "default.handlebars->121->2653",
14447
- "default.handlebars->121->2734",
14448
- "default3.handlebars->121->2643",
14449
- "default3.handlebars->121->2724"
14455
+ "default.handlebars->121->2658",
14456
+ "default.handlebars->121->2739",
14457
+ "default3.handlebars->121->2648",
14458
+ "default3.handlebars->121->2729"
14459
]
14460
},
14461
{
@@ -14475,8 +14484,8 @@
14484
"zh-chs": "语言从{1}更改为{2}",
14485
"zh-cht": "語言從{1}更改為{2}",
14486
"xloc": [
14478
- "default.handlebars->121->2597",
14479
- "default3.handlebars->121->2587"
14487
+ "default.handlebars->121->2602",
14488
+ "default3.handlebars->121->2592"
14489
]
14490
},
14491
{
@@ -14505,10 +14514,10 @@
14514
"zh-chs": "已更改{0}的用户设备权限",
14515
"zh-cht": "已更改{0}的用戶設備權限",
14516
"xloc": [
14508
- "default.handlebars->121->2655",
14509
- "default.handlebars->121->2676",
14510
- "default3.handlebars->121->2645",
14511
- "default3.handlebars->121->2666"
14517
+ "default.handlebars->121->2660",
14518
+ "default.handlebars->121->2681",
14519
+ "default3.handlebars->121->2650",
14520
+ "default3.handlebars->121->2671"
14521
]
14522
},
14523
{
@@ -14538,8 +14547,8 @@
14547
"zh-cht": "更改語言將需要刷新頁面。",
14548
"xloc": [
14549
"default-mobile.handlebars->55->319",
14541
- "default.handlebars->121->2103",
14542
- "default3.handlebars->121->2079"
14550
+ "default.handlebars->121->2108",
14551
+ "default3.handlebars->121->2084"
14552
]
14553
},
14554
{
@@ -14565,9 +14574,9 @@
14574
"zh-chs": "收费率",
14575
"zh-cht": "收費率",
14576
"xloc": [
14568
- "default-mobile.handlebars->55->882",
14569
- "default.handlebars->121->1740",
14570
- "default3.handlebars->121->1718"
14577
+ "default-mobile.handlebars->55->887",
14578
+ "default.handlebars->121->1745",
14579
+ "default3.handlebars->121->1723"
14580
]
14581
},
14582
{
@@ -14593,9 +14602,9 @@
14602
"zh-chs": "收费",
14603
"zh-cht": "收費",
14604
"xloc": [
14596
- "default-mobile.handlebars->55->884",
14597
- "default.handlebars->121->1742",
14598
- "default3.handlebars->121->1720"
14605
+ "default-mobile.handlebars->55->889",
14606
+ "default.handlebars->121->1747",
14607
+ "default3.handlebars->121->1725"
14608
]
14609
},
14610
{
@@ -14627,15 +14636,15 @@
14636
"default.handlebars->121->1034",
14637
"default.handlebars->121->1153",
14638
"default.handlebars->121->1178",
14630
- "default.handlebars->121->2801",
14631
- "default.handlebars->121->3080",
14632
- "default.handlebars->121->3081",
14639
+ "default.handlebars->121->2806",
14640
+ "default.handlebars->121->3085",
14641
+ "default.handlebars->121->3086",
14642
"default3.handlebars->121->1025",
14643
"default3.handlebars->121->1142",
14644
"default3.handlebars->121->1167",
14636
- "default3.handlebars->121->2791",
14637
- "default3.handlebars->121->3068",
14638
- "default3.handlebars->121->3069"
14645
+ "default3.handlebars->121->2796",
14646
+ "default3.handlebars->121->3073",
14647
+ "default3.handlebars->121->3074"
14648
]
14649
},
14650
{
@@ -14664,12 +14673,12 @@
14673
"zh-chs": "聊天并通知",
14674
"zh-cht": "聊天並通知",
14675
"xloc": [
14667
- "default-mobile.handlebars->55->1030",
14668
- "default-mobile.handlebars->55->1050",
14669
- "default.handlebars->121->2431",
14670
- "default.handlebars->121->2469",
14671
- "default3.handlebars->121->2421",
14672
- "default3.handlebars->121->2459"
14676
+ "default-mobile.handlebars->55->1035",
14677
+ "default-mobile.handlebars->55->1055",
14678
+ "default.handlebars->121->2436",
14679
+ "default.handlebars->121->2474",
14680
+ "default3.handlebars->121->2426",
14681
+ "default3.handlebars->121->2464"
14682
]
14683
},
14684
{
@@ -14698,9 +14707,9 @@
14707
"zh-chs": "聊天请求,点击这里接受。",
14708
"zh-cht": "聊天請求,點擊這裡接受。",
14709
"xloc": [
14701
- "default-mobile.handlebars->55->1082",
14702
- "default.handlebars->121->3371",
14703
- "default3.handlebars->121->3355"
14710
+ "default-mobile.handlebars->55->1087",
14711
+ "default.handlebars->121->3376",
14712
+ "default3.handlebars->121->3360"
14713
]
14714
},
14715
{
@@ -14759,8 +14768,8 @@
14768
"zh-cht": "車臣",
14769
"xloc": [
14770
"default-mobile.handlebars->55->153",
14762
- "default.handlebars->121->1937",
14763
- "default3.handlebars->121->1913",
14771
+ "default.handlebars->121->1942",
14772
+ "default3.handlebars->121->1918",
14773
"login2.handlebars->17->34"
14774
]
14775
},
@@ -14925,10 +14934,10 @@
14934
"zh-chs": "检查...",
14935
"zh-cht": "檢查...",
14936
"xloc": [
14928
- "default.handlebars->121->1903",
14929
- "default.handlebars->121->3493",
14930
- "default3.handlebars->121->1879",
14931
- "default3.handlebars->121->3477"
14937
+ "default.handlebars->121->1908",
14938
+ "default.handlebars->121->3498",
14939
+ "default3.handlebars->121->1884",
14940
+ "default3.handlebars->121->3482"
14941
]
14942
},
14943
{
@@ -14954,9 +14963,9 @@
14963
"zh-chs": "化学",
14964
"zh-cht": "化學",
14965
"xloc": [
14957
- "default-mobile.handlebars->55->876",
14958
- "default.handlebars->121->1734",
14959
- "default3.handlebars->121->1712"
14966
+ "default-mobile.handlebars->55->881",
14967
+ "default.handlebars->121->1739",
14968
+ "default3.handlebars->121->1717"
14969
]
14970
},
14971
{
@@ -14986,8 +14995,8 @@
14995
"zh-cht": "中文",
14996
"xloc": [
14997
"default-mobile.handlebars->55->154",
14989
- "default.handlebars->121->1938",
14990
- "default3.handlebars->121->1914",
14998
+ "default.handlebars->121->1943",
14999
+ "default3.handlebars->121->1919",
15000
"login2.handlebars->17->35"
15001
]
15002
},
@@ -15018,8 +15027,8 @@
15027
"zh-cht": "中文(香港)",
15028
"xloc": [
15029
"default-mobile.handlebars->55->155",
15021
- "default.handlebars->121->1939",
15022
- "default3.handlebars->121->1915",
15030
+ "default.handlebars->121->1944",
15031
+ "default3.handlebars->121->1920",
15032
"login2.handlebars->17->36"
15033
]
15034
},
@@ -15050,8 +15059,8 @@
15059
"zh-cht": "中文(中國)",
15060
"xloc": [
15061
"default-mobile.handlebars->55->156",
15053
- "default.handlebars->121->1940",
15054
- "default3.handlebars->121->1916",
15062
+ "default.handlebars->121->1945",
15063
+ "default3.handlebars->121->1921",
15064
"login2.handlebars->17->37"
15065
]
15066
},
@@ -15082,8 +15091,8 @@
15091
"zh-cht": "簡體中文",
15092
"xloc": [
15093
"default-mobile.handlebars->55->316",
15085
- "default.handlebars->121->2100",
15086
- "default3.handlebars->121->2076",
15094
+ "default.handlebars->121->2105",
15095
+ "default3.handlebars->121->2081",
15096
"login2.handlebars->17->197"
15097
]
15098
},
@@ -15114,8 +15123,8 @@
15123
"zh-cht": "中文(新加坡)",
15124
"xloc": [
15125
"default-mobile.handlebars->55->157",
15117
- "default.handlebars->121->1941",
15118
- "default3.handlebars->121->1917",
15126
+ "default.handlebars->121->1946",
15127
+ "default3.handlebars->121->1922",
15128
"login2.handlebars->17->38"
15129
]
15130
},
@@ -15146,8 +15155,8 @@
15155
"zh-cht": "中文(台灣)",
15156
"xloc": [
15157
"default-mobile.handlebars->55->158",
15149
- "default.handlebars->121->1942",
15150
- "default3.handlebars->121->1918",
15158
+ "default.handlebars->121->1947",
15159
+ "default3.handlebars->121->1923",
15160
"login2.handlebars->17->39"
15161
]
15162
},
@@ -15178,8 +15187,8 @@
15187
"zh-cht": "繁體中文",
15188
"xloc": [
15189
"default-mobile.handlebars->55->317",
15181
- "default.handlebars->121->2101",
15182
- "default3.handlebars->121->2077",
15190
+ "default.handlebars->121->2106",
15191
+ "default3.handlebars->121->2082",
15192
"login2.handlebars->17->198"
15193
]
15194
},
@@ -15241,8 +15250,8 @@
15250
"zh-cht": "楚瓦什",
15251
"xloc": [
15252
"default-mobile.handlebars->55->159",
15244
- "default.handlebars->121->1943",
15245
- "default3.handlebars->121->1919",
15253
+ "default.handlebars->121->1948",
15254
+ "default3.handlebars->121->1924",
15255
"login2.handlebars->17->40"
15256
]
15257
},
@@ -15290,14 +15299,14 @@
15299
"default.handlebars->121->1589",
15300
"default.handlebars->121->1591",
15301
"default.handlebars->121->1593",
15293
- "default.handlebars->121->2591",
15302
+ "default.handlebars->121->2596",
15303
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
15304
"default.handlebars->container->column_l->p41->3->1",
15305
"default3.handlebars->121->1567",
15306
"default3.handlebars->121->1569",
15307
"default3.handlebars->121->1571",
15308
"default3.handlebars->121->1573",
15300
- "default3.handlebars->121->2581",
15309
+ "default3.handlebars->121->2586",
15310
"default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
15311
"default3.handlebars->container->column_l->p41->3->3",
15312
"messenger.handlebars->xbottom->1->1->0->5",
@@ -15489,9 +15498,9 @@
15498
"zh-chs": "全部清除",
15499
"zh-cht": "全部清除",
15500
"xloc": [
15492
- "default-mobile.handlebars->55->1065",
15493
- "default.handlebars->121->3354",
15494
- "default3.handlebars->121->3338"
15501
+ "default-mobile.handlebars->55->1070",
15502
+ "default.handlebars->121->3359",
15503
+ "default3.handlebars->121->3343"
15504
]
15505
},
15506
{
@@ -15551,9 +15560,9 @@
15560
"zh-chs": "清除核心",
15561
"zh-cht": "清除核心",
15562
"xloc": [
15554
- "default-mobile.handlebars->55->966",
15555
- "default.handlebars->121->1825",
15556
- "default3.handlebars->121->1803"
15563
+ "default-mobile.handlebars->55->971",
15564
+ "default.handlebars->121->1830",
15565
+ "default3.handlebars->121->1808"
15566
]
15567
},
15568
{
@@ -15613,9 +15622,9 @@
15622
"zh-chs": "清除此通知",
15623
"zh-cht": "清除此通知",
15624
"xloc": [
15616
- "default-mobile.handlebars->55->1064",
15617
- "default.handlebars->121->3353",
15618
- "default3.handlebars->121->3337"
15625
+ "default-mobile.handlebars->55->1069",
15626
+ "default.handlebars->121->3358",
15627
+ "default3.handlebars->121->3342"
15628
]
15629
},
15630
{
@@ -15731,10 +15740,10 @@
15740
"zh-chs": "单击此处编辑设备组名称",
15741
"zh-cht": "單擊此處編輯裝置群名稱",
15742
"xloc": [
15734
- "default.handlebars->121->2224",
15735
- "default.handlebars->121->2530",
15736
- "default3.handlebars->121->2213",
15737
- "default3.handlebars->121->2520"
15743
+ "default.handlebars->121->2229",
15744
+ "default.handlebars->121->2535",
15745
+ "default3.handlebars->121->2218",
15746
+ "default3.handlebars->121->2525"
15747
]
15748
},
15749
{
@@ -15793,8 +15802,8 @@
15802
"zh-chs": "单击此处编辑用户组名称",
15803
"zh-cht": "單擊此處編輯用戶群名稱",
15804
"xloc": [
15796
- "default.handlebars->121->2931",
15797
- "default3.handlebars->121->2919"
15805
+ "default.handlebars->121->2936",
15806
+ "default3.handlebars->121->2924"
15807
]
15808
},
15809
{
@@ -15913,8 +15922,8 @@
15922
"zh-cht": "單擊確定將驗證電郵發送到:",
15923
"xloc": [
15924
"default-mobile.handlebars->55->329",
15916
- "default.handlebars->121->2136",
15917
- "default3.handlebars->121->2113"
15925
+ "default.handlebars->121->2141",
15926
+ "default3.handlebars->121->2118"
15927
]
15928
},
15929
{
@@ -16003,9 +16012,9 @@
16012
"zh-chs": "客户端控制模式(CCM)",
16013
"zh-cht": "客戶端控制模式(CCM)",
16014
"xloc": [
16006
- "default-mobile.handlebars->55->827",
16007
- "default.handlebars->121->1685",
16008
- "default3.handlebars->121->1663"
16015
+ "default-mobile.handlebars->55->832",
16016
+ "default.handlebars->121->1690",
16017
+ "default3.handlebars->121->1668"
16018
]
16019
},
16020
{
@@ -16034,8 +16043,8 @@
16043
"zh-chs": "客户编号",
16044
"zh-cht": "客戶編號",
16045
"xloc": [
16037
- "default.handlebars->121->2201",
16038
- "default3.handlebars->121->2194"
16046
+ "default.handlebars->121->2206",
16047
+ "default3.handlebars->121->2199"
16048
]
16049
},
16050
{
@@ -16064,8 +16073,8 @@
16073
"zh-chs": "客户端启动的远程访问",
16074
"zh-cht": "客戶端啟動的遠程訪問",
16075
"xloc": [
16067
- "default.handlebars->121->2357",
16068
- "default3.handlebars->121->2345"
16076
+ "default.handlebars->121->2362",
16077
+ "default3.handlebars->121->2350"
16078
]
16079
},
16080
{
@@ -16094,8 +16103,8 @@
16103
"zh-chs": "客户机密",
16104
"zh-cht": "客戶機密",
16105
"xloc": [
16097
- "default.handlebars->121->2202",
16098
- "default3.handlebars->121->2195"
16106
+ "default.handlebars->121->2207",
16107
+ "default3.handlebars->121->2200"
16108
]
16109
},
16110
{
@@ -16161,7 +16170,7 @@
16170
"default.handlebars->121->1561",
16171
"default.handlebars->121->247",
16172
"default.handlebars->121->256",
16164
- "default.handlebars->121->3487",
16173
+ "default.handlebars->121->3492",
16174
"default3.handlebars->121->1473",
16175
"default3.handlebars->121->1541",
16176
"default3.handlebars->121->354",
@@ -16194,8 +16203,8 @@
16203
"zh-chs": "已关闭桌面多路复用会话 \\\"{0}\\\",{1} 秒",
16204
"zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
16205
"xloc": [
16197
- "default.handlebars->121->2741",
16198
- "default3.handlebars->121->2731"
16206
+ "default.handlebars->121->2746",
16207
+ "default3.handlebars->121->2736"
16208
]
16209
},
16210
{
@@ -16224,8 +16233,8 @@
16233
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
16234
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
16235
"xloc": [
16227
- "default.handlebars->121->2602",
16228
- "default3.handlebars->121->2592"
16236
+ "default.handlebars->121->2607",
16237
+ "default3.handlebars->121->2597"
16238
]
16239
},
16240
{
@@ -16411,13 +16420,13 @@
16420
"zh-chs": "指令",
16421
"zh-cht": "指令",
16422
"xloc": [
16414
- "default-mobile.handlebars->55->1052",
16423
+ "default-mobile.handlebars->55->1057",
16424
"default.handlebars->121->1155",
16425
"default.handlebars->121->1180",
16417
- "default.handlebars->121->2471",
16426
+ "default.handlebars->121->2476",
16427
"default3.handlebars->121->1144",
16428
"default3.handlebars->121->1169",
16420
- "default3.handlebars->121->2461"
16429
+ "default3.handlebars->121->2466"
16430
]
16431
},
16432
{
@@ -16500,10 +16509,10 @@
16509
"zh-chs": "通用设备组",
16510
"zh-cht": "通用裝置群",
16511
"xloc": [
16503
- "default.handlebars->121->2966",
16504
- "default.handlebars->121->3155",
16505
- "default3.handlebars->121->2954",
16506
- "default3.handlebars->121->3137"
16512
+ "default.handlebars->121->2971",
16513
+ "default.handlebars->121->3160",
16514
+ "default3.handlebars->121->2959",
16515
+ "default3.handlebars->121->3142"
16516
]
16517
},
16518
{
@@ -16532,10 +16541,10 @@
16541
"zh-chs": "通用设备",
16542
"zh-cht": "通用裝置",
16543
"xloc": [
16535
- "default.handlebars->121->2972",
16536
- "default.handlebars->121->3167",
16537
- "default3.handlebars->121->2960",
16538
- "default3.handlebars->121->3149"
16544
+ "default.handlebars->121->2977",
16545
+ "default.handlebars->121->3172",
16546
+ "default3.handlebars->121->2965",
16547
+ "default3.handlebars->121->3154"
16548
]
16549
},
16550
{
@@ -16564,9 +16573,9 @@
16573
"zh-chs": "编译时间",
16574
"zh-cht": "編譯時間",
16575
"xloc": [
16567
- "default-mobile.handlebars->55->793",
16568
- "default.handlebars->121->1641",
16569
- "default3.handlebars->121->1621"
16576
+ "default-mobile.handlebars->55->798",
16577
+ "default.handlebars->121->1646",
16578
+ "default3.handlebars->121->1626"
16579
]
16580
},
16581
{
@@ -16612,8 +16621,8 @@
16621
"pl": "Zapisy pliku konfiguracyjnego",
16622
"uk": "Записи файлу конфігурації",
16623
"xloc": [
16615
- "default.handlebars->121->3320",
16616
- "default3.handlebars->121->3304"
16624
+ "default.handlebars->121->3325",
16625
+ "default3.handlebars->121->3309"
16626
]
16627
},
16628
{
@@ -16642,23 +16651,23 @@
16651
"zh-chs": "确认",
16652
"zh-cht": "確認",
16653
"xloc": [
16645
- "default-mobile.handlebars->55->1001",
16654
+ "default-mobile.handlebars->55->1006",
16655
"default-mobile.handlebars->55->620",
16656
"default.handlebars->121->1329",
16657
"default.handlebars->121->1338",
16649
- "default.handlebars->121->2368",
16650
- "default.handlebars->121->2831",
16651
- "default.handlebars->121->2921",
16652
- "default.handlebars->121->2988",
16653
- "default.handlebars->121->3153",
16658
+ "default.handlebars->121->2373",
16659
+ "default.handlebars->121->2836",
16660
+ "default.handlebars->121->2926",
16661
+ "default.handlebars->121->2993",
16662
+ "default.handlebars->121->3158",
16663
"default.handlebars->121->792",
16664
"default3.handlebars->121->1314",
16665
"default3.handlebars->121->1322",
16657
- "default3.handlebars->121->2355",
16658
- "default3.handlebars->121->2821",
16659
- "default3.handlebars->121->2909",
16660
- "default3.handlebars->121->2976",
16661
- "default3.handlebars->121->3135",
16666
+ "default3.handlebars->121->2360",
16667
+ "default3.handlebars->121->2826",
16668
+ "default3.handlebars->121->2914",
16669
+ "default3.handlebars->121->2981",
16670
+ "default3.handlebars->121->3140",
16671
"default3.handlebars->121->783"
16672
]
16673
},
@@ -16666,7 +16675,7 @@
16675
"en": "Confirm Password",
16676
"nl": "Bevestig wachtwoord",
16677
"xloc": [
16669
- "default3.handlebars->121->2870"
16678
+ "default3.handlebars->121->2875"
16679
]
16680
},
16681
{
@@ -16789,8 +16798,8 @@
16798
"zh-chs": "确认删除选定的帐户?",
16799
"zh-cht": "確認刪除所選帳戶?",
16800
"xloc": [
16792
- "default.handlebars->121->2830",
16793
- "default3.handlebars->121->2820"
16801
+ "default.handlebars->121->2835",
16802
+ "default3.handlebars->121->2825"
16803
]
16804
},
16805
{
@@ -16819,8 +16828,8 @@
16828
"zh-chs": "确认删除选定的用户组?",
16829
"zh-cht": "確認刪除所選用戶群?",
16830
"xloc": [
16822
- "default.handlebars->121->2920",
16823
- "default3.handlebars->121->2908"
16831
+ "default.handlebars->121->2925",
16832
+ "default3.handlebars->121->2913"
16833
]
16834
},
16835
{
@@ -16849,24 +16858,24 @@
16858
"zh-chs": "确认删除用户{0}?",
16859
"zh-cht": "確認刪除用戶{0}?",
16860
"xloc": [
16852
- "default.handlebars->121->3152",
16853
- "default3.handlebars->121->3134"
16861
+ "default.handlebars->121->3157",
16862
+ "default3.handlebars->121->3139"
16863
]
16864
},
16865
{
16866
"en": "Confirm disabling 2FA Duo login security.",
16867
"nl": "Bevestig het uitschakelen van 2FA Duo inlogbeveiliging.",
16868
"xloc": [
16860
- "default.handlebars->121->1882",
16861
- "default3.handlebars->121->1859"
16869
+ "default.handlebars->121->1887",
16870
+ "default3.handlebars->121->1864"
16871
]
16872
},
16873
{
16874
"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.",
16875
"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.",
16876
"xloc": [
16868
- "default.handlebars->121->1880",
16869
- "default3.handlebars->121->1857"
16877
+ "default.handlebars->121->1885",
16878
+ "default3.handlebars->121->1862"
16879
]
16880
},
16881
{
@@ -16895,8 +16904,8 @@
16904
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
16905
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
16906
"xloc": [
16898
- "default.handlebars->121->2991",
16899
- "default3.handlebars->121->2979"
16907
+ "default.handlebars->121->2996",
16908
+ "default3.handlebars->121->2984"
16909
]
16910
},
16911
{
@@ -16925,8 +16934,8 @@
16934
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
16935
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
16936
"xloc": [
16928
- "default.handlebars->121->3184",
16929
- "default3.handlebars->121->3166"
16937
+ "default.handlebars->121->3189",
16938
+ "default3.handlebars->121->3171"
16939
]
16940
},
16941
{
@@ -17049,8 +17058,8 @@
17058
"zh-chs": "确认覆盖?",
17059
"zh-cht": "確認覆蓋?",
17060
"xloc": [
17052
- "default.handlebars->121->2583",
17053
- "default3.handlebars->121->2573"
17061
+ "default.handlebars->121->2588",
17062
+ "default3.handlebars->121->2578"
17063
]
17064
},
17065
{
@@ -17079,10 +17088,10 @@
17088
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
17089
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
17090
"xloc": [
17082
- "default.handlebars->121->2981",
17083
- "default.handlebars->121->3175",
17084
- "default3.handlebars->121->2969",
17085
- "default3.handlebars->121->3157"
17091
+ "default.handlebars->121->2986",
17092
+ "default.handlebars->121->3180",
17093
+ "default3.handlebars->121->2974",
17094
+ "default3.handlebars->121->3162"
17095
]
17096
},
17097
{
@@ -17111,10 +17120,10 @@
17120
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
17121
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
17122
"xloc": [
17114
- "default.handlebars->121->2983",
17115
- "default.handlebars->121->3188",
17116
- "default3.handlebars->121->2971",
17117
- "default3.handlebars->121->3170"
17123
+ "default.handlebars->121->2988",
17124
+ "default.handlebars->121->3193",
17125
+ "default3.handlebars->121->2976",
17126
+ "default3.handlebars->121->3175"
17127
]
17128
},
17129
{
@@ -17143,8 +17152,8 @@
17152
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
17153
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
17154
"xloc": [
17146
- "default.handlebars->121->3177",
17147
- "default3.handlebars->121->3159"
17155
+ "default.handlebars->121->3182",
17156
+ "default3.handlebars->121->3164"
17157
]
17158
},
17159
{
@@ -17173,8 +17182,8 @@
17182
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
17183
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
17184
"xloc": [
17176
- "default.handlebars->121->3180",
17177
- "default3.handlebars->121->3162"
17185
+ "default.handlebars->121->3185",
17186
+ "default3.handlebars->121->3167"
17187
]
17188
},
17189
{
@@ -17203,10 +17212,10 @@
17212
"zh-chs": "确认删除访问权限?",
17213
"zh-cht": "確認刪除訪問權限?",
17214
"xloc": [
17206
- "default.handlebars->121->3178",
17207
- "default.handlebars->121->3181",
17208
- "default3.handlebars->121->3160",
17209
- "default3.handlebars->121->3163"
17215
+ "default.handlebars->121->3183",
17216
+ "default.handlebars->121->3186",
17217
+ "default3.handlebars->121->3165",
17218
+ "default3.handlebars->121->3168"
17219
]
17220
},
17221
{
@@ -17236,8 +17245,8 @@
17245
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
17246
"xloc": [
17247
"default-mobile.handlebars->55->328",
17239
- "default.handlebars->121->1886",
17240
- "default3.handlebars->121->1863"
17248
+ "default.handlebars->121->1891",
17249
+ "default3.handlebars->121->1868"
17250
]
17251
},
17252
{
@@ -17266,8 +17275,8 @@
17275
"zh-chs": "确认删除设备共享“{0}”?",
17276
"zh-cht": "確認刪除設備共享“{0}”?",
17277
"xloc": [
17269
- "default.handlebars->121->3173",
17270
- "default3.handlebars->121->3155"
17278
+ "default.handlebars->121->3178",
17279
+ "default3.handlebars->121->3160"
17280
]
17281
},
17282
{
@@ -17296,8 +17305,8 @@
17305
"zh-chs": "确认移除推送认证设备?",
17306
"zh-cht": "確認移除推送認證設備?",
17307
"xloc": [
17299
- "default.handlebars->121->1888",
17300
- "default3.handlebars->121->1865"
17308
+ "default.handlebars->121->1893",
17309
+ "default3.handlebars->121->1870"
17310
]
17311
},
17312
{
@@ -17326,8 +17335,8 @@
17335
"zh-chs": "确认删除用户“ {0} ”的权限?",
17336
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
17337
"xloc": [
17329
- "default.handlebars->121->2483",
17330
- "default3.handlebars->121->2473"
17338
+ "default.handlebars->121->2488",
17339
+ "default3.handlebars->121->2478"
17340
]
17341
},
17342
{
@@ -17356,8 +17365,8 @@
17365
"zh-chs": "确认删除用户组“ {0} ”的权限?",
17366
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
17367
"xloc": [
17359
- "default.handlebars->121->2485",
17360
- "default3.handlebars->121->2475"
17368
+ "default.handlebars->121->2490",
17369
+ "default3.handlebars->121->2480"
17370
]
17371
},
17372
{
@@ -17416,8 +17425,8 @@
17425
"zh-chs": "确认删除此登录令牌?",
17426
"zh-cht": "確認刪除此登錄令牌?",
17427
"xloc": [
17419
- "default.handlebars->121->2194",
17420
- "default3.handlebars->121->2187"
17428
+ "default.handlebars->121->2199",
17429
+ "default3.handlebars->121->2192"
17430
]
17431
},
17432
{
@@ -17446,7 +17455,7 @@
17455
"zh-chs": "确认删除用户{0}?",
17456
"zh-cht": "確認刪除用戶{0}?",
17457
"xloc": [
17449
- "default-mobile.handlebars->55->1061"
17458
+ "default-mobile.handlebars->55->1066"
17459
]
17460
},
17461
{
@@ -17506,8 +17515,8 @@
17515
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
17516
"xloc": [
17517
"default-mobile.handlebars->55->387",
17509
- "default.handlebars->121->2586",
17510
- "default3.handlebars->121->2576"
17518
+ "default.handlebars->121->2591",
17519
+ "default3.handlebars->121->2581"
17520
]
17521
},
17522
{
@@ -17540,12 +17549,12 @@
17549
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
17550
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
17551
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
17543
- "default.handlebars->121->2266",
17552
+ "default.handlebars->121->2271",
17553
"default.handlebars->121->991",
17554
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
17555
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
17556
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
17548
- "default3.handlebars->121->2255",
17557
+ "default3.handlebars->121->2260",
17558
"default3.handlebars->121->982",
17559
"default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->connectbutton1span->connectbutton1",
17560
"default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->connectbutton2",
@@ -17621,8 +17630,8 @@
17630
"zh-chs": "连接到服务器",
17631
"zh-cht": "連接到伺服器",
17632
"xloc": [
17624
- "default.handlebars->121->2361",
17625
- "default3.handlebars->121->2348"
17633
+ "default.handlebars->121->2366",
17634
+ "default3.handlebars->121->2353"
17635
]
17636
},
17637
{
@@ -17870,8 +17879,8 @@
17879
"zh-chs": "已连接的英特尔®AMT",
17880
"zh-cht": "已連接的Intel® AMT",
17881
"xloc": [
17873
- "default.handlebars->121->3412",
17874
- "default3.handlebars->121->3396"
17882
+ "default.handlebars->121->3417",
17883
+ "default3.handlebars->121->3401"
17884
]
17885
},
17886
{
@@ -17900,8 +17909,8 @@
17909
"zh-chs": "已连接的英特尔®AMT CIRA",
17910
"zh-cht": "已連接的Intel® AMT CIRA",
17911
"xloc": [
17903
- "default.handlebars->121->3413",
17904
- "default3.handlebars->121->3397"
17912
+ "default.handlebars->121->3418",
17913
+ "default3.handlebars->121->3402"
17914
]
17915
},
17916
{
@@ -17930,8 +17939,8 @@
17939
"zh-chs": "已连接的用户",
17940
"zh-cht": "已连接的用户",
17941
"xloc": [
17933
- "default.handlebars->121->3418",
17934
- "default3.handlebars->121->3402"
17942
+ "default.handlebars->121->3423",
17943
+ "default3.handlebars->121->3407"
17944
]
17945
},
17946
{
@@ -17990,9 +17999,9 @@
17999
"zh-chs": "现在已连接",
18000
"zh-cht": "現在已連接",
18001
"xloc": [
17993
- "default-mobile.handlebars->55->788",
17994
- "default.handlebars->121->1636",
17995
- "default3.handlebars->121->1616"
18002
+ "default-mobile.handlebars->55->793",
18003
+ "default.handlebars->121->1641",
18004
+ "default3.handlebars->121->1621"
18005
]
18006
},
18007
{
@@ -18126,8 +18135,8 @@
18135
"zh-chs": "连接数量",
18136
"zh-cht": "連接數量",
18137
"xloc": [
18129
- "default.handlebars->121->3444",
18130
- "default3.handlebars->121->3428"
18138
+ "default.handlebars->121->3449",
18139
+ "default3.handlebars->121->3433"
18140
]
18141
},
18142
{
@@ -18197,8 +18206,8 @@
18206
"zh-chs": "连接转发器",
18207
"zh-cht": "連接轉發器",
18208
"xloc": [
18200
- "default.handlebars->121->3481",
18201
- "default3.handlebars->121->3465"
18209
+ "default.handlebars->121->3486",
18210
+ "default3.handlebars->121->3470"
18211
]
18212
},
18213
{
@@ -18288,10 +18297,10 @@
18297
"xloc": [
18298
"default-mobile.handlebars->55->525",
18299
"default.handlebars->121->1008",
18291
- "default.handlebars->121->2537",
18300
+ "default.handlebars->121->2542",
18301
"default.handlebars->121->420",
18302
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1",
18294
- "default3.handlebars->121->2527",
18303
+ "default3.handlebars->121->2532",
18304
"default3.handlebars->121->411",
18305
"default3.handlebars->121->999",
18306
"default3.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
@@ -18323,8 +18332,8 @@
18332
"zh-chs": "同意",
18333
"zh-cht": "同意",
18334
"xloc": [
18326
- "default.handlebars->121->2762",
18327
- "default3.handlebars->121->2752"
18335
+ "default.handlebars->121->2767",
18336
+ "default3.handlebars->121->2757"
18337
]
18338
},
18339
{
@@ -18485,8 +18494,8 @@
18494
"zh-chs": "Cookie编码器",
18495
"zh-cht": "Cookie編碼器",
18496
"xloc": [
18488
- "default.handlebars->121->3464",
18489
- "default3.handlebars->121->3448"
18497
+ "default.handlebars->121->3469",
18498
+ "default3.handlebars->121->3453"
18499
]
18500
},
18501
{
@@ -18764,14 +18773,14 @@
18773
"zh-chs": "复制连结到剪贴板",
18774
"zh-cht": "複製連結到剪貼板",
18775
"xloc": [
18767
- "default.handlebars->121->2547",
18768
- "default.handlebars->121->2571",
18776
+ "default.handlebars->121->2552",
18777
+ "default.handlebars->121->2576",
18778
"default.handlebars->121->332",
18779
"default.handlebars->121->354",
18780
"default.handlebars->121->356",
18781
"default.handlebars->121->624",
18773
- "default3.handlebars->121->2537",
18774
- "default3.handlebars->121->2561",
18782
+ "default3.handlebars->121->2542",
18783
+ "default3.handlebars->121->2566",
18784
"default3.handlebars->121->328",
18785
"default3.handlebars->121->350",
18786
"default3.handlebars->121->352",
@@ -18934,8 +18943,8 @@
18943
"zh-chs": "复制:“{0}”到“{1}”",
18944
"zh-cht": "複製:“{0}”到“{1}”",
18945
"xloc": [
18937
- "default.handlebars->121->2645",
18938
- "default3.handlebars->121->2635"
18946
+ "default.handlebars->121->2650",
18947
+ "default3.handlebars->121->2640"
18948
]
18949
},
18950
{
@@ -19144,8 +19153,8 @@
19153
"zh-chs": "核心服务器",
19154
"zh-cht": "核心伺服器",
19155
"xloc": [
19147
- "default.handlebars->121->3463",
19148
- "default3.handlebars->121->3447"
19156
+ "default.handlebars->121->3468",
19157
+ "default3.handlebars->121->3452"
19158
]
19159
},
19160
{
@@ -19175,8 +19184,8 @@
19184
"zh-cht": "科西嘉文",
19185
"xloc": [
19186
"default-mobile.handlebars->55->160",
19178
- "default.handlebars->121->1944",
19179
- "default3.handlebars->121->1920",
19187
+ "default.handlebars->121->1949",
19188
+ "default3.handlebars->121->1925",
19189
"login2.handlebars->17->41"
19190
]
19191
},
@@ -19184,7 +19193,7 @@
19193
"en": "Cosmo",
19194
"nl": "Cosmo",
19195
"xloc": [
19187
- "default3.handlebars->121->2126"
19196
+ "default3.handlebars->121->2131"
19197
]
19198
},
19199
{
@@ -19213,8 +19222,8 @@
19222
"zh-chs": "创建帐号",
19223
"zh-cht": "創建帳號",
19224
"xloc": [
19216
- "default.handlebars->121->2888",
19217
- "default3.handlebars->121->2878",
19225
+ "default.handlebars->121->2893",
19226
+ "default3.handlebars->121->2883",
19227
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
19228
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
19229
"login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -19275,9 +19284,9 @@
19284
"zh-chs": "创建登录令牌",
19285
"zh-cht": "創建登錄令牌",
19286
"xloc": [
19278
- "default.handlebars->121->2129",
19287
+ "default.handlebars->121->2134",
19288
"default.handlebars->121->357",
19280
- "default3.handlebars->121->2106"
19289
+ "default3.handlebars->121->2111"
19290
]
19291
},
19292
{
@@ -19306,8 +19315,8 @@
19315
"zh-chs": "创建用户组",
19316
"zh-cht": "創建用戶群",
19317
"xloc": [
19309
- "default.handlebars->121->2928",
19310
- "default3.handlebars->121->2916"
19318
+ "default.handlebars->121->2933",
19319
+ "default3.handlebars->121->2921"
19320
]
19321
},
19322
{
@@ -19366,8 +19375,8 @@
19375
"zh-chs": "使用以下选项创建一个新的设备组。",
19376
"zh-cht": "使用以下選項創建一個新的裝置群。",
19377
"xloc": [
19369
- "default.handlebars->121->2159",
19370
- "default3.handlebars->121->2154"
19378
+ "default.handlebars->121->2164",
19379
+ "default3.handlebars->121->2159"
19380
]
19381
},
19382
{
@@ -19426,8 +19435,8 @@
19435
"zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。",
19436
"zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
19437
"xloc": [
19429
- "default.handlebars->121->2109",
19430
- "default3.handlebars->121->2085"
19438
+ "default.handlebars->121->2114",
19439
+ "default3.handlebars->121->2090"
19440
]
19441
},
19442
{
@@ -19456,8 +19465,8 @@
19465
"zh-chs": "创建文件:“{0}”",
19466
"zh-cht": "創建文件:“{0}”",
19467
"xloc": [
19459
- "default.handlebars->121->2758",
19460
- "default3.handlebars->121->2748"
19468
+ "default.handlebars->121->2763",
19469
+ "default3.handlebars->121->2753"
19470
]
19471
},
19472
{
@@ -19516,8 +19525,8 @@
19525
"zh-chs": "创建文件夹:“{0}”",
19526
"zh-cht": "創建文件夾:“{0}”",
19527
"xloc": [
19519
- "default.handlebars->121->2638",
19520
- "default3.handlebars->121->2628"
19528
+ "default.handlebars->121->2643",
19529
+ "default3.handlebars->121->2633"
19530
]
19531
},
19532
{
@@ -19573,8 +19582,8 @@
19582
"nl": "Maak meerdere accounts tegelijk aan door een JSON of een CSV bestand te importeren",
19583
"uk": "Створіть кілька акаунтів одночасно, імпортувавши файл JSON або CSV",
19584
"xloc": [
19576
- "default.handlebars->121->2845",
19577
- "default3.handlebars->121->2835"
19585
+ "default.handlebars->121->2850",
19586
+ "default3.handlebars->121->2840"
19587
]
19588
},
19589
{
@@ -19634,8 +19643,8 @@
19643
"zh-chs": "创建的设备组:{0}",
19644
"zh-cht": "創建的設備組:{0}",
19645
"xloc": [
19637
- "default.handlebars->121->2649",
19638
- "default3.handlebars->121->2639"
19646
+ "default.handlebars->121->2654",
19647
+ "default3.handlebars->121->2644"
19648
]
19649
},
19650
{
@@ -19694,8 +19703,8 @@
19703
"zh-chs": "创建",
19704
"zh-cht": "創建",
19705
"xloc": [
19697
- "default.handlebars->121->3036",
19698
- "default3.handlebars->121->3024"
19706
+ "default.handlebars->121->3041",
19707
+ "default3.handlebars->121->3029"
19708
]
19709
},
19710
{
@@ -19724,8 +19733,8 @@
19733
"zh-chs": "创建时间",
19734
"zh-cht": "創作時間",
19735
"xloc": [
19727
- "default.handlebars->121->2244",
19728
- "default3.handlebars->121->2233"
19736
+ "default.handlebars->121->2249",
19737
+ "default3.handlebars->121->2238"
19738
]
19739
},
19740
{
@@ -19785,10 +19794,10 @@
19794
"zh-chs": "创建者",
19795
"zh-cht": "創作者",
19796
"xloc": [
19788
- "default.handlebars->121->2242",
19789
- "default.handlebars->121->2243",
19790
- "default3.handlebars->121->2231",
19791
- "default3.handlebars->121->2232"
19797
+ "default.handlebars->121->2247",
19798
+ "default.handlebars->121->2248",
19799
+ "default3.handlebars->121->2236",
19800
+ "default3.handlebars->121->2237"
19801
]
19802
},
19803
{
@@ -19820,10 +19829,10 @@
19829
"default-mobile.handlebars->55->537",
19830
"default.handlebars->121->1020",
19831
"default.handlebars->121->1404",
19823
- "default.handlebars->121->2199",
19832
+ "default.handlebars->121->2204",
19833
"default3.handlebars->121->1011",
19834
"default3.handlebars->121->1385",
19826
- "default3.handlebars->121->2192"
19835
+ "default3.handlebars->121->2197"
19836
]
19837
},
19838
{
@@ -19853,8 +19862,8 @@
19862
"zh-cht": "克里語",
19863
"xloc": [
19864
"default-mobile.handlebars->55->161",
19856
- "default.handlebars->121->1945",
19857
- "default3.handlebars->121->1921",
19865
+ "default.handlebars->121->1950",
19866
+ "default3.handlebars->121->1926",
19867
"login2.handlebars->17->42"
19868
]
19869
},
@@ -19885,8 +19894,8 @@
19894
"zh-cht": "克羅地亞文",
19895
"xloc": [
19896
"default-mobile.handlebars->55->162",
19888
- "default.handlebars->121->1946",
19889
- "default3.handlebars->121->1922",
19897
+ "default.handlebars->121->1951",
19898
+ "default3.handlebars->121->1927",
19899
"login2.handlebars->17->43"
19900
]
19901
},
@@ -20170,9 +20179,9 @@
20179
"zh-chs": "当前密码不正确。",
20180
"zh-cht": "當前密碼不正確。",
20181
"xloc": [
20173
- "default-mobile.handlebars->55->1092",
20174
- "default.handlebars->121->3381",
20175
- "default3.handlebars->121->3365"
20182
+ "default-mobile.handlebars->55->1097",
20183
+ "default.handlebars->121->3386",
20184
+ "default3.handlebars->121->3370"
20185
]
20186
},
20187
{
@@ -20277,7 +20286,7 @@
20286
"en": "Cyborg",
20287
"nl": "Cyborg",
20288
"xloc": [
20280
- "default3.handlebars->121->2127"
20289
+ "default3.handlebars->121->2132"
20290
]
20291
},
20292
{
@@ -20303,9 +20312,9 @@
20312
"zh-chs": "循环计数",
20313
"zh-cht": "循環計數",
20314
"xloc": [
20306
- "default-mobile.handlebars->55->871",
20307
- "default.handlebars->121->1729",
20308
- "default3.handlebars->121->1707"
20315
+ "default-mobile.handlebars->55->876",
20316
+ "default.handlebars->121->1734",
20317
+ "default3.handlebars->121->1712"
20318
]
20319
},
20320
{
@@ -20335,8 +20344,8 @@
20344
"zh-cht": "捷克文",
20345
"xloc": [
20346
"default-mobile.handlebars->55->163",
20338
- "default.handlebars->121->1947",
20339
- "default3.handlebars->121->1923",
20347
+ "default.handlebars->121->1952",
20348
+ "default3.handlebars->121->1928",
20349
"login2.handlebars->17->44"
20350
]
20351
},
@@ -20348,9 +20357,9 @@
20357
"pl": "Serwery DNS",
20358
"uk": "DNS Сервери",
20359
"xloc": [
20351
- "default-mobile.handlebars->55->817",
20352
- "default.handlebars->121->1675",
20353
- "default3.handlebars->121->1655"
20360
+ "default-mobile.handlebars->55->822",
20361
+ "default.handlebars->121->1680",
20362
+ "default3.handlebars->121->1660"
20363
]
20364
},
20365
{
@@ -20440,8 +20449,8 @@
20449
"zh-cht": "丹麥文",
20450
"xloc": [
20451
"default-mobile.handlebars->55->164",
20443
- "default.handlebars->121->1948",
20444
- "default3.handlebars->121->1924",
20452
+ "default.handlebars->121->1953",
20453
+ "default3.handlebars->121->1929",
20454
"login2.handlebars->17->45"
20455
]
20456
},
@@ -20480,7 +20489,7 @@
20489
"en": "Darkly",
20490
"nl": "Donker",
20491
"xloc": [
20483
- "default3.handlebars->121->2128"
20492
+ "default3.handlebars->121->2133"
20493
]
20494
},
20495
{
@@ -20526,8 +20535,8 @@
20535
"pl": "Zapisy Bazy Danych",
20536
"uk": "Записи Бази Даних",
20537
"xloc": [
20529
- "default.handlebars->121->3240",
20530
- "default3.handlebars->121->3224"
20538
+ "default.handlebars->121->3245",
20539
+ "default3.handlebars->121->3229"
20540
]
20541
},
20542
{
@@ -20557,8 +20566,8 @@
20566
"zh-cht": "日期和時間",
20567
"xloc": [
20568
"default-mobile.handlebars->55->322",
20560
- "default.handlebars->121->2106",
20561
- "default3.handlebars->121->2082"
20569
+ "default.handlebars->121->2111",
20570
+ "default3.handlebars->121->2087"
20571
]
20572
},
20573
{
@@ -20589,11 +20598,11 @@
20598
"xloc": [
20599
"default-mobile.handlebars->55->610",
20600
"default.handlebars->121->1313",
20592
- "default.handlebars->121->3244",
20593
- "default.handlebars->121->3247",
20601
+ "default.handlebars->121->3249",
20602
+ "default.handlebars->121->3252",
20603
"default3.handlebars->121->1298",
20595
- "default3.handlebars->121->3228",
20596
- "default3.handlebars->121->3231"
20604
+ "default3.handlebars->121->3233",
20605
+ "default3.handlebars->121->3236"
20606
]
20607
},
20608
{
@@ -20622,10 +20631,10 @@
20631
"zh-chs": "停用",
20632
"zh-cht": "停用",
20633
"xloc": [
20625
- "default.handlebars->121->2276",
20626
- "default.handlebars->121->2340",
20627
- "default3.handlebars->121->2265",
20628
- "default3.handlebars->121->2327"
20634
+ "default.handlebars->121->2281",
20635
+ "default.handlebars->121->2345",
20636
+ "default3.handlebars->121->2270",
20637
+ "default3.handlebars->121->2332"
20638
]
20639
},
20640
{
@@ -20654,8 +20663,8 @@
20663
"zh-chs": "如果设置停用CCM",
20664
"zh-cht": "如果設置停用CCM",
20665
"xloc": [
20657
- "default.handlebars->121->2352",
20658
- "default3.handlebars->121->2339"
20666
+ "default.handlebars->121->2357",
20667
+ "default3.handlebars->121->2344"
20668
]
20669
},
20670
{
@@ -20715,15 +20724,15 @@
20724
"zh-chs": "默认",
20725
"zh-cht": "默認",
20726
"xloc": [
20718
- "default.handlebars->121->2875",
20719
- "default.handlebars->121->2924",
20720
- "default.handlebars->121->2935",
20721
- "default.handlebars->121->3009",
20722
- "default3.handlebars->121->2124",
20723
- "default3.handlebars->121->2865",
20724
- "default3.handlebars->121->2912",
20725
- "default3.handlebars->121->2923",
20726
- "default3.handlebars->121->2997"
20727
+ "default.handlebars->121->2880",
20728
+ "default.handlebars->121->2929",
20729
+ "default.handlebars->121->2940",
20730
+ "default.handlebars->121->3014",
20731
+ "default3.handlebars->121->2129",
20732
+ "default3.handlebars->121->2870",
20733
+ "default3.handlebars->121->2917",
20734
+ "default3.handlebars->121->2928",
20735
+ "default3.handlebars->121->3002"
20736
]
20737
},
20738
{
@@ -20790,14 +20799,14 @@
20799
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
20800
"default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
20801
"default.handlebars->121->1572",
20793
- "default.handlebars->121->2578",
20802
+ "default.handlebars->121->2583",
20803
"default.handlebars->121->866",
20804
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
20805
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
20806
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
20807
"default.handlebars->filesContextMenu->5",
20808
"default3.handlebars->121->1552",
20800
- "default3.handlebars->121->2568",
20809
+ "default3.handlebars->121->2573",
20810
"default3.handlebars->121->857",
20811
"default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
20812
"default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -20841,8 +20850,8 @@
20850
"zh-cht": "刪除帳戶",
20851
"xloc": [
20852
"default-mobile.handlebars->55->338",
20844
- "default.handlebars->121->2144",
20845
- "default3.handlebars->121->2119"
20853
+ "default.handlebars->121->2149",
20854
+ "default3.handlebars->121->2124"
20855
]
20856
},
20857
{
@@ -20871,8 +20880,8 @@
20880
"zh-chs": "删除帐户",
20881
"zh-cht": "刪除帳戶",
20882
"xloc": [
20874
- "default.handlebars->121->2832",
20875
- "default3.handlebars->121->2822"
20883
+ "default.handlebars->121->2837",
20884
+ "default3.handlebars->121->2827"
20885
]
20886
},
20887
{
@@ -20962,12 +20971,12 @@
20971
"zh-chs": "删除群组",
20972
"zh-cht": "刪除群組",
20973
"xloc": [
20965
- "default-mobile.handlebars->55->1002",
20966
- "default-mobile.handlebars->55->999",
20967
- "default.handlebars->121->2328",
20968
- "default.handlebars->121->2369",
20969
- "default3.handlebars->121->2317",
20970
- "default3.handlebars->121->2356"
20974
+ "default-mobile.handlebars->55->1004",
20975
+ "default-mobile.handlebars->55->1007",
20976
+ "default.handlebars->121->2333",
20977
+ "default.handlebars->121->2374",
20978
+ "default3.handlebars->121->2322",
20979
+ "default3.handlebars->121->2361"
20980
]
20981
},
20982
{
@@ -21027,8 +21036,8 @@
21036
"zh-chs": "删除用户",
21037
"zh-cht": "刪除用戶",
21038
"xloc": [
21030
- "default.handlebars->121->3083",
21031
- "default3.handlebars->121->3071"
21039
+ "default.handlebars->121->3088",
21040
+ "default3.handlebars->121->3076"
21041
]
21042
},
21043
{
@@ -21057,10 +21066,10 @@
21066
"zh-chs": "删除用户群组",
21067
"zh-cht": "刪除用戶群組",
21068
"xloc": [
21060
- "default.handlebars->121->2977",
21061
- "default.handlebars->121->2989",
21062
- "default3.handlebars->121->2965",
21063
- "default3.handlebars->121->2977"
21069
+ "default.handlebars->121->2982",
21070
+ "default.handlebars->121->2994",
21071
+ "default3.handlebars->121->2970",
21072
+ "default3.handlebars->121->2982"
21073
]
21074
},
21075
{
@@ -21089,8 +21098,8 @@
21098
"zh-chs": "删除用户群组",
21099
"zh-cht": "刪除用戶群組",
21100
"xloc": [
21092
- "default.handlebars->121->2922",
21093
- "default3.handlebars->121->2910"
21101
+ "default.handlebars->121->2927",
21102
+ "default3.handlebars->121->2915"
21103
]
21104
},
21105
{
@@ -21119,8 +21128,8 @@
21128
"zh-chs": "删除用户{0}",
21129
"zh-cht": "刪除用戶{0}",
21130
"xloc": [
21122
- "default.handlebars->121->3151",
21123
- "default3.handlebars->121->3133"
21131
+ "default.handlebars->121->3156",
21132
+ "default3.handlebars->121->3138"
21133
]
21134
},
21135
{
@@ -21150,9 +21159,9 @@
21159
"zh-cht": "刪除帳戶",
21160
"xloc": [
21161
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->p2AccountPassActions->5->0",
21153
- "default.handlebars->121->2828",
21162
+ "default.handlebars->121->2833",
21163
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7",
21155
- "default3.handlebars->121->2818",
21164
+ "default3.handlebars->121->2823",
21165
"default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
21166
]
21167
},
@@ -21212,8 +21221,8 @@
21221
"zh-chs": "删除群组",
21222
"zh-cht": "刪除群組",
21223
"xloc": [
21215
- "default.handlebars->121->2918",
21216
- "default3.handlebars->121->2906"
21224
+ "default.handlebars->121->2923",
21225
+ "default3.handlebars->121->2911"
21226
]
21227
},
21228
{
@@ -21272,8 +21281,8 @@
21281
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
21282
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
21283
"xloc": [
21275
- "default.handlebars->121->2640",
21276
- "default3.handlebars->121->2630"
21284
+ "default.handlebars->121->2645",
21285
+ "default3.handlebars->121->2635"
21286
]
21287
},
21288
{
@@ -21305,9 +21314,9 @@
21314
"default-mobile.handlebars->55->384",
21315
"default-mobile.handlebars->55->711",
21316
"default.handlebars->121->1574",
21308
- "default.handlebars->121->2580",
21317
+ "default.handlebars->121->2585",
21318
"default3.handlebars->121->1554",
21310
- "default3.handlebars->121->2570",
21319
+ "default3.handlebars->121->2575",
21320
"sharing-mobile.handlebars->55->86",
21321
"sharing.handlebars->49->62"
21322
]
@@ -21338,8 +21347,8 @@
21347
"zh-chs": "删除用户群组{0}?",
21348
"zh-cht": "刪除用戶群組{0}?",
21349
"xloc": [
21341
- "default.handlebars->121->2987",
21342
- "default3.handlebars->121->2975"
21350
+ "default.handlebars->121->2992",
21351
+ "default3.handlebars->121->2980"
21352
]
21353
},
21354
{
@@ -21371,9 +21380,9 @@
21380
"default-mobile.handlebars->55->383",
21381
"default-mobile.handlebars->55->710",
21382
"default.handlebars->121->1573",
21374
- "default.handlebars->121->2579",
21383
+ "default.handlebars->121->2584",
21384
"default3.handlebars->121->1553",
21376
- "default3.handlebars->121->2569",
21385
+ "default3.handlebars->121->2574",
21386
"sharing-mobile.handlebars->55->85",
21387
"sharing.handlebars->49->61"
21388
]
@@ -21433,8 +21442,8 @@
21442
"zh-chs": "删除:“{0}”",
21443
"zh-cht": "刪除:“{0}”",
21444
"xloc": [
21436
- "default.handlebars->121->2639",
21437
- "default3.handlebars->121->2629"
21445
+ "default.handlebars->121->2644",
21446
+ "default3.handlebars->121->2634"
21447
]
21448
},
21449
{
@@ -21463,8 +21472,8 @@
21472
"zh-chs": "删除:“{0}”,{1}个元素已删除",
21473
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
21474
"xloc": [
21466
- "default.handlebars->121->2641",
21467
- "default3.handlebars->121->2631"
21475
+ "default.handlebars->121->2646",
21476
+ "default3.handlebars->121->2636"
21477
]
21478
},
21479
{
@@ -21495,11 +21504,11 @@
21504
"xloc": [
21505
"default-mobile.handlebars->55->633",
21506
"default.handlebars->121->1389",
21498
- "default.handlebars->121->3509",
21499
- "default.handlebars->121->3512",
21507
+ "default.handlebars->121->3514",
21508
+ "default.handlebars->121->3517",
21509
"default3.handlebars->121->1370",
21501
- "default3.handlebars->121->3493",
21502
- "default3.handlebars->121->3496",
21510
+ "default3.handlebars->121->3498",
21511
+ "default3.handlebars->121->3501",
21512
"sharing-mobile.handlebars->55->10",
21513
"sharing.handlebars->49->29",
21514
"sharing.handlebars->49->7"
@@ -21517,8 +21526,8 @@
21526
"pl": "Odmówiono zalogowania użytkownika z {0}, {1}, {2}",
21527
"uk": "Відмовлено у вході користувачу з {0}, {1}, {2}",
21528
"xloc": [
21520
- "default.handlebars->121->2749",
21521
- "default3.handlebars->121->2739"
21529
+ "default.handlebars->121->2754",
21530
+ "default3.handlebars->121->2744"
21531
]
21532
},
21533
{
@@ -21684,44 +21693,44 @@
21693
"zh-chs": "描述",
21694
"zh-cht": "描述",
21695
"xloc": [
21687
- "default-mobile.handlebars->55->1008",
21696
+ "default-mobile.handlebars->55->1013",
21697
"default-mobile.handlebars->55->355",
21698
"default-mobile.handlebars->55->485",
21699
"default-mobile.handlebars->55->486",
21700
"default-mobile.handlebars->55->628",
21701
"default-mobile.handlebars->55->737",
21693
- "default-mobile.handlebars->55->803",
21694
- "default-mobile.handlebars->55->985",
21702
+ "default-mobile.handlebars->55->808",
21703
+ "default-mobile.handlebars->55->990",
21704
"default.handlebars->121->1383",
21705
"default.handlebars->121->1617",
21697
- "default.handlebars->121->1651",
21698
- "default.handlebars->121->1661",
21706
+ "default.handlebars->121->1656",
21707
+ "default.handlebars->121->1666",
21708
"default.handlebars->121->174",
21700
- "default.handlebars->121->2171",
21701
- "default.handlebars->121->2233",
21702
- "default.handlebars->121->2375",
21703
- "default.handlebars->121->2760",
21704
- "default.handlebars->121->2927",
21705
- "default.handlebars->121->2938",
21706
- "default.handlebars->121->2939",
21707
- "default.handlebars->121->2985",
21709
+ "default.handlebars->121->2176",
21710
+ "default.handlebars->121->2238",
21711
+ "default.handlebars->121->2380",
21712
+ "default.handlebars->121->2765",
21713
+ "default.handlebars->121->2932",
21714
+ "default.handlebars->121->2943",
21715
+ "default.handlebars->121->2944",
21716
+ "default.handlebars->121->2990",
21717
"default.handlebars->121->907",
21718
"default.handlebars->121->908",
21719
"default.handlebars->container->column_l->p42->p42tbl->1->0->3",
21720
"default3.handlebars->121->1363",
21721
"default3.handlebars->121->1597",
21713
- "default3.handlebars->121->1631",
21714
- "default3.handlebars->121->1641",
21722
+ "default3.handlebars->121->1636",
21723
+ "default3.handlebars->121->1646",
21724
"default3.handlebars->121->172",
21716
- "default3.handlebars->121->2164",
21717
- "default3.handlebars->121->2222",
21718
- "default3.handlebars->121->2364",
21719
- "default3.handlebars->121->2365",
21720
- "default3.handlebars->121->2750",
21721
- "default3.handlebars->121->2915",
21722
- "default3.handlebars->121->2926",
21723
- "default3.handlebars->121->2927",
21724
- "default3.handlebars->121->2973",
21725
+ "default3.handlebars->121->2169",
21726
+ "default3.handlebars->121->2227",
21727
+ "default3.handlebars->121->2369",
21728
+ "default3.handlebars->121->2370",
21729
+ "default3.handlebars->121->2755",
21730
+ "default3.handlebars->121->2920",
21731
+ "default3.handlebars->121->2931",
21732
+ "default3.handlebars->121->2932",
21733
+ "default3.handlebars->121->2978",
21734
"default3.handlebars->121->898",
21735
"default3.handlebars->121->899",
21736
"default3.handlebars->container->column_l->p42->p42tbl->1->0->7"
@@ -21750,9 +21759,9 @@
21759
"zh-chs": "设计容量",
21760
"zh-cht": "設計容量",
21761
"xloc": [
21753
- "default-mobile.handlebars->55->877",
21754
- "default.handlebars->121->1735",
21755
- "default3.handlebars->121->1713"
21762
+ "default-mobile.handlebars->55->882",
21763
+ "default.handlebars->121->1740",
21764
+ "default3.handlebars->121->1718"
21765
]
21766
},
21767
{
@@ -21785,24 +21794,24 @@
21794
"default.handlebars->121->1104",
21795
"default.handlebars->121->1218",
21796
"default.handlebars->121->1502",
21788
- "default.handlebars->121->2306",
21789
- "default.handlebars->121->2381",
21790
- "default.handlebars->121->3214",
21791
- "default.handlebars->121->3279",
21792
- "default.handlebars->121->3332",
21793
- "default.handlebars->121->3438",
21797
+ "default.handlebars->121->2311",
21798
+ "default.handlebars->121->2386",
21799
+ "default.handlebars->121->3219",
21800
+ "default.handlebars->121->3284",
21801
+ "default.handlebars->121->3337",
21802
+ "default.handlebars->121->3443",
21803
"default.handlebars->121->872",
21804
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
21805
"default.handlebars->contextMenu->cxdesktop",
21806
"default3.handlebars->121->1095",
21807
"default3.handlebars->121->1207",
21808
"default3.handlebars->121->1482",
21800
- "default3.handlebars->121->2295",
21801
- "default3.handlebars->121->2371",
21802
- "default3.handlebars->121->3198",
21803
- "default3.handlebars->121->3263",
21804
- "default3.handlebars->121->3316",
21805
- "default3.handlebars->121->3422",
21809
+ "default3.handlebars->121->2300",
21810
+ "default3.handlebars->121->2376",
21811
+ "default3.handlebars->121->3203",
21812
+ "default3.handlebars->121->3268",
21813
+ "default3.handlebars->121->3321",
21814
+ "default3.handlebars->121->3427",
21815
"default3.handlebars->121->863",
21816
"default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
21817
"default3.handlebars->contextMenu->cxdesktop",
@@ -21839,10 +21848,10 @@
21848
"xloc": [
21849
"default.handlebars->121->1108",
21850
"default.handlebars->121->1221",
21842
- "default.handlebars->121->2310",
21851
+ "default.handlebars->121->2315",
21852
"default3.handlebars->121->1099",
21853
"default3.handlebars->121->1210",
21845
- "default3.handlebars->121->2299"
21854
+ "default3.handlebars->121->2304"
21855
]
21856
},
21857
{
@@ -21872,9 +21881,9 @@
21881
"zh-cht": "桌面+終端",
21882
"xloc": [
21883
"default.handlebars->121->1105",
21875
- "default.handlebars->121->2307",
21884
+ "default.handlebars->121->2312",
21885
"default3.handlebars->121->1096",
21877
- "default3.handlebars->121->2296"
21886
+ "default3.handlebars->121->2301"
21887
]
21888
},
21889
{
@@ -21905,10 +21914,10 @@
21914
"xloc": [
21915
"default.handlebars->121->1109",
21916
"default.handlebars->121->1223",
21908
- "default.handlebars->121->2311",
21917
+ "default.handlebars->121->2316",
21918
"default3.handlebars->121->1100",
21919
"default3.handlebars->121->1212",
21911
- "default3.handlebars->121->2300"
21920
+ "default3.handlebars->121->2305"
21921
]
21922
},
21923
{
@@ -21967,8 +21976,8 @@
21976
"zh-chs": "桌面复用",
21977
"zh-cht": "桌面多路復用",
21978
"xloc": [
21970
- "default.handlebars->121->3443",
21971
- "default3.handlebars->121->3427"
21979
+ "default.handlebars->121->3448",
21980
+ "default3.handlebars->121->3432"
21981
]
21982
},
21983
{
@@ -21997,13 +22006,13 @@
22006
"zh-chs": "桌面通知",
22007
"zh-cht": "桌面通知",
22008
"xloc": [
22000
- "default.handlebars->121->2257",
22001
- "default.handlebars->121->2946",
22002
- "default.handlebars->121->3051",
22009
+ "default.handlebars->121->2262",
22010
+ "default.handlebars->121->2951",
22011
+ "default.handlebars->121->3056",
22012
"default.handlebars->121->982",
22004
- "default3.handlebars->121->2246",
22005
- "default3.handlebars->121->2934",
22006
- "default3.handlebars->121->3039",
22013
+ "default3.handlebars->121->2251",
22014
+ "default3.handlebars->121->2939",
22015
+ "default3.handlebars->121->3044",
22016
"default3.handlebars->121->973"
22017
]
22018
},
@@ -22033,13 +22042,13 @@
22042
"zh-chs": "桌面提示",
22043
"zh-cht": "桌面提示",
22044
"xloc": [
22036
- "default.handlebars->121->2256",
22037
- "default.handlebars->121->2945",
22038
- "default.handlebars->121->3050",
22045
+ "default.handlebars->121->2261",
22046
+ "default.handlebars->121->2950",
22047
+ "default.handlebars->121->3055",
22048
"default.handlebars->121->981",
22040
- "default3.handlebars->121->2245",
22041
- "default3.handlebars->121->2933",
22042
- "default3.handlebars->121->3038",
22049
+ "default3.handlebars->121->2250",
22050
+ "default3.handlebars->121->2938",
22051
+ "default3.handlebars->121->3043",
22052
"default3.handlebars->121->972"
22053
]
22054
},
@@ -22069,13 +22078,13 @@
22078
"zh-chs": "桌面提示+工具栏",
22079
"zh-cht": "桌面提示+工具欄",
22080
"xloc": [
22072
- "default.handlebars->121->2254",
22073
- "default.handlebars->121->2943",
22074
- "default.handlebars->121->3048",
22081
+ "default.handlebars->121->2259",
22082
+ "default.handlebars->121->2948",
22083
+ "default.handlebars->121->3053",
22084
"default.handlebars->121->979",
22076
- "default3.handlebars->121->2243",
22077
- "default3.handlebars->121->2931",
22078
- "default3.handlebars->121->3036",
22085
+ "default3.handlebars->121->2248",
22086
+ "default3.handlebars->121->2936",
22087
+ "default3.handlebars->121->3041",
22088
"default3.handlebars->121->970"
22089
]
22090
},
@@ -22105,8 +22114,8 @@
22114
"zh-chs": "桌面会话",
22115
"zh-cht": "桌面會話",
22116
"xloc": [
22108
- "default.handlebars->121->3204",
22109
- "default3.handlebars->121->3188"
22117
+ "default.handlebars->121->3209",
22118
+ "default3.handlebars->121->3193"
22119
]
22120
},
22121
{
@@ -22196,13 +22205,13 @@
22205
"zh-chs": "桌面工具栏",
22206
"zh-cht": "桌面工具欄",
22207
"xloc": [
22199
- "default.handlebars->121->2255",
22200
- "default.handlebars->121->2944",
22201
- "default.handlebars->121->3049",
22208
+ "default.handlebars->121->2260",
22209
+ "default.handlebars->121->2949",
22210
+ "default.handlebars->121->3054",
22211
"default.handlebars->121->980",
22203
- "default3.handlebars->121->2244",
22204
- "default3.handlebars->121->2932",
22205
- "default3.handlebars->121->3037",
22212
+ "default3.handlebars->121->2249",
22213
+ "default3.handlebars->121->2937",
22214
+ "default3.handlebars->121->3042",
22215
"default3.handlebars->121->971"
22216
]
22217
},
@@ -22232,8 +22241,8 @@
22241
"zh-chs": "仅桌面视图",
22242
"zh-cht": "僅桌面視圖",
22243
"xloc": [
22235
- "default.handlebars->121->3024",
22236
- "default3.handlebars->121->3012"
22244
+ "default.handlebars->121->3029",
22245
+ "default3.handlebars->121->3017"
22246
]
22247
},
22248
{
@@ -22389,12 +22398,12 @@
22398
"default-mobile.handlebars->55->567",
22399
"default.handlebars->121->1158",
22400
"default.handlebars->121->1183",
22392
- "default.handlebars->121->2474",
22401
+ "default.handlebars->121->2479",
22402
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
22403
"default.handlebars->contextMenu->cxdetails",
22404
"default3.handlebars->121->1147",
22405
"default3.handlebars->121->1172",
22397
- "default3.handlebars->121->2464",
22406
+ "default3.handlebars->121->2469",
22407
"default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
22408
"default3.handlebars->contextMenu->cxdetails"
22409
]
@@ -22455,22 +22464,22 @@
22464
"zh-chs": "设备",
22465
"zh-cht": "裝置",
22466
"xloc": [
22458
- "default-mobile.handlebars->55->797",
22459
- "default.handlebars->121->1645",
22460
- "default.handlebars->121->1892",
22461
- "default.handlebars->121->2411",
22467
+ "default-mobile.handlebars->55->802",
22468
+ "default.handlebars->121->1650",
22469
+ "default.handlebars->121->1897",
22470
+ "default.handlebars->121->2416",
22471
"default.handlebars->121->302",
22463
- "default.handlebars->121->3170",
22464
- "default.handlebars->121->3243",
22465
- "default.handlebars->121->3263",
22472
+ "default.handlebars->121->3175",
22473
+ "default.handlebars->121->3248",
22474
+ "default.handlebars->121->3268",
22475
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5",
22467
- "default3.handlebars->121->1625",
22468
- "default3.handlebars->121->1868",
22469
- "default3.handlebars->121->2401",
22476
+ "default3.handlebars->121->1630",
22477
+ "default3.handlebars->121->1873",
22478
+ "default3.handlebars->121->2406",
22479
"default3.handlebars->121->298",
22471
- "default3.handlebars->121->3152",
22472
- "default3.handlebars->121->3227",
22473
- "default3.handlebars->121->3247",
22480
+ "default3.handlebars->121->3157",
22481
+ "default3.handlebars->121->3232",
22482
+ "default3.handlebars->121->3252",
22483
"default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSort->sortselect->5"
22484
]
22485
},
@@ -22622,8 +22631,8 @@
22631
"zh-chs": "设备详情",
22632
"zh-cht": "設備詳情",
22633
"xloc": [
22625
- "default.handlebars->121->2435",
22626
- "default3.handlebars->121->2425"
22634
+ "default.handlebars->121->2440",
22635
+ "default3.handlebars->121->2430"
22636
]
22637
},
22638
{
@@ -22683,29 +22692,29 @@
22692
"zh-cht": "裝置群",
22693
"xloc": [
22694
"agent-translations.json",
22686
- "default-mobile.handlebars->55->1070",
22687
- "default.handlebars->121->2406",
22688
- "default.handlebars->121->2409",
22689
- "default.handlebars->121->2410",
22690
- "default.handlebars->121->2777",
22691
- "default.handlebars->121->2969",
22692
- "default.handlebars->121->2975",
22693
- "default.handlebars->121->3158",
22694
- "default.handlebars->121->3227",
22695
- "default.handlebars->121->3250",
22696
- "default.handlebars->121->3266",
22697
- "default.handlebars->121->3359",
22698
- "default3.handlebars->121->2396",
22699
- "default3.handlebars->121->2399",
22700
- "default3.handlebars->121->2400",
22701
- "default3.handlebars->121->2767",
22702
- "default3.handlebars->121->2957",
22703
- "default3.handlebars->121->2963",
22704
- "default3.handlebars->121->3140",
22705
- "default3.handlebars->121->3211",
22706
- "default3.handlebars->121->3234",
22707
- "default3.handlebars->121->3250",
22708
- "default3.handlebars->121->3343"
22695
+ "default-mobile.handlebars->55->1075",
22696
+ "default.handlebars->121->2411",
22697
+ "default.handlebars->121->2414",
22698
+ "default.handlebars->121->2415",
22699
+ "default.handlebars->121->2782",
22700
+ "default.handlebars->121->2974",
22701
+ "default.handlebars->121->2980",
22702
+ "default.handlebars->121->3163",
22703
+ "default.handlebars->121->3232",
22704
+ "default.handlebars->121->3255",
22705
+ "default.handlebars->121->3271",
22706
+ "default.handlebars->121->3364",
22707
+ "default3.handlebars->121->2401",
22708
+ "default3.handlebars->121->2404",
22709
+ "default3.handlebars->121->2405",
22710
+ "default3.handlebars->121->2772",
22711
+ "default3.handlebars->121->2962",
22712
+ "default3.handlebars->121->2968",
22713
+ "default3.handlebars->121->3145",
22714
+ "default3.handlebars->121->3216",
22715
+ "default3.handlebars->121->3239",
22716
+ "default3.handlebars->121->3255",
22717
+ "default3.handlebars->121->3348"
22718
]
22719
},
22720
{
@@ -22734,9 +22743,9 @@
22743
"zh-chs": "设备组用户",
22744
"zh-cht": "裝置群用戶",
22745
"xloc": [
22737
- "default-mobile.handlebars->55->1059",
22738
- "default.handlebars->121->2481",
22739
- "default3.handlebars->121->2471"
22746
+ "default-mobile.handlebars->55->1064",
22747
+ "default.handlebars->121->2486",
22748
+ "default3.handlebars->121->2476"
22749
]
22750
},
22751
{
@@ -22766,17 +22775,17 @@
22775
"zh-cht": "裝置群",
22776
"xloc": [
22777
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
22769
- "default.handlebars->121->2793",
22770
- "default.handlebars->121->2912",
22771
- "default.handlebars->121->2956",
22772
- "default.handlebars->121->3045",
22773
- "default.handlebars->121->3416",
22778
+ "default.handlebars->121->2798",
22779
+ "default.handlebars->121->2917",
22780
+ "default.handlebars->121->2961",
22781
+ "default.handlebars->121->3050",
22782
+ "default.handlebars->121->3421",
22783
"default.handlebars->container->column_l->p2->p2info->9",
22775
- "default3.handlebars->121->2783",
22776
- "default3.handlebars->121->2900",
22777
- "default3.handlebars->121->2944",
22778
- "default3.handlebars->121->3033",
22779
- "default3.handlebars->121->3400",
22784
+ "default3.handlebars->121->2788",
22785
+ "default3.handlebars->121->2905",
22786
+ "default3.handlebars->121->2949",
22787
+ "default3.handlebars->121->3038",
22788
+ "default3.handlebars->121->3405",
22789
"default3.handlebars->container->column_l->p2->p2info->9"
22790
]
22791
},
@@ -22898,11 +22907,11 @@
22907
"xloc": [
22908
"default-mobile.handlebars->55->626",
22909
"default.handlebars->121->1381",
22901
- "default.handlebars->121->3226",
22910
+ "default.handlebars->121->3231",
22911
"default.handlebars->121->532",
22912
"default.handlebars->121->541",
22913
"default3.handlebars->121->1361",
22905
- "default3.handlebars->121->3210",
22914
+ "default3.handlebars->121->3215",
22915
"default3.handlebars->121->523",
22916
"default3.handlebars->121->532",
22917
"player.handlebars->31->25"
@@ -22966,7 +22975,7 @@
22975
"zh-chs": "设备配对链接",
22976
"zh-cht": "設備配對鏈接",
22977
"xloc": [
22969
- "default-mobile.handlebars->55->1013"
22978
+ "default-mobile.handlebars->55->1018"
22979
]
22980
},
22981
{
@@ -22975,8 +22984,8 @@
22984
"nl": "Apparaat is ingeschakeld",
22985
"uk": "Пристрій Увімкнено",
22986
"xloc": [
22978
- "default.handlebars->121->2753",
22979
- "default3.handlebars->121->2743"
22987
+ "default.handlebars->121->2758",
22988
+ "default3.handlebars->121->2748"
22989
]
22990
},
22991
{
@@ -23005,8 +23014,8 @@
23014
"zh-chs": "设备推送",
23015
"zh-cht": "設備推送",
23016
"xloc": [
23008
- "default.handlebars->121->3065",
23009
- "default3.handlebars->121->3053"
23017
+ "default.handlebars->121->3070",
23018
+ "default3.handlebars->121->3058"
23019
]
23020
},
23021
{
@@ -23021,8 +23030,8 @@
23030
"pl": "Zapis Powiadomień Push Urządzenia",
23031
"uk": "Запис Push-Сповіщень Пристрою",
23032
"xloc": [
23024
- "default.handlebars->121->3329",
23025
- "default3.handlebars->121->3313"
23033
+ "default.handlebars->121->3334",
23034
+ "default3.handlebars->121->3318"
23035
]
23036
},
23037
{
@@ -23037,8 +23046,8 @@
23046
"pl": "Zapis SMBIOS urządzenia",
23047
"uk": "SMBIOS запис пристрою",
23048
"xloc": [
23040
- "default.handlebars->121->3328",
23041
- "default3.handlebars->121->3312"
23049
+ "default.handlebars->121->3333",
23050
+ "default3.handlebars->121->3317"
23051
]
23052
},
23053
{
@@ -23068,9 +23077,9 @@
23077
"zh-cht": "設備共享鏈接",
23078
"xloc": [
23079
"default.handlebars->121->1101",
23071
- "default.handlebars->121->2303",
23080
+ "default.handlebars->121->2308",
23081
"default3.handlebars->121->1092",
23073
- "default3.handlebars->121->2292"
23082
+ "default3.handlebars->121->2297"
23083
]
23084
},
23085
{
@@ -23198,17 +23207,17 @@
23207
"default.handlebars->121->1127",
23208
"default.handlebars->121->1131",
23209
"default.handlebars->121->1135",
23201
- "default.handlebars->121->2132",
23202
- "default.handlebars->121->2508",
23203
- "default.handlebars->121->2512",
23204
- "default.handlebars->121->2516",
23210
+ "default.handlebars->121->2137",
23211
+ "default.handlebars->121->2513",
23212
+ "default.handlebars->121->2517",
23213
+ "default.handlebars->121->2521",
23214
"default3.handlebars->121->1116",
23215
"default3.handlebars->121->1120",
23216
"default3.handlebars->121->1124",
23208
- "default3.handlebars->121->2109",
23209
- "default3.handlebars->121->2498",
23210
- "default3.handlebars->121->2502",
23211
- "default3.handlebars->121->2506"
23217
+ "default3.handlebars->121->2114",
23218
+ "default3.handlebars->121->2503",
23219
+ "default3.handlebars->121->2507",
23220
+ "default3.handlebars->121->2511"
23221
]
23222
},
23223
{
@@ -23240,17 +23249,17 @@
23249
"default.handlebars->121->1128",
23250
"default.handlebars->121->1132",
23251
"default.handlebars->121->1136",
23243
- "default.handlebars->121->2133",
23244
- "default.handlebars->121->2509",
23245
- "default.handlebars->121->2513",
23246
- "default.handlebars->121->2517",
23252
+ "default.handlebars->121->2138",
23253
+ "default.handlebars->121->2514",
23254
+ "default.handlebars->121->2518",
23255
+ "default.handlebars->121->2522",
23256
"default3.handlebars->121->1117",
23257
"default3.handlebars->121->1121",
23258
"default3.handlebars->121->1125",
23250
- "default3.handlebars->121->2110",
23251
- "default3.handlebars->121->2499",
23252
- "default3.handlebars->121->2503",
23253
- "default3.handlebars->121->2507"
23259
+ "default3.handlebars->121->2115",
23260
+ "default3.handlebars->121->2504",
23261
+ "default3.handlebars->121->2508",
This file is too large to show in full.
views/default-mobile.handlebars
+6
@@ -6508,6 +6508,12 @@
6508
const date = printDateTime(new Date(thedate.year, thedate.month, thedate.day, thedate.hours, thedate.minutes, thedate.seconds));
6509
x += addDetailItem("Last Boot Up Time", date);
6510
}
6511
+ if (hardware.linux && hardware.linux.arch) {
6512
+ var arch = hardware.linux.arch;
6513
+ x += addDetailItem("Architecture", (['x86_64','amd64'].includes(arch) ? "64-bit" : ['i686','x86','i586'].includes(arch) ? "32-bit" : EscapeHtml(arch)), s);
6514
+ }
6515
+ if (hardware.linux && hardware.linux.kernel_release) { x += addDetailItem("Kernel Release", EscapeHtml(hardware.linux.kernel_release), s); }
6516
+ if (hardware.linux && hardware.linux.kernel_build) { x += addDetailItem("Kernel Build", EscapeHtml(hardware.linux.kernel_build), s); }
6517
if(hardware.darwin && hardware.darwin.LastBootUpTime){
6518
var lastBootUpTime = new Date(hardware.darwin.LastBootUpTime * 1000); // must times by 1000 even tho timestamp is correct?
6519
var thedate = {
views/default.handlebars
+10
@@ -12361,6 +12361,16 @@
12361
const date = printDateTime(lastBootUpTime);
12362
x += addDetailItem("Last Boot Up Time", date);
12363
}
12364
+ if(hardware.linux && hardware.linux.kernel_release){
12365
+ x += addDetailItem("Kernel Release", EscapeHtml(hardware.linux.kernel_release), s);
12366
+ }
12367
+ if(hardware.linux && hardware.linux.kernel_build){
12368
+ x += addDetailItem("Kernel Build", EscapeHtml(hardware.linux.kernel_build), s);
12369
+ }
12370
+ if (hardware.linux && hardware.linux.arch) {
12371
+ var arch = hardware.linux.arch;
12372
+ x += addDetailItem("Architecture", (['x86_64','amd64'].includes(arch) ? "64-bit" : ['i686','x86','i586'].includes(arch) ? "32-bit" : EscapeHtml(arch)), s);
12373
+ }
12374
if (x != '') { sections.push({ name: "Operating System", html: x, img: 'software64.png'}); }
12375
12376
// MeshAgent
views/default3.handlebars
+6
@@ -13409,6 +13409,12 @@
13409
const date = printDateTime(lastBootUpTime);
13410
x += addDetailItem("Last Boot Up Time", date);
13411
}
13412
+ if (hardware.linux && hardware.linux.arch) {
13413
+ var arch = hardware.linux.arch;
13414
+ x += addDetailItem("Architecture", (['x86_64','amd64'].includes(arch) ? "64-bit" : ['i686','x86','i586'].includes(arch) ? "32-bit" : EscapeHtml(arch)), s);
13415
+ }
13416
+ if (hardware.linux && hardware.linux.kernel_release) { x += addDetailItem("Kernel Release", EscapeHtml(hardware.linux.kernel_release), s); }
13417
+ if (hardware.linux && hardware.linux.kernel_build) { x += addDetailItem("Kernel Build", EscapeHtml(hardware.linux.kernel_build), s); }
13418
if (hardware.darwin && hardware.darwin.LastBootUpTime) {
13419
var lastBootUpTime = new Date(hardware.darwin.LastBootUpTime * 1000); // must times by 1000 even tho timestamp is correct?
13420
const date = printDateTime(lastBootUpTime);