First version of auto-upload backup to Google Cloud.
Ylian Saint-Hilaire committed
Aug 21, 2020 at 01:57 UTC
9d1b0f6134c9827122f4200a3fd224c601f336ae
71 files changed
+1975
-1840
db.js
+53
-2
@@ -1329,7 +1329,7 @@ module.exports.CreateDB = function (parent, func) {
1329
} else {
1330
archive = archiver('zip', { zlib: { level: 9 } });
1331
}
1332
- output.on('close', function () { obj.performingBackup = false; setTimeout(function () { try { parent.fs.unlink(newBackupPath + '.archive', function () { }); } catch (ex) { console.log(ex); } }, 5000); });
1332
+ output.on('close', function () { obj.performingBackup = false; obj.performCloudBackup(newAutoBackupPath + '.zip'); setTimeout(function () { try { parent.fs.unlink(newBackupPath + '.archive', function () { }); } catch (ex) { console.log(ex); } }, 5000); });
1333
output.on('end', function () { });
1334
archive.on('warning', function (err) { console.log('Backup warning: ' + err); });
1335
archive.on('error', function (err) { console.log('Backup error: ' + err); });
@@ -1350,7 +1350,7 @@ module.exports.CreateDB = function (parent, func) {
1350
} else {
1351
archive = archiver('zip', { zlib: { level: 9 } });
1352
}
1353
- output.on('close', function () { obj.performingBackup = false; });
1353
+ output.on('close', function () { obj.performingBackup = false; obj.performCloudBackup(newAutoBackupPath + '.zip'); });
1354
output.on('end', function () { });
1355
archive.on('warning', function (err) { console.log('Backup warning: ' + err); });
1356
archive.on('error', function (err) { console.log('Backup error: ' + err); });
@@ -1384,6 +1384,57 @@ module.exports.CreateDB = function (parent, func) {
1384
return 0;
1385
}
1386
1387
+ // Perform cloud backup
1388
+ obj.performCloudBackup = function(filename) {
1389
+ if (parent.config.settings.autobackup.googledrive != true) return;
1390
+ obj.Get('GoogleDriveBackup', function (err, docs) {
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
1395
+ oAuth2Client.setCredentials(docs[0].token);
1396
+ const drive = google.drive({ version: 'v3', auth: oAuth2Client });
1397
+ const createdTimeSort = function (a, b) { if (a.createdTime > b.createdTime) return 1; if (a.createdTime < b.createdTime) return -1; return 0; }
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
+ });
1411
+
1412
+ // Upload the backup
1413
+ drive.files.create({
1414
+ requestBody: { name: require('path').basename(filename), mimeType: 'text/plain', parents: [folderid] },
1415
+ media: { mimeType: 'application/zip', body: require('fs').createReadStream(filename) },
1416
+ }, function (err, res) {
1417
+ if (err) { console.log('GoogleDrive error: ' + err); return; }
1418
+ });
1419
+ }
1420
+
1421
+ // Find our backup folder, create one if needed.
1422
+ drive.files.list({
1423
+ q: 'mimeType = \'application/vnd.google-apps.folder\' and name=\'MeshCentral-Backups\' and trashed = false',
1424
+ fields: 'nextPageToken, files(id, name)',
1425
+ }, function (err, res) {
1426
+ if (err) { console.log('GoogleDrive error: ' + err); return; }
1427
+ if (res.data.files.length == 0) {
1428
+ // 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; }
1431
+ useGoogleDrive(file.data.id);
1432
+ });
1433
+ } else { useGoogleDrive(res.data.files[0].id); }
1434
+ });
1435
+ });
1436
+ }
1437
+
1438
function padNumber(number, digits) { return Array(Math.max(digits - String(number).length + 1, 0)).join(0) + number; }
1439
1440
// Called when a node has changed
emails/translations/account-check-min_cs.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Ověření e-mailem</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Ověření</b></table><p>Ahoj [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> požaduje ověření e-mailem a dokončete proces kliknutím na následující odkaz.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Kliknutím sem ověřte svou e-mailovou adresu.</a></p>Pokud jste tento požadavek nezačali, ignorujte tento e-mail.</div>
\ No newline at end of file
emails/translations/account-check-min_de.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - E-Mail-Überprüfung</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Überprüfung</b></table><p>Hallo [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> Wenn Sie eine E-Mail-Bestätigung anfordern, klicken Sie auf den folgenden Link, um den Vorgang abzuschließen.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Klicken Sie hier, um Ihre E-Mail-Adresse zu bestätigen.</a></p>Wenn Sie diese Anfrage nicht initiiert haben, ignorieren Sie diese Mail bitte.</div>
\ No newline at end of file
emails/translations/account-check-min_es.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Verificación de Email</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Invitación</b></table><p>Hola [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> solicita la verificación por correo electrónico, haga clic en el siguiente enlace para completar el proceso.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Haga click aquí para verificar su dirección de e-mail</a></p>Si Ud. no inicio este proceso, por favor ignore este email</div>
\ No newline at end of file
emails/translations/account-check-min_fi.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Sähköpostivarmistus</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Todentaminen</b></table><p>Moi [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> pyytää sähköpostitse vahvistusta, suorita prosessi napsauttamalla seuraavaa linkkiä.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Napsauta tätä vahvistaaksesi sähköpostiosoitteesi.</a></p>Jos et suorittanut tätä pyyntöä, voit ohitaa tämän sähköpostin.</div>
\ No newline at end of file
emails/translations/account-check-min_fr.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Vérification E-mail</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Vérification</b></table><p>Bonjour [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> demande une vérification par e-mail, cliquez sur le lien suivant pour terminer le processus.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Cliquez ici pour vérifier votre adresse e-mail.</a></p>Si vous n'avez pas initié cette demande, veuillez ignorer ce courrier.</div>
\ No newline at end of file
emails/translations/account-check-min_hi.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - ईमेल सत्यापन</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]] - सत्यापन</b></table><p>हाय [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[सर्वर का नाम]]]</a> ईमेल सत्यापन का अनुरोध कर रहा है, प्रक्रिया को पूरा करने के लिए निम्न लिंक पर क्लिक करें।<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">अपना ई-मेल पता सत्यापित करने के लिए यहां क्लिक करें।</a></p>यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें।</div>
\ No newline at end of file
emails/translations/account-check-min_ja.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-メールの確認</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-確認</b></table><p>[[[USERNAME]]]様 <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> がメールの確認をリクエストしている場合は、次のリンクをクリックしてプロセスを完了してください。<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">ここをクリックして、電子メールアドレスを確認してください。</a></p>このリクエストを開始していない場合は、このメールを無視してください。</div>
\ No newline at end of file
emails/translations/account-check-min_ko.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Email 인증</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - 인증</b></table><p>안녕하세요, [[[USERNAME]]]님. <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> 이메일 검증을 요구하는 경우, 다음 링크를 클릭하여 과정을 완료하십시오.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">이메일 주소를 검증하려면 여기를 클릭하십시오.</a></p>이 요청을 시작하지 않은 경우, 이 메일을 무시하십시오.</div>
\ No newline at end of file
emails/translations/account-check-min_nl.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - E-mail Verificatie</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Verificatie</b></table><p>Hallo [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> vraagt om e-mailverificatie, klik op de volgende link om het proces te voltooien.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Klik hier om uw e-mailadres te verifiëren.</a></p>Als u dit verzoek niet heeft ingediend, dan kunt u deze e-mail negeren.</div>
\ No newline at end of file
emails/translations/account-check-min_pt.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Email Verification</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Verification</b></table><p>Hi [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> is requesting email verification, click on the following link to complete the process.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Click here to verify your e-mail address.</a></p>If you did not initiate this request, please ignore this mail.</div>
\ No newline at end of file
emails/translations/account-check-min_ru.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - подтверждение по электронной почте</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Подтверждение</b></table><p>Привет [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> запрашивает подтверждение по электронной почте, нажмите на следующую ссылку, чтобы завершить процесс.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Нажмите здесь, чтобы подтвердить свой адрес электронной почты.</a></p>Если вы не инициировали этот запрос, игнорируйте это письмо.</div>
\ No newline at end of file
emails/translations/account-check-min_zh-chs.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-电子邮件验证</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-验证</b></table><p>[[[USERNAME]],你好, <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> 正在请求电子邮件验证,请单击以下链接以完成该过程。<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">单击此处以验证您的电子邮件地址。</a></p>如果您没有发起此请求,请忽略此邮件。</div>
\ No newline at end of file
emails/translations/account-check-min_zh-cht.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-電子郵件驗證</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-驗證</b></table><p>[[[USERNAME]],你好, <a href=[[[SERVERURL]]]>[[[服務器名稱]]]</a> 正在請求電子郵件驗證,請單擊以下鏈接以完成該過程。<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">單擊此處以驗證您的電子郵件地址。</a></p>如果您沒有發起此請求,請忽略此郵件。</div>
\ No newline at end of file
emails/translations/account-invite-min_cs.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Pozvánka na účet</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Pozvánka na účet</b></table><p>Účet byl pro vás vytvořen na serveru <a href=[[[SERVERURL]]] notrans=1>[[[SERVERNAME]]]</a>, nyní k němu máte přístup:<p> Uživatelské jméno: <b notrans=1>[[[ACCOUNTNAME]]]</b><br> Heslo: <b notrans=1>[[[PASSWORD]]]</b></p>S pozdravem,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_de.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Kontoeinladung</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Kontoeinladung</b></table><p>Auf dem Server wurde ein Konto für Sie erstellt <a href=[[[SERVERURL]]] notrans=1>[[[SERVERNAME]]]</a>können Sie jetzt darauf zugreifen mit:<p> Benutzername: <b notrans=1>[[[ACCOUNTNAME]]]</b><br> Passwort: <b notrans=1>[[[PASSWORD]]]</b></p>Freundliche Grüße,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_es.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Invitación de Cuenta</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Invitación de Cuenta</b></table><p>Una cuenta ha sido creada en su servidor <a href=[[[SERVERURL]]] notrans=1>[[[SERVERNAME]]]</a>, ahora puede acceder con:<p> Usuario: <b notrans=1>[[[ACCOUNTNAME]]]</b><br> Contraseña: <b notrans=1>[[[PASSWORD]]]</b></p>Atentamente,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_fi.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Tili kutsu</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Tili kutsu</b></table><p>Sinulle on luotu tili palvelimelle <a href=[[[SERVERURL]]] notrans=1>[[[SERVERNAME]]]</a>, voit käyttää sitä nyt:<p> Käyttäjätunnus: <b notrans=1>[[[ACCOUNTNAME]]]</b><br> Salasana: <b notrans=1>[[[PASSWORD]]]</b></p>Ystävällisin terveisin,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_fr.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Invitation au compte</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Invitation au compte</b></table><p>Un compte a été créé pour vous sur le serveur <a href=[[[SERVERURL]]] notrans=1>[[[SERVERNAME]]]</a>, vous pouvez y accéder maintenant avec:<p> Nom d'utilisateur: <b notrans=1>[[[ACCOUNTNAME]]]</b><br> Mot de passe: <b notrans=1>[[[PASSWORD]]]</b></p>Meilleures salutations,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_hi.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - खाता निमंत्रण</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - खाता निमंत्रण</b></table><p>सर्वर पर आपके लिए एक खाता बनाया गया था <a href=[[[SERVERURL]]] notrans=1>[[[SERVERNAME]]]</a>, आप इसे अभी एक्सेस कर सकते हैं:<p> उपयोगकर्ता नाम: <b notrans=1>[[[ACCOUNTNAME]]]</b><br> कुंजिका: <b notrans=1>[[[PASSWORD]]]</b></p>सादर,<br>[[[उपयोगकर्ता नाम]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_ja.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-アカウントの招待</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-アカウントの招待</b></table><p>サーバー上にアカウントが作成されました <a href=[[[SERVERURL]]] notrans=1>[[[SERVERNAME]]]</a>、あなたは今それを使ってそれにアクセスできます:<p> ユーザー名: <b notrans=1>[[[ACCOUNTNAME]]]</b><br> パスワード: <b notrans=1>[[[PASSWORD]]]</b></p>宜しくお願いします、<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_ko.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - 계정 초대</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - 계정 초대</b></table><p>당신을 위해 서버에서 한 계정이 생성되었습니다. <a href=[[[SERVERURL]]] notrans=1>[[[SERVERNAME]]]</a>이제 당신은 다음으로 접근 가능합니다:<p> 사용자 이름: <b notrans=1>[[[ACCOUNTNAME]]]</b><br> 암호: <b notrans=1>[[[PASSWORD]]]</b></p>최고의 안부를 전합니다,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_nl.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Account uitnodiging</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Account uitnodiging</b></table><p>Er is een account voor je aangemaakt op de server <a href=[[[SERVERURL]]] notrans=1>[[[SERVERNAME]]]</a>, je hebt er nu toegang toe met:<p> Gebruikersnaam: <b notrans=1>[[[ACCOUNTNAME]]]</b><br> Wachtwoord: <b notrans=1>[[[PASSWORD]]]</b></p>Vriendelijke groeten,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_pt.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Account Invitation</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Account Invitation</b></table><p>An account was created for you on server <a href=[[[SERVERURL]]] notrans=1>[[[SERVERNAME]]]</a>, you can access it now with:<p> Nome de usuário: <b notrans=1>[[[ACCOUNTNAME]]]</b><br> Senha: <b notrans=1>[[[PASSWORD]]]</b></p>Best regards,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_ru.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - приглашение в аккаунт</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - приглашение в аккаунт</b></table><p>Учетная запись была создана для вас на сервере <a href=[[[SERVERURL]]] notrans=1>[[[SERVERNAME]]]</a>Вы можете получить к нему доступ сейчас:<p> Имя пользователя: <b notrans=1>[[[ACCOUNTNAME]]]</b><br> Пароль: <b notrans=1>[[[PASSWORD]]]</b></p>С уважением,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_zh-chs.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-帐户邀请</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-帐户邀请</b></table><p>在服务器上为您创建了一个帐户 <a href=[[[SERVERURL]]] notrans=1>[[[SERVERNAME]]]</a>,您现在可以通过以下方式访问它:<p> 用戶名: <b notrans=1>[[[ACCOUNTNAME]]]</b><br> 密碼: <b notrans=1>[[[PASSWORD]]]</b></p>最好的祝福,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_zh-cht.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-帳戶邀請</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-帳戶邀請</b></table><p>在服務器上為您創建了一個帳戶 <a href=[[[SERVERURL]]] notrans=1>[[[SERVERNAME]]]</a>,您現在可以通過以下方式訪問它:<p> 用戶名: <b notrans=1>[[[ACCOUNTNAME]]]</b><br> 密碼: <b notrans=1>[[[PASSWORD]]]</b></p>最好的祝福,<br>[[[用戶名]]]<br></div>
\ No newline at end of file
emails/translations/account-login-min_cs.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Přihlášení k účtu</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Přihlášení k účtu</b></table><p>Váš přihlašovací token je: [[[TOKEN]]]<p>Tento token lze použít pouze jednou a je platný po dobu 5 minut.</div>
\ No newline at end of file
emails/translations/account-login-min_de.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Konto-Login</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Konto-Login</b></table><p>Ihr Login-Token lautet: [[[TOKEN]]]<p>Dieser Token kann nur einmal verwendet werden und ist 5 Minuten gültig.</div>
\ No newline at end of file
emails/translations/account-login-min_es.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Nombre de Usuario</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Nombre de Usuario</b></table><p>Su token de inicio de sesión es: [[[TOKEN]]]<p>Este token solo se puede usar una vez y es válido durante 5 minutos.</div>
\ No newline at end of file
emails/translations/account-login-min_fi.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Tilille Kirjautuminen</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Tilille Kirjautuminen</b></table><p>Your login token is: [[[TOKEN]]]<p>This token can only be used once and is valid for 5 minutes.</div>
\ No newline at end of file
emails/translations/account-login-min_fr.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Connexion au compte</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Connexion au compte</b></table><p>Votre jeton de connexion est: [[[TOKEN]]]<p>Ce jeton ne peut être utilisé qu'une seule fois et est valide pendant 5 minutes.</div>
\ No newline at end of file
emails/translations/account-login-min_hi.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - खाता लॉगिन</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - खाता लॉगिन</b></table><p>आपका लॉगिन टोकन है: [[[टोकन]]]<p>यह टोकन केवल एक बार उपयोग किया जा सकता है और 5 मिनट के लिए वैध है।</div>
\ No newline at end of file
emails/translations/account-login-min_ja.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-アカウントログイン</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-アカウントログイン</b></table><p>ログイントークンは次のとおりです:[[[TOKEN]]]<p>このトークンは1回だけ使用でき、5分間有効です。</div>
\ No newline at end of file
emails/translations/account-login-min_ko.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - 계정 로그인</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - 계정 로그인</b></table><p>당신이 로그인한 토큰은 다음과 같습니다 : [[[TOKEN]]]<p>이 토큰은 오직 한 번만 사용될 수 있으며, 5분 동안만 유효합니다.</div>
\ No newline at end of file
emails/translations/account-login-min_nl.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Inloggen account</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Inloggen account</b></table><p>Uw login token is: [[[TOKEN]]]<p>Dit token kan maar één keer worden gebruikt en is 5 minuten geldig.</div>
\ No newline at end of file
emails/translations/account-login-min_pt.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Account Login</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Account Login</b></table><p>Your login token is: [[[TOKEN]]]<p>This token can only be used once and is valid for 5 minutes.</div>
\ No newline at end of file
emails/translations/account-login-min_ru.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Вход в аккаунт</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Вход в аккаунт</b></table><p>Ваш токен для входа: [[[TOKEN]]]<p>Этот токен может быть использован только один раз и действителен в течение 5 минут.</div>
\ No newline at end of file
emails/translations/account-login-min_zh-chs.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-帐户登录</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-帐户登录</b></table><p>您的登录令牌为:[[[TOKEN]]]<p>该令牌只能使用一次,有效期为5分钟。</div>
\ No newline at end of file
emails/translations/account-login-min_zh-cht.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-帳戶登錄</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-帳戶登錄</b></table><p>您的登錄令牌為:[[[TOKEN]]]<p>該令牌只能使用一次,有效期為5分鐘。</div>
\ No newline at end of file
emails/translations/account-reset-min_cs.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Reset účtu</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Ověření</b></table><p>Ahoj [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> požaduje obnovení hesla k účtu, dokončete proces kliknutím na následující odkaz.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Kliknutím sem obnovíte heslo svého účtu.</a></p>Pokud jste tento požadavek nezačali, ignorujte tento e-mail.</div>
\ No newline at end of file
emails/translations/account-reset-min_de.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Zurücksetzen des Kontos</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Überprüfung</b></table><p>Hallo [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> Wenn Sie ein Zurücksetzen des Kontokennworts anfordern, klicken Sie auf den folgenden Link, um den Vorgang abzuschließen.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Klicken Sie hier, um Ihr Kontopasswort zurückzusetzen.</a></p>Wenn Sie diese Anfrage nicht initiiert haben, ignorieren Sie diese Mail bitte.</div>
\ No newline at end of file
emails/translations/account-reset-min_es.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Resetear Cuenta</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Invitación</b></table><p>Hola [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> solicita restablecer la contraseña de la cuenta, haga clic en el siguiente enlace para completar el proceso.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Haga click aquí para resetear la contraseña de su cuenta.</a></p>Si Ud. no inicio este proceso, por favor ignore este email</div>
\ No newline at end of file
emails/translations/account-reset-min_fi.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Tili nollattu</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Todentaminen</b></table><p>Moi [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> pyytää tilin salasanan palauttamista, suorita prosessi napsauttamalla seuraavaa linkkiä.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Palauta tilisi salasana napsauttamalla tätä.</a></p>Jos et suorittanut tätä pyyntöä, voit ohitaa tämän sähköpostin.</div>
\ No newline at end of file
emails/translations/account-reset-min_fr.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Réinitialisation du compte</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Vérification</b></table><p>Bonjour [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> demande une réinitialisation du mot de passe du compte, cliquez sur le lien suivant pour terminer le processus.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Cliquez ici pour réinitialiser le mot de passe de votre compte.</a></p>Si vous n'avez pas initié cette demande, veuillez ignorer ce courrier.</div>
\ No newline at end of file
emails/translations/account-reset-min_hi.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - खाता रीसेट</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]] - सत्यापन</b></table><p>हाय [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[सर्वर का नाम]]]</a> खाता पासवर्ड रीसेट का अनुरोध कर रहा है, प्रक्रिया पूरी करने के लिए निम्न लिंक पर क्लिक करें।<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">अपना खाता पासवर्ड रीसेट करने के लिए यहां क्लिक करें।</a></p>यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें।</div>
\ No newline at end of file
emails/translations/account-reset-min_ja.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-アカウントのリセット</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-確認</b></table><p>[[[USERNAME]]]様 <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> がアカウントパスワードのリセットを要求している場合は、次のリンクをクリックしてプロセスを完了します。<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">ここをクリックしてアカウントのパスワードをリセットしてください。</a></p>このリクエストを開始していない場合は、このメールを無視してください。</div>
\ No newline at end of file
emails/translations/account-reset-min_ko.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - 계정 재설정</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - 인증</b></table><p>안녕하세요, [[[USERNAME]]]님. <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> 계정 비밀번호 재설정을 요청하는 경우, 다음 링크를 클릭하여 과정을 완료하십시오.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">당신의 계정 암호를 초기화하려면 여기를 클릭하십시오.</a></p>이 요청을 시작하지 않은 경우, 이 메일을 무시하십시오.</div>
\ No newline at end of file
emails/translations/account-reset-min_nl.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Account Reset</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Verificatie</b></table><p>Hallo [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> vraagt om het opnieuw instellen van het wachtwoord van een account, klik op de volgende link om het proces te voltooien.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Klik hier om je wachtwoord opnieuw in te stellen.</a></p>Als u dit verzoek niet heeft ingediend, dan kunt u deze e-mail negeren.</div>
\ No newline at end of file
emails/translations/account-reset-min_pt.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Account Reset</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Verification</b></table><p>Hi [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> is requesting an account password reset, click on the following link to complete the process.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Click here to reset your account password.</a></p>If you did not initiate this request, please ignore this mail.</div>
\ No newline at end of file
emails/translations/account-reset-min_ru.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Сброс учетной записи</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Подтверждение</b></table><p>Привет [[[USERNAME]]], <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> запрашивает сброс пароля учетной записи, нажмите на следующую ссылку, чтобы завершить процесс.<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Нажмите здесь, чтобы сбросить пароль учетной записи.</a></p>Если вы не инициировали этот запрос, игнорируйте это письмо.</div>
\ No newline at end of file
emails/translations/account-reset-min_zh-chs.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-帐户重置</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-验证</b></table><p>[[[USERNAME]],你好, <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> 正在要求重置帐户密码,请单击以下链接以完成该过程。<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">单击此处重置您的帐户密码。</a></p>如果您没有发起此请求,请忽略此邮件。</div>
\ No newline at end of file
emails/translations/account-reset-min_zh-cht.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-帳戶重置</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-驗證</b></table><p>[[[USERNAME]],你好, <a href=[[[SERVERURL]]]>[[[服務器名稱]]]</a> 正在要求重置帳戶密碼,請單擊以下鏈接以完成該過程。<p style=margin-left:30px><a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">單擊此處重置您的帳戶密碼。</a></p>如果您沒有發起此請求,請忽略此郵件。</div>
\ No newline at end of file
emails/translations/mesh-invite-min_cs.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Pozvánka</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Instalace agenta</b></table><area-name><p>Dobrý den, [[[NAME]]],</p></area-name><p>Uživatel [[[USERNAME]]] na serveru <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> vás žádá o instalaci softwaru pro spuštění relace dálkového ovládání.</p><area-msg><p>Zpráva: <b notrans=1>[[[MSG]]]</b></p></area-msg><area-windows><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Kliknutím sem stáhnete MeshAgent pro Windows.</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Kliknutím sem stáhnete MeshAgent pro Apple OSX.</a></p></area-osx><area-linux><p>V případě systému Linux vyjměte a vložte do terminálu a nainstalujte agenta:<br><pre style=margin-left:30px notrans=1>wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre><p></p></area-linux><area-link><p>Chcete-li nainstalovat software, <a href=[[[SERVERURL]]][[[LINKURL]]]>klikněte zde</a> a postupujte podle pokynů.</p></area-link><p>Pokud jste tento požadavek nezačali, ignorujte tento e-mail.</p>S pozdravem,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/mesh-invite-min_de.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Einladung</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Agenteninstallation</b></table><area-name><p>Hallo [[[NAME]]],</p></area-name><p>Benutzer [[[USERNAME]]] auf dem Server <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> fordert Sie auf, Software zu installieren, um eine Fernsteuerungssitzung zu starten.</p><area-msg><p>Botschaft: <b notrans=1>[[[MSG]]]</b></p></area-msg><area-windows><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Klicken Sie hier, um den MeshAgent für Windows herunterzuladen.</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Klicken Sie hier, um den MeshAgent für Apple OSX herunterzuladen.</a></p></area-osx><area-linux><p>Schneiden Sie unter Linux Folgendes aus und fügen Sie es in ein Terminal ein, um den Agenten zu installieren:<br><pre style=margin-left:30px notrans=1>wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre><p></p></area-linux><area-link><p>Um die Software zu installieren, <a href=[[[SERVERURL]]][[[LINKURL]]]>hier klicken</a> und folgen Sie den Anweisungen.</p></area-link><p>Wenn Sie diese Anfrage nicht initiiert haben, ignorieren Sie diese Mail bitte.</p>Freundliche Grüße,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/mesh-invite-min_es.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Invitación</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Instalación de Agente</b></table><area-name><p>Hola [[[NAME]]],</p></area-name><p>Usuario [[[USERNAME]]] en servidor <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> le solicita que instale software para iniciar una sesión de control remoto.</p><area-msg><p>Mensaje: <b notrans=1>[[[MSG]]]</b></p></area-msg><area-windows><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Haga click aquí para descargar el agente de MeshCentral para Windows.</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Haga click aquí para descargar el Agente de MeshCentral para Apple OSX.</a></p></area-osx><area-linux><p>Para Linux, copie y pegue lo siguiente en la terminal para instalar el agente:<br><pre style=margin-left:30px notrans=1>wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre><p></p></area-linux><area-link><p>Para instalar este software, <a href=[[[SERVERURL]]][[[LINKURL]]]>haga click aquí</a> y siga las instrucciones</p></area-link><p>Si Ud. no inicio este proceso, por favor ignore este email</p>Atentamente,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/mesh-invite-min_fi.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Kutsu</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Agentin asennus</b></table><area-name><p>Hei [[[NAME]]],</p></area-name><p>Käyttäjä [[[USERNAME]]] palvelimella <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> pyytää sinua asentamaan ohjelmiston etäohjausistunnon aloittamiseksi.</p><area-msg><p>Viesti: <b notrans=1>[[[MSG]]]</b></p></area-msg><area-windows><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Napsauta tätä ladataksesi MeshAgent Windows:lle.</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Napsauta tätä ladataksesi MeshAgent Apple OSX:lle.</a></p></area-osx><area-linux><p>For Linux, cut & paste the following in a terminal to install the agent:<br><pre style=margin-left:30px notrans=1>wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre><p></p></area-linux><area-link><p>Asentaaksesi ohjelman, <a href=[[[SERVERURL]]][[[LINKURL]]]>klikkaa tästä</a> ja seuraa ohjeita.</p></area-link><p>Jos et suorittanut tätä pyyntöä, voit ohitaa tämän sähköpostin.</p>Ystävällisin terveisin,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/mesh-invite-min_fr.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Invitation</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Installation de l'agent</b></table><area-name><p>Bonjour [[[NAME]]],</p></area-name><p>Utilisateur [[[USERNAME]]] sur le serveur <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> vous demande d'installer un logiciel pour démarrer une session de contrôle à distance.</p><area-msg><p>Message: <b notrans=1>[[[MSG]]]</b></p></area-msg><area-windows><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Cliquez ici pour télécharger le MeshAgent pour Windows.</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Cliquez ici pour télécharger le MeshAgent pour Apple OSX.</a></p></area-osx><area-linux><p>Pour Linux, copiez et collez les éléments suivants dans un terminal pour installer l'agent:<br><pre style=margin-left:30px notrans=1>wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre><p></p></area-linux><area-link><p>Pour installer le logiciel, <a href=[[[SERVERURL]]][[[LINKURL]]]>cliquez ici</a> et suivez les instructions.</p></area-link><p>Si vous n'avez pas initié cette demande, veuillez ignorer ce courrier.</p>Meilleures salutations,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/mesh-invite-min_hi.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - निमंत्रण</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - एजेंट स्थापना</b></table><area-name><p>नमस्कार [[[NAME]]],</p></area-name><p>उपयोगकर्ता [[[USERNAME]]] सर्वर पर <a href=[[[SERVERURL]]]>[[[सर्वर का नाम]]]</a> रिमोट कंट्रोल सेशन शुरू करने के लिए आपको सॉफ्टवेयर इंस्टॉल करने का अनुरोध कर रहा है।</p><area-msg><p>संदेश: <b notrans=1>[[[MSG]]]</b></p></area-msg><area-windows><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">विंडोज के लिए मेशजेंट को डाउनलोड करने के लिए यहां क्लिक करें।</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Apple OSX के लिए मेशजेंट को डाउनलोड करने के लिए यहां क्लिक करें।</a></p></area-osx><area-linux><p>लिनक्स में, एजेंट को स्थापित करने के लिए टर्मिनल में निम्नलिखित को काटें और चिपकाएँ:<br><pre style=margin-left:30px notrans=1>wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre><p></p></area-linux><area-link><p>सॉफ़्टवेयर स्थापित करने के लिए, <a href=[[[SERVERURL]]][[[LINKURL]]]>यहाँ क्लिक करें</a> और निर्देशों का पालन करें।</p></area-link><p>यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें।</p>सादर,<br>[[[उपयोगकर्ता नाम]]]<br></div>
\ No newline at end of file
emails/translations/mesh-invite-min_ja.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-招待</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-エージェントのインストール</b></table><area-name><p>[[[NAME]]]様</p></area-name><p>サーバー上のユーザー[[[USERNAME]]] <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> リモートコントロールセッションを開始するソフトウェアをインストールするように要求しています。</p><area-msg><p>メッセージ: <b notrans=1>[[[MSG]]]</b></p></area-msg><area-windows><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Windows用のMeshAgentをダウンロードするには、ここをクリックしてください。</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">ここをクリックして、Apple OSX用のMeshAgentをダウンロードしてください。</a></p></area-osx><area-linux><p>Linuxの場合は、ターミナルで以下をカットアンドペーストしてエージェントをインストールします。<br><pre style=margin-left:30px notrans=1>wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre><p></p></area-linux><area-link><p>ソフトウェアをインストールするには、 <a href=[[[SERVERURL]]][[[LINKURL]]]>ここをクリック</a> 指示に従ってください。</p></area-link><p>このリクエストを開始していない場合は、このメールを無視してください。</p>宜しくお願いします、<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/mesh-invite-min_ko.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - 초대</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - 에이전트 설치</b></table><area-name><p>안녕하세요, [[[NAME]]]님.</p></area-name><p>서버의 [[[USERNAME]]] 사용자 <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> 원격 제어 세션을 시작하기 위해 소프트웨어 설치를 요청하고 있습니다.</p><area-msg><p>메시지: <b notrans=1>[[[MSG]]]</b></p></area-msg><area-windows><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Windows를 위한 MeshAgent를 다운로드 하려면 여기를 클릭하십시오.</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Apple OSX를 위한 MeshAgent를 다운로드 하려면 여기를 클릭하십시오.</a></p></area-osx><area-linux><p>Linux의 경우, 다음을 잘라내어 터미널에 붙여 넣어 에이전트를 설치하십시오.<br><pre style=margin-left:30px notrans=1>wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre><p></p></area-linux><area-link><p>소프트웨어를 설치하려면, <a href=[[[SERVERURL]]][[[LINKURL]]]>여기를 클릭하십시오.</a> 그리고 다음 지시들을 따르십시오.</p></area-link><p>이 요청을 시작하지 않은 경우, 이 메일을 무시하십시오.</p>최고의 안부를 전합니다,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/mesh-invite-min_nl.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Uitnodiging</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Agent installatie</b></table><area-name><p>Hallo [[[NAME]]],</p></area-name><p>Gebruiker [[[USERNAME]]] op server <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> vraagt u om de software te installeren om een ondersteunings sessie te starten.</p><area-msg><p>Bericht: <b notrans=1>[[[MSG]]]</b></p></area-msg><area-windows><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Klik hier om de MeshAgent te downloaden voor Windows.</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Klik hier om de MeshAgent te downloaden voor Apple OSX.</a></p></area-osx><area-linux><p>Voor Linux, knip het volgende en plak dit in een terminal om de agent te installeren:<br><pre style=margin-left:30px notrans=1>wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre><p></p></area-linux><area-link><p>Om de software te installeren, <a href=[[[SERVERURL]]][[[LINKURL]]]>Klik hier</a> en volg de instructies.</p></area-link><p>Als u dit verzoek niet heeft ingediend, dan kunt u deze e-mail negeren.</p>Vriendelijke groeten,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/mesh-invite-min_pt.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Invitation</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Agent Installation</b></table><area-name><p>Hello [[[NAME]]],</p></area-name><p>User [[[USERNAME]]] on server <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> is requesting you to install software to start a remote control session.</p><area-msg><p>Message: <b notrans=1>[[[MSG]]]</b></p></area-msg><area-windows><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Click here to download the MeshAgent for Windows.</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Click here to download the MeshAgent for Apple OSX.</a></p></area-osx><area-linux><p>For Linux, cut & paste the following in a terminal to install the agent:<br><pre style=margin-left:30px notrans=1>wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre><p></p></area-linux><area-link><p>To install the software, <a href=[[[SERVERURL]]][[[LINKURL]]]>click here</a> and follow the instructions.</p></area-link><p>If you did not initiate this request, please ignore this mail.</p>Best regards,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/mesh-invite-min_ru.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]] - Приглашение</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]] - Установка агента</b></table><area-name><p>Здравствуйте, [[[NAME]]],</p></area-name><p>Пользователь [[[USERNAME]]] на сервере <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> просит вас установить программное обеспечение, чтобы начать сеанс удаленного управления.</p><area-msg><p>Сообщение: <b notrans=1>[[[MSG]]]</b></p></area-msg><area-windows><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Нажмите здесь, чтобы загрузить MeshAgent для Windows.</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Нажмите здесь, чтобы загрузить MeshAgent для Apple OSX.</a></p></area-osx><area-linux><p>Для Linux вырезайте и вставляйте в терминал следующее, чтобы установить агент:<br><pre style=margin-left:30px notrans=1>wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre><p></p></area-linux><area-link><p>Чтобы установить программное обеспечение, <a href=[[[SERVERURL]]][[[LINKURL]]]>кликните сюда</a> и следуйте инструкциям.</p></area-link><p>Если вы не инициировали этот запрос, игнорируйте это письмо.</p>С уважением,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/mesh-invite-min_zh-chs.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-邀请</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-代理程序安装</b></table><area-name><p>您好[[[NAME]]],</p></area-name><p>伺服器上的使用者[[[USERNAME]]] <a href=[[[SERVERURL]]]>[[[SERVERNAME]]]</a> 正在要求您安装软件以启动远程控制会话。</p><area-msg><p>信息: <b notrans=1>[[[MSG]]]</b></p></area-msg><area-windows><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">单击此处下载适用于Windows的MeshAgent。</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">单击此处下载适用于Apple OSX的MeshAgent。</a></p></area-osx><area-linux><p>对于Linux,将以下内容剪切并粘贴到终端中以安装代理程序:<br><pre style=margin-left:30px notrans=1>wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre><p></p></area-linux><area-link><p>要安装软件, <a href=[[[SERVERURL]]][[[LINKURL]]]>点击这里</a> 并按照说明进行操作。</p></area-link><p>如果您没有发起此请求,请忽略此邮件。</p>最好的祝福,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/mesh-invite-min_zh-cht.html
deleted
-1
@@ -1 +0,0 @@
1
-<div>[[[SERVERNAME]]]-邀請</div><div style=font-family:Arial,Helvetica,sans-serif><table style=background-color:#036;color:#d3d3d3;width:100% cellpadding=8><tr><td><b style=font-size:20px;font-family:Arial,Helvetica,sans-serif>[[[SERVERNAME]]]-代理程序安裝</b></table><area-name><p>您好[[[NAME]]],</p></area-name><p>伺服器上的使用者[[[USERNAME]]] <a href=[[[SERVERURL]]]>[[[服務器名稱]]]</a> 正在要求您安裝軟件以啟動遠程控制會話。</p><area-msg><p>信息: <b notrans=1>[[[MSG]]]</b></p></area-msg><area-windows><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">單擊此處下載適用於Windows的MeshAgent。</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">單擊此處下載適用於Apple OSX的MeshAgent。</a></p></area-osx><area-linux><p>對於Linux,將以下內容剪切並粘貼到終端中以安裝代理程序:<br><pre style=margin-left:30px notrans=1>wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre><p></p></area-linux><area-link><p>要安裝軟件, <a href=[[[SERVERURL]]][[[LINKURL]]]>點擊這裡</a> 並按照說明進行操作。</p></area-link><p>如果您沒有發起此請求,請忽略此郵件。</p>最好的祝福,<br>[[[用戶名]]]<br></div>
\ No newline at end of file
meshcentral.js
+8
-1
@@ -1462,6 +1462,10 @@ function CreateMeshCentralServer(config, args) {
1462
}, config.settings.watchdog.interval);
1463
obj.debug('main', "Started watchdog timer.");
1464
}
1465
+
1466
+ // Test
1467
+ obj.db.performCloudBackup("C:\\Users\\Default.DESKTOP-9CGK2DI\\Desktop\\AmtWebApp\\meshcentral-backups\\meshcentral-autobackup-2020-08-20-20-11.zip");
1468
+
1469
});
1470
});
1471
};
@@ -2705,7 +2709,10 @@ function mainStart() {
2709
if (nodeVersion < 8) { modules.push('util.promisify'); }
2710
2711
// Setup encrypted zip support if needed
2708
- if (config.settings.autobackup && config.settings.autobackup.zippassword) { modules.push('archiver-zip-encrypted'); }
2712
+ if (config.settings.autobackup && config.settings.autobackup.zippassword) {
2713
+ modules.push('archiver-zip-encrypted');
2714
+ if (config.settings.autobackup.googledrive == true) { if (nodeVersion >= 8) { modules.push('googleapis'); } else { config.settings.autobackup.googledrive = false; } } // Enable Google Drive Support
2715
+ }
2716
2717
// Setup common password blocking
2718
if (wildleek == true) { modules.push('wildleek@2.0.0'); }
meshuser.js
+35
@@ -445,6 +445,15 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
445
});
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)) {
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) { } }
453
+ else { try { ws.send(JSON.stringify({ action: 'serverBackup', service: 'googleDrive', state: docs[0].state })); } catch (ex) { } }
454
+ });
455
+ }
456
+
457
// We are all set, start receiving data
458
ws._socket.resume();
459
if (parent.parent.pluginHandler != null) parent.parent.pluginHandler.callHook('hook_userLoggedIn', user);
@@ -4661,6 +4670,32 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4670
parent.parent.DispatchEvent(['*', user._id], obj, message);
4671
break;
4672
}
4673
+ case 'serverBackup': {
4674
+ if (user.siteadmin != SITERIGHT_ADMIN) 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) { } });
4678
+ } else if (command.state == 1) {
4679
+ const {google} = require('googleapis');
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'] });
4685
+ try { ws.send(JSON.stringify({ action: 'serverBackup', service: 'googleDrive', state: 2, url: authUrl })); } catch (ex) { }
4686
+ } else if ((command.state == 2) && (obj.oAuth2Client != null)) {
4687
+ 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
+ }
4694
+ });
4695
+ }
4696
+ }
4697
+ break;
4698
+ }
4699
default: {
4700
// Unknown user action
4701
console.log('Unknown action from user ' + user.name + ': ' + command.action + '.');
package.json
+3
@@ -44,7 +44,10 @@
44
"express": "^4.17.0",
45
"express-handlebars": "^3.1.0",
46
"express-ws": "^4.0.0",
47
+ "html-minifier": "^4.0.0",
48
"ipcheck": "^0.1.0",
49
+ "jsdom": "^16.4.0",
50
+ "minify-js": "0.0.4",
51
"minimist": "^1.2.0",
52
"multiparty": "^4.2.1",
53
"nedb": "^1.8.0",
translate/translate.json
+1829
-1767
@@ -16,8 +16,8 @@
16
"zh-chs": " + CIRA",
17
"zh-cht": " + CIRA",
18
"xloc": [
19
- "default.handlebars->27->1305",
20
- "default.handlebars->27->1307"
19
+ "default.handlebars->27->1316",
20
+ "default.handlebars->27->1318"
21
]
22
},
23
{
@@ -194,7 +194,7 @@
194
"zh-chs": " 可以使用密碼提示,但不建議使用。",
195
"zh-cht": " 可以使用密碼提示,但不建議使用。",
196
"xloc": [
197
- "default.handlebars->27->1228"
197
+ "default.handlebars->27->1232"
198
]
199
},
200
{
@@ -213,8 +213,8 @@
213
"zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
214
"zh-cht": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
215
"xloc": [
216
- "default.handlebars->27->1380",
217
- "default.handlebars->27->1725"
216
+ "default.handlebars->27->1391",
217
+ "default.handlebars->27->1736"
218
]
219
},
220
{
@@ -233,7 +233,7 @@
233
"zh-chs": " 並使用該用戶名和任何密碼對服務器進行身份驗證。",
234
"zh-cht": " 並使用此用戶名和任何密碼對服務器進行身份驗證。",
235
"xloc": [
236
- "default.handlebars->27->311"
236
+ "default.handlebars->27->315"
237
]
238
},
239
{
@@ -252,7 +252,7 @@
252
"zh-chs": " 並使用該用戶名和密碼向服務器驗證身份。",
253
"zh-cht": " 並使用此用戶名和密碼向服務器驗證身份。",
254
"xloc": [
255
- "default.handlebars->27->310"
255
+ "default.handlebars->27->314"
256
]
257
},
258
{
@@ -383,7 +383,7 @@
383
"zh-chs": "(可選的)",
384
"zh-cht": "(可選的)",
385
"xloc": [
386
- "default.handlebars->27->350"
386
+ "default.handlebars->27->354"
387
]
388
},
389
{
@@ -419,7 +419,7 @@
419
"zh-chs": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
420
"zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
421
"xloc": [
422
- "default.handlebars->27->389"
422
+ "default.handlebars->27->393"
423
]
424
},
425
{
@@ -438,7 +438,7 @@
438
"zh-chs": "*保留空白以為每個設備分配一個隨機密碼。",
439
"zh-cht": "*保留空白以為每個設備分配一個隨機密碼。",
440
"xloc": [
441
- "default.handlebars->27->1352"
441
+ "default.handlebars->27->1363"
442
]
443
},
444
{
@@ -475,7 +475,7 @@
475
"zh-cht": ",",
476
"xloc": [
477
"default-mobile.handlebars->9->449",
478
- "default.handlebars->27->1447"
478
+ "default.handlebars->27->1458"
479
]
480
},
481
{
@@ -495,7 +495,7 @@
495
"zh-cht": ",僅限Intel®AMT",
496
"xloc": [
497
"default-mobile.handlebars->9->147",
498
- "default.handlebars->27->199"
498
+ "default.handlebars->27->203"
499
]
500
},
501
{
@@ -514,7 +514,7 @@
514
"zh-chs": ",MQTT在線",
515
"zh-cht": ",MQTT在線",
516
"xloc": [
517
- "default.handlebars->27->970"
517
+ "default.handlebars->27->974"
518
]
519
},
520
{
@@ -532,7 +532,7 @@
532
"zh-chs": ",軟KVM",
533
"zh-cht": ",軟KVM",
534
"xloc": [
535
- "default.handlebars->27->796",
535
+ "default.handlebars->27->800",
536
"desktop.handlebars->3->13"
537
]
538
},
@@ -554,9 +554,9 @@
554
"xloc": [
555
"default-mobile.handlebars->9->284",
556
"default-mobile.handlebars->9->293",
557
- "default.handlebars->27->803",
558
- "default.handlebars->27->836",
559
- "default.handlebars->27->848",
557
+ "default.handlebars->27->807",
558
+ "default.handlebars->27->840",
559
+ "default.handlebars->27->852",
560
"desktop.handlebars->3->20",
561
"xterm.handlebars->9->6"
562
]
@@ -656,7 +656,7 @@
656
"zh-chs": ",{0}观看",
657
"zh-cht": ",{0}觀看",
658
"xloc": [
659
- "default.handlebars->27->797",
659
+ "default.handlebars->27->801",
660
"desktop.handlebars->3->14"
661
]
662
},
@@ -718,9 +718,9 @@
718
"xloc": [
719
"default-mobile.handlebars->9->108",
720
"default-mobile.handlebars->9->295",
721
- "default.handlebars->27->1488",
722
- "default.handlebars->27->1880",
723
- "default.handlebars->27->853"
721
+ "default.handlebars->27->1499",
722
+ "default.handlebars->27->1891",
723
+ "default.handlebars->27->857"
724
]
725
},
726
{
@@ -774,7 +774,7 @@
774
"zh-chs": "1個活動會話",
775
"zh-cht": "1個活動會話",
776
"xloc": [
777
- "default.handlebars->27->1794"
777
+ "default.handlebars->27->1805"
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->1512"
798
+ "default.handlebars->27->1523"
799
]
800
},
801
{
@@ -807,7 +807,7 @@
807
"zh-chs": "1位联络人",
808
"zh-cht": "1位聯絡人",
809
"xloc": [
810
- "default.handlebars->27->799",
810
+ "default.handlebars->27->803",
811
"desktop.handlebars->3->16"
812
]
813
},
@@ -828,8 +828,8 @@
828
"zh-cht": "1天",
829
"xloc": [
830
"default.handlebars->27->178",
831
- "default.handlebars->27->341",
832
- "default.handlebars->27->355"
831
+ "default.handlebars->27->345",
832
+ "default.handlebars->27->359"
833
]
834
},
835
{
@@ -848,7 +848,7 @@
848
"zh-chs": "1組",
849
"zh-cht": "1組",
850
"xloc": [
851
- "default.handlebars->27->1759"
851
+ "default.handlebars->27->1770"
852
]
853
},
854
{
@@ -868,9 +868,9 @@
868
"zh-cht": "1小時",
869
"xloc": [
870
"default.handlebars->27->176",
871
- "default.handlebars->27->339",
872
- "default.handlebars->27->353",
873
- "default.handlebars->27->708"
871
+ "default.handlebars->27->343",
872
+ "default.handlebars->27->357",
873
+ "default.handlebars->27->712"
874
]
875
},
876
{
@@ -886,7 +886,7 @@
886
"zh-chs": "1分钟",
887
"zh-cht": "1分鐘",
888
"xloc": [
889
- "default.handlebars->27->702"
889
+ "default.handlebars->27->706"
890
]
891
},
892
{
@@ -925,8 +925,8 @@
925
"zh-cht": "1個月",
926
"xloc": [
927
"default.handlebars->27->180",
928
- "default.handlebars->27->343",
929
- "default.handlebars->27->357"
928
+ "default.handlebars->27->347",
929
+ "default.handlebars->27->361"
930
]
931
},
932
{
@@ -945,7 +945,7 @@
945
"zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...",
946
"zh-cht": "未顯示另外1個用戶,請使用搜索框查找用戶...",
947
"xloc": [
948
- "default.handlebars->27->1561"
948
+ "default.handlebars->27->1572"
949
]
950
},
951
{
@@ -964,7 +964,7 @@
964
"zh-chs": "1個節點",
965
"zh-cht": "1個節點",
966
"xloc": [
967
- "default.handlebars->27->407"
967
+ "default.handlebars->27->411"
968
]
969
},
970
{
@@ -1008,13 +1008,13 @@
1008
"default-mobile.handlebars->9->168",
1009
"default-mobile.handlebars->9->171",
1010
"default-mobile.handlebars->9->174",
1011
- "default.handlebars->27->1565",
1012
- "default.handlebars->27->239",
1013
- "default.handlebars->27->242",
1014
- "default.handlebars->27->245",
1015
- "default.handlebars->27->248",
1016
- "default.handlebars->27->251",
1017
- "default.handlebars->27->254"
1011
+ "default.handlebars->27->1576",
1012
+ "default.handlebars->27->243",
1013
+ "default.handlebars->27->246",
1014
+ "default.handlebars->27->249",
1015
+ "default.handlebars->27->252",
1016
+ "default.handlebars->27->255",
1017
+ "default.handlebars->27->258"
1018
]
1019
},
1020
{
@@ -1034,8 +1034,8 @@
1034
"zh-cht": "1週",
1035
"xloc": [
1036
"default.handlebars->27->179",
1037
- "default.handlebars->27->342",
1038
- "default.handlebars->27->356"
1037
+ "default.handlebars->27->346",
1038
+ "default.handlebars->27->360"
1039
]
1040
},
1041
{
@@ -1126,7 +1126,7 @@
1126
"zh-chs": "10分钟",
1127
"zh-cht": "10分鐘",
1128
"xloc": [
1129
- "default.handlebars->27->704"
1129
+ "default.handlebars->27->708"
1130
]
1131
},
1132
{
@@ -1217,7 +1217,7 @@
1217
"zh-chs": "15分钟",
1218
"zh-cht": "15分鐘",
1219
"xloc": [
1220
- "default.handlebars->27->705"
1220
+ "default.handlebars->27->709"
1221
]
1222
},
1223
{
@@ -1349,8 +1349,8 @@
1349
"zh-chs": "啟用第二因素身份驗證",
1350
"zh-cht": "啟用第二因素驗證",
1351
"xloc": [
1352
- "default.handlebars->27->1578",
1353
- "default.handlebars->27->1781"
1352
+ "default.handlebars->27->1589",
1353
+ "default.handlebars->27->1792"
1354
]
1355
},
1356
{
@@ -1455,7 +1455,7 @@
1455
"zh-chs": "30分钟",
1456
"zh-cht": "30分鐘",
1457
"xloc": [
1458
- "default.handlebars->27->706"
1458
+ "default.handlebars->27->710"
1459
]
1460
},
1461
{
@@ -1474,8 +1474,8 @@
1474
"zh-chs": "MeshAgent的32位版本",
1475
"zh-cht": "MeshAgent的32位版本",
1476
"xloc": [
1477
- "default.handlebars->27->379",
1478
- "default.handlebars->27->396"
1477
+ "default.handlebars->27->383",
1478
+ "default.handlebars->27->400"
1479
]
1480
},
1481
{
@@ -1566,7 +1566,7 @@
1566
"zh-chs": "45分钟",
1567
"zh-cht": "45分鐘",
1568
"xloc": [
1569
- "default.handlebars->27->707"
1569
+ "default.handlebars->27->711"
1570
]
1571
},
1572
{
@@ -1596,7 +1596,7 @@
1596
"zh-chs": "5分钟",
1597
"zh-cht": "5分鐘",
1598
"xloc": [
1599
- "default.handlebars->27->703"
1599
+ "default.handlebars->27->707"
1600
]
1601
},
1602
{
@@ -1736,7 +1736,7 @@
1736
"zh-chs": "64位版本的macOS Mesh Agent",
1737
"zh-cht": "64位版本的macOS Mesh Agent",
1738
"xloc": [
1739
- "default.handlebars->27->392"
1739
+ "default.handlebars->27->396"
1740
]
1741
},
1742
{
@@ -1755,8 +1755,8 @@
1755
"zh-chs": "MeshAgent的64位版本",
1756
"zh-cht": "MeshAgent的64位版本",
1757
"xloc": [
1758
- "default.handlebars->27->383",
1759
- "default.handlebars->27->399"
1758
+ "default.handlebars->27->387",
1759
+ "default.handlebars->27->403"
1760
]
1761
},
1762
{
@@ -1803,7 +1803,7 @@
1803
"zh-chs": "7天電源狀態",
1804
"zh-cht": "7天電源狀態",
1805
"xloc": [
1806
- "default.handlebars->27->729"
1806
+ "default.handlebars->27->733"
1807
]
1808
},
1809
{
@@ -1863,8 +1863,8 @@
1863
"zh-chs": "8小時",
1864
"zh-cht": "8小時",
1865
"xloc": [
1866
- "default.handlebars->27->340",
1867
- "default.handlebars->27->354"
1866
+ "default.handlebars->27->344",
1867
+ "default.handlebars->27->358"
1868
]
1869
},
1870
{
@@ -2072,7 +2072,7 @@
2072
"zh-cht": "ACM",
2073
"xloc": [
2074
"default-mobile.handlebars->9->231",
2075
- "default.handlebars->27->560"
2075
+ "default.handlebars->27->564"
2076
]
2077
},
2078
{
@@ -2091,8 +2091,8 @@
2091
"zh-chs": "AMT",
2092
"zh-cht": "AMT",
2093
"xloc": [
2094
- "default.handlebars->27->210",
2095
- "default.handlebars->27->435"
2094
+ "default.handlebars->27->214",
2095
+ "default.handlebars->27->439"
2096
]
2097
},
2098
{
@@ -2191,7 +2191,7 @@
2191
"zh-chs": "拒絕訪問",
2192
"zh-cht": "拒絕訪問",
2193
"xloc": [
2194
- "default.handlebars->27->971"
2194
+ "default.handlebars->27->975"
2195
]
2196
},
2197
{
@@ -2230,7 +2230,7 @@
2230
"zh-chs": "訪問服務器文件",
2231
"zh-cht": "訪問服務器文件",
2232
"xloc": [
2233
- "default.handlebars->27->1731"
2233
+ "default.handlebars->27->1742"
2234
]
2235
},
2236
{
@@ -2313,10 +2313,10 @@
2313
"default-mobile.handlebars->9->93",
2314
"default-mobile.handlebars->9->95",
2315
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2316
- "default.handlebars->27->1237",
2317
- "default.handlebars->27->1239",
2318
- "default.handlebars->27->529",
2319
- "default.handlebars->27->531"
2316
+ "default.handlebars->27->1241",
2317
+ "default.handlebars->27->1243",
2318
+ "default.handlebars->27->533",
2319
+ "default.handlebars->27->535"
2320
]
2321
},
2322
{
@@ -2368,8 +2368,8 @@
2368
"zh-chs": "帐户已被锁定",
2369
"zh-cht": "帳戶已被鎖定",
2370
"xloc": [
2371
- "default.handlebars->27->1580",
2372
- "default.handlebars->27->1728"
2371
+ "default.handlebars->27->1591",
2372
+ "default.handlebars->27->1739"
2373
]
2374
},
2375
{
@@ -2467,7 +2467,7 @@
2467
"zh-chs": "行動",
2468
"zh-cht": "行動",
2469
"xloc": [
2470
- "default.handlebars->27->976",
2470
+ "default.handlebars->27->980",
2471
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2472
]
2473
},
@@ -2487,8 +2487,8 @@
2487
"zh-chs": "動作文件",
2488
"zh-cht": "動作文件",
2489
"xloc": [
2490
- "default.handlebars->27->772",
2491
- "default.handlebars->27->774"
2490
+ "default.handlebars->27->776",
2491
+ "default.handlebars->27->778"
2492
]
2493
},
2494
{
@@ -2510,7 +2510,7 @@
2510
"default-mobile.handlebars->9->248",
2511
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
2512
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
2513
- "default.handlebars->27->605",
2513
+ "default.handlebars->27->609",
2514
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
2515
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
2516
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -2573,9 +2573,9 @@
2573
"default-mobile.handlebars->9->226",
2574
"default-mobile.handlebars->9->228",
2575
"default-mobile.handlebars->9->358",
2576
- "default.handlebars->27->553",
2577
- "default.handlebars->27->555",
2578
- "default.handlebars->27->934"
2576
+ "default.handlebars->27->557",
2577
+ "default.handlebars->27->559",
2578
+ "default.handlebars->27->938"
2579
]
2580
},
2581
{
@@ -2594,10 +2594,11 @@
2594
"zh-chs": "激活",
2595
"zh-cht": "激活",
2596
"xloc": [
2597
- "default.handlebars->27->1318",
2598
- "default.handlebars->27->1320",
2599
- "default.handlebars->27->272",
2600
- "default.handlebars->27->274"
2597
+ "default.handlebars->27->1329",
2598
+ "default.handlebars->27->1331",
2599
+ "default.handlebars->27->199",
2600
+ "default.handlebars->27->276",
2601
+ "default.handlebars->27->278"
2602
]
2603
},
2604
{
@@ -2616,7 +2617,7 @@
2617
"zh-chs": "活動用戶{0}",
2618
"zh-cht": "活動用戶{0}",
2619
"xloc": [
2619
- "default.handlebars->27->580"
2620
+ "default.handlebars->27->584"
2621
]
2622
},
2623
{
@@ -2635,8 +2636,8 @@
2636
"zh-chs": "添加代理",
2637
"zh-cht": "添加代理",
2638
"xloc": [
2638
- "default.handlebars->27->1322",
2639
- "default.handlebars->27->276"
2639
+ "default.handlebars->27->1333",
2640
+ "default.handlebars->27->280"
2641
]
2642
},
2643
{
@@ -2655,7 +2656,7 @@
2656
"zh-chs": "添加CIRA",
2657
"zh-cht": "添加CIRA",
2658
"xloc": [
2658
- "default.handlebars->27->266"
2659
+ "default.handlebars->27->270"
2660
]
2661
},
2662
{
@@ -2674,8 +2675,8 @@
2675
"zh-chs": "添加設備",
2676
"zh-cht": "添加設備",
2677
"xloc": [
2677
- "default.handlebars->27->1705",
2678
- "default.handlebars->27->1829"
2678
+ "default.handlebars->27->1716",
2679
+ "default.handlebars->27->1840"
2680
]
2681
},
2682
{
@@ -2694,7 +2695,7 @@
2695
"zh-chs": "添加設備事件",
2696
"zh-cht": "添加設備事件",
2697
"xloc": [
2697
- "default.handlebars->27->691"
2698
+ "default.handlebars->27->695"
2699
]
2700
},
2701
{
@@ -2713,10 +2714,10 @@
2714
"zh-chs": "添加設備組",
2715
"zh-cht": "添加設備組",
2716
"xloc": [
2716
- "default.handlebars->27->1413",
2717
- "default.handlebars->27->1699",
2718
- "default.handlebars->27->1817",
2719
- "default.handlebars->27->227"
2717
+ "default.handlebars->27->1424",
2718
+ "default.handlebars->27->1710",
2719
+ "default.handlebars->27->1828",
2720
+ "default.handlebars->27->231"
2721
]
2722
},
2723
{
@@ -2732,7 +2733,7 @@
2733
"zh-chs": "添加设备组权限",
2734
"zh-cht": "添加設備組權限",
2735
"xloc": [
2735
- "default.handlebars->27->1410"
2736
+ "default.handlebars->27->1421"
2737
]
2738
},
2739
{
@@ -2750,8 +2751,8 @@
2751
"zh-chs": "添加设备权限",
2752
"zh-cht": "添加設備權限",
2753
"xloc": [
2753
- "default.handlebars->27->1415",
2754
- "default.handlebars->27->1417"
2754
+ "default.handlebars->27->1426",
2755
+ "default.handlebars->27->1428"
2756
]
2757
},
2758
{
@@ -2770,7 +2771,7 @@
2771
"zh-chs": "添加英特爾®AMT CIRA設備",
2772
"zh-cht": "添加英特爾®AMT CIRA設備",
2773
"xloc": [
2773
- "default.handlebars->27->324"
2774
+ "default.handlebars->27->328"
2775
]
2776
},
2777
{
@@ -2789,7 +2790,7 @@
2790
"zh-chs": "添加英特爾®AMT設備",
2791
"zh-cht": "添加英特爾®AMT設備",
2792
"xloc": [
2792
- "default.handlebars->27->289"
2793
+ "default.handlebars->27->293"
2794
]
2795
},
2796
{
@@ -2827,7 +2828,7 @@
2828
"zh-chs": "添加本地",
2829
"zh-cht": "添加本地",
2830
"xloc": [
2830
- "default.handlebars->27->268"
2831
+ "default.handlebars->27->272"
2832
]
2833
},
2834
{
@@ -2846,7 +2847,7 @@
2847
"zh-chs": "添加會員",
2848
"zh-cht": "添加會員",
2849
"xloc": [
2849
- "default.handlebars->27->1847"
2850
+ "default.handlebars->27->1858"
2851
]
2852
},
2853
{
@@ -2865,7 +2866,7 @@
2866
"zh-chs": "添加網格代理",
2867
"zh-cht": "添加網格代理",
2868
"xloc": [
2868
- "default.handlebars->27->406"
2869
+ "default.handlebars->27->410"
2870
]
2871
},
2872
{
@@ -2884,8 +2885,8 @@
2885
"zh-chs": "添加安全密鑰",
2886
"zh-cht": "添加安全密鑰",
2887
"xloc": [
2887
- "default.handlebars->27->1004",
2888
- "default.handlebars->27->1005",
2888
+ "default.handlebars->27->1008",
2889
+ "default.handlebars->27->1009",
2890
"default.handlebars->27->149",
2891
"default.handlebars->27->151",
2892
"default.handlebars->27->154",
@@ -2909,7 +2910,7 @@
2910
"zh-cht": "添加用戶",
2911
"xloc": [
2912
"default-mobile.handlebars->9->398",
2912
- "default.handlebars->27->648"
2913
+ "default.handlebars->27->652"
2914
]
2915
},
2916
{
@@ -2927,7 +2928,7 @@
2928
"zh-chs": "添加用户设备权限",
2929
"zh-cht": "添加用戶設備權限",
2930
"xloc": [
2930
- "default.handlebars->27->1420"
2931
+ "default.handlebars->27->1431"
2932
]
2933
},
2934
{
@@ -2946,10 +2947,10 @@
2947
"zh-chs": "添加用戶組",
2948
"zh-cht": "添加用戶組",
2949
"xloc": [
2949
- "default.handlebars->27->1312",
2950
- "default.handlebars->27->1412",
2951
- "default.handlebars->27->1823",
2952
- "default.handlebars->27->649"
2950
+ "default.handlebars->27->1323",
2951
+ "default.handlebars->27->1423",
2952
+ "default.handlebars->27->1834",
2953
+ "default.handlebars->27->653"
2954
]
2955
},
2956
{
@@ -2965,7 +2966,7 @@
2966
"zh-chs": "添加用户组设备权限",
2967
"zh-cht": "添加用戶組設備權限",
2968
"xloc": [
2968
- "default.handlebars->27->1422"
2969
+ "default.handlebars->27->1433"
2970
]
2971
},
2972
{
@@ -3016,8 +3017,8 @@
3017
"zh-chs": "添加用戶",
3018
"zh-cht": "添加用戶",
3019
"xloc": [
3019
- "default.handlebars->27->1311",
3020
- "default.handlebars->27->1694"
3020
+ "default.handlebars->27->1322",
3021
+ "default.handlebars->27->1705"
3022
]
3023
},
3024
{
@@ -3036,7 +3037,7 @@
3037
"zh-chs": "將用戶添加到設備組",
3038
"zh-cht": "將用戶添加到設備組",
3039
"xloc": [
3039
- "default.handlebars->27->1409"
3040
+ "default.handlebars->27->1420"
3041
]
3042
},
3043
{
@@ -3055,7 +3056,7 @@
3056
"zh-chs": "將用戶添加到用戶組",
3057
"zh-cht": "將用戶添加到用戶組",
3058
"xloc": [
3058
- "default.handlebars->27->1727"
3059
+ "default.handlebars->27->1738"
3060
]
3061
},
3062
{
@@ -3093,7 +3094,7 @@
3094
"zh-chs": "通過掃描本地網絡添加新的英特爾®AMT計算機。",
3095
"zh-cht": "通過掃描本地網絡添加新的英特爾®AMT計算機。",
3096
"xloc": [
3096
- "default.handlebars->27->269"
3097
+ "default.handlebars->27->273"
3098
]
3099
},
3100
{
@@ -3112,8 +3113,8 @@
3113
"zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。",
3114
"zh-cht": "添加位於互聯網上的新英特爾®AMT計算機。",
3115
"xloc": [
3115
- "default.handlebars->27->1313",
3116
- "default.handlebars->27->265"
3116
+ "default.handlebars->27->1324",
3117
+ "default.handlebars->27->269"
3118
]
3119
},
3120
{
@@ -3132,8 +3133,8 @@
3133
"zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。",
3134
"zh-cht": "添加位於本地網絡上的新英特爾®AMT計算機。",
3135
"xloc": [
3135
- "default.handlebars->27->1315",
3136
- "default.handlebars->27->267"
3136
+ "default.handlebars->27->1326",
3137
+ "default.handlebars->27->271"
3138
]
3139
},
3140
{
@@ -3152,7 +3153,7 @@
3153
"zh-chs": "將新的英特爾®AMT設備添加到設備組“{0}”。",
3154
"zh-cht": "將新的英特爾®AMT設備添加到設備組“{0}”。",
3155
"xloc": [
3155
- "default.handlebars->27->279"
3156
+ "default.handlebars->27->283"
3157
]
3158
},
3159
{
@@ -3168,8 +3169,8 @@
3169
"zh-chs": "通过安装网状代理,将新计算机添加到该设备组。",
3170
"zh-cht": "通過安裝網狀代理將新計算機添加到該設備組。",
3171
"xloc": [
3171
- "default.handlebars->27->1321",
3172
- "default.handlebars->27->275"
3172
+ "default.handlebars->27->1332",
3173
+ "default.handlebars->27->279"
3174
]
3175
},
3176
{
@@ -3180,7 +3181,7 @@
3181
"zh-chs": "添加标签",
3182
"zh-cht": "添加標籤",
3183
"xloc": [
3183
- "default.handlebars->27->467"
3184
+ "default.handlebars->27->471"
3185
]
3186
},
3187
{
@@ -3199,7 +3200,7 @@
3200
"zh-chs": "地址",
3201
"zh-cht": "地址",
3202
"xloc": [
3202
- "default.handlebars->27->223"
3203
+ "default.handlebars->27->227"
3204
]
3205
},
3206
{
@@ -3238,7 +3239,7 @@
3239
"zh-cht": "管理員控制模式(ACM)",
3240
"xloc": [
3241
"default-mobile.handlebars->9->360",
3241
- "default.handlebars->27->936"
3242
+ "default.handlebars->27->940"
3243
]
3244
},
3245
{
@@ -3258,7 +3259,7 @@
3259
"zh-cht": "管理員憑證",
3260
"xloc": [
3261
"default-mobile.handlebars->9->366",
3261
- "default.handlebars->27->942"
3262
+ "default.handlebars->27->946"
3263
]
3264
},
3265
{
@@ -3297,7 +3298,7 @@
3298
"zh-chs": "管理領域",
3299
"zh-cht": "管理領域",
3300
"xloc": [
3300
- "default.handlebars->27->1763"
3301
+ "default.handlebars->27->1774"
3302
]
3303
},
3304
{
@@ -3336,7 +3337,7 @@
3337
"zh-chs": "行政領域",
3338
"zh-cht": "行政領域",
3339
"xloc": [
3339
- "default.handlebars->27->1643"
3340
+ "default.handlebars->27->1654"
3341
]
3342
},
3343
{
@@ -3355,7 +3356,7 @@
3356
"zh-chs": "管理員",
3357
"zh-cht": "管理員",
3358
"xloc": [
3358
- "default.handlebars->27->1572"
3359
+ "default.handlebars->27->1583"
3360
]
3361
},
3362
{
@@ -3373,7 +3374,7 @@
3374
"zh-chs": "南非語",
3375
"zh-cht": "南非語",
3376
"xloc": [
3376
- "default.handlebars->27->1007"
3377
+ "default.handlebars->27->1011"
3378
]
3379
},
3380
{
@@ -3395,10 +3396,10 @@
3396
"default-mobile.handlebars->9->199",
3397
"default-mobile.handlebars->9->223",
3398
"default-mobile.handlebars->9->239",
3398
- "default.handlebars->27->1474",
3399
- "default.handlebars->27->1482",
3400
- "default.handlebars->27->206",
3401
- "default.handlebars->27->431",
3399
+ "default.handlebars->27->1485",
3400
+ "default.handlebars->27->1493",
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"
3404
]
3405
},
@@ -3418,8 +3419,8 @@
3419
"zh-chs": "代理+英特爾AMT",
3420
"zh-cht": "代理+英特爾AMT",
3421
"xloc": [
3421
- "default.handlebars->27->1476",
3422
- "default.handlebars->27->1484"
3422
+ "default.handlebars->27->1487",
3423
+ "default.handlebars->27->1495"
3424
]
3425
},
3426
{
@@ -3458,7 +3459,7 @@
3459
"zh-cht": "代理控制台",
3460
"xloc": [
3461
"default-mobile.handlebars->9->433",
3461
- "default.handlebars->27->1430"
3462
+ "default.handlebars->27->1441"
3463
]
3464
},
3465
{
@@ -3477,7 +3478,7 @@
3478
"zh-chs": "座席錯誤計數器",
3479
"zh-cht": "座席錯誤計數器",
3480
"xloc": [
3480
- "default.handlebars->27->1890"
3481
+ "default.handlebars->27->1901"
3482
]
3483
},
3484
{
@@ -3507,7 +3508,7 @@
3508
"zh-cht": "代理訊息",
3509
"xloc": [
3510
"default-mobile.handlebars->9->177",
3510
- "default.handlebars->27->257"
3511
+ "default.handlebars->27->261"
3512
]
3513
},
3514
{
@@ -3565,7 +3566,7 @@
3566
"zh-chs": "座席會議",
3567
"zh-cht": "座席會議",
3568
"xloc": [
3568
- "default.handlebars->27->1906"
3569
+ "default.handlebars->27->1917"
3570
]
3571
},
3572
{
@@ -3585,7 +3586,7 @@
3586
"zh-cht": "代理商標籤",
3587
"xloc": [
3588
"default-mobile.handlebars->9->238",
3588
- "default.handlebars->27->573"
3589
+ "default.handlebars->27->577"
3590
]
3591
},
3592
{
@@ -3604,7 +3605,7 @@
3605
"zh-chs": "代理類型",
3606
"zh-cht": "代理類型",
3607
"xloc": [
3607
- "default.handlebars->27->1480",
3608
+ "default.handlebars->27->1491",
3609
"default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
3610
]
3611
},
@@ -3625,8 +3626,8 @@
3626
"zh-cht": "代理已連接",
3627
"xloc": [
3628
"default.handlebars->27->160",
3628
- "default.handlebars->27->639",
3629
- "default.handlebars->27->640"
3629
+ "default.handlebars->27->643",
3630
+ "default.handlebars->27->644"
3631
]
3632
},
3633
{
@@ -3664,7 +3665,7 @@
3665
"zh-chs": "代理離線",
3666
"zh-cht": "代理離線",
3667
"xloc": [
3667
- "default.handlebars->27->969"
3668
+ "default.handlebars->27->973"
3669
]
3670
},
3671
{
@@ -3683,7 +3684,7 @@
3684
"zh-chs": "代理在線",
3685
"zh-cht": "代理在線",
3686
"xloc": [
3686
- "default.handlebars->27->968"
3687
+ "default.handlebars->27->972"
3688
]
3689
},
3690
{
@@ -3702,7 +3703,7 @@
3703
"zh-chs": "代理商",
3704
"zh-cht": "代理商",
3705
"xloc": [
3705
- "default.handlebars->27->1922"
3706
+ "default.handlebars->27->1933"
3707
]
3708
},
3709
{
@@ -3721,7 +3722,7 @@
3722
"zh-chs": "阿爾巴尼亞語",
3723
"zh-cht": "阿爾巴尼亞語",
3724
"xloc": [
3724
- "default.handlebars->27->1008"
3725
+ "default.handlebars->27->1012"
3726
]
3727
},
3728
{
@@ -3754,7 +3755,7 @@
3755
"zh-chs": "全部可用",
3756
"zh-cht": "全部可用",
3757
"xloc": [
3757
- "default.handlebars->27->1535"
3758
+ "default.handlebars->27->1546"
3759
]
3760
},
3761
{
@@ -3782,7 +3783,7 @@
3783
"zh-chs": "所有活动",
3784
"zh-cht": "所有活動",
3785
"xloc": [
3785
- "default.handlebars->27->1533"
3786
+ "default.handlebars->27->1544"
3787
]
3788
},
3789
{
@@ -3800,9 +3801,9 @@
3801
"zh-chs": "全部聚焦",
3802
"zh-cht": "全部聚焦",
3803
"xloc": [
3803
- "default.handlebars->27->804",
3804
- "default.handlebars->27->806",
3805
- "default.handlebars->27->807"
3804
+ "default.handlebars->27->808",
3805
+ "default.handlebars->27->810",
3806
+ "default.handlebars->27->811"
3807
]
3808
},
3809
{
@@ -3821,8 +3822,8 @@
3822
"zh-chs": "允許用戶管理此設備組和該組中的設備。",
3823
"zh-cht": "允許用戶管理此設備組和該組中的設備。",
3824
"xloc": [
3824
- "default.handlebars->27->1378",
3825
- "default.handlebars->27->1724"
3825
+ "default.handlebars->27->1389",
3826
+ "default.handlebars->27->1735"
3827
]
3828
},
3829
{
@@ -3840,7 +3841,7 @@
3841
"zh-chs": "允许用户管理此设备。",
3842
"zh-cht": "允許用戶管理此設備。",
3843
"xloc": [
3843
- "default.handlebars->27->1379"
3844
+ "default.handlebars->27->1390"
3845
]
3846
},
3847
{
@@ -3901,7 +3902,7 @@
3902
"zh-chs": "備用(F10 = ESC + 0)",
3903
"zh-cht": "備用(F10 = ESC + 0)",
3904
"xloc": [
3904
- "default.handlebars->27->841"
3905
+ "default.handlebars->27->845"
3906
]
3907
},
3908
{
@@ -3940,9 +3941,9 @@
3941
"zh-chs": "始終通知",
3942
"zh-cht": "始終通知",
3943
"xloc": [
3943
- "default.handlebars->27->1292",
3944
- "default.handlebars->27->1772",
3945
- "default.handlebars->27->589"
3944
+ "default.handlebars->27->1303",
3945
+ "default.handlebars->27->1783",
3946
+ "default.handlebars->27->593"
3947
]
3948
},
3949
{
@@ -3961,9 +3962,9 @@
3962
"zh-chs": "總是提示",
3963
"zh-cht": "總是提示",
3964
"xloc": [
3964
- "default.handlebars->27->1293",
3965
- "default.handlebars->27->1773",
3966
- "default.handlebars->27->590"
3965
+ "default.handlebars->27->1304",
3966
+ "default.handlebars->27->1784",
3967
+ "default.handlebars->27->594"
3968
]
3969
},
3970
{
@@ -4090,7 +4091,7 @@
4091
"zh-chs": "防毒軟件",
4092
"zh-cht": "防毒軟件",
4093
"xloc": [
4093
- "default.handlebars->27->579"
4094
+ "default.handlebars->27->583"
4095
]
4096
},
4097
{
@@ -4109,7 +4110,7 @@
4110
"zh-chs": "任何支持",
4111
"zh-cht": "任何支持",
4112
"xloc": [
4112
- "default.handlebars->27->334"
4113
+ "default.handlebars->27->338"
4114
]
4115
},
4116
{
@@ -4127,7 +4128,7 @@
4128
"zh-chs": "蘋果macOS",
4129
"zh-cht": "蘋果macOS",
4130
"xloc": [
4130
- "default.handlebars->27->369"
4131
+ "default.handlebars->27->373"
4132
]
4133
},
4134
{
@@ -4145,7 +4146,7 @@
4146
"zh-chs": "僅限Apple macOS",
4147
"zh-cht": "僅限Apple macOS",
4148
"xloc": [
4148
- "default.handlebars->27->336"
4149
+ "default.handlebars->27->340"
4150
]
4151
},
4152
{
@@ -4183,7 +4184,7 @@
4184
"zh-chs": "阿拉伯文(阿爾及利亞)",
4185
"zh-cht": "阿拉伯文(阿爾及利亞)",
4186
"xloc": [
4186
- "default.handlebars->27->1010"
4187
+ "default.handlebars->27->1014"
4188
]
4189
},
4190
{
@@ -4202,7 +4203,7 @@
4203
"zh-chs": "阿拉伯文(巴林)",
4204
"zh-cht": "阿拉伯語(巴林)",
4205
"xloc": [
4205
- "default.handlebars->27->1011"
4206
+ "default.handlebars->27->1015"
4207
]
4208
},
4209
{
@@ -4221,7 +4222,7 @@
4222
"zh-chs": "阿拉伯文(埃及)",
4223
"zh-cht": "阿拉伯文(埃及)",
4224
"xloc": [
4224
- "default.handlebars->27->1012"
4225
+ "default.handlebars->27->1016"
4226
]
4227
},
4228
{
@@ -4240,7 +4241,7 @@
4241
"zh-chs": "阿拉伯文(伊拉克)",
4242
"zh-cht": "阿拉伯文(伊拉克)",
4243
"xloc": [
4243
- "default.handlebars->27->1013"
4244
+ "default.handlebars->27->1017"
4245
]
4246
},
4247
{
@@ -4259,7 +4260,7 @@
4260
"zh-chs": "阿拉伯語(約旦)",
4261
"zh-cht": "阿拉伯語(約旦)",
4262
"xloc": [
4262
- "default.handlebars->27->1014"
4263
+ "default.handlebars->27->1018"
4264
]
4265
},
4266
{
@@ -4278,7 +4279,7 @@
4279
"zh-chs": "阿拉伯文(科威特)",
4280
"zh-cht": "阿拉伯文(科威特)",
4281
"xloc": [
4281
- "default.handlebars->27->1015"
4282
+ "default.handlebars->27->1019"
4283
]
4284
},
4285
{
@@ -4297,7 +4298,7 @@
4298
"zh-chs": "阿拉伯語(黎巴嫩)",
4299
"zh-cht": "阿拉伯語(黎巴嫩)",
4300
"xloc": [
4300
- "default.handlebars->27->1016"
4301
+ "default.handlebars->27->1020"
4302
]
4303
},
4304
{
@@ -4316,7 +4317,7 @@
4317
"zh-chs": "阿拉伯文(利比亞)",
4318
"zh-cht": "阿拉伯文(利比亞)",
4319
"xloc": [
4319
- "default.handlebars->27->1017"
4320
+ "default.handlebars->27->1021"
4321
]
4322
},
4323
{
@@ -4335,7 +4336,7 @@
4336
"zh-chs": "阿拉伯文(摩洛哥)",
4337
"zh-cht": "阿拉伯文(摩洛哥)",
4338
"xloc": [
4338
- "default.handlebars->27->1018"
4339
+ "default.handlebars->27->1022"
4340
]
4341
},
4342
{
@@ -4354,7 +4355,7 @@
4355
"zh-chs": "阿拉伯文(阿曼)",
4356
"zh-cht": "阿拉伯文(阿曼)",
4357
"xloc": [
4357
- "default.handlebars->27->1019"
4358
+ "default.handlebars->27->1023"
4359
]
4360
},
4361
{
@@ -4373,7 +4374,7 @@
4374
"zh-chs": "阿拉伯語(卡塔爾)",
4375
"zh-cht": "阿拉伯語(卡塔爾)",
4376
"xloc": [
4376
- "default.handlebars->27->1020"
4377
+ "default.handlebars->27->1024"
4378
]
4379
},
4380
{
@@ -4392,7 +4393,7 @@
4393
"zh-chs": "阿拉伯語(沙特阿拉伯)",
4394
"zh-cht": "阿拉伯語(沙特阿拉伯)",
4395
"xloc": [
4395
- "default.handlebars->27->1021"
4396
+ "default.handlebars->27->1025"
4397
]
4398
},
4399
{
@@ -4411,7 +4412,7 @@
4412
"zh-chs": "阿拉伯語(標準)",
4413
"zh-cht": "阿拉伯語(標準)",
4414
"xloc": [
4414
- "default.handlebars->27->1009"
4415
+ "default.handlebars->27->1013"
4416
]
4417
},
4418
{
@@ -4430,7 +4431,7 @@
4431
"zh-chs": "阿拉伯語(敘利亞)",
4432
"zh-cht": "阿拉伯語(敘利亞)",
4433
"xloc": [
4433
- "default.handlebars->27->1022"
4434
+ "default.handlebars->27->1026"
4435
]
4436
},
4437
{
@@ -4449,7 +4450,7 @@
4450
"zh-chs": "阿拉伯文(突尼斯)",
4451
"zh-cht": "阿拉伯文(突尼斯)",
4452
"xloc": [
4452
- "default.handlebars->27->1023"
4453
+ "default.handlebars->27->1027"
4454
]
4455
},
4456
{
@@ -4468,7 +4469,7 @@
4469
"zh-chs": "阿拉伯文(阿聯酋)",
4470
"zh-cht": "阿拉伯文(阿聯酋)",
4471
"xloc": [
4471
- "default.handlebars->27->1024"
4472
+ "default.handlebars->27->1028"
4473
]
4474
},
4475
{
@@ -4487,7 +4488,7 @@
4488
"zh-chs": "阿拉伯文(也門)",
4489
"zh-cht": "阿拉伯文(也門)",
4490
"xloc": [
4490
- "default.handlebars->27->1025"
4491
+ "default.handlebars->27->1029"
4492
]
4493
},
4494
{
@@ -4506,7 +4507,7 @@
4507
"zh-chs": "阿拉貢人",
4508
"zh-cht": "阿拉貢人",
4509
"xloc": [
4509
- "default.handlebars->27->1026"
4510
+ "default.handlebars->27->1030"
4511
]
4512
},
4513
{
@@ -4526,7 +4527,7 @@
4527
"zh-cht": "建築",
4528
"xloc": [
4529
"default-mobile.handlebars->9->330",
4529
- "default.handlebars->27->896"
4530
+ "default.handlebars->27->900"
4531
]
4532
},
4533
{
@@ -4545,7 +4546,7 @@
4546
"zh-chs": "您確定要連接到{0}設備嗎?",
4547
"zh-cht": "您確定要連接到{0}設備嗎?",
4548
"xloc": [
4548
- "default.handlebars->27->260"
4549
+ "default.handlebars->27->264"
4550
]
4551
},
4552
{
@@ -4565,7 +4566,7 @@
4566
"zh-cht": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。",
4567
"xloc": [
4568
"default-mobile.handlebars->9->404",
4568
- "default.handlebars->27->1356"
4569
+ "default.handlebars->27->1367"
4570
]
4571
},
4572
{
@@ -4584,7 +4585,7 @@
4585
"zh-chs": "您確定要刪除節點{0}嗎?",
4586
"zh-cht": "您確定要刪除節點{0}嗎?",
4587
"xloc": [
4587
- "default.handlebars->27->751"
4588
+ "default.handlebars->27->755"
4589
]
4590
},
4591
{
@@ -4603,7 +4604,7 @@
4604
"zh-chs": "您確定要卸載所選代理嗎?",
4605
"zh-cht": "您確定要卸載所選代理嗎?",
4606
"xloc": [
4606
- "default.handlebars->27->740"
4607
+ "default.handlebars->27->744"
4608
]
4609
},
4610
{
@@ -4622,7 +4623,7 @@
4623
"zh-chs": "您確定要卸載所選的{0}代理嗎?",
4624
"zh-cht": "您確定要卸載所選的{0}代理嗎?",
4625
"xloc": [
4625
- "default.handlebars->27->739"
4626
+ "default.handlebars->27->743"
4627
]
4628
},
4629
{
@@ -4641,7 +4642,7 @@
4642
"zh-chs": "您確定要{0}插件嗎:{1}",
4643
"zh-cht": "您確定要{0}插件嗎:{1}",
4644
"xloc": [
4644
- "default.handlebars->27->1962"
4645
+ "default.handlebars->27->1973"
4646
]
4647
},
4648
{
@@ -4660,7 +4661,7 @@
4661
"zh-chs": "亞美尼亞人",
4662
"zh-cht": "亞美尼亞人",
4663
"xloc": [
4663
- "default.handlebars->27->1027"
4664
+ "default.handlebars->27->1031"
4665
]
4666
},
4667
{
@@ -4711,7 +4712,7 @@
4712
"zh-chs": "阿薩姆語",
4713
"zh-cht": "阿薩姆語",
4714
"xloc": [
4714
- "default.handlebars->27->1028"
4715
+ "default.handlebars->27->1032"
4716
]
4717
},
4718
{
@@ -4730,7 +4731,7 @@
4731
"zh-chs": "阿斯圖里亞斯人",
4732
"zh-cht": "阿斯圖里亞斯人",
4733
"xloc": [
4733
- "default.handlebars->27->1029"
4734
+ "default.handlebars->27->1033"
4735
]
4736
},
4737
{
@@ -4749,7 +4750,7 @@
4750
"zh-chs": "身份驗證應用",
4751
"zh-cht": "認證應用",
4752
"xloc": [
4752
- "default.handlebars->27->1776"
4753
+ "default.handlebars->27->1787"
4754
]
4755
},
4756
{
@@ -4774,8 +4775,8 @@
4775
"default-mobile.handlebars->9->73",
4776
"default.handlebars->27->125",
4777
"default.handlebars->27->130",
4777
- "default.handlebars->27->993",
4778
- "default.handlebars->27->995"
4778
+ "default.handlebars->27->997",
4779
+ "default.handlebars->27->999"
4780
]
4781
},
4782
{
@@ -4851,7 +4852,7 @@
4852
"zh-chs": "自動刪除",
4853
"zh-cht": "自動刪除",
4854
"xloc": [
4854
- "default.handlebars->27->1280"
4855
+ "default.handlebars->27->1291"
4856
]
4857
},
4858
{
@@ -4903,7 +4904,7 @@
4904
"zh-chs": "有效内存",
4905
"zh-cht": "有效內存",
4906
"xloc": [
4906
- "default.handlebars->27->1915"
4907
+ "default.handlebars->27->1926"
4908
]
4909
},
4910
{
@@ -4922,7 +4923,7 @@
4923
"zh-chs": "阿塞拜疆",
4924
"zh-cht": "阿塞拜疆人",
4925
"xloc": [
4925
- "default.handlebars->27->1030"
4926
+ "default.handlebars->27->1034"
4927
]
4928
},
4929
{
@@ -4942,7 +4943,7 @@
4943
"zh-cht": "的BIOS",
4944
"xloc": [
4945
"default-mobile.handlebars->9->372",
4945
- "default.handlebars->27->948"
4946
+ "default.handlebars->27->952"
4947
]
4948
},
4949
{
@@ -5028,7 +5029,7 @@
5029
"zh-chs": "背景與互動",
5030
"zh-cht": "背景與互動",
5031
"xloc": [
5031
- "default.handlebars->27->374"
5032
+ "default.handlebars->27->378"
5033
]
5034
},
5035
{
@@ -5047,10 +5048,10 @@
5048
"zh-chs": "背景與互動",
5049
"zh-cht": "背景與互動",
5050
"xloc": [
5050
- "default.handlebars->27->1457",
5051
- "default.handlebars->27->1464",
5052
- "default.handlebars->27->346",
5053
- "default.handlebars->27->360"
5051
+ "default.handlebars->27->1468",
5052
+ "default.handlebars->27->1475",
5053
+ "default.handlebars->27->350",
5054
+ "default.handlebars->27->364"
5055
]
5056
},
5057
{
@@ -5069,11 +5070,11 @@
5070
"zh-chs": "僅背景",
5071
"zh-cht": "僅背景",
5072
"xloc": [
5072
- "default.handlebars->27->1458",
5073
- "default.handlebars->27->1465",
5074
- "default.handlebars->27->347",
5075
- "default.handlebars->27->361",
5076
- "default.handlebars->27->375"
5073
+ "default.handlebars->27->1469",
5074
+ "default.handlebars->27->1476",
5075
+ "default.handlebars->27->351",
5076
+ "default.handlebars->27->365",
5077
+ "default.handlebars->27->379"
5078
]
5079
},
5080
{
@@ -5111,7 +5112,7 @@
5112
"zh-chs": "備用碼",
5113
"zh-cht": "備用碼",
5114
"xloc": [
5114
- "default.handlebars->27->1778"
5115
+ "default.handlebars->27->1789"
5116
]
5117
},
5118
{
@@ -5130,7 +5131,7 @@
5131
"zh-chs": "錯誤的簽名",
5132
"zh-cht": "錯誤的簽名",
5133
"xloc": [
5133
- "default.handlebars->27->1897"
5134
+ "default.handlebars->27->1908"
5135
]
5136
},
5137
{
@@ -5149,7 +5150,7 @@
5150
"zh-chs": "錯誤的網絡證書",
5151
"zh-cht": "錯誤的網絡證書",
5152
"xloc": [
5152
- "default.handlebars->27->1896"
5153
+ "default.handlebars->27->1907"
5154
]
5155
},
5156
{
@@ -5168,7 +5169,7 @@
5169
"zh-chs": "巴斯克",
5170
"zh-cht": "巴斯克",
5171
"xloc": [
5171
- "default.handlebars->27->1031"
5172
+ "default.handlebars->27->1035"
5173
]
5174
},
5175
{
@@ -5206,7 +5207,7 @@
5207
"zh-chs": "白俄羅斯語",
5208
"zh-cht": "白俄羅斯語",
5209
"xloc": [
5209
- "default.handlebars->27->1033"
5210
+ "default.handlebars->27->1037"
5211
]
5212
},
5213
{
@@ -5225,7 +5226,7 @@
5226
"zh-chs": "孟加拉",
5227
"zh-cht": "孟加拉",
5228
"xloc": [
5228
- "default.handlebars->27->1034"
5229
+ "default.handlebars->27->1038"
5230
]
5231
},
5232
{
@@ -5265,7 +5266,7 @@
5266
"zh-chs": "波斯尼亞人",
5267
"zh-cht": "波斯尼亞人",
5268
"xloc": [
5268
- "default.handlebars->27->1035"
5269
+ "default.handlebars->27->1039"
5270
]
5271
},
5272
{
@@ -5284,7 +5285,7 @@
5285
"zh-chs": "布列塔尼",
5286
"zh-cht": "布列塔尼",
5287
"xloc": [
5287
- "default.handlebars->27->1036"
5288
+ "default.handlebars->27->1040"
5289
]
5290
},
5291
{
@@ -5303,7 +5304,7 @@
5304
"zh-chs": "廣播",
5305
"zh-cht": "廣播",
5306
"xloc": [
5306
- "default.handlebars->27->1692",
5307
+ "default.handlebars->27->1703",
5308
"default.handlebars->container->column_l->p4->3->1->0->3->1"
5309
]
5310
},
@@ -5323,7 +5324,7 @@
5324
"zh-chs": "廣播消息",
5325
"zh-cht": "廣播消息",
5326
"xloc": [
5326
- "default.handlebars->27->1625"
5327
+ "default.handlebars->27->1636"
5328
]
5329
},
5330
{
@@ -5342,7 +5343,7 @@
5343
"zh-chs": "向所有連接的用戶廣播消息。",
5344
"zh-cht": "向所有連接的用戶廣播消息。",
5345
"xloc": [
5345
- "default.handlebars->27->1620"
5346
+ "default.handlebars->27->1631"
5347
]
5348
},
5349
{
@@ -5361,7 +5362,7 @@
5362
"zh-chs": "保加利亞語",
5363
"zh-cht": "保加利亞語",
5364
"xloc": [
5364
- "default.handlebars->27->1032"
5365
+ "default.handlebars->27->1036"
5366
]
5367
},
5368
{
@@ -5380,7 +5381,7 @@
5381
"zh-chs": "緬甸人",
5382
"zh-cht": "緬甸人",
5383
"xloc": [
5383
- "default.handlebars->27->1037"
5384
+ "default.handlebars->27->1041"
5385
]
5386
},
5387
{
@@ -5400,7 +5401,7 @@
5401
"zh-cht": "CCM",
5402
"xloc": [
5403
"default-mobile.handlebars->9->230",
5403
- "default.handlebars->27->558"
5404
+ "default.handlebars->27->562"
5405
]
5406
},
5407
{
@@ -5420,10 +5421,10 @@
5421
"zh-cht": "CIRA",
5422
"xloc": [
5423
"default-mobile.handlebars->9->200",
5423
- "default.handlebars->27->1344",
5424
- "default.handlebars->27->1349",
5425
- "default.handlebars->27->208",
5426
- "default.handlebars->27->433"
5424
+ "default.handlebars->27->1355",
5425
+ "default.handlebars->27->1360",
5426
+ "default.handlebars->27->212",
5427
+ "default.handlebars->27->437"
5428
]
5429
},
5430
{
@@ -5442,7 +5443,7 @@
5443
"zh-chs": "CIRA服務器",
5444
"zh-cht": "CIRA服務器",
5445
"xloc": [
5445
- "default.handlebars->27->1950"
5446
+ "default.handlebars->27->1961"
5447
]
5448
},
5449
{
@@ -5461,7 +5462,7 @@
5462
"zh-chs": "CIRA服務器命令",
5463
"zh-cht": "CIRA服務器命令",
5464
"xloc": [
5464
- "default.handlebars->27->1951"
5465
+ "default.handlebars->27->1962"
5466
]
5467
},
5468
{
@@ -5480,7 +5481,7 @@
5481
"zh-cht": "中央處理器",
5482
"xloc": [
5483
"default-mobile.handlebars->9->378",
5483
- "default.handlebars->27->954"
5484
+ "default.handlebars->27->958"
5485
]
5486
},
5487
{
@@ -5499,7 +5500,7 @@
5500
"zh-chs": "CPU負載",
5501
"zh-cht": "CPU負載",
5502
"xloc": [
5502
- "default.handlebars->27->1911"
5503
+ "default.handlebars->27->1922"
5504
]
5505
},
5506
{
@@ -5518,7 +5519,7 @@
5519
"zh-chs": "最近15分鐘的CPU負載",
5520
"zh-cht": "最近15分鐘的CPU負載",
5521
"xloc": [
5521
- "default.handlebars->27->1914"
5522
+ "default.handlebars->27->1925"
5523
]
5524
},
5525
{
@@ -5537,7 +5538,7 @@
5538
"zh-chs": "最近5分鐘的CPU負載",
5539
"zh-cht": "最近5分鐘的CPU負載",
5540
"xloc": [
5540
- "default.handlebars->27->1913"
5541
+ "default.handlebars->27->1924"
5542
]
5543
},
5544
{
@@ -5556,7 +5557,7 @@
5557
"zh-chs": "最後一分鐘的CPU負載",
5558
"zh-cht": "最後一分鐘的CPU負載",
5559
"xloc": [
5559
- "default.handlebars->27->1912"
5560
+ "default.handlebars->27->1923"
5561
]
5562
},
5563
{
@@ -5575,8 +5576,8 @@
5576
"zh-chs": "CR +低頻",
5577
"zh-cht": "CR +低頻",
5578
"xloc": [
5578
- "default.handlebars->27->834",
5579
- "default.handlebars->27->843",
5579
+ "default.handlebars->27->838",
5580
+ "default.handlebars->27->847",
5581
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
5582
]
5583
},
@@ -5595,7 +5596,7 @@
5596
"zh-chs": "CSV",
5597
"zh-cht": "CSV",
5598
"xloc": [
5598
- "default.handlebars->27->1543"
5599
+ "default.handlebars->27->1554"
5600
]
5601
},
5602
{
@@ -5614,9 +5615,9 @@
5615
"zh-chs": "CSV格式",
5616
"zh-cht": "CSV格式",
5617
"xloc": [
5617
- "default.handlebars->27->1547",
5618
- "default.handlebars->27->1612",
5619
- "default.handlebars->27->474"
5618
+ "default.handlebars->27->1558",
5619
+ "default.handlebars->27->1623",
5620
+ "default.handlebars->27->478"
5621
]
5622
},
5623
{
@@ -5635,7 +5636,7 @@
5636
"zh-chs": "通話錯誤",
5637
"zh-cht": "通話錯誤",
5638
"xloc": [
5638
- "default.handlebars->27->1963"
5639
+ "default.handlebars->27->1974"
5640
]
5641
},
5642
{
@@ -5656,7 +5657,7 @@
5657
"xloc": [
5658
"default-mobile.handlebars->9->82",
5659
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
5659
- "default.handlebars->27->1258",
5660
+ "default.handlebars->27->1269",
5661
"default.handlebars->container->dialog->idx_dlgButtonBar",
5662
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
5663
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -5679,8 +5680,8 @@
5680
"xloc": [
5681
"default-mobile.handlebars->9->386",
5682
"default-mobile.handlebars->9->388",
5682
- "default.handlebars->27->962",
5683
- "default.handlebars->27->964"
5683
+ "default.handlebars->27->966",
5684
+ "default.handlebars->27->968"
5685
]
5686
},
5687
{
@@ -5700,7 +5701,7 @@
5701
"zh-cht": "容量/速度",
5702
"xloc": [
5703
"default-mobile.handlebars->9->381",
5703
- "default.handlebars->27->957"
5704
+ "default.handlebars->27->961"
5705
]
5706
},
5707
{
@@ -5719,7 +5720,7 @@
5720
"zh-chs": "加泰羅尼亞語",
5721
"zh-cht": "加泰羅尼亞語",
5722
"xloc": [
5722
- "default.handlebars->27->1038"
5723
+ "default.handlebars->27->1042"
5724
]
5725
},
5726
{
@@ -5738,7 +5739,7 @@
5739
"zh-chs": "中心地圖在這裡",
5740
"zh-cht": "中心地圖在這裡",
5741
"xloc": [
5741
- "default.handlebars->27->520"
5742
+ "default.handlebars->27->524"
5743
]
5744
},
5745
{
@@ -5757,7 +5758,7 @@
5758
"zh-chs": "查莫羅",
5759
"zh-cht": "查莫羅",
5760
"xloc": [
5760
- "default.handlebars->27->1039"
5761
+ "default.handlebars->27->1043"
5762
]
5763
},
5764
{
@@ -5792,7 +5793,7 @@
5793
"zh-chs": "更改{0}的電子郵件",
5794
"zh-cht": "更改{0}的電子郵件",
5795
"xloc": [
5795
- "default.handlebars->27->1806"
5796
+ "default.handlebars->27->1817"
5797
]
5798
},
5799
{
@@ -5811,9 +5812,9 @@
5812
"zh-chs": "變更組",
5813
"zh-cht": "變更組",
5814
"xloc": [
5814
- "default.handlebars->27->616",
5815
- "default.handlebars->27->748",
5816
- "default.handlebars->27->749"
5815
+ "default.handlebars->27->620",
5816
+ "default.handlebars->27->752",
5817
+ "default.handlebars->27->753"
5818
]
5819
},
5820
{
@@ -5833,8 +5834,8 @@
5834
"zh-cht": "更改密碼",
5835
"xloc": [
5836
"default-mobile.handlebars->9->90",
5836
- "default.handlebars->27->1234",
5837
- "default.handlebars->27->1793"
5837
+ "default.handlebars->27->1238",
5838
+ "default.handlebars->27->1804"
5839
]
5840
},
5841
{
@@ -5853,7 +5854,7 @@
5854
"zh-chs": "更改{0}的密碼",
5855
"zh-cht": "更改{0}的密碼",
5856
"xloc": [
5856
- "default.handlebars->27->1813"
5857
+ "default.handlebars->27->1824"
5858
]
5859
},
5860
{
@@ -5865,7 +5866,7 @@
5866
"zh-chs": "更改{0}的真实名称",
5867
"zh-cht": "更改{0}的真實名稱",
5868
"xloc": [
5868
- "default.handlebars->27->1801"
5869
+ "default.handlebars->27->1812"
5870
]
5871
},
5872
{
@@ -5943,7 +5944,7 @@
5944
"zh-chs": "更改該用戶的密碼",
5945
"zh-cht": "更改該用戶的密碼",
5946
"xloc": [
5946
- "default.handlebars->27->1792"
5947
+ "default.handlebars->27->1803"
5948
]
5949
},
5950
{
@@ -5981,7 +5982,7 @@
5982
"zh-chs": "在此處更改您的帳戶電子郵件地址。",
5983
"zh-cht": "在此處更改您的帳戶電子郵件地址。",
5984
"xloc": [
5984
- "default.handlebars->27->1221"
5985
+ "default.handlebars->27->1225"
5986
]
5987
},
5988
{
@@ -6000,7 +6001,7 @@
6001
"zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
6002
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
6003
"xloc": [
6003
- "default.handlebars->27->1227"
6004
+ "default.handlebars->27->1231"
6005
]
6006
},
6007
{
@@ -6019,7 +6020,7 @@
6020
"zh-chs": "更改語言將需要刷新頁面。",
6021
"zh-cht": "更改語言將需要刷新頁面。",
6022
"xloc": [
6022
- "default.handlebars->27->1206"
6023
+ "default.handlebars->27->1210"
6024
]
6025
},
6026
{
@@ -6038,9 +6039,9 @@
6039
"zh-chs": "聊天室",
6040
"zh-cht": "聊天室",
6041
"xloc": [
6041
- "default.handlebars->27->1564",
6042
- "default.handlebars->27->669",
6043
- "default.handlebars->27->688"
6042
+ "default.handlebars->27->1575",
6043
+ "default.handlebars->27->673",
6044
+ "default.handlebars->27->692"
6045
]
6046
},
6047
{
@@ -6061,8 +6062,8 @@
6062
"xloc": [
6063
"default-mobile.handlebars->9->425",
6064
"default-mobile.handlebars->9->443",
6064
- "default.handlebars->27->1406",
6065
- "default.handlebars->27->1441"
6065
+ "default.handlebars->27->1417",
6066
+ "default.handlebars->27->1452"
6067
]
6068
},
6069
{
@@ -6093,7 +6094,7 @@
6094
"zh-chs": "車臣",
6095
"zh-cht": "車臣",
6096
"xloc": [
6096
- "default.handlebars->27->1040"
6097
+ "default.handlebars->27->1044"
6098
]
6099
},
6100
{
@@ -6150,7 +6151,7 @@
6151
"zh-chs": "檢查服務器版本",
6152
"zh-cht": "檢查服務器版本",
6153
"xloc": [
6153
- "default.handlebars->container->column_l->p6->p6info->p2ServerActions->3->p2ServerActionsVersion->0"
6154
+ "default.handlebars->container->column_l->p6->p6info->p2ServerActions->3->p2ServerActionsVersion->1"
6155
]
6156
},
6157
{
@@ -6184,8 +6185,8 @@
6185
"zh-chs": "檢查...",
6186
"zh-cht": "檢查...",
6187
"xloc": [
6187
- "default.handlebars->27->1006",
6188
- "default.handlebars->27->1957"
6188
+ "default.handlebars->27->1010",
6189
+ "default.handlebars->27->1968"
6190
]
6191
},
6192
{
@@ -6204,7 +6205,7 @@
6205
"zh-chs": "中文",
6206
"zh-cht": "中文",
6207
"xloc": [
6207
- "default.handlebars->27->1041"
6208
+ "default.handlebars->27->1045"
6209
]
6210
},
6211
{
@@ -6223,7 +6224,7 @@
6224
"zh-chs": "中文(香港)",
6225
"zh-cht": "中文(香港)",
6226
"xloc": [
6226
- "default.handlebars->27->1042"
6227
+ "default.handlebars->27->1046"
6228
]
6229
},
6230
{
@@ -6242,7 +6243,7 @@
6243
"zh-chs": "中文(中國)",
6244
"zh-cht": "中文(中國)",
6245
"xloc": [
6245
- "default.handlebars->27->1043"
6246
+ "default.handlebars->27->1047"
6247
]
6248
},
6249
{
@@ -6261,7 +6262,7 @@
6262
"zh-chs": "简体中文)",
6263
"zh-cht": "簡體中文)",
6264
"xloc": [
6264
- "default.handlebars->27->1203"
6265
+ "default.handlebars->27->1207"
6266
]
6267
},
6268
{
@@ -6280,7 +6281,7 @@
6281
"zh-chs": "中文(新加坡)",
6282
"zh-cht": "中文(新加坡)",
6283
"xloc": [
6283
- "default.handlebars->27->1044"
6284
+ "default.handlebars->27->1048"
6285
]
6286
},
6287
{
@@ -6299,7 +6300,7 @@
6300
"zh-chs": "中文(台灣)",
6301
"zh-cht": "中文(台灣)",
6302
"xloc": [
6302
- "default.handlebars->27->1045"
6303
+ "default.handlebars->27->1049"
6304
]
6305
},
6306
{
@@ -6307,7 +6308,7 @@
6308
"zh-chs": "中国传统的)",
6309
"zh-cht": "中國傳統的)",
6310
"xloc": [
6310
- "default.handlebars->27->1204"
6311
+ "default.handlebars->27->1208"
6312
]
6313
},
6314
{
@@ -6346,7 +6347,7 @@
6347
"zh-chs": "楚瓦什",
6348
"zh-cht": "楚瓦什",
6349
"xloc": [
6349
- "default.handlebars->27->1046"
6350
+ "default.handlebars->27->1050"
6351
]
6352
},
6353
{
@@ -6365,7 +6366,7 @@
6366
"zh-chs": "清理CIRA",
6367
"zh-cht": "清理CIRA",
6368
"xloc": [
6368
- "default.handlebars->27->308"
6369
+ "default.handlebars->27->312"
6370
]
6371
},
6372
{
@@ -6390,11 +6391,11 @@
6391
"default-mobile.handlebars->9->318",
6392
"default-mobile.handlebars->9->320",
6393
"default-mobile.handlebars->9->59",
6393
- "default.handlebars->27->1527",
6394
- "default.handlebars->27->873",
6395
- "default.handlebars->27->875",
6394
+ "default.handlebars->27->1538",
6395
"default.handlebars->27->877",
6396
"default.handlebars->27->879",
6397
+ "default.handlebars->27->881",
6398
+ "default.handlebars->27->883",
6399
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
6400
"default.handlebars->container->column_l->p41->3->1",
6401
"messenger.handlebars->xbottom"
@@ -6432,7 +6433,7 @@
6433
"zh-chs": "全部清除",
6434
"zh-cht": "全部清除",
6435
"xloc": [
6435
- "default.handlebars->27->1884"
6436
+ "default.handlebars->27->1895"
6437
]
6438
},
6439
{
@@ -6451,7 +6452,7 @@
6452
"zh-chs": "清除核心",
6453
"zh-cht": "清除核心",
6454
"xloc": [
6454
- "default.handlebars->27->978"
6455
+ "default.handlebars->27->982"
6456
]
6457
},
6458
{
@@ -6488,7 +6489,7 @@
6489
"zh-chs": "清除此通知",
6490
"zh-cht": "清除此通知",
6491
"xloc": [
6491
- "default.handlebars->27->1883"
6492
+ "default.handlebars->27->1894"
6493
]
6494
},
6495
{
@@ -6539,8 +6540,8 @@
6540
"zh-chs": "单击此处编辑设备组名称",
6541
"zh-cht": "單擊此處編輯設備組名稱",
6542
"xloc": [
6542
- "default.handlebars->27->1269",
6543
- "default.handlebars->27->1478"
6543
+ "default.handlebars->27->1280",
6544
+ "default.handlebars->27->1489"
6545
]
6546
},
6547
{
@@ -6559,7 +6560,7 @@
6560
"zh-chs": "單擊此處編輯服務器端設備名稱",
6561
"zh-cht": "單擊此處編輯服務器端設備名稱",
6562
"xloc": [
6562
- "default.handlebars->27->536"
6563
+ "default.handlebars->27->540"
6564
]
6565
},
6566
{
@@ -6574,7 +6575,7 @@
6575
"zh-chs": "单击此处编辑用户组名称",
6576
"zh-cht": "單擊此處編輯用戶組名稱",
6577
"xloc": [
6577
- "default.handlebars->27->1681"
6578
+ "default.handlebars->27->1692"
6579
]
6580
},
6581
{
@@ -6630,7 +6631,7 @@
6631
"zh-cht": "單擊確定將驗證郵件發送到:",
6632
"xloc": [
6633
"default-mobile.handlebars->9->75",
6633
- "default.handlebars->27->1218"
6634
+ "default.handlebars->27->1222"
6635
]
6636
},
6637
{
@@ -6669,7 +6670,13 @@
6670
"zh-cht": "客戶端控制模式(CCM)",
6671
"xloc": [
6672
"default-mobile.handlebars->9->359",
6672
- "default.handlebars->27->935"
6673
+ "default.handlebars->27->939"
6674
+ ]
6675
+ },
6676
+ {
6677
+ "en": "Client ID",
6678
+ "xloc": [
6679
+ "default.handlebars->27->1262"
6680
]
6681
},
6682
{
@@ -6688,8 +6695,14 @@
6695
"zh-chs": "客戶端啟動的遠程訪問",
6696
"zh-cht": "客戶端啟動的遠程訪問",
6697
"xloc": [
6691
- "default.handlebars->27->1343",
6692
- "default.handlebars->27->1348"
6698
+ "default.handlebars->27->1354",
6699
+ "default.handlebars->27->1359"
6700
+ ]
6701
+ },
6702
+ {
6703
+ "en": "Client Secret",
6704
+ "xloc": [
6705
+ "default.handlebars->27->1263"
6706
]
6707
},
6708
{
@@ -6731,7 +6744,13 @@
6744
"default-mobile.handlebars->9->57",
6745
"default.handlebars->27->137",
6746
"default.handlebars->27->145",
6734
- "default.handlebars->27->825"
6747
+ "default.handlebars->27->829"
6748
+ ]
6749
+ },
6750
+ {
6751
+ "en": "Code",
6752
+ "xloc": [
6753
+ "default.handlebars->27->200"
6754
]
6755
},
6756
{
@@ -6783,8 +6802,8 @@
6802
"zh-chs": "通用設備組",
6803
"zh-cht": "通用設備組",
6804
"xloc": [
6786
- "default.handlebars->27->1700",
6787
- "default.handlebars->27->1818"
6805
+ "default.handlebars->27->1711",
6806
+ "default.handlebars->27->1829"
6807
]
6808
},
6809
{
@@ -6803,8 +6822,8 @@
6822
"zh-chs": "通用設備",
6823
"zh-cht": "通用設備",
6824
"xloc": [
6806
- "default.handlebars->27->1706",
6807
- "default.handlebars->27->1830"
6825
+ "default.handlebars->27->1717",
6826
+ "default.handlebars->27->1841"
6827
]
6828
},
6829
{
@@ -6814,7 +6833,7 @@
6833
"zh-chs": "压缩文件...",
6834
"zh-cht": "壓縮文件...",
6835
"xloc": [
6817
- "default.handlebars->27->850"
6836
+ "default.handlebars->27->854"
6837
]
6838
},
6839
{
@@ -6834,7 +6853,7 @@
6853
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
6854
"xloc": [
6855
"default-mobile.handlebars->9->127",
6837
- "default.handlebars->27->1522"
6856
+ "default.handlebars->27->1533"
6857
]
6858
},
6859
{
@@ -6855,14 +6874,14 @@
6874
"xloc": [
6875
"default-mobile.handlebars->9->276",
6876
"default-mobile.handlebars->9->405",
6858
- "default.handlebars->27->1357",
6859
- "default.handlebars->27->1592",
6860
- "default.handlebars->27->1671",
6861
- "default.handlebars->27->1720",
6862
- "default.handlebars->27->1816",
6863
- "default.handlebars->27->458",
6864
- "default.handlebars->27->743",
6865
- "default.handlebars->27->752"
6877
+ "default.handlebars->27->1368",
6878
+ "default.handlebars->27->1603",
6879
+ "default.handlebars->27->1682",
6880
+ "default.handlebars->27->1731",
6881
+ "default.handlebars->27->1827",
6882
+ "default.handlebars->27->462",
6883
+ "default.handlebars->27->747",
6884
+ "default.handlebars->27->756"
6885
]
6886
},
6887
{
@@ -6882,7 +6901,7 @@
6901
"zh-cht": "確認將1個副本複製到此位置?",
6902
"xloc": [
6903
"default-mobile.handlebars->9->309",
6885
- "default.handlebars->27->868"
6904
+ "default.handlebars->27->872"
6905
]
6906
},
6907
{
@@ -6902,7 +6921,7 @@
6921
"zh-cht": "確認{0}個條目的副本到此位置?",
6922
"xloc": [
6923
"default-mobile.handlebars->9->308",
6905
- "default.handlebars->27->867"
6924
+ "default.handlebars->27->871"
6925
]
6926
},
6927
{
@@ -6918,7 +6937,7 @@
6937
"zh-chs": "确认删除选定的帐户?",
6938
"zh-cht": "確認刪除所選帳戶?",
6939
"xloc": [
6921
- "default.handlebars->27->1591"
6940
+ "default.handlebars->27->1602"
6941
]
6942
},
6943
{
@@ -6937,7 +6956,7 @@
6956
"zh-chs": "確認刪除所選設備?",
6957
"zh-cht": "確認刪除所選設備?",
6958
"xloc": [
6940
- "default.handlebars->27->457"
6959
+ "default.handlebars->27->461"
6960
]
6961
},
6962
{
@@ -6953,7 +6972,7 @@
6972
"zh-chs": "确认删除选定的用户组?",
6973
"zh-cht": "確認刪除選定的用戶組?",
6974
"xloc": [
6956
- "default.handlebars->27->1670"
6975
+ "default.handlebars->27->1681"
6976
]
6977
},
6978
{
@@ -6972,7 +6991,7 @@
6991
"zh-chs": "確認刪除用戶{0}?",
6992
"zh-cht": "確認刪除用戶{0}?",
6993
"xloc": [
6975
- "default.handlebars->27->1815"
6994
+ "default.handlebars->27->1826"
6995
]
6996
},
6997
{
@@ -6988,7 +7007,7 @@
7007
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
7008
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
7009
"xloc": [
6991
- "default.handlebars->27->1723"
7010
+ "default.handlebars->27->1734"
7011
]
7012
},
7013
{
@@ -7004,7 +7023,7 @@
7023
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
7024
"zh-cht": "確認刪除用戶組“ {0} ”的成員身份?",
7025
"xloc": [
7007
- "default.handlebars->27->1845"
7026
+ "default.handlebars->27->1856"
7027
]
7028
},
7029
{
@@ -7024,7 +7043,7 @@
7043
"zh-cht": "確認將1個入口移動到此位置?",
7044
"xloc": [
7045
"default-mobile.handlebars->9->311",
7027
- "default.handlebars->27->870"
7046
+ "default.handlebars->27->874"
7047
]
7048
},
7049
{
@@ -7044,7 +7063,7 @@
7063
"zh-cht": "確認將{0}個條目移到該位置?",
7064
"xloc": [
7065
"default-mobile.handlebars->9->310",
7047
- "default.handlebars->27->869"
7066
+ "default.handlebars->27->873"
7067
]
7068
},
7069
{
@@ -7063,7 +7082,7 @@
7082
"zh-chs": "確認覆蓋?",
7083
"zh-cht": "確認覆蓋?",
7084
"xloc": [
7066
- "default.handlebars->27->1521"
7085
+ "default.handlebars->27->1532"
7086
]
7087
},
7088
{
@@ -7079,8 +7098,8 @@
7098
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
7099
"zh-cht": "是否確認刪除設備“ {0} ”的訪問權限?",
7100
"xloc": [
7082
- "default.handlebars->27->1713",
7083
- "default.handlebars->27->1836"
7101
+ "default.handlebars->27->1724",
7102
+ "default.handlebars->27->1847"
7103
]
7104
},
7105
{
@@ -7096,8 +7115,8 @@
7115
"zh-chs": "是否确认删除设备组“ {0} ”的访问权限?",
7116
"zh-cht": "確認刪除設備組“ {0} ”的訪問權限?",
7117
"xloc": [
7099
- "default.handlebars->27->1715",
7100
- "default.handlebars->27->1849"
7118
+ "default.handlebars->27->1726",
7119
+ "default.handlebars->27->1860"
7120
]
7121
},
7122
{
@@ -7113,7 +7132,7 @@
7132
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
7133
"zh-cht": "是否確認刪除用戶“ {0} ”的訪問權限?",
7134
"xloc": [
7116
- "default.handlebars->27->1838"
7135
+ "default.handlebars->27->1849"
7136
]
7137
},
7138
{
@@ -7129,7 +7148,7 @@
7148
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
7149
"zh-cht": "確認刪除用戶組“ {0} ”的訪問權限?",
7150
"xloc": [
7132
- "default.handlebars->27->1841"
7151
+ "default.handlebars->27->1852"
7152
]
7153
},
7154
{
@@ -7145,8 +7164,8 @@
7164
"zh-chs": "确认删除访问权限?",
7165
"zh-cht": "確認刪除訪問權限?",
7166
"xloc": [
7148
- "default.handlebars->27->1839",
7149
- "default.handlebars->27->1842"
7167
+ "default.handlebars->27->1850",
7168
+ "default.handlebars->27->1853"
7169
]
7170
},
7171
{
@@ -7166,7 +7185,7 @@
7185
"zh-cht": "確認刪除身份驗證器應用程序兩步登錄?",
7186
"xloc": [
7187
"default-mobile.handlebars->9->74",
7169
- "default.handlebars->27->996"
7188
+ "default.handlebars->27->1000"
7189
]
7190
},
7191
{
@@ -7229,7 +7248,7 @@
7248
"zh-chs": "确认删除用户“ {0} ”的权限?",
7249
"zh-cht": "是否確認刪除用戶“ {0} ”的權限?",
7250
"xloc": [
7232
- "default.handlebars->27->1450"
7251
+ "default.handlebars->27->1461"
7252
]
7253
},
7254
{
@@ -7245,7 +7264,7 @@
7264
"zh-chs": "确认删除用户组“ {0} ”的权限?",
7265
"zh-cht": "確認刪除用戶組“ {0} ”的權限?",
7266
"xloc": [
7248
- "default.handlebars->27->1452"
7267
+ "default.handlebars->27->1463"
7268
]
7269
},
7270
{
@@ -7299,8 +7318,8 @@
7318
"default-mobile.handlebars->9->291",
7319
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
7320
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
7302
- "default.handlebars->27->1296",
7303
- "default.handlebars->27->846",
7321
+ "default.handlebars->27->1307",
7322
+ "default.handlebars->27->850",
7323
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
7324
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
7325
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -7325,7 +7344,7 @@
7344
"zh-chs": "全部連接",
7345
"zh-cht": "全部連接",
7346
"xloc": [
7328
- "default.handlebars->27->259",
7347
+ "default.handlebars->27->263",
7348
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
7349
]
7350
},
@@ -7345,8 +7364,8 @@
7364
"zh-chs": "連接到服務器",
7365
"zh-cht": "連接到服務器",
7366
"xloc": [
7348
- "default.handlebars->27->1347",
7349
- "default.handlebars->27->1351"
7367
+ "default.handlebars->27->1358",
7368
+ "default.handlebars->27->1362"
7369
]
7370
},
7371
{
@@ -7427,7 +7446,7 @@
7446
"zh-chs": "連接的英特爾®AMT",
7447
"zh-cht": "連接的英特爾®AMT",
7448
"xloc": [
7430
- "default.handlebars->27->1902"
7449
+ "default.handlebars->27->1913"
7450
]
7451
},
7452
{
@@ -7446,7 +7465,7 @@
7465
"zh-chs": "關聯用戶",
7466
"zh-cht": "關聯用戶",
7467
"xloc": [
7449
- "default.handlebars->27->1907"
7468
+ "default.handlebars->27->1918"
7469
]
7470
},
7471
{
@@ -7466,7 +7485,7 @@
7485
"zh-cht": "現在已連接",
7486
"xloc": [
7487
"default-mobile.handlebars->9->334",
7469
- "default.handlebars->27->900"
7488
+ "default.handlebars->27->904"
7489
]
7490
},
7491
{
@@ -7507,10 +7526,10 @@
7526
"default-mobile.handlebars->9->2",
7527
"default-mobile.handlebars->9->327",
7528
"default-mobile.handlebars->9->37",
7510
- "default.handlebars->27->233",
7511
- "default.handlebars->27->236",
7512
- "default.handlebars->27->262",
7513
- "default.handlebars->27->891",
7529
+ "default.handlebars->27->237",
7530
+ "default.handlebars->27->240",
7531
+ "default.handlebars->27->266",
7532
+ "default.handlebars->27->895",
7533
"default.handlebars->27->9",
7534
"desktop.handlebars->3->2",
7535
"xterm.handlebars->9->2"
@@ -7532,7 +7551,7 @@
7551
"zh-chs": "連接數",
7552
"zh-cht": "連接數",
7553
"xloc": [
7535
- "default.handlebars->27->1921"
7554
+ "default.handlebars->27->1932"
7555
]
7556
},
7557
{
@@ -7550,7 +7569,7 @@
7569
"zh-chs": "連接繼電器",
7570
"zh-cht": "連接繼電器",
7571
"xloc": [
7553
- "default.handlebars->27->1949"
7572
+ "default.handlebars->27->1960"
7573
]
7574
},
7575
{
@@ -7608,9 +7627,9 @@
7627
"zh-cht": "連接性",
7628
"xloc": [
7629
"default-mobile.handlebars->9->244",
7611
- "default.handlebars->27->1485",
7612
- "default.handlebars->27->224",
7613
- "default.handlebars->27->603",
7630
+ "default.handlebars->27->1496",
7631
+ "default.handlebars->27->228",
7632
+ "default.handlebars->27->607",
7633
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
7634
]
7635
},
@@ -7630,8 +7649,8 @@
7649
"zh-chs": "安慰",
7650
"zh-cht": "安慰",
7651
"xloc": [
7633
- "default.handlebars->27->664",
7634
- "default.handlebars->27->683",
7652
+ "default.handlebars->27->668",
7653
+ "default.handlebars->27->687",
7654
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
7655
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
7656
"default.handlebars->contextMenu->cxconsole"
@@ -7653,7 +7672,7 @@
7672
"zh-chs": "安慰 -",
7673
"zh-cht": "安慰 -",
7674
"xloc": [
7656
- "default.handlebars->27->537"
7675
+ "default.handlebars->27->541"
7676
]
7677
},
7678
{
@@ -7671,8 +7690,8 @@
7690
"zh-chs": "控制",
7691
"zh-cht": "控制",
7692
"xloc": [
7674
- "default.handlebars->27->663",
7675
- "default.handlebars->27->682",
7693
+ "default.handlebars->27->667",
7694
+ "default.handlebars->27->686",
7695
"messenger.handlebars->13->1"
7696
]
7697
},
@@ -7692,7 +7711,7 @@
7711
"zh-chs": "Cookie編碼器",
7712
"zh-cht": "Cookie編碼器",
7713
"xloc": [
7695
- "default.handlebars->27->1935"
7714
+ "default.handlebars->27->1946"
7715
]
7716
},
7717
{
@@ -7753,7 +7772,7 @@
7772
"zh-chs": "将Windows 32位代理URL复制到剪贴板",
7773
"zh-cht": "將Windows 32位代理URL複製到剪貼板",
7774
"xloc": [
7756
- "default.handlebars->27->381"
7775
+ "default.handlebars->27->385"
7776
]
7777
},
7778
{
@@ -7771,7 +7790,7 @@
7790
"zh-chs": "将Windows 64位代理URL复制到剪贴板",
7791
"zh-cht": "將Windows 64位代理URL複製到剪貼板",
7792
"xloc": [
7774
- "default.handlebars->27->385"
7793
+ "default.handlebars->27->389"
7794
]
7795
},
7796
{
@@ -7812,7 +7831,7 @@
7831
"zh-chs": "将座席URL复制到剪贴板",
7832
"zh-cht": "將座席URL複製到剪貼板",
7833
"xloc": [
7815
- "default.handlebars->27->405"
7834
+ "default.handlebars->27->409"
7835
]
7836
},
7837
{
@@ -7831,10 +7850,10 @@
7850
"zh-chs": "複製鏈接到剪貼板",
7851
"zh-cht": "複製鏈接到剪貼板",
7852
"xloc": [
7834
- "default.handlebars->27->1490",
7835
- "default.handlebars->27->1509",
7853
+ "default.handlebars->27->1501",
7854
+ "default.handlebars->27->1520",
7855
"default.handlebars->27->192",
7837
- "default.handlebars->27->363"
7856
+ "default.handlebars->27->367"
7857
]
7858
},
7859
{
@@ -7852,7 +7871,7 @@
7871
"zh-chs": "將macOS代理URL複製到剪貼板",
7872
"zh-cht": "將macOS代理URL複製到剪貼板",
7873
"xloc": [
7855
- "default.handlebars->27->393"
7874
+ "default.handlebars->27->397"
7875
]
7876
},
7877
{
@@ -8049,7 +8068,7 @@
8068
"zh-chs": "核心服務器",
8069
"zh-cht": "核心服務器",
8070
"xloc": [
8052
- "default.handlebars->27->1934"
8071
+ "default.handlebars->27->1945"
8072
]
8073
},
8074
{
@@ -8068,7 +8087,7 @@
8087
"zh-chs": "科西嘉人",
8088
"zh-cht": "科西嘉人",
8089
"xloc": [
8071
- "default.handlebars->27->1047"
8090
+ "default.handlebars->27->1051"
8091
]
8092
},
8093
{
@@ -8087,7 +8106,7 @@
8106
"zh-chs": "創建帳號",
8107
"zh-cht": "創建帳號",
8108
"xloc": [
8090
- "default.handlebars->27->1639",
8109
+ "default.handlebars->27->1650",
8110
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
8111
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
8112
]
@@ -8127,7 +8146,7 @@
8146
"zh-chs": "創建用戶組",
8147
"zh-cht": "創建用戶組",
8148
"xloc": [
8130
- "default.handlebars->27->1678"
8149
+ "default.handlebars->27->1689"
8150
]
8151
},
8152
{
@@ -8138,7 +8157,7 @@
8157
"zh-chs": "创建链接以与访客共享此设备",
8158
"zh-cht": "創建鏈接以與訪客共享此設備",
8159
"xloc": [
8141
- "default.handlebars->27->614"
8160
+ "default.handlebars->27->618"
8161
]
8162
},
8163
{
@@ -8157,7 +8176,7 @@
8176
"zh-chs": "使用以下選項創建一個新的設備組。",
8177
"zh-cht": "使用以下選項創建一個新的設備組。",
8178
"xloc": [
8160
- "default.handlebars->27->1241"
8179
+ "default.handlebars->27->1245"
8180
]
8181
},
8182
{
@@ -8176,7 +8195,7 @@
8195
"zh-chs": "創建一個新的設備組。",
8196
"zh-cht": "創建一個新的設備組。",
8197
"xloc": [
8179
- "default.handlebars->27->226"
8198
+ "default.handlebars->27->230"
8199
]
8200
},
8201
{
@@ -8195,7 +8214,7 @@
8214
"zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:",
8215
"zh-cht": "通過導入以下格式的JSON文件一次創建多個帳戶:",
8216
"xloc": [
8198
- "default.handlebars->27->1603"
8217
+ "default.handlebars->27->1614"
8218
]
8219
},
8220
{
@@ -8226,7 +8245,7 @@
8245
"zh-chs": "创建一个链接,该链接允许没有帐户的访客将远程桌面访问此设备最多1小时。",
8246
"zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客將遠程桌面訪問此設備最多1小時。",
8247
"xloc": [
8229
- "default.handlebars->27->699"
8248
+ "default.handlebars->27->703"
8249
]
8250
},
8251
{
@@ -8245,7 +8264,7 @@
8264
"zh-chs": "創建",
8265
"zh-cht": "創建",
8266
"xloc": [
8248
- "default.handlebars->27->1752"
8267
+ "default.handlebars->27->1763"
8268
]
8269
},
8270
{
@@ -8254,7 +8273,7 @@
8273
"zh-chs": "创作时间",
8274
"zh-cht": "創作時間",
8275
"xloc": [
8257
- "default.handlebars->27->1279"
8276
+ "default.handlebars->27->1290"
8277
]
8278
},
8279
{
@@ -8283,8 +8302,8 @@
8302
"zh-chs": "创作者",
8303
"zh-cht": "創作者",
8304
"xloc": [
8286
- "default.handlebars->27->1277",
8287
- "default.handlebars->27->1278"
8305
+ "default.handlebars->27->1288",
8306
+ "default.handlebars->27->1289"
8307
]
8308
},
8309
{
@@ -8303,7 +8322,7 @@
8322
"zh-chs": "克里",
8323
"zh-cht": "克里",
8324
"xloc": [
8306
- "default.handlebars->27->1048"
8325
+ "default.handlebars->27->1052"
8326
]
8327
},
8328
{
@@ -8322,7 +8341,7 @@
8341
"zh-chs": "克羅地亞語",
8342
"zh-cht": "克羅地亞語",
8343
"xloc": [
8325
- "default.handlebars->27->1049"
8344
+ "default.handlebars->27->1053"
8345
]
8346
},
8347
{
@@ -8481,7 +8500,7 @@
8500
"zh-chs": "捷克文",
8501
"zh-cht": "捷克文",
8502
"xloc": [
8484
- "default.handlebars->27->1050"
8503
+ "default.handlebars->27->1054"
8504
]
8505
},
8506
{
@@ -8519,7 +8538,7 @@
8538
"zh-chs": "丹麥文",
8539
"zh-cht": "丹麥文",
8540
"xloc": [
8522
- "default.handlebars->27->1051"
8541
+ "default.handlebars->27->1055"
8542
]
8543
},
8544
{
@@ -8538,7 +8557,7 @@
8557
"zh-chs": "數據通道",
8558
"zh-cht": "數據通道",
8559
"xloc": [
8541
- "default.handlebars->27->795",
8560
+ "default.handlebars->27->799",
8561
"desktop.handlebars->3->12"
8562
]
8563
},
@@ -8558,7 +8577,7 @@
8577
"zh-chs": "日期和時間",
8578
"zh-cht": "日期和時間",
8579
"xloc": [
8561
- "default.handlebars->27->1209"
8580
+ "default.handlebars->27->1213"
8581
]
8582
},
8583
{
@@ -8578,7 +8597,7 @@
8597
"zh-cht": "天",
8598
"xloc": [
8599
"default-mobile.handlebars->9->266",
8581
- "default.handlebars->27->727"
8600
+ "default.handlebars->27->731"
8601
]
8602
},
8603
{
@@ -8597,7 +8616,7 @@
8616
"zh-chs": "停用客戶端控制模式(CCM)",
8617
"zh-cht": "停用客戶端控制模式(CCM)",
8618
"xloc": [
8600
- "default.handlebars->27->1335"
8619
+ "default.handlebars->27->1346"
8620
]
8621
},
8622
{
@@ -8617,7 +8636,7 @@
8636
"zh-cht": "沉睡",
8637
"xloc": [
8638
"default-mobile.handlebars->9->188",
8620
- "default.handlebars->27->416"
8639
+ "default.handlebars->27->420"
8640
]
8641
},
8642
{
@@ -8629,10 +8648,10 @@
8648
"zh-chs": "默认",
8649
"zh-cht": "默認",
8650
"xloc": [
8632
- "default.handlebars->27->1626",
8633
- "default.handlebars->27->1674",
8651
+ "default.handlebars->27->1637",
8652
"default.handlebars->27->1685",
8635
- "default.handlebars->27->1741"
8653
+ "default.handlebars->27->1696",
8654
+ "default.handlebars->27->1752"
8655
]
8656
},
8657
{
@@ -8655,9 +8674,9 @@
8674
"default-mobile.handlebars->9->301",
8675
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
8676
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
8658
- "default.handlebars->27->1516",
8659
- "default.handlebars->27->507",
8660
- "default.handlebars->27->859",
8677
+ "default.handlebars->27->1527",
8678
+ "default.handlebars->27->511",
8679
+ "default.handlebars->27->863",
8680
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
8681
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
8682
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -8684,7 +8703,7 @@
8703
"zh-cht": "刪除帳戶",
8704
"xloc": [
8705
"default-mobile.handlebars->9->84",
8687
- "default.handlebars->27->1226"
8706
+ "default.handlebars->27->1230"
8707
]
8708
},
8709
{
@@ -8700,7 +8719,7 @@
8719
"zh-chs": "删除帐号",
8720
"zh-cht": "刪除帳號",
8721
"xloc": [
8703
- "default.handlebars->27->1593"
8722
+ "default.handlebars->27->1604"
8723
]
8724
},
8725
{
@@ -8720,7 +8739,7 @@
8739
"zh-cht": "刪除裝置",
8740
"xloc": [
8741
"default-mobile.handlebars->9->249",
8723
- "default.handlebars->27->618"
8742
+ "default.handlebars->27->622"
8743
]
8744
},
8745
{
@@ -8741,8 +8760,8 @@
8760
"xloc": [
8761
"default-mobile.handlebars->9->403",
8762
"default-mobile.handlebars->9->406",
8744
- "default.handlebars->27->1328",
8745
- "default.handlebars->27->1358"
8763
+ "default.handlebars->27->1339",
8764
+ "default.handlebars->27->1369"
8765
]
8766
},
8767
{
@@ -8762,7 +8781,7 @@
8781
"zh-cht": "刪除節點",
8782
"xloc": [
8783
"default-mobile.handlebars->9->274",
8765
- "default.handlebars->27->753"
8784
+ "default.handlebars->27->757"
8785
]
8786
},
8787
{
@@ -8781,7 +8800,7 @@
8800
"zh-chs": "刪除節點",
8801
"zh-cht": "刪除節點",
8802
"xloc": [
8784
- "default.handlebars->27->459"
8803
+ "default.handlebars->27->463"
8804
]
8805
},
8806
{
@@ -8800,7 +8819,7 @@
8819
"zh-chs": "刪除用戶",
8820
"zh-cht": "刪除用戶",
8821
"xloc": [
8803
- "default.handlebars->27->1791"
8822
+ "default.handlebars->27->1802"
8823
]
8824
},
8825
{
@@ -8819,8 +8838,8 @@
8838
"zh-chs": "刪除用戶組",
8839
"zh-cht": "刪除用戶組",
8840
"xloc": [
8822
- "default.handlebars->27->1711",
8823
- "default.handlebars->27->1721"
8841
+ "default.handlebars->27->1722",
8842
+ "default.handlebars->27->1732"
8843
]
8844
},
8845
{
@@ -8836,7 +8855,7 @@
8855
"zh-chs": "删除用户组",
8856
"zh-cht": "刪除用戶組",
8857
"xloc": [
8839
- "default.handlebars->27->1672"
8858
+ "default.handlebars->27->1683"
8859
]
8860
},
8861
{
@@ -8855,7 +8874,7 @@
8874
"zh-chs": "刪除用戶{0}",
8875
"zh-cht": "刪除用戶{0}",
8876
"xloc": [
8858
- "default.handlebars->27->1814"
8877
+ "default.handlebars->27->1825"
8878
]
8879
},
8880
{
@@ -8875,7 +8894,7 @@
8894
"zh-cht": "刪除帳戶",
8895
"xloc": [
8896
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
8878
- "default.handlebars->27->1589",
8897
+ "default.handlebars->27->1600",
8898
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
8899
]
8900
},
@@ -8895,7 +8914,7 @@
8914
"zh-chs": "刪除設備",
8915
"zh-cht": "刪除設備",
8916
"xloc": [
8898
- "default.handlebars->27->455"
8917
+ "default.handlebars->27->459"
8918
]
8919
},
8920
{
@@ -8911,7 +8930,7 @@
8930
"zh-chs": "删除群组",
8931
"zh-cht": "刪除群組",
8932
"xloc": [
8914
- "default.handlebars->27->1668"
8933
+ "default.handlebars->27->1679"
8934
]
8935
},
8936
{
@@ -8930,7 +8949,7 @@
8949
"zh-chs": "刪除項目?",
8950
"zh-cht": "刪除項目?",
8951
"xloc": [
8933
- "default.handlebars->27->508"
8952
+ "default.handlebars->27->512"
8953
]
8954
},
8955
{
@@ -8951,8 +8970,8 @@
8970
"xloc": [
8971
"default-mobile.handlebars->9->124",
8972
"default-mobile.handlebars->9->303",
8954
- "default.handlebars->27->1518",
8955
- "default.handlebars->27->861"
8973
+ "default.handlebars->27->1529",
8974
+ "default.handlebars->27->865"
8975
]
8976
},
8977
{
@@ -8971,7 +8990,7 @@
8990
"zh-chs": "刪除用戶組{0}?",
8991
"zh-cht": "刪除用戶組{0}?",
8992
"xloc": [
8974
- "default.handlebars->27->1719"
8993
+ "default.handlebars->27->1730"
8994
]
8995
},
8996
{
@@ -8992,8 +9011,8 @@
9011
"xloc": [
9012
"default-mobile.handlebars->9->123",
9013
"default-mobile.handlebars->9->302",
8995
- "default.handlebars->27->1517",
8996
- "default.handlebars->27->860"
9014
+ "default.handlebars->27->1528",
9015
+ "default.handlebars->27->864"
9016
]
9017
},
9018
{
@@ -9027,7 +9046,7 @@
9046
"zh-chs": "被拒绝",
9047
"zh-cht": "被拒絕",
9048
"xloc": [
9030
- "default.handlebars->27->791",
9049
+ "default.handlebars->27->795",
9050
"desktop.handlebars->3->8"
9051
]
9052
},
@@ -9120,19 +9139,19 @@
9139
"default-mobile.handlebars->9->340",
9140
"default-mobile.handlebars->9->395",
9141
"default-mobile.handlebars->9->408",
9123
- "default.handlebars->27->1246",
9124
- "default.handlebars->27->1274",
9125
- "default.handlebars->27->1360",
9126
- "default.handlebars->27->1677",
9127
- "default.handlebars->27->1687",
9142
+ "default.handlebars->27->1250",
9143
+ "default.handlebars->27->1285",
9144
+ "default.handlebars->27->1371",
9145
"default.handlebars->27->1688",
9129
- "default.handlebars->27->1717",
9130
- "default.handlebars->27->548",
9131
- "default.handlebars->27->549",
9146
+ "default.handlebars->27->1698",
9147
+ "default.handlebars->27->1699",
9148
+ "default.handlebars->27->1728",
9149
+ "default.handlebars->27->552",
9150
+ "default.handlebars->27->553",
9151
"default.handlebars->27->77",
9133
- "default.handlebars->27->786",
9134
- "default.handlebars->27->906",
9135
- "default.handlebars->27->916",
9152
+ "default.handlebars->27->790",
9153
+ "default.handlebars->27->910",
9154
+ "default.handlebars->27->920",
9155
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
9156
]
9157
},
@@ -9169,10 +9188,10 @@
9188
"zh-cht": "桌面",
9189
"xloc": [
9190
"default-mobile.handlebars->9->256",
9172
- "default.handlebars->27->1365",
9173
- "default.handlebars->27->1861",
9174
- "default.handlebars->27->513",
9175
- "default.handlebars->27->831",
9191
+ "default.handlebars->27->1376",
9192
+ "default.handlebars->27->1872",
9193
+ "default.handlebars->27->517",
9194
+ "default.handlebars->27->835",
9195
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
9196
"default.handlebars->contextMenu->cxdesktop",
9197
"desktop.handlebars->3->24"
@@ -9213,9 +9232,9 @@
9232
"zh-chs": "桌面通知",
9233
"zh-cht": "桌面通知",
9234
"xloc": [
9216
- "default.handlebars->27->1287",
9217
- "default.handlebars->27->1767",
9218
- "default.handlebars->27->584"
9235
+ "default.handlebars->27->1298",
9236
+ "default.handlebars->27->1778",
9237
+ "default.handlebars->27->588"
9238
]
9239
},
9240
{
@@ -9234,9 +9253,9 @@
9253
"zh-chs": "桌面提示",
9254
"zh-cht": "桌面提示",
9255
"xloc": [
9237
- "default.handlebars->27->1286",
9238
- "default.handlebars->27->1766",
9239
- "default.handlebars->27->583"
9256
+ "default.handlebars->27->1297",
9257
+ "default.handlebars->27->1777",
9258
+ "default.handlebars->27->587"
9259
]
9260
},
9261
{
@@ -9255,9 +9274,9 @@
9274
"zh-chs": "桌面提示+工具欄",
9275
"zh-cht": "桌面提示+工具欄",
9276
"xloc": [
9258
- "default.handlebars->27->1284",
9259
- "default.handlebars->27->1764",
9260
- "default.handlebars->27->581"
9277
+ "default.handlebars->27->1295",
9278
+ "default.handlebars->27->1775",
9279
+ "default.handlebars->27->585"
9280
]
9281
},
9282
{
@@ -9293,9 +9312,9 @@
9312
"zh-chs": "桌面工具欄",
9313
"zh-cht": "桌面工具欄",
9314
"xloc": [
9296
- "default.handlebars->27->1285",
9297
- "default.handlebars->27->1765",
9298
- "default.handlebars->27->582"
9315
+ "default.handlebars->27->1296",
9316
+ "default.handlebars->27->1776",
9317
+ "default.handlebars->27->586"
9318
]
9319
},
9320
{
@@ -9305,7 +9324,7 @@
9324
"zh-chs": "桌面会话",
9325
"zh-cht": "桌面會話",
9326
"xloc": [
9308
- "default.handlebars->27->830"
9327
+ "default.handlebars->27->834"
9328
]
9329
},
9330
{
@@ -9384,9 +9403,9 @@
9403
"zh-chs": "設備",
9404
"zh-cht": "設備",
9405
"xloc": [
9387
- "default.handlebars->27->1387",
9406
+ "default.handlebars->27->1398",
9407
"default.handlebars->27->183",
9389
- "default.handlebars->27->1833",
9408
+ "default.handlebars->27->1844",
9409
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
9410
]
9411
},
@@ -9407,7 +9426,7 @@
9426
"zh-cht": "設備動作",
9427
"xloc": [
9428
"default-mobile.handlebars->9->265",
9410
- "default.handlebars->27->722"
9429
+ "default.handlebars->27->726"
9430
]
9431
},
9432
{
@@ -9426,14 +9445,14 @@
9445
"zh-chs": "設備組",
9446
"zh-cht": "設備組",
9447
"xloc": [
9429
- "default.handlebars->27->1382",
9430
- "default.handlebars->27->1385",
9431
- "default.handlebars->27->1386",
9432
- "default.handlebars->27->1540",
9433
- "default.handlebars->27->1703",
9434
- "default.handlebars->27->1709",
9435
- "default.handlebars->27->1821",
9436
- "default.handlebars->27->1870"
9448
+ "default.handlebars->27->1393",
9449
+ "default.handlebars->27->1396",
9450
+ "default.handlebars->27->1397",
9451
+ "default.handlebars->27->1551",
9452
+ "default.handlebars->27->1714",
9453
+ "default.handlebars->27->1720",
9454
+ "default.handlebars->27->1832",
9455
+ "default.handlebars->27->1881"
9456
]
9457
},
9458
{
@@ -9453,7 +9472,7 @@
9472
"zh-cht": "設備組用戶",
9473
"xloc": [
9474
"default-mobile.handlebars->9->450",
9456
- "default.handlebars->27->1448"
9475
+ "default.handlebars->27->1459"
9476
]
9477
},
9478
{
@@ -9473,11 +9492,11 @@
9492
"zh-cht": "設備組",
9493
"xloc": [
9494
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
9476
- "default.handlebars->27->1556",
9477
- "default.handlebars->27->1662",
9478
- "default.handlebars->27->1690",
9479
- "default.handlebars->27->1761",
9480
- "default.handlebars->27->1905",
9495
+ "default.handlebars->27->1567",
9496
+ "default.handlebars->27->1673",
9497
+ "default.handlebars->27->1701",
9498
+ "default.handlebars->27->1772",
9499
+ "default.handlebars->27->1916",
9500
"default.handlebars->container->column_l->p2->p2info->7"
9501
]
9502
},
@@ -9497,7 +9516,7 @@
9516
"zh-chs": "設備信息導出",
9517
"zh-cht": "設備信息導出",
9518
"xloc": [
9500
- "default.handlebars->27->478"
9519
+ "default.handlebars->27->482"
9520
]
9521
},
9522
{
@@ -9516,7 +9535,7 @@
9535
"zh-chs": "設備位置",
9536
"zh-cht": "設備位置",
9537
"xloc": [
9519
- "default.handlebars->27->754"
9538
+ "default.handlebars->27->758"
9539
]
9540
},
9541
{
@@ -9528,7 +9547,7 @@
9547
"zh-chs": "设备信息",
9548
"zh-cht": "設備信息",
9549
"xloc": [
9531
- "default.handlebars->27->696"
9550
+ "default.handlebars->27->700"
9551
]
9552
},
9553
{
@@ -9548,9 +9567,9 @@
9567
"zh-cht": "設備名稱",
9568
"xloc": [
9569
"default-mobile.handlebars->9->278",
9551
- "default.handlebars->27->1869",
9552
- "default.handlebars->27->280",
9553
- "default.handlebars->27->784",
9570
+ "default.handlebars->27->1880",
9571
+ "default.handlebars->27->284",
9572
+ "default.handlebars->27->788",
9573
"player.handlebars->3->9"
9574
]
9575
},
@@ -9570,7 +9589,7 @@
9589
"zh-chs": "設備通知",
9590
"zh-cht": "設備通知",
9591
"xloc": [
9573
- "default.handlebars->27->698"
9592
+ "default.handlebars->27->702"
9593
]
9594
},
9595
{
@@ -9607,8 +9626,8 @@
9626
"zh-chs": "設備連接。",
9627
"zh-cht": "設備連接。",
9628
"xloc": [
9610
- "default.handlebars->27->1214",
9611
- "default.handlebars->27->1469"
9629
+ "default.handlebars->27->1218",
9630
+ "default.handlebars->27->1480"
9631
]
9632
},
9633
{
@@ -9627,8 +9646,8 @@
9646
"zh-chs": "設備斷開連接。",
9647
"zh-cht": "設備斷開連接。",
9648
"xloc": [
9630
- "default.handlebars->27->1215",
9631
- "default.handlebars->27->1470"
9649
+ "default.handlebars->27->1219",
9650
+ "default.handlebars->27->1481"
9651
]
9652
},
9653
{
@@ -9647,7 +9666,7 @@
9666
"zh-chs": "其他設備組管理員可以查看和更改設備組註釋。",
9667
"zh-cht": "其他設備組管理員可以查看和更改設備組註釋。",
9668
"xloc": [
9650
- "default.handlebars->27->693"
9669
+ "default.handlebars->27->697"
9670
]
9671
},
9672
{
@@ -9661,8 +9680,8 @@
9680
"xloc": [
9681
"default-mobile.handlebars->9->157",
9682
"default-mobile.handlebars->9->212",
9664
- "default.handlebars->27->204",
9665
- "default.handlebars->27->534"
9683
+ "default.handlebars->27->208",
9684
+ "default.handlebars->27->538"
9685
]
9686
},
9687
{
@@ -9681,7 +9700,7 @@
9700
"zh-chs": "檢測到設備,但無法獲得電源狀態。",
9701
"zh-cht": "檢測到設備,但無法獲得電源狀態。",
9702
"xloc": [
9684
- "default.handlebars->27->421"
9703
+ "default.handlebars->27->425"
9704
]
9705
},
9706
{
@@ -9701,7 +9720,7 @@
9720
"zh-cht": "設備正在休眠(S4)",
9721
"xloc": [
9722
"default-mobile.handlebars->9->196",
9704
- "default.handlebars->27->427"
9723
+ "default.handlebars->27->431"
9724
]
9725
},
9726
{
@@ -9721,7 +9740,7 @@
9740
"zh-cht": "設備處於深度睡眠狀態(S3)",
9741
"xloc": [
9742
"default-mobile.handlebars->9->195",
9724
- "default.handlebars->27->426"
9743
+ "default.handlebars->27->430"
9744
]
9745
},
9746
{
@@ -9740,7 +9759,7 @@
9759
"zh-chs": "設備處於深度睡眠狀態(S3)。",
9760
"zh-cht": "設備處於深度睡眠狀態(S3)。",
9761
"xloc": [
9743
- "default.handlebars->27->415"
9762
+ "default.handlebars->27->419"
9763
]
9764
},
9765
{
@@ -9759,7 +9778,7 @@
9778
"zh-chs": "設備處於休眠狀態(S4)。",
9779
"zh-cht": "設備處於休眠狀態(S4)。",
9780
"xloc": [
9762
- "default.handlebars->27->417"
9781
+ "default.handlebars->27->421"
9782
]
9783
},
9784
{
@@ -9778,7 +9797,7 @@
9797
"zh-chs": "設備處於關機狀態(S5)。",
9798
"zh-cht": "設備處於關機狀態(S5)。",
9799
"xloc": [
9781
- "default.handlebars->27->419"
9800
+ "default.handlebars->27->423"
9801
]
9802
},
9803
{
@@ -9798,7 +9817,7 @@
9817
"zh-cht": "設備處於睡眠狀態(S1)",
9818
"xloc": [
9819
"default-mobile.handlebars->9->193",
9801
- "default.handlebars->27->424"
9820
+ "default.handlebars->27->428"
9821
]
9822
},
9823
{
@@ -9817,7 +9836,7 @@
9836
"zh-chs": "設備處於睡眠狀態(S1)。",
9837
"zh-cht": "設備處於睡眠狀態(S1)。",
9838
"xloc": [
9820
- "default.handlebars->27->411"
9839
+ "default.handlebars->27->415"
9840
]
9841
},
9842
{
@@ -9837,7 +9856,7 @@
9856
"zh-cht": "設備處於睡眠狀態(S2)",
9857
"xloc": [
9858
"default-mobile.handlebars->9->194",
9840
- "default.handlebars->27->425"
9859
+ "default.handlebars->27->429"
9860
]
9861
},
9862
{
@@ -9856,7 +9875,7 @@
9875
"zh-chs": "設備處於睡眠狀態(S2)。",
9876
"zh-cht": "設備處於睡眠狀態(S2)。",
9877
"xloc": [
9859
- "default.handlebars->27->413"
9878
+ "default.handlebars->27->417"
9879
]
9880
},
9881
{
@@ -9876,7 +9895,7 @@
9895
"zh-cht": "設備處於軟斷開狀態(S5)",
9896
"xloc": [
9897
"default-mobile.handlebars->9->197",
9879
- "default.handlebars->27->428"
9898
+ "default.handlebars->27->432"
9899
]
9900
},
9901
{
@@ -9890,8 +9909,8 @@
9909
"xloc": [
9910
"default-mobile.handlebars->9->156",
9911
"default-mobile.handlebars->9->211",
9893
- "default.handlebars->27->203",
9894
- "default.handlebars->27->533"
9912
+ "default.handlebars->27->207",
9913
+ "default.handlebars->27->537"
9914
]
9915
},
9916
{
@@ -9911,7 +9930,7 @@
9930
"zh-cht": "設備已上電",
9931
"xloc": [
9932
"default-mobile.handlebars->9->192",
9914
- "default.handlebars->27->423"
9933
+ "default.handlebars->27->427"
9934
]
9935
},
9936
{
@@ -9930,7 +9949,7 @@
9949
"zh-chs": "設備上電。",
9950
"zh-cht": "設備上電。",
9951
"xloc": [
9933
- "default.handlebars->27->409"
9952
+ "default.handlebars->27->413"
9953
]
9954
},
9955
{
@@ -9950,7 +9969,7 @@
9969
"zh-cht": "設備存在,但無法確定電源狀態",
9970
"xloc": [
9971
"default-mobile.handlebars->9->198",
9953
- "default.handlebars->27->429"
9972
+ "default.handlebars->27->433"
9973
]
9974
},
9975
{
@@ -9969,7 +9988,7 @@
9988
"zh-chs": "設備名稱",
9989
"zh-cht": "設備名稱",
9990
"xloc": [
9972
- "default.handlebars->27->525"
9991
+ "default.handlebars->27->529"
9992
]
9993
},
9994
{
@@ -10001,8 +10020,8 @@
10020
"zh-chs": "设备",
10021
"zh-cht": "設備",
10022
"xloc": [
10004
- "default.handlebars->27->1663",
10005
- "default.handlebars->27->1691"
10023
+ "default.handlebars->27->1674",
10024
+ "default.handlebars->27->1702"
10025
]
10026
},
10027
{
@@ -10021,7 +10040,7 @@
10040
"zh-chs": "殘障人士",
10041
"zh-cht": "殘障人士",
10042
"xloc": [
10024
- "default.handlebars->27->576"
10043
+ "default.handlebars->27->580"
10044
]
10045
},
10046
{
@@ -10042,8 +10061,8 @@
10061
"xloc": [
10062
"default-mobile.handlebars->9->292",
10063
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
10045
- "default.handlebars->27->1297",
10046
- "default.handlebars->27->847",
10064
+ "default.handlebars->27->1308",
10065
+ "default.handlebars->27->851",
10066
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
10067
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
10068
"desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span",
@@ -10088,10 +10107,10 @@
10107
"default-mobile.handlebars->9->1",
10108
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus",
10109
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status",
10091
- "default.handlebars->27->215",
10092
- "default.handlebars->27->232",
10093
- "default.handlebars->27->235",
10094
- "default.handlebars->27->261",
10110
+ "default.handlebars->27->219",
10111
+ "default.handlebars->27->236",
10112
+ "default.handlebars->27->239",
10113
+ "default.handlebars->27->265",
10114
"default.handlebars->27->8",
10115
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus",
10116
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus",
@@ -10110,7 +10129,7 @@
10129
"zh-chs": "在远程设备上显示一个消息框。",
10130
"zh-cht": "在遠程設備上顯示一個消息框。",
10131
"xloc": [
10113
- "default.handlebars->27->697"
10132
+ "default.handlebars->27->701"
10133
]
10134
},
10135
{
@@ -10141,7 +10160,7 @@
10160
"zh-chs": "在远程设备上显示短信",
10161
"zh-cht": "在遠程設備上顯示短信",
10162
"xloc": [
10144
- "default.handlebars->27->612"
10163
+ "default.handlebars->27->616"
10164
]
10165
},
10166
{
@@ -10160,7 +10179,7 @@
10179
"zh-chs": "顯示設備組名稱",
10180
"zh-cht": "顯示設備組名稱",
10181
"xloc": [
10163
- "default.handlebars->27->1213"
10182
+ "default.handlebars->27->1217"
10183
]
10184
},
10185
{
@@ -10179,7 +10198,7 @@
10198
"zh-chs": "顯示名稱",
10199
"zh-cht": "顯示名稱",
10200
"xloc": [
10182
- "default.handlebars->27->816"
10201
+ "default.handlebars->27->820"
10202
]
10203
},
10204
{
@@ -10197,7 +10216,7 @@
10216
"zh-chs": "显示公共链接",
10217
"zh-cht": "顯示公共鏈接",
10218
"xloc": [
10200
- "default.handlebars->27->1489"
10219
+ "default.handlebars->27->1500"
10220
]
10221
},
10222
{
@@ -10216,7 +10235,7 @@
10235
"zh-chs": "沒做什麼",
10236
"zh-cht": "沒做什麼",
10237
"xloc": [
10219
- "default.handlebars->27->1341"
10238
+ "default.handlebars->27->1352"
10239
]
10240
},
10241
{
@@ -10227,10 +10246,10 @@
10246
"zh-chs": "域",
10247
"zh-cht": "域",
10248
"xloc": [
10230
- "default.handlebars->27->1627",
10231
- "default.handlebars->27->1675",
10232
- "default.handlebars->27->1684",
10233
- "default.handlebars->27->1740",
10249
+ "default.handlebars->27->1638",
10250
+ "default.handlebars->27->1686",
10251
+ "default.handlebars->27->1695",
10252
+ "default.handlebars->27->1751",
10253
"mstsc.handlebars->main->1->3->1->2->1->0",
10254
"mstsc.handlebars->main->1->3->1->2->3"
10255
]
@@ -10247,8 +10266,8 @@
10266
"zh-chs": "不要配置",
10267
"zh-cht": "不要配置",
10268
"xloc": [
10250
- "default.handlebars->27->1345",
10251
- "default.handlebars->27->1350"
10269
+ "default.handlebars->27->1356",
10270
+ "default.handlebars->27->1361"
10271
]
10272
},
10273
{
@@ -10263,7 +10282,7 @@
10282
"zh-chs": "不要连接到服务器",
10283
"zh-cht": "不要連接到服務器",
10284
"xloc": [
10266
- "default.handlebars->27->1346"
10285
+ "default.handlebars->27->1357"
10286
]
10287
},
10288
{
@@ -10376,7 +10395,7 @@
10395
"zh-cht": "下載文件",
10396
"xloc": [
10397
"default-mobile.handlebars->9->322",
10379
- "default.handlebars->27->880"
10398
+ "default.handlebars->27->884"
10399
]
10400
},
10401
{
@@ -10395,7 +10414,7 @@
10414
"zh-chs": "下載MeshCentral Router,一個TCP端口映射工具。",
10415
"zh-cht": "下載MeshCentral Router,一個TCP端口映射工具。",
10416
"xloc": [
10398
- "default.handlebars->27->230"
10417
+ "default.handlebars->27->234"
10418
]
10419
},
10420
{
@@ -10414,7 +10433,7 @@
10433
"zh-chs": "下載MeshCmd",
10434
"zh-cht": "下載MeshCmd",
10435
"xloc": [
10417
- "default.handlebars->27->776"
10436
+ "default.handlebars->27->780"
10437
]
10438
},
10439
{
@@ -10433,7 +10452,7 @@
10452
"zh-chs": "下載MeshCmd,這是一個執行許多功能的命令行工具。",
10453
"zh-cht": "下載MeshCmd,這是一個執行許多功能的命令行工具。",
10454
"xloc": [
10436
- "default.handlebars->27->228"
10455
+ "default.handlebars->27->232"
10456
]
10457
},
10458
{
@@ -10464,7 +10483,7 @@
10483
"zh-chs": "下载报告",
10484
"zh-cht": "下載報告",
10485
"xloc": [
10467
- "default.handlebars->27->1545",
10486
+ "default.handlebars->27->1556",
10487
"default.handlebars->container->column_l->p3->3->1->0->3"
10488
]
10489
},
@@ -10484,7 +10503,7 @@
10503
"zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。",
10504
"zh-cht": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。",
10505
"xloc": [
10487
- "default.handlebars->27->769"
10506
+ "default.handlebars->27->773"
10507
]
10508
},
10509
{
@@ -10560,7 +10579,7 @@
10579
"zh-chs": "下載電源事件",
10580
"zh-cht": "下載電源事件",
10581
"xloc": [
10563
- "default.handlebars->27->728"
10582
+ "default.handlebars->27->732"
10583
]
10584
},
10585
{
@@ -10588,7 +10607,7 @@
10607
"zh-chs": "下載服務器備份",
10608
"zh-cht": "下載服務器備份",
10609
"xloc": [
10591
- "default.handlebars->container->column_l->p6->p6info->p2ServerActions->3->p2ServerActionsBackup->0"
10610
+ "default.handlebars->container->column_l->p6->p6info->p2ServerActions->3->p2ServerActionsBackup->1"
10611
]
10612
},
10613
{
@@ -10626,7 +10645,7 @@
10645
"zh-chs": "使用以下一種文件格式下載設備列表。",
10646
"zh-cht": "使用以下一種文件格式下載設備列表。",
10647
"xloc": [
10629
- "default.handlebars->27->473"
10648
+ "default.handlebars->27->477"
10649
]
10650
},
10651
{
@@ -10645,7 +10664,7 @@
10664
"zh-chs": "使用以下一種文件格式下載事件列表。",
10665
"zh-cht": "使用以下一種文件格式下載事件列表。",
10666
"xloc": [
10648
- "default.handlebars->27->1546"
10667
+ "default.handlebars->27->1557"
10668
]
10669
},
10670
{
@@ -10664,7 +10683,7 @@
10683
"zh-chs": "使用以下一種文件格式下載用戶列表。",
10684
"zh-cht": "使用以下一種文件格式下載用戶列表。",
10685
"xloc": [
10667
- "default.handlebars->27->1611"
10686
+ "default.handlebars->27->1622"
10687
]
10688
},
10689
{
@@ -10757,7 +10776,7 @@
10776
"zh-chs": "代理重复",
10777
"zh-cht": "代理重複",
10778
"xloc": [
10760
- "default.handlebars->27->1901"
10779
+ "default.handlebars->27->1912"
10780
]
10781
},
10782
{
@@ -10795,7 +10814,7 @@
10814
"zh-chs": "重複的用戶組",
10815
"zh-cht": "重複的用戶組",
10816
"xloc": [
10798
- "default.handlebars->27->1679"
10817
+ "default.handlebars->27->1690"
10818
]
10819
},
10820
{
@@ -10830,8 +10849,8 @@
10849
"zh-chs": "持續時間",
10850
"zh-cht": "持續時間",
10851
"xloc": [
10833
- "default.handlebars->27->1855",
10834
- "default.handlebars->27->1875",
10852
+ "default.handlebars->27->1866",
10853
+ "default.handlebars->27->1886",
10854
"player.handlebars->3->2"
10855
]
10856
},
@@ -10851,7 +10870,7 @@
10870
"zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。",
10871
"zh-cht": "在激活期間,代理將有權訪問管理員密碼信息。",
10872
"xloc": [
10854
- "default.handlebars->27->1355"
10873
+ "default.handlebars->27->1366"
10874
]
10875
},
10876
{
@@ -10870,7 +10889,7 @@
10889
"zh-chs": "荷蘭語(比利時)",
10890
"zh-cht": "荷蘭語(比利時)",
10891
"xloc": [
10873
- "default.handlebars->27->1053"
10892
+ "default.handlebars->27->1057"
10893
]
10894
},
10895
{
@@ -10889,7 +10908,7 @@
10908
"zh-chs": "荷蘭語(標準)",
10909
"zh-cht": "荷蘭語(標準)",
10910
"xloc": [
10892
- "default.handlebars->27->1052"
10911
+ "default.handlebars->27->1056"
10912
]
10913
},
10914
{
@@ -11105,7 +11124,7 @@
11124
"zh-cht": "編輯裝置",
11125
"xloc": [
11126
"default-mobile.handlebars->9->283",
11108
- "default.handlebars->27->789"
11127
+ "default.handlebars->27->793"
11128
]
11129
},
11130
{
@@ -11127,10 +11146,10 @@
11146
"default-mobile.handlebars->9->409",
11147
"default-mobile.handlebars->9->411",
11148
"default-mobile.handlebars->9->429",
11130
- "default.handlebars->27->1361",
11131
- "default.handlebars->27->1391",
11132
- "default.handlebars->27->1414",
11133
- "default.handlebars->27->1426"
11149
+ "default.handlebars->27->1372",
11150
+ "default.handlebars->27->1402",
11151
+ "default.handlebars->27->1425",
11152
+ "default.handlebars->27->1437"
11153
]
11154
},
11155
{
@@ -11149,7 +11168,7 @@
11168
"zh-chs": "編輯設備組功能",
11169
"zh-cht": "編輯設備組功能",
11170
"xloc": [
11152
- "default.handlebars->27->1377"
11171
+ "default.handlebars->27->1388"
11172
]
11173
},
11174
{
@@ -11168,8 +11187,8 @@
11187
"zh-chs": "編輯設備組權限",
11188
"zh-cht": "編輯設備組權限",
11189
"xloc": [
11171
- "default.handlebars->27->1411",
11172
- "default.handlebars->27->1423"
11190
+ "default.handlebars->27->1422",
11191
+ "default.handlebars->27->1434"
11192
]
11193
},
11194
{
@@ -11188,7 +11207,7 @@
11207
"zh-chs": "編輯設備組用戶同意",
11208
"zh-cht": "編輯設備組用戶同意",
11209
"xloc": [
11191
- "default.handlebars->27->1362"
11210
+ "default.handlebars->27->1373"
11211
]
11212
},
11213
{
@@ -11208,7 +11227,7 @@
11227
"zh-cht": "編輯設備說明",
11228
"xloc": [
11229
"default-mobile.handlebars->9->423",
11211
- "default.handlebars->27->1404"
11230
+ "default.handlebars->27->1415"
11231
]
11232
},
11233
{
@@ -11226,8 +11245,8 @@
11245
"zh-chs": "编辑设备权限",
11246
"zh-cht": "編輯設備權限",
11247
"xloc": [
11229
- "default.handlebars->27->1416",
11230
- "default.handlebars->27->1418"
11248
+ "default.handlebars->27->1427",
11249
+ "default.handlebars->27->1429"
11250
]
11251
},
11252
{
@@ -11238,7 +11257,7 @@
11257
"zh-chs": "编辑设备标签",
11258
"zh-cht": "編輯設備標籤",
11259
"xloc": [
11241
- "default.handlebars->27->472"
11260
+ "default.handlebars->27->476"
11261
]
11262
},
11263
{
@@ -11254,7 +11273,7 @@
11273
"zh-chs": "编辑设备用户同意",
11274
"zh-cht": "編輯設備用戶同意",
11275
"xloc": [
11257
- "default.handlebars->27->1364"
11276
+ "default.handlebars->27->1375"
11277
]
11278
},
11279
{
@@ -11272,7 +11291,7 @@
11291
"zh-chs": "编辑组",
11292
"zh-cht": "編輯組",
11293
"xloc": [
11275
- "default.handlebars->27->673"
11294
+ "default.handlebars->27->677"
11295
]
11296
},
11297
{
@@ -11292,9 +11311,9 @@
11311
"zh-cht": "編輯英特爾®AMT憑據",
11312
"xloc": [
11313
"default-mobile.handlebars->9->273",
11295
- "default.handlebars->27->563",
11296
- "default.handlebars->27->566",
11297
- "default.handlebars->27->735"
11314
+ "default.handlebars->27->567",
11315
+ "default.handlebars->27->570",
11316
+ "default.handlebars->27->739"
11317
]
11318
},
11319
{
@@ -11314,7 +11333,7 @@
11333
"zh-cht": "編輯筆記",
11334
"xloc": [
11335
"default-mobile.handlebars->9->436",
11317
- "default.handlebars->27->1433"
11336
+ "default.handlebars->27->1444"
11337
]
11338
},
11339
{
@@ -11330,7 +11349,7 @@
11349
"zh-chs": "编辑用户同意",
11350
"zh-cht": "編輯用戶同意",
11351
"xloc": [
11333
- "default.handlebars->27->1363"
11352
+ "default.handlebars->27->1374"
11353
]
11354
},
11355
{
@@ -11349,7 +11368,7 @@
11368
"zh-chs": "編輯用戶設備組權限",
11369
"zh-cht": "編輯用戶設備組權限",
11370
"xloc": [
11352
- "default.handlebars->27->1424"
11371
+ "default.handlebars->27->1435"
11372
]
11373
},
11374
{
@@ -11367,7 +11386,7 @@
11386
"zh-chs": "编辑用户设备权限",
11387
"zh-cht": "編輯用戶設備權限",
11388
"xloc": [
11370
- "default.handlebars->27->1419"
11389
+ "default.handlebars->27->1430"
11390
]
11391
},
11392
{
@@ -11386,7 +11405,7 @@
11405
"zh-chs": "編輯用戶組",
11406
"zh-cht": "編輯用戶組",
11407
"xloc": [
11389
- "default.handlebars->27->1718"
11408
+ "default.handlebars->27->1729"
11409
]
11410
},
11411
{
@@ -11402,7 +11421,7 @@
11421
"zh-chs": "编辑用户组设备权限",
11422
"zh-cht": "編輯用戶組設備權限",
11423
"xloc": [
11405
- "default.handlebars->27->1421"
11424
+ "default.handlebars->27->1432"
11425
]
11426
},
11427
{
@@ -11433,7 +11452,7 @@
11452
"zh-chs": "编辑标签",
11453
"zh-cht": "編輯標籤",
11454
"xloc": [
11436
- "default.handlebars->27->454"
11455
+ "default.handlebars->27->458"
11456
]
11457
},
11458
{
@@ -11453,12 +11472,12 @@
11472
"zh-cht": "電子郵件",
11473
"xloc": [
11474
"default-mobile.handlebars->9->78",
11456
- "default.handlebars->27->1629",
11457
- "default.handlebars->27->1744",
11458
- "default.handlebars->27->1746",
11459
- "default.handlebars->27->1786",
11460
- "default.handlebars->27->1802",
11461
- "default.handlebars->27->330",
11475
+ "default.handlebars->27->1640",
11476
+ "default.handlebars->27->1755",
11477
+ "default.handlebars->27->1757",
11478
+ "default.handlebars->27->1797",
11479
+ "default.handlebars->27->1813",
11480
+ "default.handlebars->27->334",
11481
"login-mobile.handlebars->5->42",
11482
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
11483
"login.handlebars->5->43",
@@ -11482,7 +11501,7 @@
11501
"zh-cht": "電郵地址變更",
11502
"xloc": [
11503
"default-mobile.handlebars->9->79",
11485
- "default.handlebars->27->1222"
11504
+ "default.handlebars->27->1226"
11505
]
11506
},
11507
{
@@ -11502,7 +11521,7 @@
11521
"zh-cht": "郵件認證",
11522
"xloc": [
11523
"default-mobile.handlebars->9->68",
11505
- "default.handlebars->27->990"
11524
+ "default.handlebars->27->994"
11525
]
11526
},
11527
{
@@ -11553,7 +11572,7 @@
11572
"zh-cht": "電子郵件驗證",
11573
"xloc": [
11574
"default-mobile.handlebars->9->77",
11556
- "default.handlebars->27->1220"
11575
+ "default.handlebars->27->1224"
11576
]
11577
},
11578
{
@@ -11569,7 +11588,7 @@
11588
"zh-chs": "电子邮件邀请",
11589
"zh-cht": "電子郵件邀請",
11590
"xloc": [
11572
- "default.handlebars->27->327"
11591
+ "default.handlebars->27->331"
11592
]
11593
},
11594
{
@@ -11587,7 +11606,7 @@
11606
"zh-chs": "邮件未验证",
11607
"zh-cht": "郵件未驗證",
11608
"xloc": [
11590
- "default.handlebars->27->1575"
11609
+ "default.handlebars->27->1586"
11610
]
11611
},
11612
{
@@ -11606,8 +11625,8 @@
11625
"zh-chs": "電子郵件已驗證",
11626
"zh-cht": "電子郵件已驗證",
11627
"xloc": [
11609
- "default.handlebars->27->1576",
11610
- "default.handlebars->27->1738"
11628
+ "default.handlebars->27->1587",
11629
+ "default.handlebars->27->1749"
11630
]
11631
},
11632
{
@@ -11626,7 +11645,7 @@
11645
"zh-chs": "電子郵件已驗證。",
11646
"zh-cht": "電子郵件已驗證。",
11647
"xloc": [
11629
- "default.handlebars->27->1635"
11648
+ "default.handlebars->27->1646"
11649
]
11650
},
11651
{
@@ -11645,7 +11664,7 @@
11664
"zh-chs": "電子郵件未驗證",
11665
"zh-cht": "電子郵件未驗證",
11666
"xloc": [
11648
- "default.handlebars->27->1739"
11667
+ "default.handlebars->27->1750"
11668
]
11669
},
11670
{
@@ -11692,7 +11711,7 @@
11711
"zh-chs": "已通过电子邮件验证,并且需要重置密码。",
11712
"zh-cht": "已通過電子郵件驗證,並且需要重置密碼。",
11713
"xloc": [
11695
- "default.handlebars->27->1636"
11714
+ "default.handlebars->27->1647"
11715
]
11716
},
11717
{
@@ -11707,7 +11726,7 @@
11726
"zh-chs": "电子邮件/短信流量",
11727
"zh-cht": "電子郵件/短信流量",
11728
"xloc": [
11710
- "default.handlebars->27->1943"
11729
+ "default.handlebars->27->1954"
11730
]
11731
},
11732
{
@@ -11750,7 +11769,7 @@
11769
"zh-chs": "啟用邀請代碼",
11770
"zh-cht": "啟用邀請代碼",
11771
"xloc": [
11753
- "default.handlebars->27->1454"
11772
+ "default.handlebars->27->1465"
11773
]
11774
},
11775
{
@@ -11789,7 +11808,7 @@
11808
"zh-cht": "啟用電子郵件兩因素驗證。",
11809
"xloc": [
11810
"default-mobile.handlebars->9->70",
11792
- "default.handlebars->27->992"
11811
+ "default.handlebars->27->996"
11812
]
11813
},
11814
{
@@ -11820,7 +11839,7 @@
11839
"zh-chs": "已启用",
11840
"zh-cht": "已啟用",
11841
"xloc": [
11823
- "default.handlebars->27->1877"
11842
+ "default.handlebars->27->1888"
11843
]
11844
},
11845
{
@@ -11851,7 +11870,7 @@
11870
"zh-chs": "时间结束",
11871
"zh-cht": "時間結束",
11872
"xloc": [
11854
- "default.handlebars->27->1874"
11873
+ "default.handlebars->27->1885"
11874
]
11875
},
11876
{
@@ -11870,7 +11889,7 @@
11889
"zh-chs": "英語",
11890
"zh-cht": "英語",
11891
"xloc": [
11873
- "default.handlebars->27->1054"
11892
+ "default.handlebars->27->1058"
11893
]
11894
},
11895
{
@@ -11889,7 +11908,7 @@
11908
"zh-chs": "英文(澳洲)",
11909
"zh-cht": "英文(澳洲)",
11910
"xloc": [
11892
- "default.handlebars->27->1055"
11911
+ "default.handlebars->27->1059"
11912
]
11913
},
11914
{
@@ -11908,7 +11927,7 @@
11927
"zh-chs": "英語(伯利茲)",
11928
"zh-cht": "英語(伯利茲)",
11929
"xloc": [
11911
- "default.handlebars->27->1056"
11930
+ "default.handlebars->27->1060"
11931
]
11932
},
11933
{
@@ -11927,7 +11946,7 @@
11946
"zh-chs": "英文(加拿大)",
11947
"zh-cht": "英文(加拿大)",
11948
"xloc": [
11930
- "default.handlebars->27->1057"
11949
+ "default.handlebars->27->1061"
11950
]
11951
},
11952
{
@@ -11946,7 +11965,7 @@
11965
"zh-chs": "英文(愛爾蘭)",
11966
"zh-cht": "英文(愛爾蘭)",
11967
"xloc": [
11949
- "default.handlebars->27->1058"
11968
+ "default.handlebars->27->1062"
11969
]
11970
},
11971
{
@@ -11965,7 +11984,7 @@
11984
"zh-chs": "英文(牙買加)",
11985
"zh-cht": "英文(牙買加)",
11986
"xloc": [
11968
- "default.handlebars->27->1059"
11987
+ "default.handlebars->27->1063"
11988
]
11989
},
11990
{
@@ -11984,7 +12003,7 @@
12003
"zh-chs": "英文(紐西蘭)",
12004
"zh-cht": "英文(紐西蘭)",
12005
"xloc": [
11987
- "default.handlebars->27->1060"
12006
+ "default.handlebars->27->1064"
12007
]
12008
},
12009
{
@@ -12003,7 +12022,7 @@
12022
"zh-chs": "英文(菲律賓)",
12023
"zh-cht": "英文(菲律賓)",
12024
"xloc": [
12006
- "default.handlebars->27->1061"
12025
+ "default.handlebars->27->1065"
12026
]
12027
},
12028
{
@@ -12022,7 +12041,7 @@
12041
"zh-chs": "英語(南非)",
12042
"zh-cht": "英語(南非)",
12043
"xloc": [
12025
- "default.handlebars->27->1062"
12044
+ "default.handlebars->27->1066"
12045
]
12046
},
12047
{
@@ -12041,7 +12060,7 @@
12060
"zh-chs": "英文(特立尼達和多巴哥)",
12061
"zh-cht": "英文(特立尼達和多巴哥)",
12062
"xloc": [
12044
- "default.handlebars->27->1063"
12063
+ "default.handlebars->27->1067"
12064
]
12065
},
12066
{
@@ -12060,7 +12079,7 @@
12079
"zh-chs": "英文(英國)",
12080
"zh-cht": "英文(英國)",
12081
"xloc": [
12063
- "default.handlebars->27->1064"
12082
+ "default.handlebars->27->1068"
12083
]
12084
},
12085
{
@@ -12079,7 +12098,7 @@
12098
"zh-chs": "美國英語)",
12099
"zh-cht": "美國英語)",
12100
"xloc": [
12082
- "default.handlebars->27->1065"
12101
+ "default.handlebars->27->1069"
12102
]
12103
},
12104
{
@@ -12098,7 +12117,7 @@
12117
"zh-chs": "英文(津巴布韋)",
12118
"zh-cht": "英文(津巴布韋)",
12119
"xloc": [
12101
- "default.handlebars->27->1066"
12120
+ "default.handlebars->27->1070"
12121
]
12122
},
12123
{
@@ -12116,8 +12135,8 @@
12135
"zh-chs": "輸入",
12136
"zh-cht": "輸入",
12137
"xloc": [
12119
- "default.handlebars->27->1248",
12120
- "default.handlebars->27->1249"
12138
+ "default.handlebars->27->1252",
12139
+ "default.handlebars->27->1253"
12140
]
12141
},
12142
{
@@ -12136,7 +12155,7 @@
12155
"zh-chs": "輸入管理領域名稱的逗號分隔列表。",
12156
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
12157
"xloc": [
12139
- "default.handlebars->27->1640"
12158
+ "default.handlebars->27->1651"
12159
]
12160
},
12161
{
@@ -12155,7 +12174,7 @@
12174
"zh-chs": "輸入IP地址範圍以掃描Intel AMT設備。",
12175
"zh-cht": "輸入IP地址範圍以掃描Intel AMT設備。",
12176
"xloc": [
12158
- "default.handlebars->27->295"
12177
+ "default.handlebars->27->299"
12178
]
12179
},
12180
{
@@ -12174,7 +12193,7 @@
12193
"zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
12194
"zh-cht": "輸入文本,然後單擊確定以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
12195
"xloc": [
12177
- "default.handlebars->27->810",
12196
+ "default.handlebars->27->814",
12197
"desktop.handlebars->3->22"
12198
]
12199
},
@@ -12229,7 +12248,7 @@
12248
"zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
12249
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登錄驗證和其他通知。",
12250
"xloc": [
12232
- "default.handlebars->27->987"
12251
+ "default.handlebars->27->991"
12252
]
12253
},
12254
{
@@ -12286,7 +12305,7 @@
12305
"zh-chs": "世界語",
12306
"zh-cht": "世界語",
12307
"xloc": [
12289
- "default.handlebars->27->1067"
12308
+ "default.handlebars->27->1071"
12309
]
12310
},
12311
{
@@ -12305,7 +12324,7 @@
12324
"zh-chs": "愛沙尼亞語",
12325
"zh-cht": "愛沙尼亞語",
12326
"xloc": [
12308
- "default.handlebars->27->1068"
12327
+ "default.handlebars->27->1072"
12328
]
12329
},
12330
{
@@ -12324,7 +12343,7 @@
12343
"zh-chs": "活動詳情",
12344
"zh-cht": "活動詳情",
12345
"xloc": [
12327
- "default.handlebars->27->893"
12346
+ "default.handlebars->27->897"
12347
]
12348
},
12349
{
@@ -12343,7 +12362,7 @@
12362
"zh-chs": "活動列表導出",
12363
"zh-cht": "活動列表導出",
12364
"xloc": [
12346
- "default.handlebars->27->1551"
12365
+ "default.handlebars->27->1562"
12366
]
12367
},
12368
{
@@ -12416,7 +12435,7 @@
12435
"zh-cht": "到期時間",
12436
"xloc": [
12437
"default.handlebars->27->185",
12419
- "default.handlebars->27->701"
12438
+ "default.handlebars->27->705"
12439
]
12440
},
12441
{
@@ -12446,7 +12465,7 @@
12465
"zh-chs": "導出設備信息",
12466
"zh-cht": "導出設備信息",
12467
"xloc": [
12449
- "default.handlebars->27->452"
12468
+ "default.handlebars->27->456"
12469
]
12470
},
12471
{
@@ -12465,7 +12484,7 @@
12484
"zh-chs": "擴展ASCII",
12485
"zh-cht": "擴展ASCII",
12486
"xloc": [
12468
- "default.handlebars->27->838"
12487
+ "default.handlebars->27->842"
12488
]
12489
},
12490
{
@@ -12503,7 +12522,7 @@
12522
"zh-chs": "外部",
12523
"zh-cht": "外部",
12524
"xloc": [
12506
- "default.handlebars->27->1928"
12525
+ "default.handlebars->27->1939"
12526
]
12527
},
12528
{
@@ -12534,7 +12553,7 @@
12553
"zh-chs": "FYRO馬其頓語",
12554
"zh-cht": "馬其頓人",
12555
"xloc": [
12537
- "default.handlebars->27->1118"
12556
+ "default.handlebars->27->1122"
12557
]
12558
},
12559
{
@@ -12553,7 +12572,7 @@
12572
"zh-chs": "法羅語",
12573
"zh-cht": "法羅語",
12574
"xloc": [
12556
- "default.handlebars->27->1069"
12575
+ "default.handlebars->27->1073"
12576
]
12577
},
12578
{
@@ -12587,7 +12606,7 @@
12606
"zh-chs": "无法启动远程终端会话{0}({1})",
12607
"zh-cht": "無法啟動遠程終端會話{0}({1})",
12608
"xloc": [
12590
- "default.handlebars->27->792",
12609
+ "default.handlebars->27->796",
12610
"desktop.handlebars->3->9"
12611
]
12612
},
@@ -12607,7 +12626,7 @@
12626
"zh-chs": "波斯語(波斯語)",
12627
"zh-cht": "波斯語(波斯語)",
12628
"xloc": [
12610
- "default.handlebars->27->1070"
12629
+ "default.handlebars->27->1074"
12630
]
12631
},
12632
{
@@ -12647,7 +12666,7 @@
12666
"zh-chs": "特徵",
12667
"zh-cht": "特徵",
12668
"xloc": [
12650
- "default.handlebars->27->1283"
12669
+ "default.handlebars->27->1294"
12670
]
12671
},
12672
{
@@ -12666,7 +12685,7 @@
12685
"zh-chs": "斐濟",
12686
"zh-cht": "斐濟",
12687
"xloc": [
12669
- "default.handlebars->27->1071"
12688
+ "default.handlebars->27->1075"
12689
]
12690
},
12691
{
@@ -12686,8 +12705,8 @@
12705
"zh-cht": "文件編輯器",
12706
"xloc": [
12707
"default-mobile.handlebars->9->306",
12689
- "default.handlebars->27->505",
12690
- "default.handlebars->27->864"
12708
+ "default.handlebars->27->509",
12709
+ "default.handlebars->27->868"
12710
]
12711
},
12712
{
@@ -12697,8 +12716,8 @@
12716
"zh-chs": "文件操作",
12717
"zh-cht": "文件操作",
12718
"xloc": [
12700
- "default.handlebars->27->849",
12701
- "default.handlebars->27->851"
12719
+ "default.handlebars->27->853",
12720
+ "default.handlebars->27->855"
12721
]
12722
},
12723
{
@@ -12736,7 +12755,7 @@
12755
"zh-chs": "FileSystemDriver",
12756
"zh-cht": "FileSystemDriver",
12757
"xloc": [
12739
- "default.handlebars->27->819"
12758
+ "default.handlebars->27->823"
12759
]
12760
},
12761
{
@@ -12757,9 +12776,9 @@
12776
"xloc": [
12777
"default-mobile.handlebars->9->167",
12778
"default-mobile.handlebars->9->257",
12760
- "default.handlebars->27->1372",
12761
- "default.handlebars->27->1862",
12762
- "default.handlebars->27->247",
12779
+ "default.handlebars->27->1383",
12780
+ "default.handlebars->27->1873",
12781
+ "default.handlebars->27->251",
12782
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
12783
"default.handlebars->contextMenu->cxfiles"
12784
]
@@ -12799,9 +12818,9 @@
12818
"zh-chs": "文件通知",
12819
"zh-cht": "文件通知",
12820
"xloc": [
12802
- "default.handlebars->27->1291",
12803
- "default.handlebars->27->1771",
12804
- "default.handlebars->27->588"
12821
+ "default.handlebars->27->1302",
12822
+ "default.handlebars->27->1782",
12823
+ "default.handlebars->27->592"
12824
]
12825
},
12826
{
@@ -12820,9 +12839,9 @@
12839
"zh-chs": "文件提示",
12840
"zh-cht": "文件提示",
12841
"xloc": [
12823
- "default.handlebars->27->1290",
12824
- "default.handlebars->27->1770",
12825
- "default.handlebars->27->587"
12842
+ "default.handlebars->27->1301",
12843
+ "default.handlebars->27->1781",
12844
+ "default.handlebars->27->591"
12845
]
12846
},
12847
{
@@ -12863,7 +12882,7 @@
12882
"zh-chs": "芬蘭",
12883
"zh-cht": "芬蘭",
12884
"xloc": [
12866
- "default.handlebars->27->1072"
12885
+ "default.handlebars->27->1076"
12886
]
12887
},
12888
{
@@ -12996,8 +13015,8 @@
13015
"zh-chs": "下次登錄時強制重置密碼。",
13016
"zh-cht": "下次登錄時強制重置密碼。",
13017
"xloc": [
12999
- "default.handlebars->27->1634",
13000
- "default.handlebars->27->1811"
13018
+ "default.handlebars->27->1645",
13019
+ "default.handlebars->27->1822"
13020
]
13021
},
13022
{
@@ -13066,7 +13085,7 @@
13085
"zh-chs": "格式",
13086
"zh-cht": "格式",
13087
"xloc": [
13069
- "default.handlebars->27->1542"
13088
+ "default.handlebars->27->1553"
13089
]
13090
},
13091
{
@@ -13105,8 +13124,8 @@
13124
"zh-chs": "自由",
13125
"zh-cht": "自由",
13126
"xloc": [
13108
- "default.handlebars->27->1886",
13109
- "default.handlebars->27->1888"
13127
+ "default.handlebars->27->1897",
13128
+ "default.handlebars->27->1899"
13129
]
13130
},
13131
{
@@ -13145,7 +13164,7 @@
13164
"zh-chs": "法語(比利時)",
13165
"zh-cht": "法語(比利時)",
13166
"xloc": [
13148
- "default.handlebars->27->1074"
13167
+ "default.handlebars->27->1078"
13168
]
13169
},
13170
{
@@ -13164,7 +13183,7 @@
13183
"zh-chs": "法語(加拿大)",
13184
"zh-cht": "法語(加拿大)",
13185
"xloc": [
13167
- "default.handlebars->27->1075"
13186
+ "default.handlebars->27->1079"
13187
]
13188
},
13189
{
@@ -13183,7 +13202,7 @@
13202
"zh-chs": "法語(法國)",
13203
"zh-cht": "法語(法國)",
13204
"xloc": [
13186
- "default.handlebars->27->1076"
13205
+ "default.handlebars->27->1080"
13206
]
13207
},
13208
{
@@ -13202,7 +13221,7 @@
13221
"zh-chs": "法語(盧森堡)",
13222
"zh-cht": "法語(盧森堡)",
13223
"xloc": [
13205
- "default.handlebars->27->1077"
13224
+ "default.handlebars->27->1081"
13225
]
13226
},
13227
{
@@ -13221,7 +13240,7 @@
13240
"zh-chs": "法語(摩納哥)",
13241
"zh-cht": "法語(摩納哥)",
13242
"xloc": [
13224
- "default.handlebars->27->1078"
13243
+ "default.handlebars->27->1082"
13244
]
13245
},
13246
{
@@ -13240,7 +13259,7 @@
13259
"zh-chs": "法語(標準)",
13260
"zh-cht": "法語(標準)",
13261
"xloc": [
13243
- "default.handlebars->27->1073"
13262
+ "default.handlebars->27->1077"
13263
]
13264
},
13265
{
@@ -13259,7 +13278,7 @@
13278
"zh-chs": "法語(瑞士)",
13279
"zh-cht": "法語(瑞士)",
13280
"xloc": [
13262
- "default.handlebars->27->1079"
13281
+ "default.handlebars->27->1083"
13282
]
13283
},
13284
{
@@ -13278,7 +13297,7 @@
13297
"zh-chs": "弗里斯蘭語",
13298
"zh-cht": "弗里斯蘭語",
13299
"xloc": [
13281
- "default.handlebars->27->1080"
13300
+ "default.handlebars->27->1084"
13301
]
13302
},
13303
{
@@ -13297,7 +13316,7 @@
13316
"zh-chs": "弗留利",
13317
"zh-cht": "弗留利",
13318
"xloc": [
13300
- "default.handlebars->27->1081"
13319
+ "default.handlebars->27->1085"
13320
]
13321
},
13322
{
@@ -13320,9 +13339,9 @@
13339
"default-mobile.handlebars->9->401",
13340
"default-mobile.handlebars->9->410",
13341
"default-mobile.handlebars->9->428",
13323
- "default.handlebars->27->1255",
13324
- "default.handlebars->27->1390",
13325
- "default.handlebars->27->1646"
13342
+ "default.handlebars->27->1259",
13343
+ "default.handlebars->27->1401",
13344
+ "default.handlebars->27->1657"
13345
]
13346
},
13347
{
@@ -13341,7 +13360,7 @@
13360
"zh-chs": "正式管理員(保留所有權利)",
13361
"zh-cht": "正式管理員(保留所有權利)",
13362
"xloc": [
13344
- "default.handlebars->27->1425"
13363
+ "default.handlebars->27->1436"
13364
]
13365
},
13366
{
@@ -13376,7 +13395,7 @@
13395
"zh-chs": "完整的設備權限",
13396
"zh-cht": "完整的設備權限",
13397
"xloc": [
13379
- "default.handlebars->27->656"
13398
+ "default.handlebars->27->660"
13399
]
13400
},
13401
{
@@ -13394,7 +13413,7 @@
13413
"zh-chs": "完全权利",
13414
"zh-cht": "完全權利",
13415
"xloc": [
13397
- "default.handlebars->27->672"
13416
+ "default.handlebars->27->676"
13417
]
13418
},
13419
{
@@ -13433,7 +13452,7 @@
13452
"zh-chs": "正式管理員",
13453
"zh-cht": "正式管理員",
13454
"xloc": [
13436
- "default.handlebars->27->1732"
13455
+ "default.handlebars->27->1743"
13456
]
13457
},
13458
{
@@ -13449,7 +13468,7 @@
13468
"zh-cht": "顯卡",
13469
"xloc": [
13470
"default-mobile.handlebars->9->379",
13452
- "default.handlebars->27->955"
13471
+ "default.handlebars->27->959"
13472
]
13473
},
13474
{
@@ -13468,7 +13487,7 @@
13487
"zh-chs": "蓋爾語(愛爾蘭)",
13488
"zh-cht": "蓋爾語(愛爾蘭)",
13489
"xloc": [
13471
- "default.handlebars->27->1083"
13490
+ "default.handlebars->27->1087"
13491
]
13492
},
13493
{
@@ -13487,7 +13506,7 @@
13506
"zh-chs": "蓋爾語(蘇格蘭語)",
13507
"zh-cht": "蓋爾語(蘇格蘭語)",
13508
"xloc": [
13490
- "default.handlebars->27->1082"
13509
+ "default.handlebars->27->1086"
13510
]
13511
},
13512
{
@@ -13506,7 +13525,7 @@
13525
"zh-chs": "加拉契人",
13526
"zh-cht": "加拉契語",
13527
"xloc": [
13509
- "default.handlebars->27->1084"
13528
+ "default.handlebars->27->1088"
13529
]
13530
},
13531
{
@@ -13588,7 +13607,7 @@
13607
"zh-chs": "一般信息",
13608
"zh-cht": "一般信息",
13609
"xloc": [
13591
- "default.handlebars->27->512"
13610
+ "default.handlebars->27->516"
13611
]
13612
},
13613
{
@@ -13625,7 +13644,7 @@
13644
"zh-chs": "格魯吉亞人",
13645
"zh-cht": "格魯吉亞人",
13646
"xloc": [
13628
- "default.handlebars->27->1085"
13647
+ "default.handlebars->27->1089"
13648
]
13649
},
13650
{
@@ -13644,7 +13663,7 @@
13663
"zh-chs": "德語(奧地利)",
13664
"zh-cht": "德語(奧地利)",
13665
"xloc": [
13647
- "default.handlebars->27->1087"
13666
+ "default.handlebars->27->1091"
13667
]
13668
},
13669
{
@@ -13663,7 +13682,7 @@
13682
"zh-chs": "德文(德國)",
13683
"zh-cht": "德文(德國)",
13684
"xloc": [
13666
- "default.handlebars->27->1088"
13685
+ "default.handlebars->27->1092"
13686
]
13687
},
13688
{
@@ -13682,7 +13701,7 @@
13701
"zh-chs": "德文(列支敦士登)",
13702
"zh-cht": "德文(列支敦士登)",
13703
"xloc": [
13685
- "default.handlebars->27->1089"
13704
+ "default.handlebars->27->1093"
13705
]
13706
},
13707
{
@@ -13701,7 +13720,7 @@
13720
"zh-chs": "德語(盧森堡)",
13721
"zh-cht": "德語(盧森堡)",
13722
"xloc": [
13704
- "default.handlebars->27->1090"
13723
+ "default.handlebars->27->1094"
13724
]
13725
},
13726
{
@@ -13720,7 +13739,7 @@
13739
"zh-chs": "德語(標準)",
13740
"zh-cht": "德語(標準)",
13741
"xloc": [
13723
- "default.handlebars->27->1086"
13742
+ "default.handlebars->27->1090"
13743
]
13744
},
13745
{
@@ -13739,7 +13758,7 @@
13758
"zh-chs": "德語(瑞士)",
13759
"zh-cht": "德語(瑞士)",
13760
"xloc": [
13742
- "default.handlebars->27->1091"
13761
+ "default.handlebars->27->1095"
13762
]
13763
},
13764
{
@@ -13758,7 +13777,7 @@
13777
"zh-chs": "獲取此設備的MQTT登錄憑據。",
13778
"zh-cht": "獲取此設備的MQTT登錄憑據。",
13779
"xloc": [
13761
- "default.handlebars->27->637"
13780
+ "default.handlebars->27->641"
13781
]
13782
},
13783
{
@@ -13832,7 +13851,7 @@
13851
"zh-chs": "好",
13852
"zh-cht": "好",
13853
"xloc": [
13835
- "default.handlebars->27->1251"
13854
+ "default.handlebars->27->1255"
13855
]
13856
},
13857
{
@@ -13857,6 +13876,26 @@
13876
"login.handlebars->5->33"
13877
]
13878
},
13879
+ {
13880
+ "en": "Google Drive Backup",
13881
+ "xloc": [
13882
+ "default.handlebars->27->1264",
13883
+ "default.handlebars->27->1267",
13884
+ "default.handlebars->27->201"
13885
+ ]
13886
+ },
13887
+ {
13888
+ "en": "Google Drive backup",
13889
+ "xloc": [
13890
+ "default.handlebars->container->column_l->p6->p6info->p2ServerActions->3->p2ServerActionsGoogleBackup->1->0"
13891
+ ]
13892
+ },
13893
+ {
13894
+ "en": "Google Drive backup is currently active.",
13895
+ "xloc": [
13896
+ "default.handlebars->27->1265"
13897
+ ]
13898
+ },
13899
{
13900
"cs": "řečtina",
13901
"de": "Griechisch",
@@ -13873,7 +13912,7 @@
13912
"zh-chs": "希臘語",
13913
"zh-cht": "希臘語",
13914
"xloc": [
13876
- "default.handlebars->27->1092"
13915
+ "default.handlebars->27->1096"
13916
]
13917
},
13918
{
@@ -13893,7 +13932,7 @@
13932
"zh-cht": "組",
13933
"xloc": [
13934
"default-mobile.handlebars->9->214",
13896
- "default.handlebars->27->540",
13935
+ "default.handlebars->27->544",
13936
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
13937
]
13938
},
@@ -13913,9 +13952,9 @@
13952
"zh-chs": "集體行動",
13953
"zh-cht": "集體行動",
13954
"xloc": [
13916
- "default.handlebars->27->1590",
13917
- "default.handlebars->27->1669",
13918
- "default.handlebars->27->456",
13955
+ "default.handlebars->27->1601",
13956
+ "default.handlebars->27->1680",
13957
+ "default.handlebars->27->460",
13958
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
13959
"default.handlebars->container->column_l->p4->3->1->0->3->3",
13960
"default.handlebars->container->column_l->p50->3->1->0->3->3"
@@ -13930,7 +13969,7 @@
13969
"zh-chs": "通过...分组",
13970
"zh-cht": "通過...分組",
13971
"xloc": [
13933
- "default.handlebars->27->1538"
13972
+ "default.handlebars->27->1549"
13973
]
13974
},
13975
{
@@ -13942,7 +13981,7 @@
13981
"zh-chs": "组标识符",
13982
"zh-cht": "組標識符",
13983
"xloc": [
13945
- "default.handlebars->27->1686"
13984
+ "default.handlebars->27->1697"
13985
]
13986
},
13987
{
@@ -13961,7 +14000,7 @@
14000
"zh-chs": "小組成員",
14001
"zh-cht": "小組成員",
14002
"xloc": [
13964
- "default.handlebars->27->1695"
14003
+ "default.handlebars->27->1706"
14004
]
14005
},
14006
{
@@ -13980,7 +14019,7 @@
14019
"zh-chs": "用戶{0}的組權限。",
14020
"zh-cht": "用戶{0}的組權限。",
14021
"xloc": [
13983
- "default.handlebars->27->1389"
14022
+ "default.handlebars->27->1400"
14023
]
14024
},
14025
{
@@ -13999,7 +14038,7 @@
14038
"zh-chs": "{0}的組權限。",
14039
"zh-cht": "{0}的組權限。",
14040
"xloc": [
14002
- "default.handlebars->27->1388"
14041
+ "default.handlebars->27->1399"
14042
]
14043
},
14044
{
@@ -14049,7 +14088,7 @@
14088
"zh-cht": "客人姓名",
14089
"xloc": [
14090
"default.handlebars->27->184",
14052
- "default.handlebars->27->700"
14091
+ "default.handlebars->27->704"
14092
]
14093
},
14094
{
@@ -14068,7 +14107,7 @@
14107
"zh-chs": "古久拉提",
14108
"zh-cht": "古久拉提",
14109
"xloc": [
14071
- "default.handlebars->27->1093"
14110
+ "default.handlebars->27->1097"
14111
]
14112
},
14113
{
@@ -14108,7 +14147,7 @@
14147
"zh-chs": "海地",
14148
"zh-cht": "海地",
14149
"xloc": [
14111
- "default.handlebars->27->1094"
14150
+ "default.handlebars->27->1098"
14151
]
14152
},
14153
{
@@ -14146,7 +14185,7 @@
14185
"zh-chs": "硬斷開劑",
14186
"zh-cht": "硬斷開劑",
14187
"xloc": [
14149
- "default.handlebars->27->982"
14188
+ "default.handlebars->27->986"
14189
]
14190
},
14191
{
@@ -14165,7 +14204,7 @@
14204
"zh-chs": "堆總數",
14205
"zh-cht": "堆總數",
14206
"xloc": [
14168
- "default.handlebars->27->1930"
14207
+ "default.handlebars->27->1941"
14208
]
14209
},
14210
{
@@ -14184,7 +14223,7 @@
14223
"zh-chs": "堆使用",
14224
"zh-cht": "堆使用",
14225
"xloc": [
14187
- "default.handlebars->27->1929"
14226
+ "default.handlebars->27->1940"
14227
]
14228
},
14229
{
@@ -14203,7 +14242,7 @@
14242
"zh-chs": "希伯來語",
14243
"zh-cht": "希伯來語",
14244
"xloc": [
14206
- "default.handlebars->27->1095"
14245
+ "default.handlebars->27->1099"
14246
]
14247
},
14248
{
@@ -14241,7 +14280,7 @@
14280
"zh-chs": "幫助翻譯MeshCentral",
14281
"zh-cht": "幫助翻譯MeshCentral",
14282
"xloc": [
14244
- "default.handlebars->27->1210"
14283
+ "default.handlebars->27->1214"
14284
]
14285
},
14286
{
@@ -14317,7 +14356,7 @@
14356
"xloc": [
14357
"default-mobile.handlebars->9->182",
14358
"default-mobile.handlebars->9->189",
14320
- "default.handlebars->27->418",
14359
+ "default.handlebars->27->422",
14360
"default.handlebars->27->5"
14361
]
14362
},
@@ -14337,7 +14376,7 @@
14376
"zh-chs": "印地語",
14377
"zh-cht": "印地語",
14378
"xloc": [
14340
- "default.handlebars->27->1096"
14379
+ "default.handlebars->27->1100"
14380
]
14381
},
14382
{
@@ -14373,7 +14412,7 @@
14412
"zh-cht": "持有1個副本",
14413
"xloc": [
14414
"default-mobile.handlebars->9->315",
14376
- "default.handlebars->27->874"
14415
+ "default.handlebars->27->878"
14416
]
14417
},
14418
{
@@ -14393,7 +14432,7 @@
14432
"zh-cht": "持有1個入口以進行移動",
14433
"xloc": [
14434
"default-mobile.handlebars->9->319",
14396
- "default.handlebars->27->878"
14435
+ "default.handlebars->27->882"
14436
]
14437
},
14438
{
@@ -14413,7 +14452,7 @@
14452
"zh-cht": "保留{0}個條目進行複制",
14453
"xloc": [
14454
"default-mobile.handlebars->9->313",
14416
- "default.handlebars->27->872"
14455
+ "default.handlebars->27->876"
14456
]
14457
},
14458
{
@@ -14433,7 +14472,7 @@
14472
"zh-cht": "保留{0}個條目以進行移動",
14473
"xloc": [
14474
"default-mobile.handlebars->9->317",
14436
- "default.handlebars->27->876"
14475
+ "default.handlebars->27->880"
14476
]
14477
},
14478
{
@@ -14453,7 +14492,7 @@
14492
"zh-cht": "為{2}持有{0}項{1}",
14493
"xloc": [
14494
"default-mobile.handlebars->9->129",
14456
- "default.handlebars->27->1524"
14495
+ "default.handlebars->27->1535"
14496
]
14497
},
14498
{
@@ -14476,9 +14515,9 @@
14515
"default-mobile.handlebars->9->217",
14516
"default-mobile.handlebars->9->219",
14517
"default-mobile.handlebars->9->279",
14479
- "default.handlebars->27->281",
14480
- "default.handlebars->27->545",
14481
- "default.handlebars->27->785"
14518
+ "default.handlebars->27->285",
14519
+ "default.handlebars->27->549",
14520
+ "default.handlebars->27->789"
14521
]
14522
},
14523
{
@@ -14497,7 +14536,7 @@
14536
"zh-chs": "主機名同步",
14537
"zh-cht": "主機名同步",
14538
"xloc": [
14500
- "default.handlebars->27->1281"
14539
+ "default.handlebars->27->1292"
14540
]
14541
},
14542
{
@@ -14516,7 +14555,7 @@
14555
"zh-chs": "匈牙利",
14556
"zh-cht": "匈牙利",
14557
"xloc": [
14519
- "default.handlebars->27->1097"
14558
+ "default.handlebars->27->1101"
14559
]
14560
},
14561
{
@@ -14535,8 +14574,8 @@
14574
"zh-chs": "IP範圍",
14575
"zh-cht": "IP範圍",
14576
"xloc": [
14538
- "default.handlebars->27->296",
14539
- "default.handlebars->27->298"
14577
+ "default.handlebars->27->300",
14578
+ "default.handlebars->27->302"
14579
]
14580
},
14581
{
@@ -14577,9 +14616,9 @@
14616
"xloc": [
14617
"default-mobile.handlebars->9->348",
14618
"default-mobile.handlebars->9->352",
14580
- "default.handlebars->27->914",
14581
- "default.handlebars->27->924",
14582
- "default.handlebars->27->928"
14619
+ "default.handlebars->27->918",
14620
+ "default.handlebars->27->928",
14621
+ "default.handlebars->27->932"
14622
]
14623
},
14624
{
@@ -14600,9 +14639,9 @@
14639
"xloc": [
14640
"default-mobile.handlebars->9->346",
14641
"default-mobile.handlebars->9->350",
14603
- "default.handlebars->27->912",
14604
- "default.handlebars->27->922",
14605
- "default.handlebars->27->926"
14642
+ "default.handlebars->27->916",
14643
+ "default.handlebars->27->926",
14644
+ "default.handlebars->27->930"
14645
]
14646
},
14647
{
@@ -14623,10 +14662,10 @@
14662
"xloc": [
14663
"default-mobile.handlebars->9->345",
14664
"default-mobile.handlebars->9->347",
14626
- "default.handlebars->27->911",
14627
- "default.handlebars->27->913",
14628
- "default.handlebars->27->921",
14629
- "default.handlebars->27->923"
14665
+ "default.handlebars->27->915",
14666
+ "default.handlebars->27->917",
14667
+ "default.handlebars->27->925",
14668
+ "default.handlebars->27->927"
14669
]
14670
},
14671
{
@@ -14699,8 +14738,8 @@
14738
"xloc": [
14739
"default-mobile.handlebars->9->349",
14740
"default-mobile.handlebars->9->351",
14702
- "default.handlebars->27->925",
14703
- "default.handlebars->27->927"
14741
+ "default.handlebars->27->929",
14742
+ "default.handlebars->27->931"
14743
]
14744
},
14745
{
@@ -14755,7 +14794,7 @@
14794
"zh-chs": "冰島的",
14795
"zh-cht": "冰島的",
14796
"xloc": [
14758
- "default.handlebars->27->1098"
14797
+ "default.handlebars->27->1102"
14798
]
14799
},
14800
{
@@ -14775,7 +14814,7 @@
14814
"zh-cht": "圖標選擇",
14815
"xloc": [
14816
"default-mobile.handlebars->9->277",
14778
- "default.handlebars->27->783"
14817
+ "default.handlebars->27->787"
14818
]
14819
},
14820
{
@@ -14795,7 +14834,7 @@
14834
"zh-cht": "識別碼",
14835
"xloc": [
14836
"default-mobile.handlebars->9->377",
14798
- "default.handlebars->27->953"
14837
+ "default.handlebars->27->957"
14838
]
14839
},
14840
{
@@ -14905,7 +14944,7 @@
14944
"zh-cht": "個別裝置",
14945
"xloc": [
14946
"default-mobile.handlebars->9->148",
14908
- "default.handlebars->27->200"
14947
+ "default.handlebars->27->204"
14948
]
14949
},
14950
{
@@ -14924,7 +14963,7 @@
14963
"zh-chs": "印度尼西亞",
14964
"zh-cht": "印度尼西亞",
14965
"xloc": [
14927
- "default.handlebars->27->1099"
14966
+ "default.handlebars->27->1103"
14967
]
14968
},
14969
{
@@ -15056,7 +15095,7 @@
15095
"zh-chs": "安裝CIRA",
15096
"zh-cht": "安裝CIRA",
15097
"xloc": [
15059
- "default.handlebars->27->1314"
15098
+ "default.handlebars->27->1325"
15099
]
15100
},
15101
{
@@ -15075,7 +15114,7 @@
15114
"zh-chs": "安裝本地",
15115
"zh-cht": "安裝本地",
15116
"xloc": [
15078
- "default.handlebars->27->1316"
15117
+ "default.handlebars->27->1327"
15118
]
15119
},
15120
{
@@ -15094,11 +15133,11 @@
15133
"zh-chs": "安裝類型",
15134
"zh-cht": "安裝方式",
15135
"xloc": [
15097
- "default.handlebars->27->1456",
15098
- "default.handlebars->27->1463",
15099
- "default.handlebars->27->345",
15100
- "default.handlebars->27->359",
15101
- "default.handlebars->27->373"
15136
+ "default.handlebars->27->1467",
15137
+ "default.handlebars->27->1474",
15138
+ "default.handlebars->27->349",
This file is too large to show in full.
views/default.handlebars
+47
-5
@@ -458,11 +458,12 @@
458
</div>
459
<div id="p2ServerActions">
460
<p><strong>Server actions</strong></p>
461
- <div class="mL">
462
- <div id="p2ServerActionsBackup"><a href="{{{domainurl}}}backup.zip" rel="noreferrer noopener" target="_blank">Download server backup</a></div>
463
- <div id="p2ServerActionsRestore"><a href=# onclick="return server_showRestoreDlg()">Restore server with backup</a></div>
464
- <div id="p2ServerActionsVersion"><a href=# onclick="return server_showVersionDlg()">Check server version</a></div>
465
- <div id="p2ServerActionsErrors"><a href=# onclick="return server_showErrorsDlg()">Show server error log</a></div>
461
+ <div style="margin-left:25px">
462
+ <div id="p2ServerActionsBackup"><div class="p2AccountActions"><span style="display:none"><strong>✓</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>✓</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>✓</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>✓</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>✓</strong></span></div><a href=# onclick="return server_showErrorsDlg()">Show server error log</a></div>
467
</div>
468
</div>
469
<br /><strong>Server Statistics</strong><br /><br />
@@ -1273,6 +1274,7 @@
1274
var xterm = null;
1275
var xtermfit = null;
1276
var xtermResizeTimer = null;
1277
+ var miscState = {};
1278
1279
// Console Message Display Timers
1280
var p11DeskConsoleMsgTimer = null;
@@ -3048,6 +3050,21 @@
3050
setDialogMode(2, "Plugin Action", 3, pluginActionEx, format('Select the version to downgrade the plugin: {0}', message.info.name) + '<hr />' + vSelect + '<hr />' + "Please be aware that downgrading is not recommended. Please only do so in the event that a recent upgrade has broken something." + + '<input id="lastPluginAct" type="hidden" value="downgrade" /><input id="lastPluginId" type="hidden" value="' + message.info.id + '" />');
3051
break;
3052
}
3053
+ case 'serverBackup': {
3054
+ if (message.service == 'googleDrive') {
3055
+ QV('p2ServerActionsGoogleBackup', message.state > 0);
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 />';
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');
3063
+ Q('gdcode').focus();
3064
+ }
3065
+ }
3066
+ break;
3067
+ }
3068
case 'pluginError': {
3069
setDialogMode(2, "Plugin Error", 1, null, message.msg);
3070
break;
@@ -9119,6 +9136,31 @@
9136
return false;
9137
}
9138
9139
+ function server_setupGoogleDriveBackup() {
9140
+ if (xxdialogMode || (miscState['googleDrive'] == null)) return false;
9141
+ 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');
9147
+ Q('gdclientid').focus();
9148
+ } 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>';
9151
+ setDialogMode(2, "Google Drive Backup", 3, server_setupGoogleDriveBackupEx, x, 'gd0');
9152
+ QE('idx_dlgOkButton', false);
9153
+ }
9154
+ }
9155
+
9156
+ function server_setupGoogleDriveBackupCheck() { QE('idx_dlgOkButton', Q('gdcheck').checked); }
9157
+
9158
+ function server_setupGoogleDriveBackupEx(b, t) {
9159
+ if (t == 'gd0') { meshserver.send({ action: 'serverBackup', service: 'googleDrive', state: 0 }); }
9160
+ if (t == 'gd1') { meshserver.send({ action: 'serverBackup', service: 'googleDrive', state: 1, clientid: Q('gdclientid').value, clientsecret: Q('gdclientsecret').value }); }
9161
+ if (t == 'gd2') { meshserver.send({ action: 'serverBackup', service: 'googleDrive', state: 2, code: Q('gdcode').value }); }
9162
+ }
9163
+
9164
function server_showRestoreDlg() {
9165
if (xxdialogMode) return false;
9166
var x = "Restore the server using a backup, <span style=color:red>this will delete the existing server data</span>. Only do this if you know what you are doing." + '<br /><br />';