Improved Google Drive autobackup.

Ylian Saint-Hilaire committed Aug 21, 2020 at 11:47 UTC bf87bbd4a388802ef713a1177b45d53248e9fd9c
21 files changed +973 -769
db.js
+25 -17
@@ -1385,10 +1385,10 @@ module.exports.CreateDB = function (parent, func) {
1385 }
1386
1387 // Perform cloud backup
1388 - obj.performCloudBackup = function(filename) {
1389 - if (parent.config.settings.autobackup.googledrive != true) return;
1388 + obj.performCloudBackup = function (filename) {
1389 + if (typeof parent.config.settings.autobackup.googledrive != 'object') return;
1390 obj.Get('GoogleDriveBackup', function (err, docs) {
1391 - if ((err != null) || (docs.length != 1) || (docs[0].state == 3)) return;
1391 + if ((err != null) || (docs.length != 1) || (docs[0].state != 3)) return;
1392 const {google} = require('googleapis');
1393 const oAuth2Client = new google.auth.OAuth2(docs[0].clientid, docs[0].clientsecret, "urn:ietf:wg:oauth:2.0:oob");
1394 oAuth2Client.on('tokens', function(tokens) { if (tokens.refresh_token) { docs[0].token = tokens.refresh_token; parent.db.Set(docs[0]); } }); // Update the token in the database
@@ -1398,36 +1398,44 @@ module.exports.CreateDB = function (parent, func) {
1398
1399 // Called once we know our folder id, clean up and upload a backup.
1400 var useGoogleDrive = function (folderid) {
1401 - // List files to see if we need to delete some
1402 - drive.files.list({
1403 - q: 'trashed = false and \'' + folderid + '\' in parents',
1404 - fields: 'nextPageToken, files(id, name, size, createdTime)',
1405 - }, function (err, res) {
1406 - if (err) { console.log('GoogleDrive error: ' + err); return; }
1407 - // Delete any old files if more than 10 files are present in the backup folder.
1408 - res.data.files.sort(createdTimeSort);
1409 - while (res.data.files.length > 10) { drive.files.delete({ fileId: res.data.files.shift().id }, function (err, res) { }); }
1410 - });
1401 + // List files to see if we need to delete older ones
1402 + if (typeof parent.config.settings.autobackup.googledrive.maxfiles == 'number') {
1403 + drive.files.list({
1404 + q: 'trashed = false and \'' + folderid + '\' in parents',
1405 + fields: 'nextPageToken, files(id, name, size, createdTime)',
1406 + }, function (err, res) {
1407 + if (err) { console.log('GoogleDrive (files.list) error: ' + err); return; }
1408 + // Delete any old files if more than 10 files are present in the backup folder.
1409 + res.data.files.sort(createdTimeSort);
1410 + while (res.data.files.length >= parent.config.settings.autobackup.googledrive.maxfiles) { drive.files.delete({ fileId: res.data.files.shift().id }, function (err, res) { }); }
1411 + });
1412 + }
1413
1414 + //console.log('Uploading...');
1415 // Upload the backup
1416 drive.files.create({
1417 requestBody: { name: require('path').basename(filename), mimeType: 'text/plain', parents: [folderid] },
1418 media: { mimeType: 'application/zip', body: require('fs').createReadStream(filename) },
1419 }, function (err, res) {
1417 - if (err) { console.log('GoogleDrive error: ' + err); return; }
1420 + if (err) { console.log('GoogleDrive (files.create) error: ' + err); return; }
1421 + //console.log('Upload done.');
1422 });
1423 }
1424
1425 + // Fetch the folder name
1426 + var folderName = 'MeshCentral-Backups';
1427 + if (typeof parent.config.settings.autobackup.googledrive.foldername == 'string') { folderName = parent.config.settings.autobackup.googledrive.foldername; }
1428 +
1429 // Find our backup folder, create one if needed.
1430 drive.files.list({
1423 - q: 'mimeType = \'application/vnd.google-apps.folder\' and name=\'MeshCentral-Backups\' and trashed = false',
1431 + q: 'mimeType = \'application/vnd.google-apps.folder\' and name=\'' + folderName + '\' and trashed = false',
1432 fields: 'nextPageToken, files(id, name)',
1433 }, function (err, res) {
1434 if (err) { console.log('GoogleDrive error: ' + err); return; }
1435 if (res.data.files.length == 0) {
1436 // Create a folder
1429 - drive.files.create({ resource: { 'name': 'MeshCentral-Backups', 'mimeType': 'application/vnd.google-apps.folder' }, fields: 'id' }, function (err, file) {
1430 - if (err) { console.log('GoogleDrive error: ' + err); return; }
1437 + drive.files.create({ resource: { 'name': folderName, 'mimeType': 'application/vnd.google-apps.folder' }, fields: 'id' }, function (err, file) {
1438 + if (err) { console.log('GoogleDrive (folder.create) error: ' + err); return; }
1439 useGoogleDrive(file.data.id);
1440 });
1441 } else { useGoogleDrive(res.data.files[0].id); }
emails/translations/account-check_ln.html new
+15
@@ -0,0 +1,15 @@
1 +<html><head></head><body><div>[[[SERVERNAME]]] - Email Verification</div>
2 +<div style="font-family:Arial,Helvetica,sans-serif">
3 + <table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4 + <tbody><tr>
5 + <td>
6 + <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Verification</b>
7 + </td>
8 + </tr>
9 + </tbody></table>
10 + <p>Hi [[[USERNAME]]], <a href="[[[SERVERURL]]]">[[[SERVERNAME]]]</a> is requesting email verification, click on the following link to complete the process.</p>
11 + <p style="margin-left:30px">
12 + <a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Click here to verify your e-mail address.</a>
13 + </p>
14 + If you did not initiate this request, please ignore this mail.
15 +</div></body></html>
\ No newline at end of file
emails/translations/account-check_ln.txt new
+6
@@ -0,0 +1,6 @@
1 +[[[SERVERNAME]]] - Email Verification
2 +Hi [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) is performing an e-mail verification. Nagivate to the following link to complete the process:
3 +~
4 +~[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]
5 +~
6 +If you did not initiate this request, please ignore this mail.
\ No newline at end of file
emails/translations/account-invite_ln.html new
+19
@@ -0,0 +1,19 @@
1 +<html><head></head><body><div>[[[SERVERNAME]]] - Account Invitation</div>
2 +<div style="font-family:Arial,Helvetica,sans-serif">
3 + <table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4 + <tbody><tr>
5 + <td>
6 + <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Account Invitation</b>
7 + </td>
8 + </tr>
9 + </tbody></table>
10 + <p>An account was created for you on server <a href="[[[SERVERURL]]]" notrans="1">[[[SERVERNAME]]]</a>, you can access it now with:</p>
11 + <p>
12 + &nbsp;&nbsp;&nbsp;Username: <b notrans="1">[[[ACCOUNTNAME]]]</b><br>
13 + &nbsp;&nbsp;&nbsp;Password: <b notrans="1">[[[PASSWORD]]]</b>
14 + </p>
15 + Best regards,
16 + <br>
17 + [[[USERNAME]]]
18 + <br>
19 +</div></body></html>
\ No newline at end of file
emails/translations/account-invite_ln.txt new
+5
@@ -0,0 +1,5 @@
1 +[[[SERVERNAME]]] - Account Invitation
2 +An account was created for you on server [[[SERVERNAME]]] ([[[SERVERURL]]]/), you can access it now with username "[[[ACCOUNTNAME]]]" and password "[[[PASSWORD]]]".
3 +~
4 +Best regards,
5 +~[[[USERNAME]]]
\ No newline at end of file
emails/translations/account-login_ln.html new
+12
@@ -0,0 +1,12 @@
1 +<html><head></head><body><div>[[[SERVERNAME]]] - Account Login</div>
2 +<div style="font-family:Arial,Helvetica,sans-serif">
3 + <table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4 + <tbody><tr>
5 + <td>
6 + <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Account Login</b>
7 + </td>
8 + </tr>
9 + </tbody></table>
10 + <p>Your login token is: [[[TOKEN]]]</p>
11 + <p>This token can only be used once and is valid for 5 minutes.</p>
12 +</div></body></html>
\ No newline at end of file
emails/translations/account-login_ln.txt new
+4
@@ -0,0 +1,4 @@
1 +[[[SERVERNAME]]] - Account Login
2 +Your login token is: [[[TOKEN]]]
3 +~
4 +This token can only be used once and is valid for 5 minutes.
\ No newline at end of file
emails/translations/account-reset_ln.html new
+15
@@ -0,0 +1,15 @@
1 +<html><head></head><body><div>[[[SERVERNAME]]] - Account Reset</div>
2 +<div style="font-family:Arial,Helvetica,sans-serif">
3 + <table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4 + <tbody><tr>
5 + <td>
6 + <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Verification</b>
7 + </td>
8 + </tr>
9 + </tbody></table>
10 + <p>Hi [[[USERNAME]]], <a href="[[[SERVERURL]]]">[[[SERVERNAME]]]</a> is requesting an account password reset, click on the following link to complete the process.</p>
11 + <p style="margin-left:30px">
12 + <a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Click here to reset your account password.</a>
13 + </p>
14 + If you did not initiate this request, please ignore this mail.
15 +</div></body></html>
\ No newline at end of file
emails/translations/account-reset_ln.txt new
+6
@@ -0,0 +1,6 @@
1 +[[[SERVERNAME]]] - Account Reset
2 +Hi [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) is requesting an account password reset. Nagivate to the following link to complete the process:
3 +~
4 +~[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]
5 +~
6 +If you did not initiate this request, please ignore this mail.
\ No newline at end of file
emails/translations/mesh-invite_ln.html new
+42
@@ -0,0 +1,42 @@
1 +<html><head></head><body><div>[[[SERVERNAME]]] - Invitation</div>
2 +<div style="font-family:Arial,Helvetica,sans-serif">
3 + <table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4 + <tbody><tr>
5 + <td>
6 + <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Agent Installation</b>
7 + </td>
8 + </tr>
9 + </tbody></table>
10 + <area-name>
11 + <p>
12 + Hello [[[NAME]]],
13 + </p>
14 + </area-name>
15 + <p>User [[[USERNAME]]] on server <a href="[[[SERVERURL]]]">[[[SERVERNAME]]]</a> is requesting you to install software to start a remote control session.</p>
16 + <area-msg>
17 + <p>
18 + Message: <b notrans="1">[[[MSG]]]</b>
19 + </p>
20 + </area-msg>
21 + <area-windows>
22 + <p style="margin-left:30px">
23 + <a href="[[[SERVERURL]]]/meshagents?id=3&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;installflags=[[[INSTALLFLAGS]]]">Click here to download the MeshAgent for Windows.</a>
24 + </p>
25 + </area-windows>
26 + <area-osx>
27 + <p style="margin-left:30px"><a href="[[[SERVERURL]]]/meshagents?id=16&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;installflags=[[[INSTALLFLAGS]]]">Click here to download the MeshAgent for Apple OSX.</a></p>
28 + </area-osx>
29 + <area-linux>
30 + <p>
31 + For Linux, cut &amp; paste the following in a terminal to install the agent:<br>
32 + </p><pre style="margin-left:30px" notrans="1">wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh &amp;&amp; chmod 755 ./meshinstall.sh &amp;&amp; sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre>
33 + <p></p>
34 + </area-linux>
35 + <area-link>
36 + <p>
37 + To install the software, <a href="[[[SERVERURL]]][[[LINKURL]]]">click here</a> and follow the instructions.
38 + </p>
39 + </area-link>
40 + <p>If you did not initiate this request, please ignore this mail.</p>
41 + Best regards,<br>[[[USERNAME]]]<br>
42 +</div></body></html>
\ No newline at end of file
emails/translations/mesh-invite_ln.txt new
+35
@@ -0,0 +1,35 @@
1 +[[[SERVERNAME]]] - Invitation
2 +~<area-name>
3 +Hello [[[NAME]]],
4 +~</area-name>
5 +User [[[USERNAME]]] on server [[[SERVERNAME]]] ([[[SERVERURL]]]/) is requesting you install software to start the remote control session.
6 +~<area-msg>
7 +~
8 +Message: [[[MSG]]]
9 +~
10 +~</area-msg>
11 +~<area-windows>
12 +For Windows, nagivate to the following link to complete the process:
13 +~
14 +~[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]
15 +~
16 +~</area-windows>
17 +~<area-osx>
18 +For Apple OSX, nagivate to the following link to complete the process:
19 +~
20 +~[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]
21 +~
22 +~</area-osx>
23 +~<area-linux>
24 +For Linux, cut & paste the following in a terminal to install the agent:
25 +~
26 +~wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] '[[[MESHIDHEX]]]'
27 +~
28 +~</area-linux>
29 +~<area-link>
30 +To install the software, navigate to [[[SERVERURL]]][[[LINKURL]]] and follow the instructions.
31 +~</area-link>
32 +If you did not initiate this request, please ignore this mail.
33 +~
34 +Best regards,
35 +~[[[USERNAME]]]
\ No newline at end of file
emails/translations/sms-messages_ln.txt new
+2
@@ -0,0 +1,2 @@
1 +[[0]] verification code is: [[1]]
2 +[[0]] access token is: [[1]]
meshagent.js
+2 -2
@@ -1397,13 +1397,13 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
1397 // Indicates if the agent has a coredump available
1398 if ((command.exists === true) && (typeof command.agenthashhex == 'string') && (command.agenthashhex.length == 96)) {
1399 // Check if we already have this exact dump file
1400 - const coreDumpFile = parent.path.join(parent.parent.datapath, 'coredumps', obj.agentInfo.agentId + '-' + command.agenthashhex + '-' + obj.nodeid + '.dmp');
1400 + const coreDumpFile = parent.path.join(parent.parent.datapath, '..', 'meshcentral-coredumps', obj.agentInfo.agentId + '-' + command.agenthashhex + '-' + obj.nodeid + '.dmp');
1401 parent.fs.stat(coreDumpFile, function (err, stats) {
1402 if (stats != null) return;
1403 obj.coreDumpPresent = true;
1404
1405 // Check how many files are in the coredumps folder
1406 - const coreDumpPath = parent.path.join(parent.parent.datapath, 'coredumps');
1406 + const coreDumpPath = parent.path.join(parent.parent.datapath, '..', 'meshcentral-coredumps');
1407 parent.fs.readdir(coreDumpPath, function (err, files) {
1408 if ((files != null) && (files.length >= 20)) return; // Don't get more than 20 core dump files.
1409
meshcentral-config-schema.json
+9 -1
@@ -107,7 +107,15 @@
107 "backupIntervalHours": { "type": "integer" },
108 "keepLastDaysBackup": { "type": "integer" },
109 "zipPassword": { "type": "string" },
110 - "backupPath": { "type": "string" }
110 + "backupPath": { "type": "string" },
111 + "googleDrive": {
112 + "type": "object",
113 + "description": "Enabled automated upload of the server backups to a Google Drive account, once enabled you need to go in \"My Server\" tab as administrator to associate the account.",
114 + "properties": {
115 + "folderName": { "type": "integer", "default": "MeshCentral-Backups", "description": "The name of the folder to create in the Google Drive account." },
116 + "maxFiles": { "type": "string", "default": null, "description": "The maximum number of files to keep in the Google Drive folder, older files will be removed if needed." }
117 + }
118 + }
119 }
120 },
121 "redirects": { "type": "object" },
meshcentral.js
+4 -4
@@ -648,11 +648,11 @@ function CreateMeshCentralServer(config, args) {
648 if (typeof obj.args.trustedproxy == 'string') { obj.args.trustedproxy = obj.args.trustedproxy.split(' ').join('').split(','); }
649 if (typeof obj.args.tlsoffload == 'string') { obj.args.tlsoffload = obj.args.tlsoffload.split(' ').join('').split(','); }
650
651 - // Check if WebSocket compression is supported. It's broken in NodeJS v11.11 to v12.15
651 + // Check if WebSocket compression is supported. It's known to be broken in NodeJS v11.11 to v12.15, and v13.2
652 const verSplit = process.version.substring(1).split('.');
653 var ver = parseInt(verSplit[0]) + (parseInt(verSplit[1]) / 100);
654 - if ((ver >= 11.11) && (ver <= 12.15)) {
655 - if ((obj.args.wscompression === true) || (obj.args.agentwscompression === true)) { addServerWarning('WebSocket compression is disabled, this feature is broken in NodeJS v11.11 to v12.15.'); }
654 + if (((ver >= 11.11) && (ver <= 12.15)) || (ver == 13.2)) {
655 + if ((obj.args.wscompression === true) || (obj.args.agentwscompression === true)) { addServerWarning('WebSocket compression is disabled, this feature is broken in NodeJS v11.11 to v12.15 and v13.2'); }
656 obj.args.wscompression = obj.args.agentwscompression = false;
657 obj.config.settings.wscompression = obj.config.settings.agentwscompression = false;
658 }
@@ -2708,7 +2708,7 @@ function mainStart() {
2708 // Setup encrypted zip support if needed
2709 if (config.settings.autobackup && config.settings.autobackup.zippassword) {
2710 modules.push('archiver-zip-encrypted');
2711 - if (config.settings.autobackup.googledrive == true) { if (nodeVersion >= 8) { modules.push('googleapis'); } else { config.settings.autobackup.googledrive = false; } } // Enable Google Drive Support
2711 + if (typeof config.settings.autobackup.googledrive == 'object') { if (nodeVersion >= 8) { modules.push('googleapis'); } else { delete config.settings.autobackup.googledrive; } } // Enable Google Drive Support
2712 }
2713
2714 // Setup common password blocking
meshuser.js
+6 -10
@@ -446,7 +446,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
446 }
447
448 // If we are site administrator and Google Drive backup is setup, send out the status.
449 - if ((user.siteadmin === SITERIGHT_ADMIN) && (domain.id == '') && (typeof parent.parent.config.settings.autobackup == 'object') && (parent.parent.config.settings.autobackup.googledrive == true)) {
449 + if ((user.siteadmin === SITERIGHT_ADMIN) && (domain.id == '') && (typeof parent.parent.config.settings.autobackup == 'object') && (typeof parent.parent.config.settings.autobackup.googledrive == 'object')) {
450 db.Get('GoogleDriveBackup', function (err, docs) {
451 if (err != null) return;
452 if (docs.length == 0) { try { ws.send(JSON.stringify({ action: 'serverBackup', service: 'googleDrive', state: 1 })); } catch (ex) { } }
@@ -4671,7 +4671,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4671 break;
4672 }
4673 case 'serverBackup': {
4674 - if (user.siteadmin != SITERIGHT_ADMIN) return;
4674 + if ((user.siteadmin != SITERIGHT_ADMIN) || (typeof parent.parent.config.settings.autobackup.googledrive != 'object')) return;
4675 if (command.service == 'googleDrive') {
4676 if (command.state == 0) {
4677 parent.db.Remove('GoogleDriveBackup', function () { try { ws.send(JSON.stringify({ action: 'serverBackup', service: 'googleDrive', state: 1 })); } catch (ex) { } });
@@ -4680,17 +4680,13 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4680 obj.oAuth2Client = new google.auth.OAuth2(command.clientid, command.clientsecret, "urn:ietf:wg:oauth:2.0:oob");
4681 obj.oAuth2Client.xxclientid = command.clientid;
4682 obj.oAuth2Client.xxclientsecret = command.clientsecret;
4683 - //const authUrl = obj.oAuth2Client.generateAuthUrl({ access_type: 'offline', scope: ['https://www.googleapis.com/auth/drive.file'] });
4684 - const authUrl = obj.oAuth2Client.generateAuthUrl({ access_type: 'offline', scope: ['https://www.googleapis.com/auth/drive', 'https://www.googleapis.com/auth/drive.appdata', 'https://www.googleapis.com/auth/drive.file', 'https://www.googleapis.com/auth/drive.metadata', 'https://www.googleapis.com/auth/drive.metadata.readonly', 'https://www.googleapis.com/auth/drive.photos.readonly', 'https://www.googleapis.com/auth/drive.readonly', 'https://www.googleapis.com/auth/drive.scripts'] });
4683 + const authUrl = obj.oAuth2Client.generateAuthUrl({ access_type: 'offline', scope: ['https://www.googleapis.com/auth/drive.file'] });
4684 try { ws.send(JSON.stringify({ action: 'serverBackup', service: 'googleDrive', state: 2, url: authUrl })); } catch (ex) { }
4685 } else if ((command.state == 2) && (obj.oAuth2Client != null)) {
4686 obj.oAuth2Client.getToken(command.code, function (err, token) {
4688 - if (err != null) {
4689 - console.log('getToken', err);
4690 - } else {
4691 - parent.db.Set({ _id: 'GoogleDriveBackup', state: 3, clientid: obj.oAuth2Client.xxclientid, clientsecret: obj.oAuth2Client.xxclientsecret, token: token });
4692 - try { ws.send(JSON.stringify({ action: 'serverBackup', service: 'googleDrive', state: 3 })); } catch (ex) { }
4693 - }
4687 + if (err != null) { console.log('GoogleDrive (getToken) error: ', err); return; }
4688 + parent.db.Set({ _id: 'GoogleDriveBackup', state: 3, clientid: obj.oAuth2Client.xxclientid, clientsecret: obj.oAuth2Client.xxclientsecret, token: token });
4689 + try { ws.send(JSON.stringify({ action: 'serverBackup', service: 'googleDrive', state: 3 })); } catch (ex) { }
4690 });
4691 }
4692 }
public/images/googledrive-48.png
Binary files /dev/null and b/public/images/googledrive-48.png differ
sample-config-advanced.json
+5 -1
@@ -88,7 +88,11 @@
88 "backupIntervalHours": 24,
89 "keepLastDaysBackup": 10,
90 "zipPassword": "MyReallySecretPassword3",
91 - "_backupPath": "C:\\backups"
91 + "_backupPath": "C:\\backups",
92 + "_googleDrive": {
93 + "folderName": "MeshCentral-Backups",
94 + "maxFiles": 10
95 + }
96 },
97 "_redirects": {
98 "meshcommander": "https://www.meshcommander.com/"
translate/translate.json
+739 -717
@@ -16,8 +16,8 @@
16 "zh-chs": " + CIRA",
17 "zh-cht": " + CIRA",
18 "xloc": [
19 - "default.handlebars->27->1316",
20 - "default.handlebars->27->1318"
19 + "default.handlebars->27->1318",
20 + "default.handlebars->27->1320"
21 ]
22 },
23 {
@@ -213,8 +213,8 @@
213 "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
214 "zh-cht": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
215 "xloc": [
216 - "default.handlebars->27->1391",
217 - "default.handlebars->27->1736"
216 + "default.handlebars->27->1393",
217 + "default.handlebars->27->1738"
218 ]
219 },
220 {
@@ -438,7 +438,7 @@
438 "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。",
439 "zh-cht": "*保留空白以為每個設備分配一個隨機密碼。",
440 "xloc": [
441 - "default.handlebars->27->1363"
441 + "default.handlebars->27->1365"
442 ]
443 },
444 {
@@ -475,7 +475,7 @@
475 "zh-cht": ",",
476 "xloc": [
477 "default-mobile.handlebars->9->449",
478 - "default.handlebars->27->1458"
478 + "default.handlebars->27->1460"
479 ]
480 },
481 {
@@ -718,8 +718,8 @@
718 "xloc": [
719 "default-mobile.handlebars->9->108",
720 "default-mobile.handlebars->9->295",
721 - "default.handlebars->27->1499",
722 - "default.handlebars->27->1891",
721 + "default.handlebars->27->1501",
722 + "default.handlebars->27->1893",
723 "default.handlebars->27->857"
724 ]
725 },
@@ -774,7 +774,7 @@
774 "zh-chs": "1個活動會話",
775 "zh-cht": "1個活動會話",
776 "xloc": [
777 - "default.handlebars->27->1805"
777 + "default.handlebars->27->1807"
778 ]
779 },
780 {
@@ -795,7 +795,7 @@
795 "xloc": [
796 "default-mobile.handlebars->9->118",
797 "default-mobile.handlebars->9->453",
798 - "default.handlebars->27->1523"
798 + "default.handlebars->27->1525"
799 ]
800 },
801 {
@@ -848,7 +848,7 @@
848 "zh-chs": "1組",
849 "zh-cht": "1組",
850 "xloc": [
851 - "default.handlebars->27->1770"
851 + "default.handlebars->27->1772"
852 ]
853 },
854 {
@@ -945,7 +945,7 @@
945 "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...",
946 "zh-cht": "未顯示另外1個用戶,請使用搜索框查找用戶...",
947 "xloc": [
948 - "default.handlebars->27->1572"
948 + "default.handlebars->27->1574"
949 ]
950 },
951 {
@@ -1008,7 +1008,7 @@
1008 "default-mobile.handlebars->9->168",
1009 "default-mobile.handlebars->9->171",
1010 "default-mobile.handlebars->9->174",
1011 - "default.handlebars->27->1576",
1011 + "default.handlebars->27->1578",
1012 "default.handlebars->27->243",
1013 "default.handlebars->27->246",
1014 "default.handlebars->27->249",
@@ -1349,8 +1349,8 @@
1349 "zh-chs": "啟用第二因素身份驗證",
1350 "zh-cht": "啟用第二因素驗證",
1351 "xloc": [
1352 - "default.handlebars->27->1589",
1353 - "default.handlebars->27->1792"
1352 + "default.handlebars->27->1591",
1353 + "default.handlebars->27->1794"
1354 ]
1355 },
1356 {
@@ -2230,7 +2230,7 @@
2230 "zh-chs": "訪問服務器文件",
2231 "zh-cht": "訪問服務器文件",
2232 "xloc": [
2233 - "default.handlebars->27->1742"
2233 + "default.handlebars->27->1744"
2234 ]
2235 },
2236 {
@@ -2368,8 +2368,8 @@
2368 "zh-chs": "帐户已被锁定",
2369 "zh-cht": "帳戶已被鎖定",
2370 "xloc": [
2371 - "default.handlebars->27->1591",
2372 - "default.handlebars->27->1739"
2371 + "default.handlebars->27->1593",
2372 + "default.handlebars->27->1741"
2373 ]
2374 },
2375 {
@@ -2594,8 +2594,8 @@
2594 "zh-chs": "激活",
2595 "zh-cht": "激活",
2596 "xloc": [
2597 - "default.handlebars->27->1329",
2597 "default.handlebars->27->1331",
2598 + "default.handlebars->27->1333",
2599 "default.handlebars->27->199",
2600 "default.handlebars->27->276",
2601 "default.handlebars->27->278"
@@ -2636,7 +2636,7 @@
2636 "zh-chs": "添加代理",
2637 "zh-cht": "添加代理",
2638 "xloc": [
2639 - "default.handlebars->27->1333",
2639 + "default.handlebars->27->1335",
2640 "default.handlebars->27->280"
2641 ]
2642 },
@@ -2675,8 +2675,8 @@
2675 "zh-chs": "添加設備",
2676 "zh-cht": "添加設備",
2677 "xloc": [
2678 - "default.handlebars->27->1716",
2679 - "default.handlebars->27->1840"
2678 + "default.handlebars->27->1718",
2679 + "default.handlebars->27->1842"
2680 ]
2681 },
2682 {
@@ -2714,9 +2714,9 @@
2714 "zh-chs": "添加設備組",
2715 "zh-cht": "添加設備組",
2716 "xloc": [
2717 - "default.handlebars->27->1424",
2718 - "default.handlebars->27->1710",
2719 - "default.handlebars->27->1828",
2717 + "default.handlebars->27->1426",
2718 + "default.handlebars->27->1712",
2719 + "default.handlebars->27->1830",
2720 "default.handlebars->27->231"
2721 ]
2722 },
@@ -2733,7 +2733,7 @@
2733 "zh-chs": "添加设备组权限",
2734 "zh-cht": "添加設備組權限",
2735 "xloc": [
2736 - "default.handlebars->27->1421"
2736 + "default.handlebars->27->1423"
2737 ]
2738 },
2739 {
@@ -2751,8 +2751,8 @@
2751 "zh-chs": "添加设备权限",
2752 "zh-cht": "添加設備權限",
2753 "xloc": [
2754 - "default.handlebars->27->1426",
2755 - "default.handlebars->27->1428"
2754 + "default.handlebars->27->1428",
2755 + "default.handlebars->27->1430"
2756 ]
2757 },
2758 {
@@ -2847,7 +2847,7 @@
2847 "zh-chs": "添加會員",
2848 "zh-cht": "添加會員",
2849 "xloc": [
2850 - "default.handlebars->27->1858"
2850 + "default.handlebars->27->1860"
2851 ]
2852 },
2853 {
@@ -2928,7 +2928,7 @@
2928 "zh-chs": "添加用户设备权限",
2929 "zh-cht": "添加用戶設備權限",
2930 "xloc": [
2931 - "default.handlebars->27->1431"
2931 + "default.handlebars->27->1433"
2932 ]
2933 },
2934 {
@@ -2947,9 +2947,9 @@
2947 "zh-chs": "添加用戶組",
2948 "zh-cht": "添加用戶組",
2949 "xloc": [
2950 - "default.handlebars->27->1323",
2951 - "default.handlebars->27->1423",
2952 - "default.handlebars->27->1834",
2950 + "default.handlebars->27->1325",
2951 + "default.handlebars->27->1425",
2952 + "default.handlebars->27->1836",
2953 "default.handlebars->27->653"
2954 ]
2955 },
@@ -2966,7 +2966,7 @@
2966 "zh-chs": "添加用户组设备权限",
2967 "zh-cht": "添加用戶組設備權限",
2968 "xloc": [
2969 - "default.handlebars->27->1433"
2969 + "default.handlebars->27->1435"
2970 ]
2971 },
2972 {
@@ -3017,8 +3017,8 @@
3017 "zh-chs": "添加用戶",
3018 "zh-cht": "添加用戶",
3019 "xloc": [
3020 - "default.handlebars->27->1322",
3021 - "default.handlebars->27->1705"
3020 + "default.handlebars->27->1324",
3021 + "default.handlebars->27->1707"
3022 ]
3023 },
3024 {
@@ -3037,7 +3037,7 @@
3037 "zh-chs": "將用戶添加到設備組",
3038 "zh-cht": "將用戶添加到設備組",
3039 "xloc": [
3040 - "default.handlebars->27->1420"
3040 + "default.handlebars->27->1422"
3041 ]
3042 },
3043 {
@@ -3056,7 +3056,7 @@
3056 "zh-chs": "將用戶添加到用戶組",
3057 "zh-cht": "將用戶添加到用戶組",
3058 "xloc": [
3059 - "default.handlebars->27->1738"
3059 + "default.handlebars->27->1740"
3060 ]
3061 },
3062 {
@@ -3113,7 +3113,7 @@
3113 "zh-chs": "添加位於互聯網上的新英特爾&reg;AMT計算機。",
3114 "zh-cht": "添加位於互聯網上的新英特爾&reg;AMT計算機。",
3115 "xloc": [
3116 - "default.handlebars->27->1324",
3116 + "default.handlebars->27->1326",
3117 "default.handlebars->27->269"
3118 ]
3119 },
@@ -3133,7 +3133,7 @@
3133 "zh-chs": "添加位於本地網絡上的新英特爾&reg;AMT計算機。",
3134 "zh-cht": "添加位於本地網絡上的新英特爾&reg;AMT計算機。",
3135 "xloc": [
3136 - "default.handlebars->27->1326",
3136 + "default.handlebars->27->1328",
3137 "default.handlebars->27->271"
3138 ]
3139 },
@@ -3169,7 +3169,7 @@
3169 "zh-chs": "通过安装网状代理,将新计算机添加到该设备组。",
3170 "zh-cht": "通過安裝網狀代理將新計算機添加到該設備組。",
3171 "xloc": [
3172 - "default.handlebars->27->1332",
3172 + "default.handlebars->27->1334",
3173 "default.handlebars->27->279"
3174 ]
3175 },
@@ -3298,7 +3298,7 @@
3298 "zh-chs": "管理領域",
3299 "zh-cht": "管理領域",
3300 "xloc": [
3301 - "default.handlebars->27->1774"
3301 + "default.handlebars->27->1776"
3302 ]
3303 },
3304 {
@@ -3337,7 +3337,7 @@
3337 "zh-chs": "行政領域",
3338 "zh-cht": "行政領域",
3339 "xloc": [
3340 - "default.handlebars->27->1654"
3340 + "default.handlebars->27->1656"
3341 ]
3342 },
3343 {
@@ -3356,7 +3356,7 @@
3356 "zh-chs": "管理員",
3357 "zh-cht": "管理員",
3358 "xloc": [
3359 - "default.handlebars->27->1583"
3359 + "default.handlebars->27->1585"
3360 ]
3361 },
3362 {
@@ -3396,8 +3396,8 @@
3396 "default-mobile.handlebars->9->199",
3397 "default-mobile.handlebars->9->223",
3398 "default-mobile.handlebars->9->239",
3399 - "default.handlebars->27->1485",
3400 - "default.handlebars->27->1493",
3399 + "default.handlebars->27->1487",
3400 + "default.handlebars->27->1495",
3401 "default.handlebars->27->210",
3402 "default.handlebars->27->435",
3403 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -3419,8 +3419,8 @@
3419 "zh-chs": "代理+英特爾AMT",
3420 "zh-cht": "代理+英特爾AMT",
3421 "xloc": [
3422 - "default.handlebars->27->1487",
3423 - "default.handlebars->27->1495"
3422 + "default.handlebars->27->1489",
3423 + "default.handlebars->27->1497"
3424 ]
3425 },
3426 {
@@ -3459,7 +3459,7 @@
3459 "zh-cht": "代理控制台",
3460 "xloc": [
3461 "default-mobile.handlebars->9->433",
3462 - "default.handlebars->27->1441"
3462 + "default.handlebars->27->1443"
3463 ]
3464 },
3465 {
@@ -3478,7 +3478,7 @@
3478 "zh-chs": "座席錯誤計數器",
3479 "zh-cht": "座席錯誤計數器",
3480 "xloc": [
3481 - "default.handlebars->27->1901"
3481 + "default.handlebars->27->1903"
3482 ]
3483 },
3484 {
@@ -3566,7 +3566,7 @@
3566 "zh-chs": "座席會議",
3567 "zh-cht": "座席會議",
3568 "xloc": [
3569 - "default.handlebars->27->1917"
3569 + "default.handlebars->27->1919"
3570 ]
3571 },
3572 {
@@ -3605,7 +3605,7 @@
3605 "zh-chs": "代理類型",
3606 "zh-cht": "代理類型",
3607 "xloc": [
3608 - "default.handlebars->27->1491",
3608 + "default.handlebars->27->1493",
3609 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
3610 ]
3611 },
@@ -3703,7 +3703,7 @@
3703 "zh-chs": "代理商",
3704 "zh-cht": "代理商",
3705 "xloc": [
3706 - "default.handlebars->27->1933"
3706 + "default.handlebars->27->1935"
3707 ]
3708 },
3709 {
@@ -3755,7 +3755,7 @@
3755 "zh-chs": "全部可用",
3756 "zh-cht": "全部可用",
3757 "xloc": [
3758 - "default.handlebars->27->1546"
3758 + "default.handlebars->27->1548"
3759 ]
3760 },
3761 {
@@ -3783,7 +3783,7 @@
3783 "zh-chs": "所有活动",
3784 "zh-cht": "所有活動",
3785 "xloc": [
3786 - "default.handlebars->27->1544"
3786 + "default.handlebars->27->1546"
3787 ]
3788 },
3789 {
@@ -3822,8 +3822,8 @@
3822 "zh-chs": "允許用戶管理此設備組和該組中的設備。",
3823 "zh-cht": "允許用戶管理此設備組和該組中的設備。",
3824 "xloc": [
3825 - "default.handlebars->27->1389",
3826 - "default.handlebars->27->1735"
3825 + "default.handlebars->27->1391",
3826 + "default.handlebars->27->1737"
3827 ]
3828 },
3829 {
@@ -3841,7 +3841,7 @@
3841 "zh-chs": "允许用户管理此设备。",
3842 "zh-cht": "允許用戶管理此設備。",
3843 "xloc": [
3844 - "default.handlebars->27->1390"
3844 + "default.handlebars->27->1392"
3845 ]
3846 },
3847 {
@@ -3941,8 +3941,8 @@
3941 "zh-chs": "始終通知",
3942 "zh-cht": "始終通知",
3943 "xloc": [
3944 - "default.handlebars->27->1303",
3945 - "default.handlebars->27->1783",
3944 + "default.handlebars->27->1305",
3945 + "default.handlebars->27->1785",
3946 "default.handlebars->27->593"
3947 ]
3948 },
@@ -3962,8 +3962,8 @@
3962 "zh-chs": "總是提示",
3963 "zh-cht": "總是提示",
3964 "xloc": [
3965 - "default.handlebars->27->1304",
3966 - "default.handlebars->27->1784",
3965 + "default.handlebars->27->1306",
3966 + "default.handlebars->27->1786",
3967 "default.handlebars->27->594"
3968 ]
3969 },
@@ -4566,7 +4566,7 @@
4566 "zh-cht": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。",
4567 "xloc": [
4568 "default-mobile.handlebars->9->404",
4569 - "default.handlebars->27->1367"
4569 + "default.handlebars->27->1369"
4570 ]
4571 },
4572 {
@@ -4642,7 +4642,7 @@
4642 "zh-chs": "您確定要{0}插件嗎:{1}",
4643 "zh-cht": "您確定要{0}插件嗎:{1}",
4644 "xloc": [
4645 - "default.handlebars->27->1973"
4645 + "default.handlebars->27->1975"
4646 ]
4647 },
4648 {
@@ -4750,7 +4750,7 @@
4750 "zh-chs": "身份驗證應用",
4751 "zh-cht": "認證應用",
4752 "xloc": [
4753 - "default.handlebars->27->1787"
4753 + "default.handlebars->27->1789"
4754 ]
4755 },
4756 {
@@ -4852,7 +4852,7 @@
4852 "zh-chs": "自動刪除",
4853 "zh-cht": "自動刪除",
4854 "xloc": [
4855 - "default.handlebars->27->1291"
4855 + "default.handlebars->27->1293"
4856 ]
4857 },
4858 {
@@ -4904,7 +4904,7 @@
4904 "zh-chs": "有效内存",
4905 "zh-cht": "有效內存",
4906 "xloc": [
4907 - "default.handlebars->27->1926"
4907 + "default.handlebars->27->1928"
4908 ]
4909 },
4910 {
@@ -5048,8 +5048,8 @@
5048 "zh-chs": "背景與互動",
5049 "zh-cht": "背景與互動",
5050 "xloc": [
5051 - "default.handlebars->27->1468",
5052 - "default.handlebars->27->1475",
5051 + "default.handlebars->27->1470",
5052 + "default.handlebars->27->1477",
5053 "default.handlebars->27->350",
5054 "default.handlebars->27->364"
5055 ]
@@ -5070,8 +5070,8 @@
5070 "zh-chs": "僅背景",
5071 "zh-cht": "僅背景",
5072 "xloc": [
5073 - "default.handlebars->27->1469",
5074 - "default.handlebars->27->1476",
5073 + "default.handlebars->27->1471",
5074 + "default.handlebars->27->1478",
5075 "default.handlebars->27->351",
5076 "default.handlebars->27->365",
5077 "default.handlebars->27->379"
@@ -5112,7 +5112,7 @@
5112 "zh-chs": "備用碼",
5113 "zh-cht": "備用碼",
5114 "xloc": [
5115 - "default.handlebars->27->1789"
5115 + "default.handlebars->27->1791"
5116 ]
5117 },
5118 {
@@ -5131,7 +5131,7 @@
5131 "zh-chs": "錯誤的簽名",
5132 "zh-cht": "錯誤的簽名",
5133 "xloc": [
5134 - "default.handlebars->27->1908"
5134 + "default.handlebars->27->1910"
5135 ]
5136 },
5137 {
@@ -5150,7 +5150,7 @@
5150 "zh-chs": "錯誤的網絡證書",
5151 "zh-cht": "錯誤的網絡證書",
5152 "xloc": [
5153 - "default.handlebars->27->1907"
5153 + "default.handlebars->27->1909"
5154 ]
5155 },
5156 {
@@ -5304,7 +5304,7 @@
5304 "zh-chs": "廣播",
5305 "zh-cht": "廣播",
5306 "xloc": [
5307 - "default.handlebars->27->1703",
5307 + "default.handlebars->27->1705",
5308 "default.handlebars->container->column_l->p4->3->1->0->3->1"
5309 ]
5310 },
@@ -5324,7 +5324,7 @@
5324 "zh-chs": "廣播消息",
5325 "zh-cht": "廣播消息",
5326 "xloc": [
5327 - "default.handlebars->27->1636"
5327 + "default.handlebars->27->1638"
5328 ]
5329 },
5330 {
@@ -5343,7 +5343,7 @@
5343 "zh-chs": "向所有連接的用戶廣播消息。",
5344 "zh-cht": "向所有連接的用戶廣播消息。",
5345 "xloc": [
5346 - "default.handlebars->27->1631"
5346 + "default.handlebars->27->1633"
5347 ]
5348 },
5349 {
@@ -5421,8 +5421,8 @@
5421 "zh-cht": "CIRA",
5422 "xloc": [
5423 "default-mobile.handlebars->9->200",
5424 - "default.handlebars->27->1355",
5425 - "default.handlebars->27->1360",
5424 + "default.handlebars->27->1357",
5425 + "default.handlebars->27->1362",
5426 "default.handlebars->27->212",
5427 "default.handlebars->27->437"
5428 ]
@@ -5443,7 +5443,7 @@
5443 "zh-chs": "CIRA服務器",
5444 "zh-cht": "CIRA服務器",
5445 "xloc": [
5446 - "default.handlebars->27->1961"
5446 + "default.handlebars->27->1963"
5447 ]
5448 },
5449 {
@@ -5462,7 +5462,7 @@
5462 "zh-chs": "CIRA服務器命令",
5463 "zh-cht": "CIRA服務器命令",
5464 "xloc": [
5465 - "default.handlebars->27->1962"
5465 + "default.handlebars->27->1964"
5466 ]
5467 },
5468 {
@@ -5500,7 +5500,7 @@
5500 "zh-chs": "CPU負載",
5501 "zh-cht": "CPU負載",
5502 "xloc": [
5503 - "default.handlebars->27->1922"
5503 + "default.handlebars->27->1924"
5504 ]
5505 },
5506 {
@@ -5519,7 +5519,7 @@
5519 "zh-chs": "最近15分鐘的CPU負載",
5520 "zh-cht": "最近15分鐘的CPU負載",
5521 "xloc": [
5522 - "default.handlebars->27->1925"
5522 + "default.handlebars->27->1927"
5523 ]
5524 },
5525 {
@@ -5538,7 +5538,7 @@
5538 "zh-chs": "最近5分鐘的CPU負載",
5539 "zh-cht": "最近5分鐘的CPU負載",
5540 "xloc": [
5541 - "default.handlebars->27->1924"
5541 + "default.handlebars->27->1926"
5542 ]
5543 },
5544 {
@@ -5557,7 +5557,7 @@
5557 "zh-chs": "最後一分鐘的CPU負載",
5558 "zh-cht": "最後一分鐘的CPU負載",
5559 "xloc": [
5560 - "default.handlebars->27->1923"
5560 + "default.handlebars->27->1925"
5561 ]
5562 },
5563 {
@@ -5596,7 +5596,7 @@
5596 "zh-chs": "CSV",
5597 "zh-cht": "CSV",
5598 "xloc": [
5599 - "default.handlebars->27->1554"
5599 + "default.handlebars->27->1556"
5600 ]
5601 },
5602 {
@@ -5615,8 +5615,8 @@
5615 "zh-chs": "CSV格式",
5616 "zh-cht": "CSV格式",
5617 "xloc": [
5618 - "default.handlebars->27->1558",
5619 - "default.handlebars->27->1623",
5618 + "default.handlebars->27->1560",
5619 + "default.handlebars->27->1625",
5620 "default.handlebars->27->478"
5621 ]
5622 },
@@ -5636,7 +5636,7 @@
5636 "zh-chs": "通話錯誤",
5637 "zh-cht": "通話錯誤",
5638 "xloc": [
5639 - "default.handlebars->27->1974"
5639 + "default.handlebars->27->1976"
5640 ]
5641 },
5642 {
@@ -5657,7 +5657,7 @@
5657 "xloc": [
5658 "default-mobile.handlebars->9->82",
5659 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
5660 - "default.handlebars->27->1269",
5660 + "default.handlebars->27->1271",
5661 "default.handlebars->container->dialog->idx_dlgButtonBar",
5662 "desktop.handlebars->p11->dialog->idx_dlgButtonBar",
5663 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -5793,7 +5793,7 @@
5793 "zh-chs": "更改{0}的電子郵件",
5794 "zh-cht": "更改{0}的電子郵件",
5795 "xloc": [
5796 - "default.handlebars->27->1817"
5796 + "default.handlebars->27->1819"
5797 ]
5798 },
5799 {
@@ -5835,7 +5835,7 @@
5835 "xloc": [
5836 "default-mobile.handlebars->9->90",
5837 "default.handlebars->27->1238",
5838 - "default.handlebars->27->1804"
5838 + "default.handlebars->27->1806"
5839 ]
5840 },
5841 {
@@ -5854,7 +5854,7 @@
5854 "zh-chs": "更改{0}的密碼",
5855 "zh-cht": "更改{0}的密碼",
5856 "xloc": [
5857 - "default.handlebars->27->1824"
5857 + "default.handlebars->27->1826"
5858 ]
5859 },
5860 {
@@ -5866,7 +5866,7 @@
5866 "zh-chs": "更改{0}的真实名称",
5867 "zh-cht": "更改{0}的真實名稱",
5868 "xloc": [
5869 - "default.handlebars->27->1812"
5869 + "default.handlebars->27->1814"
5870 ]
5871 },
5872 {
@@ -5944,7 +5944,7 @@
5944 "zh-chs": "更改該用戶的密碼",
5945 "zh-cht": "更改該用戶的密碼",
5946 "xloc": [
5947 - "default.handlebars->27->1803"
5947 + "default.handlebars->27->1805"
5948 ]
5949 },
5950 {
@@ -6039,7 +6039,7 @@
6039 "zh-chs": "聊天室",
6040 "zh-cht": "聊天室",
6041 "xloc": [
6042 - "default.handlebars->27->1575",
6042 + "default.handlebars->27->1577",
6043 "default.handlebars->27->673",
6044 "default.handlebars->27->692"
6045 ]
@@ -6062,8 +6062,8 @@
6062 "xloc": [
6063 "default-mobile.handlebars->9->425",
6064 "default-mobile.handlebars->9->443",
6065 - "default.handlebars->27->1417",
6066 - "default.handlebars->27->1452"
6065 + "default.handlebars->27->1419",
6066 + "default.handlebars->27->1454"
6067 ]
6068 },
6069 {
@@ -6186,7 +6186,7 @@
6186 "zh-cht": "檢查...",
6187 "xloc": [
6188 "default.handlebars->27->1010",
6189 - "default.handlebars->27->1968"
6189 + "default.handlebars->27->1970"
6190 ]
6191 },
6192 {
@@ -6305,13 +6305,15 @@
6305 },
6306 {
6307 "en": "Chinese (Traditional)",
6308 - "en": "Chinese (Traditioneel)",
6309 - "zh-chs": "中国传统的)",
6310 - "zh-cht": "中國傳統的)",
6308 "xloc": [
6309 "default.handlebars->27->1208"
6310 ]
6311 },
6312 + {
6313 + "en": "Chinese (Traditioneel)",
6314 + "zh-chs": "中国传统的)",
6315 + "zh-cht": "中國傳統的)"
6316 + },
6317 {
6318 "cs": "ChromeOS",
6319 "de": "ChromeOS",
@@ -6392,7 +6394,7 @@
6394 "default-mobile.handlebars->9->318",
6395 "default-mobile.handlebars->9->320",
6396 "default-mobile.handlebars->9->59",
6395 - "default.handlebars->27->1538",
6397 + "default.handlebars->27->1540",
6398 "default.handlebars->27->877",
6399 "default.handlebars->27->879",
6400 "default.handlebars->27->881",
@@ -6434,7 +6436,7 @@
6436 "zh-chs": "全部清除",
6437 "zh-cht": "全部清除",
6438 "xloc": [
6437 - "default.handlebars->27->1895"
6439 + "default.handlebars->27->1897"
6440 ]
6441 },
6442 {
@@ -6490,7 +6492,7 @@
6492 "zh-chs": "清除此通知",
6493 "zh-cht": "清除此通知",
6494 "xloc": [
6493 - "default.handlebars->27->1894"
6495 + "default.handlebars->27->1896"
6496 ]
6497 },
6498 {
@@ -6541,8 +6543,8 @@
6543 "zh-chs": "单击此处编辑设备组名称",
6544 "zh-cht": "單擊此處編輯設備組名稱",
6545 "xloc": [
6544 - "default.handlebars->27->1280",
6545 - "default.handlebars->27->1489"
6546 + "default.handlebars->27->1282",
6547 + "default.handlebars->27->1491"
6548 ]
6549 },
6550 {
@@ -6576,7 +6578,7 @@
6578 "zh-chs": "单击此处编辑用户组名称",
6579 "zh-cht": "單擊此處編輯用戶組名稱",
6580 "xloc": [
6579 - "default.handlebars->27->1692"
6581 + "default.handlebars->27->1694"
6582 ]
6583 },
6584 {
@@ -6678,7 +6680,7 @@
6680 "en": "Client ID",
6681 "nl": "Client ID",
6682 "xloc": [
6681 - "default.handlebars->27->1262"
6683 + "default.handlebars->27->1264"
6684 ]
6685 },
6686 {
@@ -6697,15 +6699,15 @@
6699 "zh-chs": "客戶端啟動的遠程訪問",
6700 "zh-cht": "客戶端啟動的遠程訪問",
6701 "xloc": [
6700 - "default.handlebars->27->1354",
6701 - "default.handlebars->27->1359"
6702 + "default.handlebars->27->1356",
6703 + "default.handlebars->27->1361"
6704 ]
6705 },
6706 {
6707 "en": "Client Secret",
6708 "nl": "Client Secret",
6709 "xloc": [
6708 - "default.handlebars->27->1263"
6710 + "default.handlebars->27->1265"
6711 ]
6712 },
6713 {
@@ -6806,8 +6808,8 @@
6808 "zh-chs": "通用設備組",
6809 "zh-cht": "通用設備組",
6810 "xloc": [
6809 - "default.handlebars->27->1711",
6810 - "default.handlebars->27->1829"
6811 + "default.handlebars->27->1713",
6812 + "default.handlebars->27->1831"
6813 ]
6814 },
6815 {
@@ -6826,8 +6828,8 @@
6828 "zh-chs": "通用設備",
6829 "zh-cht": "通用設備",
6830 "xloc": [
6829 - "default.handlebars->27->1717",
6830 - "default.handlebars->27->1841"
6831 + "default.handlebars->27->1719",
6832 + "default.handlebars->27->1843"
6833 ]
6834 },
6835 {
@@ -6857,7 +6859,7 @@
6859 "zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
6860 "xloc": [
6861 "default-mobile.handlebars->9->127",
6860 - "default.handlebars->27->1533"
6862 + "default.handlebars->27->1535"
6863 ]
6864 },
6865 {
@@ -6878,11 +6880,11 @@
6880 "xloc": [
6881 "default-mobile.handlebars->9->276",
6882 "default-mobile.handlebars->9->405",
6881 - "default.handlebars->27->1368",
6882 - "default.handlebars->27->1603",
6883 - "default.handlebars->27->1682",
6884 - "default.handlebars->27->1731",
6885 - "default.handlebars->27->1827",
6883 + "default.handlebars->27->1370",
6884 + "default.handlebars->27->1605",
6885 + "default.handlebars->27->1684",
6886 + "default.handlebars->27->1733",
6887 + "default.handlebars->27->1829",
6888 "default.handlebars->27->462",
6889 "default.handlebars->27->747",
6890 "default.handlebars->27->756"
@@ -6941,7 +6943,7 @@
6943 "zh-chs": "确认删除选定的帐户?",
6944 "zh-cht": "確認刪除所選帳戶?",
6945 "xloc": [
6944 - "default.handlebars->27->1602"
6946 + "default.handlebars->27->1604"
6947 ]
6948 },
6949 {
@@ -6976,7 +6978,7 @@
6978 "zh-chs": "确认删除选定的用户组?",
6979 "zh-cht": "確認刪除選定的用戶組?",
6980 "xloc": [
6979 - "default.handlebars->27->1681"
6981 + "default.handlebars->27->1683"
6982 ]
6983 },
6984 {
@@ -6995,7 +6997,7 @@
6997 "zh-chs": "確認刪除用戶{0}?",
6998 "zh-cht": "確認刪除用戶{0}?",
6999 "xloc": [
6998 - "default.handlebars->27->1826"
7000 + "default.handlebars->27->1828"
7001 ]
7002 },
7003 {
@@ -7011,7 +7013,7 @@
7013 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
7014 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
7015 "xloc": [
7014 - "default.handlebars->27->1734"
7016 + "default.handlebars->27->1736"
7017 ]
7018 },
7019 {
@@ -7027,7 +7029,7 @@
7029 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
7030 "zh-cht": "確認刪除用戶組“ {0} ”的成員身份?",
7031 "xloc": [
7030 - "default.handlebars->27->1856"
7032 + "default.handlebars->27->1858"
7033 ]
7034 },
7035 {
@@ -7086,7 +7088,7 @@
7088 "zh-chs": "確認覆蓋?",
7089 "zh-cht": "確認覆蓋?",
7090 "xloc": [
7089 - "default.handlebars->27->1532"
7091 + "default.handlebars->27->1534"
7092 ]
7093 },
7094 {
@@ -7102,8 +7104,8 @@
7104 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
7105 "zh-cht": "是否確認刪除設備“ {0} ”的訪問權限?",
7106 "xloc": [
7105 - "default.handlebars->27->1724",
7106 - "default.handlebars->27->1847"
7107 + "default.handlebars->27->1726",
7108 + "default.handlebars->27->1849"
7109 ]
7110 },
7111 {
@@ -7119,8 +7121,8 @@
7121 "zh-chs": "是否确认删除设备组“ {0} ”的访问权限?",
7122 "zh-cht": "確認刪除設備組“ {0} ”的訪問權限?",
7123 "xloc": [
7122 - "default.handlebars->27->1726",
7123 - "default.handlebars->27->1860"
7124 + "default.handlebars->27->1728",
7125 + "default.handlebars->27->1862"
7126 ]
7127 },
7128 {
@@ -7136,7 +7138,7 @@
7138 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
7139 "zh-cht": "是否確認刪除用戶“ {0} ”的訪問權限?",
7140 "xloc": [
7139 - "default.handlebars->27->1849"
7141 + "default.handlebars->27->1851"
7142 ]
7143 },
7144 {
@@ -7152,7 +7154,7 @@
7154 "zh-chs": "确认删除用户组“ {0} ”的访问权限?",
7155 "zh-cht": "確認刪除用戶組“ {0} ”的訪問權限?",
7156 "xloc": [
7155 - "default.handlebars->27->1852"
7157 + "default.handlebars->27->1854"
7158 ]
7159 },
7160 {
@@ -7168,8 +7170,8 @@
7170 "zh-chs": "确认删除访问权限?",
7171 "zh-cht": "確認刪除訪問權限?",
7172 "xloc": [
7171 - "default.handlebars->27->1850",
7172 - "default.handlebars->27->1853"
7173 + "default.handlebars->27->1852",
7174 + "default.handlebars->27->1855"
7175 ]
7176 },
7177 {
@@ -7252,7 +7254,7 @@
7254 "zh-chs": "确认删除用户“ {0} ”的权限?",
7255 "zh-cht": "是否確認刪除用戶“ {0} ”的權限?",
7256 "xloc": [
7255 - "default.handlebars->27->1461"
7257 + "default.handlebars->27->1463"
7258 ]
7259 },
7260 {
@@ -7268,7 +7270,7 @@
7270 "zh-chs": "确认删除用户组“ {0} ”的权限?",
7271 "zh-cht": "確認刪除用戶組“ {0} ”的權限?",
7272 "xloc": [
7271 - "default.handlebars->27->1463"
7273 + "default.handlebars->27->1465"
7274 ]
7275 },
7276 {
@@ -7322,7 +7324,7 @@
7324 "default-mobile.handlebars->9->291",
7325 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
7326 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
7325 - "default.handlebars->27->1307",
7327 + "default.handlebars->27->1309",
7328 "default.handlebars->27->850",
7329 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
7330 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
@@ -7368,8 +7370,8 @@
7370 "zh-chs": "連接到服務器",
7371 "zh-cht": "連接到服務器",
7372 "xloc": [
7371 - "default.handlebars->27->1358",
7372 - "default.handlebars->27->1362"
7373 + "default.handlebars->27->1360",
7374 + "default.handlebars->27->1364"
7375 ]
7376 },
7377 {
@@ -7450,7 +7452,7 @@
7452 "zh-chs": "連接的英特爾&reg;AMT",
7453 "zh-cht": "連接的英特爾&reg;AMT",
7454 "xloc": [
7453 - "default.handlebars->27->1913"
7455 + "default.handlebars->27->1915"
7456 ]
7457 },
7458 {
@@ -7469,7 +7471,7 @@
7471 "zh-chs": "關聯用戶",
7472 "zh-cht": "關聯用戶",
7473 "xloc": [
7472 - "default.handlebars->27->1918"
7474 + "default.handlebars->27->1920"
7475 ]
7476 },
7477 {
@@ -7555,7 +7557,7 @@
7557 "zh-chs": "連接數",
7558 "zh-cht": "連接數",
7559 "xloc": [
7558 - "default.handlebars->27->1932"
7560 + "default.handlebars->27->1934"
7561 ]
7562 },
7563 {
@@ -7573,7 +7575,7 @@
7575 "zh-chs": "連接繼電器",
7576 "zh-cht": "連接繼電器",
7577 "xloc": [
7576 - "default.handlebars->27->1960"
7578 + "default.handlebars->27->1962"
7579 ]
7580 },
7581 {
@@ -7631,7 +7633,7 @@
7633 "zh-cht": "連接性",
7634 "xloc": [
7635 "default-mobile.handlebars->9->244",
7634 - "default.handlebars->27->1496",
7636 + "default.handlebars->27->1498",
7637 "default.handlebars->27->228",
7638 "default.handlebars->27->607",
7639 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -7715,7 +7717,7 @@
7717 "zh-chs": "Cookie編碼器",
7718 "zh-cht": "Cookie編碼器",
7719 "xloc": [
7718 - "default.handlebars->27->1946"
7720 + "default.handlebars->27->1948"
7721 ]
7722 },
7723 {
@@ -7854,8 +7856,8 @@
7856 "zh-chs": "複製鏈接到剪貼板",
7857 "zh-cht": "複製鏈接到剪貼板",
7858 "xloc": [
7857 - "default.handlebars->27->1501",
7858 - "default.handlebars->27->1520",
7859 + "default.handlebars->27->1503",
7860 + "default.handlebars->27->1522",
7861 "default.handlebars->27->192",
7862 "default.handlebars->27->367"
7863 ]
@@ -8072,7 +8074,7 @@
8074 "zh-chs": "核心服務器",
8075 "zh-cht": "核心服務器",
8076 "xloc": [
8075 - "default.handlebars->27->1945"
8077 + "default.handlebars->27->1947"
8078 ]
8079 },
8080 {
@@ -8110,7 +8112,7 @@
8112 "zh-chs": "創建帳號",
8113 "zh-cht": "創建帳號",
8114 "xloc": [
8113 - "default.handlebars->27->1650",
8115 + "default.handlebars->27->1652",
8116 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
8117 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
8118 ]
@@ -8150,7 +8152,7 @@
8152 "zh-chs": "創建用戶組",
8153 "zh-cht": "創建用戶組",
8154 "xloc": [
8153 - "default.handlebars->27->1689"
8155 + "default.handlebars->27->1691"
8156 ]
8157 },
8158 {
@@ -8218,7 +8220,7 @@
8220 "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:",
8221 "zh-cht": "通過導入以下格式的JSON文件一次創建多個帳戶:",
8222 "xloc": [
8221 - "default.handlebars->27->1614"
8223 + "default.handlebars->27->1616"
8224 ]
8225 },
8226 {
@@ -8268,7 +8270,7 @@
8270 "zh-chs": "創建",
8271 "zh-cht": "創建",
8272 "xloc": [
8271 - "default.handlebars->27->1763"
8273 + "default.handlebars->27->1765"
8274 ]
8275 },
8276 {
@@ -8277,7 +8279,7 @@
8279 "zh-chs": "创作时间",
8280 "zh-cht": "創作時間",
8281 "xloc": [
8280 - "default.handlebars->27->1290"
8282 + "default.handlebars->27->1292"
8283 ]
8284 },
8285 {
@@ -8306,8 +8308,14 @@
8308 "zh-chs": "创作者",
8309 "zh-cht": "創作者",
8310 "xloc": [
8309 - "default.handlebars->27->1288",
8310 - "default.handlebars->27->1289"
8311 + "default.handlebars->27->1290",
8312 + "default.handlebars->27->1291"
8313 + ]
8314 + },
8315 + {
8316 + "en": "Credentials",
8317 + "xloc": [
8318 + "default.handlebars->27->1262"
8319 ]
8320 },
8321 {
@@ -8620,7 +8628,7 @@
8628 "zh-chs": "停用客戶端控制模式(CCM)",
8629 "zh-cht": "停用客戶端控制模式(CCM)",
8630 "xloc": [
8623 - "default.handlebars->27->1346"
8631 + "default.handlebars->27->1348"
8632 ]
8633 },
8634 {
@@ -8652,10 +8660,10 @@
8660 "zh-chs": "默认",
8661 "zh-cht": "默認",
8662 "xloc": [
8655 - "default.handlebars->27->1637",
8656 - "default.handlebars->27->1685",
8657 - "default.handlebars->27->1696",
8658 - "default.handlebars->27->1752"
8663 + "default.handlebars->27->1639",
8664 + "default.handlebars->27->1687",
8665 + "default.handlebars->27->1698",
8666 + "default.handlebars->27->1754"
8667 ]
8668 },
8669 {
@@ -8678,7 +8686,7 @@
8686 "default-mobile.handlebars->9->301",
8687 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
8688 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
8681 - "default.handlebars->27->1527",
8689 + "default.handlebars->27->1529",
8690 "default.handlebars->27->511",
8691 "default.handlebars->27->863",
8692 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
@@ -8723,7 +8731,7 @@
8731 "zh-chs": "删除帐号",
8732 "zh-cht": "刪除帳號",
8733 "xloc": [
8726 - "default.handlebars->27->1604"
8734 + "default.handlebars->27->1606"
8735 ]
8736 },
8737 {
@@ -8764,8 +8772,8 @@
8772 "xloc": [
8773 "default-mobile.handlebars->9->403",
8774 "default-mobile.handlebars->9->406",
8767 - "default.handlebars->27->1339",
8768 - "default.handlebars->27->1369"
8775 + "default.handlebars->27->1341",
8776 + "default.handlebars->27->1371"
8777 ]
8778 },
8779 {
@@ -8823,7 +8831,7 @@
8831 "zh-chs": "刪除用戶",
8832 "zh-cht": "刪除用戶",
8833 "xloc": [
8826 - "default.handlebars->27->1802"
8834 + "default.handlebars->27->1804"
8835 ]
8836 },
8837 {
@@ -8842,8 +8850,8 @@
8850 "zh-chs": "刪除用戶組",
8851 "zh-cht": "刪除用戶組",
8852 "xloc": [
8845 - "default.handlebars->27->1722",
8846 - "default.handlebars->27->1732"
8853 + "default.handlebars->27->1724",
8854 + "default.handlebars->27->1734"
8855 ]
8856 },
8857 {
@@ -8859,7 +8867,7 @@
8867 "zh-chs": "删除用户组",
8868 "zh-cht": "刪除用戶組",
8869 "xloc": [
8862 - "default.handlebars->27->1683"
8870 + "default.handlebars->27->1685"
8871 ]
8872 },
8873 {
@@ -8878,7 +8886,7 @@
8886 "zh-chs": "刪除用戶{0}",
8887 "zh-cht": "刪除用戶{0}",
8888 "xloc": [
8881 - "default.handlebars->27->1825"
8889 + "default.handlebars->27->1827"
8890 ]
8891 },
8892 {
@@ -8898,7 +8906,7 @@
8906 "zh-cht": "刪除帳戶",
8907 "xloc": [
8908 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
8901 - "default.handlebars->27->1600",
8909 + "default.handlebars->27->1602",
8910 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
8911 ]
8912 },
@@ -8934,7 +8942,7 @@
8942 "zh-chs": "删除群组",
8943 "zh-cht": "刪除群組",
8944 "xloc": [
8937 - "default.handlebars->27->1679"
8945 + "default.handlebars->27->1681"
8946 ]
8947 },
8948 {
@@ -8974,7 +8982,7 @@
8982 "xloc": [
8983 "default-mobile.handlebars->9->124",
8984 "default-mobile.handlebars->9->303",
8977 - "default.handlebars->27->1529",
8985 + "default.handlebars->27->1531",
8986 "default.handlebars->27->865"
8987 ]
8988 },
@@ -8994,7 +9002,7 @@
9002 "zh-chs": "刪除用戶組{0}?",
9003 "zh-cht": "刪除用戶組{0}?",
9004 "xloc": [
8997 - "default.handlebars->27->1730"
9005 + "default.handlebars->27->1732"
9006 ]
9007 },
9008 {
@@ -9015,7 +9023,7 @@
9023 "xloc": [
9024 "default-mobile.handlebars->9->123",
9025 "default-mobile.handlebars->9->302",
9018 - "default.handlebars->27->1528",
9026 + "default.handlebars->27->1530",
9027 "default.handlebars->27->864"
9028 ]
9029 },
@@ -9144,12 +9152,12 @@
9152 "default-mobile.handlebars->9->395",
9153 "default-mobile.handlebars->9->408",
9154 "default.handlebars->27->1250",
9147 - "default.handlebars->27->1285",
9148 - "default.handlebars->27->1371",
9149 - "default.handlebars->27->1688",
9150 - "default.handlebars->27->1698",
9151 - "default.handlebars->27->1699",
9152 - "default.handlebars->27->1728",
9155 + "default.handlebars->27->1287",
9156 + "default.handlebars->27->1373",
9157 + "default.handlebars->27->1690",
9158 + "default.handlebars->27->1700",
9159 + "default.handlebars->27->1701",
9160 + "default.handlebars->27->1730",
9161 "default.handlebars->27->552",
9162 "default.handlebars->27->553",
9163 "default.handlebars->27->77",
@@ -9192,8 +9200,8 @@
9200 "zh-cht": "桌面",
9201 "xloc": [
9202 "default-mobile.handlebars->9->256",
9195 - "default.handlebars->27->1376",
9196 - "default.handlebars->27->1872",
9203 + "default.handlebars->27->1378",
9204 + "default.handlebars->27->1874",
9205 "default.handlebars->27->517",
9206 "default.handlebars->27->835",
9207 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
@@ -9236,8 +9244,8 @@
9244 "zh-chs": "桌面通知",
9245 "zh-cht": "桌面通知",
9246 "xloc": [
9239 - "default.handlebars->27->1298",
9240 - "default.handlebars->27->1778",
9247 + "default.handlebars->27->1300",
9248 + "default.handlebars->27->1780",
9249 "default.handlebars->27->588"
9250 ]
9251 },
@@ -9257,8 +9265,8 @@
9265 "zh-chs": "桌面提示",
9266 "zh-cht": "桌面提示",
9267 "xloc": [
9260 - "default.handlebars->27->1297",
9261 - "default.handlebars->27->1777",
9268 + "default.handlebars->27->1299",
9269 + "default.handlebars->27->1779",
9270 "default.handlebars->27->587"
9271 ]
9272 },
@@ -9278,8 +9286,8 @@
9286 "zh-chs": "桌面提示+工具欄",
9287 "zh-cht": "桌面提示+工具欄",
9288 "xloc": [
9281 - "default.handlebars->27->1295",
9282 - "default.handlebars->27->1775",
9289 + "default.handlebars->27->1297",
9290 + "default.handlebars->27->1777",
9291 "default.handlebars->27->585"
9292 ]
9293 },
@@ -9316,8 +9324,8 @@
9324 "zh-chs": "桌面工具欄",
9325 "zh-cht": "桌面工具欄",
9326 "xloc": [
9319 - "default.handlebars->27->1296",
9320 - "default.handlebars->27->1776",
9327 + "default.handlebars->27->1298",
9328 + "default.handlebars->27->1778",
9329 "default.handlebars->27->586"
9330 ]
9331 },
@@ -9407,9 +9415,9 @@
9415 "zh-chs": "設備",
9416 "zh-cht": "設備",
9417 "xloc": [
9410 - "default.handlebars->27->1398",
9418 + "default.handlebars->27->1400",
9419 "default.handlebars->27->183",
9412 - "default.handlebars->27->1844",
9420 + "default.handlebars->27->1846",
9421 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
9422 ]
9423 },
@@ -9449,14 +9457,14 @@
9457 "zh-chs": "設備組",
9458 "zh-cht": "設備組",
9459 "xloc": [
9452 - "default.handlebars->27->1393",
9453 - "default.handlebars->27->1396",
9454 - "default.handlebars->27->1397",
9455 - "default.handlebars->27->1551",
9456 - "default.handlebars->27->1714",
9457 - "default.handlebars->27->1720",
9458 - "default.handlebars->27->1832",
9459 - "default.handlebars->27->1881"
9460 + "default.handlebars->27->1395",
9461 + "default.handlebars->27->1398",
9462 + "default.handlebars->27->1399",
9463 + "default.handlebars->27->1553",
9464 + "default.handlebars->27->1716",
9465 + "default.handlebars->27->1722",
9466 + "default.handlebars->27->1834",
9467 + "default.handlebars->27->1883"
9468 ]
9469 },
9470 {
@@ -9476,7 +9484,7 @@
9484 "zh-cht": "設備組用戶",
9485 "xloc": [
9486 "default-mobile.handlebars->9->450",
9479 - "default.handlebars->27->1459"
9487 + "default.handlebars->27->1461"
9488 ]
9489 },
9490 {
@@ -9496,11 +9504,11 @@
9504 "zh-cht": "設備組",
9505 "xloc": [
9506 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
9499 - "default.handlebars->27->1567",
9500 - "default.handlebars->27->1673",
9501 - "default.handlebars->27->1701",
9502 - "default.handlebars->27->1772",
9503 - "default.handlebars->27->1916",
9507 + "default.handlebars->27->1569",
9508 + "default.handlebars->27->1675",
9509 + "default.handlebars->27->1703",
9510 + "default.handlebars->27->1774",
9511 + "default.handlebars->27->1918",
9512 "default.handlebars->container->column_l->p2->p2info->7"
9513 ]
9514 },
@@ -9571,7 +9579,7 @@
9579 "zh-cht": "設備名稱",
9580 "xloc": [
9581 "default-mobile.handlebars->9->278",
9574 - "default.handlebars->27->1880",
9582 + "default.handlebars->27->1882",
9583 "default.handlebars->27->284",
9584 "default.handlebars->27->788",
9585 "player.handlebars->3->9"
@@ -9631,7 +9639,7 @@
9639 "zh-cht": "設備連接。",
9640 "xloc": [
9641 "default.handlebars->27->1218",
9634 - "default.handlebars->27->1480"
9642 + "default.handlebars->27->1482"
9643 ]
9644 },
9645 {
@@ -9651,7 +9659,7 @@
9659 "zh-cht": "設備斷開連接。",
9660 "xloc": [
9661 "default.handlebars->27->1219",
9654 - "default.handlebars->27->1481"
9662 + "default.handlebars->27->1483"
9663 ]
9664 },
9665 {
@@ -10024,8 +10032,8 @@
10032 "zh-chs": "设备",
10033 "zh-cht": "設備",
10034 "xloc": [
10027 - "default.handlebars->27->1674",
10028 - "default.handlebars->27->1702"
10035 + "default.handlebars->27->1676",
10036 + "default.handlebars->27->1704"
10037 ]
10038 },
10039 {
@@ -10065,7 +10073,7 @@
10073 "xloc": [
10074 "default-mobile.handlebars->9->292",
10075 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
10068 - "default.handlebars->27->1308",
10076 + "default.handlebars->27->1310",
10077 "default.handlebars->27->851",
10078 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
10079 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
@@ -10220,7 +10228,7 @@
10228 "zh-chs": "显示公共链接",
10229 "zh-cht": "顯示公共鏈接",
10230 "xloc": [
10223 - "default.handlebars->27->1500"
10231 + "default.handlebars->27->1502"
10232 ]
10233 },
10234 {
@@ -10239,7 +10247,7 @@
10247 "zh-chs": "沒做什麼",
10248 "zh-cht": "沒做什麼",
10249 "xloc": [
10242 - "default.handlebars->27->1352"
10250 + "default.handlebars->27->1354"
10251 ]
10252 },
10253 {
@@ -10250,10 +10258,10 @@
10258 "zh-chs": "域",
10259 "zh-cht": "域",
10260 "xloc": [
10253 - "default.handlebars->27->1638",
10254 - "default.handlebars->27->1686",
10255 - "default.handlebars->27->1695",
10256 - "default.handlebars->27->1751",
10261 + "default.handlebars->27->1640",
10262 + "default.handlebars->27->1688",
10263 + "default.handlebars->27->1697",
10264 + "default.handlebars->27->1753",
10265 "mstsc.handlebars->main->1->3->1->2->1->0",
10266 "mstsc.handlebars->main->1->3->1->2->3"
10267 ]
@@ -10270,8 +10278,8 @@
10278 "zh-chs": "不要配置",
10279 "zh-cht": "不要配置",
10280 "xloc": [
10273 - "default.handlebars->27->1356",
10274 - "default.handlebars->27->1361"
10281 + "default.handlebars->27->1358",
10282 + "default.handlebars->27->1363"
10283 ]
10284 },
10285 {
@@ -10286,7 +10294,7 @@
10294 "zh-chs": "不要连接到服务器",
10295 "zh-cht": "不要連接到服務器",
10296 "xloc": [
10289 - "default.handlebars->27->1357"
10297 + "default.handlebars->27->1359"
10298 ]
10299 },
10300 {
@@ -10487,7 +10495,7 @@
10495 "zh-chs": "下载报告",
10496 "zh-cht": "下載報告",
10497 "xloc": [
10490 - "default.handlebars->27->1556",
10498 + "default.handlebars->27->1558",
10499 "default.handlebars->container->column_l->p3->3->1->0->3"
10500 ]
10501 },
@@ -10668,7 +10676,7 @@
10676 "zh-chs": "使用以下一種文件格式下載事件列表。",
10677 "zh-cht": "使用以下一種文件格式下載事件列表。",
10678 "xloc": [
10671 - "default.handlebars->27->1557"
10679 + "default.handlebars->27->1559"
10680 ]
10681 },
10682 {
@@ -10687,7 +10695,7 @@
10695 "zh-chs": "使用以下一種文件格式下載用戶列表。",
10696 "zh-cht": "使用以下一種文件格式下載用戶列表。",
10697 "xloc": [
10690 - "default.handlebars->27->1622"
10698 + "default.handlebars->27->1624"
10699 ]
10700 },
10701 {
@@ -10780,7 +10788,7 @@
10788 "zh-chs": "代理重复",
10789 "zh-cht": "代理重複",
10790 "xloc": [
10783 - "default.handlebars->27->1912"
10791 + "default.handlebars->27->1914"
10792 ]
10793 },
10794 {
@@ -10818,7 +10826,7 @@
10826 "zh-chs": "重複的用戶組",
10827 "zh-cht": "重複的用戶組",
10828 "xloc": [
10821 - "default.handlebars->27->1690"
10829 + "default.handlebars->27->1692"
10830 ]
10831 },
10832 {
@@ -10853,8 +10861,8 @@
10861 "zh-chs": "持續時間",
10862 "zh-cht": "持續時間",
10863 "xloc": [
10856 - "default.handlebars->27->1866",
10857 - "default.handlebars->27->1886",
10864 + "default.handlebars->27->1868",
10865 + "default.handlebars->27->1888",
10866 "player.handlebars->3->2"
10867 ]
10868 },
@@ -10874,7 +10882,7 @@
10882 "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。",
10883 "zh-cht": "在激活期間,代理將有權訪問管理員密碼信息。",
10884 "xloc": [
10877 - "default.handlebars->27->1366"
10885 + "default.handlebars->27->1368"
10886 ]
10887 },
10888 {
@@ -11150,10 +11158,10 @@
11158 "default-mobile.handlebars->9->409",
11159 "default-mobile.handlebars->9->411",
11160 "default-mobile.handlebars->9->429",
11153 - "default.handlebars->27->1372",
11154 - "default.handlebars->27->1402",
11155 - "default.handlebars->27->1425",
11156 - "default.handlebars->27->1437"
11161 + "default.handlebars->27->1374",
11162 + "default.handlebars->27->1404",
11163 + "default.handlebars->27->1427",
11164 + "default.handlebars->27->1439"
11165 ]
11166 },
11167 {
@@ -11172,7 +11180,7 @@
11180 "zh-chs": "編輯設備組功能",
11181 "zh-cht": "編輯設備組功能",
11182 "xloc": [
11175 - "default.handlebars->27->1388"
11183 + "default.handlebars->27->1390"
11184 ]
11185 },
11186 {
@@ -11191,8 +11199,8 @@
11199 "zh-chs": "編輯設備組權限",
11200 "zh-cht": "編輯設備組權限",
11201 "xloc": [
11194 - "default.handlebars->27->1422",
11195 - "default.handlebars->27->1434"
11202 + "default.handlebars->27->1424",
11203 + "default.handlebars->27->1436"
11204 ]
11205 },
11206 {
@@ -11211,7 +11219,7 @@
11219 "zh-chs": "編輯設備組用戶同意",
11220 "zh-cht": "編輯設備組用戶同意",
11221 "xloc": [
11214 - "default.handlebars->27->1373"
11222 + "default.handlebars->27->1375"
11223 ]
11224 },
11225 {
@@ -11231,7 +11239,7 @@
11239 "zh-cht": "編輯設備說明",
11240 "xloc": [
11241 "default-mobile.handlebars->9->423",
11234 - "default.handlebars->27->1415"
11242 + "default.handlebars->27->1417"
11243 ]
11244 },
11245 {
@@ -11249,8 +11257,8 @@
11257 "zh-chs": "编辑设备权限",
11258 "zh-cht": "編輯設備權限",
11259 "xloc": [
11252 - "default.handlebars->27->1427",
11253 - "default.handlebars->27->1429"
11260 + "default.handlebars->27->1429",
11261 + "default.handlebars->27->1431"
11262 ]
11263 },
11264 {
@@ -11277,7 +11285,7 @@
11285 "zh-chs": "编辑设备用户同意",
11286 "zh-cht": "編輯設備用戶同意",
11287 "xloc": [
11280 - "default.handlebars->27->1375"
11288 + "default.handlebars->27->1377"
11289 ]
11290 },
11291 {
@@ -11337,7 +11345,7 @@
11345 "zh-cht": "編輯筆記",
11346 "xloc": [
11347 "default-mobile.handlebars->9->436",
11340 - "default.handlebars->27->1444"
11348 + "default.handlebars->27->1446"
11349 ]
11350 },
11351 {
@@ -11353,7 +11361,7 @@
11361 "zh-chs": "编辑用户同意",
11362 "zh-cht": "編輯用戶同意",
11363 "xloc": [
11356 - "default.handlebars->27->1374"
11364 + "default.handlebars->27->1376"
11365 ]
11366 },
11367 {
@@ -11372,7 +11380,7 @@
11380 "zh-chs": "編輯用戶設備組權限",
11381 "zh-cht": "編輯用戶設備組權限",
11382 "xloc": [
11375 - "default.handlebars->27->1435"
11383 + "default.handlebars->27->1437"
11384 ]
11385 },
11386 {
@@ -11390,7 +11398,7 @@
11398 "zh-chs": "编辑用户设备权限",
11399 "zh-cht": "編輯用戶設備權限",
11400 "xloc": [
11393 - "default.handlebars->27->1430"
11401 + "default.handlebars->27->1432"
11402 ]
11403 },
11404 {
@@ -11409,7 +11417,7 @@
11417 "zh-chs": "編輯用戶組",
11418 "zh-cht": "編輯用戶組",
11419 "xloc": [
11412 - "default.handlebars->27->1729"
11420 + "default.handlebars->27->1731"
11421 ]
11422 },
11423 {
@@ -11425,7 +11433,7 @@
11433 "zh-chs": "编辑用户组设备权限",
11434 "zh-cht": "編輯用戶組設備權限",
11435 "xloc": [
11428 - "default.handlebars->27->1432"
11436 + "default.handlebars->27->1434"
11437 ]
11438 },
11439 {
@@ -11476,11 +11484,11 @@
11484 "zh-cht": "電子郵件",
11485 "xloc": [
11486 "default-mobile.handlebars->9->78",
11479 - "default.handlebars->27->1640",
11480 - "default.handlebars->27->1755",
11487 + "default.handlebars->27->1642",
11488 "default.handlebars->27->1757",
11482 - "default.handlebars->27->1797",
11483 - "default.handlebars->27->1813",
11489 + "default.handlebars->27->1759",
11490 + "default.handlebars->27->1799",
11491 + "default.handlebars->27->1815",
11492 "default.handlebars->27->334",
11493 "login-mobile.handlebars->5->42",
11494 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -11610,7 +11618,7 @@
11618 "zh-chs": "邮件未验证",
11619 "zh-cht": "郵件未驗證",
11620 "xloc": [
11613 - "default.handlebars->27->1586"
11621 + "default.handlebars->27->1588"
11622 ]
11623 },
11624 {
@@ -11629,8 +11637,8 @@
11637 "zh-chs": "電子郵件已驗證",
11638 "zh-cht": "電子郵件已驗證",
11639 "xloc": [
11632 - "default.handlebars->27->1587",
11633 - "default.handlebars->27->1749"
11640 + "default.handlebars->27->1589",
11641 + "default.handlebars->27->1751"
11642 ]
11643 },
11644 {
@@ -11649,7 +11657,7 @@
11657 "zh-chs": "電子郵件已驗證。",
11658 "zh-cht": "電子郵件已驗證。",
11659 "xloc": [
11652 - "default.handlebars->27->1646"
11660 + "default.handlebars->27->1648"
11661 ]
11662 },
11663 {
@@ -11668,7 +11676,7 @@
11676 "zh-chs": "電子郵件未驗證",
11677 "zh-cht": "電子郵件未驗證",
11678 "xloc": [
11671 - "default.handlebars->27->1750"
11679 + "default.handlebars->27->1752"
11680 ]
11681 },
11682 {
@@ -11715,7 +11723,7 @@
11723 "zh-chs": "已通过电子邮件验证,并且需要重置密码。",
11724 "zh-cht": "已通過電子郵件驗證,並且需要重置密碼。",
11725 "xloc": [
11718 - "default.handlebars->27->1647"
11726 + "default.handlebars->27->1649"
11727 ]
11728 },
11729 {
@@ -11730,7 +11738,7 @@
11738 "zh-chs": "电子邮件/短信流量",
11739 "zh-cht": "電子郵件/短信流量",
11740 "xloc": [
11733 - "default.handlebars->27->1954"
11741 + "default.handlebars->27->1956"
11742 ]
11743 },
11744 {
@@ -11773,7 +11781,7 @@
11781 "zh-chs": "啟用邀請代碼",
11782 "zh-cht": "啟用邀請代碼",
11783 "xloc": [
11776 - "default.handlebars->27->1465"
11784 + "default.handlebars->27->1467"
11785 ]
11786 },
11787 {
@@ -11843,7 +11851,7 @@
11851 "zh-chs": "已启用",
11852 "zh-cht": "已啟用",
11853 "xloc": [
11846 - "default.handlebars->27->1888"
11854 + "default.handlebars->27->1890"
11855 ]
11856 },
11857 {
@@ -11874,7 +11882,7 @@
11882 "zh-chs": "时间结束",
11883 "zh-cht": "時間結束",
11884 "xloc": [
11877 - "default.handlebars->27->1885"
11885 + "default.handlebars->27->1887"
11886 ]
11887 },
11888 {
@@ -12159,7 +12167,7 @@
12167 "zh-chs": "輸入管理領域名稱的逗號分隔列表。",
12168 "zh-cht": "輸入管理領域名稱的逗號分隔列表。",
12169 "xloc": [
12162 - "default.handlebars->27->1651"
12170 + "default.handlebars->27->1653"
12171 ]
12172 },
12173 {
@@ -12366,7 +12374,7 @@
12374 "zh-chs": "活動列表導出",
12375 "zh-cht": "活動列表導出",
12376 "xloc": [
12369 - "default.handlebars->27->1562"
12377 + "default.handlebars->27->1564"
12378 ]
12379 },
12380 {
@@ -12526,7 +12534,7 @@
12534 "zh-chs": "外部",
12535 "zh-cht": "外部",
12536 "xloc": [
12529 - "default.handlebars->27->1939"
12537 + "default.handlebars->27->1941"
12538 ]
12539 },
12540 {
@@ -12670,7 +12678,7 @@
12678 "zh-chs": "特徵",
12679 "zh-cht": "特徵",
12680 "xloc": [
12673 - "default.handlebars->27->1294"
12681 + "default.handlebars->27->1296"
12682 ]
12683 },
12684 {
@@ -12780,8 +12788,8 @@
12788 "xloc": [
12789 "default-mobile.handlebars->9->167",
12790 "default-mobile.handlebars->9->257",
12783 - "default.handlebars->27->1383",
12784 - "default.handlebars->27->1873",
12791 + "default.handlebars->27->1385",
12792 + "default.handlebars->27->1875",
12793 "default.handlebars->27->251",
12794 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
12795 "default.handlebars->contextMenu->cxfiles"
@@ -12822,8 +12830,8 @@
12830 "zh-chs": "文件通知",
12831 "zh-cht": "文件通知",
12832 "xloc": [
12825 - "default.handlebars->27->1302",
12826 - "default.handlebars->27->1782",
12833 + "default.handlebars->27->1304",
12834 + "default.handlebars->27->1784",
12835 "default.handlebars->27->592"
12836 ]
12837 },
@@ -12843,8 +12851,8 @@
12851 "zh-chs": "文件提示",
12852 "zh-cht": "文件提示",
12853 "xloc": [
12846 - "default.handlebars->27->1301",
12847 - "default.handlebars->27->1781",
12854 + "default.handlebars->27->1303",
12855 + "default.handlebars->27->1783",
12856 "default.handlebars->27->591"
12857 ]
12858 },
@@ -13019,8 +13027,8 @@
13027 "zh-chs": "下次登錄時強制重置密碼。",
13028 "zh-cht": "下次登錄時強制重置密碼。",
13029 "xloc": [
13022 - "default.handlebars->27->1645",
13023 - "default.handlebars->27->1822"
13030 + "default.handlebars->27->1647",
13031 + "default.handlebars->27->1824"
13032 ]
13033 },
13034 {
@@ -13089,7 +13097,7 @@
13097 "zh-chs": "格式",
13098 "zh-cht": "格式",
13099 "xloc": [
13092 - "default.handlebars->27->1553"
13100 + "default.handlebars->27->1555"
13101 ]
13102 },
13103 {
@@ -13128,8 +13136,8 @@
13136 "zh-chs": "自由",
13137 "zh-cht": "自由",
13138 "xloc": [
13131 - "default.handlebars->27->1897",
13132 - "default.handlebars->27->1899"
13139 + "default.handlebars->27->1899",
13140 + "default.handlebars->27->1901"
13141 ]
13142 },
13143 {
@@ -13344,8 +13352,8 @@
13352 "default-mobile.handlebars->9->410",
13353 "default-mobile.handlebars->9->428",
13354 "default.handlebars->27->1259",
13347 - "default.handlebars->27->1401",
13348 - "default.handlebars->27->1657"
13355 + "default.handlebars->27->1403",
13356 + "default.handlebars->27->1659"
13357 ]
13358 },
13359 {
@@ -13364,7 +13372,7 @@
13372 "zh-chs": "正式管理員(保留所有權利)",
13373 "zh-cht": "正式管理員(保留所有權利)",
13374 "xloc": [
13367 - "default.handlebars->27->1436"
13375 + "default.handlebars->27->1438"
13376 ]
13377 },
13378 {
@@ -13456,7 +13464,7 @@
13464 "zh-chs": "正式管理員",
13465 "zh-cht": "正式管理員",
13466 "xloc": [
13459 - "default.handlebars->27->1743"
13467 + "default.handlebars->27->1745"
13468 ]
13469 },
13470 {
@@ -13884,11 +13892,17 @@
13892 "en": "Google Drive Backup",
13893 "nl": "Google Drive Backup",
13894 "xloc": [
13887 - "default.handlebars->27->1264",
13888 - "default.handlebars->27->1267",
13895 + "default.handlebars->27->1266",
13896 + "default.handlebars->27->1269",
13897 "default.handlebars->27->201"
13898 ]
13899 },
13900 + {
13901 + "en": "Google Drive Console",
13902 + "xloc": [
13903 + "default.handlebars->27->1263"
13904 + ]
13905 + },
13906 {
13907 "en": "Google Drive backup",
13908 "nl": "Google Drive backup",
@@ -13900,7 +13914,7 @@
13914 "en": "Google Drive backup is currently active.",
13915 "nl": "Google Drive backup is momenteel aktief",
13916 "xloc": [
13903 - "default.handlebars->27->1265"
13917 + "default.handlebars->27->1267"
13918 ]
13919 },
13920 {
@@ -13959,8 +13973,8 @@
13973 "zh-chs": "集體行動",
13974 "zh-cht": "集體行動",
13975 "xloc": [
13962 - "default.handlebars->27->1601",
13963 - "default.handlebars->27->1680",
13976 + "default.handlebars->27->1603",
13977 + "default.handlebars->27->1682",
13978 "default.handlebars->27->460",
13979 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
13980 "default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -13976,7 +13990,7 @@
13990 "zh-chs": "通过...分组",
13991 "zh-cht": "通過...分組",
13992 "xloc": [
13979 - "default.handlebars->27->1549"
13993 + "default.handlebars->27->1551"
13994 ]
13995 },
13996 {
@@ -13988,7 +14002,7 @@
14002 "zh-chs": "组标识符",
14003 "zh-cht": "組標識符",
14004 "xloc": [
13991 - "default.handlebars->27->1697"
14005 + "default.handlebars->27->1699"
14006 ]
14007 },
14008 {
@@ -14007,7 +14021,7 @@
14021 "zh-chs": "小組成員",
14022 "zh-cht": "小組成員",
14023 "xloc": [
14010 - "default.handlebars->27->1706"
14024 + "default.handlebars->27->1708"
14025 ]
14026 },
14027 {
@@ -14026,7 +14040,7 @@
14040 "zh-chs": "用戶{0}的組權限。",
14041 "zh-cht": "用戶{0}的組權限。",
14042 "xloc": [
14029 - "default.handlebars->27->1400"
14043 + "default.handlebars->27->1402"
14044 ]
14045 },
14046 {
@@ -14045,7 +14059,7 @@
14059 "zh-chs": "{0}的組權限。",
14060 "zh-cht": "{0}的組權限。",
14061 "xloc": [
14048 - "default.handlebars->27->1399"
14062 + "default.handlebars->27->1401"
14063 ]
14064 },
14065 {
@@ -14211,7 +14225,7 @@
14225 "zh-chs": "堆總數",
14226 "zh-cht": "堆總數",
14227 "xloc": [
14214 - "default.handlebars->27->1941"
14228 + "default.handlebars->27->1943"
14229 ]
14230 },
14231 {
@@ -14230,7 +14244,7 @@
14244 "zh-chs": "堆使用",
14245 "zh-cht": "堆使用",
14246 "xloc": [
14233 - "default.handlebars->27->1940"
14247 + "default.handlebars->27->1942"
14248 ]
14249 },
14250 {
@@ -14499,7 +14513,7 @@
14513 "zh-cht": "為{2}持有{0}項{1}",
14514 "xloc": [
14515 "default-mobile.handlebars->9->129",
14502 - "default.handlebars->27->1535"
14516 + "default.handlebars->27->1537"
14517 ]
14518 },
14519 {
@@ -14543,7 +14557,7 @@
14557 "zh-chs": "主機名同步",
14558 "zh-cht": "主機名同步",
14559 "xloc": [
14546 - "default.handlebars->27->1292"
14560 + "default.handlebars->27->1294"
14561 ]
14562 },
14563 {
@@ -15102,7 +15116,7 @@
15116 "zh-chs": "安裝CIRA",
15117 "zh-cht": "安裝CIRA",
15118 "xloc": [
15105 - "default.handlebars->27->1325"
15119 + "default.handlebars->27->1327"
15120 ]
15121 },
15122 {
@@ -15121,7 +15135,7 @@
15135 "zh-chs": "安裝本地",
15136 "zh-cht": "安裝本地",
15137 "xloc": [
15124 - "default.handlebars->27->1327"
15138 + "default.handlebars->27->1329"
15139 ]
15140 },
15141 {
@@ -15140,8 +15154,8 @@
15154 "zh-chs": "安裝類型",
15155 "zh-cht": "安裝方式",
15156 "xloc": [
15143 - "default.handlebars->27->1467",
15144 - "default.handlebars->27->1474",
15157 + "default.handlebars->27->1469",
15158 + "default.handlebars->27->1476",
15159 "default.handlebars->27->349",
15160 "default.handlebars->27->363",
15161 "default.handlebars->27->377"
@@ -15183,10 +15197,10 @@
15197 "zh-chs": "英特爾AMT",
15198 "zh-cht": "英特爾AMT",
15199 "xloc": [
15186 - "default.handlebars->27->1486",
15187 - "default.handlebars->27->1494",
15188 - "default.handlebars->27->1937",
15189 - "default.handlebars->27->1959"
15200 + "default.handlebars->27->1488",
15201 + "default.handlebars->27->1496",
15202 + "default.handlebars->27->1939",
15203 + "default.handlebars->27->1961"
15204 ]
15205 },
15206 {
@@ -15236,7 +15250,7 @@
15250 "zh-chs": "英特尔AMT重定向",
15251 "zh-cht": "英特爾AMT重定向",
15252 "xloc": [
15239 - "default.handlebars->27->1875"
15253 + "default.handlebars->27->1877"
15254 ]
15255 },
15256 {
@@ -15248,7 +15262,7 @@
15262 "zh-chs": "英特尔AMT WSMAN",
15263 "zh-cht": "英特爾AMT WSMAN",
15264 "xloc": [
15251 - "default.handlebars->27->1874"
15265 + "default.handlebars->27->1876"
15266 ]
15267 },
15268 {
@@ -15401,8 +15415,8 @@
15415 "default-mobile.handlebars->9->201",
15416 "default-mobile.handlebars->9->236",
15417 "default-mobile.handlebars->9->241",
15404 - "default.handlebars->27->1309",
15405 - "default.handlebars->27->1319",
15418 + "default.handlebars->27->1311",
15419 + "default.handlebars->27->1321",
15420 "default.handlebars->27->519",
15421 "default.handlebars->27->574",
15422 "default.handlebars->27->602"
@@ -15503,7 +15517,7 @@
15517 "zh-chs": "英特爾&reg;AMT政策",
15518 "zh-cht": "英特爾&reg;AMT政策",
15519 "xloc": [
15506 - "default.handlebars->27->1348"
15520 + "default.handlebars->27->1350"
15521 ]
15522 },
15523 {
@@ -15620,7 +15634,7 @@
15634 "zh-cht": "英特爾&reg;AMT桌面和串行事件。",
15635 "xloc": [
15636 "default.handlebars->27->1220",
15623 - "default.handlebars->27->1482"
15637 + "default.handlebars->27->1484"
15638 ]
15639 },
15640 {
@@ -15718,7 +15732,7 @@
15732 "xloc": [
15733 "default-mobile.handlebars->9->392",
15734 "default.handlebars->27->1249",
15721 - "default.handlebars->27->1282"
15735 + "default.handlebars->27->1284"
15736 ]
15737 },
15738 {
@@ -15963,8 +15977,8 @@
15977 "zh-chs": "僅限互動",
15978 "zh-cht": "僅限互動",
15979 "xloc": [
15966 - "default.handlebars->27->1470",
15967 - "default.handlebars->27->1477",
15980 + "default.handlebars->27->1472",
15981 + "default.handlebars->27->1479",
15982 "default.handlebars->27->352",
15983 "default.handlebars->27->366",
15984 "default.handlebars->27->380"
@@ -16024,7 +16038,7 @@
16038 "zh-chs": "無效的設備組類型",
16039 "zh-cht": "無效的設備組類型",
16040 "xloc": [
16027 - "default.handlebars->27->1911"
16041 + "default.handlebars->27->1913"
16042 ]
16043 },
16044 {
@@ -16043,7 +16057,7 @@
16057 "zh-chs": "無效的JSON",
16058 "zh-cht": "無效的JSON",
16059 "xloc": [
16046 - "default.handlebars->27->1905"
16060 + "default.handlebars->27->1907"
16061 ]
16062 },
16063 {
@@ -16062,8 +16076,8 @@
16076 "zh-chs": "無效的JSON文件格式。",
16077 "zh-cht": "無效的JSON文件格式。",
16078 "xloc": [
16065 - "default.handlebars->27->1619",
16066 - "default.handlebars->27->1621"
16079 + "default.handlebars->27->1621",
16080 + "default.handlebars->27->1623"
16081 ]
16082 },
16083 {
@@ -16082,7 +16096,7 @@
16096 "zh-chs": "無效的JSON文件:{0}。",
16097 "zh-cht": "無效的JSON文件:{0}。",
16098 "xloc": [
16085 - "default.handlebars->27->1617"
16099 + "default.handlebars->27->1619"
16100 ]
16101 },
16102 {
@@ -16101,7 +16115,7 @@
16115 "zh-chs": "無效的PKCS簽名",
16116 "zh-cht": "無效的PKCS簽名",
16117 "xloc": [
16104 - "default.handlebars->27->1903"
16118 + "default.handlebars->27->1905"
16119 ]
16120 },
16121 {
@@ -16120,7 +16134,7 @@
16134 "zh-chs": "無效的RSA密碼",
16135 "zh-cht": "無效的RSA密碼",
16136 "xloc": [
16123 - "default.handlebars->27->1904"
16137 + "default.handlebars->27->1906"
16138 ]
16139 },
16140 {
@@ -16211,7 +16225,7 @@
16225 "zh-chs": "使电子邮件无效",
16226 "zh-cht": "使電子郵件無效",
16227 "xloc": [
16214 - "default.handlebars->27->1595"
16228 + "default.handlebars->27->1597"
16229 ]
16230 },
16231 {
@@ -16283,7 +16297,7 @@
16297 "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:",
16298 "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:",
16299 "xloc": [
16286 - "default.handlebars->27->1472"
16300 + "default.handlebars->27->1474"
16301 ]
16302 },
16303 {
@@ -16320,7 +16334,7 @@
16334 "zh-chs": "邀請",
16335 "zh-cht": "邀請",
16336 "xloc": [
16323 - "default.handlebars->27->1335",
16337 + "default.handlebars->27->1337",
16338 "default.handlebars->27->282",
16339 "default.handlebars->27->368"
16340 ]
@@ -16341,11 +16355,11 @@
16355 "zh-chs": "邀請碼",
16356 "zh-cht": "邀請碼",
16357 "xloc": [
16344 - "default.handlebars->27->1313",
16345 - "default.handlebars->27->1466",
16346 - "default.handlebars->27->1471",
16358 + "default.handlebars->27->1315",
16359 + "default.handlebars->27->1468",
16360 "default.handlebars->27->1473",
16348 - "default.handlebars->27->1478"
16361 + "default.handlebars->27->1475",
16362 + "default.handlebars->27->1480"
16363 ]
16364 },
16365 {
@@ -16379,7 +16393,7 @@
16393 "zh-chs": "邀请某人在该设备组上安装网状代理。",
16394 "zh-cht": "邀請某人在該設備組上安裝網狀代理。",
16395 "xloc": [
16382 - "default.handlebars->27->1334",
16396 + "default.handlebars->27->1336",
16397 "default.handlebars->27->281"
16398 ]
16399 },
@@ -16474,7 +16488,7 @@
16488 "zh-chs": "JSON",
16489 "zh-cht": "JSON格式",
16490 "xloc": [
16477 - "default.handlebars->27->1555"
16491 + "default.handlebars->27->1557"
16492 ]
16493 },
16494 {
@@ -16493,8 +16507,8 @@
16507 "zh-chs": "JSON格式",
16508 "zh-cht": "JSON格式",
16509 "xloc": [
16496 - "default.handlebars->27->1560",
16497 - "default.handlebars->27->1625",
16510 + "default.handlebars->27->1562",
16511 + "default.handlebars->27->1627",
16512 "default.handlebars->27->480"
16513 ]
16514 },
@@ -17049,7 +17063,7 @@
17063 "zh-chs": "最後訪問",
17064 "zh-cht": "最後訪問",
17065 "xloc": [
17052 - "default.handlebars->27->1568"
17066 + "default.handlebars->27->1570"
17067 ]
17068 },
17069 {
@@ -17068,7 +17082,7 @@
17082 "zh-chs": "上次登錄",
17083 "zh-cht": "上次登錄",
17084 "xloc": [
17071 - "default.handlebars->27->1764"
17085 + "default.handlebars->27->1766"
17086 ]
17087 },
17088 {
@@ -17137,7 +17151,7 @@
17151 "zh-chs": "上次更改:{0}",
17152 "zh-cht": "上次更改:{0}",
17153 "xloc": [
17140 - "default.handlebars->27->1768"
17154 + "default.handlebars->27->1770"
17155 ]
17156 },
17157 {
@@ -17194,7 +17208,7 @@
17208 "zh-chs": "上次登錄:{0}",
17209 "zh-cht": "上次登錄:{0}",
17210 "xloc": [
17197 - "default.handlebars->27->1578"
17211 + "default.handlebars->27->1580"
17212 ]
17213 },
17214 {
@@ -17359,7 +17373,7 @@
17373 "zh-chs": "一无所有。",
17374 "zh-cht": "一無所有。",
17375 "xloc": [
17362 - "default.handlebars->27->1808"
17376 + "default.handlebars->27->1810"
17377 ]
17378 },
17379 {
@@ -17402,7 +17416,7 @@
17416 "zh-chs": "減",
17417 "zh-cht": "減",
17418 "xloc": [
17405 - "default.handlebars->27->1976"
17419 + "default.handlebars->27->1978"
17420 ]
17421 },
17422 {
@@ -17460,7 +17474,7 @@
17474 "zh-cht": "有限輸入",
17475 "xloc": [
17476 "default-mobile.handlebars->9->441",
17463 - "default.handlebars->27->1450",
17477 + "default.handlebars->27->1452",
17478 "default.handlebars->27->665",
17479 "default.handlebars->27->684"
17480 ]
@@ -17482,7 +17496,7 @@
17496 "zh-cht": "僅限於輸入",
17497 "xloc": [
17498 "default-mobile.handlebars->9->416",
17485 - "default.handlebars->27->1407"
17499 + "default.handlebars->27->1409"
17500 ]
17501 },
17502 {
@@ -17902,9 +17916,9 @@
17916 "zh-cht": "載入中...",
17917 "xloc": [
17918 "default-mobile.handlebars->9->72",
17905 - "default.handlebars->27->1273",
17906 - "default.handlebars->27->1277",
17907 - "default.handlebars->27->1862",
17919 + "default.handlebars->27->1275",
17920 + "default.handlebars->27->1279",
17921 + "default.handlebars->27->1864",
17922 "default.handlebars->27->760",
17923 "default.handlebars->27->998"
17924 ]
@@ -18040,7 +18054,7 @@
18054 "zh-chs": "鎖定賬戶",
18055 "zh-cht": "鎖定賬戶",
18056 "xloc": [
18043 - "default.handlebars->27->1665"
18057 + "default.handlebars->27->1667"
18058 ]
18059 },
18060 {
@@ -18051,8 +18065,8 @@
18065 "zh-chs": "锁定帐户设置",
18066 "zh-cht": "鎖定帳戶設置",
18067 "xloc": [
18054 - "default.handlebars->27->1419",
18055 - "default.handlebars->27->1668"
18068 + "default.handlebars->27->1421",
18069 + "default.handlebars->27->1670"
18070 ]
18071 },
18072 {
@@ -18071,7 +18085,7 @@
18085 "zh-chs": "鎖定賬戶",
18086 "zh-cht": "鎖定賬戶",
18087 "xloc": [
18074 - "default.handlebars->27->1598"
18088 + "default.handlebars->27->1600"
18089 ]
18090 },
18091 {
@@ -18090,7 +18104,7 @@
18104 "zh-chs": "已鎖定",
18105 "zh-cht": "已鎖定",
18106 "xloc": [
18093 - "default.handlebars->27->1579"
18107 + "default.handlebars->27->1581"
18108 ]
18109 },
18110 {
@@ -18109,7 +18123,7 @@
18123 "zh-chs": "賬戶鎖定",
18124 "zh-cht": "賬戶鎖定",
18125 "xloc": [
18112 - "default.handlebars->27->1740"
18126 + "default.handlebars->27->1742"
18127 ]
18128 },
18129 {
@@ -18427,6 +18441,13 @@
18441 "default.handlebars->27->20"
18442 ]
18443 },
18444 + {
18445 + "en": "MIPS24KC (OpenWRT)",
18446 + "xloc": [
18447 + "default-mobile.handlebars->9->34",
18448 + "default.handlebars->27->41"
18449 + ]
18450 + },
18451 {
18452 "cs": "MPS Server",
18453 "de": "MPS-Server",
@@ -18664,7 +18685,7 @@
18685 "zh-chs": "主服務器消息",
18686 "zh-cht": "主服務器消息",
18687 "xloc": [
18667 - "default.handlebars->27->1948"
18688 + "default.handlebars->27->1950"
18689 ]
18690 },
18691 {
@@ -18762,8 +18783,8 @@
18783 "xloc": [
18784 "default-mobile.handlebars->9->413",
18785 "default-mobile.handlebars->9->431",
18765 - "default.handlebars->27->1404",
18766 - "default.handlebars->27->1439"
18786 + "default.handlebars->27->1406",
18787 + "default.handlebars->27->1441"
18788 ]
18789 },
18790 {
@@ -18784,8 +18805,8 @@
18805 "xloc": [
18806 "default-mobile.handlebars->9->412",
18807 "default-mobile.handlebars->9->430",
18787 - "default.handlebars->27->1403",
18788 - "default.handlebars->27->1438"
18808 + "default.handlebars->27->1405",
18809 + "default.handlebars->27->1440"
18810 ]
18811 },
18812 {
@@ -18815,7 +18836,7 @@
18836 "zh-chs": "管理录音",
18837 "zh-cht": "管理錄音",
18838 "xloc": [
18818 - "default.handlebars->27->1663"
18839 + "default.handlebars->27->1665"
18840 ]
18841 },
18842 {
@@ -18853,7 +18874,7 @@
18874 "zh-chs": "管理用戶組",
18875 "zh-cht": "管理用戶組",
18876 "xloc": [
18856 - "default.handlebars->27->1662"
18877 + "default.handlebars->27->1664"
18878 ]
18879 },
18880 {
@@ -18872,7 +18893,7 @@
18893 "zh-chs": "管理用戶",
18894 "zh-cht": "管理用戶",
18895 "xloc": [
18875 - "default.handlebars->27->1661",
18896 + "default.handlebars->27->1663",
18897 "default.handlebars->27->678"
18898 ]
18899 },
@@ -19009,7 +19030,7 @@
19030 "zh-cht": "使用軟件代理進行管理",
19031 "xloc": [
19032 "default-mobile.handlebars->9->393",
19012 - "default.handlebars->27->1283"
19033 + "default.handlebars->27->1285"
19034 ]
19035 },
19036 {
@@ -19028,7 +19049,7 @@
19049 "zh-chs": "經理",
19050 "zh-cht": "經理",
19051 "xloc": [
19031 - "default.handlebars->27->1584"
19052 + "default.handlebars->27->1586"
19053 ]
19054 },
19055 {
@@ -19143,7 +19164,7 @@
19164 "zh-chs": "達到的會話數上限",
19165 "zh-cht": "達到的會話數上限",
19166 "xloc": [
19146 - "default.handlebars->27->1909"
19167 + "default.handlebars->27->1911"
19168 ]
19169 },
19170 {
@@ -19204,7 +19225,7 @@
19225 "zh-chs": "兆字節",
19226 "zh-cht": "兆字節",
19227 "xloc": [
19207 - "default.handlebars->27->1938"
19228 + "default.handlebars->27->1940"
19229 ]
19230 },
19231 {
@@ -19224,7 +19245,7 @@
19245 "zh-cht": "記憶",
19246 "xloc": [
19247 "default-mobile.handlebars->9->384",
19227 - "default.handlebars->27->1929",
19248 + "default.handlebars->27->1931",
19249 "default.handlebars->27->964",
19250 "default.handlebars->container->column_l->p40->3->1->p40type->3"
19251 ]
@@ -19277,7 +19298,7 @@
19298 "zh-cht": "網格代理控制台",
19299 "xloc": [
19300 "default-mobile.handlebars->9->420",
19280 - "default.handlebars->27->1412"
19301 + "default.handlebars->27->1414"
19302 ]
19303 },
19304 {
@@ -19374,7 +19395,7 @@
19395 "zh-chs": "MeshAgent流量",
19396 "zh-cht": "MeshAgent流量",
19397 "xloc": [
19377 - "default.handlebars->27->1950"
19398 + "default.handlebars->27->1952"
19399 ]
19400 },
19401 {
@@ -19393,7 +19414,7 @@
19414 "zh-chs": "MeshAgent更新",
19415 "zh-cht": "MeshAgent更新",
19416 "xloc": [
19396 - "default.handlebars->27->1951"
19417 + "default.handlebars->27->1953"
19418 ]
19419 },
19420 {
@@ -19431,7 +19452,7 @@
19452 "zh-chs": "網格中心錯誤",
19453 "zh-cht": "網格中心錯誤",
19454 "xloc": [
19434 - "default.handlebars->27->1276"
19455 + "default.handlebars->27->1278"
19456 ]
19457 },
19458 {
@@ -19506,7 +19527,7 @@
19527 "zh-chs": "MeshCentral服務器對等",
19528 "zh-cht": "MeshCentral服務器對等",
19529 "xloc": [
19509 - "default.handlebars->27->1949"
19530 + "default.handlebars->27->1951"
19531 ]
19532 },
19533 {
@@ -19545,7 +19566,7 @@
19566 "xloc": [
19567 "default.handlebars->27->115",
19568 "default.handlebars->27->117",
19548 - "default.handlebars->27->1272"
19569 + "default.handlebars->27->1274"
19570 ]
19571 },
19572 {
@@ -19796,7 +19817,7 @@
19817 "zh-chs": "郵件調度程序",
19818 "zh-cht": "郵件調度程序",
19819 "xloc": [
19799 - "default.handlebars->27->1947"
19820 + "default.handlebars->27->1949"
19821 ]
19822 },
19823 {
@@ -19963,7 +19984,7 @@
19984 "zh-chs": "更多",
19985 "zh-cht": "更多",
19986 "xloc": [
19966 - "default.handlebars->27->1975"
19987 + "default.handlebars->27->1977"
19988 ]
19989 },
19990 {
@@ -20049,7 +20070,7 @@
20070 "zh-chs": "多路复用器",
20071 "zh-cht": "多路復用器",
20072 "xloc": [
20052 - "default.handlebars->27->1887"
20073 + "default.handlebars->27->1889"
20074 ]
20075 },
20076 {
@@ -20352,14 +20373,14 @@
20373 "default-mobile.handlebars->9->97",
20374 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1",
20375 "default.handlebars->27->1246",
20355 - "default.handlebars->27->1284",
20356 - "default.handlebars->27->1370",
20357 - "default.handlebars->27->1566",
20358 - "default.handlebars->27->1671",
20359 - "default.handlebars->27->1687",
20360 - "default.handlebars->27->1694",
20361 - "default.handlebars->27->1727",
20362 - "default.handlebars->27->1746",
20376 + "default.handlebars->27->1286",
20377 + "default.handlebars->27->1372",
20378 + "default.handlebars->27->1568",
20379 + "default.handlebars->27->1673",
20380 + "default.handlebars->27->1689",
20381 + "default.handlebars->27->1696",
20382 + "default.handlebars->27->1729",
20383 + "default.handlebars->27->1748",
20384 "default.handlebars->27->542",
20385 "default.handlebars->27->76",
20386 "default.handlebars->27->819",
@@ -20406,7 +20427,7 @@
20427 "zh-chs": "名稱1,名稱2,名稱3",
20428 "zh-cht": "名稱1,名稱2,名稱3",
20429 "xloc": [
20409 - "default.handlebars->27->1653"
20430 + "default.handlebars->27->1655"
20431 ]
20432 },
20433 {
@@ -20598,7 +20619,7 @@
20619 "xloc": [
20620 "default-mobile.handlebars->9->120",
20621 "default-mobile.handlebars->9->299",
20601 - "default.handlebars->27->1525",
20622 + "default.handlebars->27->1527",
20623 "default.handlebars->27->861",
20624 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
20625 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
@@ -20754,7 +20775,7 @@
20775 "zh-chs": "沒有桌面",
20776 "zh-cht": "沒有桌面",
20777 "xloc": [
20757 - "default.handlebars->27->1446",
20778 + "default.handlebars->27->1448",
20779 "default.handlebars->27->666",
20780 "default.handlebars->27->685"
20781 ]
@@ -20775,7 +20796,7 @@
20796 "zh-chs": "沒有桌面訪問",
20797 "zh-cht": "沒有桌面訪問",
20798 "xloc": [
20778 - "default.handlebars->27->1408"
20799 + "default.handlebars->27->1410"
20800 ]
20801 },
20802 {
@@ -20794,8 +20815,8 @@
20815 "zh-chs": "找不到活動",
20816 "zh-cht": "找不到活動",
20817 "xloc": [
20797 - "default.handlebars->27->1542",
20798 - "default.handlebars->27->1861",
20818 + "default.handlebars->27->1544",
20819 + "default.handlebars->27->1863",
20820 "default.handlebars->27->896"
20821 ]
20822 },
@@ -20816,7 +20837,7 @@
20837 "zh-cht": "沒有文件訪問",
20838 "xloc": [
20839 "default-mobile.handlebars->9->418",
20819 - "default.handlebars->27->1410"
20840 + "default.handlebars->27->1412"
20841 ]
20842 },
20843 {
@@ -20836,7 +20857,7 @@
20857 "zh-cht": "沒有文件",
20858 "xloc": [
20859 "default-mobile.handlebars->9->439",
20839 - "default.handlebars->27->1448",
20860 + "default.handlebars->27->1450",
20861 "default.handlebars->27->663",
20862 "default.handlebars->27->682"
20863 ]
@@ -20877,8 +20898,8 @@
20898 "xloc": [
20899 "default-mobile.handlebars->9->419",
20900 "default-mobile.handlebars->9->440",
20880 - "default.handlebars->27->1411",
20881 - "default.handlebars->27->1449"
20901 + "default.handlebars->27->1413",
20902 + "default.handlebars->27->1451"
20903 ]
20904 },
20905 {
@@ -20952,7 +20973,7 @@
20973 "zh-chs": "沒有會員",
20974 "zh-cht": "沒有會員",
20975 "xloc": [
20955 - "default.handlebars->27->1709"
20976 + "default.handlebars->27->1711"
20977 ]
20978 },
20979 {
@@ -20971,7 +20992,7 @@
20992 "zh-chs": "沒有新的設備組",
20993 "zh-cht": "沒有新的設備組",
20994 "xloc": [
20974 - "default.handlebars->27->1666"
20995 + "default.handlebars->27->1668"
20996 ]
20997 },
20998 {
@@ -20990,9 +21011,9 @@
21011 "zh-chs": "沒有政策",
21012 "zh-cht": "沒有政策",
21013 "xloc": [
20993 - "default.handlebars->27->1314",
20994 - "default.handlebars->27->1342",
20995 - "default.handlebars->27->1345"
21014 + "default.handlebars->27->1316",
21015 + "default.handlebars->27->1344",
21016 + "default.handlebars->27->1347"
21017 ]
21018 },
21019 {
@@ -21015,7 +21036,7 @@
21036 "default-mobile.handlebars->9->402",
21037 "default-mobile.handlebars->9->445",
21038 "default.handlebars->27->1260",
21018 - "default.handlebars->27->1454",
21039 + "default.handlebars->27->1456",
21040 "default.handlebars->27->675",
21041 "default.handlebars->27->694"
21042 ]
@@ -21058,7 +21079,7 @@
21079 "zh-cht": "沒有終端",
21080 "xloc": [
21081 "default-mobile.handlebars->9->438",
21061 - "default.handlebars->27->1447",
21082 + "default.handlebars->27->1449",
21083 "default.handlebars->27->662",
21084 "default.handlebars->27->681"
21085 ]
@@ -21079,7 +21100,7 @@
21100 "zh-cht": "沒有終端訪問",
21101 "xloc": [
21102 "default-mobile.handlebars->9->417",
21082 - "default.handlebars->27->1409"
21103 + "default.handlebars->27->1411"
21104 ]
21105 },
21106 {
@@ -21098,7 +21119,7 @@
21119 "zh-chs": "沒有工具(MeshCmd /路由器)",
21120 "zh-cht": "沒有工具(MeshCmd /路由器)",
21121 "xloc": [
21101 - "default.handlebars->27->1667"
21122 + "default.handlebars->27->1669"
21123 ]
21124 },
21125 {
@@ -21116,8 +21137,8 @@
21137 "zh-chs": "沒有共同的設備組",
21138 "zh-cht": "沒有共同的設備組",
21139 "xloc": [
21119 - "default.handlebars->27->1715",
21120 - "default.handlebars->27->1833"
21140 + "default.handlebars->27->1717",
21141 + "default.handlebars->27->1835"
21142 ]
21143 },
21144 {
@@ -21222,8 +21243,8 @@
21243 "zh-chs": "沒有共同的設備",
21244 "zh-cht": "沒有共同的設備",
21245 "xloc": [
21225 - "default.handlebars->27->1721",
21226 - "default.handlebars->27->1845"
21246 + "default.handlebars->27->1723",
21247 + "default.handlebars->27->1847"
21248 ]
21249 },
21250 {
@@ -21242,7 +21263,7 @@
21263 "zh-chs": "該設備組中沒有設備。",
21264 "zh-cht": "該設備組中沒有設備。",
21265 "xloc": [
21245 - "default.handlebars->27->1497"
21266 + "default.handlebars->27->1499"
21267 ]
21268 },
21269 {
@@ -21319,7 +21340,7 @@
21340 "zh-chs": "找不到群組。",
21341 "zh-cht": "找不到群組。",
21342 "xloc": [
21322 - "default.handlebars->27->1670"
21343 + "default.handlebars->27->1672"
21344 ]
21345 },
21346 {
@@ -21425,7 +21446,7 @@
21446 "zh-chs": "没有录音。",
21447 "zh-cht": "沒有錄音。",
21448 "xloc": [
21428 - "default.handlebars->27->1863"
21449 + "default.handlebars->27->1865"
21450 ]
21451 },
21452 {
@@ -21444,7 +21465,7 @@
21465 "zh-chs": "沒有服務器權限",
21466 "zh-cht": "沒有服務器權限",
21467 "xloc": [
21447 - "default.handlebars->27->1741"
21468 + "default.handlebars->27->1743"
21469 ]
21470 },
21471 {
@@ -21463,7 +21484,7 @@
21484 "zh-chs": "沒有用戶組成員身份",
21485 "zh-cht": "沒有用戶組成員身份",
21486 "xloc": [
21466 - "default.handlebars->27->1839"
21487 + "default.handlebars->27->1841"
21488 ]
21489 },
21490 {
@@ -21482,7 +21503,7 @@
21503 "zh-chs": "未找到相應的用戶。",
21504 "zh-cht": "未找到相應的用戶。",
21505 "xloc": [
21485 - "default.handlebars->27->1574"
21506 + "default.handlebars->27->1576"
21507 ]
21508 },
21509 {
@@ -21564,23 +21585,23 @@
21585 "default-mobile.handlebars->9->245",
21586 "default-mobile.handlebars->9->297",
21587 "default-mobile.handlebars->9->396",
21567 - "default.handlebars->27->1279",
21568 - "default.handlebars->27->1286",
21569 - "default.handlebars->27->1293",
21570 - "default.handlebars->27->1305",
21571 - "default.handlebars->27->1310",
21588 + "default.handlebars->27->1281",
21589 + "default.handlebars->27->1288",
21590 + "default.handlebars->27->1295",
21591 + "default.handlebars->27->1307",
21592 "default.handlebars->27->1312",
21573 - "default.handlebars->27->1488",
21574 - "default.handlebars->27->1507",
21575 - "default.handlebars->27->1512",
21576 - "default.handlebars->27->1550",
21577 - "default.handlebars->27->1691",
21593 + "default.handlebars->27->1314",
21594 + "default.handlebars->27->1490",
21595 + "default.handlebars->27->1509",
21596 + "default.handlebars->27->1514",
21597 + "default.handlebars->27->1552",
21598 "default.handlebars->27->1693",
21599 + "default.handlebars->27->1695",
21600 "default.handlebars->27->174",
21580 - "default.handlebars->27->1760",
21581 - "default.handlebars->27->1769",
21582 - "default.handlebars->27->1773",
21583 - "default.handlebars->27->1785",
21601 + "default.handlebars->27->1762",
21602 + "default.handlebars->27->1771",
21603 + "default.handlebars->27->1775",
21604 + "default.handlebars->27->1787",
21605 "default.handlebars->27->189",
21606 "default.handlebars->27->205",
21607 "default.handlebars->27->206",
@@ -21729,8 +21750,8 @@
21750 "zh-chs": "未連接",
21751 "zh-cht": "未連接",
21752 "xloc": [
21732 - "default.handlebars->27->1484",
21733 - "default.handlebars->27->1492"
21753 + "default.handlebars->27->1486",
21754 + "default.handlebars->27->1494"
21755 ]
21756 },
21757 {
@@ -21762,7 +21783,7 @@
21783 "zh-chs": "不在服务器上",
21784 "zh-cht": "不在服務器上",
21785 "xloc": [
21765 - "default.handlebars->27->1879"
21786 + "default.handlebars->27->1881"
21787 ]
21788 },
21789 {
@@ -21781,8 +21802,8 @@
21802 "zh-chs": "沒有設置",
21803 "zh-cht": "沒有設置",
21804 "xloc": [
21784 - "default.handlebars->27->1747",
21785 - "default.handlebars->27->1748"
21805 + "default.handlebars->27->1749",
21806 + "default.handlebars->27->1750"
21807 ]
21808 },
21809 {
@@ -21801,7 +21822,7 @@
21822 "zh-chs": "未經審核的",
21823 "zh-cht": "未經審核的",
21824 "xloc": [
21804 - "default.handlebars->27->1815"
21825 + "default.handlebars->27->1817"
21826 ]
21827 },
21828 {
@@ -21820,8 +21841,8 @@
21841 "zh-chs": "筆記",
21842 "zh-cht": "筆記",
21843 "xloc": [
21823 - "default.handlebars->27->1320",
21824 - "default.handlebars->27->1793",
21844 + "default.handlebars->27->1322",
21845 + "default.handlebars->27->1795",
21846 "default.handlebars->27->611",
21847 "default.handlebars->27->671",
21848 "default.handlebars->27->690",
@@ -21864,7 +21885,7 @@
21885 "zh-cht": "通知設置",
21886 "xloc": [
21887 "default.handlebars->27->1221",
21867 - "default.handlebars->27->1483",
21888 + "default.handlebars->27->1485",
21889 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10"
21890 ]
21891 },
@@ -21884,7 +21905,7 @@
21905 "zh-chs": "通知設置還必須在帳戶設置中啟用。",
21906 "zh-cht": "通知設置還必須在帳戶設置中啟用。",
21907 "xloc": [
21887 - "default.handlebars->27->1479"
21908 + "default.handlebars->27->1481"
21909 ]
21910 },
21911 {
@@ -21922,7 +21943,7 @@
21943 "zh-chs": "通知事項",
21944 "zh-cht": "通知事項",
21945 "xloc": [
21925 - "default.handlebars->27->1311"
21946 + "default.handlebars->27->1313"
21947 ]
21948 },
21949 {
@@ -21941,7 +21962,7 @@
21962 "zh-chs": "通知",
21963 "zh-cht": "通知",
21964 "xloc": [
21944 - "default.handlebars->27->1799",
21965 + "default.handlebars->27->1801",
21966 "default.handlebars->27->186"
21967 ]
21968 },
@@ -21972,9 +21993,9 @@
21993 "zh-chs": "通知使用者",
21994 "zh-cht": "通知使用者",
21995 "xloc": [
21975 - "default.handlebars->27->1377",
21976 - "default.handlebars->27->1381",
21977 - "default.handlebars->27->1384"
21996 + "default.handlebars->27->1379",
21997 + "default.handlebars->27->1383",
21998 + "default.handlebars->27->1386"
21999 ]
22000 },
22001 {
@@ -21993,7 +22014,7 @@
22014 "zh-chs": "通知{0}",
22015 "zh-cht": "通知{0}",
22016 "xloc": [
21996 - "default.handlebars->27->1613"
22017 + "default.handlebars->27->1615"
22018 ]
22019 },
22020 {
@@ -22014,7 +22035,7 @@
22035 "xloc": [
22036 "default-mobile.handlebars->9->83",
22037 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
22017 - "default.handlebars->27->1270",
22038 + "default.handlebars->27->1272",
22039 "default.handlebars->27->582",
22040 "default.handlebars->container->dialog->idx_dlgButtonBar",
22041 "desktop.handlebars->p11->dialog->idx_dlgButtonBar",
@@ -22079,7 +22100,7 @@
22100 "zh-chs": "發生在{0}",
22101 "zh-cht": "發生在{0}",
22102 "xloc": [
22082 - "default.handlebars->27->1893"
22103 + "default.handlebars->27->1895"
22104 ]
22105 },
22106 {
@@ -22098,7 +22119,7 @@
22119 "zh-chs": "離線用戶",
22120 "zh-cht": "離線用戶",
22121 "xloc": [
22101 - "default.handlebars->27->1571"
22122 + "default.handlebars->27->1573"
22123 ]
22124 },
22125 {
@@ -22130,7 +22151,7 @@
22151 "zh-chs": "一天",
22152 "zh-cht": "一天",
22153 "xloc": [
22133 - "default.handlebars->27->1547"
22154 + "default.handlebars->27->1549"
22155 ]
22156 },
22157 {
@@ -22182,7 +22203,7 @@
22203 "zh-chs": "在線用戶",
22204 "zh-cht": "在線用戶",
22205 "xloc": [
22185 - "default.handlebars->27->1570"
22206 + "default.handlebars->27->1572"
22207 ]
22208 },
22209 {
@@ -22368,8 +22389,8 @@
22389 "zh-cht": "操作方式",
22390 "xloc": [
22391 "default-mobile.handlebars->9->264",
22371 - "default.handlebars->27->1597",
22372 - "default.handlebars->27->1678",
22392 + "default.handlebars->27->1599",
22393 + "default.handlebars->27->1680",
22394 "default.handlebars->27->450",
22395 "default.handlebars->27->470",
22396 "default.handlebars->27->725"
@@ -22563,7 +22584,7 @@
22584 "zh-chs": "部分的",
22585 "zh-cht": "部分的",
22586 "xloc": [
22566 - "default.handlebars->27->1585"
22587 + "default.handlebars->27->1587"
22588 ]
22589 },
22590 {
@@ -22635,7 +22656,7 @@
22656 "zh-chs": "部分權利",
22657 "zh-cht": "部分權利",
22658 "xloc": [
22638 - "default.handlebars->27->1744"
22659 + "default.handlebars->27->1746"
22660 ]
22661 },
22662 {
@@ -22674,12 +22695,12 @@
22695 "zh-cht": "密碼",
22696 "xloc": [
22697 "default-mobile.handlebars->9->269",
22677 - "default.handlebars->27->1641",
22678 - "default.handlebars->27->1642",
22679 - "default.handlebars->27->1765",
22698 + "default.handlebars->27->1643",
22699 + "default.handlebars->27->1644",
22700 "default.handlebars->27->1767",
22681 - "default.handlebars->27->1818",
22682 - "default.handlebars->27->1819",
22701 + "default.handlebars->27->1769",
22702 + "default.handlebars->27->1820",
22703 + "default.handlebars->27->1821",
22704 "default.handlebars->27->289",
22705 "default.handlebars->27->320",
22706 "default.handlebars->27->735",
@@ -22802,7 +22823,7 @@
22823 "zh-chs": "密碼提示",
22824 "zh-cht": "密碼提示",
22825 "xloc": [
22805 - "default.handlebars->27->1820"
22826 + "default.handlebars->27->1822"
22827 ]
22828 },
22829 {
@@ -22841,7 +22862,7 @@
22862 "zh-chs": "密碼不符合",
22863 "zh-cht": "密碼不符合",
22864 "xloc": [
22844 - "default.handlebars->27->1351"
22865 + "default.handlebars->27->1353"
22866 ]
22867 },
22868 {
@@ -22880,8 +22901,8 @@
22901 "zh-chs": "密碼*",
22902 "zh-cht": "密碼*",
22903 "xloc": [
22883 - "default.handlebars->27->1349",
22884 - "default.handlebars->27->1350"
22904 + "default.handlebars->27->1351",
22905 + "default.handlebars->27->1352"
22906 ]
22907 },
22908 {
@@ -22937,7 +22958,7 @@
22958 "default-mobile.handlebars->9->312",
22959 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
22960 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
22940 - "default.handlebars->27->1534",
22961 + "default.handlebars->27->1536",
22962 "default.handlebars->27->849",
22963 "default.handlebars->27->875",
22964 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3",
@@ -23035,7 +23056,7 @@
23056 "zh-chs": "執行英特爾AMT管理員控制模式(ACM)激活。",
23057 "zh-cht": "執行英特爾AMT管理員控制模式(ACM)激活。",
23058 "xloc": [
23038 - "default.handlebars->27->1330",
23059 + "default.handlebars->27->1332",
23060 "default.handlebars->27->277"
23061 ]
23062 },
@@ -23072,7 +23093,7 @@
23093 "zh-chs": "執行英特爾AMT客戶端控制模式(CCM)激活。",
23094 "zh-cht": "執行英特爾AMT客戶端控制模式(CCM)激活。",
23095 "xloc": [
23075 - "default.handlebars->27->1328",
23096 + "default.handlebars->27->1330",
23097 "default.handlebars->27->275"
23098 ]
23099 },
@@ -23126,8 +23147,8 @@
23147 "zh-cht": "權限",
23148 "xloc": [
23149 "default-mobile.handlebars->9->448",
23129 - "default.handlebars->27->1457",
23130 - "default.handlebars->27->1569"
23150 + "default.handlebars->27->1459",
23151 + "default.handlebars->27->1571"
23152 ]
23153 },
23154 {
@@ -23164,7 +23185,7 @@
23185 "default-mobile.handlebars->9->65",
23186 "default-mobile.handlebars->9->67",
23187 "default.handlebars->27->159",
23167 - "default.handlebars->27->1810",
23188 + "default.handlebars->27->1812",
23189 "default.handlebars->27->990",
23190 "default.handlebars->27->993"
23191 ]
@@ -23181,7 +23202,7 @@
23202 "zh-chs": "电话号码",
23203 "zh-cht": "電話號碼",
23204 "xloc": [
23184 - "default.handlebars->27->1759"
23205 + "default.handlebars->27->1761"
23206 ]
23207 },
23208 {
@@ -23197,7 +23218,7 @@
23218 "zh-cht": "電話號碼:",
23219 "xloc": [
23220 "default-mobile.handlebars->9->66",
23200 - "default.handlebars->27->1809",
23221 + "default.handlebars->27->1811",
23222 "default.handlebars->27->992"
23223 ]
23224 },
@@ -23345,7 +23366,7 @@
23366 "zh-cht": "插件動作",
23367 "xloc": [
23368 "default.handlebars->27->196",
23348 - "default.handlebars->27->1972"
23369 + "default.handlebars->27->1974"
23370 ]
23371 },
23372 {
@@ -23606,7 +23627,7 @@
23627 "zh-chs": "電力國",
23628 "zh-cht": "電力國",
23629 "xloc": [
23609 - "default.handlebars->27->1490",
23630 + "default.handlebars->27->1492",
23631 "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1"
23632 ]
23633 },
@@ -23704,7 +23725,7 @@
23725 "zh-chs": "存在于服务器上",
23726 "zh-cht": "存在於服務器上",
23727 "xloc": [
23707 - "default.handlebars->27->1878"
23728 + "default.handlebars->27->1880"
23729 ]
23730 },
23731 {
@@ -23848,9 +23869,9 @@
23869 "zh-chs": "提示用戶同意",
23870 "zh-cht": "提示用戶同意",
23871 "xloc": [
23851 - "default.handlebars->27->1378",
23852 - "default.handlebars->27->1382",
23853 - "default.handlebars->27->1385"
23872 + "default.handlebars->27->1380",
23873 + "default.handlebars->27->1384",
23874 + "default.handlebars->27->1387"
23875 ]
23876 },
23877 {
@@ -23869,7 +23890,7 @@
23890 "zh-chs": "協議",
23891 "zh-cht": "協議",
23892 "xloc": [
23872 - "default.handlebars->27->1876",
23893 + "default.handlebars->27->1878",
23894 "player.handlebars->3->16"
23895 ]
23896 },
@@ -23926,7 +23947,7 @@
23947 "zh-cht": "公開連結",
23948 "xloc": [
23949 "default-mobile.handlebars->9->115",
23929 - "default.handlebars->27->1519"
23950 + "default.handlebars->27->1521"
23951 ]
23952 },
23953 {
@@ -24213,7 +24234,7 @@
24234 "zh-chs": "的RSS",
24235 "zh-cht": "的RSS",
24236 "xloc": [
24216 - "default.handlebars->27->1942"
24237 + "default.handlebars->27->1944"
24238 ]
24239 },
24240 {
@@ -24231,7 +24252,7 @@
24252 "zh-chs": "隨機化密碼。",
24253 "zh-cht": "隨機化密碼。",
24254 "xloc": [
24234 - "default.handlebars->27->1643"
24255 + "default.handlebars->27->1645"
24256 ]
24257 },
24258 {
@@ -24268,7 +24289,7 @@
24289 "zh-chs": "重新激活英特爾&reg;AMT",
24290 "zh-cht": "重新激活英特爾&reg;AMT",
24291 "xloc": [
24271 - "default.handlebars->27->1353"
24292 + "default.handlebars->27->1355"
24293 ]
24294 },
24295 {
@@ -24280,9 +24301,9 @@
24301 "zh-chs": "真正的名字",
24302 "zh-cht": "真正的名字",
24303 "xloc": [
24283 - "default.handlebars->27->1756",
24304 "default.handlebars->27->1758",
24285 - "default.handlebars->27->1811"
24305 + "default.handlebars->27->1760",
24306 + "default.handlebars->27->1813"
24307 ]
24308 },
24309 {
@@ -24301,7 +24322,7 @@
24322 "zh-chs": "境界",
24323 "zh-cht": "境界",
24324 "xloc": [
24304 - "default.handlebars->27->1652"
24325 + "default.handlebars->27->1654"
24326 ]
24327 },
24328 {
@@ -24339,7 +24360,7 @@
24360 "zh-chs": "记录细节",
24361 "zh-cht": "記錄細節",
24362 "xloc": [
24342 - "default.handlebars->27->1890"
24363 + "default.handlebars->27->1892"
24364 ]
24365 },
24366 {
@@ -24370,7 +24391,7 @@
24391 "xloc": [
24392 "default-mobile.handlebars->9->121",
24393 "default-mobile.handlebars->9->300",
24373 - "default.handlebars->27->1526",
24394 + "default.handlebars->27->1528",
24395 "default.handlebars->27->862"
24396 ]
24397 },
@@ -24475,7 +24496,7 @@
24496 "zh-chs": "中繼計數",
24497 "zh-cht": "中繼計數",
24498 "xloc": [
24478 - "default.handlebars->27->1921"
24499 + "default.handlebars->27->1923"
24500 ]
24501 },
24502 {
@@ -24493,7 +24514,7 @@
24514 "zh-chs": "中繼錯誤",
24515 "zh-cht": "中繼錯誤",
24516 "xloc": [
24496 - "default.handlebars->27->1914"
24517 + "default.handlebars->27->1916"
24518 ]
24519 },
24520 {
@@ -24511,8 +24532,8 @@
24532 "zh-chs": "接力會議",
24533 "zh-cht": "接力會議",
24534 "xloc": [
24514 - "default.handlebars->27->1920",
24515 - "default.handlebars->27->1936"
24535 + "default.handlebars->27->1922",
24536 + "default.handlebars->27->1938"
24537 ]
24538 },
24539 {
@@ -24656,8 +24677,8 @@
24677 "xloc": [
24678 "default-mobile.handlebars->9->414",
24679 "default-mobile.handlebars->9->432",
24659 - "default.handlebars->27->1405",
24660 - "default.handlebars->27->1440"
24680 + "default.handlebars->27->1407",
24681 + "default.handlebars->27->1442"
24682 ]
24683 },
24684 {
@@ -24778,8 +24799,8 @@
24799 "xloc": [
24800 "default-mobile.handlebars->9->415",
24801 "default-mobile.handlebars->9->437",
24781 - "default.handlebars->27->1406",
24782 - "default.handlebars->27->1445"
24802 + "default.handlebars->27->1408",
24803 + "default.handlebars->27->1447"
24804 ]
24805 },
24806 {
@@ -24844,7 +24865,7 @@
24865 "en": "Remove Configuration",
24866 "nl": "Configuratie verwijderen",
24867 "xloc": [
24847 - "default.handlebars->27->1266"
24868 + "default.handlebars->27->1268"
24869 ]
24870 },
24871 {
@@ -24891,8 +24912,8 @@
24912 "zh-chs": "删除设备组权限",
24913 "zh-cht": "刪除設備組權限",
24914 "xloc": [
24894 - "default.handlebars->27->1725",
24895 - "default.handlebars->27->1859"
24915 + "default.handlebars->27->1727",
24916 + "default.handlebars->27->1861"
24917 ]
24918 },
24919 {
@@ -24907,8 +24928,8 @@
24928 "zh-chs": "删除设备权限",
24929 "zh-cht": "刪除設備權限",
24930 "xloc": [
24910 - "default.handlebars->27->1723",
24911 - "default.handlebars->27->1846"
24931 + "default.handlebars->27->1725",
24932 + "default.handlebars->27->1848"
24933 ]
24934 },
24935 {
@@ -24940,7 +24961,7 @@
24961 "zh-chs": "删除用户组成员身份",
24962 "zh-cht": "刪除用戶組成員身份",
24963 "xloc": [
24943 - "default.handlebars->27->1855"
24964 + "default.handlebars->27->1857"
24965 ]
24966 },
24967 {
@@ -24955,8 +24976,8 @@
24976 "zh-chs": "删除用户组权限",
24977 "zh-cht": "刪除用戶組權限",
24978 "xloc": [
24958 - "default.handlebars->27->1462",
24959 - "default.handlebars->27->1851"
24979 + "default.handlebars->27->1464",
24980 + "default.handlebars->27->1853"
24981 ]
24982 },
24983 {
@@ -24971,7 +24992,7 @@
24992 "zh-chs": "删除用户成员资格",
24993 "zh-cht": "刪除用戶成員資格",
24994 "xloc": [
24974 - "default.handlebars->27->1733"
24995 + "default.handlebars->27->1735"
24996 ]
24997 },
24998 {
@@ -24986,8 +25007,8 @@
25007 "zh-chs": "删除用户权限",
25008 "zh-cht": "刪除用戶權限",
25009 "xloc": [
24989 - "default.handlebars->27->1460",
24990 - "default.handlebars->27->1848"
25010 + "default.handlebars->27->1462",
25011 + "default.handlebars->27->1850"
25012 ]
25013 },
25014 {
@@ -25005,7 +25026,7 @@
25026 "zh-chs": "刪除所有第二因素驗證。",
25027 "zh-cht": "刪除所有第二因素驗證。",
25028 "xloc": [
25008 - "default.handlebars->27->1823"
25029 + "default.handlebars->27->1825"
25030 ]
25031 },
25032 {
@@ -25023,7 +25044,7 @@
25044 "zh-chs": "刪除此用戶標識的所有先前事件。",
25045 "zh-cht": "刪除此用戶標識的所有先前事件。",
25046 "xloc": [
25026 - "default.handlebars->27->1644"
25047 + "default.handlebars->27->1646"
25048 ]
25049 },
25050 {
@@ -25042,7 +25063,7 @@
25063 "zh-chs": "斷開連接後移除設備",
25064 "zh-cht": "斷開連接後移除設備",
25065 "xloc": [
25045 - "default.handlebars->27->1386"
25066 + "default.handlebars->27->1388"
25067 ]
25068 },
25069 {
@@ -25124,7 +25145,7 @@
25145 "zh-chs": "删除该用户",
25146 "zh-cht": "刪除該用戶",
25147 "xloc": [
25127 - "default.handlebars->27->1801"
25148 + "default.handlebars->27->1803"
25149 ]
25150 },
25151 {
@@ -25143,7 +25164,7 @@
25164 "zh-chs": "刪除用戶組成員身份",
25165 "zh-cht": "刪除用戶組成員",
25166 "xloc": [
25146 - "default.handlebars->27->1837"
25167 + "default.handlebars->27->1839"
25168 ]
25169 },
25170 {
@@ -25158,7 +25179,7 @@
25179 "zh-chs": "删除此设备的用户组权限",
25180 "zh-cht": "刪除此設備的用戶組權限",
25181 "xloc": [
25161 - "default.handlebars->27->1719"
25182 + "default.handlebars->27->1721"
25183 ]
25184 },
25185 {
@@ -25176,7 +25197,7 @@
25197 "zh-chs": "刪除該設備組的用戶組權限",
25198 "zh-cht": "刪除該設備組的用戶組權限",
25199 "xloc": [
25179 - "default.handlebars->27->1713",
25200 + "default.handlebars->27->1715",
25201 "default.handlebars->27->655"
25202 ]
25203 },
@@ -25196,10 +25217,10 @@
25217 "zh-chs": "刪除此設備組的用戶權限",
25218 "zh-cht": "刪除該設備組的用戶權限",
25219 "xloc": [
25199 - "default.handlebars->27->1337",
25200 - "default.handlebars->27->1707",
25201 - "default.handlebars->27->1831",
25202 - "default.handlebars->27->1843",
25220 + "default.handlebars->27->1339",
25221 + "default.handlebars->27->1709",
25222 + "default.handlebars->27->1833",
25223 + "default.handlebars->27->1845",
25224 "default.handlebars->27->656"
25225 ]
25226 },
@@ -25223,7 +25244,7 @@
25244 "default-mobile.handlebars->9->304",
25245 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
25246 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
25226 - "default.handlebars->27->1530",
25247 + "default.handlebars->27->1532",
25248 "default.handlebars->27->508",
25249 "default.handlebars->27->866",
25250 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
@@ -25239,7 +25260,7 @@
25260 "zh-chs": "报告日",
25261 "zh-cht": "報告日",
25262 "xloc": [
25242 - "default.handlebars->27->1548"
25263 + "default.handlebars->27->1550"
25264 ]
25265 },
25266 {
@@ -25250,7 +25271,7 @@
25271 "zh-chs": "报告类型",
25272 "zh-cht": "報告類型",
25273 "xloc": [
25253 - "default.handlebars->27->1543"
25274 + "default.handlebars->27->1545"
25275 ]
25276 },
25277 {
@@ -25289,8 +25310,8 @@
25310 "zh-cht": "要求:{0}。",
25311 "xloc": [
25312 "default-mobile.handlebars->9->89",
25292 - "default.handlebars->27->1649",
25293 - "default.handlebars->27->1821"
25313 + "default.handlebars->27->1651",
25314 + "default.handlebars->27->1823"
25315 ]
25316 },
25317 {
@@ -25503,7 +25524,7 @@
25524 "zh-chs": "還原伺服器",
25525 "zh-cht": "還原伺服器",
25526 "xloc": [
25506 - "default.handlebars->27->1271"
25527 + "default.handlebars->27->1273"
25528 ]
25529 },
25530 {
@@ -25541,7 +25562,7 @@
25562 "zh-chs": "使用備份還原服務器,<span style = color:red>這將刪除現有服務器數據</ span>。僅當您知道自己在做什麼時才這樣做。",
25563 "zh-cht": "使用備份還原服務器,<span style = color:red>這將刪除現有服務器數據</ span>。僅當您知道自己在做什麼時才這樣做。",
25564 "xloc": [
25544 - "default.handlebars->27->1268"
25565 + "default.handlebars->27->1270"
25566 ]
25567 },
25568 {
@@ -25560,7 +25581,7 @@
25581 "zh-chs": "限制條件",
25582 "zh-cht": "限制條件",
25583 "xloc": [
25563 - "default.handlebars->27->1745"
25584 + "default.handlebars->27->1747"
25585 ]
25586 },
25587 {
@@ -25634,7 +25655,7 @@
25655 "xloc": [
25656 "default-mobile.handlebars->9->107",
25657 "default-mobile.handlebars->9->294",
25637 - "default.handlebars->27->1498",
25658 + "default.handlebars->27->1500",
25659 "default.handlebars->27->856"
25660 ]
25661 },
@@ -25864,8 +25885,8 @@
25885 "zh-chs": "短信",
25886 "zh-cht": "短信",
25887 "xloc": [
25867 - "default.handlebars->27->1790",
25868 - "default.handlebars->27->1795",
25888 + "default.handlebars->27->1792",
25889 + "default.handlebars->27->1797",
25890 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
25891 "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3"
25892 ]
@@ -25881,7 +25902,7 @@
25902 "zh-chs": "此用户的短信功能电话号码。",
25903 "zh-cht": "此用戶的短信功能電話號碼。",
25904 "xloc": [
25884 - "default.handlebars->27->1807"
25905 + "default.handlebars->27->1809"
25906 ]
25907 },
25908 {
@@ -26355,7 +26376,7 @@
26376 "xloc": [
26377 "default-mobile.handlebars->9->270",
26378 "default-mobile.handlebars->9->363",
26358 - "default.handlebars->27->1791",
26379 + "default.handlebars->27->1793",
26380 "default.handlebars->27->290",
26381 "default.handlebars->27->736",
26382 "default.handlebars->27->943"
@@ -26377,7 +26398,7 @@
26398 "zh-chs": "安全密鑰",
26399 "zh-cht": "安全密鑰",
26400 "xloc": [
26380 - "default.handlebars->27->1788"
26401 + "default.handlebars->27->1790"
26402 ]
26403 },
26404 {
@@ -26415,9 +26436,9 @@
26436 "zh-chs": "全選",
26437 "zh-cht": "全選",
26438 "xloc": [
26418 - "default.handlebars->27->1522",
26419 - "default.handlebars->27->1593",
26420 - "default.handlebars->27->1676",
26439 + "default.handlebars->27->1524",
26440 + "default.handlebars->27->1595",
26441 + "default.handlebars->27->1678",
26442 "default.handlebars->27->446",
26443 "default.handlebars->27->858",
26444 "default.handlebars->27->860",
@@ -26445,9 +26466,9 @@
26466 "zh-chs": "選擇無",
26467 "zh-cht": "選擇無",
26468 "xloc": [
26448 - "default.handlebars->27->1521",
26449 - "default.handlebars->27->1592",
26450 - "default.handlebars->27->1675",
26469 + "default.handlebars->27->1523",
26470 + "default.handlebars->27->1594",
26471 + "default.handlebars->27->1677",
26472 "default.handlebars->27->445",
26473 "default.handlebars->27->859",
26474 "default.handlebars->meshContextMenu->cxselectnone"
@@ -26539,8 +26560,8 @@
26560 "zh-chs": "选择要对所有选定用户执行的操作。",
26561 "zh-cht": "選擇要對所有選定用戶執行的操作。",
26562 "xloc": [
26542 - "default.handlebars->27->1596",
26543 - "default.handlebars->27->1677"
26563 + "default.handlebars->27->1598",
26564 + "default.handlebars->27->1679"
26565 ]
26566 },
26567 {
@@ -26598,7 +26619,7 @@
26619 "zh-cht": "僅自我事件",
26620 "xloc": [
26621 "default-mobile.handlebars->9->442",
26601 - "default.handlebars->27->1451"
26622 + "default.handlebars->27->1453"
26623 ]
26624 },
26625 {
@@ -26632,7 +26653,7 @@
26653 "zh-chs": "发电子邮件",
26654 "zh-cht": "發電子郵件",
26655 "xloc": [
26635 - "default.handlebars->27->1607"
26656 + "default.handlebars->27->1609"
26657 ]
26658 },
26659 {
@@ -26686,7 +26707,7 @@
26707 "zh-chs": "发送短信",
26708 "zh-cht": "發簡訊",
26709 "xloc": [
26689 - "default.handlebars->27->1605"
26710 + "default.handlebars->27->1607"
26711 ]
26712 },
26713 {
@@ -26701,7 +26722,7 @@
26722 "zh-chs": "发送短信给该用户",
26723 "zh-cht": "發送短信給該用戶",
26724 "xloc": [
26704 - "default.handlebars->27->1796"
26725 + "default.handlebars->27->1798"
26726 ]
26727 },
26728 {
@@ -26713,7 +26734,7 @@
26734 "zh-chs": "发送电子邮件给该用户",
26735 "zh-cht": "發送電子郵件給該用戶",
26736 "xloc": [
26716 - "default.handlebars->27->1798"
26737 + "default.handlebars->27->1800"
26738 ]
26739 },
26740 {
@@ -26732,7 +26753,7 @@
26753 "zh-chs": "向該組中的所有用戶發送通知。",
26754 "zh-cht": "向該組中的所有用戶發送通知。",
26755 "xloc": [
26735 - "default.handlebars->27->1704"
26756 + "default.handlebars->27->1706"
26757 ]
26758 },
26759 {
@@ -26750,7 +26771,7 @@
26771 "zh-chs": "向該用戶發送文本通知。",
26772 "zh-cht": "向該用戶發送文本通知。",
26773 "xloc": [
26753 - "default.handlebars->27->1608"
26774 + "default.handlebars->27->1610"
26775 ]
26776 },
26777 {
@@ -26768,7 +26789,7 @@
26789 "zh-chs": "发送电子邮件给用户",
26790 "zh-cht": "發送電子郵件給用戶",
26791 "xloc": [
26771 - "default.handlebars->27->1588"
26792 + "default.handlebars->27->1590"
26793 ]
26794 },
26795 {
@@ -26806,7 +26827,7 @@
26827 "zh-chs": "發送邀請電子郵件。",
26828 "zh-cht": "發送邀請電子郵件。",
26829 "xloc": [
26809 - "default.handlebars->27->1648"
26830 + "default.handlebars->27->1650"
26831 ]
26832 },
26833 {
@@ -26876,7 +26897,7 @@
26897 "zh-chs": "發送用戶通知",
26898 "zh-cht": "發送用戶通知",
26899 "xloc": [
26879 - "default.handlebars->27->1800"
26900 + "default.handlebars->27->1802"
26901 ]
26902 },
26903 {
@@ -26932,7 +26953,7 @@
26953 "zh-chs": "服務器備份",
26954 "zh-cht": "服務器備份",
26955 "xloc": [
26935 - "default.handlebars->27->1658"
26956 + "default.handlebars->27->1660"
26957 ]
26958 },
26959 {
@@ -26951,7 +26972,7 @@
26972 "zh-chs": "服務器證書",
26973 "zh-cht": "服務器證書",
26974 "xloc": [
26954 - "default.handlebars->27->1952"
26975 + "default.handlebars->27->1954"
26976 ]
26977 },
26978 {
@@ -26970,7 +26991,7 @@
26991 "zh-chs": "服務器數據庫",
26992 "zh-cht": "服務器數據庫",
26993 "xloc": [
26973 - "default.handlebars->27->1953"
26994 + "default.handlebars->27->1955"
26995 ]
26996 },
26997 {
@@ -26991,9 +27012,9 @@
27012 "xloc": [
27013 "default-mobile.handlebars->9->421",
27014 "default-mobile.handlebars->9->434",
26994 - "default.handlebars->27->1413",
26995 - "default.handlebars->27->1442",
26996 - "default.handlebars->27->1655",
27015 + "default.handlebars->27->1415",
27016 + "default.handlebars->27->1444",
27017 + "default.handlebars->27->1657",
27018 "default.handlebars->27->669",
27019 "default.handlebars->27->688"
27020 ]
@@ -27014,8 +27035,8 @@
27035 "zh-chs": "服務器權限",
27036 "zh-cht": "服務器權限",
27037 "xloc": [
27017 - "default.handlebars->27->1580",
27018 - "default.handlebars->27->1669"
27038 + "default.handlebars->27->1582",
27039 + "default.handlebars->27->1671"
27040 ]
27041 },
27042 {
@@ -27034,7 +27055,7 @@
27055 "zh-chs": "服務器配額",
27056 "zh-cht": "服務器配額",
27057 "xloc": [
27037 - "default.handlebars->27->1762"
27058 + "default.handlebars->27->1764"
27059 ]
27060 },
27061 {
@@ -27053,7 +27074,7 @@
27074 "zh-chs": "服務器還原",
27075 "zh-cht": "服務器還原",
27076 "xloc": [
27056 - "default.handlebars->27->1659"
27077 + "default.handlebars->27->1661"
27078 ]
27079 },
27080 {
@@ -27072,7 +27093,7 @@
27093 "zh-chs": "服務器權限",
27094 "zh-cht": "服務器權限",
27095 "xloc": [
27075 - "default.handlebars->27->1761"
27096 + "default.handlebars->27->1763"
27097 ]
27098 },
27099 {
@@ -27091,7 +27112,7 @@
27112 "zh-chs": "服務器狀態",
27113 "zh-cht": "服務器狀態",
27114 "xloc": [
27094 - "default.handlebars->27->1900"
27115 + "default.handlebars->27->1902"
27116 ]
27117 },
27118 {
@@ -27128,7 +27149,7 @@
27149 "zh-chs": "服務器跟踪",
27150 "zh-cht": "服務器跟踪",
27151 "xloc": [
27131 - "default.handlebars->27->1963"
27152 + "default.handlebars->27->1965"
27153 ]
27154 },
27155 {
@@ -27147,7 +27168,7 @@
27168 "zh-chs": "服務器更新",
27169 "zh-cht": "服務器更新",
27170 "xloc": [
27150 - "default.handlebars->27->1660"
27171 + "default.handlebars->27->1662"
27172 ]
27173 },
27174 {
@@ -27282,7 +27303,7 @@
27303 "zh-chs": "ServerStats.csv",
27304 "zh-cht": "ServerStats.csv",
27305 "xloc": [
27285 - "default.handlebars->27->1944"
27306 + "default.handlebars->27->1946"
27307 ]
27308 },
27309 {
@@ -27332,7 +27353,7 @@
27353 "zh-chs": "届会",
27354 "zh-cht": "屆會",
27355 "xloc": [
27335 - "default.handlebars->27->1864"
27356 + "default.handlebars->27->1866"
27357 ]
27358 },
27359 {
@@ -27507,6 +27528,12 @@
27528 "default.handlebars->27->309"
27529 ]
27530 },
27531 + {
27532 + "en": "Setup this server to automatically upload backups to Google Drive. Start by creating and entering a Google Drive ClientID and ClientSecret for your account.",
27533 + "xloc": [
27534 + "default.handlebars->27->1261"
27535 + ]
27536 + },
27537 {
27538 "cs": "Nastavení…",
27539 "de": "Aufbau...",
@@ -27721,7 +27748,7 @@
27748 "zh-cht": "只顯示自己的事件",
27749 "xloc": [
27750 "default-mobile.handlebars->9->424",
27724 - "default.handlebars->27->1416"
27751 + "default.handlebars->27->1418"
27752 ]
27753 },
27754 {
@@ -27740,7 +27767,7 @@
27767 "zh-chs": "顯示連接工具欄",
27768 "zh-cht": "顯示連接工具欄",
27769 "xloc": [
27743 - "default.handlebars->27->1379"
27770 + "default.handlebars->27->1381"
27771 ]
27772 },
27773 {
@@ -27806,8 +27833,8 @@
27833 "zh-chs": "显示1分钟",
27834 "zh-cht": "顯示1分鐘",
27835 "xloc": [
27809 - "default.handlebars->27->1611",
27810 - "default.handlebars->27->1634"
27836 + "default.handlebars->27->1613",
27837 + "default.handlebars->27->1636"
27838 ]
27839 },
27840 {
@@ -27818,8 +27845,8 @@
27845 "zh-chs": "放映10秒",
27846 "zh-cht": "放映10秒",
27847 "xloc": [
27821 - "default.handlebars->27->1610",
27822 - "default.handlebars->27->1633"
27848 + "default.handlebars->27->1612",
27849 + "default.handlebars->27->1635"
27850 ]
27851 },
27852 {
@@ -27830,8 +27857,8 @@
27857 "zh-chs": "显示5分钟",
27858 "zh-cht": "顯示5分鐘",
27859 "xloc": [
27833 - "default.handlebars->27->1612",
27834 - "default.handlebars->27->1635"
27860 + "default.handlebars->27->1614",
27861 + "default.handlebars->27->1637"
27862 ]
27863 },
27864 {
@@ -27842,8 +27869,8 @@
27869 "zh-chs": "显示消息,直到被用户拒绝",
27870 "zh-cht": "顯示消息,直到被用戶拒絕",
27871 "xloc": [
27845 - "default.handlebars->27->1609",
27846 - "default.handlebars->27->1632"
27872 + "default.handlebars->27->1611",
27873 + "default.handlebars->27->1634"
27874 ]
27875 },
27876 {
@@ -27972,8 +27999,8 @@
27999 "zh-chs": "簡單管理員控制模式(ACM)",
28000 "zh-cht": "簡單管理員控制模式(ACM)",
28001 "xloc": [
27975 - "default.handlebars->27->1317",
27976 - "default.handlebars->27->1340"
28002 + "default.handlebars->27->1319",
28003 + "default.handlebars->27->1342"
28004 ]
28005 },
28006 {
@@ -27992,9 +28019,9 @@
28019 "zh-chs": "簡單客戶端控制模式(CCM)",
28020 "zh-cht": "簡單客戶端控制模式(CCM)",
28021 "xloc": [
27995 - "default.handlebars->27->1315",
27996 - "default.handlebars->27->1343",
27997 - "default.handlebars->27->1347"
28022 + "default.handlebars->27->1317",
28023 + "default.handlebars->27->1345",
28024 + "default.handlebars->27->1349"
28025 ]
28026 },
28027 {
@@ -28062,8 +28089,8 @@
28089 "zh-chs": "尺寸",
28090 "zh-cht": "尺寸",
28091 "xloc": [
28065 - "default.handlebars->27->1867",
28066 - "default.handlebars->27->1882",
28092 + "default.handlebars->27->1869",
28093 + "default.handlebars->27->1884",
28094 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize"
28095 ]
28096 },
@@ -28970,8 +28997,8 @@
28997 "zh-chs": "开始时间",
28998 "zh-cht": "開始時間",
28999 "xloc": [
28973 - "default.handlebars->27->1865",
28974 - "default.handlebars->27->1884",
29000 + "default.handlebars->27->1867",
29001 + "default.handlebars->27->1886",
29002 "default.handlebars->27->802",
29003 "desktop.handlebars->3->15"
29004 ]
@@ -29031,8 +29058,8 @@
29058 "zh-chs": "狀態",
29059 "zh-cht": "狀態",
29060 "xloc": [
29034 - "default.handlebars->27->1814",
29035 - "default.handlebars->27->1877",
29061 + "default.handlebars->27->1816",
29062 + "default.handlebars->27->1879",
29063 "default.handlebars->container->column_l->p42->p42tbl->1->0->7"
29064 ]
29065 },
@@ -29145,7 +29172,7 @@
29172 "zh-chs": "儲存空間超過",
29173 "zh-cht": "儲存空間超過",
29174 "xloc": [
29148 - "default.handlebars->27->1502"
29175 + "default.handlebars->27->1504"
29176 ]
29177 },
29178 {
@@ -29198,7 +29225,7 @@
29225 "zh-chs": "学科",
29226 "zh-cht": "學科",
29227 "xloc": [
29201 - "default.handlebars->27->1606"
29228 + "default.handlebars->27->1608"
29229 ]
29230 },
29231 {
@@ -29385,7 +29412,7 @@
29412 "zh-chs": "將服務器設備名稱同步到主機名",
29413 "zh-cht": "將服務器設備名稱同步到主機名",
29414 "xloc": [
29388 - "default.handlebars->27->1387"
29415 + "default.handlebars->27->1389"
29416 ]
29417 },
29418 {
@@ -29662,8 +29689,8 @@
29689 "zh-cht": "終奌站",
29690 "xloc": [
29691 "default-mobile.handlebars->9->164",
29665 - "default.handlebars->27->1380",
29666 - "default.handlebars->27->1871",
29692 + "default.handlebars->27->1382",
29693 + "default.handlebars->27->1873",
29694 "default.handlebars->27->248",
29695 "default.handlebars->27->518",
29696 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal",
@@ -29704,8 +29731,8 @@
29731 "zh-chs": "終端通知",
29732 "zh-cht": "終端通知",
29733 "xloc": [
29707 - "default.handlebars->27->1300",
29708 - "default.handlebars->27->1780",
29734 + "default.handlebars->27->1302",
29735 + "default.handlebars->27->1782",
29736 "default.handlebars->27->590"
29737 ]
29738 },
@@ -29724,8 +29751,8 @@
29751 "zh-chs": "終端提示",
29752 "zh-cht": "終端提示",
29753 "xloc": [
29727 - "default.handlebars->27->1299",
29728 - "default.handlebars->27->1779",
29754 + "default.handlebars->27->1301",
29755 + "default.handlebars->27->1781",
29756 "default.handlebars->27->589"
29757 ]
29758 },
@@ -29881,7 +29908,7 @@
29908 "zh-chs": "目前沒有任何通知",
29909 "zh-cht": "目前沒有任何通知",
29910 "xloc": [
29884 - "default.handlebars->27->1892"
29911 + "default.handlebars->27->1894"
29912 ]
29913 },
29914 {
@@ -29991,7 +30018,7 @@
30018 "zh-chs": "這不是安全的策略,因為代理將執行激活。",
30019 "zh-cht": "這不是安全的策略,因為代理將執行激活。",
30020 "xloc": [
29994 - "default.handlebars->27->1365"
30021 + "default.handlebars->27->1367"
30022 ]
30023 },
30024 {
@@ -30029,7 +30056,7 @@
30056 "zh-chs": "該策略不會影響採用ACM模式的英特爾&reg;AMT的設備。",
30057 "zh-cht": "該策略不會影響採用ACM模式的英特爾&reg;AMT的設備。",
30058 "xloc": [
30032 - "default.handlebars->27->1364"
30059 + "default.handlebars->27->1366"
30060 ]
30061 },
30062 {
@@ -30199,7 +30226,7 @@
30226 "zh-chs": "时间跨度",
30227 "zh-cht": "時間跨度",
30228 "xloc": [
30202 - "default.handlebars->27->1545"
30229 + "default.handlebars->27->1547"
30230 ]
30231 },
30232 {
@@ -30913,9 +30940,9 @@
30940 "default-mobile.handlebars->9->397",
30941 "default-mobile.handlebars->9->98",
30942 "default.handlebars->27->1247",
30916 - "default.handlebars->27->1287",
30917 - "default.handlebars->27->1341",
30918 - "default.handlebars->27->1344",
30943 + "default.handlebars->27->1289",
30944 + "default.handlebars->27->1343",
30945 + "default.handlebars->27->1346",
30946 "default.handlebars->27->828",
30947 "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3",
30948 "desktop.handlebars->p11->deskarea0->deskarea4->3"
@@ -31194,7 +31221,7 @@
31221 "zh-cht": "卸載",
31222 "xloc": [
31223 "default-mobile.handlebars->9->444",
31197 - "default.handlebars->27->1453",
31224 + "default.handlebars->27->1455",
31225 "default.handlebars->27->674",
31226 "default.handlebars->27->693"
31227 ]
@@ -31216,7 +31243,7 @@
31243 "zh-cht": "卸載代理",
31244 "xloc": [
31245 "default-mobile.handlebars->9->426",
31219 - "default.handlebars->27->1418",
31246 + "default.handlebars->27->1420",
31247 "default.handlebars->27->448",
31248 "default.handlebars->27->724"
31249 ]
@@ -31257,7 +31284,6 @@
31284 "zh-cht": "未知",
31285 "xloc": [
31286 "default-mobile.handlebars->9->204",
31260 - "default-mobile.handlebars->9->34",
31287 "default-mobile.handlebars->9->35",
31288 "default-mobile.handlebars->9->355",
31289 "default-mobile.handlebars->9->362",
@@ -31267,13 +31293,12 @@
31293 "default.handlebars->27->109",
31294 "default.handlebars->27->111",
31295 "default.handlebars->27->113",
31270 - "default.handlebars->27->1274",
31271 - "default.handlebars->27->1275",
31296 + "default.handlebars->27->1276",
31297 + "default.handlebars->27->1277",
31298 "default.handlebars->27->13",
31273 - "default.handlebars->27->1854",
31274 - "default.handlebars->27->1869",
31275 - "default.handlebars->27->1870",
31276 - "default.handlebars->27->41",
31299 + "default.handlebars->27->1856",
31300 + "default.handlebars->27->1871",
31301 + "default.handlebars->27->1872",
31302 "default.handlebars->27->42",
31303 "default.handlebars->27->444",
31304 "default.handlebars->27->935",
@@ -31297,7 +31322,7 @@
31322 "zh-cht": "未知#{0}",
31323 "xloc": [
31324 "default-mobile.handlebars->9->391",
31300 - "default.handlebars->27->1281"
31325 + "default.handlebars->27->1283"
31326 ]
31327 },
31328 {
@@ -31316,7 +31341,7 @@
31341 "zh-chs": "未知動作",
31342 "zh-cht": "未知動作",
31343 "xloc": [
31319 - "default.handlebars->27->1906"
31344 + "default.handlebars->27->1908"
31345 ]
31346 },
31347 {
@@ -31335,8 +31360,8 @@
31360 "zh-chs": "未知設備",
31361 "zh-cht": "未知設備",
31362 "xloc": [
31338 - "default.handlebars->27->1718",
31339 - "default.handlebars->27->1842"
31363 + "default.handlebars->27->1720",
31364 + "default.handlebars->27->1844"
31365 ]
31366 },
31367 {
@@ -31355,9 +31380,9 @@
31380 "zh-chs": "未知設備組",
31381 "zh-cht": "未知設備組",
31382 "xloc": [
31358 - "default.handlebars->27->1712",
31359 - "default.handlebars->27->1830",
31360 - "default.handlebars->27->1910"
31383 + "default.handlebars->27->1714",
31384 + "default.handlebars->27->1832",
31385 + "default.handlebars->27->1912"
31386 ]
31387 },
31388 {
@@ -31376,7 +31401,7 @@
31401 "zh-chs": "未知群組",
31402 "zh-cht": "未知群組",
31403 "xloc": [
31379 - "default.handlebars->27->1902"
31404 + "default.handlebars->27->1904"
31405 ]
31406 },
31407 {
@@ -31415,7 +31440,7 @@
31440 "zh-chs": "未知用戶組",
31441 "zh-cht": "未知用戶組",
31442 "xloc": [
31418 - "default.handlebars->27->1836"
31443 + "default.handlebars->27->1838"
31444 ]
31445 },
31446 {
@@ -31471,7 +31496,7 @@
31496 "zh-chs": "解锁帐号",
31497 "zh-cht": "解鎖帳號",
31498 "xloc": [
31474 - "default.handlebars->27->1599"
31499 + "default.handlebars->27->1601"
31500 ]
31501 },
31502 {
@@ -31513,7 +31538,7 @@
31538 "zh-chs": "最新",
31539 "zh-cht": "最新",
31540 "xloc": [
31516 - "default.handlebars->27->1970"
31541 + "default.handlebars->27->1972"
31542 ]
31543 },
31544 {
@@ -31557,8 +31582,8 @@
31582 "default-mobile.handlebars->9->305",
31583 "default-mobile.handlebars->9->323",
31584 "default-mobile.handlebars->9->326",
31560 - "default.handlebars->27->1531",
31561 - "default.handlebars->27->1539",
31585 + "default.handlebars->27->1533",
31586 + "default.handlebars->27->1541",
31587 "default.handlebars->27->867",
31588 "default.handlebars->27->891",
31589 "default.handlebars->27->894",
@@ -31662,7 +31687,7 @@
31687 "zh-cht": "上傳將覆蓋1個文件。繼續?",
31688 "xloc": [
31689 "default-mobile.handlebars->9->324",
31665 - "default.handlebars->27->1540",
31690 + "default.handlebars->27->1542",
31691 "default.handlebars->27->892"
31692 ]
31693 },
@@ -31682,7 +31707,7 @@
31707 "zh-cht": "上傳將覆蓋{0}個文件。繼續?",
31708 "xloc": [
31709 "default-mobile.handlebars->9->325",
31685 - "default.handlebars->27->1541",
31710 + "default.handlebars->27->1543",
31711 "default.handlebars->27->893"
31712 ]
31713 },
@@ -31792,8 +31817,8 @@
31817 "zh-chs": "用過的",
31818 "zh-cht": "用過的",
31819 "xloc": [
31795 - "default.handlebars->27->1896",
31796 - "default.handlebars->27->1898"
31820 + "default.handlebars->27->1898",
31821 + "default.handlebars->27->1900"
31822 ]
31823 },
31824 {
@@ -31812,11 +31837,11 @@
31837 "zh-chs": "用戶",
31838 "zh-cht": "用戶",
31839 "xloc": [
31815 - "default.handlebars->27->1338",
31816 - "default.handlebars->27->1552",
31817 - "default.handlebars->27->1581",
31818 - "default.handlebars->27->1708",
31819 - "default.handlebars->27->1889",
31840 + "default.handlebars->27->1340",
31841 + "default.handlebars->27->1554",
31842 + "default.handlebars->27->1583",
31843 + "default.handlebars->27->1710",
31844 + "default.handlebars->27->1891",
31845 "default.handlebars->27->226",
31846 "default.handlebars->27->658"
31847 ]
@@ -31836,7 +31861,7 @@
31861 "zh-chs": "用戶+文件",
31862 "zh-cht": "用戶+文件",
31863 "xloc": [
31839 - "default.handlebars->27->1582"
31864 + "default.handlebars->27->1584"
31865 ]
31866 },
31867 {
@@ -31855,10 +31880,10 @@
31880 "zh-chs": "用戶帳戶導入",
31881 "zh-cht": "用戶帳戶導入",
31882 "xloc": [
31858 - "default.handlebars->27->1615",
31859 - "default.handlebars->27->1616",
31883 + "default.handlebars->27->1617",
31884 "default.handlebars->27->1618",
31861 - "default.handlebars->27->1620"
31885 + "default.handlebars->27->1620",
31886 + "default.handlebars->27->1622"
31887 ]
31888 },
31889 {
@@ -31877,7 +31902,7 @@
31902 "zh-chs": "用戶帳號",
31903 "zh-cht": "用戶帳號",
31904 "xloc": [
31880 - "default.handlebars->27->1915"
31905 + "default.handlebars->27->1917"
31906 ]
31907 },
31908 {
@@ -31896,7 +31921,7 @@
31921 "zh-cht": "用戶授權",
31922 "xloc": [
31923 "default-mobile.handlebars->9->399",
31899 - "default.handlebars->27->1336",
31924 + "default.handlebars->27->1338",
31925 "default.handlebars->27->654"
31926 ]
31927 },
@@ -31916,8 +31941,8 @@
31941 "zh-chs": "用戶同意",
31942 "zh-cht": "用戶同意",
31943 "xloc": [
31919 - "default.handlebars->27->1306",
31920 - "default.handlebars->27->1786",
31944 + "default.handlebars->27->1308",
31945 + "default.handlebars->27->1788",
31946 "default.handlebars->27->190",
31947 "default.handlebars->27->596",
31948 "default.handlebars->27->713"
@@ -31939,11 +31964,11 @@
31964 "zh-chs": "用戶組",
31965 "zh-cht": "用戶群",
31966 "xloc": [
31942 - "default.handlebars->27->1394",
31943 - "default.handlebars->27->1395",
31944 - "default.handlebars->27->1684",
31945 - "default.handlebars->27->1838",
31946 - "default.handlebars->27->1857",
31967 + "default.handlebars->27->1396",
31968 + "default.handlebars->27->1397",
31969 + "default.handlebars->27->1686",
31970 + "default.handlebars->27->1840",
31971 + "default.handlebars->27->1859",
31972 "default.handlebars->27->657"
31973 ]
31974 },
@@ -31982,7 +32007,7 @@
32007 "zh-chs": "用戶組成員資格",
32008 "zh-cht": "用戶組成員資格",
32009 "xloc": [
31985 - "default.handlebars->27->1835"
32010 + "default.handlebars->27->1837"
32011 ]
32012 },
32013 {
@@ -32012,9 +32037,9 @@
32037 "zh-chs": "用戶標識",
32038 "zh-cht": "用戶標識",
32039 "xloc": [
32015 - "default.handlebars->27->1456",
32016 - "default.handlebars->27->1753",
32017 - "default.handlebars->27->1754"
32040 + "default.handlebars->27->1458",
32041 + "default.handlebars->27->1755",
32042 + "default.handlebars->27->1756"
32043 ]
32044 },
32045 {
@@ -32025,8 +32050,8 @@
32050 "zh-chs": "用户标识符",
32051 "zh-cht": "用戶標識符",
32052 "xloc": [
32028 - "default.handlebars->27->1392",
32029 - "default.handlebars->27->1737"
32053 + "default.handlebars->27->1394",
32054 + "default.handlebars->27->1739"
32055 ]
32056 },
32057 {
@@ -32045,7 +32070,7 @@
32070 "zh-chs": "用戶列表導出",
32071 "zh-cht": "用戶列表導出",
32072 "xloc": [
32048 - "default.handlebars->27->1627"
32073 + "default.handlebars->27->1629"
32074 ]
32075 },
32076 {
@@ -32064,7 +32089,7 @@
32089 "zh-cht": "用戶名",
32090 "xloc": [
32091 "default-mobile.handlebars->9->446",
32067 - "default.handlebars->27->1455"
32092 + "default.handlebars->27->1457"
32093 ]
32094 },
32095 {
@@ -32130,7 +32155,7 @@
32155 "zh-chs": "用戶會話",
32156 "zh-cht": "用戶會話",
32157 "xloc": [
32133 - "default.handlebars->27->1935"
32158 + "default.handlebars->27->1937"
32159 ]
32160 },
32161 {
@@ -32282,7 +32307,7 @@
32307 "zh-cht": "用戶名",
32308 "xloc": [
32309 "default-mobile.handlebars->9->268",
32285 - "default.handlebars->27->1639",
32310 + "default.handlebars->27->1641",
32311 "default.handlebars->27->287",
32312 "default.handlebars->27->319",
32313 "default.handlebars->27->734",
@@ -32349,9 +32374,9 @@
32374 "zh-chs": "用戶數",
32375 "zh-cht": "用戶數",
32376 "xloc": [
32352 - "default.handlebars->27->1672",
32353 - "default.handlebars->27->1700",
32354 - "default.handlebars->27->1934",
32377 + "default.handlebars->27->1674",
32378 + "default.handlebars->27->1702",
32379 + "default.handlebars->27->1936",
32380 "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral"
32381 ]
32382 },
@@ -32371,7 +32396,7 @@
32396 "zh-chs": "用戶會話",
32397 "zh-cht": "用戶會話",
32398 "xloc": [
32374 - "default.handlebars->27->1919"
32399 + "default.handlebars->27->1921"
32400 ]
32401 },
32402 {
@@ -32400,7 +32425,7 @@
32425 "zh-chs": "验证电子邮件",
32426 "zh-cht": "驗證電子郵件",
32427 "xloc": [
32403 - "default.handlebars->27->1594"
32428 + "default.handlebars->27->1596"
32429 ]
32430 },
32431 {
@@ -32475,7 +32500,7 @@
32500 "zh-chs": "已驗證",
32501 "zh-cht": "已驗證",
32502 "xloc": [
32478 - "default.handlebars->27->1816"
32503 + "default.handlebars->27->1818"
32504 ]
32505 },
32506 {
@@ -32506,7 +32531,7 @@
32531 "zh-cht": "驗證電話號碼",
32532 "xloc": [
32533 "default-mobile.handlebars->9->63",
32509 - "default.handlebars->27->1590",
32534 + "default.handlebars->27->1592",
32535 "default.handlebars->27->988"
32536 ]
32537 },
@@ -32591,7 +32616,7 @@
32616 "zh-chs": "版本不兼容,请先升级您的MeshCentral安装",
32617 "zh-cht": "版本不兼容,請先升級您的MeshCentral安裝",
32618 "xloc": [
32594 - "default.handlebars->27->1966"
32619 + "default.handlebars->27->1968"
32620 ]
32621 },
32622 {
@@ -32659,7 +32684,7 @@
32684 "zh-chs": "查看所有活动",
32685 "zh-cht": "查看所有活動",
32686 "xloc": [
32662 - "default.handlebars->27->1664"
32687 + "default.handlebars->27->1666"
32688 ]
32689 },
32690 {
@@ -32677,8 +32702,8 @@
32702 "zh-chs": "查看变更日志",
32703 "zh-cht": "查看變更日誌",
32704 "xloc": [
32680 - "default.handlebars->27->1969",
32681 - "default.handlebars->27->1971"
32705 + "default.handlebars->27->1971",
32706 + "default.handlebars->27->1973"
32707 ]
32708 },
32709 {
@@ -32716,7 +32741,7 @@
32741 "zh-chs": "查看有關此設備組的註釋",
32742 "zh-cht": "查看有關此設備組的註釋",
32743 "xloc": [
32719 - "default.handlebars->27->1321"
32744 + "default.handlebars->27->1323"
32745 ]
32746 },
32747 {
@@ -32735,7 +32760,7 @@
32760 "zh-chs": "查看有關此用戶的註釋",
32761 "zh-cht": "查看有關此用戶的註釋",
32762 "xloc": [
32738 - "default.handlebars->27->1794"
32763 + "default.handlebars->27->1796"
32764 ]
32765 },
32766 {
@@ -32847,8 +32872,8 @@
32872 "xloc": [
32873 "default-mobile.handlebars->9->422",
32874 "default-mobile.handlebars->9->435",
32850 - "default.handlebars->27->1414",
32851 - "default.handlebars->27->1443"
32875 + "default.handlebars->27->1416",
32876 + "default.handlebars->27->1445"
32877 ]
32878 },
32879 {
@@ -32965,8 +32990,8 @@
32990 "zh-chs": "網絡服務器",
32991 "zh-cht": "網絡服務器",
32992 "xloc": [
32968 - "default.handlebars->27->1955",
32969 - "default.handlebars->27->1956"
32993 + "default.handlebars->27->1957",
32994 + "default.handlebars->27->1958"
32995 ]
32996 },
32997 {
@@ -32985,7 +33010,7 @@
33010 "zh-chs": "Web服務器請求",
33011 "zh-cht": "Web服務器請求",
33012 "xloc": [
32988 - "default.handlebars->27->1957"
33013 + "default.handlebars->27->1959"
33014 ]
33015 },
33016 {
@@ -33003,7 +33028,7 @@
33028 "zh-chs": "Web套接字中繼",
33029 "zh-cht": "Web套接字中繼",
33030 "xloc": [
33006 - "default.handlebars->27->1958"
33031 + "default.handlebars->27->1960"
33032 ]
33033 },
33034 {
@@ -33090,7 +33115,7 @@
33115 "zh-chs": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:",
33116 "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:",
33117 "xloc": [
33093 - "default.handlebars->27->1464"
33118 + "default.handlebars->27->1466"
33119 ]
33120 },
33121 {
@@ -33129,7 +33154,7 @@
33154 "zh-chs": "下次登錄時將更改。",
33155 "zh-cht": "下次登錄時將更改。",
33156 "xloc": [
33132 - "default.handlebars->27->1766"
33157 + "default.handlebars->27->1768"
33158 ]
33159 },
33160 {
@@ -33839,10 +33864,7 @@
33864 },
33865 {
33866 "en": "You can setup MeshCentral to automatically send a server backup to Google Drive. Start by entering a desktop Google API ClientID and ClientSecret for your account.",
33842 - "ln": "U kunt MeshCentral zo instellen dat er automatisch een serverback-up naar Google Drive wordt verzonden.Begin met het invoeren van een desktop Google API ClientID en ClientSecret voor uw account.",
33843 - "xloc": [
33844 - "default.handlebars->27->1261"
33845 - ]
33867 + "ln": "U kunt MeshCentral zo instellen dat er automatisch een serverback-up naar Google Drive wordt verzonden.Begin met het invoeren van een desktop Google API ClientID en ClientSecret voor uw account."
33868 },
33869 {
33870 "en": "You have been invited to install an application that will allow a remote operator to securely access your computer including the desktop and files. Only follow the instructions below if this invitation was expected and you know who will be accessing your computer. Select your operating system and follow the instructions below for installation.",
@@ -34242,7 +34264,7 @@
34264 "zh-chs": "\\\\'",
34265 "zh-cht": "\\\\'",
34266 "xloc": [
34245 - "default.handlebars->27->1967"
34267 + "default.handlebars->27->1969"
34268 ]
34269 },
34270 {
@@ -34463,7 +34485,7 @@
34485 "zh-cht": "複製",
34486 "xloc": [
34487 "default-mobile.handlebars->9->130",
34466 - "default.handlebars->27->1536"
34488 + "default.handlebars->27->1538"
34489 ]
34490 },
34491 {
@@ -34549,8 +34571,8 @@
34571 "zh-chs": "eventslist.csv",
34572 "zh-cht": "eventslist.csv",
34573 "xloc": [
34552 - "default.handlebars->27->1559",
34553 - "default.handlebars->27->1564"
34574 + "default.handlebars->27->1561",
34575 + "default.handlebars->27->1566"
34576 ]
34577 },
34578 {
@@ -34569,8 +34591,8 @@
34591 "zh-chs": "eventslist.json",
34592 "zh-cht": "eventslist.json",
34593 "xloc": [
34572 - "default.handlebars->27->1561",
34573 - "default.handlebars->27->1565"
34594 + "default.handlebars->27->1563",
34595 + "default.handlebars->27->1567"
34596 ]
34597 },
34598 {
@@ -34608,8 +34630,8 @@
34630 "zh-chs": "自由",
34631 "zh-cht": "自由",
34632 "xloc": [
34611 - "default.handlebars->27->1927",
34612 - "default.handlebars->27->1930"
34633 + "default.handlebars->27->1929",
34634 + "default.handlebars->27->1932"
34635 ]
34636 },
34637 {
@@ -34813,7 +34835,7 @@
34835 "zh-chs": "id,名稱,電子郵件,創建,lastlogin,組,authfactors",
34836 "zh-cht": "id,名稱,電子郵件,創建,lastlogin,組,authfactors",
34837 "xloc": [
34816 - "default.handlebars->27->1628"
34838 + "default.handlebars->27->1630"
34839 ]
34840 },
34841 {
@@ -34924,7 +34946,7 @@
34946 "zh-chs": "k max,默认为空白",
34947 "zh-cht": "k max,默認為空白",
34948 "xloc": [
34927 - "default.handlebars->27->1656"
34949 + "default.handlebars->27->1658"
34950 ]
34951 },
34952 {
@@ -35036,7 +35058,7 @@
35058 "zh-cht": "移動",
35059 "xloc": [
35060 "default-mobile.handlebars->9->131",
35039 - "default.handlebars->27->1537"
35061 + "default.handlebars->27->1539"
35062 ]
35063 },
35064 {
@@ -35106,7 +35128,7 @@
35128 "zh-chs": "servererrors.txt",
35129 "zh-cht": "servererrors.txt",
35130 "xloc": [
35109 - "default.handlebars->27->1278"
35131 + "default.handlebars->27->1280"
35132 ]
35133 },
35134 {
@@ -35124,7 +35146,7 @@
35146 "zh-chs": "servertrace.csv",
35147 "zh-cht": "servertrace.csv",
35148 "xloc": [
35127 - "default.handlebars->27->1965"
35149 + "default.handlebars->27->1967"
35150 ]
35151 },
35152 {
@@ -35184,7 +35206,7 @@
35206 "zh-chs": "時間,conn.agent,conn.users,conn.usersessions,conn.relaysession,conn.intelamt,mem.external,mem.heapused,mem.heaptotal,mem.rss",
35207 "zh-cht": "時間,conn.agent,conn.users,conn.usersessions,conn.relaysession,conn.intelamt,mem.external,mem.heapused,mem.heaptotal,mem.rss",
35208 "xloc": [
35187 - "default.handlebars->27->1943"
35209 + "default.handlebars->27->1945"
35210 ]
35211 },
35212 {
@@ -35202,7 +35224,7 @@
35224 "zh-chs": "時間,來源,訊息",
35225 "zh-cht": "時間,來源,訊息",
35226 "xloc": [
35205 - "default.handlebars->27->1964"
35227 + "default.handlebars->27->1966"
35228 ]
35229 },
35230 {
@@ -35236,8 +35258,8 @@
35258 "zh-chs": "總",
35259 "zh-cht": "總",
35260 "xloc": [
35239 - "default.handlebars->27->1928",
35240 - "default.handlebars->27->1931"
35261 + "default.handlebars->27->1930",
35262 + "default.handlebars->27->1933"
35263 ]
35264 },
35265 {
@@ -35313,8 +35335,8 @@
35335 "zh-chs": "userlist.csv",
35336 "zh-cht": "userlist.csv",
35337 "xloc": [
35316 - "default.handlebars->27->1624",
35317 - "default.handlebars->27->1629"
35338 + "default.handlebars->27->1626",
35339 + "default.handlebars->27->1631"
35340 ]
35341 },
35342 {
@@ -35332,8 +35354,8 @@
35354 "zh-chs": "userlist.json",
35355 "zh-cht": "userlist.json",
35356 "xloc": [
35335 - "default.handlebars->27->1626",
35336 - "default.handlebars->27->1630"
35357 + "default.handlebars->27->1628",
35358 + "default.handlebars->27->1632"
35359 ]
35360 },
35361 {
@@ -35351,7 +35373,7 @@
35373 "zh-chs": "utc,時間,類型,操作,用戶,設備,消息",
35374 "zh-cht": "utc,時間,類型,操作,用戶,設備,消息",
35375 "xloc": [
35354 - "default.handlebars->27->1563"
35376 + "default.handlebars->27->1565"
35377 ]
35378 },
35379 {
@@ -35388,8 +35410,8 @@
35410 "zh-chs": "{0} Gb",
35411 "zh-cht": "{0} Gb",
35412 "xloc": [
35391 - "default.handlebars->27->1511",
35392 - "default.handlebars->27->1516"
35413 + "default.handlebars->27->1513",
35414 + "default.handlebars->27->1518"
35415 ]
35416 },
35417 {
@@ -35408,9 +35430,9 @@
35430 "zh-chs": "{0} Kb",
35431 "zh-cht": "{0} Kb",
35432 "xloc": [
35411 - "default.handlebars->27->1509",
35412 - "default.handlebars->27->1514",
35413 - "default.handlebars->27->1868"
35433 + "default.handlebars->27->1511",
35434 + "default.handlebars->27->1516",
35435 + "default.handlebars->27->1870"
35436 ]
35437 },
35438 {
@@ -35430,8 +35452,8 @@
35452 "zh-cht": "{0} Mb",
35453 "xloc": [
35454 "default-mobile.handlebars->9->387",
35433 - "default.handlebars->27->1510",
35434 - "default.handlebars->27->1515",
35455 + "default.handlebars->27->1512",
35456 + "default.handlebars->27->1517",
35457 "default.handlebars->27->967"
35458 ]
35459 },
@@ -35471,7 +35493,7 @@
35493 "zh-chs": "{0}個活動會話",
35494 "zh-cht": "{0}個活動會話",
35495 "xloc": [
35474 - "default.handlebars->27->1806"
35496 + "default.handlebars->27->1808"
35497 ]
35498 },
35499 {
@@ -35490,8 +35512,8 @@
35512 "zh-chs": "{0} b",
35513 "zh-cht": "{0} b",
35514 "xloc": [
35493 - "default.handlebars->27->1508",
35494 - "default.handlebars->27->1513"
35515 + "default.handlebars->27->1510",
35516 + "default.handlebars->27->1515"
35517 ]
35518 },
35519 {
@@ -35511,8 +35533,8 @@
35533 "zh-cht": "{0}個字節",
35534 "xloc": [
35535 "default-mobile.handlebars->9->119",
35514 - "default.handlebars->27->1524",
35515 - "default.handlebars->27->1883"
35536 + "default.handlebars->27->1526",
35537 + "default.handlebars->27->1885"
35538 ]
35539 },
35540 {
@@ -35531,7 +35553,7 @@
35553 "zh-chs": "剩餘{0}個字節",
35554 "zh-cht": "剩餘{0}個字節",
35555 "xloc": [
35534 - "default.handlebars->27->1503"
35556 + "default.handlebars->27->1505"
35557 ]
35558 },
35559 {
@@ -35563,7 +35585,7 @@
35585 "zh-chs": "剩餘{0} GB",
35586 "zh-cht": "剩餘{0} GB",
35587 "xloc": [
35566 - "default.handlebars->27->1506"
35588 + "default.handlebars->27->1508"
35589 ]
35590 },
35591 {
@@ -35582,7 +35604,7 @@
35604 "zh-chs": "{0}個群組",
35605 "zh-cht": "{0}個群組",
35606 "xloc": [
35585 - "default.handlebars->27->1771"
35607 + "default.handlebars->27->1773"
35608 ]
35609 },
35610 {
@@ -35636,7 +35658,7 @@
35658 "zh-chs": "剩餘{0}千字節",
35659 "zh-cht": "剩餘{0}千字節",
35660 "xloc": [
35639 - "default.handlebars->27->1504"
35661 + "default.handlebars->27->1506"
35662 ]
35663 },
35664 {
@@ -35675,7 +35697,7 @@
35697 "zh-chs": "剩餘{0}兆字節",
35698 "zh-cht": "剩餘{0}兆字節",
35699 "xloc": [
35678 - "default.handlebars->27->1505"
35700 + "default.handlebars->27->1507"
35701 ]
35702 },
35703 {
@@ -35712,7 +35734,7 @@
35734 "zh-chs": "{0}未顯示更多用戶,請使用搜索框查找用戶...",
35735 "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...",
35736 "xloc": [
35715 - "default.handlebars->27->1573"
35737 + "default.handlebars->27->1575"
35738 ]
35739 },
35740 {
@@ -35866,7 +35888,7 @@
35888 "default-mobile.handlebars->9->169",
35889 "default-mobile.handlebars->9->172",
35890 "default-mobile.handlebars->9->175",
35869 - "default.handlebars->27->1577",
35891 + "default.handlebars->27->1579",
35892 "default.handlebars->27->244",
35893 "default.handlebars->27->247",
35894 "default.handlebars->27->250",
@@ -36004,7 +36026,7 @@
36026 "zh-chs": "{0} k合1檔案。最多{1} k",
36027 "zh-cht": "{0} k合1檔案。最多{1} k",
36028 "xloc": [
36007 - "default.handlebars->27->1518"
36029 + "default.handlebars->27->1520"
36030 ]
36031 },
36032 {
@@ -36023,7 +36045,7 @@
36045 "zh-chs": "{1}個文件中有{0}個。最多{2} k",
36046 "zh-cht": "{1}個文件中有{0}個。最多{2} k",
36047 "xloc": [
36026 - "default.handlebars->27->1517"
36048 + "default.handlebars->27->1519"
36049 ]
36050 },
36051 {
@@ -36231,4 +36253,4 @@
36253 ]
36254 }
36255 ]
36234 -}
36256 +}
\ No newline at end of file
views/default.handlebars
+20 -15
@@ -461,7 +461,7 @@
461 <div style="margin-left:25px">
462 <div id="p2ServerActionsBackup"><div class="p2AccountActions"><span style="display:none"><strong>&#x2713;</strong></span></div><a href="{{{domainurl}}}backup.zip" rel="noreferrer noopener" target="_blank">Download server backup</a></div>
463 <div id="p2ServerActionsRestore"><div class="p2AccountActions"><span style="display:none"><strong>&#x2713;</strong></span></div><a href=# onclick="return server_showRestoreDlg()">Restore server with backup</a></div>
464 - <div id="p2ServerActionsGoogleBackup"><div class="p2AccountActions"><span id="p2ServerActionsGoogleBackupCheck" style="display:none"><strong>&#x2713;</strong></span></div><span><a href=# onclick="return server_setupGoogleDriveBackup()">Google Drive backup</a><br /></span></div>
464 + <div id="p2ServerActionsGoogleBackup" style="display:none"><div class="p2AccountActions"><span id="p2ServerActionsGoogleBackupCheck" style="display:none"><strong>&#x2713;</strong></span></div><span><a href=# onclick="return server_setupGoogleDriveBackup()">Google Drive backup</a><br /></span></div>
465 <div id="p2ServerActionsVersion"><div class="p2AccountActions"><span style="display:none"><strong>&#x2713;</strong></span></div><a href=# onclick="return server_showVersionDlg()">Check server version</a></div>
466 <div id="p2ServerActionsErrors"><div class="p2AccountActions"><span style="display:none"><strong>&#x2713;</strong></span></div><a href=# onclick="return server_showErrorsDlg()">Show server error log</a></div>
467 </div>
@@ -3056,11 +3056,12 @@
3056 QV('p2ServerActionsGoogleBackupCheck', message.state > 2);
3057 miscState['googleDrive'] = { state: message.state }
3058 if (message.state == 2) {
3059 - var x = "Nagivate to the URL below, grant access and copy the token code back." + '<br /><br />';
3059 + var x = '<img style=float:right src="images/googledrive-48.png" /><div>' + "Nagivate to the URL below, grant access and copy the token code back." + '</div><br />';
3060 x += addHtmlValue("Activation", '<a href=\"' + message.url + '\" rel="noreferrer noopener" target="_blank">Browse to this URL</a>');
3061 - x += addHtmlValue("Code", '<input id=gdcode style=width:240px></input>');
3062 - setDialogMode(2, "Google Drive Backup", 1, server_setupGoogleDriveBackupEx, x, 'gd2');
3061 + x += addHtmlValue("Code", '<input id=gdcode onkeyup=server_setupGoogleDriveBackupCheck3() style=width:240px></input>');
3062 + setDialogMode(2, "Google Drive Backup", 3, server_setupGoogleDriveBackupEx, x, 'gd2');
3063 Q('gdcode').focus();
3064 + QE('idx_dlgOkButton', false);
3065 }
3066 }
3067 break;
@@ -9139,21 +9140,25 @@
9140 function server_setupGoogleDriveBackup() {
9141 if (xxdialogMode || (miscState['googleDrive'] == null)) return false;
9142 var gd = miscState['googleDrive'];
9142 - if (gd.state == 1) {
9143 - var x = "You can setup MeshCentral to automatically send a server backup to Google Drive. Start by entering a desktop Google API ClientID and ClientSecret for your account." + '<br /><br />';
9144 - x += addHtmlValue("Client ID", '<input id=gdclientid style=width:240px></input>');
9145 - x += addHtmlValue("Client Secret", '<input id=gdclientsecret style=width:240px></input>');
9146 - setDialogMode(2, "Google Drive Backup", 1, server_setupGoogleDriveBackupEx, x, 'gd1');
9143 + if (gd.state < 3) {
9144 + var x = '<img style=float:right src="images/googledrive-48.png" /><div>' + "Setup this server to automatically upload backups to Google Drive. Start by creating and entering a Google Drive ClientID and ClientSecret for your account." + '</div><br />';
9145 + x += addHtmlValue("Credentials", '<a href="https://console.developers.google.com/apis/api/drive.googleapis.com/credentials" rel="noreferrer noopener" target="_blank">' + "Google Drive Console" + '</a>');
9146 + x += addHtmlValue("Client ID", '<input id=gdclientid style=width:240px placeholder="xxxxxxxx.apps.googleusercontent.com" onkeyup=server_setupGoogleDriveBackupCheck1()></input>');
9147 + x += addHtmlValue("Client Secret", '<input id=gdclientsecret style=width:240px onkeyup=server_setupGoogleDriveBackupCheck1()></input>');
9148 + setDialogMode(2, "Google Drive Backup", 3, server_setupGoogleDriveBackupEx, x, 'gd1');
9149 Q('gdclientid').focus();
9150 + QE('idx_dlgOkButton', false);
9151 } else if (gd.state == 3) {
9149 - var x = "Google Drive backup is currently active.";
9150 - x += '<br /><br /><label><input id=gdcheck type=checkbox onchange=server_setupGoogleDriveBackupCheck() />' + "Remove Configuration" + '</label>';
9152 + var x = '<img style=float:right src="images/googledrive-48.png" /><div>' + "Google Drive backup is currently active." + '</div>';
9153 + x += '<br /><label><input id=gdcheck type=checkbox onchange=server_setupGoogleDriveBackupCheck2() />' + "Remove Configuration" + '</label>';
9154 setDialogMode(2, "Google Drive Backup", 3, server_setupGoogleDriveBackupEx, x, 'gd0');
9155 QE('idx_dlgOkButton', false);
9156 }
9157 }
9158
9156 - function server_setupGoogleDriveBackupCheck() { QE('idx_dlgOkButton', Q('gdcheck').checked); }
9159 + function server_setupGoogleDriveBackupCheck1() { QE('idx_dlgOkButton', (Q('gdclientid').value.length > 0) && (Q('gdclientsecret').value.length > 0)); }
9160 + function server_setupGoogleDriveBackupCheck2() { QE('idx_dlgOkButton', Q('gdcheck').checked); }
9161 + function server_setupGoogleDriveBackupCheck3() { QE('idx_dlgOkButton', Q('gdcode').value.length > 0); }
9162
9163 function server_setupGoogleDriveBackupEx(b, t) {
9164 if (t == 'gd0') { meshserver.send({ action: 'serverBackup', service: 'googleDrive', state: 0 }); }
@@ -13055,11 +13060,11 @@
13060 if (installedPluginList['version_info'] != null && installedPluginList['version_info'][p._id] != null) {
13061 var vin = installedPluginList['version_info'][p._id];
13062 if (vin.hasUpdate) {
13058 - p.upgradeAvail = '<a title="' + "View Changelog" + '" target="_blank" href="' + vin.changelogUrl + '">' + vin.version + '</a>';
13063 + p.upgradeAvail = '<a title="' + "View Changelog" + '" rel="noreferrer noopener" target="_blank" href="' + vin.changelogUrl + '">' + vin.version + '</a>';
13064 } else {
13065 cant_action.push('upgrade');
13066 if (p.status) p.upgradeAvail = "Up to date";
13062 - else p.upgradeAvail = '<a title="' + "View Changelog" + '" target="_blank" href="' + vin.changelogUrl + '">' + vin.version + '</a>';
13067 + else p.upgradeAvail = '<a title="' + "View Changelog" + '" rel="noreferrer noopener" target="_blank" href="' + vin.changelogUrl + '">' + vin.version + '</a>';
13068 }
13069 if (!vin.meshCentralCompat) {
13070 p.upgradeAvail += vers_not_compat;
@@ -13077,7 +13082,7 @@
13082 }
13083 p.actions += '</select>';
13084
13080 - var tpl = '<td><img style=margin-top:3px src=images/plugin24.png></td><td class=gradTable1>&nbsp;</td><td class=gradTable2>' + p.nameHtml + '</td><td class=gradTable2>' + EscapeHtml(p.description) + '</td><td class=gradTable2 style=text-align:center><a href="' + EscapeHtml(p.homepage) + '" target="_blank">Home</a></td><td class=gradTable2 style=text-align:center>' + EscapeHtml(p.version) + '</td><td style=text-align:center class="pluginUpgradeAvailable gradTable2">' + p.upgradeAvail + '</td><td class=gradTable2 style="text-align:center;color:#' + p.statusColor + '">' + p.statusText + '</td><td class="pluginAction gradTable2" style=text-align:center>' + p.actions + '</td><td class=gradTable3>&nbsp;</td>';
13085 + var tpl = '<td><img style=margin-top:3px src=images/plugin24.png></td><td class=gradTable1>&nbsp;</td><td class=gradTable2>' + p.nameHtml + '</td><td class=gradTable2>' + EscapeHtml(p.description) + '</td><td class=gradTable2 style=text-align:center><a href="' + EscapeHtml(p.homepage) + '" rel="noreferrer noopener" target="_blank">Home</a></td><td class=gradTable2 style=text-align:center>' + EscapeHtml(p.version) + '</td><td style=text-align:center class="pluginUpgradeAvailable gradTable2">' + p.upgradeAvail + '</td><td class=gradTable2 style="text-align:center;color:#' + p.statusColor + '">' + p.statusText + '</td><td class="pluginAction gradTable2" style=text-align:center>' + p.actions + '</td><td class=gradTable3>&nbsp;</td>';
13086 var tr = tbl.insertRow(-1);
13087 tr.innerHTML = tpl;
13088 tr.classList.add('p42tblRow');
webserver.js
+2 -2
@@ -3758,9 +3758,9 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
3758 ws.send('5'); // Indicate we want to perform file transfers (5 = Files).
3759 if (ws.xcmd == 'coredump') {
3760 // Check the agent core dump folder if not already present.
3761 - var coreDumpPath = obj.path.join(parent.datapath, 'coredumps');
3761 + var coreDumpPath = obj.path.join(parent.datapath, '..', 'meshcentral-coredumps');
3762 if (obj.fs.existsSync(coreDumpPath) == false) { try { obj.fs.mkdirSync(coreDumpPath); } catch (ex) { } }
3763 - ws.xfilepath = obj.path.join(parent.datapath, 'coredumps', ws.xarg);
3763 + ws.xfilepath = obj.path.join(parent.datapath, '..', 'meshcentral-coredumps', ws.xarg);
3764 ws.xid = 'coredump';
3765 ws.send(JSON.stringify({ action: 'download', sub: 'start', ask: 'coredump', id: 'coredump' })); // Ask for a directory (test)
3766 }