Version 0.8.19
Ylian Saint-Hilaire committed
Apr 24, 2021 at 10:53 UTC
c3ad38cd33ad92d0f0887d0ef7fea1bf52891a30
3 files changed
+2970
-3023
agents/meshcore.js
+66
-128
@@ -17,10 +17,8 @@ limitations under the License.
17
process.on('uncaughtException', function (ex) {
18
require('MeshAgent').SendCommand({ action: 'msg', type: 'console', value: "uncaughtException1: " + ex });
19
});
20
-if (process.platform == 'win32' && require('user-sessions').getDomain == null)
21
-{
22
- require('user-sessions').getDomain = function getDomain(uid)
23
- {
20
+if (process.platform == 'win32' && require('user-sessions').getDomain == null) {
21
+ require('user-sessions').getDomain = function getDomain(uid) {
22
return (this.getSessionAttribute(uid, this.InfoClass.WTSDomainName));
23
};
24
}
@@ -745,13 +743,11 @@ function getServerTargetUrlEx(url) {
743
return url;
744
}
745
748
-function sendWakeOnLanEx_interval()
749
-{
746
+function sendWakeOnLanEx_interval() {
747
var t = require('MeshAgent').wakesockets;
751
- if (t.list.length == 0)
752
- {
748
+ if (t.list.length == 0) {
749
clearInterval(t);
754
- require('MeshAgent').wakesockets = null;
750
+ delete require('MeshAgent').wakesockets;
751
return;
752
}
753
@@ -760,35 +756,27 @@ function sendWakeOnLanEx_interval()
756
for (var x = 1; x <= 16; ++x) { magic += mac; }
757
var magicbin = Buffer.from(magic, 'hex');
758
763
- for(var i in t.sockets)
764
- {
759
+ for (var i in t.sockets) {
760
t.sockets[i].send(magicbin, 7, '255.255.255.255');
761
//sendConsoleText('Sending wake packet on ' + JSON.stringify(t.sockets[i].address()));
762
}
763
}
769
-function sendWakeOnLanEx(hexMacList)
770
-{
764
+function sendWakeOnLanEx(hexMacList) {
765
var ret = 0;
766
773
- if (require('MeshAgent').wakesockets == null)
774
- {
767
+ if (require('MeshAgent').wakesockets == null) {
768
// Create a new interval timer
769
require('MeshAgent').wakesockets = setInterval(sendWakeOnLanEx_interval, 10);
770
require('MeshAgent').wakesockets.sockets = [];
771
require('MeshAgent').wakesockets.list = hexMacList;
772
773
var interfaces = require('os').networkInterfaces();
781
- for (var adapter in interfaces)
782
- {
783
- if (interfaces.hasOwnProperty(adapter))
784
- {
785
- for (var i = 0; i < interfaces[adapter].length; ++i)
786
- {
774
+ for (var adapter in interfaces) {
775
+ if (interfaces.hasOwnProperty(adapter)) {
776
+ for (var i = 0; i < interfaces[adapter].length; ++i) {
777
var addr = interfaces[adapter][i];
788
- if ((addr.family == 'IPv4') && (addr.mac != '00:00:00:00:00:00'))
789
- {
790
- try
791
- {
778
+ if ((addr.family == 'IPv4') && (addr.mac != '00:00:00:00:00:00')) {
779
+ try {
780
var socket = require('dgram').createSocket({ type: 'udp4' });
781
socket.bind({ address: addr.address });
782
socket.setBroadcast(true);
@@ -804,11 +792,9 @@ function sendWakeOnLanEx(hexMacList)
792
}
793
}
794
}
807
- else
808
- {
795
+ else {
796
// Append to an existing interval timer
810
- for(var i in hexMacList)
811
- {
797
+ for (var i in hexMacList) {
798
require('MeshAgent').wakesockets.list.push(hexMacList[i]);
799
}
800
ret = require('MeshAgent').wakesockets.sockets.length;
@@ -1016,25 +1002,20 @@ function handleServerCommand(data) {
1002
case 'setclip': {
1003
// Set the load clipboard to a user value
1004
//sendConsoleText('setClip: ' + JSON.stringify(data));
1019
- if (typeof data.data == 'string')
1020
- {
1005
+ if (typeof data.data == 'string') {
1006
MeshServerLogEx(22, [data.data.length], "Setting clipboard content, " + data.data.length + " byte(s)", data);
1022
- if (require('MeshAgent').isService)
1023
- {
1024
- if (process.platform != 'win32')
1025
- {
1007
+ if (require('MeshAgent').isService) {
1008
+ if (process.platform != 'win32') {
1009
require('clipboard').dispatchWrite(data.data);
1010
}
1028
- else
1029
- {
1011
+ else {
1012
var tmp = "require('clipboard')(" + JSON.stringify(data.data) + ');process.exit();';
1013
tmp = Buffer.from(tmp).toString('base64');
1014
var uid = require('user-sessions').consoleUid();
1015
var domain = require('user-sessions').getDomain(uid);
1016
var user = domain + '\\' + require('user-sessions').getUsername(uid);
1017
var taskoptions = { env: { _target: process.execPath, _args: '-b64exec ' + tmp, _user: user } };
1036
- for (var c1e in process.env)
1037
- {
1018
+ for (var c1e in process.env) {
1019
taskoptions.env[c1e] = process.env[c1e];
1020
}
1021
@@ -1061,8 +1042,7 @@ function handleServerCommand(data) {
1042
child.waitExit();
1043
}
1044
}
1064
- else
1065
- {
1045
+ else {
1046
require("clipboard")(data.data);
1047
} // Set the clipboard
1048
mesh.SendCommand({ action: 'msg', type: 'setclip', sessionid: data.sessionid, success: true });
@@ -1375,8 +1355,7 @@ function onFileWatcher(a, b) {
1355
*/
1356
1357
function getSystemInformation(func) {
1378
- try
1379
- {
1358
+ try {
1359
var results = { hardware: require('identifiers').get() }; // Hardware info
1360
1361
if (results.hardware && results.hardware.windows) {
@@ -2746,8 +2725,7 @@ function openUserDesktopUrl(url) {
2725
var user = require('user-sessions').getUsername(uid);
2726
var domain = require('user-sessions').getDomain(uid);
2727
var taskoptions = { env: { _target: process.env['windir'] + '\\system32\\cmd.exe', _args: '/C START ' + url.split('&').join('^&'), _user: '"' + domain + '\\' + user + '"' } };
2749
- for (var c1e in process.env)
2750
- {
2728
+ for (var c1e in process.env) {
2729
taskoptions.env[c1e] = process.env[c1e];
2730
}
2731
var child = require('child_process').execFile(process.env['windir'] + '\\System32\\WindowsPowerShell\\v1.0\\powershell.exe', ['powershell', '-noprofile', '-nologo', '-command', '-'], taskoptions);
@@ -2809,41 +2787,33 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
2787
break;
2788
}
2789
case 'cs':
2812
- if (process.platform != 'win32')
2813
- {
2790
+ if (process.platform != 'win32') {
2791
response = 'Unknown command "cs", type "help" for list of avaialble commands.';
2792
break;
2793
}
2817
- switch (args['_'].length)
2818
- {
2794
+ switch (args['_'].length) {
2795
case 0:
2820
- try
2821
- {
2796
+ try {
2797
var cs = require('win-registry').QueryKey(require('win-registry').HKEY.LocalMachine, 'System\\CurrentControlSet\\Control\\Power', 'CsEnabled');
2798
response = "Connected Standby: " + (cs == 1 ? "ENABLED" : "DISABLED");
2799
}
2825
- catch(e)
2826
- {
2800
+ catch (e) {
2801
response = "This machine does not support Connected Standby";
2802
}
2803
break;
2804
case 1:
2831
- if ((args['_'][0].toUpperCase() != 'ENABLE' && args['_'][0].toUpperCase() != 'DISABLE'))
2832
- {
2805
+ if ((args['_'][0].toUpperCase() != 'ENABLE' && args['_'][0].toUpperCase() != 'DISABLE')) {
2806
response = "Proper usage:\r\n cs [ENABLE|DISABLE]";
2807
}
2835
- else
2836
- {
2837
- try
2838
- {
2808
+ else {
2809
+ try {
2810
var cs = require('win-registry').QueryKey(require('win-registry').HKEY.LocalMachine, 'System\\CurrentControlSet\\Control\\Power', 'CsEnabled');
2811
require('win-registry').WriteKey(require('win-registry').HKEY.LocalMachine, 'System\\CurrentControlSet\\Control\\Power', 'CsEnabled', args['_'][0].toUpperCase() == 'ENABLE' ? 1 : 0);
2812
2813
cs = require('win-registry').QueryKey(require('win-registry').HKEY.LocalMachine, 'System\\CurrentControlSet\\Control\\Power', 'CsEnabled');
2814
response = "Connected Standby: " + (cs == 1 ? "ENABLED" : "DISABLED");
2815
}
2845
- catch (e)
2846
- {
2816
+ catch (e) {
2817
response = "This machine does not support Connected Standby";
2818
}
2819
}
@@ -2865,8 +2835,7 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
2835
}
2836
break;
2837
case 'errorlog':
2868
- switch(args['_'].length)
2869
- {
2838
+ switch (args['_'].length) {
2839
case 0:
2840
// All Error Logs
2841
response = JSON.stringify(require('util-agentlog').read(), null, 1);
@@ -2884,17 +2853,14 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
2853
response = JSON.stringify(_MSH(), null, 2);
2854
break;
2855
case 'dnsinfo':
2887
- if (require('os').dns == null)
2888
- {
2856
+ if (require('os').dns == null) {
2857
response = "Unknown command \"" + cmd + "\", type \"help\" for list of avaialble commands.";
2858
}
2891
- else
2892
- {
2859
+ else {
2860
response = 'DNS Servers: ';
2861
var dns = require('os').dns();
2895
- for(var i=0;i<dns.length;++i)
2896
- {
2897
- if (i > 0) { response += ', ';}
2862
+ for (var i = 0; i < dns.length; ++i) {
2863
+ if (i > 0) { response += ', '; }
2864
response += dns[i];
2865
}
2866
}
@@ -3371,19 +3337,14 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
3337
}
3338
break;
3339
case 'setclip': {
3374
- if (args['_'].length != 1)
3375
- {
3340
+ if (args['_'].length != 1) {
3341
response = 'Proper usage: setclip "sample text"';
3377
- } else
3378
- {
3379
- if (require('MeshAgent').isService)
3380
- {
3381
- if (process.platform != 'win32')
3382
- {
3342
+ } else {
3343
+ if (require('MeshAgent').isService) {
3344
+ if (process.platform != 'win32') {
3345
require('clipboard').dispatchWrite(args['_'][0]);
3346
}
3385
- else
3386
- {
3347
+ else {
3348
var tmp = "require('clipboard')(\"" + (args['_'][0]).split('"').join('\\"') + '");process.exit();';
3349
tmp = Buffer.from(tmp).toString('base64');
3350
@@ -3392,8 +3353,7 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
3353
var domain = require('user-sessions').getDomain(uid);
3354
3355
var taskoptions = { env: { _target: process.execPath, _args: '-b64exec ' + tmp, _user: domain + '\\' + user } };
3395
- for (var c1e in process.env)
3396
- {
3356
+ for (var c1e in process.env) {
3357
taskoptions.env[c1e] = process.env[c1e];
3358
}
3359
@@ -3421,8 +3381,7 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
3381
}
3382
response = 'Setting clipboard to: "' + args['_'][0] + '"';
3383
}
3424
- else
3425
- {
3384
+ else {
3385
require("clipboard")(args['_'][0]); response = 'Setting clipboard to: "' + args['_'][0] + '"';
3386
}
3387
}
@@ -3537,8 +3496,8 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
3496
thermals: require('sysinfo').thermals == null ? [] : require('sysinfo').thermals()
3497
}, null, 1), this.sessionid);
3498
}, function (e) {
3540
- sendConsoleText(e);
3541
- });
3499
+ sendConsoleText(e);
3500
+ });
3501
break;
3502
}
3503
case 'sysinfo': { // Return system information
@@ -3770,11 +3729,9 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
3729
break;
3730
}
3731
case 'wakeonlan': { // Send wake-on-lan
3773
- if ((args['_'].length != 1) || (args['_'][0].length != 12))
3774
- {
3732
+ if ((args['_'].length != 1) || (args['_'][0].length != 12)) {
3733
response = 'Proper usage: wakeonlan [mac], for example "wakeonlan 010203040506".';
3776
- } else
3777
- {
3734
+ } else {
3735
var count = sendWakeOnLanEx([args['_'][0]]);
3736
sendWakeOnLanEx([args['_'][0]]);
3737
sendWakeOnLanEx([args['_'][0]]);
@@ -3998,10 +3955,8 @@ function sendAgentMessage(msg, icon) {
3955
sendAgentMessage.messages[sendAgentMessage.nextid++] = { msg: msg, icon: icon };
3956
require('MeshAgent').SendCommand({ action: 'sessions', type: 'msg', value: sendAgentMessage.messages });
3957
}
4001
-function getOpenDescriptors()
4002
-{
4003
- switch (process.platform)
4004
- {
3958
+function getOpenDescriptors() {
3959
+ switch (process.platform) {
3960
case "freebsd":
3961
var child = require('child_process').execFile('/bin/sh', ['sh']);
3962
child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); });
@@ -4026,12 +3981,10 @@ function getOpenDescriptors()
3981
child.stdin.write('\nexit\n');
3982
child.waitExit();
3983
4029
- try
4030
- {
3984
+ try {
3985
return (JSON.parse(child.stdout.str.trim()));
3986
}
4033
- catch (e)
4034
- {
3987
+ catch (e) {
3988
return ([]);
3989
}
3990
break;
@@ -4054,12 +4007,10 @@ function getOpenDescriptors()
4007
child.stdin.write('\nexit\n');
4008
child.waitExit();
4009
4057
- try
4058
- {
4010
+ try {
4011
return (JSON.parse(child.stdout.str.trim()));
4012
}
4061
- catch (e)
4062
- {
4013
+ catch (e) {
4014
return ([]);
4015
}
4016
break;
@@ -4067,49 +4018,39 @@ function getOpenDescriptors()
4018
return ([]);
4019
}
4020
}
4070
-function closeDescriptors(libc, descriptors)
4071
-{
4021
+function closeDescriptors(libc, descriptors) {
4022
var fd = null;
4073
- while (descriptors.length > 0)
4074
- {
4023
+ while (descriptors.length > 0) {
4024
fd = descriptors.pop();
4076
- if (fd > 2)
4077
- {
4025
+ if (fd > 2) {
4026
libc.close(fd);
4027
}
4028
}
4029
}
4082
-function linux_execv(name, agentfilename, sessionid)
4083
-{
4030
+function linux_execv(name, agentfilename, sessionid) {
4031
var libs = require('monitor-info').getLibInfo('libc');
4032
var libc = null;
4033
4087
- if ((libs.length == 0 || libs.length == null) && require('MeshAgent').ARCHID == 33)
4088
- {
4034
+ if ((libs.length == 0 || libs.length == null) && require('MeshAgent').ARCHID == 33) {
4035
var child = require('child_process').execFile('/bin/sh', ['sh']);
4036
child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); });
4037
child.stderr.str = ''; child.stderr.on('data', function (c) { this.str += c.toString(); });
4038
child.stdin.write("ls /lib/libc.* | tr '\\n' '`' | awk -F'`' '{ " + ' printf "["; DEL=""; for(i=1;i<NF;++i) { printf "%s{\\"path\\":\\"%s\\"}",DEL,$i; DEL=""; } printf "]"; }\'\nexit\n');
4039
child.waitExit();
4040
4095
- try
4096
- {
4041
+ try {
4042
libs = JSON.parse(child.stdout.str.trim());
4043
}
4099
- catch(e)
4100
- {
4044
+ catch (e) {
4045
}
4046
}
4047
4104
- while (libs.length > 0)
4105
- {
4106
- try
4107
- {
4048
+ while (libs.length > 0) {
4049
+ try {
4050
libc = require('_GenericMarshal').CreateNativeProxy(libs.pop().path);
4051
break;
4052
}
4111
- catch (e)
4112
- {
4053
+ catch (e) {
4054
libc = null;
4055
continue;
4056
}
@@ -4228,16 +4169,13 @@ function bsd_execv(name, agentfilename, sessionid) {
4169
sendAgentMessage('Self Update failed because execv() failed', 3);
4170
}
4171
4231
-function windows_execve(name, agentfilename, sessionid)
4232
-{
4172
+function windows_execve(name, agentfilename, sessionid) {
4173
var libc;
4234
- try
4235
- {
4174
+ try {
4175
libc = require('_GenericMarshal').CreateNativeProxy('msvcrt.dll');
4176
libc.CreateMethod('_wexecve');
4177
}
4239
- catch (xx)
4240
- {
4178
+ catch (xx) {
4179
sendConsoleText('Self Update failed because msvcrt.dll is missing', sessionid);
4180
sendAgentMessage('Self Update failed because msvcrt.dll is missing', 3);
4181
return;
package.json
+1
-1
@@ -1,6 +1,6 @@
1
{
2
"name": "meshcentral",
3
- "version": "0.8.18",
3
+ "version": "0.8.19",
4
"keywords": [
5
"Remote Device Management",
6
"Remote Device Monitoring",
translate/translate.json
+2903
-2894
@@ -17,8 +17,8 @@
17
"zh-chs": " + CIRA",
18
"zh-cht": " + CIRA",
19
"xloc": [
20
- "default.handlebars->31->1572",
21
- "default.handlebars->31->1574"
20
+ "default.handlebars->31->1575",
21
+ "default.handlebars->31->1577"
22
]
23
},
24
{
@@ -204,7 +204,7 @@
204
"zh-chs": " 可以使用密码提示,但不建议使用。",
205
"zh-cht": " 可以使用密碼提示,但不建議使用。",
206
"xloc": [
207
- "default.handlebars->31->1475"
207
+ "default.handlebars->31->1478"
208
]
209
},
210
{
@@ -224,8 +224,8 @@
224
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226
"xloc": [
227
- "default.handlebars->31->1649",
228
- "default.handlebars->31->2137"
227
+ "default.handlebars->31->1652",
228
+ "default.handlebars->31->2140"
229
]
230
},
231
{
@@ -279,7 +279,7 @@
279
"zh-chs": " 节点",
280
"zh-cht": " 節點",
281
"xloc": [
282
- "default-mobile.handlebars->11->240"
282
+ "default-mobile.handlebars->11->241"
283
]
284
},
285
{
@@ -299,7 +299,7 @@
299
"zh-chs": " 节点",
300
"zh-cht": " 節點",
301
"xloc": [
302
- "default-mobile.handlebars->11->241"
302
+ "default-mobile.handlebars->11->242"
303
]
304
},
305
{
@@ -319,7 +319,7 @@
319
"zh-chs": " TLS。",
320
"zh-cht": " TLS。",
321
"xloc": [
322
- "default.handlebars->31->188"
322
+ "default.handlebars->31->191"
323
]
324
},
325
{
@@ -339,7 +339,7 @@
339
"zh-chs": " 没有TLS。",
340
"zh-cht": " 沒有TLS。",
341
"xloc": [
342
- "default.handlebars->31->189"
342
+ "default.handlebars->31->192"
343
]
344
},
345
{
@@ -394,7 +394,7 @@
394
"zh-chs": "(可选的)",
395
"zh-cht": "(可選的)",
396
"xloc": [
397
- "default.handlebars->31->391"
397
+ "default.handlebars->31->394"
398
]
399
},
400
{
@@ -430,8 +430,8 @@
430
"zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。",
431
"zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
432
"xloc": [
433
- "default.handlebars->31->1618",
434
- "default.handlebars->31->357"
433
+ "default.handlebars->31->1621",
434
+ "default.handlebars->31->360"
435
]
436
},
437
{
@@ -451,7 +451,7 @@
451
"zh-chs": "*对于BSD,首先运行“ pkg install wget sudo bash ”。",
452
"zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
453
"xloc": [
454
- "default.handlebars->31->431"
454
+ "default.handlebars->31->434"
455
]
456
},
457
{
@@ -505,8 +505,8 @@
505
"zh-chs": ",",
506
"zh-cht": ",",
507
"xloc": [
508
- "default-mobile.handlebars->11->598",
509
- "default.handlebars->31->1720"
508
+ "default-mobile.handlebars->11->599",
509
+ "default.handlebars->31->1723"
510
]
511
},
512
{
@@ -526,8 +526,8 @@
526
"zh-chs": ",仅限于Intel®AMT",
527
"zh-cht": ",只適用於Intel®AMT",
528
"xloc": [
529
- "default-mobile.handlebars->11->178",
530
- "default.handlebars->31->251"
529
+ "default-mobile.handlebars->11->179",
530
+ "default.handlebars->31->254"
531
]
532
},
533
{
@@ -547,8 +547,8 @@
547
"zh-chs": ",MQTT在线",
548
"zh-cht": ",MQTT在線",
549
"xloc": [
550
- "default-mobile.handlebars->11->515",
551
- "default.handlebars->31->1185"
550
+ "default-mobile.handlebars->11->516",
551
+ "default.handlebars->31->1188"
552
]
553
},
554
{
@@ -557,7 +557,7 @@
557
"nl": ", Geen toestemming",
558
"de": ", keine Zustimmung",
559
"xloc": [
560
- "default.handlebars->31->770"
560
+ "default.handlebars->31->773"
561
]
562
},
563
{
@@ -577,7 +577,7 @@
577
"zh-chs": ",提示同意",
578
"zh-cht": ",提示同意",
579
"xloc": [
580
- "default.handlebars->31->771"
580
+ "default.handlebars->31->774"
581
]
582
},
583
{
@@ -597,7 +597,7 @@
597
"zh-chs": ",软体KVM",
598
"zh-cht": ",軟體KVM",
599
"xloc": [
600
- "default.handlebars->31->967",
600
+ "default.handlebars->31->970",
601
"desktop.handlebars->3->12",
602
"sharing.handlebars->11->12"
603
]
@@ -607,7 +607,7 @@
607
"fr": ", barre d'outils",
608
"nl": ", Werkbalk",
609
"xloc": [
610
- "default.handlebars->31->772"
610
+ "default.handlebars->31->775"
611
]
612
},
613
{
@@ -616,7 +616,7 @@
616
"fr": ", Visualisation seulement",
617
"de": ", nur ansehen",
618
"xloc": [
619
- "default.handlebars->31->769"
619
+ "default.handlebars->31->772"
620
]
621
},
622
{
@@ -636,12 +636,12 @@
636
"zh-chs": ",WebRTC",
637
"zh-cht": ",WebRTC",
638
"xloc": [
639
- "default-mobile.handlebars->11->353",
640
- "default-mobile.handlebars->11->385",
641
- "default-mobile.handlebars->11->389",
642
- "default.handlebars->31->1036",
643
- "default.handlebars->31->1048",
644
- "default.handlebars->31->974",
639
+ "default-mobile.handlebars->11->354",
640
+ "default-mobile.handlebars->11->386",
641
+ "default-mobile.handlebars->11->390",
642
+ "default.handlebars->31->1039",
643
+ "default.handlebars->31->1051",
644
+ "default.handlebars->31->977",
645
"desktop.handlebars->3->19",
646
"sharing.handlebars->11->19",
647
"sharing.handlebars->11->27",
@@ -768,7 +768,7 @@
768
"zh-chs": ",{0}观看",
769
"zh-cht": ",{0}觀看",
770
"xloc": [
771
- "default.handlebars->31->968",
771
+ "default.handlebars->31->971",
772
"desktop.handlebars->3->13",
773
"sharing.handlebars->11->13"
774
]
@@ -833,11 +833,11 @@
833
"zh-chs": "...",
834
"zh-cht": "...",
835
"xloc": [
836
- "default-mobile.handlebars->11->131",
837
- "default-mobile.handlebars->11->391",
838
- "default.handlebars->31->1054",
839
- "default.handlebars->31->1772",
840
- "default.handlebars->31->2306",
836
+ "default-mobile.handlebars->11->132",
837
+ "default-mobile.handlebars->11->392",
838
+ "default.handlebars->31->1057",
839
+ "default.handlebars->31->1775",
840
+ "default.handlebars->31->2309",
841
"sharing.handlebars->11->50"
842
]
843
},
@@ -895,7 +895,7 @@
895
"zh-chs": "1个活跃时段",
896
"zh-cht": "1個活躍時段",
897
"xloc": [
898
- "default.handlebars->31->2210"
898
+ "default.handlebars->31->2213"
899
]
900
},
901
{
@@ -915,9 +915,9 @@
915
"zh-chs": "1个字节",
916
"zh-cht": "1個位元組",
917
"xloc": [
918
- "default-mobile.handlebars->11->141",
919
- "default-mobile.handlebars->11->641",
920
- "default.handlebars->31->1796",
918
+ "default-mobile.handlebars->11->142",
919
+ "default-mobile.handlebars->11->642",
920
+ "default.handlebars->31->1799",
921
"download.handlebars->3->1",
922
"download2.handlebars->5->1",
923
"sharing.handlebars->11->96"
@@ -940,7 +940,7 @@
940
"zh-chs": "1条连接",
941
"zh-cht": "1位聯絡文",
942
"xloc": [
943
- "default.handlebars->31->970",
943
+ "default.handlebars->31->973",
944
"desktop.handlebars->3->15",
945
"sharing.handlebars->11->15"
946
]
@@ -962,9 +962,9 @@
962
"zh-chs": "1天",
963
"zh-cht": "1天",
964
"xloc": [
965
- "default.handlebars->31->196",
966
- "default.handlebars->31->382",
967
- "default.handlebars->31->396"
965
+ "default.handlebars->31->199",
966
+ "default.handlebars->31->385",
967
+ "default.handlebars->31->399"
968
]
969
},
970
{
@@ -984,7 +984,7 @@
984
"zh-chs": "1组",
985
"zh-cht": "1群",
986
"xloc": [
987
- "default.handlebars->31->2171"
987
+ "default.handlebars->31->2174"
988
]
989
},
990
{
@@ -1004,9 +1004,9 @@
1004
"zh-chs": "1小时",
1005
"zh-cht": "1小時",
1006
"xloc": [
1007
- "default.handlebars->31->194",
1008
- "default.handlebars->31->380",
1009
- "default.handlebars->31->394"
1007
+ "default.handlebars->31->197",
1008
+ "default.handlebars->31->383",
1009
+ "default.handlebars->31->397"
1010
]
1011
},
1012
{
@@ -1026,8 +1026,8 @@
1026
"zh-chs": "1分钟",
1027
"zh-cht": "1分鐘",
1028
"xloc": [
1029
- "default.handlebars->31->1441",
1030
- "default.handlebars->31->832"
1029
+ "default.handlebars->31->1444",
1030
+ "default.handlebars->31->835"
1031
]
1032
},
1033
{
@@ -1067,9 +1067,9 @@
1067
"zh-chs": "1个月",
1068
"zh-cht": "1個月",
1069
"xloc": [
1070
- "default.handlebars->31->198",
1071
- "default.handlebars->31->384",
1072
- "default.handlebars->31->398"
1070
+ "default.handlebars->31->201",
1071
+ "default.handlebars->31->387",
1072
+ "default.handlebars->31->401"
1073
]
1074
},
1075
{
@@ -1089,7 +1089,7 @@
1089
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1090
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1091
"xloc": [
1092
- "default.handlebars->31->1961"
1092
+ "default.handlebars->31->1964"
1093
]
1094
},
1095
{
@@ -1109,15 +1109,15 @@
1109
"zh-chs": "1个节点",
1110
"zh-cht": "1個節點",
1111
"xloc": [
1112
- "default.handlebars->31->455"
1112
+ "default.handlebars->31->458"
1113
]
1114
},
1115
{
1116
"en": "1 second",
1117
"nl": "1 seconde",
1118
"xloc": [
1119
- "default-mobile.handlebars->11->307",
1120
- "default.handlebars->31->860"
1119
+ "default-mobile.handlebars->11->308",
1120
+ "default.handlebars->31->863"
1121
]
1122
},
1123
{
@@ -1157,19 +1157,19 @@
1157
"zh-chs": "1节",
1158
"zh-cht": "1節",
1159
"xloc": [
1160
- "default-mobile.handlebars->11->194",
1161
- "default-mobile.handlebars->11->197",
1162
- "default-mobile.handlebars->11->200",
1163
- "default-mobile.handlebars->11->203",
1164
- "default-mobile.handlebars->11->206",
1165
- "default-mobile.handlebars->11->209",
1166
- "default.handlebars->31->1965",
1167
- "default.handlebars->31->301",
1160
+ "default-mobile.handlebars->11->195",
1161
+ "default-mobile.handlebars->11->198",
1162
+ "default-mobile.handlebars->11->201",
1163
+ "default-mobile.handlebars->11->204",
1164
+ "default-mobile.handlebars->11->207",
1165
+ "default-mobile.handlebars->11->210",
1166
+ "default.handlebars->31->1968",
1167
"default.handlebars->31->304",
1168
"default.handlebars->31->307",
1169
"default.handlebars->31->310",
1170
"default.handlebars->31->313",
1172
- "default.handlebars->31->316"
1171
+ "default.handlebars->31->316",
1172
+ "default.handlebars->31->319"
1173
]
1174
},
1175
{
@@ -1189,9 +1189,9 @@
1189
"zh-chs": "1周",
1190
"zh-cht": "1週",
1191
"xloc": [
1192
- "default.handlebars->31->197",
1193
- "default.handlebars->31->383",
1194
- "default.handlebars->31->397"
1192
+ "default.handlebars->31->200",
1193
+ "default.handlebars->31->386",
1194
+ "default.handlebars->31->400"
1195
]
1196
},
1197
{
@@ -1295,16 +1295,16 @@
1295
"zh-chs": "10分钟",
1296
"zh-cht": "10分鐘",
1297
"xloc": [
1298
- "default.handlebars->31->1443",
1299
- "default.handlebars->31->834"
1298
+ "default.handlebars->31->1446",
1299
+ "default.handlebars->31->837"
1300
]
1301
},
1302
{
1303
"en": "10 seconds",
1304
"nl": "10 seconden",
1305
"xloc": [
1306
- "default-mobile.handlebars->11->309",
1307
- "default.handlebars->31->862"
1306
+ "default-mobile.handlebars->11->310",
1307
+ "default.handlebars->31->865"
1308
]
1309
},
1310
{
@@ -1389,8 +1389,8 @@
1389
"zh-chs": "12小时",
1390
"zh-cht": "12小時",
1391
"xloc": [
1392
- "default.handlebars->31->1451",
1393
- "default.handlebars->31->842"
1392
+ "default.handlebars->31->1454",
1393
+ "default.handlebars->31->845"
1394
]
1395
},
1396
{
@@ -1433,8 +1433,8 @@
1433
"zh-chs": "15分钟",
1434
"zh-cht": "15分鐘",
1435
"xloc": [
1436
- "default.handlebars->31->1444",
1437
- "default.handlebars->31->835"
1436
+ "default.handlebars->31->1447",
1437
+ "default.handlebars->31->838"
1438
]
1439
},
1440
{
@@ -1454,8 +1454,8 @@
1454
"zh-chs": "16小时",
1455
"zh-cht": "16小時",
1456
"xloc": [
1457
- "default.handlebars->31->1452",
1458
- "default.handlebars->31->843"
1457
+ "default.handlebars->31->1455",
1458
+ "default.handlebars->31->846"
1459
]
1460
},
1461
{
@@ -1475,8 +1475,8 @@
1475
"zh-chs": "2天",
1476
"zh-cht": "2天",
1477
"xloc": [
1478
- "default.handlebars->31->1454",
1479
- "default.handlebars->31->845"
1478
+ "default.handlebars->31->1457",
1479
+ "default.handlebars->31->848"
1480
]
1481
},
1482
{
@@ -1496,8 +1496,8 @@
1496
"zh-chs": "2小时",
1497
"zh-cht": "2小時",
1498
"xloc": [
1499
- "default.handlebars->31->1448",
1500
- "default.handlebars->31->839"
1499
+ "default.handlebars->31->1451",
1500
+ "default.handlebars->31->842"
1501
]
1502
},
1503
{
@@ -1517,7 +1517,7 @@
1517
"zh-chs": "两步登录激活失败。",
1518
"zh-cht": "兩步登入啟用失敗。",
1519
"xloc": [
1520
- "default.handlebars->31->143"
1520
+ "default.handlebars->31->146"
1521
]
1522
},
1523
{
@@ -1537,7 +1537,7 @@
1537
"zh-chs": "两步登录激活删除失败。",
1538
"zh-cht": "兩步登入啟用刪除失敗。",
1539
"xloc": [
1540
- "default.handlebars->31->148"
1540
+ "default.handlebars->31->151"
1541
]
1542
},
1543
{
@@ -1601,8 +1601,8 @@
1601
"zh-chs": "24小时",
1602
"zh-cht": "24小時",
1603
"xloc": [
1604
- "default.handlebars->31->1453",
1605
- "default.handlebars->31->844"
1604
+ "default.handlebars->31->1456",
1605
+ "default.handlebars->31->847"
1606
]
1607
},
1608
{
@@ -1665,7 +1665,7 @@
1665
"zh-chs": "2FA备份代码已清除",
1666
"zh-cht": "2FA備份代碼已清除",
1667
"xloc": [
1668
- "default.handlebars->31->1907"
1668
+ "default.handlebars->31->1910"
1669
]
1670
},
1671
{
@@ -1685,8 +1685,8 @@
1685
"zh-chs": "启用第二因素身份验证",
1686
"zh-cht": "啟用第二因素身份驗證",
1687
"xloc": [
1688
- "default.handlebars->31->1978",
1689
- "default.handlebars->31->2193"
1688
+ "default.handlebars->31->1981",
1689
+ "default.handlebars->31->2196"
1690
]
1691
},
1692
{
@@ -1722,7 +1722,7 @@
1722
"pt": "3",
1723
"ru": "3",
1724
"xloc": [
1725
- "default-mobile.handlebars->11->417"
1725
+ "default-mobile.handlebars->11->418"
1726
]
1727
},
1728
{
@@ -1805,8 +1805,8 @@
1805
"zh-chs": "30分钟",
1806
"zh-cht": "30分鐘",
1807
"xloc": [
1808
- "default.handlebars->31->1445",
1809
- "default.handlebars->31->836"
1808
+ "default.handlebars->31->1448",
1809
+ "default.handlebars->31->839"
1810
]
1811
},
1812
{
@@ -1826,8 +1826,8 @@
1826
"zh-chs": "MeshAgent的32位版本",
1827
"zh-cht": "MeshAgent的32位版本",
1828
"xloc": [
1829
- "default.handlebars->31->421",
1830
- "default.handlebars->31->441"
1829
+ "default.handlebars->31->424",
1830
+ "default.handlebars->31->444"
1831
]
1832
},
1833
{
@@ -1870,8 +1870,8 @@
1870
"zh-chs": "4天",
1871
"zh-cht": "4天",
1872
"xloc": [
1873
- "default.handlebars->31->1455",
1874
- "default.handlebars->31->846"
1873
+ "default.handlebars->31->1458",
1874
+ "default.handlebars->31->849"
1875
]
1876
},
1877
{
@@ -1891,8 +1891,8 @@
1891
"zh-chs": "4个小时",
1892
"zh-cht": "4個小時",
1893
"xloc": [
1894
- "default.handlebars->31->1449",
1895
- "default.handlebars->31->840"
1894
+ "default.handlebars->31->1452",
1895
+ "default.handlebars->31->843"
1896
]
1897
},
1898
{
@@ -1975,8 +1975,8 @@
1975
"zh-chs": "45分钟",
1976
"zh-cht": "45分鐘",
1977
"xloc": [
1978
- "default.handlebars->31->1446",
1979
- "default.handlebars->31->837"
1978
+ "default.handlebars->31->1449",
1979
+ "default.handlebars->31->840"
1980
]
1981
},
1982
{
@@ -2016,16 +2016,16 @@
2016
"zh-chs": "5分钟",
2017
"zh-cht": "5分鐘",
2018
"xloc": [
2019
- "default.handlebars->31->1442",
2020
- "default.handlebars->31->833"
2019
+ "default.handlebars->31->1445",
2020
+ "default.handlebars->31->836"
2021
]
2022
},
2023
{
2024
"en": "5 seconds",
2025
"nl": "5 seconden",
2026
"xloc": [
2027
- "default-mobile.handlebars->11->308",
2028
- "default.handlebars->31->861"
2027
+ "default-mobile.handlebars->11->309",
2028
+ "default.handlebars->31->864"
2029
]
2030
},
2031
{
@@ -2152,8 +2152,8 @@
2152
"zh-chs": "60分钟",
2153
"zh-cht": "60分鐘",
2154
"xloc": [
2155
- "default.handlebars->31->1447",
2156
- "default.handlebars->31->838"
2155
+ "default.handlebars->31->1450",
2156
+ "default.handlebars->31->841"
2157
]
2158
},
2159
{
@@ -2196,7 +2196,7 @@
2196
"zh-chs": "64位版本的macOS Mesh Agent",
2197
"zh-cht": "64位版本的macOS Mesh Agent",
2198
"xloc": [
2199
- "default.handlebars->31->435"
2199
+ "default.handlebars->31->438"
2200
]
2201
},
2202
{
@@ -2216,8 +2216,8 @@
2216
"zh-chs": "MeshAgent的64位版本",
2217
"zh-cht": "MeshAgent的64位版本",
2218
"xloc": [
2219
- "default.handlebars->31->425",
2220
- "default.handlebars->31->444"
2219
+ "default.handlebars->31->428",
2220
+ "default.handlebars->31->447"
2221
]
2222
},
2223
{
@@ -2274,7 +2274,7 @@
2274
"zh-chs": "7天电源状态",
2275
"zh-cht": "7天電源狀態",
2276
"xloc": [
2277
- "default.handlebars->31->895"
2277
+ "default.handlebars->31->898"
2278
]
2279
},
2280
{
@@ -2338,10 +2338,10 @@
2338
"zh-chs": "8小時",
2339
"zh-cht": "8小時",
2340
"xloc": [
2341
- "default.handlebars->31->1450",
2342
- "default.handlebars->31->381",
2343
- "default.handlebars->31->395",
2344
- "default.handlebars->31->841"
2341
+ "default.handlebars->31->1453",
2342
+ "default.handlebars->31->384",
2343
+ "default.handlebars->31->398",
2344
+ "default.handlebars->31->844"
2345
]
2346
},
2347
{
@@ -2414,7 +2414,7 @@
2414
"nl": "</div><div><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://play.google.com/store/apps/details?id=com.meshcentral.agent2\\\"><img style=margin-top:20px;margin-left:5px;cursor:pointer width=40 height=40 src=\\\"images/android-40.png\\\" srcset=\\\"images/android-80.png 2x\\\" /></a></div></div>",
2415
"fr": "</div><div><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://play.google.com/store/apps/details?id=com.meshcentral.agent2\\\"><img style=margin-top:20px;margin-left:5px;cursor:pointer width=40 height=40 src=\\\"images/android-40.png\\\" srcset=\\\"images/android-80.png 2x\\\" /></a></div></div>",
2416
"xloc": [
2417
- "default.handlebars->31->438"
2417
+ "default.handlebars->31->441"
2418
]
2419
},
2420
{
@@ -2454,7 +2454,7 @@
2454
"zh-chs": "<a href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\">硬件密钥</a>用作辅助登录身份验证。",
2455
"zh-cht": "<a href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\">硬件密鑰</a>用作輔助登入身份驗證。",
2456
"xloc": [
2457
- "default.handlebars->31->157"
2457
+ "default.handlebars->31->160"
2458
]
2459
},
2460
{
@@ -2474,7 +2474,7 @@
2474
"zh-chs": "<b style=color:green>删除了两步登录激活</ b>。您可以随时重新激活此功能。",
2475
"zh-cht": "<b style = color:green>刪除了兩步登入啟用</ b>。你可以隨時重新啟用此功能。",
2476
"xloc": [
2477
- "default-mobile.handlebars->11->64"
2477
+ "default-mobile.handlebars->11->65"
2478
]
2479
},
2480
{
@@ -2494,7 +2494,7 @@
2494
"zh-chs": "<b style=color:green>两步登录激活成功</ b>。您现在需要一个有效的保安编码才能再次登录。",
2495
"zh-cht": "<b style = color:green>兩步登入啟用成功</ b>。你現在需要一個有效的保安編碼才能再次登入。",
2496
"xloc": [
2497
- "default-mobile.handlebars->11->61"
2497
+ "default-mobile.handlebars->11->62"
2498
]
2499
},
2500
{
@@ -2514,7 +2514,7 @@
2514
"zh-chs": "<b style=color:red>两步登录激活失败</ b>。从应用程序中清除机密,然后重试。您只有几分钟的时间来输入正确的代码。",
2515
"zh-cht": "<b style = color:red>兩步登入啟動失敗</ b>。從應用程序中清除秘密,然後重試。你只有幾分鐘的時間來輸入正確的代碼。",
2516
"xloc": [
2517
- "default-mobile.handlebars->11->62"
2517
+ "default-mobile.handlebars->11->63"
2518
]
2519
},
2520
{
@@ -2534,7 +2534,7 @@
2534
"zh-chs": "<b style=color:red>两步登录激活删除失败</ b>。再试一次。",
2535
"zh-cht": "<b style = color:red>兩步登入啟動刪除失敗</ b>。再試一次。",
2536
"xloc": [
2537
- "default-mobile.handlebars->11->65"
2537
+ "default-mobile.handlebars->11->66"
2538
]
2539
},
2540
{
@@ -2574,9 +2574,9 @@
2574
"zh-chs": "ACM",
2575
"zh-cht": "ACM",
2576
"xloc": [
2577
- "default-mobile.handlebars->11->267",
2578
- "default.handlebars->31->1588",
2579
- "default.handlebars->31->640"
2577
+ "default-mobile.handlebars->11->268",
2578
+ "default.handlebars->31->1591",
2579
+ "default.handlebars->31->643"
2580
]
2581
},
2582
{
@@ -2630,8 +2630,8 @@
2630
"zh-chs": "AMT",
2631
"zh-cht": "AMT",
2632
"xloc": [
2633
- "default.handlebars->31->288",
2634
- "default.handlebars->31->483"
2633
+ "default.handlebars->31->291",
2634
+ "default.handlebars->31->486"
2635
]
2636
},
2637
{
@@ -2744,10 +2744,10 @@
2744
"nl": "Anti-virus",
2745
"fr": "Antivirus",
2746
"xloc": [
2747
- "default-mobile.handlebars->11->427",
2748
- "default-mobile.handlebars->11->429",
2749
- "default.handlebars->31->659",
2750
- "default.handlebars->31->661"
2747
+ "default-mobile.handlebars->11->428",
2748
+ "default-mobile.handlebars->11->430",
2749
+ "default.handlebars->31->662",
2750
+ "default.handlebars->31->664"
2751
]
2752
},
2753
{
@@ -2767,8 +2767,8 @@
2767
"zh-chs": "拒绝访问",
2768
"zh-cht": "拒絕存取",
2769
"xloc": [
2770
- "default-mobile.handlebars->11->516",
2771
- "default.handlebars->31->1186"
2770
+ "default-mobile.handlebars->11->517",
2771
+ "default.handlebars->31->1189"
2772
]
2773
},
2774
{
@@ -2816,7 +2816,7 @@
2816
"zh-chs": "访问服务器档案",
2817
"zh-cht": "存取伺服器檔案",
2818
"xloc": [
2819
- "default.handlebars->31->2143"
2819
+ "default.handlebars->31->2146"
2820
]
2821
},
2822
{
@@ -2900,16 +2900,16 @@
2900
"zh-chs": "账户安全",
2901
"zh-cht": "帳號安全",
2902
"xloc": [
2903
- "default-mobile.handlebars->11->116",
2904
- "default-mobile.handlebars->11->118",
2905
- "default-mobile.handlebars->11->242",
2906
- "default-mobile.handlebars->11->244",
2903
+ "default-mobile.handlebars->11->117",
2904
+ "default-mobile.handlebars->11->119",
2905
+ "default-mobile.handlebars->11->243",
2906
+ "default-mobile.handlebars->11->245",
2907
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
2908
- "default.handlebars->31->1484",
2909
- "default.handlebars->31->1486",
2910
- "default.handlebars->31->2422",
2911
- "default.handlebars->31->609",
2912
- "default.handlebars->31->611"
2908
+ "default.handlebars->31->1487",
2909
+ "default.handlebars->31->1489",
2910
+ "default.handlebars->31->2425",
2911
+ "default.handlebars->31->612",
2912
+ "default.handlebars->31->614"
2913
]
2914
},
2915
{
@@ -2918,8 +2918,8 @@
2918
"fr": "Paramètres du compte",
2919
"de": "Konto Einstellungen",
2920
"xloc": [
2921
- "default-mobile.handlebars->11->609",
2922
- "default.handlebars->31->2314"
2921
+ "default-mobile.handlebars->11->610",
2922
+ "default.handlebars->31->2317"
2923
]
2924
},
2925
{
@@ -2980,7 +2980,7 @@
2980
"zh-chs": "帐户已更改:{0}",
2981
"zh-cht": "帳戶已更改:{0}",
2982
"xloc": [
2983
- "default.handlebars->31->1880"
2983
+ "default.handlebars->31->1883"
2984
]
2985
},
2986
{
@@ -3000,7 +3000,7 @@
3000
"zh-chs": "创建帐户,电子邮件为{0}",
3001
"zh-cht": "創建帳戶,電子郵件為{0}",
3002
"xloc": [
3003
- "default.handlebars->31->1879"
3003
+ "default.handlebars->31->1882"
3004
]
3005
},
3006
{
@@ -3020,7 +3020,7 @@
3020
"zh-chs": "创建帐户,用户名是{0}",
3021
"zh-cht": "帳戶已創建,用戶名是{0}",
3022
"xloc": [
3023
- "default.handlebars->31->1878"
3023
+ "default.handlebars->31->1881"
3024
]
3025
},
3026
{
@@ -3040,8 +3040,8 @@
3040
"zh-chs": "帐户已被锁定",
3041
"zh-cht": "帳戶已被鎖定",
3042
"xloc": [
3043
- "default.handlebars->31->1980",
3044
- "default.handlebars->31->2140"
3043
+ "default.handlebars->31->1983",
3044
+ "default.handlebars->31->2143"
3045
]
3046
},
3047
{
@@ -3061,8 +3061,8 @@
3061
"zh-chs": "达到帐户限制。",
3062
"zh-cht": "達到帳戶限制。",
3063
"xloc": [
3064
- "default-mobile.handlebars->11->621",
3065
- "default.handlebars->31->2326",
3064
+ "default-mobile.handlebars->11->622",
3065
+ "default.handlebars->31->2329",
3066
"login-mobile.handlebars->5->6",
3067
"login.handlebars->5->6",
3068
"login2.handlebars->7->8"
@@ -3107,7 +3107,7 @@
3107
"zh-chs": "帐号登录",
3108
"zh-cht": "帳號登錄",
3109
"xloc": [
3110
- "default.handlebars->31->1815"
3110
+ "default.handlebars->31->1818"
3111
]
3112
},
3113
{
@@ -3116,7 +3116,7 @@
3116
"fr": "Connexion de {0}, {1}, {2}",
3117
"de": "Konto Login von {0}, {1}, {2}",
3118
"xloc": [
3119
- "default.handlebars->31->1921"
3119
+ "default.handlebars->31->1924"
3120
]
3121
},
3122
{
@@ -3136,7 +3136,7 @@
3136
"zh-chs": "帐户登出",
3137
"zh-cht": "帳戶登出",
3138
"xloc": [
3139
- "default.handlebars->31->1816"
3139
+ "default.handlebars->31->1819"
3140
]
3141
},
3142
{
@@ -3178,7 +3178,7 @@
3178
"zh-chs": "帐户密码已更改:{0}",
3179
"zh-cht": "帳戶密碼已更改:{0}",
3180
"xloc": [
3181
- "default.handlebars->31->1888"
3181
+ "default.handlebars->31->1891"
3182
]
3183
},
3184
{
@@ -3198,7 +3198,7 @@
3198
"zh-chs": "帐户已删除",
3199
"zh-cht": "帳戶已刪除",
3200
"xloc": [
3201
- "default.handlebars->31->1877"
3201
+ "default.handlebars->31->1880"
3202
]
3203
},
3204
{
@@ -3238,8 +3238,8 @@
3238
"zh-chs": "指令",
3239
"zh-cht": "指令",
3240
"xloc": [
3241
- "default-mobile.handlebars->11->522",
3242
- "default.handlebars->31->1192",
3241
+ "default-mobile.handlebars->11->523",
3242
+ "default.handlebars->31->1195",
3243
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
3244
]
3245
},
@@ -3260,8 +3260,8 @@
3260
"zh-chs": "动作档案",
3261
"zh-cht": "動作檔案",
3262
"xloc": [
3263
- "default.handlebars->31->941",
3264
- "default.handlebars->31->943"
3263
+ "default.handlebars->31->944",
3264
+ "default.handlebars->31->946"
3265
]
3266
},
3267
{
@@ -3281,11 +3281,11 @@
3281
"zh-chs": "动作",
3282
"zh-cht": "動作",
3283
"xloc": [
3284
- "default-mobile.handlebars->11->290",
3284
+ "default-mobile.handlebars->11->291",
3285
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
3286
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
3287
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
3288
- "default.handlebars->31->702",
3288
+ "default.handlebars->31->705",
3289
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
3290
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
3291
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -3308,7 +3308,7 @@
3308
"zh-chs": "使用FAT格式的USB密钥在管理控制模式(ACM)中激活英特尔®AMT。将setup.bin放在其上,然后使用此键引导一台或多台计算机。",
3309
"zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾®AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
3310
"xloc": [
3311
- "default.handlebars->31->351"
3311
+ "default.handlebars->31->354"
3312
]
3313
},
3314
{
@@ -3368,7 +3368,7 @@
3368
"zh-chs": "如果ACM失败,则激活到CCM",
3369
"zh-cht": "如果ACM失敗,則激活到CCM",
3370
"xloc": [
3371
- "default.handlebars->31->1609"
3371
+ "default.handlebars->31->1612"
3372
]
3373
},
3374
{
@@ -3388,12 +3388,12 @@
3388
"zh-chs": "已激活",
3389
"zh-cht": "已啟動",
3390
"xloc": [
3391
- "default-mobile.handlebars->11->262",
3392
- "default-mobile.handlebars->11->264",
3393
- "default-mobile.handlebars->11->478",
3394
- "default.handlebars->31->1147",
3395
- "default.handlebars->31->633",
3396
- "default.handlebars->31->635"
3391
+ "default-mobile.handlebars->11->263",
3392
+ "default-mobile.handlebars->11->265",
3393
+ "default-mobile.handlebars->11->479",
3394
+ "default.handlebars->31->1150",
3395
+ "default.handlebars->31->636",
3396
+ "default.handlebars->31->638"
3397
]
3398
},
3399
{
@@ -3413,7 +3413,7 @@
3413
"zh-chs": "激活",
3414
"zh-cht": "啟動",
3415
"xloc": [
3416
- "default.handlebars->31->227"
3416
+ "default.handlebars->31->230"
3417
]
3418
},
3419
{
@@ -3433,13 +3433,13 @@
3433
"zh-chs": "主动设备共享",
3434
"zh-cht": "主動設備共享",
3435
"xloc": [
3436
- "default.handlebars->31->758"
3436
+ "default.handlebars->31->761"
3437
]
3438
},
3439
{
3440
"en": "Active Login Tokens",
3441
"xloc": [
3442
- "default.handlebars->31->1504"
3442
+ "default.handlebars->31->1507"
3443
]
3444
},
3445
{
@@ -3465,8 +3465,8 @@
3465
"nl": "Toevoegen",
3466
"de": "hinzufügen",
3467
"xloc": [
3468
- "default-mobile.handlebars->11->380",
3469
- "default.handlebars->31->1005"
3468
+ "default-mobile.handlebars->11->381",
3469
+ "default.handlebars->31->1008"
3470
]
3471
},
3472
{
@@ -3486,8 +3486,8 @@
3486
"zh-chs": "添加代理",
3487
"zh-cht": "新增代理",
3488
"xloc": [
3489
- "default.handlebars->31->1584",
3490
- "default.handlebars->31->334"
3489
+ "default.handlebars->31->1587",
3490
+ "default.handlebars->31->337"
3491
]
3492
},
3493
{
@@ -3524,8 +3524,8 @@
3524
"zh-chs": "添加设备",
3525
"zh-cht": "新增裝置",
3526
"xloc": [
3527
- "default.handlebars->31->2117",
3528
- "default.handlebars->31->2247"
3527
+ "default.handlebars->31->2120",
3528
+ "default.handlebars->31->2250"
3529
]
3530
},
3531
{
@@ -3545,7 +3545,7 @@
3545
"zh-chs": "添加设备日志",
3546
"zh-cht": "新增裝置日誌",
3547
"xloc": [
3548
- "default.handlebars->31->814"
3548
+ "default.handlebars->31->817"
3549
]
3550
},
3551
{
@@ -3565,10 +3565,10 @@
3565
"zh-chs": "添加设备组",
3566
"zh-cht": "新增裝置群",
3567
"xloc": [
3568
- "default.handlebars->31->1684",
3569
- "default.handlebars->31->2111",
3570
- "default.handlebars->31->2235",
3571
- "default.handlebars->31->268"
3568
+ "default.handlebars->31->1687",
3569
+ "default.handlebars->31->2114",
3570
+ "default.handlebars->31->2238",
3571
+ "default.handlebars->31->271"
3572
]
3573
},
3574
{
@@ -3588,7 +3588,7 @@
3588
"zh-chs": "添加设备组权限",
3589
"zh-cht": "新增裝置群權限",
3590
"xloc": [
3591
- "default.handlebars->31->1681"
3591
+ "default.handlebars->31->1684"
3592
]
3593
},
3594
{
@@ -3608,8 +3608,8 @@
3608
"zh-chs": "添加设备权限",
3609
"zh-cht": "新增裝置權限",
3610
"xloc": [
3611
- "default.handlebars->31->1686",
3612
- "default.handlebars->31->1688"
3611
+ "default.handlebars->31->1689",
3612
+ "default.handlebars->31->1691"
3613
]
3614
},
3615
{
@@ -3646,7 +3646,7 @@
3646
"zh-chs": "添加英特尔®AMT设备",
3647
"zh-cht": "新增Intel® AMT裝置",
3648
"xloc": [
3649
- "default.handlebars->31->347"
3649
+ "default.handlebars->31->350"
3650
]
3651
},
3652
{
@@ -3666,7 +3666,7 @@
3666
"zh-chs": "新增密钥",
3667
"zh-cht": "新增密鑰",
3668
"xloc": [
3669
- "default.handlebars->31->161"
3669
+ "default.handlebars->31->164"
3670
]
3671
},
3672
{
@@ -3686,7 +3686,7 @@
3686
"zh-chs": "添加本地",
3687
"zh-cht": "新增本地",
3688
"xloc": [
3689
- "default.handlebars->31->328"
3689
+ "default.handlebars->31->331"
3690
]
3691
},
3692
{
@@ -3706,7 +3706,7 @@
3706
"zh-chs": "添加成员身份",
3707
"zh-cht": "新增成員身份",
3708
"xloc": [
3709
- "default.handlebars->31->2267"
3709
+ "default.handlebars->31->2270"
3710
]
3711
},
3712
{
@@ -3726,7 +3726,7 @@
3726
"zh-chs": "添加 Mesh Agent",
3727
"zh-cht": "新增 Mesh Agent",
3728
"xloc": [
3729
- "default.handlebars->31->454"
3729
+ "default.handlebars->31->457"
3730
]
3731
},
3732
{
@@ -3746,12 +3746,12 @@
3746
"zh-chs": "添加安全密钥",
3747
"zh-cht": "新增安全密鑰",
3748
"xloc": [
3749
- "default.handlebars->31->1231",
3750
- "default.handlebars->31->1232",
3751
- "default.handlebars->31->164",
3752
- "default.handlebars->31->166",
3749
+ "default.handlebars->31->1234",
3750
+ "default.handlebars->31->1235",
3751
+ "default.handlebars->31->167",
3752
"default.handlebars->31->169",
3754
- "default.handlebars->31->170"
3753
+ "default.handlebars->31->172",
3754
+ "default.handlebars->31->173"
3755
]
3756
},
3757
{
@@ -3771,8 +3771,8 @@
3771
"zh-chs": "添加用户",
3772
"zh-cht": "新增用戶",
3773
"xloc": [
3774
- "default-mobile.handlebars->11->538",
3775
- "default.handlebars->31->750"
3774
+ "default-mobile.handlebars->11->539",
3775
+ "default.handlebars->31->753"
3776
]
3777
},
3778
{
@@ -3792,7 +3792,7 @@
3792
"zh-chs": "添加用户设备权限",
3793
"zh-cht": "新增用戶裝置權限",
3794
"xloc": [
3795
- "default.handlebars->31->1691"
3795
+ "default.handlebars->31->1694"
3796
]
3797
},
3798
{
@@ -3812,10 +3812,10 @@
3812
"zh-chs": "添加用户组",
3813
"zh-cht": "新增用戶群",
3814
"xloc": [
3815
- "default.handlebars->31->1580",
3816
- "default.handlebars->31->1683",
3817
- "default.handlebars->31->2241",
3818
- "default.handlebars->31->751"
3815
+ "default.handlebars->31->1583",
3816
+ "default.handlebars->31->1686",
3817
+ "default.handlebars->31->2244",
3818
+ "default.handlebars->31->754"
3819
]
3820
},
3821
{
@@ -3835,7 +3835,7 @@
3835
"zh-chs": "添加用户组设备权限",
3836
"zh-cht": "新增用戶群裝置權限",
3837
"xloc": [
3838
- "default.handlebars->31->1693"
3838
+ "default.handlebars->31->1696"
3839
]
3840
},
3841
{
@@ -3855,7 +3855,7 @@
3855
"zh-chs": "将用户添加到设备组",
3856
"zh-cht": "將用戶新增到裝置群",
3857
"xloc": [
3858
- "default-mobile.handlebars->11->574"
3858
+ "default-mobile.handlebars->11->575"
3859
]
3860
},
3861
{
@@ -3892,8 +3892,8 @@
3892
"zh-chs": "添加用户",
3893
"zh-cht": "新增用戶",
3894
"xloc": [
3895
- "default.handlebars->31->1579",
3896
- "default.handlebars->31->2106"
3895
+ "default.handlebars->31->1582",
3896
+ "default.handlebars->31->2109"
3897
]
3898
},
3899
{
@@ -3913,7 +3913,7 @@
3913
"zh-chs": "将用户添加到设备组",
3914
"zh-cht": "將用戶新增到裝置群",
3915
"xloc": [
3916
- "default.handlebars->31->1680"
3916
+ "default.handlebars->31->1683"
3917
]
3918
},
3919
{
@@ -3933,7 +3933,7 @@
3933
"zh-chs": "将用户添加到用户组",
3934
"zh-cht": "將用戶新增到用戶群",
3935
"xloc": [
3936
- "default.handlebars->31->2139"
3936
+ "default.handlebars->31->2142"
3937
]
3938
},
3939
{
@@ -3953,7 +3953,7 @@
3953
"zh-chs": "添加YubiKey®OTP",
3954
"zh-cht": "新增YubiKey®OTP",
3955
"xloc": [
3956
- "default.handlebars->31->162"
3956
+ "default.handlebars->31->165"
3957
]
3958
},
3959
{
@@ -3973,7 +3973,7 @@
3973
"zh-chs": "通过扫描本地网络添加新的英特尔®AMT计算机。",
3974
"zh-cht": "通過掃描本地網絡新增新的Intel® AMT電腦。",
3975
"xloc": [
3976
- "default.handlebars->31->329"
3976
+ "default.handlebars->31->332"
3977
]
3978
},
3979
{
@@ -4010,7 +4010,7 @@
4010
"zh-chs": "添加位于本地网络上的新英特尔®AMT计算机。",
4011
"zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。",
4012
"xloc": [
4013
- "default.handlebars->31->327"
4013
+ "default.handlebars->31->330"
4014
]
4015
},
4016
{
@@ -4030,7 +4030,7 @@
4030
"zh-chs": "将新的英特尔®AMT设备添加到设备组“{0}”。",
4031
"zh-cht": "將新的Intel® AMT裝置新增到裝置群“{0}”。",
4032
"xloc": [
4033
- "default.handlebars->31->337"
4033
+ "default.handlebars->31->340"
4034
]
4035
},
4036
{
@@ -4050,8 +4050,8 @@
4050
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
4051
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
4052
"xloc": [
4053
- "default.handlebars->31->1583",
4054
- "default.handlebars->31->333"
4053
+ "default.handlebars->31->1586",
4054
+ "default.handlebars->31->336"
4055
]
4056
},
4057
{
@@ -4071,7 +4071,7 @@
4071
"zh-chs": "添加标签",
4072
"zh-cht": "新增標籤",
4073
"xloc": [
4074
- "default.handlebars->31->523"
4074
+ "default.handlebars->31->526"
4075
]
4076
},
4077
{
@@ -4091,7 +4091,7 @@
4091
"zh-chs": "通过定期在远程设备上以管理员身份运行MeshCmd,添加,激活和配置Intel®AMT以将“{0}”分组。",
4092
"zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel®AMT以將“{0}”分組。",
4093
"xloc": [
4094
- "default.handlebars->31->348"
4094
+ "default.handlebars->31->351"
4095
]
4096
},
4097
{
@@ -4111,7 +4111,7 @@
4111
"zh-chs": "添加了身份验证应用程序",
4112
"zh-cht": "添加了身份驗證應用程序",
4113
"xloc": [
4114
- "default.handlebars->31->1904"
4114
+ "default.handlebars->31->1907"
4115
]
4116
},
4117
{
@@ -4131,7 +4131,7 @@
4131
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
4132
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
4133
"xloc": [
4134
- "default.handlebars->31->1915"
4134
+ "default.handlebars->31->1918"
4135
]
4136
},
4137
{
@@ -4151,21 +4151,21 @@
4151
"zh-chs": "已将设备{0}添加到设备组{1}",
4152
"zh-cht": "已將設備{0}添加到設備組{1}",
4153
"xloc": [
4154
- "default.handlebars->31->1871",
4155
- "default.handlebars->31->1898"
4154
+ "default.handlebars->31->1874",
4155
+ "default.handlebars->31->1901"
4156
]
4157
},
4158
{
4159
"en": "Added login token",
4160
"xloc": [
4161
- "default.handlebars->31->1929"
4161
+ "default.handlebars->31->1932"
4162
]
4163
},
4164
{
4165
"en": "Added push notification authentication device",
4166
"nl": "Verificatie apparaat voor pushmeldingen toegevoegd",
4167
"xloc": [
4168
- "default.handlebars->31->1927"
4168
+ "default.handlebars->31->1930"
4169
]
4170
},
4171
{
@@ -4185,7 +4185,7 @@
4185
"zh-chs": "添加了安全密钥",
4186
"zh-cht": "添加了安全密鑰",
4187
"xloc": [
4188
- "default.handlebars->31->1909"
4188
+ "default.handlebars->31->1912"
4189
]
4190
},
4191
{
@@ -4205,7 +4205,7 @@
4205
"zh-chs": "已将用户组{0}添加到设备组{1}",
4206
"zh-cht": "已將用戶組{0}添加到設備組{1}",
4207
"xloc": [
4208
- "default.handlebars->31->1882"
4208
+ "default.handlebars->31->1885"
4209
]
4210
},
4211
{
@@ -4225,8 +4225,8 @@
4225
"zh-chs": "已将用户{0}添加到用户组{1}",
4226
"zh-cht": "已將用戶{0}添加到用戶組{1}",
4227
"xloc": [
4228
- "default.handlebars->31->1885",
4229
- "default.handlebars->31->1894"
4228
+ "default.handlebars->31->1888",
4229
+ "default.handlebars->31->1897"
4230
]
4231
},
4232
{
@@ -4246,7 +4246,7 @@
4246
"zh-chs": "地址",
4247
"zh-cht": "地址",
4248
"xloc": [
4249
- "default.handlebars->31->264"
4249
+ "default.handlebars->31->267"
4250
]
4251
},
4252
{
@@ -4286,8 +4286,8 @@
4286
"zh-chs": "管理员控制模式(ACM)",
4287
"zh-cht": "管理員控制模式(ACM)",
4288
"xloc": [
4289
- "default-mobile.handlebars->11->480",
4290
- "default.handlebars->31->1149"
4289
+ "default-mobile.handlebars->11->481",
4290
+ "default.handlebars->31->1152"
4291
]
4292
},
4293
{
@@ -4307,8 +4307,8 @@
4307
"zh-chs": "管理员凭证",
4308
"zh-cht": "管理員憑證",
4309
"xloc": [
4310
- "default-mobile.handlebars->11->486",
4311
- "default.handlebars->31->1155"
4310
+ "default-mobile.handlebars->11->487",
4311
+ "default.handlebars->31->1158"
4312
]
4313
},
4314
{
@@ -4349,7 +4349,7 @@
4349
"zh-chs": "管理领域",
4350
"zh-cht": "管理領域",
4351
"xloc": [
4352
- "default.handlebars->31->2175"
4352
+ "default.handlebars->31->2178"
4353
]
4354
},
4355
{
@@ -4390,7 +4390,7 @@
4390
"zh-chs": "管理领域",
4391
"zh-cht": "管理領域",
4392
"xloc": [
4393
- "default.handlebars->31->2043"
4393
+ "default.handlebars->31->2046"
4394
]
4395
},
4396
{
@@ -4410,7 +4410,7 @@
4410
"zh-chs": "管理员",
4411
"zh-cht": "管理員",
4412
"xloc": [
4413
- "default.handlebars->31->1972"
4413
+ "default.handlebars->31->1975"
4414
]
4415
},
4416
{
@@ -4430,7 +4430,7 @@
4430
"zh-chs": "南非文",
4431
"zh-cht": "南非文",
4432
"xloc": [
4433
- "default.handlebars->31->1234"
4433
+ "default.handlebars->31->1237"
4434
]
4435
},
4436
{
@@ -4451,14 +4451,14 @@
4451
"zh-cht": "代理",
4452
"xloc": [
4453
"agent-translations.json",
4454
- "default-mobile.handlebars->11->234",
4455
- "default-mobile.handlebars->11->259",
4456
- "default-mobile.handlebars->11->281",
4454
+ "default-mobile.handlebars->11->235",
4455
+ "default-mobile.handlebars->11->260",
4456
+ "default-mobile.handlebars->11->282",
4457
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
4458
- "default.handlebars->31->1747",
4459
- "default.handlebars->31->1760",
4460
- "default.handlebars->31->284",
4461
- "default.handlebars->31->479",
4458
+ "default.handlebars->31->1750",
4459
+ "default.handlebars->31->1763",
4460
+ "default.handlebars->31->287",
4461
+ "default.handlebars->31->482",
4462
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1"
4463
]
4464
},
@@ -4479,8 +4479,8 @@
4479
"zh-chs": "代理+英特尔AMT",
4480
"zh-cht": "代理+Intel® AMT",
4481
"xloc": [
4482
- "default.handlebars->31->1749",
4483
- "default.handlebars->31->1762"
4482
+ "default.handlebars->31->1752",
4483
+ "default.handlebars->31->1765"
4484
]
4485
},
4486
{
@@ -4521,8 +4521,8 @@
4521
"zh-chs": "代理控制台",
4522
"zh-cht": "代理控制台",
4523
"xloc": [
4524
- "default-mobile.handlebars->11->580",
4525
- "default.handlebars->31->1701"
4524
+ "default-mobile.handlebars->11->581",
4525
+ "default.handlebars->31->1704"
4526
]
4527
},
4528
{
@@ -4542,7 +4542,7 @@
4542
"zh-chs": "代理错误计数器",
4543
"zh-cht": "代理錯誤計數器",
4544
"xloc": [
4545
- "default.handlebars->31->2351"
4545
+ "default.handlebars->31->2354"
4546
]
4547
},
4548
{
@@ -4550,7 +4550,7 @@
4550
"nl": "IP-adres agent",
4551
"de": "Agent IP Adresse",
4552
"xloc": [
4553
- "default.handlebars->31->248"
4553
+ "default.handlebars->31->251"
4554
]
4555
},
4556
{
@@ -4590,8 +4590,8 @@
4590
"zh-chs": "代理消息",
4591
"zh-cht": "代理訊息",
4592
"xloc": [
4593
- "default-mobile.handlebars->11->212",
4594
- "default.handlebars->31->319"
4593
+ "default-mobile.handlebars->11->213",
4594
+ "default.handlebars->31->322"
4595
]
4596
},
4597
{
@@ -4611,7 +4611,7 @@
4611
"zh-chs": "代理中继",
4612
"zh-cht": "代理中繼",
4613
"xloc": [
4614
- "default-mobile.handlebars->11->284"
4614
+ "default-mobile.handlebars->11->285"
4615
]
4616
},
4617
{
@@ -4654,7 +4654,7 @@
4654
"zh-chs": "代理时段",
4655
"zh-cht": "代理時段",
4656
"xloc": [
4657
- "default.handlebars->31->2367"
4657
+ "default.handlebars->31->2370"
4658
]
4659
},
4660
{
@@ -4674,8 +4674,8 @@
4674
"zh-chs": "代理标签",
4675
"zh-cht": "代理標籤",
4676
"xloc": [
4677
- "default-mobile.handlebars->11->280",
4678
- "default.handlebars->31->656"
4677
+ "default-mobile.handlebars->11->281",
4678
+ "default.handlebars->31->659"
4679
]
4680
},
4681
{
@@ -4695,7 +4695,7 @@
4695
"zh-chs": "代理类型",
4696
"zh-cht": "代理類型",
4697
"xloc": [
4698
- "default.handlebars->31->1758",
4698
+ "default.handlebars->31->1761",
4699
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
4700
]
4701
},
@@ -4716,7 +4716,7 @@
4716
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4717
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4718
"xloc": [
4719
- "default.handlebars->31->1868"
4719
+ "default.handlebars->31->1871"
4720
]
4721
},
4722
{
@@ -4736,9 +4736,9 @@
4736
"zh-chs": "代理已连接",
4737
"zh-cht": "代理已連接",
4738
"xloc": [
4739
- "default.handlebars->31->178",
4740
- "default.handlebars->31->741",
4741
- "default.handlebars->31->742"
4739
+ "default.handlebars->31->181",
4740
+ "default.handlebars->31->744",
4741
+ "default.handlebars->31->745"
4742
]
4743
},
4744
{
@@ -4758,7 +4758,7 @@
4758
"zh-chs": "代理已断开连接",
4759
"zh-cht": "代理已斷開連接",
4760
"xloc": [
4761
- "default.handlebars->31->182"
4761
+ "default.handlebars->31->185"
4762
]
4763
},
4764
{
@@ -4778,8 +4778,8 @@
4778
"zh-chs": "代理离线",
4779
"zh-cht": "代理離線",
4780
"xloc": [
4781
- "default-mobile.handlebars->11->514",
4782
- "default.handlebars->31->1184"
4781
+ "default-mobile.handlebars->11->515",
4782
+ "default.handlebars->31->1187"
4783
]
4784
},
4785
{
@@ -4799,8 +4799,8 @@
4799
"zh-chs": "代理在线",
4800
"zh-cht": "代理在線",
4801
"xloc": [
4802
- "default-mobile.handlebars->11->513",
4803
- "default.handlebars->31->1183"
4802
+ "default-mobile.handlebars->11->514",
4803
+ "default.handlebars->31->1186"
4804
]
4805
},
4806
{
@@ -4820,8 +4820,8 @@
4820
"zh-chs": "代理在特权降低的远程设备上运行。",
4821
"zh-cht": "代理在特權降低的遠程設備上運行。",
4822
"xloc": [
4823
- "default.handlebars->31->176",
4824
- "default.handlebars->31->739"
4823
+ "default.handlebars->31->179",
4824
+ "default.handlebars->31->742"
4825
]
4826
},
4827
{
@@ -4841,7 +4841,7 @@
4841
"zh-chs": "代理",
4842
"zh-cht": "代理",
4843
"xloc": [
4844
- "default.handlebars->31->2383"
4844
+ "default.handlebars->31->2386"
4845
]
4846
},
4847
{
@@ -4861,7 +4861,7 @@
4861
"zh-chs": "阿尔巴尼亚文",
4862
"zh-cht": "阿爾巴尼亞文",
4863
"xloc": [
4864
- "default.handlebars->31->1235"
4864
+ "default.handlebars->31->1238"
4865
]
4866
},
4867
{
@@ -4881,9 +4881,9 @@
4881
"zh-chs": "所有",
4882
"zh-cht": "所有",
4883
"xloc": [
4884
- "default-mobile.handlebars->11->140",
4885
- "default-mobile.handlebars->11->392",
4886
- "default-mobile.handlebars->11->394",
4884
+ "default-mobile.handlebars->11->141",
4885
+ "default-mobile.handlebars->11->393",
4886
+ "default-mobile.handlebars->11->395",
4887
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
4888
]
4889
},
@@ -4904,7 +4904,7 @@
4904
"zh-chs": "全部可用",
4905
"zh-cht": "全部可用",
4906
"xloc": [
4907
- "default.handlebars->31->1935"
4907
+ "default.handlebars->31->1938"
4908
]
4909
},
4910
{
@@ -4924,7 +4924,7 @@
4924
"zh-chs": "所有显示",
4925
"zh-cht": "所有顯示",
4926
"xloc": [
4927
- "default.handlebars->31->1030"
4927
+ "default.handlebars->31->1033"
4928
]
4929
},
4930
{
@@ -4944,7 +4944,7 @@
4944
"zh-chs": "所有事件",
4945
"zh-cht": "所有事件",
4946
"xloc": [
4947
- "default.handlebars->31->1933"
4947
+ "default.handlebars->31->1936"
4948
]
4949
},
4950
{
@@ -4964,9 +4964,9 @@
4964
"zh-chs": "全部聚焦",
4965
"zh-cht": "全部聚焦",
4966
"xloc": [
4967
- "default.handlebars->31->975",
4968
- "default.handlebars->31->977",
4969
- "default.handlebars->31->978"
4967
+ "default.handlebars->31->978",
4968
+ "default.handlebars->31->980",
4969
+ "default.handlebars->31->981"
4970
]
4971
},
4972
{
@@ -4986,8 +4986,8 @@
4986
"zh-chs": "允许用户管理此设备组和该组中的设备。",
4987
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4988
"xloc": [
4989
- "default.handlebars->31->1647",
4990
- "default.handlebars->31->2136"
4989
+ "default.handlebars->31->1650",
4990
+ "default.handlebars->31->2139"
4991
]
4992
},
4993
{
@@ -5007,7 +5007,7 @@
5007
"zh-chs": "允许用户管理此设备。",
5008
"zh-cht": "允許用戶管理此裝置。",
5009
"xloc": [
5010
- "default.handlebars->31->1648"
5010
+ "default.handlebars->31->1651"
5011
]
5012
},
5013
{
@@ -5016,7 +5016,7 @@
5016
"fr": "Autorisé",
5017
"de": "Erlaubt",
5018
"xloc": [
5019
- "default.handlebars->31->205"
5019
+ "default.handlebars->31->208"
5020
]
5021
},
5022
{
@@ -5045,10 +5045,10 @@
5045
"fr": "Alt",
5046
"nl": "Alt",
5047
"xloc": [
5048
- "default-mobile.handlebars->11->373",
5049
- "default-mobile.handlebars->11->377",
5050
- "default.handlebars->31->1002",
5051
- "default.handlebars->31->998"
5048
+ "default-mobile.handlebars->11->374",
5049
+ "default-mobile.handlebars->11->378",
5050
+ "default.handlebars->31->1001",
5051
+ "default.handlebars->31->1005"
5052
]
5053
},
5054
{
@@ -5112,7 +5112,7 @@
5112
"zh-chs": "备用(F10 = ESC + 0)",
5113
"zh-cht": "備用(F10 = ESC + 0)",
5114
"xloc": [
5115
- "default.handlebars->31->1041",
5115
+ "default.handlebars->31->1044",
5116
"sharing.handlebars->11->37",
5117
"terminal.handlebars->3->19"
5118
]
@@ -5155,10 +5155,10 @@
5155
"zh-chs": "一直通知",
5156
"zh-cht": "一直通知",
5157
"xloc": [
5158
- "default.handlebars->31->1559",
5159
- "default.handlebars->31->2097",
5160
- "default.handlebars->31->2184",
5161
- "default.handlebars->31->684"
5158
+ "default.handlebars->31->1562",
5159
+ "default.handlebars->31->2100",
5160
+ "default.handlebars->31->2187",
5161
+ "default.handlebars->31->687"
5162
]
5163
},
5164
{
@@ -5178,10 +5178,10 @@
5178
"zh-chs": "一直提示",
5179
"zh-cht": "一直提示",
5180
"xloc": [
5181
- "default.handlebars->31->1560",
5182
- "default.handlebars->31->2098",
5183
- "default.handlebars->31->2185",
5184
- "default.handlebars->31->685"
5181
+ "default.handlebars->31->1563",
5182
+ "default.handlebars->31->2101",
5183
+ "default.handlebars->31->2188",
5184
+ "default.handlebars->31->688"
5185
]
5186
},
5187
{
@@ -5298,7 +5298,7 @@
5298
"nl": "Android installatie",
5299
"fr": "Installation pour Android",
5300
"xloc": [
5301
- "default-mobile.handlebars->11->554"
5301
+ "default-mobile.handlebars->11->555"
5302
]
5303
},
5304
{
@@ -5328,8 +5328,8 @@
5328
"fr": "Antivirus désactivé",
5329
"de": "Anti-virus ist nicht aktiv",
5330
"xloc": [
5331
- "default.handlebars->31->1751",
5332
- "default.handlebars->31->1765"
5331
+ "default.handlebars->31->1754",
5332
+ "default.handlebars->31->1768"
5333
]
5334
},
5335
{
@@ -5349,8 +5349,8 @@
5349
"zh-chs": "杀毒软件",
5350
"zh-cht": "防毒軟體",
5351
"xloc": [
5352
- "default-mobile.handlebars->11->443",
5353
- "default.handlebars->31->675"
5352
+ "default-mobile.handlebars->11->444",
5353
+ "default.handlebars->31->678"
5354
]
5355
},
5356
{
@@ -5370,7 +5370,7 @@
5370
"zh-chs": "任何可支持的",
5371
"zh-cht": "任何可支持的",
5372
"xloc": [
5373
- "default.handlebars->31->375"
5373
+ "default.handlebars->31->378"
5374
]
5375
},
5376
{
@@ -5411,7 +5411,7 @@
5411
"zh-chs": "苹果macOS",
5412
"zh-cht": "蘋果macOS",
5413
"xloc": [
5414
- "default.handlebars->31->409"
5414
+ "default.handlebars->31->412"
5415
]
5416
},
5417
{
@@ -5431,7 +5431,7 @@
5431
"zh-chs": "仅限Apple macOS",
5432
"zh-cht": "僅限Apple macOS",
5433
"xloc": [
5434
- "default.handlebars->31->377"
5434
+ "default.handlebars->31->380"
5435
]
5436
},
5437
{
@@ -5471,7 +5471,7 @@
5471
"zh-chs": "阿拉伯文(阿尔及利亚)",
5472
"zh-cht": "阿拉伯文(阿爾及利亞)",
5473
"xloc": [
5474
- "default.handlebars->31->1237"
5474
+ "default.handlebars->31->1240"
5475
]
5476
},
5477
{
@@ -5491,7 +5491,7 @@
5491
"zh-chs": "阿拉伯文(巴林)",
5492
"zh-cht": "阿拉伯文(巴林)",
5493
"xloc": [
5494
- "default.handlebars->31->1238"
5494
+ "default.handlebars->31->1241"
5495
]
5496
},
5497
{
@@ -5511,7 +5511,7 @@
5511
"zh-chs": "阿拉伯文(埃及)",
5512
"zh-cht": "阿拉伯文(埃及)",
5513
"xloc": [
5514
- "default.handlebars->31->1239"
5514
+ "default.handlebars->31->1242"
5515
]
5516
},
5517
{
@@ -5531,7 +5531,7 @@
5531
"zh-chs": "阿拉伯文(伊拉克)",
5532
"zh-cht": "阿拉伯文(伊拉克)",
5533
"xloc": [
5534
- "default.handlebars->31->1240"
5534
+ "default.handlebars->31->1243"
5535
]
5536
},
5537
{
@@ -5551,7 +5551,7 @@
5551
"zh-chs": "阿拉伯文(约旦)",
5552
"zh-cht": "阿拉伯文(約旦)",
5553
"xloc": [
5554
- "default.handlebars->31->1241"
5554
+ "default.handlebars->31->1244"
5555
]
5556
},
5557
{
@@ -5571,7 +5571,7 @@
5571
"zh-chs": "阿拉伯文(科威特)",
5572
"zh-cht": "阿拉伯文(科威特)",
5573
"xloc": [
5574
- "default.handlebars->31->1242"
5574
+ "default.handlebars->31->1245"
5575
]
5576
},
5577
{
@@ -5591,7 +5591,7 @@
5591
"zh-chs": "阿拉伯文(黎巴嫩)",
5592
"zh-cht": "阿拉伯文(黎巴嫩)",
5593
"xloc": [
5594
- "default.handlebars->31->1243"
5594
+ "default.handlebars->31->1246"
5595
]
5596
},
5597
{
@@ -5611,7 +5611,7 @@
5611
"zh-chs": "阿拉伯文(利比亚)",
5612
"zh-cht": "阿拉伯文(利比亞)",
5613
"xloc": [
5614
- "default.handlebars->31->1244"
5614
+ "default.handlebars->31->1247"
5615
]
5616
},
5617
{
@@ -5631,7 +5631,7 @@
5631
"zh-chs": "阿拉伯文(摩洛哥)",
5632
"zh-cht": "阿拉伯文(摩洛哥)",
5633
"xloc": [
5634
- "default.handlebars->31->1245"
5634
+ "default.handlebars->31->1248"
5635
]
5636
},
5637
{
@@ -5651,7 +5651,7 @@
5651
"zh-chs": "阿拉伯文(阿曼)",
5652
"zh-cht": "阿拉伯文(阿曼)",
5653
"xloc": [
5654
- "default.handlebars->31->1246"
5654
+ "default.handlebars->31->1249"
5655
]
5656
},
5657
{
@@ -5671,7 +5671,7 @@
5671
"zh-chs": "阿拉伯文(卡塔尔)",
5672
"zh-cht": "阿拉伯文(卡塔爾)",
5673
"xloc": [
5674
- "default.handlebars->31->1247"
5674
+ "default.handlebars->31->1250"
5675
]
5676
},
5677
{
@@ -5691,7 +5691,7 @@
5691
"zh-chs": "阿拉伯文(沙特阿拉伯)",
5692
"zh-cht": "阿拉伯文(沙特阿拉伯)",
5693
"xloc": [
5694
- "default.handlebars->31->1248"
5694
+ "default.handlebars->31->1251"
5695
]
5696
},
5697
{
@@ -5711,7 +5711,7 @@
5711
"zh-chs": "阿拉伯文(标准)",
5712
"zh-cht": "阿拉伯文(標準)",
5713
"xloc": [
5714
- "default.handlebars->31->1236"
5714
+ "default.handlebars->31->1239"
5715
]
5716
},
5717
{
@@ -5731,7 +5731,7 @@
5731
"zh-chs": "阿拉伯文(叙利亚)",
5732
"zh-cht": "阿拉伯文(敘利亞)",
5733
"xloc": [
5734
- "default.handlebars->31->1249"
5734
+ "default.handlebars->31->1252"
5735
]
5736
},
5737
{
@@ -5751,7 +5751,7 @@
5751
"zh-chs": "阿拉伯文(突尼斯)",
5752
"zh-cht": "阿拉伯文(突尼斯)",
5753
"xloc": [
5754
- "default.handlebars->31->1250"
5754
+ "default.handlebars->31->1253"
5755
]
5756
},
5757
{
@@ -5771,7 +5771,7 @@
5771
"zh-chs": "阿拉伯文(阿联酋)",
5772
"zh-cht": "阿拉伯文(阿聯酋)",
5773
"xloc": [
5774
- "default.handlebars->31->1251"
5774
+ "default.handlebars->31->1254"
5775
]
5776
},
5777
{
@@ -5791,7 +5791,7 @@
5791
"zh-chs": "阿拉伯文(也门)",
5792
"zh-cht": "阿拉伯文(也門)",
5793
"xloc": [
5794
- "default.handlebars->31->1252"
5794
+ "default.handlebars->31->1255"
5795
]
5796
},
5797
{
@@ -5811,7 +5811,7 @@
5811
"zh-chs": "阿拉贡文",
5812
"zh-cht": "阿拉貢文",
5813
"xloc": [
5814
- "default.handlebars->31->1253"
5814
+ "default.handlebars->31->1256"
5815
]
5816
},
5817
{
@@ -5831,8 +5831,8 @@
5831
"zh-chs": "架构",
5832
"zh-cht": "結構",
5833
"xloc": [
5834
- "default-mobile.handlebars->11->426",
5835
- "default.handlebars->31->1102"
5834
+ "default-mobile.handlebars->11->427",
5835
+ "default.handlebars->31->1105"
5836
]
5837
},
5838
{
@@ -5852,7 +5852,7 @@
5852
"zh-chs": "您确定要连接到{0}设备吗?",
5853
"zh-cht": "你確定要連接到{0}裝置嗎?",
5854
"xloc": [
5855
- "default.handlebars->31->322"
5855
+ "default.handlebars->31->325"
5856
]
5857
},
5858
{
@@ -5872,8 +5872,8 @@
5872
"zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
5873
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5874
"xloc": [
5875
- "default-mobile.handlebars->11->545",
5876
- "default.handlebars->31->1623"
5875
+ "default-mobile.handlebars->11->546",
5876
+ "default.handlebars->31->1626"
5877
]
5878
},
5879
{
@@ -5893,7 +5893,7 @@
5893
"zh-chs": "您确定要删除节点{0}吗?",
5894
"zh-cht": "你確定要刪除節點{0}嗎?",
5895
"xloc": [
5896
- "default.handlebars->31->917"
5896
+ "default.handlebars->31->920"
5897
]
5898
},
5899
{
@@ -5913,7 +5913,7 @@
5913
"zh-chs": "您确定要卸载所选代理吗?",
5914
"zh-cht": "你確定要卸載所選代理嗎?",
5915
"xloc": [
5916
- "default.handlebars->31->906"
5916
+ "default.handlebars->31->909"
5917
]
5918
},
5919
{
@@ -5933,7 +5933,7 @@
5933
"zh-chs": "您确定要卸载所选的{0}代理吗?",
5934
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
5935
"xloc": [
5936
- "default.handlebars->31->905"
5936
+ "default.handlebars->31->908"
5937
]
5938
},
5939
{
@@ -5953,7 +5953,7 @@
5953
"zh-chs": "您确定要{0}插件吗:{1}",
5954
"zh-cht": "你確定要{0}外掛嗎:{1}",
5955
"xloc": [
5956
- "default.handlebars->31->2431"
5956
+ "default.handlebars->31->2434"
5957
]
5958
},
5959
{
@@ -5973,7 +5973,7 @@
5973
"zh-chs": "亚美尼亚文",
5974
"zh-cht": "亞美尼亞文",
5975
"xloc": [
5976
- "default.handlebars->31->1254"
5976
+ "default.handlebars->31->1257"
5977
]
5978
},
5979
{
@@ -6033,7 +6033,7 @@
6033
"zh-chs": "阿萨姆文",
6034
"zh-cht": "阿薩姆文",
6035
"xloc": [
6036
- "default.handlebars->31->1255"
6036
+ "default.handlebars->31->1258"
6037
]
6038
},
6039
{
@@ -6053,7 +6053,7 @@
6053
"zh-chs": "阿斯图里亚斯文",
6054
"zh-cht": "阿斯圖里亞斯文",
6055
"xloc": [
6056
- "default.handlebars->31->1256"
6056
+ "default.handlebars->31->1259"
6057
]
6058
},
6059
{
@@ -6073,7 +6073,7 @@
6073
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
6074
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
6075
"xloc": [
6076
- "default.handlebars->31->1837"
6076
+ "default.handlebars->31->1840"
6077
]
6078
},
6079
{
@@ -6093,16 +6093,16 @@
6093
"zh-chs": "认证软件",
6094
"zh-cht": "認證軟體",
6095
"xloc": [
6096
- "default.handlebars->31->2188"
6096
+ "default.handlebars->31->2191"
6097
]
6098
},
6099
{
6100
"en": "Authentication Device",
6101
"nl": "Verificatieapparaat",
6102
"xloc": [
6103
- "default.handlebars->31->1217",
6104
- "default.handlebars->31->1219",
6105
- "default.handlebars->31->1223"
6103
+ "default.handlebars->31->1220",
6104
+ "default.handlebars->31->1222",
6105
+ "default.handlebars->31->1226"
6106
]
6107
},
6108
{
@@ -6122,14 +6122,14 @@
6122
"zh-chs": "认证软件",
6123
"zh-cht": "認證軟體",
6124
"xloc": [
6125
- "default-mobile.handlebars->11->60",
6126
- "default-mobile.handlebars->11->63",
6127
- "default-mobile.handlebars->11->94",
6128
- "default-mobile.handlebars->11->96",
6129
- "default.handlebars->31->1213",
6130
- "default.handlebars->31->1215",
6131
- "default.handlebars->31->140",
6132
- "default.handlebars->31->145"
6125
+ "default-mobile.handlebars->11->61",
6126
+ "default-mobile.handlebars->11->64",
6127
+ "default-mobile.handlebars->11->95",
6128
+ "default-mobile.handlebars->11->97",
6129
+ "default.handlebars->31->1216",
6130
+ "default.handlebars->31->1218",
6131
+ "default.handlebars->31->143",
6132
+ "default.handlebars->31->148"
6133
]
6134
},
6135
{
@@ -6149,7 +6149,7 @@
6149
"zh-chs": "认证软件激活成功。",
6150
"zh-cht": "認證軟體啟動成功。",
6151
"xloc": [
6152
- "default.handlebars->31->141"
6152
+ "default.handlebars->31->144"
6153
]
6154
},
6155
{
@@ -6169,7 +6169,7 @@
6169
"zh-chs": "认证软件已删除。",
6170
"zh-cht": "認證軟體已刪除。",
6171
"xloc": [
6172
- "default.handlebars->31->146"
6172
+ "default.handlebars->31->149"
6173
]
6174
},
6175
{
@@ -6209,7 +6209,7 @@
6209
"zh-chs": "自动删除",
6210
"zh-cht": "自動刪除",
6211
"xloc": [
6212
- "default.handlebars->31->1546"
6212
+ "default.handlebars->31->1549"
6213
]
6214
},
6215
{
@@ -6254,7 +6254,7 @@
6254
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
6255
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
6256
"xloc": [
6257
- "default.handlebars->31->1918"
6257
+ "default.handlebars->31->1921"
6258
]
6259
},
6260
{
@@ -6294,7 +6294,7 @@
6294
"zh-chs": "可用內存",
6295
"zh-cht": "可用內存",
6296
"xloc": [
6297
- "default.handlebars->31->2376"
6297
+ "default.handlebars->31->2379"
6298
]
6299
},
6300
{
@@ -6314,7 +6314,7 @@
6314
"zh-chs": "阿塞拜疆文",
6315
"zh-cht": "阿塞拜疆文",
6316
"xloc": [
6317
- "default.handlebars->31->1257"
6317
+ "default.handlebars->31->1260"
6318
]
6319
},
6320
{
@@ -6323,12 +6323,12 @@
6323
"fr": "Désactivé",
6324
"de": "SCHLECHT",
6325
"xloc": [
6326
- "default-mobile.handlebars->11->430",
6327
- "default-mobile.handlebars->11->434",
6328
- "default-mobile.handlebars->11->438",
6329
- "default.handlebars->31->662",
6330
- "default.handlebars->31->666",
6331
- "default.handlebars->31->670"
6326
+ "default-mobile.handlebars->11->431",
6327
+ "default-mobile.handlebars->11->435",
6328
+ "default-mobile.handlebars->11->439",
6329
+ "default.handlebars->31->665",
6330
+ "default.handlebars->31->669",
6331
+ "default.handlebars->31->673"
6332
]
6333
},
6334
{
@@ -6348,8 +6348,8 @@
6348
"zh-chs": "的BIOS",
6349
"zh-cht": "的BIOS",
6350
"xloc": [
6351
- "default-mobile.handlebars->11->492",
6352
- "default.handlebars->31->1161"
6351
+ "default-mobile.handlebars->11->493",
6352
+ "default.handlebars->31->1164"
6353
]
6354
},
6355
{
@@ -6434,8 +6434,8 @@
6434
"nl": "BackSpace",
6435
"de": "Rücktaste",
6436
"xloc": [
6437
- "default-mobile.handlebars->11->356",
6438
- "default.handlebars->31->981"
6437
+ "default-mobile.handlebars->11->357",
6438
+ "default.handlebars->31->984"
6439
]
6440
},
6441
{
@@ -6455,7 +6455,7 @@
6455
"zh-chs": "背景与互动",
6456
"zh-cht": "背景與互動",
6457
"xloc": [
6458
- "default.handlebars->31->416"
6458
+ "default.handlebars->31->419"
6459
]
6460
},
6461
{
@@ -6475,10 +6475,10 @@
6475
"zh-chs": "背景与互动",
6476
"zh-cht": "背景與互動",
6477
"xloc": [
6478
- "default.handlebars->31->1730",
6479
- "default.handlebars->31->1737",
6480
- "default.handlebars->31->387",
6481
- "default.handlebars->31->401"
6478
+ "default.handlebars->31->1733",
6479
+ "default.handlebars->31->1740",
6480
+ "default.handlebars->31->390",
6481
+ "default.handlebars->31->404"
6482
]
6483
},
6484
{
@@ -6498,11 +6498,11 @@
6498
"zh-chs": "仅背景",
6499
"zh-cht": "僅背景",
6500
"xloc": [
6501
- "default.handlebars->31->1731",
6502
- "default.handlebars->31->1738",
6503
- "default.handlebars->31->388",
6504
- "default.handlebars->31->402",
6505
- "default.handlebars->31->417"
6501
+ "default.handlebars->31->1734",
6502
+ "default.handlebars->31->1741",
6503
+ "default.handlebars->31->391",
6504
+ "default.handlebars->31->405",
6505
+ "default.handlebars->31->420"
6506
]
6507
},
6508
{
@@ -6544,7 +6544,7 @@
6544
"zh-chs": "备用码",
6545
"zh-cht": "備用碼",
6546
"xloc": [
6547
- "default.handlebars->31->2190"
6547
+ "default.handlebars->31->2193"
6548
]
6549
},
6550
{
@@ -6564,7 +6564,7 @@
6564
"zh-chs": "错误的签名",
6565
"zh-cht": "錯誤的簽名",
6566
"xloc": [
6567
- "default.handlebars->31->2358"
6567
+ "default.handlebars->31->2361"
6568
]
6569
},
6570
{
@@ -6584,7 +6584,7 @@
6584
"zh-chs": "错误的网络证书",
6585
"zh-cht": "錯誤的網絡憑證",
6586
"xloc": [
6587
- "default.handlebars->31->2357"
6587
+ "default.handlebars->31->2360"
6588
]
6589
},
6590
{
@@ -6604,7 +6604,7 @@
6604
"zh-chs": "巴斯克",
6605
"zh-cht": "巴斯克",
6606
"xloc": [
6607
- "default.handlebars->31->1258"
6607
+ "default.handlebars->31->1261"
6608
]
6609
},
6610
{
@@ -6624,7 +6624,7 @@
6624
"zh-chs": "批处理文件上传",
6625
"zh-cht": "批處理文件上傳",
6626
"xloc": [
6627
- "default.handlebars->31->539"
6627
+ "default.handlebars->31->542"
6628
]
6629
},
6630
{
@@ -6664,7 +6664,7 @@
6664
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
6665
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
6666
"xloc": [
6667
- "default.handlebars->31->1917"
6667
+ "default.handlebars->31->1920"
6668
]
6669
},
6670
{
@@ -6684,7 +6684,7 @@
6684
"zh-chs": "白俄罗斯文",
6685
"zh-cht": "白俄羅斯文",
6686
"xloc": [
6687
- "default.handlebars->31->1260"
6687
+ "default.handlebars->31->1263"
6688
]
6689
},
6690
{
@@ -6704,7 +6704,7 @@
6704
"zh-chs": "孟加拉",
6705
"zh-cht": "孟加拉",
6706
"xloc": [
6707
- "default.handlebars->31->1261"
6707
+ "default.handlebars->31->1264"
6708
]
6709
},
6710
{
@@ -6735,8 +6735,8 @@
6735
"nl": "Bootloader",
6736
"fr": "Chargeur de démarrage",
6737
"xloc": [
6738
- "default-mobile.handlebars->11->456",
6739
- "default.handlebars->31->1115"
6738
+ "default-mobile.handlebars->11->457",
6739
+ "default.handlebars->31->1118"
6740
]
6741
},
6742
{
@@ -6756,7 +6756,7 @@
6756
"zh-chs": "波斯尼亚文",
6757
"zh-cht": "波斯尼亞文",
6758
"xloc": [
6759
- "default.handlebars->31->1262"
6759
+ "default.handlebars->31->1265"
6760
]
6761
},
6762
{
@@ -6776,7 +6776,7 @@
6776
"zh-chs": "布列塔尼",
6777
"zh-cht": "布列塔尼",
6778
"xloc": [
6779
- "default.handlebars->31->1263"
6779
+ "default.handlebars->31->1266"
6780
]
6781
},
6782
{
@@ -6796,7 +6796,7 @@
6796
"zh-chs": "广播",
6797
"zh-cht": "廣播",
6798
"xloc": [
6799
- "default.handlebars->31->2104",
6799
+ "default.handlebars->31->2107",
6800
"default.handlebars->container->column_l->p4->3->1->0->3->1"
6801
]
6802
},
@@ -6817,7 +6817,7 @@
6817
"zh-chs": "广播消息",
6818
"zh-cht": "廣播消息",
6819
"xloc": [
6820
- "default.handlebars->31->2025"
6820
+ "default.handlebars->31->2028"
6821
]
6822
},
6823
{
@@ -6837,7 +6837,7 @@
6837
"zh-chs": "向所有连接的用户广播消息。",
6838
"zh-cht": "向所有連接的用戶廣播消息。",
6839
"xloc": [
6840
- "default.handlebars->31->2020"
6840
+ "default.handlebars->31->2023"
6841
]
6842
},
6843
{
@@ -6846,7 +6846,7 @@
6846
"fr": "Navigateur par défaut",
6847
"de": "Browser Standard",
6848
"xloc": [
6849
- "default-mobile.handlebars->11->82",
6849
+ "default-mobile.handlebars->11->83",
6850
"default.handlebars->31->58"
6851
]
6852
},
@@ -6867,7 +6867,7 @@
6867
"zh-chs": "保加利亚文",
6868
"zh-cht": "保加利亞文",
6869
"xloc": [
6870
- "default.handlebars->31->1259"
6870
+ "default.handlebars->31->1262"
6871
]
6872
},
6873
{
@@ -6887,7 +6887,7 @@
6887
"zh-chs": "缅甸文",
6888
"zh-cht": "緬甸文",
6889
"xloc": [
6890
- "default.handlebars->31->1264"
6890
+ "default.handlebars->31->1267"
6891
]
6892
},
6893
{
@@ -6907,8 +6907,8 @@
6907
"zh-chs": "CCM",
6908
"zh-cht": "CCM",
6909
"xloc": [
6910
- "default-mobile.handlebars->11->266",
6911
- "default.handlebars->31->638"
6910
+ "default-mobile.handlebars->11->267",
6911
+ "default.handlebars->31->641"
6912
]
6913
},
6914
{
@@ -6928,7 +6928,7 @@
6928
"zh-chs": "CCM模式",
6929
"zh-cht": "CCM模式",
6930
"xloc": [
6931
- "default.handlebars->31->1606"
6931
+ "default.handlebars->31->1609"
6932
]
6933
},
6934
{
@@ -6948,9 +6948,9 @@
6948
"zh-chs": "CIRA",
6949
"zh-cht": "CIRA",
6950
"xloc": [
6951
- "default-mobile.handlebars->11->235",
6952
- "default.handlebars->31->286",
6953
- "default.handlebars->31->481"
6951
+ "default-mobile.handlebars->11->236",
6952
+ "default.handlebars->31->289",
6953
+ "default.handlebars->31->484"
6954
]
6955
},
6956
{
@@ -6970,7 +6970,7 @@
6970
"zh-chs": "CIRA服务器",
6971
"zh-cht": "CIRA伺服器",
6972
"xloc": [
6973
- "default.handlebars->31->2415"
6973
+ "default.handlebars->31->2418"
6974
]
6975
},
6976
{
@@ -6990,7 +6990,7 @@
6990
"zh-chs": "CIRA服务器命令",
6991
"zh-cht": "CIRA伺服器指令",
6992
"xloc": [
6993
- "default.handlebars->31->2416"
6993
+ "default.handlebars->31->2419"
6994
]
6995
},
6996
{
@@ -7010,7 +7010,7 @@
7010
"zh-chs": "CIRA设置",
7011
"zh-cht": "CIRA設置",
7012
"xloc": [
7013
- "default.handlebars->31->1614"
7013
+ "default.handlebars->31->1617"
7014
]
7015
},
7016
{
@@ -7030,8 +7030,8 @@
7030
"zh-chs": "CPU",
7031
"zh-cht": "CPU",
7032
"xloc": [
7033
- "default-mobile.handlebars->11->498",
7034
- "default.handlebars->31->1167"
7033
+ "default-mobile.handlebars->11->499",
7034
+ "default.handlebars->31->1170"
7035
]
7036
},
7037
{
@@ -7051,7 +7051,7 @@
7051
"zh-chs": "CPU负载",
7052
"zh-cht": "CPU負載",
7053
"xloc": [
7054
- "default.handlebars->31->2372"
7054
+ "default.handlebars->31->2375"
7055
]
7056
},
7057
{
@@ -7071,7 +7071,7 @@
7071
"zh-chs": "最近15分钟的CPU负载",
7072
"zh-cht": "最近15分鐘的CPU負載",
7073
"xloc": [
7074
- "default.handlebars->31->2375"
7074
+ "default.handlebars->31->2378"
7075
]
7076
},
7077
{
@@ -7091,7 +7091,7 @@
7091
"zh-chs": "最近5分钟的CPU负载",
7092
"zh-cht": "最近5分鐘的CPU負載",
7093
"xloc": [
7094
- "default.handlebars->31->2374"
7094
+ "default.handlebars->31->2377"
7095
]
7096
},
7097
{
@@ -7111,7 +7111,7 @@
7111
"zh-chs": "最近一分钟的CPU负载",
7112
"zh-cht": "最近一分鐘的CPU負載",
7113
"xloc": [
7114
- "default.handlebars->31->2373"
7114
+ "default.handlebars->31->2376"
7115
]
7116
},
7117
{
@@ -7131,8 +7131,8 @@
7131
"zh-chs": "CR+LF",
7132
"zh-cht": "CR+LF",
7133
"xloc": [
7134
- "default.handlebars->31->1034",
7135
- "default.handlebars->31->1043",
7134
+ "default.handlebars->31->1037",
7135
+ "default.handlebars->31->1046",
7136
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
7137
"sharing.handlebars->11->25",
7138
"sharing.handlebars->11->39",
@@ -7159,7 +7159,7 @@
7159
"zh-chs": "CSV",
7160
"zh-cht": "CSV",
7161
"xloc": [
7162
- "default.handlebars->31->1943"
7162
+ "default.handlebars->31->1946"
7163
]
7164
},
7165
{
@@ -7179,9 +7179,9 @@
7179
"zh-chs": "CSV格式",
7180
"zh-cht": "CSV格式",
7181
"xloc": [
7182
- "default.handlebars->31->1947",
7183
- "default.handlebars->31->2012",
7184
- "default.handlebars->31->547"
7182
+ "default.handlebars->31->1950",
7183
+ "default.handlebars->31->2015",
7184
+ "default.handlebars->31->550"
7185
]
7186
},
7187
{
@@ -7218,7 +7218,7 @@
7218
"zh-chs": "呼叫错误",
7219
"zh-cht": "呼叫錯誤",
7220
"xloc": [
7221
- "default.handlebars->31->2432"
7221
+ "default.handlebars->31->2435"
7222
]
7223
},
7224
{
@@ -7239,10 +7239,10 @@
7239
"zh-cht": "取消",
7240
"xloc": [
7241
"agent-translations.json",
7242
- "default-mobile.handlebars->11->105",
7242
+ "default-mobile.handlebars->11->106",
7243
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
7244
- "default.handlebars->31->1524",
7245
- "default.handlebars->31->2421",
7244
+ "default.handlebars->31->1527",
7245
+ "default.handlebars->31->2424",
7246
"default.handlebars->container->dialog->idx_dlgButtonBar",
7247
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
7248
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -7271,12 +7271,12 @@
7271
"zh-chs": "容量",
7272
"zh-cht": "容量",
7273
"xloc": [
7274
- "default-mobile.handlebars->11->503",
7275
- "default-mobile.handlebars->11->508",
7276
- "default-mobile.handlebars->11->510",
7277
- "default.handlebars->31->1172",
7278
- "default.handlebars->31->1177",
7279
- "default.handlebars->31->1179"
7274
+ "default-mobile.handlebars->11->504",
7275
+ "default-mobile.handlebars->11->509",
7276
+ "default-mobile.handlebars->11->511",
7277
+ "default.handlebars->31->1175",
7278
+ "default.handlebars->31->1180",
7279
+ "default.handlebars->31->1182"
7280
]
7281
},
7282
{
@@ -7296,8 +7296,8 @@
7296
"zh-chs": "容量/速度",
7297
"zh-cht": "容量/速度",
7298
"xloc": [
7299
- "default-mobile.handlebars->11->501",
7300
- "default.handlebars->31->1170"
7299
+ "default-mobile.handlebars->11->502",
7300
+ "default.handlebars->31->1173"
7301
]
7302
},
7303
{
@@ -7317,7 +7317,7 @@
7317
"zh-chs": "加泰罗尼亚文",
7318
"zh-cht": "加泰羅尼亞文",
7319
"xloc": [
7320
- "default.handlebars->31->1265"
7320
+ "default.handlebars->31->1268"
7321
]
7322
},
7323
{
@@ -7337,7 +7337,15 @@
7337
"zh-chs": "在这里为中心显示地图",
7338
"zh-cht": "在這裡為中心顯示地圖",
7339
"xloc": [
7340
- "default.handlebars->31->600"
7340
+ "default.handlebars->31->603"
7341
+ ]
7342
+ },
7343
+ {
7344
+ "en": "Certificate expires in {0} day(s)",
7345
+ "xloc": [
7346
+ "default-mobile.handlebars->11->59",
7347
+ "default.handlebars->31->81",
7348
+ "default.handlebars->31->82"
7349
]
7350
},
7351
{
@@ -7357,7 +7365,7 @@
7365
"zh-chs": "查莫罗",
7366
"zh-cht": "查莫羅",
7367
"xloc": [
7360
- "default.handlebars->31->1266"
7368
+ "default.handlebars->31->1269"
7369
]
7370
},
7371
{
@@ -7399,7 +7407,7 @@
7407
"zh-chs": "更改{0}的电邮",
7408
"zh-cht": "更改{0}的電郵",
7409
"xloc": [
7402
- "default.handlebars->31->2222"
7410
+ "default.handlebars->31->2225"
7411
]
7412
},
7413
{
@@ -7419,9 +7427,9 @@
7427
"zh-chs": "更改组",
7428
"zh-cht": "更改群",
7429
"xloc": [
7422
- "default.handlebars->31->715",
7423
- "default.handlebars->31->914",
7424
- "default.handlebars->31->915"
7430
+ "default.handlebars->31->718",
7431
+ "default.handlebars->31->917",
7432
+ "default.handlebars->31->918"
7433
]
7434
},
7435
{
@@ -7441,9 +7449,9 @@
7449
"zh-chs": "更改密码",
7450
"zh-cht": "更改密碼",
7451
"xloc": [
7444
- "default-mobile.handlebars->11->113",
7445
- "default.handlebars->31->1481",
7446
- "default.handlebars->31->2207"
7452
+ "default-mobile.handlebars->11->114",
7453
+ "default.handlebars->31->1484",
7454
+ "default.handlebars->31->2210"
7455
]
7456
},
7457
{
@@ -7463,7 +7471,7 @@
7471
"zh-chs": "更改{0}的密码",
7472
"zh-cht": "更改{0}的密碼",
7473
"xloc": [
7466
- "default.handlebars->31->2231"
7474
+ "default.handlebars->31->2234"
7475
]
7476
},
7477
{
@@ -7483,7 +7491,7 @@
7491
"zh-chs": "更改{0}的真实名称",
7492
"zh-cht": "更改{0}的真實名稱",
7493
"xloc": [
7486
- "default.handlebars->31->2217"
7494
+ "default.handlebars->31->2220"
7495
]
7496
},
7497
{
@@ -7574,7 +7582,7 @@
7582
"zh-chs": "更改该用户的密码",
7583
"zh-cht": "更改該用戶的密碼",
7584
"xloc": [
7577
- "default.handlebars->31->2206"
7585
+ "default.handlebars->31->2209"
7586
]
7587
},
7588
{
@@ -7614,7 +7622,7 @@
7622
"zh-chs": "在此处更改您的帐户电邮地址。",
7623
"zh-cht": "在此處更改你的帳戶電郵地址。",
7624
"xloc": [
7617
- "default.handlebars->31->1468"
7625
+ "default.handlebars->31->1471"
7626
]
7627
},
7628
{
@@ -7634,7 +7642,7 @@
7642
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
7643
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
7644
"xloc": [
7637
- "default.handlebars->31->1474"
7645
+ "default.handlebars->31->1477"
7646
]
7647
},
7648
{
@@ -7654,7 +7662,7 @@
7662
"zh-chs": "更改帐户凭据",
7663
"zh-cht": "帳戶憑證已更改",
7664
"xloc": [
7657
- "default.handlebars->31->1889"
7665
+ "default.handlebars->31->1892"
7666
]
7667
},
7668
{
@@ -7674,7 +7682,7 @@
7682
"zh-chs": "{1}组中的设备{0}已更改:{2}",
7683
"zh-cht": "{1}組中的設備{0}已更改:{2}",
7684
"xloc": [
7677
- "default.handlebars->31->1873"
7685
+ "default.handlebars->31->1876"
7686
]
7687
},
7688
{
@@ -7694,7 +7702,7 @@
7702
"zh-chs": "语言从{1}更改为{2}",
7703
"zh-cht": "語言從{1}更改為{2}",
7704
"xloc": [
7697
- "default.handlebars->31->1817"
7705
+ "default.handlebars->31->1820"
7706
]
7707
},
7708
{
@@ -7714,8 +7722,8 @@
7722
"zh-chs": "已更改{0}的用户设备权限",
7723
"zh-cht": "已更改{0}的用戶設備權限",
7724
"xloc": [
7717
- "default.handlebars->31->1875",
7718
- "default.handlebars->31->1896"
7725
+ "default.handlebars->31->1878",
7726
+ "default.handlebars->31->1899"
7727
]
7728
},
7729
{
@@ -7735,7 +7743,7 @@
7743
"zh-chs": "更改语言将需要刷新页面。",
7744
"zh-cht": "更改語言將需要刷新頁面。",
7745
"xloc": [
7738
- "default.handlebars->31->1433"
7746
+ "default.handlebars->31->1436"
7747
]
7748
},
7749
{
@@ -7755,12 +7763,12 @@
7763
"zh-chs": "聊天",
7764
"zh-cht": "聊天",
7765
"xloc": [
7758
- "default.handlebars->31->1964",
7759
- "default.handlebars->31->2202",
7760
- "default.handlebars->31->2203",
7761
- "default.handlebars->31->710",
7762
- "default.handlebars->31->787",
7763
- "default.handlebars->31->809"
7766
+ "default.handlebars->31->1967",
7767
+ "default.handlebars->31->2205",
7768
+ "default.handlebars->31->2206",
7769
+ "default.handlebars->31->713",
7770
+ "default.handlebars->31->790",
7771
+ "default.handlebars->31->812"
7772
]
7773
},
7774
{
@@ -7780,10 +7788,10 @@
7788
"zh-chs": "聊天并通知",
7789
"zh-cht": "聊天並通知",
7790
"xloc": [
7783
- "default-mobile.handlebars->11->570",
7784
- "default-mobile.handlebars->11->590",
7785
- "default.handlebars->31->1676",
7786
- "default.handlebars->31->1712"
7791
+ "default-mobile.handlebars->11->571",
7792
+ "default-mobile.handlebars->11->591",
7793
+ "default.handlebars->31->1679",
7794
+ "default.handlebars->31->1715"
7795
]
7796
},
7797
{
@@ -7792,8 +7800,8 @@
7800
"fr": "Demande de discussion, cliquez ici pour accepter.",
7801
"de": "Chat Anfrage, Drücke hier zum annehmen.",
7802
"xloc": [
7795
- "default-mobile.handlebars->11->622",
7796
- "default.handlebars->31->2327"
7803
+ "default-mobile.handlebars->11->623",
7804
+ "default.handlebars->31->2330"
7805
]
7806
},
7807
{
@@ -7833,7 +7841,7 @@
7841
"zh-chs": "车臣",
7842
"zh-cht": "車臣",
7843
"xloc": [
7836
- "default.handlebars->31->1267"
7844
+ "default.handlebars->31->1270"
7845
]
7846
},
7847
{
@@ -7853,7 +7861,7 @@
7861
"zh-chs": "检查并单击确定以清除错误日志。",
7862
"zh-cht": "檢查並單擊確定以清除錯誤日誌。",
7863
"xloc": [
7856
- "default.handlebars->31->136"
7864
+ "default.handlebars->31->139"
7865
]
7866
},
7867
{
@@ -7873,7 +7881,7 @@
7881
"zh-chs": "检查并单击确定以开始服务器自我更新。",
7882
"zh-cht": "檢查並單擊確定以開始伺服器自我更新。",
7883
"xloc": [
7876
- "default.handlebars->31->131"
7884
+ "default.handlebars->31->134"
7885
]
7886
},
7887
{
@@ -7913,7 +7921,7 @@
7921
"zh-chs": "检查您的手机并输入验证码。",
7922
"zh-cht": "檢查你的電話並輸入驗證碼。",
7923
"xloc": [
7916
- "default.handlebars->31->172"
7924
+ "default.handlebars->31->175"
7925
]
7926
},
7927
{
@@ -7933,8 +7941,8 @@
7941
"zh-chs": "检查...",
7942
"zh-cht": "檢查...",
7943
"xloc": [
7936
- "default.handlebars->31->1233",
7937
- "default.handlebars->31->2426"
7944
+ "default.handlebars->31->1236",
7945
+ "default.handlebars->31->2429"
7946
]
7947
},
7948
{
@@ -7954,7 +7962,7 @@
7962
"zh-chs": "中文",
7963
"zh-cht": "中文",
7964
"xloc": [
7957
- "default.handlebars->31->1268"
7965
+ "default.handlebars->31->1271"
7966
]
7967
},
7968
{
@@ -7974,7 +7982,7 @@
7982
"zh-chs": "中文(香港)",
7983
"zh-cht": "中文(香港)",
7984
"xloc": [
7977
- "default.handlebars->31->1269"
7985
+ "default.handlebars->31->1272"
7986
]
7987
},
7988
{
@@ -7994,7 +8002,7 @@
8002
"zh-chs": "中文(中国)",
8003
"zh-cht": "中文(中國)",
8004
"xloc": [
7997
- "default.handlebars->31->1270"
8005
+ "default.handlebars->31->1273"
8006
]
8007
},
8008
{
@@ -8014,7 +8022,7 @@
8022
"zh-chs": "简体中文",
8023
"zh-cht": "簡體中文",
8024
"xloc": [
8017
- "default.handlebars->31->1430"
8025
+ "default.handlebars->31->1433"
8026
]
8027
},
8028
{
@@ -8034,7 +8042,7 @@
8042
"zh-chs": "中文(新加坡)",
8043
"zh-cht": "中文(新加坡)",
8044
"xloc": [
8037
- "default.handlebars->31->1271"
8045
+ "default.handlebars->31->1274"
8046
]
8047
},
8048
{
@@ -8054,7 +8062,7 @@
8062
"zh-chs": "中文(台湾)",
8063
"zh-cht": "中文(台灣)",
8064
"xloc": [
8057
- "default.handlebars->31->1272"
8065
+ "default.handlebars->31->1275"
8066
]
8067
},
8068
{
@@ -8074,7 +8082,7 @@
8082
"zh-chs": "繁体中文",
8083
"zh-cht": "繁體中文",
8084
"xloc": [
8077
- "default.handlebars->31->1431"
8085
+ "default.handlebars->31->1434"
8086
]
8087
},
8088
{
@@ -8115,7 +8123,7 @@
8123
"zh-chs": "楚瓦什",
8124
"zh-cht": "楚瓦什",
8125
"xloc": [
8118
- "default.handlebars->31->1273"
8126
+ "default.handlebars->31->1276"
8127
]
8128
},
8129
{
@@ -8152,18 +8160,18 @@
8160
"zh-chs": "清除",
8161
"zh-cht": "清除",
8162
"xloc": [
8155
- "default-mobile.handlebars->11->155",
8156
- "default-mobile.handlebars->11->410",
8157
- "default-mobile.handlebars->11->412",
8158
- "default-mobile.handlebars->11->414",
8159
- "default-mobile.handlebars->11->416",
8160
- "default-mobile.handlebars->11->70",
8163
+ "default-mobile.handlebars->11->156",
8164
+ "default-mobile.handlebars->11->411",
8165
+ "default-mobile.handlebars->11->413",
8166
+ "default-mobile.handlebars->11->415",
8167
+ "default-mobile.handlebars->11->417",
8168
+ "default-mobile.handlebars->11->71",
8169
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
8162
- "default.handlebars->31->1079",
8163
- "default.handlebars->31->1081",
8164
- "default.handlebars->31->1083",
8165
- "default.handlebars->31->1085",
8166
- "default.handlebars->31->1811",
8170
+ "default.handlebars->31->1082",
8171
+ "default.handlebars->31->1084",
8172
+ "default.handlebars->31->1086",
8173
+ "default.handlebars->31->1088",
8174
+ "default.handlebars->31->1814",
8175
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
8176
"default.handlebars->container->column_l->p41->3->1",
8177
"messenger.handlebars->xbottom->1->1->0->5",
@@ -8190,7 +8198,7 @@
8198
"zh-chs": "清除保安编码",
8199
"zh-cht": "清除保安編碼",
8200
"xloc": [
8193
- "default.handlebars->31->154"
8201
+ "default.handlebars->31->157"
8202
]
8203
},
8204
{
@@ -8199,8 +8207,8 @@
8207
"fr": "Nettoyer l'agent",
8208
"de": "Entferne Agent.",
8209
"xloc": [
8202
- "default.handlebars->31->504",
8203
- "default.handlebars->31->543"
8210
+ "default.handlebars->31->507",
8211
+ "default.handlebars->31->546"
8212
]
8213
},
8214
{
@@ -8209,7 +8217,7 @@
8217
"fr": "Nettoyer l'agent sur les appareils sélectionnés ?",
8218
"de": "Agent auf ausgewählten Geräten löschen?",
8219
"xloc": [
8212
- "default.handlebars->31->542"
8220
+ "default.handlebars->31->545"
8221
]
8222
},
8223
{
@@ -8229,8 +8237,8 @@
8237
"zh-chs": "全部清除",
8238
"zh-cht": "全部清除",
8239
"xloc": [
8232
- "default-mobile.handlebars->11->605",
8233
- "default.handlebars->31->2310"
8240
+ "default-mobile.handlebars->11->606",
8241
+ "default.handlebars->31->2313"
8242
]
8243
},
8244
{
@@ -8250,8 +8258,8 @@
8258
"zh-chs": "清除搜索过滤器",
8259
"zh-cht": "清除搜索過濾器",
8260
"xloc": [
8253
- "default-mobile.handlebars->11->185",
8254
- "default.handlebars->31->257"
8261
+ "default-mobile.handlebars->11->186",
8262
+ "default.handlebars->31->260"
8263
]
8264
},
8265
{
@@ -8271,8 +8279,8 @@
8279
"zh-chs": "清除核心",
8280
"zh-cht": "清除核心",
8281
"xloc": [
8274
- "default-mobile.handlebars->11->524",
8275
- "default.handlebars->31->1194"
8282
+ "default-mobile.handlebars->11->525",
8283
+ "default.handlebars->31->1197"
8284
]
8285
},
8286
{
@@ -8292,7 +8300,7 @@
8300
"zh-chs": "从应用程序中清除机密,然后重试。您只有几分钟的时间来输入正确的代码。",
8301
"zh-cht": "從應用程序中清除秘密,然後重試。你只有幾分鐘的時間來輸入正確的代碼。",
8302
"xloc": [
8295
- "default.handlebars->31->144"
8303
+ "default.handlebars->31->147"
8304
]
8305
},
8306
{
@@ -8312,8 +8320,8 @@
8320
"zh-chs": "清除此通知",
8321
"zh-cht": "清除此通知",
8322
"xloc": [
8315
- "default-mobile.handlebars->11->604",
8316
- "default.handlebars->31->2309"
8323
+ "default-mobile.handlebars->11->605",
8324
+ "default.handlebars->31->2312"
8325
]
8326
},
8327
{
@@ -8373,8 +8381,8 @@
8381
"zh-chs": "单击此处编辑设备组名称",
8382
"zh-cht": "單擊此處編輯裝置群名稱",
8383
"xloc": [
8376
- "default.handlebars->31->1535",
8377
- "default.handlebars->31->1756"
8384
+ "default.handlebars->31->1538",
8385
+ "default.handlebars->31->1759"
8386
]
8387
},
8388
{
@@ -8394,7 +8402,7 @@
8402
"zh-chs": "单击此处编辑服务器端设备名称",
8403
"zh-cht": "單擊此處編輯伺服器端裝置名稱",
8404
"xloc": [
8397
- "default.handlebars->31->616"
8405
+ "default.handlebars->31->619"
8406
]
8407
},
8408
{
@@ -8414,7 +8422,7 @@
8422
"zh-chs": "单击此处编辑用户组名称",
8423
"zh-cht": "單擊此處編輯用戶群名稱",
8424
"xloc": [
8417
- "default.handlebars->31->2081"
8425
+ "default.handlebars->31->2084"
8426
]
8427
},
8428
{
@@ -8485,8 +8493,8 @@
8493
"zh-chs": "单击确定将验证邮件发送到:",
8494
"zh-cht": "單擊確定將驗證電郵發送到:",
8495
"xloc": [
8488
- "default-mobile.handlebars->11->98",
8489
- "default.handlebars->31->1465"
8496
+ "default-mobile.handlebars->11->99",
8497
+ "default.handlebars->31->1468"
8498
]
8499
},
8500
{
@@ -8547,8 +8555,8 @@
8555
"zh-chs": "客户端控制模式(CCM)",
8556
"zh-cht": "客戶端控制模式(CCM)",
8557
"xloc": [
8550
- "default-mobile.handlebars->11->479",
8551
- "default.handlebars->31->1148"
8558
+ "default-mobile.handlebars->11->480",
8559
+ "default.handlebars->31->1151"
8560
]
8561
},
8562
{
@@ -8568,7 +8576,7 @@
8576
"zh-chs": "客户编号",
8577
"zh-cht": "客戶編號",
8578
"xloc": [
8571
- "default.handlebars->31->1517"
8579
+ "default.handlebars->31->1520"
8580
]
8581
},
8582
{
@@ -8588,7 +8596,7 @@
8596
"zh-chs": "客户端启动的远程访问",
8597
"zh-cht": "客戶端啟動的遠程訪問",
8598
"xloc": [
8591
- "default.handlebars->31->1613"
8599
+ "default.handlebars->31->1616"
8600
]
8601
},
8602
{
@@ -8608,7 +8616,7 @@
8616
"zh-chs": "客户机密",
8617
"zh-cht": "客戶機密",
8618
"xloc": [
8611
- "default.handlebars->31->1518"
8619
+ "default.handlebars->31->1521"
8620
]
8621
},
8622
{
@@ -8650,12 +8658,12 @@
8658
"zh-chs": "关",
8659
"zh-cht": "關",
8660
"xloc": [
8653
- "default-mobile.handlebars->11->68",
8654
- "default.handlebars->31->1023",
8655
- "default.handlebars->31->1056",
8656
- "default.handlebars->31->152",
8657
- "default.handlebars->31->160",
8658
- "default.handlebars->31->2420",
8661
+ "default-mobile.handlebars->11->69",
8662
+ "default.handlebars->31->1026",
8663
+ "default.handlebars->31->1059",
8664
+ "default.handlebars->31->155",
8665
+ "default.handlebars->31->163",
8666
+ "default.handlebars->31->2423",
8667
"sharing.handlebars->11->52"
8668
]
8669
},
@@ -8676,7 +8684,7 @@
8684
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
8685
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
8686
"xloc": [
8679
- "default.handlebars->31->1822"
8687
+ "default.handlebars->31->1825"
8688
]
8689
},
8690
{
@@ -8696,7 +8704,7 @@
8704
"zh-chs": "码",
8705
"zh-cht": "碼",
8706
"xloc": [
8699
- "default.handlebars->31->228"
8707
+ "default.handlebars->31->231"
8708
]
8709
},
8710
{
@@ -8778,7 +8786,7 @@
8786
"zh-chs": "命令",
8787
"zh-cht": "命令",
8788
"xloc": [
8781
- "default.handlebars->31->452"
8789
+ "default.handlebars->31->455"
8790
]
8791
},
8792
{
@@ -8798,10 +8806,10 @@
8806
"zh-chs": "指令",
8807
"zh-cht": "指令",
8808
"xloc": [
8801
- "default-mobile.handlebars->11->592",
8802
- "default.handlebars->31->1714",
8803
- "default.handlebars->31->789",
8804
- "default.handlebars->31->811"
8809
+ "default-mobile.handlebars->11->593",
8810
+ "default.handlebars->31->1717",
8811
+ "default.handlebars->31->792",
8812
+ "default.handlebars->31->814"
8813
]
8814
},
8815
{
@@ -8821,8 +8829,8 @@
8829
"zh-chs": "通用设备组",
8830
"zh-cht": "通用裝置群",
8831
"xloc": [
8824
- "default.handlebars->31->2112",
8825
- "default.handlebars->31->2236"
8832
+ "default.handlebars->31->2115",
8833
+ "default.handlebars->31->2239"
8834
]
8835
},
8836
{
@@ -8842,8 +8850,8 @@
8850
"zh-chs": "通用设备",
8851
"zh-cht": "通用裝置",
8852
"xloc": [
8845
- "default.handlebars->31->2118",
8846
- "default.handlebars->31->2248"
8853
+ "default.handlebars->31->2121",
8854
+ "default.handlebars->31->2251"
8855
]
8856
},
8857
{
@@ -8852,8 +8860,8 @@
8860
"fr": "Temps de compilation",
8861
"de": "Kompilierungszeit",
8862
"xloc": [
8855
- "default-mobile.handlebars->11->452",
8856
- "default.handlebars->31->1111"
8863
+ "default-mobile.handlebars->11->453",
8864
+ "default.handlebars->31->1114"
8865
]
8866
},
8867
{
@@ -8873,7 +8881,7 @@
8881
"zh-chs": "压缩档案...",
8882
"zh-cht": "壓縮檔案...",
8883
"xloc": [
8876
- "default.handlebars->31->1051",
8884
+ "default.handlebars->31->1054",
8885
"sharing.handlebars->11->47"
8886
]
8887
},
@@ -8894,16 +8902,16 @@
8902
"zh-chs": "确认",
8903
"zh-cht": "確認",
8904
"xloc": [
8897
- "default-mobile.handlebars->11->340",
8898
- "default-mobile.handlebars->11->546",
8899
- "default.handlebars->31->1624",
8900
- "default.handlebars->31->1992",
8901
- "default.handlebars->31->2071",
8902
- "default.handlebars->31->2132",
8903
- "default.handlebars->31->2234",
8904
- "default.handlebars->31->511",
8905
- "default.handlebars->31->909",
8906
- "default.handlebars->31->918"
8905
+ "default-mobile.handlebars->11->341",
8906
+ "default-mobile.handlebars->11->547",
8907
+ "default.handlebars->31->1627",
8908
+ "default.handlebars->31->1995",
8909
+ "default.handlebars->31->2074",
8910
+ "default.handlebars->31->2135",
8911
+ "default.handlebars->31->2237",
8912
+ "default.handlebars->31->514",
8913
+ "default.handlebars->31->912",
8914
+ "default.handlebars->31->921"
8915
]
8916
},
8917
{
@@ -8923,8 +8931,8 @@
8931
"zh-chs": "确认将1个副本复制到此位置?",
8932
"zh-cht": "確認將1個副本複製到此位置?",
8933
"xloc": [
8926
- "default-mobile.handlebars->11->405",
8927
- "default.handlebars->31->1074",
8934
+ "default-mobile.handlebars->11->406",
8935
+ "default.handlebars->31->1077",
8936
"sharing.handlebars->11->70"
8937
]
8938
},
@@ -8945,7 +8953,7 @@
8953
"zh-chs": "确认{0}个条目的复制到此位置?",
8954
"zh-cht": "確認{0}個條目的複製到此位置?",
8955
"xloc": [
8948
- "default.handlebars->31->1073",
8956
+ "default.handlebars->31->1076",
8957
"sharing.handlebars->11->69"
8958
]
8959
},
@@ -8966,7 +8974,7 @@
8974
"zh-chs": "确认{0}个条目的副本到此位置?",
8975
"zh-cht": "確認{0}個條目的副本到此位置?",
8976
"xloc": [
8969
- "default-mobile.handlebars->11->404"
8977
+ "default-mobile.handlebars->11->405"
8978
]
8979
},
8980
{
@@ -8986,7 +8994,7 @@
8994
"zh-chs": "确认删除选定的帐户?",
8995
"zh-cht": "確認刪除所選帳戶?",
8996
"xloc": [
8989
- "default.handlebars->31->1991"
8997
+ "default.handlebars->31->1994"
8998
]
8999
},
9000
{
@@ -9006,7 +9014,7 @@
9014
"zh-chs": "确认删除选定的设备?",
9015
"zh-cht": "確認刪除所選裝置?",
9016
"xloc": [
9009
- "default.handlebars->31->510"
9017
+ "default.handlebars->31->513"
9018
]
9019
},
9020
{
@@ -9026,7 +9034,7 @@
9034
"zh-chs": "确认删除选定的用户组?",
9035
"zh-cht": "確認刪除所選用戶群?",
9036
"xloc": [
9029
- "default.handlebars->31->2070"
9037
+ "default.handlebars->31->2073"
9038
]
9039
},
9040
{
@@ -9046,7 +9054,7 @@
9054
"zh-chs": "确认删除用户{0}?",
9055
"zh-cht": "確認刪除用戶{0}?",
9056
"xloc": [
9049
- "default.handlebars->31->2233"
9057
+ "default.handlebars->31->2236"
9058
]
9059
},
9060
{
@@ -9066,7 +9074,7 @@
9074
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
9075
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
9076
"xloc": [
9069
- "default.handlebars->31->2135"
9077
+ "default.handlebars->31->2138"
9078
]
9079
},
9080
{
@@ -9086,7 +9094,7 @@
9094
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
9095
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
9096
"xloc": [
9089
- "default.handlebars->31->2265"
9097
+ "default.handlebars->31->2268"
9098
]
9099
},
9100
{
@@ -9106,8 +9114,8 @@
9114
"zh-chs": "确认将1个条目移动到此位置?",
9115
"zh-cht": "確認將1個條目移動到此位置?",
9116
"xloc": [
9109
- "default-mobile.handlebars->11->407",
9110
- "default.handlebars->31->1076",
9117
+ "default-mobile.handlebars->11->408",
9118
+ "default.handlebars->31->1079",
9119
"sharing.handlebars->11->72"
9120
]
9121
},
@@ -9128,7 +9136,7 @@
9136
"zh-chs": "确认将{0}个条目移到此位置?",
9137
"zh-cht": "確認將{0}個條目移到該位置?",
9138
"xloc": [
9131
- "default.handlebars->31->1075",
9139
+ "default.handlebars->31->1078",
9140
"sharing.handlebars->11->71"
9141
]
9142
},
@@ -9149,7 +9157,7 @@
9157
"zh-chs": "确认将{0}个条目移到该位置?",
9158
"zh-cht": "確認將{0}個條目移到該位置?",
9159
"xloc": [
9152
- "default-mobile.handlebars->11->406"
9160
+ "default-mobile.handlebars->11->407"
9161
]
9162
},
9163
{
@@ -9169,7 +9177,7 @@
9177
"zh-chs": "确认覆盖?",
9178
"zh-cht": "確認覆蓋?",
9179
"xloc": [
9172
- "default.handlebars->31->1805"
9180
+ "default.handlebars->31->1808"
9181
]
9182
},
9183
{
@@ -9189,8 +9197,8 @@
9197
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
9198
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
9199
"xloc": [
9192
- "default.handlebars->31->2125",
9193
- "default.handlebars->31->2256"
9200
+ "default.handlebars->31->2128",
9201
+ "default.handlebars->31->2259"
9202
]
9203
},
9204
{
@@ -9210,8 +9218,8 @@
9218
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
9219
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
9220
"xloc": [
9213
- "default.handlebars->31->2127",
9214
- "default.handlebars->31->2269"
9221
+ "default.handlebars->31->2130",
9222
+ "default.handlebars->31->2272"
9223
]
9224
},
9225
{
@@ -9231,7 +9239,7 @@
9239
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
9240
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
9241
"xloc": [
9234
- "default.handlebars->31->2258"
9242
+ "default.handlebars->31->2261"
9243
]
9244
},
9245
{
@@ -9251,7 +9259,7 @@
9259
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
9260
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
9261
"xloc": [
9254
- "default.handlebars->31->2261"
9262
+ "default.handlebars->31->2264"
9263
]
9264
},
9265
{
@@ -9271,8 +9279,8 @@
9279
"zh-chs": "确认删除访问权限?",
9280
"zh-cht": "確認刪除訪問權限?",
9281
"xloc": [
9274
- "default.handlebars->31->2259",
9275
- "default.handlebars->31->2262"
9282
+ "default.handlebars->31->2262",
9283
+ "default.handlebars->31->2265"
9284
]
9285
},
9286
{
@@ -9292,8 +9300,8 @@
9300
"zh-chs": "确认删除身份验证软件两步登录?",
9301
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
9302
"xloc": [
9295
- "default-mobile.handlebars->11->97",
9296
- "default.handlebars->31->1216"
9303
+ "default-mobile.handlebars->11->98",
9304
+ "default.handlebars->31->1219"
9305
]
9306
},
9307
{
@@ -9330,7 +9338,7 @@
9338
"zh-chs": "确认删除设备共享“{0}”?",
9339
"zh-cht": "確認刪除設備共享“{0}”?",
9340
"xloc": [
9333
- "default.handlebars->31->2254"
9341
+ "default.handlebars->31->2257"
9342
]
9343
},
9344
{
@@ -9371,7 +9379,7 @@
9379
"en": "Confirm removal of push authentication device?",
9380
"nl": "Verwijderen van push-authenticatieapparaat bevestigen?",
9381
"xloc": [
9374
- "default.handlebars->31->1218"
9382
+ "default.handlebars->31->1221"
9383
]
9384
},
9385
{
@@ -9391,7 +9399,7 @@
9399
"zh-chs": "确认删除用户“ {0} ”的权限?",
9400
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
9401
"xloc": [
9394
- "default.handlebars->31->1723"
9402
+ "default.handlebars->31->1726"
9403
]
9404
},
9405
{
@@ -9411,13 +9419,13 @@
9419
"zh-chs": "确认删除用户组“ {0} ”的权限?",
9420
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
9421
"xloc": [
9414
- "default.handlebars->31->1725"
9422
+ "default.handlebars->31->1728"
9423
]
9424
},
9425
{
9426
"en": "Confirm removal of this login token?",
9427
"xloc": [
9420
- "default.handlebars->31->1510"
9428
+ "default.handlebars->31->1513"
9429
]
9430
},
9431
{
@@ -9454,7 +9462,7 @@
9462
"zh-chs": "确认删除用户{0}?",
9463
"zh-cht": "確認刪除用戶{0}?",
9464
"xloc": [
9457
- "default-mobile.handlebars->11->601"
9465
+ "default-mobile.handlebars->11->602"
9466
]
9467
},
9468
{
@@ -9474,8 +9482,8 @@
9482
"zh-chs": "将{1}入口{2}中的{0}限制到此位置?",
9483
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
9484
"xloc": [
9477
- "default-mobile.handlebars->11->150",
9478
- "default.handlebars->31->1806"
9485
+ "default-mobile.handlebars->11->151",
9486
+ "default.handlebars->31->1809"
9487
]
9488
},
9489
{
@@ -9496,12 +9504,12 @@
9504
"zh-cht": "連接",
9505
"xloc": [
9506
"agent-translations.json",
9499
- "default-mobile.handlebars->11->387",
9507
+ "default-mobile.handlebars->11->388",
9508
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
9509
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
9510
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
9503
- "default.handlebars->31->1046",
9504
- "default.handlebars->31->1563",
9511
+ "default.handlebars->31->1049",
9512
+ "default.handlebars->31->1566",
9513
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
9514
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
9515
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -9532,7 +9540,7 @@
9540
"zh-chs": "全部连接",
9541
"zh-cht": "全部連接",
9542
"xloc": [
9535
- "default.handlebars->31->321",
9543
+ "default.handlebars->31->324",
9544
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
9545
]
9546
},
@@ -9553,7 +9561,7 @@
9561
"zh-chs": "连接到服务器",
9562
"zh-cht": "連接到伺服器",
9563
"xloc": [
9556
- "default.handlebars->31->1617"
9564
+ "default.handlebars->31->1620"
9565
]
9566
},
9567
{
@@ -9677,7 +9685,7 @@
9685
"zh-chs": "已连接的英特尔®AMT",
9686
"zh-cht": "已連接的Intel® AMT",
9687
"xloc": [
9680
- "default.handlebars->31->2363"
9688
+ "default.handlebars->31->2366"
9689
]
9690
},
9691
{
@@ -9697,7 +9705,7 @@
9705
"zh-chs": "已连接的用户",
9706
"zh-cht": "已连接的用户",
9707
"xloc": [
9700
- "default.handlebars->31->2368"
9708
+ "default.handlebars->31->2371"
9709
]
9710
},
9711
{
@@ -9717,8 +9725,8 @@
9725
"zh-chs": "现在已连接",
9726
"zh-cht": "現在已連接",
9727
"xloc": [
9720
- "default-mobile.handlebars->11->447",
9721
- "default.handlebars->31->1106"
9728
+ "default-mobile.handlebars->11->448",
9729
+ "default.handlebars->31->1109"
9730
]
9731
},
9732
{
@@ -9759,12 +9767,12 @@
9767
"zh-cht": "正在連線...",
9768
"xloc": [
9769
"default-mobile.handlebars->11->2",
9762
- "default-mobile.handlebars->11->423",
9770
+ "default-mobile.handlebars->11->424",
9771
"default-mobile.handlebars->11->48",
9764
- "default.handlebars->31->1097",
9765
- "default.handlebars->31->274",
9772
+ "default.handlebars->31->1100",
9773
"default.handlebars->31->277",
9767
- "default.handlebars->31->324",
9774
+ "default.handlebars->31->280",
9775
+ "default.handlebars->31->327",
9776
"default.handlebars->31->9",
9777
"desktop.handlebars->3->2",
9778
"sharing.handlebars->11->2",
@@ -9790,7 +9798,7 @@
9798
"zh-chs": "连接数量",
9799
"zh-cht": "連接數量",
9800
"xloc": [
9793
- "default.handlebars->31->2382"
9801
+ "default.handlebars->31->2385"
9802
]
9803
},
9804
{
@@ -9816,7 +9824,7 @@
9824
"zh-chs": "连接转发器",
9825
"zh-cht": "連接轉發器",
9826
"xloc": [
9819
- "default.handlebars->31->2414"
9827
+ "default.handlebars->31->2417"
9828
]
9829
},
9830
{
@@ -9876,10 +9884,10 @@
9884
"zh-chs": "连接性",
9885
"zh-cht": "連接性",
9886
"xloc": [
9879
- "default-mobile.handlebars->11->286",
9880
- "default.handlebars->31->1763",
9881
- "default.handlebars->31->265",
9882
- "default.handlebars->31->698",
9887
+ "default-mobile.handlebars->11->287",
9888
+ "default.handlebars->31->1766",
9889
+ "default.handlebars->31->268",
9890
+ "default.handlebars->31->701",
9891
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
9892
]
9893
},
@@ -9900,9 +9908,9 @@
9908
"zh-chs": "控制台",
9909
"zh-cht": "控制台",
9910
"xloc": [
9903
- "default-mobile.handlebars->11->302",
9904
- "default.handlebars->31->782",
9905
- "default.handlebars->31->804",
9911
+ "default-mobile.handlebars->11->303",
9912
+ "default.handlebars->31->785",
9913
+ "default.handlebars->31->807",
9914
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
9915
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
9916
"default.handlebars->contextMenu->cxconsole"
@@ -9925,7 +9933,7 @@
9933
"zh-chs": "控制台 -",
9934
"zh-cht": "控制台 -",
9935
"xloc": [
9928
- "default.handlebars->31->617"
9936
+ "default.handlebars->31->620"
9937
]
9938
},
9939
{
@@ -9945,8 +9953,8 @@
9953
"zh-chs": "控制",
9954
"zh-cht": "控制",
9955
"xloc": [
9948
- "default.handlebars->31->781",
9949
- "default.handlebars->31->803",
9956
+ "default.handlebars->31->784",
9957
+ "default.handlebars->31->806",
9958
"messenger.handlebars->remoteImage->3->2"
9959
]
9960
},
@@ -9967,7 +9975,7 @@
9975
"zh-chs": "Cookie编码器",
9976
"zh-cht": "Cookie編碼器",
9977
"xloc": [
9970
- "default.handlebars->31->2398"
9978
+ "default.handlebars->31->2401"
9979
]
9980
},
9981
{
@@ -10011,9 +10019,9 @@
10019
"zh-chs": "将MAC地址复制到剪贴板",
10020
"zh-cht": "將MAC地址複製到剪貼板",
10021
"xloc": [
10014
- "default.handlebars->31->104",
10022
"default.handlebars->31->107",
10016
- "default.handlebars->31->96"
10023
+ "default.handlebars->31->110",
10024
+ "default.handlebars->31->99"
10025
]
10026
},
10027
{
@@ -10033,7 +10041,7 @@
10041
"zh-chs": "将Windows 32位代理URL复制到剪贴板",
10042
"zh-cht": "將Windows 32位代理URL複製到剪貼板",
10043
"xloc": [
10036
- "default.handlebars->31->423"
10044
+ "default.handlebars->31->426"
10045
]
10046
},
10047
{
@@ -10053,7 +10061,7 @@
10061
"zh-chs": "将Windows 64位代理URL复制到剪贴板",
10062
"zh-cht": "將Windows 64位代理URL複製到剪貼板",
10063
"xloc": [
10056
- "default.handlebars->31->427"
10064
+ "default.handlebars->31->430"
10065
]
10066
},
10067
{
@@ -10073,18 +10081,18 @@
10081
"zh-chs": "将地址复制到剪贴板",
10082
"zh-cht": "將地址複製到剪貼板",
10083
"xloc": [
10076
- "default.handlebars->31->100",
10077
- "default.handlebars->31->102",
10078
- "default.handlebars->31->110",
10079
- "default.handlebars->31->112",
10080
- "default.handlebars->31->114",
10081
- "default.handlebars->31->116",
10082
- "default.handlebars->31->118",
10083
- "default.handlebars->31->120",
10084
- "default.handlebars->31->85",
10085
- "default.handlebars->31->87",
10086
- "default.handlebars->31->89",
10087
- "default.handlebars->31->98"
10084
+ "default.handlebars->31->101",
10085
+ "default.handlebars->31->103",
10086
+ "default.handlebars->31->105",
10087
+ "default.handlebars->31->113",
10088
+ "default.handlebars->31->115",
10089
+ "default.handlebars->31->117",
10090
+ "default.handlebars->31->119",
10091
+ "default.handlebars->31->121",
10092
+ "default.handlebars->31->123",
10093
+ "default.handlebars->31->88",
10094
+ "default.handlebars->31->90",
10095
+ "default.handlebars->31->92"
10096
]
10097
},
10098
{
@@ -10104,8 +10112,8 @@
10112
"zh-chs": "将代理URL复制到剪贴板",
10113
"zh-cht": "將代理URL複製到剪貼板",
10114
"xloc": [
10107
- "default.handlebars->31->451",
10108
- "default.handlebars->31->453"
10115
+ "default.handlebars->31->454",
10116
+ "default.handlebars->31->456"
10117
]
10118
},
10119
{
@@ -10125,12 +10133,12 @@
10133
"zh-chs": "复制连结到剪贴板",
10134
"zh-cht": "複製連結到剪貼板",
10135
"xloc": [
10128
- "default.handlebars->31->1774",
10129
- "default.handlebars->31->1793",
10130
- "default.handlebars->31->220",
10131
- "default.handlebars->31->242",
10132
- "default.handlebars->31->244",
10133
- "default.handlebars->31->404"
10136
+ "default.handlebars->31->1777",
10137
+ "default.handlebars->31->1796",
10138
+ "default.handlebars->31->223",
10139
+ "default.handlebars->31->245",
10140
+ "default.handlebars->31->247",
10141
+ "default.handlebars->31->407"
10142
]
10143
},
10144
{
@@ -10150,7 +10158,7 @@
10158
"zh-chs": "将macOS代理URL复制到剪贴板",
10159
"zh-cht": "將macOS代理URL複製到剪貼板",
10160
"xloc": [
10153
- "default.handlebars->31->436"
10161
+ "default.handlebars->31->439"
10162
]
10163
},
10164
{
@@ -10170,7 +10178,7 @@
10178
"zh-chs": "将名称复制到剪贴板",
10179
"zh-cht": "將名稱複製到剪貼板",
10180
"xloc": [
10173
- "default.handlebars->31->94"
10181
+ "default.handlebars->31->97"
10182
]
10183
},
10184
{
@@ -10192,8 +10200,8 @@
10200
"xloc": [
10201
"agentinvite.handlebars->container->column_l->5->linuxtab",
10202
"agentinvite.handlebars->container->column_l->5->linuxtab",
10195
- "default.handlebars->31->432",
10196
- "default.handlebars->31->447"
10203
+ "default.handlebars->31->435",
10204
+ "default.handlebars->31->450"
10205
]
10206
},
10207
{
@@ -10213,7 +10221,7 @@
10221
"zh-chs": "将有效代码复制到剪贴板",
10222
"zh-cht": "將有效代碼複製到剪貼板",
10223
"xloc": [
10216
- "default.handlebars->31->155"
10224
+ "default.handlebars->31->158"
10225
]
10226
},
10227
{
@@ -10233,7 +10241,7 @@
10241
"zh-chs": "复制:“{0}”到“{1}”",
10242
"zh-cht": "複製:“{0}”到“{1}”",
10243
"xloc": [
10236
- "default.handlebars->31->1865"
10244
+ "default.handlebars->31->1868"
10245
]
10246
},
10247
{
@@ -10379,7 +10387,7 @@
10387
"zh-chs": "核心服务器",
10388
"zh-cht": "核心伺服器",
10389
"xloc": [
10382
- "default.handlebars->31->2397"
10390
+ "default.handlebars->31->2400"
10391
]
10392
},
10393
{
@@ -10399,7 +10407,7 @@
10407
"zh-chs": "科西嘉文",
10408
"zh-cht": "科西嘉文",
10409
"xloc": [
10402
- "default.handlebars->31->1274"
10410
+ "default.handlebars->31->1277"
10411
]
10412
},
10413
{
@@ -10419,7 +10427,7 @@
10427
"zh-chs": "创建帐号",
10428
"zh-cht": "創建帳號",
10429
"xloc": [
10422
- "default.handlebars->31->2039",
10430
+ "default.handlebars->31->2042",
10431
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
10432
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
10433
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -10442,14 +10450,14 @@
10450
"zh-chs": "创建设备组",
10451
"zh-cht": "創建裝置群",
10452
"xloc": [
10445
- "default-mobile.handlebars->11->125"
10453
+ "default-mobile.handlebars->11->126"
10454
]
10455
},
10456
{
10457
"en": "Create Login Token",
10458
"xloc": [
10451
- "default.handlebars->31->1458",
10452
- "default.handlebars->31->245"
10459
+ "default.handlebars->31->1461",
10460
+ "default.handlebars->31->248"
10461
]
10462
},
10463
{
@@ -10469,7 +10477,7 @@
10477
"zh-chs": "创建用户组",
10478
"zh-cht": "創建用戶群",
10479
"xloc": [
10472
- "default.handlebars->31->2078"
10480
+ "default.handlebars->31->2081"
10481
]
10482
},
10483
{
@@ -10489,7 +10497,7 @@
10497
"zh-chs": "创建连结以与访客共享此设备",
10498
"zh-cht": "創建鏈結以與訪客共享此裝置",
10499
"xloc": [
10492
- "default.handlebars->31->713"
10500
+ "default.handlebars->31->716"
10501
]
10502
},
10503
{
@@ -10509,7 +10517,7 @@
10517
"zh-chs": "使用以下选项创建一个新的设备组。",
10518
"zh-cht": "使用以下選項創建一個新的裝置群。",
10519
"xloc": [
10512
- "default.handlebars->31->1488"
10520
+ "default.handlebars->31->1491"
10521
]
10522
},
10523
{
@@ -10529,13 +10537,13 @@
10537
"zh-chs": "创建一个新的设备组。",
10538
"zh-cht": "創建一個新的裝置群。",
10539
"xloc": [
10532
- "default.handlebars->31->267"
10540
+ "default.handlebars->31->270"
10541
]
10542
},
10543
{
10544
"en": "Create a temporary username and password that can be used as alternative login to your account. This is useful for allowing tools or other services to access your account.",
10545
"xloc": [
10538
- "default.handlebars->31->1439"
10546
+ "default.handlebars->31->1442"
10547
]
10548
},
10549
{
@@ -10555,7 +10563,7 @@
10563
"zh-chs": "创建文件夹(如果不存在)?",
10564
"zh-cht": "創建文件夾(如果不存在)?",
10565
"xloc": [
10558
- "default.handlebars->31->537"
10566
+ "default.handlebars->31->540"
10567
]
10568
},
10569
{
@@ -10575,7 +10583,7 @@
10583
"zh-chs": "创建文件夹:“{0}”",
10584
"zh-cht": "創建文件夾:“{0}”",
10585
"xloc": [
10578
- "default.handlebars->31->1858"
10586
+ "default.handlebars->31->1861"
10587
]
10588
},
10589
{
@@ -10601,7 +10609,7 @@
10609
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
10610
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
10611
"xloc": [
10604
- "default.handlebars->31->2003"
10612
+ "default.handlebars->31->2006"
10613
]
10614
},
10615
{
@@ -10643,7 +10651,7 @@
10651
"zh-chs": "创建的设备组:{0}",
10652
"zh-cht": "創建的設備組:{0}",
10653
"xloc": [
10646
- "default.handlebars->31->1869"
10654
+ "default.handlebars->31->1872"
10655
]
10656
},
10657
{
@@ -10663,7 +10671,7 @@
10671
"zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。",
10672
"zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
10673
"xloc": [
10666
- "default.handlebars->31->822"
10674
+ "default.handlebars->31->825"
10675
]
10676
},
10677
{
@@ -10717,7 +10725,7 @@
10725
"zh-chs": "创建",
10726
"zh-cht": "創建",
10727
"xloc": [
10720
- "default.handlebars->31->2164"
10728
+ "default.handlebars->31->2167"
10729
]
10730
},
10731
{
@@ -10737,7 +10745,7 @@
10745
"zh-chs": "创建时间",
10746
"zh-cht": "創作時間",
10747
"xloc": [
10740
- "default.handlebars->31->1545"
10748
+ "default.handlebars->31->1548"
10749
]
10750
},
10751
{
@@ -10779,8 +10787,8 @@
10787
"zh-chs": "创建者",
10788
"zh-cht": "創作者",
10789
"xloc": [
10782
- "default.handlebars->31->1543",
10783
- "default.handlebars->31->1544"
10790
+ "default.handlebars->31->1546",
10791
+ "default.handlebars->31->1547"
10792
]
10793
},
10794
{
@@ -10800,7 +10808,7 @@
10808
"zh-chs": "证书",
10809
"zh-cht": "證書",
10810
"xloc": [
10803
- "default.handlebars->31->1515"
10811
+ "default.handlebars->31->1518"
10812
]
10813
},
10814
{
@@ -10820,7 +10828,7 @@
10828
"zh-chs": "克里语",
10829
"zh-cht": "克里語",
10830
"xloc": [
10823
- "default.handlebars->31->1275"
10831
+ "default.handlebars->31->1278"
10832
]
10833
},
10834
{
@@ -10840,7 +10848,7 @@
10848
"zh-chs": "克罗地亚文",
10849
"zh-cht": "克羅地亞文",
10850
"xloc": [
10843
- "default.handlebars->31->1276"
10851
+ "default.handlebars->31->1279"
10852
]
10853
},
10854
{
@@ -10904,11 +10912,11 @@
10912
"zh-chs": "Ctrl",
10913
"zh-cht": "Ctrl",
10914
"xloc": [
10907
- "default-mobile.handlebars->11->374",
10908
- "default-mobile.handlebars->11->378",
10909
- "default.handlebars->31->1003",
10915
+ "default-mobile.handlebars->11->375",
10916
+ "default-mobile.handlebars->11->379",
10917
+ "default.handlebars->31->1002",
10918
+ "default.handlebars->31->1006",
10919
"default.handlebars->31->57",
10911
- "default.handlebars->31->999",
10920
"sharing.handlebars->11->24",
10921
"terminal.handlebars->3->6"
10922
]
@@ -10917,7 +10925,7 @@
10925
"en": "Ctrl + ",
10926
"nl": "Ctrl + ",
10927
"xloc": [
10920
- "default-mobile.handlebars->11->386"
10928
+ "default-mobile.handlebars->11->387"
10929
]
10930
},
10931
{
@@ -11018,7 +11026,7 @@
11026
"zh-chs": "当前版本",
11027
"zh-cht": "當前版本",
11028
"xloc": [
11021
- "default.handlebars->31->125"
11029
+ "default.handlebars->31->128"
11030
]
11031
},
11032
{
@@ -11027,8 +11035,8 @@
11035
"fr": "Le mot de passe actuel n'est pas correct.",
11036
"de": "Aktuelles Password nicht in korrekt.",
11037
"xloc": [
11030
- "default-mobile.handlebars->11->632",
11031
- "default.handlebars->31->2337"
11038
+ "default-mobile.handlebars->11->633",
11039
+ "default.handlebars->31->2340"
11040
]
11041
},
11042
{
@@ -11037,7 +11045,7 @@
11045
"fr": "Personnaliser",
11046
"de": "Anpassen",
11047
"xloc": [
11040
- "default-mobile.handlebars->11->355"
11048
+ "default-mobile.handlebars->11->356"
11049
]
11050
},
11051
{
@@ -11090,7 +11098,7 @@
11098
"zh-chs": "捷克文",
11099
"zh-cht": "捷克文",
11100
"xloc": [
11093
- "default.handlebars->31->1277"
11101
+ "default.handlebars->31->1280"
11102
]
11103
},
11104
{
@@ -11110,7 +11118,7 @@
11118
"zh-chs": "DNS suffix",
11119
"zh-cht": "DNS suffix",
11120
"xloc": [
11113
- "default.handlebars->31->93"
11121
+ "default.handlebars->31->96"
11122
]
11123
},
11124
{
@@ -11130,7 +11138,7 @@
11138
"zh-chs": "丹麦文",
11139
"zh-cht": "丹麥文",
11140
"xloc": [
11133
- "default.handlebars->31->1278"
11141
+ "default.handlebars->31->1281"
11142
]
11143
},
11144
{
@@ -11139,7 +11147,7 @@
11147
"fr": "Thême sombre",
11148
"de": "Dunklen Modus",
11149
"xloc": [
11142
- "default-mobile.handlebars->11->84",
11150
+ "default-mobile.handlebars->11->85",
11151
"default.handlebars->31->60"
11152
]
11153
},
@@ -11160,7 +11168,7 @@
11168
"zh-chs": "数据通道",
11169
"zh-cht": "數據通道",
11170
"xloc": [
11163
- "default.handlebars->31->966",
11171
+ "default.handlebars->31->969",
11172
"desktop.handlebars->3->11",
11173
"sharing.handlebars->11->11"
11174
]
@@ -11182,7 +11190,7 @@
11190
"zh-chs": "日期和时间",
11191
"zh-cht": "日期和時間",
11192
"xloc": [
11185
- "default.handlebars->31->1436"
11193
+ "default.handlebars->31->1439"
11194
]
11195
},
11196
{
@@ -11202,8 +11210,8 @@
11210
"zh-chs": "天",
11211
"zh-cht": "天",
11212
"xloc": [
11205
- "default-mobile.handlebars->11->330",
11206
- "default.handlebars->31->893"
11213
+ "default-mobile.handlebars->11->331",
11214
+ "default.handlebars->31->896"
11215
]
11216
},
11217
{
@@ -11223,7 +11231,7 @@
11231
"zh-chs": "停用",
11232
"zh-cht": "停用",
11233
"xloc": [
11226
- "default.handlebars->31->1596"
11234
+ "default.handlebars->31->1599"
11235
]
11236
},
11237
{
@@ -11243,7 +11251,7 @@
11251
"zh-chs": "如果设置停用CCM",
11252
"zh-cht": "如果設置停用CCM",
11253
"xloc": [
11246
- "default.handlebars->31->1608"
11254
+ "default.handlebars->31->1611"
11255
]
11256
},
11257
{
@@ -11280,8 +11288,8 @@
11288
"zh-chs": "沉睡",
11289
"zh-cht": "沉睡",
11290
"xloc": [
11283
- "default-mobile.handlebars->11->223",
11284
- "default.handlebars->31->464"
11291
+ "default-mobile.handlebars->11->224",
11292
+ "default.handlebars->31->467"
11293
]
11294
},
11295
{
@@ -11301,10 +11309,10 @@
11309
"zh-chs": "默认",
11310
"zh-cht": "默認",
11311
"xloc": [
11304
- "default.handlebars->31->2026",
11305
- "default.handlebars->31->2074",
11306
- "default.handlebars->31->2085",
11307
- "default.handlebars->31->2153"
11312
+ "default.handlebars->31->2029",
11313
+ "default.handlebars->31->2077",
11314
+ "default.handlebars->31->2088",
11315
+ "default.handlebars->31->2156"
11316
]
11317
},
11318
{
@@ -11313,8 +11321,8 @@
11321
"nl": "Del",
11322
"de": "Löschen",
11323
"xloc": [
11316
- "default-mobile.handlebars->11->362",
11317
- "default.handlebars->31->987"
11324
+ "default-mobile.handlebars->11->363",
11325
+ "default.handlebars->31->990"
11326
]
11327
},
11328
{
@@ -11334,14 +11342,14 @@
11342
"zh-chs": "删除",
11343
"zh-cht": "刪除",
11344
"xloc": [
11337
- "default-mobile.handlebars->11->145",
11338
- "default-mobile.handlebars->11->397",
11345
+ "default-mobile.handlebars->11->146",
11346
+ "default-mobile.handlebars->11->398",
11347
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
11348
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
11349
"default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
11342
- "default.handlebars->31->1065",
11343
- "default.handlebars->31->1800",
11344
- "default.handlebars->31->587",
11350
+ "default.handlebars->31->1068",
11351
+ "default.handlebars->31->1803",
11352
+ "default.handlebars->31->590",
11353
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
11354
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
11355
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -11372,8 +11380,8 @@
11380
"zh-chs": "删除帐户",
11381
"zh-cht": "刪除帳戶",
11382
"xloc": [
11375
- "default-mobile.handlebars->11->107",
11376
- "default.handlebars->31->1473"
11383
+ "default-mobile.handlebars->11->108",
11384
+ "default.handlebars->31->1476"
11385
]
11386
},
11387
{
@@ -11393,7 +11401,7 @@
11401
"zh-chs": "删除帐户",
11402
"zh-cht": "刪除帳戶",
11403
"xloc": [
11396
- "default.handlebars->31->1993"
11404
+ "default.handlebars->31->1996"
11405
]
11406
},
11407
{
@@ -11413,8 +11421,8 @@
11421
"zh-chs": "删除设备",
11422
"zh-cht": "刪除裝置",
11423
"xloc": [
11416
- "default-mobile.handlebars->11->291",
11417
- "default.handlebars->31->717"
11424
+ "default-mobile.handlebars->11->292",
11425
+ "default.handlebars->31->720"
11426
]
11427
},
11428
{
@@ -11434,10 +11442,10 @@
11442
"zh-chs": "删除群组",
11443
"zh-cht": "刪除群組",
11444
"xloc": [
11437
- "default-mobile.handlebars->11->544",
11438
- "default-mobile.handlebars->11->547",
11439
- "default.handlebars->31->1592",
11440
- "default.handlebars->31->1625"
11445
+ "default-mobile.handlebars->11->545",
11446
+ "default-mobile.handlebars->11->548",
11447
+ "default.handlebars->31->1595",
11448
+ "default.handlebars->31->1628"
11449
]
11450
},
11451
{
@@ -11457,8 +11465,8 @@
11465
"zh-chs": "删除节点",
11466
"zh-cht": "刪除節點",
11467
"xloc": [
11460
- "default-mobile.handlebars->11->338",
11461
- "default.handlebars->31->919"
11468
+ "default-mobile.handlebars->11->339",
11469
+ "default.handlebars->31->922"
11470
]
11471
},
11472
{
@@ -11478,7 +11486,7 @@
11486
"zh-chs": "删除节点",
11487
"zh-cht": "刪除節點",
11488
"xloc": [
11481
- "default.handlebars->31->512"
11489
+ "default.handlebars->31->515"
11490
]
11491
},
11492
{
@@ -11498,7 +11506,7 @@
11506
"zh-chs": "删除用户",
11507
"zh-cht": "刪除用戶",
11508
"xloc": [
11501
- "default.handlebars->31->2205"
11509
+ "default.handlebars->31->2208"
11510
]
11511
},
11512
{
@@ -11518,8 +11526,8 @@
11526
"zh-chs": "删除用户群组",
11527
"zh-cht": "刪除用戶群組",
11528
"xloc": [
11521
- "default.handlebars->31->2123",
11522
- "default.handlebars->31->2133"
11529
+ "default.handlebars->31->2126",
11530
+ "default.handlebars->31->2136"
11531
]
11532
},
11533
{
@@ -11539,7 +11547,7 @@
11547
"zh-chs": "删除用户群组",
11548
"zh-cht": "刪除用戶群組",
11549
"xloc": [
11542
- "default.handlebars->31->2072"
11550
+ "default.handlebars->31->2075"
11551
]
11552
},
11553
{
@@ -11559,7 +11567,7 @@
11567
"zh-chs": "删除用户{0}",
11568
"zh-cht": "刪除用戶{0}",
11569
"xloc": [
11562
- "default.handlebars->31->2232"
11570
+ "default.handlebars->31->2235"
11571
]
11572
},
11573
{
@@ -11580,7 +11588,7 @@
11588
"zh-cht": "刪除帳戶",
11589
"xloc": [
11590
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
11583
- "default.handlebars->31->1989",
11591
+ "default.handlebars->31->1992",
11592
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
11593
]
11594
},
@@ -11601,7 +11609,7 @@
11609
"zh-chs": "删除设备",
11610
"zh-cht": "刪除裝置",
11611
"xloc": [
11604
- "default.handlebars->31->502"
11612
+ "default.handlebars->31->505"
11613
]
11614
},
11615
{
@@ -11621,7 +11629,7 @@
11629
"zh-chs": "删除群组",
11630
"zh-cht": "刪除群組",
11631
"xloc": [
11624
- "default.handlebars->31->2068"
11632
+ "default.handlebars->31->2071"
11633
]
11634
},
11635
{
@@ -11641,7 +11649,7 @@
11649
"zh-chs": "删除项目?",
11650
"zh-cht": "刪除項目?",
11651
"xloc": [
11644
- "default.handlebars->31->588"
11652
+ "default.handlebars->31->591"
11653
]
11654
},
11655
{
@@ -11661,7 +11669,7 @@
11669
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
11670
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
11671
"xloc": [
11664
- "default.handlebars->31->1860"
11672
+ "default.handlebars->31->1863"
11673
]
11674
},
11675
{
@@ -11681,10 +11689,10 @@
11689
"zh-chs": "删除所选项目?",
11690
"zh-cht": "刪除所選項目?",
11691
"xloc": [
11684
- "default-mobile.handlebars->11->147",
11685
- "default-mobile.handlebars->11->399",
11686
- "default.handlebars->31->1067",
11687
- "default.handlebars->31->1802",
11692
+ "default-mobile.handlebars->11->148",
11693
+ "default-mobile.handlebars->11->400",
11694
+ "default.handlebars->31->1070",
11695
+ "default.handlebars->31->1805",
11696
"sharing.handlebars->11->63"
11697
]
11698
},
@@ -11705,7 +11713,7 @@
11713
"zh-chs": "删除用户群组{0}?",
11714
"zh-cht": "刪除用戶群組{0}?",
11715
"xloc": [
11708
- "default.handlebars->31->2131"
11716
+ "default.handlebars->31->2134"
11717
]
11718
},
11719
{
@@ -11725,10 +11733,10 @@
11733
"zh-chs": "删除{0}个所选项目?",
11734
"zh-cht": "刪除{0}個所選項目?",
11735
"xloc": [
11728
- "default-mobile.handlebars->11->146",
11729
- "default-mobile.handlebars->11->398",
11730
- "default.handlebars->31->1066",
11731
- "default.handlebars->31->1801",
11736
+ "default-mobile.handlebars->11->147",
11737
+ "default-mobile.handlebars->11->399",
11738
+ "default.handlebars->31->1069",
11739
+ "default.handlebars->31->1804",
11740
"sharing.handlebars->11->62"
11741
]
11742
},
@@ -11749,7 +11757,7 @@
11757
"zh-chs": "删除{0}?",
11758
"zh-cht": "刪除{0}?",
11759
"xloc": [
11752
- "default-mobile.handlebars->11->339"
11760
+ "default-mobile.handlebars->11->340"
11761
]
11762
},
11763
{
@@ -11769,7 +11777,7 @@
11777
"zh-chs": "删除:“{0}”",
11778
"zh-cht": "刪除:“{0}”",
11779
"xloc": [
11772
- "default.handlebars->31->1859"
11780
+ "default.handlebars->31->1862"
11781
]
11782
},
11783
{
@@ -11789,7 +11797,7 @@
11797
"zh-chs": "删除:“{0}”,{1}个元素已删除",
11798
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
11799
"xloc": [
11792
- "default.handlebars->31->1861"
11800
+ "default.handlebars->31->1864"
11801
]
11802
},
11803
{
@@ -11809,8 +11817,8 @@
11817
"zh-chs": "被拒绝",
11818
"zh-cht": "被拒絕",
11819
"xloc": [
11812
- "default-mobile.handlebars->11->349",
11813
- "default.handlebars->31->962",
11820
+ "default-mobile.handlebars->11->350",
11821
+ "default.handlebars->31->965",
11822
"desktop.handlebars->3->7",
11823
"sharing.handlebars->11->29",
11824
"sharing.handlebars->11->7",
@@ -11906,26 +11914,26 @@
11914
"zh-chs": "描述",
11915
"zh-cht": "描述",
11916
"xloc": [
11909
- "default-mobile.handlebars->11->124",
11910
- "default-mobile.handlebars->11->256",
11917
+ "default-mobile.handlebars->11->125",
11918
"default-mobile.handlebars->11->257",
11912
- "default-mobile.handlebars->11->344",
11913
- "default-mobile.handlebars->11->460",
11914
- "default-mobile.handlebars->11->535",
11915
- "default-mobile.handlebars->11->549",
11916
- "default.handlebars->31->1119",
11917
- "default.handlebars->31->1129",
11918
- "default.handlebars->31->1493",
11919
- "default.handlebars->31->1540",
11920
- "default.handlebars->31->1627",
11921
- "default.handlebars->31->2077",
11922
- "default.handlebars->31->2087",
11923
- "default.handlebars->31->2088",
11924
- "default.handlebars->31->2129",
11925
- "default.handlebars->31->628",
11926
- "default.handlebars->31->629",
11927
- "default.handlebars->31->92",
11928
- "default.handlebars->31->957",
11919
+ "default-mobile.handlebars->11->258",
11920
+ "default-mobile.handlebars->11->345",
11921
+ "default-mobile.handlebars->11->461",
11922
+ "default-mobile.handlebars->11->536",
11923
+ "default-mobile.handlebars->11->550",
11924
+ "default.handlebars->31->1122",
11925
+ "default.handlebars->31->1132",
11926
+ "default.handlebars->31->1496",
11927
+ "default.handlebars->31->1543",
11928
+ "default.handlebars->31->1630",
11929
+ "default.handlebars->31->2080",
11930
+ "default.handlebars->31->2090",
11931
+ "default.handlebars->31->2091",
11932
+ "default.handlebars->31->2132",
11933
+ "default.handlebars->31->631",
11934
+ "default.handlebars->31->632",
11935
+ "default.handlebars->31->95",
11936
+ "default.handlebars->31->960",
11937
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
11938
]
11939
},
@@ -11963,13 +11971,13 @@
11971
"zh-chs": "桌面",
11972
"zh-cht": "桌面",
11973
"xloc": [
11966
- "default-mobile.handlebars->11->298",
11967
- "default.handlebars->31->1029",
11968
- "default.handlebars->31->1633",
11969
- "default.handlebars->31->2287",
11970
- "default.handlebars->31->593",
11971
- "default.handlebars->31->762",
11972
- "default.handlebars->31->824",
11974
+ "default-mobile.handlebars->11->299",
11975
+ "default.handlebars->31->1032",
11976
+ "default.handlebars->31->1636",
11977
+ "default.handlebars->31->2290",
11978
+ "default.handlebars->31->596",
11979
+ "default.handlebars->31->765",
11980
+ "default.handlebars->31->827",
11981
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
11982
"default.handlebars->contextMenu->cxdesktop",
11983
"desktop.handlebars->3->23",
@@ -11981,23 +11989,23 @@
11989
"en": "Desktop + Files",
11990
"nl": "Desktop + Bestanden",
11991
"xloc": [
11984
- "default.handlebars->31->766",
11985
- "default.handlebars->31->827"
11992
+ "default.handlebars->31->769",
11993
+ "default.handlebars->31->830"
11994
]
11995
},
11996
{
11997
"en": "Desktop + Terminal",
11998
"nl": "Desktop + Terminal",
11999
"xloc": [
11992
- "default.handlebars->31->763"
12000
+ "default.handlebars->31->766"
12001
]
12002
},
12003
{
12004
"en": "Desktop + Terminal + Files",
12005
"nl": "Desktop + Terminal + Bestanden",
12006
"xloc": [
11999
- "default.handlebars->31->767",
12000
- "default.handlebars->31->829"
12007
+ "default.handlebars->31->770",
12008
+ "default.handlebars->31->832"
12009
]
12010
},
12011
{
@@ -12037,10 +12045,10 @@
12045
"zh-chs": "桌面通知",
12046
"zh-cht": "桌面通知",
12047
"xloc": [
12040
- "default.handlebars->31->1554",
12041
- "default.handlebars->31->2092",
12042
- "default.handlebars->31->2179",
12043
- "default.handlebars->31->679"
12048
+ "default.handlebars->31->1557",
12049
+ "default.handlebars->31->2095",
12050
+ "default.handlebars->31->2182",
12051
+ "default.handlebars->31->682"
12052
]
12053
},
12054
{
@@ -12060,10 +12068,10 @@
12068
"zh-chs": "桌面提示",
12069
"zh-cht": "桌面提示",
12070
"xloc": [
12063
- "default.handlebars->31->1553",
12064
- "default.handlebars->31->2091",
12065
- "default.handlebars->31->2178",
12066
- "default.handlebars->31->678"
12071
+ "default.handlebars->31->1556",
12072
+ "default.handlebars->31->2094",
12073
+ "default.handlebars->31->2181",
12074
+ "default.handlebars->31->681"
12075
]
12076
},
12077
{
@@ -12083,17 +12091,17 @@
12091
"zh-chs": "桌面提示+工具栏",
12092
"zh-cht": "桌面提示+工具欄",
12093
"xloc": [
12086
- "default.handlebars->31->1551",
12087
- "default.handlebars->31->2089",
12088
- "default.handlebars->31->2176",
12089
- "default.handlebars->31->676"
12094
+ "default.handlebars->31->1554",
12095
+ "default.handlebars->31->2092",
12096
+ "default.handlebars->31->2179",
12097
+ "default.handlebars->31->679"
12098
]
12099
},
12100
{
12101
"en": "Desktop Session",
12102
"nl": "Desktop sessie",
12103
"xloc": [
12096
- "default.handlebars->31->2280"
12104
+ "default.handlebars->31->2283"
12105
]
12106
},
12107
{
@@ -12156,10 +12164,10 @@
12164
"zh-chs": "桌面工具栏",
12165
"zh-cht": "桌面工具欄",
12166
"xloc": [
12159
- "default.handlebars->31->1552",
12160
- "default.handlebars->31->2090",
12161
- "default.handlebars->31->2177",
12162
- "default.handlebars->31->677"
12167
+ "default.handlebars->31->1555",
12168
+ "default.handlebars->31->2093",
12169
+ "default.handlebars->31->2180",
12170
+ "default.handlebars->31->680"
12171
]
12172
},
12173
{
@@ -12168,7 +12176,7 @@
12176
"fr": "Bureau en visualisation seulement",
12177
"de": "Desktop, nur Ansehen",
12178
"xloc": [
12171
- "default.handlebars->31->830"
12179
+ "default.handlebars->31->833"
12180
]
12181
},
12182
{
@@ -12188,7 +12196,7 @@
12196
"zh-chs": "桌面时段",
12197
"zh-cht": "桌面時段",
12198
"xloc": [
12191
- "default.handlebars->31->1028"
12199
+ "default.handlebars->31->1031"
12200
]
12201
},
12202
{
@@ -12239,7 +12247,7 @@
12247
"zh-chs": "细节",
12248
"zh-cht": "細節",
12249
"xloc": [
12242
- "default-mobile.handlebars->11->301",
12250
+ "default-mobile.handlebars->11->302",
12251
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
12252
"default.handlebars->contextMenu->cxdetails"
12253
]
@@ -12281,12 +12289,12 @@
12289
"zh-chs": "设备",
12290
"zh-cht": "裝置",
12291
"xloc": [
12284
- "default-mobile.handlebars->11->455",
12285
- "default.handlebars->31->1114",
12286
- "default.handlebars->31->1222",
12287
- "default.handlebars->31->1656",
12288
- "default.handlebars->31->201",
12289
- "default.handlebars->31->2251",
12292
+ "default-mobile.handlebars->11->456",
12293
+ "default.handlebars->31->1117",
12294
+ "default.handlebars->31->1225",
12295
+ "default.handlebars->31->1659",
12296
+ "default.handlebars->31->204",
12297
+ "default.handlebars->31->2254",
12298
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
12299
]
12300
},
@@ -12307,9 +12315,9 @@
12315
"zh-chs": "设备指令",
12316
"zh-cht": "裝置指令",
12317
"xloc": [
12310
- "default-mobile.handlebars->11->319",
12311
- "default-mobile.handlebars->11->328",
12312
- "default.handlebars->31->876"
12318
+ "default-mobile.handlebars->11->320",
12319
+ "default-mobile.handlebars->11->329",
12320
+ "default.handlebars->31->879"
12321
]
12322
},
12323
{
@@ -12358,16 +12366,16 @@
12366
"zh-cht": "裝置群",
12367
"xloc": [
12368
"agent-translations.json",
12361
- "default-mobile.handlebars->11->610",
12362
- "default.handlebars->31->1651",
12369
+ "default-mobile.handlebars->11->611",
12370
"default.handlebars->31->1654",
12364
- "default.handlebars->31->1655",
12365
- "default.handlebars->31->1940",
12366
- "default.handlebars->31->2115",
12367
- "default.handlebars->31->2121",
12368
- "default.handlebars->31->2239",
12369
- "default.handlebars->31->2296",
12370
- "default.handlebars->31->2315"
12371
+ "default.handlebars->31->1657",
12372
+ "default.handlebars->31->1658",
12373
+ "default.handlebars->31->1943",
12374
+ "default.handlebars->31->2118",
12375
+ "default.handlebars->31->2124",
12376
+ "default.handlebars->31->2242",
12377
+ "default.handlebars->31->2299",
12378
+ "default.handlebars->31->2318"
12379
]
12380
},
12381
{
@@ -12387,8 +12395,8 @@
12395
"zh-chs": "设备组用户",
12396
"zh-cht": "裝置群用戶",
12397
"xloc": [
12390
- "default-mobile.handlebars->11->599",
12391
- "default.handlebars->31->1721"
12398
+ "default-mobile.handlebars->11->600",
12399
+ "default.handlebars->31->1724"
12400
]
12401
},
12402
{
@@ -12409,11 +12417,11 @@
12417
"zh-cht": "裝置群",
12418
"xloc": [
12419
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
12412
- "default.handlebars->31->1956",
12413
- "default.handlebars->31->2062",
12414
- "default.handlebars->31->2102",
12415
- "default.handlebars->31->2173",
12416
- "default.handlebars->31->2366",
12420
+ "default.handlebars->31->1959",
12421
+ "default.handlebars->31->2065",
12422
+ "default.handlebars->31->2105",
12423
+ "default.handlebars->31->2176",
12424
+ "default.handlebars->31->2369",
12425
"default.handlebars->container->column_l->p2->p2info->9"
12426
]
12427
},
@@ -12434,7 +12442,7 @@
12442
"zh-chs": "设备信息导出",
12443
"zh-cht": "裝置訊息輸出",
12444
"xloc": [
12437
- "default.handlebars->31->552"
12445
+ "default.handlebars->31->555"
12446
]
12447
},
12448
{
@@ -12454,7 +12462,7 @@
12462
"zh-chs": "设备位置",
12463
"zh-cht": "裝置位置",
12464
"xloc": [
12457
- "default.handlebars->31->920"
12465
+ "default.handlebars->31->923"
12466
]
12467
},
12468
{
@@ -12474,7 +12482,7 @@
12482
"zh-chs": "设备消息",
12483
"zh-cht": "裝置訊息",
12484
"xloc": [
12477
- "default.handlebars->31->819"
12485
+ "default.handlebars->31->822"
12486
]
12487
},
12488
{
@@ -12494,10 +12502,10 @@
12502
"zh-chs": "设备名称",
12503
"zh-cht": "裝置名稱",
12504
"xloc": [
12497
- "default-mobile.handlebars->11->342",
12498
- "default.handlebars->31->2295",
12499
- "default.handlebars->31->338",
12500
- "default.handlebars->31->955",
12505
+ "default-mobile.handlebars->11->343",
12506
+ "default.handlebars->31->2298",
12507
+ "default.handlebars->31->341",
12508
+ "default.handlebars->31->958",
12509
"player.handlebars->3->9"
12510
]
12511
},
@@ -12518,8 +12526,8 @@
12526
"zh-chs": "设备通知",
12527
"zh-cht": "裝置通知",
12528
"xloc": [
12521
- "default.handlebars->31->533",
12522
- "default.handlebars->31->821"
12529
+ "default.handlebars->31->536",
12530
+ "default.handlebars->31->824"
12531
]
12532
},
12533
{
@@ -12528,7 +12536,7 @@
12536
"fr": "Lien de jumelage de l'appareil",
12537
"de": "Gerät Verbindungs-Link",
12538
"xloc": [
12531
- "default-mobile.handlebars->11->553"
12539
+ "default-mobile.handlebars->11->554"
12540
]
12541
},
12542
{
@@ -12565,7 +12573,7 @@
12573
"zh-chs": "设备共享链接",
12574
"zh-cht": "設備共享鏈接",
12575
"xloc": [
12568
- "default.handlebars->31->759"
12576
+ "default.handlebars->31->762"
12577
]
12578
},
12579
{
@@ -12585,7 +12593,7 @@
12593
"zh-chs": "设备提示",
12594
"zh-cht": "裝置吐司",
12595
"xloc": [
12588
- "default-mobile.handlebars->11->296"
12596
+ "default-mobile.handlebars->11->297"
12597
]
12598
},
12599
{
@@ -12593,7 +12601,7 @@
12601
"nl": "Kolomweergave apparaat",
12602
"de": "Aufteilen der Geräteansicht",
12603
"xloc": [
12596
- "default.handlebars->31->250"
12604
+ "default.handlebars->31->253"
12605
]
12606
},
12607
{
@@ -12613,8 +12621,8 @@
12621
"zh-chs": "设备连接。",
12622
"zh-cht": "裝置連接。",
12623
"xloc": [
12616
- "default.handlebars->31->1461",
12617
- "default.handlebars->31->1742"
12624
+ "default.handlebars->31->1464",
12625
+ "default.handlebars->31->1745"
12626
]
12627
},
12628
{
@@ -12634,8 +12642,8 @@
12642
"zh-chs": "设备断开连接。",
12643
"zh-cht": "裝置斷開連接。",
12644
"xloc": [
12637
- "default.handlebars->31->1462",
12638
- "default.handlebars->31->1743"
12645
+ "default.handlebars->31->1465",
12646
+ "default.handlebars->31->1746"
12647
]
12648
},
12649
{
@@ -12655,7 +12663,7 @@
12663
"zh-chs": "创建的设备组:{0}",
12664
"zh-cht": "設備組已創建:{0}",
12665
"xloc": [
12658
- "default.handlebars->31->1890"
12666
+ "default.handlebars->31->1893"
12667
]
12668
},
12669
{
@@ -12675,7 +12683,7 @@
12683
"zh-chs": "设备组已删除:{0}",
12684
"zh-cht": "設備組已刪除:{0}",
12685
"xloc": [
12678
- "default.handlebars->31->1891"
12686
+ "default.handlebars->31->1894"
12687
]
12688
},
12689
{
@@ -12695,7 +12703,7 @@
12703
"zh-chs": "设备组成员身份已更改:{0}",
12704
"zh-cht": "設備組成員身份已更改:{0}",
12705
"xloc": [
12698
- "default.handlebars->31->1892"
12706
+ "default.handlebars->31->1895"
12707
]
12708
},
12709
{
@@ -12715,8 +12723,8 @@
12723
"zh-chs": "其他设备组管理员可以查看和更改设备组注释。",
12724
"zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。",
12725
"xloc": [
12718
- "default-mobile.handlebars->11->326",
12719
- "default.handlebars->31->816"
12726
+ "default-mobile.handlebars->11->327",
12727
+ "default.handlebars->31->819"
12728
]
12729
},
12730
{
@@ -12736,7 +12744,7 @@
12744
"zh-chs": "设备组通知已更改",
12745
"zh-cht": "設備組通知已更改",
12746
"xloc": [
12739
- "default.handlebars->31->1887"
12747
+ "default.handlebars->31->1890"
12748
]
12749
},
12750
{
@@ -12756,7 +12764,7 @@
12764
"zh-chs": "未删除的设备组:{0}",
12765
"zh-cht": "未刪除的設備組:{0}",
12766
"xloc": [
12759
- "default.handlebars->31->1870"
12767
+ "default.handlebars->31->1873"
12768
]
12769
},
12770
{
@@ -12776,10 +12784,10 @@
12784
"zh-chs": "设备由电池供电",
12785
"zh-cht": "裝置由電池供電",
12786
"xloc": [
12779
- "default-mobile.handlebars->11->191",
12780
- "default-mobile.handlebars->11->247",
12781
- "default.handlebars->31->282",
12782
- "default.handlebars->31->614"
12787
+ "default-mobile.handlebars->11->192",
12788
+ "default-mobile.handlebars->11->248",
12789
+ "default.handlebars->31->285",
12790
+ "default.handlebars->31->617"
12791
]
12792
},
12793
{
@@ -12799,7 +12807,7 @@
12807
"zh-chs": "检测到设备,但无法获得电源状态。",
12808
"zh-cht": "檢測到裝置,但無法獲得電源狀態。",
12809
"xloc": [
12802
- "default.handlebars->31->469"
12810
+ "default.handlebars->31->472"
12811
]
12812
},
12813
{
@@ -12819,8 +12827,8 @@
12827
"zh-chs": "设备正在休眠(S4)",
12828
"zh-cht": "裝置正在休眠(S4)",
12829
"xloc": [
12822
- "default-mobile.handlebars->11->231",
12823
- "default.handlebars->31->475"
12830
+ "default-mobile.handlebars->11->232",
12831
+ "default.handlebars->31->478"
12832
]
12833
},
12834
{
@@ -12840,8 +12848,8 @@
12848
"zh-chs": "设备处于深度睡眠状态(S3)",
12849
"zh-cht": "裝置處於深度睡眠狀態(S3)",
12850
"xloc": [
12843
- "default-mobile.handlebars->11->230",
12844
- "default.handlebars->31->474"
12851
+ "default-mobile.handlebars->11->231",
12852
+ "default.handlebars->31->477"
12853
]
12854
},
12855
{
@@ -12861,7 +12869,7 @@
12869
"zh-chs": "设备处于深度睡眠状态(S3)。",
12870
"zh-cht": "裝置處於深度睡眠狀態(S3)。",
12871
"xloc": [
12864
- "default.handlebars->31->463"
12872
+ "default.handlebars->31->466"
12873
]
12874
},
12875
{
@@ -12881,7 +12889,7 @@
12889
"zh-chs": "设备处于休眠状态(S4)。",
12890
"zh-cht": "裝置處於休眠狀態(S4)。",
12891
"xloc": [
12884
- "default.handlebars->31->465"
12892
+ "default.handlebars->31->468"
12893
]
12894
},
12895
{
@@ -12901,7 +12909,7 @@
12909
"zh-chs": "设备处于关机状态(S5)。",
12910
"zh-cht": "裝置處於關機狀態(S5)。",
12911
"xloc": [
12904
- "default.handlebars->31->467"
12912
+ "default.handlebars->31->470"
12913
]
12914
},
12915
{
@@ -12921,8 +12929,8 @@
12929
"zh-chs": "设备处于睡眠状态(S1)",
12930
"zh-cht": "裝置處於睡眠狀態(S1)",
12931
"xloc": [
12924
- "default-mobile.handlebars->11->228",
12925
- "default.handlebars->31->472"
12932
+ "default-mobile.handlebars->11->229",
12933
+ "default.handlebars->31->475"
12934
]
12935
},
12936
{
@@ -12942,7 +12950,7 @@
12950
"zh-chs": "设备处于睡眠状态(S1)。",
12951
"zh-cht": "裝置處於睡眠狀態(S1)。",
12952
"xloc": [
12945
- "default.handlebars->31->459"
12953
+ "default.handlebars->31->462"
12954
]
12955
},
12956
{
@@ -12962,8 +12970,8 @@
12970
"zh-chs": "设备处于睡眠状态(S2)",
12971
"zh-cht": "裝置處於睡眠狀態(S2)",
12972
"xloc": [
12965
- "default-mobile.handlebars->11->229",
12966
- "default.handlebars->31->473"
12973
+ "default-mobile.handlebars->11->230",
12974
+ "default.handlebars->31->476"
12975
]
12976
},
12977
{
@@ -12983,7 +12991,7 @@
12991
"zh-chs": "设备处于睡眠状态(S2)。",
12992
"zh-cht": "裝置處於睡眠狀態(S2)。",
12993
"xloc": [
12986
- "default.handlebars->31->461"
12994
+ "default.handlebars->31->464"
12995
]
12996
},
12997
{
@@ -13003,8 +13011,8 @@
13011
"zh-chs": "设备处于软关机状态(S5)",
13012
"zh-cht": "裝置處於軟關機狀態(S5)",
13013
"xloc": [
13006
- "default-mobile.handlebars->11->232",
13007
- "default.handlebars->31->476"
13014
+ "default-mobile.handlebars->11->233",
13015
+ "default.handlebars->31->479"
13016
]
13017
},
13018
{
@@ -13024,10 +13032,10 @@
13032
"zh-chs": "设备已插入",
13033
"zh-cht": "裝置已插入",
13034
"xloc": [
13027
- "default-mobile.handlebars->11->190",
13028
- "default-mobile.handlebars->11->246",
13029
- "default.handlebars->31->281",
13030
- "default.handlebars->31->613"
13035
+ "default-mobile.handlebars->11->191",
13036
+ "default-mobile.handlebars->11->247",
13037
+ "default.handlebars->31->284",
13038
+ "default.handlebars->31->616"
13039
]
13040
},
13041
{
@@ -13047,8 +13055,8 @@
13055
"zh-chs": "设备已连接电源",
13056
"zh-cht": "裝置已連接電源",
13057
"xloc": [
13050
- "default-mobile.handlebars->11->227",
13051
- "default.handlebars->31->471"
13058
+ "default-mobile.handlebars->11->228",
13059
+ "default.handlebars->31->474"
13060
]
13061
},
13062
{
@@ -13068,7 +13076,7 @@
13076
"zh-chs": "设备已连接电源。",
13077
"zh-cht": "裝置已連接電源。",
13078
"xloc": [
13071
- "default.handlebars->31->457"
13079
+ "default.handlebars->31->460"
13080
]
13081
},
13082
{
@@ -13088,8 +13096,8 @@
13096
"zh-chs": "设备存在,但无法确定电源状态",
13097
"zh-cht": "裝置存在,但無法確定電源狀態",
13098
"xloc": [
13091
- "default-mobile.handlebars->11->233",
13092
- "default.handlebars->31->477"
13099
+ "default-mobile.handlebars->11->234",
13100
+ "default.handlebars->31->480"
13101
]
13102
},
This file is too large to show in full.