Desktop sharing max time can now be adjusted.
Ylian Saint-Hilaire committed
Sep 11, 2020 at 16:35 UTC
937925af614a1bf89d620b070ae9b4b3dac22dda
5 files changed
+1426
-1371
meshcentral-config-schema.json
+1
@@ -198,6 +198,7 @@
198
"geoLocation": { "type": "boolean", "default": false, "description": "Enables the geo-location feature and device location map in the user interface, this feature is not being worked on." },
199
"novnc": { "type": "boolean", "default": true, "description": "When enabled, activates the built-in web-based noVNC client." },
200
"mstsc": { "type": "boolean", "default": false, "description": "When enabled, activates the built-in web-based RDP client." },
201
+ "maxGuestSessionSharingTime": { "type": "integer", "default": 60, "minimum": 1, "maximum": 5760, "description": "Maximum amount of time in minutes that a remote desktop session can be shared with a guest." },
202
"webEmailsPath": { "type": "string", "description": "Path where to find custom email templates for this domain." },
203
"customUI": { "type": "object" },
204
"consentMessages": {
meshuser.js
+4
-1
@@ -418,6 +418,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
418
419
// Build server information object
420
var serverinfo = { domain: domain.id, name: domain.dns ? domain.dns : parent.certificates.CommonName, mpsname: parent.certificates.AmtMpsName, mpsport: mpsport, mpspass: args.mpspass, port: httpport, emailcheck: ((parent.parent.mailserver != null) && (domain.auth != 'sspi') && (domain.auth != 'ldap') && (args.lanonly != true) && (parent.certificates.CommonName != null) && (parent.certificates.CommonName.indexOf('.') != -1) && (user._id.split('/')[2].startsWith('~') == false)), domainauth: (domain.auth == 'sspi'), serverTime: Date.now() };
421
+ serverinfo.maxGuestSessionSharingTime = (typeof domain.maxguestsessionsharingtime == 'number') ? domain.maxguestsessionsharingtime : 60;
422
serverinfo.languages = parent.renderLanguages;
423
serverinfo.tlshash = Buffer.from(parent.webCertificateHashs[domain.id], 'binary').toString('hex').toUpperCase(); // SHA384 of server HTTPS certificate
424
if ((parent.parent.config.domains[domain.id].amtacmactivation != null) && (parent.parent.config.domains[domain.id].amtacmactivation.acmmatch != null)) {
@@ -4467,10 +4468,12 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4468
break;
4469
}
4470
case 'createDeviceShareLink': {
4471
+ var maxExpireMinutes = (typeof domain.maxguestsessionsharingtime == 'number') ? domain.maxguestsessionsharingtime : 60;
4472
+ console.log(maxExpireMinutes);
4473
var err = null;
4474
if (common.validateString(command.nodeid, 8, 128) == false) { err = 'Invalid node id'; } // Check the meshid
4475
else if (common.validateString(command.guestname, 1, 128) == false) { err = 'Invalid guest name'; } // Check the guest name
4473
- else if (common.validateInt(command.expire, 1, 60) == false) { err = 'Invalid expire time'; } // Check the expire time in hours
4476
+ else if (common.validateInt(command.expire, 1, maxExpireMinutes) == false) { err = 'Invalid expire time'; } // Check the expire time in hours
4477
else if (common.validateInt(command.consent, 0, 256) == false) { err = 'Invalid flags'; } // Check the flags
4478
else {
4479
if (command.nodeid.split('/').length == 1) { command.nodeid = 'node/' + domain.id + '/' + command.nodeid; }
sample-config-advanced.json
+1
@@ -158,6 +158,7 @@
158
"_geoLocation": true,
159
"_novnc": false,
160
"_mstsc": true,
161
+ "_maxGuestSessionSharingTime": 5760,
162
"_WebEmailsPath": "/myserver/email-templates",
163
"_consentMessages": {
164
"title": "MeshCentral",
translate/translate.json
+1416
-1368
@@ -17,8 +17,8 @@
17
"zh-chs": " + CIRA",
18
"zh-cht": " + CIRA",
19
"xloc": [
20
- "default.handlebars->27->1326",
21
- "default.handlebars->27->1328"
20
+ "default.handlebars->27->1334",
21
+ "default.handlebars->27->1336"
22
]
23
},
24
{
@@ -204,7 +204,7 @@
204
"zh-chs": " 可以使用密码提示,但不建议使用。",
205
"zh-cht": " 可以使用密碼提示,但不建議使用。",
206
"xloc": [
207
- "default.handlebars->27->1240"
207
+ "default.handlebars->27->1248"
208
]
209
},
210
{
@@ -224,8 +224,8 @@
224
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226
"xloc": [
227
- "default.handlebars->27->1401",
228
- "default.handlebars->27->1843"
227
+ "default.handlebars->27->1409",
228
+ "default.handlebars->27->1851"
229
]
230
},
231
{
@@ -458,7 +458,7 @@
458
"zh-chs": "*保留空白可为每个设备分配一个随机密码。",
459
"zh-cht": "*保留空白可為每個裝置分配一個隨機密碼。",
460
"xloc": [
461
- "default.handlebars->27->1373"
461
+ "default.handlebars->27->1381"
462
]
463
},
464
{
@@ -496,7 +496,7 @@
496
"zh-cht": ",",
497
"xloc": [
498
"default-mobile.handlebars->9->449",
499
- "default.handlebars->27->1468"
499
+ "default.handlebars->27->1476"
500
]
501
},
502
{
@@ -537,7 +537,7 @@
537
"zh-chs": ",MQTT在线",
538
"zh-cht": ",MQTT在線",
539
"xloc": [
540
- "default.handlebars->27->982"
540
+ "default.handlebars->27->990"
541
]
542
},
543
{
@@ -557,7 +557,7 @@
557
"zh-chs": ",软体KVM",
558
"zh-cht": ",軟體KVM",
559
"xloc": [
560
- "default.handlebars->27->808",
560
+ "default.handlebars->27->816",
561
"desktop.handlebars->3->13"
562
]
563
},
@@ -580,9 +580,9 @@
580
"xloc": [
581
"default-mobile.handlebars->9->284",
582
"default-mobile.handlebars->9->293",
583
- "default.handlebars->27->815",
584
- "default.handlebars->27->848",
585
- "default.handlebars->27->860",
583
+ "default.handlebars->27->823",
584
+ "default.handlebars->27->856",
585
+ "default.handlebars->27->868",
586
"desktop.handlebars->3->20",
587
"xterm.handlebars->9->6"
588
]
@@ -703,7 +703,7 @@
703
"zh-chs": ",{0}观看",
704
"zh-cht": ",{0}觀看",
705
"xloc": [
706
- "default.handlebars->27->809",
706
+ "default.handlebars->27->817",
707
"desktop.handlebars->3->14"
708
]
709
},
@@ -768,9 +768,9 @@
768
"xloc": [
769
"default-mobile.handlebars->9->108",
770
"default-mobile.handlebars->9->295",
771
- "default.handlebars->27->1509",
772
- "default.handlebars->27->1998",
773
- "default.handlebars->27->865"
771
+ "default.handlebars->27->1517",
772
+ "default.handlebars->27->2006",
773
+ "default.handlebars->27->873"
774
]
775
},
776
{
@@ -826,7 +826,7 @@
826
"zh-chs": "1个活跃时段",
827
"zh-cht": "1個活躍時段",
828
"xloc": [
829
- "default.handlebars->27->1912"
829
+ "default.handlebars->27->1920"
830
]
831
},
832
{
@@ -848,7 +848,7 @@
848
"xloc": [
849
"default-mobile.handlebars->9->118",
850
"default-mobile.handlebars->9->453",
851
- "default.handlebars->27->1533",
851
+ "default.handlebars->27->1541",
852
"download.handlebars->3->1",
853
"download2.handlebars->5->1"
854
]
@@ -870,7 +870,7 @@
870
"zh-chs": "1条连接",
871
"zh-cht": "1位聯絡文",
872
"xloc": [
873
- "default.handlebars->27->811",
873
+ "default.handlebars->27->819",
874
"desktop.handlebars->3->16"
875
]
876
},
@@ -913,7 +913,7 @@
913
"zh-chs": "1组",
914
"zh-cht": "1群",
915
"xloc": [
916
- "default.handlebars->27->1877"
916
+ "default.handlebars->27->1885"
917
]
918
},
919
{
@@ -935,8 +935,7 @@
935
"xloc": [
936
"default.handlebars->27->176",
937
"default.handlebars->27->343",
938
- "default.handlebars->27->357",
939
- "default.handlebars->27->720"
938
+ "default.handlebars->27->357"
939
]
940
},
941
{
@@ -956,7 +955,7 @@
955
"zh-chs": "1分钟",
956
"zh-cht": "1分鐘",
957
"xloc": [
959
- "default.handlebars->27->714"
958
+ "default.handlebars->27->713"
959
]
960
},
961
{
@@ -1018,7 +1017,7 @@
1017
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1018
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1019
"xloc": [
1021
- "default.handlebars->27->1679"
1020
+ "default.handlebars->27->1687"
1021
]
1022
},
1023
{
@@ -1084,7 +1083,7 @@
1083
"default-mobile.handlebars->9->168",
1084
"default-mobile.handlebars->9->171",
1085
"default-mobile.handlebars->9->174",
1087
- "default.handlebars->27->1683",
1086
+ "default.handlebars->27->1691",
1087
"default.handlebars->27->243",
1088
"default.handlebars->27->246",
1089
"default.handlebars->27->249",
@@ -1216,7 +1215,7 @@
1215
"zh-chs": "10分钟",
1216
"zh-cht": "10分鐘",
1217
"xloc": [
1219
- "default.handlebars->27->716"
1218
+ "default.handlebars->27->715"
1219
]
1220
},
1221
{
@@ -1281,6 +1280,12 @@
1280
"player.handlebars->p11->deskarea0->deskarea4->3->PlaySpeed->11"
1281
]
1282
},
1283
+ {
1284
+ "en": "12 hours",
1285
+ "xloc": [
1286
+ "default.handlebars->27->723"
1287
+ ]
1288
+ },
1289
{
1290
"cs": "12,5%",
1291
"de": "12.5%",
@@ -1320,7 +1325,25 @@
1325
"zh-chs": "15分钟",
1326
"zh-cht": "15分鐘",
1327
"xloc": [
1323
- "default.handlebars->27->717"
1328
+ "default.handlebars->27->716"
1329
+ ]
1330
+ },
1331
+ {
1332
+ "en": "16 hours",
1333
+ "xloc": [
1334
+ "default.handlebars->27->724"
1335
+ ]
1336
+ },
1337
+ {
1338
+ "en": "2 days",
1339
+ "xloc": [
1340
+ "default.handlebars->27->726"
1341
+ ]
1342
+ },
1343
+ {
1344
+ "en": "2 hours",
1345
+ "xloc": [
1346
+ "default.handlebars->27->720"
1347
]
1348
},
1349
{
@@ -1407,6 +1430,12 @@
1430
"terms.handlebars->container->column_l->33->1"
1431
]
1432
},
1433
+ {
1434
+ "en": "24 hours",
1435
+ "xloc": [
1436
+ "default.handlebars->27->725"
1437
+ ]
1438
+ },
1439
{
1440
"cs": "25%",
1441
"de": "25%",
@@ -1466,7 +1495,7 @@
1495
"zh-chs": "2FA备份代码已清除",
1496
"zh-cht": "2FA備份代碼已清除",
1497
"xloc": [
1469
- "default.handlebars->27->1644"
1498
+ "default.handlebars->27->1652"
1499
]
1500
},
1501
{
@@ -1486,8 +1515,8 @@
1515
"zh-chs": "启用第二因素身份验证",
1516
"zh-cht": "啟用第二因素身份驗證",
1517
"xloc": [
1489
- "default.handlebars->27->1696",
1490
- "default.handlebars->27->1899"
1518
+ "default.handlebars->27->1704",
1519
+ "default.handlebars->27->1907"
1520
]
1521
},
1522
{
@@ -1606,7 +1635,7 @@
1635
"zh-chs": "30分钟",
1636
"zh-cht": "30分鐘",
1637
"xloc": [
1609
- "default.handlebars->27->718"
1638
+ "default.handlebars->27->717"
1639
]
1640
},
1641
{
@@ -1652,6 +1681,18 @@
1681
"desktop.handlebars->p11->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->11"
1682
]
1683
},
1684
+ {
1685
+ "en": "4 days",
1686
+ "xloc": [
1687
+ "default.handlebars->27->727"
1688
+ ]
1689
+ },
1690
+ {
1691
+ "en": "4 hours",
1692
+ "xloc": [
1693
+ "default.handlebars->27->721"
1694
+ ]
1695
+ },
1696
{
1697
"cs": "4. Názvy „OpenSSL Toolkit“ a „OpenSSL Project“ nesmí být bez předchozího písemného souhlasu použity k doporučování nebo propagaci produktů odvozených z tohoto softwaru. Pro písemné povolení kontaktujte na openssl-core@openssl.org.",
1698
"de": "4. Die Namen \"OpenSSL Toolkit\" und \"OpenSSL Project\" dürfen ohne vorherige schriftliche Genehmigung nicht verwendet werden, um von dieser Software abgeleitete Produkte zu unterstützen oder zu bewerben. Für eine schriftliche Genehmigung wenden Sie sich bitte an openssl-core@openssl.org.",
@@ -1732,7 +1773,7 @@
1773
"zh-chs": "45分钟",
1774
"zh-cht": "45分鐘",
1775
"xloc": [
1735
- "default.handlebars->27->719"
1776
+ "default.handlebars->27->718"
1777
]
1778
},
1779
{
@@ -1772,7 +1813,7 @@
1813
"zh-chs": "5分钟",
1814
"zh-cht": "5分鐘",
1815
"xloc": [
1775
- "default.handlebars->27->715"
1816
+ "default.handlebars->27->714"
1817
]
1818
},
1819
{
@@ -1881,6 +1922,12 @@
1922
"terms.handlebars->container->column_l->41->1"
1923
]
1924
},
1925
+ {
1926
+ "en": "60 minutes",
1927
+ "xloc": [
1928
+ "default.handlebars->27->719"
1929
+ ]
1930
+ },
1931
{
1932
"cs": "62,5%",
1933
"de": "62.5%",
@@ -1998,7 +2045,7 @@
2045
"zh-chs": "7天电源状态",
2046
"zh-cht": "7天電源狀態",
2047
"xloc": [
2001
- "default.handlebars->27->741"
2048
+ "default.handlebars->27->749"
2049
]
2050
},
2051
{
@@ -2062,7 +2109,8 @@
2109
"zh-cht": "8小時",
2110
"xloc": [
2111
"default.handlebars->27->344",
2065
- "default.handlebars->27->358"
2112
+ "default.handlebars->27->358",
2113
+ "default.handlebars->27->722"
2114
]
2115
},
2116
{
@@ -2405,7 +2453,7 @@
2453
"zh-chs": "拒绝访问",
2454
"zh-cht": "拒絕存取",
2455
"xloc": [
2408
- "default.handlebars->27->983"
2456
+ "default.handlebars->27->991"
2457
]
2458
},
2459
{
@@ -2447,7 +2495,7 @@
2495
"zh-chs": "访问服务器档案",
2496
"zh-cht": "存取伺服器檔案",
2497
"xloc": [
2450
- "default.handlebars->27->1849"
2498
+ "default.handlebars->27->1857"
2499
]
2500
},
2501
{
@@ -2536,8 +2584,8 @@
2584
"default-mobile.handlebars->9->93",
2585
"default-mobile.handlebars->9->95",
2586
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2539
- "default.handlebars->27->1249",
2540
- "default.handlebars->27->1251",
2587
+ "default.handlebars->27->1257",
2588
+ "default.handlebars->27->1259",
2589
"default.handlebars->27->541",
2590
"default.handlebars->27->543"
2591
]
@@ -2599,7 +2647,7 @@
2647
"zh-chs": "帐户已更改:{0}",
2648
"zh-cht": "帳戶已更改:{0}",
2649
"xloc": [
2602
- "default.handlebars->27->1617"
2650
+ "default.handlebars->27->1625"
2651
]
2652
},
2653
{
@@ -2619,7 +2667,7 @@
2667
"zh-chs": "创建帐户,电子邮件为{0}",
2668
"zh-cht": "創建帳戶,電子郵件為{0}",
2669
"xloc": [
2622
- "default.handlebars->27->1616"
2670
+ "default.handlebars->27->1624"
2671
]
2672
},
2673
{
@@ -2639,7 +2687,7 @@
2687
"zh-chs": "创建帐户,用户名是{0}",
2688
"zh-cht": "帳戶已創建,用戶名是{0}",
2689
"xloc": [
2642
- "default.handlebars->27->1615"
2690
+ "default.handlebars->27->1623"
2691
]
2692
},
2693
{
@@ -2659,8 +2707,8 @@
2707
"zh-chs": "帐户已被锁定",
2708
"zh-cht": "帳戶已被鎖定",
2709
"xloc": [
2662
- "default.handlebars->27->1698",
2663
- "default.handlebars->27->1846"
2710
+ "default.handlebars->27->1706",
2711
+ "default.handlebars->27->1854"
2712
]
2713
},
2714
{
@@ -2724,7 +2772,7 @@
2772
"zh-chs": "帐号登录",
2773
"zh-cht": "帳號登錄",
2774
"xloc": [
2727
- "default.handlebars->27->1552"
2775
+ "default.handlebars->27->1560"
2776
]
2777
},
2778
{
@@ -2744,7 +2792,7 @@
2792
"zh-chs": "帐户登出",
2793
"zh-cht": "帳戶登出",
2794
"xloc": [
2747
- "default.handlebars->27->1553"
2795
+ "default.handlebars->27->1561"
2796
]
2797
},
2798
{
@@ -2786,7 +2834,7 @@
2834
"zh-chs": "帐户密码已更改:{0}",
2835
"zh-cht": "帳戶密碼已更改:{0}",
2836
"xloc": [
2789
- "default.handlebars->27->1625"
2837
+ "default.handlebars->27->1633"
2838
]
2839
},
2840
{
@@ -2806,7 +2854,7 @@
2854
"zh-chs": "帐户已删除",
2855
"zh-cht": "帳戶已刪除",
2856
"xloc": [
2809
- "default.handlebars->27->1614"
2857
+ "default.handlebars->27->1622"
2858
]
2859
},
2860
{
@@ -2846,7 +2894,7 @@
2894
"zh-chs": "指令",
2895
"zh-cht": "指令",
2896
"xloc": [
2849
- "default.handlebars->27->988",
2897
+ "default.handlebars->27->996",
2898
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2899
]
2900
},
@@ -2867,8 +2915,8 @@
2915
"zh-chs": "动作档案",
2916
"zh-cht": "動作檔案",
2917
"xloc": [
2870
- "default.handlebars->27->784",
2871
- "default.handlebars->27->786"
2918
+ "default.handlebars->27->792",
2919
+ "default.handlebars->27->794"
2920
]
2921
},
2922
{
@@ -2959,7 +3007,7 @@
3007
"default-mobile.handlebars->9->358",
3008
"default.handlebars->27->565",
3009
"default.handlebars->27->567",
2962
- "default.handlebars->27->946"
3010
+ "default.handlebars->27->954"
3011
]
3012
},
3013
{
@@ -2979,8 +3027,8 @@
3027
"zh-chs": "激活",
3028
"zh-cht": "啟動",
3029
"xloc": [
2982
- "default.handlebars->27->1339",
2983
- "default.handlebars->27->1341",
3030
+ "default.handlebars->27->1347",
3031
+ "default.handlebars->27->1349",
3032
"default.handlebars->27->199",
3033
"default.handlebars->27->276",
3034
"default.handlebars->27->278"
@@ -3023,7 +3071,7 @@
3071
"zh-chs": "添加代理",
3072
"zh-cht": "新增代理",
3073
"xloc": [
3026
- "default.handlebars->27->1343",
3074
+ "default.handlebars->27->1351",
3075
"default.handlebars->27->280"
3076
]
3077
},
@@ -3064,8 +3112,8 @@
3112
"zh-chs": "添加设备",
3113
"zh-cht": "新增裝置",
3114
"xloc": [
3067
- "default.handlebars->27->1823",
3068
- "default.handlebars->27->1947"
3115
+ "default.handlebars->27->1831",
3116
+ "default.handlebars->27->1955"
3117
]
3118
},
3119
{
@@ -3105,9 +3153,9 @@
3153
"zh-chs": "添加设备组",
3154
"zh-cht": "新增裝置群",
3155
"xloc": [
3108
- "default.handlebars->27->1434",
3109
- "default.handlebars->27->1817",
3110
- "default.handlebars->27->1935",
3156
+ "default.handlebars->27->1442",
3157
+ "default.handlebars->27->1825",
3158
+ "default.handlebars->27->1943",
3159
"default.handlebars->27->231"
3160
]
3161
},
@@ -3128,7 +3176,7 @@
3176
"zh-chs": "添加设备组权限",
3177
"zh-cht": "新增裝置群權限",
3178
"xloc": [
3131
- "default.handlebars->27->1431"
3179
+ "default.handlebars->27->1439"
3180
]
3181
},
3182
{
@@ -3148,8 +3196,8 @@
3196
"zh-chs": "添加设备权限",
3197
"zh-cht": "新增裝置權限",
3198
"xloc": [
3151
- "default.handlebars->27->1436",
3152
- "default.handlebars->27->1438"
3199
+ "default.handlebars->27->1444",
3200
+ "default.handlebars->27->1446"
3201
]
3202
},
3203
{
@@ -3249,7 +3297,7 @@
3297
"zh-chs": "添加成员身份",
3298
"zh-cht": "新增成員身份",
3299
"xloc": [
3252
- "default.handlebars->27->1965"
3300
+ "default.handlebars->27->1973"
3301
]
3302
},
3303
{
@@ -3289,8 +3337,8 @@
3337
"zh-chs": "添加安全密钥",
3338
"zh-cht": "新增安全密鑰",
3339
"xloc": [
3292
- "default.handlebars->27->1016",
3293
- "default.handlebars->27->1017",
3340
+ "default.handlebars->27->1024",
3341
+ "default.handlebars->27->1025",
3342
"default.handlebars->27->149",
3343
"default.handlebars->27->151",
3344
"default.handlebars->27->154",
@@ -3335,7 +3383,7 @@
3383
"zh-chs": "添加用户设备权限",
3384
"zh-cht": "新增用戶裝置權限",
3385
"xloc": [
3338
- "default.handlebars->27->1441"
3386
+ "default.handlebars->27->1449"
3387
]
3388
},
3389
{
@@ -3355,9 +3403,9 @@
3403
"zh-chs": "添加用户组",
3404
"zh-cht": "新增用戶群",
3405
"xloc": [
3358
- "default.handlebars->27->1333",
3359
- "default.handlebars->27->1433",
3360
- "default.handlebars->27->1941",
3406
+ "default.handlebars->27->1341",
3407
+ "default.handlebars->27->1441",
3408
+ "default.handlebars->27->1949",
3409
"default.handlebars->27->661"
3410
]
3411
},
@@ -3378,7 +3426,7 @@
3426
"zh-chs": "添加用户组设备权限",
3427
"zh-cht": "新增用戶群裝置權限",
3428
"xloc": [
3381
- "default.handlebars->27->1443"
3429
+ "default.handlebars->27->1451"
3430
]
3431
},
3432
{
@@ -3435,8 +3483,8 @@
3483
"zh-chs": "添加用户",
3484
"zh-cht": "新增用戶",
3485
"xloc": [
3438
- "default.handlebars->27->1332",
3439
- "default.handlebars->27->1812"
3486
+ "default.handlebars->27->1340",
3487
+ "default.handlebars->27->1820"
3488
]
3489
},
3490
{
@@ -3456,7 +3504,7 @@
3504
"zh-chs": "将用户添加到设备组",
3505
"zh-cht": "將用戶新增到裝置群",
3506
"xloc": [
3459
- "default.handlebars->27->1430"
3507
+ "default.handlebars->27->1438"
3508
]
3509
},
3510
{
@@ -3476,7 +3524,7 @@
3524
"zh-chs": "将用户添加到用户组",
3525
"zh-cht": "將用戶新增到用戶群",
3526
"xloc": [
3479
- "default.handlebars->27->1845"
3527
+ "default.handlebars->27->1853"
3528
]
3529
},
3530
{
@@ -3536,7 +3584,7 @@
3584
"zh-chs": "添加位于互联网上的新英特尔®AMT计算机。",
3585
"zh-cht": "新增位於互聯網上的新Intel® AMT電腦。",
3586
"xloc": [
3539
- "default.handlebars->27->1334",
3587
+ "default.handlebars->27->1342",
3588
"default.handlebars->27->269"
3589
]
3590
},
@@ -3557,7 +3605,7 @@
3605
"zh-chs": "添加位于本地网络上的新英特尔®AMT计算机。",
3606
"zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。",
3607
"xloc": [
3560
- "default.handlebars->27->1336",
3608
+ "default.handlebars->27->1344",
3609
"default.handlebars->27->271"
3610
]
3611
},
@@ -3598,7 +3646,7 @@
3646
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3647
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3648
"xloc": [
3601
- "default.handlebars->27->1342",
3649
+ "default.handlebars->27->1350",
3650
"default.handlebars->27->279"
3651
]
3652
},
@@ -3639,7 +3687,7 @@
3687
"zh-chs": "添加了身份验证应用程序",
3688
"zh-cht": "添加了身份驗證應用程序",
3689
"xloc": [
3642
- "default.handlebars->27->1641"
3690
+ "default.handlebars->27->1649"
3691
]
3692
},
3693
{
@@ -3659,8 +3707,8 @@
3707
"zh-chs": "已将设备{0}添加到设备组{1}",
3708
"zh-cht": "已將設備{0}添加到設備組{1}",
3709
"xloc": [
3662
- "default.handlebars->27->1608",
3663
- "default.handlebars->27->1635"
3710
+ "default.handlebars->27->1616",
3711
+ "default.handlebars->27->1643"
3712
]
3713
},
3714
{
@@ -3680,7 +3728,7 @@
3728
"zh-chs": "添加了安全密钥",
3729
"zh-cht": "添加了安全密鑰",
3730
"xloc": [
3683
- "default.handlebars->27->1646"
3731
+ "default.handlebars->27->1654"
3732
]
3733
},
3734
{
@@ -3700,7 +3748,7 @@
3748
"zh-chs": "已将用户组{0}添加到设备组{1}",
3749
"zh-cht": "已將用戶組{0}添加到設備組{1}",
3750
"xloc": [
3703
- "default.handlebars->27->1619"
3751
+ "default.handlebars->27->1627"
3752
]
3753
},
3754
{
@@ -3720,8 +3768,8 @@
3768
"zh-chs": "已将用户{0}添加到用户组{1}",
3769
"zh-cht": "已將用戶{0}添加到用戶組{1}",
3770
"xloc": [
3723
- "default.handlebars->27->1622",
3724
- "default.handlebars->27->1631"
3771
+ "default.handlebars->27->1630",
3772
+ "default.handlebars->27->1639"
3773
]
3774
},
3775
{
@@ -3782,7 +3830,7 @@
3830
"zh-cht": "管理員控制模式(ACM)",
3831
"xloc": [
3832
"default-mobile.handlebars->9->360",
3785
- "default.handlebars->27->948"
3833
+ "default.handlebars->27->956"
3834
]
3835
},
3836
{
@@ -3803,7 +3851,7 @@
3851
"zh-cht": "管理員憑證",
3852
"xloc": [
3853
"default-mobile.handlebars->9->366",
3806
- "default.handlebars->27->954"
3854
+ "default.handlebars->27->962"
3855
]
3856
},
3857
{
@@ -3844,7 +3892,7 @@
3892
"zh-chs": "管理领域",
3893
"zh-cht": "管理領域",
3894
"xloc": [
3847
- "default.handlebars->27->1881"
3895
+ "default.handlebars->27->1889"
3896
]
3897
},
3898
{
@@ -3885,7 +3933,7 @@
3933
"zh-chs": "管理领域",
3934
"zh-cht": "管理領域",
3935
"xloc": [
3888
- "default.handlebars->27->1761"
3936
+ "default.handlebars->27->1769"
3937
]
3938
},
3939
{
@@ -3905,7 +3953,7 @@
3953
"zh-chs": "管理员",
3954
"zh-cht": "管理員",
3955
"xloc": [
3908
- "default.handlebars->27->1690"
3956
+ "default.handlebars->27->1698"
3957
]
3958
},
3959
{
@@ -3925,7 +3973,7 @@
3973
"zh-chs": "南非文",
3974
"zh-cht": "南非文",
3975
"xloc": [
3928
- "default.handlebars->27->1019"
3976
+ "default.handlebars->27->1027"
3977
]
3978
},
3979
{
@@ -3948,8 +3996,8 @@
3996
"default-mobile.handlebars->9->199",
3997
"default-mobile.handlebars->9->223",
3998
"default-mobile.handlebars->9->239",
3951
- "default.handlebars->27->1495",
3999
"default.handlebars->27->1503",
4000
+ "default.handlebars->27->1511",
4001
"default.handlebars->27->210",
4002
"default.handlebars->27->437",
4003
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -3972,8 +4020,8 @@
4020
"zh-chs": "代理+英特尔AMT",
4021
"zh-cht": "代理+Intel® AMT",
4022
"xloc": [
3975
- "default.handlebars->27->1497",
3976
- "default.handlebars->27->1505"
4023
+ "default.handlebars->27->1505",
4024
+ "default.handlebars->27->1513"
4025
]
4026
},
4027
{
@@ -4014,7 +4062,7 @@
4062
"zh-cht": "代理控制台",
4063
"xloc": [
4064
"default-mobile.handlebars->9->433",
4017
- "default.handlebars->27->1451"
4065
+ "default.handlebars->27->1459"
4066
]
4067
},
4068
{
@@ -4034,7 +4082,7 @@
4082
"zh-chs": "代理错误计数器",
4083
"zh-cht": "代理錯誤計數器",
4084
"xloc": [
4037
- "default.handlebars->27->2008"
4085
+ "default.handlebars->27->2016"
4086
]
4087
},
4088
{
@@ -4137,7 +4185,7 @@
4185
"zh-chs": "代理时段",
4186
"zh-cht": "代理時段",
4187
"xloc": [
4140
- "default.handlebars->27->2024"
4188
+ "default.handlebars->27->2032"
4189
]
4190
},
4191
{
@@ -4178,7 +4226,7 @@
4226
"zh-chs": "代理类型",
4227
"zh-cht": "代理類型",
4228
"xloc": [
4181
- "default.handlebars->27->1501",
4229
+ "default.handlebars->27->1509",
4230
"default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
4231
]
4232
},
@@ -4199,7 +4247,7 @@
4247
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4248
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4249
"xloc": [
4202
- "default.handlebars->27->1605"
4250
+ "default.handlebars->27->1613"
4251
]
4252
},
4253
{
@@ -4261,7 +4309,7 @@
4309
"zh-chs": "代理离线",
4310
"zh-cht": "代理離線",
4311
"xloc": [
4264
- "default.handlebars->27->981"
4312
+ "default.handlebars->27->989"
4313
]
4314
},
4315
{
@@ -4281,7 +4329,7 @@
4329
"zh-chs": "代理在线",
4330
"zh-cht": "代理在線",
4331
"xloc": [
4284
- "default.handlebars->27->980"
4332
+ "default.handlebars->27->988"
4333
]
4334
},
4335
{
@@ -4301,7 +4349,7 @@
4349
"zh-chs": "代理",
4350
"zh-cht": "代理",
4351
"xloc": [
4304
- "default.handlebars->27->2040"
4352
+ "default.handlebars->27->2048"
4353
]
4354
},
4355
{
@@ -4321,7 +4369,7 @@
4369
"zh-chs": "阿尔巴尼亚文",
4370
"zh-cht": "阿爾巴尼亞文",
4371
"xloc": [
4324
- "default.handlebars->27->1020"
4372
+ "default.handlebars->27->1028"
4373
]
4374
},
4375
{
@@ -4363,7 +4411,7 @@
4411
"zh-chs": "全部可用",
4412
"zh-cht": "全部可用",
4413
"xloc": [
4366
- "default.handlebars->27->1653"
4414
+ "default.handlebars->27->1661"
4415
]
4416
},
4417
{
@@ -4400,7 +4448,7 @@
4448
"zh-chs": "所有事件",
4449
"zh-cht": "所有事件",
4450
"xloc": [
4403
- "default.handlebars->27->1651"
4451
+ "default.handlebars->27->1659"
4452
]
4453
},
4454
{
@@ -4420,9 +4468,9 @@
4468
"zh-chs": "全部聚焦",
4469
"zh-cht": "全部聚焦",
4470
"xloc": [
4423
- "default.handlebars->27->816",
4424
- "default.handlebars->27->818",
4425
- "default.handlebars->27->819"
4471
+ "default.handlebars->27->824",
4472
+ "default.handlebars->27->826",
4473
+ "default.handlebars->27->827"
4474
]
4475
},
4476
{
@@ -4442,8 +4490,8 @@
4490
"zh-chs": "允许用户管理此设备组和该组中的设备。",
4491
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4492
"xloc": [
4445
- "default.handlebars->27->1399",
4446
- "default.handlebars->27->1842"
4493
+ "default.handlebars->27->1407",
4494
+ "default.handlebars->27->1850"
4495
]
4496
},
4497
{
@@ -4463,7 +4511,7 @@
4511
"zh-chs": "允许用户管理此设备。",
4512
"zh-cht": "允許用戶管理此裝置。",
4513
"xloc": [
4466
- "default.handlebars->27->1400"
4514
+ "default.handlebars->27->1408"
4515
]
4516
},
4517
{
@@ -4527,7 +4575,7 @@
4575
"zh-chs": "备用(F10 = ESC + 0)",
4576
"zh-cht": "備用(F10 = ESC + 0)",
4577
"xloc": [
4530
- "default.handlebars->27->853"
4578
+ "default.handlebars->27->861"
4579
]
4580
},
4581
{
@@ -4568,8 +4616,8 @@
4616
"zh-chs": "一直通知",
4617
"zh-cht": "一直通知",
4618
"xloc": [
4571
- "default.handlebars->27->1313",
4572
- "default.handlebars->27->1890",
4619
+ "default.handlebars->27->1321",
4620
+ "default.handlebars->27->1898",
4621
"default.handlebars->27->601"
4622
]
4623
},
@@ -4590,8 +4638,8 @@
4638
"zh-chs": "一直提示",
4639
"zh-cht": "一直提示",
4640
"xloc": [
4593
- "default.handlebars->27->1314",
4594
- "default.handlebars->27->1891",
4641
+ "default.handlebars->27->1322",
4642
+ "default.handlebars->27->1899",
4643
"default.handlebars->27->602"
4644
]
4645
},
@@ -4832,7 +4880,7 @@
4880
"zh-chs": "阿拉伯文(阿尔及利亚)",
4881
"zh-cht": "阿拉伯文(阿爾及利亞)",
4882
"xloc": [
4835
- "default.handlebars->27->1022"
4883
+ "default.handlebars->27->1030"
4884
]
4885
},
4886
{
@@ -4852,7 +4900,7 @@
4900
"zh-chs": "阿拉伯文(巴林)",
4901
"zh-cht": "阿拉伯文(巴林)",
4902
"xloc": [
4855
- "default.handlebars->27->1023"
4903
+ "default.handlebars->27->1031"
4904
]
4905
},
4906
{
@@ -4872,7 +4920,7 @@
4920
"zh-chs": "阿拉伯文(埃及)",
4921
"zh-cht": "阿拉伯文(埃及)",
4922
"xloc": [
4875
- "default.handlebars->27->1024"
4923
+ "default.handlebars->27->1032"
4924
]
4925
},
4926
{
@@ -4892,7 +4940,7 @@
4940
"zh-chs": "阿拉伯文(伊拉克)",
4941
"zh-cht": "阿拉伯文(伊拉克)",
4942
"xloc": [
4895
- "default.handlebars->27->1025"
4943
+ "default.handlebars->27->1033"
4944
]
4945
},
4946
{
@@ -4912,7 +4960,7 @@
4960
"zh-chs": "阿拉伯文(约旦)",
4961
"zh-cht": "阿拉伯文(約旦)",
4962
"xloc": [
4915
- "default.handlebars->27->1026"
4963
+ "default.handlebars->27->1034"
4964
]
4965
},
4966
{
@@ -4932,7 +4980,7 @@
4980
"zh-chs": "阿拉伯文(科威特)",
4981
"zh-cht": "阿拉伯文(科威特)",
4982
"xloc": [
4935
- "default.handlebars->27->1027"
4983
+ "default.handlebars->27->1035"
4984
]
4985
},
4986
{
@@ -4952,7 +5000,7 @@
5000
"zh-chs": "阿拉伯文(黎巴嫩)",
5001
"zh-cht": "阿拉伯文(黎巴嫩)",
5002
"xloc": [
4955
- "default.handlebars->27->1028"
5003
+ "default.handlebars->27->1036"
5004
]
5005
},
5006
{
@@ -4972,7 +5020,7 @@
5020
"zh-chs": "阿拉伯文(利比亚)",
5021
"zh-cht": "阿拉伯文(利比亞)",
5022
"xloc": [
4975
- "default.handlebars->27->1029"
5023
+ "default.handlebars->27->1037"
5024
]
5025
},
5026
{
@@ -4992,7 +5040,7 @@
5040
"zh-chs": "阿拉伯文(摩洛哥)",
5041
"zh-cht": "阿拉伯文(摩洛哥)",
5042
"xloc": [
4995
- "default.handlebars->27->1030"
5043
+ "default.handlebars->27->1038"
5044
]
5045
},
5046
{
@@ -5012,7 +5060,7 @@
5060
"zh-chs": "阿拉伯文(阿曼)",
5061
"zh-cht": "阿拉伯文(阿曼)",
5062
"xloc": [
5015
- "default.handlebars->27->1031"
5063
+ "default.handlebars->27->1039"
5064
]
5065
},
5066
{
@@ -5032,7 +5080,7 @@
5080
"zh-chs": "阿拉伯文(卡塔尔)",
5081
"zh-cht": "阿拉伯文(卡塔爾)",
5082
"xloc": [
5035
- "default.handlebars->27->1032"
5083
+ "default.handlebars->27->1040"
5084
]
5085
},
5086
{
@@ -5052,7 +5100,7 @@
5100
"zh-chs": "阿拉伯文(沙特阿拉伯)",
5101
"zh-cht": "阿拉伯文(沙特阿拉伯)",
5102
"xloc": [
5055
- "default.handlebars->27->1033"
5103
+ "default.handlebars->27->1041"
5104
]
5105
},
5106
{
@@ -5072,7 +5120,7 @@
5120
"zh-chs": "阿拉伯文(标准)",
5121
"zh-cht": "阿拉伯文(標準)",
5122
"xloc": [
5075
- "default.handlebars->27->1021"
5123
+ "default.handlebars->27->1029"
5124
]
5125
},
5126
{
@@ -5092,7 +5140,7 @@
5140
"zh-chs": "阿拉伯文(叙利亚)",
5141
"zh-cht": "阿拉伯文(敘利亞)",
5142
"xloc": [
5095
- "default.handlebars->27->1034"
5143
+ "default.handlebars->27->1042"
5144
]
5145
},
5146
{
@@ -5112,7 +5160,7 @@
5160
"zh-chs": "阿拉伯文(突尼斯)",
5161
"zh-cht": "阿拉伯文(突尼斯)",
5162
"xloc": [
5115
- "default.handlebars->27->1035"
5163
+ "default.handlebars->27->1043"
5164
]
5165
},
5166
{
@@ -5132,7 +5180,7 @@
5180
"zh-chs": "阿拉伯文(阿联酋)",
5181
"zh-cht": "阿拉伯文(阿聯酋)",
5182
"xloc": [
5135
- "default.handlebars->27->1036"
5183
+ "default.handlebars->27->1044"
5184
]
5185
},
5186
{
@@ -5152,7 +5200,7 @@
5200
"zh-chs": "阿拉伯文(也门)",
5201
"zh-cht": "阿拉伯文(也門)",
5202
"xloc": [
5155
- "default.handlebars->27->1037"
5203
+ "default.handlebars->27->1045"
5204
]
5205
},
5206
{
@@ -5172,7 +5220,7 @@
5220
"zh-chs": "阿拉贡文",
5221
"zh-cht": "阿拉貢文",
5222
"xloc": [
5175
- "default.handlebars->27->1038"
5223
+ "default.handlebars->27->1046"
5224
]
5225
},
5226
{
@@ -5193,7 +5241,7 @@
5241
"zh-cht": "結構",
5242
"xloc": [
5243
"default-mobile.handlebars->9->330",
5196
- "default.handlebars->27->908"
5244
+ "default.handlebars->27->916"
5245
]
5246
},
5247
{
@@ -5234,7 +5282,7 @@
5282
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5283
"xloc": [
5284
"default-mobile.handlebars->9->404",
5237
- "default.handlebars->27->1377"
5285
+ "default.handlebars->27->1385"
5286
]
5287
},
5288
{
@@ -5254,7 +5302,7 @@
5302
"zh-chs": "您确定要删除节点{0}吗?",
5303
"zh-cht": "你確定要刪除節點{0}嗎?",
5304
"xloc": [
5257
- "default.handlebars->27->763"
5305
+ "default.handlebars->27->771"
5306
]
5307
},
5308
{
@@ -5274,7 +5322,7 @@
5322
"zh-chs": "您确定要卸载所选代理吗?",
5323
"zh-cht": "你確定要卸載所選代理嗎?",
5324
"xloc": [
5277
- "default.handlebars->27->752"
5325
+ "default.handlebars->27->760"
5326
]
5327
},
5328
{
@@ -5294,7 +5342,7 @@
5342
"zh-chs": "您确定要卸载所选的{0}代理吗?",
5343
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
5344
"xloc": [
5297
- "default.handlebars->27->751"
5345
+ "default.handlebars->27->759"
5346
]
5347
},
5348
{
@@ -5314,7 +5362,7 @@
5362
"zh-chs": "您确定要{0}插件吗:{1}",
5363
"zh-cht": "你確定要{0}外掛嗎:{1}",
5364
"xloc": [
5317
- "default.handlebars->27->2080"
5365
+ "default.handlebars->27->2088"
5366
]
5367
},
5368
{
@@ -5334,7 +5382,7 @@
5382
"zh-chs": "亚美尼亚文",
5383
"zh-cht": "亞美尼亞文",
5384
"xloc": [
5337
- "default.handlebars->27->1039"
5385
+ "default.handlebars->27->1047"
5386
]
5387
},
5388
{
@@ -5394,7 +5442,7 @@
5442
"zh-chs": "阿萨姆文",
5443
"zh-cht": "阿薩姆文",
5444
"xloc": [
5397
- "default.handlebars->27->1040"
5445
+ "default.handlebars->27->1048"
5446
]
5447
},
5448
{
@@ -5414,7 +5462,7 @@
5462
"zh-chs": "阿斯图里亚斯文",
5463
"zh-cht": "阿斯圖里亞斯文",
5464
"xloc": [
5417
- "default.handlebars->27->1041"
5465
+ "default.handlebars->27->1049"
5466
]
5467
},
5468
{
@@ -5434,7 +5482,7 @@
5482
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5483
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5484
"xloc": [
5437
- "default.handlebars->27->1574"
5485
+ "default.handlebars->27->1582"
5486
]
5487
},
5488
{
@@ -5454,7 +5502,7 @@
5502
"zh-chs": "认证软件",
5503
"zh-cht": "認證軟體",
5504
"xloc": [
5457
- "default.handlebars->27->1894"
5505
+ "default.handlebars->27->1902"
5506
]
5507
},
5508
{
@@ -5478,8 +5526,8 @@
5526
"default-mobile.handlebars->9->52",
5527
"default-mobile.handlebars->9->71",
5528
"default-mobile.handlebars->9->73",
5481
- "default.handlebars->27->1005",
5482
- "default.handlebars->27->1007",
5529
+ "default.handlebars->27->1013",
5530
+ "default.handlebars->27->1015",
5531
"default.handlebars->27->125",
5532
"default.handlebars->27->130"
5533
]
@@ -5561,7 +5609,7 @@
5609
"zh-chs": "自动删除",
5610
"zh-cht": "自動刪除",
5611
"xloc": [
5564
- "default.handlebars->27->1301"
5612
+ "default.handlebars->27->1309"
5613
]
5614
},
5615
{
@@ -5625,7 +5673,7 @@
5673
"zh-chs": "可用內存",
5674
"zh-cht": "可用內存",
5675
"xloc": [
5628
- "default.handlebars->27->2033"
5676
+ "default.handlebars->27->2041"
5677
]
5678
},
5679
{
@@ -5645,7 +5693,7 @@
5693
"zh-chs": "阿塞拜疆文",
5694
"zh-cht": "阿塞拜疆文",
5695
"xloc": [
5648
- "default.handlebars->27->1042"
5696
+ "default.handlebars->27->1050"
5697
]
5698
},
5699
{
@@ -5666,7 +5714,7 @@
5714
"zh-cht": "的BIOS",
5715
"xloc": [
5716
"default-mobile.handlebars->9->372",
5669
- "default.handlebars->27->960"
5717
+ "default.handlebars->27->968"
5718
]
5719
},
5720
{
@@ -5781,8 +5829,8 @@
5829
"zh-chs": "背景与互动",
5830
"zh-cht": "背景與互動",
5831
"xloc": [
5784
- "default.handlebars->27->1478",
5785
- "default.handlebars->27->1485",
5832
+ "default.handlebars->27->1486",
5833
+ "default.handlebars->27->1493",
5834
"default.handlebars->27->350",
5835
"default.handlebars->27->364"
5836
]
@@ -5804,8 +5852,8 @@
5852
"zh-chs": "仅背景",
5853
"zh-cht": "僅背景",
5854
"xloc": [
5807
- "default.handlebars->27->1479",
5808
- "default.handlebars->27->1486",
5855
+ "default.handlebars->27->1487",
5856
+ "default.handlebars->27->1494",
5857
"default.handlebars->27->351",
5858
"default.handlebars->27->365",
5859
"default.handlebars->27->379"
@@ -5848,7 +5896,7 @@
5896
"zh-chs": "备用码",
5897
"zh-cht": "備用碼",
5898
"xloc": [
5851
- "default.handlebars->27->1896"
5899
+ "default.handlebars->27->1904"
5900
]
5901
},
5902
{
@@ -5868,7 +5916,7 @@
5916
"zh-chs": "错误的签名",
5917
"zh-cht": "錯誤的簽名",
5918
"xloc": [
5871
- "default.handlebars->27->2015"
5919
+ "default.handlebars->27->2023"
5920
]
5921
},
5922
{
@@ -5888,7 +5936,7 @@
5936
"zh-chs": "错误的网络证书",
5937
"zh-cht": "錯誤的網絡憑證",
5938
"xloc": [
5891
- "default.handlebars->27->2014"
5939
+ "default.handlebars->27->2022"
5940
]
5941
},
5942
{
@@ -5908,7 +5956,7 @@
5956
"zh-chs": "巴斯克",
5957
"zh-cht": "巴斯克",
5958
"xloc": [
5911
- "default.handlebars->27->1043"
5959
+ "default.handlebars->27->1051"
5960
]
5961
},
5962
{
@@ -5948,7 +5996,7 @@
5996
"zh-chs": "白俄罗斯文",
5997
"zh-cht": "白俄羅斯文",
5998
"xloc": [
5951
- "default.handlebars->27->1045"
5999
+ "default.handlebars->27->1053"
6000
]
6001
},
6002
{
@@ -5968,7 +6016,7 @@
6016
"zh-chs": "孟加拉",
6017
"zh-cht": "孟加拉",
6018
"xloc": [
5971
- "default.handlebars->27->1046"
6019
+ "default.handlebars->27->1054"
6020
]
6021
},
6022
{
@@ -6011,7 +6059,7 @@
6059
"zh-chs": "波斯尼亚文",
6060
"zh-cht": "波斯尼亞文",
6061
"xloc": [
6014
- "default.handlebars->27->1047"
6062
+ "default.handlebars->27->1055"
6063
]
6064
},
6065
{
@@ -6031,7 +6079,7 @@
6079
"zh-chs": "布列塔尼",
6080
"zh-cht": "布列塔尼",
6081
"xloc": [
6034
- "default.handlebars->27->1048"
6082
+ "default.handlebars->27->1056"
6083
]
6084
},
6085
{
@@ -6051,7 +6099,7 @@
6099
"zh-chs": "广播",
6100
"zh-cht": "廣播",
6101
"xloc": [
6054
- "default.handlebars->27->1810",
6102
+ "default.handlebars->27->1818",
6103
"default.handlebars->container->column_l->p4->3->1->0->3->1"
6104
]
6105
},
@@ -6072,7 +6120,7 @@
6120
"zh-chs": "广播消息",
6121
"zh-cht": "廣播消息",
6122
"xloc": [
6075
- "default.handlebars->27->1743"
6123
+ "default.handlebars->27->1751"
6124
]
6125
},
6126
{
@@ -6092,7 +6140,7 @@
6140
"zh-chs": "向所有连接的用户广播消息。",
6141
"zh-cht": "向所有連接的用戶廣播消息。",
6142
"xloc": [
6095
- "default.handlebars->27->1738"
6143
+ "default.handlebars->27->1746"
6144
]
6145
},
6146
{
@@ -6112,7 +6160,7 @@
6160
"zh-chs": "保加利亚文",
6161
"zh-cht": "保加利亞文",
6162
"xloc": [
6115
- "default.handlebars->27->1044"
6163
+ "default.handlebars->27->1052"
6164
]
6165
},
6166
{
@@ -6132,7 +6180,7 @@
6180
"zh-chs": "缅甸文",
6181
"zh-cht": "緬甸文",
6182
"xloc": [
6135
- "default.handlebars->27->1049"
6183
+ "default.handlebars->27->1057"
6184
]
6185
},
6186
{
@@ -6174,8 +6222,8 @@
6222
"zh-cht": "CIRA",
6223
"xloc": [
6224
"default-mobile.handlebars->9->200",
6177
- "default.handlebars->27->1365",
6178
- "default.handlebars->27->1370",
6225
+ "default.handlebars->27->1373",
6226
+ "default.handlebars->27->1378",
6227
"default.handlebars->27->212",
6228
"default.handlebars->27->439"
6229
]
@@ -6197,7 +6245,7 @@
6245
"zh-chs": "CIRA服务器",
6246
"zh-cht": "CIRA伺服器",
6247
"xloc": [
6200
- "default.handlebars->27->2068"
6248
+ "default.handlebars->27->2076"
6249
]
6250
},
6251
{
@@ -6217,7 +6265,7 @@
6265
"zh-chs": "CIRA服务器命令",
6266
"zh-cht": "CIRA伺服器指令",
6267
"xloc": [
6220
- "default.handlebars->27->2069"
6268
+ "default.handlebars->27->2077"
6269
]
6270
},
6271
{
@@ -6238,7 +6286,7 @@
6286
"zh-cht": "CPU",
6287
"xloc": [
6288
"default-mobile.handlebars->9->378",
6241
- "default.handlebars->27->966"
6289
+ "default.handlebars->27->974"
6290
]
6291
},
6292
{
@@ -6258,7 +6306,7 @@
6306
"zh-chs": "CPU负载",
6307
"zh-cht": "CPU負載",
6308
"xloc": [
6261
- "default.handlebars->27->2029"
6309
+ "default.handlebars->27->2037"
6310
]
6311
},
6312
{
@@ -6278,7 +6326,7 @@
6326
"zh-chs": "最近15分钟的CPU负载",
6327
"zh-cht": "最近15分鐘的CPU負載",
6328
"xloc": [
6281
- "default.handlebars->27->2032"
6329
+ "default.handlebars->27->2040"
6330
]
6331
},
6332
{
@@ -6298,7 +6346,7 @@
6346
"zh-chs": "最近5分钟的CPU负载",
6347
"zh-cht": "最近5分鐘的CPU負載",
6348
"xloc": [
6301
- "default.handlebars->27->2031"
6349
+ "default.handlebars->27->2039"
6350
]
6351
},
6352
{
@@ -6318,7 +6366,7 @@
6366
"zh-chs": "最近一分钟的CPU负载",
6367
"zh-cht": "最近一分鐘的CPU負載",
6368
"xloc": [
6321
- "default.handlebars->27->2030"
6369
+ "default.handlebars->27->2038"
6370
]
6371
},
6372
{
@@ -6338,8 +6386,8 @@
6386
"zh-chs": "CR+LF",
6387
"zh-cht": "CR+LF",
6388
"xloc": [
6341
- "default.handlebars->27->846",
6342
- "default.handlebars->27->855",
6389
+ "default.handlebars->27->854",
6390
+ "default.handlebars->27->863",
6391
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
6392
]
6393
},
@@ -6360,7 +6408,7 @@
6408
"zh-chs": "CSV",
6409
"zh-cht": "CSV",
6410
"xloc": [
6363
- "default.handlebars->27->1661"
6411
+ "default.handlebars->27->1669"
6412
]
6413
},
6414
{
@@ -6380,8 +6428,8 @@
6428
"zh-chs": "CSV格式",
6429
"zh-cht": "CSV格式",
6430
"xloc": [
6383
- "default.handlebars->27->1665",
6384
- "default.handlebars->27->1730",
6431
+ "default.handlebars->27->1673",
6432
+ "default.handlebars->27->1738",
6433
"default.handlebars->27->486"
6434
]
6435
},
@@ -6402,7 +6450,7 @@
6450
"zh-chs": "呼叫错误",
6451
"zh-cht": "呼叫錯誤",
6452
"xloc": [
6405
- "default.handlebars->27->2081"
6453
+ "default.handlebars->27->2089"
6454
]
6455
},
6456
{
@@ -6424,7 +6472,7 @@
6472
"xloc": [
6473
"default-mobile.handlebars->9->82",
6474
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
6427
- "default.handlebars->27->1279",
6475
+ "default.handlebars->27->1287",
6476
"default.handlebars->container->dialog->idx_dlgButtonBar",
6477
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
6478
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -6453,8 +6501,8 @@
6501
"xloc": [
6502
"default-mobile.handlebars->9->386",
6503
"default-mobile.handlebars->9->388",
6456
- "default.handlebars->27->974",
6457
- "default.handlebars->27->976"
6504
+ "default.handlebars->27->982",
6505
+ "default.handlebars->27->984"
6506
]
6507
},
6508
{
@@ -6475,7 +6523,7 @@
6523
"zh-cht": "容量/速度",
6524
"xloc": [
6525
"default-mobile.handlebars->9->381",
6478
- "default.handlebars->27->969"
6526
+ "default.handlebars->27->977"
6527
]
6528
},
6529
{
@@ -6495,7 +6543,7 @@
6543
"zh-chs": "加泰罗尼亚文",
6544
"zh-cht": "加泰羅尼亞文",
6545
"xloc": [
6498
- "default.handlebars->27->1050"
6546
+ "default.handlebars->27->1058"
6547
]
6548
},
6549
{
@@ -6535,7 +6583,7 @@
6583
"zh-chs": "查莫罗",
6584
"zh-cht": "查莫羅",
6585
"xloc": [
6538
- "default.handlebars->27->1051"
6586
+ "default.handlebars->27->1059"
6587
]
6588
},
6589
{
@@ -6577,7 +6625,7 @@
6625
"zh-chs": "更改{0}的电邮",
6626
"zh-cht": "更改{0}的電郵",
6627
"xloc": [
6580
- "default.handlebars->27->1924"
6628
+ "default.handlebars->27->1932"
6629
]
6630
},
6631
{
@@ -6598,8 +6646,8 @@
6646
"zh-cht": "更改群",
6647
"xloc": [
6648
"default.handlebars->27->628",
6601
- "default.handlebars->27->760",
6602
- "default.handlebars->27->761"
6649
+ "default.handlebars->27->768",
6650
+ "default.handlebars->27->769"
6651
]
6652
},
6653
{
@@ -6620,8 +6668,8 @@
6668
"zh-cht": "更改密碼",
6669
"xloc": [
6670
"default-mobile.handlebars->9->90",
6623
- "default.handlebars->27->1246",
6624
- "default.handlebars->27->1911"
6671
+ "default.handlebars->27->1254",
6672
+ "default.handlebars->27->1919"
6673
]
6674
},
6675
{
@@ -6641,7 +6689,7 @@
6689
"zh-chs": "更改{0}的密码",
6690
"zh-cht": "更改{0}的密碼",
6691
"xloc": [
6644
- "default.handlebars->27->1931"
6692
+ "default.handlebars->27->1939"
6693
]
6694
},
6695
{
@@ -6661,7 +6709,7 @@
6709
"zh-chs": "更改{0}的真实名称",
6710
"zh-cht": "更改{0}的真實名稱",
6711
"xloc": [
6664
- "default.handlebars->27->1919"
6712
+ "default.handlebars->27->1927"
6713
]
6714
},
6715
{
@@ -6743,7 +6791,7 @@
6791
"zh-chs": "更改该用户的密码",
6792
"zh-cht": "更改該用戶的密碼",
6793
"xloc": [
6746
- "default.handlebars->27->1910"
6794
+ "default.handlebars->27->1918"
6795
]
6796
},
6797
{
@@ -6783,7 +6831,7 @@
6831
"zh-chs": "在此处更改您的帐户电邮地址。",
6832
"zh-cht": "在此處更改你的帳戶電郵地址。",
6833
"xloc": [
6786
- "default.handlebars->27->1233"
6834
+ "default.handlebars->27->1241"
6835
]
6836
},
6837
{
@@ -6803,7 +6851,7 @@
6851
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
6852
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
6853
"xloc": [
6806
- "default.handlebars->27->1239"
6854
+ "default.handlebars->27->1247"
6855
]
6856
},
6857
{
@@ -6823,7 +6871,7 @@
6871
"zh-chs": "更改帐户凭据",
6872
"zh-cht": "帳戶憑證已更改",
6873
"xloc": [
6826
- "default.handlebars->27->1626"
6874
+ "default.handlebars->27->1634"
6875
]
6876
},
6877
{
@@ -6843,7 +6891,7 @@
6891
"zh-chs": "{1}组中的设备{0}已更改:{2}",
6892
"zh-cht": "{1}組中的設備{0}已更改:{2}",
6893
"xloc": [
6846
- "default.handlebars->27->1610"
6894
+ "default.handlebars->27->1618"
6895
]
6896
},
6897
{
@@ -6863,7 +6911,7 @@
6911
"zh-chs": "语言从{1}更改为{2}",
6912
"zh-cht": "語言從{1}更改為{2}",
6913
"xloc": [
6866
- "default.handlebars->27->1554"
6914
+ "default.handlebars->27->1562"
6915
]
6916
},
6917
{
@@ -6883,8 +6931,8 @@
6931
"zh-chs": "已更改{0}的用户设备权限",
6932
"zh-cht": "已更改{0}的用戶設備權限",
6933
"xloc": [
6886
- "default.handlebars->27->1612",
6887
- "default.handlebars->27->1633"
6934
+ "default.handlebars->27->1620",
6935
+ "default.handlebars->27->1641"
6936
]
6937
},
6938
{
@@ -6904,7 +6952,7 @@
6952
"zh-chs": "更改语言将需要刷新页面。",
6953
"zh-cht": "更改語言將需要刷新頁面。",
6954
"xloc": [
6907
- "default.handlebars->27->1218"
6955
+ "default.handlebars->27->1226"
6956
]
6957
},
6958
{
@@ -6924,7 +6972,7 @@
6972
"zh-chs": "聊天",
6973
"zh-cht": "聊天",
6974
"xloc": [
6927
- "default.handlebars->27->1682",
6975
+ "default.handlebars->27->1690",
6976
"default.handlebars->27->681",
6977
"default.handlebars->27->700"
6978
]
@@ -6948,8 +6996,8 @@
6996
"xloc": [
6997
"default-mobile.handlebars->9->425",
6998
"default-mobile.handlebars->9->443",
6951
- "default.handlebars->27->1427",
6952
- "default.handlebars->27->1462"
6999
+ "default.handlebars->27->1435",
7000
+ "default.handlebars->27->1470"
7001
]
7002
},
7003
{
@@ -6989,7 +7037,7 @@
7037
"zh-chs": "车臣",
7038
"zh-cht": "車臣",
7039
"xloc": [
6992
- "default.handlebars->27->1052"
7040
+ "default.handlebars->27->1060"
7041
]
7042
},
7043
{
@@ -7089,8 +7137,8 @@
7137
"zh-chs": "检查...",
7138
"zh-cht": "檢查...",
7139
"xloc": [
7092
- "default.handlebars->27->1018",
7093
- "default.handlebars->27->2075"
7140
+ "default.handlebars->27->1026",
7141
+ "default.handlebars->27->2083"
7142
]
7143
},
7144
{
@@ -7110,7 +7158,7 @@
7158
"zh-chs": "中文",
7159
"zh-cht": "中文",
7160
"xloc": [
7113
- "default.handlebars->27->1053"
7161
+ "default.handlebars->27->1061"
7162
]
7163
},
7164
{
@@ -7130,7 +7178,7 @@
7178
"zh-chs": "中文(香港)",
7179
"zh-cht": "中文(香港)",
7180
"xloc": [
7133
- "default.handlebars->27->1054"
7181
+ "default.handlebars->27->1062"
7182
]
7183
},
7184
{
@@ -7150,7 +7198,7 @@
7198
"zh-chs": "中文(中国)",
7199
"zh-cht": "中文(中國)",
7200
"xloc": [
7153
- "default.handlebars->27->1055"
7201
+ "default.handlebars->27->1063"
7202
]
7203
},
7204
{
@@ -7170,7 +7218,7 @@
7218
"zh-chs": "简体中文",
7219
"zh-cht": "簡體中文",
7220
"xloc": [
7173
- "default.handlebars->27->1215"
7221
+ "default.handlebars->27->1223"
7222
]
7223
},
7224
{
@@ -7190,7 +7238,7 @@
7238
"zh-chs": "中文(新加坡)",
7239
"zh-cht": "中文(新加坡)",
7240
"xloc": [
7193
- "default.handlebars->27->1056"
7241
+ "default.handlebars->27->1064"
7242
]
7243
},
7244
{
@@ -7210,7 +7258,7 @@
7258
"zh-chs": "中文(台湾)",
7259
"zh-cht": "中文(台灣)",
7260
"xloc": [
7213
- "default.handlebars->27->1057"
7261
+ "default.handlebars->27->1065"
7262
]
7263
},
7264
{
@@ -7230,7 +7278,7 @@
7278
"zh-chs": "繁体中文",
7279
"zh-cht": "繁體中文",
7280
"xloc": [
7233
- "default.handlebars->27->1216"
7281
+ "default.handlebars->27->1224"
7282
]
7283
},
7284
{
@@ -7271,7 +7319,7 @@
7319
"zh-chs": "楚瓦什",
7320
"zh-cht": "楚瓦什",
7321
"xloc": [
7274
- "default.handlebars->27->1058"
7322
+ "default.handlebars->27->1066"
7323
]
7324
},
7325
{
@@ -7317,11 +7365,11 @@
7365
"default-mobile.handlebars->9->318",
7366
"default-mobile.handlebars->9->320",
7367
"default-mobile.handlebars->9->59",
7320
- "default.handlebars->27->1548",
7321
- "default.handlebars->27->885",
7322
- "default.handlebars->27->887",
7323
- "default.handlebars->27->889",
7324
- "default.handlebars->27->891",
7368
+ "default.handlebars->27->1556",
7369
+ "default.handlebars->27->893",
7370
+ "default.handlebars->27->895",
7371
+ "default.handlebars->27->897",
7372
+ "default.handlebars->27->899",
7373
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
7374
"default.handlebars->container->column_l->p41->3->1",
7375
"messenger.handlebars->xbottom"
@@ -7364,7 +7412,7 @@
7412
"zh-chs": "全部清除",
7413
"zh-cht": "全部清除",
7414
"xloc": [
7367
- "default.handlebars->27->2002"
7415
+ "default.handlebars->27->2010"
7416
]
7417
},
7418
{
@@ -7384,7 +7432,7 @@
7432
"zh-chs": "清除核心",
7433
"zh-cht": "清除核心",
7434
"xloc": [
7387
- "default.handlebars->27->990"
7435
+ "default.handlebars->27->998"
7436
]
7437
},
7438
{
@@ -7424,7 +7472,7 @@
7472
"zh-chs": "清除此通知",
7473
"zh-cht": "清除此通知",
7474
"xloc": [
7427
- "default.handlebars->27->2001"
7475
+ "default.handlebars->27->2009"
7476
]
7477
},
7478
{
@@ -7484,8 +7532,8 @@
7532
"zh-chs": "单击此处编辑设备组名称",
7533
"zh-cht": "單擊此處編輯裝置群名稱",
7534
"xloc": [
7487
- "default.handlebars->27->1290",
7488
- "default.handlebars->27->1499"
7535
+ "default.handlebars->27->1298",
7536
+ "default.handlebars->27->1507"
7537
]
7538
},
7539
{
@@ -7525,7 +7573,7 @@
7573
"zh-chs": "单击此处编辑用户组名称",
7574
"zh-cht": "單擊此處編輯用戶群名稱",
7575
"xloc": [
7528
- "default.handlebars->27->1799"
7576
+ "default.handlebars->27->1807"
7577
]
7578
},
7579
{
@@ -7586,7 +7634,7 @@
7634
"zh-cht": "單擊確定將驗證電郵發送到:",
7635
"xloc": [
7636
"default-mobile.handlebars->9->75",
7589
- "default.handlebars->27->1230"
7637
+ "default.handlebars->27->1238"
7638
]
7639
},
7640
{
@@ -7627,7 +7675,7 @@
7675
"zh-cht": "客戶端控制模式(CCM)",
7676
"xloc": [
7677
"default-mobile.handlebars->9->359",
7630
- "default.handlebars->27->947"
7678
+ "default.handlebars->27->955"
7679
]
7680
},
7681
{
@@ -7647,7 +7695,7 @@
7695
"zh-chs": "客户编号",
7696
"zh-cht": "客戶編號",
7697
"xloc": [
7650
- "default.handlebars->27->1272"
7698
+ "default.handlebars->27->1280"
7699
]
7700
},
7701
{
@@ -7667,8 +7715,8 @@
7715
"zh-chs": "客户端启动的远程访问",
7716
"zh-cht": "客戶端啟動的遠程訪問",
7717
"xloc": [
7670
- "default.handlebars->27->1364",
7671
- "default.handlebars->27->1369"
7718
+ "default.handlebars->27->1372",
7719
+ "default.handlebars->27->1377"
7720
]
7721
},
7722
{
@@ -7688,7 +7736,7 @@
7736
"zh-chs": "客户机密",
7737
"zh-cht": "客戶機密",
7738
"xloc": [
7691
- "default.handlebars->27->1273"
7739
+ "default.handlebars->27->1281"
7740
]
7741
},
7742
{
@@ -7732,7 +7780,7 @@
7780
"default-mobile.handlebars->9->57",
7781
"default.handlebars->27->137",
7782
"default.handlebars->27->145",
7735
- "default.handlebars->27->837"
7783
+ "default.handlebars->27->845"
7784
]
7785
},
7786
{
@@ -7752,7 +7800,7 @@
7800
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
7801
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
7802
"xloc": [
7755
- "default.handlebars->27->1559"
7803
+ "default.handlebars->27->1567"
7804
]
7805
},
7806
{
@@ -7840,8 +7888,8 @@
7888
"zh-chs": "通用设备组",
7889
"zh-cht": "通用裝置群",
7890
"xloc": [
7843
- "default.handlebars->27->1818",
7844
- "default.handlebars->27->1936"
7891
+ "default.handlebars->27->1826",
7892
+ "default.handlebars->27->1944"
7893
]
7894
},
7895
{
@@ -7861,8 +7909,8 @@
7909
"zh-chs": "通用设备",
7910
"zh-cht": "通用裝置",
7911
"xloc": [
7864
- "default.handlebars->27->1824",
7865
- "default.handlebars->27->1948"
7912
+ "default.handlebars->27->1832",
7913
+ "default.handlebars->27->1956"
7914
]
7915
},
7916
{
@@ -7882,7 +7930,7 @@
7930
"zh-chs": "压缩档案...",
7931
"zh-cht": "壓縮檔案...",
7932
"xloc": [
7885
- "default.handlebars->27->862"
7933
+ "default.handlebars->27->870"
7934
]
7935
},
7936
{
@@ -7903,7 +7951,7 @@
7951
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
7952
"xloc": [
7953
"default-mobile.handlebars->9->127",
7906
- "default.handlebars->27->1543"
7954
+ "default.handlebars->27->1551"
7955
]
7956
},
7957
{
@@ -7925,14 +7973,14 @@
7973
"xloc": [
7974
"default-mobile.handlebars->9->276",
7975
"default-mobile.handlebars->9->405",
7928
- "default.handlebars->27->1378",
7929
- "default.handlebars->27->1710",
7930
- "default.handlebars->27->1789",
7931
- "default.handlebars->27->1838",
7932
- "default.handlebars->27->1934",
7976
+ "default.handlebars->27->1386",
7977
+ "default.handlebars->27->1718",
7978
+ "default.handlebars->27->1797",
7979
+ "default.handlebars->27->1846",
7980
+ "default.handlebars->27->1942",
7981
"default.handlebars->27->465",
7934
- "default.handlebars->27->755",
7935
- "default.handlebars->27->764"
7982
+ "default.handlebars->27->763",
7983
+ "default.handlebars->27->772"
7984
]
7985
},
7986
{
@@ -7953,7 +8001,7 @@
8001
"zh-cht": "確認將1個副本複製到此位置?",
8002
"xloc": [
8003
"default-mobile.handlebars->9->309",
7956
- "default.handlebars->27->880"
8004
+ "default.handlebars->27->888"
8005
]
8006
},
8007
{
@@ -7973,7 +8021,7 @@
8021
"zh-chs": "确认{0}个条目的复制到此位置?",
8022
"zh-cht": "確認{0}個條目的複製到此位置?",
8023
"xloc": [
7976
- "default.handlebars->27->879"
8024
+ "default.handlebars->27->887"
8025
]
8026
},
8027
{
@@ -8013,7 +8061,7 @@
8061
"zh-chs": "确认删除选定的帐户?",
8062
"zh-cht": "確認刪除所選帳戶?",
8063
"xloc": [
8016
- "default.handlebars->27->1709"
8064
+ "default.handlebars->27->1717"
8065
]
8066
},
8067
{
@@ -8053,7 +8101,7 @@
8101
"zh-chs": "确认删除选定的用户组?",
8102
"zh-cht": "確認刪除所選用戶群?",
8103
"xloc": [
8056
- "default.handlebars->27->1788"
8104
+ "default.handlebars->27->1796"
8105
]
8106
},
8107
{
@@ -8073,7 +8121,7 @@
8121
"zh-chs": "确认删除用户{0}?",
8122
"zh-cht": "確認刪除用戶{0}?",
8123
"xloc": [
8076
- "default.handlebars->27->1933"
8124
+ "default.handlebars->27->1941"
8125
]
8126
},
8127
{
@@ -8093,7 +8141,7 @@
8141
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
8142
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8143
"xloc": [
8096
- "default.handlebars->27->1841"
8144
+ "default.handlebars->27->1849"
8145
]
8146
},
8147
{
@@ -8113,7 +8161,7 @@
8161
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8162
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8163
"xloc": [
8116
- "default.handlebars->27->1963"
8164
+ "default.handlebars->27->1971"
8165
]
8166
},
8167
{
@@ -8134,7 +8182,7 @@
8182
"zh-cht": "確認將1個條目移動到此位置?",
8183
"xloc": [
8184
"default-mobile.handlebars->9->311",
8137
- "default.handlebars->27->882"
8185
+ "default.handlebars->27->890"
8186
]
8187
},
8188
{
@@ -8154,7 +8202,7 @@
8202
"zh-chs": "确认将{0}个条目移到此位置?",
8203
"zh-cht": "確認將{0}個條目移到該位置?",
8204
"xloc": [
8157
- "default.handlebars->27->881"
8205
+ "default.handlebars->27->889"
8206
]
8207
},
8208
{
@@ -8194,7 +8242,7 @@
8242
"zh-chs": "确认覆盖?",
8243
"zh-cht": "確認覆蓋?",
8244
"xloc": [
8197
- "default.handlebars->27->1542"
8245
+ "default.handlebars->27->1550"
8246
]
8247
},
8248
{
@@ -8214,8 +8262,8 @@
8262
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
8263
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
8264
"xloc": [
8217
- "default.handlebars->27->1831",
8218
- "default.handlebars->27->1954"
8265
+ "default.handlebars->27->1839",
8266
+ "default.handlebars->27->1962"
8267
]
8268
},
8269
{
@@ -8235,8 +8283,8 @@
8283
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
8284
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
8285
"xloc": [
8238
- "default.handlebars->27->1833",
8239
- "default.handlebars->27->1967"
8286
+ "default.handlebars->27->1841",
8287
+ "default.handlebars->27->1975"
8288
]
8289
},
8290
{
@@ -8256,7 +8304,7 @@
8304
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
8305
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
8306
"xloc": [
8259
- "default.handlebars->27->1956"
8307
+ "default.handlebars->27->1964"
8308
]
8309
},
8310
{
@@ -8276,7 +8324,7 @@
8324
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
8325
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
8326
"xloc": [
8279
- "default.handlebars->27->1959"
8327
+ "default.handlebars->27->1967"
8328
]
8329
},
8330
{
@@ -8296,8 +8344,8 @@
8344
"zh-chs": "确认删除访问权限?",
8345
"zh-cht": "確認刪除訪問權限?",
8346
"xloc": [
8299
- "default.handlebars->27->1957",
8300
- "default.handlebars->27->1960"
8347
+ "default.handlebars->27->1965",
8348
+ "default.handlebars->27->1968"
8349
]
8350
},
8351
{
@@ -8318,7 +8366,7 @@
8366
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
8367
"xloc": [
8368
"default-mobile.handlebars->9->74",
8321
- "default.handlebars->27->1008"
8369
+ "default.handlebars->27->1016"
8370
]
8371
},
8372
{
@@ -8389,7 +8437,7 @@
8437
"zh-chs": "确认删除用户“ {0} ”的权限?",
8438
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
8439
"xloc": [
8392
- "default.handlebars->27->1471"
8440
+ "default.handlebars->27->1479"
8441
]
8442
},
8443
{
@@ -8409,7 +8457,7 @@
8457
"zh-chs": "确认删除用户组“ {0} ”的权限?",
8458
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
8459
"xloc": [
8412
- "default.handlebars->27->1473"
8460
+ "default.handlebars->27->1481"
8461
]
8462
},
8463
{
@@ -8469,8 +8517,8 @@
8517
"default-mobile.handlebars->9->291",
8518
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8519
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
8472
- "default.handlebars->27->1317",
8473
- "default.handlebars->27->858",
8520
+ "default.handlebars->27->1325",
8521
+ "default.handlebars->27->866",
8522
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
8523
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
8524
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -8517,8 +8565,8 @@
8565
"zh-chs": "连接到服务器",
8566
"zh-cht": "連接到伺服器",
8567
"xloc": [
8520
- "default.handlebars->27->1368",
8521
- "default.handlebars->27->1372"
8568
+ "default.handlebars->27->1376",
8569
+ "default.handlebars->27->1380"
8570
]
8571
},
8572
{
@@ -8639,7 +8687,7 @@
8687
"zh-chs": "已连接的英特尔®AMT",
8688
"zh-cht": "已連接的Intel® AMT",
8689
"xloc": [
8642
- "default.handlebars->27->2020"
8690
+ "default.handlebars->27->2028"
8691
]
8692
},
8693
{
@@ -8659,7 +8707,7 @@
8707
"zh-chs": "已连接的用户",
8708
"zh-cht": "已连接的用户",
8709
"xloc": [
8662
- "default.handlebars->27->2025"
8710
+ "default.handlebars->27->2033"
8711
]
8712
},
8713
{
@@ -8680,7 +8728,7 @@
8728
"zh-cht": "現在已連接",
8729
"xloc": [
8730
"default-mobile.handlebars->9->334",
8683
- "default.handlebars->27->912"
8731
+ "default.handlebars->27->920"
8732
]
8733
},
8734
{
@@ -8727,7 +8775,7 @@
8775
"default.handlebars->27->240",
8776
"default.handlebars->27->266",
8777
"default.handlebars->27->9",
8730
- "default.handlebars->27->903",
8778
+ "default.handlebars->27->911",
8779
"desktop.handlebars->3->2",
8780
"xterm.handlebars->9->2"
8781
]
@@ -8749,7 +8797,7 @@
8797
"zh-chs": "连接数量",
8798
"zh-cht": "連接數量",
8799
"xloc": [
8752
- "default.handlebars->27->2039"
8800
+ "default.handlebars->27->2047"
8801
]
8802
},
8803
{
@@ -8769,7 +8817,7 @@
8817
"zh-chs": "连接转发器",
8818
"zh-cht": "連接轉發器",
8819
"xloc": [
8772
- "default.handlebars->27->2067"
8820
+ "default.handlebars->27->2075"
8821
]
8822
},
8823
{
@@ -8830,7 +8878,7 @@
8878
"zh-cht": "連接性",
8879
"xloc": [
8880
"default-mobile.handlebars->9->244",
8833
- "default.handlebars->27->1506",
8881
+ "default.handlebars->27->1514",
8882
"default.handlebars->27->228",
8883
"default.handlebars->27->615",
8884
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -8919,7 +8967,7 @@
8967
"zh-chs": "Cookie编码器",
8968
"zh-cht": "Cookie編碼器",
8969
"xloc": [
8922
- "default.handlebars->27->2053"
8970
+ "default.handlebars->27->2061"
8971
]
8972
},
8973
{
@@ -9076,8 +9124,8 @@
9124
"zh-chs": "复制连结到剪贴板",
9125
"zh-cht": "複製連結到剪貼板",
9126
"xloc": [
9079
- "default.handlebars->27->1511",
9080
- "default.handlebars->27->1530",
9127
+ "default.handlebars->27->1519",
9128
+ "default.handlebars->27->1538",
9129
"default.handlebars->27->192",
9130
"default.handlebars->27->367"
9131
]
@@ -9180,7 +9228,7 @@
9228
"zh-chs": "复制:“{0}”到“{1}”",
9229
"zh-cht": "複製:“{0}”到“{1}”",
9230
"xloc": [
9183
- "default.handlebars->27->1602"
9231
+ "default.handlebars->27->1610"
9232
]
9233
},
9234
{
@@ -9326,7 +9374,7 @@
9374
"zh-chs": "核心服务器",
9375
"zh-cht": "核心伺服器",
9376
"xloc": [
9329
- "default.handlebars->27->2052"
9377
+ "default.handlebars->27->2060"
9378
]
9379
},
9380
{
@@ -9346,7 +9394,7 @@
9394
"zh-chs": "科西嘉文",
9395
"zh-cht": "科西嘉文",
9396
"xloc": [
9349
- "default.handlebars->27->1059"
9397
+ "default.handlebars->27->1067"
9398
]
9399
},
9400
{
@@ -9366,7 +9414,7 @@
9414
"zh-chs": "创建帐号",
9415
"zh-cht": "創建帳號",
9416
"xloc": [
9369
- "default.handlebars->27->1757",
9417
+ "default.handlebars->27->1765",
9418
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
9419
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
9420
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -9409,7 +9457,7 @@
9457
"zh-chs": "创建用户组",
9458
"zh-cht": "創建用戶群",
9459
"xloc": [
9412
- "default.handlebars->27->1796"
9460
+ "default.handlebars->27->1804"
9461
]
9462
},
9463
{
@@ -9449,7 +9497,7 @@
9497
"zh-chs": "使用以下选项创建一个新的设备组。",
9498
"zh-cht": "使用以下選項創建一個新的裝置群。",
9499
"xloc": [
9452
- "default.handlebars->27->1253"
9500
+ "default.handlebars->27->1261"
9501
]
9502
},
9503
{
@@ -9489,7 +9537,7 @@
9537
"zh-chs": "创建文件夹:“{0}”",
9538
"zh-cht": "創建文件夾:“{0}”",
9539
"xloc": [
9492
- "default.handlebars->27->1595"
9540
+ "default.handlebars->27->1603"
9541
]
9542
},
9543
{
@@ -9509,7 +9557,7 @@
9557
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
9558
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
9559
"xloc": [
9512
- "default.handlebars->27->1721"
9560
+ "default.handlebars->27->1729"
9561
]
9562
},
9563
{
@@ -9551,7 +9599,7 @@
9599
"zh-chs": "创建的设备组:{0}",
9600
"zh-cht": "創建的設備組:{0}",
9601
"xloc": [
9554
- "default.handlebars->27->1606"
9602
+ "default.handlebars->27->1614"
9603
]
9604
},
9605
{
@@ -9591,7 +9639,7 @@
9639
"zh-chs": "创建",
9640
"zh-cht": "創建",
9641
"xloc": [
9594
- "default.handlebars->27->1870"
9642
+ "default.handlebars->27->1878"
9643
]
9644
},
9645
{
@@ -9611,7 +9659,7 @@
9659
"zh-chs": "创建时间",
9660
"zh-cht": "創作時間",
9661
"xloc": [
9614
- "default.handlebars->27->1300"
9662
+ "default.handlebars->27->1308"
9663
]
9664
},
9665
{
@@ -9653,8 +9701,8 @@
9701
"zh-chs": "创建者",
9702
"zh-cht": "創作者",
9703
"xloc": [
9656
- "default.handlebars->27->1298",
9657
- "default.handlebars->27->1299"
9704
+ "default.handlebars->27->1306",
9705
+ "default.handlebars->27->1307"
9706
]
9707
},
9708
{
@@ -9674,7 +9722,7 @@
9722
"zh-chs": "证书",
9723
"zh-cht": "證書",
9724
"xloc": [
9677
- "default.handlebars->27->1270"
9725
+ "default.handlebars->27->1278"
9726
]
9727
},
9728
{
@@ -9694,7 +9742,7 @@
9742
"zh-chs": "克里语",
9743
"zh-cht": "克里語",
9744
"xloc": [
9697
- "default.handlebars->27->1060"
9745
+ "default.handlebars->27->1068"
9746
]
9747
},
9748
{
@@ -9714,7 +9762,7 @@
9762
"zh-chs": "克罗地亚文",
9763
"zh-cht": "克羅地亞文",
9764
"xloc": [
9717
- "default.handlebars->27->1061"
9765
+ "default.handlebars->27->1069"
9766
]
9767
},
9768
{
@@ -9881,7 +9929,7 @@
9929
"zh-chs": "捷克文",
9930
"zh-cht": "捷克文",
9931
"xloc": [
9884
- "default.handlebars->27->1062"
9932
+ "default.handlebars->27->1070"
9933
]
9934
},
9935
{
@@ -9921,7 +9969,7 @@
9969
"zh-chs": "丹麦文",
9970
"zh-cht": "丹麥文",
9971
"xloc": [
9924
- "default.handlebars->27->1063"
9972
+ "default.handlebars->27->1071"
9973
]
9974
},
9975
{
@@ -9941,7 +9989,7 @@
9989
"zh-chs": "数据通道",
9990
"zh-cht": "數據通道",
9991
"xloc": [
9944
- "default.handlebars->27->807",
9992
+ "default.handlebars->27->815",
9993
"desktop.handlebars->3->12"
9994
]
9995
},
@@ -9962,7 +10010,7 @@
10010
"zh-chs": "日期和时间",
10011
"zh-cht": "日期和時間",
10012
"xloc": [
9965
- "default.handlebars->27->1221"
10013
+ "default.handlebars->27->1229"
10014
]
10015
},
10016
{
@@ -9983,7 +10031,7 @@
10031
"zh-cht": "天",
10032
"xloc": [
10033
"default-mobile.handlebars->9->266",
9986
- "default.handlebars->27->739"
10034
+ "default.handlebars->27->747"
10035
]
10036
},
10037
{
@@ -10003,7 +10051,7 @@
10051
"zh-chs": "停用客户端控制模式(CCM)",
10052
"zh-cht": "停用客戶端控制模式(CCM)",
10053
"xloc": [
10006
- "default.handlebars->27->1356"
10054
+ "default.handlebars->27->1364"
10055
]
10056
},
10057
{
@@ -10044,10 +10092,10 @@
10092
"zh-chs": "默认",
10093
"zh-cht": "默認",
10094
"xloc": [
10047
- "default.handlebars->27->1744",
10048
- "default.handlebars->27->1792",
10049
- "default.handlebars->27->1803",
10050
- "default.handlebars->27->1859"
10095
+ "default.handlebars->27->1752",
10096
+ "default.handlebars->27->1800",
10097
+ "default.handlebars->27->1811",
10098
+ "default.handlebars->27->1867"
10099
]
10100
},
10101
{
@@ -10071,9 +10119,9 @@
10119
"default-mobile.handlebars->9->301",
10120
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
10121
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
10074
- "default.handlebars->27->1537",
10122
+ "default.handlebars->27->1545",
10123
"default.handlebars->27->519",
10076
- "default.handlebars->27->871",
10124
+ "default.handlebars->27->879",
10125
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
10126
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
10127
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -10101,7 +10149,7 @@
10149
"zh-cht": "刪除帳戶",
10150
"xloc": [
10151
"default-mobile.handlebars->9->84",
10104
- "default.handlebars->27->1238"
10152
+ "default.handlebars->27->1246"
10153
]
10154
},
10155
{
@@ -10121,7 +10169,7 @@
10169
"zh-chs": "删除帐户",
10170
"zh-cht": "刪除帳戶",
10171
"xloc": [
10124
- "default.handlebars->27->1711"
10172
+ "default.handlebars->27->1719"
10173
]
10174
},
10175
{
@@ -10164,8 +10212,8 @@
10212
"xloc": [
10213
"default-mobile.handlebars->9->403",
10214
"default-mobile.handlebars->9->406",
10167
- "default.handlebars->27->1349",
10168
- "default.handlebars->27->1379"
10215
+ "default.handlebars->27->1357",
10216
+ "default.handlebars->27->1387"
10217
]
10218
},
10219
{
@@ -10186,7 +10234,7 @@
10234
"zh-cht": "刪除節點",
10235
"xloc": [
10236
"default-mobile.handlebars->9->274",
10189
- "default.handlebars->27->765"
10237
+ "default.handlebars->27->773"
10238
]
10239
},
10240
{
@@ -10226,7 +10274,7 @@
10274
"zh-chs": "删除用户",
10275
"zh-cht": "刪除用戶",
10276
"xloc": [
10229
- "default.handlebars->27->1909"
10277
+ "default.handlebars->27->1917"
10278
]
10279
},
10280
{
@@ -10246,8 +10294,8 @@
10294
"zh-chs": "删除用户群组",
10295
"zh-cht": "刪除用戶群組",
10296
"xloc": [
10249
- "default.handlebars->27->1829",
10250
- "default.handlebars->27->1839"
10297
+ "default.handlebars->27->1837",
10298
+ "default.handlebars->27->1847"
10299
]
10300
},
10301
{
@@ -10267,7 +10315,7 @@
10315
"zh-chs": "删除用户群组",
10316
"zh-cht": "刪除用戶群組",
10317
"xloc": [
10270
- "default.handlebars->27->1790"
10318
+ "default.handlebars->27->1798"
10319
]
10320
},
10321
{
@@ -10287,7 +10335,7 @@
10335
"zh-chs": "删除用户{0}",
10336
"zh-cht": "刪除用戶{0}",
10337
"xloc": [
10290
- "default.handlebars->27->1932"
10338
+ "default.handlebars->27->1940"
10339
]
10340
},
10341
{
@@ -10308,7 +10356,7 @@
10356
"zh-cht": "刪除帳戶",
10357
"xloc": [
10358
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
10311
- "default.handlebars->27->1707",
10359
+ "default.handlebars->27->1715",
10360
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
10361
]
10362
},
@@ -10349,7 +10397,7 @@
10397
"zh-chs": "删除群组",
10398
"zh-cht": "刪除群組",
10399
"xloc": [
10352
- "default.handlebars->27->1786"
10400
+ "default.handlebars->27->1794"
10401
]
10402
},
10403
{
@@ -10389,7 +10437,7 @@
10437
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
10438
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
10439
"xloc": [
10392
- "default.handlebars->27->1597"
10440
+ "default.handlebars->27->1605"
10441
]
10442
},
10443
{
@@ -10411,8 +10459,8 @@
10459
"xloc": [
10460
"default-mobile.handlebars->9->124",
10461
"default-mobile.handlebars->9->303",
10414
- "default.handlebars->27->1539",
10415
- "default.handlebars->27->873"
10462
+ "default.handlebars->27->1547",
10463
+ "default.handlebars->27->881"
10464
]
10465
},
10466
{
@@ -10432,7 +10480,7 @@
10480
"zh-chs": "删除用户群组{0}?",
10481
"zh-cht": "刪除用戶群組{0}?",
10482
"xloc": [
10435
- "default.handlebars->27->1837"
10483
+ "default.handlebars->27->1845"
10484
]
10485
},
10486
{
@@ -10454,8 +10502,8 @@
10502
"xloc": [
10503
"default-mobile.handlebars->9->123",
10504
"default-mobile.handlebars->9->302",
10457
- "default.handlebars->27->1538",
10458
- "default.handlebars->27->872"
10505
+ "default.handlebars->27->1546",
10506
+ "default.handlebars->27->880"
10507
]
10508
},
10509
{
@@ -10495,7 +10543,7 @@
10543
"zh-chs": "删除:“{0}”",
10544
"zh-cht": "刪除:“{0}”",
10545
"xloc": [
10498
- "default.handlebars->27->1596"
10546
+ "default.handlebars->27->1604"
10547
]
10548
},
10549
{
@@ -10515,7 +10563,7 @@
10563
"zh-chs": "删除:“{0}”,{1}个元素已删除",
10564
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
10565
"xloc": [
10518
- "default.handlebars->27->1598"
10566
+ "default.handlebars->27->1606"
10567
]
10568
},
10569
{
@@ -10535,7 +10583,7 @@
10583
"zh-chs": "被拒绝",
10584
"zh-cht": "被拒絕",
10585
"xloc": [
10538
- "default.handlebars->27->803",
10586
+ "default.handlebars->27->811",
10587
"desktop.handlebars->3->8"
10588
]
10589
},
@@ -10632,19 +10680,19 @@
10680
"default-mobile.handlebars->9->340",
10681
"default-mobile.handlebars->9->395",
10682
"default-mobile.handlebars->9->408",
10635
- "default.handlebars->27->1258",
10636
- "default.handlebars->27->1295",
10637
- "default.handlebars->27->1381",
10638
- "default.handlebars->27->1795",
10639
- "default.handlebars->27->1805",
10640
- "default.handlebars->27->1806",
10641
- "default.handlebars->27->1835",
10683
+ "default.handlebars->27->1266",
10684
+ "default.handlebars->27->1303",
10685
+ "default.handlebars->27->1389",
10686
+ "default.handlebars->27->1803",
10687
+ "default.handlebars->27->1813",
10688
+ "default.handlebars->27->1814",
10689
+ "default.handlebars->27->1843",
10690
"default.handlebars->27->560",
10691
"default.handlebars->27->561",
10692
"default.handlebars->27->77",
10645
- "default.handlebars->27->798",
10646
- "default.handlebars->27->918",
10647
- "default.handlebars->27->928",
10693
+ "default.handlebars->27->806",
10694
+ "default.handlebars->27->926",
10695
+ "default.handlebars->27->936",
10696
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
10697
]
10698
},
@@ -10683,10 +10731,10 @@
10731
"zh-cht": "桌面",
10732
"xloc": [
10733
"default-mobile.handlebars->9->256",
10686
- "default.handlebars->27->1386",
10687
- "default.handlebars->27->1979",
10734
+ "default.handlebars->27->1394",
10735
+ "default.handlebars->27->1987",
10736
"default.handlebars->27->525",
10689
- "default.handlebars->27->843",
10737
+ "default.handlebars->27->851",
10738
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
10739
"default.handlebars->contextMenu->cxdesktop",
10740
"desktop.handlebars->3->24"
@@ -10729,8 +10777,8 @@
10777
"zh-chs": "桌面通知",
10778
"zh-cht": "桌面通知",
10779
"xloc": [
10732
- "default.handlebars->27->1308",
10733
- "default.handlebars->27->1885",
10780
+ "default.handlebars->27->1316",
10781
+ "default.handlebars->27->1893",
10782
"default.handlebars->27->596"
10783
]
10784
},
@@ -10751,8 +10799,8 @@
10799
"zh-chs": "桌面提示",
10800
"zh-cht": "桌面提示",
10801
"xloc": [
10754
- "default.handlebars->27->1307",
10755
- "default.handlebars->27->1884",
10802
+ "default.handlebars->27->1315",
10803
+ "default.handlebars->27->1892",
10804
"default.handlebars->27->595"
10805
]
10806
},
@@ -10773,8 +10821,8 @@
10821
"zh-chs": "桌面提示+工具栏",
10822
"zh-cht": "桌面提示+工具欄",
10823
"xloc": [
10776
- "default.handlebars->27->1305",
10777
- "default.handlebars->27->1882",
10824
+ "default.handlebars->27->1313",
10825
+ "default.handlebars->27->1890",
10826
"default.handlebars->27->593"
10827
]
10828
},
@@ -10816,8 +10864,8 @@
10864
"zh-chs": "桌面工具栏",
10865
"zh-cht": "桌面工具欄",
10866
"xloc": [
10819
- "default.handlebars->27->1306",
10820
- "default.handlebars->27->1883",
10867
+ "default.handlebars->27->1314",
10868
+ "default.handlebars->27->1891",
10869
"default.handlebars->27->594"
10870
]
10871
},
@@ -10838,7 +10886,7 @@
10886
"zh-chs": "桌面时段",
10887
"zh-cht": "桌面時段",
10888
"xloc": [
10841
- "default.handlebars->27->842"
10889
+ "default.handlebars->27->850"
10890
]
10891
},
10892
{
@@ -10921,9 +10969,9 @@
10969
"zh-chs": "设备",
10970
"zh-cht": "裝置",
10971
"xloc": [
10924
- "default.handlebars->27->1408",
10972
+ "default.handlebars->27->1416",
10973
"default.handlebars->27->183",
10926
- "default.handlebars->27->1951",
10974
+ "default.handlebars->27->1959",
10975
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
10976
]
10977
},
@@ -10945,7 +10993,7 @@
10993
"zh-cht": "裝置指令",
10994
"xloc": [
10995
"default-mobile.handlebars->9->265",
10948
- "default.handlebars->27->734"
10996
+ "default.handlebars->27->742"
10997
]
10998
},
10999
{
@@ -10965,14 +11013,14 @@
11013
"zh-chs": "设备组",
11014
"zh-cht": "裝置群",
11015
"xloc": [
10968
- "default.handlebars->27->1403",
10969
- "default.handlebars->27->1406",
10970
- "default.handlebars->27->1407",
10971
- "default.handlebars->27->1658",
10972
- "default.handlebars->27->1821",
10973
- "default.handlebars->27->1827",
10974
- "default.handlebars->27->1939",
10975
- "default.handlebars->27->1988"
11016
+ "default.handlebars->27->1411",
11017
+ "default.handlebars->27->1414",
11018
+ "default.handlebars->27->1415",
11019
+ "default.handlebars->27->1666",
11020
+ "default.handlebars->27->1829",
11021
+ "default.handlebars->27->1835",
11022
+ "default.handlebars->27->1947",
11023
+ "default.handlebars->27->1996"
11024
]
11025
},
11026
{
@@ -10993,7 +11041,7 @@
11041
"zh-cht": "裝置群用戶",
11042
"xloc": [
11043
"default-mobile.handlebars->9->450",
10996
- "default.handlebars->27->1469"
11044
+ "default.handlebars->27->1477"
11045
]
11046
},
11047
{
@@ -11014,11 +11062,11 @@
11062
"zh-cht": "裝置群",
11063
"xloc": [
11064
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
11017
- "default.handlebars->27->1674",
11018
- "default.handlebars->27->1780",
11019
- "default.handlebars->27->1808",
11020
- "default.handlebars->27->1879",
11021
- "default.handlebars->27->2023",
11065
+ "default.handlebars->27->1682",
11066
+ "default.handlebars->27->1788",
11067
+ "default.handlebars->27->1816",
11068
+ "default.handlebars->27->1887",
11069
+ "default.handlebars->27->2031",
11070
"default.handlebars->container->column_l->p2->p2info->7"
11071
]
11072
},
@@ -11059,7 +11107,7 @@
11107
"zh-chs": "设备位置",
11108
"zh-cht": "裝置位置",
11109
"xloc": [
11062
- "default.handlebars->27->766"
11110
+ "default.handlebars->27->774"
11111
]
11112
},
11113
{
@@ -11100,9 +11148,9 @@
11148
"zh-cht": "裝置名稱",
11149
"xloc": [
11150
"default-mobile.handlebars->9->278",
11103
- "default.handlebars->27->1987",
11151
+ "default.handlebars->27->1995",
11152
"default.handlebars->27->284",
11105
- "default.handlebars->27->796",
11153
+ "default.handlebars->27->804",
11154
"player.handlebars->3->9"
11155
]
11156
},
@@ -11164,8 +11212,8 @@
11212
"zh-chs": "设备连接。",
11213
"zh-cht": "裝置連接。",
11214
"xloc": [
11167
- "default.handlebars->27->1226",
11168
- "default.handlebars->27->1490"
11215
+ "default.handlebars->27->1234",
11216
+ "default.handlebars->27->1498"
11217
]
11218
},
11219
{
@@ -11185,8 +11233,8 @@
11233
"zh-chs": "设备断开连接。",
11234
"zh-cht": "裝置斷開連接。",
11235
"xloc": [
11188
- "default.handlebars->27->1227",
11189
- "default.handlebars->27->1491"
11236
+ "default.handlebars->27->1235",
11237
+ "default.handlebars->27->1499"
11238
]
11239
},
11240
{
@@ -11206,7 +11254,7 @@
11254
"zh-chs": "创建的设备组:{0}",
11255
"zh-cht": "設備組已創建:{0}",
11256
"xloc": [
11209
- "default.handlebars->27->1627"
11257
+ "default.handlebars->27->1635"
11258
]
11259
},
11260
{
@@ -11226,7 +11274,7 @@
11274
"zh-chs": "设备组已删除:{0}",
11275
"zh-cht": "設備組已刪除:{0}",
11276
"xloc": [
11229
- "default.handlebars->27->1628"
11277
+ "default.handlebars->27->1636"
11278
]
11279
},
11280
{
@@ -11246,7 +11294,7 @@
11294
"zh-chs": "设备组成员身份已更改:{0}",
11295
"zh-cht": "設備組成員身份已更改:{0}",
11296
"xloc": [
11249
- "default.handlebars->27->1629"
11297
+ "default.handlebars->27->1637"
11298
]
11299
},
11300
{
@@ -11286,7 +11334,7 @@
11334
"zh-chs": "设备组通知已更改",
11335
"zh-cht": "設備組通知已更改",
11336
"xloc": [
11289
- "default.handlebars->27->1624"
11337
+ "default.handlebars->27->1632"
11338
]
11339
},
11340
{
@@ -11306,7 +11354,7 @@
11354
"zh-chs": "未删除的设备组:{0}",
11355
"zh-cht": "未刪除的設備組:{0}",
11356
"xloc": [
11309
- "default.handlebars->27->1607"
11357
+ "default.handlebars->27->1615"
11358
]
11359
},
11360
{
@@ -11699,7 +11747,7 @@
11747
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
11748
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
11749
"xloc": [
11702
- "default.handlebars->27->1609"
11750
+ "default.handlebars->27->1617"
11751
]
11752
},
11753
{
@@ -11736,8 +11784,8 @@
11784
"zh-chs": "设备",
11785
"zh-cht": "裝置",
11786
"xloc": [
11739
- "default.handlebars->27->1781",
11740
- "default.handlebars->27->1809"
11787
+ "default.handlebars->27->1789",
11788
+ "default.handlebars->27->1817"
11789
]
11790
},
11791
{
@@ -11777,7 +11825,7 @@
11825
"zh-chs": "禁用的电子邮件两因素身份验证",
11826
"zh-cht": "禁用的電子郵件兩因素身份驗證",
11827
"xloc": [
11780
- "default.handlebars->27->1640"
11828
+ "default.handlebars->27->1648"
11829
]
11830
},
11831
{
@@ -11799,8 +11847,8 @@
11847
"xloc": [
11848
"default-mobile.handlebars->9->292",
11849
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
11802
- "default.handlebars->27->1318",
11803
- "default.handlebars->27->859",
11850
+ "default.handlebars->27->1326",
11851
+ "default.handlebars->27->867",
11852
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
11853
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
11854
"desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span",
@@ -11937,7 +11985,7 @@
11985
"zh-chs": "显示设备组名称",
11986
"zh-cht": "顯示裝置群名稱",
11987
"xloc": [
11940
- "default.handlebars->27->1225"
11988
+ "default.handlebars->27->1233"
11989
]
11990
},
11991
{
@@ -11957,7 +12005,7 @@
12005
"zh-chs": "显示名称",
12006
"zh-cht": "顯示名稱",
12007
"xloc": [
11960
- "default.handlebars->27->828"
12008
+ "default.handlebars->27->836"
12009
]
12010
},
12011
{
@@ -11977,7 +12025,7 @@
12025
"zh-chs": "显示公共连结",
12026
"zh-cht": "顯示公共鏈結",
12027
"xloc": [
11980
- "default.handlebars->27->1510"
12028
+ "default.handlebars->27->1518"
12029
]
12030
},
12031
{
@@ -11997,7 +12045,7 @@
12045
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
12046
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
12047
"xloc": [
12000
- "default.handlebars->27->1569"
12048
+ "default.handlebars->27->1577"
12049
]
12050
},
12051
{
@@ -12017,7 +12065,7 @@
12065
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
12066
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
12067
"xloc": [
12020
- "default.handlebars->27->1577"
12068
+ "default.handlebars->27->1585"
12069
]
12070
},
12071
{
@@ -12037,7 +12085,7 @@
12085
"zh-chs": "什么都不做",
12086
"zh-cht": "什麼都不做",
12087
"xloc": [
12040
- "default.handlebars->27->1362"
12088
+ "default.handlebars->27->1370"
12089
]
12090
},
12091
{
@@ -12057,10 +12105,10 @@
12105
"zh-chs": "域",
12106
"zh-cht": "域",
12107
"xloc": [
12060
- "default.handlebars->27->1745",
12061
- "default.handlebars->27->1793",
12062
- "default.handlebars->27->1802",
12063
- "default.handlebars->27->1858",
12108
+ "default.handlebars->27->1753",
12109
+ "default.handlebars->27->1801",
12110
+ "default.handlebars->27->1810",
12111
+ "default.handlebars->27->1866",
12112
"mstsc.handlebars->main->1->3->1->2->1->0",
12113
"mstsc.handlebars->main->1->3->1->2->3"
12114
]
@@ -12082,8 +12130,8 @@
12130
"zh-chs": "不要配置",
12131
"zh-cht": "不要配置",
12132
"xloc": [
12085
- "default.handlebars->27->1366",
12086
- "default.handlebars->27->1371"
12133
+ "default.handlebars->27->1374",
12134
+ "default.handlebars->27->1379"
12135
]
12136
},
12137
{
@@ -12103,7 +12151,7 @@
12151
"zh-chs": "不要连接到服务器",
12152
"zh-cht": "不要連接到伺服器",
12153
"xloc": [
12106
- "default.handlebars->27->1367"
12154
+ "default.handlebars->27->1375"
12155
]
12156
},
12157
{
@@ -12223,7 +12271,7 @@
12271
"zh-cht": "下載檔案",
12272
"xloc": [
12273
"default-mobile.handlebars->9->322",
12226
- "default.handlebars->27->892"
12274
+ "default.handlebars->27->900"
12275
]
12276
},
12277
{
@@ -12263,7 +12311,7 @@
12311
"zh-chs": "下载MeshCmd",
12312
"zh-cht": "下載MeshCmd",
12313
"xloc": [
12266
- "default.handlebars->27->788"
12314
+ "default.handlebars->27->796"
12315
]
12316
},
12317
{
@@ -12323,7 +12371,7 @@
12371
"zh-chs": "下载报告",
12372
"zh-cht": "下載報告",
12373
"xloc": [
12326
- "default.handlebars->27->1663",
12374
+ "default.handlebars->27->1671",
12375
"default.handlebars->container->column_l->p3->3->1->0->3"
12376
]
12377
},
@@ -12344,7 +12392,7 @@
12392
"zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。",
12393
"zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
12394
"xloc": [
12347
- "default.handlebars->27->781"
12395
+ "default.handlebars->27->789"
12396
]
12397
},
12398
{
@@ -12424,7 +12472,7 @@
12472
"zh-chs": "下载电源事件",
12473
"zh-cht": "下載電源事件",
12474
"xloc": [
12427
- "default.handlebars->27->740"
12475
+ "default.handlebars->27->748"
12476
]
12477
},
12478
{
@@ -12524,7 +12572,7 @@
12572
"zh-chs": "使用以下一种档案格式下载事件列表。",
12573
"zh-cht": "使用以下一種檔案格式下載事件列表。",
12574
"xloc": [
12527
- "default.handlebars->27->1664"
12575
+ "default.handlebars->27->1672"
12576
]
12577
},
12578
{
@@ -12544,7 +12592,7 @@
12592
"zh-chs": "使用以下一种档案格式下载用户列表。",
12593
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
12594
"xloc": [
12547
- "default.handlebars->27->1729"
12595
+ "default.handlebars->27->1737"
12596
]
12597
},
12598
{
@@ -12625,7 +12673,7 @@
12673
"zh-chs": "下载:“{0}”",
12674
"zh-cht": "下載:“{0}”",
12675
"xloc": [
12628
- "default.handlebars->27->1600"
12676
+ "default.handlebars->27->1608"
12677
]
12678
},
12679
{
@@ -12665,7 +12713,7 @@
12713
"zh-chs": "代理重复",
12714
"zh-cht": "代理重複",
12715
"xloc": [
12668
- "default.handlebars->27->2019"
12716
+ "default.handlebars->27->2027"
12717
]
12718
},
12719
{
@@ -12705,7 +12753,7 @@
12753
"zh-chs": "复制用户组",
12754
"zh-cht": "複製用戶群",
12755
"xloc": [
12708
- "default.handlebars->27->1797"
12756
+ "default.handlebars->27->1805"
12757
]
12758
},
12759
{
@@ -12742,8 +12790,8 @@
12790
"zh-chs": "持续时间",
12791
"zh-cht": "持續時間",
12792
"xloc": [
12745
- "default.handlebars->27->1973",
12746
- "default.handlebars->27->1993",
12793
+ "default.handlebars->27->1981",
12794
+ "default.handlebars->27->2001",
12795
"player.handlebars->3->2"
12796
]
12797
},
@@ -12764,7 +12812,7 @@
12812
"zh-chs": "在激活期间,代理将有权取得管理员密码信息。",
12813
"zh-cht": "在啟動期間,代理將有權取得管理員密碼訊息。",
12814
"xloc": [
12767
- "default.handlebars->27->1376"
12815
+ "default.handlebars->27->1384"
12816
]
12817
},
12818
{
@@ -12784,7 +12832,7 @@
12832
"zh-chs": "荷兰文(比利时)",
12833
"zh-cht": "荷蘭文(比利時)",
12834
"xloc": [
12787
- "default.handlebars->27->1065"
12835
+ "default.handlebars->27->1073"
12836
]
12837
},
12838
{
@@ -12804,7 +12852,7 @@
12852
"zh-chs": "荷兰文(标准)",
12853
"zh-cht": "荷蘭文(標準)",
12854
"xloc": [
12807
- "default.handlebars->27->1064"
12855
+ "default.handlebars->27->1072"
12856
]
12857
},
12858
{
@@ -13066,7 +13114,7 @@
13114
"zh-cht": "編輯裝置",
13115
"xloc": [
13116
"default-mobile.handlebars->9->283",
13069
- "default.handlebars->27->801"
13117
+ "default.handlebars->27->809"
13118
]
13119
},
13120
{
@@ -13089,10 +13137,10 @@
13137
"default-mobile.handlebars->9->409",
13138
"default-mobile.handlebars->9->411",
13139
"default-mobile.handlebars->9->429",
13092
- "default.handlebars->27->1382",
13093
- "default.handlebars->27->1412",
13094
- "default.handlebars->27->1435",
13095
- "default.handlebars->27->1447"
13140
+ "default.handlebars->27->1390",
13141
+ "default.handlebars->27->1420",
13142
+ "default.handlebars->27->1443",
13143
+ "default.handlebars->27->1455"
13144
]
13145
},
13146
{
@@ -13112,7 +13160,7 @@
13160
"zh-chs": "编辑设备组功能",
13161
"zh-cht": "編輯裝置群功能",
13162
"xloc": [
13115
- "default.handlebars->27->1398"
13163
+ "default.handlebars->27->1406"
13164
]
13165
},
13166
{
@@ -13132,8 +13180,8 @@
13180
"zh-chs": "编辑设备组权限",
13181
"zh-cht": "編輯裝置群權限",
13182
"xloc": [
13135
- "default.handlebars->27->1432",
13136
- "default.handlebars->27->1444"
13183
+ "default.handlebars->27->1440",
13184
+ "default.handlebars->27->1452"
13185
]
13186
},
13187
{
@@ -13153,7 +13201,7 @@
13201
"zh-chs": "编辑设备组用户同意",
13202
"zh-cht": "編輯裝置群用戶同意",
13203
"xloc": [
13156
- "default.handlebars->27->1383"
13204
+ "default.handlebars->27->1391"
13205
]
13206
},
13207
{
@@ -13174,7 +13222,7 @@
13222
"zh-cht": "編輯裝置筆記",
13223
"xloc": [
13224
"default-mobile.handlebars->9->423",
13177
- "default.handlebars->27->1425"
13225
+ "default.handlebars->27->1433"
13226
]
13227
},
13228
{
@@ -13194,8 +13242,8 @@
13242
"zh-chs": "编辑设备权限",
13243
"zh-cht": "編輯裝置權限",
13244
"xloc": [
13197
- "default.handlebars->27->1437",
13198
- "default.handlebars->27->1439"
13245
+ "default.handlebars->27->1445",
13246
+ "default.handlebars->27->1447"
13247
]
13248
},
13249
{
@@ -13235,7 +13283,7 @@
13283
"zh-chs": "编辑设备用户同意",
13284
"zh-cht": "編輯裝置用戶同意",
13285
"xloc": [
13238
- "default.handlebars->27->1385"
13286
+ "default.handlebars->27->1393"
13287
]
13288
},
13289
{
@@ -13278,7 +13326,7 @@
13326
"default-mobile.handlebars->9->273",
13327
"default.handlebars->27->575",
13328
"default.handlebars->27->578",
13281
- "default.handlebars->27->747"
13329
+ "default.handlebars->27->755"
13330
]
13331
},
13332
{
@@ -13299,7 +13347,7 @@
13347
"zh-cht": "編輯筆記",
13348
"xloc": [
13349
"default-mobile.handlebars->9->436",
13302
- "default.handlebars->27->1454"
13350
+ "default.handlebars->27->1462"
13351
]
13352
},
13353
{
@@ -13319,7 +13367,7 @@
13367
"zh-chs": "编辑用户同意",
13368
"zh-cht": "編輯用戶同意",
13369
"xloc": [
13322
- "default.handlebars->27->1384"
13370
+ "default.handlebars->27->1392"
13371
]
13372
},
13373
{
@@ -13339,7 +13387,7 @@
13387
"zh-chs": "编辑用户设备组权限",
13388
"zh-cht": "編輯用戶裝置群權限",
13389
"xloc": [
13342
- "default.handlebars->27->1445"
13390
+ "default.handlebars->27->1453"
13391
]
13392
},
13393
{
@@ -13359,7 +13407,7 @@
13407
"zh-chs": "编辑用户设备权限",
13408
"zh-cht": "編輯用戶裝置權限",
13409
"xloc": [
13362
- "default.handlebars->27->1440"
13410
+ "default.handlebars->27->1448"
13411
]
13412
},
13413
{
@@ -13379,7 +13427,7 @@
13427
"zh-chs": "编辑用户组",
13428
"zh-cht": "編輯用戶群",
13429
"xloc": [
13382
- "default.handlebars->27->1836"
13430
+ "default.handlebars->27->1844"
13431
]
13432
},
13433
{
@@ -13399,7 +13447,7 @@
13447
"zh-chs": "编辑用户组设备权限",
13448
"zh-cht": "編輯用戶群裝置權限",
13449
"xloc": [
13402
- "default.handlebars->27->1442"
13450
+ "default.handlebars->27->1450"
13451
]
13452
},
13453
{
@@ -13461,11 +13509,11 @@
13509
"zh-cht": "電郵",
13510
"xloc": [
13511
"default-mobile.handlebars->9->78",
13464
- "default.handlebars->27->1747",
13465
- "default.handlebars->27->1862",
13466
- "default.handlebars->27->1864",
13467
- "default.handlebars->27->1904",
13468
- "default.handlebars->27->1920",
13512
+ "default.handlebars->27->1755",
13513
+ "default.handlebars->27->1870",
13514
+ "default.handlebars->27->1872",
13515
+ "default.handlebars->27->1912",
13516
+ "default.handlebars->27->1928",
13517
"default.handlebars->27->334",
13518
"login-mobile.handlebars->5->42",
13519
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -13496,7 +13544,7 @@
13544
"zh-cht": "電郵地址變更",
13545
"xloc": [
13546
"default-mobile.handlebars->9->79",
13499
- "default.handlebars->27->1234"
13547
+ "default.handlebars->27->1242"
13548
]
13549
},
13550
{
@@ -13517,7 +13565,7 @@
13565
"zh-cht": "電郵認證",
13566
"xloc": [
13567
"default-mobile.handlebars->9->68",
13520
- "default.handlebars->27->1002"
13568
+ "default.handlebars->27->1010"
13569
]
13570
},
13571
{
@@ -13577,7 +13625,7 @@
13625
"zh-cht": "電郵驗證",
13626
"xloc": [
13627
"default-mobile.handlebars->9->77",
13580
- "default.handlebars->27->1232"
13628
+ "default.handlebars->27->1240"
13629
]
13630
},
13631
{
@@ -13617,7 +13665,7 @@
13665
"zh-chs": "电邮未验证",
13666
"zh-cht": "電郵未驗證",
13667
"xloc": [
13620
- "default.handlebars->27->1693"
13668
+ "default.handlebars->27->1701"
13669
]
13670
},
13671
{
@@ -13637,8 +13685,8 @@
13685
"zh-chs": "电邮已验证",
13686
"zh-cht": "電郵已驗證",
13687
"xloc": [
13640
- "default.handlebars->27->1694",
13641
- "default.handlebars->27->1856"
13688
+ "default.handlebars->27->1702",
13689
+ "default.handlebars->27->1864"
13690
]
13691
},
13692
{
@@ -13658,7 +13706,7 @@
13706
"zh-chs": "电邮已验证。",
13707
"zh-cht": "電郵已驗證。",
13708
"xloc": [
13661
- "default.handlebars->27->1753"
13709
+ "default.handlebars->27->1761"
13710
]
13711
},
13712
{
@@ -13678,7 +13726,7 @@
13726
"zh-chs": "电邮未验证",
13727
"zh-cht": "電郵未驗證",
13728
"xloc": [
13681
- "default.handlebars->27->1857"
13729
+ "default.handlebars->27->1865"
13730
]
13731
},
13732
{
@@ -13742,7 +13790,7 @@
13790
"zh-chs": "已通过电邮验证,并且需要重置密码。",
13791
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
13792
"xloc": [
13745
- "default.handlebars->27->1754"
13793
+ "default.handlebars->27->1762"
13794
]
13795
},
13796
{
@@ -13762,7 +13810,7 @@
13810
"zh-chs": "电邮/短信流量",
13811
"zh-cht": "電郵/短信流量",
13812
"xloc": [
13765
- "default.handlebars->27->2061"
13813
+ "default.handlebars->27->2069"
13814
]
13815
},
13816
{
@@ -13808,7 +13856,7 @@
13856
"zh-chs": "启用邀请代码",
13857
"zh-cht": "啟用邀請代碼",
13858
"xloc": [
13811
- "default.handlebars->27->1475"
13859
+ "default.handlebars->27->1483"
13860
]
13861
},
13862
{
@@ -13849,7 +13897,7 @@
13897
"zh-cht": "啟用電郵二因子鑑別。",
13898
"xloc": [
13899
"default-mobile.handlebars->9->70",
13852
- "default.handlebars->27->1004"
13900
+ "default.handlebars->27->1012"
13901
]
13902
},
13903
{
@@ -13889,7 +13937,7 @@
13937
"zh-chs": "已启用",
13938
"zh-cht": "已啟用",
13939
"xloc": [
13892
- "default.handlebars->27->1995"
13940
+ "default.handlebars->27->2003"
13941
]
13942
},
13943
{
@@ -13909,7 +13957,7 @@
13957
"zh-chs": "启用电子邮件两因素身份验证",
13958
"zh-cht": "啟用電子郵件兩因素身份驗證",
13959
"xloc": [
13912
- "default.handlebars->27->1639"
13960
+ "default.handlebars->27->1647"
13961
]
13962
},
13963
{
@@ -13949,7 +13997,7 @@
13997
"zh-chs": "时间结束",
13998
"zh-cht": "時間結束",
13999
"xloc": [
13952
- "default.handlebars->27->1992"
14000
+ "default.handlebars->27->2000"
14001
]
14002
},
14003
{
@@ -13969,7 +14017,7 @@
14017
"zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
14018
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
14019
"xloc": [
13972
- "default.handlebars->27->1562"
14020
+ "default.handlebars->27->1570"
14021
]
14022
},
14023
{
@@ -13989,7 +14037,7 @@
14037
"zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
14038
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
14039
"xloc": [
13992
- "default.handlebars->27->1563"
14040
+ "default.handlebars->27->1571"
14041
]
14042
},
14043
{
@@ -14009,7 +14057,7 @@
14057
"zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
14058
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
14059
"xloc": [
14012
- "default.handlebars->27->1560"
14060
+ "default.handlebars->27->1568"
14061
]
14062
},
14063
{
@@ -14029,7 +14077,7 @@
14077
"zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
14078
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
14079
"xloc": [
14032
- "default.handlebars->27->1561"
14080
+ "default.handlebars->27->1569"
14081
]
14082
},
14083
{
@@ -14049,7 +14097,7 @@
14097
"zh-chs": "英文",
14098
"zh-cht": "英文",
14099
"xloc": [
14052
- "default.handlebars->27->1066"
14100
+ "default.handlebars->27->1074"
14101
]
14102
},
14103
{
@@ -14069,7 +14117,7 @@
14117
"zh-chs": "英文(澳洲)",
14118
"zh-cht": "英文(澳洲)",
14119
"xloc": [
14072
- "default.handlebars->27->1067"
14120
+ "default.handlebars->27->1075"
14121
]
14122
},
14123
{
@@ -14089,7 +14137,7 @@
14137
"zh-chs": "英文(伯利茲)",
14138
"zh-cht": "英文(伯利茲)",
14139
"xloc": [
14092
- "default.handlebars->27->1068"
14140
+ "default.handlebars->27->1076"
14141
]
14142
},
14143
{
@@ -14109,7 +14157,7 @@
14157
"zh-chs": "英文(加拿大)",
14158
"zh-cht": "英文(加拿大)",
14159
"xloc": [
14112
- "default.handlebars->27->1069"
14160
+ "default.handlebars->27->1077"
14161
]
14162
},
14163
{
@@ -14129,7 +14177,7 @@
14177
"zh-chs": "英文(爱尔兰)",
14178
"zh-cht": "英文(愛爾蘭)",
14179
"xloc": [
14132
- "default.handlebars->27->1070"
14180
+ "default.handlebars->27->1078"
14181
]
14182
},
14183
{
@@ -14149,7 +14197,7 @@
14197
"zh-chs": "英文(牙买加)",
14198
"zh-cht": "英文(牙買加)",
14199
"xloc": [
14152
- "default.handlebars->27->1071"
14200
+ "default.handlebars->27->1079"
14201
]
14202
},
14203
{
@@ -14169,7 +14217,7 @@
14217
"zh-chs": "英文(纽西兰)",
14218
"zh-cht": "英文(紐西蘭)",
14219
"xloc": [
14172
- "default.handlebars->27->1072"
14220
+ "default.handlebars->27->1080"
14221
]
14222
},
14223
{
@@ -14189,7 +14237,7 @@
14237
"zh-chs": "英文(菲律宾)",
14238
"zh-cht": "英文(菲律賓)",
14239
"xloc": [
14192
- "default.handlebars->27->1073"
14240
+ "default.handlebars->27->1081"
14241
]
14242
},
14243
{
@@ -14209,7 +14257,7 @@
14257
"zh-chs": "英语(南非)",
14258
"zh-cht": "英語(南非)",
14259
"xloc": [
14212
- "default.handlebars->27->1074"
14260
+ "default.handlebars->27->1082"
14261
]
14262
},
14263
{
@@ -14229,7 +14277,7 @@
14277
"zh-chs": "英文(特立尼达和多巴哥)",
14278
"zh-cht": "英文(特立尼達和多巴哥)",
14279
"xloc": [
14232
- "default.handlebars->27->1075"
14280
+ "default.handlebars->27->1083"
14281
]
14282
},
14283
{
@@ -14249,7 +14297,7 @@
14297
"zh-chs": "英文(英国)",
14298
"zh-cht": "英文(英國)",
14299
"xloc": [
14252
- "default.handlebars->27->1076"
14300
+ "default.handlebars->27->1084"
14301
]
14302
},
14303
{
@@ -14269,7 +14317,7 @@
14317
"zh-chs": "美国英文",
14318
"zh-cht": "美國英語",
14319
"xloc": [
14272
- "default.handlebars->27->1077"
14320
+ "default.handlebars->27->1085"
14321
]
14322
},
14323
{
@@ -14289,7 +14337,7 @@
14337
"zh-chs": "英文(津巴布韦)",
14338
"zh-cht": "英文(津巴布韋)",
14339
"xloc": [
14292
- "default.handlebars->27->1078"
14340
+ "default.handlebars->27->1086"
14341
]
14342
},
14343
{
@@ -14309,8 +14357,8 @@
14357
"zh-chs": "输入",
14358
"zh-cht": "輸入",
14359
"xloc": [
14312
- "default.handlebars->27->1260",
14313
- "default.handlebars->27->1261"
14360
+ "default.handlebars->27->1268",
14361
+ "default.handlebars->27->1269"
14362
]
14363
},
14364
{
@@ -14330,7 +14378,7 @@
14378
"zh-chs": "输入管理领域名称的逗号分隔列表。",
14379
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
14380
"xloc": [
14333
- "default.handlebars->27->1758"
14381
+ "default.handlebars->27->1766"
14382
]
14383
},
14384
{
@@ -14370,7 +14418,7 @@
14418
"zh-chs": "输入文本,然后单击“确定”以使用美式英语键盘远程输入文本。在继续操作之前,请确保将远程鼠标放置在正确的位置。",
14419
"zh-cht": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
14420
"xloc": [
14373
- "default.handlebars->27->822",
14421
+ "default.handlebars->27->830",
14422
"desktop.handlebars->3->22"
14423
]
14424
},
@@ -14433,7 +14481,7 @@
14481
"zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
14482
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
14483
"xloc": [
14436
- "default.handlebars->27->999"
14484
+ "default.handlebars->27->1007"
14485
]
14486
},
14487
{
@@ -14493,7 +14541,7 @@
14541
"zh-chs": "世界文",
14542
"zh-cht": "世界語",
14543
"xloc": [
14496
- "default.handlebars->27->1079"
14544
+ "default.handlebars->27->1087"
14545
]
14546
},
14547
{
@@ -14513,7 +14561,7 @@
14561
"zh-chs": "爱沙尼亚文",
14562
"zh-cht": "愛沙尼亞語",
14563
"xloc": [
14516
- "default.handlebars->27->1080"
14564
+ "default.handlebars->27->1088"
14565
]
14566
},
14567
{
@@ -14533,7 +14581,7 @@
14581
"zh-chs": "事件详情",
14582
"zh-cht": "事件詳情",
14583
"xloc": [
14536
- "default.handlebars->27->905"
14584
+ "default.handlebars->27->913"
14585
]
14586
},
14587
{
@@ -14553,7 +14601,7 @@
14601
"zh-chs": "事件列表输出",
14602
"zh-cht": "事件列表輸出",
14603
"xloc": [
14556
- "default.handlebars->27->1669"
14604
+ "default.handlebars->27->1677"
14605
]
14606
},
14607
{
@@ -14639,7 +14687,7 @@
14687
"zh-cht": "到期時間",
14688
"xloc": [
14689
"default.handlebars->27->185",
14642
- "default.handlebars->27->713"
14690
+ "default.handlebars->27->728"
14691
]
14692
},
14693
{
@@ -14699,7 +14747,7 @@
14747
"zh-chs": "扩充式ASCII",
14748
"zh-cht": "擴充式ASCII",
14749
"xloc": [
14702
- "default.handlebars->27->850"
14750
+ "default.handlebars->27->858"
14751
]
14752
},
14753
{
@@ -14739,7 +14787,7 @@
14787
"zh-chs": "外部",
14788
"zh-cht": "外部",
14789
"xloc": [
14742
- "default.handlebars->27->2046"
14790
+ "default.handlebars->27->2054"
14791
]
14792
},
14793
{
@@ -14779,7 +14827,7 @@
14827
"zh-chs": "FYRO马其顿语",
14828
"zh-cht": "FYRO馬其頓語",
14829
"xloc": [
14782
- "default.handlebars->27->1130"
14830
+ "default.handlebars->27->1138"
14831
]
14832
},
14833
{
@@ -14799,7 +14847,7 @@
14847
"zh-chs": "法罗语",
14848
"zh-cht": "法羅語",
14849
"xloc": [
14802
- "default.handlebars->27->1081"
14850
+ "default.handlebars->27->1089"
14851
]
14852
},
14853
{
@@ -14839,7 +14887,7 @@
14887
"zh-chs": "本地用户拒绝后无法启动远程桌面",
14888
"zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
14889
"xloc": [
14842
- "default.handlebars->27->1585"
14890
+ "default.handlebars->27->1593"
14891
]
14892
},
14893
{
@@ -14859,7 +14907,7 @@
14907
"zh-chs": "本地用户拒绝后无法启动远程文件",
14908
"zh-cht": "本地用戶拒絕後無法啟動遠程文件",
14909
"xloc": [
14862
- "default.handlebars->27->1592"
14910
+ "default.handlebars->27->1600"
14911
]
14912
},
14913
{
@@ -14879,7 +14927,7 @@
14927
"zh-chs": "无法启动远程终端接合{0}({1})",
14928
"zh-cht": "無法啟動遠程終端接合{0}({1})",
14929
"xloc": [
14882
- "default.handlebars->27->804",
14930
+ "default.handlebars->27->812",
14931
"desktop.handlebars->3->9"
14932
]
14933
},
@@ -14900,7 +14948,7 @@
14948
"zh-chs": "波斯文(波斯文)",
14949
"zh-cht": "波斯語(波斯語)",
14950
"xloc": [
14903
- "default.handlebars->27->1082"
14951
+ "default.handlebars->27->1090"
14952
]
14953
},
14954
{
@@ -14942,7 +14990,7 @@
14990
"zh-chs": "功能",
14991
"zh-cht": "功能",
14992
"xloc": [
14945
- "default.handlebars->27->1304"
14993
+ "default.handlebars->27->1312"
14994
]
14995
},
14996
{
@@ -14962,7 +15010,7 @@
15010
"zh-chs": "斐济",
15011
"zh-cht": "斐濟",
15012
"xloc": [
14965
- "default.handlebars->27->1083"
15013
+ "default.handlebars->27->1091"
15014
]
15015
},
15016
{
@@ -15004,7 +15052,7 @@
15052
"xloc": [
15053
"default-mobile.handlebars->9->306",
15054
"default.handlebars->27->517",
15007
- "default.handlebars->27->876"
15055
+ "default.handlebars->27->884"
15056
]
15057
},
15058
{
@@ -15024,8 +15072,8 @@
15072
"zh-chs": "档案操作",
15073
"zh-cht": "檔案操作",
15074
"xloc": [
15027
- "default.handlebars->27->861",
15028
- "default.handlebars->27->863"
15075
+ "default.handlebars->27->869",
15076
+ "default.handlebars->27->871"
15077
]
15078
},
15079
{
@@ -15065,7 +15113,7 @@
15113
"zh-chs": "文件系统驱动",
15114
"zh-cht": "FileSystemDriver",
15115
"xloc": [
15068
- "default.handlebars->27->831"
15116
+ "default.handlebars->27->839"
15117
]
15118
},
15119
{
@@ -15087,8 +15135,8 @@
15135
"xloc": [
15136
"default-mobile.handlebars->9->167",
15137
"default-mobile.handlebars->9->257",
15090
- "default.handlebars->27->1393",
15091
- "default.handlebars->27->1980",
15138
+ "default.handlebars->27->1401",
15139
+ "default.handlebars->27->1988",
15140
"default.handlebars->27->251",
15141
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
15142
"default.handlebars->contextMenu->cxfiles"
@@ -15131,8 +15179,8 @@
15179
"zh-chs": "档案通知",
15180
"zh-cht": "檔案通知",
15181
"xloc": [
15134
- "default.handlebars->27->1312",
15135
- "default.handlebars->27->1889",
15182
+ "default.handlebars->27->1320",
15183
+ "default.handlebars->27->1897",
15184
"default.handlebars->27->600"
15185
]
15186
},
@@ -15153,8 +15201,8 @@
15201
"zh-chs": "档案提示",
15202
"zh-cht": "檔案提示",
15203
"xloc": [
15156
- "default.handlebars->27->1311",
15157
- "default.handlebars->27->1888",
15204
+ "default.handlebars->27->1319",
15205
+ "default.handlebars->27->1896",
15206
"default.handlebars->27->599"
15207
]
15208
},
@@ -15198,7 +15246,7 @@
15246
"zh-chs": "录制会话已完成,{0}秒",
15247
"zh-cht": "錄製會話已完成,{0}秒",
15248
"xloc": [
15201
- "default.handlebars->27->1558"
15249
+ "default.handlebars->27->1566"
15250
]
15251
},
15252
{
@@ -15218,7 +15266,7 @@
15266
"zh-chs": "芬兰",
15267
"zh-cht": "芬蘭",
15268
"xloc": [
15221
- "default.handlebars->27->1084"
15269
+ "default.handlebars->27->1092"
15270
]
15271
},
15272
{
@@ -15365,8 +15413,8 @@
15413
"zh-chs": "下次登录时强制重置密码。",
15414
"zh-cht": "下次登入時強制重置密碼。",
15415
"xloc": [
15368
- "default.handlebars->27->1752",
15369
- "default.handlebars->27->1929"
15416
+ "default.handlebars->27->1760",
15417
+ "default.handlebars->27->1937"
15418
]
15419
},
15420
{
@@ -15449,7 +15497,7 @@
15497
"zh-chs": "格式化",
15498
"zh-cht": "格式化",
15499
"xloc": [
15452
- "default.handlebars->27->1660"
15500
+ "default.handlebars->27->1668"
15501
]
15502
},
15503
{
@@ -15490,8 +15538,8 @@
15538
"zh-chs": "自由",
15539
"zh-cht": "自由",
15540
"xloc": [
15493
- "default.handlebars->27->2004",
15494
- "default.handlebars->27->2006"
15541
+ "default.handlebars->27->2012",
15542
+ "default.handlebars->27->2014"
15543
]
15544
},
15545
{
@@ -15532,7 +15580,7 @@
15580
"zh-chs": "法文(比利时)",
15581
"zh-cht": "法語(比利時)",
15582
"xloc": [
15535
- "default.handlebars->27->1086"
15583
+ "default.handlebars->27->1094"
15584
]
15585
},
15586
{
@@ -15552,7 +15600,7 @@
15600
"zh-chs": "法文(加拿大)",
15601
"zh-cht": "法語(加拿大)",
15602
"xloc": [
15555
- "default.handlebars->27->1087"
15603
+ "default.handlebars->27->1095"
15604
]
15605
},
15606
{
@@ -15572,7 +15620,7 @@
15620
"zh-chs": "法文(法国)",
15621
"zh-cht": "法語(法國)",
15622
"xloc": [
15575
- "default.handlebars->27->1088"
15623
+ "default.handlebars->27->1096"
15624
]
15625
},
15626
{
@@ -15592,7 +15640,7 @@
15640
"zh-chs": "法文(卢森堡)",
15641
"zh-cht": "法語(盧森堡)",
15642
"xloc": [
15595
- "default.handlebars->27->1089"
15643
+ "default.handlebars->27->1097"
15644
]
15645
},
15646
{
@@ -15612,7 +15660,7 @@
15660
"zh-chs": "法文(摩纳哥)",
15661
"zh-cht": "法語(摩納哥)",
15662
"xloc": [
15615
- "default.handlebars->27->1090"
15663
+ "default.handlebars->27->1098"
15664
]
15665
},
15666
{
@@ -15632,7 +15680,7 @@
15680
"zh-chs": "法文(标准)",
15681
"zh-cht": "法語(標準)",
15682
"xloc": [
15635
- "default.handlebars->27->1085"
15683
+ "default.handlebars->27->1093"
15684
]
15685
},
15686
{
@@ -15652,7 +15700,7 @@
15700
"zh-chs": "法文(瑞士)",
15701
"zh-cht": "法語(瑞士)",
15702
"xloc": [
15655
- "default.handlebars->27->1091"
15703
+ "default.handlebars->27->1099"
15704
]
15705
},
15706
{
@@ -15672,7 +15720,7 @@
15720
"zh-chs": "弗里斯兰文",
15721
"zh-cht": "弗里斯蘭語",
15722
"xloc": [
15675
- "default.handlebars->27->1092"
15723
+ "default.handlebars->27->1100"
15724
]
15725
},
15726
{
@@ -15692,7 +15740,7 @@
15740
"zh-chs": "弗留利",
15741
"zh-cht": "弗留利",
15742
"xloc": [
15695
- "default.handlebars->27->1093"
15743
+ "default.handlebars->27->1101"
15744
]
15745
},
15746
{
@@ -15716,9 +15764,9 @@
15764
"default-mobile.handlebars->9->401",
15765
"default-mobile.handlebars->9->410",
15766
"default-mobile.handlebars->9->428",
15719
- "default.handlebars->27->1267",
15720
- "default.handlebars->27->1411",
15721
- "default.handlebars->27->1764"
15767
+ "default.handlebars->27->1275",
15768
+ "default.handlebars->27->1419",
15769
+ "default.handlebars->27->1772"
15770
]
15771
},
15772
{
@@ -15738,7 +15786,7 @@
15786
"zh-chs": "完整管理员(保留所有权利)",
15787
"zh-cht": "完整管理員(保留所有權利)",
15788
"xloc": [
15741
- "default.handlebars->27->1446"
15789
+ "default.handlebars->27->1454"
15790
]
15791
},
15792
{
@@ -15837,7 +15885,7 @@
15885
"zh-chs": "完整管理员",
15886
"zh-cht": "完整管理員",
15887
"xloc": [
15840
- "default.handlebars->27->1850"
15888
+ "default.handlebars->27->1858"
15889
]
15890
},
15891
{
@@ -15858,7 +15906,7 @@
15906
"zh-cht": "GPU",
15907
"xloc": [
15908
"default-mobile.handlebars->9->379",
15861
- "default.handlebars->27->967"
15909
+ "default.handlebars->27->975"
15910
]
15911
},
15912
{
@@ -15878,7 +15926,7 @@
15926
"zh-chs": "盖尔文(爱尔兰)",
15927
"zh-cht": "蓋爾語(愛爾蘭)",
15928
"xloc": [
15881
- "default.handlebars->27->1095"
15929
+ "default.handlebars->27->1103"
15930
]
15931
},
15932
{
@@ -15898,7 +15946,7 @@
15946
"zh-chs": "盖尔文(苏格兰文)",
15947
"zh-cht": "蓋爾語(蘇格蘭語)",
15948
"xloc": [
15901
- "default.handlebars->27->1094"
15949
+ "default.handlebars->27->1102"
15950
]
15951
},
15952
{
@@ -15918,7 +15966,7 @@
15966
"zh-chs": "加拉契文",
15967
"zh-cht": "加拉契語",
15968
"xloc": [
15921
- "default.handlebars->27->1096"
15969
+ "default.handlebars->27->1104"
15970
]
15971
},
15972
{
@@ -16044,7 +16092,7 @@
16092
"zh-chs": "格鲁吉亚文",
16093
"zh-cht": "格魯吉亞文",
16094
"xloc": [
16047
- "default.handlebars->27->1097"
16095
+ "default.handlebars->27->1105"
16096
]
16097
},
16098
{
@@ -16064,7 +16112,7 @@
16112
"zh-chs": "德文(奥地利)",
16113
"zh-cht": "德語(奧地利)",
16114
"xloc": [
16067
- "default.handlebars->27->1099"
16115
+ "default.handlebars->27->1107"
16116
]
16117
},
16118
{
@@ -16084,7 +16132,7 @@
16132
"zh-chs": "德文(德国)",
16133
"zh-cht": "德文(德國)",
16134
"xloc": [
16087
- "default.handlebars->27->1100"
16135
+ "default.handlebars->27->1108"
16136
]
16137
},
16138
{
@@ -16104,7 +16152,7 @@
16152
"zh-chs": "德文(列支敦士登)",
16153
"zh-cht": "德文(列支敦士登)",
16154
"xloc": [
16107
- "default.handlebars->27->1101"
16155
+ "default.handlebars->27->1109"
16156
]
16157
},
16158
{
@@ -16124,7 +16172,7 @@
16172
"zh-chs": "德文(卢森堡)",
16173
"zh-cht": "德語(盧森堡)",
16174
"xloc": [
16127
- "default.handlebars->27->1102"
16175
+ "default.handlebars->27->1110"
16176
]
16177
},
16178
{
@@ -16144,7 +16192,7 @@
16192
"zh-chs": "德文(标准)",
16193
"zh-cht": "德語(標準)",
16194
"xloc": [
16147
- "default.handlebars->27->1098"
16195
+ "default.handlebars->27->1106"
16196
]
16197
},
16198
{
@@ -16164,7 +16212,7 @@
16212
"zh-chs": "德文(瑞士)",
16213
"zh-cht": "德文(瑞士)",
16214
"xloc": [
16167
- "default.handlebars->27->1103"
16215
+ "default.handlebars->27->1111"
16216
]
16217
},
16218
{
@@ -16225,7 +16273,7 @@
16273
"zh-chs": "正在获取剪贴板内容,{0}个字节",
16274
"zh-cht": "正在獲取剪貼板內容,{0}個字節",
16275
"xloc": [
16228
- "default.handlebars->27->1572"
16276
+ "default.handlebars->27->1580"
16277
]
16278
},
16279
{
@@ -16286,7 +16334,7 @@
16334
"zh-chs": "好",
16335
"zh-cht": "好",
16336
"xloc": [
16289
- "default.handlebars->27->1263"
16337
+ "default.handlebars->27->1271"
16338
]
16339
},
16340
{
@@ -16331,8 +16379,8 @@
16379
"zh-chs": "Google云端硬盘备份",
16380
"zh-cht": "Google雲端硬盤備份",
16381
"xloc": [
16334
- "default.handlebars->27->1274",
16335
- "default.handlebars->27->1277",
16382
+ "default.handlebars->27->1282",
16383
+ "default.handlebars->27->1285",
16384
"default.handlebars->27->201"
16385
]
16386
},
@@ -16353,7 +16401,7 @@
16401
"zh-chs": "Google云端硬盘控制台",
16402
"zh-cht": "Google雲端硬盤控制台",
16403
"xloc": [
16356
- "default.handlebars->27->1271"
16404
+ "default.handlebars->27->1279"
16405
]
16406
},
16407
{
@@ -16393,7 +16441,7 @@
16441
"zh-chs": "Google云端硬盘备份当前处于活动状态。",
16442
"zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
16443
"xloc": [
16396
- "default.handlebars->27->1275"
16444
+ "default.handlebars->27->1283"
16445
]
16446
},
16447
{
@@ -16413,7 +16461,7 @@
16461
"zh-chs": "希腊文",
16462
"zh-cht": "希臘文",
16463
"xloc": [
16416
- "default.handlebars->27->1104"
16464
+ "default.handlebars->27->1112"
16465
]
16466
},
16467
{
@@ -16455,8 +16503,8 @@
16503
"zh-chs": "集体指令",
16504
"zh-cht": "集體指令",
16505
"xloc": [
16458
- "default.handlebars->27->1708",
16459
- "default.handlebars->27->1787",
16506
+ "default.handlebars->27->1716",
16507
+ "default.handlebars->27->1795",
16508
"default.handlebars->27->463",
16509
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
16510
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -16480,7 +16528,7 @@
16528
"zh-chs": "通过...分组",
16529
"zh-cht": "通過...分群",
16530
"xloc": [
16483
- "default.handlebars->27->1656"
16531
+ "default.handlebars->27->1664"
16532
]
16533
},
16534
{
@@ -16500,7 +16548,7 @@
16548
"zh-chs": "组标识符",
16549
"zh-cht": "群標識符",
16550
"xloc": [
16503
- "default.handlebars->27->1804"
16551
+ "default.handlebars->27->1812"
16552
]
16553
},
16554
{
@@ -16520,7 +16568,7 @@
16568
"zh-chs": "群组成员",
16569
"zh-cht": "群組成員",
16570
"xloc": [
16523
- "default.handlebars->27->1813"
16571
+ "default.handlebars->27->1821"
16572
]
16573
},
16574
{
@@ -16540,7 +16588,7 @@
16588
"zh-chs": "用户{0}的群组权限。",
16589
"zh-cht": "用戶{0}的群組權限。",
16590
"xloc": [
16543
- "default.handlebars->27->1410"
16591
+ "default.handlebars->27->1418"
16592
]
16593
},
16594
{
@@ -16560,7 +16608,7 @@
16608
"zh-chs": "{0}的群组权限。",
16609
"zh-cht": "{0}的群組權限。",
16610
"xloc": [
16563
- "default.handlebars->27->1409"
16611
+ "default.handlebars->27->1417"
16612
]
16613
},
16614
{
@@ -16641,7 +16689,7 @@
16689
"zh-chs": "古久拉提",
16690
"zh-cht": "古久拉提",
16691
"xloc": [
16644
- "default.handlebars->27->1105"
16692
+ "default.handlebars->27->1113"
16693
]
16694
},
16695
{
@@ -16684,7 +16732,7 @@
16732
"zh-chs": "海地文",
16733
"zh-cht": "海地文",
16734
"xloc": [
16687
- "default.handlebars->27->1106"
16735
+ "default.handlebars->27->1114"
16736
]
16737
},
16738
{
@@ -16724,7 +16772,7 @@
16772
"zh-chs": "强行断开代理",
16773
"zh-cht": "強行斷開代理",
16774
"xloc": [
16727
- "default.handlebars->27->994"
16775
+ "default.handlebars->27->1002"
16776
]
16777
},
16778
{
@@ -16744,7 +16792,7 @@
16792
"zh-chs": "堆总数",
16793
"zh-cht": "堆總數",
16794
"xloc": [
16747
- "default.handlebars->27->2048"
16795
+ "default.handlebars->27->2056"
16796
]
16797
},
16798
{
@@ -16764,7 +16812,7 @@
16812
"zh-chs": "堆使用",
16813
"zh-cht": "堆使用",
16814
"xloc": [
16767
- "default.handlebars->27->2047"
16815
+ "default.handlebars->27->2055"
16816
]
16817
},
16818
{
@@ -16784,7 +16832,7 @@
16832
"zh-chs": "希伯来文",
16833
"zh-cht": "希伯來文",
16834
"xloc": [
16787
- "default.handlebars->27->1107"
16835
+ "default.handlebars->27->1115"
16836
]
16837
},
16838
{
@@ -16825,7 +16873,7 @@
16873
"zh-chs": "帮助翻译MeshCentral",
16874
"zh-cht": "幫助翻譯MeshCentral",
16875
"xloc": [
16828
- "default.handlebars->27->1222"
16876
+ "default.handlebars->27->1230"
16877
]
16878
},
16879
{
@@ -16929,7 +16977,7 @@
16977
"zh-chs": "印地文",
16978
"zh-cht": "印地文",
16979
"xloc": [
16932
- "default.handlebars->27->1108"
16980
+ "default.handlebars->27->1116"
16981
]
16982
},
16983
{
@@ -16967,7 +17015,7 @@
17015
"zh-cht": "保存1個項目進行複製",
17016
"xloc": [
17017
"default-mobile.handlebars->9->315",
16970
- "default.handlebars->27->886"
17018
+ "default.handlebars->27->894"
17019
]
17020
},
17021
{
@@ -16988,7 +17036,7 @@
17036
"zh-cht": "保存1個項目進行移動",
17037
"xloc": [
17038
"default-mobile.handlebars->9->319",
16991
- "default.handlebars->27->890"
17039
+ "default.handlebars->27->898"
17040
]
17041
},
17042
{
@@ -17009,7 +17057,7 @@
17057
"zh-cht": "保留{0}個項目進行複製",
17058
"xloc": [
17059
"default-mobile.handlebars->9->313",
17012
- "default.handlebars->27->884"
17060
+ "default.handlebars->27->892"
17061
]
17062
},
17063
{
@@ -17030,7 +17078,7 @@
17078
"zh-cht": "保存{0}個項目以進行移動",
17079
"xloc": [
17080
"default-mobile.handlebars->9->317",
17033
- "default.handlebars->27->888"
17081
+ "default.handlebars->27->896"
17082
]
17083
},
17084
{
@@ -17051,7 +17099,7 @@
17099
"zh-cht": "保存{0}項目{1}給{2}",
17100
"xloc": [
17101
"default-mobile.handlebars->9->129",
17054
- "default.handlebars->27->1545"
17102
+ "default.handlebars->27->1553"
17103
]
17104
},
17105
{
@@ -17077,7 +17125,7 @@
17125
"default-mobile.handlebars->9->279",
17126
"default.handlebars->27->285",
17127
"default.handlebars->27->557",
17080
- "default.handlebars->27->797"
17128
+ "default.handlebars->27->805"
17129
]
17130
},
17131
{
@@ -17097,7 +17145,7 @@
17145
"zh-chs": "主机名同步",
17146
"zh-cht": "主機名同步",
17147
"xloc": [
17100
- "default.handlebars->27->1302"
17148
+ "default.handlebars->27->1310"
17149
]
17150
},
17151
{
@@ -17117,7 +17165,7 @@
17165
"zh-chs": "匈牙利文",
17166
"zh-cht": "匈牙利文",
17167
"xloc": [
17120
- "default.handlebars->27->1109"
17168
+ "default.handlebars->27->1117"
17169
]
17170
},
17171
{
@@ -17182,9 +17230,9 @@
17230
"xloc": [
17231
"default-mobile.handlebars->9->348",
17232
"default-mobile.handlebars->9->352",
17185
- "default.handlebars->27->926",
17186
- "default.handlebars->27->936",
17187
- "default.handlebars->27->940"
17233
+ "default.handlebars->27->934",
17234
+ "default.handlebars->27->944",
17235
+ "default.handlebars->27->948"
17236
]
17237
},
17238
{
@@ -17206,9 +17254,9 @@
17254
"xloc": [
17255
"default-mobile.handlebars->9->346",
17256
"default-mobile.handlebars->9->350",
17209
- "default.handlebars->27->924",
17210
- "default.handlebars->27->934",
17211
- "default.handlebars->27->938"
17257
+ "default.handlebars->27->932",
17258
+ "default.handlebars->27->942",
17259
+ "default.handlebars->27->946"
17260
]
17261
},
17262
{
@@ -17230,10 +17278,10 @@
17278
"xloc": [
17279
"default-mobile.handlebars->9->345",
17280
"default-mobile.handlebars->9->347",
17233
- "default.handlebars->27->923",
17234
- "default.handlebars->27->925",
17281
+ "default.handlebars->27->931",
17282
"default.handlebars->27->933",
17236
- "default.handlebars->27->935"
17283
+ "default.handlebars->27->941",
17284
+ "default.handlebars->27->943"
17285
]
17286
},
17287
{
@@ -17318,8 +17366,8 @@
17366
"xloc": [
17367
"default-mobile.handlebars->9->349",
17368
"default-mobile.handlebars->9->351",
17321
- "default.handlebars->27->937",
17322
- "default.handlebars->27->939"
17369
+ "default.handlebars->27->945",
17370
+ "default.handlebars->27->947"
17371
]
17372
},
17373
{
@@ -17399,7 +17447,7 @@
17447
"zh-chs": "冰岛文",
17448
"zh-cht": "冰島文",
17449
"xloc": [
17402
- "default.handlebars->27->1110"
17450
+ "default.handlebars->27->1118"
17451
]
17452
},
17453
{
@@ -17420,7 +17468,7 @@
17468
"zh-cht": "圖符選擇",
17469
"xloc": [
17470
"default-mobile.handlebars->9->277",
17423
- "default.handlebars->27->795"
17471
+ "default.handlebars->27->803"
17472
]
17473
},
17474
{
@@ -17441,7 +17489,7 @@
17489
"zh-cht": "識別符",
17490
"xloc": [
17491
"default-mobile.handlebars->9->377",
17444
- "default.handlebars->27->965"
17492
+ "default.handlebars->27->973"
17493
]
17494
},
17495
{
@@ -17587,7 +17635,7 @@
17635
"zh-chs": "印度尼西亚文",
17636
"zh-cht": "印度尼西亞文",
17637
"xloc": [
17590
- "default.handlebars->27->1111"
17638
+ "default.handlebars->27->1119"
17639
]
17640
},
17641
{
@@ -17726,7 +17774,7 @@
17774
"zh-chs": "安装CIRA",
17775
"zh-cht": "安裝CIRA",
17776
"xloc": [
17729
- "default.handlebars->27->1335"
17777
+ "default.handlebars->27->1343"
17778
]
17779
},
17780
{
@@ -17746,7 +17794,7 @@
17794
"zh-chs": "安装本地",
17795
"zh-cht": "安裝本地",
17796
"xloc": [
17749
- "default.handlebars->27->1337"
17797
+ "default.handlebars->27->1345"
17798
]
17799
},
17800
{
@@ -17766,8 +17814,8 @@
17814
"zh-chs": "安装类型",
17815
"zh-cht": "安裝方式",
17816
"xloc": [
17769
- "default.handlebars->27->1477",
17770
- "default.handlebars->27->1484",
17817
+ "default.handlebars->27->1485",
17818
+ "default.handlebars->27->1492",
17819
"default.handlebars->27->349",
17820
"default.handlebars->27->363",
17821
"default.handlebars->27->377"
@@ -17790,7 +17838,7 @@
17838
"zh-chs": "英特尔(F10 = ESC + [OM)",
17839
"zh-cht": "Intel(F10 = ESC + [OM)",
17840
"xloc": [
17793
- "default.handlebars->27->852",
17841
+ "default.handlebars->27->860",
17842
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
17843
]
17844
},
@@ -17811,7 +17859,7 @@
17859
"zh-chs": "英特尔AMT",
17860
"zh-cht": "英特爾AMT",
17861
"xloc": [
17814
- "default.handlebars->27->2044"
17862
+ "default.handlebars->27->2052"
17863
]
17864
},
17865
{
@@ -17831,7 +17879,7 @@
17879
"zh-chs": "英特尔ASCII",
17880
"zh-cht": "Intel ASCII",
17881
"xloc": [
17834
- "default.handlebars->27->851"
17882
+ "default.handlebars->27->859"
17883
]
17884
},
17885
{
@@ -17854,11 +17902,11 @@
17902
"default-mobile.handlebars->9->201",
17903
"default-mobile.handlebars->9->236",
17904
"default-mobile.handlebars->9->241",
17857
- "default.handlebars->27->1319",
17858
- "default.handlebars->27->1329",
17859
- "default.handlebars->27->1496",
17905
+ "default.handlebars->27->1327",
17906
+ "default.handlebars->27->1337",
17907
"default.handlebars->27->1504",
17861
- "default.handlebars->27->2066",
17908
+ "default.handlebars->27->1512",
17909
+ "default.handlebars->27->2074",
17910
"default.handlebars->27->527",
17911
"default.handlebars->27->582",
17912
"default.handlebars->27->610"
@@ -18007,7 +18055,7 @@
18055
"zh-chs": "英特尔®AMT政策",
18056
"zh-cht": "Intel® AMT政策",
18057
"xloc": [
18010
- "default.handlebars->27->1358"
18058
+ "default.handlebars->27->1366"
18059
]
18060
},
18061
{
@@ -18027,7 +18075,7 @@
18075
"zh-chs": "英特尔®AMT重定向",
18076
"zh-cht": "Intel® AMT重定向",
18077
"xloc": [
18030
- "default.handlebars->27->1982",
18078
+ "default.handlebars->27->1990",
18079
"player.handlebars->3->14"
18080
]
18081
},
@@ -18068,7 +18116,7 @@
18116
"zh-chs": "英特尔®AMT WSMAN",
18117
"zh-cht": "Intle® AMT WSMAN",
18118
"xloc": [
18071
- "default.handlebars->27->1981",
18119
+ "default.handlebars->27->1989",
18120
"player.handlebars->3->13"
18121
]
18122
},
@@ -18132,8 +18180,8 @@
18180
"zh-chs": "英特尔®AMT桌面和串行事件。",
18181
"zh-cht": "Intel® AMT桌面和串行事件。",
18182
"xloc": [
18135
- "default.handlebars->27->1228",
18136
- "default.handlebars->27->1492"
18183
+ "default.handlebars->27->1236",
18184
+ "default.handlebars->27->1500"
18185
]
18186
},
18187
{
@@ -18318,8 +18366,8 @@
18366
"zh-cht": "僅限Intel® AMT,無代理",
18367
"xloc": [
18368
"default-mobile.handlebars->9->392",
18321
- "default.handlebars->27->1257",
18322
- "default.handlebars->27->1292"
18369
+ "default.handlebars->27->1265",
18370
+ "default.handlebars->27->1300"
18371
]
18372
},
18373
{
@@ -18380,7 +18428,7 @@
18428
"zh-cht": "Intel ® Active Management Technology(Intel® AMT)",
18429
"xloc": [
18430
"default-mobile.handlebars->9->369",
18383
- "default.handlebars->27->957"
18431
+ "default.handlebars->27->965"
18432
]
18433
},
18434
{
@@ -18582,7 +18630,7 @@
18630
"zh-chs": "互动",
18631
"zh-cht": "互動",
18632
"xloc": [
18585
- "default.handlebars->27->832"
18633
+ "default.handlebars->27->840"
18634
]
18635
},
18636
{
@@ -18602,8 +18650,8 @@
18650
"zh-chs": "仅限互动",
18651
"zh-cht": "僅限互動",
18652
"xloc": [
18605
- "default.handlebars->27->1480",
18606
- "default.handlebars->27->1487",
18653
+ "default.handlebars->27->1488",
18654
+ "default.handlebars->27->1495",
18655
"default.handlebars->27->352",
18656
"default.handlebars->27->366",
18657
"default.handlebars->27->380"
@@ -18646,7 +18694,7 @@
18694
"zh-chs": "因纽特文",
18695
"zh-cht": "因紐特文",
18696
"xloc": [
18649
- "default.handlebars->27->1112"
18697
+ "default.handlebars->27->1120"
18698
]
18699
},
18700
{
@@ -18666,7 +18714,7 @@
18714
"zh-chs": "无效的设备组类型",
18715
"zh-cht": "無效的裝置群類型",
18716
"xloc": [
18669
- "default.handlebars->27->2018"
18717
+ "default.handlebars->27->2026"
18718
]
18719
},
18720
{
@@ -18686,7 +18734,7 @@
18734
"zh-chs": "无效的JSON",
18735
"zh-cht": "無效的JSON",
18736
"xloc": [
18689
- "default.handlebars->27->2012"
18737
+ "default.handlebars->27->2020"
18738
]
18739
},
18740
{
@@ -18706,8 +18754,8 @@
18754
"zh-chs": "无效的JSON档案格式。",
18755
"zh-cht": "無效的JSON檔案格式。",
18756
"xloc": [
18709
- "default.handlebars->27->1726",
18710
- "default.handlebars->27->1728"
18757
+ "default.handlebars->27->1734",
18758
+ "default.handlebars->27->1736"
18759
]
18760
},
18761
{
@@ -18727,7 +18775,7 @@
18775
"zh-chs": "无效的JSON档案:{0}。",
18776
"zh-cht": "無效的JSON檔案:{0}。",
18777
"xloc": [
18730
- "default.handlebars->27->1724"
18778
+ "default.handlebars->27->1732"
18779
]
18780
},
18781
{
@@ -18747,7 +18795,7 @@
18795
"zh-chs": "无效的PKCS签名",
18796
"zh-cht": "無效的PKCS簽名",
18797
"xloc": [
18750
- "default.handlebars->27->2010"
18798
+ "default.handlebars->27->2018"
18799
]
18800
},
18801
{
@@ -18767,7 +18815,7 @@
18815
"zh-chs": "無效的RSA密碼",
18816
"zh-cht": "無效的RSA密碼",
18817
"xloc": [
18770
- "default.handlebars->27->2011"
18818
+ "default.handlebars->27->2019"
18819
]
18820
},
18821
{
@@ -18894,7 +18942,7 @@
18942
"zh-chs": "使电邮无效",
18943
"zh-cht": "使電郵無效",
18944
"xloc": [
18897
- "default.handlebars->27->1702"
18945
+ "default.handlebars->27->1710"
18946
]
18947
},
18948
{
@@ -18971,7 +19019,7 @@
19019
"zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:",
19020
"zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
19021
"xloc": [
18974
- "default.handlebars->27->1482"
19022
+ "default.handlebars->27->1490"
19023
]
19024
},
19025
{
@@ -19011,7 +19059,7 @@
19059
"zh-chs": "邀请",
19060
"zh-cht": "邀請",
19061
"xloc": [
19014
- "default.handlebars->27->1345",
19062
+ "default.handlebars->27->1353",
19063
"default.handlebars->27->282",
19064
"default.handlebars->27->368"
19065
]
@@ -19033,11 +19081,11 @@
19081
"zh-chs": "邀请码",
19082
"zh-cht": "邀請碼",
19083
"xloc": [
19036
- "default.handlebars->27->1323",
19037
- "default.handlebars->27->1476",
19038
- "default.handlebars->27->1481",
19039
- "default.handlebars->27->1483",
19040
- "default.handlebars->27->1488"
19084
+ "default.handlebars->27->1331",
19085
+ "default.handlebars->27->1484",
19086
+ "default.handlebars->27->1489",
19087
+ "default.handlebars->27->1491",
19088
+ "default.handlebars->27->1496"
19089
]
19090
},
19091
{
@@ -19077,7 +19125,7 @@
19125
"zh-chs": "邀请某人在该设备组上安装网格代理。",
19126
"zh-cht": "邀請某人在該裝置群上安裝mesh agent。",
19127
"xloc": [
19080
- "default.handlebars->27->1344",
19128
+ "default.handlebars->27->1352",
19129
"default.handlebars->27->281"
19130
]
19131
},
@@ -19118,7 +19166,7 @@
19166
"zh-chs": "爱尔兰文",
19167
"zh-cht": "愛爾蘭文",
19168
"xloc": [
19121
- "default.handlebars->27->1113"
19169
+ "default.handlebars->27->1121"
19170
]
19171
},
19172
{
@@ -19138,7 +19186,7 @@
19186
"zh-chs": "意大利文(标准)",
19187
"zh-cht": "意大利文(標準)",
19188
"xloc": [
19141
- "default.handlebars->27->1114"
19189
+ "default.handlebars->27->1122"
19190
]
19191
},
19192
{
@@ -19158,7 +19206,7 @@
19206
"zh-chs": "意大利文(瑞士)",
19207
"zh-cht": "義大利文(瑞士)",
19208
"xloc": [
19161
- "default.handlebars->27->1115"
19209
+ "default.handlebars->27->1123"
19210
]
19211
},
19212
{
@@ -19178,7 +19226,7 @@
19226
"zh-chs": "JSON",
19227
"zh-cht": "JSON",
19228
"xloc": [
19181
- "default.handlebars->27->1662"
19229
+ "default.handlebars->27->1670"
19230
]
19231
},
19232
{
@@ -19198,8 +19246,8 @@
19246
"zh-chs": "JSON格式",
19247
"zh-cht": "JSON格式",
19248
"xloc": [
19201
- "default.handlebars->27->1667",
19202
- "default.handlebars->27->1732",
19249
+ "default.handlebars->27->1675",
19250
+ "default.handlebars->27->1740",
19251
"default.handlebars->27->488"
19252
]
19253
},
@@ -19220,7 +19268,7 @@
19268
"zh-chs": "日文",
19269
"zh-cht": "日文",
19270
"xloc": [
19223
- "default.handlebars->27->1116"
19271
+ "default.handlebars->27->1124"
19272
]
19273
},
19274
{
@@ -19240,7 +19288,7 @@
19288
"zh-chs": "已加入桌面Multiplex会话",
19289
"zh-cht": "已加入桌面Multiplex會話",
19290
"xloc": [
19243
- "default.handlebars->27->1555"
19291
+ "default.handlebars->27->1563"
19292
]
19293
},
19294
{
@@ -19260,7 +19308,7 @@
19308
"zh-chs": "卡纳达文",
19309
"zh-cht": "卡納達文",
19310
"xloc": [
19263
- "default.handlebars->27->1117"
19311
+ "default.handlebars->27->1125"
19312
]
19313
},
19314
{
@@ -19280,7 +19328,7 @@
19328
"zh-chs": "克什米尔文",
19329
"zh-cht": "克什米爾文",
19330
"xloc": [
19283
- "default.handlebars->27->1118"
19331
+ "default.handlebars->27->1126"
19332
]
19333
},
19334
{
@@ -19300,7 +19348,7 @@
19348
"zh-chs": "哈萨克文",
19349
"zh-cht": "哈薩克文",
19350
"xloc": [
19303
- "default.handlebars->27->1119"
19351
+ "default.handlebars->27->1127"
19352
]
19353
},
19354
{
@@ -19320,7 +19368,7 @@
19368
"zh-chs": "内核驱动器",
19369
"zh-cht": "內核驅動器",
19370
"xloc": [
19323
- "default.handlebars->27->833"
19371
+ "default.handlebars->27->841"
19372
]
19373
},
19374
{
@@ -19340,8 +19388,8 @@
19388
"zh-chs": "键名",
19389
"zh-cht": "鍵名",
19390
"xloc": [
19343
- "default.handlebars->27->1010",
19344
- "default.handlebars->27->1013"
19391
+ "default.handlebars->27->1018",
19392
+ "default.handlebars->27->1021"
19393
]
19394
},
19395
{
@@ -19401,7 +19449,7 @@
19449
"zh-chs": "高棉文",
19450
"zh-cht": "高棉文",
19451
"xloc": [
19404
- "default.handlebars->27->1120"
19452
+ "default.handlebars->27->1128"
19453
]
19454
},
19455
{
@@ -19421,7 +19469,7 @@
19469
"zh-chs": "杀死进程{0}",
19470
"zh-cht": "殺死進程{0}",
19471
"xloc": [
19424
- "default.handlebars->27->1570"
19472
+ "default.handlebars->27->1578"
19473
]
19474
},
19475
{
@@ -19441,7 +19489,7 @@
19489
"zh-chs": "吉尔吉斯",
19490
"zh-cht": "吉爾吉斯",
19491
"xloc": [
19444
- "default.handlebars->27->1121"
19492
+ "default.handlebars->27->1129"
19493
]
19494
},
19495
{
@@ -19461,7 +19509,7 @@
19509
"zh-chs": "克林贡",
19510
"zh-cht": "克林貢",
19511
"xloc": [
19464
- "default.handlebars->27->1122"
19512
+ "default.handlebars->27->1130"
19513
]
19514
},
19515
{
@@ -19482,7 +19530,7 @@
19530
"zh-cht": "已知的",
19531
"xloc": [
19532
"default-mobile.handlebars->9->368",
19485
- "default.handlebars->27->956"
19533
+ "default.handlebars->27->964"
19534
]
19535
},
19536
{
@@ -19502,7 +19550,7 @@
19550
"zh-chs": "韩文",
19551
"zh-cht": "韓文",
19552
"xloc": [
19505
- "default.handlebars->27->1123"
19553
+ "default.handlebars->27->1131"
19554
]
19555
},
19556
{
@@ -19522,7 +19570,7 @@
19570
"zh-chs": "韩文(朝鲜)",
19571
"zh-cht": "韓文(朝鮮)",
19572
"xloc": [
19525
- "default.handlebars->27->1124"
19573
+ "default.handlebars->27->1132"
19574
]
19575
},
19576
{
@@ -19542,7 +19590,7 @@
19590
"zh-chs": "韩文(韩国)",
19591
"zh-cht": "韓文(韓國)",
19592
"xloc": [
19545
- "default.handlebars->27->1125"
19593
+ "default.handlebars->27->1133"
19594
]
19595
},
19596
{
@@ -19562,8 +19610,8 @@
19610
"zh-chs": "如果",
19611
"zh-cht": "如果",
19612
"xloc": [
19565
- "default.handlebars->27->847",
19566
- "default.handlebars->27->856"
19613
+ "default.handlebars->27->855",
19614
+ "default.handlebars->27->864"
19615
]
19616
},
19617
{
@@ -19583,7 +19631,7 @@
19631
"zh-chs": "语言",
19632
"zh-cht": "語言",
19633
"xloc": [
19586
- "default.handlebars->27->1220"
19634
+ "default.handlebars->27->1228"
19635
]
19636
},
19637
{
@@ -19623,7 +19671,7 @@
19671
"zh-chs": "大焦点",
19672
"zh-cht": "大焦點",
19673
"xloc": [
19626
- "default.handlebars->27->821"
19674
+ "default.handlebars->27->829"
19675
]
19676
},
19677
{
@@ -19836,7 +19884,7 @@
19884
"zh-chs": "最后访问",
19885
"zh-cht": "最後訪問",
19886
"xloc": [
19839
- "default.handlebars->27->1675"
19887
+ "default.handlebars->27->1683"
19888
]
19889
},
19890
{
@@ -19856,7 +19904,7 @@
19904
"zh-chs": "上次登录",
19905
"zh-cht": "上次登入",
19906
"xloc": [
19859
- "default.handlebars->27->1871"
19907
+ "default.handlebars->27->1879"
19908
]
19909
},
19910
{
@@ -19882,9 +19930,9 @@
19930
"default.handlebars->27->69",
19931
"default.handlebars->27->71",
19932
"default.handlebars->27->73",
19885
- "default.handlebars->27->914",
19886
- "default.handlebars->27->915",
19887
- "default.handlebars->27->916"
19933
+ "default.handlebars->27->922",
19934
+ "default.handlebars->27->923",
19935
+ "default.handlebars->27->924"
19936
]
19937
},
19938
{
@@ -19907,8 +19955,8 @@
19955
"default-mobile.handlebars->9->333",
19956
"default-mobile.handlebars->9->335",
19957
"default.handlebars->27->68",
19910
- "default.handlebars->27->911",
19911
- "default.handlebars->27->913"
19958
+ "default.handlebars->27->919",
19959
+ "default.handlebars->27->921"
19960
]
19961
},
19962
{
@@ -19928,7 +19976,7 @@
19976
"zh-chs": "上次更改:{0}",
19977
"zh-cht": "上次更改:{0}",
19978
"xloc": [
19931
- "default.handlebars->27->1875"
19979
+ "default.handlebars->27->1883"
19980
]
19981
},
19982
{
@@ -19988,7 +20036,7 @@
20036
"zh-chs": "上次登录:{0}",
20037
"zh-cht": "上次登入:{0}",
20038
"xloc": [
19991
- "default.handlebars->27->1685"
20039
+ "default.handlebars->27->1693"
20040
]
20041
},
20042
{
@@ -20089,7 +20137,7 @@
20137
"zh-chs": "拉丁文",
20138
"zh-cht": "拉丁文",
20139
"xloc": [
20092
- "default.handlebars->27->1126"
20140
+ "default.handlebars->27->1134"
20141
]
20142
},
20143
{
@@ -20109,7 +20157,7 @@
20157
"zh-chs": "拉脱维亚文",
20158
"zh-cht": "拉脫維亞文",
20159
"xloc": [
20112
- "default.handlebars->27->1127"
20160
+ "default.handlebars->27->1135"
20161
]
20162
},
20163
{
@@ -20129,7 +20177,7 @@
20177
"zh-chs": "启动MeshCentral路由器",
20178
"zh-cht": "啟動MeshCentral路由器",
20179
"xloc": [
20132
- "default.handlebars->27->772"
20180
+ "default.handlebars->27->780"
20181
]
20182
},
20183
{
@@ -20189,7 +20237,7 @@
20237
"zh-chs": "如没有请留空。",
20238
"zh-cht": "如沒有請留空。",
20239
"xloc": [
20192
- "default.handlebars->27->1915"
20240
+ "default.handlebars->27->1923"
20241
]
20242
},
20243
{
@@ -20234,7 +20282,7 @@
20282
"zh-chs": "离开桌面多路复用会话",
20283
"zh-cht": "離開桌面多路復用會話",
20284
"xloc": [
20237
- "default.handlebars->27->1556"
20285
+ "default.handlebars->27->1564"
20286
]
20287
},
20288
{
@@ -20254,7 +20302,7 @@
20302
"zh-chs": "减",
20303
"zh-cht": "減",
20304
"xloc": [
20257
- "default.handlebars->27->2083"
20305
+ "default.handlebars->27->2091"
20306
]
20307
},
20308
{
@@ -20317,7 +20365,7 @@
This file is too large to show in full.
views/default.handlebars
+4
-2
@@ -6014,9 +6014,11 @@
6014
6015
function showShareDevice() {
6016
if (xxdialogMode) return;
6017
- var x = "Creates a link that allows a guest without an account to remote desktop into this device for up to 1 hour." + '<br /><br />';
6017
+ var y = '', x = "Creates a link that allows a guest without an account to remote desktop into this device for up to 1 hour." + '<br /><br />';
6018
x += addHtmlValue("Guest Name", '<input id=d2inviteName style=width:250px maxlength=128 type=text onkeyup=showShareDeviceValidate() />');
6019
- x += addHtmlValue("Expire Time", '<select id=d2inviteExpire style=float:right;width:250px><option value=1>' + "1 minute" + '</option><option value=5>' + "5 minutes" + '</option><option value=10>' + "10 minutes" + '</option><option value=15>' + "15 minutes" + '</option><option value=30>' + "30 minutes" + '</option><option value=45>' + "45 minutes" + '</option><option value=60>' + "1 hour" + '</option></select>');
6019
+ var options = { 1 : "1 minute", 5 : "5 minutes", 10 : "10 minutes", 15 : "15 minutes", 30 : "30 minutes", 45 : "45 minutes", 60 : "60 minutes", 120 : "2 hours", 240 : "4 hours", 480 : "8 hours", 720 : "12 hours", 960 : "16 hours", 1440 : "24 hours", 2880 : "2 days", 5760 : "4 days" }
6020
+ for (var i in options) { if (serverinfo.maxGuestSessionSharingTime >= i) { y += '<option value=' + i + '>' + options[i] + '</option>'; } }
6021
+ x += addHtmlValue("Expire Time", '<select id=d2inviteExpire style=float:right;width:250px>' + y + '</select>');
6022
x += addHtmlValue("User Consent", '<select id=d2userConsent style=float:right;width:250px><option value=73>' + "Prompt for consent" + '</option><option value=65>' + "Notify Only" + '</option></select>');
6023
setDialogMode(2, "Share Device", 3, showShareDeviceEx, x);
6024
showShareDeviceValidate();