Added user customized quick typing strings.
Ylian Saint-Hilaire committed
Nov 11, 2021 at 17:09 UTC
bf94381a1dad518238e3409d36fcb8cf399e34a4
4 files changed
+1722
-1618
meshuser.js
+6
-6
@@ -360,7 +360,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
360
361
// Check if we have too many user sessions
362
if (((typeof domain.limits.maxusersessions == 'number') && (domainUserSessionCount >= domain.limits.maxusersessions)) || ((typeof domain.limits.maxsingleusersessions == 'number') && (selfUserSessionCount >= domain.limits.maxsingleusersessions))) {
363
- ws.send(JSON.stringify({ action: 'stopped', msg: 'Session count exceed' }));
363
+ try { ws.send(JSON.stringify({ action: 'stopped', msg: 'Session count exceed' })); } catch (ex) { }
364
try { ws.close(); } catch (e) { }
365
return;
366
}
@@ -414,7 +414,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
414
var meshrights = parent.GetMeshRights(user, id);
415
if ((meshrights === MESHRIGHT_ADMIN) || ((meshrights & MESHRIGHT_LIMITEVENTS) == 0) || (ids.indexOf(user._id) >= 0)) {
416
// We have the device group rights to see this event or we are directly targetted by the event
417
- ws.send(JSON.stringify({ action: 'event', event: event }));
417
+ try { ws.send(JSON.stringify({ action: 'event', event: event })); } catch (ex) { }
418
} else {
419
// Check if no other users are targeted by the event, if not, we can get this event.
420
var userTarget = false;
@@ -424,16 +424,16 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
424
} else if (event.ugrpid != null) {
425
if ((user.siteadmin & SITERIGHT_USERGROUPS) != 0) {
426
// If we have the rights to see users in a group, send the group as is.
427
- ws.send(JSON.stringify({ action: 'event', event: event }));
427
+ try { ws.send(JSON.stringify({ action: 'event', event: event })); } catch (ex) { }
428
} else {
429
// We don't have the rights to see otehr users in the user group, remove the links that are not for ourselves.
430
var links = {};
431
if (event.links) { for (var i in event.links) { if ((i == user._id) || i.startsWith('mesh/') || i.startsWith('node/')) { links[i] = event.links[i]; } } }
432
- ws.send(JSON.stringify({ action: 'event', event: { ugrpid: event.ugrpid, domain: event.domain, time: event.time, name: event.name, action: event.action, username: event.username, links: links, h: event.h } }));
432
+ try { ws.send(JSON.stringify({ action: 'event', event: { ugrpid: event.ugrpid, domain: event.domain, time: event.time, name: event.name, action: event.action, username: event.username, links: links, h: event.h } })); } catch (ex) { }
433
}
434
} else {
435
// This is not a device group event, we can get this event.
436
- ws.send(JSON.stringify({ action: 'event', event: event }));
436
+ try { ws.send(JSON.stringify({ action: 'event', event: event })); } catch (ex) { }
437
}
438
}
439
} catch (ex) { console.log(ex); }
@@ -4467,7 +4467,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4467
}
4468
case 'userWebState': {
4469
if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; // If this account is settings locked, return here.
4470
- if (common.validateString(command.state, 1, 10000) == false) break; // Check state size, no more than 10k
4470
+ if (common.validateString(command.state, 1, 30000) == false) break; // Check state size, no more than 30k
4471
command.state = parent.filterUserWebState(command.state); // Filter the state to remove anything bad
4472
if ((command.state == null) || (typeof command.state !== 'string')) break; // If state did not validate correctly, quit here.
4473
db.Set({ _id: 'ws' + user._id, state: command.state });
translate/translate.json
+1625
-1607
@@ -44,8 +44,8 @@
44
"zh-chs": " + CIRA",
45
"zh-cht": " + CIRA",
46
"xloc": [
47
- "default.handlebars->39->1776",
48
- "default.handlebars->39->1778"
47
+ "default.handlebars->39->1781",
48
+ "default.handlebars->39->1783"
49
]
50
},
51
{
@@ -287,7 +287,7 @@
287
"zh-chs": " 可以使用密码提示,但不建议使用。",
288
"zh-cht": " 可以使用密碼提示,但不建議使用。",
289
"xloc": [
290
- "default.handlebars->39->1674"
290
+ "default.handlebars->39->1679"
291
]
292
},
293
{
@@ -311,8 +311,8 @@
311
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
312
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
313
"xloc": [
314
- "default.handlebars->39->1870",
315
- "default.handlebars->39->2388"
314
+ "default.handlebars->39->1875",
315
+ "default.handlebars->39->2393"
316
]
317
},
318
{
@@ -798,7 +798,7 @@
798
"zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。",
799
"zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
800
"xloc": [
801
- "default.handlebars->39->1835",
801
+ "default.handlebars->39->1840",
802
"default.handlebars->39->439"
803
]
804
},
@@ -889,7 +889,7 @@
889
"zh-cht": ",",
890
"xloc": [
891
"default-mobile.handlebars->11->657",
892
- "default.handlebars->39->1944"
892
+ "default.handlebars->39->1949"
893
]
894
},
895
{
@@ -982,7 +982,7 @@
982
"zh-cht": ",MQTT在線",
983
"xloc": [
984
"default-mobile.handlebars->11->574",
985
- "default.handlebars->39->1384"
985
+ "default.handlebars->39->1389"
986
]
987
},
988
{
@@ -1151,8 +1151,8 @@
1151
"default-mobile.handlebars->11->412",
1152
"default-mobile.handlebars->11->429",
1153
"default.handlebars->39->1131",
1154
- "default.handlebars->39->1202",
1155
- "default.handlebars->39->1228",
1154
+ "default.handlebars->39->1207",
1155
+ "default.handlebars->39->1233",
1156
"sharing.handlebars->11->19",
1157
"sharing.handlebars->11->27",
1158
"sharing.handlebars->11->44",
@@ -1442,9 +1442,9 @@
1442
"xloc": [
1443
"default-mobile.handlebars->11->132",
1444
"default-mobile.handlebars->11->445",
1445
- "default.handlebars->39->1247",
1446
- "default.handlebars->39->1999",
1447
- "default.handlebars->39->2586",
1445
+ "default.handlebars->39->1252",
1446
+ "default.handlebars->39->2004",
1447
+ "default.handlebars->39->2591",
1448
"sharing.handlebars->11->50"
1449
]
1450
},
@@ -1599,7 +1599,7 @@
1599
"zh-chs": "1个活跃时段",
1600
"zh-cht": "1個活躍時段",
1601
"xloc": [
1602
- "default.handlebars->39->2476"
1602
+ "default.handlebars->39->2481"
1603
]
1604
},
1605
{
@@ -1625,7 +1625,7 @@
1625
"xloc": [
1626
"default-mobile.handlebars->11->142",
1627
"default-mobile.handlebars->11->700",
1628
- "default.handlebars->39->2023",
1628
+ "default.handlebars->39->2028",
1629
"download.handlebars->3->1",
1630
"download2.handlebars->5->1",
1631
"sharing.handlebars->11->96"
@@ -1703,7 +1703,7 @@
1703
"zh-chs": "1组",
1704
"zh-cht": "1群",
1705
"xloc": [
1706
- "default.handlebars->39->2435"
1706
+ "default.handlebars->39->2440"
1707
]
1708
},
1709
{
@@ -1753,7 +1753,7 @@
1753
"zh-chs": "1分钟",
1754
"zh-cht": "1分鐘",
1755
"xloc": [
1756
- "default.handlebars->39->1640",
1756
+ "default.handlebars->39->1645",
1757
"default.handlebars->39->983"
1758
]
1759
},
@@ -1828,7 +1828,7 @@
1828
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1829
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1830
"xloc": [
1831
- "default.handlebars->39->2204"
1831
+ "default.handlebars->39->2209"
1832
]
1833
},
1834
{
@@ -2016,7 +2016,7 @@
2016
"default-mobile.handlebars->11->208",
2017
"default-mobile.handlebars->11->212",
2018
"default-mobile.handlebars->11->216",
2019
- "default.handlebars->39->2208",
2019
+ "default.handlebars->39->2213",
2020
"default.handlebars->39->367",
2021
"default.handlebars->39->371",
2022
"default.handlebars->39->375",
@@ -2195,7 +2195,7 @@
2195
"zh-chs": "10分钟",
2196
"zh-cht": "10分鐘",
2197
"xloc": [
2198
- "default.handlebars->39->1642",
2198
+ "default.handlebars->39->1647",
2199
"default.handlebars->39->985"
2200
]
2201
},
@@ -2343,7 +2343,7 @@
2343
"zh-chs": "12小时",
2344
"zh-cht": "12小時",
2345
"xloc": [
2346
- "default.handlebars->39->1650",
2346
+ "default.handlebars->39->1655",
2347
"default.handlebars->39->993"
2348
]
2349
},
@@ -2414,7 +2414,7 @@
2414
"zh-chs": "15分钟",
2415
"zh-cht": "15分鐘",
2416
"xloc": [
2417
- "default.handlebars->39->1643",
2417
+ "default.handlebars->39->1648",
2418
"default.handlebars->39->986"
2419
]
2420
},
@@ -2439,7 +2439,7 @@
2439
"zh-chs": "16小时",
2440
"zh-cht": "16小時",
2441
"xloc": [
2442
- "default.handlebars->39->1651",
2442
+ "default.handlebars->39->1656",
2443
"default.handlebars->39->994"
2444
]
2445
},
@@ -2464,7 +2464,7 @@
2464
"zh-chs": "2天",
2465
"zh-cht": "2天",
2466
"xloc": [
2467
- "default.handlebars->39->1653",
2467
+ "default.handlebars->39->1658",
2468
"default.handlebars->39->996"
2469
]
2470
},
@@ -2489,7 +2489,7 @@
2489
"zh-chs": "2小时",
2490
"zh-cht": "2小時",
2491
"xloc": [
2492
- "default.handlebars->39->1647",
2492
+ "default.handlebars->39->1652",
2493
"default.handlebars->39->990"
2494
]
2495
},
@@ -2661,7 +2661,7 @@
2661
"zh-chs": "24小时",
2662
"zh-cht": "24小時",
2663
"xloc": [
2664
- "default.handlebars->39->1652",
2664
+ "default.handlebars->39->1657",
2665
"default.handlebars->39->995"
2666
]
2667
},
@@ -2736,7 +2736,7 @@
2736
"zh-chs": "2FA备份代码已清除",
2737
"zh-cht": "2FA備份代碼已清除",
2738
"xloc": [
2739
- "default.handlebars->39->2134"
2739
+ "default.handlebars->39->2139"
2740
]
2741
},
2742
{
@@ -2760,8 +2760,8 @@
2760
"zh-chs": "启用第二因素身份验证",
2761
"zh-cht": "啟用第二因素身份驗證",
2762
"xloc": [
2763
- "default.handlebars->39->2221",
2764
- "default.handlebars->39->2459"
2763
+ "default.handlebars->39->2226",
2764
+ "default.handlebars->39->2464"
2765
]
2766
},
2767
{
@@ -2903,7 +2903,7 @@
2903
"zh-chs": "30分钟",
2904
"zh-cht": "30分鐘",
2905
"xloc": [
2906
- "default.handlebars->39->1644",
2906
+ "default.handlebars->39->1649",
2907
"default.handlebars->39->987"
2908
]
2909
},
@@ -2928,7 +2928,7 @@
2928
"zh-chs": "32 位",
2929
"xloc": [
2930
"default-mobile.handlebars->11->482",
2931
- "default.handlebars->39->1298"
2931
+ "default.handlebars->39->1303"
2932
]
2933
},
2934
{
@@ -3003,7 +3003,7 @@
3003
"zh-chs": "4天",
3004
"zh-cht": "4天",
3005
"xloc": [
3006
- "default.handlebars->39->1654",
3006
+ "default.handlebars->39->1659",
3007
"default.handlebars->39->997"
3008
]
3009
},
@@ -3028,7 +3028,7 @@
3028
"zh-chs": "4个小时",
3029
"zh-cht": "4個小時",
3030
"xloc": [
3031
- "default.handlebars->39->1648",
3031
+ "default.handlebars->39->1653",
3032
"default.handlebars->39->991"
3033
]
3034
},
@@ -3152,7 +3152,7 @@
3152
"zh-chs": "45分钟",
3153
"zh-cht": "45分鐘",
3154
"xloc": [
3155
- "default.handlebars->39->1645",
3155
+ "default.handlebars->39->1650",
3156
"default.handlebars->39->988"
3157
]
3158
},
@@ -3201,7 +3201,7 @@
3201
"zh-chs": "5分钟",
3202
"zh-cht": "5分鐘",
3203
"xloc": [
3204
- "default.handlebars->39->1641",
3204
+ "default.handlebars->39->1646",
3205
"default.handlebars->39->984"
3206
]
3207
},
@@ -3376,7 +3376,7 @@
3376
"zh-chs": "60分钟",
3377
"zh-cht": "60分鐘",
3378
"xloc": [
3379
- "default.handlebars->39->1646",
3379
+ "default.handlebars->39->1651",
3380
"default.handlebars->39->989"
3381
]
3382
},
@@ -3451,7 +3451,7 @@
3451
"zh-chs": "64 位",
3452
"xloc": [
3453
"default-mobile.handlebars->11->484",
3454
- "default.handlebars->39->1300"
3454
+ "default.handlebars->39->1305"
3455
]
3456
},
3457
{
@@ -3644,7 +3644,7 @@
3644
"zh-chs": "8小時",
3645
"zh-cht": "8小時",
3646
"xloc": [
3647
- "default.handlebars->39->1649",
3647
+ "default.handlebars->39->1654",
3648
"default.handlebars->39->466",
3649
"default.handlebars->39->480",
3650
"default.handlebars->39->992"
@@ -3959,7 +3959,7 @@
3959
"zh-cht": "ACM",
3960
"xloc": [
3961
"default-mobile.handlebars->11->280",
3962
- "default.handlebars->39->1792",
3962
+ "default.handlebars->39->1797",
3963
"default.handlebars->39->759"
3964
]
3965
},
@@ -4050,7 +4050,7 @@
4050
"tr": "AMT-OS",
4051
"zh-chs": "操作系统",
4052
"xloc": [
4053
- "default.handlebars->39->2715"
4053
+ "default.handlebars->39->2720"
4054
]
4055
},
4056
{
@@ -4058,7 +4058,7 @@
4058
"nl": "AMT-Redir",
4059
"es": "AMT-Redir",
4060
"xloc": [
4061
- "default.handlebars->39->2620"
4061
+ "default.handlebars->39->2625"
4062
]
4063
},
4064
{
@@ -4066,7 +4066,7 @@
4066
"nl": "AMT-WSMAN",
4067
"es": "AMT-WSMAN",
4068
"xloc": [
4069
- "default.handlebars->39->2619"
4069
+ "default.handlebars->39->2624"
4070
]
4071
},
4072
{
@@ -4242,7 +4242,7 @@
4242
"zh-cht": "拒絕存取",
4243
"xloc": [
4244
"default-mobile.handlebars->11->575",
4245
- "default.handlebars->39->1385"
4245
+ "default.handlebars->39->1390"
4246
]
4247
},
4248
{
@@ -4315,7 +4315,7 @@
4315
"zh-chs": "访问服务器档案",
4316
"zh-cht": "存取伺服器檔案",
4317
"xloc": [
4318
- "default.handlebars->39->2394"
4318
+ "default.handlebars->39->2399"
4319
]
4320
},
4321
{
@@ -4420,9 +4420,9 @@
4420
"default-mobile.handlebars->11->249",
4421
"default-mobile.handlebars->11->251",
4422
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
4423
- "default.handlebars->39->1683",
4424
- "default.handlebars->39->1685",
4425
- "default.handlebars->39->2768",
4423
+ "default.handlebars->39->1688",
4424
+ "default.handlebars->39->1690",
4425
+ "default.handlebars->39->2773",
4426
"default.handlebars->39->721",
4427
"default.handlebars->39->723"
4428
]
@@ -4448,7 +4448,7 @@
4448
"zh-chs": "帐号设定",
4449
"xloc": [
4450
"default-mobile.handlebars->11->668",
4451
- "default.handlebars->39->2645"
4451
+ "default.handlebars->39->2650"
4452
]
4453
},
4454
{
@@ -4521,7 +4521,7 @@
4521
"zh-chs": "帐户已更改:{0}",
4522
"zh-cht": "帳戶已更改:{0}",
4523
"xloc": [
4524
- "default.handlebars->39->2107"
4524
+ "default.handlebars->39->2112"
4525
]
4526
},
4527
{
@@ -4545,7 +4545,7 @@
4545
"zh-chs": "创建帐户,电子邮件为{0}",
4546
"zh-cht": "創建帳戶,電子郵件為{0}",
4547
"xloc": [
4548
- "default.handlebars->39->2106"
4548
+ "default.handlebars->39->2111"
4549
]
4550
},
4551
{
@@ -4553,7 +4553,7 @@
4553
"nl": "Account aangemaakt, naam is {0}.",
4554
"es": "Cuenta creada, el nombre es {0}.",
4555
"xloc": [
4556
- "default.handlebars->39->2169"
4556
+ "default.handlebars->39->2174"
4557
]
4558
},
4559
{
@@ -4577,7 +4577,7 @@
4577
"zh-chs": "创建帐户,用户名是{0}",
4578
"zh-cht": "帳戶已創建,用戶名是{0}",
4579
"xloc": [
4580
- "default.handlebars->39->2105"
4580
+ "default.handlebars->39->2110"
4581
]
4582
},
4583
{
@@ -4601,8 +4601,8 @@
4601
"zh-chs": "帐户已被锁定",
4602
"zh-cht": "帳戶已被鎖定",
4603
"xloc": [
4604
- "default.handlebars->39->2223",
4605
- "default.handlebars->39->2391"
4604
+ "default.handlebars->39->2228",
4605
+ "default.handlebars->39->2396"
4606
]
4607
},
4608
{
@@ -4627,7 +4627,7 @@
4627
"zh-cht": "達到帳戶限制。",
4628
"xloc": [
4629
"default-mobile.handlebars->11->680",
4630
- "default.handlebars->39->2657",
4630
+ "default.handlebars->39->2662",
4631
"login-mobile.handlebars->5->6",
4632
"login.handlebars->5->6",
4633
"login2.handlebars->7->8"
@@ -4680,7 +4680,7 @@
4680
"zh-chs": "帐号登录",
4681
"zh-cht": "帳號登錄",
4682
"xloc": [
4683
- "default.handlebars->39->2042"
4683
+ "default.handlebars->39->2047"
4684
]
4685
},
4686
{
@@ -4703,7 +4703,7 @@
4703
"tr": "{0}, {1}, {2} adresinden hesap girişi",
4704
"zh-chs": "来自 {0}、{1}、{2} 的帐户登录",
4705
"xloc": [
4706
- "default.handlebars->39->2148"
4706
+ "default.handlebars->39->2153"
4707
]
4708
},
4709
{
@@ -4727,7 +4727,7 @@
4727
"zh-chs": "帐户登出",
4728
"zh-cht": "帳戶登出",
4729
"xloc": [
4730
- "default.handlebars->39->2043"
4730
+ "default.handlebars->39->2048"
4731
]
4732
},
4733
{
@@ -4777,7 +4777,7 @@
4777
"zh-chs": "帐户密码已更改:{0}",
4778
"zh-cht": "帳戶密碼已更改:{0}",
4779
"xloc": [
4780
- "default.handlebars->39->2115"
4780
+ "default.handlebars->39->2120"
4781
]
4782
},
4783
{
@@ -4801,7 +4801,7 @@
4801
"zh-chs": "帐户已删除",
4802
"zh-cht": "帳戶已刪除",
4803
"xloc": [
4804
- "default.handlebars->39->2104"
4804
+ "default.handlebars->39->2109"
4805
]
4806
},
4807
{
@@ -4850,7 +4850,7 @@
4850
"zh-cht": "指令",
4851
"xloc": [
4852
"default-mobile.handlebars->11->581",
4853
- "default.handlebars->39->1391",
4853
+ "default.handlebars->39->1396",
4854
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
4855
]
4856
},
@@ -5003,7 +5003,7 @@
5003
"zh-chs": "如果ACM失败,则激活到CCM",
5004
"zh-cht": "如果ACM失敗,則激活到CCM",
5005
"xloc": [
5006
- "default.handlebars->39->1826"
5006
+ "default.handlebars->39->1831"
5007
]
5008
},
5009
{
@@ -5030,7 +5030,7 @@
5030
"default-mobile.handlebars->11->275",
5031
"default-mobile.handlebars->11->277",
5032
"default-mobile.handlebars->11->537",
5033
- "default.handlebars->39->1346",
5033
+ "default.handlebars->39->1351",
5034
"default.handlebars->39->752",
5035
"default.handlebars->39->754"
5036
]
@@ -5103,7 +5103,7 @@
5103
"tr": "Aktif Giriş Jetonları",
5104
"zh-chs": "活动登录令牌",
5105
"xloc": [
5106
- "default.handlebars->39->1704"
5106
+ "default.handlebars->39->1709"
5107
]
5108
},
5109
{
@@ -5168,7 +5168,8 @@
5168
"zh-chs": "添加",
5169
"xloc": [
5170
"default-mobile.handlebars->11->404",
5171
- "default.handlebars->39->1162"
5171
+ "default.handlebars->39->1162",
5172
+ "default.handlebars->39->1167"
5173
]
5174
},
5175
{
@@ -5232,7 +5233,7 @@
5233
"zh-chs": "添加代理",
5234
"zh-cht": "新增代理",
5235
"xloc": [
5235
- "default.handlebars->39->1788",
5236
+ "default.handlebars->39->1793",
5237
"default.handlebars->39->405"
5238
]
5239
},
@@ -5278,8 +5279,8 @@
5279
"zh-chs": "添加设备",
5280
"zh-cht": "新增裝置",
5281
"xloc": [
5281
- "default.handlebars->39->2366",
5282
- "default.handlebars->39->2525",
5282
+ "default.handlebars->39->2371",
5283
+ "default.handlebars->39->2530",
5284
"default.handlebars->39->409"
5285
]
5286
},
@@ -5328,9 +5329,9 @@
5329
"zh-chs": "添加设备组",
5330
"zh-cht": "新增裝置群",
5331
"xloc": [
5331
- "default.handlebars->39->1906",
5332
- "default.handlebars->39->2360",
5333
- "default.handlebars->39->2513",
5332
+ "default.handlebars->39->1911",
5333
+ "default.handlebars->39->2365",
5334
+ "default.handlebars->39->2518",
5335
"default.handlebars->39->332"
5336
]
5337
},
@@ -5355,7 +5356,7 @@
5356
"zh-chs": "添加设备组权限",
5357
"zh-cht": "新增裝置群權限",
5358
"xloc": [
5358
- "default.handlebars->39->1903"
5359
+ "default.handlebars->39->1908"
5360
]
5361
},
5362
{
@@ -5379,8 +5380,8 @@
5380
"zh-chs": "添加设备权限",
5381
"zh-cht": "新增裝置權限",
5382
"xloc": [
5382
- "default.handlebars->39->1908",
5383
- "default.handlebars->39->1910"
5383
+ "default.handlebars->39->1913",
5384
+ "default.handlebars->39->1915"
5385
]
5386
},
5387
{
@@ -5517,7 +5518,7 @@
5518
"zh-chs": "添加成员身份",
5519
"zh-cht": "新增成員身份",
5520
"xloc": [
5520
- "default.handlebars->39->2545"
5521
+ "default.handlebars->39->2550"
5522
]
5523
},
5524
{
@@ -5585,8 +5586,8 @@
5586
"zh-chs": "添加安全密钥",
5587
"zh-cht": "新增安全密鑰",
5588
"xloc": [
5588
- "default.handlebars->39->1430",
5589
- "default.handlebars->39->1431",
5589
+ "default.handlebars->39->1435",
5590
+ "default.handlebars->39->1436",
5591
"default.handlebars->39->217",
5592
"default.handlebars->39->219",
5593
"default.handlebars->39->222",
@@ -5639,7 +5640,7 @@
5640
"zh-chs": "添加用户设备权限",
5641
"zh-cht": "新增用戶裝置權限",
5642
"xloc": [
5642
- "default.handlebars->39->1913"
5643
+ "default.handlebars->39->1918"
5644
]
5645
},
5646
{
@@ -5663,9 +5664,9 @@
5664
"zh-chs": "添加用户组",
5665
"zh-cht": "新增用戶群",
5666
"xloc": [
5666
- "default.handlebars->39->1784",
5667
- "default.handlebars->39->1905",
5668
- "default.handlebars->39->2519",
5667
+ "default.handlebars->39->1789",
5668
+ "default.handlebars->39->1910",
5669
+ "default.handlebars->39->2524",
5670
"default.handlebars->39->888"
5671
]
5672
},
@@ -5690,7 +5691,7 @@
5691
"zh-chs": "添加用户组设备权限",
5692
"zh-cht": "新增用戶群裝置權限",
5693
"xloc": [
5693
- "default.handlebars->39->1915"
5694
+ "default.handlebars->39->1920"
5695
]
5696
},
5697
{
@@ -5759,8 +5760,8 @@
5760
"zh-chs": "添加用户",
5761
"zh-cht": "新增用戶",
5762
"xloc": [
5762
- "default.handlebars->39->1783",
5763
- "default.handlebars->39->2355"
5763
+ "default.handlebars->39->1788",
5764
+ "default.handlebars->39->2360"
5765
]
5766
},
5767
{
@@ -5784,7 +5785,7 @@
5785
"zh-chs": "将用户添加到设备组",
5786
"zh-cht": "將用戶新增到裝置群",
5787
"xloc": [
5787
- "default.handlebars->39->1902"
5788
+ "default.handlebars->39->1907"
5789
]
5790
},
5791
{
@@ -5808,7 +5809,7 @@
5809
"zh-chs": "将用户添加到用户组",
5810
"zh-cht": "將用戶新增到用戶群",
5811
"xloc": [
5811
- "default.handlebars->39->2390"
5812
+ "default.handlebars->39->2395"
5813
]
5814
},
5815
{
@@ -5972,7 +5973,7 @@
5973
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
5974
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
5975
"xloc": [
5975
- "default.handlebars->39->1787",
5976
+ "default.handlebars->39->1792",
5977
"default.handlebars->39->404"
5978
]
5979
},
@@ -6091,7 +6092,7 @@
6092
"zh-chs": "添加了身份验证应用程序",
6093
"zh-cht": "添加了身份驗證應用程序",
6094
"xloc": [
6094
- "default.handlebars->39->2131"
6095
+ "default.handlebars->39->2136"
6096
]
6097
},
6098
{
@@ -6115,13 +6116,13 @@
6116
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
6117
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
6118
"xloc": [
6118
- "default.handlebars->39->2142"
6119
+ "default.handlebars->39->2147"
6120
]
6121
},
6122
{
6123
"en": "Added device share {0} with unlimited time.",
6124
"xloc": [
6124
- "default.handlebars->39->2172"
6125
+ "default.handlebars->39->2177"
6126
]
6127
},
6128
{
@@ -6145,8 +6146,8 @@
6146
"zh-chs": "已将设备{0}添加到设备组{1}",
6147
"zh-cht": "已將設備{0}添加到設備組{1}",
6148
"xloc": [
6148
- "default.handlebars->39->2098",
6149
- "default.handlebars->39->2125"
6149
+ "default.handlebars->39->2103",
6150
+ "default.handlebars->39->2130"
6151
]
6152
},
6153
{
@@ -6169,7 +6170,7 @@
6170
"tr": "Giriş belirteci eklendi",
6171
"zh-chs": "添加登录令牌",
6172
"xloc": [
6172
- "default.handlebars->39->2156"
6173
+ "default.handlebars->39->2161"
6174
]
6175
},
6176
{
@@ -6192,7 +6193,7 @@
6193
"tr": "Anında iletme bildirimi kimlik doğrulama cihazı eklendi",
6194
"zh-chs": "新增推送通知认证装置",
6195
"xloc": [
6195
- "default.handlebars->39->2154"
6196
+ "default.handlebars->39->2159"
6197
]
6198
},
6199
{
@@ -6216,7 +6217,7 @@
6217
"zh-chs": "添加了安全密钥",
6218
"zh-cht": "添加了安全密鑰",
6219
"xloc": [
6219
- "default.handlebars->39->2136"
6220
+ "default.handlebars->39->2141"
6221
]
6222
},
6223
{
@@ -6240,7 +6241,7 @@
6241
"zh-chs": "已将用户组{0}添加到设备组{1}",
6242
"zh-cht": "已將用戶組{0}添加到設備組{1}",
6243
"xloc": [
6243
- "default.handlebars->39->2109"
6244
+ "default.handlebars->39->2114"
6245
]
6246
},
6247
{
@@ -6264,8 +6265,8 @@
6265
"zh-chs": "已将用户{0}添加到用户组{1}",
6266
"zh-cht": "已將用戶{0}添加到用戶組{1}",
6267
"xloc": [
6267
- "default.handlebars->39->2112",
6268
- "default.handlebars->39->2121"
6268
+ "default.handlebars->39->2117",
6269
+ "default.handlebars->39->2126"
6270
]
6271
},
6272
{
@@ -6338,7 +6339,7 @@
6339
"zh-cht": "管理員控制模式(ACM)",
6340
"xloc": [
6341
"default-mobile.handlebars->11->539",
6341
- "default.handlebars->39->1348"
6342
+ "default.handlebars->39->1353"
6343
]
6344
},
6345
{
@@ -6363,7 +6364,7 @@
6364
"zh-cht": "管理員憑證",
6365
"xloc": [
6366
"default-mobile.handlebars->11->545",
6366
- "default.handlebars->39->1354"
6367
+ "default.handlebars->39->1359"
6368
]
6369
},
6370
{
@@ -6412,7 +6413,7 @@
6413
"zh-chs": "管理领域",
6414
"zh-cht": "管理領域",
6415
"xloc": [
6415
- "default.handlebars->39->2439"
6416
+ "default.handlebars->39->2444"
6417
]
6418
},
6419
{
@@ -6461,7 +6462,7 @@
6462
"zh-chs": "管理领域",
6463
"zh-cht": "管理領域",
6464
"xloc": [
6464
- "default.handlebars->39->2288"
6465
+ "default.handlebars->39->2293"
6466
]
6467
},
6468
{
@@ -6485,7 +6486,7 @@
6486
"zh-chs": "管理员",
6487
"zh-cht": "管理員",
6488
"xloc": [
6488
- "default.handlebars->39->2215"
6489
+ "default.handlebars->39->2220"
6490
]
6491
},
6492
{
@@ -6509,7 +6510,7 @@
6510
"zh-chs": "南非文",
6511
"zh-cht": "南非文",
6512
"xloc": [
6512
- "default.handlebars->39->1433"
6513
+ "default.handlebars->39->1438"
6514
]
6515
},
6516
{
@@ -6537,9 +6538,9 @@
6538
"default-mobile.handlebars->11->241",
6539
"default-mobile.handlebars->11->294",
6540
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
6540
- "default.handlebars->39->1974",
6541
- "default.handlebars->39->1987",
6542
- "default.handlebars->39->2713",
6541
+ "default.handlebars->39->1979",
6542
+ "default.handlebars->39->1992",
6543
+ "default.handlebars->39->2718",
6544
"default.handlebars->39->348",
6545
"default.handlebars->39->579",
6546
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1"
@@ -6566,8 +6567,8 @@
6567
"zh-chs": "代理+英特尔AMT",
6568
"zh-cht": "代理+Intel® AMT",
6569
"xloc": [
6569
- "default.handlebars->39->1976",
6570
- "default.handlebars->39->1989"
6570
+ "default.handlebars->39->1981",
6571
+ "default.handlebars->39->1994"
6572
]
6573
},
6574
{
@@ -6617,7 +6618,7 @@
6618
"zh-cht": "代理控制台",
6619
"xloc": [
6620
"default-mobile.handlebars->11->639",
6620
- "default.handlebars->39->1923"
6621
+ "default.handlebars->39->1928"
6622
]
6623
},
6624
{
@@ -6641,7 +6642,7 @@
6642
"zh-chs": "代理错误计数器",
6643
"zh-cht": "代理錯誤計數器",
6644
"xloc": [
6644
- "default.handlebars->39->2682"
6645
+ "default.handlebars->39->2687"
6646
]
6647
},
6648
{
@@ -6813,7 +6814,7 @@
6814
"zh-chs": "代理时段",
6815
"zh-cht": "代理時段",
6816
"xloc": [
6816
- "default.handlebars->39->2698"
6817
+ "default.handlebars->39->2703"
6818
]
6819
},
6820
{
@@ -6906,7 +6907,7 @@
6907
"zh-chs": "代理类型",
6908
"zh-cht": "代理類型",
6909
"xloc": [
6909
- "default.handlebars->39->1985",
6910
+ "default.handlebars->39->1990",
6911
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
6912
]
6913
},
@@ -6955,7 +6956,7 @@
6956
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
6957
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
6958
"xloc": [
6958
- "default.handlebars->39->2095"
6959
+ "default.handlebars->39->2100"
6960
]
6961
},
6962
{
@@ -7107,7 +7108,7 @@
7108
"zh-cht": "代理離線",
7109
"xloc": [
7110
"default-mobile.handlebars->11->573",
7110
- "default.handlebars->39->1383"
7111
+ "default.handlebars->39->1388"
7112
]
7113
},
7114
{
@@ -7132,7 +7133,7 @@
7133
"zh-cht": "代理在線",
7134
"xloc": [
7135
"default-mobile.handlebars->11->572",
7135
- "default.handlebars->39->1382"
7136
+ "default.handlebars->39->1387"
7137
]
7138
},
7139
{
@@ -7320,7 +7321,7 @@
7321
"zh-chs": "代理",
7322
"zh-cht": "代理",
7323
"xloc": [
7323
- "default.handlebars->39->2726"
7324
+ "default.handlebars->39->2731"
7325
]
7326
},
7327
{
@@ -7344,7 +7345,7 @@
7345
"zh-chs": "阿尔巴尼亚文",
7346
"zh-cht": "阿爾巴尼亞文",
7347
"xloc": [
7347
- "default.handlebars->39->1434"
7348
+ "default.handlebars->39->1439"
7349
]
7350
},
7351
{
@@ -7371,7 +7372,7 @@
7372
"default-mobile.handlebars->11->141",
7373
"default-mobile.handlebars->11->446",
7374
"default-mobile.handlebars->11->448",
7374
- "default.handlebars->39->2594",
7375
+ "default.handlebars->39->2599",
7376
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
7377
]
7378
},
@@ -7396,7 +7397,7 @@
7397
"zh-chs": "全部可用",
7398
"zh-cht": "全部可用",
7399
"xloc": [
7399
- "default.handlebars->39->2178"
7400
+ "default.handlebars->39->2183"
7401
]
7402
},
7403
{
@@ -7420,7 +7421,7 @@
7421
"zh-chs": "所有显示",
7422
"zh-cht": "所有顯示",
7423
"xloc": [
7423
- "default.handlebars->39->1195"
7424
+ "default.handlebars->39->1200"
7425
]
7426
},
7427
{
@@ -7444,7 +7445,7 @@
7445
"zh-chs": "所有事件",
7446
"zh-cht": "所有事件",
7447
"xloc": [
7447
- "default.handlebars->39->2176"
7448
+ "default.handlebars->39->2181"
7449
]
7450
},
7451
{
@@ -7514,8 +7515,8 @@
7515
"zh-chs": "允许用户管理此设备组和该组中的设备。",
7516
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
7517
"xloc": [
7517
- "default.handlebars->39->1868",
7518
- "default.handlebars->39->2387"
7518
+ "default.handlebars->39->1873",
7519
+ "default.handlebars->39->2392"
7520
]
7521
},
7522
{
@@ -7539,7 +7540,7 @@
7540
"zh-chs": "允许用户管理此设备。",
7541
"zh-cht": "允許用戶管理此裝置。",
7542
"xloc": [
7542
- "default.handlebars->39->1869"
7543
+ "default.handlebars->39->1874"
7544
]
7545
},
7546
{
@@ -7707,7 +7708,7 @@
7708
"zh-chs": "备用(F10 = ESC + 0)",
7709
"zh-cht": "備用(F10 = ESC + 0)",
7710
"xloc": [
7710
- "default.handlebars->39->1221",
7711
+ "default.handlebars->39->1226",
7712
"sharing.handlebars->11->37"
7713
]
7714
},
@@ -7778,9 +7779,9 @@
7779
"zh-chs": "一直通知",
7780
"zh-cht": "一直通知",
7781
"xloc": [
7781
- "default.handlebars->39->1761",
7782
- "default.handlebars->39->2346",
7783
- "default.handlebars->39->2448",
7782
+ "default.handlebars->39->1766",
7783
+ "default.handlebars->39->2351",
7784
+ "default.handlebars->39->2453",
7785
"default.handlebars->39->805"
7786
]
7787
},
@@ -7805,9 +7806,9 @@
7806
"zh-chs": "一直提示",
7807
"zh-cht": "一直提示",
7808
"xloc": [
7808
- "default.handlebars->39->1762",
7809
- "default.handlebars->39->2347",
7810
- "default.handlebars->39->2449",
7809
+ "default.handlebars->39->1767",
7810
+ "default.handlebars->39->2352",
7811
+ "default.handlebars->39->2454",
7812
"default.handlebars->39->806"
7813
]
7814
},
@@ -8043,8 +8044,8 @@
8044
"tr": "Anti-virüs etkin değil",
8045
"zh-chs": "杀毒软件未激活",
8046
"xloc": [
8046
- "default.handlebars->39->1978",
8047
- "default.handlebars->39->1992"
8047
+ "default.handlebars->39->1983",
8048
+ "default.handlebars->39->1997"
8049
]
8050
},
8051
{
@@ -8340,7 +8341,7 @@
8341
"zh-chs": "阿拉伯文(阿尔及利亚)",
8342
"zh-cht": "阿拉伯文(阿爾及利亞)",
8343
"xloc": [
8343
- "default.handlebars->39->1436"
8344
+ "default.handlebars->39->1441"
8345
]
8346
},
8347
{
@@ -8364,7 +8365,7 @@
8365
"zh-chs": "阿拉伯文(巴林)",
8366
"zh-cht": "阿拉伯文(巴林)",
8367
"xloc": [
8367
- "default.handlebars->39->1437"
8368
+ "default.handlebars->39->1442"
8369
]
8370
},
8371
{
@@ -8388,7 +8389,7 @@
8389
"zh-chs": "阿拉伯文(埃及)",
8390
"zh-cht": "阿拉伯文(埃及)",
8391
"xloc": [
8391
- "default.handlebars->39->1438"
8392
+ "default.handlebars->39->1443"
8393
]
8394
},
8395
{
@@ -8412,7 +8413,7 @@
8413
"zh-chs": "阿拉伯文(伊拉克)",
8414
"zh-cht": "阿拉伯文(伊拉克)",
8415
"xloc": [
8415
- "default.handlebars->39->1439"
8416
+ "default.handlebars->39->1444"
8417
]
8418
},
8419
{
@@ -8436,7 +8437,7 @@
8437
"zh-chs": "阿拉伯文(约旦)",
8438
"zh-cht": "阿拉伯文(約旦)",
8439
"xloc": [
8439
- "default.handlebars->39->1440"
8440
+ "default.handlebars->39->1445"
8441
]
8442
},
8443
{
@@ -8460,7 +8461,7 @@
8461
"zh-chs": "阿拉伯文(科威特)",
8462
"zh-cht": "阿拉伯文(科威特)",
8463
"xloc": [
8463
- "default.handlebars->39->1441"
8464
+ "default.handlebars->39->1446"
8465
]
8466
},
8467
{
@@ -8484,7 +8485,7 @@
8485
"zh-chs": "阿拉伯文(黎巴嫩)",
8486
"zh-cht": "阿拉伯文(黎巴嫩)",
8487
"xloc": [
8487
- "default.handlebars->39->1442"
8488
+ "default.handlebars->39->1447"
8489
]
8490
},
8491
{
@@ -8508,7 +8509,7 @@
8509
"zh-chs": "阿拉伯文(利比亚)",
8510
"zh-cht": "阿拉伯文(利比亞)",
8511
"xloc": [
8511
- "default.handlebars->39->1443"
8512
+ "default.handlebars->39->1448"
8513
]
8514
},
8515
{
@@ -8532,7 +8533,7 @@
8533
"zh-chs": "阿拉伯文(摩洛哥)",
8534
"zh-cht": "阿拉伯文(摩洛哥)",
8535
"xloc": [
8535
- "default.handlebars->39->1444"
8536
+ "default.handlebars->39->1449"
8537
]
8538
},
8539
{
@@ -8556,7 +8557,7 @@
8557
"zh-chs": "阿拉伯文(阿曼)",
8558
"zh-cht": "阿拉伯文(阿曼)",
8559
"xloc": [
8559
- "default.handlebars->39->1445"
8560
+ "default.handlebars->39->1450"
8561
]
8562
},
8563
{
@@ -8580,7 +8581,7 @@
8581
"zh-chs": "阿拉伯文(卡塔尔)",
8582
"zh-cht": "阿拉伯文(卡塔爾)",
8583
"xloc": [
8583
- "default.handlebars->39->1446"
8584
+ "default.handlebars->39->1451"
8585
]
8586
},
8587
{
@@ -8604,7 +8605,7 @@
8605
"zh-chs": "阿拉伯文(沙特阿拉伯)",
8606
"zh-cht": "阿拉伯文(沙特阿拉伯)",
8607
"xloc": [
8607
- "default.handlebars->39->1447"
8608
+ "default.handlebars->39->1452"
8609
]
8610
},
8611
{
@@ -8628,7 +8629,7 @@
8629
"zh-chs": "阿拉伯文(标准)",
8630
"zh-cht": "阿拉伯文(標準)",
8631
"xloc": [
8631
- "default.handlebars->39->1435"
8632
+ "default.handlebars->39->1440"
8633
]
8634
},
8635
{
@@ -8652,7 +8653,7 @@
8653
"zh-chs": "阿拉伯文(叙利亚)",
8654
"zh-cht": "阿拉伯文(敘利亞)",
8655
"xloc": [
8655
- "default.handlebars->39->1448"
8656
+ "default.handlebars->39->1453"
8657
]
8658
},
8659
{
@@ -8676,7 +8677,7 @@
8677
"zh-chs": "阿拉伯文(突尼斯)",
8678
"zh-cht": "阿拉伯文(突尼斯)",
8679
"xloc": [
8679
- "default.handlebars->39->1449"
8680
+ "default.handlebars->39->1454"
8681
]
8682
},
8683
{
@@ -8700,7 +8701,7 @@
8701
"zh-chs": "阿拉伯文(阿联酋)",
8702
"zh-cht": "阿拉伯文(阿聯酋)",
8703
"xloc": [
8703
- "default.handlebars->39->1450"
8704
+ "default.handlebars->39->1455"
8705
]
8706
},
8707
{
@@ -8724,7 +8725,7 @@
8725
"zh-chs": "阿拉伯文(也门)",
8726
"zh-cht": "阿拉伯文(也門)",
8727
"xloc": [
8727
- "default.handlebars->39->1451"
8728
+ "default.handlebars->39->1456"
8729
]
8730
},
8731
{
@@ -8748,7 +8749,7 @@
8749
"zh-chs": "阿拉贡文",
8750
"zh-cht": "阿拉貢文",
8751
"xloc": [
8751
- "default.handlebars->39->1452"
8752
+ "default.handlebars->39->1457"
8753
]
8754
},
8755
{
@@ -8775,9 +8776,9 @@
8776
"default-mobile.handlebars->11->481",
8777
"default-mobile.handlebars->11->483",
8778
"default-mobile.handlebars->11->485",
8778
- "default.handlebars->39->1297",
8779
- "default.handlebars->39->1299",
8780
- "default.handlebars->39->1301"
8779
+ "default.handlebars->39->1302",
8780
+ "default.handlebars->39->1304",
8781
+ "default.handlebars->39->1306"
8782
]
8783
},
8784
{
@@ -8826,7 +8827,7 @@
8827
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
8828
"xloc": [
8829
"default-mobile.handlebars->11->604",
8829
- "default.handlebars->39->1840"
8830
+ "default.handlebars->39->1845"
8831
]
8832
},
8833
{
@@ -8922,7 +8923,7 @@
8923
"zh-chs": "您确定要{0}插件吗:{1}",
8924
"zh-cht": "你確定要{0}外掛嗎:{1}",
8925
"xloc": [
8925
- "default.handlebars->39->2777"
8926
+ "default.handlebars->39->2782"
8927
]
8928
},
8929
{
@@ -8970,7 +8971,7 @@
8971
"zh-chs": "亚美尼亚文",
8972
"zh-cht": "亞美尼亞文",
8973
"xloc": [
8973
- "default.handlebars->39->1453"
8974
+ "default.handlebars->39->1458"
8975
]
8976
},
8977
{
@@ -9042,7 +9043,7 @@
9043
"zh-chs": "阿萨姆文",
9044
"zh-cht": "阿薩姆文",
9045
"xloc": [
9045
- "default.handlebars->39->1454"
9046
+ "default.handlebars->39->1459"
9047
]
9048
},
9049
{
@@ -9181,7 +9182,7 @@
9182
"zh-chs": "阿斯图里亚斯文",
9183
"zh-cht": "阿斯圖里亞斯文",
9184
"xloc": [
9184
- "default.handlebars->39->1455"
9185
+ "default.handlebars->39->1460"
9186
]
9187
},
9188
{
@@ -9205,7 +9206,7 @@
9206
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
9207
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
9208
"xloc": [
9208
- "default.handlebars->39->2064"
9209
+ "default.handlebars->39->2069"
9210
]
9211
},
9212
{
@@ -9252,10 +9253,10 @@
9253
"default-mobile.handlebars->11->422",
9254
"default-mobile.handlebars->11->430",
9255
"default-mobile.handlebars->11->439",
9255
- "default.handlebars->39->1203",
9256
- "default.handlebars->39->1212",
9257
- "default.handlebars->39->1230",
9258
- "default.handlebars->39->1238",
9256
+ "default.handlebars->39->1208",
9257
+ "default.handlebars->39->1217",
9258
+ "default.handlebars->39->1235",
9259
+ "default.handlebars->39->1243",
9260
"ssh.handlebars->3->14",
9261
"ssh.handlebars->3->15",
9262
"ssh.handlebars->3->5"
@@ -9282,7 +9283,7 @@
9283
"zh-chs": "认证软件",
9284
"zh-cht": "認證軟體",
9285
"xloc": [
9285
- "default.handlebars->39->2452"
9286
+ "default.handlebars->39->2457"
9287
]
9288
},
9289
{
@@ -9305,9 +9306,9 @@
9306
"tr": "Kimlik Doğrulama Cihazı",
9307
"zh-chs": "认证设备",
9308
"xloc": [
9308
- "default.handlebars->39->1416",
9309
- "default.handlebars->39->1418",
9310
- "default.handlebars->39->1422"
9309
+ "default.handlebars->39->1421",
9310
+ "default.handlebars->39->1423",
9311
+ "default.handlebars->39->1427"
9312
]
9313
},
9314
{
@@ -9332,8 +9333,8 @@
9333
"xloc": [
9334
"default-mobile.handlebars->11->423",
9335
"default-mobile.handlebars->11->440",
9335
- "default.handlebars->39->1214",
9336
- "default.handlebars->39->1239"
9336
+ "default.handlebars->39->1219",
9337
+ "default.handlebars->39->1244"
9338
]
9339
},
9340
{
@@ -9361,8 +9362,8 @@
9362
"default-mobile.handlebars->11->64",
9363
"default-mobile.handlebars->11->95",
9364
"default-mobile.handlebars->11->97",
9364
- "default.handlebars->39->1412",
9365
- "default.handlebars->39->1414",
9365
+ "default.handlebars->39->1417",
9366
+ "default.handlebars->39->1419",
9367
"default.handlebars->39->193",
9368
"default.handlebars->39->198"
9369
]
@@ -9460,7 +9461,7 @@
9461
"zh-chs": "自动删除",
9462
"zh-cht": "自動刪除",
9463
"xloc": [
9463
- "default.handlebars->39->1747"
9464
+ "default.handlebars->39->1752"
9465
]
9466
},
9467
{
@@ -9512,7 +9513,7 @@
9513
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
9514
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
9515
"xloc": [
9515
- "default.handlebars->39->2145"
9516
+ "default.handlebars->39->2150"
9517
]
9518
},
9519
{
@@ -9602,7 +9603,7 @@
9603
"tr": "Etkin olmayan cihazları otomatik olarak kaldırın",
9604
"zh-chs": "自动移除非活动设备",
9605
"xloc": [
9605
- "default.handlebars->39->1863"
9606
+ "default.handlebars->39->1868"
9607
]
9608
},
9609
{
@@ -9626,7 +9627,7 @@
9627
"zh-chs": "可用內存",
9628
"zh-cht": "可用內存",
9629
"xloc": [
9629
- "default.handlebars->39->2707"
9630
+ "default.handlebars->39->2712"
9631
]
9632
},
9633
{
@@ -9650,7 +9651,7 @@
9651
"zh-chs": "阿塞拜疆文",
9652
"zh-cht": "阿塞拜疆文",
9653
"xloc": [
9653
- "default.handlebars->39->1456"
9654
+ "default.handlebars->39->1461"
9655
]
9656
},
9657
{
@@ -9703,7 +9704,7 @@
9704
"zh-cht": "的BIOS",
9705
"xloc": [
9706
"default-mobile.handlebars->11->551",
9706
- "default.handlebars->39->1360"
9707
+ "default.handlebars->39->1365"
9708
]
9709
},
9710
{
@@ -9859,8 +9860,8 @@
9860
"zh-chs": "背景与互动",
9861
"zh-cht": "背景與互動",
9862
"xloc": [
9862
- "default.handlebars->39->1954",
9863
- "default.handlebars->39->1961",
9863
+ "default.handlebars->39->1959",
9864
+ "default.handlebars->39->1966",
9865
"default.handlebars->39->472",
9866
"default.handlebars->39->486"
9867
]
@@ -9886,8 +9887,8 @@
9887
"zh-chs": "仅背景",
9888
"zh-cht": "僅背景",
9889
"xloc": [
9889
- "default.handlebars->39->1955",
9890
- "default.handlebars->39->1962",
9890
+ "default.handlebars->39->1960",
9891
+ "default.handlebars->39->1967",
9892
"default.handlebars->39->473",
9893
"default.handlebars->39->487",
9894
"default.handlebars->39->503"
@@ -9939,7 +9940,7 @@
9940
"zh-chs": "备用码",
9941
"zh-cht": "備用碼",
9942
"xloc": [
9942
- "default.handlebars->39->2455"
9943
+ "default.handlebars->39->2460"
9944
]
9945
},
9946
{
@@ -9969,7 +9970,7 @@
9970
"zh-chs": "错误的签名",
9971
"zh-cht": "錯誤的簽名",
9972
"xloc": [
9972
- "default.handlebars->39->2689"
9973
+ "default.handlebars->39->2694"
9974
]
9975
},
9976
{
@@ -9993,7 +9994,7 @@
9994
"zh-chs": "错误的网络证书",
9995
"zh-cht": "錯誤的網絡憑證",
9996
"xloc": [
9996
- "default.handlebars->39->2688"
9997
+ "default.handlebars->39->2693"
9998
]
9999
},
10000
{
@@ -10017,7 +10018,7 @@
10018
"zh-chs": "巴斯克",
10019
"zh-cht": "巴斯克",
10020
"xloc": [
10020
- "default.handlebars->39->1457"
10021
+ "default.handlebars->39->1462"
10022
]
10023
},
10024
{
@@ -10089,7 +10090,7 @@
10090
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
10091
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
10092
"xloc": [
10092
- "default.handlebars->39->2144"
10093
+ "default.handlebars->39->2149"
10094
]
10095
},
10096
{
@@ -10113,7 +10114,7 @@
10114
"zh-chs": "白俄罗斯文",
10115
"zh-cht": "白俄羅斯文",
10116
"xloc": [
10116
- "default.handlebars->39->1459"
10117
+ "default.handlebars->39->1464"
10118
]
10119
},
10120
{
@@ -10137,7 +10138,7 @@
10138
"zh-chs": "孟加拉",
10139
"zh-cht": "孟加拉",
10140
"xloc": [
10140
- "default.handlebars->39->1460"
10141
+ "default.handlebars->39->1465"
10142
]
10143
},
10144
{
@@ -10208,7 +10209,7 @@
10209
"zh-chs": "引导加载程序",
10210
"xloc": [
10211
"default-mobile.handlebars->11->515",
10211
- "default.handlebars->39->1314"
10212
+ "default.handlebars->39->1319"
10213
]
10214
},
10215
{
@@ -10232,7 +10233,7 @@
10233
"zh-chs": "波斯尼亚文",
10234
"zh-cht": "波斯尼亞文",
10235
"xloc": [
10235
- "default.handlebars->39->1461"
10236
+ "default.handlebars->39->1466"
10237
]
10238
},
10239
{
@@ -10256,7 +10257,7 @@
10257
"zh-chs": "布列塔尼",
10258
"zh-cht": "布列塔尼",
10259
"xloc": [
10259
- "default.handlebars->39->1462"
10260
+ "default.handlebars->39->1467"
10261
]
10262
},
10263
{
@@ -10280,7 +10281,7 @@
10281
"zh-chs": "广播",
10282
"zh-cht": "廣播",
10283
"xloc": [
10283
- "default.handlebars->39->2353",
10284
+ "default.handlebars->39->2358",
10285
"default.handlebars->container->column_l->p4->3->1->0->3->1"
10286
]
10287
},
@@ -10305,7 +10306,7 @@
10306
"zh-chs": "广播消息",
10307
"zh-cht": "廣播消息",
10308
"xloc": [
10308
- "default.handlebars->39->2270"
10309
+ "default.handlebars->39->2275"
10310
]
10311
},
10312
{
@@ -10329,7 +10330,7 @@
10330
"zh-chs": "向所有连接的用户广播消息。",
10331
"zh-cht": "向所有連接的用戶廣播消息。",
10332
"xloc": [
10332
- "default.handlebars->39->2265"
10333
+ "default.handlebars->39->2270"
10334
]
10335
},
10336
{
@@ -10377,7 +10378,7 @@
10378
"zh-chs": "保加利亚文",
10379
"zh-cht": "保加利亞文",
10380
"xloc": [
10380
- "default.handlebars->39->1458"
10381
+ "default.handlebars->39->1463"
10382
]
10383
},
10384
{
@@ -10401,7 +10402,7 @@
10402
"zh-chs": "缅甸文",
10403
"zh-cht": "緬甸文",
10404
"xloc": [
10404
- "default.handlebars->39->1463"
10405
+ "default.handlebars->39->1468"
10406
]
10407
},
10408
{
@@ -10424,7 +10425,7 @@
10425
"tr": "Varsayılan olarak, etkin olmayan cihazlar 1 gün sonra kaldırılacaktır.",
10426
"zh-chs": "默认情况下,不活动的设备将在 1 天后移除。",
10427
"xloc": [
10427
- "default.handlebars->39->1865"
10428
+ "default.handlebars->39->1870"
10429
]
10430
},
10431
{
@@ -10447,7 +10448,7 @@
10448
"tr": "Varsayılan olarak, etkin olmayan cihazlar {0} gün sonra kaldırılacaktır.",
10449
"zh-chs": "默认情况下,非活动设备将在 {0} 天后移除。",
10450
"xloc": [
10450
- "default.handlebars->39->1866"
10451
+ "default.handlebars->39->1871"
10452
]
10453
},
10454
{
@@ -10455,7 +10456,7 @@
10456
"nl": "Bytes in",
10457
"es": "Bytes entrantes",
10458
"xloc": [
10458
- "default.handlebars->39->2612"
10459
+ "default.handlebars->39->2617"
10460
]
10461
},
10462
{
@@ -10463,7 +10464,7 @@
10464
"nl": "Bytes uit",
10465
"es": "Bytes salientes",
10466
"xloc": [
10466
- "default.handlebars->39->2613"
10467
+ "default.handlebars->39->2618"
10468
]
10469
},
10470
{
@@ -10512,7 +10513,7 @@
10513
"zh-chs": "CCM模式",
10514
"zh-cht": "CCM模式",
10515
"xloc": [
10515
- "default.handlebars->39->1823"
10516
+ "default.handlebars->39->1828"
10517
]
10518
},
10519
{
@@ -10537,7 +10538,7 @@
10538
"zh-cht": "CIRA",
10539
"xloc": [
10540
"default-mobile.handlebars->11->242",
10540
- "default.handlebars->39->2714",
10541
+ "default.handlebars->39->2719",
10542
"default.handlebars->39->350",
10543
"default.handlebars->39->581"
10544
]
@@ -10563,7 +10564,7 @@
10564
"zh-chs": "CIRA服务器",
10565
"zh-cht": "CIRA伺服器",
10566
"xloc": [
10566
- "default.handlebars->39->2761"
10567
+ "default.handlebars->39->2766"
10568
]
10569
},
10570
{
@@ -10587,7 +10588,7 @@
10588
"zh-chs": "CIRA服务器命令",
10589
"zh-cht": "CIRA伺服器指令",
10590
"xloc": [
10590
- "default.handlebars->39->2762"
10591
+ "default.handlebars->39->2767"
10592
]
10593
},
10594
{
@@ -10620,7 +10621,7 @@
10621
"zh-chs": "CIRA设置",
10622
"zh-cht": "CIRA設置",
10623
"xloc": [
10623
- "default.handlebars->39->1831"
10624
+ "default.handlebars->39->1836"
10625
]
10626
},
10627
{
@@ -10645,8 +10646,8 @@
10646
"zh-cht": "CPU",
10647
"xloc": [
10648
"default-mobile.handlebars->11->557",
10648
- "default.handlebars->39->1366",
10649
- "default.handlebars->39->2738",
10649
+ "default.handlebars->39->1371",
10650
+ "default.handlebars->39->2743",
10651
"default.handlebars->container->column_l->p40->3->1->p40type->5"
10652
]
10653
},
@@ -10671,7 +10672,7 @@
10672
"zh-chs": "CPU负载",
10673
"zh-cht": "CPU負載",
10674
"xloc": [
10674
- "default.handlebars->39->2703"
10675
+ "default.handlebars->39->2708"
10676
]
10677
},
10678
{
@@ -10695,7 +10696,7 @@
10696
"zh-chs": "最近15分钟的CPU负载",
10697
"zh-cht": "最近15分鐘的CPU負載",
10698
"xloc": [
10698
- "default.handlebars->39->2706"
10699
+ "default.handlebars->39->2711"
10700
]
10701
},
10702
{
@@ -10719,7 +10720,7 @@
10720
"zh-chs": "最近5分钟的CPU负载",
10721
"zh-cht": "最近5分鐘的CPU負載",
10722
"xloc": [
10722
- "default.handlebars->39->2705"
10723
+ "default.handlebars->39->2710"
10724
]
10725
},
10726
{
@@ -10743,7 +10744,7 @@
10744
"zh-chs": "最近一分钟的CPU负载",
10745
"zh-cht": "最近一分鐘的CPU負載",
10746
"xloc": [
10746
- "default.handlebars->39->2704"
10747
+ "default.handlebars->39->2709"
10748
]
10749
},
10750
{
@@ -10767,8 +10768,8 @@
10768
"zh-chs": "CR+LF",
10769
"zh-cht": "CR+LF",
10770
"xloc": [
10770
- "default.handlebars->39->1200",
10771
- "default.handlebars->39->1223",
10771
+ "default.handlebars->39->1205",
10772
+ "default.handlebars->39->1228",
10773
"default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
10774
"sharing.handlebars->11->25",
10775
"sharing.handlebars->11->39",
@@ -10796,7 +10797,7 @@
10797
"zh-chs": "CSV",
10798
"zh-cht": "CSV",
10799
"xloc": [
10799
- "default.handlebars->39->2186"
10800
+ "default.handlebars->39->2191"
10801
]
10802
},
10803
{
@@ -10820,8 +10821,8 @@
10821
"zh-chs": "CSV格式",
10822
"zh-cht": "CSV格式",
10823
"xloc": [
10823
- "default.handlebars->39->2190",
10824
- "default.handlebars->39->2257",
10824
+ "default.handlebars->39->2195",
10825
+ "default.handlebars->39->2262",
10826
"default.handlebars->39->652"
10827
]
10828
},
@@ -10867,7 +10868,7 @@
10868
"zh-chs": "呼叫错误",
10869
"zh-cht": "呼叫錯誤",
10870
"xloc": [
10870
- "default.handlebars->39->2778"
10871
+ "default.handlebars->39->2783"
10872
]
10873
},
10874
{
@@ -10903,8 +10904,8 @@
10904
"agent-translations.json",
10905
"default-mobile.handlebars->11->106",
10906
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
10906
- "default.handlebars->39->1724",
10907
- "default.handlebars->39->2767",
10907
+ "default.handlebars->39->1729",
10908
+ "default.handlebars->39->2772",
10909
"default.handlebars->39->446",
10910
"default.handlebars->container->dialog->idx_dlgButtonBar",
10911
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -10980,9 +10981,9 @@
10981
"default-mobile.handlebars->11->562",
10982
"default-mobile.handlebars->11->567",
10983
"default-mobile.handlebars->11->569",
10983
- "default.handlebars->39->1371",
10984
"default.handlebars->39->1376",
10985
- "default.handlebars->39->1378"
10985
+ "default.handlebars->39->1381",
10986
+ "default.handlebars->39->1383"
10987
]
10988
},
10989
{
@@ -11007,7 +11008,7 @@
11008
"zh-cht": "容量/速度",
11009
"xloc": [
11010
"default-mobile.handlebars->11->560",
11010
- "default.handlebars->39->1369"
11011
+ "default.handlebars->39->1374"
11012
]
11013
},
11014
{
@@ -11031,7 +11032,7 @@
11032
"zh-chs": "加泰罗尼亚文",
11033
"zh-cht": "加泰羅尼亞文",
11034
"xloc": [
11034
- "default.handlebars->39->1464"
11035
+ "default.handlebars->39->1469"
11036
]
11037
},
11038
{
@@ -11124,7 +11125,7 @@
11125
"zh-chs": "查莫罗",
11126
"zh-cht": "查莫羅",
11127
"xloc": [
11127
- "default.handlebars->39->1465"
11128
+ "default.handlebars->39->1470"
11129
]
11130
},
11131
{
@@ -11174,7 +11175,7 @@
11175
"zh-chs": "更改{0}的电邮",
11176
"zh-cht": "更改{0}的電郵",
11177
"xloc": [
11177
- "default.handlebars->39->2500"
11178
+ "default.handlebars->39->2505"
11179
]
11180
},
11181
{
@@ -11225,8 +11226,8 @@
11226
"zh-cht": "更改密碼",
11227
"xloc": [
11228
"default-mobile.handlebars->11->114",
11228
- "default.handlebars->39->1680",
11229
- "default.handlebars->39->2473"
11229
+ "default.handlebars->39->1685",
11230
+ "default.handlebars->39->2478"
11231
]
11232
},
11233
{
@@ -11250,7 +11251,7 @@
11251
"zh-chs": "更改{0}的密码",
11252
"zh-cht": "更改{0}的密碼",
11253
"xloc": [
11253
- "default.handlebars->39->2509"
11254
+ "default.handlebars->39->2514"
11255
]
11256
},
11257
{
@@ -11274,7 +11275,7 @@
11275
"zh-chs": "更改{0}的真实名称",
11276
"zh-cht": "更改{0}的真實名稱",
11277
"xloc": [
11277
- "default.handlebars->39->2495"
11278
+ "default.handlebars->39->2500"
11279
]
11280
},
11281
{
@@ -11415,7 +11416,7 @@
11416
"zh-chs": "更改该用户的密码",
11417
"zh-cht": "更改該用戶的密碼",
11418
"xloc": [
11418
- "default.handlebars->39->2472"
11419
+ "default.handlebars->39->2477"
11420
]
11421
},
11422
{
@@ -11463,7 +11464,7 @@
11464
"zh-chs": "在此处更改您的帐户电邮地址。",
11465
"zh-cht": "在此處更改你的帳戶電郵地址。",
11466
"xloc": [
11466
- "default.handlebars->39->1667"
11467
+ "default.handlebars->39->1672"
11468
]
11469
},
11470
{
@@ -11487,7 +11488,7 @@
11488
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
11489
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
11490
"xloc": [
11490
- "default.handlebars->39->1673"
11491
+ "default.handlebars->39->1678"
11492
]
11493
},
11494
{
@@ -11511,7 +11512,7 @@
11512
"zh-chs": "更改帐户凭据",
11513
"zh-cht": "帳戶憑證已更改",
11514
"xloc": [
11514
- "default.handlebars->39->2116"
11515
+ "default.handlebars->39->2121"
11516
]
11517
},
11518
{
@@ -11519,7 +11520,7 @@
11520
"nl": "Weergavenaam account gewijzigd in {0}.",
11521
"es": "Cambiado el nombre visible de la cuenta a {0}.",
11522
"xloc": [
11522
- "default.handlebars->39->2168"
11523
+ "default.handlebars->39->2173"
11524
]
11525
},
11526
{
@@ -11543,7 +11544,7 @@
11544
"zh-chs": "{1}组中的设备{0}已更改:{2}",
11545
"zh-cht": "{1}組中的設備{0}已更改:{2}",
11546
"xloc": [
11546
- "default.handlebars->39->2100"
11547
+ "default.handlebars->39->2105"
11548
]
11549
},
11550
{
@@ -11567,7 +11568,7 @@
11568
"zh-chs": "语言从{1}更改为{2}",
11569
"zh-cht": "語言從{1}更改為{2}",
11570
"xloc": [
11570
- "default.handlebars->39->2044"
11571
+ "default.handlebars->39->2049"
11572
]
11573
},
11574
{
@@ -11591,8 +11592,8 @@
11592
"zh-chs": "已更改{0}的用户设备权限",
11593
"zh-cht": "已更改{0}的用戶設備權限",
11594
"xloc": [
11594
- "default.handlebars->39->2102",
11595
- "default.handlebars->39->2123"
11595
+ "default.handlebars->39->2107",
11596
+ "default.handlebars->39->2128"
11597
]
11598
},
11599
{
@@ -11636,7 +11637,7 @@
11637
"zh-chs": "更改语言将需要刷新页面。",
11638
"zh-cht": "更改語言將需要刷新頁面。",
11639
"xloc": [
11639
- "default.handlebars->39->1632"
11640
+ "default.handlebars->39->1637"
11641
]
11642
},
11643
{
@@ -11660,9 +11661,9 @@
11661
"zh-chs": "聊天",
11662
"zh-cht": "聊天",
11663
"xloc": [
11663
- "default.handlebars->39->2207",
11664
- "default.handlebars->39->2468",
11665
- "default.handlebars->39->2469",
11664
+ "default.handlebars->39->2212",
11665
+ "default.handlebars->39->2473",
11666
+ "default.handlebars->39->2474",
11667
"default.handlebars->39->845",
11668
"default.handlebars->39->933",
11669
"default.handlebars->39->955"
@@ -11691,8 +11692,8 @@
11692
"xloc": [
11693
"default-mobile.handlebars->11->629",
11694
"default-mobile.handlebars->11->649",
11694
- "default.handlebars->39->1897",
11695
- "default.handlebars->39->1934"
11695
+ "default.handlebars->39->1902",
11696
+ "default.handlebars->39->1939"
11697
]
11698
},
11699
{
@@ -11716,7 +11717,7 @@
11717
"zh-chs": "聊天请求,点击这里接受。",
11718
"xloc": [
11719
"default-mobile.handlebars->11->681",
11719
- "default.handlebars->39->2658"
11720
+ "default.handlebars->39->2663"
11721
]
11722
},
11723
{
@@ -11764,7 +11765,7 @@
11765
"zh-chs": "车臣",
11766
"zh-cht": "車臣",
11767
"xloc": [
11767
- "default.handlebars->39->1466"
11768
+ "default.handlebars->39->1471"
11769
]
11770
},
11771
{
@@ -11884,8 +11885,8 @@
11885
"zh-chs": "检查...",
11886
"zh-cht": "檢查...",
11887
"xloc": [
11887
- "default.handlebars->39->1432",
11888
- "default.handlebars->39->2772"
11888
+ "default.handlebars->39->1437",
11889
+ "default.handlebars->39->2777"
11890
]
11891
},
11892
{
@@ -11909,7 +11910,7 @@
11910
"zh-chs": "中文",
11911
"zh-cht": "中文",
11912
"xloc": [
11912
- "default.handlebars->39->1467"
11913
+ "default.handlebars->39->1472"
11914
]
11915
},
11916
{
@@ -11933,7 +11934,7 @@
11934
"zh-chs": "中文(香港)",
11935
"zh-cht": "中文(香港)",
11936
"xloc": [
11936
- "default.handlebars->39->1468"
11937
+ "default.handlebars->39->1473"
11938
]
11939
},
11940
{
@@ -11957,7 +11958,7 @@
11958
"zh-chs": "中文(中国)",
11959
"zh-cht": "中文(中國)",
11960
"xloc": [
11960
- "default.handlebars->39->1469"
11961
+ "default.handlebars->39->1474"
11962
]
11963
},
11964
{
@@ -11981,7 +11982,7 @@
11982
"zh-chs": "简体中文",
11983
"zh-cht": "簡體中文",
11984
"xloc": [
11984
- "default.handlebars->39->1629"
11985
+ "default.handlebars->39->1634"
11986
]
11987
},
11988
{
@@ -12005,7 +12006,7 @@
12006
"zh-chs": "中文(新加坡)",
12007
"zh-cht": "中文(新加坡)",
12008
"xloc": [
12008
- "default.handlebars->39->1470"
12009
+ "default.handlebars->39->1475"
12010
]
12011
},
12012
{
@@ -12029,7 +12030,7 @@
12030
"zh-chs": "中文(台湾)",
12031
"zh-cht": "中文(台灣)",
12032
"xloc": [
12032
- "default.handlebars->39->1471"
12033
+ "default.handlebars->39->1476"
12034
]
12035
},
12036
{
@@ -12053,7 +12054,7 @@
12054
"zh-chs": "繁体中文",
12055
"zh-cht": "繁體中文",
12056
"xloc": [
12056
- "default.handlebars->39->1630"
12057
+ "default.handlebars->39->1635"
12058
]
12059
},
12060
{
@@ -12102,7 +12103,7 @@
12103
"zh-chs": "楚瓦什",
12104
"zh-cht": "楚瓦什",
12105
"xloc": [
12105
- "default.handlebars->39->1472"
12106
+ "default.handlebars->39->1477"
12107
]
12108
},
12109
{
@@ -12154,11 +12155,11 @@
12155
"default-mobile.handlebars->11->471",
12156
"default-mobile.handlebars->11->71",
12157
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
12157
- "default.handlebars->39->1273",
12158
- "default.handlebars->39->1275",
12159
- "default.handlebars->39->1277",
12160
- "default.handlebars->39->1279",
12161
- "default.handlebars->39->2038",
12158
+ "default.handlebars->39->1278",
12159
+ "default.handlebars->39->1280",
12160
+ "default.handlebars->39->1282",
12161
+ "default.handlebars->39->1284",
12162
+ "default.handlebars->39->2043",
12163
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
12164
"default.handlebars->container->column_l->p41->3->1",
12165
"messenger.handlebars->xbottom->1->1->0->5",
@@ -12309,7 +12310,7 @@
12310
"zh-cht": "全部清除",
12311
"xloc": [
12312
"default-mobile.handlebars->11->664",
12312
- "default.handlebars->39->2641"
12313
+ "default.handlebars->39->2646"
12314
]
12315
},
12316
{
@@ -12359,7 +12360,7 @@
12360
"zh-cht": "清除核心",
12361
"xloc": [
12362
"default-mobile.handlebars->11->583",
12362
- "default.handlebars->39->1393"
12363
+ "default.handlebars->39->1398"
12364
]
12365
},
12366
{
@@ -12408,7 +12409,7 @@
12409
"zh-cht": "清除此通知",
12410
"xloc": [
12411
"default-mobile.handlebars->11->663",
12411
- "default.handlebars->39->2640"
12412
+ "default.handlebars->39->2645"
12413
]
12414
},
12415
{
@@ -12480,8 +12481,8 @@
12481
"zh-chs": "单击此处编辑设备组名称",
12482
"zh-cht": "單擊此處編輯裝置群名稱",
12483
"xloc": [
12483
- "default.handlebars->39->1735",
12484
- "default.handlebars->39->1983"
12484
+ "default.handlebars->39->1740",
12485
+ "default.handlebars->39->1988"
12486
]
12487
},
12488
{
@@ -12529,7 +12530,7 @@
12530
"zh-chs": "单击此处编辑用户组名称",
12531
"zh-cht": "單擊此處編輯用戶群名稱",
12532
"xloc": [
12532
- "default.handlebars->39->2327"
12533
+ "default.handlebars->39->2332"
12534
]
12535
},
12536
{
@@ -12647,7 +12648,7 @@
12648
"zh-cht": "單擊確定將驗證電郵發送到:",
12649
"xloc": [
12650
"default-mobile.handlebars->11->99",
12650
- "default.handlebars->39->1664"
12651
+ "default.handlebars->39->1669"
12652
]
12653
},
12654
{
@@ -12721,7 +12722,7 @@
12722
"zh-cht": "客戶端控制模式(CCM)",
12723
"xloc": [
12724
"default-mobile.handlebars->11->538",
12724
- "default.handlebars->39->1347"
12725
+ "default.handlebars->39->1352"
12726
]
12727
},
12728
{
@@ -12745,7 +12746,7 @@
12746
"zh-chs": "客户编号",
12747
"zh-cht": "客戶編號",
12748
"xloc": [
12748
- "default.handlebars->39->1717"
12749
+ "default.handlebars->39->1722"
12750
]
12751
},
12752
{
@@ -12769,7 +12770,7 @@
12770
"zh-chs": "客户端启动的远程访问",
12771
"zh-cht": "客戶端啟動的遠程訪問",
12772
"xloc": [
12772
- "default.handlebars->39->1830"
12773
+ "default.handlebars->39->1835"
12774
]
12775
},
12776
{
@@ -12793,7 +12794,7 @@
12794
"zh-chs": "客户机密",
12795
"zh-cht": "客戶機密",
12796
"xloc": [
12796
- "default.handlebars->39->1718"
12797
+ "default.handlebars->39->1723"
12798
]
12799
},
12800
{
@@ -12843,11 +12844,11 @@
12844
"zh-cht": "關",
12845
"xloc": [
12846
"default-mobile.handlebars->11->69",
12846
- "default.handlebars->39->1188",
12847
- "default.handlebars->39->1249",
12847
+ "default.handlebars->39->1193",
12848
+ "default.handlebars->39->1254",
12849
"default.handlebars->39->205",
12850
"default.handlebars->39->213",
12850
- "default.handlebars->39->2766",
12851
+ "default.handlebars->39->2771",
12852
"sharing.handlebars->11->52"
12853
]
12854
},
@@ -12872,7 +12873,7 @@
12873
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
12874
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
12875
"xloc": [
12875
- "default.handlebars->39->2049"
12876
+ "default.handlebars->39->2054"
12877
]
12878
},
12879
{
@@ -13044,7 +13045,7 @@
13045
"zh-cht": "指令",
13046
"xloc": [
13047
"default-mobile.handlebars->11->651",
13047
- "default.handlebars->39->1936",
13048
+ "default.handlebars->39->1941",
13049
"default.handlebars->39->935",
13050
"default.handlebars->39->957"
13051
]
@@ -13070,8 +13071,8 @@
13071
"zh-chs": "通用设备组",
13072
"zh-cht": "通用裝置群",
13073
"xloc": [
13073
- "default.handlebars->39->2361",
13074
- "default.handlebars->39->2514"
13074
+ "default.handlebars->39->2366",
13075
+ "default.handlebars->39->2519"
13076
]
13077
},
13078
{
@@ -13095,8 +13096,8 @@
13096
"zh-chs": "通用设备",
13097
"zh-cht": "通用裝置",
13098
"xloc": [
13098
- "default.handlebars->39->2367",
13099
- "default.handlebars->39->2526"
13099
+ "default.handlebars->39->2372",
13100
+ "default.handlebars->39->2531"
13101
]
13102
},
13103
{
@@ -13120,7 +13121,7 @@
13121
"zh-chs": "编译时间",
13122
"xloc": [
13123
"default-mobile.handlebars->11->511",
13123
- "default.handlebars->39->1310"
13124
+ "default.handlebars->39->1315"
13125
]
13126
},
13127
{
@@ -13164,7 +13165,7 @@
13165
"zh-chs": "压缩档案...",
13166
"zh-cht": "壓縮檔案...",
13167
"xloc": [
13167
- "default.handlebars->39->1244",
13168
+ "default.handlebars->39->1249",
13169
"sharing.handlebars->11->47"
13170
]
13171
},
@@ -13213,11 +13214,11 @@
13214
"default-mobile.handlebars->11->605",
13215
"default.handlebars->39->1062",
13216
"default.handlebars->39->1071",
13216
- "default.handlebars->39->1841",
13217
- "default.handlebars->39->2235",
13218
- "default.handlebars->39->2317",
13219
- "default.handlebars->39->2383",
13220
- "default.handlebars->39->2512",
13217
+ "default.handlebars->39->1846",
13218
+ "default.handlebars->39->2240",
13219
+ "default.handlebars->39->2322",
13220
+ "default.handlebars->39->2388",
13221
+ "default.handlebars->39->2517",
13222
"default.handlebars->39->616"
13223
]
13224
},
@@ -13263,7 +13264,7 @@
13264
"zh-cht": "確認將1個副本複製到此位置?",
13265
"xloc": [
13266
"default-mobile.handlebars->11->460",
13266
- "default.handlebars->39->1268",
13267
+ "default.handlebars->39->1273",
13268
"sharing.handlebars->11->70"
13269
]
13270
},
@@ -13288,7 +13289,7 @@
13289
"zh-chs": "确认{0}个条目的复制到此位置?",
13290
"zh-cht": "確認{0}個條目的複製到此位置?",
13291
"xloc": [
13291
- "default.handlebars->39->1267",
13292
+ "default.handlebars->39->1272",
13293
"sharing.handlebars->11->69"
13294
]
13295
},
@@ -13337,7 +13338,7 @@
13338
"zh-chs": "确认删除选定的帐户?",
13339
"zh-cht": "確認刪除所選帳戶?",
13340
"xloc": [
13340
- "default.handlebars->39->2234"
13341
+ "default.handlebars->39->2239"
13342
]
13343
},
13344
{
@@ -13382,7 +13383,7 @@
13383
"zh-chs": "确认删除选定的用户组?",
13384
"zh-cht": "確認刪除所選用戶群?",
13385
"xloc": [
13385
- "default.handlebars->39->2316"
13386
+ "default.handlebars->39->2321"
13387
]
13388
},
13389
{
@@ -13406,7 +13407,7 @@
13407
"zh-chs": "确认删除用户{0}?",
13408
"zh-cht": "確認刪除用戶{0}?",
13409
"xloc": [
13409
- "default.handlebars->39->2511"
13410
+ "default.handlebars->39->2516"
13411
]
13412
},
13413
{
@@ -13430,7 +13431,7 @@
13431
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
13432
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
13433
"xloc": [
13433
- "default.handlebars->39->2386"
13434
+ "default.handlebars->39->2391"
13435
]
13436
},
13437
{
@@ -13454,7 +13455,7 @@
13455
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
13456
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
13457
"xloc": [
13457
- "default.handlebars->39->2543"
13458
+ "default.handlebars->39->2548"
13459
]
13460
},
13461
{
@@ -13479,7 +13480,7 @@
13480
"zh-cht": "確認將1個條目移動到此位置?",
13481
"xloc": [
13482
"default-mobile.handlebars->11->462",
13482
- "default.handlebars->39->1270",
13483
+ "default.handlebars->39->1275",
13484
"sharing.handlebars->11->72"
13485
]
13486
},
@@ -13504,7 +13505,7 @@
13505
"zh-chs": "确认将{0}个条目移到此位置?",
13506
"zh-cht": "確認將{0}個條目移到該位置?",
13507
"xloc": [
13507
- "default.handlebars->39->1269",
13508
+ "default.handlebars->39->1274",
13509
"sharing.handlebars->11->71"
13510
]
13511
},
@@ -13553,7 +13554,7 @@
13554
"zh-chs": "确认覆盖?",
13555
"zh-cht": "確認覆蓋?",
13556
"xloc": [
13556
- "default.handlebars->39->2032"
13557
+ "default.handlebars->39->2037"
13558
]
13559
},
13560
{
@@ -13577,8 +13578,8 @@
13578
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
13579
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
13580
"xloc": [
13580
- "default.handlebars->39->2376",
13581
- "default.handlebars->39->2534"
13581
+ "default.handlebars->39->2381",
13582
+ "default.handlebars->39->2539"
13583
]
13584
},
13585
{
@@ -13602,8 +13603,8 @@
13603
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
13604
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
13605
"xloc": [
13605
- "default.handlebars->39->2378",
13606
- "default.handlebars->39->2547"
13606
+ "default.handlebars->39->2383",
13607
+ "default.handlebars->39->2552"
13608
]
13609
},
13610
{
@@ -13627,7 +13628,7 @@
13628
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
13629
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
13630
"xloc": [
13630
- "default.handlebars->39->2536"
13631
+ "default.handlebars->39->2541"
13632
]
13633
},
13634
{
@@ -13651,7 +13652,7 @@
13652
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
13653
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
13654
"xloc": [
13654
- "default.handlebars->39->2539"
13655
+ "default.handlebars->39->2544"
13656
]
13657
},
13658
{
@@ -13675,8 +13676,8 @@
13676
"zh-chs": "确认删除访问权限?",
13677
"zh-cht": "確認刪除訪問權限?",
13678
"xloc": [
13678
- "default.handlebars->39->2537",
13679
- "default.handlebars->39->2540"
13679
+ "default.handlebars->39->2542",
13680
+ "default.handlebars->39->2545"
13681
]
13682
},
13683
{
@@ -13701,7 +13702,7 @@
13702
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
13703
"xloc": [
13704
"default-mobile.handlebars->11->98",
13704
- "default.handlebars->39->1415"
13705
+ "default.handlebars->39->1420"
13706
]
13707
},
13708
{
@@ -13746,7 +13747,7 @@
13747
"zh-chs": "确认删除设备共享“{0}”?",
13748
"zh-cht": "確認刪除設備共享“{0}”?",
13749
"xloc": [
13749
- "default.handlebars->39->2532"
13750
+ "default.handlebars->39->2537"
13751
]
13752
},
13753
{
@@ -13811,7 +13812,7 @@
13812
"tr": "Push kimlik doğrulama cihazının kaldırılması onaylansın mı?",
13813
"zh-chs": "确认移除推送认证设备?",
13814
"xloc": [
13814
- "default.handlebars->39->1417"
13815
+ "default.handlebars->39->1422"
13816
]
13817
},
13818
{
@@ -13835,7 +13836,7 @@
13836
"zh-chs": "确认删除用户“ {0} ”的权限?",
13837
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
13838
"xloc": [
13838
- "default.handlebars->39->1947"
13839
+ "default.handlebars->39->1952"
13840
]
13841
},
13842
{
@@ -13859,7 +13860,7 @@
13860
"zh-chs": "确认删除用户组“ {0} ”的权限?",
13861
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
13862
"xloc": [
13862
- "default.handlebars->39->1949"
13863
+ "default.handlebars->39->1954"
13864
]
13865
},
13866
{
@@ -13905,7 +13906,7 @@
13906
"tr": "Bu giriş belirtecinin kaldırılması onaylansın mı?",
13907
"zh-chs": "确认删除此登录令牌?",
13908
"xloc": [
13908
- "default.handlebars->39->1710"
13909
+ "default.handlebars->39->1715"
13910
]
13911
},
13912
{
@@ -13998,7 +13999,7 @@
13999
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
14000
"xloc": [
14001
"default-mobile.handlebars->11->151",
14001
- "default.handlebars->39->2033"
14002
+ "default.handlebars->39->2038"
14003
]
14004
},
14005
{
@@ -14027,8 +14028,8 @@
14028
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
14029
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
14030
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
14030
- "default.handlebars->39->1226",
14031
- "default.handlebars->39->1765",
14031
+ "default.handlebars->39->1231",
14032
+ "default.handlebars->39->1770",
14033
"default.handlebars->39->809",
14034
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
14035
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
@@ -14108,7 +14109,7 @@
14109
"zh-chs": "连接到服务器",
14110
"zh-cht": "連接到伺服器",
14111
"xloc": [
14111
- "default.handlebars->39->1834"
14112
+ "default.handlebars->39->1839"
14113
]
14114
},
14115
{
@@ -14255,7 +14256,7 @@
14256
"zh-chs": "已连接的英特尔®AMT",
14257
"zh-cht": "已連接的Intel® AMT",
14258
"xloc": [
14258
- "default.handlebars->39->2694"
14259
+ "default.handlebars->39->2699"
14260
]
14261
},
14262
{
@@ -14279,7 +14280,7 @@
14280
"zh-chs": "已连接的用户",
14281
"zh-cht": "已连接的用户",
14282
"xloc": [
14282
- "default.handlebars->39->2699"
14283
+ "default.handlebars->39->2704"
14284
]
14285
},
14286
{
@@ -14313,7 +14314,7 @@
14314
"zh-cht": "現在已連接",
14315
"xloc": [
14316
"default-mobile.handlebars->11->506",
14316
- "default.handlebars->39->1305"
14317
+ "default.handlebars->39->1310"
14318
]
14319
},
14320
{
@@ -14411,7 +14412,7 @@
14412
"default-mobile.handlebars->11->2",
14413
"default-mobile.handlebars->11->478",
14414
"default-mobile.handlebars->11->48",
14414
- "default.handlebars->39->1291",
14415
+ "default.handlebars->39->1296",
14416
"default.handlebars->39->338",
14417
"default.handlebars->39->341",
14418
"default.handlebars->39->395",
@@ -14463,7 +14464,7 @@
14464
"zh-chs": "连接数量",
14465
"zh-cht": "連接數量",
14466
"xloc": [
14466
- "default.handlebars->39->2725"
14467
+ "default.handlebars->39->2730"
14468
]
14469
},
14470
{
@@ -14487,8 +14488,8 @@
14488
"zh-chs": "连接错误",
14489
"xloc": [
14490
"default-mobile.handlebars->11->441",
14490
- "default.handlebars->39->1213",
14491
- "default.handlebars->39->1240",
14491
+ "default.handlebars->39->1218",
14492
+ "default.handlebars->39->1245",
14493
"login2.handlebars->7->32"
14494
]
14495
},
@@ -14513,7 +14514,7 @@
14514
"zh-chs": "连接转发器",
14515
"zh-cht": "連接轉發器",
14516
"xloc": [
14516
- "default.handlebars->39->2760"
14517
+ "default.handlebars->39->2765"
14518
]
14519
},
14520
{
@@ -14586,7 +14587,7 @@
14587
"zh-cht": "連接性",
14588
"xloc": [
14589
"default-mobile.handlebars->11->299",
14589
- "default.handlebars->39->1990",
14590
+ "default.handlebars->39->1995",
14591
"default.handlebars->39->328",
14592
"default.handlebars->39->826",
14593
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
@@ -14716,7 +14717,7 @@
14717
"zh-chs": "Cookie编码器",
14718
"zh-cht": "Cookie編碼器",
14719
"xloc": [
14719
- "default.handlebars->39->2744"
14720
+ "default.handlebars->39->2749"
14721
]
14722
},
14723
{
@@ -14927,8 +14928,8 @@
14928
"zh-chs": "复制连结到剪贴板",
14929
"zh-cht": "複製連結到剪貼板",
14930
"xloc": [
14930
- "default.handlebars->39->2001",
14931
- "default.handlebars->39->2020",
14931
+ "default.handlebars->39->2006",
14932
+ "default.handlebars->39->2025",
14933
"default.handlebars->39->272",
14934
"default.handlebars->39->294",
14935
"default.handlebars->39->296",
@@ -15055,7 +15056,7 @@
15056
"zh-chs": "复制:“{0}”到“{1}”",
15057
"zh-cht": "複製:“{0}”到“{1}”",
15058
"xloc": [
15058
- "default.handlebars->39->2092"
15059
+ "default.handlebars->39->2097"
15060
]
15061
},
15062
{
@@ -15229,7 +15230,7 @@
15230
"zh-chs": "核心服务器",
15231
"zh-cht": "核心伺服器",
15232
"xloc": [
15232
- "default.handlebars->39->2743"
15233
+ "default.handlebars->39->2748"
15234
]
15235
},
15236
{
@@ -15253,7 +15254,7 @@
15254
"zh-chs": "科西嘉文",
15255
"zh-cht": "科西嘉文",
15256
"xloc": [
15256
- "default.handlebars->39->1473"
15257
+ "default.handlebars->39->1478"
15258
]
15259
},
15260
{
@@ -15297,7 +15298,7 @@
15298
"zh-chs": "创建帐号",
15299
"zh-cht": "創建帳號",
15300
"xloc": [
15300
- "default.handlebars->39->2284",
15301
+ "default.handlebars->39->2289",
15302
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
15303
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
15304
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -15367,7 +15368,7 @@
15368
"tr": "Giriş Simgesi Oluştur",
15369
"zh-chs": "创建登录令牌",
15370
"xloc": [
15370
- "default.handlebars->39->1657",
15371
+ "default.handlebars->39->1662",
15372
"default.handlebars->39->297"
15373
]
15374
},
@@ -15392,7 +15393,7 @@
15393
"zh-chs": "创建用户组",
15394
"zh-cht": "創建用戶群",
15395
"xloc": [
15395
- "default.handlebars->39->2324"
15396
+ "default.handlebars->39->2329"
15397
]
15398
},
15399
{
@@ -15440,7 +15441,7 @@
15441
"zh-chs": "使用以下选项创建一个新的设备组。",
15442
"zh-cht": "使用以下選項創建一個新的裝置群。",
15443
"xloc": [
15443
- "default.handlebars->39->1687"
15444
+ "default.handlebars->39->1692"
15445
]
15446
},
15447
{
@@ -15487,7 +15488,7 @@
15488
"tr": "Hesabınıza alternatif giriş olarak kullanılabilecek geçici bir kullanıcı adı ve şifre oluşturun. Bu, araçların veya diğer hizmetlerin hesabınıza erişmesine izin vermek için kullanışlıdır.",
15489
"zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。",
15490
"xloc": [
15490
- "default.handlebars->39->1638"
15491
+ "default.handlebars->39->1643"
15492
]
15493
},
15494
{
@@ -15535,7 +15536,7 @@
15536
"zh-chs": "创建文件夹:“{0}”",
15537
"zh-cht": "創建文件夾:“{0}”",
15538
"xloc": [
15538
- "default.handlebars->39->2085"
15539
+ "default.handlebars->39->2090"
15540
]
15541
},
15542
{
@@ -15582,7 +15583,7 @@
15583
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
15584
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
15585
"xloc": [
15585
- "default.handlebars->39->2248"
15586
+ "default.handlebars->39->2253"
15587
]
15588
},
15589
{
@@ -15632,7 +15633,7 @@
15633
"zh-chs": "创建的设备组:{0}",
15634
"zh-cht": "創建的設備組:{0}",
15635
"xloc": [
15635
- "default.handlebars->39->2096"
15636
+ "default.handlebars->39->2101"
15637
]
15638
},
15639
{
@@ -15722,7 +15723,7 @@
15723
"zh-chs": "创建",
15724
"zh-cht": "創建",
15725
"xloc": [
15725
- "default.handlebars->39->2428"
15726
+ "default.handlebars->39->2433"
15727
]
15728
},
15729
{
@@ -15746,7 +15747,7 @@
15747
"zh-chs": "创建时间",
15748
"zh-cht": "創作時間",
15749
"xloc": [
15749
- "default.handlebars->39->1746"
15750
+ "default.handlebars->39->1751"
15751
]
15752
},
15753
{
@@ -15796,8 +15797,8 @@
15797
"zh-chs": "创建者",
15798
"zh-cht": "創作者",
15799
"xloc": [
15799
- "default.handlebars->39->1744",
15800
- "default.handlebars->39->1745"
15800
+ "default.handlebars->39->1749",
15801
+ "default.handlebars->39->1750"
15802
]
15803
},
15804
{
@@ -15822,7 +15823,7 @@
15823
"zh-cht": "證書",
15824
"xloc": [
15825
"default-mobile.handlebars->11->309",
15825
- "default.handlebars->39->1715",
15826
+ "default.handlebars->39->1720",
15827
"default.handlebars->39->836"
15828
]
15829
},
@@ -15847,7 +15848,7 @@
15848
"zh-chs": "克里语",
15849
"zh-cht": "克里語",
15850
"xloc": [
15850
- "default.handlebars->39->1474"
15851
+ "default.handlebars->39->1479"
15852
]
15853
},
15854
{
@@ -15871,7 +15872,7 @@
15872
"zh-chs": "克罗地亚文",
15873
"zh-cht": "克羅地亞文",
15874
"xloc": [
15874
- "default.handlebars->39->1475"
15875
+ "default.handlebars->39->1480"
15876
]
15877
},
15878
{
@@ -16116,7 +16117,7 @@
16117
"zh-chs": "当前密码不正确。",
16118
"xloc": [
16119
"default-mobile.handlebars->11->691",
16119
- "default.handlebars->39->2668"
16120
+ "default.handlebars->39->2673"
16121
]
16122
},
16123
{
@@ -16162,7 +16163,8 @@
16163
"tr": "Özelleştirme...",
16164
"zh-chs": "定制...",
16165
"xloc": [
16165
- "default.handlebars->deskKeyShortcutContextMenu->1"
16166
+ "default.handlebars->deskKeyShortcutContextMenu->1",
16167
+ "default.handlebars->deskPreConfigShortcutContextMenu->5"
16168
]
16169
},
16170
{
@@ -16214,7 +16216,7 @@
16216
"zh-chs": "捷克文",
16217
"zh-cht": "捷克文",
16218
"xloc": [
16217
- "default.handlebars->39->1476"
16219
+ "default.handlebars->39->1481"
16220
]
16221
},
16222
{
@@ -16262,7 +16264,7 @@
16264
"zh-chs": "丹麦文",
16265
"zh-cht": "丹麥文",
16266
"xloc": [
16265
- "default.handlebars->39->1477"
16267
+ "default.handlebars->39->1482"
16268
]
16269
},
16270
{
@@ -16335,7 +16337,7 @@
16337
"zh-chs": "日期和时间",
16338
"zh-cht": "日期和時間",
16339
"xloc": [
16338
- "default.handlebars->39->1635"
16340
+ "default.handlebars->39->1640"
16341
]
16342
},
16343
{
@@ -16361,7 +16363,7 @@
16363
"xloc": [
16364
"default-mobile.handlebars->11->350",
16365
"default.handlebars->39->1046",
16364
- "default.handlebars->39->2592"
16366
+ "default.handlebars->39->2597"
16367
]
16368
},
16369
{
@@ -16385,7 +16387,7 @@
16387
"zh-chs": "停用",
16388
"zh-cht": "停用",
16389
"xloc": [
16388
- "default.handlebars->39->1813"
16390
+ "default.handlebars->39->1818"
16391
]
16392
},
16393
{
@@ -16409,7 +16411,7 @@
16411
"zh-chs": "如果设置停用CCM",
16412
"zh-cht": "如果設置停用CCM",
16413
"xloc": [
16412
- "default.handlebars->39->1825"
16414
+ "default.handlebars->39->1830"
16415
]
16416
},
16417
{
@@ -16479,10 +16481,10 @@
16481
"zh-chs": "默认",
16482
"zh-cht": "默認",
16483
"xloc": [
16482
- "default.handlebars->39->2271",
16483
- "default.handlebars->39->2320",
16484
- "default.handlebars->39->2331",
16485
- "default.handlebars->39->2404"
16484
+ "default.handlebars->39->2276",
16485
+ "default.handlebars->39->2325",
16486
+ "default.handlebars->39->2336",
16487
+ "default.handlebars->39->2409"
16488
]
16489
},
16490
{
@@ -16535,8 +16537,8 @@
16537
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
16538
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
16539
"default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
16538
- "default.handlebars->39->1259",
16539
- "default.handlebars->39->2027",
16540
+ "default.handlebars->39->1264",
16541
+ "default.handlebars->39->2032",
16542
"default.handlebars->39->699",
16543
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
16544
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -16572,7 +16574,7 @@
16574
"zh-cht": "刪除帳戶",
16575
"xloc": [
16576
"default-mobile.handlebars->11->108",
16575
- "default.handlebars->39->1672"
16577
+ "default.handlebars->39->1677"
16578
]
16579
},
16580
{
@@ -16596,7 +16598,7 @@
16598
"zh-chs": "删除帐户",
16599
"zh-cht": "刪除帳戶",
16600
"xloc": [
16599
- "default.handlebars->39->2236"
16601
+ "default.handlebars->39->2241"
16602
]
16603
},
16604
{
@@ -16670,9 +16672,9 @@
16672
"xloc": [
16673
"default-mobile.handlebars->11->603",
16674
"default-mobile.handlebars->11->606",
16673
- "default.handlebars->39->1800",
16674
- "default.handlebars->39->1801",
16675
- "default.handlebars->39->1842"
16675
+ "default.handlebars->39->1805",
16676
+ "default.handlebars->39->1806",
16677
+ "default.handlebars->39->1847"
16678
]
16679
},
16680
{
@@ -16742,7 +16744,7 @@
16744
"zh-chs": "删除用户",
16745
"zh-cht": "刪除用戶",
16746
"xloc": [
16745
- "default.handlebars->39->2471"
16747
+ "default.handlebars->39->2476"
16748
]
16749
},
16750
{
@@ -16766,8 +16768,8 @@
16768
"zh-chs": "删除用户群组",
16769
"zh-cht": "刪除用戶群組",
16770
"xloc": [
16769
- "default.handlebars->39->2372",
16770
- "default.handlebars->39->2384"
16771
+ "default.handlebars->39->2377",
16772
+ "default.handlebars->39->2389"
16773
]
16774
},
16775
{
@@ -16791,7 +16793,7 @@
16793
"zh-chs": "删除用户群组",
16794
"zh-cht": "刪除用戶群組",
16795
"xloc": [
16794
- "default.handlebars->39->2318"
16796
+ "default.handlebars->39->2323"
16797
]
16798
},
16799
{
@@ -16815,7 +16817,7 @@
16817
"zh-chs": "删除用户{0}",
16818
"zh-cht": "刪除用戶{0}",
16819
"xloc": [
16818
- "default.handlebars->39->2510"
16820
+ "default.handlebars->39->2515"
16821
]
16822
},
16823
{
@@ -16840,7 +16842,7 @@
16842
"zh-cht": "刪除帳戶",
16843
"xloc": [
16844
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
16843
- "default.handlebars->39->2232",
16845
+ "default.handlebars->39->2237",
16846
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
16847
]
16848
},
@@ -16889,7 +16891,7 @@
16891
"zh-chs": "删除群组",
16892
"zh-cht": "刪除群組",
16893
"xloc": [
16892
- "default.handlebars->39->2314"
16894
+ "default.handlebars->39->2319"
16895
]
16896
},
16897
{
@@ -16937,7 +16939,7 @@
16939
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
16940
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
16941
"xloc": [
16940
- "default.handlebars->39->2087"
16942
+ "default.handlebars->39->2092"
16943
]
16944
},
16945
{
@@ -16963,8 +16965,8 @@
16965
"xloc": [
16966
"default-mobile.handlebars->11->148",
16967
"default-mobile.handlebars->11->454",
16966
- "default.handlebars->39->1261",
16967
- "default.handlebars->39->2029",
16968
+ "default.handlebars->39->1266",
16969
+ "default.handlebars->39->2034",
16970
"sharing.handlebars->11->63"
16971
]
16972
},
@@ -16989,7 +16991,7 @@
16991
"zh-chs": "删除用户群组{0}?",
16992
"zh-cht": "刪除用戶群組{0}?",
16993
"xloc": [
16992
- "default.handlebars->39->2382"
16994
+ "default.handlebars->39->2387"
16995
]
16996
},
16997
{
@@ -17015,8 +17017,8 @@
17017
"xloc": [
17018
"default-mobile.handlebars->11->147",
17019
"default-mobile.handlebars->11->453",
17018
- "default.handlebars->39->1260",
17019
- "default.handlebars->39->2028",
17020
+ "default.handlebars->39->1265",
17021
+ "default.handlebars->39->2033",
17022
"sharing.handlebars->11->62"
17023
]
17024
},
@@ -17065,7 +17067,7 @@
17067
"zh-chs": "删除:“{0}”",
17068
"zh-cht": "刪除:“{0}”",
17069
"xloc": [
17068
- "default.handlebars->39->2086"
17070
+ "default.handlebars->39->2091"
17071
]
17072
},
17073
{
@@ -17089,7 +17091,7 @@
17091
"zh-chs": "删除:“{0}”,{1}个元素已删除",
17092
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
17093
"xloc": [
17092
- "default.handlebars->39->2088"
17094
+ "default.handlebars->39->2093"
17095
]
17096
},
17097
{
@@ -17252,16 +17254,16 @@
17254
"default-mobile.handlebars->11->594",
17255
"default-mobile.handlebars->11->608",
17256
"default.handlebars->39->1114",
17255
- "default.handlebars->39->1318",
17256
- "default.handlebars->39->1328",
17257
+ "default.handlebars->39->1323",
17258
+ "default.handlebars->39->1333",
17259
"default.handlebars->39->144",
17258
- "default.handlebars->39->1693",
17259
- "default.handlebars->39->1741",
17260
- "default.handlebars->39->1844",
17261
- "default.handlebars->39->2323",
17262
- "default.handlebars->39->2333",
17263
- "default.handlebars->39->2334",
17264
- "default.handlebars->39->2380",
17260
+ "default.handlebars->39->1698",
17261
+ "default.handlebars->39->1746",
17262
+ "default.handlebars->39->1849",
17263
+ "default.handlebars->39->2328",
17264
+ "default.handlebars->39->2338",
17265
+ "default.handlebars->39->2339",
17266
+ "default.handlebars->39->2385",
17267
"default.handlebars->39->740",
17268
"default.handlebars->39->741",
17269
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
@@ -17310,12 +17312,12 @@
17312
"zh-cht": "桌面",
17313
"xloc": [
17314
"default-mobile.handlebars->11->318",
17313
- "default.handlebars->39->1194",
17314
- "default.handlebars->39->1850",
17315
- "default.handlebars->39->2567",
17316
- "default.handlebars->39->2617",
17317
- "default.handlebars->39->2633",
17318
- "default.handlebars->39->2719",
17315
+ "default.handlebars->39->1199",
17316
+ "default.handlebars->39->1855",
17317
+ "default.handlebars->39->2572",
17318
+ "default.handlebars->39->2622",
17319
+ "default.handlebars->39->2638",
17320
+ "default.handlebars->39->2724",
17321
"default.handlebars->39->705",
17322
"default.handlebars->39->899",
17323
"default.handlebars->39->975",
@@ -17440,7 +17442,7 @@
17442
"tr": "Masaüstü Multiplex",
17443
"zh-chs": "桌面复用",
17444
"xloc": [
17443
- "default.handlebars->39->2724"
17445
+ "default.handlebars->39->2729"
17446
]
17447
},
17448
{
@@ -17464,9 +17466,9 @@
17466
"zh-chs": "桌面通知",
17467
"zh-cht": "桌面通知",
17468
"xloc": [
17467
- "default.handlebars->39->1756",
17468
- "default.handlebars->39->2341",
17469
- "default.handlebars->39->2443",
17469
+ "default.handlebars->39->1761",
17470
+ "default.handlebars->39->2346",
17471
+ "default.handlebars->39->2448",
17472
"default.handlebars->39->800"
17473
]
17474
},
@@ -17491,9 +17493,9 @@
17493
"zh-chs": "桌面提示",
17494
"zh-cht": "桌面提示",
17495
"xloc": [
17494
- "default.handlebars->39->1755",
17495
- "default.handlebars->39->2340",
17496
- "default.handlebars->39->2442",
17496
+ "default.handlebars->39->1760",
17497
+ "default.handlebars->39->2345",
17498
+ "default.handlebars->39->2447",
17499
"default.handlebars->39->799"
17500
]
17501
},
@@ -17518,9 +17520,9 @@
17520
"zh-chs": "桌面提示+工具栏",
17521
"zh-cht": "桌面提示+工具欄",
17522
"xloc": [
17521
- "default.handlebars->39->1753",
17522
- "default.handlebars->39->2338",
17523
- "default.handlebars->39->2440",
17523
+ "default.handlebars->39->1758",
17524
+ "default.handlebars->39->2343",
17525
+ "default.handlebars->39->2445",
17526
"default.handlebars->39->797"
17527
]
17528
},
@@ -17544,7 +17546,7 @@
17546
"tr": "Masaüstü Oturumu",
17547
"zh-chs": "桌面会话",
17548
"xloc": [
17547
- "default.handlebars->39->2560"
17549
+ "default.handlebars->39->2565"
17550
]
17551
},
17552
{
@@ -17638,9 +17640,9 @@
17640
"zh-chs": "桌面工具栏",
17641
"zh-cht": "桌面工具欄",
17642
"xloc": [
17641
- "default.handlebars->39->1754",
17642
- "default.handlebars->39->2339",
17643
- "default.handlebars->39->2441",
17643
+ "default.handlebars->39->1759",
17644
+ "default.handlebars->39->2344",
17645
+ "default.handlebars->39->2446",
17646
"default.handlebars->39->798"
17647
]
17648
},
@@ -17664,7 +17666,7 @@
17666
"tr": "Yalnızca Masaüstü Görünümü",
17667
"zh-chs": "仅桌面视图",
17668
"xloc": [
17667
- "default.handlebars->39->2416"
17669
+ "default.handlebars->39->2421"
17670
]
17671
},
17672
{
@@ -17711,7 +17713,7 @@
17713
"zh-chs": "桌面时段",
17714
"zh-cht": "桌面時段",
17715
"xloc": [
17714
- "default.handlebars->39->1193"
17716
+ "default.handlebars->39->1198"
17717
]
17718
},
17719
{
@@ -17785,7 +17787,7 @@
17787
"zh-cht": "細節",
17788
"xloc": [
17789
"default-mobile.handlebars->11->321",
17788
- "default.handlebars->39->1939",
17790
+ "default.handlebars->39->1944",
17791
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
17792
"default.handlebars->contextMenu->cxdetails"
17793
]
@@ -17836,13 +17838,13 @@
17838
"zh-cht": "裝置",
17839
"xloc": [
17840
"default-mobile.handlebars->11->514",
17839
- "default.handlebars->39->1313",
17840
- "default.handlebars->39->1421",
17841
- "default.handlebars->39->1877",
17842
- "default.handlebars->39->2529",
17841
+ "default.handlebars->39->1318",
17842
+ "default.handlebars->39->1426",
17843
+ "default.handlebars->39->1882",
17844
"default.handlebars->39->253",
17844
- "default.handlebars->39->2591",
17845
- "default.handlebars->39->2606",
17845
+ "default.handlebars->39->2534",
17846
+ "default.handlebars->39->2596",
17847
+ "default.handlebars->39->2611",
17848
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
17849
]
17850
},
@@ -17939,7 +17941,7 @@
17941
"tr": "Cihaz Ayrıntıları",
17942
"zh-chs": "设备详情",
17943
"xloc": [
17942
- "default.handlebars->39->1901"
17944
+ "default.handlebars->39->1906"
17945
]
17946
},
17947
{
@@ -17989,17 +17991,17 @@
17991
"xloc": [
17992
"agent-translations.json",
17993
"default-mobile.handlebars->11->669",
17992
- "default.handlebars->39->1872",
17993
- "default.handlebars->39->1875",
17994
- "default.handlebars->39->1876",
17995
- "default.handlebars->39->2183",
17996
- "default.handlebars->39->2364",
17997
- "default.handlebars->39->2370",
17998
- "default.handlebars->39->2517",
17999
- "default.handlebars->39->2576",
18000
- "default.handlebars->39->2595",
18001
- "default.handlebars->39->2609",
18002
- "default.handlebars->39->2646"
17994
+ "default.handlebars->39->1877",
17995
+ "default.handlebars->39->1880",
17996
+ "default.handlebars->39->1881",
17997
+ "default.handlebars->39->2188",
17998
+ "default.handlebars->39->2369",
17999
+ "default.handlebars->39->2375",
18000
+ "default.handlebars->39->2522",
18001
+ "default.handlebars->39->2581",
18002
+ "default.handlebars->39->2600",
18003
+ "default.handlebars->39->2614",
18004
+ "default.handlebars->39->2651"
18005
]
18006
},
18007
{
@@ -18024,7 +18026,7 @@
18026
"zh-cht": "裝置群用戶",
18027
"xloc": [
18028
"default-mobile.handlebars->11->658",
18027
- "default.handlebars->39->1945"
18029
+ "default.handlebars->39->1950"
18030
]
18031
},
18032
{
@@ -18049,11 +18051,11 @@
18051
"zh-cht": "裝置群",
18052
"xloc": [
18053
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
18052
- "default.handlebars->39->2199",
18053
- "default.handlebars->39->2308",
18054
- "default.handlebars->39->2351",
18055
- "default.handlebars->39->2437",
18056
- "default.handlebars->39->2697",
18054
+ "default.handlebars->39->2204",
18055
+ "default.handlebars->39->2313",
18056
+ "default.handlebars->39->2356",
18057
+ "default.handlebars->39->2442",
18058
+ "default.handlebars->39->2702",
18059
"default.handlebars->container->column_l->p2->p2info->9"
18060
]
18061
},
@@ -18152,7 +18154,7 @@
18154
"xloc": [
18155
"default-mobile.handlebars->11->366",
18156
"default.handlebars->39->1112",
18155
- "default.handlebars->39->2575",
18157
+ "default.handlebars->39->2580",
18158
"default.handlebars->39->411",
18159
"default.handlebars->39->420",
18160
"player.handlebars->3->25"
@@ -18226,7 +18228,7 @@
18228
"tr": "Cihaz İtme",
18229
"zh-chs": "设备推送",
18230
"xloc": [
18229
- "default.handlebars->39->2456"
18231
+ "default.handlebars->39->2461"
18232
]
18233
},
18234
{
@@ -18410,9 +18412,9 @@
18412
"zh-chs": "设备连接。",
18413
"zh-cht": "裝置連接。",
18414
"xloc": [
18413
- "default.handlebars->39->1660",
18414
- "default.handlebars->39->1966",
18415
- "default.handlebars->39->1970",
18415
+ "default.handlebars->39->1665",
18416
+ "default.handlebars->39->1971",
18417
+ "default.handlebars->39->1975",
18418
"default.handlebars->39->912",
18419
"default.handlebars->39->916"
18420
]
@@ -18438,9 +18440,9 @@
18440
"zh-chs": "设备断开连接。",
18441
"zh-cht": "裝置斷開連接。",
18442
"xloc": [
18441
- "default.handlebars->39->1661",
18442
- "default.handlebars->39->1967",
18443
- "default.handlebars->39->1971",
18443
+ "default.handlebars->39->1666",
18444
+ "default.handlebars->39->1972",
18445
+ "default.handlebars->39->1976",
18446
"default.handlebars->39->913",
18447
"default.handlebars->39->917"
18448
]
@@ -18466,7 +18468,7 @@
18468
"zh-chs": "创建的设备组:{0}",
18469
"zh-cht": "設備組已創建:{0}",
18470
"xloc": [
18469
- "default.handlebars->39->2117"
18471
+ "default.handlebars->39->2122"
18472
]
18473
},
18474
{
@@ -18490,7 +18492,7 @@
18492
"zh-chs": "设备组已删除:{0}",
18493
"zh-cht": "設備組已刪除:{0}",
18494
"xloc": [
18493
- "default.handlebars->39->2118"
18495
+ "default.handlebars->39->2123"
18496
]
18497
},
18498
{
@@ -18514,7 +18516,7 @@
18516
"zh-chs": "设备组成员身份已更改:{0}",
18517
"zh-cht": "設備組成員身份已更改:{0}",
18518
"xloc": [
18517
- "default.handlebars->39->2119"
18519
+ "default.handlebars->39->2124"
18520
]
18521
},
18522
{
@@ -18563,7 +18565,7 @@
18565
"zh-chs": "设备组通知已更改",
18566
"zh-cht": "設備組通知已更改",
18567
"xloc": [
18566
- "default.handlebars->39->2114"
18568
+ "default.handlebars->39->2119"
18569
]
18570
},
18571
{
@@ -18587,7 +18589,7 @@
18589
"zh-chs": "未删除的设备组:{0}",
18590
"zh-cht": "未刪除的設備組:{0}",
18591
"xloc": [
18590
- "default.handlebars->39->2097"
18592
+ "default.handlebars->39->2102"
18593
]
18594
},
18595
{
@@ -19055,7 +19057,7 @@
19057
"tr": "Cihaz, Intel(R) AMT ACM TLS etkinleştirmesini istedi, FQDN: {0}",
19058
"zh-chs": "设备请求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
19059
"xloc": [
19058
- "default.handlebars->39->2152"
19060
+ "default.handlebars->39->2157"
19061
]
19062
},
19063
{
@@ -19079,7 +19081,7 @@
19081
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
19082
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
19083
"xloc": [
19082
- "default.handlebars->39->2099"
19084
+ "default.handlebars->39->2104"
19085
]
19086
},
19087
{
@@ -19124,9 +19126,9 @@
19126
"zh-chs": "设备",
19127
"zh-cht": "裝置",
19128
"xloc": [
19127
- "default.handlebars->39->1798",
19128
- "default.handlebars->39->2309",
19129
- "default.handlebars->39->2352"
19129
+ "default.handlebars->39->1803",
19130
+ "default.handlebars->39->2314",
19131
+ "default.handlebars->39->2357"
19132
]
19133
},
19134
{
@@ -19196,7 +19198,7 @@
19198
"zh-chs": "禁用的电子邮件两因素身份验证",
19199
"zh-cht": "禁用的電子郵件兩因素身份驗證",
19200
"xloc": [
19199
- "default.handlebars->39->2130"
19201
+ "default.handlebars->39->2135"
19202
]
19203
},
19204
{
@@ -19224,8 +19226,8 @@
19226
"default-mobile.handlebars->11->428",
19227
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
19228
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span",
19227
- "default.handlebars->39->1227",
19228
- "default.handlebars->39->1766",
19229
+ "default.handlebars->39->1232",
19230
+ "default.handlebars->39->1771",
19231
"default.handlebars->39->810",
19232
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
19233
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
@@ -19495,7 +19497,7 @@
19497
"zh-chs": "显示设备组名称",
19498
"zh-cht": "顯示裝置群名稱",
19499
"xloc": [
19498
- "default.handlebars->39->1659"
19500
+ "default.handlebars->39->1664"
19501
]
19502
},
19503
{
@@ -19519,7 +19521,7 @@
19521
"zh-chs": "显示名称",
19522
"zh-cht": "顯示名稱",
19523
"xloc": [
19522
- "default.handlebars->39->1177"
19524
+ "default.handlebars->39->1182"
19525
]
19526
},
19527
{
@@ -19543,7 +19545,7 @@
19545
"zh-chs": "显示公共连结",
19546
"zh-cht": "顯示公共鏈結",
19547
"xloc": [
19546
- "default.handlebars->39->2000"
19548
+ "default.handlebars->39->2005"
19549
]
19550
},
19551
{
@@ -19566,7 +19568,7 @@
19568
"tr": "{0} göster",
19569
"zh-chs": "显示{0}",
19570
"xloc": [
19569
- "default.handlebars->39->1196"
19571
+ "default.handlebars->39->1201"
19572
]
19573
},
19574
{
@@ -19590,7 +19592,7 @@
19592
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
19593
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
19594
"xloc": [
19593
- "default.handlebars->39->2059"
19595
+ "default.handlebars->39->2064"
19596
]
19597
},
19598
{
@@ -19614,7 +19616,7 @@
19616
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
19617
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
19618
"xloc": [
19617
- "default.handlebars->39->2067"
19619
+ "default.handlebars->39->2072"
19620
]
19621
},
19622
{
@@ -19638,8 +19640,8 @@
19640
"zh-chs": "什么都不做",
19641
"zh-cht": "什麼都不做",
19642
"xloc": [
19641
- "default.handlebars->39->1828",
19642
- "default.handlebars->39->1832"
19643
+ "default.handlebars->39->1833",
19644
+ "default.handlebars->39->1837"
19645
]
19646
},
19647
{
@@ -19664,10 +19666,10 @@
19666
"zh-cht": "域",
19667
"xloc": [
19668
"default.handlebars->39->113",
19667
- "default.handlebars->39->2272",
19668
- "default.handlebars->39->2321",
19669
- "default.handlebars->39->2330",
19670
- "default.handlebars->39->2403",
19669
+ "default.handlebars->39->2277",
19670
+ "default.handlebars->39->2326",
19671
+ "default.handlebars->39->2335",
19672
+ "default.handlebars->39->2408",
19673
"mstsc.handlebars->main->1->3->1->rowdomain->1->0",
19674
"mstsc.handlebars->main->1->3->1->rowdomain->3"
19675
]
@@ -19713,7 +19715,7 @@
19715
"zh-chs": "请勿更改,如果设置请保留CCM",
19716
"zh-cht": "請勿更改,如果設置請保留CCM",
19717
"xloc": [
19716
- "default.handlebars->39->1824"
19718
+ "default.handlebars->39->1829"
19719
]
19720
},
19721
{
@@ -19758,7 +19760,7 @@
19760
"zh-chs": "不要连接到服务器",
19761
"zh-cht": "不要連接到伺服器",
19762
"xloc": [
19761
- "default.handlebars->39->1833"
19763
+ "default.handlebars->39->1838"
19764
]
19765
},
19766
{
@@ -19969,7 +19971,7 @@
19971
"zh-cht": "下載檔案",
19972
"xloc": [
19973
"default-mobile.handlebars->11->473",
19972
- "default.handlebars->39->1280",
19974
+ "default.handlebars->39->1285",
19975
"sharing.handlebars->11->82"
19976
]
19977
},
@@ -20090,7 +20092,7 @@
20092
"zh-chs": "下载报告",
20093
"zh-cht": "下載報告",
20094
"xloc": [
20093
- "default.handlebars->39->2188",
20095
+ "default.handlebars->39->2193",
20096
"default.handlebars->container->column_l->p3->3->1->0->3",
20097
"default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv"
20098
]
@@ -20187,7 +20189,7 @@
20189
"tr": "Cihaz listesini indir",
20190
"zh-chs": "下载设备列表",
20191
"xloc": [
20190
- "default.handlebars->39->1796"
20192
+ "default.handlebars->39->1801"
20193
]
20194
},
20195
{
@@ -20378,7 +20380,7 @@
20380
"zh-chs": "使用以下一种档案格式下载事件列表。",
20381
"zh-cht": "使用以下一種檔案格式下載事件列表。",
20382
"xloc": [
20381
- "default.handlebars->39->2189"
20383
+ "default.handlebars->39->2194"
20384
]
20385
},
20386
{
@@ -20402,7 +20404,7 @@
20404
"zh-chs": "使用以下一种档案格式下载用户列表。",
20405
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
20406
"xloc": [
20405
- "default.handlebars->39->2256"
20407
+ "default.handlebars->39->2261"
20408
]
20409
},
20410
{
@@ -20499,7 +20501,7 @@
20501
"zh-chs": "下载:“{0}”",
20502
"zh-cht": "下載:“{0}”",
20503
"xloc": [
20502
- "default.handlebars->39->2090"
20504
+ "default.handlebars->39->2095"
20505
]
20506
},
20507
{
@@ -20522,7 +20524,7 @@
20524
"tr": "İndirme: \\\"{0}\\\", Boyut: {1}",
20525
"zh-chs": "下载:\\\"{0}\\\",大小:{1}",
20526
"xloc": [
20525
- "default.handlebars->39->2147"
20527
+ "default.handlebars->39->2152"
20528
]
20529
},
20530
{
@@ -20570,7 +20572,7 @@
20572
"zh-chs": "代理重复",
20573
"zh-cht": "代理重複",
20574
"xloc": [
20573
- "default.handlebars->39->2693"
20575
+ "default.handlebars->39->2698"
20576
]
20577
},
20578
{
@@ -20618,7 +20620,7 @@
20620
"zh-chs": "复制用户组",
20621
"zh-cht": "複製用戶群",
20622
"xloc": [
20621
- "default.handlebars->39->2325"
20623
+ "default.handlebars->39->2330"
20624
]
20625
},
20626
{
@@ -20663,8 +20665,8 @@
20665
"zh-chs": "持续时间",
20666
"zh-cht": "持續時間",
20667
"xloc": [
20666
- "default.handlebars->39->2555",
20667
- "default.handlebars->39->2581",
20668
+ "default.handlebars->39->2560",
20669
+ "default.handlebars->39->2586",
20670
"player.handlebars->3->18"
20671
]
20672
},
@@ -20710,7 +20712,7 @@
20712
"zh-chs": "荷兰文(比利时)",
20713
"zh-cht": "荷蘭文(比利時)",
20714
"xloc": [
20713
- "default.handlebars->39->1479"
20715
+ "default.handlebars->39->1484"
20716
]
20717
},
20718
{
@@ -20734,7 +20736,7 @@
20736
"zh-chs": "荷兰文(标准)",
20737
"zh-cht": "荷蘭文(標準)",
20738
"xloc": [
20737
- "default.handlebars->39->1478"
20739
+ "default.handlebars->39->1483"
20740
]
20741
},
20742
{
@@ -21131,10 +21133,10 @@
21133
"default-mobile.handlebars->11->609",
21134
"default-mobile.handlebars->11->615",
21135
"default-mobile.handlebars->11->635",
21134
- "default.handlebars->39->1845",
21135
- "default.handlebars->39->1881",
21136
- "default.handlebars->39->1907",
21137
- "default.handlebars->39->1919"
21136
+ "default.handlebars->39->1850",
21137
+ "default.handlebars->39->1886",
21138
+ "default.handlebars->39->1912",
21139
+ "default.handlebars->39->1924"
21140
]
21141
},
21142
{
@@ -21158,7 +21160,7 @@
21160
"zh-chs": "编辑设备组功能",
21161
"zh-cht": "編輯裝置群功能",
21162
"xloc": [
21161
- "default.handlebars->39->1867"
21163
+ "default.handlebars->39->1872"
21164
]
21165
},
21166
{
@@ -21182,8 +21184,8 @@
21184
"zh-chs": "编辑设备组权限",
21185
"zh-cht": "編輯裝置群權限",
21186
"xloc": [
21185
- "default.handlebars->39->1904",
21186
- "default.handlebars->39->1916"
21187
+ "default.handlebars->39->1909",
21188
+ "default.handlebars->39->1921"
21189
]
21190
},
21191
{
@@ -21207,7 +21209,7 @@
21209
"zh-chs": "编辑设备组用户同意",
21210
"zh-cht": "編輯裝置群用戶同意",
21211
"xloc": [
21210
- "default.handlebars->39->1846"
21212
+ "default.handlebars->39->1851"
21213
]
21214
},
21215
{
@@ -21232,7 +21234,7 @@
21234
"zh-cht": "編輯裝置筆記",
21235
"xloc": [
21236
"default-mobile.handlebars->11->627",
21235
- "default.handlebars->39->1895"
21237
+ "default.handlebars->39->1900"
21238
]
21239
},
21240
{
@@ -21256,8 +21258,8 @@
21258
"zh-chs": "编辑设备权限",
21259
"zh-cht": "編輯裝置權限",
21260
"xloc": [
21259
- "default.handlebars->39->1909",
21260
- "default.handlebars->39->1911"
21261
+ "default.handlebars->39->1914",
21262
+ "default.handlebars->39->1916"
21263
]
21264
},
21265
{
@@ -21305,7 +21307,7 @@
21307
"zh-chs": "编辑设备用户同意",
21308
"zh-cht": "編輯裝置用戶同意",
21309
"xloc": [
21308
- "default.handlebars->39->1848"
21310
+ "default.handlebars->39->1853"
21311
]
21312
},
21313
{
@@ -21385,7 +21387,7 @@
21387
"zh-cht": "編輯筆記",
21388
"xloc": [
21389
"default-mobile.handlebars->11->642",
21388
- "default.handlebars->39->1926"
21390
+ "default.handlebars->39->1931"
21391
]
21392
},
21393
{
@@ -21409,7 +21411,7 @@
21411
"zh-chs": "编辑用户同意",
21412
"zh-cht": "編輯用戶同意",
21413
"xloc": [
21412
- "default.handlebars->39->1847"
21414
+ "default.handlebars->39->1852"
21415
]
21416
},
21417
{
@@ -21433,7 +21435,7 @@
21435
"zh-chs": "编辑用户设备组权限",
21436
"zh-cht": "編輯用戶裝置群權限",
21437
"xloc": [
21436
- "default.handlebars->39->1917"
21438
+ "default.handlebars->39->1922"
21439
]
21440
},
21441
{
@@ -21457,7 +21459,7 @@
21459
"zh-chs": "编辑用户设备权限",
21460
"zh-cht": "編輯用戶裝置權限",
21461
"xloc": [
21460
- "default.handlebars->39->1912"
21462
+ "default.handlebars->39->1917"
21463
]
21464
},
21465
{
@@ -21480,7 +21482,7 @@
21482
"tr": "Kullanıcı Özelliklerini Düzenle",
21483
"zh-chs": "编辑用户特征",
21484
"xloc": [
21483
- "default.handlebars->39->2493"
21485
+ "default.handlebars->39->2498"
21486
]
21487
},
21488
{
@@ -21504,7 +21506,7 @@
21506
"zh-chs": "编辑用户组",
21507
"zh-cht": "編輯用戶群",
21508
"xloc": [
21507
- "default.handlebars->39->2381"
21509
+ "default.handlebars->39->2386"
21510
]
21511
},
21512
{
@@ -21528,7 +21530,7 @@
21530
"zh-chs": "编辑用户组设备权限",
21531
"zh-cht": "編輯用戶群裝置權限",
21532
"xloc": [
21531
- "default.handlebars->39->1914"
21533
+ "default.handlebars->39->1919"
21534
]
21535
},
21536
{
@@ -21536,7 +21538,7 @@
21538
"nl": "Functies van gebruikersgroepen bewerken",
21539
"es": "Editar características del grupo de usuarios",
21540
"xloc": [
21539
- "default.handlebars->39->2374"
21541
+ "default.handlebars->39->2379"
21542
]
21543
},
21544
{
@@ -21560,7 +21562,7 @@
21562
"zh-chs": "编辑用户组用户同意",
21563
"zh-cht": "編輯用戶組用戶同意",
21564
"xloc": [
21563
- "default.handlebars->39->1849"
21565
+ "default.handlebars->39->1854"
21566
]
21567
},
21568
{
@@ -21658,12 +21660,12 @@
21660
"zh-cht": "電郵",
21661
"xloc": [
21662
"default-mobile.handlebars->11->102",
21661
- "default.handlebars->39->2274",
21662
- "default.handlebars->39->2407",
21663
- "default.handlebars->39->2409",
21664
- "default.handlebars->39->2454",
21665
- "default.handlebars->39->2464",
21666
- "default.handlebars->39->2496",
21663
+ "default.handlebars->39->2279",
21664
+ "default.handlebars->39->2412",
21665
+ "default.handlebars->39->2414",
21666
+ "default.handlebars->39->2459",
21667
+ "default.handlebars->39->2469",
21668
+ "default.handlebars->39->2501",
21669
"default.handlebars->39->456",
21670
"login-mobile.handlebars->5->42",
21671
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -21700,7 +21702,7 @@
21702
"zh-cht": "電郵地址變更",
21703
"xloc": [
21704
"default-mobile.handlebars->11->103",
21703
- "default.handlebars->39->1668"
21705
+ "default.handlebars->39->1673"
21706
]
21707
},
21708
{
@@ -21725,7 +21727,7 @@
21727
"zh-cht": "電郵認證",
21728
"xloc": [
21729
"default-mobile.handlebars->11->92",
21728
- "default.handlebars->39->1409"
21730
+ "default.handlebars->39->1414"
21731
]
21732
},
21733
{
@@ -21759,7 +21761,7 @@
21761
"nl": "Email verbinden",
21762
"es": "Correo electrónico conectado",
21763
"xloc": [
21762
- "default.handlebars->39->1768",
21764
+ "default.handlebars->39->1773",
21765
"default.handlebars->39->812"
21766
]
21767
},
@@ -21768,7 +21770,7 @@
21770
"nl": "Email verbroken",
21771
"es": "Correo electrónico desconectado",
21772
"xloc": [
21771
- "default.handlebars->39->1769",
21773
+ "default.handlebars->39->1774",
21774
"default.handlebars->39->813"
21775
]
21776
},
@@ -21777,7 +21779,7 @@
21779
"nl": "Email meldingen",
21780
"es": "Notificaciones por correo electrónico",
21781
"xloc": [
21780
- "default.handlebars->39->1969",
21782
+ "default.handlebars->39->1974",
21783
"default.handlebars->39->915"
21784
]
21785
},
@@ -21824,7 +21826,7 @@
21826
"zh-cht": "電郵驗證",
21827
"xloc": [
21828
"default-mobile.handlebars->11->101",
21827
- "default.handlebars->39->1666"
21829
+ "default.handlebars->39->1671"
21830
]
21831
},
21832
{
@@ -21872,7 +21874,7 @@
21874
"zh-chs": "电邮未验证",
21875
"zh-cht": "電郵未驗證",
21876
"xloc": [
21875
- "default.handlebars->39->2218"
21877
+ "default.handlebars->39->2223"
21878
]
21879
},
21880
{
@@ -21896,8 +21898,8 @@
21898
"zh-chs": "电子邮件已验证",
21899
"zh-cht": "電子郵件已驗證",
21900
"xloc": [
21899
- "default.handlebars->39->2219",
21900
- "default.handlebars->39->2401"
21901
+ "default.handlebars->39->2224",
21902
+ "default.handlebars->39->2406"
21903
]
21904
},
21905
{
@@ -21921,7 +21923,7 @@
21923
"zh-chs": "电邮已验证。",
21924
"zh-cht": "電郵已驗證。",
21925
"xloc": [
21924
- "default.handlebars->39->2280"
21926
+ "default.handlebars->39->2285"
21927
]
21928
},
21929
{
@@ -21945,7 +21947,7 @@
21947
"zh-chs": "电邮未验证",
21948
"zh-cht": "電郵未驗證",
21949
"xloc": [
21948
- "default.handlebars->39->2402"
21950
+ "default.handlebars->39->2407"
21951
]
21952
},
21953
{
@@ -21990,7 +21992,7 @@
21992
"zh-cht": "電郵已發送。",
21993
"xloc": [
21994
"default-mobile.handlebars->11->684",
21993
- "default.handlebars->39->2661",
21995
+ "default.handlebars->39->2666",
21996
"login-mobile.handlebars->5->2",
21997
"login.handlebars->5->2",
21998
"login2.handlebars->7->3"
@@ -22063,7 +22065,7 @@
22065
"zh-chs": "已通过电邮验证,并且需要重置密码。",
22066
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
22067
"xloc": [
22066
- "default.handlebars->39->2281"
22068
+ "default.handlebars->39->2286"
22069
]
22070
},
22071
{
@@ -22107,7 +22109,7 @@
22109
"tr": "E-posta/SMS/Push Trafiği",
22110
"zh-chs": "电子邮件/短信/推送流量",
22111
"xloc": [
22110
- "default.handlebars->39->2752"
22112
+ "default.handlebars->39->2757"
22113
]
22114
},
22115
{
@@ -22161,7 +22163,7 @@
22163
"zh-chs": "启用邀请代码",
22164
"zh-cht": "啟用邀請代碼",
22165
"xloc": [
22164
- "default.handlebars->39->1951"
22166
+ "default.handlebars->39->1956"
22167
]
22168
},
22169
{
@@ -22210,7 +22212,7 @@
22212
"zh-cht": "啟用電郵二因子鑑別。",
22213
"xloc": [
22214
"default-mobile.handlebars->11->94",
22213
- "default.handlebars->39->1411"
22215
+ "default.handlebars->39->1416"
22216
]
22217
},
22218
{
@@ -22259,7 +22261,7 @@
22261
"zh-cht": "已啟用",
22262
"xloc": [
22263
"default.handlebars->39->116",
22262
- "default.handlebars->39->2583"
22264
+ "default.handlebars->39->2588"
22265
]
22266
},
22267
{
@@ -22283,7 +22285,7 @@
22285
"zh-chs": "启用电子邮件两因素身份验证",
22286
"zh-cht": "啟用電子郵件兩因素身份驗證",
22287
"xloc": [
22286
- "default.handlebars->39->2129"
22288
+ "default.handlebars->39->2134"
22289
]
22290
},
22291
{
@@ -22355,7 +22357,7 @@
22357
"zh-chs": "时间结束",
22358
"zh-cht": "時間結束",
22359
"xloc": [
22358
- "default.handlebars->39->2580"
22360
+ "default.handlebars->39->2585"
22361
]
22362
},
22363
{
@@ -22379,7 +22381,7 @@
22381
"zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
22382
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
22383
"xloc": [
22382
- "default.handlebars->39->2052"
22384
+ "default.handlebars->39->2057"
22385
]
22386
},
22387
{
@@ -22403,7 +22405,7 @@
22405
"zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
22406
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
22407
"xloc": [
22406
- "default.handlebars->39->2053"
22408
+ "default.handlebars->39->2058"
22409
]
22410
},
22411
{
@@ -22426,7 +22428,7 @@
22428
"tr": "Yerel geçiş oturumu \\\"{0}\\\", {1} - {2} protokolü, {3} saniye sona erdi",
22429
"zh-chs": "结束本地中继会话\\\"{0}\\\",协议 {1} 到 {2},{3} 秒",
22430
"xloc": [
22429
- "default.handlebars->39->2162"
22431
+ "default.handlebars->39->2167"
22432
]
22433
},
22434
{
@@ -22449,7 +22451,7 @@
22451
"tr": "{1} ile {2} arasında \\\"{0}\\\" mesajlaşma oturumu sona erdi, {3} saniye",
22452
"zh-chs": "从 {1} 到 {2},{3} 秒结束了 Messenger 会话 \\\"{0}\\\"",
22453
"xloc": [
22452
- "default.handlebars->39->2153"
22454
+ "default.handlebars->39->2158"
22455
]
22456
},
22457
{
@@ -22473,7 +22475,7 @@
22475
"zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
22476
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
22477
"xloc": [
22476
- "default.handlebars->39->2050"
22478
+ "default.handlebars->39->2055"
22479
]
22480
},
22481
{
@@ -22497,7 +22499,7 @@
22499
"zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
22500
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
22501
"xloc": [
22500
- "default.handlebars->39->2051"
22502
+ "default.handlebars->39->2056"
22503
]
22504
},
22505
{
@@ -22521,7 +22523,7 @@
22523
"zh-chs": "英文",
22524
"zh-cht": "英文",
22525
"xloc": [
22524
- "default.handlebars->39->1480"
22526
+ "default.handlebars->39->1485"
22527
]
22528
},
22529
{
@@ -22545,7 +22547,7 @@
22547
"zh-chs": "英文(澳洲)",
22548
"zh-cht": "英文(澳洲)",
22549
"xloc": [
22548
- "default.handlebars->39->1481"
22550
+ "default.handlebars->39->1486"
22551
]
22552
},
22553
{
@@ -22569,7 +22571,7 @@
22571
"zh-chs": "英文(伯利茲)",
22572
"zh-cht": "英文(伯利茲)",
22573
"xloc": [
22572
- "default.handlebars->39->1482"
22574
+ "default.handlebars->39->1487"
22575
]
22576
},
22577
{
@@ -22593,7 +22595,7 @@
22595
"zh-chs": "英文(加拿大)",
22596
"zh-cht": "英文(加拿大)",
22597
"xloc": [
22596
- "default.handlebars->39->1483"
22598
+ "default.handlebars->39->1488"
22599
]
22600
},
22601
{
@@ -22617,7 +22619,7 @@
22619
"zh-chs": "英文(爱尔兰)",
22620
"zh-cht": "英文(愛爾蘭)",
22621
"xloc": [
22620
- "default.handlebars->39->1484"
22622
+ "default.handlebars->39->1489"
22623
]
22624
},
22625
{
@@ -22641,7 +22643,7 @@
22643
"zh-chs": "英文(牙买加)",
22644
"zh-cht": "英文(牙買加)",
22645
"xloc": [
22644
- "default.handlebars->39->1485"
22646
+ "default.handlebars->39->1490"
22647
]
22648
},
22649
{
@@ -22665,7 +22667,7 @@
22667
"zh-chs": "英文(纽西兰)",
22668
"zh-cht": "英文(紐西蘭)",
22669
"xloc": [
22668
- "default.handlebars->39->1486"
22670
+ "default.handlebars->39->1491"
22671
]
22672
},
22673
{
@@ -22689,7 +22691,7 @@
22691
"zh-chs": "英文(菲律宾)",
22692
"zh-cht": "英文(菲律賓)",
22693
"xloc": [
22692
- "default.handlebars->39->1487"
22694
+ "default.handlebars->39->1492"
22695
]
22696
},
22697
{
@@ -22713,7 +22715,7 @@
22715
"zh-chs": "英语(南非)",
22716
"zh-cht": "英語(南非)",
22717
"xloc": [
22716
- "default.handlebars->39->1488"
22718
+ "default.handlebars->39->1493"
22719
]
22720
},
22721
{
@@ -22737,7 +22739,7 @@
22739
"zh-chs": "英文(特立尼达和多巴哥)",
22740
"zh-cht": "英文(特立尼達和多巴哥)",
22741
"xloc": [
22740
- "default.handlebars->39->1489"
22742
+ "default.handlebars->39->1494"
22743
]
22744
},
22745
{
@@ -22761,7 +22763,7 @@
22763
"zh-chs": "英文(英国)",
22764
"zh-cht": "英文(英國)",
22765
"xloc": [
22764
- "default.handlebars->39->1490"
22766
+ "default.handlebars->39->1495"
22767
]
22768
},
22769
{
@@ -22785,7 +22787,7 @@
22787
"zh-chs": "美国英文",
22788
"zh-cht": "美國英語",
22789
"xloc": [
22788
- "default.handlebars->39->1491"
22790
+ "default.handlebars->39->1496"
22791
]
22792
},
22793
{
@@ -22809,7 +22811,7 @@
22811
"zh-chs": "英文(津巴布韦)",
22812
"zh-cht": "英文(津巴布韋)",
22813
"xloc": [
22812
- "default.handlebars->39->1492"
22814
+ "default.handlebars->39->1497"
22815
]
22816
},
22817
{
@@ -22855,9 +22857,9 @@
22857
"xloc": [
22858
"default-mobile.handlebars->11->382",
22859
"default.handlebars->39->1140",
22858
- "default.handlebars->39->1252",
22859
- "default.handlebars->39->1695",
22860
- "default.handlebars->39->1696",
22860
+ "default.handlebars->39->1257",
22861
+ "default.handlebars->39->1700",
22862
+ "default.handlebars->39->1701",
22863
"sharing.handlebars->11->55"
22864
]
22865
},
@@ -22882,7 +22884,7 @@
22884
"zh-chs": "输入管理领域名称的逗号分隔列表。",
22885
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
22886
"xloc": [
22885
- "default.handlebars->39->2285"
22887
+ "default.handlebars->39->2290"
22888
]
22889
},
22890
{
@@ -22974,7 +22976,7 @@
22976
"zh-chs": "输入文本,然后单击确定以远程键入它。在继续操作之前,请确保将远程光标放置在正确的位置。",
22977
"zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
22978
"xloc": [
22977
- "default.handlebars->39->1165"
22979
+ "default.handlebars->39->1170"
22980
]
22981
},
22982
{
@@ -23088,7 +23090,7 @@
23090
"zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
23091
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
23092
"xloc": [
23091
- "default.handlebars->39->1406"
23093
+ "default.handlebars->39->1411"
23094
]
23095
},
23096
{
@@ -23196,7 +23198,7 @@
23198
"zh-chs": "错误,邀请码 \\\"{0}\\\" 已被使用。",
23199
"xloc": [
23200
"default-mobile.handlebars->11->692",
23199
- "default.handlebars->39->2669"
23201
+ "default.handlebars->39->2674"
23202
]
23203
},
23204
{
@@ -23220,7 +23222,7 @@
23222
"zh-chs": "错误,密码未更改。",
23223
"xloc": [
23224
"default-mobile.handlebars->11->689",
23223
- "default.handlebars->39->2666"
23225
+ "default.handlebars->39->2671"
23226
]
23227
},
23228
{
@@ -23244,7 +23246,7 @@
23246
"zh-chs": "错误,无法更改为常用密码。",
23247
"xloc": [
23248
"default-mobile.handlebars->11->688",
23247
- "default.handlebars->39->2665"
23249
+ "default.handlebars->39->2670"
23250
]
23251
},
23252
{
@@ -23268,7 +23270,7 @@
23270
"zh-chs": "错误,无法更改为以前使用的密码。",
23271
"xloc": [
23272
"default-mobile.handlebars->11->687",
23271
- "default.handlebars->39->2664"
23273
+ "default.handlebars->39->2669"
23274
]
23275
},
23276
{
@@ -23340,7 +23342,7 @@
23342
"zh-chs": "世界文",
23343
"zh-cht": "世界語",
23344
"xloc": [
23343
- "default.handlebars->39->1493"
23345
+ "default.handlebars->39->1498"
23346
]
23347
},
23348
{
@@ -23384,7 +23386,7 @@
23386
"zh-chs": "爱沙尼亚文",
23387
"zh-cht": "愛沙尼亞語",
23388
"xloc": [
23387
- "default.handlebars->39->1494"
23389
+ "default.handlebars->39->1499"
23390
]
23391
},
23392
{
@@ -23428,7 +23430,7 @@
23430
"zh-chs": "事件详情",
23431
"zh-cht": "事件詳情",
23432
"xloc": [
23431
- "default.handlebars->39->1294"
23433
+ "default.handlebars->39->1299"
23434
]
23435
},
23436
{
@@ -23452,7 +23454,7 @@
23454
"zh-chs": "事件列表输出",
23455
"zh-cht": "事件列表輸出",
23456
"xloc": [
23455
- "default.handlebars->39->2194"
23457
+ "default.handlebars->39->2199"
23458
]
23459
},
23460
{
@@ -23624,7 +23626,7 @@
23626
"zh-cht": "到期時間",
23627
"xloc": [
23628
"default.handlebars->39->1002",
23627
- "default.handlebars->39->1656",
23629
+ "default.handlebars->39->1661",
23630
"default.handlebars->39->259"
23631
]
23632
},
@@ -23673,7 +23675,7 @@
23675
"zh-chs": "过期{0}",
23676
"zh-cht": "過期{0}",
23677
"xloc": [
23676
- "default.handlebars->39->1709",
23678
+ "default.handlebars->39->1714",
23679
"sharing.handlebars->11->95"
23680
]
23681
},
@@ -23722,7 +23724,7 @@
23724
"zh-chs": "扩充式ASCII",
23725
"zh-cht": "擴充式ASCII",
23726
"xloc": [
23725
- "default.handlebars->39->1218",
23727
+ "default.handlebars->39->1223",
23728
"sharing.handlebars->11->34"
23729
]
23730
},
@@ -23772,7 +23774,7 @@
23774
"zh-chs": "外部",
23775
"zh-cht": "外部",
23776
"xloc": [
23775
- "default.handlebars->39->2732"
23777
+ "default.handlebars->39->2737"
23778
]
23779
},
23780
{
@@ -23820,7 +23822,7 @@
23822
"zh-chs": "FYRO马其顿语",
23823
"zh-cht": "FYRO馬其頓語",
23824
"xloc": [
23823
- "default.handlebars->39->1544"
23825
+ "default.handlebars->39->1549"
23826
]
23827
},
23828
{
@@ -23844,7 +23846,7 @@
23846
"zh-chs": "法罗语",
23847
"zh-cht": "法羅語",
23848
"xloc": [
23847
- "default.handlebars->39->1495"
23849
+ "default.handlebars->39->1500"
23850
]
23851
},
23852
{
@@ -23892,7 +23894,7 @@
23894
"zh-chs": "无法更改电子邮件地址,另一个帐户已在使用:{0}。",
23895
"xloc": [
23896
"default-mobile.handlebars->11->683",
23895
- "default.handlebars->39->2660"
23897
+ "default.handlebars->39->2665"
23898
]
23899
},
23900
{
@@ -23939,7 +23941,7 @@
23941
"zh-chs": "本地用户拒绝后无法启动远程桌面",
23942
"zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
23943
"xloc": [
23942
- "default.handlebars->39->2075"
23944
+ "default.handlebars->39->2080"
23945
]
23946
},
23947
{
@@ -23983,7 +23985,7 @@
23985
"zh-chs": "本地用户拒绝后无法启动远程文件",
23986
"zh-cht": "本地用戶拒絕後無法啟動遠程文件",
23987
"xloc": [
23986
- "default.handlebars->39->2082"
23988
+ "default.handlebars->39->2087"
23989
]
23990
},
23991
{
@@ -24054,7 +24056,7 @@
24056
"zh-chs": "波斯文(波斯文)",
24057
"zh-cht": "波斯語(波斯語)",
24058
"xloc": [
24057
- "default.handlebars->39->1496"
24059
+ "default.handlebars->39->1501"
24060
]
24061
},
24062
{
@@ -24104,9 +24106,9 @@
24106
"zh-chs": "功能",
24107
"zh-cht": "功能",
24108
"xloc": [
24107
- "default.handlebars->39->1752",
24108
- "default.handlebars->39->2337",
24109
- "default.handlebars->39->2425"
24109
+ "default.handlebars->39->1757",
24110
+ "default.handlebars->39->2342",
24111
+ "default.handlebars->39->2430"
24112
]
24113
},
24114
{
@@ -24130,7 +24132,7 @@
24132
"zh-chs": "斐济",
24133
"zh-cht": "斐濟",
24134
"xloc": [
24133
- "default.handlebars->39->1497"
24135
+ "default.handlebars->39->1502"
24136
]
24137
},
24138
{
@@ -24179,7 +24181,7 @@
24181
"zh-cht": "檔案編輯器",
24182
"xloc": [
24183
"default-mobile.handlebars->11->457",
24182
- "default.handlebars->39->1264",
24184
+ "default.handlebars->39->1269",
24185
"default.handlebars->39->697",
24186
"sharing.handlebars->11->66"
24187
]
@@ -24226,8 +24228,8 @@
24228
"zh-chs": "档案操作",
24229
"zh-cht": "檔案操作",
24230
"xloc": [
24229
- "default.handlebars->39->1243",
24230
- "default.handlebars->39->1245",
24231
+ "default.handlebars->39->1248",
24232
+ "default.handlebars->39->1250",
24233
"sharing.handlebars->11->46",
24234
"sharing.handlebars->11->48"
24235
]
@@ -24276,7 +24278,7 @@
24278
"tr": "Dosya transferi",
24279
"zh-chs": "文件传输",
24280
"xloc": [
24279
- "default.handlebars->39->2561"
24281
+ "default.handlebars->39->2566"
24282
]
24283
},
24284
{
@@ -24300,7 +24302,7 @@
24302
"zh-chs": "文件系统驱动",
24303
"zh-cht": "FileSystemDriver",
24304
"xloc": [
24303
- "default.handlebars->39->1182"
24305
+ "default.handlebars->39->1187"
24306
]
24307
},
24308
{
@@ -24326,11 +24328,11 @@
24328
"xloc": [
24329
"default-mobile.handlebars->11->206",
24330
"default-mobile.handlebars->11->320",
24329
- "default.handlebars->39->1857",
24330
- "default.handlebars->39->2568",
24331
- "default.handlebars->39->2618",
24332
- "default.handlebars->39->2634",
24333
- "default.handlebars->39->2720",
24331
+ "default.handlebars->39->1862",
24332
+ "default.handlebars->39->2573",
24333
+ "default.handlebars->39->2623",
24334
+ "default.handlebars->39->2639",
24335
+ "default.handlebars->39->2725",
24336
"default.handlebars->39->377",
24337
"default.handlebars->39->901",
24338
"default.handlebars->39->977",
@@ -24384,9 +24386,9 @@
24386
"zh-chs": "档案通知",
24387
"zh-cht": "檔案通知",
24388
"xloc": [
24387
- "default.handlebars->39->1760",
24388
- "default.handlebars->39->2345",
24389
- "default.handlebars->39->2447",
24389
+ "default.handlebars->39->1765",
24390
+ "default.handlebars->39->2350",
24391
+ "default.handlebars->39->2452",
24392
"default.handlebars->39->804"
24393
]
24394
},
@@ -24411,9 +24413,9 @@
24413
"zh-chs": "档案提示",
24414
"zh-cht": "檔案提示",
24415
"xloc": [
24414
- "default.handlebars->39->1759",
24415
- "default.handlebars->39->2344",
24416
- "default.handlebars->39->2446",
24416
+ "default.handlebars->39->1764",
24417
+ "default.handlebars->39->2349",
24418
+ "default.handlebars->39->2451",
24419
"default.handlebars->39->803"
24420
]
24421
},
@@ -24439,7 +24441,7 @@
24441
"zh-cht": "過濾",
24442
"xloc": [
24443
"default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1",
24442
- "default.handlebars->39->1248",
24444
+ "default.handlebars->39->1253",
24445
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
24446
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar",
24447
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -24492,7 +24494,7 @@
24494
"zh-chs": "查找文件",
24495
"zh-cht": "查找文件",
24496
"xloc": [
24495
- "default.handlebars->39->1251",
24497
+ "default.handlebars->39->1256",
24498
"sharing.handlebars->11->54"
24499
]
24500
},
@@ -24517,7 +24519,7 @@
24519
"zh-chs": "录制会话已完成,{0}秒",
24520
"zh-cht": "錄製會話已完成,{0}秒",
24521
"xloc": [
24520
- "default.handlebars->39->2048"
24522
+ "default.handlebars->39->2053"
24523
]
24524
},
24525
{
@@ -24541,7 +24543,7 @@
24543
"zh-chs": "芬兰",
24544
"zh-cht": "芬蘭",
24545
"xloc": [
24544
- "default.handlebars->39->1498"
24546
+ "default.handlebars->39->1503"
24547
]
24548
},
24549
{
@@ -24590,8 +24592,8 @@
24592
"tr": "Güvenlik duvarı etkin değil",
24593
"zh-chs": "防火墙未激活",
24594
"xloc": [
24593
- "default.handlebars->39->1980",
24594
- "default.handlebars->39->1994"
24595
+ "default.handlebars->39->1985",
24596
+ "default.handlebars->39->1999"
24597
]
24598
},
24599
{
@@ -24883,8 +24885,8 @@
24885
"zh-chs": "下次登录时强制重置密码。",
24886
"zh-cht": "下次登入時強制重置密碼。",
24887
"xloc": [
24886
- "default.handlebars->39->2279",
24887
- "default.handlebars->39->2507"
24888
+ "default.handlebars->39->2284",
24889
+ "default.handlebars->39->2512"
24890
]
24891
},
24892
{
@@ -24983,7 +24985,7 @@
24985
"zh-chs": "格式化",
24986
"zh-cht": "格式化",
24987
"xloc": [
24986
- "default.handlebars->39->2185"
24988
+ "default.handlebars->39->2190"
24989
]
24990
},
24991
{
@@ -25053,8 +25055,8 @@
25055
"zh-chs": "自由",
25056
"zh-cht": "自由",
25057
"xloc": [
25056
- "default.handlebars->39->2678",
25057
- "default.handlebars->39->2680"
25058
+ "default.handlebars->39->2683",
25059
+ "default.handlebars->39->2685"
25060
]
25061
},
25062
{
@@ -25103,7 +25105,7 @@
25105
"zh-chs": "法文(比利时)",
25106
"zh-cht": "法語(比利時)",
25107
"xloc": [
25106
- "default.handlebars->39->1500"
25108
+ "default.handlebars->39->1505"
25109
]
25110
},
25111
{
@@ -25127,7 +25129,7 @@
25129
"zh-chs": "法文(加拿大)",
25130
"zh-cht": "法語(加拿大)",
25131
"xloc": [
25130
- "default.handlebars->39->1501"
25132
+ "default.handlebars->39->1506"
25133
]
25134
},
25135
{
@@ -25151,7 +25153,7 @@
25153
"zh-chs": "法文(法国)",
25154
"zh-cht": "法語(法國)",
25155
"xloc": [
25154
- "default.handlebars->39->1502"
25156
+ "default.handlebars->39->1507"
25157
]
25158
},
25159
{
@@ -25175,7 +25177,7 @@
25177
"zh-chs": "法文(卢森堡)",
25178
"zh-cht": "法語(盧森堡)",
25179
"xloc": [
25178
- "default.handlebars->39->1503"
25180
+ "default.handlebars->39->1508"
25181
]
25182
},
25183
{
@@ -25199,7 +25201,7 @@
25201
"zh-chs": "法文(摩纳哥)",
25202
"zh-cht": "法語(摩納哥)",
25203
"xloc": [
25202
- "default.handlebars->39->1504"
25204
+ "default.handlebars->39->1509"
25205
]
25206
},
25207
{
@@ -25223,7 +25225,7 @@
25225
"zh-chs": "法文(标准)",
25226
"zh-cht": "法語(標準)",
25227
"xloc": [
25226
- "default.handlebars->39->1499"
25228
+ "default.handlebars->39->1504"
25229
]
25230
},
25231
{
@@ -25247,7 +25249,7 @@
25249
"zh-chs": "法文(瑞士)",
25250
"zh-cht": "法語(瑞士)",
25251
"xloc": [
25250
- "default.handlebars->39->1505"
25252
+ "default.handlebars->39->1510"
25253
]
25254
},
25255
{
@@ -25271,7 +25273,7 @@
25273
"zh-chs": "弗里斯兰文",
25274
"zh-cht": "弗里斯蘭語",
25275
"xloc": [
25274
- "default.handlebars->39->1506"
25276
+ "default.handlebars->39->1511"
25277
]
25278
},
25279
{
@@ -25295,7 +25297,7 @@
25297
"zh-chs": "弗留利",
25298
"zh-cht": "弗留利",
25299
"xloc": [
25298
- "default.handlebars->39->1507"
25300
+ "default.handlebars->39->1512"
25301
]
25302
},
25303
{
@@ -25323,9 +25325,9 @@
25325
"default-mobile.handlebars->11->601",
25326
"default-mobile.handlebars->11->614",
25327
"default-mobile.handlebars->11->634",
25326
- "default.handlebars->39->1702",
25327
- "default.handlebars->39->1880",
25328
- "default.handlebars->39->2291"
25328
+ "default.handlebars->39->1707",
25329
+ "default.handlebars->39->1885",
25330
+ "default.handlebars->39->2296"
25331
]
25332
},
25333
{
@@ -25349,7 +25351,7 @@
25351
"zh-chs": "完整管理员(保留所有权利)",
25352
"zh-cht": "完整管理員(保留所有權利)",
25353
"xloc": [
25352
- "default.handlebars->39->1918"
25354
+ "default.handlebars->39->1923"
25355
]
25356
},
25357
{
@@ -25493,7 +25495,7 @@
25495
"zh-chs": "完整管理员",
25496
"zh-cht": "完整管理員",
25497
"xloc": [
25496
- "default.handlebars->39->2395"
25498
+ "default.handlebars->39->2400"
25499
]
25500
},
25501
{
@@ -25517,8 +25519,8 @@
25519
"zh-chs": "全自动的",
25520
"zh-cht": "全自動的",
25521
"xloc": [
25520
- "default.handlebars->39->1779",
25521
- "default.handlebars->39->1815"
25522
+ "default.handlebars->39->1784",
25523
+ "default.handlebars->39->1820"
25524
]
25525
},
25526
{
@@ -25543,7 +25545,7 @@
25545
"zh-cht": "GPU",
25546
"xloc": [
25547
"default-mobile.handlebars->11->558",
25546
- "default.handlebars->39->1367"
25548
+ "default.handlebars->39->1372"
25549
]
25550
},
25551
{
@@ -25567,7 +25569,7 @@
25569
"zh-chs": "盖尔文(爱尔兰)",
25570
"zh-cht": "蓋爾語(愛爾蘭)",
25571
"xloc": [
25570
- "default.handlebars->39->1509"
25572
+ "default.handlebars->39->1514"
25573
]
25574
},
25575
{
@@ -25591,7 +25593,7 @@
25593
"zh-chs": "盖尔文(苏格兰文)",
25594
"zh-cht": "蓋爾語(蘇格蘭語)",
25595
"xloc": [
25594
- "default.handlebars->39->1508"
25596
+ "default.handlebars->39->1513"
25597
]
25598
},
25599
{
@@ -25615,7 +25617,7 @@
25617
"zh-chs": "加拉契文",
25618
"zh-cht": "加拉契語",
25619
"xloc": [
25618
- "default.handlebars->39->1510"
25620
+ "default.handlebars->39->1515"
25621
]
25622
},
25623
{
@@ -25749,7 +25751,7 @@
25751
"nl": "Genereer rapport",
25752
"es": "Generar informe",
25753
"xloc": [
25752
- "default.handlebars->39->2604"
25754
+ "default.handlebars->39->2609"
25755
]
25756
},
25757
{
@@ -25781,7 +25783,7 @@
25783
"zh-chs": "格鲁吉亚文",
25784
"zh-cht": "格魯吉亞文",
25785
"xloc": [
25784
- "default.handlebars->39->1511"
25786
+ "default.handlebars->39->1516"
25787
]
25788
},
25789
{
@@ -25805,7 +25807,7 @@
25807
"zh-chs": "德文(奥地利)",
25808
"zh-cht": "德語(奧地利)",
25809
"xloc": [
25808
- "default.handlebars->39->1513"
25810
+ "default.handlebars->39->1518"
25811
]
25812
},
25813
{
@@ -25829,7 +25831,7 @@
25831
"zh-chs": "德文(德国)",
25832
"zh-cht": "德文(德國)",
25833
"xloc": [
25832
- "default.handlebars->39->1514"
25834
+ "default.handlebars->39->1519"
25835
]
25836
},
25837
{
@@ -25853,7 +25855,7 @@
25855
"zh-chs": "德文(列支敦士登)",
25856
"zh-cht": "德文(列支敦士登)",
25857
"xloc": [
25856
- "default.handlebars->39->1515"
25858
+ "default.handlebars->39->1520"
25859
]
25860
},
25861
{
@@ -25877,7 +25879,7 @@
25879
"zh-chs": "德文(卢森堡)",
25880
"zh-cht": "德語(盧森堡)",
25881
"xloc": [
25880
- "default.handlebars->39->1516"
25882
+ "default.handlebars->39->1521"
25883
]
25884
},
25885
{
@@ -25901,7 +25903,7 @@
25903
"zh-chs": "德文(标准)",
25904
"zh-cht": "德語(標準)",
25905
"xloc": [
25904
- "default.handlebars->39->1512"
25906
+ "default.handlebars->39->1517"
25907
]
25908
},
25909
{
@@ -25925,7 +25927,7 @@
25927
"zh-chs": "德文(瑞士)",
25928
"zh-cht": "德文(瑞士)",
25929
"xloc": [
25928
- "default.handlebars->39->1517"
25930
+ "default.handlebars->39->1522"
25931
]
25932
},
25933
{
@@ -25934,7 +25936,7 @@
25936
"pl": "Pobierz schowek",
25937
"es": "Obtener portapapeles",
25938
"xloc": [
25937
- "default.handlebars->39->1167"
25939
+ "default.handlebars->39->1172"
25940
]
25941
},
25942
{
@@ -26007,7 +26009,7 @@
26009
"zh-chs": "正在获取剪贴板内容,{0}个字节",
26010
"zh-cht": "正在獲取剪貼板內容,{0}個字節",
26011
"xloc": [
26010
- "default.handlebars->39->2062"
26012
+ "default.handlebars->39->2067"
26013
]
26014
},
26015
{
@@ -26081,7 +26083,7 @@
26083
"zh-chs": "好",
26084
"zh-cht": "好",
26085
"xloc": [
26084
- "default.handlebars->39->1698"
26086
+ "default.handlebars->39->1703"
26087
]
26088
},
26089
{
@@ -26134,8 +26136,8 @@
26136
"zh-chs": "Google云端硬盘备份",
26137
"zh-cht": "Google雲端硬盤備份",
26138
"xloc": [
26137
- "default.handlebars->39->1719",
26138
- "default.handlebars->39->1722",
26139
+ "default.handlebars->39->1724",
26140
+ "default.handlebars->39->1727",
26141
"default.handlebars->39->281"
26142
]
26143
},
@@ -26160,7 +26162,7 @@
26162
"zh-chs": "Google云端硬盘控制台",
26163
"zh-cht": "Google雲端硬盤控制台",
26164
"xloc": [
26163
- "default.handlebars->39->1716"
26165
+ "default.handlebars->39->1721"
26166
]
26167
},
26168
{
@@ -26208,7 +26210,7 @@
26210
"zh-chs": "Google云端硬盘备份当前处于活动状态。",
26211
"zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
26212
"xloc": [
26211
- "default.handlebars->39->1720"
26213
+ "default.handlebars->39->1725"
26214
]
26215
},
26216
{
@@ -26255,7 +26257,7 @@
26257
"zh-chs": "希腊文",
26258
"zh-cht": "希臘文",
26259
"xloc": [
26258
- "default.handlebars->39->1518"
26260
+ "default.handlebars->39->1523"
26261
]
26262
},
26263
{
@@ -26280,7 +26282,7 @@
26282
"zh-cht": "群",
26283
"xloc": [
26284
"default-mobile.handlebars->11->256",
26283
- "default.handlebars->39->2615",
26285
+ "default.handlebars->39->2620",
26286
"default.handlebars->39->732",
26287
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
26288
]
@@ -26306,8 +26308,8 @@
26308
"zh-chs": "集体指令",
26309
"zh-cht": "集體指令",
26310
"xloc": [
26309
- "default.handlebars->39->2233",
26310
- "default.handlebars->39->2315",
26311
+ "default.handlebars->39->2238",
26312
+ "default.handlebars->39->2320",
26313
"default.handlebars->39->609",
26314
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
26315
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -26335,7 +26337,7 @@
26337
"zh-chs": "通过...分组",
26338
"zh-cht": "通過...分群",
26339
"xloc": [
26338
- "default.handlebars->39->2181"
26340
+ "default.handlebars->39->2186"
26341
]
26342
},
26343
{
@@ -26359,7 +26361,7 @@
26361
"zh-chs": "组标识符",
26362
"zh-cht": "群標識符",
26363
"xloc": [
26362
- "default.handlebars->39->2332"
26364
+ "default.handlebars->39->2337"
26365
]
26366
},
26367
{
@@ -26383,7 +26385,7 @@
26385
"zh-chs": "群组成员",
26386
"zh-cht": "群組成員",
26387
"xloc": [
26386
- "default.handlebars->39->2356"
26388
+ "default.handlebars->39->2361"
26389
]
26390
},
26391
{
@@ -26407,7 +26409,7 @@
26409
"zh-chs": "通过...分组",
26410
"zh-cht": "通過...分群",
26411
"xloc": [
26410
- "default.handlebars->39->2593"
26412
+ "default.handlebars->39->2598"
26413
]
26414
},
26415
{
@@ -26431,7 +26433,7 @@
26433
"zh-chs": "用户{0}的群组权限。",
26434
"zh-cht": "用戶{0}的群組權限。",
26435
"xloc": [
26434
- "default.handlebars->39->1879"
26436
+ "default.handlebars->39->1884"
26437
]
26438
},
26439
{
@@ -26455,7 +26457,7 @@
26457
"zh-chs": "{0}的群组权限。",
26458
"zh-cht": "{0}的群組權限。",
26459
"xloc": [
26458
- "default.handlebars->39->1878"
26460
+ "default.handlebars->39->1883"
26461
]
26462
},
26463
{
@@ -26535,7 +26537,7 @@
26537
"nl": "Gast",
26538
"es": "Invitado",
26539
"xloc": [
26538
- "default.handlebars->39->2610"
26540
+ "default.handlebars->39->2615"
26541
]
26542
},
26543
{
@@ -26607,7 +26609,7 @@
26609
"tr": "Misafir Paylaşımı",
26610
"zh-chs": "嘉宾分享",
26611
"xloc": [
26610
- "default.handlebars->39->1887"
26612
+ "default.handlebars->39->1892"
26613
]
26614
},
26615
{
@@ -26631,7 +26633,7 @@
26633
"zh-chs": "古久拉提",
26634
"zh-cht": "古久拉提",
26635
"xloc": [
26634
- "default.handlebars->39->1519"
26636
+ "default.handlebars->39->1524"
26637
]
26638
},
26639
{
@@ -26654,7 +26656,7 @@
26656
"tr": "HTTP",
26657
"zh-chs": "HTTP",
26658
"xloc": [
26657
- "default.handlebars->39->2716"
26659
+ "default.handlebars->39->2721"
26660
]
26661
},
26662
{
@@ -26725,7 +26727,7 @@
26727
"zh-chs": "海地文",
26728
"zh-cht": "海地文",
26729
"xloc": [
26728
- "default.handlebars->39->1520"
26730
+ "default.handlebars->39->1525"
26731
]
26732
},
26733
{
@@ -26797,7 +26799,7 @@
26799
"zh-cht": "強行斷開代理",
26800
"xloc": [
26801
"default-mobile.handlebars->11->588",
26800
- "default.handlebars->39->1398"
26802
+ "default.handlebars->39->1403"
26803
]
26804
},
26805
{
@@ -26821,7 +26823,7 @@
26823
"zh-chs": "堆总数",
26824
"zh-cht": "堆總數",
26825
"xloc": [
26824
- "default.handlebars->39->2734"
26826
+ "default.handlebars->39->2739"
26827
]
26828
},
26829
{
@@ -26845,7 +26847,7 @@
26847
"zh-chs": "堆使用",
26848
"zh-cht": "堆使用",
26849
"xloc": [
26848
- "default.handlebars->39->2733"
26850
+ "default.handlebars->39->2738"
26851
]
26852
},
26853
{
@@ -26869,7 +26871,7 @@
26871
"zh-chs": "希伯来文",
26872
"zh-cht": "希伯來文",
26873
"xloc": [
26872
- "default.handlebars->39->1521"
26874
+ "default.handlebars->39->1526"
26875
]
26876
},
26877
{
@@ -26962,7 +26964,7 @@
26964
"zh-chs": "已请求帮助,用户:{0},详细信息:{1}",
26965
"zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}",
26966
"xloc": [
26965
- "default.handlebars->39->2139"
26967
+ "default.handlebars->39->2144"
26968
]
26969
},
26970
{
@@ -27035,7 +27037,7 @@
27037
"zh-chs": "帮助翻译MeshCentral",
27038
"zh-cht": "幫助翻譯MeshCentral",
27039
"xloc": [
27038
- "default.handlebars->39->1636"
27040
+ "default.handlebars->39->1641"
27041
]
27042
},
27043
{
@@ -27159,7 +27161,7 @@
27161
"zh-chs": "印地文",
27162
"zh-cht": "印地文",
27163
"xloc": [
27162
- "default.handlebars->39->1522"
27164
+ "default.handlebars->39->1527"
27165
]
27166
},
27167
{
@@ -27205,7 +27207,7 @@
27207
"zh-cht": "保存1個項目進行複製",
27208
"xloc": [
27209
"default-mobile.handlebars->11->466",
27208
- "default.handlebars->39->1274",
27210
+ "default.handlebars->39->1279",
27211
"sharing.handlebars->11->76"
27212
]
27213
},
@@ -27231,7 +27233,7 @@
27233
"zh-cht": "保存1個項目進行移動",
27234
"xloc": [
27235
"default-mobile.handlebars->11->470",
27234
- "default.handlebars->39->1278",
27236
+ "default.handlebars->39->1283",
27237
"sharing.handlebars->11->80"
27238
]
27239
},
@@ -27257,7 +27259,7 @@
27259
"zh-cht": "保留{0}個項目進行複製",
27260
"xloc": [
27261
"default-mobile.handlebars->11->464",
27260
- "default.handlebars->39->1272",
27262
+ "default.handlebars->39->1277",
27263
"sharing.handlebars->11->74"
27264
]
27265
},
@@ -27283,7 +27285,7 @@
27285
"zh-cht": "保存{0}個項目以進行移動",
27286
"xloc": [
27287
"default-mobile.handlebars->11->468",
27286
- "default.handlebars->39->1276",
27288
+ "default.handlebars->39->1281",
27289
"sharing.handlebars->11->78"
27290
]
27291
},
@@ -27309,7 +27311,7 @@
27311
"zh-cht": "保存{0}項目{1}給{2}",
27312
"xloc": [
27313
"default-mobile.handlebars->11->153",
27312
- "default.handlebars->39->2035"
27314
+ "default.handlebars->39->2040"
27315
]
27316
},
27317
{
@@ -27363,7 +27365,7 @@
27365
"default-mobile.handlebars->11->367",
27366
"default-mobile.handlebars->11->517",
27367
"default.handlebars->39->1113",
27366
- "default.handlebars->39->1316",
27368
+ "default.handlebars->39->1321",
27369
"default.handlebars->39->412",
27370
"default.handlebars->39->421",
27371
"default.handlebars->39->737"
@@ -27390,7 +27392,7 @@
27392
"zh-chs": "主机名同步",
27393
"zh-cht": "主機名同步",
27394
"xloc": [
27393
- "default.handlebars->39->1748"
27395
+ "default.handlebars->39->1753"
27396
]
27397
},
27398
{
@@ -27414,7 +27416,7 @@
27416
"zh-chs": "匈牙利文",
27417
"zh-cht": "匈牙利文",
27418
"xloc": [
27417
- "default.handlebars->39->1523"
27419
+ "default.handlebars->39->1528"
27420
]
27421
},
27422
{
@@ -27489,9 +27491,9 @@
27491
"zh-chs": "IP:{0}",
27492
"zh-cht": "IP:{0}",
27493
"xloc": [
27492
- "default.handlebars->39->1326",
27493
- "default.handlebars->39->1336",
27494
- "default.handlebars->39->1340"
27494
+ "default.handlebars->39->1331",
27495
+ "default.handlebars->39->1341",
27496
+ "default.handlebars->39->1345"
27497
]
27498
},
27499
{
@@ -27515,9 +27517,9 @@
27517
"zh-chs": "IP:{0},掩码:{1},网关:{2}",
27518
"zh-cht": "IP:{0},遮罩:{1},閘道:{2}",
27519
"xloc": [
27518
- "default.handlebars->39->1324",
27519
- "default.handlebars->39->1334",
27520
- "default.handlebars->39->1338"
27520
+ "default.handlebars->39->1329",
27521
+ "default.handlebars->39->1339",
27522
+ "default.handlebars->39->1343"
27523
]
27524
},
27525
{
@@ -27543,10 +27545,10 @@
27545
"xloc": [
27546
"default-mobile.handlebars->11->524",
27547
"default-mobile.handlebars->11->526",
27546
- "default.handlebars->39->1323",
27547
- "default.handlebars->39->1325",
27548
- "default.handlebars->39->1333",
27549
- "default.handlebars->39->1335"
27548
+ "default.handlebars->39->1328",
27549
+ "default.handlebars->39->1330",
27550
+ "default.handlebars->39->1338",
27551
+ "default.handlebars->39->1340"
27552
]
27553
},
27554
{
@@ -27647,8 +27649,8 @@
27649
"xloc": [
27650
"default-mobile.handlebars->11->528",
27651
"default-mobile.handlebars->11->530",
27650
- "default.handlebars->39->1337",
27651
- "default.handlebars->39->1339"
27652
+ "default.handlebars->39->1342",
27653
+ "default.handlebars->39->1344"
27654
]
27655
},
27656
{
@@ -27744,7 +27746,7 @@
27746
"zh-chs": "冰岛文",
27747
"zh-cht": "冰島文",
27748
"xloc": [
27747
- "default.handlebars->39->1524"
27749
+ "default.handlebars->39->1529"
27750
]
27751
},
27752
{
@@ -27795,8 +27797,8 @@
27797
"xloc": [
27798
"default-mobile.handlebars->11->516",
27799
"default-mobile.handlebars->11->556",
27798
- "default.handlebars->39->1315",
27799
- "default.handlebars->39->1365"
27800
+ "default.handlebars->39->1320",
27801
+ "default.handlebars->39->1370"
27802
]
27803
},
27804
{
@@ -27820,7 +27822,7 @@
27822
"zh-chs": "如果在CCM中,请重新激活英特尔®AMT",
27823
"zh-cht": "如果在CCM中,請重新激活英特爾®AMT",
27824
"xloc": [
27823
- "default.handlebars->39->1829"
27825
+ "default.handlebars->39->1834"
27826
]
27827
},
27828
{
@@ -27989,9 +27991,9 @@
27991
"tr": "Intel® AMT Cihazlarını İçe Aktarın",
27992
"zh-chs": "导入英特尔® AMT 设备",
27993
"xloc": [
27992
- "default.handlebars->39->1803",
27993
- "default.handlebars->39->1804",
27994
- "default.handlebars->39->1808"
27994
+ "default.handlebars->39->1808",
27995
+ "default.handlebars->39->1809",
27996
+ "default.handlebars->39->1813"
27997
]
27998
},
27999
{
@@ -28014,7 +28016,7 @@
28016
"tr": "MeshCommander JSON formatında yerel Intel® AMT cihazlarının bir listesini içe aktarın.",
28017
"zh-chs": "以 MeshCommander JSON 格式导入本地英特尔® AMT 设备列表。",
This file is too large to show in full.
views/default.handlebars
+90
-5
@@ -112,6 +112,9 @@
112
<div class="cmtext" onclick="cmdeskshortcutaction(1,event)">Customize...</div>
113
</div>
114
<div id="deskPreConfigShortcutContextMenu" class="contextMenu noselect" style="display:none;min-width:0px">
115
+ <span id="deskPreConfigShortcutContextMenu1"></span>
116
+ <span id="deskPreConfigShortcutContextMenu2"></span>
117
+ <div class="cmtext" onclick="cmdeskpreconfigtypeaction(-1,event)">Customize...</div>
118
</div>
119
120
<!--
@@ -684,7 +687,7 @@
687
<input id="DeskWD" type=button value="Send" onkeypress="return false" onkeydown="return false" onclick="deskSendKeys()" />
688
<input id="DeskESC" style="display:none" type="button" value="ESC" onkeypress="return false" onkeydown="return false" onclick="sendDeskEsc()" />
689
<input id="DeskClip" type="button" value="Clipboard" onkeypress="return false" onkeydown="return false" onclick="showDeskClip()" />
687
- <input id="DeskType" type="button" value="Type" onkeypress="return false" onkeydown="return false" onclick="showDeskType()" />
690
+ <input id="DeskType" cmenu="deskPreConfigShortcutContextMenu" type="button" value="Type" onkeypress="return false" onkeydown="return false" onclick="showDeskType()" />
691
<label><span id="DeskControlSpan" title="Toggle mouse and keyboard input"><input id="DeskControl" type="checkbox" onkeypress="return false" onkeydown="return false" onclick="toggleKvmControl()" />Input</span></label>
692
</div>
693
</div>
@@ -1412,6 +1415,7 @@
1415
var miscState = {};
1416
var checkedNodeids = {};
1417
var deskKeyboardShortcuts = [];
1418
+ var deskKeyboardStrings = [];
1419
var deskLastClipboardSent = null;
1420
var requestedLastConnects = false;
1421
@@ -1628,6 +1632,10 @@
1632
for (var i in deskKeyboardShortcutsStr) { deskKeyboardShortcuts.push(parseInt(deskKeyboardShortcutsStr[i])); }
1633
updateDeskShortcutKeys();
1634
1635
+ // Set the user's desktop strings
1636
+ try { deskKeyboardStrings = JSON.parse(getstore('deskStrings', '[]')); } catch (ex) {}
1637
+ updateDesktopStrings();
1638
+
1639
// Override the collapse button text
1640
updateCollapseAllButton();
1641
@@ -2264,8 +2272,8 @@
2272
if (serverinfo.preConfiguredRemoteInput) {
2273
var x = '';
2274
for (var i in serverinfo.preConfiguredRemoteInput) { x += '<div class="cmtext" onclick="cmdeskpreconfigtypeaction(' + i + ',event)">' + EscapeHtml(serverinfo.preConfiguredRemoteInput[i].name) + '</div>'; }
2267
- QH('deskPreConfigShortcutContextMenu', x);
2268
- Q('DeskType').setAttribute('cmenu', 'deskPreConfigShortcutContextMenu');
2275
+ if (x != '') { x += '<hr />'; }
2276
+ QH('deskPreConfigShortcutContextMenu1', x);
2277
}
2278
break;
2279
}
@@ -2874,6 +2882,12 @@
2882
for (var i in deskKeyboardShortcutsStr) { deskKeyboardShortcuts.push(parseInt(deskKeyboardShortcutsStr[i])); }
2883
updateDeskShortcutKeys();
2884
}
2885
+ if (webstate.deskStrings != null) {
2886
+ // Set the user's desktop strings
2887
+ var s = null;
2888
+ try { s = JSON.parse(webstate.deskStrings); } catch (ex) {}
2889
+ if (Array.isArray(s)) { deskKeyboardStrings = s; updateDesktopStrings(); }
2890
+ }
2891
}
2892
} catch (ex) {}
2893
break;
@@ -5891,7 +5905,9 @@
5905
5906
function cmdeskpreconfigtypeaction(action) {
5907
if (xxdialogMode) return;
5894
- showDeskTypeEx(serverinfo.preConfiguredRemoteInput[action].value); // Type a pre-configured input string
5908
+ if (action == -1) { deskCustomizeStrings(); }
5909
+ else if (action < 1000) { showDeskTypeEx(serverinfo.preConfiguredRemoteInput[action].value); } // Type server pre-configured input string
5910
+ else { showDeskTypeEx(deskKeyboardStrings[action - 1000].v); } // Type user pre-configured input string
5911
}
5912
5913
function p13deletefileCm(b, file) {
@@ -8697,6 +8713,75 @@
8713
if ((k > 0) && (deskKeyboardShortcuts.indexOf(k) == -1)) { deskKeyboardShortcuts.push(k); deskUpdateShortcutList(); }
8714
}
8715
8716
+ // Customize keyboard strings
8717
+ function deskCustomizeStrings() {
8718
+ if (xxdialogMode) return;
8719
+ var x = '<div id=d2strings style="width:100%;height:180px;padding:4px;overflow-y:auto;border:1px solid gray"></div><div style=width:100%;padding:5px>';
8720
+ x += addHtmlValue("Name", '<input type=text id=d2shortcutname style=width:230px maxlength=32 autocomplete=off onkeyup=deskCustomizeStringsUpdate(event) />');
8721
+ x += addHtmlValue("Value", '<input type=text id=d2shortcutvalue style=width:230px maxlength=256 autocomplete=off onkeyup=deskCustomizeStringsUpdate(event) />');
8722
+ x += addHtmlValue('', '<input id=d2addbutton type=button value=' + "Add" + ' onclick=addDeskCustomizeString() style=float:right />');
8723
+ x + '</div>';
8724
+ setDialogMode(2, "Keyboard Strings Customization", 1, deskCustomizeStringsEx, x);
8725
+ deskUpdateStringsList();
8726
+ deskCustomizeStringsUpdate();
8727
+ }
8728
+
8729
+ function deskCustomizeStringsUpdate() {
8730
+ QE('d2addbutton', ((Q('d2shortcutname').value != '') && (Q('d2shortcutvalue').value != '')));
8731
+ }
8732
+
8733
+ function deskCustomizeStringsEx() {
8734
+ putstore('deskStrings', JSON.stringify(deskKeyboardStrings));
8735
+ updateDesktopStrings();
8736
+ }
8737
+
8738
+ function deskUpdateStringsList() {
8739
+ var x = '';
8740
+ for (var i in deskKeyboardStrings) {
8741
+ var orderButtons = '';
8742
+ if (i != (deskKeyboardStrings.length - 1)) { orderButtons += '<img width=8 height=8 style=float:right;cursor:pointer;padding:3px src="images/c2.png" onclick=deskCustomizeStringDown(' + i + ')>'; }
8743
+ if (i != 0) { orderButtons += '<img width=8 height=8 style=float:right;cursor:pointer;padding:3px src="images/c3.png" onclick=deskCustomizeStringUp(' + i + ')>'; }
8744
+ x += '<div style="width:100%;background-color:#AAA;border-radius:4px;margin-bottom:4px;padding:4px;text-align:left;box-sizing:border-box" value=' + (i + 1000) + '><div><b>' + EscapeHtml(deskKeyboardStrings[i].n) + '</b><img width=10 height=10 style=float:right;cursor:pointer;padding:2px;margin-left:8px src="images/trash.png" onclick=removeDeskCustomizeString(' + i + ')>' + orderButtons + '</div>';
8745
+ x += '<div stlye=font-size:x-small>' + EscapeHtml(deskKeyboardStrings[i].v) + '</div>';
8746
+ x += '</div>';
8747
+ }
8748
+ if (x == '') { x = '<i>' + "No keyboard strings defined" + '</i>'; }
8749
+ QH('d2strings', x);
8750
+ }
8751
+
8752
+ function deskCustomizeStringDown(i) {
8753
+ var x = deskKeyboardStrings[i + 1];
8754
+ deskKeyboardStrings[i + 1] = deskKeyboardStrings[i];
8755
+ deskKeyboardStrings[i] = x;
8756
+ deskUpdateStringsList();
8757
+ }
8758
+
8759
+ function deskCustomizeStringUp(i) {
8760
+ var x = deskKeyboardStrings[i];
8761
+ deskKeyboardStrings[i] = deskKeyboardStrings[i - 1];
8762
+ deskKeyboardStrings[i - 1] = x;
8763
+ deskUpdateStringsList();
8764
+ }
8765
+
8766
+ function removeDeskCustomizeString(i) {
8767
+ deskKeyboardStrings.splice(i, 1);
8768
+ deskUpdateStringsList();
8769
+ }
8770
+
8771
+ function addDeskCustomizeString() {
8772
+ if (!Array.isArray(deskKeyboardStrings)) { deskKeyboardStrings = [];}
8773
+ var name = Q('d2shortcutname').value;
8774
+ var value = Q('d2shortcutvalue').value;
8775
+ if ((name != '') && (value != '')) { deskKeyboardStrings.push({ n: name, v: value }); deskUpdateStringsList(); }
8776
+ }
8777
+
8778
+ function updateDesktopStrings() {
8779
+ var x = '';
8780
+ for (var i in deskKeyboardStrings) { var j = (parseInt(i) + 1000); x += '<div class="cmtext" onclick="cmdeskpreconfigtypeaction(' + j + ',event)">' + EscapeHtml(deskKeyboardStrings[i].n) + '</div>'; }
8781
+ if (x != '') { x += '<hr />' };
8782
+ QH('deskPreConfigShortcutContextMenu2', x);
8783
+ }
8784
+
8785
// Remote desktop special key combos for Windows
8786
function deskSendKeys() {
8787
Q('DeskWD').blur();
@@ -16688,7 +16773,7 @@
16773
var k = localStorage.key(i);
16774
if (k[0] != '_') {
16775
s[k] = localStorage.getItem(k);
16691
- if ((k != 'desktopsettings') && (k != 'stars') && (k != 'deskKeyShortcuts') && (typeof s[k] == 'string') && (s[k].length > 64)) { delete s[k]; }
16776
+ if ((k != 'desktopsettings') && (k != 'stars') && (k != 'deskKeyShortcuts') && (k != 'deskStrings') && (typeof s[k] == 'string') && (s[k].length > 64)) { delete s[k]; }
16777
}
16778
}
16779
} catch (ex) {}
webserver.js
+1
@@ -7296,6 +7296,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
7296
out.desktopsettings = JSON.stringify(out.desktopsettings);
7297
}
7298
if ((typeof state.deskKeyShortcuts == 'string') && (state.deskKeyShortcuts.length < 2048)) { out.deskKeyShortcuts = state.deskKeyShortcuts; }
7299
+ if ((typeof state.deskStrings == 'string') && (state.deskStrings.length < 10000)) { out.deskStrings = state.deskStrings; }
7300
return JSON.stringify(out);
7301
}
7302