Added previous login view in My Users tab for administrators.
Ylian Saint-Hilaire committed
Feb 26, 2021 at 14:26 UTC
739c2820608eebdbd4046937bfb0bf064ae3fef9
4 files changed
+2642
-2602
meshuser.js
+22
-6
@@ -5385,12 +5385,28 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
5385
}
5386
case 'previousLogins': {
5387
// TODO: Make a better database call to get filtered data.
5388
- db.GetUserEvents([user._id], domain.id, user._id.split('/')[2], function (err, docs) {
5389
- if (err != null) return;
5390
- var e = [];
5391
- for (var i in docs) { if ((docs[i].msgArgs) && ((docs[i].action == 'authfail') || (docs[i].action == 'login'))) { e.push({ t: docs[i].time, m: docs[i].msgid, a: docs[i].msgArgs }); } }
5392
- try { ws.send(JSON.stringify({ action: 'previousLogins', events: e })); } catch (ex) { }
5393
- });
5388
+ if (command.userid == null) {
5389
+ // Get previous logins for self
5390
+ db.GetUserEvents([user._id], domain.id, user._id.split('/')[2], function (err, docs) {
5391
+ if (err != null) return;
5392
+ var e = [];
5393
+ for (var i in docs) { if ((docs[i].msgArgs) && ((docs[i].action == 'authfail') || (docs[i].action == 'login'))) { e.push({ t: docs[i].time, m: docs[i].msgid, a: docs[i].msgArgs }); } }
5394
+ try { ws.send(JSON.stringify({ action: 'previousLogins', events: e })); } catch (ex) { }
5395
+ });
5396
+ } else {
5397
+ // Get previous logins for specific userid
5398
+ if (user.siteadmin === SITERIGHT_ADMIN) {
5399
+ var splitUser = command.userid.split('/');
5400
+ if ((obj.crossDomain === true) || (splitUser[1] === domain.id)) {
5401
+ db.GetUserEvents([command.userid], splitUser[1], splitUser[2], function (err, docs) {
5402
+ if (err != null) return;
5403
+ var e = [];
5404
+ for (var i in docs) { if ((docs[i].msgArgs) && ((docs[i].action == 'authfail') || (docs[i].action == 'login'))) { e.push({ t: docs[i].time, m: docs[i].msgid, a: docs[i].msgArgs }); } }
5405
+ try { ws.send(JSON.stringify({ action: 'previousLogins', userid: command.userid, events: e })); } catch (ex) { }
5406
+ });
5407
+ }
5408
+ }
5409
+ }
5410
break;
5411
}
5412
default: {
translate/translate.json
+2599
-2589
@@ -17,8 +17,8 @@
17
"zh-chs": " + CIRA",
18
"zh-cht": " + CIRA",
19
"xloc": [
20
- "default.handlebars->31->1469",
21
- "default.handlebars->31->1471"
20
+ "default.handlebars->31->1470",
21
+ "default.handlebars->31->1472"
22
]
23
},
24
{
@@ -204,7 +204,7 @@
204
"zh-chs": " 可以使用密码提示,但不建议使用。",
205
"zh-cht": " 可以使用密碼提示,但不建議使用。",
206
"xloc": [
207
- "default.handlebars->31->1382"
207
+ "default.handlebars->31->1383"
208
]
209
},
210
{
@@ -224,8 +224,8 @@
224
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226
"xloc": [
227
- "default.handlebars->31->1546",
228
- "default.handlebars->31->2028"
227
+ "default.handlebars->31->1547",
228
+ "default.handlebars->31->2029"
229
]
230
},
231
{
@@ -279,7 +279,7 @@
279
"zh-chs": " 节点",
280
"zh-cht": " 節點",
281
"xloc": [
282
- "default-mobile.handlebars->11->238"
282
+ "default-mobile.handlebars->11->239"
283
]
284
},
285
{
@@ -299,7 +299,7 @@
299
"zh-chs": " 节点",
300
"zh-cht": " 節點",
301
"xloc": [
302
- "default-mobile.handlebars->11->239"
302
+ "default-mobile.handlebars->11->240"
303
]
304
},
305
{
@@ -395,7 +395,7 @@
395
"zh-chs": "(可选的)",
396
"zh-cht": "(可選的)",
397
"xloc": [
398
- "default.handlebars->31->365"
398
+ "default.handlebars->31->366"
399
]
400
},
401
{
@@ -432,8 +432,8 @@
432
"zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。",
433
"zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
434
"xloc": [
435
- "default.handlebars->31->1515",
436
- "default.handlebars->31->331"
435
+ "default.handlebars->31->1516",
436
+ "default.handlebars->31->332"
437
]
438
},
439
{
@@ -453,7 +453,7 @@
453
"zh-chs": "*对于BSD,首先运行“ pkg install wget sudo bash ”。",
454
"zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
455
"xloc": [
456
- "default.handlebars->31->405"
456
+ "default.handlebars->31->406"
457
]
458
},
459
{
@@ -507,8 +507,8 @@
507
"zh-chs": ",",
508
"zh-cht": ",",
509
"xloc": [
510
- "default-mobile.handlebars->11->575",
511
- "default.handlebars->31->1617"
510
+ "default-mobile.handlebars->11->576",
511
+ "default.handlebars->31->1618"
512
]
513
},
514
{
@@ -528,8 +528,8 @@
528
"zh-chs": ",仅限于Intel®AMT",
529
"zh-cht": ",只適用於Intel®AMT",
530
"xloc": [
531
- "default-mobile.handlebars->11->176",
532
- "default.handlebars->31->230"
531
+ "default-mobile.handlebars->11->177",
532
+ "default.handlebars->31->231"
533
]
534
},
535
{
@@ -549,8 +549,8 @@
549
"zh-chs": ",MQTT在线",
550
"zh-cht": ",MQTT在線",
551
"xloc": [
552
- "default-mobile.handlebars->11->492",
553
- "default.handlebars->31->1120"
552
+ "default-mobile.handlebars->11->493",
553
+ "default.handlebars->31->1121"
554
]
555
},
556
{
@@ -558,7 +558,7 @@
558
"fr": ", Pas de consentement",
559
"nl": ", Geen toestemming",
560
"xloc": [
561
- "default.handlebars->31->728"
561
+ "default.handlebars->31->729"
562
]
563
},
564
{
@@ -578,7 +578,7 @@
578
"zh-chs": ",提示同意",
579
"zh-cht": ",提示同意",
580
"xloc": [
581
- "default.handlebars->31->729"
581
+ "default.handlebars->31->730"
582
]
583
},
584
{
@@ -598,7 +598,7 @@
598
"zh-chs": ",软体KVM",
599
"zh-cht": ",軟體KVM",
600
"xloc": [
601
- "default.handlebars->31->903",
601
+ "default.handlebars->31->904",
602
"desktop.handlebars->3->12"
603
]
604
},
@@ -607,7 +607,7 @@
607
"fr": ", barre d'outils",
608
"nl": ", Werkbalk",
609
"xloc": [
610
- "default.handlebars->31->730"
610
+ "default.handlebars->31->731"
611
]
612
},
613
{
@@ -615,7 +615,7 @@
615
"nl": ", Alleen kijken",
616
"fr": ", Visualisation seulement",
617
"xloc": [
618
- "default.handlebars->31->727"
618
+ "default.handlebars->31->728"
619
]
620
},
621
{
@@ -635,11 +635,11 @@
635
"zh-chs": ",WebRTC",
636
"zh-cht": ",WebRTC",
637
"xloc": [
638
- "default-mobile.handlebars->11->333",
639
- "default-mobile.handlebars->11->366",
640
- "default.handlebars->31->910",
641
- "default.handlebars->31->971",
642
- "default.handlebars->31->983",
638
+ "default-mobile.handlebars->11->334",
639
+ "default-mobile.handlebars->11->367",
640
+ "default.handlebars->31->911",
641
+ "default.handlebars->31->972",
642
+ "default.handlebars->31->984",
643
"desktop.handlebars->3->19",
644
"terminal.handlebars->3->9",
645
"xterm.handlebars->9->6"
@@ -762,7 +762,7 @@
762
"zh-chs": ",{0}观看",
763
"zh-cht": ",{0}觀看",
764
"xloc": [
765
- "default.handlebars->31->904",
765
+ "default.handlebars->31->905",
766
"desktop.handlebars->3->13"
767
]
768
},
@@ -825,11 +825,11 @@
825
"zh-chs": "...",
826
"zh-cht": "...",
827
"xloc": [
828
- "default-mobile.handlebars->11->129",
829
- "default-mobile.handlebars->11->368",
830
- "default.handlebars->31->1669",
831
- "default.handlebars->31->2187",
832
- "default.handlebars->31->989"
828
+ "default-mobile.handlebars->11->130",
829
+ "default-mobile.handlebars->11->369",
830
+ "default.handlebars->31->1670",
831
+ "default.handlebars->31->2192",
832
+ "default.handlebars->31->990"
833
]
834
},
835
{
@@ -886,7 +886,7 @@
886
"zh-chs": "1个活跃时段",
887
"zh-cht": "1個活躍時段",
888
"xloc": [
889
- "default.handlebars->31->2099"
889
+ "default.handlebars->31->2102"
890
]
891
},
892
{
@@ -906,9 +906,9 @@
906
"zh-chs": "1个字节",
907
"zh-cht": "1個位元組",
908
"xloc": [
909
- "default-mobile.handlebars->11->139",
910
- "default-mobile.handlebars->11->618",
911
- "default.handlebars->31->1693",
909
+ "default-mobile.handlebars->11->140",
910
+ "default-mobile.handlebars->11->619",
911
+ "default.handlebars->31->1694",
912
"download.handlebars->3->1",
913
"download2.handlebars->5->1"
914
]
@@ -930,7 +930,7 @@
930
"zh-chs": "1条连接",
931
"zh-cht": "1位聯絡文",
932
"xloc": [
933
- "default.handlebars->31->906",
933
+ "default.handlebars->31->907",
934
"desktop.handlebars->3->15"
935
]
936
},
@@ -952,8 +952,8 @@
952
"zh-cht": "1天",
953
"xloc": [
954
"default.handlebars->31->196",
955
- "default.handlebars->31->356",
956
- "default.handlebars->31->370"
955
+ "default.handlebars->31->357",
956
+ "default.handlebars->31->371"
957
]
958
},
959
{
@@ -973,7 +973,7 @@
973
"zh-chs": "1组",
974
"zh-cht": "1群",
975
"xloc": [
976
- "default.handlebars->31->2062"
976
+ "default.handlebars->31->2063"
977
]
978
},
979
{
@@ -994,8 +994,8 @@
994
"zh-cht": "1小時",
995
"xloc": [
996
"default.handlebars->31->194",
997
- "default.handlebars->31->354",
998
- "default.handlebars->31->368"
997
+ "default.handlebars->31->355",
998
+ "default.handlebars->31->369"
999
]
1000
},
1001
{
@@ -1015,7 +1015,7 @@
1015
"zh-chs": "1分钟",
1016
"zh-cht": "1分鐘",
1017
"xloc": [
1018
- "default.handlebars->31->786"
1018
+ "default.handlebars->31->787"
1019
]
1020
},
1021
{
@@ -1056,8 +1056,8 @@
1056
"zh-cht": "1個月",
1057
"xloc": [
1058
"default.handlebars->31->198",
1059
- "default.handlebars->31->358",
1060
- "default.handlebars->31->372"
1059
+ "default.handlebars->31->359",
1060
+ "default.handlebars->31->373"
1061
]
1062
},
1063
{
@@ -1077,7 +1077,7 @@
1077
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1078
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1079
"xloc": [
1080
- "default.handlebars->31->1852"
1080
+ "default.handlebars->31->1853"
1081
]
1082
},
1083
{
@@ -1097,7 +1097,7 @@
1097
"zh-chs": "1个节点",
1098
"zh-cht": "1個節點",
1099
"xloc": [
1100
- "default.handlebars->31->427"
1100
+ "default.handlebars->31->428"
1101
]
1102
},
1103
{
@@ -1137,19 +1137,19 @@
1137
"zh-chs": "1节",
1138
"zh-cht": "1節",
1139
"xloc": [
1140
- "default-mobile.handlebars->11->192",
1141
- "default-mobile.handlebars->11->195",
1142
- "default-mobile.handlebars->11->198",
1143
- "default-mobile.handlebars->11->201",
1144
- "default-mobile.handlebars->11->204",
1145
- "default-mobile.handlebars->11->207",
1146
- "default.handlebars->31->1856",
1147
- "default.handlebars->31->276",
1148
- "default.handlebars->31->279",
1149
- "default.handlebars->31->282",
1150
- "default.handlebars->31->285",
1151
- "default.handlebars->31->288",
1152
- "default.handlebars->31->291"
1140
+ "default-mobile.handlebars->11->193",
1141
+ "default-mobile.handlebars->11->196",
1142
+ "default-mobile.handlebars->11->199",
1143
+ "default-mobile.handlebars->11->202",
1144
+ "default-mobile.handlebars->11->205",
1145
+ "default-mobile.handlebars->11->208",
1146
+ "default.handlebars->31->1857",
1147
+ "default.handlebars->31->277",
1148
+ "default.handlebars->31->280",
1149
+ "default.handlebars->31->283",
1150
+ "default.handlebars->31->286",
1151
+ "default.handlebars->31->289",
1152
+ "default.handlebars->31->292"
1153
]
1154
},
1155
{
@@ -1170,8 +1170,8 @@
1170
"zh-cht": "1週",
1171
"xloc": [
1172
"default.handlebars->31->197",
1173
- "default.handlebars->31->357",
1174
- "default.handlebars->31->371"
1173
+ "default.handlebars->31->358",
1174
+ "default.handlebars->31->372"
1175
]
1176
},
1177
{
@@ -1275,7 +1275,7 @@
1275
"zh-chs": "10分钟",
1276
"zh-cht": "10分鐘",
1277
"xloc": [
1278
- "default.handlebars->31->788"
1278
+ "default.handlebars->31->789"
1279
]
1280
},
1281
{
@@ -1358,7 +1358,7 @@
1358
"zh-chs": "12小时",
1359
"zh-cht": "12小時",
1360
"xloc": [
1361
- "default.handlebars->31->796"
1361
+ "default.handlebars->31->797"
1362
]
1363
},
1364
{
@@ -1400,7 +1400,7 @@
1400
"zh-chs": "15分钟",
1401
"zh-cht": "15分鐘",
1402
"xloc": [
1403
- "default.handlebars->31->789"
1403
+ "default.handlebars->31->790"
1404
]
1405
},
1406
{
@@ -1420,7 +1420,7 @@
1420
"zh-chs": "16小时",
1421
"zh-cht": "16小時",
1422
"xloc": [
1423
- "default.handlebars->31->797"
1423
+ "default.handlebars->31->798"
1424
]
1425
},
1426
{
@@ -1440,7 +1440,7 @@
1440
"zh-chs": "2天",
1441
"zh-cht": "2天",
1442
"xloc": [
1443
- "default.handlebars->31->799"
1443
+ "default.handlebars->31->800"
1444
]
1445
},
1446
{
@@ -1460,7 +1460,7 @@
1460
"zh-chs": "2小时",
1461
"zh-cht": "2小時",
1462
"xloc": [
1463
- "default.handlebars->31->793"
1463
+ "default.handlebars->31->794"
1464
]
1465
},
1466
{
@@ -1564,7 +1564,7 @@
1564
"zh-chs": "24小时",
1565
"zh-cht": "24小時",
1566
"xloc": [
1567
- "default.handlebars->31->798"
1567
+ "default.handlebars->31->799"
1568
]
1569
},
1570
{
@@ -1626,7 +1626,7 @@
1626
"zh-chs": "2FA备份代码已清除",
1627
"zh-cht": "2FA備份代碼已清除",
1628
"xloc": [
1629
- "default.handlebars->31->1804"
1629
+ "default.handlebars->31->1805"
1630
]
1631
},
1632
{
@@ -1646,8 +1646,8 @@
1646
"zh-chs": "启用第二因素身份验证",
1647
"zh-cht": "啟用第二因素身份驗證",
1648
"xloc": [
1649
- "default.handlebars->31->1869",
1650
- "default.handlebars->31->2084"
1649
+ "default.handlebars->31->1870",
1650
+ "default.handlebars->31->2085"
1651
]
1652
},
1653
{
@@ -1683,7 +1683,7 @@
1683
"pt": "3",
1684
"ru": "3",
1685
"xloc": [
1686
- "default-mobile.handlebars->11->394"
1686
+ "default-mobile.handlebars->11->395"
1687
]
1688
},
1689
{
@@ -1766,7 +1766,7 @@
1766
"zh-chs": "30分钟",
1767
"zh-cht": "30分鐘",
1768
"xloc": [
1769
- "default.handlebars->31->790"
1769
+ "default.handlebars->31->791"
1770
]
1771
},
1772
{
@@ -1786,8 +1786,8 @@
1786
"zh-chs": "MeshAgent的32位版本",
1787
"zh-cht": "MeshAgent的32位版本",
1788
"xloc": [
1789
- "default.handlebars->31->395",
1790
- "default.handlebars->31->414"
1789
+ "default.handlebars->31->396",
1790
+ "default.handlebars->31->415"
1791
]
1792
},
1793
{
@@ -1829,7 +1829,7 @@
1829
"zh-chs": "4天",
1830
"zh-cht": "4天",
1831
"xloc": [
1832
- "default.handlebars->31->800"
1832
+ "default.handlebars->31->801"
1833
]
1834
},
1835
{
@@ -1849,7 +1849,7 @@
1849
"zh-chs": "4个小时",
1850
"zh-cht": "4個小時",
1851
"xloc": [
1852
- "default.handlebars->31->794"
1852
+ "default.handlebars->31->795"
1853
]
1854
},
1855
{
@@ -1932,7 +1932,7 @@
1932
"zh-chs": "45分钟",
1933
"zh-cht": "45分鐘",
1934
"xloc": [
1935
- "default.handlebars->31->791"
1935
+ "default.handlebars->31->792"
1936
]
1937
},
1938
{
@@ -1972,7 +1972,7 @@
1972
"zh-chs": "5分钟",
1973
"zh-cht": "5分鐘",
1974
"xloc": [
1975
- "default.handlebars->31->787"
1975
+ "default.handlebars->31->788"
1976
]
1977
},
1978
{
@@ -2098,7 +2098,7 @@
2098
"zh-chs": "60分钟",
2099
"zh-cht": "60分鐘",
2100
"xloc": [
2101
- "default.handlebars->31->792"
2101
+ "default.handlebars->31->793"
2102
]
2103
},
2104
{
@@ -2140,7 +2140,7 @@
2140
"zh-chs": "64位版本的macOS Mesh Agent",
2141
"zh-cht": "64位版本的macOS Mesh Agent",
2142
"xloc": [
2143
- "default.handlebars->31->408"
2143
+ "default.handlebars->31->409"
2144
]
2145
},
2146
{
@@ -2160,8 +2160,8 @@
2160
"zh-chs": "MeshAgent的64位版本",
2161
"zh-cht": "MeshAgent的64位版本",
2162
"xloc": [
2163
- "default.handlebars->31->399",
2164
- "default.handlebars->31->417"
2163
+ "default.handlebars->31->400",
2164
+ "default.handlebars->31->418"
2165
]
2166
},
2167
{
@@ -2218,7 +2218,7 @@
2218
"zh-chs": "7天电源状态",
2219
"zh-cht": "7天電源狀態",
2220
"xloc": [
2221
- "default.handlebars->31->831"
2221
+ "default.handlebars->31->832"
2222
]
2223
},
2224
{
@@ -2281,9 +2281,9 @@
2281
"zh-chs": "8小時",
2282
"zh-cht": "8小時",
2283
"xloc": [
2284
- "default.handlebars->31->355",
2285
- "default.handlebars->31->369",
2286
- "default.handlebars->31->795"
2284
+ "default.handlebars->31->356",
2285
+ "default.handlebars->31->370",
2286
+ "default.handlebars->31->796"
2287
]
2288
},
2289
{
@@ -2354,7 +2354,7 @@
2354
"nl": "</div><div><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://play.google.com/store/apps/details?id=com.meshcentral.agent2\\\"><img style=margin-top:20px;margin-left:5px;cursor:pointer width=40 height=40 src=\\\"images/android-40.png\\\" srcset=\\\"images/android-80.png 2x\\\" /></a></div></div>",
2355
"fr": "</div><div><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://play.google.com/store/apps/details?id=com.meshcentral.agent2\\\"><img style=margin-top:20px;margin-left:5px;cursor:pointer width=40 height=40 src=\\\"images/android-40.png\\\" srcset=\\\"images/android-80.png 2x\\\" /></a></div></div>",
2356
"xloc": [
2357
- "default.handlebars->31->411"
2357
+ "default.handlebars->31->412"
2358
]
2359
},
2360
{
@@ -2514,9 +2514,9 @@
2514
"zh-chs": "ACM",
2515
"zh-cht": "ACM",
2516
"xloc": [
2517
- "default-mobile.handlebars->11->265",
2518
- "default.handlebars->31->1485",
2519
- "default.handlebars->31->603"
2517
+ "default-mobile.handlebars->11->266",
2518
+ "default.handlebars->31->1486",
2519
+ "default.handlebars->31->604"
2520
]
2521
},
2522
{
@@ -2570,8 +2570,8 @@
2570
"zh-chs": "AMT",
2571
"zh-cht": "AMT",
2572
"xloc": [
2573
- "default.handlebars->31->266",
2574
- "default.handlebars->31->455"
2573
+ "default.handlebars->31->267",
2574
+ "default.handlebars->31->456"
2575
]
2576
},
2577
{
@@ -2684,10 +2684,10 @@
2684
"nl": "Anti-virus",
2685
"fr": "Antivirus",
2686
"xloc": [
2687
- "default-mobile.handlebars->11->404",
2688
- "default-mobile.handlebars->11->406",
2689
- "default.handlebars->31->622",
2690
- "default.handlebars->31->624"
2687
+ "default-mobile.handlebars->11->405",
2688
+ "default-mobile.handlebars->11->407",
2689
+ "default.handlebars->31->623",
2690
+ "default.handlebars->31->625"
2691
]
2692
},
2693
{
@@ -2707,8 +2707,8 @@
2707
"zh-chs": "拒绝访问",
2708
"zh-cht": "拒絕存取",
2709
"xloc": [
2710
- "default-mobile.handlebars->11->493",
2711
- "default.handlebars->31->1121"
2710
+ "default-mobile.handlebars->11->494",
2711
+ "default.handlebars->31->1122"
2712
]
2713
},
2714
{
@@ -2750,7 +2750,7 @@
2750
"zh-chs": "访问服务器档案",
2751
"zh-cht": "存取伺服器檔案",
2752
"xloc": [
2753
- "default.handlebars->31->2034"
2753
+ "default.handlebars->31->2035"
2754
]
2755
},
2756
{
@@ -2834,16 +2834,16 @@
2834
"zh-chs": "账户安全",
2835
"zh-cht": "帳號安全",
2836
"xloc": [
2837
- "default-mobile.handlebars->11->114",
2838
- "default-mobile.handlebars->11->116",
2839
- "default-mobile.handlebars->11->240",
2840
- "default-mobile.handlebars->11->242",
2837
+ "default-mobile.handlebars->11->115",
2838
+ "default-mobile.handlebars->11->117",
2839
+ "default-mobile.handlebars->11->241",
2840
+ "default-mobile.handlebars->11->243",
2841
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2842
- "default.handlebars->31->1391",
2843
- "default.handlebars->31->1393",
2844
- "default.handlebars->31->2301",
2845
- "default.handlebars->31->572",
2846
- "default.handlebars->31->574"
2842
+ "default.handlebars->31->1392",
2843
+ "default.handlebars->31->1394",
2844
+ "default.handlebars->31->2306",
2845
+ "default.handlebars->31->573",
2846
+ "default.handlebars->31->575"
2847
]
2848
},
2849
{
@@ -2851,8 +2851,8 @@
2851
"nl": "Account instellingen",
2852
"fr": "Paramètres du compte",
2853
"xloc": [
2854
- "default-mobile.handlebars->11->586",
2855
- "default.handlebars->31->2195"
2854
+ "default-mobile.handlebars->11->587",
2855
+ "default.handlebars->31->2200"
2856
]
2857
},
2858
{
@@ -2913,7 +2913,7 @@
2913
"zh-chs": "帐户已更改:{0}",
2914
"zh-cht": "帳戶已更改:{0}",
2915
"xloc": [
2916
- "default.handlebars->31->1777"
2916
+ "default.handlebars->31->1778"
2917
]
2918
},
2919
{
@@ -2933,7 +2933,7 @@
2933
"zh-chs": "创建帐户,电子邮件为{0}",
2934
"zh-cht": "創建帳戶,電子郵件為{0}",
2935
"xloc": [
2936
- "default.handlebars->31->1776"
2936
+ "default.handlebars->31->1777"
2937
]
2938
},
2939
{
@@ -2953,7 +2953,7 @@
2953
"zh-chs": "创建帐户,用户名是{0}",
2954
"zh-cht": "帳戶已創建,用戶名是{0}",
2955
"xloc": [
2956
- "default.handlebars->31->1775"
2956
+ "default.handlebars->31->1776"
2957
]
2958
},
2959
{
@@ -2973,8 +2973,8 @@
2973
"zh-chs": "帐户已被锁定",
2974
"zh-cht": "帳戶已被鎖定",
2975
"xloc": [
2976
- "default.handlebars->31->1871",
2977
- "default.handlebars->31->2031"
2976
+ "default.handlebars->31->1872",
2977
+ "default.handlebars->31->2032"
2978
]
2979
},
2980
{
@@ -2994,8 +2994,8 @@
2994
"zh-chs": "达到帐户限制。",
2995
"zh-cht": "達到帳戶限制。",
2996
"xloc": [
2997
- "default-mobile.handlebars->11->598",
2998
- "default.handlebars->31->2207",
2997
+ "default-mobile.handlebars->11->599",
2998
+ "default.handlebars->31->2212",
2999
"login-mobile.handlebars->5->6",
3000
"login.handlebars->5->6",
3001
"login2.handlebars->7->7"
@@ -3040,14 +3040,14 @@
3040
"zh-chs": "帐号登录",
3041
"zh-cht": "帳號登錄",
3042
"xloc": [
3043
- "default.handlebars->31->1712"
3043
+ "default.handlebars->31->1713"
3044
]
3045
},
3046
{
3047
"en": "Account login from {0}, {1}, {2}",
3048
"nl": "Account aanmelding van {0}, {1}, {2}",
3049
"xloc": [
3050
- "default.handlebars->31->1818"
3050
+ "default.handlebars->31->1819"
3051
]
3052
},
3053
{
@@ -3067,7 +3067,7 @@
3067
"zh-chs": "帐户登出",
3068
"zh-cht": "帳戶登出",
3069
"xloc": [
3070
- "default.handlebars->31->1713"
3070
+ "default.handlebars->31->1714"
3071
]
3072
},
3073
{
@@ -3109,7 +3109,7 @@
3109
"zh-chs": "帐户密码已更改:{0}",
3110
"zh-cht": "帳戶密碼已更改:{0}",
3111
"xloc": [
3112
- "default.handlebars->31->1785"
3112
+ "default.handlebars->31->1786"
3113
]
3114
},
3115
{
@@ -3129,7 +3129,7 @@
3129
"zh-chs": "帐户已删除",
3130
"zh-cht": "帳戶已刪除",
3131
"xloc": [
3132
- "default.handlebars->31->1774"
3132
+ "default.handlebars->31->1775"
3133
]
3134
},
3135
{
@@ -3169,8 +3169,8 @@
3169
"zh-chs": "指令",
3170
"zh-cht": "指令",
3171
"xloc": [
3172
- "default-mobile.handlebars->11->499",
3173
- "default.handlebars->31->1127",
3172
+ "default-mobile.handlebars->11->500",
3173
+ "default.handlebars->31->1128",
3174
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
3175
]
3176
},
@@ -3191,8 +3191,8 @@
3191
"zh-chs": "动作档案",
3192
"zh-cht": "動作檔案",
3193
"xloc": [
3194
- "default.handlebars->31->877",
3195
- "default.handlebars->31->879"
3194
+ "default.handlebars->31->878",
3195
+ "default.handlebars->31->880"
3196
]
3197
},
3198
{
@@ -3212,10 +3212,10 @@
3212
"zh-chs": "动作",
3213
"zh-cht": "動作",
3214
"xloc": [
3215
- "default-mobile.handlebars->11->288",
3215
+ "default-mobile.handlebars->11->289",
3216
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
3217
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
3218
- "default.handlebars->31->665",
3218
+ "default.handlebars->31->666",
3219
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
3220
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
3221
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -3238,7 +3238,7 @@
3238
"zh-chs": "使用FAT格式的USB密钥在管理控制模式(ACM)中激活英特尔®AMT。将setup.bin放在其上,然后使用此键引导一台或多台计算机。",
3239
"zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾®AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
3240
"xloc": [
3241
- "default.handlebars->31->326"
3241
+ "default.handlebars->31->327"
3242
]
3243
},
3244
{
@@ -3298,7 +3298,7 @@
3298
"zh-chs": "如果ACM失败,则激活到CCM",
3299
"zh-cht": "如果ACM失敗,則激活到CCM",
3300
"xloc": [
3301
- "default.handlebars->31->1506"
3301
+ "default.handlebars->31->1507"
3302
]
3303
},
3304
{
@@ -3318,12 +3318,12 @@
3318
"zh-chs": "已激活",
3319
"zh-cht": "已啟動",
3320
"xloc": [
3321
- "default-mobile.handlebars->11->260",
3322
- "default-mobile.handlebars->11->262",
3323
- "default-mobile.handlebars->11->455",
3324
- "default.handlebars->31->1082",
3325
- "default.handlebars->31->596",
3326
- "default.handlebars->31->598"
3321
+ "default-mobile.handlebars->11->261",
3322
+ "default-mobile.handlebars->11->263",
3323
+ "default-mobile.handlebars->11->456",
3324
+ "default.handlebars->31->1083",
3325
+ "default.handlebars->31->597",
3326
+ "default.handlebars->31->599"
3327
]
3328
},
3329
{
@@ -3363,7 +3363,7 @@
3363
"zh-chs": "主动设备共享",
3364
"zh-cht": "主動設備共享",
3365
"xloc": [
3366
- "default.handlebars->31->721"
3366
+ "default.handlebars->31->722"
3367
]
3368
},
3369
{
@@ -3388,8 +3388,8 @@
3388
"fr": "Ajouter",
3389
"nl": "Toevoegen",
3390
"xloc": [
3391
- "default-mobile.handlebars->11->359",
3392
- "default.handlebars->31->940"
3391
+ "default-mobile.handlebars->11->360",
3392
+ "default.handlebars->31->941"
3393
]
3394
},
3395
{
@@ -3409,8 +3409,8 @@
3409
"zh-chs": "添加代理",
3410
"zh-cht": "新增代理",
3411
"xloc": [
3412
- "default.handlebars->31->1481",
3413
- "default.handlebars->31->309"
3412
+ "default.handlebars->31->1482",
3413
+ "default.handlebars->31->310"
3414
]
3415
},
3416
{
@@ -3447,8 +3447,8 @@
3447
"zh-chs": "添加设备",
3448
"zh-cht": "新增裝置",
3449
"xloc": [
3450
- "default.handlebars->31->2008",
3451
- "default.handlebars->31->2134"
3450
+ "default.handlebars->31->2009",
3451
+ "default.handlebars->31->2139"
3452
]
3453
},
3454
{
@@ -3468,7 +3468,7 @@
3468
"zh-chs": "添加设备日志",
3469
"zh-cht": "新增裝置日誌",
3470
"xloc": [
3471
- "default.handlebars->31->772"
3471
+ "default.handlebars->31->773"
3472
]
3473
},
3474
{
@@ -3488,10 +3488,10 @@
3488
"zh-chs": "添加设备组",
3489
"zh-cht": "新增裝置群",
3490
"xloc": [
3491
- "default.handlebars->31->1581",
3492
- "default.handlebars->31->2002",
3493
- "default.handlebars->31->2122",
3494
- "default.handlebars->31->246"
3491
+ "default.handlebars->31->1582",
3492
+ "default.handlebars->31->2003",
3493
+ "default.handlebars->31->2127",
3494
+ "default.handlebars->31->247"
3495
]
3496
},
3497
{
@@ -3511,7 +3511,7 @@
3511
"zh-chs": "添加设备组权限",
3512
"zh-cht": "新增裝置群權限",
3513
"xloc": [
3514
- "default.handlebars->31->1578"
3514
+ "default.handlebars->31->1579"
3515
]
3516
},
3517
{
@@ -3531,8 +3531,8 @@
3531
"zh-chs": "添加设备权限",
3532
"zh-cht": "新增裝置權限",
3533
"xloc": [
3534
- "default.handlebars->31->1583",
3535
- "default.handlebars->31->1585"
3534
+ "default.handlebars->31->1584",
3535
+ "default.handlebars->31->1586"
3536
]
3537
},
3538
{
@@ -3569,7 +3569,7 @@
3569
"zh-chs": "添加英特尔®AMT设备",
3570
"zh-cht": "新增Intel® AMT裝置",
3571
"xloc": [
3572
- "default.handlebars->31->322"
3572
+ "default.handlebars->31->323"
3573
]
3574
},
3575
{
@@ -3609,7 +3609,7 @@
3609
"zh-chs": "添加本地",
3610
"zh-cht": "新增本地",
3611
"xloc": [
3612
- "default.handlebars->31->303"
3612
+ "default.handlebars->31->304"
3613
]
3614
},
3615
{
@@ -3629,7 +3629,7 @@
3629
"zh-chs": "添加成员身份",
3630
"zh-cht": "新增成員身份",
3631
"xloc": [
3632
- "default.handlebars->31->2154"
3632
+ "default.handlebars->31->2159"
3633
]
3634
},
3635
{
@@ -3649,7 +3649,7 @@
3649
"zh-chs": "添加 Mesh Agent",
3650
"zh-cht": "新增 Mesh Agent",
3651
"xloc": [
3652
- "default.handlebars->31->426"
3652
+ "default.handlebars->31->427"
3653
]
3654
},
3655
{
@@ -3669,8 +3669,8 @@
3669
"zh-chs": "添加安全密钥",
3670
"zh-cht": "新增安全密鑰",
3671
"xloc": [
3672
- "default.handlebars->31->1158",
3672
"default.handlebars->31->1159",
3673
+ "default.handlebars->31->1160",
3674
"default.handlebars->31->164",
3675
"default.handlebars->31->166",
3676
"default.handlebars->31->169",
@@ -3694,8 +3694,8 @@
3694
"zh-chs": "添加用户",
3695
"zh-cht": "新增用戶",
3696
"xloc": [
3697
- "default-mobile.handlebars->11->515",
3698
- "default.handlebars->31->713"
3697
+ "default-mobile.handlebars->11->516",
3698
+ "default.handlebars->31->714"
3699
]
3700
},
3701
{
@@ -3715,7 +3715,7 @@
3715
"zh-chs": "添加用户设备权限",
3716
"zh-cht": "新增用戶裝置權限",
3717
"xloc": [
3718
- "default.handlebars->31->1588"
3718
+ "default.handlebars->31->1589"
3719
]
3720
},
3721
{
@@ -3735,10 +3735,10 @@
3735
"zh-chs": "添加用户组",
3736
"zh-cht": "新增用戶群",
3737
"xloc": [
3738
- "default.handlebars->31->1477",
3739
- "default.handlebars->31->1580",
3740
- "default.handlebars->31->2128",
3741
- "default.handlebars->31->714"
3738
+ "default.handlebars->31->1478",
3739
+ "default.handlebars->31->1581",
3740
+ "default.handlebars->31->2133",
3741
+ "default.handlebars->31->715"
3742
]
3743
},
3744
{
@@ -3758,7 +3758,7 @@
3758
"zh-chs": "添加用户组设备权限",
3759
"zh-cht": "新增用戶群裝置權限",
3760
"xloc": [
3761
- "default.handlebars->31->1590"
3761
+ "default.handlebars->31->1591"
3762
]
3763
},
3764
{
@@ -3778,7 +3778,7 @@
3778
"zh-chs": "将用户添加到设备组",
3779
"zh-cht": "將用戶新增到裝置群",
3780
"xloc": [
3781
- "default-mobile.handlebars->11->551"
3781
+ "default-mobile.handlebars->11->552"
3782
]
3783
},
3784
{
@@ -3815,8 +3815,8 @@
3815
"zh-chs": "添加用户",
3816
"zh-cht": "新增用戶",
3817
"xloc": [
3818
- "default.handlebars->31->1476",
3819
- "default.handlebars->31->1997"
3818
+ "default.handlebars->31->1477",
3819
+ "default.handlebars->31->1998"
3820
]
3821
},
3822
{
@@ -3836,7 +3836,7 @@
3836
"zh-chs": "将用户添加到设备组",
3837
"zh-cht": "將用戶新增到裝置群",
3838
"xloc": [
3839
- "default.handlebars->31->1577"
3839
+ "default.handlebars->31->1578"
3840
]
3841
},
3842
{
@@ -3856,7 +3856,7 @@
3856
"zh-chs": "将用户添加到用户组",
3857
"zh-cht": "將用戶新增到用戶群",
3858
"xloc": [
3859
- "default.handlebars->31->2030"
3859
+ "default.handlebars->31->2031"
3860
]
3861
},
3862
{
@@ -3896,7 +3896,7 @@
3896
"zh-chs": "通过扫描本地网络添加新的英特尔®AMT计算机。",
3897
"zh-cht": "通過掃描本地網絡新增新的Intel® AMT電腦。",
3898
"xloc": [
3899
- "default.handlebars->31->304"
3899
+ "default.handlebars->31->305"
3900
]
3901
},
3902
{
@@ -3933,7 +3933,7 @@
3933
"zh-chs": "添加位于本地网络上的新英特尔®AMT计算机。",
3934
"zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。",
3935
"xloc": [
3936
- "default.handlebars->31->302"
3936
+ "default.handlebars->31->303"
3937
]
3938
},
3939
{
@@ -3953,7 +3953,7 @@
3953
"zh-chs": "将新的英特尔®AMT设备添加到设备组“{0}”。",
3954
"zh-cht": "將新的Intel® AMT裝置新增到裝置群“{0}”。",
3955
"xloc": [
3956
- "default.handlebars->31->312"
3956
+ "default.handlebars->31->313"
3957
]
3958
},
3959
{
@@ -3973,8 +3973,8 @@
3973
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3974
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3975
"xloc": [
3976
- "default.handlebars->31->1480",
3977
- "default.handlebars->31->308"
3976
+ "default.handlebars->31->1481",
3977
+ "default.handlebars->31->309"
3978
]
3979
},
3980
{
@@ -3994,7 +3994,7 @@
3994
"zh-chs": "添加标签",
3995
"zh-cht": "新增標籤",
3996
"xloc": [
3997
- "default.handlebars->31->493"
3997
+ "default.handlebars->31->494"
3998
]
3999
},
4000
{
@@ -4014,7 +4014,7 @@
4014
"zh-chs": "通过定期在远程设备上以管理员身份运行MeshCmd,添加,激活和配置Intel®AMT以将“{0}”分组。",
4015
"zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel®AMT以將“{0}”分組。",
4016
"xloc": [
4017
- "default.handlebars->31->323"
4017
+ "default.handlebars->31->324"
4018
]
4019
},
4020
{
@@ -4034,7 +4034,7 @@
4034
"zh-chs": "添加了身份验证应用程序",
4035
"zh-cht": "添加了身份驗證應用程序",
4036
"xloc": [
4037
- "default.handlebars->31->1801"
4037
+ "default.handlebars->31->1802"
4038
]
4039
},
4040
{
@@ -4054,7 +4054,7 @@
4054
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
4055
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
4056
"xloc": [
4057
- "default.handlebars->31->1812"
4057
+ "default.handlebars->31->1813"
4058
]
4059
},
4060
{
@@ -4074,8 +4074,8 @@
4074
"zh-chs": "已将设备{0}添加到设备组{1}",
4075
"zh-cht": "已將設備{0}添加到設備組{1}",
4076
"xloc": [
4077
- "default.handlebars->31->1768",
4078
- "default.handlebars->31->1795"
4077
+ "default.handlebars->31->1769",
4078
+ "default.handlebars->31->1796"
4079
]
4080
},
4081
{
@@ -4095,7 +4095,7 @@
4095
"zh-chs": "添加了安全密钥",
4096
"zh-cht": "添加了安全密鑰",
4097
"xloc": [
4098
- "default.handlebars->31->1806"
4098
+ "default.handlebars->31->1807"
4099
]
4100
},
4101
{
@@ -4115,7 +4115,7 @@
4115
"zh-chs": "已将用户组{0}添加到设备组{1}",
4116
"zh-cht": "已將用戶組{0}添加到設備組{1}",
4117
"xloc": [
4118
- "default.handlebars->31->1779"
4118
+ "default.handlebars->31->1780"
4119
]
4120
},
4121
{
@@ -4135,8 +4135,8 @@
4135
"zh-chs": "已将用户{0}添加到用户组{1}",
4136
"zh-cht": "已將用戶{0}添加到用戶組{1}",
4137
"xloc": [
4138
- "default.handlebars->31->1782",
4139
- "default.handlebars->31->1791"
4138
+ "default.handlebars->31->1783",
4139
+ "default.handlebars->31->1792"
4140
]
4141
},
4142
{
@@ -4156,7 +4156,7 @@
4156
"zh-chs": "地址",
4157
"zh-cht": "地址",
4158
"xloc": [
4159
- "default.handlebars->31->242"
4159
+ "default.handlebars->31->243"
4160
]
4161
},
4162
{
@@ -4196,8 +4196,8 @@
4196
"zh-chs": "管理员控制模式(ACM)",
4197
"zh-cht": "管理員控制模式(ACM)",
4198
"xloc": [
4199
- "default-mobile.handlebars->11->457",
4200
- "default.handlebars->31->1084"
4199
+ "default-mobile.handlebars->11->458",
4200
+ "default.handlebars->31->1085"
4201
]
4202
},
4203
{
@@ -4217,8 +4217,8 @@
4217
"zh-chs": "管理员凭证",
4218
"zh-cht": "管理員憑證",
4219
"xloc": [
4220
- "default-mobile.handlebars->11->463",
4221
- "default.handlebars->31->1090"
4220
+ "default-mobile.handlebars->11->464",
4221
+ "default.handlebars->31->1091"
4222
]
4223
},
4224
{
@@ -4259,7 +4259,7 @@
4259
"zh-chs": "管理领域",
4260
"zh-cht": "管理領域",
4261
"xloc": [
4262
- "default.handlebars->31->2066"
4262
+ "default.handlebars->31->2067"
4263
]
4264
},
4265
{
@@ -4300,7 +4300,7 @@
4300
"zh-chs": "管理领域",
4301
"zh-cht": "管理領域",
4302
"xloc": [
4303
- "default.handlebars->31->1934"
4303
+ "default.handlebars->31->1935"
4304
]
4305
},
4306
{
@@ -4320,7 +4320,7 @@
4320
"zh-chs": "管理员",
4321
"zh-cht": "管理員",
4322
"xloc": [
4323
- "default.handlebars->31->1863"
4323
+ "default.handlebars->31->1864"
4324
]
4325
},
4326
{
@@ -4340,7 +4340,7 @@
4340
"zh-chs": "南非文",
4341
"zh-cht": "南非文",
4342
"xloc": [
4343
- "default.handlebars->31->1161"
4343
+ "default.handlebars->31->1162"
4344
]
4345
},
4346
{
@@ -4361,14 +4361,14 @@
4361
"zh-cht": "代理",
4362
"xloc": [
4363
"agent-translations.json",
4364
- "default-mobile.handlebars->11->232",
4365
- "default-mobile.handlebars->11->257",
4366
- "default-mobile.handlebars->11->279",
4364
+ "default-mobile.handlebars->11->233",
4365
+ "default-mobile.handlebars->11->258",
4366
+ "default-mobile.handlebars->11->280",
4367
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
4368
- "default.handlebars->31->1644",
4369
- "default.handlebars->31->1657",
4370
- "default.handlebars->31->262",
4371
- "default.handlebars->31->451",
4368
+ "default.handlebars->31->1645",
4369
+ "default.handlebars->31->1658",
4370
+ "default.handlebars->31->263",
4371
+ "default.handlebars->31->452",
4372
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1"
4373
]
4374
},
@@ -4389,8 +4389,8 @@
4389
"zh-chs": "代理+英特尔AMT",
4390
"zh-cht": "代理+Intel® AMT",
4391
"xloc": [
4392
- "default.handlebars->31->1646",
4393
- "default.handlebars->31->1659"
4392
+ "default.handlebars->31->1647",
4393
+ "default.handlebars->31->1660"
4394
]
4395
},
4396
{
@@ -4431,8 +4431,8 @@
4431
"zh-chs": "代理控制台",
4432
"zh-cht": "代理控制台",
4433
"xloc": [
4434
- "default-mobile.handlebars->11->557",
4435
- "default.handlebars->31->1598"
4434
+ "default-mobile.handlebars->11->558",
4435
+ "default.handlebars->31->1599"
4436
]
4437
},
4438
{
@@ -4452,7 +4452,7 @@
4452
"zh-chs": "代理错误计数器",
4453
"zh-cht": "代理錯誤計數器",
4454
"xloc": [
4455
- "default.handlebars->31->2232"
4455
+ "default.handlebars->31->2237"
4456
]
4457
},
4458
{
@@ -4492,8 +4492,8 @@
4492
"zh-chs": "代理消息",
4493
"zh-cht": "代理訊息",
4494
"xloc": [
4495
- "default-mobile.handlebars->11->210",
4496
- "default.handlebars->31->294"
4495
+ "default-mobile.handlebars->11->211",
4496
+ "default.handlebars->31->295"
4497
]
4498
},
4499
{
@@ -4513,7 +4513,7 @@
4513
"zh-chs": "代理中继",
4514
"zh-cht": "代理中繼",
4515
"xloc": [
4516
- "default-mobile.handlebars->11->282"
4516
+ "default-mobile.handlebars->11->283"
4517
]
4518
},
4519
{
@@ -4555,7 +4555,7 @@
4555
"zh-chs": "代理时段",
4556
"zh-cht": "代理時段",
4557
"xloc": [
4558
- "default.handlebars->31->2248"
4558
+ "default.handlebars->31->2253"
4559
]
4560
},
4561
{
@@ -4575,8 +4575,8 @@
4575
"zh-chs": "代理标签",
4576
"zh-cht": "代理標籤",
4577
"xloc": [
4578
- "default-mobile.handlebars->11->278",
4579
- "default.handlebars->31->619"
4578
+ "default-mobile.handlebars->11->279",
4579
+ "default.handlebars->31->620"
4580
]
4581
},
4582
{
@@ -4596,7 +4596,7 @@
4596
"zh-chs": "代理类型",
4597
"zh-cht": "代理類型",
4598
"xloc": [
4599
- "default.handlebars->31->1655",
4599
+ "default.handlebars->31->1656",
4600
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
4601
]
4602
},
@@ -4617,7 +4617,7 @@
4617
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4618
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4619
"xloc": [
4620
- "default.handlebars->31->1765"
4620
+ "default.handlebars->31->1766"
4621
]
4622
},
4623
{
@@ -4638,8 +4638,8 @@
4638
"zh-cht": "代理已連接",
4639
"xloc": [
4640
"default.handlebars->31->178",
4641
- "default.handlebars->31->704",
4642
- "default.handlebars->31->705"
4641
+ "default.handlebars->31->705",
4642
+ "default.handlebars->31->706"
4643
]
4644
},
4645
{
@@ -4679,8 +4679,8 @@
4679
"zh-chs": "代理离线",
4680
"zh-cht": "代理離線",
4681
"xloc": [
4682
- "default-mobile.handlebars->11->491",
4683
- "default.handlebars->31->1119"
4682
+ "default-mobile.handlebars->11->492",
4683
+ "default.handlebars->31->1120"
4684
]
4685
},
4686
{
@@ -4700,8 +4700,8 @@
4700
"zh-chs": "代理在线",
4701
"zh-cht": "代理在線",
4702
"xloc": [
4703
- "default-mobile.handlebars->11->490",
4704
- "default.handlebars->31->1118"
4703
+ "default-mobile.handlebars->11->491",
4704
+ "default.handlebars->31->1119"
4705
]
4706
},
4707
{
@@ -4722,7 +4722,7 @@
4722
"zh-cht": "代理在特權降低的遠程設備上運行。",
4723
"xloc": [
4724
"default.handlebars->31->176",
4725
- "default.handlebars->31->702"
4725
+ "default.handlebars->31->703"
4726
]
4727
},
4728
{
@@ -4742,7 +4742,7 @@
4742
"zh-chs": "代理",
4743
"zh-cht": "代理",
4744
"xloc": [
4745
- "default.handlebars->31->2264"
4745
+ "default.handlebars->31->2269"
4746
]
4747
},
4748
{
@@ -4762,7 +4762,7 @@
4762
"zh-chs": "阿尔巴尼亚文",
4763
"zh-cht": "阿爾巴尼亞文",
4764
"xloc": [
4765
- "default.handlebars->31->1162"
4765
+ "default.handlebars->31->1163"
4766
]
4767
},
4768
{
@@ -4782,9 +4782,9 @@
4782
"zh-chs": "所有",
4783
"zh-cht": "所有",
4784
"xloc": [
4785
- "default-mobile.handlebars->11->138",
4786
- "default-mobile.handlebars->11->369",
4787
- "default-mobile.handlebars->11->371",
4785
+ "default-mobile.handlebars->11->139",
4786
+ "default-mobile.handlebars->11->370",
4787
+ "default-mobile.handlebars->11->372",
4788
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
4789
]
4790
},
@@ -4805,7 +4805,7 @@
4805
"zh-chs": "全部可用",
4806
"zh-cht": "全部可用",
4807
"xloc": [
4808
- "default.handlebars->31->1826"
4808
+ "default.handlebars->31->1827"
4809
]
4810
},
4811
{
@@ -4825,7 +4825,7 @@
4825
"zh-chs": "所有显示",
4826
"zh-cht": "所有顯示",
4827
"xloc": [
4828
- "default.handlebars->31->965"
4828
+ "default.handlebars->31->966"
4829
]
4830
},
4831
{
@@ -4845,7 +4845,7 @@
4845
"zh-chs": "所有事件",
4846
"zh-cht": "所有事件",
4847
"xloc": [
4848
- "default.handlebars->31->1824"
4848
+ "default.handlebars->31->1825"
4849
]
4850
},
4851
{
@@ -4865,9 +4865,9 @@
4865
"zh-chs": "全部聚焦",
4866
"zh-cht": "全部聚焦",
4867
"xloc": [
4868
- "default.handlebars->31->911",
4869
- "default.handlebars->31->913",
4870
- "default.handlebars->31->914"
4868
+ "default.handlebars->31->912",
4869
+ "default.handlebars->31->914",
4870
+ "default.handlebars->31->915"
4871
]
4872
},
4873
{
@@ -4887,8 +4887,8 @@
4887
"zh-chs": "允许用户管理此设备组和该组中的设备。",
4888
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4889
"xloc": [
4890
- "default.handlebars->31->1544",
4891
- "default.handlebars->31->2027"
4890
+ "default.handlebars->31->1545",
4891
+ "default.handlebars->31->2028"
4892
]
4893
},
4894
{
@@ -4908,7 +4908,7 @@
4908
"zh-chs": "允许用户管理此设备。",
4909
"zh-cht": "允許用戶管理此裝置。",
4910
"xloc": [
4911
- "default.handlebars->31->1545"
4911
+ "default.handlebars->31->1546"
4912
]
4913
},
4914
{
@@ -4945,10 +4945,10 @@
4945
"fr": "Alt",
4946
"nl": "Alt",
4947
"xloc": [
4948
- "default-mobile.handlebars->11->352",
4949
- "default-mobile.handlebars->11->356",
4950
- "default.handlebars->31->933",
4951
- "default.handlebars->31->937"
4948
+ "default-mobile.handlebars->11->353",
4949
+ "default-mobile.handlebars->11->357",
4950
+ "default.handlebars->31->934",
4951
+ "default.handlebars->31->938"
4952
]
4953
},
4954
{
@@ -5010,7 +5010,7 @@
5010
"zh-chs": "备用(F10 = ESC + 0)",
5011
"zh-cht": "備用(F10 = ESC + 0)",
5012
"xloc": [
5013
- "default.handlebars->31->976",
5013
+ "default.handlebars->31->977",
5014
"terminal.handlebars->3->19"
5015
]
5016
},
@@ -5052,10 +5052,10 @@
5052
"zh-chs": "一直通知",
5053
"zh-cht": "一直通知",
5054
"xloc": [
5055
- "default.handlebars->31->1456",
5056
- "default.handlebars->31->1988",
5057
- "default.handlebars->31->2075",
5058
- "default.handlebars->31->647"
5055
+ "default.handlebars->31->1457",
5056
+ "default.handlebars->31->1989",
5057
+ "default.handlebars->31->2076",
5058
+ "default.handlebars->31->648"
5059
]
5060
},
5061
{
@@ -5075,10 +5075,10 @@
5075
"zh-chs": "一直提示",
5076
"zh-cht": "一直提示",
5077
"xloc": [
5078
- "default.handlebars->31->1457",
5079
- "default.handlebars->31->1989",
5080
- "default.handlebars->31->2076",
5081
- "default.handlebars->31->648"
5078
+ "default.handlebars->31->1458",
5079
+ "default.handlebars->31->1990",
5080
+ "default.handlebars->31->2077",
5081
+ "default.handlebars->31->649"
5082
]
5083
},
5084
{
@@ -5195,7 +5195,7 @@
5195
"nl": "Android installatie",
5196
"fr": "Installation pour Android",
5197
"xloc": [
5198
- "default-mobile.handlebars->11->531"
5198
+ "default-mobile.handlebars->11->532"
5199
]
5200
},
5201
{
@@ -5223,8 +5223,8 @@
5223
"en": "Anti-virus not active",
5224
"nl": "Anti-virus niet actief",
5225
"xloc": [
5226
- "default.handlebars->31->1648",
5227
- "default.handlebars->31->1662"
5226
+ "default.handlebars->31->1649",
5227
+ "default.handlebars->31->1663"
5228
]
5229
},
5230
{
@@ -5244,8 +5244,8 @@
5244
"zh-chs": "杀毒软件",
5245
"zh-cht": "防毒軟體",
5246
"xloc": [
5247
- "default-mobile.handlebars->11->420",
5248
- "default.handlebars->31->638"
5247
+ "default-mobile.handlebars->11->421",
5248
+ "default.handlebars->31->639"
5249
]
5250
},
5251
{
@@ -5265,7 +5265,7 @@
5265
"zh-chs": "任何可支持的",
5266
"zh-cht": "任何可支持的",
5267
"xloc": [
5268
- "default.handlebars->31->349"
5268
+ "default.handlebars->31->350"
5269
]
5270
},
5271
{
@@ -5306,7 +5306,7 @@
5306
"zh-chs": "苹果macOS",
5307
"zh-cht": "蘋果macOS",
5308
"xloc": [
5309
- "default.handlebars->31->383"
5309
+ "default.handlebars->31->384"
5310
]
5311
},
5312
{
@@ -5326,7 +5326,7 @@
5326
"zh-chs": "仅限Apple macOS",
5327
"zh-cht": "僅限Apple macOS",
5328
"xloc": [
5329
- "default.handlebars->31->351"
5329
+ "default.handlebars->31->352"
5330
]
5331
},
5332
{
@@ -5366,7 +5366,7 @@
5366
"zh-chs": "阿拉伯文(阿尔及利亚)",
5367
"zh-cht": "阿拉伯文(阿爾及利亞)",
5368
"xloc": [
5369
- "default.handlebars->31->1164"
5369
+ "default.handlebars->31->1165"
5370
]
5371
},
5372
{
@@ -5386,7 +5386,7 @@
5386
"zh-chs": "阿拉伯文(巴林)",
5387
"zh-cht": "阿拉伯文(巴林)",
5388
"xloc": [
5389
- "default.handlebars->31->1165"
5389
+ "default.handlebars->31->1166"
5390
]
5391
},
5392
{
@@ -5406,7 +5406,7 @@
5406
"zh-chs": "阿拉伯文(埃及)",
5407
"zh-cht": "阿拉伯文(埃及)",
5408
"xloc": [
5409
- "default.handlebars->31->1166"
5409
+ "default.handlebars->31->1167"
5410
]
5411
},
5412
{
@@ -5426,7 +5426,7 @@
5426
"zh-chs": "阿拉伯文(伊拉克)",
5427
"zh-cht": "阿拉伯文(伊拉克)",
5428
"xloc": [
5429
- "default.handlebars->31->1167"
5429
+ "default.handlebars->31->1168"
5430
]
5431
},
5432
{
@@ -5446,7 +5446,7 @@
5446
"zh-chs": "阿拉伯文(约旦)",
5447
"zh-cht": "阿拉伯文(約旦)",
5448
"xloc": [
5449
- "default.handlebars->31->1168"
5449
+ "default.handlebars->31->1169"
5450
]
5451
},
5452
{
@@ -5466,7 +5466,7 @@
5466
"zh-chs": "阿拉伯文(科威特)",
5467
"zh-cht": "阿拉伯文(科威特)",
5468
"xloc": [
5469
- "default.handlebars->31->1169"
5469
+ "default.handlebars->31->1170"
5470
]
5471
},
5472
{
@@ -5486,7 +5486,7 @@
5486
"zh-chs": "阿拉伯文(黎巴嫩)",
5487
"zh-cht": "阿拉伯文(黎巴嫩)",
5488
"xloc": [
5489
- "default.handlebars->31->1170"
5489
+ "default.handlebars->31->1171"
5490
]
5491
},
5492
{
@@ -5506,7 +5506,7 @@
5506
"zh-chs": "阿拉伯文(利比亚)",
5507
"zh-cht": "阿拉伯文(利比亞)",
5508
"xloc": [
5509
- "default.handlebars->31->1171"
5509
+ "default.handlebars->31->1172"
5510
]
5511
},
5512
{
@@ -5526,7 +5526,7 @@
5526
"zh-chs": "阿拉伯文(摩洛哥)",
5527
"zh-cht": "阿拉伯文(摩洛哥)",
5528
"xloc": [
5529
- "default.handlebars->31->1172"
5529
+ "default.handlebars->31->1173"
5530
]
5531
},
5532
{
@@ -5546,7 +5546,7 @@
5546
"zh-chs": "阿拉伯文(阿曼)",
5547
"zh-cht": "阿拉伯文(阿曼)",
5548
"xloc": [
5549
- "default.handlebars->31->1173"
5549
+ "default.handlebars->31->1174"
5550
]
5551
},
5552
{
@@ -5566,7 +5566,7 @@
5566
"zh-chs": "阿拉伯文(卡塔尔)",
5567
"zh-cht": "阿拉伯文(卡塔爾)",
5568
"xloc": [
5569
- "default.handlebars->31->1174"
5569
+ "default.handlebars->31->1175"
5570
]
5571
},
5572
{
@@ -5586,7 +5586,7 @@
5586
"zh-chs": "阿拉伯文(沙特阿拉伯)",
5587
"zh-cht": "阿拉伯文(沙特阿拉伯)",
5588
"xloc": [
5589
- "default.handlebars->31->1175"
5589
+ "default.handlebars->31->1176"
5590
]
5591
},
5592
{
@@ -5606,7 +5606,7 @@
5606
"zh-chs": "阿拉伯文(标准)",
5607
"zh-cht": "阿拉伯文(標準)",
5608
"xloc": [
5609
- "default.handlebars->31->1163"
5609
+ "default.handlebars->31->1164"
5610
]
5611
},
5612
{
@@ -5626,7 +5626,7 @@
5626
"zh-chs": "阿拉伯文(叙利亚)",
5627
"zh-cht": "阿拉伯文(敘利亞)",
5628
"xloc": [
5629
- "default.handlebars->31->1176"
5629
+ "default.handlebars->31->1177"
5630
]
5631
},
5632
{
@@ -5646,7 +5646,7 @@
5646
"zh-chs": "阿拉伯文(突尼斯)",
5647
"zh-cht": "阿拉伯文(突尼斯)",
5648
"xloc": [
5649
- "default.handlebars->31->1177"
5649
+ "default.handlebars->31->1178"
5650
]
5651
},
5652
{
@@ -5666,7 +5666,7 @@
5666
"zh-chs": "阿拉伯文(阿联酋)",
5667
"zh-cht": "阿拉伯文(阿聯酋)",
5668
"xloc": [
5669
- "default.handlebars->31->1178"
5669
+ "default.handlebars->31->1179"
5670
]
5671
},
5672
{
@@ -5686,7 +5686,7 @@
5686
"zh-chs": "阿拉伯文(也门)",
5687
"zh-cht": "阿拉伯文(也門)",
5688
"xloc": [
5689
- "default.handlebars->31->1179"
5689
+ "default.handlebars->31->1180"
5690
]
5691
},
5692
{
@@ -5706,7 +5706,7 @@
5706
"zh-chs": "阿拉贡文",
5707
"zh-cht": "阿拉貢文",
5708
"xloc": [
5709
- "default.handlebars->31->1180"
5709
+ "default.handlebars->31->1181"
5710
]
5711
},
5712
{
@@ -5726,8 +5726,8 @@
5726
"zh-chs": "架构",
5727
"zh-cht": "結構",
5728
"xloc": [
5729
- "default-mobile.handlebars->11->403",
5730
- "default.handlebars->31->1037"
5729
+ "default-mobile.handlebars->11->404",
5730
+ "default.handlebars->31->1038"
5731
]
5732
},
5733
{
@@ -5747,7 +5747,7 @@
5747
"zh-chs": "您确定要连接到{0}设备吗?",
5748
"zh-cht": "你確定要連接到{0}裝置嗎?",
5749
"xloc": [
5750
- "default.handlebars->31->297"
5750
+ "default.handlebars->31->298"
5751
]
5752
},
5753
{
@@ -5767,8 +5767,8 @@
5767
"zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
5768
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5769
"xloc": [
5770
- "default-mobile.handlebars->11->522",
5771
- "default.handlebars->31->1520"
5770
+ "default-mobile.handlebars->11->523",
5771
+ "default.handlebars->31->1521"
5772
]
5773
},
5774
{
@@ -5788,7 +5788,7 @@
5788
"zh-chs": "您确定要删除节点{0}吗?",
5789
"zh-cht": "你確定要刪除節點{0}嗎?",
5790
"xloc": [
5791
- "default.handlebars->31->853"
5791
+ "default.handlebars->31->854"
5792
]
5793
},
5794
{
@@ -5808,7 +5808,7 @@
5808
"zh-chs": "您确定要卸载所选代理吗?",
5809
"zh-cht": "你確定要卸載所選代理嗎?",
5810
"xloc": [
5811
- "default.handlebars->31->842"
5811
+ "default.handlebars->31->843"
5812
]
5813
},
5814
{
@@ -5828,7 +5828,7 @@
5828
"zh-chs": "您确定要卸载所选的{0}代理吗?",
5829
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
5830
"xloc": [
5831
- "default.handlebars->31->841"
5831
+ "default.handlebars->31->842"
5832
]
5833
},
5834
{
@@ -5848,7 +5848,7 @@
5848
"zh-chs": "您确定要{0}插件吗:{1}",
5849
"zh-cht": "你確定要{0}外掛嗎:{1}",
5850
"xloc": [
5851
- "default.handlebars->31->2310"
5851
+ "default.handlebars->31->2315"
5852
]
5853
},
5854
{
@@ -5868,7 +5868,7 @@
5868
"zh-chs": "亚美尼亚文",
5869
"zh-cht": "亞美尼亞文",
5870
"xloc": [
5871
- "default.handlebars->31->1181"
5871
+ "default.handlebars->31->1182"
5872
]
5873
},
5874
{
@@ -5928,7 +5928,7 @@
5928
"zh-chs": "阿萨姆文",
5929
"zh-cht": "阿薩姆文",
5930
"xloc": [
5931
- "default.handlebars->31->1182"
5931
+ "default.handlebars->31->1183"
5932
]
5933
},
5934
{
@@ -5948,7 +5948,7 @@
5948
"zh-chs": "阿斯图里亚斯文",
5949
"zh-cht": "阿斯圖里亞斯文",
5950
"xloc": [
5951
- "default.handlebars->31->1183"
5951
+ "default.handlebars->31->1184"
5952
]
5953
},
5954
{
@@ -5968,7 +5968,7 @@
5968
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5969
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5970
"xloc": [
5971
- "default.handlebars->31->1734"
5971
+ "default.handlebars->31->1735"
5972
]
5973
},
5974
{
@@ -5988,7 +5988,7 @@
5988
"zh-chs": "认证软件",
5989
"zh-cht": "認證軟體",
5990
"xloc": [
5991
- "default.handlebars->31->2079"
5991
+ "default.handlebars->31->2080"
5992
]
5993
},
5994
{
@@ -6010,10 +6010,10 @@
6010
"xloc": [
6011
"default-mobile.handlebars->11->60",
6012
"default-mobile.handlebars->11->63",
6013
- "default-mobile.handlebars->11->92",
6014
- "default-mobile.handlebars->11->94",
6015
- "default.handlebars->31->1147",
6016
- "default.handlebars->31->1149",
6013
+ "default-mobile.handlebars->11->93",
6014
+ "default-mobile.handlebars->11->95",
6015
+ "default.handlebars->31->1148",
6016
+ "default.handlebars->31->1150",
6017
"default.handlebars->31->140",
6018
"default.handlebars->31->145"
6019
]
@@ -6095,7 +6095,7 @@
6095
"zh-chs": "自动删除",
6096
"zh-cht": "自動刪除",
6097
"xloc": [
6098
- "default.handlebars->31->1443"
6098
+ "default.handlebars->31->1444"
6099
]
6100
},
6101
{
@@ -6139,7 +6139,7 @@
6139
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
6140
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
6141
"xloc": [
6142
- "default.handlebars->31->1815"
6142
+ "default.handlebars->31->1816"
6143
]
6144
},
6145
{
@@ -6179,7 +6179,7 @@
6179
"zh-chs": "可用內存",
6180
"zh-cht": "可用內存",
6181
"xloc": [
6182
- "default.handlebars->31->2257"
6182
+ "default.handlebars->31->2262"
6183
]
6184
},
6185
{
@@ -6199,7 +6199,7 @@
6199
"zh-chs": "阿塞拜疆文",
6200
"zh-cht": "阿塞拜疆文",
6201
"xloc": [
6202
- "default.handlebars->31->1184"
6202
+ "default.handlebars->31->1185"
6203
]
6204
},
6205
{
@@ -6207,12 +6207,12 @@
6207
"nl": "Uitgeschakeld",
6208
"fr": "Désactivé",
6209
"xloc": [
6210
- "default-mobile.handlebars->11->407",
6211
- "default-mobile.handlebars->11->411",
6212
- "default-mobile.handlebars->11->415",
6213
- "default.handlebars->31->625",
6214
- "default.handlebars->31->629",
6215
- "default.handlebars->31->633"
6210
+ "default-mobile.handlebars->11->408",
6211
+ "default-mobile.handlebars->11->412",
6212
+ "default-mobile.handlebars->11->416",
6213
+ "default.handlebars->31->626",
6214
+ "default.handlebars->31->630",
6215
+ "default.handlebars->31->634"
6216
]
6217
},
6218
{
@@ -6232,8 +6232,8 @@
6232
"zh-chs": "的BIOS",
6233
"zh-cht": "的BIOS",
6234
"xloc": [
6235
- "default-mobile.handlebars->11->469",
6236
- "default.handlebars->31->1096"
6235
+ "default-mobile.handlebars->11->470",
6236
+ "default.handlebars->31->1097"
6237
]
6238
},
6239
{
@@ -6316,8 +6316,8 @@
6316
"fr": "Backspace",
6317
"nl": "BackSpace",
6318
"xloc": [
6319
- "default-mobile.handlebars->11->336",
6320
- "default.handlebars->31->917"
6319
+ "default-mobile.handlebars->11->337",
6320
+ "default.handlebars->31->918"
6321
]
6322
},
6323
{
@@ -6337,7 +6337,7 @@
6337
"zh-chs": "背景与互动",
6338
"zh-cht": "背景與互動",
6339
"xloc": [
6340
- "default.handlebars->31->390"
6340
+ "default.handlebars->31->391"
6341
]
6342
},
6343
{
@@ -6357,10 +6357,10 @@
6357
"zh-chs": "背景与互动",
6358
"zh-cht": "背景與互動",
6359
"xloc": [
6360
- "default.handlebars->31->1627",
6361
- "default.handlebars->31->1634",
6362
- "default.handlebars->31->361",
6363
- "default.handlebars->31->375"
6360
+ "default.handlebars->31->1628",
6361
+ "default.handlebars->31->1635",
6362
+ "default.handlebars->31->362",
6363
+ "default.handlebars->31->376"
6364
]
6365
},
6366
{
@@ -6380,11 +6380,11 @@
6380
"zh-chs": "仅背景",
6381
"zh-cht": "僅背景",
6382
"xloc": [
6383
- "default.handlebars->31->1628",
6384
- "default.handlebars->31->1635",
6385
- "default.handlebars->31->362",
6386
- "default.handlebars->31->376",
6387
- "default.handlebars->31->391"
6383
+ "default.handlebars->31->1629",
6384
+ "default.handlebars->31->1636",
6385
+ "default.handlebars->31->363",
6386
+ "default.handlebars->31->377",
6387
+ "default.handlebars->31->392"
6388
]
6389
},
6390
{
@@ -6425,7 +6425,7 @@
6425
"zh-chs": "备用码",
6426
"zh-cht": "備用碼",
6427
"xloc": [
6428
- "default.handlebars->31->2081"
6428
+ "default.handlebars->31->2082"
6429
]
6430
},
6431
{
@@ -6445,7 +6445,7 @@
6445
"zh-chs": "错误的签名",
6446
"zh-cht": "錯誤的簽名",
6447
"xloc": [
6448
- "default.handlebars->31->2239"
6448
+ "default.handlebars->31->2244"
6449
]
6450
},
6451
{
@@ -6465,7 +6465,7 @@
6465
"zh-chs": "错误的网络证书",
6466
"zh-cht": "錯誤的網絡憑證",
6467
"xloc": [
6468
- "default.handlebars->31->2238"
6468
+ "default.handlebars->31->2243"
6469
]
6470
},
6471
{
@@ -6485,7 +6485,7 @@
6485
"zh-chs": "巴斯克",
6486
"zh-cht": "巴斯克",
6487
"xloc": [
6488
- "default.handlebars->31->1185"
6488
+ "default.handlebars->31->1186"
6489
]
6490
},
6491
{
@@ -6505,7 +6505,7 @@
6505
"zh-chs": "批处理文件上传",
6506
"zh-cht": "批處理文件上傳",
6507
"xloc": [
6508
- "default.handlebars->31->509"
6508
+ "default.handlebars->31->510"
6509
]
6510
},
6511
{
@@ -6545,7 +6545,7 @@
6545
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
6546
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
6547
"xloc": [
6548
- "default.handlebars->31->1814"
6548
+ "default.handlebars->31->1815"
6549
]
6550
},
6551
{
@@ -6565,7 +6565,7 @@
6565
"zh-chs": "白俄罗斯文",
6566
"zh-cht": "白俄羅斯文",
6567
"xloc": [
6568
- "default.handlebars->31->1187"
6568
+ "default.handlebars->31->1188"
6569
]
6570
},
6571
{
@@ -6585,7 +6585,7 @@
6585
"zh-chs": "孟加拉",
6586
"zh-cht": "孟加拉",
6587
"xloc": [
6588
- "default.handlebars->31->1188"
6588
+ "default.handlebars->31->1189"
6589
]
6590
},
6591
{
@@ -6616,8 +6616,8 @@
6616
"nl": "Bootloader",
6617
"fr": "Chargeur de démarrage",
6618
"xloc": [
6619
- "default-mobile.handlebars->11->433",
6620
- "default.handlebars->31->1050"
6619
+ "default-mobile.handlebars->11->434",
6620
+ "default.handlebars->31->1051"
6621
]
6622
},
6623
{
@@ -6637,7 +6637,7 @@
6637
"zh-chs": "波斯尼亚文",
6638
"zh-cht": "波斯尼亞文",
6639
"xloc": [
6640
- "default.handlebars->31->1189"
6640
+ "default.handlebars->31->1190"
6641
]
6642
},
6643
{
@@ -6657,7 +6657,7 @@
6657
"zh-chs": "布列塔尼",
6658
"zh-cht": "布列塔尼",
6659
"xloc": [
6660
- "default.handlebars->31->1190"
6660
+ "default.handlebars->31->1191"
6661
]
6662
},
6663
{
@@ -6677,7 +6677,7 @@
6677
"zh-chs": "广播",
6678
"zh-cht": "廣播",
6679
"xloc": [
6680
- "default.handlebars->31->1995",
6680
+ "default.handlebars->31->1996",
6681
"default.handlebars->container->column_l->p4->3->1->0->3->1"
6682
]
6683
},
@@ -6698,7 +6698,7 @@
6698
"zh-chs": "广播消息",
6699
"zh-cht": "廣播消息",
6700
"xloc": [
6701
- "default.handlebars->31->1916"
6701
+ "default.handlebars->31->1917"
6702
]
6703
},
6704
{
@@ -6718,14 +6718,14 @@
6718
"zh-chs": "向所有连接的用户广播消息。",
6719
"zh-cht": "向所有連接的用戶廣播消息。",
6720
"xloc": [
6721
- "default.handlebars->31->1911"
6721
+ "default.handlebars->31->1912"
6722
]
6723
},
6724
{
6725
"en": "Browser default",
6726
"nl": "Browser standaard",
6727
"xloc": [
6728
- "default-mobile.handlebars->11->80",
6728
+ "default-mobile.handlebars->11->81",
6729
"default.handlebars->31->58"
6730
]
6731
},
@@ -6746,7 +6746,7 @@
6746
"zh-chs": "保加利亚文",
6747
"zh-cht": "保加利亞文",
6748
"xloc": [
6749
- "default.handlebars->31->1186"
6749
+ "default.handlebars->31->1187"
6750
]
6751
},
6752
{
@@ -6766,7 +6766,7 @@
6766
"zh-chs": "缅甸文",
6767
"zh-cht": "緬甸文",
6768
"xloc": [
6769
- "default.handlebars->31->1191"
6769
+ "default.handlebars->31->1192"
6770
]
6771
},
6772
{
@@ -6786,8 +6786,8 @@
6786
"zh-chs": "CCM",
6787
"zh-cht": "CCM",
6788
"xloc": [
6789
- "default-mobile.handlebars->11->264",
6790
- "default.handlebars->31->601"
6789
+ "default-mobile.handlebars->11->265",
6790
+ "default.handlebars->31->602"
6791
]
6792
},
6793
{
@@ -6807,7 +6807,7 @@
6807
"zh-chs": "CCM模式",
6808
"zh-cht": "CCM模式",
6809
"xloc": [
6810
- "default.handlebars->31->1503"
6810
+ "default.handlebars->31->1504"
6811
]
6812
},
6813
{
@@ -6827,9 +6827,9 @@
6827
"zh-chs": "CIRA",
6828
"zh-cht": "CIRA",
6829
"xloc": [
6830
- "default-mobile.handlebars->11->233",
6831
- "default.handlebars->31->264",
6832
- "default.handlebars->31->453"
6830
+ "default-mobile.handlebars->11->234",
6831
+ "default.handlebars->31->265",
6832
+ "default.handlebars->31->454"
6833
]
6834
},
6835
{
@@ -6849,7 +6849,7 @@
6849
"zh-chs": "CIRA服务器",
6850
"zh-cht": "CIRA伺服器",
6851
"xloc": [
6852
- "default.handlebars->31->2296"
6852
+ "default.handlebars->31->2301"
6853
]
6854
},
6855
{
@@ -6869,7 +6869,7 @@
6869
"zh-chs": "CIRA服务器命令",
6870
"zh-cht": "CIRA伺服器指令",
6871
"xloc": [
6872
- "default.handlebars->31->2297"
6872
+ "default.handlebars->31->2302"
6873
]
6874
},
6875
{
@@ -6889,7 +6889,7 @@
6889
"zh-chs": "CIRA设置",
6890
"zh-cht": "CIRA設置",
6891
"xloc": [
6892
- "default.handlebars->31->1511"
6892
+ "default.handlebars->31->1512"
6893
]
6894
},
6895
{
@@ -6909,8 +6909,8 @@
6909
"zh-chs": "CPU",
6910
"zh-cht": "CPU",
6911
"xloc": [
6912
- "default-mobile.handlebars->11->475",
6913
- "default.handlebars->31->1102"
6912
+ "default-mobile.handlebars->11->476",
6913
+ "default.handlebars->31->1103"
6914
]
6915
},
6916
{
@@ -6930,7 +6930,7 @@
6930
"zh-chs": "CPU负载",
6931
"zh-cht": "CPU負載",
6932
"xloc": [
6933
- "default.handlebars->31->2253"
6933
+ "default.handlebars->31->2258"
6934
]
6935
},
6936
{
@@ -6950,7 +6950,7 @@
6950
"zh-chs": "最近15分钟的CPU负载",
6951
"zh-cht": "最近15分鐘的CPU負載",
6952
"xloc": [
6953
- "default.handlebars->31->2256"
6953
+ "default.handlebars->31->2261"
6954
]
6955
},
6956
{
@@ -6970,7 +6970,7 @@
6970
"zh-chs": "最近5分钟的CPU负载",
6971
"zh-cht": "最近5分鐘的CPU負載",
6972
"xloc": [
6973
- "default.handlebars->31->2255"
6973
+ "default.handlebars->31->2260"
6974
]
6975
},
6976
{
@@ -6990,7 +6990,7 @@
6990
"zh-chs": "最近一分钟的CPU负载",
6991
"zh-cht": "最近一分鐘的CPU負載",
6992
"xloc": [
6993
- "default.handlebars->31->2254"
6993
+ "default.handlebars->31->2259"
6994
]
6995
},
6996
{
@@ -7010,8 +7010,8 @@
7010
"zh-chs": "CR+LF",
7011
"zh-cht": "CR+LF",
7012
"xloc": [
7013
- "default.handlebars->31->969",
7014
- "default.handlebars->31->978",
7013
+ "default.handlebars->31->970",
7014
+ "default.handlebars->31->979",
7015
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
7016
"terminal.handlebars->3->21",
7017
"terminal.handlebars->3->7",
@@ -7035,7 +7035,7 @@
7035
"zh-chs": "CSV",
7036
"zh-cht": "CSV",
7037
"xloc": [
7038
- "default.handlebars->31->1834"
7038
+ "default.handlebars->31->1835"
7039
]
7040
},
7041
{
@@ -7055,9 +7055,9 @@
7055
"zh-chs": "CSV格式",
7056
"zh-cht": "CSV格式",
7057
"xloc": [
7058
- "default.handlebars->31->1838",
7059
- "default.handlebars->31->1903",
7060
- "default.handlebars->31->513"
7058
+ "default.handlebars->31->1839",
7059
+ "default.handlebars->31->1904",
7060
+ "default.handlebars->31->514"
7061
]
7062
},
7063
{
@@ -7094,7 +7094,7 @@
7094
"zh-chs": "呼叫错误",
7095
"zh-cht": "呼叫錯誤",
7096
"xloc": [
7097
- "default.handlebars->31->2311"
7097
+ "default.handlebars->31->2316"
7098
]
7099
},
7100
{
@@ -7115,9 +7115,9 @@
7115
"zh-cht": "取消",
7116
"xloc": [
7117
"agent-translations.json",
7118
- "default-mobile.handlebars->11->103",
7118
+ "default-mobile.handlebars->11->104",
7119
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
7120
- "default.handlebars->31->1421",
7120
+ "default.handlebars->31->1422",
7121
"default.handlebars->container->dialog->idx_dlgButtonBar",
7122
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
7123
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -7145,12 +7145,12 @@
7145
"zh-chs": "容量",
7146
"zh-cht": "容量",
7147
"xloc": [
7148
- "default-mobile.handlebars->11->480",
7149
- "default-mobile.handlebars->11->485",
7150
- "default-mobile.handlebars->11->487",
7151
- "default.handlebars->31->1107",
7152
- "default.handlebars->31->1112",
7153
- "default.handlebars->31->1114"
7148
+ "default-mobile.handlebars->11->481",
7149
+ "default-mobile.handlebars->11->486",
7150
+ "default-mobile.handlebars->11->488",
7151
+ "default.handlebars->31->1108",
7152
+ "default.handlebars->31->1113",
7153
+ "default.handlebars->31->1115"
7154
]
7155
},
7156
{
@@ -7170,8 +7170,8 @@
7170
"zh-chs": "容量/速度",
7171
"zh-cht": "容量/速度",
7172
"xloc": [
7173
- "default-mobile.handlebars->11->478",
7174
- "default.handlebars->31->1105"
7173
+ "default-mobile.handlebars->11->479",
7174
+ "default.handlebars->31->1106"
7175
]
7176
},
7177
{
@@ -7191,7 +7191,7 @@
7191
"zh-chs": "加泰罗尼亚文",
7192
"zh-cht": "加泰羅尼亞文",
7193
"xloc": [
7194
- "default.handlebars->31->1192"
7194
+ "default.handlebars->31->1193"
7195
]
7196
},
7197
{
@@ -7211,7 +7211,7 @@
7211
"zh-chs": "在这里为中心显示地图",
7212
"zh-cht": "在這裡為中心顯示地圖",
7213
"xloc": [
7214
- "default.handlebars->31->563"
7214
+ "default.handlebars->31->564"
7215
]
7216
},
7217
{
@@ -7231,7 +7231,7 @@
7231
"zh-chs": "查莫罗",
7232
"zh-cht": "查莫羅",
7233
"xloc": [
7234
- "default.handlebars->31->1193"
7234
+ "default.handlebars->31->1194"
7235
]
7236
},
7237
{
@@ -7273,7 +7273,7 @@
7273
"zh-chs": "更改{0}的电邮",
7274
"zh-cht": "更改{0}的電郵",
7275
"xloc": [
7276
- "default.handlebars->31->2111"
7276
+ "default.handlebars->31->2114"
7277
]
7278
},
7279
{
@@ -7293,9 +7293,9 @@
7293
"zh-chs": "更改组",
7294
"zh-cht": "更改群",
7295
"xloc": [
7296
- "default.handlebars->31->678",
7297
- "default.handlebars->31->850",
7298
- "default.handlebars->31->851"
7296
+ "default.handlebars->31->679",
7297
+ "default.handlebars->31->851",
7298
+ "default.handlebars->31->852"
7299
]
7300
},
7301
{
@@ -7315,9 +7315,9 @@
7315
"zh-chs": "更改密码",
7316
"zh-cht": "更改密碼",
7317
"xloc": [
7318
- "default-mobile.handlebars->11->111",
7319
- "default.handlebars->31->1388",
7320
- "default.handlebars->31->2098"
7318
+ "default-mobile.handlebars->11->112",
7319
+ "default.handlebars->31->1389",
7320
+ "default.handlebars->31->2099"
7321
]
7322
},
7323
{
@@ -7337,7 +7337,7 @@
7337
"zh-chs": "更改{0}的密码",
7338
"zh-cht": "更改{0}的密碼",
7339
"xloc": [
7340
- "default.handlebars->31->2118"
7340
+ "default.handlebars->31->2123"
7341
]
7342
},
7343
{
@@ -7357,7 +7357,7 @@
7357
"zh-chs": "更改{0}的真实名称",
7358
"zh-cht": "更改{0}的真實名稱",
7359
"xloc": [
7360
- "default.handlebars->31->2106"
7360
+ "default.handlebars->31->2109"
7361
]
7362
},
7363
{
@@ -7439,7 +7439,7 @@
7439
"zh-chs": "更改该用户的密码",
7440
"zh-cht": "更改該用戶的密碼",
7441
"xloc": [
7442
- "default.handlebars->31->2097"
7442
+ "default.handlebars->31->2098"
7443
]
7444
},
7445
{
@@ -7479,7 +7479,7 @@
7479
"zh-chs": "在此处更改您的帐户电邮地址。",
7480
"zh-cht": "在此處更改你的帳戶電郵地址。",
7481
"xloc": [
7482
- "default.handlebars->31->1375"
7482
+ "default.handlebars->31->1376"
7483
]
7484
},
7485
{
@@ -7499,7 +7499,7 @@
7499
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
7500
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
7501
"xloc": [
7502
- "default.handlebars->31->1381"
7502
+ "default.handlebars->31->1382"
7503
]
7504
},
7505
{
@@ -7519,7 +7519,7 @@
7519
"zh-chs": "更改帐户凭据",
7520
"zh-cht": "帳戶憑證已更改",
7521
"xloc": [
7522
- "default.handlebars->31->1786"
7522
+ "default.handlebars->31->1787"
7523
]
7524
},
7525
{
@@ -7539,7 +7539,7 @@
7539
"zh-chs": "{1}组中的设备{0}已更改:{2}",
7540
"zh-cht": "{1}組中的設備{0}已更改:{2}",
7541
"xloc": [
7542
- "default.handlebars->31->1770"
7542
+ "default.handlebars->31->1771"
7543
]
7544
},
7545
{
@@ -7559,7 +7559,7 @@
7559
"zh-chs": "语言从{1}更改为{2}",
7560
"zh-cht": "語言從{1}更改為{2}",
7561
"xloc": [
7562
- "default.handlebars->31->1714"
7562
+ "default.handlebars->31->1715"
7563
]
7564
},
7565
{
@@ -7579,8 +7579,8 @@
7579
"zh-chs": "已更改{0}的用户设备权限",
7580
"zh-cht": "已更改{0}的用戶設備權限",
7581
"xloc": [
7582
- "default.handlebars->31->1772",
7583
- "default.handlebars->31->1793"
7582
+ "default.handlebars->31->1773",
7583
+ "default.handlebars->31->1794"
7584
]
7585
},
7586
{
@@ -7600,7 +7600,7 @@
7600
"zh-chs": "更改语言将需要刷新页面。",
7601
"zh-cht": "更改語言將需要刷新頁面。",
7602
"xloc": [
7603
- "default.handlebars->31->1360"
7603
+ "default.handlebars->31->1361"
7604
]
7605
},
7606
{
@@ -7620,12 +7620,12 @@
7620
"zh-chs": "聊天",
7621
"zh-cht": "聊天",
7622
"xloc": [
7623
- "default.handlebars->31->1855",
7624
- "default.handlebars->31->2093",
7623
+ "default.handlebars->31->1856",
7624
"default.handlebars->31->2094",
7626
- "default.handlebars->31->673",
7627
- "default.handlebars->31->745",
7628
- "default.handlebars->31->767"
7625
+ "default.handlebars->31->2095",
7626
+ "default.handlebars->31->674",
7627
+ "default.handlebars->31->746",
7628
+ "default.handlebars->31->768"
7629
]
7630
},
7631
{
@@ -7645,10 +7645,10 @@
7645
"zh-chs": "聊天并通知",
7646
"zh-cht": "聊天並通知",
7647
"xloc": [
7648
- "default-mobile.handlebars->11->547",
7649
- "default-mobile.handlebars->11->567",
7650
- "default.handlebars->31->1573",
7651
- "default.handlebars->31->1609"
7648
+ "default-mobile.handlebars->11->548",
7649
+ "default-mobile.handlebars->11->568",
7650
+ "default.handlebars->31->1574",
7651
+ "default.handlebars->31->1610"
7652
]
7653
},
7654
{
@@ -7656,8 +7656,8 @@
7656
"nl": "Chatverzoek, klik hier om te accepteren.",
7657
"fr": "Demande de discussion, cliquez ici pour accepter.",
7658
"xloc": [
7659
- "default-mobile.handlebars->11->599",
7660
- "default.handlebars->31->2208"
7659
+ "default-mobile.handlebars->11->600",
7660
+ "default.handlebars->31->2213"
7661
]
7662
},
7663
{
@@ -7697,7 +7697,7 @@
7697
"zh-chs": "车臣",
7698
"zh-cht": "車臣",
7699
"xloc": [
7700
- "default.handlebars->31->1194"
7700
+ "default.handlebars->31->1195"
7701
]
7702
},
7703
{
@@ -7797,8 +7797,8 @@
7797
"zh-chs": "检查...",
7798
"zh-cht": "檢查...",
7799
"xloc": [
7800
- "default.handlebars->31->1160",
7801
- "default.handlebars->31->2305"
7800
+ "default.handlebars->31->1161",
7801
+ "default.handlebars->31->2310"
7802
]
7803
},
7804
{
@@ -7818,7 +7818,7 @@
7818
"zh-chs": "中文",
7819
"zh-cht": "中文",
7820
"xloc": [
7821
- "default.handlebars->31->1195"
7821
+ "default.handlebars->31->1196"
7822
]
7823
},
7824
{
@@ -7838,7 +7838,7 @@
7838
"zh-chs": "中文(香港)",
7839
"zh-cht": "中文(香港)",
7840
"xloc": [
7841
- "default.handlebars->31->1196"
7841
+ "default.handlebars->31->1197"
7842
]
7843
},
7844
{
@@ -7858,7 +7858,7 @@
7858
"zh-chs": "中文(中国)",
7859
"zh-cht": "中文(中國)",
7860
"xloc": [
7861
- "default.handlebars->31->1197"
7861
+ "default.handlebars->31->1198"
7862
]
7863
},
7864
{
@@ -7878,7 +7878,7 @@
7878
"zh-chs": "简体中文",
7879
"zh-cht": "簡體中文",
7880
"xloc": [
7881
- "default.handlebars->31->1357"
7881
+ "default.handlebars->31->1358"
7882
]
7883
},
7884
{
@@ -7898,7 +7898,7 @@
7898
"zh-chs": "中文(新加坡)",
7899
"zh-cht": "中文(新加坡)",
7900
"xloc": [
7901
- "default.handlebars->31->1198"
7901
+ "default.handlebars->31->1199"
7902
]
7903
},
7904
{
@@ -7918,7 +7918,7 @@
7918
"zh-chs": "中文(台湾)",
7919
"zh-cht": "中文(台灣)",
7920
"xloc": [
7921
- "default.handlebars->31->1199"
7921
+ "default.handlebars->31->1200"
7922
]
7923
},
7924
{
@@ -7938,7 +7938,7 @@
7938
"zh-chs": "繁体中文",
7939
"zh-cht": "繁體中文",
7940
"xloc": [
7941
- "default.handlebars->31->1358"
7941
+ "default.handlebars->31->1359"
7942
]
7943
},
7944
{
@@ -7979,7 +7979,7 @@
7979
"zh-chs": "楚瓦什",
7980
"zh-cht": "楚瓦什",
7981
"xloc": [
7982
- "default.handlebars->31->1200"
7982
+ "default.handlebars->31->1201"
7983
]
7984
},
7985
{
@@ -8016,18 +8016,18 @@
8016
"zh-chs": "清除",
8017
"zh-cht": "清除",
8018
"xloc": [
8019
- "default-mobile.handlebars->11->153",
8020
- "default-mobile.handlebars->11->387",
8021
- "default-mobile.handlebars->11->389",
8022
- "default-mobile.handlebars->11->391",
8023
- "default-mobile.handlebars->11->393",
8019
+ "default-mobile.handlebars->11->154",
8020
+ "default-mobile.handlebars->11->388",
8021
+ "default-mobile.handlebars->11->390",
8022
+ "default-mobile.handlebars->11->392",
8023
+ "default-mobile.handlebars->11->394",
8024
"default-mobile.handlebars->11->70",
8025
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
8026
- "default.handlebars->31->1014",
8027
- "default.handlebars->31->1016",
8028
- "default.handlebars->31->1018",
8029
- "default.handlebars->31->1020",
8030
- "default.handlebars->31->1708",
8026
+ "default.handlebars->31->1015",
8027
+ "default.handlebars->31->1017",
8028
+ "default.handlebars->31->1019",
8029
+ "default.handlebars->31->1021",
8030
+ "default.handlebars->31->1709",
8031
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
8032
"default.handlebars->container->column_l->p41->3->1",
8033
"messenger.handlebars->xbottom->1->1->0->5"
@@ -8070,8 +8070,8 @@
8070
"zh-chs": "全部清除",
8071
"zh-cht": "全部清除",
8072
"xloc": [
8073
- "default-mobile.handlebars->11->582",
8074
- "default.handlebars->31->2191"
8073
+ "default-mobile.handlebars->11->583",
8074
+ "default.handlebars->31->2196"
8075
]
8076
},
8077
{
@@ -8091,8 +8091,8 @@
8091
"zh-chs": "清除搜索过滤器",
8092
"zh-cht": "清除搜索過濾器",
8093
"xloc": [
8094
- "default-mobile.handlebars->11->183",
8095
- "default.handlebars->31->236"
8094
+ "default-mobile.handlebars->11->184",
8095
+ "default.handlebars->31->237"
8096
]
8097
},
8098
{
@@ -8112,8 +8112,8 @@
8112
"zh-chs": "清除核心",
8113
"zh-cht": "清除核心",
8114
"xloc": [
8115
- "default-mobile.handlebars->11->501",
8116
- "default.handlebars->31->1129"
8115
+ "default-mobile.handlebars->11->502",
8116
+ "default.handlebars->31->1130"
8117
]
8118
},
8119
{
@@ -8153,8 +8153,8 @@
8153
"zh-chs": "清除此通知",
8154
"zh-cht": "清除此通知",
8155
"xloc": [
8156
- "default-mobile.handlebars->11->581",
8157
- "default.handlebars->31->2190"
8156
+ "default-mobile.handlebars->11->582",
8157
+ "default.handlebars->31->2195"
8158
]
8159
},
8160
{
@@ -8214,8 +8214,8 @@
8214
"zh-chs": "单击此处编辑设备组名称",
8215
"zh-cht": "單擊此處編輯裝置群名稱",
8216
"xloc": [
8217
- "default.handlebars->31->1432",
8218
- "default.handlebars->31->1653"
8217
+ "default.handlebars->31->1433",
8218
+ "default.handlebars->31->1654"
8219
]
8220
},
8221
{
@@ -8235,7 +8235,7 @@
8235
"zh-chs": "单击此处编辑服务器端设备名称",
8236
"zh-cht": "單擊此處編輯伺服器端裝置名稱",
8237
"xloc": [
8238
- "default.handlebars->31->579"
8238
+ "default.handlebars->31->580"
8239
]
8240
},
8241
{
@@ -8255,7 +8255,7 @@
8255
"zh-chs": "单击此处编辑用户组名称",
8256
"zh-cht": "單擊此處編輯用戶群名稱",
8257
"xloc": [
8258
- "default.handlebars->31->1972"
8258
+ "default.handlebars->31->1973"
8259
]
8260
},
8261
{
@@ -8325,8 +8325,8 @@
8325
"zh-chs": "单击确定将验证邮件发送到:",
8326
"zh-cht": "單擊確定將驗證電郵發送到:",
8327
"xloc": [
8328
- "default-mobile.handlebars->11->96",
8329
- "default.handlebars->31->1372"
8328
+ "default-mobile.handlebars->11->97",
8329
+ "default.handlebars->31->1373"
8330
]
8331
},
8332
{
@@ -8387,8 +8387,8 @@
8387
"zh-chs": "客户端控制模式(CCM)",
8388
"zh-cht": "客戶端控制模式(CCM)",
8389
"xloc": [
8390
- "default-mobile.handlebars->11->456",
8391
- "default.handlebars->31->1083"
8390
+ "default-mobile.handlebars->11->457",
8391
+ "default.handlebars->31->1084"
8392
]
8393
},
8394
{
@@ -8408,7 +8408,7 @@
8408
"zh-chs": "客户编号",
8409
"zh-cht": "客戶編號",
8410
"xloc": [
8411
- "default.handlebars->31->1414"
8411
+ "default.handlebars->31->1415"
8412
]
8413
},
8414
{
@@ -8428,7 +8428,7 @@
8428
"zh-chs": "客户端启动的远程访问",
8429
"zh-cht": "客戶端啟動的遠程訪問",
8430
"xloc": [
8431
- "default.handlebars->31->1510"
8431
+ "default.handlebars->31->1511"
8432
]
8433
},
8434
{
@@ -8448,7 +8448,7 @@
8448
"zh-chs": "客户机密",
8449
"zh-cht": "客戶機密",
8450
"xloc": [
8451
- "default.handlebars->31->1415"
8451
+ "default.handlebars->31->1416"
8452
]
8453
},
8454
{
@@ -8492,8 +8492,8 @@
8492
"default-mobile.handlebars->11->68",
8493
"default.handlebars->31->152",
8494
"default.handlebars->31->160",
8495
- "default.handlebars->31->958",
8496
- "default.handlebars->31->991"
8495
+ "default.handlebars->31->959",
8496
+ "default.handlebars->31->992"
8497
]
8498
},
8499
{
@@ -8513,7 +8513,7 @@
8513
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
8514
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
8515
"xloc": [
8516
- "default.handlebars->31->1719"
8516
+ "default.handlebars->31->1720"
8517
]
8518
},
8519
{
@@ -8615,7 +8615,7 @@
8615
"zh-chs": "命令",
8616
"zh-cht": "命令",
8617
"xloc": [
8618
- "default.handlebars->31->424"
8618
+ "default.handlebars->31->425"
8619
]
8620
},
8621
{
@@ -8635,10 +8635,10 @@
8635
"zh-chs": "指令",
8636
"zh-cht": "指令",
8637
"xloc": [
8638
- "default-mobile.handlebars->11->569",
8639
- "default.handlebars->31->1611",
8640
- "default.handlebars->31->747",
8641
- "default.handlebars->31->769"
8638
+ "default-mobile.handlebars->11->570",
8639
+ "default.handlebars->31->1612",
8640
+ "default.handlebars->31->748",
8641
+ "default.handlebars->31->770"
8642
]
8643
},
8644
{
@@ -8658,8 +8658,8 @@
8658
"zh-chs": "通用设备组",
8659
"zh-cht": "通用裝置群",
8660
"xloc": [
8661
- "default.handlebars->31->2003",
8662
- "default.handlebars->31->2123"
8661
+ "default.handlebars->31->2004",
8662
+ "default.handlebars->31->2128"
8663
]
8664
},
8665
{
@@ -8679,8 +8679,8 @@
8679
"zh-chs": "通用设备",
8680
"zh-cht": "通用裝置",
8681
"xloc": [
8682
- "default.handlebars->31->2009",
8683
- "default.handlebars->31->2135"
8682
+ "default.handlebars->31->2010",
8683
+ "default.handlebars->31->2140"
8684
]
8685
},
8686
{
@@ -8688,8 +8688,8 @@
8688
"nl": "Compileer tijd",
8689
"fr": "Temps de compilation",
8690
"xloc": [
8691
- "default-mobile.handlebars->11->429",
8692
- "default.handlebars->31->1046"
8691
+ "default-mobile.handlebars->11->430",
8692
+ "default.handlebars->31->1047"
8693
]
8694
},
8695
{
@@ -8709,7 +8709,7 @@
8709
"zh-chs": "压缩档案...",
8710
"zh-cht": "壓縮檔案...",
8711
"xloc": [
8712
- "default.handlebars->31->986"
8712
+ "default.handlebars->31->987"
8713
]
8714
},
8715
{
@@ -8729,16 +8729,16 @@
8729
"zh-chs": "确认",
8730
"zh-cht": "確認",
8731
"xloc": [
8732
- "default-mobile.handlebars->11->320",
8733
- "default-mobile.handlebars->11->523",
8734
- "default.handlebars->31->1521",
8735
- "default.handlebars->31->1883",
8736
- "default.handlebars->31->1962",
8737
- "default.handlebars->31->2023",
8738
- "default.handlebars->31->2121",
8739
- "default.handlebars->31->481",
8740
- "default.handlebars->31->845",
8741
- "default.handlebars->31->854"
8732
+ "default-mobile.handlebars->11->321",
8733
+ "default-mobile.handlebars->11->524",
8734
+ "default.handlebars->31->1522",
8735
+ "default.handlebars->31->1884",
8736
+ "default.handlebars->31->1963",
8737
+ "default.handlebars->31->2024",
8738
+ "default.handlebars->31->2126",
8739
+ "default.handlebars->31->482",
8740
+ "default.handlebars->31->846",
8741
+ "default.handlebars->31->855"
8742
]
8743
},
8744
{
@@ -8758,8 +8758,8 @@
8758
"zh-chs": "确认将1个副本复制到此位置?",
8759
"zh-cht": "確認將1個副本複製到此位置?",
8760
"xloc": [
8761
- "default-mobile.handlebars->11->382",
8762
- "default.handlebars->31->1009"
8761
+ "default-mobile.handlebars->11->383",
8762
+ "default.handlebars->31->1010"
8763
]
8764
},
8765
{
@@ -8779,7 +8779,7 @@
8779
"zh-chs": "确认{0}个条目的复制到此位置?",
8780
"zh-cht": "確認{0}個條目的複製到此位置?",
8781
"xloc": [
8782
- "default.handlebars->31->1008"
8782
+ "default.handlebars->31->1009"
8783
]
8784
},
8785
{
@@ -8799,7 +8799,7 @@
8799
"zh-chs": "确认{0}个条目的副本到此位置?",
8800
"zh-cht": "確認{0}個條目的副本到此位置?",
8801
"xloc": [
8802
- "default-mobile.handlebars->11->381"
8802
+ "default-mobile.handlebars->11->382"
8803
]
8804
},
8805
{
@@ -8819,7 +8819,7 @@
8819
"zh-chs": "确认删除选定的帐户?",
8820
"zh-cht": "確認刪除所選帳戶?",
8821
"xloc": [
8822
- "default.handlebars->31->1882"
8822
+ "default.handlebars->31->1883"
8823
]
8824
},
8825
{
@@ -8839,7 +8839,7 @@
8839
"zh-chs": "确认删除选定的设备?",
8840
"zh-cht": "確認刪除所選裝置?",
8841
"xloc": [
8842
- "default.handlebars->31->480"
8842
+ "default.handlebars->31->481"
8843
]
8844
},
8845
{
@@ -8859,7 +8859,7 @@
8859
"zh-chs": "确认删除选定的用户组?",
8860
"zh-cht": "確認刪除所選用戶群?",
8861
"xloc": [
8862
- "default.handlebars->31->1961"
8862
+ "default.handlebars->31->1962"
8863
]
8864
},
8865
{
@@ -8879,7 +8879,7 @@
8879
"zh-chs": "确认删除用户{0}?",
8880
"zh-cht": "確認刪除用戶{0}?",
8881
"xloc": [
8882
- "default.handlebars->31->2120"
8882
+ "default.handlebars->31->2125"
8883
]
8884
},
8885
{
@@ -8899,7 +8899,7 @@
8899
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
8900
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8901
"xloc": [
8902
- "default.handlebars->31->2026"
8902
+ "default.handlebars->31->2027"
8903
]
8904
},
8905
{
@@ -8919,7 +8919,7 @@
8919
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8920
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8921
"xloc": [
8922
- "default.handlebars->31->2152"
8922
+ "default.handlebars->31->2157"
8923
]
8924
},
8925
{
@@ -8939,8 +8939,8 @@
8939
"zh-chs": "确认将1个条目移动到此位置?",
8940
"zh-cht": "確認將1個條目移動到此位置?",
8941
"xloc": [
8942
- "default-mobile.handlebars->11->384",
8943
- "default.handlebars->31->1011"
8942
+ "default-mobile.handlebars->11->385",
8943
+ "default.handlebars->31->1012"
8944
]
8945
},
8946
{
@@ -8960,7 +8960,7 @@
8960
"zh-chs": "确认将{0}个条目移到此位置?",
8961
"zh-cht": "確認將{0}個條目移到該位置?",
8962
"xloc": [
8963
- "default.handlebars->31->1010"
8963
+ "default.handlebars->31->1011"
8964
]
8965
},
8966
{
@@ -8980,7 +8980,7 @@
8980
"zh-chs": "确认将{0}个条目移到该位置?",
8981
"zh-cht": "確認將{0}個條目移到該位置?",
8982
"xloc": [
8983
- "default-mobile.handlebars->11->383"
8983
+ "default-mobile.handlebars->11->384"
8984
]
8985
},
8986
{
@@ -9000,7 +9000,7 @@
9000
"zh-chs": "确认覆盖?",
9001
"zh-cht": "確認覆蓋?",
9002
"xloc": [
9003
- "default.handlebars->31->1702"
9003
+ "default.handlebars->31->1703"
9004
]
9005
},
9006
{
@@ -9020,8 +9020,8 @@
9020
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
9021
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
9022
"xloc": [
9023
- "default.handlebars->31->2016",
9024
- "default.handlebars->31->2143"
9023
+ "default.handlebars->31->2017",
9024
+ "default.handlebars->31->2148"
9025
]
9026
},
9027
{
@@ -9041,8 +9041,8 @@
9041
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
9042
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
9043
"xloc": [
9044
- "default.handlebars->31->2018",
9045
- "default.handlebars->31->2156"
9044
+ "default.handlebars->31->2019",
9045
+ "default.handlebars->31->2161"
9046
]
9047
},
9048
{
@@ -9062,7 +9062,7 @@
9062
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
9063
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
9064
"xloc": [
9065
- "default.handlebars->31->2145"
9065
+ "default.handlebars->31->2150"
9066
]
9067
},
9068
{
@@ -9082,7 +9082,7 @@
9082
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
9083
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
9084
"xloc": [
9085
- "default.handlebars->31->2148"
9085
+ "default.handlebars->31->2153"
9086
]
9087
},
9088
{
@@ -9102,8 +9102,8 @@
9102
"zh-chs": "确认删除访问权限?",
9103
"zh-cht": "確認刪除訪問權限?",
9104
"xloc": [
9105
- "default.handlebars->31->2146",
9106
- "default.handlebars->31->2149"
9105
+ "default.handlebars->31->2151",
9106
+ "default.handlebars->31->2154"
9107
]
9108
},
9109
{
@@ -9123,8 +9123,8 @@
9123
"zh-chs": "确认删除身份验证软件两步登录?",
9124
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
9125
"xloc": [
9126
- "default-mobile.handlebars->11->95",
9127
- "default.handlebars->31->1150"
9126
+ "default-mobile.handlebars->11->96",
9127
+ "default.handlebars->31->1151"
9128
]
9129
},
9130
{
@@ -9161,7 +9161,7 @@
9161
"zh-chs": "确认删除设备共享“{0}”?",
9162
"zh-cht": "確認刪除設備共享“{0}”?",
9163
"xloc": [
9164
- "default.handlebars->31->2141"
9164
+ "default.handlebars->31->2146"
9165
]
9166
},
9167
{
@@ -9215,7 +9215,7 @@
9215
"zh-chs": "确认删除用户“ {0} ”的权限?",
9216
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
9217
"xloc": [
9218
- "default.handlebars->31->1620"
9218
+ "default.handlebars->31->1621"
9219
]
9220
},
9221
{
@@ -9235,7 +9235,7 @@
9235
"zh-chs": "确认删除用户组“ {0} ”的权限?",
9236
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
9237
"xloc": [
9238
- "default.handlebars->31->1622"
9238
+ "default.handlebars->31->1623"
9239
]
9240
},
9241
{
@@ -9272,7 +9272,7 @@
9272
"zh-chs": "确认删除用户{0}?",
9273
"zh-cht": "確認刪除用戶{0}?",
9274
"xloc": [
9275
- "default-mobile.handlebars->11->578"
9275
+ "default-mobile.handlebars->11->579"
9276
]
9277
},
9278
{
@@ -9292,8 +9292,8 @@
9292
"zh-chs": "将{1}入口{2}中的{0}限制到此位置?",
9293
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
9294
"xloc": [
9295
- "default-mobile.handlebars->11->148",
9296
- "default.handlebars->31->1703"
9295
+ "default-mobile.handlebars->11->149",
9296
+ "default.handlebars->31->1704"
9297
]
9298
},
9299
{
@@ -9314,11 +9314,11 @@
9314
"zh-cht": "連接",
9315
"xloc": [
9316
"agent-translations.json",
9317
- "default-mobile.handlebars->11->364",
9317
+ "default-mobile.handlebars->11->365",
9318
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
9319
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
9320
- "default.handlebars->31->1460",
9321
- "default.handlebars->31->981",
9320
+ "default.handlebars->31->1461",
9321
+ "default.handlebars->31->982",
9322
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
9323
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
9324
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -9345,7 +9345,7 @@
9345
"zh-chs": "全部连接",
9346
"zh-cht": "全部連接",
9347
"xloc": [
9348
- "default.handlebars->31->296",
9348
+ "default.handlebars->31->297",
9349
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
9350
]
9351
},
@@ -9366,7 +9366,7 @@
9366
"zh-chs": "连接到服务器",
9367
"zh-cht": "連接到伺服器",
9368
"xloc": [
9369
- "default.handlebars->31->1514"
9369
+ "default.handlebars->31->1515"
9370
]
9371
},
9372
{
@@ -9488,7 +9488,7 @@
9488
"zh-chs": "已连接的英特尔®AMT",
9489
"zh-cht": "已連接的Intel® AMT",
9490
"xloc": [
9491
- "default.handlebars->31->2244"
9491
+ "default.handlebars->31->2249"
9492
]
9493
},
9494
{
@@ -9508,7 +9508,7 @@
9508
"zh-chs": "已连接的用户",
9509
"zh-cht": "已连接的用户",
9510
"xloc": [
9511
- "default.handlebars->31->2249"
9511
+ "default.handlebars->31->2254"
9512
]
9513
},
9514
{
@@ -9528,8 +9528,8 @@
9528
"zh-chs": "现在已连接",
9529
"zh-cht": "現在已連接",
9530
"xloc": [
9531
- "default-mobile.handlebars->11->424",
9532
- "default.handlebars->31->1041"
9531
+ "default-mobile.handlebars->11->425",
9532
+ "default.handlebars->31->1042"
9533
]
9534
},
9535
{
@@ -9570,12 +9570,12 @@
9570
"zh-cht": "正在連線...",
9571
"xloc": [
9572
"default-mobile.handlebars->11->2",
9573
- "default-mobile.handlebars->11->400",
9573
+ "default-mobile.handlebars->11->401",
9574
"default-mobile.handlebars->11->48",
9575
- "default.handlebars->31->1032",
9576
- "default.handlebars->31->252",
9577
- "default.handlebars->31->255",
9578
- "default.handlebars->31->299",
9575
+ "default.handlebars->31->1033",
9576
+ "default.handlebars->31->253",
9577
+ "default.handlebars->31->256",
9578
+ "default.handlebars->31->300",
9579
"default.handlebars->31->9",
9580
"desktop.handlebars->3->2",
9581
"terminal.handlebars->3->2",
@@ -9599,7 +9599,7 @@
9599
"zh-chs": "连接数量",
9600
"zh-cht": "連接數量",
9601
"xloc": [
9602
- "default.handlebars->31->2263"
9602
+ "default.handlebars->31->2268"
9603
]
9604
},
9605
{
@@ -9619,7 +9619,7 @@
9619
"zh-chs": "连接转发器",
9620
"zh-cht": "連接轉發器",
9621
"xloc": [
9622
- "default.handlebars->31->2295"
9622
+ "default.handlebars->31->2300"
9623
]
9624
},
9625
{
@@ -9679,10 +9679,10 @@
9679
"zh-chs": "连接性",
9680
"zh-cht": "連接性",
9681
"xloc": [
9682
- "default-mobile.handlebars->11->284",
9683
- "default.handlebars->31->1660",
9684
- "default.handlebars->31->243",
9685
- "default.handlebars->31->661",
9682
+ "default-mobile.handlebars->11->285",
9683
+ "default.handlebars->31->1661",
9684
+ "default.handlebars->31->244",
9685
+ "default.handlebars->31->662",
9686
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
9687
]
9688
},
@@ -9703,9 +9703,9 @@
9703
"zh-chs": "控制台",
9704
"zh-cht": "控制台",
9705
"xloc": [
9706
- "default-mobile.handlebars->11->299",
9707
- "default.handlebars->31->740",
9708
- "default.handlebars->31->762",
9706
+ "default-mobile.handlebars->11->300",
9707
+ "default.handlebars->31->741",
9708
+ "default.handlebars->31->763",
9709
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
9710
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
9711
"default.handlebars->contextMenu->cxconsole"
@@ -9728,7 +9728,7 @@
9728
"zh-chs": "控制台 -",
9729
"zh-cht": "控制台 -",
9730
"xloc": [
9731
- "default.handlebars->31->580"
9731
+ "default.handlebars->31->581"
9732
]
9733
},
9734
{
@@ -9748,8 +9748,8 @@
9748
"zh-chs": "控制",
9749
"zh-cht": "控制",
9750
"xloc": [
9751
- "default.handlebars->31->739",
9752
- "default.handlebars->31->761",
9751
+ "default.handlebars->31->740",
9752
+ "default.handlebars->31->762",
9753
"messenger.handlebars->13->2"
9754
]
9755
},
@@ -9770,7 +9770,7 @@
9770
"zh-chs": "Cookie编码器",
9771
"zh-cht": "Cookie編碼器",
9772
"xloc": [
9773
- "default.handlebars->31->2279"
9773
+ "default.handlebars->31->2284"
9774
]
9775
},
9776
{
@@ -9835,7 +9835,7 @@
9835
"zh-chs": "将Windows 32位代理URL复制到剪贴板",
9836
"zh-cht": "將Windows 32位代理URL複製到剪貼板",
9837
"xloc": [
9838
- "default.handlebars->31->397"
9838
+ "default.handlebars->31->398"
9839
]
9840
},
9841
{
@@ -9855,7 +9855,7 @@
9855
"zh-chs": "将Windows 64位代理URL复制到剪贴板",
9856
"zh-cht": "將Windows 64位代理URL複製到剪貼板",
9857
"xloc": [
9858
- "default.handlebars->31->401"
9858
+ "default.handlebars->31->402"
9859
]
9860
},
9861
{
@@ -9906,8 +9906,8 @@
9906
"zh-chs": "将代理URL复制到剪贴板",
9907
"zh-cht": "將代理URL複製到剪貼板",
9908
"xloc": [
9909
- "default.handlebars->31->423",
9910
- "default.handlebars->31->425"
9909
+ "default.handlebars->31->424",
9910
+ "default.handlebars->31->426"
9911
]
9912
},
9913
{
@@ -9927,10 +9927,10 @@
9927
"zh-chs": "复制连结到剪贴板",
9928
"zh-cht": "複製連結到剪貼板",
9929
"xloc": [
9930
- "default.handlebars->31->1671",
9931
- "default.handlebars->31->1690",
9930
+ "default.handlebars->31->1672",
9931
+ "default.handlebars->31->1691",
9932
"default.handlebars->31->215",
9933
- "default.handlebars->31->378"
9933
+ "default.handlebars->31->379"
9934
]
9935
},
9936
{
@@ -9950,7 +9950,7 @@
9950
"zh-chs": "将macOS代理URL复制到剪贴板",
9951
"zh-cht": "將macOS代理URL複製到剪貼板",
9952
"xloc": [
9953
- "default.handlebars->31->409"
9953
+ "default.handlebars->31->410"
9954
]
9955
},
9956
{
@@ -10031,7 +10031,7 @@
10031
"zh-chs": "复制:“{0}”到“{1}”",
10032
"zh-cht": "複製:“{0}”到“{1}”",
10033
"xloc": [
10034
- "default.handlebars->31->1762"
10034
+ "default.handlebars->31->1763"
10035
]
10036
},
10037
{
@@ -10177,7 +10177,7 @@
10177
"zh-chs": "核心服务器",
10178
"zh-cht": "核心伺服器",
10179
"xloc": [
10180
- "default.handlebars->31->2278"
10180
+ "default.handlebars->31->2283"
10181
]
10182
},
10183
{
@@ -10197,7 +10197,7 @@
10197
"zh-chs": "科西嘉文",
10198
"zh-cht": "科西嘉文",
10199
"xloc": [
10200
- "default.handlebars->31->1201"
10200
+ "default.handlebars->31->1202"
10201
]
10202
},
10203
{
@@ -10217,7 +10217,7 @@
10217
"zh-chs": "创建帐号",
10218
"zh-cht": "創建帳號",
10219
"xloc": [
10220
- "default.handlebars->31->1930",
10220
+ "default.handlebars->31->1931",
10221
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
10222
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
10223
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -10240,7 +10240,7 @@
10240
"zh-chs": "创建设备组",
10241
"zh-cht": "創建裝置群",
10242
"xloc": [
10243
- "default-mobile.handlebars->11->123"
10243
+ "default-mobile.handlebars->11->124"
10244
]
10245
},
10246
{
@@ -10260,7 +10260,7 @@
10260
"zh-chs": "创建用户组",
10261
"zh-cht": "創建用戶群",
10262
"xloc": [
10263
- "default.handlebars->31->1969"
10263
+ "default.handlebars->31->1970"
10264
]
10265
},
10266
{
@@ -10280,7 +10280,7 @@
10280
"zh-chs": "创建连结以与访客共享此设备",
10281
"zh-cht": "創建鏈結以與訪客共享此裝置",
10282
"xloc": [
10283
- "default.handlebars->31->676"
10283
+ "default.handlebars->31->677"
10284
]
10285
},
10286
{
@@ -10300,7 +10300,7 @@
10300
"zh-chs": "使用以下选项创建一个新的设备组。",
10301
"zh-cht": "使用以下選項創建一個新的裝置群。",
10302
"xloc": [
10303
- "default.handlebars->31->1395"
10303
+ "default.handlebars->31->1396"
10304
]
10305
},
10306
{
@@ -10320,7 +10320,7 @@
10320
"zh-chs": "创建一个新的设备组。",
10321
"zh-cht": "創建一個新的裝置群。",
10322
"xloc": [
10323
- "default.handlebars->31->245"
10323
+ "default.handlebars->31->246"
10324
]
10325
},
10326
{
@@ -10340,7 +10340,7 @@
10340
"zh-chs": "创建文件夹(如果不存在)?",
10341
"zh-cht": "創建文件夾(如果不存在)?",
10342
"xloc": [
10343
- "default.handlebars->31->507"
10343
+ "default.handlebars->31->508"
10344
]
10345
},
10346
{
@@ -10360,7 +10360,7 @@
10360
"zh-chs": "创建文件夹:“{0}”",
10361
"zh-cht": "創建文件夾:“{0}”",
10362
"xloc": [
10363
- "default.handlebars->31->1755"
10363
+ "default.handlebars->31->1756"
10364
]
10365
},
10366
{
@@ -10380,7 +10380,7 @@
10380
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
10381
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
10382
"xloc": [
10383
- "default.handlebars->31->1894"
10383
+ "default.handlebars->31->1895"
10384
]
10385
},
10386
{
@@ -10422,7 +10422,7 @@
10422
"zh-chs": "创建的设备组:{0}",
10423
"zh-cht": "創建的設備組:{0}",
10424
"xloc": [
10425
- "default.handlebars->31->1766"
10425
+ "default.handlebars->31->1767"
10426
]
10427
},
10428
{
@@ -10442,7 +10442,7 @@
10442
"zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。",
10443
"zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
10444
"xloc": [
10445
- "default.handlebars->31->780"
10445
+ "default.handlebars->31->781"
10446
]
10447
},
10448
{
@@ -10496,7 +10496,7 @@
10496
"zh-chs": "创建",
10497
"zh-cht": "創建",
10498
"xloc": [
10499
- "default.handlebars->31->2055"
10499
+ "default.handlebars->31->2056"
10500
]
10501
},
10502
{
@@ -10516,7 +10516,7 @@
10516
"zh-chs": "创建时间",
10517
"zh-cht": "創作時間",
10518
"xloc": [
10519
- "default.handlebars->31->1442"
10519
+ "default.handlebars->31->1443"
10520
]
10521
},
10522
{
@@ -10558,8 +10558,8 @@
10558
"zh-chs": "创建者",
10559
"zh-cht": "創作者",
10560
"xloc": [
10561
- "default.handlebars->31->1440",
10562
- "default.handlebars->31->1441"
10561
+ "default.handlebars->31->1441",
10562
+ "default.handlebars->31->1442"
10563
]
10564
},
10565
{
@@ -10579,7 +10579,7 @@
10579
"zh-chs": "证书",
10580
"zh-cht": "證書",
10581
"xloc": [
10582
- "default.handlebars->31->1412"
10582
+ "default.handlebars->31->1413"
10583
]
10584
},
10585
{
@@ -10599,7 +10599,7 @@
10599
"zh-chs": "克里语",
10600
"zh-cht": "克里語",
10601
"xloc": [
10602
- "default.handlebars->31->1202"
10602
+ "default.handlebars->31->1203"
10603
]
10604
},
10605
{
@@ -10619,7 +10619,7 @@
10619
"zh-chs": "克罗地亚文",
10620
"zh-cht": "克羅地亞文",
10621
"xloc": [
10622
- "default.handlebars->31->1203"
10622
+ "default.handlebars->31->1204"
10623
]
10624
},
10625
{
@@ -10681,11 +10681,11 @@
10681
"zh-chs": "Ctrl",
10682
"zh-cht": "Ctrl",
10683
"xloc": [
10684
- "default-mobile.handlebars->11->353",
10685
- "default-mobile.handlebars->11->357",
10684
+ "default-mobile.handlebars->11->354",
10685
+ "default-mobile.handlebars->11->358",
10686
"default.handlebars->31->57",
10687
- "default.handlebars->31->934",
10688
- "default.handlebars->31->938",
10687
+ "default.handlebars->31->935",
10688
+ "default.handlebars->31->939",
10689
"terminal.handlebars->3->6"
10690
]
10691
},
@@ -10793,8 +10793,8 @@
10793
"nl": "Huidig wachtwoord is niet correct.",
10794
"fr": "Le mot de passe actuel n'est pas correct.",
10795
"xloc": [
10796
- "default-mobile.handlebars->11->609",
10797
- "default.handlebars->31->2218"
10796
+ "default-mobile.handlebars->11->610",
10797
+ "default.handlebars->31->2223"
10798
]
10799
},
10800
{
@@ -10802,7 +10802,7 @@
10802
"nl": "Aanpassen",
10803
"fr": "Personnaliser",
10804
"xloc": [
10805
- "default-mobile.handlebars->11->335"
10805
+ "default-mobile.handlebars->11->336"
10806
]
10807
},
10808
{
@@ -10853,7 +10853,7 @@
10853
"zh-chs": "捷克文",
10854
"zh-cht": "捷克文",
10855
"xloc": [
10856
- "default.handlebars->31->1204"
10856
+ "default.handlebars->31->1205"
10857
]
10858
},
10859
{
@@ -10893,14 +10893,14 @@
10893
"zh-chs": "丹麦文",
10894
"zh-cht": "丹麥文",
10895
"xloc": [
10896
- "default.handlebars->31->1205"
10896
+ "default.handlebars->31->1206"
10897
]
10898
},
10899
{
10900
"en": "Dark mode",
10901
"nl": "Donkere modus",
10902
"xloc": [
10903
- "default-mobile.handlebars->11->82",
10903
+ "default-mobile.handlebars->11->83",
10904
"default.handlebars->31->60"
10905
]
10906
},
@@ -10921,7 +10921,7 @@
10921
"zh-chs": "数据通道",
10922
"zh-cht": "數據通道",
10923
"xloc": [
10924
- "default.handlebars->31->902",
10924
+ "default.handlebars->31->903",
10925
"desktop.handlebars->3->11"
10926
]
10927
},
@@ -10942,7 +10942,7 @@
10942
"zh-chs": "日期和时间",
10943
"zh-cht": "日期和時間",
10944
"xloc": [
10945
- "default.handlebars->31->1363"
10945
+ "default.handlebars->31->1364"
10946
]
10947
},
10948
{
@@ -10962,8 +10962,8 @@
10962
"zh-chs": "天",
10963
"zh-cht": "天",
10964
"xloc": [
10965
- "default-mobile.handlebars->11->310",
10966
- "default.handlebars->31->829"
10965
+ "default-mobile.handlebars->11->311",
10966
+ "default.handlebars->31->830"
10967
]
10968
},
10969
{
@@ -10983,7 +10983,7 @@
10983
"zh-chs": "停用",
10984
"zh-cht": "停用",
10985
"xloc": [
10986
- "default.handlebars->31->1493"
10986
+ "default.handlebars->31->1494"
10987
]
10988
},
10989
{
@@ -11003,7 +11003,7 @@
11003
"zh-chs": "如果设置停用CCM",
11004
"zh-cht": "如果設置停用CCM",
11005
"xloc": [
11006
- "default.handlebars->31->1505"
11006
+ "default.handlebars->31->1506"
11007
]
11008
},
11009
{
@@ -11040,8 +11040,8 @@
11040
"zh-chs": "沉睡",
11041
"zh-cht": "沉睡",
11042
"xloc": [
11043
- "default-mobile.handlebars->11->221",
11044
- "default.handlebars->31->436"
11043
+ "default-mobile.handlebars->11->222",
11044
+ "default.handlebars->31->437"
11045
]
11046
},
11047
{
@@ -11061,10 +11061,10 @@
11061
"zh-chs": "默认",
11062
"zh-cht": "默認",
11063
"xloc": [
11064
- "default.handlebars->31->1917",
11065
- "default.handlebars->31->1965",
11066
- "default.handlebars->31->1976",
11067
- "default.handlebars->31->2044"
11064
+ "default.handlebars->31->1918",
11065
+ "default.handlebars->31->1966",
11066
+ "default.handlebars->31->1977",
11067
+ "default.handlebars->31->2045"
11068
]
11069
},
11070
{
@@ -11072,8 +11072,8 @@
11072
"fr": "Suppr",
11073
"nl": "Del",
11074
"xloc": [
11075
- "default-mobile.handlebars->11->341",
11076
- "default.handlebars->31->922"
11075
+ "default-mobile.handlebars->11->342",
11076
+ "default.handlebars->31->923"
11077
]
11078
},
11079
{
@@ -11093,13 +11093,13 @@
11093
"zh-chs": "删除",
11094
"zh-cht": "刪除",
11095
"xloc": [
11096
- "default-mobile.handlebars->11->143",
11097
- "default-mobile.handlebars->11->374",
11096
+ "default-mobile.handlebars->11->144",
11097
+ "default-mobile.handlebars->11->375",
11098
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
11099
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
11100
- "default.handlebars->31->1000",
11101
- "default.handlebars->31->1697",
11102
- "default.handlebars->31->550",
11100
+ "default.handlebars->31->1001",
11101
+ "default.handlebars->31->1698",
11102
+ "default.handlebars->31->551",
11103
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
11104
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
11105
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -11127,8 +11127,8 @@
11127
"zh-chs": "删除帐户",
11128
"zh-cht": "刪除帳戶",
11129
"xloc": [
11130
- "default-mobile.handlebars->11->105",
11131
- "default.handlebars->31->1380"
11130
+ "default-mobile.handlebars->11->106",
11131
+ "default.handlebars->31->1381"
11132
]
11133
},
11134
{
@@ -11148,7 +11148,7 @@
11148
"zh-chs": "删除帐户",
11149
"zh-cht": "刪除帳戶",
11150
"xloc": [
11151
- "default.handlebars->31->1884"
11151
+ "default.handlebars->31->1885"
11152
]
11153
},
11154
{
@@ -11168,8 +11168,8 @@
11168
"zh-chs": "删除设备",
11169
"zh-cht": "刪除裝置",
11170
"xloc": [
11171
- "default-mobile.handlebars->11->289",
11172
- "default.handlebars->31->680"
11171
+ "default-mobile.handlebars->11->290",
11172
+ "default.handlebars->31->681"
11173
]
11174
},
11175
{
@@ -11189,10 +11189,10 @@
11189
"zh-chs": "删除群组",
11190
"zh-cht": "刪除群組",
11191
"xloc": [
11192
- "default-mobile.handlebars->11->521",
11193
- "default-mobile.handlebars->11->524",
11194
- "default.handlebars->31->1489",
11195
- "default.handlebars->31->1522"
11192
+ "default-mobile.handlebars->11->522",
11193
+ "default-mobile.handlebars->11->525",
11194
+ "default.handlebars->31->1490",
11195
+ "default.handlebars->31->1523"
11196
]
11197
},
11198
{
@@ -11212,8 +11212,8 @@
11212
"zh-chs": "删除节点",
11213
"zh-cht": "刪除節點",
11214
"xloc": [
11215
- "default-mobile.handlebars->11->318",
11216
- "default.handlebars->31->855"
11215
+ "default-mobile.handlebars->11->319",
11216
+ "default.handlebars->31->856"
11217
]
11218
},
11219
{
@@ -11233,7 +11233,7 @@
11233
"zh-chs": "删除节点",
11234
"zh-cht": "刪除節點",
11235
"xloc": [
11236
- "default.handlebars->31->482"
11236
+ "default.handlebars->31->483"
11237
]
11238
},
11239
{
@@ -11253,7 +11253,7 @@
11253
"zh-chs": "删除用户",
11254
"zh-cht": "刪除用戶",
11255
"xloc": [
11256
- "default.handlebars->31->2096"
11256
+ "default.handlebars->31->2097"
11257
]
11258
},
11259
{
@@ -11273,8 +11273,8 @@
11273
"zh-chs": "删除用户群组",
11274
"zh-cht": "刪除用戶群組",
11275
"xloc": [
11276
- "default.handlebars->31->2014",
11277
- "default.handlebars->31->2024"
11276
+ "default.handlebars->31->2015",
11277
+ "default.handlebars->31->2025"
11278
]
11279
},
11280
{
@@ -11294,7 +11294,7 @@
11294
"zh-chs": "删除用户群组",
11295
"zh-cht": "刪除用戶群組",
11296
"xloc": [
11297
- "default.handlebars->31->1963"
11297
+ "default.handlebars->31->1964"
11298
]
11299
},
11300
{
@@ -11314,7 +11314,7 @@
11314
"zh-chs": "删除用户{0}",
11315
"zh-cht": "刪除用戶{0}",
11316
"xloc": [
11317
- "default.handlebars->31->2119"
11317
+ "default.handlebars->31->2124"
11318
]
11319
},
11320
{
@@ -11335,7 +11335,7 @@
11335
"zh-cht": "刪除帳戶",
11336
"xloc": [
11337
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
11338
- "default.handlebars->31->1880",
11338
+ "default.handlebars->31->1881",
11339
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
11340
]
11341
},
@@ -11356,7 +11356,7 @@
11356
"zh-chs": "删除设备",
11357
"zh-cht": "刪除裝置",
11358
"xloc": [
11359
- "default.handlebars->31->474"
11359
+ "default.handlebars->31->475"
11360
]
11361
},
11362
{
@@ -11376,7 +11376,7 @@
11376
"zh-chs": "删除群组",
11377
"zh-cht": "刪除群組",
11378
"xloc": [
11379
- "default.handlebars->31->1959"
11379
+ "default.handlebars->31->1960"
11380
]
11381
},
11382
{
@@ -11396,7 +11396,7 @@
11396
"zh-chs": "删除项目?",
11397
"zh-cht": "刪除項目?",
11398
"xloc": [
11399
- "default.handlebars->31->551"
11399
+ "default.handlebars->31->552"
11400
]
11401
},
11402
{
@@ -11416,7 +11416,7 @@
11416
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
11417
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
11418
"xloc": [
11419
- "default.handlebars->31->1757"
11419
+ "default.handlebars->31->1758"
11420
]
11421
},
11422
{
@@ -11436,10 +11436,10 @@
11436
"zh-chs": "删除所选项目?",
11437
"zh-cht": "刪除所選項目?",
11438
"xloc": [
11439
- "default-mobile.handlebars->11->145",
11440
- "default-mobile.handlebars->11->376",
11441
- "default.handlebars->31->1002",
11442
- "default.handlebars->31->1699"
11439
+ "default-mobile.handlebars->11->146",
11440
+ "default-mobile.handlebars->11->377",
11441
+ "default.handlebars->31->1003",
11442
+ "default.handlebars->31->1700"
11443
]
11444
},
11445
{
@@ -11459,7 +11459,7 @@
11459
"zh-chs": "删除用户群组{0}?",
11460
"zh-cht": "刪除用戶群組{0}?",
11461
"xloc": [
11462
- "default.handlebars->31->2022"
11462
+ "default.handlebars->31->2023"
11463
]
11464
},
11465
{
@@ -11479,10 +11479,10 @@
11479
"zh-chs": "删除{0}个所选项目?",
11480
"zh-cht": "刪除{0}個所選項目?",
11481
"xloc": [
11482
- "default-mobile.handlebars->11->144",
11483
- "default-mobile.handlebars->11->375",
11484
- "default.handlebars->31->1001",
11485
- "default.handlebars->31->1698"
11482
+ "default-mobile.handlebars->11->145",
11483
+ "default-mobile.handlebars->11->376",
11484
+ "default.handlebars->31->1002",
11485
+ "default.handlebars->31->1699"
11486
]
11487
},
11488
{
@@ -11502,7 +11502,7 @@
11502
"zh-chs": "删除{0}?",
11503
"zh-cht": "刪除{0}?",
11504
"xloc": [
11505
- "default-mobile.handlebars->11->319"
11505
+ "default-mobile.handlebars->11->320"
11506
]
11507
},
11508
{
@@ -11522,7 +11522,7 @@
11522
"zh-chs": "删除:“{0}”",
11523
"zh-cht": "刪除:“{0}”",
11524
"xloc": [
11525
- "default.handlebars->31->1756"
11525
+ "default.handlebars->31->1757"
11526
]
11527
},
11528
{
@@ -11542,7 +11542,7 @@
11542
"zh-chs": "删除:“{0}”,{1}个元素已删除",
11543
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
11544
"xloc": [
11545
- "default.handlebars->31->1758"
11545
+ "default.handlebars->31->1759"
11546
]
11547
},
11548
{
@@ -11562,8 +11562,8 @@
11562
"zh-chs": "被拒绝",
11563
"zh-cht": "被拒絕",
11564
"xloc": [
11565
- "default-mobile.handlebars->11->329",
11566
- "default.handlebars->31->898",
11565
+ "default-mobile.handlebars->11->330",
11566
+ "default.handlebars->31->899",
11567
"desktop.handlebars->3->7",
11568
"terminal.handlebars->3->11"
11569
]
@@ -11654,25 +11654,25 @@
11654
"zh-chs": "描述",
11655
"zh-cht": "描述",
11656
"xloc": [
11657
- "default-mobile.handlebars->11->122",
11658
- "default-mobile.handlebars->11->254",
11657
+ "default-mobile.handlebars->11->123",
11658
"default-mobile.handlebars->11->255",
11660
- "default-mobile.handlebars->11->324",
11661
- "default-mobile.handlebars->11->437",
11662
- "default-mobile.handlebars->11->512",
11663
- "default-mobile.handlebars->11->526",
11664
- "default.handlebars->31->1054",
11665
- "default.handlebars->31->1064",
11666
- "default.handlebars->31->1400",
11667
- "default.handlebars->31->1437",
11668
- "default.handlebars->31->1524",
11669
- "default.handlebars->31->1968",
11670
- "default.handlebars->31->1978",
11659
+ "default-mobile.handlebars->11->256",
11660
+ "default-mobile.handlebars->11->325",
11661
+ "default-mobile.handlebars->11->438",
11662
+ "default-mobile.handlebars->11->513",
11663
+ "default-mobile.handlebars->11->527",
11664
+ "default.handlebars->31->1055",
11665
+ "default.handlebars->31->1065",
11666
+ "default.handlebars->31->1401",
11667
+ "default.handlebars->31->1438",
11668
+ "default.handlebars->31->1525",
11669
+ "default.handlebars->31->1969",
11670
"default.handlebars->31->1979",
11672
- "default.handlebars->31->2020",
11673
- "default.handlebars->31->591",
11671
+ "default.handlebars->31->1980",
11672
+ "default.handlebars->31->2021",
11673
"default.handlebars->31->592",
11675
- "default.handlebars->31->893",
11674
+ "default.handlebars->31->593",
11675
+ "default.handlebars->31->894",
11676
"default.handlebars->31->92",
11677
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
11678
]
@@ -11711,13 +11711,13 @@
11711
"zh-chs": "桌面",
11712
"zh-cht": "桌面",
11713
"xloc": [
11714
- "default-mobile.handlebars->11->296",
11715
- "default.handlebars->31->1530",
11716
- "default.handlebars->31->2168",
11717
- "default.handlebars->31->556",
11718
- "default.handlebars->31->726",
11719
- "default.handlebars->31->782",
11720
- "default.handlebars->31->964",
11714
+ "default-mobile.handlebars->11->297",
11715
+ "default.handlebars->31->1531",
11716
+ "default.handlebars->31->2173",
11717
+ "default.handlebars->31->557",
11718
+ "default.handlebars->31->727",
11719
+ "default.handlebars->31->783",
11720
+ "default.handlebars->31->965",
11721
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
11722
"default.handlebars->contextMenu->cxdesktop",
11723
"desktop.handlebars->3->23"
@@ -11760,10 +11760,10 @@
11760
"zh-chs": "桌面通知",
11761
"zh-cht": "桌面通知",
11762
"xloc": [
11763
- "default.handlebars->31->1451",
11764
- "default.handlebars->31->1983",
11765
- "default.handlebars->31->2070",
11766
- "default.handlebars->31->642"
11763
+ "default.handlebars->31->1452",
11764
+ "default.handlebars->31->1984",
11765
+ "default.handlebars->31->2071",
11766
+ "default.handlebars->31->643"
11767
]
11768
},
11769
{
@@ -11783,10 +11783,10 @@
11783
"zh-chs": "桌面提示",
11784
"zh-cht": "桌面提示",
11785
"xloc": [
11786
- "default.handlebars->31->1450",
11787
- "default.handlebars->31->1982",
11788
- "default.handlebars->31->2069",
11789
- "default.handlebars->31->641"
11786
+ "default.handlebars->31->1451",
11787
+ "default.handlebars->31->1983",
11788
+ "default.handlebars->31->2070",
11789
+ "default.handlebars->31->642"
11790
]
11791
},
11792
{
@@ -11806,10 +11806,10 @@
11806
"zh-chs": "桌面提示+工具栏",
11807
"zh-cht": "桌面提示+工具欄",
11808
"xloc": [
11809
- "default.handlebars->31->1448",
11810
- "default.handlebars->31->1980",
11811
- "default.handlebars->31->2067",
11812
- "default.handlebars->31->639"
11809
+ "default.handlebars->31->1449",
11810
+ "default.handlebars->31->1981",
11811
+ "default.handlebars->31->2068",
11812
+ "default.handlebars->31->640"
11813
]
11814
},
11815
{
@@ -11871,10 +11871,10 @@
11871
"zh-chs": "桌面工具栏",
11872
"zh-cht": "桌面工具欄",
11873
"xloc": [
11874
- "default.handlebars->31->1449",
11875
- "default.handlebars->31->1981",
11876
- "default.handlebars->31->2068",
11877
- "default.handlebars->31->640"
11874
+ "default.handlebars->31->1450",
11875
+ "default.handlebars->31->1982",
11876
+ "default.handlebars->31->2069",
11877
+ "default.handlebars->31->641"
11878
]
11879
},
11880
{
@@ -11882,7 +11882,7 @@
11882
"nl": "Desktop, Alleen kijken",
11883
"fr": "Bureau en visualisation seulement",
11884
"xloc": [
11885
- "default.handlebars->31->785"
11885
+ "default.handlebars->31->786"
11886
]
11887
},
11888
{
@@ -11902,7 +11902,7 @@
11902
"zh-chs": "桌面时段",
11903
"zh-cht": "桌面時段",
11904
"xloc": [
11905
- "default.handlebars->31->963"
11905
+ "default.handlebars->31->964"
11906
]
11907
},
11908
{
@@ -11943,7 +11943,7 @@
11943
"zh-chs": "细节",
11944
"zh-cht": "細節",
11945
"xloc": [
11946
- "default-mobile.handlebars->11->298",
11946
+ "default-mobile.handlebars->11->299",
11947
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
11948
"default.handlebars->contextMenu->cxdetails"
11949
]
@@ -11985,11 +11985,11 @@
11985
"zh-chs": "设备",
11986
"zh-cht": "裝置",
11987
"xloc": [
11988
- "default-mobile.handlebars->11->432",
11989
- "default.handlebars->31->1049",
11990
- "default.handlebars->31->1553",
11988
+ "default-mobile.handlebars->11->433",
11989
+ "default.handlebars->31->1050",
11990
+ "default.handlebars->31->1554",
11991
"default.handlebars->31->201",
11992
- "default.handlebars->31->2138",
11992
+ "default.handlebars->31->2143",
11993
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
11994
]
11995
},
@@ -12010,9 +12010,9 @@
12010
"zh-chs": "设备指令",
12011
"zh-cht": "裝置指令",
12012
"xloc": [
12013
- "default-mobile.handlebars->11->307",
12013
"default-mobile.handlebars->11->308",
12015
- "default.handlebars->31->820"
12014
+ "default-mobile.handlebars->11->309",
12015
+ "default.handlebars->31->821"
12016
]
12017
},
12018
{
@@ -12053,16 +12053,16 @@
12053
"zh-cht": "裝置群",
12054
"xloc": [
12055
"agent-translations.json",
12056
- "default-mobile.handlebars->11->587",
12057
- "default.handlebars->31->1548",
12058
- "default.handlebars->31->1551",
12056
+ "default-mobile.handlebars->11->588",
12057
+ "default.handlebars->31->1549",
12058
"default.handlebars->31->1552",
12060
- "default.handlebars->31->1831",
12061
- "default.handlebars->31->2006",
12062
- "default.handlebars->31->2012",
12063
- "default.handlebars->31->2126",
12064
- "default.handlebars->31->2177",
12065
- "default.handlebars->31->2196"
12059
+ "default.handlebars->31->1553",
12060
+ "default.handlebars->31->1832",
12061
+ "default.handlebars->31->2007",
12062
+ "default.handlebars->31->2013",
12063
+ "default.handlebars->31->2131",
12064
+ "default.handlebars->31->2182",
12065
+ "default.handlebars->31->2201"
12066
]
12067
},
12068
{
@@ -12082,8 +12082,8 @@
12082
"zh-chs": "设备组用户",
12083
"zh-cht": "裝置群用戶",
12084
"xloc": [
12085
- "default-mobile.handlebars->11->576",
12086
- "default.handlebars->31->1618"
12085
+ "default-mobile.handlebars->11->577",
12086
+ "default.handlebars->31->1619"
12087
]
12088
},
12089
{
@@ -12104,11 +12104,11 @@
12104
"zh-cht": "裝置群",
12105
"xloc": [
12106
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
12107
- "default.handlebars->31->1847",
12108
- "default.handlebars->31->1953",
12109
- "default.handlebars->31->1993",
12110
- "default.handlebars->31->2064",
12111
- "default.handlebars->31->2247",
12107
+ "default.handlebars->31->1848",
12108
+ "default.handlebars->31->1954",
12109
+ "default.handlebars->31->1994",
12110
+ "default.handlebars->31->2065",
12111
+ "default.handlebars->31->2252",
12112
"default.handlebars->container->column_l->p2->p2info->7"
12113
]
12114
},
@@ -12129,7 +12129,7 @@
12129
"zh-chs": "设备信息导出",
12130
"zh-cht": "裝置訊息輸出",
12131
"xloc": [
12132
- "default.handlebars->31->517"
12132
+ "default.handlebars->31->518"
12133
]
12134
},
12135
{
@@ -12149,7 +12149,7 @@
12149
"zh-chs": "设备位置",
12150
"zh-cht": "裝置位置",
12151
"xloc": [
12152
- "default.handlebars->31->856"
12152
+ "default.handlebars->31->857"
12153
]
12154
},
12155
{
@@ -12169,7 +12169,7 @@
12169
"zh-chs": "设备消息",
12170
"zh-cht": "裝置訊息",
12171
"xloc": [
12172
- "default.handlebars->31->777"
12172
+ "default.handlebars->31->778"
12173
]
12174
},
12175
{
@@ -12189,10 +12189,10 @@
12189
"zh-chs": "设备名称",
12190
"zh-cht": "裝置名稱",
12191
"xloc": [
12192
- "default-mobile.handlebars->11->322",
12193
- "default.handlebars->31->2176",
12194
- "default.handlebars->31->313",
12195
- "default.handlebars->31->891",
12192
+ "default-mobile.handlebars->11->323",
12193
+ "default.handlebars->31->2181",
12194
+ "default.handlebars->31->314",
12195
+ "default.handlebars->31->892",
12196
"player.handlebars->3->9"
12197
]
12198
},
@@ -12213,8 +12213,8 @@
12213
"zh-chs": "设备通知",
12214
"zh-cht": "裝置通知",
12215
"xloc": [
12216
- "default.handlebars->31->503",
12217
- "default.handlebars->31->779"
12216
+ "default.handlebars->31->504",
12217
+ "default.handlebars->31->780"
12218
]
12219
},
12220
{
@@ -12222,7 +12222,7 @@
12222
"nl": "Apparaat koppelingslink",
12223
"fr": "Lien de jumelage de l'appareil",
12224
"xloc": [
12225
- "default-mobile.handlebars->11->530"
12225
+ "default-mobile.handlebars->11->531"
12226
]
12227
},
12228
{
@@ -12259,7 +12259,7 @@
12259
"zh-chs": "设备共享链接",
12260
"zh-cht": "設備共享鏈接",
12261
"xloc": [
12262
- "default.handlebars->31->722"
12262
+ "default.handlebars->31->723"
12263
]
12264
},
12265
{
@@ -12279,7 +12279,7 @@
12279
"zh-chs": "设备提示",
12280
"zh-cht": "裝置吐司",
12281
"xloc": [
12282
- "default-mobile.handlebars->11->294"
12282
+ "default-mobile.handlebars->11->295"
12283
]
12284
},
12285
{
@@ -12299,8 +12299,8 @@
12299
"zh-chs": "设备连接。",
12300
"zh-cht": "裝置連接。",
12301
"xloc": [
12302
- "default.handlebars->31->1368",
12303
- "default.handlebars->31->1639"
12302
+ "default.handlebars->31->1369",
12303
+ "default.handlebars->31->1640"
12304
]
12305
},
12306
{
@@ -12320,8 +12320,8 @@
12320
"zh-chs": "设备断开连接。",
12321
"zh-cht": "裝置斷開連接。",
12322
"xloc": [
12323
- "default.handlebars->31->1369",
12324
- "default.handlebars->31->1640"
12323
+ "default.handlebars->31->1370",
12324
+ "default.handlebars->31->1641"
12325
]
12326
},
12327
{
@@ -12341,7 +12341,7 @@
12341
"zh-chs": "创建的设备组:{0}",
12342
"zh-cht": "設備組已創建:{0}",
12343
"xloc": [
12344
- "default.handlebars->31->1787"
12344
+ "default.handlebars->31->1788"
12345
]
12346
},
12347
{
@@ -12361,7 +12361,7 @@
12361
"zh-chs": "设备组已删除:{0}",
12362
"zh-cht": "設備組已刪除:{0}",
12363
"xloc": [
12364
- "default.handlebars->31->1788"
12364
+ "default.handlebars->31->1789"
12365
]
12366
},
12367
{
@@ -12381,7 +12381,7 @@
12381
"zh-chs": "设备组成员身份已更改:{0}",
12382
"zh-cht": "設備組成員身份已更改:{0}",
12383
"xloc": [
12384
- "default.handlebars->31->1789"
12384
+ "default.handlebars->31->1790"
12385
]
12386
},
12387
{
@@ -12401,7 +12401,7 @@
12401
"zh-chs": "其他设备组管理员可以查看和更改设备组注释。",
12402
"zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。",
12403
"xloc": [
12404
- "default.handlebars->31->774"
12404
+ "default.handlebars->31->775"
12405
]
12406
},
12407
{
@@ -12421,7 +12421,7 @@
12421
"zh-chs": "设备组通知已更改",
12422
"zh-cht": "設備組通知已更改",
12423
"xloc": [
12424
- "default.handlebars->31->1784"
12424
+ "default.handlebars->31->1785"
12425
]
12426
},
12427
{
@@ -12441,7 +12441,7 @@
12441
"zh-chs": "未删除的设备组:{0}",
12442
"zh-cht": "未刪除的設備組:{0}",
12443
"xloc": [
12444
- "default.handlebars->31->1767"
12444
+ "default.handlebars->31->1768"
12445
]
12446
},
12447
{
@@ -12461,10 +12461,10 @@
12461
"zh-chs": "设备由电池供电",
12462
"zh-cht": "裝置由電池供電",
12463
"xloc": [
12464
- "default-mobile.handlebars->11->189",
12465
- "default-mobile.handlebars->11->245",
12466
- "default.handlebars->31->260",
12467
- "default.handlebars->31->577"
12464
+ "default-mobile.handlebars->11->190",
12465
+ "default-mobile.handlebars->11->246",
12466
+ "default.handlebars->31->261",
12467
+ "default.handlebars->31->578"
12468
]
12469
},
12470
{
@@ -12484,7 +12484,7 @@
12484
"zh-chs": "检测到设备,但无法获得电源状态。",
12485
"zh-cht": "檢測到裝置,但無法獲得電源狀態。",
12486
"xloc": [
12487
- "default.handlebars->31->441"
12487
+ "default.handlebars->31->442"
12488
]
12489
},
12490
{
@@ -12504,8 +12504,8 @@
12504
"zh-chs": "设备正在休眠(S4)",
12505
"zh-cht": "裝置正在休眠(S4)",
12506
"xloc": [
12507
- "default-mobile.handlebars->11->229",
12508
- "default.handlebars->31->447"
12507
+ "default-mobile.handlebars->11->230",
12508
+ "default.handlebars->31->448"
12509
]
12510
},
12511
{
@@ -12525,8 +12525,8 @@
12525
"zh-chs": "设备处于深度睡眠状态(S3)",
12526
"zh-cht": "裝置處於深度睡眠狀態(S3)",
12527
"xloc": [
12528
- "default-mobile.handlebars->11->228",
12529
- "default.handlebars->31->446"
12528
+ "default-mobile.handlebars->11->229",
12529
+ "default.handlebars->31->447"
12530
]
12531
},
12532
{
@@ -12546,7 +12546,7 @@
12546
"zh-chs": "设备处于深度睡眠状态(S3)。",
12547
"zh-cht": "裝置處於深度睡眠狀態(S3)。",
12548
"xloc": [
12549
- "default.handlebars->31->435"
12549
+ "default.handlebars->31->436"
12550
]
12551
},
12552
{
@@ -12566,7 +12566,7 @@
12566
"zh-chs": "设备处于休眠状态(S4)。",
12567
"zh-cht": "裝置處於休眠狀態(S4)。",
12568
"xloc": [
12569
- "default.handlebars->31->437"
12569
+ "default.handlebars->31->438"
12570
]
12571
},
12572
{
@@ -12586,7 +12586,7 @@
12586
"zh-chs": "设备处于关机状态(S5)。",
12587
"zh-cht": "裝置處於關機狀態(S5)。",
12588
"xloc": [
12589
- "default.handlebars->31->439"
12589
+ "default.handlebars->31->440"
12590
]
12591
},
12592
{
@@ -12606,8 +12606,8 @@
12606
"zh-chs": "设备处于睡眠状态(S1)",
12607
"zh-cht": "裝置處於睡眠狀態(S1)",
12608
"xloc": [
12609
- "default-mobile.handlebars->11->226",
12610
- "default.handlebars->31->444"
12609
+ "default-mobile.handlebars->11->227",
12610
+ "default.handlebars->31->445"
12611
]
12612
},
12613
{
@@ -12627,7 +12627,7 @@
12627
"zh-chs": "设备处于睡眠状态(S1)。",
12628
"zh-cht": "裝置處於睡眠狀態(S1)。",
12629
"xloc": [
12630
- "default.handlebars->31->431"
12630
+ "default.handlebars->31->432"
12631
]
12632
},
12633
{
@@ -12647,8 +12647,8 @@
12647
"zh-chs": "设备处于睡眠状态(S2)",
12648
"zh-cht": "裝置處於睡眠狀態(S2)",
12649
"xloc": [
12650
- "default-mobile.handlebars->11->227",
12651
- "default.handlebars->31->445"
12650
+ "default-mobile.handlebars->11->228",
12651
+ "default.handlebars->31->446"
12652
]
12653
},
12654
{
@@ -12668,7 +12668,7 @@
12668
"zh-chs": "设备处于睡眠状态(S2)。",
12669
"zh-cht": "裝置處於睡眠狀態(S2)。",
12670
"xloc": [
12671
- "default.handlebars->31->433"
12671
+ "default.handlebars->31->434"
12672
]
12673
},
12674
{
@@ -12688,8 +12688,8 @@
12688
"zh-chs": "设备处于软关机状态(S5)",
12689
"zh-cht": "裝置處於軟關機狀態(S5)",
12690
"xloc": [
12691
- "default-mobile.handlebars->11->230",
12692
- "default.handlebars->31->448"
12691
+ "default-mobile.handlebars->11->231",
12692
+ "default.handlebars->31->449"
12693
]
12694
},
12695
{
@@ -12709,10 +12709,10 @@
12709
"zh-chs": "设备已插入",
12710
"zh-cht": "裝置已插入",
12711
"xloc": [
12712
- "default-mobile.handlebars->11->188",
12713
- "default-mobile.handlebars->11->244",
12714
- "default.handlebars->31->259",
12715
- "default.handlebars->31->576"
12712
+ "default-mobile.handlebars->11->189",
12713
+ "default-mobile.handlebars->11->245",
12714
+ "default.handlebars->31->260",
12715
+ "default.handlebars->31->577"
12716
]
12717
},
12718
{
@@ -12732,8 +12732,8 @@
12732
"zh-chs": "设备已连接电源",
12733
"zh-cht": "裝置已連接電源",
12734
"xloc": [
12735
- "default-mobile.handlebars->11->225",
12736
- "default.handlebars->31->443"
12735
+ "default-mobile.handlebars->11->226",
12736
+ "default.handlebars->31->444"
12737
]
12738
},
12739
{
@@ -12753,7 +12753,7 @@
12753
"zh-chs": "设备已连接电源。",
12754
"zh-cht": "裝置已連接電源。",
12755
"xloc": [
12756
- "default.handlebars->31->429"
12756
+ "default.handlebars->31->430"
12757
]
12758
},
12759
{
@@ -12773,8 +12773,8 @@
12773
"zh-chs": "设备存在,但无法确定电源状态",
12774
"zh-cht": "裝置存在,但無法確定電源狀態",
12775
"xloc": [
12776
- "default-mobile.handlebars->11->231",
12777
- "default.handlebars->31->449"
12776
+ "default-mobile.handlebars->11->232",
12777
+ "default.handlebars->31->450"
12778
]
12779
},
12780
{
@@ -12794,7 +12794,7 @@
12794
"zh-chs": "设备名称",
12795
"zh-cht": "裝置名稱",
12796
"xloc": [
12797
- "default.handlebars->31->568"
12797
+ "default.handlebars->31->569"
12798
]
12799
},
12800
{
@@ -12814,7 +12814,7 @@
12814
"zh-chs": "设备通知",
12815
"zh-cht": "設備通知",
12816
"xloc": [
12817
- "default.handlebars->31->471"
12817
+ "default.handlebars->31->472"
12818
]
12819
},
12820
{
@@ -12834,7 +12834,7 @@
12834
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
12835
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
12836
"xloc": [
12837
- "default.handlebars->31->1769"
12837
+ "default.handlebars->31->1770"
12838
]
12839
},
12840
{
@@ -12871,8 +12871,8 @@
12871
"zh-chs": "设备",
12872
"zh-cht": "裝置",
12873
"xloc": [
12874
- "default.handlebars->31->1954",
12875
- "default.handlebars->31->1994"
12874
+ "default.handlebars->31->1955",
12875
+ "default.handlebars->31->1995"
12876
]
12877
},
12878
{
@@ -12892,8 +12892,8 @@
12892
"zh-chs": "已禁用",
12893
"zh-cht": "已禁用",
12894
"xloc": [
12895
- "default-mobile.handlebars->11->417",
12896
- "default.handlebars->31->635"
12895
+ "default-mobile.handlebars->11->418",
12896
+ "default.handlebars->31->636"
12897
]
12898
},
12899
{
@@ -12913,7 +12913,7 @@
12913
"zh-chs": "禁用的电子邮件两因素身份验证",
12914
"zh-cht": "禁用的電子郵件兩因素身份驗證",
12915
"xloc": [
12916
- "default.handlebars->31->1800"
12916
+ "default.handlebars->31->1801"
12917
]
12918
},
12919
{
@@ -12934,10 +12934,10 @@
12934
"zh-cht": "斷線",
12935
"xloc": [
12936
"agent-translations.json",
12937
- "default-mobile.handlebars->11->365",
12937
+ "default-mobile.handlebars->11->366",
12938
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
12939
- "default.handlebars->31->1461",
12940
- "default.handlebars->31->982",
12939
+ "default.handlebars->31->1462",
12940
+ "default.handlebars->31->983",
12941
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
12942
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
12943
"desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span",
@@ -12985,10 +12985,10 @@
12985
"default-mobile.handlebars->11->1",
12986
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus",
12987
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status",
12988
- "default.handlebars->31->251",
12989
- "default.handlebars->31->254",
12990
- "default.handlebars->31->271",
12991
- "default.handlebars->31->298",
12988
+ "default.handlebars->31->252",
12989
+ "default.handlebars->31->255",
12990
+ "default.handlebars->31->272",
12991
+ "default.handlebars->31->299",
12992
"default.handlebars->31->8",
12993
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus",
12994
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus",
@@ -13017,7 +13017,7 @@
13017
"zh-chs": "解雇",
13018
"zh-cht": "解僱",
13019
"xloc": [
13020
- "default.handlebars->31->272"
13020
+ "default.handlebars->31->273"
13021
]
13022
},
13023
{
@@ -13037,7 +13037,7 @@
13037
"zh-chs": "在远程设备上显示一个消息框。",
13038
"zh-cht": "在遠程裝置上顯示一個訊息框。",
13039
"xloc": [
13040
- "default.handlebars->31->778"
13040
+ "default.handlebars->31->779"
13041
]
13042
},
13043
{
@@ -13077,7 +13077,7 @@
13077
"zh-chs": "在远程设备上显示短信",
13078
"zh-cht": "在遠程裝置上顯示短信",
13079
"xloc": [
13080
- "default.handlebars->31->672"
13080
+ "default.handlebars->31->673"
13081
]
13082
},
13083
{
@@ -13097,7 +13097,7 @@
13097
"zh-chs": "显示设备组名称",
13098
"zh-cht": "顯示裝置群名稱",
13099
"xloc": [
13100
- "default.handlebars->31->1367"
13100
+ "default.handlebars->31->1368"
13101
]
13102
},
13103
{
@@ -13117,7 +13117,7 @@
13117
"zh-chs": "显示名称",
13118
"zh-cht": "顯示名稱",
13119
"xloc": [
13120
- "default.handlebars->31->949"
13120
+ "default.handlebars->31->950"
13121
]
13122
},
13123
{
@@ -13137,14 +13137,14 @@
13137
"zh-chs": "显示公共连结",
13138
"zh-cht": "顯示公共鏈結",
13139
"xloc": [
13140
- "default.handlebars->31->1670"
13140
+ "default.handlebars->31->1671"
13141
]
13142
},
13143
{
13144
"en": "Display {0}",
13145
"nl": "Scherm {0}",
13146
"xloc": [
13147
- "default.handlebars->31->966"
13147
+ "default.handlebars->31->967"
13148
]
13149
},
13150
{
@@ -13164,7 +13164,7 @@
13164
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
13165
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
13166
"xloc": [
13167
- "default.handlebars->31->1729"
13167
+ "default.handlebars->31->1730"
13168
]
13169
},
13170
{
@@ -13184,7 +13184,7 @@
13184
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
13185
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
13186
"xloc": [
13187
- "default.handlebars->31->1737"
13187
+ "default.handlebars->31->1738"
13188
]
13189
},
13190
{
@@ -13204,8 +13204,8 @@
13204
"zh-chs": "什么都不做",
13205
"zh-cht": "什麼都不做",
13206
"xloc": [
13207
- "default.handlebars->31->1508",
13208
- "default.handlebars->31->1512"
13207
+ "default.handlebars->31->1509",
13208
+ "default.handlebars->31->1513"
13209
]
13210
},
13211
{
@@ -13225,10 +13225,10 @@
13225
"zh-chs": "域",
13226
"zh-cht": "域",
13227
"xloc": [
13228
- "default.handlebars->31->1918",
13229
- "default.handlebars->31->1966",
13230
- "default.handlebars->31->1975",
13231
- "default.handlebars->31->2043",
13228
+ "default.handlebars->31->1919",
13229
+ "default.handlebars->31->1967",
13230
+ "default.handlebars->31->1976",
13231
+ "default.handlebars->31->2044",
13232
"mstsc.handlebars->main->1->3->1->2->1->0",
13233
"mstsc.handlebars->main->1->3->1->2->3"
13234
]
@@ -13250,7 +13250,7 @@
13250
"zh-chs": "请勿更改,如果设置请保留CCM",
13251
"zh-cht": "請勿更改,如果設置請保留CCM",
13252
"xloc": [
13253
- "default.handlebars->31->1504"
13253
+ "default.handlebars->31->1505"
13254
]
13255
},
13256
{
@@ -13287,7 +13287,7 @@
13287
"zh-chs": "不要连接到服务器",
13288
"zh-cht": "不要連接到伺服器",
13289
"xloc": [
13290
- "default.handlebars->31->1513"
13290
+ "default.handlebars->31->1514"
13291
]
13292
},
13293
{
@@ -13351,8 +13351,8 @@
13351
"fr": "Bas",
13352
"nl": "Omlaag",
13353
"xloc": [
13354
- "default-mobile.handlebars->11->349",
13355
- "default.handlebars->31->930"
13354
+ "default-mobile.handlebars->11->350",
13355
+ "default.handlebars->31->931"
13356
]
13357
},
13358
{
@@ -13415,8 +13415,8 @@
13415
"zh-chs": "下载档案",
13416
"zh-cht": "下載檔案",
13417
"xloc": [
13418
- "default-mobile.handlebars->11->395",
13419
- "default.handlebars->31->1021"
13418
+ "default-mobile.handlebars->11->396",
13419
+ "default.handlebars->31->1022"
13420
]
13421
},
13422
{
@@ -13436,7 +13436,7 @@
13436
"zh-chs": "下载MeshCentral Router,一个TCP端口映射工具。",
13437
"zh-cht": "下載MeshCentral Router,一個TCP端口映射工具。",
13438
"xloc": [
13439
- "default.handlebars->31->249"
13439
+ "default.handlebars->31->250"
13440
]
13441
},
13442
{
@@ -13456,7 +13456,7 @@
13456
"zh-chs": "下载MeshCmd",
13457
"zh-cht": "下載MeshCmd",
13458
"xloc": [
13459
- "default.handlebars->31->881"
13459
+ "default.handlebars->31->882"
13460
]
13461
},
13462
{
@@ -13476,7 +13476,7 @@
13476
"zh-chs": "下载MeshCmd,这是一个多功能的指令执行工具。",
13477
"zh-cht": "下載MeshCmd,這是一個多功能的指令執行工具。",
13478
"xloc": [
13479
- "default.handlebars->31->247"
13479
+ "default.handlebars->31->248"
13480
]
13481
},
13482
{
@@ -13516,7 +13516,7 @@
13516
"zh-chs": "下载报告",
13517
"zh-cht": "下載報告",
13518
"xloc": [
13519
- "default.handlebars->31->1836",
13519
+ "default.handlebars->31->1837",
13520
"default.handlebars->container->column_l->p3->3->1->0->3"
13521
]
13522
},
@@ -13537,7 +13537,7 @@
13537
"zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。",
13538
"zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
13539
"xloc": [
13540
- "default.handlebars->31->874"
13540
+ "default.handlebars->31->875"
13541
]
13542
},
13543
{
@@ -13617,7 +13617,7 @@
13617
"zh-chs": "下载电源事件",
13618
"zh-cht": "下載電源事件",
13619
"xloc": [
13620
- "default.handlebars->31->830"
13620
+ "default.handlebars->31->831"
13621
]
13622
},
13623
{
@@ -13705,7 +13705,7 @@
13705
"zh-chs": "使用以下一种档案格式下载设备列表。",
13706
"zh-cht": "使用以下一種檔案格式下載裝置列表。",
13707
"xloc": [
13708
- "default.handlebars->31->512"
13708
+ "default.handlebars->31->513"
13709
]
13710
},
13711
{
@@ -13725,7 +13725,7 @@
13725
"zh-chs": "使用以下一种档案格式下载事件列表。",
13726
"zh-cht": "使用以下一種檔案格式下載事件列表。",
13727
"xloc": [
13728
- "default.handlebars->31->1837"
13728
+ "default.handlebars->31->1838"
13729
]
13730
},
13731
{
@@ -13745,7 +13745,7 @@
13745
"zh-chs": "使用以下一种档案格式下载用户列表。",
13746
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
13747
"xloc": [
13748
- "default.handlebars->31->1902"
13748
+ "default.handlebars->31->1903"
13749
]
13750
},
13751
{
@@ -13826,7 +13826,7 @@
13826
"zh-chs": "下载:“{0}”",
13827
"zh-cht": "下載:“{0}”",
13828
"xloc": [
13829
- "default.handlebars->31->1760"
13829
+ "default.handlebars->31->1761"
13830
]
13831
},
13832
{
@@ -13834,7 +13834,7 @@
13834
"nl": "Download: \\\"{0}\\\", Grootte: {1}",
13835
"fr": "Téléchargement : \\\"{0}\\\", Taille : {1}",
13836
"xloc": [
13837
- "default.handlebars->31->1817"
13837
+ "default.handlebars->31->1818"
13838
]
13839
},
13840
{
@@ -13874,7 +13874,7 @@
13874
"zh-chs": "代理重复",
13875
"zh-cht": "代理重複",
13876
"xloc": [
13877
- "default.handlebars->31->2243"
13877
+ "default.handlebars->31->2248"
13878
]
13879
},
13880
{
@@ -13914,7 +13914,7 @@
13914
"zh-chs": "复制用户组",
13915
"zh-cht": "複製用戶群",
13916
"xloc": [
13917
- "default.handlebars->31->1970"
13917
+ "default.handlebars->31->1971"
13918
]
13919
},
13920
{
@@ -13951,8 +13951,8 @@
13951
"zh-chs": "持续时间",
13952
"zh-cht": "持續時間",
13953
"xloc": [
13954
- "default.handlebars->31->2162",
13955
- "default.handlebars->31->2182",
13954
+ "default.handlebars->31->2167",
13955
+ "default.handlebars->31->2187",
13956
"player.handlebars->3->2"
13957
]
13958
},
@@ -13990,7 +13990,7 @@
13990
"zh-chs": "荷兰文(比利时)",
13991
"zh-cht": "荷蘭文(比利時)",
13992
"xloc": [
13993
- "default.handlebars->31->1207"
13993
+ "default.handlebars->31->1208"
13994
]
13995
},
13996
{
@@ -14010,7 +14010,7 @@
14010
"zh-chs": "荷兰文(标准)",
14011
"zh-cht": "荷蘭文(標準)",
14012
"xloc": [
14013
- "default.handlebars->31->1206"
14013
+ "default.handlebars->31->1207"
14014
]
14015
},
14016
{
@@ -14298,8 +14298,8 @@
14298
"zh-chs": "编辑设备",
14299
"zh-cht": "編輯裝置",
14300
"xloc": [
14301
- "default-mobile.handlebars->11->327",
14302
- "default.handlebars->31->896"
14301
+ "default-mobile.handlebars->11->328",
14302
+ "default.handlebars->31->897"
14303
]
14304
},
14305
{
@@ -14319,13 +14319,13 @@
14319
"zh-chs": "编辑设备组",
14320
"zh-cht": "編輯裝置群",
14321
"xloc": [
14322
- "default-mobile.handlebars->11->527",
14323
- "default-mobile.handlebars->11->533",
14324
- "default-mobile.handlebars->11->553",
14325
- "default.handlebars->31->1525",
14326
- "default.handlebars->31->1557",
14327
- "default.handlebars->31->1582",
14328
- "default.handlebars->31->1594"
14322
+ "default-mobile.handlebars->11->528",
14323
+ "default-mobile.handlebars->11->534",
14324
+ "default-mobile.handlebars->11->554",
14325
+ "default.handlebars->31->1526",
14326
+ "default.handlebars->31->1558",
14327
+ "default.handlebars->31->1583",
14328
+ "default.handlebars->31->1595"
14329
]
14330
},
14331
{
@@ -14345,7 +14345,7 @@
14345
"zh-chs": "编辑设备组功能",
14346
"zh-cht": "編輯裝置群功能",
14347
"xloc": [
14348
- "default.handlebars->31->1543"
14348
+ "default.handlebars->31->1544"
14349
]
14350
},
14351
{
@@ -14365,8 +14365,8 @@
14365
"zh-chs": "编辑设备组权限",
14366
"zh-cht": "編輯裝置群權限",
14367
"xloc": [
14368
- "default.handlebars->31->1579",
14369
- "default.handlebars->31->1591"
14368
+ "default.handlebars->31->1580",
14369
+ "default.handlebars->31->1592"
14370
]
14371
},
14372
{
@@ -14386,7 +14386,7 @@
14386
"zh-chs": "编辑设备组用户同意",
14387
"zh-cht": "編輯裝置群用戶同意",
14388
"xloc": [
14389
- "default.handlebars->31->1526"
14389
+ "default.handlebars->31->1527"
14390
]
14391
},
14392
{
@@ -14406,8 +14406,8 @@
14406
"zh-chs": "编辑设备笔记",
14407
"zh-cht": "編輯裝置筆記",
14408
"xloc": [
14409
- "default-mobile.handlebars->11->545",
14410
- "default.handlebars->31->1571"
14409
+ "default-mobile.handlebars->11->546",
14410
+ "default.handlebars->31->1572"
14411
]
14412
},
14413
{
@@ -14427,8 +14427,8 @@
14427
"zh-chs": "编辑设备权限",
14428
"zh-cht": "編輯裝置權限",
14429
"xloc": [
14430
- "default.handlebars->31->1584",
14431
- "default.handlebars->31->1586"
14430
+ "default.handlebars->31->1585",
14431
+ "default.handlebars->31->1587"
14432
]
14433
},
14434
{
@@ -14448,8 +14448,8 @@
14448
"zh-chs": "编辑设备标签",
14449
"zh-cht": "編輯裝置標籤",
14450
"xloc": [
14451
- "default.handlebars->31->498",
14452
- "default.handlebars->31->511"
14451
+ "default.handlebars->31->499",
14452
+ "default.handlebars->31->512"
14453
]
14454
},
14455
{
@@ -14469,7 +14469,7 @@
14469
"zh-chs": "编辑设备用户同意",
14470
"zh-cht": "編輯裝置用戶同意",
14471
"xloc": [
14472
- "default.handlebars->31->1528"
14472
+ "default.handlebars->31->1529"
14473
]
14474
},
14475
{
@@ -14489,7 +14489,7 @@
14489
"zh-chs": "编辑群组",
14490
"zh-cht": "編輯群組",
14491
"xloc": [
14492
- "default.handlebars->31->751"
14492
+ "default.handlebars->31->752"
14493
]
14494
},
14495
{
@@ -14509,14 +14509,14 @@
14509
"zh-chs": "编辑英特尔®AMT凭证",
14510
"zh-cht": "編輯Intel® AMT憑證",
14511
"xloc": [
14512
- "default-mobile.handlebars->11->268",
14513
- "default-mobile.handlebars->11->273",
14512
+ "default-mobile.handlebars->11->269",
14513
"default-mobile.handlebars->11->274",
14515
- "default-mobile.handlebars->11->317",
14516
- "default.handlebars->31->606",
14517
- "default.handlebars->31->611",
14514
+ "default-mobile.handlebars->11->275",
14515
+ "default-mobile.handlebars->11->318",
14516
+ "default.handlebars->31->607",
14517
"default.handlebars->31->612",
14519
- "default.handlebars->31->837"
14518
+ "default.handlebars->31->613",
14519
+ "default.handlebars->31->838"
14520
]
14521
},
14522
{
@@ -14536,8 +14536,8 @@
14536
"zh-chs": "编辑笔记",
14537
"zh-cht": "編輯筆記",
14538
"xloc": [
14539
- "default-mobile.handlebars->11->560",
14540
- "default.handlebars->31->1601"
14539
+ "default-mobile.handlebars->11->561",
14540
+ "default.handlebars->31->1602"
14541
]
14542
},
14543
{
@@ -14557,7 +14557,7 @@
14557
"zh-chs": "编辑用户同意",
14558
"zh-cht": "編輯用戶同意",
14559
"xloc": [
14560
- "default.handlebars->31->1527"
14560
+ "default.handlebars->31->1528"
14561
]
14562
},
14563
{
@@ -14577,7 +14577,7 @@
14577
"zh-chs": "编辑用户设备组权限",
14578
"zh-cht": "編輯用戶裝置群權限",
14579
"xloc": [
14580
- "default.handlebars->31->1592"
14580
+ "default.handlebars->31->1593"
14581
]
14582
},
14583
{
@@ -14597,7 +14597,7 @@
14597
"zh-chs": "编辑用户设备权限",
14598
"zh-cht": "編輯用戶裝置權限",
14599
"xloc": [
14600
- "default.handlebars->31->1587"
14600
+ "default.handlebars->31->1588"
14601
]
14602
},
14603
{
@@ -14617,7 +14617,7 @@
14617
"zh-chs": "编辑用户组",
14618
"zh-cht": "編輯用戶群",
14619
"xloc": [
14620
- "default.handlebars->31->2021"
14620
+ "default.handlebars->31->2022"
14621
]
14622
},
14623
{
@@ -14637,7 +14637,7 @@
14637
"zh-chs": "编辑用户组设备权限",
14638
"zh-cht": "編輯用戶群裝置權限",
14639
"xloc": [
This file is too large to show in full.
views/default-mobile.handlebars
+4
-3
@@ -1561,9 +1561,10 @@
1561
x += '<div style=max-height:260px;overflow-y:scroll;overflow-x:hidden>';
1562
for (var i in message.events) {
1563
var m = message.events[i].m;
1564
- if (m == 107) { m = "Valid login"; c = 'BBD1BB'; }
1565
- else if (m == 108) { m = "Invalid password"; c = 'E1BBBB'; }
1566
- else if (m == 110) { m = "Invalid 2FA"; c = 'DD9DC3'; }
1564
+ if (m == 107) { m = "Valid login"; c = 'BBD1BB'; xx = ''; }
1565
+ else if (m == 108) { m = "Invalid 2FA"; c = 'DD9DC3'; xx = 'x'; }
1566
+ else if (m == 109) { m = "Locked account"; c = 'E1BBBB'; xx = 'x'; }
1567
+ else if (m == 110) { m = "Invalid password"; c = 'E1BBBB'; xx = 'x'; }
1568
x += '<div style=width:260px;background-color:#' + c + ';border-radius:6px;margin-bottom:4px;padding:4px><div><b>' + EscapeHtml(m) + '</b><br />' + printDateTime(new Date(message.events[i].t)) + '</div><div style=font-size:x-small>' + EscapeHtml(message.events[i].a.join(', ')) + '</div></div></tr>';
1569
}
1570
x += '</div>';
views/default.handlebars
+17
-4
@@ -3271,7 +3271,9 @@
3271
break;
3272
}
3273
case 'previousLogins':{
3274
- if ((xxdialogMode == 2) && (xxdialogTag == 'previousLogins')) {
3274
+ var tag = 'previousLogins';
3275
+ if (message.userid != null) { tag += ':' + message.userid; }
3276
+ if ((xxdialogMode == 2) && (xxdialogTag == tag)) {
3277
var x = '', c = 'BBB', xx = '';
3278
if (message.events.length == 0) {
3279
x += 'No previous login.';
@@ -3280,8 +3282,9 @@
3282
for (var i in message.events) {
3283
var m = message.events[i].m;
3284
if (m == 107) { m = "Valid login"; c = 'BBD1BB'; xx = ''; }
3283
- else if (m == 108) { m = "Invalid password"; c ='E1BBBB'; xx = 'x'; }
3284
- else if (m == 110) { m = "Invalid 2FA"; c = 'DD9DC3'; xx = 'x'; }
3285
+ else if (m == 108) { m = "Invalid 2FA"; c ='DD9DC3'; xx = 'x'; }
3286
+ else if (m == 109) { m = "Locked account"; c ='E1BBBB'; xx = 'x'; }
3287
+ else if (m == 110) { m = "Invalid password"; c = 'E1BBBB'; xx = 'x'; }
3288
x += '<tr><td><img src=images/user-32' + xx + '.png height=32 width=32 style=float:left srcset="images/user-64' + xx + '.png 2x"><td><div style=width:300px;background-color:#' + c + ';border-radius:6px;margin-bottom:4px;padding:4px><div>' + printDateTime(new Date(message.events[i].t)) + ', <b>' + EscapeHtml(m) + '</b></div><div style=font-size:x-small>' + EscapeHtml(message.events[i].a.join(', ')) + '</div></div></tr>';
3289
}
3290
x += '</table></div>';
@@ -12926,7 +12929,10 @@
12929
if (userAdminRights) { x += '<a href=# style=cursor:pointer onclick=\'return p30showDeleteUserDialog()\' title="' + "Remove this user" + '">' + "Delete User" + '</a>'; }
12930
x += '</div><div style=font-size:small>';
12931
// If user admin rights and not SSPI/LDAP and UserID does not start with ~, show change password
12929
- if (userAdminRights && ((features & 0x00080000) == 0) && (user._id.split('/')[2][0] != '~')) { x += '<a href=# style=cursor:pointer onclick=\'return p30showUserChangePassDialog(' + multiFactor + ')\' title="' + "Change the password for this user" + '">' + "Change Password" + '</a>'; }
12932
+ if (userAdminRights && ((features & 0x00080000) == 0) && (user._id.split('/')[2][0] != '~')) {
12933
+ x += '<a href=# style=cursor:pointer onclick=\'return p30showUserChangePassDialog(' + multiFactor + ')\' title="' + "Change the password for this user" + '">' + "Change Password" + '</a>';
12934
+ x += ' <a href=# style=cursor:pointer onclick=\'return p30viewPreviousLogins()\' title="' + "View previous logins for this user" + '">' + "Previous Logins" + '</a>';
12935
+ }
12936
x += '</div><br>'
12937
QH('p30html3', x);
12938
@@ -13013,6 +13019,13 @@
13019
meshserver.send(x);
13020
}
13021
13022
+ // Display the previous logins of this user
13023
+ function p30viewPreviousLogins() {
13024
+ if (xxdialogMode) return;
13025
+ setDialogMode(2, "Previous Logins", 1, null, "Loading...", 'previousLogins:' + currentUser._id);
13026
+ meshserver.send({ action: 'previousLogins', userid: currentUser._id });
13027
+ }
13028
+
13029
// Display the user's password change dialog box
13030
function p30showUserChangePassDialog(multiFactor) {
13031
if (xxdialogMode) return;