Added run as user support to batch commands.
Ylian Saint-Hilaire committed
Sep 29, 2020 at 13:20 UTC
7a22f8c70258ce6c837d81ac866dba2153c1709e
5 files changed
+1659
-1623
agents/meshcore.js
+16
-4
@@ -946,11 +946,23 @@ function createMeshCore(agent) {
946
case 'runcommands': {
947
if (mesh.cmdchild != null) { sendConsoleText("Run commands can't execute, already busy."); break; }
948
MeshServerLogEx(24, null, "Running commands", data);
949
- sendConsoleText("Run commands: " + data.cmds);
949
+ sendConsoleText("Run commands (" + data.runAsUser + "): " + data.cmds);
950
+
951
+ // data.runAsUser: 0=Agent,1=UserOrAgent,2=UserOnly
952
+ var options = {};
953
+ if (data.runAsUser > 0) {
954
+ try { options.uid = require('user-sessions').consoleUid(); } catch (ex) { }
955
+ options.type = require('child_process').SpawnTypes.TERM;
956
+ }
957
+ if (data.runAsUser == 2) {
958
+ if (options.uid == null) break;
959
+ if (((require('user-sessions').minUid != null) && (options.uid < require('user-sessions').minUid()))) break; // This command can only run as user.
960
+ }
961
+
962
if (process.platform == 'win32') {
963
if (data.type == 1) {
964
// Windows command shell
953
- mesh.cmdchild = require('child_process').execFile(process.env['windir'] + '\\system32\\cmd.exe', ['cmd']);
965
+ mesh.cmdchild = require('child_process').execFile(process.env['windir'] + '\\system32\\cmd.exe', ['cmd'], options);
966
mesh.cmdchild.descriptorMetadata = 'UserCommandsShell';
967
mesh.cmdchild.stdout.on('data', function (c) { sendConsoleText(c.toString()); });
968
mesh.cmdchild.stderr.on('data', function (c) { sendConsoleText(c.toString()); });
@@ -958,7 +970,7 @@ function createMeshCore(agent) {
970
mesh.cmdchild.on('exit', function () { sendConsoleText("Run commands completed."); delete mesh.cmdchild; });
971
} else if (data.type == 2) {
972
// Windows Powershell
961
- mesh.cmdchild = require('child_process').execFile(process.env['windir'] + '\\System32\\WindowsPowerShell\\v1.0\\powershell.exe', ['powershell', '-noprofile', '-nologo', '-command', '-']);
973
+ mesh.cmdchild = require('child_process').execFile(process.env['windir'] + '\\System32\\WindowsPowerShell\\v1.0\\powershell.exe', ['powershell', '-noprofile', '-nologo', '-command', '-'], options);
974
mesh.cmdchild.descriptorMetadata = 'UserCommandsPowerShell';
975
mesh.cmdchild.stdout.on('data', function (c) { sendConsoleText(c.toString()); });
976
mesh.cmdchild.stderr.on('data', function (c) { sendConsoleText(c.toString()); });
@@ -967,7 +979,7 @@ function createMeshCore(agent) {
979
}
980
} else if (data.type == 3) {
981
// Linux shell
970
- mesh.cmdchild = require('child_process').execFile('/bin/sh', ['sh']);
982
+ mesh.cmdchild = require('child_process').execFile('/bin/sh', ['sh'], options);
983
mesh.cmdchild.descriptorMetadata = 'UserCommandsShell';
984
mesh.cmdchild.stdout.on('data', function (c) { sendConsoleText(c.toString()); });
985
mesh.cmdchild.stderr.on('data', function (c) { sendConsoleText(c.toString()); });
meshctrl.js
+5
-1
@@ -557,6 +557,8 @@ if (args['_'].length == 0) {
557
console.log(" --run \"[command]\" - Shell command to execute on the remote device.");
558
console.log("\r\nOptional arguments:\r\n");
559
console.log(" --powershell - Run in Windows PowerShell.");
560
+ console.log(" --runasuser - Attempt to run the command as logged in user.");
561
+ console.log(" --runasuseronly - Only run the command as the logged in user.");
562
break;
563
}
564
case 'shell': {
@@ -1031,7 +1033,9 @@ function serverConnect() {
1033
break;
1034
}
1035
case 'runcommand': {
1034
- ws.send(JSON.stringify({ action: 'runcommands', nodeids: [args.id], type: ((args.powershell) ? 2 : 0), cmds: args.run, responseid: 'meshctrl' }));
1036
+ var runAsUser = 0;
1037
+ if (args.runasuser) { runAsUser = 1; } else if (args.runasuseronly) { runAsUser = 2; }
1038
+ ws.send(JSON.stringify({ action: 'runcommands', nodeids: [args.id], type: ((args.powershell) ? 2 : 0), cmds: args.run, responseid: 'meshctrl', runAsUser: runAsUser }));
1039
break;
1040
}
1041
case 'shell':
meshuser.js
+2
-1
@@ -3534,6 +3534,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
3534
if (common.validateArray(command.nodeids, 1) == false) break; // Check nodeid's
3535
if (typeof command.type != 'number') break; // Check command type
3536
if (typeof command.cmds != 'string') break; // Check commands
3537
+ if (typeof command.runAsUser != 'number') { command.runAsUser = 0; } // Check runAsUser
3538
3539
for (i in command.nodeids) {
3540
var nodeid = command.nodeids[i], err = null;
@@ -3580,7 +3581,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
3581
}
3582
if (commandsOk == true) {
3583
// Send the commands to the agent
3583
- try { agent.send(JSON.stringify({ action: 'runcommands', type: command.type, cmds: command.cmds })); } catch (ex) { }
3584
+ try { agent.send(JSON.stringify({ action: 'runcommands', type: command.type, cmds: command.cmds, runAsUser: command.runAsUser })); } catch (ex) { }
3585
if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'runcommands', responseid: command.responseid, result: 'OK' })); } catch (ex) { } }
3586
} else {
3587
if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'runcommands', responseid: command.responseid, result: 'Invalid command type' })); } catch (ex) { } }
translate/translate.json
+1632
-1614
@@ -17,8 +17,8 @@
17
"zh-chs": " + CIRA",
18
"zh-cht": " + CIRA",
19
"xloc": [
20
- "default.handlebars->27->1336",
21
- "default.handlebars->27->1338"
20
+ "default.handlebars->27->1339",
21
+ "default.handlebars->27->1341"
22
]
23
},
24
{
@@ -204,7 +204,7 @@
204
"zh-chs": " 可以使用密码提示,但不建议使用。",
205
"zh-cht": " 可以使用密碼提示,但不建議使用。",
206
"xloc": [
207
- "default.handlebars->27->1250"
207
+ "default.handlebars->27->1253"
208
]
209
},
210
{
@@ -224,8 +224,8 @@
224
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226
"xloc": [
227
- "default.handlebars->27->1411",
228
- "default.handlebars->27->1853"
227
+ "default.handlebars->27->1414",
228
+ "default.handlebars->27->1856"
229
]
230
},
231
{
@@ -458,7 +458,7 @@
458
"zh-chs": "*保留空白可为每个设备分配一个随机密码。",
459
"zh-cht": "*保留空白可為每個裝置分配一個隨機密碼。",
460
"xloc": [
461
- "default.handlebars->27->1383"
461
+ "default.handlebars->27->1386"
462
]
463
},
464
{
@@ -496,7 +496,7 @@
496
"zh-cht": ",",
497
"xloc": [
498
"default-mobile.handlebars->9->449",
499
- "default.handlebars->27->1478"
499
+ "default.handlebars->27->1481"
500
]
501
},
502
{
@@ -537,7 +537,7 @@
537
"zh-chs": ",MQTT在线",
538
"zh-cht": ",MQTT在線",
539
"xloc": [
540
- "default.handlebars->27->992"
540
+ "default.handlebars->27->995"
541
]
542
},
543
{
@@ -557,7 +557,7 @@
557
"zh-chs": ",软体KVM",
558
"zh-cht": ",軟體KVM",
559
"xloc": [
560
- "default.handlebars->27->818",
560
+ "default.handlebars->27->821",
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->825",
584
- "default.handlebars->27->858",
585
- "default.handlebars->27->870",
583
+ "default.handlebars->27->828",
584
+ "default.handlebars->27->861",
585
+ "default.handlebars->27->873",
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->819",
706
+ "default.handlebars->27->822",
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->1519",
772
- "default.handlebars->27->2008",
773
- "default.handlebars->27->875"
771
+ "default.handlebars->27->1522",
772
+ "default.handlebars->27->2011",
773
+ "default.handlebars->27->878"
774
]
775
},
776
{
@@ -826,7 +826,7 @@
826
"zh-chs": "1个活跃时段",
827
"zh-cht": "1個活躍時段",
828
"xloc": [
829
- "default.handlebars->27->1922"
829
+ "default.handlebars->27->1925"
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->1543",
851
+ "default.handlebars->27->1546",
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->821",
873
+ "default.handlebars->27->824",
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->1887"
916
+ "default.handlebars->27->1890"
917
]
918
},
919
{
@@ -955,7 +955,7 @@
955
"zh-chs": "1分钟",
956
"zh-cht": "1分鐘",
957
"xloc": [
958
- "default.handlebars->27->715"
958
+ "default.handlebars->27->718"
959
]
960
},
961
{
@@ -1017,7 +1017,7 @@
1017
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1018
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1019
"xloc": [
1020
- "default.handlebars->27->1689"
1020
+ "default.handlebars->27->1692"
1021
]
1022
},
1023
{
@@ -1083,7 +1083,7 @@
1083
"default-mobile.handlebars->9->168",
1084
"default-mobile.handlebars->9->171",
1085
"default-mobile.handlebars->9->174",
1086
- "default.handlebars->27->1693",
1086
+ "default.handlebars->27->1696",
1087
"default.handlebars->27->245",
1088
"default.handlebars->27->248",
1089
"default.handlebars->27->251",
@@ -1215,7 +1215,7 @@
1215
"zh-chs": "10分钟",
1216
"zh-cht": "10分鐘",
1217
"xloc": [
1218
- "default.handlebars->27->717"
1218
+ "default.handlebars->27->720"
1219
]
1220
},
1221
{
@@ -1284,7 +1284,7 @@
1284
"en": "12 hours",
1285
"nl": "12 uur",
1286
"xloc": [
1287
- "default.handlebars->27->725"
1287
+ "default.handlebars->27->728"
1288
]
1289
},
1290
{
@@ -1326,28 +1326,28 @@
1326
"zh-chs": "15分钟",
1327
"zh-cht": "15分鐘",
1328
"xloc": [
1329
- "default.handlebars->27->718"
1329
+ "default.handlebars->27->721"
1330
]
1331
},
1332
{
1333
"en": "16 hours",
1334
"nl": "16 uur",
1335
"xloc": [
1336
- "default.handlebars->27->726"
1336
+ "default.handlebars->27->729"
1337
]
1338
},
1339
{
1340
"en": "2 days",
1341
"nl": "2 dagen",
1342
"xloc": [
1343
- "default.handlebars->27->728"
1343
+ "default.handlebars->27->731"
1344
]
1345
},
1346
{
1347
"en": "2 hours",
1348
"nl": "2 uur",
1349
"xloc": [
1350
- "default.handlebars->27->722"
1350
+ "default.handlebars->27->725"
1351
]
1352
},
1353
{
@@ -1438,7 +1438,7 @@
1438
"en": "24 hours",
1439
"nl": "24 uur",
1440
"xloc": [
1441
- "default.handlebars->27->727"
1441
+ "default.handlebars->27->730"
1442
]
1443
},
1444
{
@@ -1500,7 +1500,7 @@
1500
"zh-chs": "2FA备份代码已清除",
1501
"zh-cht": "2FA備份代碼已清除",
1502
"xloc": [
1503
- "default.handlebars->27->1654"
1503
+ "default.handlebars->27->1657"
1504
]
1505
},
1506
{
@@ -1520,8 +1520,8 @@
1520
"zh-chs": "启用第二因素身份验证",
1521
"zh-cht": "啟用第二因素身份驗證",
1522
"xloc": [
1523
- "default.handlebars->27->1706",
1524
- "default.handlebars->27->1909"
1523
+ "default.handlebars->27->1709",
1524
+ "default.handlebars->27->1912"
1525
]
1526
},
1527
{
@@ -1640,7 +1640,7 @@
1640
"zh-chs": "30分钟",
1641
"zh-cht": "30分鐘",
1642
"xloc": [
1643
- "default.handlebars->27->719"
1643
+ "default.handlebars->27->722"
1644
]
1645
},
1646
{
@@ -1690,14 +1690,14 @@
1690
"en": "4 days",
1691
"nl": "4 dagen",
1692
"xloc": [
1693
- "default.handlebars->27->729"
1693
+ "default.handlebars->27->732"
1694
]
1695
},
1696
{
1697
"en": "4 hours",
1698
"nl": "4 uur",
1699
"xloc": [
1700
- "default.handlebars->27->723"
1700
+ "default.handlebars->27->726"
1701
]
1702
},
1703
{
@@ -1780,7 +1780,7 @@
1780
"zh-chs": "45分钟",
1781
"zh-cht": "45分鐘",
1782
"xloc": [
1783
- "default.handlebars->27->720"
1783
+ "default.handlebars->27->723"
1784
]
1785
},
1786
{
@@ -1820,7 +1820,7 @@
1820
"zh-chs": "5分钟",
1821
"zh-cht": "5分鐘",
1822
"xloc": [
1823
- "default.handlebars->27->716"
1823
+ "default.handlebars->27->719"
1824
]
1825
},
1826
{
@@ -1933,7 +1933,7 @@
1933
"en": "60 minutes",
1934
"nl": "60 minuten",
1935
"xloc": [
1936
- "default.handlebars->27->721"
1936
+ "default.handlebars->27->724"
1937
]
1938
},
1939
{
@@ -2053,7 +2053,7 @@
2053
"zh-chs": "7天电源状态",
2054
"zh-cht": "7天電源狀態",
2055
"xloc": [
2056
- "default.handlebars->27->751"
2056
+ "default.handlebars->27->754"
2057
]
2058
},
2059
{
@@ -2118,7 +2118,7 @@
2118
"xloc": [
2119
"default.handlebars->27->346",
2120
"default.handlebars->27->360",
2121
- "default.handlebars->27->724"
2121
+ "default.handlebars->27->727"
2122
]
2123
},
2124
{
@@ -2336,7 +2336,7 @@
2336
"zh-cht": "ACM",
2337
"xloc": [
2338
"default-mobile.handlebars->9->231",
2339
- "default.handlebars->27->574"
2339
+ "default.handlebars->27->577"
2340
]
2341
},
2342
{
@@ -2461,7 +2461,7 @@
2461
"zh-chs": "拒绝访问",
2462
"zh-cht": "拒絕存取",
2463
"xloc": [
2464
- "default.handlebars->27->993"
2464
+ "default.handlebars->27->996"
2465
]
2466
},
2467
{
@@ -2503,7 +2503,7 @@
2503
"zh-chs": "访问服务器档案",
2504
"zh-cht": "存取伺服器檔案",
2505
"xloc": [
2506
- "default.handlebars->27->1859"
2506
+ "default.handlebars->27->1862"
2507
]
2508
},
2509
{
@@ -2592,10 +2592,10 @@
2592
"default-mobile.handlebars->9->93",
2593
"default-mobile.handlebars->9->95",
2594
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2595
- "default.handlebars->27->1259",
2596
- "default.handlebars->27->1261",
2597
- "default.handlebars->27->543",
2598
- "default.handlebars->27->545"
2595
+ "default.handlebars->27->1262",
2596
+ "default.handlebars->27->1264",
2597
+ "default.handlebars->27->546",
2598
+ "default.handlebars->27->548"
2599
]
2600
},
2601
{
@@ -2656,7 +2656,7 @@
2656
"zh-chs": "帐户已更改:{0}",
2657
"zh-cht": "帳戶已更改:{0}",
2658
"xloc": [
2659
- "default.handlebars->27->1627"
2659
+ "default.handlebars->27->1630"
2660
]
2661
},
2662
{
@@ -2676,7 +2676,7 @@
2676
"zh-chs": "创建帐户,电子邮件为{0}",
2677
"zh-cht": "創建帳戶,電子郵件為{0}",
2678
"xloc": [
2679
- "default.handlebars->27->1626"
2679
+ "default.handlebars->27->1629"
2680
]
2681
},
2682
{
@@ -2696,7 +2696,7 @@
2696
"zh-chs": "创建帐户,用户名是{0}",
2697
"zh-cht": "帳戶已創建,用戶名是{0}",
2698
"xloc": [
2699
- "default.handlebars->27->1625"
2699
+ "default.handlebars->27->1628"
2700
]
2701
},
2702
{
@@ -2716,8 +2716,8 @@
2716
"zh-chs": "帐户已被锁定",
2717
"zh-cht": "帳戶已被鎖定",
2718
"xloc": [
2719
- "default.handlebars->27->1708",
2720
- "default.handlebars->27->1856"
2719
+ "default.handlebars->27->1711",
2720
+ "default.handlebars->27->1859"
2721
]
2722
},
2723
{
@@ -2781,7 +2781,7 @@
2781
"zh-chs": "帐号登录",
2782
"zh-cht": "帳號登錄",
2783
"xloc": [
2784
- "default.handlebars->27->1562"
2784
+ "default.handlebars->27->1565"
2785
]
2786
},
2787
{
@@ -2801,7 +2801,7 @@
2801
"zh-chs": "帐户登出",
2802
"zh-cht": "帳戶登出",
2803
"xloc": [
2804
- "default.handlebars->27->1563"
2804
+ "default.handlebars->27->1566"
2805
]
2806
},
2807
{
@@ -2843,7 +2843,7 @@
2843
"zh-chs": "帐户密码已更改:{0}",
2844
"zh-cht": "帳戶密碼已更改:{0}",
2845
"xloc": [
2846
- "default.handlebars->27->1635"
2846
+ "default.handlebars->27->1638"
2847
]
2848
},
2849
{
@@ -2863,7 +2863,7 @@
2863
"zh-chs": "帐户已删除",
2864
"zh-cht": "帳戶已刪除",
2865
"xloc": [
2866
- "default.handlebars->27->1624"
2866
+ "default.handlebars->27->1627"
2867
]
2868
},
2869
{
@@ -2903,7 +2903,7 @@
2903
"zh-chs": "指令",
2904
"zh-cht": "指令",
2905
"xloc": [
2906
- "default.handlebars->27->998",
2906
+ "default.handlebars->27->1001",
2907
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2908
]
2909
},
@@ -2924,8 +2924,8 @@
2924
"zh-chs": "动作档案",
2925
"zh-cht": "動作檔案",
2926
"xloc": [
2927
- "default.handlebars->27->794",
2928
- "default.handlebars->27->796"
2927
+ "default.handlebars->27->797",
2928
+ "default.handlebars->27->799"
2929
]
2930
},
2931
{
@@ -2948,7 +2948,7 @@
2948
"default-mobile.handlebars->9->248",
2949
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
2950
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
2951
- "default.handlebars->27->619",
2951
+ "default.handlebars->27->622",
2952
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
2953
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
2954
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -3014,9 +3014,9 @@
3014
"default-mobile.handlebars->9->226",
3015
"default-mobile.handlebars->9->228",
3016
"default-mobile.handlebars->9->358",
3017
- "default.handlebars->27->567",
3018
- "default.handlebars->27->569",
3019
- "default.handlebars->27->956"
3017
+ "default.handlebars->27->570",
3018
+ "default.handlebars->27->572",
3019
+ "default.handlebars->27->959"
3020
]
3021
},
3022
{
@@ -3036,8 +3036,8 @@
3036
"zh-chs": "激活",
3037
"zh-cht": "啟動",
3038
"xloc": [
3039
- "default.handlebars->27->1349",
3040
- "default.handlebars->27->1351",
3039
+ "default.handlebars->27->1352",
3040
+ "default.handlebars->27->1354",
3041
"default.handlebars->27->199",
3042
"default.handlebars->27->278",
3043
"default.handlebars->27->280"
@@ -3060,7 +3060,7 @@
3060
"zh-chs": "活跃用户{0}",
3061
"zh-cht": "活躍用戶{0}",
3062
"xloc": [
3063
- "default.handlebars->27->594"
3063
+ "default.handlebars->27->597"
3064
]
3065
},
3066
{
@@ -3080,7 +3080,7 @@
3080
"zh-chs": "添加代理",
3081
"zh-cht": "新增代理",
3082
"xloc": [
3083
- "default.handlebars->27->1353",
3083
+ "default.handlebars->27->1356",
3084
"default.handlebars->27->282"
3085
]
3086
},
@@ -3121,8 +3121,8 @@
3121
"zh-chs": "添加设备",
3122
"zh-cht": "新增裝置",
3123
"xloc": [
3124
- "default.handlebars->27->1833",
3125
- "default.handlebars->27->1957"
3124
+ "default.handlebars->27->1836",
3125
+ "default.handlebars->27->1960"
3126
]
3127
},
3128
{
@@ -3142,7 +3142,7 @@
3142
"zh-chs": "添加设备日志",
3143
"zh-cht": "新增裝置日誌",
3144
"xloc": [
3145
- "default.handlebars->27->705"
3145
+ "default.handlebars->27->708"
3146
]
3147
},
3148
{
@@ -3162,9 +3162,9 @@
3162
"zh-chs": "添加设备组",
3163
"zh-cht": "新增裝置群",
3164
"xloc": [
3165
- "default.handlebars->27->1444",
3166
- "default.handlebars->27->1827",
3167
- "default.handlebars->27->1945",
3165
+ "default.handlebars->27->1447",
3166
+ "default.handlebars->27->1830",
3167
+ "default.handlebars->27->1948",
3168
"default.handlebars->27->233"
3169
]
3170
},
@@ -3185,7 +3185,7 @@
3185
"zh-chs": "添加设备组权限",
3186
"zh-cht": "新增裝置群權限",
3187
"xloc": [
3188
- "default.handlebars->27->1441"
3188
+ "default.handlebars->27->1444"
3189
]
3190
},
3191
{
@@ -3205,8 +3205,8 @@
3205
"zh-chs": "添加设备权限",
3206
"zh-cht": "新增裝置權限",
3207
"xloc": [
3208
- "default.handlebars->27->1446",
3209
- "default.handlebars->27->1448"
3208
+ "default.handlebars->27->1449",
3209
+ "default.handlebars->27->1451"
3210
]
3211
},
3212
{
@@ -3306,7 +3306,7 @@
3306
"zh-chs": "添加成员身份",
3307
"zh-cht": "新增成員身份",
3308
"xloc": [
3309
- "default.handlebars->27->1975"
3309
+ "default.handlebars->27->1978"
3310
]
3311
},
3312
{
@@ -3346,8 +3346,8 @@
3346
"zh-chs": "添加安全密钥",
3347
"zh-cht": "新增安全密鑰",
3348
"xloc": [
3349
- "default.handlebars->27->1026",
3350
- "default.handlebars->27->1027",
3349
+ "default.handlebars->27->1029",
3350
+ "default.handlebars->27->1030",
3351
"default.handlebars->27->149",
3352
"default.handlebars->27->151",
3353
"default.handlebars->27->154",
@@ -3372,7 +3372,7 @@
3372
"zh-cht": "新增用戶",
3373
"xloc": [
3374
"default-mobile.handlebars->9->398",
3375
- "default.handlebars->27->662"
3375
+ "default.handlebars->27->665"
3376
]
3377
},
3378
{
@@ -3392,7 +3392,7 @@
3392
"zh-chs": "添加用户设备权限",
3393
"zh-cht": "新增用戶裝置權限",
3394
"xloc": [
3395
- "default.handlebars->27->1451"
3395
+ "default.handlebars->27->1454"
3396
]
3397
},
3398
{
@@ -3412,10 +3412,10 @@
3412
"zh-chs": "添加用户组",
3413
"zh-cht": "新增用戶群",
3414
"xloc": [
3415
- "default.handlebars->27->1343",
3416
- "default.handlebars->27->1443",
3417
- "default.handlebars->27->1951",
3418
- "default.handlebars->27->663"
3415
+ "default.handlebars->27->1346",
3416
+ "default.handlebars->27->1446",
3417
+ "default.handlebars->27->1954",
3418
+ "default.handlebars->27->666"
3419
]
3420
},
3421
{
@@ -3435,7 +3435,7 @@
3435
"zh-chs": "添加用户组设备权限",
3436
"zh-cht": "新增用戶群裝置權限",
3437
"xloc": [
3438
- "default.handlebars->27->1453"
3438
+ "default.handlebars->27->1456"
3439
]
3440
},
3441
{
@@ -3492,8 +3492,8 @@
3492
"zh-chs": "添加用户",
3493
"zh-cht": "新增用戶",
3494
"xloc": [
3495
- "default.handlebars->27->1342",
3496
- "default.handlebars->27->1822"
3495
+ "default.handlebars->27->1345",
3496
+ "default.handlebars->27->1825"
3497
]
3498
},
3499
{
@@ -3513,7 +3513,7 @@
3513
"zh-chs": "将用户添加到设备组",
3514
"zh-cht": "將用戶新增到裝置群",
3515
"xloc": [
3516
- "default.handlebars->27->1440"
3516
+ "default.handlebars->27->1443"
3517
]
3518
},
3519
{
@@ -3533,7 +3533,7 @@
3533
"zh-chs": "将用户添加到用户组",
3534
"zh-cht": "將用戶新增到用戶群",
3535
"xloc": [
3536
- "default.handlebars->27->1855"
3536
+ "default.handlebars->27->1858"
3537
]
3538
},
3539
{
@@ -3593,7 +3593,7 @@
3593
"zh-chs": "添加位于互联网上的新英特尔®AMT计算机。",
3594
"zh-cht": "新增位於互聯網上的新Intel® AMT電腦。",
3595
"xloc": [
3596
- "default.handlebars->27->1344",
3596
+ "default.handlebars->27->1347",
3597
"default.handlebars->27->271"
3598
]
3599
},
@@ -3614,7 +3614,7 @@
3614
"zh-chs": "添加位于本地网络上的新英特尔®AMT计算机。",
3615
"zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。",
3616
"xloc": [
3617
- "default.handlebars->27->1346",
3617
+ "default.handlebars->27->1349",
3618
"default.handlebars->27->273"
3619
]
3620
},
@@ -3655,7 +3655,7 @@
3655
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3656
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3657
"xloc": [
3658
- "default.handlebars->27->1352",
3658
+ "default.handlebars->27->1355",
3659
"default.handlebars->27->281"
3660
]
3661
},
@@ -3676,7 +3676,7 @@
3676
"zh-chs": "添加标签",
3677
"zh-cht": "新增標籤",
3678
"xloc": [
3679
- "default.handlebars->27->476"
3679
+ "default.handlebars->27->479"
3680
]
3681
},
3682
{
@@ -3696,7 +3696,7 @@
3696
"zh-chs": "添加了身份验证应用程序",
3697
"zh-cht": "添加了身份驗證應用程序",
3698
"xloc": [
3699
- "default.handlebars->27->1651"
3699
+ "default.handlebars->27->1654"
3700
]
3701
},
3702
{
@@ -3716,8 +3716,8 @@
3716
"zh-chs": "已将设备{0}添加到设备组{1}",
3717
"zh-cht": "已將設備{0}添加到設備組{1}",
3718
"xloc": [
3719
- "default.handlebars->27->1618",
3720
- "default.handlebars->27->1645"
3719
+ "default.handlebars->27->1621",
3720
+ "default.handlebars->27->1648"
3721
]
3722
},
3723
{
@@ -3737,7 +3737,7 @@
3737
"zh-chs": "添加了安全密钥",
3738
"zh-cht": "添加了安全密鑰",
3739
"xloc": [
3740
- "default.handlebars->27->1656"
3740
+ "default.handlebars->27->1659"
3741
]
3742
},
3743
{
@@ -3757,7 +3757,7 @@
3757
"zh-chs": "已将用户组{0}添加到设备组{1}",
3758
"zh-cht": "已將用戶組{0}添加到設備組{1}",
3759
"xloc": [
3760
- "default.handlebars->27->1629"
3760
+ "default.handlebars->27->1632"
3761
]
3762
},
3763
{
@@ -3777,8 +3777,8 @@
3777
"zh-chs": "已将用户{0}添加到用户组{1}",
3778
"zh-cht": "已將用戶{0}添加到用戶組{1}",
3779
"xloc": [
3780
- "default.handlebars->27->1632",
3781
- "default.handlebars->27->1641"
3780
+ "default.handlebars->27->1635",
3781
+ "default.handlebars->27->1644"
3782
]
3783
},
3784
{
@@ -3839,7 +3839,7 @@
3839
"zh-cht": "管理員控制模式(ACM)",
3840
"xloc": [
3841
"default-mobile.handlebars->9->360",
3842
- "default.handlebars->27->958"
3842
+ "default.handlebars->27->961"
3843
]
3844
},
3845
{
@@ -3860,7 +3860,7 @@
3860
"zh-cht": "管理員憑證",
3861
"xloc": [
3862
"default-mobile.handlebars->9->366",
3863
- "default.handlebars->27->964"
3863
+ "default.handlebars->27->967"
3864
]
3865
},
3866
{
@@ -3901,7 +3901,7 @@
3901
"zh-chs": "管理领域",
3902
"zh-cht": "管理領域",
3903
"xloc": [
3904
- "default.handlebars->27->1891"
3904
+ "default.handlebars->27->1894"
3905
]
3906
},
3907
{
@@ -3942,7 +3942,7 @@
3942
"zh-chs": "管理领域",
3943
"zh-cht": "管理領域",
3944
"xloc": [
3945
- "default.handlebars->27->1771"
3945
+ "default.handlebars->27->1774"
3946
]
3947
},
3948
{
@@ -3962,7 +3962,7 @@
3962
"zh-chs": "管理员",
3963
"zh-cht": "管理員",
3964
"xloc": [
3965
- "default.handlebars->27->1700"
3965
+ "default.handlebars->27->1703"
3966
]
3967
},
3968
{
@@ -3982,7 +3982,7 @@
3982
"zh-chs": "南非文",
3983
"zh-cht": "南非文",
3984
"xloc": [
3985
- "default.handlebars->27->1029"
3985
+ "default.handlebars->27->1032"
3986
]
3987
},
3988
{
@@ -4005,8 +4005,8 @@
4005
"default-mobile.handlebars->9->199",
4006
"default-mobile.handlebars->9->223",
4007
"default-mobile.handlebars->9->239",
4008
- "default.handlebars->27->1505",
4009
- "default.handlebars->27->1513",
4008
+ "default.handlebars->27->1508",
4009
+ "default.handlebars->27->1516",
4010
"default.handlebars->27->210",
4011
"default.handlebars->27->439",
4012
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -4029,8 +4029,8 @@
4029
"zh-chs": "代理+英特尔AMT",
4030
"zh-cht": "代理+Intel® AMT",
4031
"xloc": [
4032
- "default.handlebars->27->1507",
4033
- "default.handlebars->27->1515"
4032
+ "default.handlebars->27->1510",
4033
+ "default.handlebars->27->1518"
4034
]
4035
},
4036
{
@@ -4071,7 +4071,7 @@
4071
"zh-cht": "代理控制台",
4072
"xloc": [
4073
"default-mobile.handlebars->9->433",
4074
- "default.handlebars->27->1461"
4074
+ "default.handlebars->27->1464"
4075
]
4076
},
4077
{
@@ -4091,7 +4091,7 @@
4091
"zh-chs": "代理错误计数器",
4092
"zh-cht": "代理錯誤計數器",
4093
"xloc": [
4094
- "default.handlebars->27->2018"
4094
+ "default.handlebars->27->2021"
4095
]
4096
},
4097
{
@@ -4194,7 +4194,7 @@
4194
"zh-chs": "代理时段",
4195
"zh-cht": "代理時段",
4196
"xloc": [
4197
- "default.handlebars->27->2034"
4197
+ "default.handlebars->27->2037"
4198
]
4199
},
4200
{
@@ -4215,7 +4215,7 @@
4215
"zh-cht": "代理標籤",
4216
"xloc": [
4217
"default-mobile.handlebars->9->238",
4218
- "default.handlebars->27->587"
4218
+ "default.handlebars->27->590"
4219
]
4220
},
4221
{
@@ -4235,7 +4235,7 @@
4235
"zh-chs": "代理类型",
4236
"zh-cht": "代理類型",
4237
"xloc": [
4238
- "default.handlebars->27->1511",
4238
+ "default.handlebars->27->1514",
4239
"default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
4240
]
4241
},
@@ -4256,7 +4256,7 @@
4256
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4257
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4258
"xloc": [
4259
- "default.handlebars->27->1615"
4259
+ "default.handlebars->27->1618"
4260
]
4261
},
4262
{
@@ -4277,8 +4277,8 @@
4277
"zh-cht": "代理已連接",
4278
"xloc": [
4279
"default.handlebars->27->160",
4280
- "default.handlebars->27->653",
4281
- "default.handlebars->27->654"
4280
+ "default.handlebars->27->656",
4281
+ "default.handlebars->27->657"
4282
]
4283
},
4284
{
@@ -4318,7 +4318,7 @@
4318
"zh-chs": "代理离线",
4319
"zh-cht": "代理離線",
4320
"xloc": [
4321
- "default.handlebars->27->991"
4321
+ "default.handlebars->27->994"
4322
]
4323
},
4324
{
@@ -4338,7 +4338,7 @@
4338
"zh-chs": "代理在线",
4339
"zh-cht": "代理在線",
4340
"xloc": [
4341
- "default.handlebars->27->990"
4341
+ "default.handlebars->27->993"
4342
]
4343
},
4344
{
@@ -4358,7 +4358,7 @@
4358
"zh-chs": "代理",
4359
"zh-cht": "代理",
4360
"xloc": [
4361
- "default.handlebars->27->2050"
4361
+ "default.handlebars->27->2053"
4362
]
4363
},
4364
{
@@ -4378,7 +4378,7 @@
4378
"zh-chs": "阿尔巴尼亚文",
4379
"zh-cht": "阿爾巴尼亞文",
4380
"xloc": [
4381
- "default.handlebars->27->1030"
4381
+ "default.handlebars->27->1033"
4382
]
4383
},
4384
{
@@ -4421,7 +4421,7 @@
4421
"zh-chs": "全部可用",
4422
"zh-cht": "全部可用",
4423
"xloc": [
4424
- "default.handlebars->27->1663"
4424
+ "default.handlebars->27->1666"
4425
]
4426
},
4427
{
@@ -4458,7 +4458,7 @@
4458
"zh-chs": "所有事件",
4459
"zh-cht": "所有事件",
4460
"xloc": [
4461
- "default.handlebars->27->1661"
4461
+ "default.handlebars->27->1664"
4462
]
4463
},
4464
{
@@ -4478,9 +4478,9 @@
4478
"zh-chs": "全部聚焦",
4479
"zh-cht": "全部聚焦",
4480
"xloc": [
4481
- "default.handlebars->27->826",
4482
- "default.handlebars->27->828",
4483
- "default.handlebars->27->829"
4481
+ "default.handlebars->27->829",
4482
+ "default.handlebars->27->831",
4483
+ "default.handlebars->27->832"
4484
]
4485
},
4486
{
@@ -4500,8 +4500,8 @@
4500
"zh-chs": "允许用户管理此设备组和该组中的设备。",
4501
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4502
"xloc": [
4503
- "default.handlebars->27->1409",
4504
- "default.handlebars->27->1852"
4503
+ "default.handlebars->27->1412",
4504
+ "default.handlebars->27->1855"
4505
]
4506
},
4507
{
@@ -4521,7 +4521,7 @@
4521
"zh-chs": "允许用户管理此设备。",
4522
"zh-cht": "允許用戶管理此裝置。",
4523
"xloc": [
4524
- "default.handlebars->27->1410"
4524
+ "default.handlebars->27->1413"
4525
]
4526
},
4527
{
@@ -4585,7 +4585,7 @@
4585
"zh-chs": "备用(F10 = ESC + 0)",
4586
"zh-cht": "備用(F10 = ESC + 0)",
4587
"xloc": [
4588
- "default.handlebars->27->863"
4588
+ "default.handlebars->27->866"
4589
]
4590
},
4591
{
@@ -4626,9 +4626,9 @@
4626
"zh-chs": "一直通知",
4627
"zh-cht": "一直通知",
4628
"xloc": [
4629
- "default.handlebars->27->1323",
4630
- "default.handlebars->27->1900",
4631
- "default.handlebars->27->603"
4629
+ "default.handlebars->27->1326",
4630
+ "default.handlebars->27->1903",
4631
+ "default.handlebars->27->606"
4632
]
4633
},
4634
{
@@ -4648,9 +4648,9 @@
4648
"zh-chs": "一直提示",
4649
"zh-cht": "一直提示",
4650
"xloc": [
4651
- "default.handlebars->27->1324",
4652
- "default.handlebars->27->1901",
4653
- "default.handlebars->27->604"
4651
+ "default.handlebars->27->1327",
4652
+ "default.handlebars->27->1904",
4653
+ "default.handlebars->27->607"
4654
]
4655
},
4656
{
@@ -4792,7 +4792,7 @@
4792
"zh-chs": "杀毒软件",
4793
"zh-cht": "防毒軟體",
4794
"xloc": [
4795
- "default.handlebars->27->593"
4795
+ "default.handlebars->27->596"
4796
]
4797
},
4798
{
@@ -4892,7 +4892,7 @@
4892
"zh-chs": "阿拉伯文(阿尔及利亚)",
4893
"zh-cht": "阿拉伯文(阿爾及利亞)",
4894
"xloc": [
4895
- "default.handlebars->27->1032"
4895
+ "default.handlebars->27->1035"
4896
]
4897
},
4898
{
@@ -4912,7 +4912,7 @@
4912
"zh-chs": "阿拉伯文(巴林)",
4913
"zh-cht": "阿拉伯文(巴林)",
4914
"xloc": [
4915
- "default.handlebars->27->1033"
4915
+ "default.handlebars->27->1036"
4916
]
4917
},
4918
{
@@ -4932,7 +4932,7 @@
4932
"zh-chs": "阿拉伯文(埃及)",
4933
"zh-cht": "阿拉伯文(埃及)",
4934
"xloc": [
4935
- "default.handlebars->27->1034"
4935
+ "default.handlebars->27->1037"
4936
]
4937
},
4938
{
@@ -4952,7 +4952,7 @@
4952
"zh-chs": "阿拉伯文(伊拉克)",
4953
"zh-cht": "阿拉伯文(伊拉克)",
4954
"xloc": [
4955
- "default.handlebars->27->1035"
4955
+ "default.handlebars->27->1038"
4956
]
4957
},
4958
{
@@ -4972,7 +4972,7 @@
4972
"zh-chs": "阿拉伯文(约旦)",
4973
"zh-cht": "阿拉伯文(約旦)",
4974
"xloc": [
4975
- "default.handlebars->27->1036"
4975
+ "default.handlebars->27->1039"
4976
]
4977
},
4978
{
@@ -4992,7 +4992,7 @@
4992
"zh-chs": "阿拉伯文(科威特)",
4993
"zh-cht": "阿拉伯文(科威特)",
4994
"xloc": [
4995
- "default.handlebars->27->1037"
4995
+ "default.handlebars->27->1040"
4996
]
4997
},
4998
{
@@ -5012,7 +5012,7 @@
5012
"zh-chs": "阿拉伯文(黎巴嫩)",
5013
"zh-cht": "阿拉伯文(黎巴嫩)",
5014
"xloc": [
5015
- "default.handlebars->27->1038"
5015
+ "default.handlebars->27->1041"
5016
]
5017
},
5018
{
@@ -5032,7 +5032,7 @@
5032
"zh-chs": "阿拉伯文(利比亚)",
5033
"zh-cht": "阿拉伯文(利比亞)",
5034
"xloc": [
5035
- "default.handlebars->27->1039"
5035
+ "default.handlebars->27->1042"
5036
]
5037
},
5038
{
@@ -5052,7 +5052,7 @@
5052
"zh-chs": "阿拉伯文(摩洛哥)",
5053
"zh-cht": "阿拉伯文(摩洛哥)",
5054
"xloc": [
5055
- "default.handlebars->27->1040"
5055
+ "default.handlebars->27->1043"
5056
]
5057
},
5058
{
@@ -5072,7 +5072,7 @@
5072
"zh-chs": "阿拉伯文(阿曼)",
5073
"zh-cht": "阿拉伯文(阿曼)",
5074
"xloc": [
5075
- "default.handlebars->27->1041"
5075
+ "default.handlebars->27->1044"
5076
]
5077
},
5078
{
@@ -5092,7 +5092,7 @@
5092
"zh-chs": "阿拉伯文(卡塔尔)",
5093
"zh-cht": "阿拉伯文(卡塔爾)",
5094
"xloc": [
5095
- "default.handlebars->27->1042"
5095
+ "default.handlebars->27->1045"
5096
]
5097
},
5098
{
@@ -5112,7 +5112,7 @@
5112
"zh-chs": "阿拉伯文(沙特阿拉伯)",
5113
"zh-cht": "阿拉伯文(沙特阿拉伯)",
5114
"xloc": [
5115
- "default.handlebars->27->1043"
5115
+ "default.handlebars->27->1046"
5116
]
5117
},
5118
{
@@ -5132,7 +5132,7 @@
5132
"zh-chs": "阿拉伯文(标准)",
5133
"zh-cht": "阿拉伯文(標準)",
5134
"xloc": [
5135
- "default.handlebars->27->1031"
5135
+ "default.handlebars->27->1034"
5136
]
5137
},
5138
{
@@ -5152,7 +5152,7 @@
5152
"zh-chs": "阿拉伯文(叙利亚)",
5153
"zh-cht": "阿拉伯文(敘利亞)",
5154
"xloc": [
5155
- "default.handlebars->27->1044"
5155
+ "default.handlebars->27->1047"
5156
]
5157
},
5158
{
@@ -5172,7 +5172,7 @@
5172
"zh-chs": "阿拉伯文(突尼斯)",
5173
"zh-cht": "阿拉伯文(突尼斯)",
5174
"xloc": [
5175
- "default.handlebars->27->1045"
5175
+ "default.handlebars->27->1048"
5176
]
5177
},
5178
{
@@ -5192,7 +5192,7 @@
5192
"zh-chs": "阿拉伯文(阿联酋)",
5193
"zh-cht": "阿拉伯文(阿聯酋)",
5194
"xloc": [
5195
- "default.handlebars->27->1046"
5195
+ "default.handlebars->27->1049"
5196
]
5197
},
5198
{
@@ -5212,7 +5212,7 @@
5212
"zh-chs": "阿拉伯文(也门)",
5213
"zh-cht": "阿拉伯文(也門)",
5214
"xloc": [
5215
- "default.handlebars->27->1047"
5215
+ "default.handlebars->27->1050"
5216
]
5217
},
5218
{
@@ -5232,7 +5232,7 @@
5232
"zh-chs": "阿拉贡文",
5233
"zh-cht": "阿拉貢文",
5234
"xloc": [
5235
- "default.handlebars->27->1048"
5235
+ "default.handlebars->27->1051"
5236
]
5237
},
5238
{
@@ -5253,7 +5253,7 @@
5253
"zh-cht": "結構",
5254
"xloc": [
5255
"default-mobile.handlebars->9->330",
5256
- "default.handlebars->27->918"
5256
+ "default.handlebars->27->921"
5257
]
5258
},
5259
{
@@ -5294,7 +5294,7 @@
5294
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5295
"xloc": [
5296
"default-mobile.handlebars->9->404",
5297
- "default.handlebars->27->1387"
5297
+ "default.handlebars->27->1390"
5298
]
5299
},
5300
{
@@ -5314,7 +5314,7 @@
5314
"zh-chs": "您确定要删除节点{0}吗?",
5315
"zh-cht": "你確定要刪除節點{0}嗎?",
5316
"xloc": [
5317
- "default.handlebars->27->773"
5317
+ "default.handlebars->27->776"
5318
]
5319
},
5320
{
@@ -5334,7 +5334,7 @@
5334
"zh-chs": "您确定要卸载所选代理吗?",
5335
"zh-cht": "你確定要卸載所選代理嗎?",
5336
"xloc": [
5337
- "default.handlebars->27->762"
5337
+ "default.handlebars->27->765"
5338
]
5339
},
5340
{
@@ -5354,7 +5354,7 @@
5354
"zh-chs": "您确定要卸载所选的{0}代理吗?",
5355
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
5356
"xloc": [
5357
- "default.handlebars->27->761"
5357
+ "default.handlebars->27->764"
5358
]
5359
},
5360
{
@@ -5374,7 +5374,7 @@
5374
"zh-chs": "您确定要{0}插件吗:{1}",
5375
"zh-cht": "你確定要{0}外掛嗎:{1}",
5376
"xloc": [
5377
- "default.handlebars->27->2090"
5377
+ "default.handlebars->27->2093"
5378
]
5379
},
5380
{
@@ -5394,7 +5394,7 @@
5394
"zh-chs": "亚美尼亚文",
5395
"zh-cht": "亞美尼亞文",
5396
"xloc": [
5397
- "default.handlebars->27->1049"
5397
+ "default.handlebars->27->1052"
5398
]
5399
},
5400
{
@@ -5454,7 +5454,7 @@
5454
"zh-chs": "阿萨姆文",
5455
"zh-cht": "阿薩姆文",
5456
"xloc": [
5457
- "default.handlebars->27->1050"
5457
+ "default.handlebars->27->1053"
5458
]
5459
},
5460
{
@@ -5474,7 +5474,7 @@
5474
"zh-chs": "阿斯图里亚斯文",
5475
"zh-cht": "阿斯圖里亞斯文",
5476
"xloc": [
5477
- "default.handlebars->27->1051"
5477
+ "default.handlebars->27->1054"
5478
]
5479
},
5480
{
@@ -5494,7 +5494,7 @@
5494
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5495
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5496
"xloc": [
5497
- "default.handlebars->27->1584"
5497
+ "default.handlebars->27->1587"
5498
]
5499
},
5500
{
@@ -5514,7 +5514,7 @@
5514
"zh-chs": "认证软件",
5515
"zh-cht": "認證軟體",
5516
"xloc": [
5517
- "default.handlebars->27->1904"
5517
+ "default.handlebars->27->1907"
5518
]
5519
},
5520
{
@@ -5538,8 +5538,8 @@
5538
"default-mobile.handlebars->9->52",
5539
"default-mobile.handlebars->9->71",
5540
"default-mobile.handlebars->9->73",
5541
- "default.handlebars->27->1015",
5542
- "default.handlebars->27->1017",
5541
+ "default.handlebars->27->1018",
5542
+ "default.handlebars->27->1020",
5543
"default.handlebars->27->125",
5544
"default.handlebars->27->130"
5545
]
@@ -5621,7 +5621,7 @@
5621
"zh-chs": "自动删除",
5622
"zh-cht": "自動刪除",
5623
"xloc": [
5624
- "default.handlebars->27->1311"
5624
+ "default.handlebars->27->1314"
5625
]
5626
},
5627
{
@@ -5685,7 +5685,7 @@
5685
"zh-chs": "可用內存",
5686
"zh-cht": "可用內存",
5687
"xloc": [
5688
- "default.handlebars->27->2043"
5688
+ "default.handlebars->27->2046"
5689
]
5690
},
5691
{
@@ -5705,7 +5705,7 @@
5705
"zh-chs": "阿塞拜疆文",
5706
"zh-cht": "阿塞拜疆文",
5707
"xloc": [
5708
- "default.handlebars->27->1052"
5708
+ "default.handlebars->27->1055"
5709
]
5710
},
5711
{
@@ -5726,7 +5726,7 @@
5726
"zh-cht": "的BIOS",
5727
"xloc": [
5728
"default-mobile.handlebars->9->372",
5729
- "default.handlebars->27->970"
5729
+ "default.handlebars->27->973"
5730
]
5731
},
5732
{
@@ -5841,8 +5841,8 @@
5841
"zh-chs": "背景与互动",
5842
"zh-cht": "背景與互動",
5843
"xloc": [
5844
- "default.handlebars->27->1488",
5845
- "default.handlebars->27->1495",
5844
+ "default.handlebars->27->1491",
5845
+ "default.handlebars->27->1498",
5846
"default.handlebars->27->352",
5847
"default.handlebars->27->366"
5848
]
@@ -5864,8 +5864,8 @@
5864
"zh-chs": "仅背景",
5865
"zh-cht": "僅背景",
5866
"xloc": [
5867
- "default.handlebars->27->1489",
5868
- "default.handlebars->27->1496",
5867
+ "default.handlebars->27->1492",
5868
+ "default.handlebars->27->1499",
5869
"default.handlebars->27->353",
5870
"default.handlebars->27->367",
5871
"default.handlebars->27->381"
@@ -5908,7 +5908,7 @@
5908
"zh-chs": "备用码",
5909
"zh-cht": "備用碼",
5910
"xloc": [
5911
- "default.handlebars->27->1906"
5911
+ "default.handlebars->27->1909"
5912
]
5913
},
5914
{
@@ -5928,7 +5928,7 @@
5928
"zh-chs": "错误的签名",
5929
"zh-cht": "錯誤的簽名",
5930
"xloc": [
5931
- "default.handlebars->27->2025"
5931
+ "default.handlebars->27->2028"
5932
]
5933
},
5934
{
@@ -5948,7 +5948,7 @@
5948
"zh-chs": "错误的网络证书",
5949
"zh-cht": "錯誤的網絡憑證",
5950
"xloc": [
5951
- "default.handlebars->27->2024"
5951
+ "default.handlebars->27->2027"
5952
]
5953
},
5954
{
@@ -5968,7 +5968,7 @@
5968
"zh-chs": "巴斯克",
5969
"zh-cht": "巴斯克",
5970
"xloc": [
5971
- "default.handlebars->27->1053"
5971
+ "default.handlebars->27->1056"
5972
]
5973
},
5974
{
@@ -6008,7 +6008,7 @@
6008
"zh-chs": "白俄罗斯文",
6009
"zh-cht": "白俄羅斯文",
6010
"xloc": [
6011
- "default.handlebars->27->1055"
6011
+ "default.handlebars->27->1058"
6012
]
6013
},
6014
{
@@ -6028,7 +6028,7 @@
6028
"zh-chs": "孟加拉",
6029
"zh-cht": "孟加拉",
6030
"xloc": [
6031
- "default.handlebars->27->1056"
6031
+ "default.handlebars->27->1059"
6032
]
6033
},
6034
{
@@ -6071,7 +6071,7 @@
6071
"zh-chs": "波斯尼亚文",
6072
"zh-cht": "波斯尼亞文",
6073
"xloc": [
6074
- "default.handlebars->27->1057"
6074
+ "default.handlebars->27->1060"
6075
]
6076
},
6077
{
@@ -6091,7 +6091,7 @@
6091
"zh-chs": "布列塔尼",
6092
"zh-cht": "布列塔尼",
6093
"xloc": [
6094
- "default.handlebars->27->1058"
6094
+ "default.handlebars->27->1061"
6095
]
6096
},
6097
{
@@ -6111,7 +6111,7 @@
6111
"zh-chs": "广播",
6112
"zh-cht": "廣播",
6113
"xloc": [
6114
- "default.handlebars->27->1820",
6114
+ "default.handlebars->27->1823",
6115
"default.handlebars->container->column_l->p4->3->1->0->3->1"
6116
]
6117
},
@@ -6132,7 +6132,7 @@
6132
"zh-chs": "广播消息",
6133
"zh-cht": "廣播消息",
6134
"xloc": [
6135
- "default.handlebars->27->1753"
6135
+ "default.handlebars->27->1756"
6136
]
6137
},
6138
{
@@ -6152,7 +6152,7 @@
6152
"zh-chs": "向所有连接的用户广播消息。",
6153
"zh-cht": "向所有連接的用戶廣播消息。",
6154
"xloc": [
6155
- "default.handlebars->27->1748"
6155
+ "default.handlebars->27->1751"
6156
]
6157
},
6158
{
@@ -6172,7 +6172,7 @@
6172
"zh-chs": "保加利亚文",
6173
"zh-cht": "保加利亞文",
6174
"xloc": [
6175
- "default.handlebars->27->1054"
6175
+ "default.handlebars->27->1057"
6176
]
6177
},
6178
{
@@ -6192,7 +6192,7 @@
6192
"zh-chs": "缅甸文",
6193
"zh-cht": "緬甸文",
6194
"xloc": [
6195
- "default.handlebars->27->1059"
6195
+ "default.handlebars->27->1062"
6196
]
6197
},
6198
{
@@ -6213,7 +6213,7 @@
6213
"zh-cht": "CCM",
6214
"xloc": [
6215
"default-mobile.handlebars->9->230",
6216
- "default.handlebars->27->572"
6216
+ "default.handlebars->27->575"
6217
]
6218
},
6219
{
@@ -6234,8 +6234,8 @@
6234
"zh-cht": "CIRA",
6235
"xloc": [
6236
"default-mobile.handlebars->9->200",
6237
- "default.handlebars->27->1375",
6238
- "default.handlebars->27->1380",
6237
+ "default.handlebars->27->1378",
6238
+ "default.handlebars->27->1383",
6239
"default.handlebars->27->212",
6240
"default.handlebars->27->441"
6241
]
@@ -6257,7 +6257,7 @@
6257
"zh-chs": "CIRA服务器",
6258
"zh-cht": "CIRA伺服器",
6259
"xloc": [
6260
- "default.handlebars->27->2078"
6260
+ "default.handlebars->27->2081"
6261
]
6262
},
6263
{
@@ -6277,7 +6277,7 @@
6277
"zh-chs": "CIRA服务器命令",
6278
"zh-cht": "CIRA伺服器指令",
6279
"xloc": [
6280
- "default.handlebars->27->2079"
6280
+ "default.handlebars->27->2082"
6281
]
6282
},
6283
{
@@ -6298,7 +6298,7 @@
6298
"zh-cht": "CPU",
6299
"xloc": [
6300
"default-mobile.handlebars->9->378",
6301
- "default.handlebars->27->976"
6301
+ "default.handlebars->27->979"
6302
]
6303
},
6304
{
@@ -6318,7 +6318,7 @@
6318
"zh-chs": "CPU负载",
6319
"zh-cht": "CPU負載",
6320
"xloc": [
6321
- "default.handlebars->27->2039"
6321
+ "default.handlebars->27->2042"
6322
]
6323
},
6324
{
@@ -6338,7 +6338,7 @@
6338
"zh-chs": "最近15分钟的CPU负载",
6339
"zh-cht": "最近15分鐘的CPU負載",
6340
"xloc": [
6341
- "default.handlebars->27->2042"
6341
+ "default.handlebars->27->2045"
6342
]
6343
},
6344
{
@@ -6358,7 +6358,7 @@
6358
"zh-chs": "最近5分钟的CPU负载",
6359
"zh-cht": "最近5分鐘的CPU負載",
6360
"xloc": [
6361
- "default.handlebars->27->2041"
6361
+ "default.handlebars->27->2044"
6362
]
6363
},
6364
{
@@ -6378,7 +6378,7 @@
6378
"zh-chs": "最近一分钟的CPU负载",
6379
"zh-cht": "最近一分鐘的CPU負載",
6380
"xloc": [
6381
- "default.handlebars->27->2040"
6381
+ "default.handlebars->27->2043"
6382
]
6383
},
6384
{
@@ -6398,8 +6398,8 @@
6398
"zh-chs": "CR+LF",
6399
"zh-cht": "CR+LF",
6400
"xloc": [
6401
- "default.handlebars->27->856",
6402
- "default.handlebars->27->865",
6401
+ "default.handlebars->27->859",
6402
+ "default.handlebars->27->868",
6403
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
6404
]
6405
},
@@ -6420,7 +6420,7 @@
6420
"zh-chs": "CSV",
6421
"zh-cht": "CSV",
6422
"xloc": [
6423
- "default.handlebars->27->1671"
6423
+ "default.handlebars->27->1674"
6424
]
6425
},
6426
{
@@ -6440,9 +6440,9 @@
6440
"zh-chs": "CSV格式",
6441
"zh-cht": "CSV格式",
6442
"xloc": [
6443
- "default.handlebars->27->1675",
6444
- "default.handlebars->27->1740",
6445
- "default.handlebars->27->488"
6443
+ "default.handlebars->27->1678",
6444
+ "default.handlebars->27->1743",
6445
+ "default.handlebars->27->491"
6446
]
6447
},
6448
{
@@ -6462,7 +6462,7 @@
6462
"zh-chs": "呼叫错误",
6463
"zh-cht": "呼叫錯誤",
6464
"xloc": [
6465
- "default.handlebars->27->2091"
6465
+ "default.handlebars->27->2094"
6466
]
6467
},
6468
{
@@ -6484,7 +6484,7 @@
6484
"xloc": [
6485
"default-mobile.handlebars->9->82",
6486
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
6487
- "default.handlebars->27->1289",
6487
+ "default.handlebars->27->1292",
6488
"default.handlebars->container->dialog->idx_dlgButtonBar",
6489
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
6490
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -6513,8 +6513,8 @@
6513
"xloc": [
6514
"default-mobile.handlebars->9->386",
6515
"default-mobile.handlebars->9->388",
6516
- "default.handlebars->27->984",
6517
- "default.handlebars->27->986"
6516
+ "default.handlebars->27->987",
6517
+ "default.handlebars->27->989"
6518
]
6519
},
6520
{
@@ -6535,7 +6535,7 @@
6535
"zh-cht": "容量/速度",
6536
"xloc": [
6537
"default-mobile.handlebars->9->381",
6538
- "default.handlebars->27->979"
6538
+ "default.handlebars->27->982"
6539
]
6540
},
6541
{
@@ -6555,7 +6555,7 @@
6555
"zh-chs": "加泰罗尼亚文",
6556
"zh-cht": "加泰羅尼亞文",
6557
"xloc": [
6558
- "default.handlebars->27->1060"
6558
+ "default.handlebars->27->1063"
6559
]
6560
},
6561
{
@@ -6575,7 +6575,7 @@
6575
"zh-chs": "在这里为中心显示地图",
6576
"zh-cht": "在這裡為中心顯示地圖",
6577
"xloc": [
6578
- "default.handlebars->27->534"
6578
+ "default.handlebars->27->537"
6579
]
6580
},
6581
{
@@ -6595,7 +6595,7 @@
6595
"zh-chs": "查莫罗",
6596
"zh-cht": "查莫羅",
6597
"xloc": [
6598
- "default.handlebars->27->1061"
6598
+ "default.handlebars->27->1064"
6599
]
6600
},
6601
{
@@ -6637,7 +6637,7 @@
6637
"zh-chs": "更改{0}的电邮",
6638
"zh-cht": "更改{0}的電郵",
6639
"xloc": [
6640
- "default.handlebars->27->1934"
6640
+ "default.handlebars->27->1937"
6641
]
6642
},
6643
{
@@ -6657,9 +6657,9 @@
6657
"zh-chs": "更改组",
6658
"zh-cht": "更改群",
6659
"xloc": [
6660
- "default.handlebars->27->630",
6661
- "default.handlebars->27->770",
6662
- "default.handlebars->27->771"
6660
+ "default.handlebars->27->633",
6661
+ "default.handlebars->27->773",
6662
+ "default.handlebars->27->774"
6663
]
6664
},
6665
{
@@ -6680,8 +6680,8 @@
6680
"zh-cht": "更改密碼",
6681
"xloc": [
6682
"default-mobile.handlebars->9->90",
6683
- "default.handlebars->27->1256",
6684
- "default.handlebars->27->1921"
6683
+ "default.handlebars->27->1259",
6684
+ "default.handlebars->27->1924"
6685
]
6686
},
6687
{
@@ -6701,7 +6701,7 @@
6701
"zh-chs": "更改{0}的密码",
6702
"zh-cht": "更改{0}的密碼",
6703
"xloc": [
6704
- "default.handlebars->27->1941"
6704
+ "default.handlebars->27->1944"
6705
]
6706
},
6707
{
@@ -6721,7 +6721,7 @@
6721
"zh-chs": "更改{0}的真实名称",
6722
"zh-cht": "更改{0}的真實名稱",
6723
"xloc": [
6724
- "default.handlebars->27->1929"
6724
+ "default.handlebars->27->1932"
6725
]
6726
},
6727
{
@@ -6803,7 +6803,7 @@
6803
"zh-chs": "更改该用户的密码",
6804
"zh-cht": "更改該用戶的密碼",
6805
"xloc": [
6806
- "default.handlebars->27->1920"
6806
+ "default.handlebars->27->1923"
6807
]
6808
},
6809
{
@@ -6843,7 +6843,7 @@
6843
"zh-chs": "在此处更改您的帐户电邮地址。",
6844
"zh-cht": "在此處更改你的帳戶電郵地址。",
6845
"xloc": [
6846
- "default.handlebars->27->1243"
6846
+ "default.handlebars->27->1246"
6847
]
6848
},
6849
{
@@ -6863,7 +6863,7 @@
6863
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
6864
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
6865
"xloc": [
6866
- "default.handlebars->27->1249"
6866
+ "default.handlebars->27->1252"
6867
]
6868
},
6869
{
@@ -6883,7 +6883,7 @@
6883
"zh-chs": "更改帐户凭据",
6884
"zh-cht": "帳戶憑證已更改",
6885
"xloc": [
6886
- "default.handlebars->27->1636"
6886
+ "default.handlebars->27->1639"
6887
]
6888
},
6889
{
@@ -6903,7 +6903,7 @@
6903
"zh-chs": "{1}组中的设备{0}已更改:{2}",
6904
"zh-cht": "{1}組中的設備{0}已更改:{2}",
6905
"xloc": [
6906
- "default.handlebars->27->1620"
6906
+ "default.handlebars->27->1623"
6907
]
6908
},
6909
{
@@ -6923,7 +6923,7 @@
6923
"zh-chs": "语言从{1}更改为{2}",
6924
"zh-cht": "語言從{1}更改為{2}",
6925
"xloc": [
6926
- "default.handlebars->27->1564"
6926
+ "default.handlebars->27->1567"
6927
]
6928
},
6929
{
@@ -6943,8 +6943,8 @@
6943
"zh-chs": "已更改{0}的用户设备权限",
6944
"zh-cht": "已更改{0}的用戶設備權限",
6945
"xloc": [
6946
- "default.handlebars->27->1622",
6947
- "default.handlebars->27->1643"
6946
+ "default.handlebars->27->1625",
6947
+ "default.handlebars->27->1646"
6948
]
6949
},
6950
{
@@ -6964,7 +6964,7 @@
6964
"zh-chs": "更改语言将需要刷新页面。",
6965
"zh-cht": "更改語言將需要刷新頁面。",
6966
"xloc": [
6967
- "default.handlebars->27->1228"
6967
+ "default.handlebars->27->1231"
6968
]
6969
},
6970
{
@@ -6984,9 +6984,9 @@
6984
"zh-chs": "聊天",
6985
"zh-cht": "聊天",
6986
"xloc": [
6987
- "default.handlebars->27->1692",
6988
- "default.handlebars->27->683",
6989
- "default.handlebars->27->702"
6987
+ "default.handlebars->27->1695",
6988
+ "default.handlebars->27->686",
6989
+ "default.handlebars->27->705"
6990
]
6991
},
6992
{
@@ -7008,8 +7008,8 @@
7008
"xloc": [
7009
"default-mobile.handlebars->9->425",
7010
"default-mobile.handlebars->9->443",
7011
- "default.handlebars->27->1437",
7012
- "default.handlebars->27->1472"
7011
+ "default.handlebars->27->1440",
7012
+ "default.handlebars->27->1475"
7013
]
7014
},
7015
{
@@ -7049,7 +7049,7 @@
7049
"zh-chs": "车臣",
7050
"zh-cht": "車臣",
7051
"xloc": [
7052
- "default.handlebars->27->1062"
7052
+ "default.handlebars->27->1065"
7053
]
7054
},
7055
{
@@ -7149,8 +7149,8 @@
7149
"zh-chs": "检查...",
7150
"zh-cht": "檢查...",
7151
"xloc": [
7152
- "default.handlebars->27->1028",
7153
- "default.handlebars->27->2085"
7152
+ "default.handlebars->27->1031",
7153
+ "default.handlebars->27->2088"
7154
]
7155
},
7156
{
@@ -7170,7 +7170,7 @@
7170
"zh-chs": "中文",
7171
"zh-cht": "中文",
7172
"xloc": [
7173
- "default.handlebars->27->1063"
7173
+ "default.handlebars->27->1066"
7174
]
7175
},
7176
{
@@ -7190,7 +7190,7 @@
7190
"zh-chs": "中文(香港)",
7191
"zh-cht": "中文(香港)",
7192
"xloc": [
7193
- "default.handlebars->27->1064"
7193
+ "default.handlebars->27->1067"
7194
]
7195
},
7196
{
@@ -7210,7 +7210,7 @@
7210
"zh-chs": "中文(中国)",
7211
"zh-cht": "中文(中國)",
7212
"xloc": [
7213
- "default.handlebars->27->1065"
7213
+ "default.handlebars->27->1068"
7214
]
7215
},
7216
{
@@ -7230,7 +7230,7 @@
7230
"zh-chs": "简体中文",
7231
"zh-cht": "簡體中文",
7232
"xloc": [
7233
- "default.handlebars->27->1225"
7233
+ "default.handlebars->27->1228"
7234
]
7235
},
7236
{
@@ -7250,7 +7250,7 @@
7250
"zh-chs": "中文(新加坡)",
7251
"zh-cht": "中文(新加坡)",
7252
"xloc": [
7253
- "default.handlebars->27->1066"
7253
+ "default.handlebars->27->1069"
7254
]
7255
},
7256
{
@@ -7270,7 +7270,7 @@
7270
"zh-chs": "中文(台湾)",
7271
"zh-cht": "中文(台灣)",
7272
"xloc": [
7273
- "default.handlebars->27->1067"
7273
+ "default.handlebars->27->1070"
7274
]
7275
},
7276
{
@@ -7290,7 +7290,7 @@
7290
"zh-chs": "繁体中文",
7291
"zh-cht": "繁體中文",
7292
"xloc": [
7293
- "default.handlebars->27->1226"
7293
+ "default.handlebars->27->1229"
7294
]
7295
},
7296
{
@@ -7331,7 +7331,7 @@
7331
"zh-chs": "楚瓦什",
7332
"zh-cht": "楚瓦什",
7333
"xloc": [
7334
- "default.handlebars->27->1068"
7334
+ "default.handlebars->27->1071"
7335
]
7336
},
7337
{
@@ -7377,11 +7377,11 @@
7377
"default-mobile.handlebars->9->318",
7378
"default-mobile.handlebars->9->320",
7379
"default-mobile.handlebars->9->59",
7380
- "default.handlebars->27->1558",
7381
- "default.handlebars->27->895",
7382
- "default.handlebars->27->897",
7383
- "default.handlebars->27->899",
7384
- "default.handlebars->27->901",
7380
+ "default.handlebars->27->1561",
7381
+ "default.handlebars->27->898",
7382
+ "default.handlebars->27->900",
7383
+ "default.handlebars->27->902",
7384
+ "default.handlebars->27->904",
7385
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
7386
"default.handlebars->container->column_l->p41->3->1",
7387
"messenger.handlebars->xbottom"
@@ -7424,7 +7424,7 @@
7424
"zh-chs": "全部清除",
7425
"zh-cht": "全部清除",
7426
"xloc": [
7427
- "default.handlebars->27->2012"
7427
+ "default.handlebars->27->2015"
7428
]
7429
},
7430
{
@@ -7444,7 +7444,7 @@
7444
"zh-chs": "清除核心",
7445
"zh-cht": "清除核心",
7446
"xloc": [
7447
- "default.handlebars->27->1000"
7447
+ "default.handlebars->27->1003"
7448
]
7449
},
7450
{
@@ -7484,7 +7484,7 @@
7484
"zh-chs": "清除此通知",
7485
"zh-cht": "清除此通知",
7486
"xloc": [
7487
- "default.handlebars->27->2011"
7487
+ "default.handlebars->27->2014"
7488
]
7489
},
7490
{
@@ -7544,8 +7544,8 @@
7544
"zh-chs": "单击此处编辑设备组名称",
7545
"zh-cht": "單擊此處編輯裝置群名稱",
7546
"xloc": [
7547
- "default.handlebars->27->1300",
7548
- "default.handlebars->27->1509"
7547
+ "default.handlebars->27->1303",
7548
+ "default.handlebars->27->1512"
7549
]
7550
},
7551
{
@@ -7565,7 +7565,7 @@
7565
"zh-chs": "单击此处编辑服务器端设备名称",
7566
"zh-cht": "單擊此處編輯伺服器端裝置名稱",
7567
"xloc": [
7568
- "default.handlebars->27->550"
7568
+ "default.handlebars->27->553"
7569
]
7570
},
7571
{
@@ -7585,7 +7585,7 @@
7585
"zh-chs": "单击此处编辑用户组名称",
7586
"zh-cht": "單擊此處編輯用戶群名稱",
7587
"xloc": [
7588
- "default.handlebars->27->1809"
7588
+ "default.handlebars->27->1812"
7589
]
7590
},
7591
{
@@ -7646,7 +7646,7 @@
7646
"zh-cht": "單擊確定將驗證電郵發送到:",
7647
"xloc": [
7648
"default-mobile.handlebars->9->75",
7649
- "default.handlebars->27->1240"
7649
+ "default.handlebars->27->1243"
7650
]
7651
},
7652
{
@@ -7687,7 +7687,7 @@
7687
"zh-cht": "客戶端控制模式(CCM)",
7688
"xloc": [
7689
"default-mobile.handlebars->9->359",
7690
- "default.handlebars->27->957"
7690
+ "default.handlebars->27->960"
7691
]
7692
},
7693
{
@@ -7707,7 +7707,7 @@
7707
"zh-chs": "客户编号",
7708
"zh-cht": "客戶編號",
7709
"xloc": [
7710
- "default.handlebars->27->1282"
7710
+ "default.handlebars->27->1285"
7711
]
7712
},
7713
{
@@ -7727,8 +7727,8 @@
7727
"zh-chs": "客户端启动的远程访问",
7728
"zh-cht": "客戶端啟動的遠程訪問",
7729
"xloc": [
7730
- "default.handlebars->27->1374",
7731
- "default.handlebars->27->1379"
7730
+ "default.handlebars->27->1377",
7731
+ "default.handlebars->27->1382"
7732
]
7733
},
7734
{
@@ -7748,7 +7748,7 @@
7748
"zh-chs": "客户机密",
7749
"zh-cht": "客戶機密",
7750
"xloc": [
7751
- "default.handlebars->27->1283"
7751
+ "default.handlebars->27->1286"
7752
]
7753
},
7754
{
@@ -7792,7 +7792,7 @@
7792
"default-mobile.handlebars->9->57",
7793
"default.handlebars->27->137",
7794
"default.handlebars->27->145",
7795
- "default.handlebars->27->847"
7795
+ "default.handlebars->27->850"
7796
]
7797
},
7798
{
@@ -7812,7 +7812,7 @@
7812
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
7813
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
7814
"xloc": [
7815
- "default.handlebars->27->1569"
7815
+ "default.handlebars->27->1572"
7816
]
7817
},
7818
{
@@ -7901,8 +7901,8 @@
7901
"zh-chs": "通用设备组",
7902
"zh-cht": "通用裝置群",
7903
"xloc": [
7904
- "default.handlebars->27->1828",
7905
- "default.handlebars->27->1946"
7904
+ "default.handlebars->27->1831",
7905
+ "default.handlebars->27->1949"
7906
]
7907
},
7908
{
@@ -7922,8 +7922,8 @@
7922
"zh-chs": "通用设备",
7923
"zh-cht": "通用裝置",
7924
"xloc": [
7925
- "default.handlebars->27->1834",
7926
- "default.handlebars->27->1958"
7925
+ "default.handlebars->27->1837",
7926
+ "default.handlebars->27->1961"
7927
]
7928
},
7929
{
@@ -7943,7 +7943,7 @@
7943
"zh-chs": "压缩档案...",
7944
"zh-cht": "壓縮檔案...",
7945
"xloc": [
7946
- "default.handlebars->27->872"
7946
+ "default.handlebars->27->875"
7947
]
7948
},
7949
{
@@ -7964,7 +7964,7 @@
7964
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
7965
"xloc": [
7966
"default-mobile.handlebars->9->127",
7967
- "default.handlebars->27->1553"
7967
+ "default.handlebars->27->1556"
7968
]
7969
},
7970
{
@@ -7986,14 +7986,14 @@
7986
"xloc": [
7987
"default-mobile.handlebars->9->276",
7988
"default-mobile.handlebars->9->405",
7989
- "default.handlebars->27->1388",
7990
- "default.handlebars->27->1720",
7991
- "default.handlebars->27->1799",
7992
- "default.handlebars->27->1848",
7993
- "default.handlebars->27->1944",
7989
+ "default.handlebars->27->1391",
7990
+ "default.handlebars->27->1723",
7991
+ "default.handlebars->27->1802",
7992
+ "default.handlebars->27->1851",
7993
+ "default.handlebars->27->1947",
7994
"default.handlebars->27->467",
7995
- "default.handlebars->27->765",
7996
- "default.handlebars->27->774"
7995
+ "default.handlebars->27->768",
7996
+ "default.handlebars->27->777"
7997
]
7998
},
7999
{
@@ -8014,7 +8014,7 @@
8014
"zh-cht": "確認將1個副本複製到此位置?",
8015
"xloc": [
8016
"default-mobile.handlebars->9->309",
8017
- "default.handlebars->27->890"
8017
+ "default.handlebars->27->893"
8018
]
8019
},
8020
{
@@ -8034,7 +8034,7 @@
8034
"zh-chs": "确认{0}个条目的复制到此位置?",
8035
"zh-cht": "確認{0}個條目的複製到此位置?",
8036
"xloc": [
8037
- "default.handlebars->27->889"
8037
+ "default.handlebars->27->892"
8038
]
8039
},
8040
{
@@ -8074,7 +8074,7 @@
8074
"zh-chs": "确认删除选定的帐户?",
8075
"zh-cht": "確認刪除所選帳戶?",
8076
"xloc": [
8077
- "default.handlebars->27->1719"
8077
+ "default.handlebars->27->1722"
8078
]
8079
},
8080
{
@@ -8114,7 +8114,7 @@
8114
"zh-chs": "确认删除选定的用户组?",
8115
"zh-cht": "確認刪除所選用戶群?",
8116
"xloc": [
8117
- "default.handlebars->27->1798"
8117
+ "default.handlebars->27->1801"
8118
]
8119
},
8120
{
@@ -8134,7 +8134,7 @@
8134
"zh-chs": "确认删除用户{0}?",
8135
"zh-cht": "確認刪除用戶{0}?",
8136
"xloc": [
8137
- "default.handlebars->27->1943"
8137
+ "default.handlebars->27->1946"
8138
]
8139
},
8140
{
@@ -8154,7 +8154,7 @@
8154
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
8155
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8156
"xloc": [
8157
- "default.handlebars->27->1851"
8157
+ "default.handlebars->27->1854"
8158
]
8159
},
8160
{
@@ -8174,7 +8174,7 @@
8174
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8175
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8176
"xloc": [
8177
- "default.handlebars->27->1973"
8177
+ "default.handlebars->27->1976"
8178
]
8179
},
8180
{
@@ -8195,7 +8195,7 @@
8195
"zh-cht": "確認將1個條目移動到此位置?",
8196
"xloc": [
8197
"default-mobile.handlebars->9->311",
8198
- "default.handlebars->27->892"
8198
+ "default.handlebars->27->895"
8199
]
8200
},
8201
{
@@ -8215,7 +8215,7 @@
8215
"zh-chs": "确认将{0}个条目移到此位置?",
8216
"zh-cht": "確認將{0}個條目移到該位置?",
8217
"xloc": [
8218
- "default.handlebars->27->891"
8218
+ "default.handlebars->27->894"
8219
]
8220
},
8221
{
@@ -8255,7 +8255,7 @@
8255
"zh-chs": "确认覆盖?",
8256
"zh-cht": "確認覆蓋?",
8257
"xloc": [
8258
- "default.handlebars->27->1552"
8258
+ "default.handlebars->27->1555"
8259
]
8260
},
8261
{
@@ -8275,8 +8275,8 @@
8275
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
8276
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
8277
"xloc": [
8278
- "default.handlebars->27->1841",
8279
- "default.handlebars->27->1964"
8278
+ "default.handlebars->27->1844",
8279
+ "default.handlebars->27->1967"
8280
]
8281
},
8282
{
@@ -8296,8 +8296,8 @@
8296
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
8297
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
8298
"xloc": [
8299
- "default.handlebars->27->1843",
8300
- "default.handlebars->27->1977"
8299
+ "default.handlebars->27->1846",
8300
+ "default.handlebars->27->1980"
8301
]
8302
},
8303
{
@@ -8317,7 +8317,7 @@
8317
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
8318
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
8319
"xloc": [
8320
- "default.handlebars->27->1966"
8320
+ "default.handlebars->27->1969"
8321
]
8322
},
8323
{
@@ -8337,7 +8337,7 @@
8337
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
8338
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
8339
"xloc": [
8340
- "default.handlebars->27->1969"
8340
+ "default.handlebars->27->1972"
8341
]
8342
},
8343
{
@@ -8357,8 +8357,8 @@
8357
"zh-chs": "确认删除访问权限?",
8358
"zh-cht": "確認刪除訪問權限?",
8359
"xloc": [
8360
- "default.handlebars->27->1967",
8361
- "default.handlebars->27->1970"
8360
+ "default.handlebars->27->1970",
8361
+ "default.handlebars->27->1973"
8362
]
8363
},
8364
{
@@ -8379,7 +8379,7 @@
8379
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
8380
"xloc": [
8381
"default-mobile.handlebars->9->74",
8382
- "default.handlebars->27->1018"
8382
+ "default.handlebars->27->1021"
8383
]
8384
},
8385
{
@@ -8450,7 +8450,7 @@
8450
"zh-chs": "确认删除用户“ {0} ”的权限?",
8451
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
8452
"xloc": [
8453
- "default.handlebars->27->1481"
8453
+ "default.handlebars->27->1484"
8454
]
8455
},
8456
{
@@ -8470,7 +8470,7 @@
8470
"zh-chs": "确认删除用户组“ {0} ”的权限?",
8471
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
8472
"xloc": [
8473
- "default.handlebars->27->1483"
8473
+ "default.handlebars->27->1486"
8474
]
8475
},
8476
{
@@ -8530,8 +8530,8 @@
8530
"default-mobile.handlebars->9->291",
8531
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8532
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
8533
- "default.handlebars->27->1327",
8534
- "default.handlebars->27->868",
8533
+ "default.handlebars->27->1330",
8534
+ "default.handlebars->27->871",
8535
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
8536
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
8537
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -8578,8 +8578,8 @@
8578
"zh-chs": "连接到服务器",
8579
"zh-cht": "連接到伺服器",
8580
"xloc": [
8581
- "default.handlebars->27->1378",
8582
- "default.handlebars->27->1382"
8581
+ "default.handlebars->27->1381",
8582
+ "default.handlebars->27->1385"
8583
]
8584
},
8585
{
@@ -8700,7 +8700,7 @@
8700
"zh-chs": "已连接的英特尔®AMT",
8701
"zh-cht": "已連接的Intel® AMT",
8702
"xloc": [
8703
- "default.handlebars->27->2030"
8703
+ "default.handlebars->27->2033"
8704
]
8705
},
8706
{
@@ -8720,7 +8720,7 @@
8720
"zh-chs": "已连接的用户",
8721
"zh-cht": "已连接的用户",
8722
"xloc": [
8723
- "default.handlebars->27->2035"
8723
+ "default.handlebars->27->2038"
8724
]
8725
},
8726
{
@@ -8741,7 +8741,7 @@
8741
"zh-cht": "現在已連接",
8742
"xloc": [
8743
"default-mobile.handlebars->9->334",
8744
- "default.handlebars->27->922"
8744
+ "default.handlebars->27->925"
8745
]
8746
},
8747
{
@@ -8788,7 +8788,7 @@
8788
"default.handlebars->27->242",
8789
"default.handlebars->27->268",
8790
"default.handlebars->27->9",
8791
- "default.handlebars->27->913",
8791
+ "default.handlebars->27->916",
8792
"desktop.handlebars->3->2",
8793
"xterm.handlebars->9->2"
8794
]
@@ -8810,7 +8810,7 @@
8810
"zh-chs": "连接数量",
8811
"zh-cht": "連接數量",
8812
"xloc": [
8813
- "default.handlebars->27->2049"
8813
+ "default.handlebars->27->2052"
8814
]
8815
},
8816
{
@@ -8830,7 +8830,7 @@
8830
"zh-chs": "连接转发器",
8831
"zh-cht": "連接轉發器",
8832
"xloc": [
8833
- "default.handlebars->27->2077"
8833
+ "default.handlebars->27->2080"
8834
]
8835
},
8836
{
@@ -8891,9 +8891,9 @@
8891
"zh-cht": "連接性",
8892
"xloc": [
8893
"default-mobile.handlebars->9->244",
8894
- "default.handlebars->27->1516",
8894
+ "default.handlebars->27->1519",
8895
"default.handlebars->27->230",
8896
- "default.handlebars->27->617",
8896
+ "default.handlebars->27->620",
8897
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
8898
]
8899
},
@@ -8914,8 +8914,8 @@
8914
"zh-chs": "控制台",
8915
"zh-cht": "控制台",
8916
"xloc": [
8917
- "default.handlebars->27->678",
8918
- "default.handlebars->27->697",
8917
+ "default.handlebars->27->681",
8918
+ "default.handlebars->27->700",
8919
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
8920
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
8921
"default.handlebars->contextMenu->cxconsole"
@@ -8938,7 +8938,7 @@
8938
"zh-chs": "控制台 -",
8939
"zh-cht": "控制台 -",
8940
"xloc": [
8941
- "default.handlebars->27->551"
8941
+ "default.handlebars->27->554"
8942
]
8943
},
8944
{
@@ -8958,8 +8958,8 @@
8958
"zh-chs": "控制",
8959
"zh-cht": "控制",
8960
"xloc": [
8961
- "default.handlebars->27->677",
8962
- "default.handlebars->27->696",
8961
+ "default.handlebars->27->680",
8962
+ "default.handlebars->27->699",
8963
"messenger.handlebars->13->1"
8964
]
8965
},
@@ -8980,7 +8980,7 @@
8980
"zh-chs": "Cookie编码器",
8981
"zh-cht": "Cookie編碼器",
8982
"xloc": [
8983
- "default.handlebars->27->2063"
8983
+ "default.handlebars->27->2066"
8984
]
8985
},
8986
{
@@ -9137,8 +9137,8 @@
9137
"zh-chs": "复制连结到剪贴板",
9138
"zh-cht": "複製連結到剪貼板",
9139
"xloc": [
9140
- "default.handlebars->27->1521",
9141
- "default.handlebars->27->1540",
9140
+ "default.handlebars->27->1524",
9141
+ "default.handlebars->27->1543",
9142
"default.handlebars->27->192",
9143
"default.handlebars->27->369"
9144
]
@@ -9241,7 +9241,7 @@
9241
"zh-chs": "复制:“{0}”到“{1}”",
9242
"zh-cht": "複製:“{0}”到“{1}”",
9243
"xloc": [
9244
- "default.handlebars->27->1612"
9244
+ "default.handlebars->27->1615"
9245
]
9246
},
9247
{
@@ -9387,7 +9387,7 @@
9387
"zh-chs": "核心服务器",
9388
"zh-cht": "核心伺服器",
9389
"xloc": [
9390
- "default.handlebars->27->2062"
9390
+ "default.handlebars->27->2065"
9391
]
9392
},
9393
{
@@ -9407,7 +9407,7 @@
9407
"zh-chs": "科西嘉文",
9408
"zh-cht": "科西嘉文",
9409
"xloc": [
9410
- "default.handlebars->27->1069"
9410
+ "default.handlebars->27->1072"
9411
]
9412
},
9413
{
@@ -9427,7 +9427,7 @@
9427
"zh-chs": "创建帐号",
9428
"zh-cht": "創建帳號",
9429
"xloc": [
9430
- "default.handlebars->27->1767",
9430
+ "default.handlebars->27->1770",
9431
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
9432
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
9433
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -9470,7 +9470,7 @@
9470
"zh-chs": "创建用户组",
9471
"zh-cht": "創建用戶群",
9472
"xloc": [
9473
- "default.handlebars->27->1806"
9473
+ "default.handlebars->27->1809"
9474
]
9475
},
9476
{
@@ -9490,7 +9490,7 @@
9490
"zh-chs": "创建连结以与访客共享此设备",
9491
"zh-cht": "創建鏈結以與訪客共享此裝置",
9492
"xloc": [
9493
- "default.handlebars->27->628"
9493
+ "default.handlebars->27->631"
9494
]
9495
},
9496
{
@@ -9510,7 +9510,7 @@
9510
"zh-chs": "使用以下选项创建一个新的设备组。",
9511
"zh-cht": "使用以下選項創建一個新的裝置群。",
9512
"xloc": [
9513
- "default.handlebars->27->1263"
9513
+ "default.handlebars->27->1266"
9514
]
9515
},
9516
{
@@ -9550,7 +9550,7 @@
9550
"zh-chs": "创建文件夹:“{0}”",
9551
"zh-cht": "創建文件夾:“{0}”",
9552
"xloc": [
9553
- "default.handlebars->27->1605"
9553
+ "default.handlebars->27->1608"
9554
]
9555
},
9556
{
@@ -9570,7 +9570,7 @@
9570
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
9571
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
9572
"xloc": [
9573
- "default.handlebars->27->1731"
9573
+ "default.handlebars->27->1734"
9574
]
9575
},
9576
{
@@ -9612,7 +9612,7 @@
9612
"zh-chs": "创建的设备组:{0}",
9613
"zh-cht": "創建的設備組:{0}",
9614
"xloc": [
9615
- "default.handlebars->27->1616"
9615
+ "default.handlebars->27->1619"
9616
]
9617
},
9618
{
@@ -9632,7 +9632,7 @@
9632
"zh-chs": "创建一个连结,该连结允许没有帐户的访客将远程桌面访问此设备最多1小时。",
9633
"zh-cht": "創建一個鏈結,該鏈結允許沒有帳戶的訪客將遠程桌面訪問此裝置最多1小時。",
9634
"xloc": [
9635
- "default.handlebars->27->713"
9635
+ "default.handlebars->27->716"
9636
]
9637
},
9638
{
@@ -9652,7 +9652,7 @@
9652
"zh-chs": "创建",
9653
"zh-cht": "創建",
9654
"xloc": [
9655
- "default.handlebars->27->1880"
9655
+ "default.handlebars->27->1883"
9656
]
9657
},
9658
{
@@ -9672,7 +9672,7 @@
9672
"zh-chs": "创建时间",
9673
"zh-cht": "創作時間",
9674
"xloc": [
9675
- "default.handlebars->27->1310"
9675
+ "default.handlebars->27->1313"
9676
]
9677
},
9678
{
@@ -9714,8 +9714,8 @@
9714
"zh-chs": "创建者",
9715
"zh-cht": "創作者",
9716
"xloc": [
9717
- "default.handlebars->27->1308",
9718
- "default.handlebars->27->1309"
9717
+ "default.handlebars->27->1311",
9718
+ "default.handlebars->27->1312"
9719
]
9720
},
9721
{
@@ -9735,7 +9735,7 @@
9735
"zh-chs": "证书",
9736
"zh-cht": "證書",
9737
"xloc": [
9738
- "default.handlebars->27->1280"
9738
+ "default.handlebars->27->1283"
9739
]
9740
},
9741
{
@@ -9755,7 +9755,7 @@
9755
"zh-chs": "克里语",
9756
"zh-cht": "克里語",
9757
"xloc": [
9758
- "default.handlebars->27->1070"
9758
+ "default.handlebars->27->1073"
9759
]
9760
},
9761
{
@@ -9775,7 +9775,7 @@
9775
"zh-chs": "克罗地亚文",
9776
"zh-cht": "克羅地亞文",
9777
"xloc": [
9778
- "default.handlebars->27->1071"
9778
+ "default.handlebars->27->1074"
9779
]
9780
},
9781
{
@@ -9942,7 +9942,7 @@
9942
"zh-chs": "捷克文",
9943
"zh-cht": "捷克文",
9944
"xloc": [
9945
- "default.handlebars->27->1072"
9945
+ "default.handlebars->27->1075"
9946
]
9947
},
9948
{
@@ -9982,7 +9982,7 @@
9982
"zh-chs": "丹麦文",
9983
"zh-cht": "丹麥文",
9984
"xloc": [
9985
- "default.handlebars->27->1073"
9985
+ "default.handlebars->27->1076"
9986
]
9987
},
9988
{
@@ -10002,7 +10002,7 @@
10002
"zh-chs": "数据通道",
10003
"zh-cht": "數據通道",
10004
"xloc": [
10005
- "default.handlebars->27->817",
10005
+ "default.handlebars->27->820",
10006
"desktop.handlebars->3->12"
10007
]
10008
},
@@ -10023,7 +10023,7 @@
10023
"zh-chs": "日期和时间",
10024
"zh-cht": "日期和時間",
10025
"xloc": [
10026
- "default.handlebars->27->1231"
10026
+ "default.handlebars->27->1234"
10027
]
10028
},
10029
{
@@ -10044,7 +10044,7 @@
10044
"zh-cht": "天",
10045
"xloc": [
10046
"default-mobile.handlebars->9->266",
10047
- "default.handlebars->27->749"
10047
+ "default.handlebars->27->752"
10048
]
10049
},
10050
{
@@ -10064,7 +10064,7 @@
10064
"zh-chs": "停用客户端控制模式(CCM)",
10065
"zh-cht": "停用客戶端控制模式(CCM)",
10066
"xloc": [
10067
- "default.handlebars->27->1366"
10067
+ "default.handlebars->27->1369"
10068
]
10069
},
10070
{
@@ -10105,10 +10105,10 @@
10105
"zh-chs": "默认",
10106
"zh-cht": "默認",
10107
"xloc": [
10108
- "default.handlebars->27->1754",
10109
- "default.handlebars->27->1802",
10110
- "default.handlebars->27->1813",
10111
- "default.handlebars->27->1869"
10108
+ "default.handlebars->27->1757",
10109
+ "default.handlebars->27->1805",
10110
+ "default.handlebars->27->1816",
10111
+ "default.handlebars->27->1872"
10112
]
10113
},
10114
{
@@ -10132,9 +10132,9 @@
10132
"default-mobile.handlebars->9->301",
10133
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
10134
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
10135
- "default.handlebars->27->1547",
10136
- "default.handlebars->27->521",
10137
- "default.handlebars->27->881",
10135
+ "default.handlebars->27->1550",
10136
+ "default.handlebars->27->524",
10137
+ "default.handlebars->27->884",
10138
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
10139
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
10140
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -10162,7 +10162,7 @@
10162
"zh-cht": "刪除帳戶",
10163
"xloc": [
10164
"default-mobile.handlebars->9->84",
10165
- "default.handlebars->27->1248"
10165
+ "default.handlebars->27->1251"
10166
]
10167
},
10168
{
@@ -10182,7 +10182,7 @@
10182
"zh-chs": "删除帐户",
10183
"zh-cht": "刪除帳戶",
10184
"xloc": [
10185
- "default.handlebars->27->1721"
10185
+ "default.handlebars->27->1724"
10186
]
10187
},
10188
{
@@ -10203,7 +10203,7 @@
10203
"zh-cht": "刪除裝置",
10204
"xloc": [
10205
"default-mobile.handlebars->9->249",
10206
- "default.handlebars->27->632"
10206
+ "default.handlebars->27->635"
10207
]
10208
},
10209
{
@@ -10225,8 +10225,8 @@
10225
"xloc": [
10226
"default-mobile.handlebars->9->403",
10227
"default-mobile.handlebars->9->406",
10228
- "default.handlebars->27->1359",
10229
- "default.handlebars->27->1389"
10228
+ "default.handlebars->27->1362",
10229
+ "default.handlebars->27->1392"
10230
]
10231
},
10232
{
@@ -10247,7 +10247,7 @@
10247
"zh-cht": "刪除節點",
10248
"xloc": [
10249
"default-mobile.handlebars->9->274",
10250
- "default.handlebars->27->775"
10250
+ "default.handlebars->27->778"
10251
]
10252
},
10253
{
@@ -10287,7 +10287,7 @@
10287
"zh-chs": "删除用户",
10288
"zh-cht": "刪除用戶",
10289
"xloc": [
10290
- "default.handlebars->27->1919"
10290
+ "default.handlebars->27->1922"
10291
]
10292
},
10293
{
@@ -10307,8 +10307,8 @@
10307
"zh-chs": "删除用户群组",
10308
"zh-cht": "刪除用戶群組",
10309
"xloc": [
10310
- "default.handlebars->27->1839",
10311
- "default.handlebars->27->1849"
10310
+ "default.handlebars->27->1842",
10311
+ "default.handlebars->27->1852"
10312
]
10313
},
10314
{
@@ -10328,7 +10328,7 @@
10328
"zh-chs": "删除用户群组",
10329
"zh-cht": "刪除用戶群組",
10330
"xloc": [
10331
- "default.handlebars->27->1800"
10331
+ "default.handlebars->27->1803"
10332
]
10333
},
10334
{
@@ -10348,7 +10348,7 @@
10348
"zh-chs": "删除用户{0}",
10349
"zh-cht": "刪除用戶{0}",
10350
"xloc": [
10351
- "default.handlebars->27->1942"
10351
+ "default.handlebars->27->1945"
10352
]
10353
},
10354
{
@@ -10369,7 +10369,7 @@
10369
"zh-cht": "刪除帳戶",
10370
"xloc": [
10371
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
10372
- "default.handlebars->27->1717",
10372
+ "default.handlebars->27->1720",
10373
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
10374
]
10375
},
@@ -10410,7 +10410,7 @@
10410
"zh-chs": "删除群组",
10411
"zh-cht": "刪除群組",
10412
"xloc": [
10413
- "default.handlebars->27->1796"
10413
+ "default.handlebars->27->1799"
10414
]
10415
},
10416
{
@@ -10430,7 +10430,7 @@
10430
"zh-chs": "删除项目?",
10431
"zh-cht": "刪除項目?",
10432
"xloc": [
10433
- "default.handlebars->27->522"
10433
+ "default.handlebars->27->525"
10434
]
10435
},
10436
{
@@ -10450,7 +10450,7 @@
10450
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
10451
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
10452
"xloc": [
10453
- "default.handlebars->27->1607"
10453
+ "default.handlebars->27->1610"
10454
]
10455
},
10456
{
@@ -10472,8 +10472,8 @@
10472
"xloc": [
10473
"default-mobile.handlebars->9->124",
10474
"default-mobile.handlebars->9->303",
10475
- "default.handlebars->27->1549",
10476
- "default.handlebars->27->883"
10475
+ "default.handlebars->27->1552",
10476
+ "default.handlebars->27->886"
10477
]
10478
},
10479
{
@@ -10493,7 +10493,7 @@
10493
"zh-chs": "删除用户群组{0}?",
10494
"zh-cht": "刪除用戶群組{0}?",
10495
"xloc": [
10496
- "default.handlebars->27->1847"
10496
+ "default.handlebars->27->1850"
10497
]
10498
},
10499
{
@@ -10515,8 +10515,8 @@
10515
"xloc": [
10516
"default-mobile.handlebars->9->123",
10517
"default-mobile.handlebars->9->302",
10518
- "default.handlebars->27->1548",
10519
- "default.handlebars->27->882"
10518
+ "default.handlebars->27->1551",
10519
+ "default.handlebars->27->885"
10520
]
10521
},
10522
{
@@ -10556,7 +10556,7 @@
10556
"zh-chs": "删除:“{0}”",
10557
"zh-cht": "刪除:“{0}”",
10558
"xloc": [
10559
- "default.handlebars->27->1606"
10559
+ "default.handlebars->27->1609"
10560
]
10561
},
10562
{
@@ -10576,7 +10576,7 @@
10576
"zh-chs": "删除:“{0}”,{1}个元素已删除",
10577
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
10578
"xloc": [
10579
- "default.handlebars->27->1608"
10579
+ "default.handlebars->27->1611"
10580
]
10581
},
10582
{
@@ -10596,7 +10596,7 @@
10596
"zh-chs": "被拒绝",
10597
"zh-cht": "被拒絕",
10598
"xloc": [
10599
- "default.handlebars->27->813",
10599
+ "default.handlebars->27->816",
10600
"desktop.handlebars->3->8"
10601
]
10602
},
@@ -10693,19 +10693,19 @@
10693
"default-mobile.handlebars->9->340",
10694
"default-mobile.handlebars->9->395",
10695
"default-mobile.handlebars->9->408",
10696
- "default.handlebars->27->1268",
10697
- "default.handlebars->27->1305",
10698
- "default.handlebars->27->1391",
10699
- "default.handlebars->27->1805",
10700
- "default.handlebars->27->1815",
10701
- "default.handlebars->27->1816",
10702
- "default.handlebars->27->1845",
10703
- "default.handlebars->27->562",
10704
- "default.handlebars->27->563",
10696
+ "default.handlebars->27->1271",
10697
+ "default.handlebars->27->1308",
10698
+ "default.handlebars->27->1394",
10699
+ "default.handlebars->27->1808",
10700
+ "default.handlebars->27->1818",
10701
+ "default.handlebars->27->1819",
10702
+ "default.handlebars->27->1848",
10703
+ "default.handlebars->27->565",
10704
+ "default.handlebars->27->566",
10705
"default.handlebars->27->77",
10706
- "default.handlebars->27->808",
10707
- "default.handlebars->27->928",
10708
- "default.handlebars->27->938",
10706
+ "default.handlebars->27->811",
10707
+ "default.handlebars->27->931",
10708
+ "default.handlebars->27->941",
10709
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
10710
]
10711
},
@@ -10744,10 +10744,10 @@
10744
"zh-cht": "桌面",
10745
"xloc": [
10746
"default-mobile.handlebars->9->256",
10747
- "default.handlebars->27->1396",
10748
- "default.handlebars->27->1989",
10749
- "default.handlebars->27->527",
10750
- "default.handlebars->27->853",
10747
+ "default.handlebars->27->1399",
10748
+ "default.handlebars->27->1992",
10749
+ "default.handlebars->27->530",
10750
+ "default.handlebars->27->856",
10751
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
10752
"default.handlebars->contextMenu->cxdesktop",
10753
"desktop.handlebars->3->24"
@@ -10790,9 +10790,9 @@
10790
"zh-chs": "桌面通知",
10791
"zh-cht": "桌面通知",
10792
"xloc": [
10793
- "default.handlebars->27->1318",
10794
- "default.handlebars->27->1895",
10795
- "default.handlebars->27->598"
10793
+ "default.handlebars->27->1321",
10794
+ "default.handlebars->27->1898",
10795
+ "default.handlebars->27->601"
10796
]
10797
},
10798
{
@@ -10812,9 +10812,9 @@
10812
"zh-chs": "桌面提示",
10813
"zh-cht": "桌面提示",
10814
"xloc": [
10815
- "default.handlebars->27->1317",
10816
- "default.handlebars->27->1894",
10817
- "default.handlebars->27->597"
10815
+ "default.handlebars->27->1320",
10816
+ "default.handlebars->27->1897",
10817
+ "default.handlebars->27->600"
10818
]
10819
},
10820
{
@@ -10834,9 +10834,9 @@
10834
"zh-chs": "桌面提示+工具栏",
10835
"zh-cht": "桌面提示+工具欄",
10836
"xloc": [
10837
- "default.handlebars->27->1315",
10838
- "default.handlebars->27->1892",
10839
- "default.handlebars->27->595"
10837
+ "default.handlebars->27->1318",
10838
+ "default.handlebars->27->1895",
10839
+ "default.handlebars->27->598"
10840
]
10841
},
10842
{
@@ -10877,9 +10877,9 @@
10877
"zh-chs": "桌面工具栏",
10878
"zh-cht": "桌面工具欄",
10879
"xloc": [
10880
- "default.handlebars->27->1316",
10881
- "default.handlebars->27->1893",
10882
- "default.handlebars->27->596"
10880
+ "default.handlebars->27->1319",
10881
+ "default.handlebars->27->1896",
10882
+ "default.handlebars->27->599"
10883
]
10884
},
10885
{
@@ -10899,7 +10899,7 @@
10899
"zh-chs": "桌面时段",
10900
"zh-cht": "桌面時段",
10901
"xloc": [
10902
- "default.handlebars->27->852"
10902
+ "default.handlebars->27->855"
10903
]
10904
},
10905
{
@@ -10982,9 +10982,9 @@
10982
"zh-chs": "设备",
10983
"zh-cht": "裝置",
10984
"xloc": [
10985
- "default.handlebars->27->1418",
10985
+ "default.handlebars->27->1421",
10986
"default.handlebars->27->183",
10987
- "default.handlebars->27->1961",
10987
+ "default.handlebars->27->1964",
10988
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
10989
]
10990
},
@@ -11006,7 +11006,7 @@
11006
"zh-cht": "裝置指令",
11007
"xloc": [
11008
"default-mobile.handlebars->9->265",
11009
- "default.handlebars->27->744"
11009
+ "default.handlebars->27->747"
11010
]
11011
},
11012
{
@@ -11033,14 +11033,14 @@
11033
"zh-chs": "设备组",
11034
"zh-cht": "裝置群",
11035
"xloc": [
11036
- "default.handlebars->27->1413",
11036
"default.handlebars->27->1416",
11038
- "default.handlebars->27->1417",
11039
- "default.handlebars->27->1668",
11040
- "default.handlebars->27->1831",
11041
- "default.handlebars->27->1837",
11042
- "default.handlebars->27->1949",
11043
- "default.handlebars->27->1998"
11037
+ "default.handlebars->27->1419",
11038
+ "default.handlebars->27->1420",
11039
+ "default.handlebars->27->1671",
11040
+ "default.handlebars->27->1834",
11041
+ "default.handlebars->27->1840",
11042
+ "default.handlebars->27->1952",
11043
+ "default.handlebars->27->2001"
11044
]
11045
},
11046
{
@@ -11061,7 +11061,7 @@
11061
"zh-cht": "裝置群用戶",
11062
"xloc": [
11063
"default-mobile.handlebars->9->450",
11064
- "default.handlebars->27->1479"
11064
+ "default.handlebars->27->1482"
11065
]
11066
},
11067
{
@@ -11082,11 +11082,11 @@
11082
"zh-cht": "裝置群",
11083
"xloc": [
11084
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
11085
- "default.handlebars->27->1684",
11086
- "default.handlebars->27->1790",
11087
- "default.handlebars->27->1818",
11088
- "default.handlebars->27->1889",
11089
- "default.handlebars->27->2033",
11085
+ "default.handlebars->27->1687",
11086
+ "default.handlebars->27->1793",
11087
+ "default.handlebars->27->1821",
11088
+ "default.handlebars->27->1892",
11089
+ "default.handlebars->27->2036",
11090
"default.handlebars->container->column_l->p2->p2info->7"
11091
]
11092
},
@@ -11107,7 +11107,7 @@
11107
"zh-chs": "设备信息导出",
11108
"zh-cht": "裝置訊息輸出",
11109
"xloc": [
11110
- "default.handlebars->27->492"
11110
+ "default.handlebars->27->495"
11111
]
11112
},
11113
{
@@ -11127,7 +11127,7 @@
11127
"zh-chs": "设备位置",
11128
"zh-cht": "裝置位置",
11129
"xloc": [
11130
- "default.handlebars->27->776"
11130
+ "default.handlebars->27->779"
11131
]
11132
},
11133
{
@@ -11147,7 +11147,7 @@
11147
"zh-chs": "设备消息",
11148
"zh-cht": "裝置訊息",
11149
"xloc": [
11150
- "default.handlebars->27->710"
11150
+ "default.handlebars->27->713"
11151
]
11152
},
11153
{
@@ -11168,9 +11168,9 @@
11168
"zh-cht": "裝置名稱",
11169
"xloc": [
11170
"default-mobile.handlebars->9->278",
11171
- "default.handlebars->27->1997",
11171
+ "default.handlebars->27->2000",
11172
"default.handlebars->27->286",
11173
- "default.handlebars->27->806",
11173
+ "default.handlebars->27->809",
11174
"player.handlebars->3->9"
11175
]
11176
},
@@ -11191,8 +11191,8 @@
11191
"zh-chs": "设备通知",
11192
"zh-cht": "裝置通知",
11193
"xloc": [
11194
- "default.handlebars->27->486",
11195
- "default.handlebars->27->712"
11194
+ "default.handlebars->27->489",
11195
+ "default.handlebars->27->715"
11196
]
11197
},
11198
{
@@ -11232,8 +11232,8 @@
11232
"zh-chs": "设备连接。",
11233
"zh-cht": "裝置連接。",
11234
"xloc": [
11235
- "default.handlebars->27->1236",
11236
- "default.handlebars->27->1500"
11235
+ "default.handlebars->27->1239",
11236
+ "default.handlebars->27->1503"
11237
]
11238
},
11239
{
@@ -11253,8 +11253,8 @@
11253
"zh-chs": "设备断开连接。",
11254
"zh-cht": "裝置斷開連接。",
11255
"xloc": [
11256
- "default.handlebars->27->1237",
11257
- "default.handlebars->27->1501"
11256
+ "default.handlebars->27->1240",
11257
+ "default.handlebars->27->1504"
11258
]
11259
},
11260
{
@@ -11274,7 +11274,7 @@
11274
"zh-chs": "创建的设备组:{0}",
11275
"zh-cht": "設備組已創建:{0}",
11276
"xloc": [
11277
- "default.handlebars->27->1637"
11277
+ "default.handlebars->27->1640"
11278
]
11279
},
11280
{
@@ -11294,7 +11294,7 @@
11294
"zh-chs": "设备组已删除:{0}",
11295
"zh-cht": "設備組已刪除:{0}",
11296
"xloc": [
11297
- "default.handlebars->27->1638"
11297
+ "default.handlebars->27->1641"
11298
]
11299
},
11300
{
@@ -11314,7 +11314,7 @@
11314
"zh-chs": "设备组成员身份已更改:{0}",
11315
"zh-cht": "設備組成員身份已更改:{0}",
11316
"xloc": [
11317
- "default.handlebars->27->1639"
11317
+ "default.handlebars->27->1642"
11318
]
11319
},
11320
{
@@ -11334,7 +11334,7 @@
11334
"zh-chs": "其他设备组管理员可以查看和更改设备组注释。",
11335
"zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。",
11336
"xloc": [
11337
- "default.handlebars->27->707"
11337
+ "default.handlebars->27->710"
11338
]
11339
},
11340
{
@@ -11354,7 +11354,7 @@
11354
"zh-chs": "设备组通知已更改",
11355
"zh-cht": "設備組通知已更改",
11356
"xloc": [
11357
- "default.handlebars->27->1634"
11357
+ "default.handlebars->27->1637"
11358
]
11359
},
11360
{
@@ -11374,7 +11374,7 @@
11374
"zh-chs": "未删除的设备组:{0}",
11375
"zh-cht": "未刪除的設備組:{0}",
11376
"xloc": [
11377
- "default.handlebars->27->1617"
11377
+ "default.handlebars->27->1620"
11378
]
11379
},
11380
{
@@ -11397,7 +11397,7 @@
11397
"default-mobile.handlebars->9->157",
11398
"default-mobile.handlebars->9->212",
11399
"default.handlebars->27->208",
11400
- "default.handlebars->27->548"
11400
+ "default.handlebars->27->551"
11401
]
11402
},
11403
{
@@ -11645,7 +11645,7 @@
11645
"default-mobile.handlebars->9->156",
11646
"default-mobile.handlebars->9->211",
11647
"default.handlebars->27->207",
11648
- "default.handlebars->27->547"
11648
+ "default.handlebars->27->550"
11649
]
11650
},
11651
{
@@ -11727,7 +11727,7 @@
11727
"zh-chs": "设备名称",
11728
"zh-cht": "裝置名稱",
11729
"xloc": [
11730
- "default.handlebars->27->539"
11730
+ "default.handlebars->27->542"
11731
]
11732
},
11733
{
@@ -11767,7 +11767,7 @@
11767
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
11768
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
11769
"xloc": [
11770
- "default.handlebars->27->1619"
11770
+ "default.handlebars->27->1622"
11771
]
11772
},
11773
{
@@ -11804,8 +11804,8 @@
11804
"zh-chs": "设备",
11805
"zh-cht": "裝置",
11806
"xloc": [
11807
- "default.handlebars->27->1791",
11808
- "default.handlebars->27->1819"
11807
+ "default.handlebars->27->1794",
11808
+ "default.handlebars->27->1822"
11809
]
11810
},
11811
{
@@ -11825,7 +11825,7 @@
11825
"zh-chs": "已禁用",
11826
"zh-cht": "已禁用",
11827
"xloc": [
11828
- "default.handlebars->27->590"
11828
+ "default.handlebars->27->593"
11829
]
11830
},
11831
{
@@ -11845,7 +11845,7 @@
11845
"zh-chs": "禁用的电子邮件两因素身份验证",
11846
"zh-cht": "禁用的電子郵件兩因素身份驗證",
11847
"xloc": [
11848
- "default.handlebars->27->1650"
11848
+ "default.handlebars->27->1653"
11849
]
11850
},
11851
{
@@ -11867,8 +11867,8 @@
11867
"xloc": [
11868
"default-mobile.handlebars->9->292",
11869
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
11870
- "default.handlebars->27->1328",
11871
- "default.handlebars->27->869",
11870
+ "default.handlebars->27->1331",
11871
+ "default.handlebars->27->872",
11872
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
11873
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
11874
"desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span",
@@ -11945,7 +11945,7 @@
11945
"zh-chs": "在远程设备上显示一个消息框。",
11946
"zh-cht": "在遠程裝置上顯示一個訊息框。",
11947
"xloc": [
11948
- "default.handlebars->27->711"
11948
+ "default.handlebars->27->714"
11949
]
11950
},
11951
{
@@ -11985,7 +11985,7 @@
11985
"zh-chs": "在远程设备上显示短信",
11986
"zh-cht": "在遠程裝置上顯示短信",
11987
"xloc": [
11988
- "default.handlebars->27->626"
11988
+ "default.handlebars->27->629"
11989
]
11990
},
11991
{
@@ -12005,7 +12005,7 @@
12005
"zh-chs": "显示设备组名称",
12006
"zh-cht": "顯示裝置群名稱",
12007
"xloc": [
12008
- "default.handlebars->27->1235"
12008
+ "default.handlebars->27->1238"
12009
]
12010
},
12011
{
@@ -12025,7 +12025,7 @@
12025
"zh-chs": "显示名称",
12026
"zh-cht": "顯示名稱",
12027
"xloc": [
12028
- "default.handlebars->27->838"
12028
+ "default.handlebars->27->841"
12029
]
12030
},
12031
{
@@ -12045,7 +12045,7 @@
12045
"zh-chs": "显示公共连结",
12046
"zh-cht": "顯示公共鏈結",
12047
"xloc": [
12048
- "default.handlebars->27->1520"
12048
+ "default.handlebars->27->1523"
12049
]
12050
},
12051
{
@@ -12065,7 +12065,7 @@
12065
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
12066
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
12067
"xloc": [
12068
- "default.handlebars->27->1579"
12068
+ "default.handlebars->27->1582"
12069
]
12070
},
12071
{
@@ -12085,7 +12085,7 @@
12085
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
12086
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
12087
"xloc": [
12088
- "default.handlebars->27->1587"
12088
+ "default.handlebars->27->1590"
12089
]
12090
},
12091
{
@@ -12105,7 +12105,7 @@
12105
"zh-chs": "什么都不做",
12106
"zh-cht": "什麼都不做",
12107
"xloc": [
12108
- "default.handlebars->27->1372"
12108
+ "default.handlebars->27->1375"
12109
]
12110
},
12111
{
@@ -12125,10 +12125,10 @@
12125
"zh-chs": "域",
12126
"zh-cht": "域",
12127
"xloc": [
12128
- "default.handlebars->27->1755",
12129
- "default.handlebars->27->1803",
12130
- "default.handlebars->27->1812",
12131
- "default.handlebars->27->1868",
12128
+ "default.handlebars->27->1758",
12129
+ "default.handlebars->27->1806",
12130
+ "default.handlebars->27->1815",
12131
+ "default.handlebars->27->1871",
12132
"mstsc.handlebars->main->1->3->1->2->1->0",
12133
"mstsc.handlebars->main->1->3->1->2->3"
12134
]
@@ -12150,8 +12150,8 @@
12150
"zh-chs": "不要配置",
12151
"zh-cht": "不要配置",
12152
"xloc": [
12153
- "default.handlebars->27->1376",
12154
- "default.handlebars->27->1381"
12153
+ "default.handlebars->27->1379",
12154
+ "default.handlebars->27->1384"
12155
]
12156
},
12157
{
@@ -12171,7 +12171,7 @@
12171
"zh-chs": "不要连接到服务器",
12172
"zh-cht": "不要連接到伺服器",
12173
"xloc": [
12174
- "default.handlebars->27->1377"
12174
+ "default.handlebars->27->1380"
12175
]
12176
},
12177
{
@@ -12291,7 +12291,7 @@
12291
"zh-cht": "下載檔案",
12292
"xloc": [
12293
"default-mobile.handlebars->9->322",
12294
- "default.handlebars->27->902"
12294
+ "default.handlebars->27->905"
12295
]
12296
},
12297
{
@@ -12331,7 +12331,7 @@
12331
"zh-chs": "下载MeshCmd",
12332
"zh-cht": "下載MeshCmd",
12333
"xloc": [
12334
- "default.handlebars->27->798"
12334
+ "default.handlebars->27->801"
12335
]
12336
},
12337
{
@@ -12391,7 +12391,7 @@
12391
"zh-chs": "下载报告",
12392
"zh-cht": "下載報告",
12393
"xloc": [
12394
- "default.handlebars->27->1673",
12394
+ "default.handlebars->27->1676",
12395
"default.handlebars->container->column_l->p3->3->1->0->3"
12396
]
12397
},
@@ -12412,7 +12412,7 @@
12412
"zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。",
12413
"zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
12414
"xloc": [
12415
- "default.handlebars->27->791"
12415
+ "default.handlebars->27->794"
12416
]
12417
},
12418
{
@@ -12492,7 +12492,7 @@
12492
"zh-chs": "下载电源事件",
12493
"zh-cht": "下載電源事件",
12494
"xloc": [
12495
- "default.handlebars->27->750"
12495
+ "default.handlebars->27->753"
12496
]
12497
},
12498
{
@@ -12572,7 +12572,7 @@
12572
"zh-chs": "使用以下一种档案格式下载设备列表。",
12573
"zh-cht": "使用以下一種檔案格式下載裝置列表。",
12574
"xloc": [
12575
- "default.handlebars->27->487"
12575
+ "default.handlebars->27->490"
12576
]
12577
},
12578
{
@@ -12592,7 +12592,7 @@
12592
"zh-chs": "使用以下一种档案格式下载事件列表。",
12593
"zh-cht": "使用以下一種檔案格式下載事件列表。",
12594
"xloc": [
12595
- "default.handlebars->27->1674"
12595
+ "default.handlebars->27->1677"
12596
]
12597
},
12598
{
@@ -12612,7 +12612,7 @@
12612
"zh-chs": "使用以下一种档案格式下载用户列表。",
12613
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
12614
"xloc": [
12615
- "default.handlebars->27->1739"
12615
+ "default.handlebars->27->1742"
12616
]
12617
},
12618
{
@@ -12693,7 +12693,7 @@
12693
"zh-chs": "下载:“{0}”",
12694
"zh-cht": "下載:“{0}”",
12695
"xloc": [
12696
- "default.handlebars->27->1610"
12696
+ "default.handlebars->27->1613"
12697
]
12698
},
12699
{
@@ -12733,7 +12733,7 @@
12733
"zh-chs": "代理重复",
12734
"zh-cht": "代理重複",
12735
"xloc": [
12736
- "default.handlebars->27->2029"
12736
+ "default.handlebars->27->2032"
12737
]
12738
},
12739
{
@@ -12773,7 +12773,7 @@
12773
"zh-chs": "复制用户组",
12774
"zh-cht": "複製用戶群",
12775
"xloc": [
12776
- "default.handlebars->27->1807"
12776
+ "default.handlebars->27->1810"
12777
]
12778
},
12779
{
@@ -12810,8 +12810,8 @@
12810
"zh-chs": "持续时间",
12811
"zh-cht": "持續時間",
12812
"xloc": [
12813
- "default.handlebars->27->1983",
12814
- "default.handlebars->27->2003",
12813
+ "default.handlebars->27->1986",
12814
+ "default.handlebars->27->2006",
12815
"player.handlebars->3->2"
12816
]
12817
},
@@ -12832,7 +12832,7 @@
12832
"zh-chs": "在激活期间,代理将有权取得管理员密码信息。",
12833
"zh-cht": "在啟動期間,代理將有權取得管理員密碼訊息。",
12834
"xloc": [
12835
- "default.handlebars->27->1386"
12835
+ "default.handlebars->27->1389"
12836
]
12837
},
12838
{
@@ -12852,7 +12852,7 @@
12852
"zh-chs": "荷兰文(比利时)",
12853
"zh-cht": "荷蘭文(比利時)",
12854
"xloc": [
12855
- "default.handlebars->27->1075"
12855
+ "default.handlebars->27->1078"
12856
]
12857
},
12858
{
@@ -12872,7 +12872,7 @@
12872
"zh-chs": "荷兰文(标准)",
12873
"zh-cht": "荷蘭文(標準)",
12874
"xloc": [
12875
- "default.handlebars->27->1074"
12875
+ "default.handlebars->27->1077"
12876
]
12877
},
12878
{
@@ -13142,7 +13142,7 @@
13142
"zh-cht": "編輯裝置",
13143
"xloc": [
13144
"default-mobile.handlebars->9->283",
13145
- "default.handlebars->27->811"
13145
+ "default.handlebars->27->814"
13146
]
13147
},
13148
{
@@ -13165,10 +13165,10 @@
13165
"default-mobile.handlebars->9->409",
13166
"default-mobile.handlebars->9->411",
13167
"default-mobile.handlebars->9->429",
13168
- "default.handlebars->27->1392",
13169
- "default.handlebars->27->1422",
13170
- "default.handlebars->27->1445",
13171
- "default.handlebars->27->1457"
13168
+ "default.handlebars->27->1395",
13169
+ "default.handlebars->27->1425",
13170
+ "default.handlebars->27->1448",
13171
+ "default.handlebars->27->1460"
13172
]
13173
},
13174
{
@@ -13188,7 +13188,7 @@
13188
"zh-chs": "编辑设备组功能",
13189
"zh-cht": "編輯裝置群功能",
13190
"xloc": [
13191
- "default.handlebars->27->1408"
13191
+ "default.handlebars->27->1411"
13192
]
13193
},
13194
{
@@ -13208,8 +13208,8 @@
13208
"zh-chs": "编辑设备组权限",
13209
"zh-cht": "編輯裝置群權限",
13210
"xloc": [
13211
- "default.handlebars->27->1442",
13212
- "default.handlebars->27->1454"
13211
+ "default.handlebars->27->1445",
13212
+ "default.handlebars->27->1457"
13213
]
13214
},
13215
{
@@ -13229,7 +13229,7 @@
13229
"zh-chs": "编辑设备组用户同意",
13230
"zh-cht": "編輯裝置群用戶同意",
13231
"xloc": [
13232
- "default.handlebars->27->1393"
13232
+ "default.handlebars->27->1396"
13233
]
13234
},
13235
{
@@ -13250,7 +13250,7 @@
13250
"zh-cht": "編輯裝置筆記",
13251
"xloc": [
13252
"default-mobile.handlebars->9->423",
13253
- "default.handlebars->27->1435"
13253
+ "default.handlebars->27->1438"
13254
]
13255
},
13256
{
@@ -13270,8 +13270,8 @@
13270
"zh-chs": "编辑设备权限",
13271
"zh-cht": "編輯裝置權限",
13272
"xloc": [
13273
- "default.handlebars->27->1447",
13274
- "default.handlebars->27->1449"
13273
+ "default.handlebars->27->1450",
13274
+ "default.handlebars->27->1452"
13275
]
13276
},
13277
{
@@ -13291,7 +13291,7 @@
13291
"zh-chs": "编辑设备标签",
13292
"zh-cht": "編輯裝置標籤",
13293
"xloc": [
13294
- "default.handlebars->27->481"
13294
+ "default.handlebars->27->484"
13295
]
13296
},
13297
{
@@ -13311,7 +13311,7 @@
13311
"zh-chs": "编辑设备用户同意",
13312
"zh-cht": "編輯裝置用戶同意",
13313
"xloc": [
13314
- "default.handlebars->27->1395"
13314
+ "default.handlebars->27->1398"
13315
]
13316
},
13317
{
@@ -13331,7 +13331,7 @@
13331
"zh-chs": "编辑群组",
13332
"zh-cht": "編輯群組",
13333
"xloc": [
13334
- "default.handlebars->27->687"
13334
+ "default.handlebars->27->690"
13335
]
13336
},
13337
{
@@ -13352,9 +13352,9 @@
13352
"zh-cht": "編輯Intel® AMT憑證",
13353
"xloc": [
13354
"default-mobile.handlebars->9->273",
13355
- "default.handlebars->27->577",
13355
"default.handlebars->27->580",
13357
- "default.handlebars->27->757"
13356
+ "default.handlebars->27->583",
13357
+ "default.handlebars->27->760"
13358
]
13359
},
13360
{
@@ -13375,7 +13375,7 @@
13375
"zh-cht": "編輯筆記",
13376
"xloc": [
13377
"default-mobile.handlebars->9->436",
13378
- "default.handlebars->27->1464"
13378
+ "default.handlebars->27->1467"
13379
]
13380
},
13381
{
@@ -13395,7 +13395,7 @@
13395
"zh-chs": "编辑用户同意",
13396
"zh-cht": "編輯用戶同意",
13397
"xloc": [
13398
- "default.handlebars->27->1394"
13398
+ "default.handlebars->27->1397"
13399
]
13400
},
13401
{
@@ -13415,7 +13415,7 @@
13415
"zh-chs": "编辑用户设备组权限",
13416
"zh-cht": "編輯用戶裝置群權限",
13417
"xloc": [
13418
- "default.handlebars->27->1455"
13418
+ "default.handlebars->27->1458"
13419
]
13420
},
13421
{
@@ -13435,7 +13435,7 @@
13435
"zh-chs": "编辑用户设备权限",
13436
"zh-cht": "編輯用戶裝置權限",
13437
"xloc": [
13438
- "default.handlebars->27->1450"
13438
+ "default.handlebars->27->1453"
13439
]
13440
},
13441
{
@@ -13455,7 +13455,7 @@
13455
"zh-chs": "编辑用户组",
13456
"zh-cht": "編輯用戶群",
13457
"xloc": [
13458
- "default.handlebars->27->1846"
13458
+ "default.handlebars->27->1849"
13459
]
13460
},
13461
{
@@ -13475,7 +13475,7 @@
13475
"zh-chs": "编辑用户组设备权限",
13476
"zh-cht": "編輯用戶群裝置權限",
13477
"xloc": [
13478
- "default.handlebars->27->1452"
13478
+ "default.handlebars->27->1455"
13479
]
13480
},
13481
{
@@ -13537,11 +13537,11 @@
13537
"zh-cht": "電郵",
13538
"xloc": [
13539
"default-mobile.handlebars->9->78",
13540
- "default.handlebars->27->1757",
13541
- "default.handlebars->27->1872",
13542
- "default.handlebars->27->1874",
13543
- "default.handlebars->27->1914",
13544
- "default.handlebars->27->1930",
13540
+ "default.handlebars->27->1760",
13541
+ "default.handlebars->27->1875",
13542
+ "default.handlebars->27->1877",
13543
+ "default.handlebars->27->1917",
13544
+ "default.handlebars->27->1933",
13545
"default.handlebars->27->336",
13546
"login-mobile.handlebars->5->42",
13547
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -13574,7 +13574,7 @@
13574
"zh-cht": "電郵地址變更",
13575
"xloc": [
13576
"default-mobile.handlebars->9->79",
13577
- "default.handlebars->27->1244"
13577
+ "default.handlebars->27->1247"
13578
]
13579
},
13580
{
@@ -13595,7 +13595,7 @@
13595
"zh-cht": "電郵認證",
13596
"xloc": [
13597
"default-mobile.handlebars->9->68",
13598
- "default.handlebars->27->1012"
13598
+ "default.handlebars->27->1015"
13599
]
13600
},
13601
{
@@ -13655,7 +13655,7 @@
13655
"zh-cht": "電郵驗證",
13656
"xloc": [
13657
"default-mobile.handlebars->9->77",
13658
- "default.handlebars->27->1242"
13658
+ "default.handlebars->27->1245"
13659
]
13660
},
13661
{
@@ -13695,7 +13695,7 @@
13695
"zh-chs": "电邮未验证",
13696
"zh-cht": "電郵未驗證",
13697
"xloc": [
13698
- "default.handlebars->27->1703"
13698
+ "default.handlebars->27->1706"
13699
]
13700
},
13701
{
@@ -13715,8 +13715,8 @@
13715
"zh-chs": "电邮已验证",
13716
"zh-cht": "電郵已驗證",
13717
"xloc": [
13718
- "default.handlebars->27->1704",
13719
- "default.handlebars->27->1866"
13718
+ "default.handlebars->27->1707",
13719
+ "default.handlebars->27->1869"
13720
]
13721
},
13722
{
@@ -13736,7 +13736,7 @@
13736
"zh-chs": "电邮已验证。",
13737
"zh-cht": "電郵已驗證。",
13738
"xloc": [
13739
- "default.handlebars->27->1763"
13739
+ "default.handlebars->27->1766"
13740
]
13741
},
13742
{
@@ -13756,7 +13756,7 @@
13756
"zh-chs": "电邮未验证",
13757
"zh-cht": "電郵未驗證",
13758
"xloc": [
13759
- "default.handlebars->27->1867"
13759
+ "default.handlebars->27->1870"
13760
]
13761
},
13762
{
@@ -13820,7 +13820,7 @@
13820
"zh-chs": "已通过电邮验证,并且需要重置密码。",
13821
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
13822
"xloc": [
13823
- "default.handlebars->27->1764"
13823
+ "default.handlebars->27->1767"
13824
]
13825
},
13826
{
@@ -13840,7 +13840,7 @@
13840
"zh-chs": "电邮/短信流量",
13841
"zh-cht": "電郵/短信流量",
13842
"xloc": [
13843
- "default.handlebars->27->2071"
13843
+ "default.handlebars->27->2074"
13844
]
13845
},
13846
{
@@ -13886,7 +13886,7 @@
13886
"zh-chs": "启用邀请代码",
13887
"zh-cht": "啟用邀請代碼",
13888
"xloc": [
13889
- "default.handlebars->27->1485"
13889
+ "default.handlebars->27->1488"
13890
]
13891
},
13892
{
@@ -13927,7 +13927,7 @@
13927
"zh-cht": "啟用電郵二因子鑑別。",
13928
"xloc": [
13929
"default-mobile.handlebars->9->70",
13930
- "default.handlebars->27->1014"
13930
+ "default.handlebars->27->1017"
13931
]
13932
},
13933
{
@@ -13967,7 +13967,7 @@
13967
"zh-chs": "已启用",
13968
"zh-cht": "已啟用",
13969
"xloc": [
13970
- "default.handlebars->27->2005"
13970
+ "default.handlebars->27->2008"
13971
]
13972
},
13973
{
@@ -13987,7 +13987,7 @@
13987
"zh-chs": "启用电子邮件两因素身份验证",
13988
"zh-cht": "啟用電子郵件兩因素身份驗證",
13989
"xloc": [
13990
- "default.handlebars->27->1649"
13990
+ "default.handlebars->27->1652"
13991
]
13992
},
13993
{
@@ -14027,7 +14027,7 @@
14027
"zh-chs": "时间结束",
14028
"zh-cht": "時間結束",
14029
"xloc": [
14030
- "default.handlebars->27->2002"
14030
+ "default.handlebars->27->2005"
14031
]
14032
},
14033
{
@@ -14047,7 +14047,7 @@
14047
"zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
14048
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
14049
"xloc": [
14050
- "default.handlebars->27->1572"
14050
+ "default.handlebars->27->1575"
14051
]
14052
},
14053
{
@@ -14067,7 +14067,7 @@
14067
"zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
14068
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
14069
"xloc": [
14070
- "default.handlebars->27->1573"
14070
+ "default.handlebars->27->1576"
14071
]
14072
},
14073
{
@@ -14087,7 +14087,7 @@
14087
"zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
14088
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
14089
"xloc": [
14090
- "default.handlebars->27->1570"
14090
+ "default.handlebars->27->1573"
14091
]
14092
},
14093
{
@@ -14107,7 +14107,7 @@
14107
"zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
14108
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
14109
"xloc": [
14110
- "default.handlebars->27->1571"
14110
+ "default.handlebars->27->1574"
14111
]
14112
},
14113
{
@@ -14127,7 +14127,7 @@
14127
"zh-chs": "英文",
14128
"zh-cht": "英文",
14129
"xloc": [
14130
- "default.handlebars->27->1076"
14130
+ "default.handlebars->27->1079"
14131
]
14132
},
14133
{
@@ -14147,7 +14147,7 @@
14147
"zh-chs": "英文(澳洲)",
14148
"zh-cht": "英文(澳洲)",
14149
"xloc": [
14150
- "default.handlebars->27->1077"
14150
+ "default.handlebars->27->1080"
14151
]
14152
},
14153
{
@@ -14167,7 +14167,7 @@
14167
"zh-chs": "英文(伯利茲)",
14168
"zh-cht": "英文(伯利茲)",
14169
"xloc": [
14170
- "default.handlebars->27->1078"
14170
+ "default.handlebars->27->1081"
14171
]
14172
},
14173
{
@@ -14187,7 +14187,7 @@
14187
"zh-chs": "英文(加拿大)",
14188
"zh-cht": "英文(加拿大)",
14189
"xloc": [
14190
- "default.handlebars->27->1079"
14190
+ "default.handlebars->27->1082"
14191
]
14192
},
14193
{
@@ -14207,7 +14207,7 @@
14207
"zh-chs": "英文(爱尔兰)",
14208
"zh-cht": "英文(愛爾蘭)",
14209
"xloc": [
14210
- "default.handlebars->27->1080"
14210
+ "default.handlebars->27->1083"
14211
]
14212
},
14213
{
@@ -14227,7 +14227,7 @@
14227
"zh-chs": "英文(牙买加)",
14228
"zh-cht": "英文(牙買加)",
14229
"xloc": [
14230
- "default.handlebars->27->1081"
14230
+ "default.handlebars->27->1084"
14231
]
14232
},
14233
{
@@ -14247,7 +14247,7 @@
14247
"zh-chs": "英文(纽西兰)",
14248
"zh-cht": "英文(紐西蘭)",
14249
"xloc": [
14250
- "default.handlebars->27->1082"
14250
+ "default.handlebars->27->1085"
14251
]
14252
},
14253
{
@@ -14267,7 +14267,7 @@
14267
"zh-chs": "英文(菲律宾)",
14268
"zh-cht": "英文(菲律賓)",
14269
"xloc": [
14270
- "default.handlebars->27->1083"
14270
+ "default.handlebars->27->1086"
14271
]
14272
},
14273
{
@@ -14287,7 +14287,7 @@
14287
"zh-chs": "英语(南非)",
14288
"zh-cht": "英語(南非)",
14289
"xloc": [
14290
- "default.handlebars->27->1084"
14290
+ "default.handlebars->27->1087"
14291
]
14292
},
14293
{
@@ -14307,7 +14307,7 @@
14307
"zh-chs": "英文(特立尼达和多巴哥)",
14308
"zh-cht": "英文(特立尼達和多巴哥)",
14309
"xloc": [
14310
- "default.handlebars->27->1085"
14310
+ "default.handlebars->27->1088"
14311
]
14312
},
14313
{
@@ -14327,7 +14327,7 @@
14327
"zh-chs": "英文(英国)",
14328
"zh-cht": "英文(英國)",
14329
"xloc": [
14330
- "default.handlebars->27->1086"
14330
+ "default.handlebars->27->1089"
14331
]
14332
},
14333
{
@@ -14347,7 +14347,7 @@
14347
"zh-chs": "美国英文",
14348
"zh-cht": "美國英語",
14349
"xloc": [
14350
- "default.handlebars->27->1087"
14350
+ "default.handlebars->27->1090"
14351
]
14352
},
14353
{
@@ -14367,7 +14367,7 @@
14367
"zh-chs": "英文(津巴布韦)",
14368
"zh-cht": "英文(津巴布韋)",
14369
"xloc": [
14370
- "default.handlebars->27->1088"
14370
+ "default.handlebars->27->1091"
14371
]
14372
},
14373
{
@@ -14387,8 +14387,8 @@
14387
"zh-chs": "输入",
14388
"zh-cht": "輸入",
14389
"xloc": [
14390
- "default.handlebars->27->1270",
14391
- "default.handlebars->27->1271"
14390
+ "default.handlebars->27->1273",
14391
+ "default.handlebars->27->1274"
14392
]
14393
},
14394
{
@@ -14408,7 +14408,7 @@
14408
"zh-chs": "输入管理领域名称的逗号分隔列表。",
14409
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
14410
"xloc": [
14411
- "default.handlebars->27->1768"
14411
+ "default.handlebars->27->1771"
14412
]
14413
},
14414
{
@@ -14448,7 +14448,7 @@
14448
"zh-chs": "输入文本,然后单击“确定”以使用美式英语键盘远程输入文本。在继续操作之前,请确保将远程鼠标放置在正确的位置。",
14449
"zh-cht": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
14450
"xloc": [
14451
- "default.handlebars->27->832",
14451
+ "default.handlebars->27->835",
14452
"desktop.handlebars->3->22"
14453
]
14454
},
@@ -14511,7 +14511,7 @@
14511
"zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
14512
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
14513
"xloc": [
14514
- "default.handlebars->27->1009"
14514
+ "default.handlebars->27->1012"
14515
]
14516
},
14517
{
@@ -14571,7 +14571,7 @@
14571
"zh-chs": "世界文",
14572
"zh-cht": "世界語",
14573
"xloc": [
14574
- "default.handlebars->27->1089"
14574
+ "default.handlebars->27->1092"
14575
]
14576
},
14577
{
@@ -14591,7 +14591,7 @@
14591
"zh-chs": "爱沙尼亚文",
14592
"zh-cht": "愛沙尼亞語",
14593
"xloc": [
14594
- "default.handlebars->27->1090"
14594
+ "default.handlebars->27->1093"
14595
]
14596
},
14597
{
@@ -14611,7 +14611,7 @@
14611
"zh-chs": "事件详情",
14612
"zh-cht": "事件詳情",
14613
"xloc": [
14614
- "default.handlebars->27->915"
14614
+ "default.handlebars->27->918"
14615
]
14616
},
14617
{
@@ -14631,7 +14631,7 @@
14631
"zh-chs": "事件列表输出",
14632
"zh-cht": "事件列表輸出",
14633
"xloc": [
14634
- "default.handlebars->27->1679"
14634
+ "default.handlebars->27->1682"
14635
]
14636
},
14637
{
@@ -14717,7 +14717,7 @@
14717
"zh-cht": "到期時間",
14718
"xloc": [
14719
"default.handlebars->27->185",
14720
- "default.handlebars->27->730"
14720
+ "default.handlebars->27->733"
14721
]
14722
},
14723
{
@@ -14777,7 +14777,7 @@
14777
"zh-chs": "扩充式ASCII",
14778
"zh-cht": "擴充式ASCII",
14779
"xloc": [
14780
- "default.handlebars->27->860"
14780
+ "default.handlebars->27->863"
14781
]
14782
},
14783
{
@@ -14817,7 +14817,7 @@
14817
"zh-chs": "外部",
14818
"zh-cht": "外部",
14819
"xloc": [
14820
- "default.handlebars->27->2056"
14820
+ "default.handlebars->27->2059"
14821
]
14822
},
14823
{
@@ -14857,7 +14857,7 @@
14857
"zh-chs": "FYRO马其顿语",
14858
"zh-cht": "FYRO馬其頓語",
14859
"xloc": [
14860
- "default.handlebars->27->1140"
14860
+ "default.handlebars->27->1143"
14861
]
14862
},
14863
{
@@ -14877,7 +14877,7 @@
14877
"zh-chs": "法罗语",
14878
"zh-cht": "法羅語",
14879
"xloc": [
14880
- "default.handlebars->27->1091"
14880
+ "default.handlebars->27->1094"
14881
]
14882
},
14883
{
@@ -14917,7 +14917,7 @@
14917
"zh-chs": "本地用户拒绝后无法启动远程桌面",
14918
"zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
14919
"xloc": [
14920
- "default.handlebars->27->1595"
14920
+ "default.handlebars->27->1598"
14921
]
14922
},
14923
{
@@ -14937,7 +14937,7 @@
14937
"zh-chs": "本地用户拒绝后无法启动远程文件",
14938
"zh-cht": "本地用戶拒絕後無法啟動遠程文件",
14939
"xloc": [
14940
- "default.handlebars->27->1602"
14940
+ "default.handlebars->27->1605"
14941
]
14942
},
14943
{
@@ -14957,7 +14957,7 @@
14957
"zh-chs": "无法启动远程终端接合{0}({1})",
14958
"zh-cht": "無法啟動遠程終端接合{0}({1})",
14959
"xloc": [
14960
- "default.handlebars->27->814",
14960
+ "default.handlebars->27->817",
14961
"desktop.handlebars->3->9"
14962
]
14963
},
@@ -14978,7 +14978,7 @@
14978
"zh-chs": "波斯文(波斯文)",
14979
"zh-cht": "波斯語(波斯語)",
14980
"xloc": [
14981
- "default.handlebars->27->1092"
14981
+ "default.handlebars->27->1095"
14982
]
14983
},
14984
{
@@ -15020,7 +15020,7 @@
15020
"zh-chs": "功能",
15021
"zh-cht": "功能",
15022
"xloc": [
15023
- "default.handlebars->27->1314"
15023
+ "default.handlebars->27->1317"
15024
]
15025
},
15026
{
@@ -15040,7 +15040,7 @@
15040
"zh-chs": "斐济",
15041
"zh-cht": "斐濟",
15042
"xloc": [
15043
- "default.handlebars->27->1093"
15043
+ "default.handlebars->27->1096"
15044
]
15045
},
15046
{
@@ -15081,8 +15081,8 @@
15081
"zh-cht": "檔案編輯器",
15082
"xloc": [
15083
"default-mobile.handlebars->9->306",
15084
- "default.handlebars->27->519",
15085
- "default.handlebars->27->886"
15084
+ "default.handlebars->27->522",
15085
+ "default.handlebars->27->889"
15086
]
15087
},
15088
{
@@ -15102,8 +15102,8 @@
15102
"zh-chs": "档案操作",
15103
"zh-cht": "檔案操作",
15104
"xloc": [
15105
- "default.handlebars->27->871",
15106
- "default.handlebars->27->873"
15105
+ "default.handlebars->27->874",
15106
+ "default.handlebars->27->876"
15107
]
15108
},
15109
{
@@ -15143,7 +15143,7 @@
15143
"zh-chs": "文件系统驱动",
15144
"zh-cht": "FileSystemDriver",
15145
"xloc": [
15146
- "default.handlebars->27->841"
15146
+ "default.handlebars->27->844"
15147
]
15148
},
15149
{
@@ -15165,8 +15165,8 @@
15165
"xloc": [
15166
"default-mobile.handlebars->9->167",
15167
"default-mobile.handlebars->9->257",
15168
- "default.handlebars->27->1403",
15169
- "default.handlebars->27->1990",
15168
+ "default.handlebars->27->1406",
15169
+ "default.handlebars->27->1993",
15170
"default.handlebars->27->253",
15171
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
15172
"default.handlebars->contextMenu->cxfiles"
@@ -15209,9 +15209,9 @@
15209
"zh-chs": "档案通知",
15210
"zh-cht": "檔案通知",
15211
"xloc": [
15212
- "default.handlebars->27->1322",
15213
- "default.handlebars->27->1899",
15214
- "default.handlebars->27->602"
15212
+ "default.handlebars->27->1325",
15213
+ "default.handlebars->27->1902",
15214
+ "default.handlebars->27->605"
15215
]
15216
},
15217
{
@@ -15231,9 +15231,9 @@
15231
"zh-chs": "档案提示",
15232
"zh-cht": "檔案提示",
15233
"xloc": [
15234
- "default.handlebars->27->1321",
15235
- "default.handlebars->27->1898",
15236
- "default.handlebars->27->601"
15234
+ "default.handlebars->27->1324",
15235
+ "default.handlebars->27->1901",
15236
+ "default.handlebars->27->604"
15237
]
15238
},
15239
{
@@ -15276,7 +15276,7 @@
15276
"zh-chs": "录制会话已完成,{0}秒",
15277
"zh-cht": "錄製會話已完成,{0}秒",
15278
"xloc": [
15279
- "default.handlebars->27->1568"
15279
+ "default.handlebars->27->1571"
15280
]
15281
},
15282
{
@@ -15296,7 +15296,7 @@
15296
"zh-chs": "芬兰",
15297
"zh-cht": "芬蘭",
15298
"xloc": [
15299
- "default.handlebars->27->1094"
15299
+ "default.handlebars->27->1097"
15300
]
15301
},
15302
{
@@ -15443,8 +15443,8 @@
15443
"zh-chs": "下次登录时强制重置密码。",
15444
"zh-cht": "下次登入時強制重置密碼。",
15445
"xloc": [
15446
- "default.handlebars->27->1762",
15447
- "default.handlebars->27->1939"
15446
+ "default.handlebars->27->1765",
15447
+ "default.handlebars->27->1942"
15448
]
15449
},
15450
{
@@ -15527,7 +15527,7 @@
15527
"zh-chs": "格式化",
15528
"zh-cht": "格式化",
15529
"xloc": [
15530
- "default.handlebars->27->1670"
15530
+ "default.handlebars->27->1673"
15531
]
15532
},
15533
{
@@ -15568,8 +15568,8 @@
15568
"zh-chs": "自由",
15569
"zh-cht": "自由",
15570
"xloc": [
15571
- "default.handlebars->27->2014",
15572
- "default.handlebars->27->2016"
15571
+ "default.handlebars->27->2017",
15572
+ "default.handlebars->27->2019"
15573
]
15574
},
15575
{
@@ -15610,7 +15610,7 @@
15610
"zh-chs": "法文(比利时)",
15611
"zh-cht": "法語(比利時)",
15612
"xloc": [
15613
- "default.handlebars->27->1096"
15613
+ "default.handlebars->27->1099"
15614
]
15615
},
15616
{
@@ -15630,7 +15630,7 @@
15630
"zh-chs": "法文(加拿大)",
15631
"zh-cht": "法語(加拿大)",
15632
"xloc": [
15633
- "default.handlebars->27->1097"
15633
+ "default.handlebars->27->1100"
15634
]
15635
},
15636
{
@@ -15650,7 +15650,7 @@
15650
"zh-chs": "法文(法国)",
15651
"zh-cht": "法語(法國)",
15652
"xloc": [
15653
- "default.handlebars->27->1098"
15653
+ "default.handlebars->27->1101"
15654
]
15655
},
15656
{
@@ -15670,7 +15670,7 @@
15670
"zh-chs": "法文(卢森堡)",
15671
"zh-cht": "法語(盧森堡)",
15672
"xloc": [
15673
- "default.handlebars->27->1099"
15673
+ "default.handlebars->27->1102"
15674
]
15675
},
15676
{
@@ -15690,7 +15690,7 @@
15690
"zh-chs": "法文(摩纳哥)",
15691
"zh-cht": "法語(摩納哥)",
15692
"xloc": [
15693
- "default.handlebars->27->1100"
15693
+ "default.handlebars->27->1103"
15694
]
15695
},
15696
{
@@ -15710,7 +15710,7 @@
15710
"zh-chs": "法文(标准)",
15711
"zh-cht": "法語(標準)",
15712
"xloc": [
15713
- "default.handlebars->27->1095"
15713
+ "default.handlebars->27->1098"
15714
]
15715
},
15716
{
@@ -15730,7 +15730,7 @@
15730
"zh-chs": "法文(瑞士)",
15731
"zh-cht": "法語(瑞士)",
15732
"xloc": [
15733
- "default.handlebars->27->1101"
15733
+ "default.handlebars->27->1104"
15734
]
15735
},
15736
{
@@ -15750,7 +15750,7 @@
15750
"zh-chs": "弗里斯兰文",
15751
"zh-cht": "弗里斯蘭語",
15752
"xloc": [
15753
- "default.handlebars->27->1102"
15753
+ "default.handlebars->27->1105"
15754
]
15755
},
15756
{
@@ -15770,7 +15770,7 @@
15770
"zh-chs": "弗留利",
15771
"zh-cht": "弗留利",
15772
"xloc": [
15773
- "default.handlebars->27->1103"
15773
+ "default.handlebars->27->1106"
15774
]
15775
},
15776
{
@@ -15794,9 +15794,9 @@
15794
"default-mobile.handlebars->9->401",
15795
"default-mobile.handlebars->9->410",
15796
"default-mobile.handlebars->9->428",
15797
- "default.handlebars->27->1277",
15798
- "default.handlebars->27->1421",
15799
- "default.handlebars->27->1774"
15797
+ "default.handlebars->27->1280",
15798
+ "default.handlebars->27->1424",
15799
+ "default.handlebars->27->1777"
15800
]
15801
},
15802
{
@@ -15816,7 +15816,7 @@
15816
"zh-chs": "完整管理员(保留所有权利)",
15817
"zh-cht": "完整管理員(保留所有權利)",
15818
"xloc": [
15819
- "default.handlebars->27->1456"
15819
+ "default.handlebars->27->1459"
15820
]
15821
},
15822
{
@@ -15853,7 +15853,7 @@
15853
"zh-chs": "完整设备权限",
15854
"zh-cht": "完整裝置權限",
15855
"xloc": [
15856
- "default.handlebars->27->670"
15856
+ "default.handlebars->27->673"
15857
]
15858
},
15859
{
@@ -15873,7 +15873,7 @@
15873
"zh-chs": "全部权限",
15874
"zh-cht": "全部權限",
15875
"xloc": [
15876
- "default.handlebars->27->686"
15876
+ "default.handlebars->27->689"
15877
]
15878
},
15879
{
@@ -15915,7 +15915,7 @@
15915
"zh-chs": "完整管理员",
15916
"zh-cht": "完整管理員",
15917
"xloc": [
15918
- "default.handlebars->27->1860"
15918
+ "default.handlebars->27->1863"
15919
]
15920
},
15921
{
@@ -15936,7 +15936,7 @@
15936
"zh-cht": "GPU",
15937
"xloc": [
15938
"default-mobile.handlebars->9->379",
15939
- "default.handlebars->27->977"
15939
+ "default.handlebars->27->980"
15940
]
15941
},
15942
{
@@ -15956,7 +15956,7 @@
15956
"zh-chs": "盖尔文(爱尔兰)",
15957
"zh-cht": "蓋爾語(愛爾蘭)",
15958
"xloc": [
15959
- "default.handlebars->27->1105"
15959
+ "default.handlebars->27->1108"
15960
]
15961
},
15962
{
@@ -15976,7 +15976,7 @@
15976
"zh-chs": "盖尔文(苏格兰文)",
15977
"zh-cht": "蓋爾語(蘇格蘭語)",
15978
"xloc": [
15979
- "default.handlebars->27->1104"
15979
+ "default.handlebars->27->1107"
15980
]
15981
},
15982
{
@@ -15996,7 +15996,7 @@
15996
"zh-chs": "加拉契文",
15997
"zh-cht": "加拉契語",
15998
"xloc": [
15999
- "default.handlebars->27->1106"
15999
+ "default.handlebars->27->1109"
16000
]
16001
},
16002
{
@@ -16082,7 +16082,7 @@
16082
"zh-chs": "一般信息",
16083
"zh-cht": "一般訊息",
16084
"xloc": [
16085
- "default.handlebars->27->526"
16085
+ "default.handlebars->27->529"
16086
]
16087
},
16088
{
@@ -16122,7 +16122,7 @@
16122
"zh-chs": "格鲁吉亚文",
16123
"zh-cht": "格魯吉亞文",
16124
"xloc": [
16125
- "default.handlebars->27->1107"
16125
+ "default.handlebars->27->1110"
16126
]
16127
},
16128
{
@@ -16142,7 +16142,7 @@
16142
"zh-chs": "德文(奥地利)",
16143
"zh-cht": "德語(奧地利)",
16144
"xloc": [
16145
- "default.handlebars->27->1109"
16145
+ "default.handlebars->27->1112"
16146
]
16147
},
16148
{
@@ -16162,7 +16162,7 @@
16162
"zh-chs": "德文(德国)",
16163
"zh-cht": "德文(德國)",
16164
"xloc": [
16165
- "default.handlebars->27->1110"
16165
+ "default.handlebars->27->1113"
16166
]
16167
},
16168
{
@@ -16182,7 +16182,7 @@
16182
"zh-chs": "德文(列支敦士登)",
16183
"zh-cht": "德文(列支敦士登)",
16184
"xloc": [
16185
- "default.handlebars->27->1111"
16185
+ "default.handlebars->27->1114"
16186
]
16187
},
16188
{
@@ -16202,7 +16202,7 @@
16202
"zh-chs": "德文(卢森堡)",
16203
"zh-cht": "德語(盧森堡)",
16204
"xloc": [
16205
- "default.handlebars->27->1112"
16205
+ "default.handlebars->27->1115"
16206
]
16207
},
16208
{
@@ -16222,7 +16222,7 @@
16222
"zh-chs": "德文(标准)",
16223
"zh-cht": "德語(標準)",
16224
"xloc": [
16225
- "default.handlebars->27->1108"
16225
+ "default.handlebars->27->1111"
16226
]
16227
},
16228
{
@@ -16242,7 +16242,7 @@
16242
"zh-chs": "德文(瑞士)",
16243
"zh-cht": "德文(瑞士)",
16244
"xloc": [
16245
- "default.handlebars->27->1113"
16245
+ "default.handlebars->27->1116"
16246
]
16247
},
16248
{
@@ -16262,7 +16262,7 @@
16262
"zh-chs": "获取此设备的MQTT登录凭证。",
16263
"zh-cht": "獲取此裝置的MQTT登入憑證。",
16264
"xloc": [
16265
- "default.handlebars->27->651"
16265
+ "default.handlebars->27->654"
16266
]
16267
},
16268
{
@@ -16303,7 +16303,7 @@
16303
"zh-chs": "正在获取剪贴板内容,{0}个字节",
16304
"zh-cht": "正在獲取剪貼板內容,{0}個字節",
16305
"xloc": [
16306
- "default.handlebars->27->1582"
16306
+ "default.handlebars->27->1585"
16307
]
16308
},
16309
{
@@ -16365,7 +16365,7 @@
16365
"zh-chs": "好",
16366
"zh-cht": "好",
16367
"xloc": [
16368
- "default.handlebars->27->1273"
16368
+ "default.handlebars->27->1276"
16369
]
16370
},
16371
{
@@ -16410,8 +16410,8 @@
16410
"zh-chs": "Google云端硬盘备份",
16411
"zh-cht": "Google雲端硬盤備份",
16412
"xloc": [
16413
- "default.handlebars->27->1284",
16413
"default.handlebars->27->1287",
16414
+ "default.handlebars->27->1290",
16415
"default.handlebars->27->201"
16416
]
16417
},
@@ -16432,7 +16432,7 @@
16432
"zh-chs": "Google云端硬盘控制台",
16433
"zh-cht": "Google雲端硬盤控制台",
16434
"xloc": [
16435
- "default.handlebars->27->1281"
16435
+ "default.handlebars->27->1284"
16436
]
16437
},
16438
{
@@ -16472,7 +16472,7 @@
16472
"zh-chs": "Google云端硬盘备份当前处于活动状态。",
16473
"zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
16474
"xloc": [
16475
- "default.handlebars->27->1285"
16475
+ "default.handlebars->27->1288"
16476
]
16477
},
16478
{
@@ -16492,7 +16492,7 @@
16492
"zh-chs": "希腊文",
16493
"zh-cht": "希臘文",
16494
"xloc": [
16495
- "default.handlebars->27->1114"
16495
+ "default.handlebars->27->1117"
16496
]
16497
},
16498
{
@@ -16513,7 +16513,7 @@
16513
"zh-cht": "群",
16514
"xloc": [
16515
"default-mobile.handlebars->9->214",
16516
- "default.handlebars->27->554",
16516
+ "default.handlebars->27->557",
16517
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
16518
]
16519
},
@@ -16534,8 +16534,8 @@
16534
"zh-chs": "集体指令",
16535
"zh-cht": "集體指令",
16536
"xloc": [
16537
- "default.handlebars->27->1718",
16538
- "default.handlebars->27->1797",
16537
+ "default.handlebars->27->1721",
16538
+ "default.handlebars->27->1800",
16539
"default.handlebars->27->465",
16540
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
16541
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -16559,7 +16559,7 @@
16559
"zh-chs": "通过...分组",
16560
"zh-cht": "通過...分群",
16561
"xloc": [
16562
- "default.handlebars->27->1666"
16562
+ "default.handlebars->27->1669"
16563
]
16564
},
16565
{
@@ -16579,7 +16579,7 @@
16579
"zh-chs": "组标识符",
16580
"zh-cht": "群標識符",
16581
"xloc": [
16582
- "default.handlebars->27->1814"
16582
+ "default.handlebars->27->1817"
16583
]
16584
},
16585
{
@@ -16599,7 +16599,7 @@
16599
"zh-chs": "群组成员",
16600
"zh-cht": "群組成員",
16601
"xloc": [
16602
- "default.handlebars->27->1823"
16602
+ "default.handlebars->27->1826"
16603
]
16604
},
16605
{
@@ -16619,7 +16619,7 @@
16619
"zh-chs": "用户{0}的群组权限。",
16620
"zh-cht": "用戶{0}的群組權限。",
16621
"xloc": [
16622
- "default.handlebars->27->1420"
16622
+ "default.handlebars->27->1423"
16623
]
16624
},
16625
{
@@ -16639,7 +16639,7 @@
16639
"zh-chs": "{0}的群组权限。",
16640
"zh-cht": "{0}的群組權限。",
16641
"xloc": [
16642
- "default.handlebars->27->1419"
16642
+ "default.handlebars->27->1422"
16643
]
16644
},
16645
{
@@ -16706,7 +16706,7 @@
16706
"zh-cht": "來賓姓名",
16707
"xloc": [
16708
"default.handlebars->27->184",
16709
- "default.handlebars->27->714"
16709
+ "default.handlebars->27->717"
16710
]
16711
},
16712
{
@@ -16726,7 +16726,7 @@
16726
"zh-chs": "古久拉提",
16727
"zh-cht": "古久拉提",
16728
"xloc": [
16729
- "default.handlebars->27->1115"
16729
+ "default.handlebars->27->1118"
16730
]
16731
},
16732
{
@@ -16769,7 +16769,7 @@
16769
"zh-chs": "海地文",
16770
"zh-cht": "海地文",
16771
"xloc": [
16772
- "default.handlebars->27->1116"
16772
+ "default.handlebars->27->1119"
16773
]
16774
},
16775
{
@@ -16809,7 +16809,7 @@
16809
"zh-chs": "强行断开代理",
16810
"zh-cht": "強行斷開代理",
16811
"xloc": [
16812
- "default.handlebars->27->1004"
16812
+ "default.handlebars->27->1007"
16813
]
16814
},
16815
{
@@ -16829,7 +16829,7 @@
16829
"zh-chs": "堆总数",
16830
"zh-cht": "堆總數",
16831
"xloc": [
16832
- "default.handlebars->27->2058"
16832
+ "default.handlebars->27->2061"
16833
]
16834
},
16835
{
@@ -16849,7 +16849,7 @@
16849
"zh-chs": "堆使用",
16850
"zh-cht": "堆使用",
16851
"xloc": [
16852
- "default.handlebars->27->2057"
16852
+ "default.handlebars->27->2060"
16853
]
16854
},
16855
{
@@ -16869,7 +16869,7 @@
16869
"zh-chs": "希伯来文",
16870
"zh-cht": "希伯來文",
16871
"xloc": [
16872
- "default.handlebars->27->1117"
16872
+ "default.handlebars->27->1120"
16873
]
16874
},
16875
{
@@ -16910,7 +16910,7 @@
16910
"zh-chs": "帮助翻译MeshCentral",
16911
"zh-cht": "幫助翻譯MeshCentral",
16912
"xloc": [
16913
- "default.handlebars->27->1232"
16913
+ "default.handlebars->27->1235"
16914
]
16915
},
16916
{
@@ -17021,7 +17021,7 @@
17021
"zh-chs": "印地文",
17022
"zh-cht": "印地文",
17023
"xloc": [
17024
- "default.handlebars->27->1118"
17024
+ "default.handlebars->27->1121"
17025
]
17026
},
17027
{
@@ -17059,7 +17059,7 @@
17059
"zh-cht": "保存1個項目進行複製",
17060
"xloc": [
17061
"default-mobile.handlebars->9->315",
17062
- "default.handlebars->27->896"
17062
+ "default.handlebars->27->899"
17063
]
17064
},
17065
{
@@ -17080,7 +17080,7 @@
17080
"zh-cht": "保存1個項目進行移動",
17081
"xloc": [
17082
"default-mobile.handlebars->9->319",
17083
- "default.handlebars->27->900"
17083
+ "default.handlebars->27->903"
17084
]
17085
},
17086
{
@@ -17101,7 +17101,7 @@
17101
"zh-cht": "保留{0}個項目進行複製",
17102
"xloc": [
17103
"default-mobile.handlebars->9->313",
17104
- "default.handlebars->27->894"
17104
+ "default.handlebars->27->897"
17105
]
17106
},
17107
{
@@ -17122,7 +17122,7 @@
17122
"zh-cht": "保存{0}個項目以進行移動",
17123
"xloc": [
17124
"default-mobile.handlebars->9->317",
17125
- "default.handlebars->27->898"
17125
+ "default.handlebars->27->901"
17126
]
17127
},
17128
{
@@ -17143,7 +17143,7 @@
17143
"zh-cht": "保存{0}項目{1}給{2}",
17144
"xloc": [
17145
"default-mobile.handlebars->9->129",
17146
- "default.handlebars->27->1555"
17146
+ "default.handlebars->27->1558"
17147
]
17148
},
17149
{
@@ -17168,8 +17168,8 @@
17168
"default-mobile.handlebars->9->219",
17169
"default-mobile.handlebars->9->279",
17170
"default.handlebars->27->287",
17171
- "default.handlebars->27->559",
17172
- "default.handlebars->27->807"
17171
+ "default.handlebars->27->562",
17172
+ "default.handlebars->27->810"
17173
]
17174
},
17175
{
@@ -17189,7 +17189,7 @@
17189
"zh-chs": "主机名同步",
17190
"zh-cht": "主機名同步",
17191
"xloc": [
17192
- "default.handlebars->27->1312"
17192
+ "default.handlebars->27->1315"
17193
]
17194
},
17195
{
@@ -17209,7 +17209,7 @@
17209
"zh-chs": "匈牙利文",
17210
"zh-cht": "匈牙利文",
17211
"xloc": [
17212
- "default.handlebars->27->1119"
17212
+ "default.handlebars->27->1122"
17213
]
17214
},
17215
{
@@ -17274,9 +17274,9 @@
17274
"xloc": [
17275
"default-mobile.handlebars->9->348",
17276
"default-mobile.handlebars->9->352",
17277
- "default.handlebars->27->936",
17278
- "default.handlebars->27->946",
17279
- "default.handlebars->27->950"
17277
+ "default.handlebars->27->939",
17278
+ "default.handlebars->27->949",
17279
+ "default.handlebars->27->953"
17280
]
17281
},
17282
{
@@ -17298,9 +17298,9 @@
17298
"xloc": [
17299
"default-mobile.handlebars->9->346",
17300
"default-mobile.handlebars->9->350",
17301
- "default.handlebars->27->934",
17302
- "default.handlebars->27->944",
17303
- "default.handlebars->27->948"
17301
+ "default.handlebars->27->937",
17302
+ "default.handlebars->27->947",
17303
+ "default.handlebars->27->951"
17304
]
17305
},
17306
{
@@ -17322,10 +17322,10 @@
17322
"xloc": [
17323
"default-mobile.handlebars->9->345",
17324
"default-mobile.handlebars->9->347",
17325
- "default.handlebars->27->933",
17326
- "default.handlebars->27->935",
17327
- "default.handlebars->27->943",
17328
- "default.handlebars->27->945"
17325
+ "default.handlebars->27->936",
17326
+ "default.handlebars->27->938",
17327
+ "default.handlebars->27->946",
17328
+ "default.handlebars->27->948"
17329
]
17330
},
17331
{
@@ -17410,8 +17410,8 @@
17410
"xloc": [
17411
"default-mobile.handlebars->9->349",
17412
"default-mobile.handlebars->9->351",
17413
- "default.handlebars->27->947",
17414
- "default.handlebars->27->949"
17413
+ "default.handlebars->27->950",
17414
+ "default.handlebars->27->952"
17415
]
17416
},
17417
{
@@ -17491,7 +17491,7 @@
17491
"zh-chs": "冰岛文",
17492
"zh-cht": "冰島文",
17493
"xloc": [
17494
- "default.handlebars->27->1120"
17494
+ "default.handlebars->27->1123"
17495
]
17496
},
17497
{
@@ -17512,7 +17512,7 @@
17512
"zh-cht": "圖符選擇",
17513
"xloc": [
17514
"default-mobile.handlebars->9->277",
17515
- "default.handlebars->27->805"
17515
+ "default.handlebars->27->808"
17516
]
17517
},
17518
{
@@ -17533,7 +17533,7 @@
17533
"zh-cht": "識別符",
17534
"xloc": [
17535
"default-mobile.handlebars->9->377",
17536
- "default.handlebars->27->975"
17536
+ "default.handlebars->27->978"
17537
]
17538
},
17539
{
@@ -17681,7 +17681,7 @@
17681
"zh-chs": "印度尼西亚文",
17682
"zh-cht": "印度尼西亞文",
17683
"xloc": [
17684
- "default.handlebars->27->1121"
17684
+ "default.handlebars->27->1124"
17685
]
17686
},
17687
{
@@ -17820,7 +17820,7 @@
17820
"zh-chs": "安装CIRA",
17821
"zh-cht": "安裝CIRA",
17822
"xloc": [
17823
- "default.handlebars->27->1345"
17823
+ "default.handlebars->27->1348"
17824
]
17825
},
17826
{
@@ -17840,7 +17840,7 @@
17840
"zh-chs": "安装本地",
17841
"zh-cht": "安裝本地",
17842
"xloc": [
17843
- "default.handlebars->27->1347"
17843
+ "default.handlebars->27->1350"
17844
]
17845
},
17846
{
@@ -17860,8 +17860,8 @@
17860
"zh-chs": "安装类型",
17861
"zh-cht": "安裝方式",
17862
"xloc": [
17863
- "default.handlebars->27->1487",
17864
- "default.handlebars->27->1494",
17863
+ "default.handlebars->27->1490",
17864
+ "default.handlebars->27->1497",
17865
"default.handlebars->27->351",
17866
"default.handlebars->27->365",
17867
"default.handlebars->27->379"
@@ -17884,7 +17884,7 @@
17884
"zh-chs": "英特尔(F10 = ESC + [OM)",
17885
"zh-cht": "Intel(F10 = ESC + [OM)",
17886
"xloc": [
17887
- "default.handlebars->27->862",
17887
+ "default.handlebars->27->865",
17888
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
17889
]
17890
},
@@ -17905,7 +17905,7 @@
17905
"zh-chs": "英特尔AMT",
17906
"zh-cht": "英特爾AMT",
17907
"xloc": [
17908
- "default.handlebars->27->2054"
17908
+ "default.handlebars->27->2057"
17909
]
17910
},
17911
{
@@ -17925,7 +17925,7 @@
17925
"zh-chs": "英特尔ASCII",
17926
"zh-cht": "Intel ASCII",
17927
"xloc": [
17928
- "default.handlebars->27->861"
17928
+ "default.handlebars->27->864"
17929
]
17930
},
17931
{
@@ -17948,14 +17948,14 @@
17948
"default-mobile.handlebars->9->201",
17949
"default-mobile.handlebars->9->236",
17950
"default-mobile.handlebars->9->241",
17951
- "default.handlebars->27->1329",
17952
- "default.handlebars->27->1339",
17953
- "default.handlebars->27->1506",
17954
- "default.handlebars->27->1514",
17955
- "default.handlebars->27->2076",
17956
- "default.handlebars->27->529",
17957
- "default.handlebars->27->584",
17958
- "default.handlebars->27->612"
17951
+ "default.handlebars->27->1332",
17952
+ "default.handlebars->27->1342",
17953
+ "default.handlebars->27->1509",
17954
+ "default.handlebars->27->1517",
17955
+ "default.handlebars->27->2079",
17956
+ "default.handlebars->27->532",
17957
+ "default.handlebars->27->587",
17958
+ "default.handlebars->27->615"
17959
]
17960
},
17961
{
@@ -17976,7 +17976,7 @@
17976
"zh-cht": "Intel® AMT CIRA",
17977
"xloc": [
17978
"default-mobile.handlebars->9->240",
17979
- "default.handlebars->27->610"
17979
+ "default.handlebars->27->613"
17980
]
17981
},
17982
{
@@ -18038,7 +18038,7 @@
18038
"xloc": [
18039
"default.handlebars->27->211",
18040
"default.handlebars->27->440",
18041
- "default.handlebars->27->609"
18041
+ "default.handlebars->27->612"
18042
]
18043
},
18044
{
@@ -18101,7 +18101,7 @@
18101
"zh-chs": "英特尔®AMT政策",
18102
"zh-cht": "Intel® AMT政策",
18103
"xloc": [
18104
- "default.handlebars->27->1368"
18104
+ "default.handlebars->27->1371"
18105
]
18106
},
18107
{
@@ -18121,7 +18121,7 @@
18121
"zh-chs": "英特尔®AMT重定向",
18122
"zh-cht": "Intel® AMT重定向",
18123
"xloc": [
18124
- "default.handlebars->27->1992",
18124
+ "default.handlebars->27->1995",
18125
"player.handlebars->3->14"
18126
]
18127
},
@@ -18142,7 +18142,7 @@
18142
"zh-chs": "英特尔®AMT标签",
18143
"zh-cht": "Intel® AMT標籤",
18144
"xloc": [
18145
- "default.handlebars->27->588"
18145
+ "default.handlebars->27->591"
18146
]
18147
},
18148
{
@@ -18162,7 +18162,7 @@
18162
"zh-chs": "英特尔®AMT WSMAN",
18163
"zh-cht": "Intle® AMT WSMAN",
18164
"xloc": [
18165
- "default.handlebars->27->1991",
18165
+ "default.handlebars->27->1994",
18166
"player.handlebars->3->13"
18167
]
18168
},
@@ -18205,8 +18205,8 @@
18205
"zh-cht": "Intel ®AMT已連接",
18206
"xloc": [
18207
"default-mobile.handlebars->9->251",
18208
- "default.handlebars->27->655",
18209
- "default.handlebars->27->656"
18208
+ "default.handlebars->27->658",
18209
+ "default.handlebars->27->659"
18210
]
18211
},
18212
{
@@ -18226,8 +18226,8 @@
18226
"zh-chs": "英特尔®AMT桌面和串行事件。",
18227
"zh-cht": "Intel® AMT桌面和串行事件。",
18228
"xloc": [
18229
- "default.handlebars->27->1238",
18230
- "default.handlebars->27->1502"
18229
+ "default.handlebars->27->1241",
18230
+ "default.handlebars->27->1505"
18231
]
18232
},
18233
{
@@ -18249,8 +18249,8 @@
18249
"xloc": [
18250
"default-mobile.handlebars->9->252",
18251
"default.handlebars->27->161",
18252
- "default.handlebars->27->657",
18253
- "default.handlebars->27->658"
18252
+ "default.handlebars->27->660",
18253
+ "default.handlebars->27->661"
18254
]
18255
},
18256
{
@@ -18270,7 +18270,7 @@
18270
"zh-chs": "在Intel® AMT尔AMT",
18271
"zh-cht": "在管理控制模式下啟動了Intel® AMT",
18272
"xloc": [
18273
- "default.handlebars->27->573"
18273
+ "default.handlebars->27->576"
18274
]
18275
},
18276
{
@@ -18290,7 +18290,7 @@
18290
"zh-chs": "英特尔AMT在客户端控制模式下被激活",
18291
"zh-cht": "Intel® AMT在客户端控制模式下被启动",
18292
"xloc": [
18293
- "default.handlebars->27->571"
18293
+ "default.handlebars->27->574"
18294
]
18295
},
18296
{
@@ -18310,7 +18310,7 @@
18310
"zh-chs": "英特尔®AMT可路由并可以使用。",
18311
"zh-cht": "Intel® AMT可路由並可以使用。",
18312
"xloc": [
18313
- "default.handlebars->27->611"
18313
+ "default.handlebars->27->614"
18314
]
18315
},
18316
{
@@ -18351,7 +18351,7 @@
18351
"zh-chs": "英特尔AMT已设置TLS网络安全",
18352
"zh-cht": "Intel® AMT已設置TLS網絡安全性",
18353
"xloc": [
18354
- "default.handlebars->27->575"
18354
+ "default.handlebars->27->578"
18355
]
18356
},
18357
{
@@ -18412,8 +18412,8 @@
18412
"zh-cht": "僅限Intel® AMT,無代理",
18413
"xloc": [
18414
"default-mobile.handlebars->9->392",
18415
- "default.handlebars->27->1267",
18416
- "default.handlebars->27->1302"
18415
+ "default.handlebars->27->1270",
18416
+ "default.handlebars->27->1305"
18417
]
18418
},
18419
{
@@ -18453,7 +18453,7 @@
18453
"zh-chs": "英特尔®主动管理技术",
18454
"zh-cht": "Intel® Active Management Technology",
18455
"xloc": [
This file is too large to show in full.
views/default.handlebars
+4
-3
@@ -4452,13 +4452,14 @@
4452
if (n.agent) { if ((n.agent.id > 0) && (n.agent.id < 5)) { wintype = true; } else { linuxtype = true; } }
4453
}
4454
if ((wintype == true) || (linuxtype == true)) {
4455
- var x = "Run commands on selected devices." + '<br /><br />';
4455
+ var x = "Run commands on selected devices." + '<br />';
4456
if (wintype == true) {
4457
- x += '<select id=d2cmdtype style=width:100%>';
4457
+ x += '<select id=d2cmdtype style=width:100%;margin-bottom:4px;margin-top:4px>';
4458
x += '<option value=1>' + "Windows Command Prompt" + '</option><option value=2>' + "Windows PowerShell" + '</option>';
4459
if (linuxtype == true) { x += '<option value=3>' + "Linux/BSD/macOS Command Shell" + '</option>'; }
4460
x += '</select>';
4461
}
4462
+ x += '<select id=d2cmduser style=width:100%;margin-bottom:4px><option value=0>' + "Run as agent" + '</option><option value=1>' + "Run as user, agent if no user" + '</option><option value=2>' + "Must run as user" + '</option></select>';
4463
x += '<textarea id=d2runcmd style=background-color:#fcf3cf;width:100%;height:200px;resize:none;overflow-y:scroll></textarea>';
4464
setDialogMode(2, "Run Commands", 3, d2groupActionFunctionRunCommands, x);
4465
Q('d2runcmd').focus();
@@ -4549,7 +4550,7 @@
4550
function d2groupActionFunctionRunCommands() {
4551
var type = 3;
4552
try { type = parseInt(Q('d2cmdtype').value); } catch (ex) { }
4552
- meshserver.send({ action: 'runcommands', nodeids: getCheckedDevices(), type: type, cmds: Q('d2runcmd').value }); uncheckAllDevices();
4553
+ meshserver.send({ action: 'runcommands', nodeids: getCheckedDevices(), type: type, cmds: Q('d2runcmd').value, runAsUser: parseInt(Q('d2cmduser').value) }); uncheckAllDevices();
4554
}
4555
4556
function onSortSelectChange(skipsave) {