Added group device tag editing.

Ylian Saint-Hilaire committed Jul 30, 2020 at 17:34 UTC 1059382dd8297ee968ba7c306f85a39a8f91a4a4
59 files changed +1586 -1464
common.js
+6 -6
@@ -12,10 +12,10 @@
12 /*jshint node: true */
13 /*jshint strict: false */
14 /*jshint esversion: 6 */
15 -"use strict";
15 +'use strict';
16
17 -const fs = require("fs");
18 -const crypto = require("crypto");
17 +const fs = require('fs');
18 +const crypto = require('crypto');
19
20 // Binary encoding and decoding functions
21 module.exports.ReadShort = function (v, p) { return (v.charCodeAt(p) << 8) + v.charCodeAt(p + 1); };
@@ -40,7 +40,7 @@ module.exports.format = function (format) { var args = Array.prototype.slice.cal
40
41 // Print object for HTML
42 module.exports.ObjectToStringEx = function (x, c) {
43 - var r = "", i;
43 + var r = '', i;
44 if (x != 0 && (!x || x == null)) return "(Null)";
45 if (x instanceof Array) { for (i in x) { r += '<br />' + gap(c) + "Item #" + i + ": " + module.exports.ObjectToStringEx(x[i], c + 1); } }
46 else if (x instanceof Object) { for (i in x) { r += '<br />' + gap(c) + i + " = " + module.exports.ObjectToStringEx(x[i], c + 1); } }
@@ -50,7 +50,7 @@ module.exports.ObjectToStringEx = function (x, c) {
50
51 // Print object for console
52 module.exports.ObjectToStringEx2 = function (x, c) {
53 - var r = "", i;
53 + var r = '', i;
54 if (x != 0 && (!x || x == null)) return "(Null)";
55 if (x instanceof Array) { for (i in x) { r += '\r\n' + gap2(c) + "Item #" + i + ": " + module.exports.ObjectToStringEx2(x[i], c + 1); } }
56 else if (x instanceof Object) { for (i in x) { r += '\r\n' + gap2(c) + i + " = " + module.exports.ObjectToStringEx2(x[i], c + 1); } }
@@ -130,7 +130,7 @@ module.exports.ComputeDigesthash = function (username, password, realm, method,
130 module.exports.toNumber = function (str) { var x = parseInt(str); if (x == str) return x; return str; };
131 module.exports.escapeHtml = function (string) { return String(string).replace(/[&<>"'`=\/]/g, function (s) { return { '&': '&amp;', '<': '&lt;', '>': '&gt;', '"': '&quot;', "'": '&#39;', '/': '&#x2F;', '`': '&#x60;', '=': '&#x3D;' }[s]; }); };
132 module.exports.escapeHtmlBreaks = function (string) { return String(string).replace(/[&<>"'`=\/]/g, function (s) { return { '&': '&amp;', '<': '&lt;', '>': '&gt;', '"': '&quot;', "'": '&#39;', '/': '&#x2F;', '`': '&#x60;', '=': '&#x3D;', '\r': '<br />', '\n': '' }[s]; }); };
133 -module.exports.zeroPad = function(num, c) { if (c == null) { c = 2; } var s = "000000" + num; return s.substr(s.length - c); }
133 +module.exports.zeroPad = function(num, c) { if (c == null) { c = 2; } var s = '000000' + num; return s.substr(s.length - c); }
134
135 // Lowercase all the names in a object recursively
136 // Allow for exception keys, child of exceptions will not get lower-cased.
emails/translations/account-check-min_cs.html new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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_fr.html new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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-invite-min_cs.html new
+1
@@ -0,0 +1 @@
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>&nbsp;&nbsp;&nbsp;Uživatelské jméno: <b notrans=1>[[[ACCOUNTNAME]]]</b><br>&nbsp;&nbsp;&nbsp;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 new
+1
@@ -0,0 +1 @@
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>&nbsp;&nbsp;&nbsp;Benutzername: <b notrans=1>[[[ACCOUNTNAME]]]</b><br>&nbsp;&nbsp;&nbsp;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 new
+1
@@ -0,0 +1 @@
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>&nbsp;&nbsp;&nbsp;Usuario: <b notrans=1>[[[ACCOUNTNAME]]]</b><br>&nbsp;&nbsp;&nbsp;Contraseña: <b notrans=1>[[[PASSWORD]]]</b></p>Atentamente,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_fr.html new
+1
@@ -0,0 +1 @@
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>&nbsp;&nbsp;&nbsp;Nom d'utilisateur: <b notrans=1>[[[ACCOUNTNAME]]]</b><br>&nbsp;&nbsp;&nbsp;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 new
+1
@@ -0,0 +1 @@
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>&nbsp;&nbsp;&nbsp;उपयोगकर्ता नाम: <b notrans=1>[[[ACCOUNTNAME]]]</b><br>&nbsp;&nbsp;&nbsp;कुंजिका: <b notrans=1>[[[PASSWORD]]]</b></p>सादर,<br>[[[उपयोगकर्ता नाम]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_ja.html new
+1
@@ -0,0 +1 @@
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>&nbsp;&nbsp;&nbsp;ユーザー名: <b notrans=1>[[[ACCOUNTNAME]]]</b><br>&nbsp;&nbsp;&nbsp;パスワード: <b notrans=1>[[[PASSWORD]]]</b></p>宜しくお願いします、<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_ko.html new
+1
@@ -0,0 +1 @@
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>&nbsp;&nbsp;&nbsp;사용자 이름: <b notrans=1>[[[ACCOUNTNAME]]]</b><br>&nbsp;&nbsp;&nbsp;암호: <b notrans=1>[[[PASSWORD]]]</b></p>최고의 안부를 전합니다,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_nl.html new
+1
@@ -0,0 +1 @@
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>&nbsp;&nbsp;&nbsp;Gebruikersnaam: <b notrans=1>[[[ACCOUNTNAME]]]</b><br>&nbsp;&nbsp;&nbsp;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 new
+1
@@ -0,0 +1 @@
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>&nbsp;&nbsp;&nbsp;Nome de usuário: <b notrans=1>[[[ACCOUNTNAME]]]</b><br>&nbsp;&nbsp;&nbsp;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 new
+1
@@ -0,0 +1 @@
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>&nbsp;&nbsp;&nbsp;Имя пользователя: <b notrans=1>[[[ACCOUNTNAME]]]</b><br>&nbsp;&nbsp;&nbsp;Пароль: <b notrans=1>[[[PASSWORD]]]</b></p>С уважением,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-invite-min_zh-chs.html new
+1
@@ -0,0 +1 @@
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>&nbsp;&nbsp;&nbsp;用戶名: <b notrans=1>[[[ACCOUNTNAME]]]</b><br>&nbsp;&nbsp;&nbsp;密碼: <b notrans=1>[[[PASSWORD]]]</b></p>最好的祝福,<br>[[[USERNAME]]]<br></div>
\ No newline at end of file
emails/translations/account-login-min_cs.html new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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_fr.html new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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_fr.html new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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 new
+1
@@ -0,0 +1 @@
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/mesh-invite-min_cs.html new
+1
@@ -0,0 +1 @@
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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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 &amp;&amp; chmod 755 ./meshinstall.sh &amp;&amp; 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 new
+1
@@ -0,0 +1 @@
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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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 &amp;&amp; chmod 755 ./meshinstall.sh &amp;&amp; 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 new
+1
@@ -0,0 +1 @@
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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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 &amp;&amp; chmod 755 ./meshinstall.sh &amp;&amp; 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_fr.html new
+1
@@ -0,0 +1 @@
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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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 &amp;&amp; chmod 755 ./meshinstall.sh &amp;&amp; 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 new
+1
@@ -0,0 +1 @@
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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;installflags=[[[INSTALLFLAGS]]]">विंडोज के लिए मेशजेंट को डाउनलोड करने के लिए यहां क्लिक करें।</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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 &amp;&amp; chmod 755 ./meshinstall.sh &amp;&amp; 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 new
+1
@@ -0,0 +1 @@
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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;installflags=[[[INSTALLFLAGS]]]">Windows用のMeshAgentをダウンロードするには、ここをクリックしてください。</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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 &amp;&amp; chmod 755 ./meshinstall.sh &amp;&amp; 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 new
+1
@@ -0,0 +1 @@
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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;installflags=[[[INSTALLFLAGS]]]">Windows를 위한 MeshAgent를 다운로드 하려면 여기를 클릭하십시오.</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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 &amp;&amp; chmod 755 ./meshinstall.sh &amp;&amp; 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 new
+1
@@ -0,0 +1 @@
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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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 &amp;&amp; chmod 755 ./meshinstall.sh &amp;&amp; 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 new
+1
@@ -0,0 +1 @@
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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;installflags=[[[INSTALLFLAGS]]]">Click here to download the MeshAgent for Apple OSX.</a></p></area-osx><area-linux><p>For Linux, cut &amp; 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 &amp;&amp; chmod 755 ./meshinstall.sh &amp;&amp; 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 new
+1
@@ -0,0 +1 @@
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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;installflags=[[[INSTALLFLAGS]]]">Нажмите здесь, чтобы загрузить MeshAgent для Windows.</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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 &amp;&amp; chmod 755 ./meshinstall.sh &amp;&amp; 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 new
+1
@@ -0,0 +1 @@
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&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;installflags=[[[INSTALLFLAGS]]]">单击此处下载适用于Windows的MeshAgent。</a></p></area-windows><area-osx><p style=margin-left:30px><a href="[[[SERVERURL]]]/meshagents?id=16&amp;meshid=[[[MESHIDHEX]]]&amp;tag=mailto:[[[EMAIL]]]&amp;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 &amp;&amp; chmod 755 ./meshinstall.sh &amp;&amp; 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
public/scripts/amt-wsman-0.2.0-min.js
+1 -1
@@ -1 +1 @@
1 -var WsmanStackCreateService=function(e,s,r,a,o,t){var p={};function l(e){if(!e)return"";var s=" ";for(var r in e)e.hasOwnProperty(r)&&0===r.indexOf("@")&&(s+=r.substring(1)+'="'+e[r]+'" ');return s}function w(e){if(!e)return"";if("string"==typeof e)return e;if(e.InstanceID)return'<w:SelectorSet><w:Selector Name="InstanceID">'+e.InstanceID+"</w:Selector></w:SelectorSet>";var s="<w:SelectorSet>";for(var r in e)if(e.hasOwnProperty(r)){if(s+='<w:Selector Name="'+r+'">',e[r].ReferenceParameters){s+="<a:EndpointReference>",s+="<a:Address>"+e[r].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+e[r].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var a=e[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o<a.length;o++)s+="<w:Selector"+l(a[o])+">"+a[o].Value+"</w:Selector>";else s+="<w:Selector"+l(a)+">"+a.Value+"</w:Selector>";s+="</w:SelectorSet></a:ReferenceParameters></a:EndpointReference>"}else s+=e[r];s+="</w:Selector>"}return s+="</w:SelectorSet>"}return p.NextMessageId=1,p.Address="/wsman",p.comm=CreateWsmanComm(e,s,r,a,o,t),p.PerformAjax=function(e,o,s,r,a){null==a&&(a=""),p.comm.PerformAjax('<?xml version=\"1.0\" encoding=\"utf-8\"?><Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:w="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd" xmlns="http://www.w3.org/2003/05/soap-envelope" '+a+"><Header><a:Action>"+e,function(e,s,r){if(200==s){var a=p.ParseWsman(e);a&&null!=a?o(p,a.Header.ResourceURI,a,200,r):o(p,null,{Header:{HttpError:s}},601,r)}else o(p,null,{Header:{HttpError:s}},s,r)},s,r)},p.CancelAllQueries=function(e){p.comm.CancelAllQueries(e)},p.GetNameFromUrl=function(e){var s=e.lastIndexOf("/");return-1==s?e:e.substring(s+1)},p.ExecSubscribe=function(e,s,r,a,o,t,n,l,d,c){var m="",i="";null!=d&&null!=c&&(m="<t:IssuedTokens><t:RequestSecurityTokenResponse><t:TokenType>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken</t:TokenType><t:RequestedSecurityToken><se:UsernameToken><se:Username>"+d+'</se:Username><se:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd#PasswordText">'+c+"</se:Password></se:UsernameToken></t:RequestedSecurityToken></t:RequestSecurityTokenResponse></t:IssuedTokens>",i='<Auth Profile="http://schemas.xmlsoap.org/ws/2004/08/eventing/DeliveryModes/secprofile/http/digest"/>'),l=null!=l&&null!=l?"<a:ReferenceParameters>"+l+"</a:ReferenceParameters>":"";var u="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(n)+m+'</Header><Body><e:Subscribe><e:Delivery Mode="http://schemas.dmtf.org/wbem/wsman/1/wsman/'+s+'"><e:NotifyTo><a:Address>'+r+"</a:Address></e:NotifyTo>"+i+"</e:Delivery><e:Expires>PT0.000000S</e:Expires></e:Subscribe>";p.PerformAjax(u+"</Body></Envelope>",a,o,t,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing" xmlns:t="http://schemas.xmlsoap.org/ws/2005/02/trust" xmlns:se="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:m="http://x.com"')},p.ExecUnSubscribe=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(o)+"</Header><Body><e:Unsubscribe/>";p.PerformAjax(t+"</Body></Envelope>",s,r,a,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing"')},p.ExecPut=function(e,s,r,a,o,t){var n="http://schemas.xmlsoap.org/ws/2004/09/transfer/Put</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout>"+w(t)+"</Header><Body>"+function(e,s){if(!e||null==s)return"";var r=p.GetNameFromUrl(e),a="<r:"+r+' xmlns:r="'+e+'">';for(var o in s)if(s.hasOwnProperty(o)&&0!==o.indexOf("__")&&0!==o.indexOf("@")&&void 0!==s[o]&&null!==s[o]&&"function"!=typeof s[o])if("object"==typeof s[o]&&s[o].ReferenceParameters){a+="<r:"+o+"><a:Address>"+s[o].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+s[o].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var t=s[o].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n<t.length;n++)a+="<w:Selector"+l(t[n])+">"+t[n].Value+"</w:Selector>";else a+="<w:Selector"+l(t)+">"+t.Value+"</w:Selector>";a+="</w:SelectorSet></a:ReferenceParameters></r:"+o+">"}else if(Array.isArray(s[o]))for(n=0;n<s[o].length;n++)a+="<r:"+o+">"+s[o][n].toString()+"</r:"+o+">";else a+="<r:"+o+">"+s[o].toString()+"</r:"+o+">";return a+="</r:"+r+">"}(e,s);p.PerformAjax(n+"</Body></Envelope>",r,a,o)},p.ExecCreate=function(e,s,r,a,o,t){var n=p.GetNameFromUrl(e),l="http://schemas.xmlsoap.org/ws/2004/09/transfer/Create</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(t)+"</Header><Body><g:"+n+' xmlns:g="'+e+'">';for(var d in s)l+="<g:"+d+">"+s[d]+"</g:"+d+">";p.PerformAjax(l+"</g:"+n+"></Body></Envelope>",r,a,o)},p.ExecCreateXml=function(e,s,r,a,o){var t=p.GetNameFromUrl(e);p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Create</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout></Header><Body><r:"+t+' xmlns:r="'+e+'">'+s+"</r:"+t+"></Body></Envelope>",r,a,o)},p.ExecDelete=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(s)+"</Header><Body /></Envelope>";p.PerformAjax(t,r,a,o)},p.ExecGet=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body /></Envelope>",s,r,a)},p.ExecMethod=function(e,s,r,a,o,t,n){var l="";for(var d in r)if(null!=r[d])if(Array.isArray(r[d]))for(var c in r[d])l+="<r:"+d+">"+r[d][c]+"</r:"+d+">";else l+="<r:"+d+">"+r[d]+"</r:"+d+">";p.ExecMethodXml(e,s,l,a,o,t,n)},p.ExecMethodXml=function(e,s,r,a,o,t,n){p.PerformAjax(e+"/"+s+"</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(n)+"</Header><Body><r:"+s+'_INPUT xmlns:r="'+e+'">'+r+"</r:"+s+"_INPUT></Body></Envelope>",a,o,t)},p.ExecEnum=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Enumerate xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration" /></Body></Envelope>',s,r,a)},p.ExecPull=function(e,s,r,a,o){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Pull xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration"><EnumerationContext>'+s+"</EnumerationContext><MaxElements>999</MaxElements><MaxCharacters>99999</MaxCharacters></Pull></Body></Envelope>",r,a,o)},p.ParseWsman=function(s){try{s.childNodes||(s=function(e){{if(window.DOMParser)return(new DOMParser).parseFromString(e,"text/xml");var s=new ActiveXObject("Microsoft.XMLDOM");return s.async=!1,s.loadXML(e),s}}(s));var e,r={Header:{}},a=s.getElementsByTagName("Header")[0];if(!(a=a||s.getElementsByTagName("a:Header")[0]))return null;for(var o=0;o<a.childNodes.length;o++){var t=a.childNodes[o];r.Header[t.localName]=t.textContent}var n=s.getElementsByTagName("Body")[0];return(n=n||s.getElementsByTagName("a:Body")[0])?(0<n.childNodes.length&&((e=n.childNodes[0].localName).indexOf("_OUTPUT")==e.length-7&&(e=e.substring(0,e.length-7)),r.Header.Method=e,r.Body=function e(s){var r,a={};for(var o=0;o<s.childNodes.length;o++){var t=s.childNodes[o];"true"==(r=0==t.childElementCount?t.textContent:e(t))&&(r=!0),"false"==r&&(r=!1);var n=r;if(0<t.attributes.length){n={Value:r};for(var l=0;l<t.attributes.length;l++)n["@"+t.attributes[l].name]=t.attributes[l].value}a[t.localName]instanceof Array?a[t.localName].push(n):null==a[t.localName]?a[t.localName]=n:a[t.localName]=[a[t.localName],n]}return a}(n.childNodes[0])),r):null}catch(e){return console.log("Unable to parse XML: "+s),null}},p}
\ No newline at end of file
1 +var WsmanStackCreateService=function(e,s,r,a,o,t){var p={};function l(e){if(!e)return"";var s=" ";for(var r in e)e.hasOwnProperty(r)&&0===r.indexOf("@")&&(s+=r.substring(1)+'="'+e[r]+'" ');return s}function w(e){if(!e)return"";if("string"==typeof e)return e;if(e.InstanceID)return'<w:SelectorSet><w:Selector Name="InstanceID">'+e.InstanceID+"</w:Selector></w:SelectorSet>";var s="<w:SelectorSet>";for(var r in e)if(e.hasOwnProperty(r)){if(s+='<w:Selector Name="'+r+'">',e[r].ReferenceParameters){s+="<a:EndpointReference>",s+="<a:Address>"+e[r].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+e[r].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var a=e[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o<a.length;o++)s+="<w:Selector"+l(a[o])+">"+a[o].Value+"</w:Selector>";else s+="<w:Selector"+l(a)+">"+a.Value+"</w:Selector>";s+="</w:SelectorSet></a:ReferenceParameters></a:EndpointReference>"}else s+=e[r];s+="</w:Selector>"}return s+="</w:SelectorSet>"}return p.NextMessageId=1,p.Address="/wsman",p.comm=CreateWsmanComm(e,s,r,a,o,t),p.PerformAjax=function(e,o,s,r,a){null==a&&(a=""),p.comm.PerformAjax('<?xml version=\"1.0\" encoding=\"utf-8\"?><Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:w="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd" xmlns="http://www.w3.org/2003/05/soap-envelope" '+a+"><Header><a:Action>"+e,function(e,s,r){if(200==s){var a=p.ParseWsman(e);a&&null!=a?o(p,a.Header.ResourceURI,a,200,r):o(p,null,{Header:{HttpError:s}},601,r)}else o(p,null,{Header:{HttpError:s}},s,r)},s,r)},p.CancelAllQueries=function(e){p.comm.CancelAllQueries(e)},p.GetNameFromUrl=function(e){var s=e.lastIndexOf("/");return-1==s?e:e.substring(s+1)},p.ExecSubscribe=function(e,s,r,a,o,t,n,l,c,d){var m="",i="";null!=c&&null!=d&&(m="<t:IssuedTokens><t:RequestSecurityTokenResponse><t:TokenType>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken</t:TokenType><t:RequestedSecurityToken><se:UsernameToken><se:Username>"+c+'</se:Username><se:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd#PasswordText">'+d+"</se:Password></se:UsernameToken></t:RequestedSecurityToken></t:RequestSecurityTokenResponse></t:IssuedTokens>",i='<Auth Profile="http://schemas.xmlsoap.org/ws/2004/08/eventing/DeliveryModes/secprofile/http/digest"/>'),l=null!=l&&null!=l?"<a:ReferenceParameters>"+l+"</a:ReferenceParameters>":"";var u="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(n)+m+'</Header><Body><e:Subscribe><e:Delivery Mode="http://schemas.dmtf.org/wbem/wsman/1/wsman/'+s+'"><e:NotifyTo><a:Address>'+r+"</a:Address></e:NotifyTo>"+i+"</e:Delivery><e:Expires>PT0.000000S</e:Expires></e:Subscribe>";p.PerformAjax(u+"</Body></Envelope>",a,o,t,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing" xmlns:t="http://schemas.xmlsoap.org/ws/2005/02/trust" xmlns:se="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:m="http://x.com"')},p.ExecUnSubscribe=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(o)+"</Header><Body><e:Unsubscribe/>";p.PerformAjax(t+"</Body></Envelope>",s,r,a,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing"')},p.ExecPut=function(e,s,r,a,o,t){var n="http://schemas.xmlsoap.org/ws/2004/09/transfer/Put</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout>"+w(t)+"</Header><Body>"+function(e,s){if(!e||null==s)return"";var r=p.GetNameFromUrl(e),a="<r:"+r+' xmlns:r="'+e+'">';for(var o in s)if(s.hasOwnProperty(o)&&0!==o.indexOf("__")&&0!==o.indexOf("@")&&void 0!==s[o]&&null!==s[o]&&"function"!=typeof s[o])if("object"==typeof s[o]&&s[o].ReferenceParameters){a+="<r:"+o+"><a:Address>"+s[o].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+s[o].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var t=s[o].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n<t.length;n++)a+="<w:Selector"+l(t[n])+">"+t[n].Value+"</w:Selector>";else a+="<w:Selector"+l(t)+">"+t.Value+"</w:Selector>";a+="</w:SelectorSet></a:ReferenceParameters></r:"+o+">"}else if(Array.isArray(s[o]))for(n=0;n<s[o].length;n++)a+="<r:"+o+">"+s[o][n].toString()+"</r:"+o+">";else a+="<r:"+o+">"+s[o].toString()+"</r:"+o+">";return a+="</r:"+r+">"}(e,s);p.PerformAjax(n+"</Body></Envelope>",r,a,o)},p.ExecCreate=function(e,s,r,a,o,t){var n=p.GetNameFromUrl(e),l="http://schemas.xmlsoap.org/ws/2004/09/transfer/Create</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(t)+"</Header><Body><g:"+n+' xmlns:g="'+e+'">';for(var c in s)l+="<g:"+c+">"+s[c]+"</g:"+c+">";p.PerformAjax(l+"</g:"+n+"></Body></Envelope>",r,a,o)},p.ExecCreateXml=function(e,s,r,a,o){var t=p.GetNameFromUrl(e);p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Create</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout></Header><Body><r:"+t+' xmlns:r="'+e+'">'+s+"</r:"+t+"></Body></Envelope>",r,a,o)},p.ExecDelete=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(s)+"</Header><Body /></Envelope>";p.PerformAjax(t,r,a,o)},p.ExecGet=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body /></Envelope>",s,r,a)},p.ExecMethod=function(e,s,r,a,o,t,n){var l="";for(var c in r)if(null!=r[c])if(Array.isArray(r[c]))for(var d in r[c])l+="<r:"+c+">"+r[c][d]+"</r:"+c+">";else l+="<r:"+c+">"+r[c]+"</r:"+c+">";p.ExecMethodXml(e,s,l,a,o,t,n)},p.ExecMethodXml=function(e,s,r,a,o,t,n){p.PerformAjax(e+"/"+s+"</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(n)+"</Header><Body><r:"+s+'_INPUT xmlns:r="'+e+'">'+r+"</r:"+s+"_INPUT></Body></Envelope>",a,o,t)},p.ExecEnum=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Enumerate xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration" /></Body></Envelope>',s,r,a)},p.ExecPull=function(e,s,r,a,o){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Pull xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration"><EnumerationContext>'+s+"</EnumerationContext><MaxElements>999</MaxElements><MaxCharacters>99999</MaxCharacters></Pull></Body></Envelope>",r,a,o)},p.ParseWsman=function(s){try{s.childNodes||(s=function(e){{if(window.DOMParser)return(new DOMParser).parseFromString(e,"text/xml");var s=new ActiveXObject("Microsoft.XMLDOM");return s.async=!1,s.loadXML(e),s}}(s));var e,r={Header:{}},a=s.getElementsByTagName("Header")[0];if(!(a=a||s.getElementsByTagName("a:Header")[0]))return null;for(var o=0;o<a.childNodes.length;o++){var t=a.childNodes[o];r.Header[t.localName]=t.textContent}var n=s.getElementsByTagName("Body")[0];return(n=n||s.getElementsByTagName("a:Body")[0])?(0<n.childNodes.length&&((e=n.childNodes[0].localName).indexOf("_OUTPUT")==e.length-7&&(e=e.substring(0,e.length-7)),r.Header.Method=e,r.Body=function e(s){var r,a={};for(var o=0;o<s.childNodes.length;o++){var t=s.childNodes[o];"true"==(r=0==t.childElementCount?t.textContent:e(t))&&(r=!0),"false"==r&&(r=!1);var n=r;if(0<t.attributes.length){n={Value:r};for(var l=0;l<t.attributes.length;l++)n["@"+t.attributes[l].name]=t.attributes[l].value}a[t.localName]instanceof Array?a[t.localName].push(n):null==a[t.localName]?a[t.localName]=n:a[t.localName]=[a[t.localName],n]}return a}(n.childNodes[0])),r):null}catch(e){return console.log("Unable to parse XML: "+s),null}},p}
\ No newline at end of file
translate/translate.json
+1494 -1455
@@ -14,8 +14,8 @@
14 "ru": " + CIRA",
15 "zh-chs": " + CIRA",
16 "xloc": [
17 - "default.handlebars->27->1249",
18 - "default.handlebars->27->1251"
17 + "default.handlebars->27->1258",
18 + "default.handlebars->27->1260"
19 ]
20 },
21 {
@@ -174,7 +174,7 @@
174 "ru": " Может быть использована подсказка пароля, но не рекоммендуется.",
175 "zh-chs": " 可以使用密碼提示,但不建議使用。",
176 "xloc": [
177 - "default.handlebars->27->1175"
177 + "default.handlebars->27->1184"
178 ]
179 },
180 {
@@ -191,8 +191,8 @@
191 "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.",
192 "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
193 "xloc": [
194 - "default.handlebars->27->1324",
195 - "default.handlebars->27->1653"
194 + "default.handlebars->27->1333",
195 + "default.handlebars->27->1662"
196 ]
197 },
198 {
@@ -395,7 +395,7 @@
395 "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.",
396 "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。",
397 "xloc": [
398 - "default.handlebars->27->1296"
398 + "default.handlebars->27->1305"
399 ]
400 },
401 {
@@ -429,7 +429,7 @@
429 "zh-chs": ",",
430 "xloc": [
431 "default-mobile.handlebars->9->446",
432 - "default.handlebars->27->1390"
432 + "default.handlebars->27->1399"
433 ]
434 },
435 {
@@ -464,7 +464,7 @@
464 "ru": ", MQTT онлайн",
465 "zh-chs": ",MQTT在線",
466 "xloc": [
467 - "default.handlebars->27->918"
467 + "default.handlebars->27->927"
468 ]
469 },
470 {
@@ -481,7 +481,7 @@
481 "ru": ", Soft-KVM",
482 "zh-chs": ",軟KVM",
483 "xloc": [
484 - "default.handlebars->27->750"
484 + "default.handlebars->27->759"
485 ]
486 },
487 {
@@ -500,9 +500,9 @@
500 "xloc": [
501 "default-mobile.handlebars->9->284",
502 "default-mobile.handlebars->9->293",
503 - "default.handlebars->27->757",
504 - "default.handlebars->27->788",
505 - "default.handlebars->27->800",
503 + "default.handlebars->27->766",
504 + "default.handlebars->27->797",
505 + "default.handlebars->27->809",
506 "xterm.handlebars->9->6"
507 ]
508 },
@@ -583,7 +583,7 @@
583 "en": ", {0} watching",
584 "nl": ", {0} kijken",
585 "xloc": [
586 - "default.handlebars->27->751"
586 + "default.handlebars->27->760"
587 ]
588 },
589 {
@@ -640,9 +640,9 @@
640 "xloc": [
641 "default-mobile.handlebars->9->108",
642 "default-mobile.handlebars->9->295",
643 - "default.handlebars->27->1431",
644 - "default.handlebars->27->1806",
645 - "default.handlebars->27->802"
643 + "default.handlebars->27->1440",
644 + "default.handlebars->27->1815",
645 + "default.handlebars->27->811"
646 ]
647 },
648 {
@@ -691,7 +691,7 @@
691 "ru": "1 активная сессия",
692 "zh-chs": "1個活動會話",
693 "xloc": [
694 - "default.handlebars->27->1722"
694 + "default.handlebars->27->1731"
695 ]
696 },
697 {
@@ -710,14 +710,14 @@
710 "xloc": [
711 "default-mobile.handlebars->9->118",
712 "default-mobile.handlebars->9->450",
713 - "default.handlebars->27->1450"
713 + "default.handlebars->27->1459"
714 ]
715 },
716 {
717 "en": "1 connection",
718 "nl": "1 verbinding",
719 "xloc": [
720 - "default.handlebars->27->753"
720 + "default.handlebars->27->762"
721 ]
722 },
723 {
@@ -753,7 +753,7 @@
753 "ru": "1 группа",
754 "zh-chs": "1組",
755 "xloc": [
756 - "default.handlebars->27->1687"
756 + "default.handlebars->27->1696"
757 ]
758 },
759 {
@@ -825,7 +825,7 @@
825 "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...",
826 "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...",
827 "xloc": [
828 - "default.handlebars->27->1499"
828 + "default.handlebars->27->1508"
829 ]
830 },
831 {
@@ -882,7 +882,7 @@
882 "default-mobile.handlebars->9->168",
883 "default-mobile.handlebars->9->171",
884 "default-mobile.handlebars->9->174",
885 - "default.handlebars->27->1503",
885 + "default.handlebars->27->1512",
886 "default.handlebars->27->228",
887 "default.handlebars->27->231",
888 "default.handlebars->27->234",
@@ -1163,8 +1163,8 @@
1163 "ru": "двухфакторная аутентификация включена",
1164 "zh-chs": "啟用第二因素身份驗證",
1165 "xloc": [
1166 - "default.handlebars->27->1516",
1167 - "default.handlebars->27->1709"
1166 + "default.handlebars->27->1525",
1167 + "default.handlebars->27->1718"
1168 ]
1169 },
1170 {
@@ -1536,7 +1536,7 @@
1536 "ru": "7-дневная статистика работы",
1537 "zh-chs": "7天電源狀態",
1538 "xloc": [
1539 - "default.handlebars->27->683"
1539 + "default.handlebars->27->692"
1540 ]
1541 },
1542 {
@@ -1776,7 +1776,7 @@
1776 "zh-chs": "ACM",
1777 "xloc": [
1778 "default-mobile.handlebars->9->231",
1779 - "default.handlebars->27->530"
1779 + "default.handlebars->27->539"
1780 ]
1781 },
1782 {
@@ -1883,7 +1883,7 @@
1883 "ru": "Отказано в доступе",
1884 "zh-chs": "拒絕訪問",
1885 "xloc": [
1886 - "default.handlebars->27->919"
1886 + "default.handlebars->27->928"
1887 ]
1888 },
1889 {
@@ -1918,7 +1918,7 @@
1918 "ru": "Доступ к файлам сервера",
1919 "zh-chs": "訪問服務器文件",
1920 "xloc": [
1921 - "default.handlebars->27->1659"
1921 + "default.handlebars->27->1668"
1922 ]
1923 },
1924 {
@@ -1993,10 +1993,10 @@
1993 "default-mobile.handlebars->9->93",
1994 "default-mobile.handlebars->9->95",
1995 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
1996 - "default.handlebars->27->1184",
1997 - "default.handlebars->27->1186",
1998 - "default.handlebars->27->499",
1999 - "default.handlebars->27->501"
1996 + "default.handlebars->27->1193",
1997 + "default.handlebars->27->1195",
1998 + "default.handlebars->27->508",
1999 + "default.handlebars->27->510"
2000 ]
2001 },
2002 {
@@ -2042,8 +2042,8 @@
2042 "ru": "Аккаунт заблокирован",
2043 "zh-chs": "帐户已被锁定",
2044 "xloc": [
2045 - "default.handlebars->27->1518",
2046 - "default.handlebars->27->1656"
2045 + "default.handlebars->27->1527",
2046 + "default.handlebars->27->1665"
2047 ]
2048 },
2049 {
@@ -2131,7 +2131,7 @@
2131 "ru": "Действиe",
2132 "zh-chs": "行動",
2133 "xloc": [
2134 - "default.handlebars->27->924",
2134 + "default.handlebars->27->933",
2135 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2136 ]
2137 },
@@ -2149,8 +2149,8 @@
2149 "ru": "Файл действий",
2150 "zh-chs": "動作文件",
2151 "xloc": [
2152 - "default.handlebars->27->726",
2153 - "default.handlebars->27->728"
2152 + "default.handlebars->27->735",
2153 + "default.handlebars->27->737"
2154 ]
2155 },
2156 {
@@ -2170,7 +2170,7 @@
2170 "default-mobile.handlebars->9->248",
2171 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
2172 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
2173 - "default.handlebars->27->575",
2173 + "default.handlebars->27->584",
2174 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
2175 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
2176 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -2227,9 +2227,9 @@
2227 "default-mobile.handlebars->9->226",
2228 "default-mobile.handlebars->9->228",
2229 "default-mobile.handlebars->9->355",
2230 - "default.handlebars->27->523",
2231 - "default.handlebars->27->525",
2232 - "default.handlebars->27->882"
2230 + "default.handlebars->27->532",
2231 + "default.handlebars->27->534",
2232 + "default.handlebars->27->891"
2233 ]
2234 },
2235 {
@@ -2246,8 +2246,8 @@
2246 "ru": "Активация",
2247 "zh-chs": "激活",
2248 "xloc": [
2249 - "default.handlebars->27->1262",
2250 - "default.handlebars->27->1264",
2249 + "default.handlebars->27->1271",
2250 + "default.handlebars->27->1273",
2251 "default.handlebars->27->261",
2252 "default.handlebars->27->263"
2253 ]
@@ -2266,7 +2266,7 @@
2266 "ru": "Активный пользователь",
2267 "zh-chs": "活動用戶{0}",
2268 "xloc": [
2269 - "default.handlebars->27->550"
2269 + "default.handlebars->27->559"
2270 ]
2271 },
2272 {
@@ -2283,7 +2283,7 @@
2283 "ru": "Добавить агент",
2284 "zh-chs": "添加代理",
2285 "xloc": [
2286 - "default.handlebars->27->1266",
2286 + "default.handlebars->27->1275",
2287 "default.handlebars->27->265"
2288 ]
2289 },
@@ -2318,8 +2318,8 @@
2318 "ru": "Добавить устройство",
2319 "zh-chs": "添加設備",
2320 "xloc": [
2321 - "default.handlebars->27->1633",
2322 - "default.handlebars->27->1757"
2321 + "default.handlebars->27->1642",
2322 + "default.handlebars->27->1766"
2323 ]
2324 },
2325 {
@@ -2336,7 +2336,7 @@
2336 "ru": "Добавить событие к устройству",
2337 "zh-chs": "添加設備事件",
2338 "xloc": [
2339 - "default.handlebars->27->659"
2339 + "default.handlebars->27->668"
2340 ]
2341 },
2342 {
@@ -2353,9 +2353,9 @@
2353 "ru": "Добавить группу устройств",
2354 "zh-chs": "添加設備組",
2355 "xloc": [
2356 - "default.handlebars->27->1356",
2357 - "default.handlebars->27->1627",
2358 - "default.handlebars->27->1745",
2356 + "default.handlebars->27->1365",
2357 + "default.handlebars->27->1636",
2358 + "default.handlebars->27->1754",
2359 "default.handlebars->27->216"
2360 ]
2361 },
@@ -2370,7 +2370,7 @@
2370 "nl": "Machtigingen voor apparaatgroep toevoegen",
2371 "zh-chs": "添加设备组权限",
2372 "xloc": [
2373 - "default.handlebars->27->1353"
2373 + "default.handlebars->27->1362"
2374 ]
2375 },
2376 {
@@ -2386,8 +2386,8 @@
2386 "ru": "Добавить разрешения для устройства",
2387 "zh-chs": "添加设备权限",
2388 "xloc": [
2389 - "default.handlebars->27->1358",
2390 - "default.handlebars->27->1360"
2389 + "default.handlebars->27->1367",
2390 + "default.handlebars->27->1369"
2391 ]
2392 },
2393 {
@@ -2472,7 +2472,7 @@
2472 "ru": "Добавить участие",
2473 "zh-chs": "添加會員",
2474 "xloc": [
2475 - "default.handlebars->27->1775"
2475 + "default.handlebars->27->1784"
2476 ]
2477 },
2478 {
@@ -2510,8 +2510,8 @@
2510 "default.handlebars->27->151",
2511 "default.handlebars->27->154",
2512 "default.handlebars->27->155",
2513 - "default.handlebars->27->952",
2514 - "default.handlebars->27->953"
2513 + "default.handlebars->27->961",
2514 + "default.handlebars->27->962"
2515 ]
2516 },
2517 {
@@ -2529,7 +2529,7 @@
2529 "zh-chs": "添加用戶",
2530 "xloc": [
2531 "default-mobile.handlebars->9->395",
2532 - "default.handlebars->27->616"
2532 + "default.handlebars->27->625"
2533 ]
2534 },
2535 {
@@ -2545,7 +2545,7 @@
2545 "ru": "Добавить разрешения для пользовательских устройств",
2546 "zh-chs": "添加用户设备权限",
2547 "xloc": [
2548 - "default.handlebars->27->1363"
2548 + "default.handlebars->27->1372"
2549 ]
2550 },
2551 {
@@ -2562,10 +2562,10 @@
2562 "ru": "Добавить группу пользователей",
2563 "zh-chs": "添加用戶組",
2564 "xloc": [
2565 - "default.handlebars->27->1256",
2566 - "default.handlebars->27->1355",
2567 - "default.handlebars->27->1751",
2568 - "default.handlebars->27->617"
2565 + "default.handlebars->27->1265",
2566 + "default.handlebars->27->1364",
2567 + "default.handlebars->27->1760",
2568 + "default.handlebars->27->626"
2569 ]
2570 },
2571 {
@@ -2579,7 +2579,7 @@
2579 "nl": "Gebruikersmachtigingen voor apparaatgroep toevoegen",
2580 "zh-chs": "添加用户组设备权限",
2581 "xloc": [
2582 - "default.handlebars->27->1365"
2582 + "default.handlebars->27->1374"
2583 ]
2584 },
2585 {
@@ -2624,8 +2624,8 @@
2624 "ru": "Добавить пользователей",
2625 "zh-chs": "添加用戶",
2626 "xloc": [
2627 - "default.handlebars->27->1255",
2628 - "default.handlebars->27->1622"
2627 + "default.handlebars->27->1264",
2628 + "default.handlebars->27->1631"
2629 ]
2630 },
2631 {
@@ -2642,7 +2642,7 @@
2642 "ru": "Добавить пользователей в группу устройств",
2643 "zh-chs": "將用戶添加到設備組",
2644 "xloc": [
2645 - "default.handlebars->27->1352"
2645 + "default.handlebars->27->1361"
2646 ]
2647 },
2648 {
@@ -2659,7 +2659,7 @@
2659 "ru": "Добавить пользователей в группу",
2660 "zh-chs": "將用戶添加到用戶組",
2661 "xloc": [
2662 - "default.handlebars->27->1655"
2662 + "default.handlebars->27->1664"
2663 ]
2664 },
2665 {
@@ -2710,7 +2710,7 @@
2710 "ru": "Добавить новый Intel&reg; AMT компьютер, находящийся в интернете.",
2711 "zh-chs": "添加位於互聯網上的新英特爾&reg;AMT計算機。",
2712 "xloc": [
2713 - "default.handlebars->27->1257",
2713 + "default.handlebars->27->1266",
2714 "default.handlebars->27->254"
2715 ]
2716 },
@@ -2728,7 +2728,7 @@
2728 "ru": "Добавить новый Intel&reg; AMT компьютер, находящийся в локальной сети.",
2729 "zh-chs": "添加位於本地網絡上的新英特爾&reg;AMT計算機。",
2730 "xloc": [
2731 - "default.handlebars->27->1259",
2731 + "default.handlebars->27->1268",
2732 "default.handlebars->27->256"
2733 ]
2734 },
@@ -2760,10 +2760,16 @@
2760 "nl": "Voeg een nieuwe computer toe aan deze apparaatgroep door de mesh-agent te installeren.",
2761 "zh-chs": "通过安装网状代理,将新计算机添加到该设备组。",
2762 "xloc": [
2763 - "default.handlebars->27->1265",
2763 + "default.handlebars->27->1274",
2764 "default.handlebars->27->264"
2765 ]
2766 },
2767 + {
2768 + "en": "Add tags",
2769 + "xloc": [
2770 + "default.handlebars->27->446"
2771 + ]
2772 + },
2773 {
2774 "cs": "Adresa",
2775 "de": "Adresse",
@@ -2813,7 +2819,7 @@
2819 "zh-chs": "管理員控制模式(ACM)",
2820 "xloc": [
2821 "default-mobile.handlebars->9->357",
2816 - "default.handlebars->27->884"
2822 + "default.handlebars->27->893"
2823 ]
2824 },
2825 {
@@ -2831,7 +2837,7 @@
2837 "zh-chs": "管理員憑證",
2838 "xloc": [
2839 "default-mobile.handlebars->9->363",
2834 - "default.handlebars->27->890"
2840 + "default.handlebars->27->899"
2841 ]
2842 },
2843 {
@@ -2866,7 +2872,7 @@
2872 "ru": "Области администратора",
2873 "zh-chs": "管理領域",
2874 "xloc": [
2869 - "default.handlebars->27->1691"
2875 + "default.handlebars->27->1700"
2876 ]
2877 },
2878 {
@@ -2901,7 +2907,7 @@
2907 "ru": "Административные области",
2908 "zh-chs": "行政領域",
2909 "xloc": [
2904 - "default.handlebars->27->1573"
2910 + "default.handlebars->27->1582"
2911 ]
2912 },
2913 {
@@ -2918,7 +2924,7 @@
2924 "ru": "Администратор",
2925 "zh-chs": "管理員",
2926 "xloc": [
2921 - "default.handlebars->27->1510"
2927 + "default.handlebars->27->1519"
2928 ]
2929 },
2930 {
@@ -2935,7 +2941,7 @@
2941 "ru": "Африканский",
2942 "zh-chs": "南非語",
2943 "xloc": [
2938 - "default.handlebars->27->955"
2944 + "default.handlebars->27->964"
2945 ]
2946 },
2947 {
@@ -2955,8 +2961,8 @@
2961 "default-mobile.handlebars->9->199",
2962 "default-mobile.handlebars->9->223",
2963 "default-mobile.handlebars->9->239",
2958 - "default.handlebars->27->1417",
2959 - "default.handlebars->27->1425",
2964 + "default.handlebars->27->1426",
2965 + "default.handlebars->27->1434",
2966 "default.handlebars->27->195",
2967 "default.handlebars->27->410",
2968 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -2976,8 +2982,8 @@
2982 "ru": "Агент + Intel AMT",
2983 "zh-chs": "代理+英特爾AMT",
2984 "xloc": [
2979 - "default.handlebars->27->1419",
2980 - "default.handlebars->27->1427"
2985 + "default.handlebars->27->1428",
2986 + "default.handlebars->27->1436"
2987 ]
2988 },
2989 {
@@ -3012,7 +3018,7 @@
3018 "zh-chs": "代理控制台",
3019 "xloc": [
3020 "default-mobile.handlebars->9->430",
3015 - "default.handlebars->27->1373"
3021 + "default.handlebars->27->1382"
3022 ]
3023 },
3024 {
@@ -3029,7 +3035,7 @@
3035 "ru": "Счетчик ошибок агента",
3036 "zh-chs": "座席錯誤計數器",
3037 "xloc": [
3032 - "default.handlebars->27->1816"
3038 + "default.handlebars->27->1825"
3039 ]
3040 },
3041 {
@@ -3105,7 +3111,7 @@
3111 "ru": "Сессии агентов",
3112 "zh-chs": "座席會議",
3113 "xloc": [
3108 - "default.handlebars->27->1832"
3114 + "default.handlebars->27->1841"
3115 ]
3116 },
3117 {
@@ -3123,7 +3129,7 @@
3129 "zh-chs": "代理商標籤",
3130 "xloc": [
3131 "default-mobile.handlebars->9->238",
3126 - "default.handlebars->27->543"
3132 + "default.handlebars->27->552"
3133 ]
3134 },
3135 {
@@ -3140,7 +3146,7 @@
3146 "ru": "Типы агента",
3147 "zh-chs": "代理類型",
3148 "xloc": [
3143 - "default.handlebars->27->1423",
3149 + "default.handlebars->27->1432",
3150 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
3151 ]
3152 },
@@ -3159,8 +3165,8 @@
3165 "zh-chs": "代理已連接",
3166 "xloc": [
3167 "default.handlebars->27->160",
3162 - "default.handlebars->27->607",
3163 - "default.handlebars->27->608"
3168 + "default.handlebars->27->616",
3169 + "default.handlebars->27->617"
3170 ]
3171 },
3172 {
@@ -3194,7 +3200,7 @@
3200 "ru": "Агент оффлайн",
3201 "zh-chs": "代理離線",
3202 "xloc": [
3197 - "default.handlebars->27->917"
3203 + "default.handlebars->27->926"
3204 ]
3205 },
3206 {
@@ -3211,7 +3217,7 @@
3217 "ru": "Агент онлайн",
3218 "zh-chs": "代理在線",
3219 "xloc": [
3214 - "default.handlebars->27->916"
3220 + "default.handlebars->27->925"
3221 ]
3222 },
3223 {
@@ -3228,7 +3234,7 @@
3234 "ru": "Агенты",
3235 "zh-chs": "代理商",
3236 "xloc": [
3231 - "default.handlebars->27->1845"
3237 + "default.handlebars->27->1854"
3238 ]
3239 },
3240 {
@@ -3245,7 +3251,7 @@
3251 "ru": "Албанский",
3252 "zh-chs": "阿爾巴尼亞語",
3253 "xloc": [
3248 - "default.handlebars->27->956"
3254 + "default.handlebars->27->965"
3255 ]
3256 },
3257 {
@@ -3271,7 +3277,7 @@
3277 "en": "All Available",
3278 "nl": "Alle beschikbare",
3279 "xloc": [
3274 - "default.handlebars->27->1473"
3280 + "default.handlebars->27->1482"
3281 ]
3282 },
3283 {
@@ -3292,7 +3298,7 @@
3298 "en": "All Events",
3299 "nl": "Alle gebeurtenissen",
3300 "xloc": [
3295 - "default.handlebars->27->1471"
3301 + "default.handlebars->27->1480"
3302 ]
3303 },
3304 {
@@ -3309,9 +3315,9 @@
3315 "ru": "Фокусирование всех",
3316 "zh-chs": "全部聚焦",
3317 "xloc": [
3312 - "default.handlebars->27->758",
3313 - "default.handlebars->27->760",
3314 - "default.handlebars->27->761"
3318 + "default.handlebars->27->767",
3319 + "default.handlebars->27->769",
3320 + "default.handlebars->27->770"
3321 ]
3322 },
3323 {
@@ -3328,8 +3334,8 @@
3334 "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.",
3335 "zh-chs": "允許用戶管理此設備組和該組中的設備。",
3336 "xloc": [
3331 - "default.handlebars->27->1322",
3332 - "default.handlebars->27->1652"
3337 + "default.handlebars->27->1331",
3338 + "default.handlebars->27->1661"
3339 ]
3340 },
3341 {
@@ -3345,7 +3351,7 @@
3351 "ru": "Разрешить пользователям управлять этим устройством.",
3352 "zh-chs": "允许用户管理此设备。",
3353 "xloc": [
3348 - "default.handlebars->27->1323"
3354 + "default.handlebars->27->1332"
3355 ]
3356 },
3357 {
@@ -3398,7 +3404,7 @@
3404 "ru": "Поменять (F10 = ESC+0)",
3405 "zh-chs": "備用(F10 = ESC + 0)",
3406 "xloc": [
3401 - "default.handlebars->27->793"
3407 + "default.handlebars->27->802"
3408 ]
3409 },
3410 {
@@ -3433,9 +3439,9 @@
3439 "ru": "Всегда уведомлять",
3440 "zh-chs": "始終通知",
3441 "xloc": [
3436 - "default.handlebars->27->1236",
3437 - "default.handlebars->27->1700",
3438 - "default.handlebars->27->559"
3442 + "default.handlebars->27->1245",
3443 + "default.handlebars->27->1709",
3444 + "default.handlebars->27->568"
3445 ]
3446 },
3447 {
@@ -3452,9 +3458,9 @@
3458 "ru": "Всегда запрашивать",
3459 "zh-chs": "總是提示",
3460 "xloc": [
3455 - "default.handlebars->27->1237",
3456 - "default.handlebars->27->1701",
3457 - "default.handlebars->27->560"
3461 + "default.handlebars->27->1246",
3462 + "default.handlebars->27->1710",
3463 + "default.handlebars->27->569"
3464 ]
3465 },
3466 {
@@ -3568,7 +3574,7 @@
3574 "ru": "Антивирус",
3575 "zh-chs": "防毒軟件",
3576 "xloc": [
3571 - "default.handlebars->27->549"
3577 + "default.handlebars->27->558"
3578 ]
3579 },
3580 {
@@ -3653,7 +3659,7 @@
3659 "ru": "Арабский (Алжир)",
3660 "zh-chs": "阿拉伯文(阿爾及利亞)",
3661 "xloc": [
3656 - "default.handlebars->27->958"
3662 + "default.handlebars->27->967"
3663 ]
3664 },
3665 {
@@ -3670,7 +3676,7 @@
3676 "ru": "Арабский (Бахрейн)",
3677 "zh-chs": "阿拉伯文(巴林)",
3678 "xloc": [
3673 - "default.handlebars->27->959"
3679 + "default.handlebars->27->968"
3680 ]
3681 },
3682 {
@@ -3687,7 +3693,7 @@
3693 "ru": "Арабский (Египет)",
3694 "zh-chs": "阿拉伯文(埃及)",
3695 "xloc": [
3690 - "default.handlebars->27->960"
3696 + "default.handlebars->27->969"
3697 ]
3698 },
3699 {
@@ -3704,7 +3710,7 @@
3710 "ru": "Арабский (Ирак)",
3711 "zh-chs": "阿拉伯文(伊拉克)",
3712 "xloc": [
3707 - "default.handlebars->27->961"
3713 + "default.handlebars->27->970"
3714 ]
3715 },
3716 {
@@ -3721,7 +3727,7 @@
3727 "ru": "Арабский (Иордания)",
3728 "zh-chs": "阿拉伯語(約旦)",
3729 "xloc": [
3724 - "default.handlebars->27->962"
3730 + "default.handlebars->27->971"
3731 ]
3732 },
3733 {
@@ -3738,7 +3744,7 @@
3744 "ru": "Арабский (Кувейт)",
3745 "zh-chs": "阿拉伯文(科威特)",
3746 "xloc": [
3741 - "default.handlebars->27->963"
3747 + "default.handlebars->27->972"
3748 ]
3749 },
3750 {
@@ -3755,7 +3761,7 @@
3761 "ru": "Арабский (Ливан)",
3762 "zh-chs": "阿拉伯語(黎巴嫩)",
3763 "xloc": [
3758 - "default.handlebars->27->964"
3764 + "default.handlebars->27->973"
3765 ]
3766 },
3767 {
@@ -3772,7 +3778,7 @@
3778 "ru": "Арабский (Ливия)",
3779 "zh-chs": "阿拉伯文(利比亞)",
3780 "xloc": [
3775 - "default.handlebars->27->965"
3781 + "default.handlebars->27->974"
3782 ]
3783 },
3784 {
@@ -3789,7 +3795,7 @@
3795 "ru": "Арабский (Марокко)",
3796 "zh-chs": "阿拉伯文(摩洛哥)",
3797 "xloc": [
3792 - "default.handlebars->27->966"
3798 + "default.handlebars->27->975"
3799 ]
3800 },
3801 {
@@ -3806,7 +3812,7 @@
3812 "ru": "Арабский (Оман)",
3813 "zh-chs": "阿拉伯文(阿曼)",
3814 "xloc": [
3809 - "default.handlebars->27->967"
3815 + "default.handlebars->27->976"
3816 ]
3817 },
3818 {
@@ -3823,7 +3829,7 @@
3829 "ru": "Арабский (Катар)",
3830 "zh-chs": "阿拉伯語(卡塔爾)",
3831 "xloc": [
3826 - "default.handlebars->27->968"
3832 + "default.handlebars->27->977"
3833 ]
3834 },
3835 {
@@ -3840,7 +3846,7 @@
3846 "ru": "Арабский (Саудовская Аравия)",
3847 "zh-chs": "阿拉伯語(沙特阿拉伯)",
3848 "xloc": [
3843 - "default.handlebars->27->969"
3849 + "default.handlebars->27->978"
3850 ]
3851 },
3852 {
@@ -3857,7 +3863,7 @@
3863 "ru": "Арабский (стандартный)",
3864 "zh-chs": "阿拉伯語(標準)",
3865 "xloc": [
3860 - "default.handlebars->27->957"
3866 + "default.handlebars->27->966"
3867 ]
3868 },
3869 {
@@ -3874,7 +3880,7 @@
3880 "ru": "Арабский (Сирия)",
3881 "zh-chs": "阿拉伯語(敘利亞)",
3882 "xloc": [
3877 - "default.handlebars->27->970"
3883 + "default.handlebars->27->979"
3884 ]
3885 },
3886 {
@@ -3891,7 +3897,7 @@
3897 "ru": "Арабский (Тунис)",
3898 "zh-chs": "阿拉伯文(突尼斯)",
3899 "xloc": [
3894 - "default.handlebars->27->971"
3900 + "default.handlebars->27->980"
3901 ]
3902 },
3903 {
@@ -3908,7 +3914,7 @@
3914 "ru": "Арабский (О.А.Э.)",
3915 "zh-chs": "阿拉伯文(阿聯酋)",
3916 "xloc": [
3911 - "default.handlebars->27->972"
3917 + "default.handlebars->27->981"
3918 ]
3919 },
3920 {
@@ -3925,7 +3931,7 @@
3931 "ru": "Арабский (Йемен)",
3932 "zh-chs": "阿拉伯文(也門)",
3933 "xloc": [
3928 - "default.handlebars->27->973"
3934 + "default.handlebars->27->982"
3935 ]
3936 },
3937 {
@@ -3942,7 +3948,7 @@
3948 "ru": "Арагонский",
3949 "zh-chs": "阿拉貢人",
3950 "xloc": [
3945 - "default.handlebars->27->974"
3951 + "default.handlebars->27->983"
3952 ]
3953 },
3954 {
@@ -3960,7 +3966,7 @@
3966 "zh-chs": "建築",
3967 "xloc": [
3968 "default-mobile.handlebars->9->327",
3963 - "default.handlebars->27->844"
3969 + "default.handlebars->27->853"
3970 ]
3971 },
3972 {
@@ -3995,7 +4001,7 @@
4001 "zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。",
4002 "xloc": [
4003 "default-mobile.handlebars->9->401",
3998 - "default.handlebars->27->1300"
4004 + "default.handlebars->27->1309"
4005 ]
4006 },
4007 {
@@ -4012,7 +4018,7 @@
4018 "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?",
4019 "zh-chs": "您確定要刪除節點{0}嗎?",
4020 "xloc": [
4015 - "default.handlebars->27->705"
4021 + "default.handlebars->27->714"
4022 ]
4023 },
4024 {
@@ -4029,7 +4035,7 @@
4035 "ru": "Вы действительно хотите деинсталировать выбранного агента?",
4036 "zh-chs": "您確定要卸載所選代理嗎?",
4037 "xloc": [
4032 - "default.handlebars->27->694"
4038 + "default.handlebars->27->703"
4039 ]
4040 },
4041 {
@@ -4046,7 +4052,7 @@
4052 "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?",
4053 "zh-chs": "您確定要卸載所選的{0}代理嗎?",
4054 "xloc": [
4049 - "default.handlebars->27->693"
4055 + "default.handlebars->27->702"
4056 ]
4057 },
4058 {
@@ -4063,7 +4069,7 @@
4069 "ru": "Вы уверенны, что {0} плагин: {1}",
4070 "zh-chs": "您確定要{0}插件嗎:{1}",
4071 "xloc": [
4066 - "default.handlebars->27->1885"
4072 + "default.handlebars->27->1894"
4073 ]
4074 },
4075 {
@@ -4080,7 +4086,7 @@
4086 "ru": "Армянский",
4087 "zh-chs": "亞美尼亞人",
4088 "xloc": [
4083 - "default.handlebars->27->975"
4089 + "default.handlebars->27->984"
4090 ]
4091 },
4092 {
@@ -4125,7 +4131,7 @@
4131 "ru": "Ассамский",
4132 "zh-chs": "阿薩姆語",
4133 "xloc": [
4128 - "default.handlebars->27->976"
4134 + "default.handlebars->27->985"
4135 ]
4136 },
4137 {
@@ -4142,7 +4148,7 @@
4148 "ru": "Астурии",
4149 "zh-chs": "阿斯圖里亞斯人",
4150 "xloc": [
4145 - "default.handlebars->27->977"
4151 + "default.handlebars->27->986"
4152 ]
4153 },
4154 {
@@ -4159,7 +4165,7 @@
4165 "ru": "Приложение аутентификации",
4166 "zh-chs": "身份驗證應用",
4167 "xloc": [
4162 - "default.handlebars->27->1704"
4168 + "default.handlebars->27->1713"
4169 ]
4170 },
4171 {
@@ -4182,8 +4188,8 @@
4188 "default-mobile.handlebars->9->73",
4189 "default.handlebars->27->125",
4190 "default.handlebars->27->130",
4185 - "default.handlebars->27->941",
4186 - "default.handlebars->27->943"
4191 + "default.handlebars->27->950",
4192 + "default.handlebars->27->952"
4193 ]
4194 },
4195 {
@@ -4251,7 +4257,7 @@
4257 "ru": "Автоудаление",
4258 "zh-chs": "自動刪除",
4259 "xloc": [
4254 - "default.handlebars->27->1224"
4260 + "default.handlebars->27->1233"
4261 ]
4262 },
4263 {
@@ -4305,7 +4311,7 @@
4311 "ru": "Азербайджанский",
4312 "zh-chs": "阿塞拜疆",
4313 "xloc": [
4308 - "default.handlebars->27->978"
4314 + "default.handlebars->27->987"
4315 ]
4316 },
4317 {
@@ -4323,7 +4329,7 @@
4329 "zh-chs": "的BIOS",
4330 "xloc": [
4331 "default-mobile.handlebars->9->369",
4326 - "default.handlebars->27->896"
4332 + "default.handlebars->27->905"
4333 ]
4334 },
4335 {
@@ -4420,8 +4426,8 @@
4426 "ru": "Фоновый и интерактивный",
4427 "zh-chs": "背景與互動",
4428 "xloc": [
4423 - "default.handlebars->27->1400",
4424 - "default.handlebars->27->1407",
4429 + "default.handlebars->27->1409",
4430 + "default.handlebars->27->1416",
4431 "default.handlebars->27->335"
4432 ]
4433 },
@@ -4439,8 +4445,8 @@
4445 "ru": "Только фоновый",
4446 "zh-chs": "僅背景",
4447 "xloc": [
4442 - "default.handlebars->27->1401",
4443 - "default.handlebars->27->1408",
4448 + "default.handlebars->27->1410",
4449 + "default.handlebars->27->1417",
4450 "default.handlebars->27->336",
4451 "default.handlebars->27->358"
4452 ]
@@ -4476,7 +4482,7 @@
4482 "ru": "Резервные коды",
4483 "zh-chs": "備用碼",
4484 "xloc": [
4479 - "default.handlebars->27->1706"
4485 + "default.handlebars->27->1715"
4486 ]
4487 },
4488 {
@@ -4493,7 +4499,7 @@
4499 "ru": "Плохой ключ",
4500 "zh-chs": "錯誤的簽名",
4501 "xloc": [
4496 - "default.handlebars->27->1823"
4502 + "default.handlebars->27->1832"
4503 ]
4504 },
4505 {
@@ -4510,7 +4516,7 @@
4516 "ru": "Плохой веб-сертификат",
4517 "zh-chs": "錯誤的網絡證書",
4518 "xloc": [
4513 - "default.handlebars->27->1822"
4519 + "default.handlebars->27->1831"
4520 ]
4521 },
4522 {
@@ -4527,7 +4533,7 @@
4533 "ru": "Баскский",
4534 "zh-chs": "巴斯克",
4535 "xloc": [
4530 - "default.handlebars->27->979"
4536 + "default.handlebars->27->988"
4537 ]
4538 },
4539 {
@@ -4561,7 +4567,7 @@
4567 "ru": "Белорусский",
4568 "zh-chs": "白俄羅斯語",
4569 "xloc": [
4564 - "default.handlebars->27->981"
4570 + "default.handlebars->27->990"
4571 ]
4572 },
4573 {
@@ -4578,7 +4584,7 @@
4584 "ru": "Бенгальский",
4585 "zh-chs": "孟加拉",
4586 "xloc": [
4581 - "default.handlebars->27->982"
4587 + "default.handlebars->27->991"
4588 ]
4589 },
4590 {
@@ -4614,7 +4620,7 @@
4620 "ru": "Боснийский",
4621 "zh-chs": "波斯尼亞人",
4622 "xloc": [
4617 - "default.handlebars->27->983"
4623 + "default.handlebars->27->992"
4624 ]
4625 },
4626 {
@@ -4631,7 +4637,7 @@
4637 "ru": "Бретонский",
4638 "zh-chs": "布列塔尼",
4639 "xloc": [
4634 - "default.handlebars->27->984"
4640 + "default.handlebars->27->993"
4641 ]
4642 },
4643 {
@@ -4648,7 +4654,7 @@
4654 "ru": "Отправить сообщение",
4655 "zh-chs": "廣播",
4656 "xloc": [
4651 - "default.handlebars->27->1620",
4657 + "default.handlebars->27->1629",
4658 "default.handlebars->container->column_l->p4->3->1->0->3->1"
4659 ]
4660 },
@@ -4666,7 +4672,7 @@
4672 "ru": "Отправить сообщение",
4673 "zh-chs": "廣播消息",
4674 "xloc": [
4669 - "default.handlebars->27->1555"
4675 + "default.handlebars->27->1564"
4676 ]
4677 },
4678 {
@@ -4683,7 +4689,7 @@
4689 "ru": "Отправить сообщение всем подключенным пользователям.",
4690 "zh-chs": "向所有連接的用戶廣播消息。",
4691 "xloc": [
4686 - "default.handlebars->27->1554"
4692 + "default.handlebars->27->1563"
4693 ]
4694 },
4695 {
@@ -4700,7 +4706,7 @@
4706 "ru": "Болгарский",
4707 "zh-chs": "保加利亞語",
4708 "xloc": [
4703 - "default.handlebars->27->980"
4709 + "default.handlebars->27->989"
4710 ]
4711 },
4712 {
@@ -4717,7 +4723,7 @@
4723 "ru": "Бирманский",
4724 "zh-chs": "緬甸人",
4725 "xloc": [
4720 - "default.handlebars->27->985"
4726 + "default.handlebars->27->994"
4727 ]
4728 },
4729 {
@@ -4735,7 +4741,7 @@
4741 "zh-chs": "CCM",
4742 "xloc": [
4743 "default-mobile.handlebars->9->230",
4738 - "default.handlebars->27->528"
4744 + "default.handlebars->27->537"
4745 ]
4746 },
4747 {
@@ -4753,8 +4759,8 @@
4759 "zh-chs": "CIRA",
4760 "xloc": [
4761 "default-mobile.handlebars->9->200",
4756 - "default.handlebars->27->1288",
4757 - "default.handlebars->27->1293",
4762 + "default.handlebars->27->1297",
4763 + "default.handlebars->27->1302",
4764 "default.handlebars->27->197",
4765 "default.handlebars->27->412"
4766 ]
@@ -4773,7 +4779,7 @@
4779 "ru": "CIRA Сервер",
4780 "zh-chs": "CIRA服務器",
4781 "xloc": [
4776 - "default.handlebars->27->1873"
4782 + "default.handlebars->27->1882"
4783 ]
4784 },
4785 {
@@ -4790,7 +4796,7 @@
4796 "ru": "CIRA Сервер команды",
4797 "zh-chs": "CIRA服務器命令",
4798 "xloc": [
4793 - "default.handlebars->27->1874"
4799 + "default.handlebars->27->1883"
4800 ]
4801 },
4802 {
@@ -4807,7 +4813,7 @@
4813 "zh-chs": "CPU",
4814 "xloc": [
4815 "default-mobile.handlebars->9->375",
4810 - "default.handlebars->27->902"
4816 + "default.handlebars->27->911"
4817 ]
4818 },
4819 {
@@ -4824,7 +4830,7 @@
4830 "ru": "Загрузка CPU",
4831 "zh-chs": "CPU負載",
4832 "xloc": [
4827 - "default.handlebars->27->1837"
4833 + "default.handlebars->27->1846"
4834 ]
4835 },
4836 {
@@ -4841,7 +4847,7 @@
4847 "ru": "Загрузка CPU за последние 15 минут",
4848 "zh-chs": "最近15分鐘的CPU負載",
4849 "xloc": [
4844 - "default.handlebars->27->1840"
4850 + "default.handlebars->27->1849"
4851 ]
4852 },
4853 {
@@ -4858,7 +4864,7 @@
4864 "ru": "Загрузка CPU за последние 5 минут",
4865 "zh-chs": "最近5分鐘的CPU負載",
4866 "xloc": [
4861 - "default.handlebars->27->1839"
4867 + "default.handlebars->27->1848"
4868 ]
4869 },
4870 {
@@ -4875,7 +4881,7 @@
4881 "ru": "Загрузка CPU за последнюю минуту",
4882 "zh-chs": "最後一分鐘的CPU負載",
4883 "xloc": [
4878 - "default.handlebars->27->1838"
4884 + "default.handlebars->27->1847"
4885 ]
4886 },
4887 {
@@ -4892,8 +4898,8 @@
4898 "ru": "CR+LF",
4899 "zh-chs": "CR +低頻",
4900 "xloc": [
4895 - "default.handlebars->27->786",
4901 "default.handlebars->27->795",
4902 + "default.handlebars->27->804",
4903 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
4904 ]
4905 },
@@ -4910,7 +4916,7 @@
4916 "ru": "CSV",
4917 "zh-chs": "CSV",
4918 "xloc": [
4913 - "default.handlebars->27->1481"
4919 + "default.handlebars->27->1490"
4920 ]
4921 },
4922 {
@@ -4927,9 +4933,9 @@
4933 "ru": "Формат CSV",
4934 "zh-chs": "CSV格式",
4935 "xloc": [
4930 - "default.handlebars->27->1485",
4931 - "default.handlebars->27->1546",
4932 - "default.handlebars->27->444"
4936 + "default.handlebars->27->1494",
4937 + "default.handlebars->27->1555",
4938 + "default.handlebars->27->453"
4939 ]
4940 },
4941 {
@@ -4946,7 +4952,7 @@
4952 "ru": "Ошибка вызова",
4953 "zh-chs": "通話錯誤",
4954 "xloc": [
4949 - "default.handlebars->27->1886"
4955 + "default.handlebars->27->1895"
4956 ]
4957 },
4958 {
@@ -4965,7 +4971,7 @@
4971 "xloc": [
4972 "default-mobile.handlebars->9->82",
4973 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
4968 - "default.handlebars->27->1205",
4974 + "default.handlebars->27->1214",
4975 "default.handlebars->container->dialog->idx_dlgButtonBar",
4976 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
4977 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -4985,8 +4991,8 @@
4991 "xloc": [
4992 "default-mobile.handlebars->9->383",
4993 "default-mobile.handlebars->9->385",
4988 - "default.handlebars->27->910",
4989 - "default.handlebars->27->912"
4994 + "default.handlebars->27->919",
4995 + "default.handlebars->27->921"
4996 ]
4997 },
4998 {
@@ -5004,7 +5010,7 @@
5010 "zh-chs": "容量/速度",
5011 "xloc": [
5012 "default-mobile.handlebars->9->378",
5007 - "default.handlebars->27->905"
5013 + "default.handlebars->27->914"
5014 ]
5015 },
5016 {
@@ -5021,7 +5027,7 @@
5027 "ru": "Каталонский",
5028 "zh-chs": "加泰羅尼亞語",
5029 "xloc": [
5024 - "default.handlebars->27->986"
5030 + "default.handlebars->27->995"
5031 ]
5032 },
5033 {
@@ -5038,7 +5044,7 @@
5044 "ru": "Установить центр карты здесь",
5045 "zh-chs": "中心地圖在這裡",
5046 "xloc": [
5041 - "default.handlebars->27->490"
5047 + "default.handlebars->27->499"
5048 ]
5049 },
5050 {
@@ -5055,7 +5061,7 @@
5061 "ru": "Чаморро",
5062 "zh-chs": "查莫羅",
5063 "xloc": [
5058 - "default.handlebars->27->987"
5064 + "default.handlebars->27->996"
5065 ]
5066 },
5067 {
@@ -5086,7 +5092,7 @@
5092 "ru": "Смена email для {0}",
5093 "zh-chs": "更改{0}的電子郵件",
5094 "xloc": [
5089 - "default.handlebars->27->1734"
5095 + "default.handlebars->27->1743"
5096 ]
5097 },
5098 {
@@ -5103,9 +5109,9 @@
5109 "ru": "Смена группы",
5110 "zh-chs": "變更組",
5111 "xloc": [
5106 - "default.handlebars->27->584",
5107 - "default.handlebars->27->702",
5108 - "default.handlebars->27->703"
5112 + "default.handlebars->27->593",
5113 + "default.handlebars->27->711",
5114 + "default.handlebars->27->712"
5115 ]
5116 },
5117 {
@@ -5123,8 +5129,8 @@
5129 "zh-chs": "更改密碼",
5130 "xloc": [
5131 "default-mobile.handlebars->9->90",
5126 - "default.handlebars->27->1181",
5127 - "default.handlebars->27->1721"
5132 + "default.handlebars->27->1190",
5133 + "default.handlebars->27->1730"
5134 ]
5135 },
5136 {
@@ -5141,14 +5147,14 @@
5147 "ru": "Смена пароля для {0}",
5148 "zh-chs": "更改{0}的密碼",
5149 "xloc": [
5144 - "default.handlebars->27->1741"
5150 + "default.handlebars->27->1750"
5151 ]
5152 },
5153 {
5154 "en": "Change Real Name for {0}",
5155 "nl": "Verander echte naam voor {0}",
5156 "xloc": [
5151 - "default.handlebars->27->1729"
5157 + "default.handlebars->27->1738"
5158 ]
5159 },
5160 {
@@ -5218,7 +5224,7 @@
5224 "ru": "Изменить пароль для этого пользователя",
5225 "zh-chs": "更改該用戶的密碼",
5226 "xloc": [
5221 - "default.handlebars->27->1720"
5227 + "default.handlebars->27->1729"
5228 ]
5229 },
5230 {
@@ -5252,7 +5258,7 @@
5258 "ru": "Измените адрес электронной почты вашей учетной записи здесь.",
5259 "zh-chs": "在此處更改您的帳戶電子郵件地址。",
5260 "xloc": [
5255 - "default.handlebars->27->1168"
5261 + "default.handlebars->27->1177"
5262 ]
5263 },
5264 {
@@ -5269,7 +5275,7 @@
5275 "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.",
5276 "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
5277 "xloc": [
5272 - "default.handlebars->27->1174"
5278 + "default.handlebars->27->1183"
5279 ]
5280 },
5281 {
@@ -5286,7 +5292,7 @@
5292 "ru": "Изменение языка потребует перезагрузить страницу.",
5293 "zh-chs": "更改語言將需要刷新頁面。",
5294 "xloc": [
5289 - "default.handlebars->27->1153"
5295 + "default.handlebars->27->1162"
5296 ]
5297 },
5298 {
@@ -5303,9 +5309,9 @@
5309 "ru": "Чат",
5310 "zh-chs": "聊天室",
5311 "xloc": [
5306 - "default.handlebars->27->1502",
5307 - "default.handlebars->27->637",
5308 - "default.handlebars->27->656"
5312 + "default.handlebars->27->1511",
5313 + "default.handlebars->27->646",
5314 + "default.handlebars->27->665"
5315 ]
5316 },
5317 {
@@ -5324,8 +5330,8 @@
5330 "xloc": [
5331 "default-mobile.handlebars->9->422",
5332 "default-mobile.handlebars->9->440",
5327 - "default.handlebars->27->1350",
5328 - "default.handlebars->27->1384"
5333 + "default.handlebars->27->1359",
5334 + "default.handlebars->27->1393"
5335 ]
5336 },
5337 {
@@ -5349,7 +5355,7 @@
5355 "ru": "Чеченский",
5356 "zh-chs": "車臣",
5357 "xloc": [
5352 - "default.handlebars->27->988"
5358 + "default.handlebars->27->997"
5359 ]
5360 },
5361 {
@@ -5430,8 +5436,8 @@
5436 "ru": "Проверка...",
5437 "zh-chs": "檢查...",
5438 "xloc": [
5433 - "default.handlebars->27->1880",
5434 - "default.handlebars->27->954"
5439 + "default.handlebars->27->1889",
5440 + "default.handlebars->27->963"
5441 ]
5442 },
5443 {
@@ -5448,7 +5454,7 @@
5454 "ru": "Китайский",
5455 "zh-chs": "中文",
5456 "xloc": [
5451 - "default.handlebars->27->989"
5457 + "default.handlebars->27->998"
5458 ]
5459 },
5460 {
@@ -5465,7 +5471,7 @@
5471 "ru": "Китайский (Гонконг)",
5472 "zh-chs": "中文(香港)",
5473 "xloc": [
5468 - "default.handlebars->27->990"
5474 + "default.handlebars->27->999"
5475 ]
5476 },
5477 {
@@ -5482,7 +5488,7 @@
5488 "ru": "Китайский (КНР)",
5489 "zh-chs": "中文(中國)",
5490 "xloc": [
5485 - "default.handlebars->27->991"
5491 + "default.handlebars->27->1000"
5492 ]
5493 },
5494 {
@@ -5499,7 +5505,7 @@
5505 "ru": "Упрощенный китайский)",
5506 "zh-chs": "简体中文)",
5507 "xloc": [
5502 - "default.handlebars->27->1151"
5508 + "default.handlebars->27->1160"
5509 ]
5510 },
5511 {
@@ -5516,7 +5522,7 @@
5522 "ru": "Китайский (Сингапур)",
5523 "zh-chs": "中文(新加坡)",
5524 "xloc": [
5519 - "default.handlebars->27->992"
5525 + "default.handlebars->27->1001"
5526 ]
5527 },
5528 {
@@ -5533,7 +5539,7 @@
5539 "ru": "Китайский (Тайвань)",
5540 "zh-chs": "中文(台灣)",
5541 "xloc": [
5536 - "default.handlebars->27->993"
5542 + "default.handlebars->27->1002"
5543 ]
5544 },
5545 {
@@ -5568,7 +5574,7 @@
5574 "ru": "Чувашский",
5575 "zh-chs": "楚瓦什",
5576 "xloc": [
5571 - "default.handlebars->27->994"
5577 + "default.handlebars->27->1003"
5578 ]
5579 },
5580 {
@@ -5608,11 +5614,11 @@
5614 "default-mobile.handlebars->9->318",
5615 "default-mobile.handlebars->9->320",
5616 "default-mobile.handlebars->9->59",
5611 - "default.handlebars->27->1465",
5612 - "default.handlebars->27->821",
5613 - "default.handlebars->27->823",
5614 - "default.handlebars->27->825",
5615 - "default.handlebars->27->827",
5617 + "default.handlebars->27->1474",
5618 + "default.handlebars->27->830",
5619 + "default.handlebars->27->832",
5620 + "default.handlebars->27->834",
5621 + "default.handlebars->27->836",
5622 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
5623 "default.handlebars->container->column_l->p41->3->1",
5624 "messenger.handlebars->xbottom"
@@ -5646,7 +5652,7 @@
5652 "nl": "Wis alle meldingen",
5653 "zh-chs": "全部清除",
5654 "xloc": [
5649 - "default.handlebars->27->1810"
5655 + "default.handlebars->27->1819"
5656 ]
5657 },
5658 {
@@ -5663,7 +5669,7 @@
5669 "ru": "Очистить ядро",
5670 "zh-chs": "清除核心",
5671 "xloc": [
5666 - "default.handlebars->27->926"
5672 + "default.handlebars->27->935"
5673 ]
5674 },
5675 {
@@ -5696,7 +5702,7 @@
5702 "ru": "Очистить это уведомление",
5703 "zh-chs": "清除此通知",
5704 "xloc": [
5699 - "default.handlebars->27->1809"
5705 + "default.handlebars->27->1818"
5706 ]
5707 },
5708 {
@@ -5741,8 +5747,8 @@
5747 "nl": "Klik hier om de apparaatgroepsnaam te bewerken",
5748 "zh-chs": "单击此处编辑设备组名称",
5749 "xloc": [
5744 - "default.handlebars->27->1216",
5745 - "default.handlebars->27->1421"
5750 + "default.handlebars->27->1225",
5751 + "default.handlebars->27->1430"
5752 ]
5753 },
5754 {
@@ -5759,7 +5765,7 @@
5765 "ru": "Для изменения имени устройства на сервере нажмите сюда",
5766 "zh-chs": "單擊此處編輯服務器端設備名稱",
5767 "xloc": [
5762 - "default.handlebars->27->506"
5768 + "default.handlebars->27->515"
5769 ]
5770 },
5771 {
@@ -5772,7 +5778,7 @@
5778 "nl": "Klik hier om de gebruikersgroepsnaam te bewerken",
5779 "zh-chs": "单击此处编辑用户组名称",
5780 "xloc": [
5775 - "default.handlebars->27->1609"
5781 + "default.handlebars->27->1618"
5782 ]
5783 },
5784 {
@@ -5822,7 +5828,7 @@
5828 "zh-chs": "單擊確定將驗證郵件發送到:",
5829 "xloc": [
5830 "default-mobile.handlebars->9->75",
5825 - "default.handlebars->27->1165"
5831 + "default.handlebars->27->1174"
5832 ]
5833 },
5834 {
@@ -5857,7 +5863,7 @@
5863 "zh-chs": "客戶端控制模式(CCM)",
5864 "xloc": [
5865 "default-mobile.handlebars->9->356",
5860 - "default.handlebars->27->883"
5866 + "default.handlebars->27->892"
5867 ]
5868 },
5869 {
@@ -5874,8 +5880,8 @@
5880 "ru": "Клиент инициировал удаленный доступ",
5881 "zh-chs": "客戶端啟動的遠程訪問",
5882 "xloc": [
5877 - "default.handlebars->27->1287",
5878 - "default.handlebars->27->1292"
5883 + "default.handlebars->27->1296",
5884 + "default.handlebars->27->1301"
5885 ]
5886 },
5887 {
@@ -5912,7 +5918,7 @@
5918 "default-mobile.handlebars->9->57",
5919 "default.handlebars->27->137",
5920 "default.handlebars->27->145",
5915 - "default.handlebars->27->779"
5921 + "default.handlebars->27->788"
5922 ]
5923 },
5924 {
@@ -5955,8 +5961,8 @@
5961 "ru": "Общие группы устройств",
5962 "zh-chs": "通用設備組",
5963 "xloc": [
5958 - "default.handlebars->27->1628",
5959 - "default.handlebars->27->1746"
5964 + "default.handlebars->27->1637",
5965 + "default.handlebars->27->1755"
5966 ]
5967 },
5968 {
@@ -5973,8 +5979,8 @@
5979 "ru": "Общие устройства",
5980 "zh-chs": "通用設備",
5981 "xloc": [
5976 - "default.handlebars->27->1634",
5977 - "default.handlebars->27->1758"
5982 + "default.handlebars->27->1643",
5983 + "default.handlebars->27->1767"
5984 ]
5985 },
5986 {
@@ -5992,7 +5998,7 @@
5998 "zh-chs": "將{1}入口{2}中的{0}限製到此位置?",
5999 "xloc": [
6000 "default-mobile.handlebars->9->127",
5995 - "default.handlebars->27->1460"
6001 + "default.handlebars->27->1469"
6002 ]
6003 },
6004 {
@@ -6011,14 +6017,14 @@
6017 "xloc": [
6018 "default-mobile.handlebars->9->276",
6019 "default-mobile.handlebars->9->402",
6014 - "default.handlebars->27->1301",
6015 - "default.handlebars->27->1530",
6016 - "default.handlebars->27->1599",
6017 - "default.handlebars->27->1648",
6018 - "default.handlebars->27->1744",
6019 - "default.handlebars->27->436",
6020 - "default.handlebars->27->697",
6021 - "default.handlebars->27->706"
6020 + "default.handlebars->27->1310",
6021 + "default.handlebars->27->1539",
6022 + "default.handlebars->27->1608",
6023 + "default.handlebars->27->1657",
6024 + "default.handlebars->27->1753",
6025 + "default.handlebars->27->437",
6026 + "default.handlebars->27->706",
6027 + "default.handlebars->27->715"
6028 ]
6029 },
6030 {
@@ -6036,7 +6042,7 @@
6042 "zh-chs": "確認將1個副本複製到此位置?",
6043 "xloc": [
6044 "default-mobile.handlebars->9->309",
6039 - "default.handlebars->27->816"
6045 + "default.handlebars->27->825"
6046 ]
6047 },
6048 {
@@ -6054,7 +6060,7 @@
6060 "zh-chs": "確認{0}個條目的副本到此位置?",
6061 "xloc": [
6062 "default-mobile.handlebars->9->308",
6057 - "default.handlebars->27->815"
6063 + "default.handlebars->27->824"
6064 ]
6065 },
6066 {
@@ -6068,7 +6074,7 @@
6074 "nl": "Bevestig verwijdering geselecteerde account(s)?",
6075 "zh-chs": "确认删除选定的帐户?",
6076 "xloc": [
6071 - "default.handlebars->27->1529"
6077 + "default.handlebars->27->1538"
6078 ]
6079 },
6080 {
@@ -6085,7 +6091,7 @@
6091 "ru": "Подтвердить удаление выбранных устройств?",
6092 "zh-chs": "確認刪除所選設備?",
6093 "xloc": [
6088 - "default.handlebars->27->435"
6094 + "default.handlebars->27->436"
6095 ]
6096 },
6097 {
@@ -6099,7 +6105,7 @@
6105 "nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?",
6106 "zh-chs": "确认删除选定的用户组?",
6107 "xloc": [
6102 - "default.handlebars->27->1598"
6108 + "default.handlebars->27->1607"
6109 ]
6110 },
6111 {
@@ -6116,7 +6122,7 @@
6122 "ru": "Подтвердить удаление пользователя {0}?",
6123 "zh-chs": "確認刪除用戶{0}?",
6124 "xloc": [
6119 - "default.handlebars->27->1743"
6125 + "default.handlebars->27->1752"
6126 ]
6127 },
6128 {
@@ -6130,7 +6136,7 @@
6136 "nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?",
6137 "zh-chs": "确认删除用户\\“ {0} \\”的成员身份?",
6138 "xloc": [
6133 - "default.handlebars->27->1651"
6139 + "default.handlebars->27->1660"
6140 ]
6141 },
6142 {
@@ -6144,7 +6150,7 @@
6150 "nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?",
6151 "zh-chs": "确认删除用户组 “{0}” 的成员身份?",
6152 "xloc": [
6147 - "default.handlebars->27->1773"
6153 + "default.handlebars->27->1782"
6154 ]
6155 },
6156 {
@@ -6162,7 +6168,7 @@
6168 "zh-chs": "確認將1個入口移動到此位置?",
6169 "xloc": [
6170 "default-mobile.handlebars->9->311",
6165 - "default.handlebars->27->818"
6171 + "default.handlebars->27->827"
6172 ]
6173 },
6174 {
@@ -6180,7 +6186,7 @@
6186 "zh-chs": "確認將{0}個條目移到此位置?",
6187 "xloc": [
6188 "default-mobile.handlebars->9->310",
6183 - "default.handlebars->27->817"
6189 + "default.handlebars->27->826"
6190 ]
6191 },
6192 {
@@ -6197,7 +6203,7 @@
6203 "ru": "Подтвердить перезапись?",
6204 "zh-chs": "確認覆蓋?",
6205 "xloc": [
6200 - "default.handlebars->27->1459"
6206 + "default.handlebars->27->1468"
6207 ]
6208 },
6209 {
@@ -6211,8 +6217,8 @@
6217 "nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?",
6218 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
6219 "xloc": [
6214 - "default.handlebars->27->1641",
6215 - "default.handlebars->27->1764"
6220 + "default.handlebars->27->1650",
6221 + "default.handlebars->27->1773"
6222 ]
6223 },
6224 {
@@ -6226,8 +6232,8 @@
6232 "nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?",
6233 "zh-chs": "是否确认删除设备组“ {0}”的访问权限?",
6234 "xloc": [
6229 - "default.handlebars->27->1643",
6230 - "default.handlebars->27->1777"
6235 + "default.handlebars->27->1652",
6236 + "default.handlebars->27->1786"
6237 ]
6238 },
6239 {
@@ -6241,7 +6247,7 @@
6247 "nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?",
6248 "zh-chs": "确认删除用户\\“ {0} \\”的访问权限?",
6249 "xloc": [
6244 - "default.handlebars->27->1766"
6250 + "default.handlebars->27->1775"
6251 ]
6252 },
6253 {
@@ -6255,7 +6261,7 @@
6261 "nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?",
6262 "zh-chs": "确认删除用户组“ {0}”的访问权限?",
6263 "xloc": [
6258 - "default.handlebars->27->1769"
6264 + "default.handlebars->27->1778"
6265 ]
6266 },
6267 {
@@ -6269,8 +6275,8 @@
6275 "nl": "Verwijdering van toegangsrechten bevestigen?",
6276 "zh-chs": "确认删除访问权限?",
6277 "xloc": [
6272 - "default.handlebars->27->1767",
6273 - "default.handlebars->27->1770"
6278 + "default.handlebars->27->1776",
6279 + "default.handlebars->27->1779"
6280 ]
6281 },
6282 {
@@ -6288,7 +6294,7 @@
6294 "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?",
6295 "xloc": [
6296 "default-mobile.handlebars->9->74",
6291 - "default.handlebars->27->944"
6297 + "default.handlebars->27->953"
6298 ]
6299 },
6300 {
@@ -6343,7 +6349,7 @@
6349 "nl": "Bevestig de verwijdering van rechten voor gebruiker \\\"{0}\\\"?",
6350 "zh-chs": "确认删除用户“ {0} ”的权限?",
6351 "xloc": [
6346 - "default.handlebars->27->1393"
6352 + "default.handlebars->27->1402"
6353 ]
6354 },
6355 {
@@ -6357,7 +6363,7 @@
6363 "nl": "Bevestig de verwijdering van rechten voor de gebruikergroep \\\"{0}\\\"?",
6364 "zh-chs": "确认删除用户组“ {0} ”的权限?",
6365 "xloc": [
6360 - "default.handlebars->27->1395"
6366 + "default.handlebars->27->1404"
6367 ]
6368 },
6369 {
@@ -6405,8 +6411,8 @@
6411 "default-mobile.handlebars->9->291",
6412 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
6413 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
6408 - "default.handlebars->27->1240",
6409 - "default.handlebars->27->798",
6414 + "default.handlebars->27->1249",
6415 + "default.handlebars->27->807",
6416 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
6417 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
6418 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -6446,8 +6452,8 @@
6452 "ru": "Подключиться к серверу",
6453 "zh-chs": "連接到服務器",
6454 "xloc": [
6449 - "default.handlebars->27->1291",
6450 - "default.handlebars->27->1295"
6455 + "default.handlebars->27->1300",
6456 + "default.handlebars->27->1304"
6457 ]
6458 },
6459 {
@@ -6518,7 +6524,7 @@
6524 "ru": "Подключено Intel&reg; AMT",
6525 "zh-chs": "連接的英特爾&reg;AMT",
6526 "xloc": [
6521 - "default.handlebars->27->1828"
6527 + "default.handlebars->27->1837"
6528 ]
6529 },
6530 {
@@ -6535,7 +6541,7 @@
6541 "ru": "Подключенные пользователи",
6542 "zh-chs": "關聯用戶",
6543 "xloc": [
6538 - "default.handlebars->27->1833"
6544 + "default.handlebars->27->1842"
6545 ]
6546 },
6547 {
@@ -6553,7 +6559,7 @@
6559 "zh-chs": "現在已連接",
6560 "xloc": [
6561 "default-mobile.handlebars->9->331",
6556 - "default.handlebars->27->848"
6562 + "default.handlebars->27->857"
6563 ]
6564 },
6565 {
@@ -6593,7 +6599,7 @@
6599 "default.handlebars->27->222",
6600 "default.handlebars->27->225",
6601 "default.handlebars->27->251",
6596 - "default.handlebars->27->839",
6602 + "default.handlebars->27->848",
6603 "default.handlebars->27->9",
6604 "xterm.handlebars->9->2"
6605 ]
@@ -6612,7 +6618,7 @@
6618 "ru": "Подключений ",
6619 "zh-chs": "連接數",
6620 "xloc": [
6615 - "default.handlebars->27->1844"
6621 + "default.handlebars->27->1853"
6622 ]
6623 },
6624 {
@@ -6629,7 +6635,7 @@
6635 "ru": "Ретранслятор подключения",
6636 "zh-chs": "連接繼電器",
6637 "xloc": [
6632 - "default.handlebars->27->1872"
6638 + "default.handlebars->27->1881"
6639 ]
6640 },
6641 {
@@ -6681,9 +6687,9 @@
6687 "zh-chs": "連接性",
6688 "xloc": [
6689 "default-mobile.handlebars->9->244",
6684 - "default.handlebars->27->1428",
6690 + "default.handlebars->27->1437",
6691 "default.handlebars->27->213",
6686 - "default.handlebars->27->573",
6692 + "default.handlebars->27->582",
6693 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
6694 ]
6695 },
@@ -6701,8 +6707,8 @@
6707 "ru": "Консоль",
6708 "zh-chs": "安慰",
6709 "xloc": [
6704 - "default.handlebars->27->632",
6705 - "default.handlebars->27->651",
6710 + "default.handlebars->27->641",
6711 + "default.handlebars->27->660",
6712 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
6713 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
6714 "default.handlebars->contextMenu->cxconsole"
@@ -6722,7 +6728,7 @@
6728 "ru": "Консоль - ",
6729 "zh-chs": "安慰 -",
6730 "xloc": [
6725 - "default.handlebars->27->507"
6731 + "default.handlebars->27->516"
6732 ]
6733 },
6734 {
@@ -6738,8 +6744,8 @@
6744 "ru": "контроль",
6745 "zh-chs": "控制",
6746 "xloc": [
6741 - "default.handlebars->27->631",
6742 - "default.handlebars->27->650",
6747 + "default.handlebars->27->640",
6748 + "default.handlebars->27->659",
6749 "messenger.handlebars->13->1"
6750 ]
6751 },
@@ -6757,7 +6763,7 @@
6763 "ru": "Cookie-кодировщик",
6764 "zh-chs": "Cookie編碼器",
6765 "xloc": [
6760 - "default.handlebars->27->1858"
6766 + "default.handlebars->27->1867"
6767 ]
6768 },
6769 {
@@ -6890,8 +6896,8 @@
6896 "ru": "Скопировать ссылку в буфер обмена",
6897 "zh-chs": "複製鏈接到剪貼板",
6898 "xloc": [
6893 - "default.handlebars->27->1433",
6894 - "default.handlebars->27->1447",
6899 + "default.handlebars->27->1442",
6900 + "default.handlebars->27->1456",
6901 "default.handlebars->27->348"
6902 ]
6903 },
@@ -7069,7 +7075,7 @@
7075 "ru": "Основной сервер",
7076 "zh-chs": "核心服務器",
7077 "xloc": [
7072 - "default.handlebars->27->1857"
7078 + "default.handlebars->27->1866"
7079 ]
7080 },
7081 {
@@ -7086,7 +7092,7 @@
7092 "ru": "Kорсиканский",
7093 "zh-chs": "科西嘉人",
7094 "xloc": [
7089 - "default.handlebars->27->995"
7095 + "default.handlebars->27->1004"
7096 ]
7097 },
7098 {
@@ -7103,7 +7109,7 @@
7109 "ru": "Создать учетную запись",
7110 "zh-chs": "創建帳號",
7111 "xloc": [
7106 - "default.handlebars->27->1569",
7112 + "default.handlebars->27->1578",
7113 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
7114 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
7115 ]
@@ -7139,7 +7145,7 @@
7145 "ru": "Создать группу пользователей",
7146 "zh-chs": "創建用戶組",
7147 "xloc": [
7142 - "default.handlebars->27->1606"
7148 + "default.handlebars->27->1615"
7149 ]
7150 },
7151 {
@@ -7156,7 +7162,7 @@
7162 "ru": "Создайте новую группу устройств, используя параметры ниже.",
7163 "zh-chs": "使用以下選項創建一個新的設備組。",
7164 "xloc": [
7159 - "default.handlebars->27->1188"
7165 + "default.handlebars->27->1197"
7166 ]
7167 },
7168 {
@@ -7190,7 +7196,7 @@
7196 "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:",
7197 "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:",
7198 "xloc": [
7193 - "default.handlebars->27->1537"
7199 + "default.handlebars->27->1546"
7200 ]
7201 },
7202 {
@@ -7225,7 +7231,7 @@
7231 "ru": "Создано",
7232 "zh-chs": "創建",
7233 "xloc": [
7228 - "default.handlebars->27->1680"
7234 + "default.handlebars->27->1689"
7235 ]
7236 },
7237 {
@@ -7260,7 +7266,7 @@
7266 "ru": "Кри (Канадский язык)",
7267 "zh-chs": "克里",
7268 "xloc": [
7263 - "default.handlebars->27->996"
7269 + "default.handlebars->27->1005"
7270 ]
7271 },
7272 {
@@ -7277,7 +7283,7 @@
7283 "ru": "Хорватский",
7284 "zh-chs": "克羅地亞語",
7285 "xloc": [
7280 - "default.handlebars->27->997"
7286 + "default.handlebars->27->1006"
7287 ]
7288 },
7289 {
@@ -7418,7 +7424,7 @@
7424 "ru": "Чешский",
7425 "zh-chs": "捷克文",
7426 "xloc": [
7421 - "default.handlebars->27->998"
7427 + "default.handlebars->27->1007"
7428 ]
7429 },
7430 {
@@ -7452,7 +7458,7 @@
7458 "ru": "Датский",
7459 "zh-chs": "丹麥文",
7460 "xloc": [
7455 - "default.handlebars->27->999"
7461 + "default.handlebars->27->1008"
7462 ]
7463 },
7464 {
@@ -7469,7 +7475,7 @@
7475 "ru": "DataChannel",
7476 "zh-chs": "數據通道",
7477 "xloc": [
7472 - "default.handlebars->27->749"
7478 + "default.handlebars->27->758"
7479 ]
7480 },
7481 {
@@ -7486,7 +7492,7 @@
7492 "ru": "Дата & Время",
7493 "zh-chs": "日期和時間",
7494 "xloc": [
7489 - "default.handlebars->27->1156"
7495 + "default.handlebars->27->1165"
7496 ]
7497 },
7498 {
@@ -7504,7 +7510,7 @@
7510 "zh-chs": "天",
7511 "xloc": [
7512 "default-mobile.handlebars->9->266",
7507 - "default.handlebars->27->681"
7513 + "default.handlebars->27->690"
7514 ]
7515 },
7516 {
@@ -7521,7 +7527,7 @@
7527 "ru": "Деактивировать режим управления клиентом (CCM)",
7528 "zh-chs": "停用客戶端控制模式(CCM)",
7529 "xloc": [
7524 - "default.handlebars->27->1279"
7530 + "default.handlebars->27->1288"
7531 ]
7532 },
7533 {
@@ -7546,10 +7552,10 @@
7552 "en": "Default",
7553 "nl": "Standaard",
7554 "xloc": [
7549 - "default.handlebars->27->1556",
7550 - "default.handlebars->27->1602",
7551 - "default.handlebars->27->1613",
7552 - "default.handlebars->27->1669"
7555 + "default.handlebars->27->1565",
7556 + "default.handlebars->27->1611",
7557 + "default.handlebars->27->1622",
7558 + "default.handlebars->27->1678"
7559 ]
7560 },
7561 {
@@ -7570,9 +7576,9 @@
7576 "default-mobile.handlebars->9->301",
7577 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
7578 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
7573 - "default.handlebars->27->1454",
7574 - "default.handlebars->27->477",
7575 - "default.handlebars->27->808",
7579 + "default.handlebars->27->1463",
7580 + "default.handlebars->27->486",
7581 + "default.handlebars->27->817",
7582 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
7583 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
7584 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -7596,7 +7602,7 @@
7602 "zh-chs": "刪除帳戶",
7603 "xloc": [
7604 "default-mobile.handlebars->9->84",
7599 - "default.handlebars->27->1173"
7605 + "default.handlebars->27->1182"
7606 ]
7607 },
7608 {
@@ -7610,7 +7616,7 @@
7616 "nl": "Verwijder accounts",
7617 "zh-chs": "删除帐号",
7618 "xloc": [
7613 - "default.handlebars->27->1531"
7619 + "default.handlebars->27->1540"
7620 ]
7621 },
7622 {
@@ -7628,7 +7634,7 @@
7634 "zh-chs": "刪除裝置",
7635 "xloc": [
7636 "default-mobile.handlebars->9->249",
7631 - "default.handlebars->27->586"
7637 + "default.handlebars->27->595"
7638 ]
7639 },
7640 {
@@ -7647,8 +7653,8 @@
7653 "xloc": [
7654 "default-mobile.handlebars->9->400",
7655 "default-mobile.handlebars->9->403",
7650 - "default.handlebars->27->1272",
7651 - "default.handlebars->27->1302"
7656 + "default.handlebars->27->1281",
7657 + "default.handlebars->27->1311"
7658 ]
7659 },
7660 {
@@ -7666,7 +7672,7 @@
7672 "zh-chs": "刪除節點",
7673 "xloc": [
7674 "default-mobile.handlebars->9->274",
7669 - "default.handlebars->27->707"
7675 + "default.handlebars->27->716"
7676 ]
7677 },
7678 {
@@ -7683,7 +7689,7 @@
7689 "ru": "Удалить устройства",
7690 "zh-chs": "刪除節點",
7691 "xloc": [
7686 - "default.handlebars->27->437"
7692 + "default.handlebars->27->438"
7693 ]
7694 },
7695 {
@@ -7700,7 +7706,7 @@
7706 "ru": "Удалить пользователя",
7707 "zh-chs": "刪除用戶",
7708 "xloc": [
7703 - "default.handlebars->27->1719"
7709 + "default.handlebars->27->1728"
7710 ]
7711 },
7712 {
@@ -7717,8 +7723,8 @@
7723 "ru": "Удалить группу пользователей",
7724 "zh-chs": "刪除用戶組",
7725 "xloc": [
7720 - "default.handlebars->27->1639",
7721 - "default.handlebars->27->1649"
7726 + "default.handlebars->27->1648",
7727 + "default.handlebars->27->1658"
7728 ]
7729 },
7730 {
@@ -7732,7 +7738,7 @@
7738 "nl": "Gebruikersgroepen verwijderen",
7739 "zh-chs": "删除用户组",
7740 "xloc": [
7735 - "default.handlebars->27->1600"
7741 + "default.handlebars->27->1609"
7742 ]
7743 },
7744 {
@@ -7749,7 +7755,7 @@
7755 "ru": "Удалить пользователя {0}",
7756 "zh-chs": "刪除用戶{0}",
7757 "xloc": [
7752 - "default.handlebars->27->1742"
7758 + "default.handlebars->27->1751"
7759 ]
7760 },
7761 {
@@ -7767,7 +7773,7 @@
7773 "zh-chs": "刪除帳戶",
7774 "xloc": [
7775 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
7770 - "default.handlebars->27->1527",
7776 + "default.handlebars->27->1536",
7777 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
7778 ]
7779 },
@@ -7785,7 +7791,7 @@
7791 "ru": "Удалить устройства",
7792 "zh-chs": "刪除設備",
7793 "xloc": [
7788 - "default.handlebars->27->433"
7794 + "default.handlebars->27->434"
7795 ]
7796 },
7797 {
@@ -7799,7 +7805,7 @@
7805 "nl": "Verwijder groep",
7806 "zh-chs": "删除群组",
7807 "xloc": [
7802 - "default.handlebars->27->1596"
7808 + "default.handlebars->27->1605"
7809 ]
7810 },
7811 {
@@ -7816,7 +7822,7 @@
7822 "ru": "Удалить пункт?",
7823 "zh-chs": "刪除項目?",
7824 "xloc": [
7819 - "default.handlebars->27->478"
7825 + "default.handlebars->27->487"
7826 ]
7827 },
7828 {
@@ -7835,8 +7841,8 @@
7841 "xloc": [
7842 "default-mobile.handlebars->9->124",
7843 "default-mobile.handlebars->9->303",
7838 - "default.handlebars->27->1456",
7839 - "default.handlebars->27->810"
7844 + "default.handlebars->27->1465",
7845 + "default.handlebars->27->819"
7846 ]
7847 },
7848 {
@@ -7853,7 +7859,7 @@
7859 "ru": "Удалить группу пользователей {0}?",
7860 "zh-chs": "刪除用戶組{0}?",
7861 "xloc": [
7856 - "default.handlebars->27->1647"
7862 + "default.handlebars->27->1656"
7863 ]
7864 },
7865 {
@@ -7872,8 +7878,8 @@
7878 "xloc": [
7879 "default-mobile.handlebars->9->123",
7880 "default-mobile.handlebars->9->302",
7875 - "default.handlebars->27->1455",
7876 - "default.handlebars->27->809"
7881 + "default.handlebars->27->1464",
7882 + "default.handlebars->27->818"
7883 ]
7884 },
7885 {
@@ -7903,7 +7909,7 @@
7909 "ko": "거부",
7910 "zh-chs": "被拒绝",
7911 "xloc": [
7906 - "default.handlebars->27->745"
7912 + "default.handlebars->27->754"
7913 ]
7914 },
7915 {
@@ -7987,19 +7993,19 @@
7993 "default-mobile.handlebars->9->337",
7994 "default-mobile.handlebars->9->392",
7995 "default-mobile.handlebars->9->405",
7990 - "default.handlebars->27->1193",
7991 - "default.handlebars->27->1221",
7992 - "default.handlebars->27->1304",
7993 - "default.handlebars->27->1605",
7994 - "default.handlebars->27->1615",
7995 - "default.handlebars->27->1616",
7996 - "default.handlebars->27->1645",
7997 - "default.handlebars->27->518",
7998 - "default.handlebars->27->519",
7999 - "default.handlebars->27->740",
7996 + "default.handlebars->27->1202",
7997 + "default.handlebars->27->1230",
7998 + "default.handlebars->27->1313",
7999 + "default.handlebars->27->1614",
8000 + "default.handlebars->27->1624",
8001 + "default.handlebars->27->1625",
8002 + "default.handlebars->27->1654",
8003 + "default.handlebars->27->527",
8004 + "default.handlebars->27->528",
8005 + "default.handlebars->27->749",
8006 "default.handlebars->27->77",
8001 - "default.handlebars->27->854",
8002 - "default.handlebars->27->864",
8007 + "default.handlebars->27->863",
8008 + "default.handlebars->27->873",
8009 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
8010 ]
8011 },
@@ -8032,9 +8038,9 @@
8038 "zh-chs": "桌面",
8039 "xloc": [
8040 "default-mobile.handlebars->9->256",
8035 - "default.handlebars->27->1309",
8036 - "default.handlebars->27->1787",
8037 - "default.handlebars->27->483",
8041 + "default.handlebars->27->1318",
8042 + "default.handlebars->27->1796",
8043 + "default.handlebars->27->492",
8044 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
8045 "default.handlebars->contextMenu->cxdesktop"
8046 ]
@@ -8070,9 +8076,9 @@
8076 "ru": "Уведомление на рабочем столе",
8077 "zh-chs": "桌面通知",
8078 "xloc": [
8073 - "default.handlebars->27->1231",
8074 - "default.handlebars->27->1695",
8075 - "default.handlebars->27->554"
8079 + "default.handlebars->27->1240",
8080 + "default.handlebars->27->1704",
8081 + "default.handlebars->27->563"
8082 ]
8083 },
8084 {
@@ -8089,9 +8095,9 @@
8095 "ru": "Запрос рабочего стола",
8096 "zh-chs": "桌面提示",
8097 "xloc": [
8092 - "default.handlebars->27->1230",
8093 - "default.handlebars->27->1694",
8094 - "default.handlebars->27->553"
8098 + "default.handlebars->27->1239",
8099 + "default.handlebars->27->1703",
8100 + "default.handlebars->27->562"
8101 ]
8102 },
8103 {
@@ -8108,9 +8114,9 @@
8114 "ru": "Запрос рабочего стола + панель инструментов",
8115 "zh-chs": "桌面提示+工具欄",
8116 "xloc": [
8111 - "default.handlebars->27->1228",
8112 - "default.handlebars->27->1692",
8113 - "default.handlebars->27->551"
8117 + "default.handlebars->27->1237",
8118 + "default.handlebars->27->1701",
8119 + "default.handlebars->27->560"
8120 ]
8121 },
8122 {
@@ -8141,9 +8147,9 @@
8147 "ru": "Панель инструментов рабочего стола",
8148 "zh-chs": "桌面工具欄",
8149 "xloc": [
8144 - "default.handlebars->27->1229",
8145 - "default.handlebars->27->1693",
8146 - "default.handlebars->27->552"
8150 + "default.handlebars->27->1238",
8151 + "default.handlebars->27->1702",
8152 + "default.handlebars->27->561"
8153 ]
8154 },
8155 {
@@ -8214,8 +8220,8 @@
8220 "ru": "Устройство",
8221 "zh-chs": "設備",
8222 "xloc": [
8217 - "default.handlebars->27->1331",
8218 - "default.handlebars->27->1761",
8223 + "default.handlebars->27->1340",
8224 + "default.handlebars->27->1770",
8225 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
8226 ]
8227 },
@@ -8234,7 +8240,7 @@
8240 "zh-chs": "設備動作",
8241 "xloc": [
8242 "default-mobile.handlebars->9->265",
8237 - "default.handlebars->27->676"
8243 + "default.handlebars->27->685"
8244 ]
8245 },
8246 {
@@ -8251,14 +8257,14 @@
8257 "ru": "Группа устройства",
8258 "zh-chs": "設備組",
8259 "xloc": [
8254 - "default.handlebars->27->1326",
8255 - "default.handlebars->27->1329",
8256 - "default.handlebars->27->1330",
8257 - "default.handlebars->27->1478",
8258 - "default.handlebars->27->1631",
8259 - "default.handlebars->27->1637",
8260 - "default.handlebars->27->1749",
8261 - "default.handlebars->27->1796"
8260 + "default.handlebars->27->1335",
8261 + "default.handlebars->27->1338",
8262 + "default.handlebars->27->1339",
8263 + "default.handlebars->27->1487",
8264 + "default.handlebars->27->1640",
8265 + "default.handlebars->27->1646",
8266 + "default.handlebars->27->1758",
8267 + "default.handlebars->27->1805"
8268 ]
8269 },
8270 {
@@ -8276,7 +8282,7 @@
8282 "zh-chs": "設備組用戶",
8283 "xloc": [
8284 "default-mobile.handlebars->9->447",
8279 - "default.handlebars->27->1391"
8285 + "default.handlebars->27->1400"
8286 ]
8287 },
8288 {
@@ -8294,11 +8300,11 @@
8300 "zh-chs": "設備組",
8301 "xloc": [
8302 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
8297 - "default.handlebars->27->1494",
8298 - "default.handlebars->27->1590",
8299 - "default.handlebars->27->1618",
8300 - "default.handlebars->27->1689",
8301 - "default.handlebars->27->1831",
8303 + "default.handlebars->27->1503",
8304 + "default.handlebars->27->1599",
8305 + "default.handlebars->27->1627",
8306 + "default.handlebars->27->1698",
8307 + "default.handlebars->27->1840",
8308 "default.handlebars->container->column_l->p2->p2info->7"
8309 ]
8310 },
@@ -8316,7 +8322,7 @@
8322 "ru": "Экспорт информации об устройстве",
8323 "zh-chs": "設備信息導出",
8324 "xloc": [
8319 - "default.handlebars->27->448"
8325 + "default.handlebars->27->457"
8326 ]
8327 },
8328 {
@@ -8333,7 +8339,7 @@
8339 "ru": "Местонахождение устройства",
8340 "zh-chs": "設備位置",
8341 "xloc": [
8336 - "default.handlebars->27->708"
8342 + "default.handlebars->27->717"
8343 ]
8344 },
8345 {
@@ -8341,7 +8347,7 @@
8347 "nl": "Apparaatbericht",
8348 "fr": "Message de Service",
8349 "xloc": [
8344 - "default.handlebars->27->664"
8350 + "default.handlebars->27->673"
8351 ]
8352 },
8353 {
@@ -8359,9 +8365,9 @@
8365 "zh-chs": "設備名稱",
8366 "xloc": [
8367 "default-mobile.handlebars->9->278",
8362 - "default.handlebars->27->1795",
8368 + "default.handlebars->27->1804",
8369 "default.handlebars->27->269",
8364 - "default.handlebars->27->738",
8370 + "default.handlebars->27->747",
8371 "player.handlebars->3->9"
8372 ]
8373 },
@@ -8379,7 +8385,7 @@
8385 "ru": "Уведомление устройства",
8386 "zh-chs": "設備通知",
8387 "xloc": [
8382 - "default.handlebars->27->666"
8388 + "default.handlebars->27->675"
8389 ]
8390 },
8391 {
@@ -8413,8 +8419,8 @@
8419 "ru": "Подключения устройств.",
8420 "zh-chs": "設備連接。",
8421 "xloc": [
8416 - "default.handlebars->27->1161",
8417 - "default.handlebars->27->1412"
8422 + "default.handlebars->27->1170",
8423 + "default.handlebars->27->1421"
8424 ]
8425 },
8426 {
@@ -8431,8 +8437,8 @@
8437 "ru": "Отключения устройств.",
8438 "zh-chs": "設備斷開連接。",
8439 "xloc": [
8434 - "default.handlebars->27->1162",
8435 - "default.handlebars->27->1413"
8440 + "default.handlebars->27->1171",
8441 + "default.handlebars->27->1422"
8442 ]
8443 },
8444 {
@@ -8449,7 +8455,7 @@
8455 "ru": "Примечания могут быть просмотрены и изменены другими администраторами.",
8456 "zh-chs": "其他設備組管理員可以查看和更改設備組註釋。",
8457 "xloc": [
8452 - "default.handlebars->27->662"
8458 + "default.handlebars->27->671"
8459 ]
8460 },
8461 {
@@ -8459,7 +8465,7 @@
8465 "default-mobile.handlebars->9->152",
8466 "default-mobile.handlebars->9->212",
8467 "default.handlebars->27->193",
8462 - "default.handlebars->27->504"
8468 + "default.handlebars->27->513"
8469 ]
8470 },
8471 {
@@ -8661,7 +8667,7 @@
8667 "default-mobile.handlebars->9->151",
8668 "default-mobile.handlebars->9->211",
8669 "default.handlebars->27->192",
8664 - "default.handlebars->27->503"
8670 + "default.handlebars->27->512"
8671 ]
8672 },
8673 {
@@ -8731,7 +8737,7 @@
8737 "ru": "Имя устройства",
8738 "zh-chs": "設備名稱",
8739 "xloc": [
8734 - "default.handlebars->27->495"
8740 + "default.handlebars->27->504"
8741 ]
8742 },
8743 {
@@ -8759,8 +8765,8 @@
8765 "nl": "Apparaten",
8766 "zh-chs": "设备",
8767 "xloc": [
8762 - "default.handlebars->27->1591",
8763 - "default.handlebars->27->1619"
8768 + "default.handlebars->27->1600",
8769 + "default.handlebars->27->1628"
8770 ]
8771 },
8772 {
@@ -8777,7 +8783,7 @@
8783 "ru": "Отключено",
8784 "zh-chs": "殘障人士",
8785 "xloc": [
8780 - "default.handlebars->27->546"
8786 + "default.handlebars->27->555"
8787 ]
8788 },
8789 {
@@ -8796,8 +8802,8 @@
8802 "xloc": [
8803 "default-mobile.handlebars->9->292",
8804 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8799 - "default.handlebars->27->1241",
8800 - "default.handlebars->27->799",
8805 + "default.handlebars->27->1250",
8806 + "default.handlebars->27->808",
8807 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
8808 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
8809 "xterm.handlebars->p11->deskarea0->deskarea1->3"
@@ -8853,7 +8859,7 @@
8859 "nl": "Geef een berichtvenster weer op het externe apparaat.",
8860 "fr": "Afficher un message sur le poste distant",
8861 "xloc": [
8856 - "default.handlebars->27->665"
8862 + "default.handlebars->27->674"
8863 ]
8864 },
8865 {
@@ -8878,7 +8884,7 @@
8884 "nl": "Geef een tekstbericht weer op het externe apparaat",
8885 "fr": "Afficher un message sur le poste distant",
8886 "xloc": [
8881 - "default.handlebars->27->582"
8887 + "default.handlebars->27->591"
8888 ]
8889 },
8890 {
@@ -8895,7 +8901,7 @@
8901 "ru": "Отобразить имя группы устройств",
8902 "zh-chs": "顯示設備組名稱",
8903 "xloc": [
8898 - "default.handlebars->27->1160"
8904 + "default.handlebars->27->1169"
8905 ]
8906 },
8907 {
@@ -8912,7 +8918,7 @@
8918 "ru": "Отображаемое имя",
8919 "zh-chs": "顯示名稱",
8920 "xloc": [
8915 - "default.handlebars->27->770"
8921 + "default.handlebars->27->779"
8922 ]
8923 },
8924 {
@@ -8928,7 +8934,7 @@
8934 "ru": "Показать публичную ссылку",
8935 "zh-chs": "显示公共链接",
8936 "xloc": [
8931 - "default.handlebars->27->1432"
8937 + "default.handlebars->27->1441"
8938 ]
8939 },
8940 {
@@ -8945,17 +8951,17 @@
8951 "ru": "Ничего не делать",
8952 "zh-chs": "沒做什麼",
8953 "xloc": [
8948 - "default.handlebars->27->1285"
8954 + "default.handlebars->27->1294"
8955 ]
8956 },
8957 {
8958 "en": "Domain",
8959 "nl": "Domein",
8960 "xloc": [
8955 - "default.handlebars->27->1557",
8956 - "default.handlebars->27->1603",
8961 + "default.handlebars->27->1566",
8962 "default.handlebars->27->1612",
8958 - "default.handlebars->27->1668",
8963 + "default.handlebars->27->1621",
8964 + "default.handlebars->27->1677",
8965 "mstsc.handlebars->main->1->3->1->2->1->0",
8966 "mstsc.handlebars->main->1->3->1->2->3"
8967 ]
@@ -8970,8 +8976,8 @@
8976 "nl": "Niet configureren",
8977 "zh-chs": "不要配置",
8978 "xloc": [
8973 - "default.handlebars->27->1289",
8974 - "default.handlebars->27->1294"
8979 + "default.handlebars->27->1298",
8980 + "default.handlebars->27->1303"
8981 ]
8982 },
8983 {
@@ -8984,7 +8990,7 @@
8990 "nl": "Maak geen verbinding met de server",
8991 "zh-chs": "不要连接到服务器",
8992 "xloc": [
8987 - "default.handlebars->27->1290"
8993 + "default.handlebars->27->1299"
8994 ]
8995 },
8996 {
@@ -9085,7 +9091,7 @@
9091 "zh-chs": "下載文件",
9092 "xloc": [
9093 "default-mobile.handlebars->9->322",
9088 - "default.handlebars->27->828"
9094 + "default.handlebars->27->837"
9095 ]
9096 },
9097 {
@@ -9119,7 +9125,7 @@
9125 "ru": "Скачать MeshCmd",
9126 "zh-chs": "下載MeshCmd",
9127 "xloc": [
9122 - "default.handlebars->27->730"
9128 + "default.handlebars->27->739"
9129 ]
9130 },
9131 {
@@ -9160,7 +9166,7 @@
9166 "en": "Download Report",
9167 "nl": "Rapport downloaden",
9168 "xloc": [
9163 - "default.handlebars->27->1483",
9169 + "default.handlebars->27->1492",
9170 "default.handlebars->container->column_l->p3->3->1->0->3"
9171 ]
9172 },
@@ -9178,7 +9184,7 @@
9184 "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.",
9185 "zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。",
9186 "xloc": [
9181 - "default.handlebars->27->723"
9187 + "default.handlebars->27->732"
9188 ]
9189 },
9190 {
@@ -9246,7 +9252,7 @@
9252 "ru": "Скачать события состояния питания",
9253 "zh-chs": "下載電源事件",
9254 "xloc": [
9249 - "default.handlebars->27->682"
9255 + "default.handlebars->27->691"
9256 ]
9257 },
9258 {
@@ -9297,7 +9303,7 @@
9303 "ru": "Загрузите список устройств с одним из форматов файлов ниже.",
9304 "zh-chs": "使用以下一種文件格式下載設備列表。",
9305 "xloc": [
9300 - "default.handlebars->27->443"
9306 + "default.handlebars->27->452"
9307 ]
9308 },
9309 {
@@ -9314,7 +9320,7 @@
9320 "ru": "Скачать список событий в одном из форматов ниже.",
9321 "zh-chs": "使用以下一種文件格式下載事件列表。",
9322 "xloc": [
9317 - "default.handlebars->27->1484"
9323 + "default.handlebars->27->1493"
9324 ]
9325 },
9326 {
@@ -9331,7 +9337,7 @@
9337 "ru": "Скачать список пользователей в одном из форматов ниже.",
9338 "zh-chs": "使用以下一種文件格式下載用戶列表。",
9339 "xloc": [
9334 - "default.handlebars->27->1545"
9340 + "default.handlebars->27->1554"
9341 ]
9342 },
9343 {
@@ -9414,7 +9420,7 @@
9420 "nl": "Dubbele agent",
9421 "zh-chs": "代理重复",
9422 "xloc": [
9417 - "default.handlebars->27->1827"
9423 + "default.handlebars->27->1836"
9424 ]
9425 },
9426 {
@@ -9448,7 +9454,7 @@
9454 "ru": "Скопировать группу пользователей",
9455 "zh-chs": "重複的用戶組",
9456 "xloc": [
9451 - "default.handlebars->27->1607"
9457 + "default.handlebars->27->1616"
9458 ]
9459 },
9460 {
@@ -9479,8 +9485,8 @@
9485 "ru": "Длительность",
9486 "zh-chs": "持續時間",
9487 "xloc": [
9482 - "default.handlebars->27->1781",
9483 - "default.handlebars->27->1801",
9488 + "default.handlebars->27->1790",
9489 + "default.handlebars->27->1810",
9490 "player.handlebars->3->2"
9491 ]
9492 },
@@ -9498,7 +9504,7 @@
9504 "ru": "Во время активации агент будет иметь доступ к паролю администратора.",
9505 "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。",
9506 "xloc": [
9501 - "default.handlebars->27->1299"
9507 + "default.handlebars->27->1308"
9508 ]
9509 },
9510 {
@@ -9515,7 +9521,7 @@
9521 "ru": "Голландский (Бельгийский)",
9522 "zh-chs": "荷蘭語(比利時)",
9523 "xloc": [
9518 - "default.handlebars->27->1001"
9524 + "default.handlebars->27->1010"
9525 ]
9526 },
9527 {
@@ -9532,7 +9538,7 @@
9538 "ru": "Голландский (Стандартный)",
9539 "zh-chs": "荷蘭語(標準)",
9540 "xloc": [
9535 - "default.handlebars->27->1000"
9541 + "default.handlebars->27->1009"
9542 ]
9543 },
9544 {
@@ -9723,7 +9729,7 @@
9729 "zh-chs": "編輯裝置",
9730 "xloc": [
9731 "default-mobile.handlebars->9->283",
9726 - "default.handlebars->27->743"
9732 + "default.handlebars->27->752"
9733 ]
9734 },
9735 {
@@ -9743,10 +9749,10 @@
9749 "default-mobile.handlebars->9->406",
9750 "default-mobile.handlebars->9->408",
9751 "default-mobile.handlebars->9->426",
9746 - "default.handlebars->27->1305",
9747 - "default.handlebars->27->1335",
9748 - "default.handlebars->27->1357",
9749 - "default.handlebars->27->1369"
9752 + "default.handlebars->27->1314",
9753 + "default.handlebars->27->1344",
9754 + "default.handlebars->27->1366",
9755 + "default.handlebars->27->1378"
9756 ]
9757 },
9758 {
@@ -9763,7 +9769,7 @@
9769 "ru": "Редактировать функции группы устройств",
9770 "zh-chs": "編輯設備組功能",
9771 "xloc": [
9766 - "default.handlebars->27->1321"
9772 + "default.handlebars->27->1330"
9773 ]
9774 },
9775 {
@@ -9780,8 +9786,8 @@
9786 "ru": "Редактировать права группы устройств",
9787 "zh-chs": "編輯設備組權限",
9788 "xloc": [
9783 - "default.handlebars->27->1354",
9784 - "default.handlebars->27->1366"
9789 + "default.handlebars->27->1363",
9790 + "default.handlebars->27->1375"
9791 ]
9792 },
9793 {
@@ -9798,7 +9804,7 @@
9804 "ru": "Редактировать согласие пользователя группы устройств",
9805 "zh-chs": "編輯設備組用戶同意",
9806 "xloc": [
9801 - "default.handlebars->27->1306"
9807 + "default.handlebars->27->1315"
9808 ]
9809 },
9810 {
@@ -9816,7 +9822,7 @@
9822 "zh-chs": "編輯設備說明",
9823 "xloc": [
9824 "default-mobile.handlebars->9->420",
9819 - "default.handlebars->27->1348"
9825 + "default.handlebars->27->1357"
9826 ]
9827 },
9828 {
@@ -9832,8 +9838,14 @@
9838 "ru": "Изменить разрешения устройства",
9839 "zh-chs": "编辑设备权限",
9840 "xloc": [
9835 - "default.handlebars->27->1359",
9836 - "default.handlebars->27->1361"
9841 + "default.handlebars->27->1368",
9842 + "default.handlebars->27->1370"
9843 + ]
9844 + },
9845 + {
9846 + "en": "Edit Device Tags",
9847 + "xloc": [
9848 + "default.handlebars->27->451"
9849 ]
9850 },
9851 {
@@ -9847,7 +9859,7 @@
9859 "nl": "Gebruikerstoestemming apparaat bewerken",
9860 "zh-chs": "编辑设备用户同意",
9861 "xloc": [
9850 - "default.handlebars->27->1308"
9862 + "default.handlebars->27->1317"
9863 ]
9864 },
9865 {
@@ -9863,7 +9875,7 @@
9875 "ru": "Редактировать группу",
9876 "zh-chs": "编辑组",
9877 "xloc": [
9866 - "default.handlebars->27->641"
9878 + "default.handlebars->27->650"
9879 ]
9880 },
9881 {
@@ -9881,9 +9893,9 @@
9893 "zh-chs": "編輯英特爾&reg;AMT憑據",
9894 "xloc": [
9895 "default-mobile.handlebars->9->273",
9884 - "default.handlebars->27->533",
9885 - "default.handlebars->27->536",
9886 - "default.handlebars->27->689"
9896 + "default.handlebars->27->542",
9897 + "default.handlebars->27->545",
9898 + "default.handlebars->27->698"
9899 ]
9900 },
9901 {
@@ -9901,7 +9913,7 @@
9913 "zh-chs": "編輯筆記",
9914 "xloc": [
9915 "default-mobile.handlebars->9->433",
9904 - "default.handlebars->27->1376"
9916 + "default.handlebars->27->1385"
9917 ]
9918 },
9919 {
@@ -9915,7 +9927,7 @@
9927 "nl": "Gebruikerstoestemming bewerken",
9928 "zh-chs": "编辑用户同意",
9929 "xloc": [
9918 - "default.handlebars->27->1307"
9930 + "default.handlebars->27->1316"
9931 ]
9932 },
9933 {
@@ -9932,7 +9944,7 @@
9944 "ru": "Редактировать права пользователя для группы устройств",
9945 "zh-chs": "編輯用戶設備組權限",
9946 "xloc": [
9935 - "default.handlebars->27->1367"
9947 + "default.handlebars->27->1376"
9948 ]
9949 },
9950 {
@@ -9948,7 +9960,7 @@
9960 "ru": "Изменить разрешения для пользовательских устройств",
9961 "zh-chs": "编辑用户设备权限",
9962 "xloc": [
9951 - "default.handlebars->27->1362"
9963 + "default.handlebars->27->1371"
9964 ]
9965 },
9966 {
@@ -9965,7 +9977,7 @@
9977 "ru": "Редактировать группу пользователей",
9978 "zh-chs": "編輯用戶組",
9979 "xloc": [
9968 - "default.handlebars->27->1646"
9980 + "default.handlebars->27->1655"
9981 ]
9982 },
9983 {
@@ -9979,7 +9991,7 @@
9991 "nl": "Gebruikersmachtigingen voor apparaatgroep bewerken",
9992 "zh-chs": "编辑用户组设备权限",
9993 "xloc": [
9982 - "default.handlebars->27->1364"
9994 + "default.handlebars->27->1373"
9995 ]
9996 },
9997 {
@@ -9999,6 +10011,12 @@
10011 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1"
10012 ]
10013 },
10014 + {
10015 + "en": "Edit tags",
10016 + "xloc": [
10017 + "default.handlebars->27->433"
10018 + ]
10019 + },
10020 {
10021 "cs": "E-mail",
10022 "de": "E-Mail",
@@ -10014,11 +10032,11 @@
10032 "zh-chs": "電子郵件",
10033 "xloc": [
10034 "default-mobile.handlebars->9->78",
10017 - "default.handlebars->27->1559",
10018 - "default.handlebars->27->1672",
10019 - "default.handlebars->27->1674",
10020 - "default.handlebars->27->1714",
10021 - "default.handlebars->27->1730",
10035 + "default.handlebars->27->1568",
10036 + "default.handlebars->27->1681",
10037 + "default.handlebars->27->1683",
10038 + "default.handlebars->27->1723",
10039 + "default.handlebars->27->1739",
10040 "default.handlebars->27->319",
10041 "login-mobile.handlebars->5->42",
10042 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -10041,7 +10059,7 @@
10059 "zh-chs": "電郵地址變更",
10060 "xloc": [
10061 "default-mobile.handlebars->9->79",
10044 - "default.handlebars->27->1169"
10062 + "default.handlebars->27->1178"
10063 ]
10064 },
10065 {
@@ -10059,7 +10077,7 @@
10077 "zh-chs": "郵件認證",
10078 "xloc": [
10079 "default-mobile.handlebars->9->68",
10062 - "default.handlebars->27->938"
10080 + "default.handlebars->27->947"
10081 ]
10082 },
10083 {
@@ -10104,7 +10122,7 @@
10122 "zh-chs": "電子郵件驗證",
10123 "xloc": [
10124 "default-mobile.handlebars->9->77",
10107 - "default.handlebars->27->1167"
10125 + "default.handlebars->27->1176"
10126 ]
10127 },
10128 {
@@ -10134,7 +10152,7 @@
10152 "ru": "Электронная почта не подтверждена",
10153 "zh-chs": "邮件未验证",
10154 "xloc": [
10137 - "default.handlebars->27->1513"
10155 + "default.handlebars->27->1522"
10156 ]
10157 },
10158 {
@@ -10151,8 +10169,8 @@
10169 "ru": "Email подтвержден",
10170 "zh-chs": "電子郵件已驗證",
10171 "xloc": [
10154 - "default.handlebars->27->1514",
10155 - "default.handlebars->27->1666"
10172 + "default.handlebars->27->1523",
10173 + "default.handlebars->27->1675"
10174 ]
10175 },
10176 {
@@ -10169,7 +10187,7 @@
10187 "ru": "Email подтвержден.",
10188 "zh-chs": "電子郵件已驗證。",
10189 "xloc": [
10172 - "default.handlebars->27->1565"
10190 + "default.handlebars->27->1574"
10191 ]
10192 },
10193 {
@@ -10186,7 +10204,7 @@
10204 "ru": "Email не подтвержден",
10205 "zh-chs": "電子郵件未驗證",
10206 "xloc": [
10189 - "default.handlebars->27->1667"
10207 + "default.handlebars->27->1676"
10208 ]
10209 },
10210 {
@@ -10225,7 +10243,7 @@
10243 "en": "Email verified and forced password reset required.",
10244 "nl": "E-mail geverifieerd en geforceerd opnieuw instellen van wachtwoord vereist.",
10245 "xloc": [
10228 - "default.handlebars->27->1566"
10246 + "default.handlebars->27->1575"
10247 ]
10248 },
10249 {
@@ -10238,7 +10256,7 @@
10256 "nl": "Email/SMS verkeer",
10257 "zh-chs": "电子邮件/短信流量",
10258 "xloc": [
10241 - "default.handlebars->27->1866"
10259 + "default.handlebars->27->1875"
10260 ]
10261 },
10262 {
@@ -10277,7 +10295,7 @@
10295 "ru": "Включить коды приглашения",
10296 "zh-chs": "啟用邀請代碼",
10297 "xloc": [
10280 - "default.handlebars->27->1397"
10298 + "default.handlebars->27->1406"
10299 ]
10300 },
10301 {
@@ -10312,7 +10330,7 @@
10330 "zh-chs": "啟用電子郵件兩因素驗證。",
10331 "xloc": [
10332 "default-mobile.handlebars->9->70",
10315 - "default.handlebars->27->940"
10333 + "default.handlebars->27->949"
10334 ]
10335 },
10336 {
@@ -10336,7 +10354,7 @@
10354 "en": "Enabled",
10355 "nl": "Ingeschakeld",
10356 "xloc": [
10339 - "default.handlebars->27->1803"
10357 + "default.handlebars->27->1812"
10358 ]
10359 },
10360 {
@@ -10360,7 +10378,7 @@
10378 "en": "End Time",
10379 "nl": "Eindtijd",
10380 "xloc": [
10363 - "default.handlebars->27->1800"
10381 + "default.handlebars->27->1809"
10382 ]
10383 },
10384 {
@@ -10377,7 +10395,7 @@
10395 "ru": "Английский",
10396 "zh-chs": "英語",
10397 "xloc": [
10380 - "default.handlebars->27->1002"
10398 + "default.handlebars->27->1011"
10399 ]
10400 },
10401 {
@@ -10394,7 +10412,7 @@
10412 "ru": "Английский (Австралия)",
10413 "zh-chs": "英文(澳洲)",
10414 "xloc": [
10397 - "default.handlebars->27->1003"
10415 + "default.handlebars->27->1012"
10416 ]
10417 },
10418 {
@@ -10411,7 +10429,7 @@
10429 "ru": "Английский (Белиз)",
10430 "zh-chs": "英語(伯利茲)",
10431 "xloc": [
10414 - "default.handlebars->27->1004"
10432 + "default.handlebars->27->1013"
10433 ]
10434 },
10435 {
@@ -10428,7 +10446,7 @@
10446 "ru": "Английский (Канада)",
10447 "zh-chs": "英文(加拿大)",
10448 "xloc": [
10431 - "default.handlebars->27->1005"
10449 + "default.handlebars->27->1014"
10450 ]
10451 },
10452 {
@@ -10445,7 +10463,7 @@
10463 "ru": "Английский (Ирландия)",
10464 "zh-chs": "英文(愛爾蘭)",
10465 "xloc": [
10448 - "default.handlebars->27->1006"
10466 + "default.handlebars->27->1015"
10467 ]
10468 },
10469 {
@@ -10462,7 +10480,7 @@
10480 "ru": "Английский (Ямайка)",
10481 "zh-chs": "英文(牙買加)",
10482 "xloc": [
10465 - "default.handlebars->27->1007"
10483 + "default.handlebars->27->1016"
10484 ]
10485 },
10486 {
@@ -10479,7 +10497,7 @@
10497 "ru": "Английский (Новая Зеландия)",
10498 "zh-chs": "英文(紐西蘭)",
10499 "xloc": [
10482 - "default.handlebars->27->1008"
10500 + "default.handlebars->27->1017"
10501 ]
10502 },
10503 {
@@ -10496,7 +10514,7 @@
10514 "ru": "Английский (Филиппины)",
10515 "zh-chs": "英文(菲律賓)",
10516 "xloc": [
10499 - "default.handlebars->27->1009"
10517 + "default.handlebars->27->1018"
10518 ]
10519 },
10520 {
@@ -10513,7 +10531,7 @@
10531 "ru": "Английский (Южная Африка)",
10532 "zh-chs": "英語(南非)",
10533 "xloc": [
10516 - "default.handlebars->27->1010"
10534 + "default.handlebars->27->1019"
10535 ]
10536 },
10537 {
@@ -10530,7 +10548,7 @@
10548 "ru": "Английский (Тринидад и Тобаго)",
10549 "zh-chs": "英文(特立尼達和多巴哥)",
10550 "xloc": [
10533 - "default.handlebars->27->1011"
10551 + "default.handlebars->27->1020"
10552 ]
10553 },
10554 {
@@ -10547,7 +10565,7 @@
10565 "ru": "Английский (Великобритания)",
10566 "zh-chs": "英文(英國)",
10567 "xloc": [
10550 - "default.handlebars->27->1012"
10568 + "default.handlebars->27->1021"
10569 ]
10570 },
10571 {
@@ -10564,7 +10582,7 @@
10582 "ru": "Английский (Соединенные Штаты)",
10583 "zh-chs": "美國英語)",
10584 "xloc": [
10567 - "default.handlebars->27->1013"
10585 + "default.handlebars->27->1022"
10586 ]
10587 },
10588 {
@@ -10581,7 +10599,7 @@
10599 "ru": "Английский (Зимбабве)",
10600 "zh-chs": "英文(津巴布韋)",
10601 "xloc": [
10584 - "default.handlebars->27->1014"
10602 + "default.handlebars->27->1023"
10603 ]
10604 },
10605 {
@@ -10598,8 +10616,8 @@
10616 "ru": "Ввод",
10617 "zh-chs": "輸入",
10618 "xloc": [
10601 - "default.handlebars->27->1195",
10602 - "default.handlebars->27->1196"
10619 + "default.handlebars->27->1204",
10620 + "default.handlebars->27->1205"
10621 ]
10622 },
10623 {
@@ -10616,7 +10634,7 @@
10634 "ru": "Введите разделенный запятыми список имен административных областей.",
10635 "zh-chs": "輸入管理領域名稱的逗號分隔列表。",
10636 "xloc": [
10619 - "default.handlebars->27->1570"
10637 + "default.handlebars->27->1579"
10638 ]
10639 },
10640 {
@@ -10650,7 +10668,7 @@
10668 "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.",
10669 "zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
10670 "xloc": [
10653 - "default.handlebars->27->764"
10671 + "default.handlebars->27->773"
10672 ]
10673 },
10674 {
@@ -10698,7 +10716,7 @@
10716 "nl": "Voer uw telefoonnummer in dat geschikt is voor SMS. Na verificatie kan het nummer worden gebruikt voor inlogverificatie en andere meldingen.",
10717 "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
10718 "xloc": [
10701 - "default.handlebars->27->935"
10719 + "default.handlebars->27->944"
10720 ]
10721 },
10722 {
@@ -10749,7 +10767,7 @@
10767 "ru": "Эсперанто",
10768 "zh-chs": "世界語",
10769 "xloc": [
10752 - "default.handlebars->27->1015"
10770 + "default.handlebars->27->1024"
10771 ]
10772 },
10773 {
@@ -10766,7 +10784,7 @@
10784 "ru": "Эстонский",
10785 "zh-chs": "愛沙尼亞語",
10786 "xloc": [
10769 - "default.handlebars->27->1016"
10787 + "default.handlebars->27->1025"
10788 ]
10789 },
10790 {
@@ -10783,7 +10801,7 @@
10801 "ru": "Детали события",
10802 "zh-chs": "活動詳情",
10803 "xloc": [
10786 - "default.handlebars->27->841"
10804 + "default.handlebars->27->850"
10805 ]
10806 },
10807 {
@@ -10800,7 +10818,7 @@
10818 "ru": "Экспорт списка событий",
10819 "zh-chs": "活動列表導出",
10820 "xloc": [
10803 - "default.handlebars->27->1489"
10821 + "default.handlebars->27->1498"
10822 ]
10823 },
10824 {
@@ -10889,7 +10907,7 @@
10907 "ru": "Расширенный ASCII",
10908 "zh-chs": "擴展ASCII",
10909 "xloc": [
10892 - "default.handlebars->27->790"
10910 + "default.handlebars->27->799"
10911 ]
10912 },
10913 {
@@ -10923,7 +10941,7 @@
10941 "ru": "Внешний",
10942 "zh-chs": "外部",
10943 "xloc": [
10926 - "default.handlebars->27->1851"
10944 + "default.handlebars->27->1860"
10945 ]
10946 },
10947 {
@@ -10947,7 +10965,7 @@
10965 "ru": "Mакедонский (БЮР)",
10966 "zh-chs": "FYRO馬其頓語",
10967 "xloc": [
10950 - "default.handlebars->27->1066"
10968 + "default.handlebars->27->1075"
10969 ]
10970 },
10971 {
@@ -10964,7 +10982,7 @@
10982 "ru": "Фарерский",
10983 "zh-chs": "法羅語",
10984 "xloc": [
10967 - "default.handlebars->27->1017"
10985 + "default.handlebars->27->1026"
10986 ]
10987 },
10988 {
@@ -10994,7 +11012,7 @@
11012 "ko": "원격 터미널 세션을 시작하지 못했습니다 : {0} ({1})",
11013 "zh-chs": "无法启动远程终端会话{0}({1})",
11014 "xloc": [
10997 - "default.handlebars->27->746"
11015 + "default.handlebars->27->755"
11016 ]
11017 },
11018 {
@@ -11011,7 +11029,7 @@
11029 "ru": "Фарси (Персидский)",
11030 "zh-chs": "波斯語(波斯語)",
11031 "xloc": [
11014 - "default.handlebars->27->1018"
11032 + "default.handlebars->27->1027"
11033 ]
11034 },
11035 {
@@ -11046,7 +11064,7 @@
11064 "ru": "Функции",
11065 "zh-chs": "特徵",
11066 "xloc": [
11049 - "default.handlebars->27->1227"
11067 + "default.handlebars->27->1236"
11068 ]
11069 },
11070 {
@@ -11063,7 +11081,7 @@
11081 "ru": "Фиджи",
11082 "zh-chs": "斐濟",
11083 "xloc": [
11066 - "default.handlebars->27->1019"
11084 + "default.handlebars->27->1028"
11085 ]
11086 },
11087 {
@@ -11081,8 +11099,8 @@
11099 "zh-chs": "文件編輯器",
11100 "xloc": [
11101 "default-mobile.handlebars->9->306",
11084 - "default.handlebars->27->475",
11085 - "default.handlebars->27->813"
11102 + "default.handlebars->27->484",
11103 + "default.handlebars->27->822"
11104 ]
11105 },
11106 {
@@ -11116,7 +11134,7 @@
11134 "ru": "Драйвер файловой системы",
11135 "zh-chs": "FileSystemDriver",
11136 "xloc": [
11119 - "default.handlebars->27->773"
11137 + "default.handlebars->27->782"
11138 ]
11139 },
11140 {
@@ -11135,8 +11153,8 @@
11153 "xloc": [
11154 "default-mobile.handlebars->9->167",
11155 "default-mobile.handlebars->9->257",
11138 - "default.handlebars->27->1316",
11139 - "default.handlebars->27->1788",
11156 + "default.handlebars->27->1325",
11157 + "default.handlebars->27->1797",
11158 "default.handlebars->27->236",
11159 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
11160 "default.handlebars->contextMenu->cxfiles"
@@ -11173,9 +11191,9 @@
11191 "ru": "Уведомление файлов",
11192 "zh-chs": "文件通知",
11193 "xloc": [
11176 - "default.handlebars->27->1235",
11177 - "default.handlebars->27->1699",
11178 - "default.handlebars->27->558"
11194 + "default.handlebars->27->1244",
11195 + "default.handlebars->27->1708",
11196 + "default.handlebars->27->567"
11197 ]
11198 },
11199 {
@@ -11192,9 +11210,9 @@
11210 "ru": "Запрос файлов",
11211 "zh-chs": "文件提示",
11212 "xloc": [
11195 - "default.handlebars->27->1234",
11196 - "default.handlebars->27->1698",
11197 - "default.handlebars->27->557"
11213 + "default.handlebars->27->1243",
11214 + "default.handlebars->27->1707",
11215 + "default.handlebars->27->566"
11216 ]
11217 },
11218 {
@@ -11231,7 +11249,7 @@
11249 "ru": "Финский",
11250 "zh-chs": "芬蘭",
11251 "xloc": [
11234 - "default.handlebars->27->1020"
11252 + "default.handlebars->27->1029"
11253 ]
11254 },
11255 {
@@ -11354,8 +11372,8 @@
11372 "ru": "Принудительно сбросить пароль при следующем входе в систему.",
11373 "zh-chs": "下次登錄時強制重置密碼。",
11374 "xloc": [
11357 - "default.handlebars->27->1564",
11358 - "default.handlebars->27->1739"
11375 + "default.handlebars->27->1573",
11376 + "default.handlebars->27->1748"
11377 ]
11378 },
11379 {
@@ -11414,7 +11432,7 @@
11432 "en": "Format",
11433 "nl": "Formaat",
11434 "xloc": [
11417 - "default.handlebars->27->1480"
11435 + "default.handlebars->27->1489"
11436 ]
11437 },
11438 {
@@ -11448,8 +11466,8 @@
11466 "ru": "Свободно",
11467 "zh-chs": "自由",
11468 "xloc": [
11451 - "default.handlebars->27->1812",
11452 - "default.handlebars->27->1814"
11469 + "default.handlebars->27->1821",
11470 + "default.handlebars->27->1823"
11471 ]
11472 },
11473 {
@@ -11484,7 +11502,7 @@
11502 "ru": "Французский (Бельгия)",
11503 "zh-chs": "法語(比利時)",
11504 "xloc": [
11487 - "default.handlebars->27->1022"
11505 + "default.handlebars->27->1031"
11506 ]
11507 },
11508 {
@@ -11501,7 +11519,7 @@
11519 "ru": "Французский (Канада)",
11520 "zh-chs": "法語(加拿大)",
11521 "xloc": [
11504 - "default.handlebars->27->1023"
11522 + "default.handlebars->27->1032"
11523 ]
11524 },
11525 {
@@ -11518,7 +11536,7 @@
11536 "ru": "Французский (Франция)",
11537 "zh-chs": "法語(法國)",
11538 "xloc": [
11521 - "default.handlebars->27->1024"
11539 + "default.handlebars->27->1033"
11540 ]
11541 },
11542 {
@@ -11535,7 +11553,7 @@
11553 "ru": "Французский (Люксембург)",
11554 "zh-chs": "法語(盧森堡)",
11555 "xloc": [
11538 - "default.handlebars->27->1025"
11556 + "default.handlebars->27->1034"
11557 ]
11558 },
11559 {
@@ -11552,7 +11570,7 @@
11570 "ru": "Французский (Монако)",
11571 "zh-chs": "法語(摩納哥)",
11572 "xloc": [
11555 - "default.handlebars->27->1026"
11573 + "default.handlebars->27->1035"
11574 ]
11575 },
11576 {
@@ -11569,7 +11587,7 @@
11587 "ru": "Французский (Стандартный)",
11588 "zh-chs": "法語(標準)",
11589 "xloc": [
11572 - "default.handlebars->27->1021"
11590 + "default.handlebars->27->1030"
11591 ]
11592 },
11593 {
@@ -11586,7 +11604,7 @@
11604 "ru": "Французский (Швейцария)",
11605 "zh-chs": "法語(瑞士)",
11606 "xloc": [
11589 - "default.handlebars->27->1027"
11607 + "default.handlebars->27->1036"
11608 ]
11609 },
11610 {
@@ -11603,7 +11621,7 @@
11621 "ru": "Фризский",
11622 "zh-chs": "弗里斯蘭語",
11623 "xloc": [
11606 - "default.handlebars->27->1028"
11624 + "default.handlebars->27->1037"
11625 ]
11626 },
11627 {
@@ -11620,7 +11638,7 @@
11638 "ru": "Фриульский",
11639 "zh-chs": "弗留利",
11640 "xloc": [
11623 - "default.handlebars->27->1029"
11641 + "default.handlebars->27->1038"
11642 ]
11643 },
11644 {
@@ -11641,9 +11659,9 @@
11659 "default-mobile.handlebars->9->398",
11660 "default-mobile.handlebars->9->407",
11661 "default-mobile.handlebars->9->425",
11644 - "default.handlebars->27->1202",
11645 - "default.handlebars->27->1334",
11646 - "default.handlebars->27->1576"
11662 + "default.handlebars->27->1211",
11663 + "default.handlebars->27->1343",
11664 + "default.handlebars->27->1585"
11665 ]
11666 },
11667 {
@@ -11660,7 +11678,7 @@
11678 "ru": "Администратор с полным доступом (все права)",
11679 "zh-chs": "正式管理員(保留所有權利)",
11680 "xloc": [
11663 - "default.handlebars->27->1368"
11681 + "default.handlebars->27->1377"
11682 ]
11683 },
11684 {
@@ -11691,7 +11709,7 @@
11709 "ru": "Полные права на устройство",
11710 "zh-chs": "完整的設備權限",
11711 "xloc": [
11694 - "default.handlebars->27->624"
11712 + "default.handlebars->27->633"
11713 ]
11714 },
11715 {
@@ -11707,7 +11725,7 @@
11725 "ru": "Полные права",
11726 "zh-chs": "完全权利",
11727 "xloc": [
11710 - "default.handlebars->27->640"
11728 + "default.handlebars->27->649"
11729 ]
11730 },
11731 {
@@ -11743,7 +11761,7 @@
11761 "ru": "Администратор с полным доступом",
11762 "zh-chs": "正式管理員",
11763 "xloc": [
11746 - "default.handlebars->27->1660"
11764 + "default.handlebars->27->1669"
11765 ]
11766 },
11767 {
@@ -11757,7 +11775,7 @@
11775 "zh-chs": "显卡",
11776 "xloc": [
11777 "default-mobile.handlebars->9->376",
11760 - "default.handlebars->27->903"
11778 + "default.handlebars->27->912"
11779 ]
11780 },
11781 {
@@ -11774,7 +11792,7 @@
11792 "ru": "Гэльский (Ирландский)",
11793 "zh-chs": "蓋爾語(愛爾蘭)",
11794 "xloc": [
11777 - "default.handlebars->27->1031"
11795 + "default.handlebars->27->1040"
11796 ]
11797 },
11798 {
@@ -11791,7 +11809,7 @@
11809 "ru": "Гэльский (Шотландия)",
11810 "zh-chs": "蓋爾語(蘇格蘭語)",
11811 "xloc": [
11794 - "default.handlebars->27->1030"
11812 + "default.handlebars->27->1039"
11813 ]
11814 },
11815 {
@@ -11808,7 +11826,7 @@
11826 "ru": "Галицкий",
11827 "zh-chs": "加拉契人",
11828 "xloc": [
11811 - "default.handlebars->27->1032"
11829 + "default.handlebars->27->1041"
11830 ]
11831 },
11832 {
@@ -11882,7 +11900,7 @@
11900 "ru": "Общая информация",
11901 "zh-chs": "一般信息",
11902 "xloc": [
11885 - "default.handlebars->27->482"
11903 + "default.handlebars->27->491"
11904 ]
11905 },
11906 {
@@ -11916,7 +11934,7 @@
11934 "ru": "Грузинский",
11935 "zh-chs": "格魯吉亞人",
11936 "xloc": [
11919 - "default.handlebars->27->1033"
11937 + "default.handlebars->27->1042"
11938 ]
11939 },
11940 {
@@ -11933,7 +11951,7 @@
11951 "ru": "Немецкий (Австрия)",
11952 "zh-chs": "德語(奧地利)",
11953 "xloc": [
11936 - "default.handlebars->27->1035"
11954 + "default.handlebars->27->1044"
11955 ]
11956 },
11957 {
@@ -11950,7 +11968,7 @@
11968 "ru": "Немецкий (Германия)",
11969 "zh-chs": "德文(德國)",
11970 "xloc": [
11953 - "default.handlebars->27->1036"
11971 + "default.handlebars->27->1045"
11972 ]
11973 },
11974 {
@@ -11967,7 +11985,7 @@
11985 "ru": "Немецкий (Лихтенштейн)",
11986 "zh-chs": "德文(列支敦士登)",
11987 "xloc": [
11970 - "default.handlebars->27->1037"
11988 + "default.handlebars->27->1046"
11989 ]
11990 },
11991 {
@@ -11984,7 +12002,7 @@
12002 "ru": "Немецкий (Люксембург)",
12003 "zh-chs": "德語(盧森堡)",
12004 "xloc": [
11987 - "default.handlebars->27->1038"
12005 + "default.handlebars->27->1047"
12006 ]
12007 },
12008 {
@@ -12001,7 +12019,7 @@
12019 "ru": "Немецкий (Стандартный)",
12020 "zh-chs": "德語(標準)",
12021 "xloc": [
12004 - "default.handlebars->27->1034"
12022 + "default.handlebars->27->1043"
12023 ]
12024 },
12025 {
@@ -12018,7 +12036,7 @@
12036 "ru": "Немецкий (Швейцария)",
12037 "zh-chs": "德語(瑞士)",
12038 "xloc": [
12021 - "default.handlebars->27->1039"
12039 + "default.handlebars->27->1048"
12040 ]
12041 },
12042 {
@@ -12035,7 +12053,7 @@
12053 "ru": "Получить учетные данные MQTT для этого устройства.",
12054 "zh-chs": "獲取此設備的MQTT登錄憑據。",
12055 "xloc": [
12038 - "default.handlebars->27->605"
12056 + "default.handlebars->27->614"
12057 ]
12058 },
12059 {
@@ -12101,7 +12119,7 @@
12119 "ru": "Хорошо",
12120 "zh-chs": "好",
12121 "xloc": [
12104 - "default.handlebars->27->1198"
12122 + "default.handlebars->27->1207"
12123 ]
12124 },
12125 {
@@ -12138,7 +12156,7 @@
12156 "ru": "Греческий",
12157 "zh-chs": "希臘語",
12158 "xloc": [
12141 - "default.handlebars->27->1040"
12159 + "default.handlebars->27->1049"
12160 ]
12161 },
12162 {
@@ -12156,7 +12174,7 @@
12174 "zh-chs": "組",
12175 "xloc": [
12176 "default-mobile.handlebars->9->214",
12159 - "default.handlebars->27->510",
12177 + "default.handlebars->27->519",
12178 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
12179 ]
12180 },
@@ -12174,9 +12192,9 @@
12192 "ru": "Групповое действие",
12193 "zh-chs": "集體行動",
12194 "xloc": [
12177 - "default.handlebars->27->1528",
12178 - "default.handlebars->27->1597",
12179 - "default.handlebars->27->434",
12195 + "default.handlebars->27->1537",
12196 + "default.handlebars->27->1606",
12197 + "default.handlebars->27->435",
12198 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
12199 "default.handlebars->container->column_l->p4->3->1->0->3->3",
12200 "default.handlebars->container->column_l->p50->3->1->0->3->3"
@@ -12186,14 +12204,14 @@
12204 "en": "Group By",
12205 "nl": "Groeperen op",
12206 "xloc": [
12189 - "default.handlebars->27->1476"
12207 + "default.handlebars->27->1485"
12208 ]
12209 },
12210 {
12211 "en": "Group Identifier",
12212 "nl": "Groepsidentificatie",
12213 "xloc": [
12196 - "default.handlebars->27->1614"
12214 + "default.handlebars->27->1623"
12215 ]
12216 },
12217 {
@@ -12210,7 +12228,7 @@
12228 "ru": "Члены группы",
12229 "zh-chs": "小組成員",
12230 "xloc": [
12213 - "default.handlebars->27->1623"
12231 + "default.handlebars->27->1632"
12232 ]
12233 },
12234 {
@@ -12227,7 +12245,7 @@
12245 "ru": "Права на группу для пользователя {0}.",
12246 "zh-chs": "用戶{0}的組權限。",
12247 "xloc": [
12230 - "default.handlebars->27->1333"
12248 + "default.handlebars->27->1342"
12249 ]
12250 },
12251 {
@@ -12244,7 +12262,7 @@
12262 "ru": "Права на группу для {0}.",
12263 "zh-chs": "{0}的組權限。",
12264 "xloc": [
12247 - "default.handlebars->27->1332"
12265 + "default.handlebars->27->1341"
12266 ]
12267 },
12268 {
@@ -12295,7 +12313,7 @@
12313 "ru": "Гуджарати",
12314 "zh-chs": "古久拉提",
12315 "xloc": [
12298 - "default.handlebars->27->1041"
12316 + "default.handlebars->27->1050"
12317 ]
12318 },
12319 {
@@ -12331,7 +12349,7 @@
12349 "ru": "Гаитянский",
12350 "zh-chs": "海地",
12351 "xloc": [
12334 - "default.handlebars->27->1042"
12352 + "default.handlebars->27->1051"
12353 ]
12354 },
12355 {
@@ -12365,7 +12383,7 @@
12383 "ru": "Жесткое отключение агента",
12384 "zh-chs": "硬斷開劑",
12385 "xloc": [
12368 - "default.handlebars->27->930"
12386 + "default.handlebars->27->939"
12387 ]
12388 },
12389 {
@@ -12382,7 +12400,7 @@
12400 "ru": "Всего кучи",
12401 "zh-chs": "堆總數",
12402 "xloc": [
12385 - "default.handlebars->27->1853"
12403 + "default.handlebars->27->1862"
12404 ]
12405 },
12406 {
@@ -12399,7 +12417,7 @@
12417 "ru": "Куча используется",
12418 "zh-chs": "堆使用",
12419 "xloc": [
12402 - "default.handlebars->27->1852"
12420 + "default.handlebars->27->1861"
12421 ]
12422 },
12423 {
@@ -12416,7 +12434,7 @@
12434 "ru": "Иврит",
12435 "zh-chs": "希伯來語",
12436 "xloc": [
12419 - "default.handlebars->27->1043"
12437 + "default.handlebars->27->1052"
12438 ]
12439 },
12440 {
@@ -12450,7 +12468,7 @@
12468 "ru": "Помочь перевести MeshCentral",
12469 "zh-chs": "幫助翻譯MeshCentral",
12470 "xloc": [
12453 - "default.handlebars->27->1157"
12471 + "default.handlebars->27->1166"
12472 ]
12473 },
12474 {
@@ -12536,7 +12554,7 @@
12554 "ru": "Хинди",
12555 "zh-chs": "印地語",
12556 "xloc": [
12539 - "default.handlebars->27->1044"
12557 + "default.handlebars->27->1053"
12558 ]
12559 },
12560 {
@@ -12568,7 +12586,7 @@
12586 "zh-chs": "持有1份副本",
12587 "xloc": [
12588 "default-mobile.handlebars->9->315",
12571 - "default.handlebars->27->822"
12589 + "default.handlebars->27->831"
12590 ]
12591 },
12592 {
@@ -12586,7 +12604,7 @@
12604 "zh-chs": "持有1個搬家公司",
12605 "xloc": [
12606 "default-mobile.handlebars->9->319",
12589 - "default.handlebars->27->826"
12607 + "default.handlebars->27->835"
12608 ]
12609 },
12610 {
@@ -12604,7 +12622,7 @@
12622 "zh-chs": "保留{0}個條目進行複制",
12623 "xloc": [
12624 "default-mobile.handlebars->9->313",
12607 - "default.handlebars->27->820"
12625 + "default.handlebars->27->829"
12626 ]
12627 },
12628 {
@@ -12622,7 +12640,7 @@
12640 "zh-chs": "保留{0}個條目以進行移動",
12641 "xloc": [
12642 "default-mobile.handlebars->9->317",
12625 - "default.handlebars->27->824"
12643 + "default.handlebars->27->833"
12644 ]
12645 },
12646 {
@@ -12640,7 +12658,7 @@
12658 "zh-chs": "保持{2}的{0}入口{1}",
12659 "xloc": [
12660 "default-mobile.handlebars->9->129",
12643 - "default.handlebars->27->1462"
12661 + "default.handlebars->27->1471"
12662 ]
12663 },
12664 {
@@ -12662,8 +12680,8 @@
12680 "default-mobile.handlebars->9->219",
12681 "default-mobile.handlebars->9->279",
12682 "default.handlebars->27->270",
12665 - "default.handlebars->27->515",
12666 - "default.handlebars->27->739"
12683 + "default.handlebars->27->524",
12684 + "default.handlebars->27->748"
12685 ]
12686 },
12687 {
@@ -12680,7 +12698,7 @@
12698 "ru": "Синхронизация имени хоста",
12699 "zh-chs": "主機名同步",
12700 "xloc": [
12683 - "default.handlebars->27->1225"
12701 + "default.handlebars->27->1234"
12702 ]
12703 },
12704 {
@@ -12697,7 +12715,7 @@
12715 "ru": "Венгерский",
12716 "zh-chs": "匈牙利",
12717 "xloc": [
12700 - "default.handlebars->27->1045"
12718 + "default.handlebars->27->1054"
12719 ]
12720 },
12721 {
@@ -12752,9 +12770,9 @@
12770 "xloc": [
12771 "default-mobile.handlebars->9->345",
12772 "default-mobile.handlebars->9->349",
12755 - "default.handlebars->27->862",
12756 - "default.handlebars->27->872",
12757 - "default.handlebars->27->876"
12773 + "default.handlebars->27->871",
12774 + "default.handlebars->27->881",
12775 + "default.handlebars->27->885"
12776 ]
12777 },
12778 {
@@ -12773,9 +12791,9 @@
12791 "xloc": [
12792 "default-mobile.handlebars->9->343",
12793 "default-mobile.handlebars->9->347",
12776 - "default.handlebars->27->860",
12777 - "default.handlebars->27->870",
12778 - "default.handlebars->27->874"
12794 + "default.handlebars->27->869",
12795 + "default.handlebars->27->879",
12796 + "default.handlebars->27->883"
12797 ]
12798 },
12799 {
@@ -12794,10 +12812,10 @@
12812 "xloc": [
12813 "default-mobile.handlebars->9->342",
12814 "default-mobile.handlebars->9->344",
12797 - "default.handlebars->27->859",
12798 - "default.handlebars->27->861",
12799 - "default.handlebars->27->869",
12800 - "default.handlebars->27->871"
12815 + "default.handlebars->27->868",
12816 + "default.handlebars->27->870",
12817 + "default.handlebars->27->878",
12818 + "default.handlebars->27->880"
12819 ]
12820 },
12821 {
@@ -12860,8 +12878,8 @@
12878 "xloc": [
12879 "default-mobile.handlebars->9->346",
12880 "default-mobile.handlebars->9->348",
12863 - "default.handlebars->27->873",
12864 - "default.handlebars->27->875"
12881 + "default.handlebars->27->882",
12882 + "default.handlebars->27->884"
12883 ]
12884 },
12885 {
@@ -12899,7 +12917,7 @@
12917 "ru": "Исландский",
12918 "zh-chs": "冰島的",
12919 "xloc": [
12902 - "default.handlebars->27->1046"
12920 + "default.handlebars->27->1055"
12921 ]
12922 },
12923 {
@@ -12917,7 +12935,7 @@
12935 "zh-chs": "圖標選擇",
12936 "xloc": [
12937 "default-mobile.handlebars->9->277",
12920 - "default.handlebars->27->737"
12938 + "default.handlebars->27->746"
12939 ]
12940 },
12941 {
@@ -12935,7 +12953,7 @@
12953 "zh-chs": "識別碼",
12954 "xloc": [
12955 "default-mobile.handlebars->9->374",
12938 - "default.handlebars->27->901"
12956 + "default.handlebars->27->910"
12957 ]
12958 },
12959 {
@@ -13046,7 +13064,7 @@
13064 "ru": "Индонезийский",
13065 "zh-chs": "印度尼西亞",
13066 "xloc": [
13049 - "default.handlebars->27->1047"
13067 + "default.handlebars->27->1056"
13068 ]
13069 },
13070 {
@@ -13163,7 +13181,7 @@
13181 "ru": "Установка CIRA",
13182 "zh-chs": "安裝CIRA",
13183 "xloc": [
13166 - "default.handlebars->27->1258"
13184 + "default.handlebars->27->1267"
13185 ]
13186 },
13187 {
@@ -13180,7 +13198,7 @@
13198 "ru": "Локальная установка",
13199 "zh-chs": "安裝本地",
13200 "xloc": [
13183 - "default.handlebars->27->1260"
13201 + "default.handlebars->27->1269"
13202 ]
13203 },
13204 {
@@ -13197,8 +13215,8 @@
13215 "ru": "Тип установки",
13216 "zh-chs": "安裝類型",
13217 "xloc": [
13200 - "default.handlebars->27->1399",
13201 - "default.handlebars->27->1406",
13218 + "default.handlebars->27->1408",
13219 + "default.handlebars->27->1415",
13220 "default.handlebars->27->334",
13221 "default.handlebars->27->356"
13222 ]
@@ -13217,7 +13235,7 @@
13235 "ru": "Intel (F10 = ESC+[OM)",
13236 "zh-chs": "英特爾(F10 = ESC + [OM)",
13237 "xloc": [
13220 - "default.handlebars->27->792",
13238 + "default.handlebars->27->801",
13239 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
13240 ]
13241 },
@@ -13235,10 +13253,10 @@
13253 "ru": "Intel AMT",
13254 "zh-chs": "英特爾AMT",
13255 "xloc": [
13238 - "default.handlebars->27->1418",
13239 - "default.handlebars->27->1426",
13240 - "default.handlebars->27->1849",
13241 - "default.handlebars->27->1871"
13256 + "default.handlebars->27->1427",
13257 + "default.handlebars->27->1435",
13258 + "default.handlebars->27->1858",
13259 + "default.handlebars->27->1880"
13260 ]
13261 },
13262 {
@@ -13279,14 +13297,14 @@
13297 "en": "Intel AMT Redirection",
13298 "nl": "Intel AMT omleiding",
13299 "xloc": [
13282 - "default.handlebars->27->1790"
13300 + "default.handlebars->27->1799"
13301 ]
13302 },
13303 {
13304 "en": "Intel AMT WSMAN",
13305 "nl": "Intel AMT WSMAN",
13306 "xloc": [
13289 - "default.handlebars->27->1789"
13307 + "default.handlebars->27->1798"
13308 ]
13309 },
13310 {
@@ -13320,7 +13338,7 @@
13338 "ru": "Intel AMT активирован в режиме администратора",
13339 "zh-chs": "在管理控制模式下激活了Intel AMT",
13340 "xloc": [
13323 - "default.handlebars->27->529"
13341 + "default.handlebars->27->538"
13342 ]
13343 },
13344 {
@@ -13337,7 +13355,7 @@
13355 "ru": "Intel AMT активирован в режиме клиента",
13356 "zh-chs": "英特爾AMT在客戶端控制模式下被激活",
13357 "xloc": [
13340 - "default.handlebars->27->527"
13358 + "default.handlebars->27->536"
13359 ]
13360 },
13361 {
@@ -13354,7 +13372,7 @@
13372 "ru": "Intel AMT настроен с TLS безопасностью сети",
13373 "zh-chs": "英特爾AMT已設置TLS網絡安全性",
13374 "xloc": [
13357 - "default.handlebars->27->531"
13375 + "default.handlebars->27->540"
13376 ]
13377 },
13378 {
@@ -13405,7 +13423,7 @@
13423 "ru": "Intel ASCII",
13424 "zh-chs": "英特爾ASCII",
13425 "xloc": [
13408 - "default.handlebars->27->791"
13426 + "default.handlebars->27->800"
13427 ]
13428 },
13429 {
@@ -13425,11 +13443,11 @@
13443 "default-mobile.handlebars->9->201",
13444 "default-mobile.handlebars->9->236",
13445 "default-mobile.handlebars->9->241",
13428 - "default.handlebars->27->1242",
13429 - "default.handlebars->27->1252",
13430 - "default.handlebars->27->485",
13431 - "default.handlebars->27->540",
13432 - "default.handlebars->27->568"
13446 + "default.handlebars->27->1251",
13447 + "default.handlebars->27->1261",
13448 + "default.handlebars->27->494",
13449 + "default.handlebars->27->549",
13450 + "default.handlebars->27->577"
13451 ]
13452 },
13453 {
@@ -13447,7 +13465,7 @@
13465 "zh-chs": "英特爾&reg;AMT CIRA",
13466 "xloc": [
13467 "default-mobile.handlebars->9->240",
13450 - "default.handlebars->27->566"
13468 + "default.handlebars->27->575"
13469 ]
13470 },
13471 {
@@ -13466,7 +13484,7 @@
13484 "xloc": [
13485 "default.handlebars->27->196",
13486 "default.handlebars->27->411",
13469 - "default.handlebars->27->565"
13487 + "default.handlebars->27->574"
13488 ]
13489 },
13490 {
@@ -13515,7 +13533,7 @@
13533 "ru": "Политика Intel&reg; AMT",
13534 "zh-chs": "英特爾&reg;AMT政策",
13535 "xloc": [
13518 - "default.handlebars->27->1281"
13536 + "default.handlebars->27->1290"
13537 ]
13538 },
13539 {
@@ -13549,7 +13567,7 @@
13567 "ru": "Intel&reg; AMT Тег",
13568 "zh-chs": "英特爾&reg;AMT標籤",
13569 "xloc": [
13552 - "default.handlebars->27->544"
13570 + "default.handlebars->27->553"
13571 ]
13572 },
13573 {
@@ -13602,8 +13620,8 @@
13620 "zh-chs": "英特爾&reg;AMT已連接",
13621 "xloc": [
13622 "default-mobile.handlebars->9->251",
13605 - "default.handlebars->27->609",
13606 - "default.handlebars->27->610"
13623 + "default.handlebars->27->618",
13624 + "default.handlebars->27->619"
13625 ]
13626 },
13627 {
@@ -13620,8 +13638,8 @@
13638 "ru": "События Intel&reg; AMT desktop или serial.",
13639 "zh-chs": "英特爾&reg;AMT桌面和串行事件。",
13640 "xloc": [
13623 - "default.handlebars->27->1163",
13624 - "default.handlebars->27->1414"
13641 + "default.handlebars->27->1172",
13642 + "default.handlebars->27->1423"
13643 ]
13644 },
13645 {
@@ -13639,8 +13657,8 @@
13657 "zh-chs": "檢測到英特爾&reg;AMT",
13658 "xloc": [
13659 "default-mobile.handlebars->9->252",
13642 - "default.handlebars->27->611",
13643 - "default.handlebars->27->612"
13660 + "default.handlebars->27->620",
13661 + "default.handlebars->27->621"
13662 ]
13663 },
13664 {
@@ -13657,7 +13675,7 @@
13675 "ru": "Intel&reg; AMT маршрутизируется и готов к использованию.",
13676 "zh-chs": "英特爾&reg;AMT可路由並可以使用。",
13677 "xloc": [
13660 - "default.handlebars->27->567"
13678 + "default.handlebars->27->576"
13679 ]
13680 },
13681 {
@@ -13710,8 +13728,8 @@
13728 "zh-chs": "僅限英特爾&reg;AMT,無代理",
13729 "xloc": [
13730 "default-mobile.handlebars->9->389",
13713 - "default.handlebars->27->1192",
13714 - "default.handlebars->27->1218"
13731 + "default.handlebars->27->1201",
13732 + "default.handlebars->27->1227"
13733 ]
13734 },
13735 {
@@ -13728,7 +13746,7 @@
13746 "ru": "Технология Intel&reg; Active Management",
13747 "zh-chs": "英特爾&reg;主動管理技術",
13748 "xloc": [
13731 - "default.handlebars->27->539"
13749 + "default.handlebars->27->548"
13750 ]
13751 },
13752 {
@@ -13746,7 +13764,7 @@
13764 "zh-chs": "英特爾&reg;主動管理技術(英特爾&reg;AMT)",
13765 "xloc": [
13766 "default-mobile.handlebars->9->366",
13749 - "default.handlebars->27->893"
13767 + "default.handlebars->27->902"
13768 ]
13769 },
13770 {
@@ -13764,7 +13782,7 @@
13782 "zh-chs": "英特爾&reg;ME",
13783 "xloc": [
13784 "default-mobile.handlebars->9->235",
13767 - "default.handlebars->27->538"
13785 + "default.handlebars->27->547"
13786 ]
13787 },
13788 {
@@ -13777,7 +13795,7 @@
13795 "nl": "Intel&reg; Manageability Engine",
13796 "zh-chs": "英特尔&reg;可管理性引擎",
13797 "xloc": [
13780 - "default.handlebars->27->537"
13798 + "default.handlebars->27->546"
13799 ]
13800 },
13801 {
@@ -13795,7 +13813,7 @@
13813 "zh-chs": "英特爾&reg;SM",
13814 "xloc": [
13815 "default-mobile.handlebars->9->237",
13798 - "default.handlebars->27->542"
13816 + "default.handlebars->27->551"
13817 ]
13818 },
13819 {
@@ -13812,7 +13830,7 @@
13830 "ru": "Intel&reg; Standard Manageability",
13831 "zh-chs": "英特爾&reg;標準可管理性",
13832 "xloc": [
13815 - "default.handlebars->27->541"
13833 + "default.handlebars->27->550"
13834 ]
13835 },
13836 {
@@ -13913,7 +13931,7 @@
13931 "ru": "Интерактивный",
13932 "zh-chs": "互動",
13933 "xloc": [
13916 - "default.handlebars->27->774"
13934 + "default.handlebars->27->783"
13935 ]
13936 },
13937 {
@@ -13930,8 +13948,8 @@
13948 "ru": "Только интерактивный режим",
13949 "zh-chs": "僅限互動",
13950 "xloc": [
13933 - "default.handlebars->27->1402",
13934 - "default.handlebars->27->1409",
13951 + "default.handlebars->27->1411",
13952 + "default.handlebars->27->1418",
13953 "default.handlebars->27->337",
13954 "default.handlebars->27->359"
13955 ]
@@ -13950,7 +13968,7 @@
13968 "ru": "Интерфейсы",
13969 "zh-chs": "介面",
13970 "xloc": [
13953 - "default.handlebars->27->588"
13971 + "default.handlebars->27->597"
13972 ]
13973 },
13974 {
@@ -13967,7 +13985,7 @@
13985 "ru": "Инуктитут",
13986 "zh-chs": "因紐特人",
13987 "xloc": [
13970 - "default.handlebars->27->1048"
13988 + "default.handlebars->27->1057"
13989 ]
13990 },
13991 {
@@ -13984,7 +14002,7 @@
14002 "ru": "Некорректный тип группы устройств",
14003 "zh-chs": "無效的設備組類型",
14004 "xloc": [
13987 - "default.handlebars->27->1826"
14005 + "default.handlebars->27->1835"
14006 ]
14007 },
14008 {
@@ -14001,7 +14019,7 @@
14019 "ru": "Некорректный JSON",
14020 "zh-chs": "無效的JSON",
14021 "xloc": [
14004 - "default.handlebars->27->1820"
14022 + "default.handlebars->27->1829"
14023 ]
14024 },
14025 {
@@ -14018,8 +14036,8 @@
14036 "ru": "Некорректный формат файла JSON.",
14037 "zh-chs": "無效的JSON文件格式。",
14038 "xloc": [
14021 - "default.handlebars->27->1542",
14022 - "default.handlebars->27->1544"
14039 + "default.handlebars->27->1551",
14040 + "default.handlebars->27->1553"
14041 ]
14042 },
14043 {
@@ -14036,7 +14054,7 @@
14054 "ru": "Некорректный файл JSON: {0}.",
14055 "zh-chs": "無效的JSON文件:{0}。",
14056 "xloc": [
14039 - "default.handlebars->27->1540"
14057 + "default.handlebars->27->1549"
14058 ]
14059 },
14060 {
@@ -14053,7 +14071,7 @@
14071 "ru": "Некорректная сигнатура PKCS",
14072 "zh-chs": "無效的PKCS簽名",
14073 "xloc": [
14056 - "default.handlebars->27->1818"
14074 + "default.handlebars->27->1827"
14075 ]
14076 },
14077 {
@@ -14070,7 +14088,7 @@
14088 "ru": "Некорректная сигнатура RSA",
14089 "zh-chs": "無效的RSA密碼",
14090 "xloc": [
14073 - "default.handlebars->27->1819"
14091 + "default.handlebars->27->1828"
14092 ]
14093 },
14094 {
@@ -14148,7 +14166,7 @@
14166 "en": "Invalidate Email",
14167 "nl": "E-mail ongeldig maken",
14168 "xloc": [
14151 - "default.handlebars->27->1522"
14169 + "default.handlebars->27->1531"
14170 ]
14171 },
14172 {
@@ -14213,7 +14231,7 @@
14231 "ru": "Коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:",
14232 "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:",
14233 "xloc": [
14216 - "default.handlebars->27->1404"
14234 + "default.handlebars->27->1413"
14235 ]
14236 },
14237 {
@@ -14246,7 +14264,7 @@
14264 "ru": "Пригласить",
14265 "zh-chs": "邀請",
14266 "xloc": [
14249 - "default.handlebars->27->1268",
14267 + "default.handlebars->27->1277",
14268 "default.handlebars->27->267",
14269 "default.handlebars->27->349"
14270 ]
@@ -14265,11 +14283,11 @@
14283 "ru": "Пригласительные коды",
14284 "zh-chs": "邀請碼",
14285 "xloc": [
14268 - "default.handlebars->27->1246",
14269 - "default.handlebars->27->1398",
14270 - "default.handlebars->27->1403",
14271 - "default.handlebars->27->1405",
14272 - "default.handlebars->27->1410"
14286 + "default.handlebars->27->1255",
14287 + "default.handlebars->27->1407",
14288 + "default.handlebars->27->1412",
14289 + "default.handlebars->27->1414",
14290 + "default.handlebars->27->1419"
14291 ]
14292 },
14293 {
@@ -14300,7 +14318,7 @@
14318 "nl": "Nodig iemand uit om de mesh-agent in deze apparaatgroep te installeren.",
14319 "zh-chs": "邀请某人在该设备组上安装网状代理。",
14320 "xloc": [
14303 - "default.handlebars->27->1267",
14321 + "default.handlebars->27->1276",
14322 "default.handlebars->27->266"
14323 ]
14324 },
@@ -14335,7 +14353,7 @@
14353 "ru": "Ирландский",
14354 "zh-chs": "愛爾蘭人",
14355 "xloc": [
14338 - "default.handlebars->27->1049"
14356 + "default.handlebars->27->1058"
14357 ]
14358 },
14359 {
@@ -14352,7 +14370,7 @@
14370 "ru": "Итальянский (Стандартный)",
14371 "zh-chs": "意大利語(標準)",
14372 "xloc": [
14355 - "default.handlebars->27->1050"
14373 + "default.handlebars->27->1059"
14374 ]
14375 },
14376 {
@@ -14369,7 +14387,7 @@
14387 "ru": "Итальянский (Швейцария)",
14388 "zh-chs": "義大利文(瑞士)",
14389 "xloc": [
14372 - "default.handlebars->27->1051"
14390 + "default.handlebars->27->1060"
14391 ]
14392 },
14393 {
@@ -14386,7 +14404,7 @@
14404 "ru": "JSON",
14405 "zh-chs": "JSON",
14406 "xloc": [
14389 - "default.handlebars->27->1482"
14407 + "default.handlebars->27->1491"
14408 ]
14409 },
14410 {
@@ -14403,9 +14421,9 @@
14421 "ru": "Формат JSON",
14422 "zh-chs": "JSON格式",
14423 "xloc": [
14406 - "default.handlebars->27->1487",
14407 - "default.handlebars->27->1548",
14408 - "default.handlebars->27->446"
14424 + "default.handlebars->27->1496",
14425 + "default.handlebars->27->1557",
14426 + "default.handlebars->27->455"
14427 ]
14428 },
14429 {
@@ -14422,7 +14440,7 @@
14440 "ru": "Японский",
14441 "zh-chs": "日本",
14442 "xloc": [
14425 - "default.handlebars->27->1052"
14443 + "default.handlebars->27->1061"
14444 ]
14445 },
14446 {
@@ -14439,7 +14457,7 @@
14457 "ru": "Каннада",
14458 "zh-chs": "卡納達語",
14459 "xloc": [
14442 - "default.handlebars->27->1053"
14460 + "default.handlebars->27->1062"
14461 ]
14462 },
14463 {
@@ -14456,7 +14474,7 @@
14474 "ru": "Кашмирский",
14475 "zh-chs": "克什米爾語",
14476 "xloc": [
14459 - "default.handlebars->27->1054"
14477 + "default.handlebars->27->1063"
14478 ]
14479 },
14480 {
@@ -14473,7 +14491,7 @@
14491 "ru": "Казахский",
14492 "zh-chs": "哈薩克語",
14493 "xloc": [
14476 - "default.handlebars->27->1055"
14494 + "default.handlebars->27->1064"
14495 ]
14496 },
14497 {
@@ -14490,7 +14508,7 @@
14508 "ru": "Драйвер ядра",
14509 "zh-chs": "內核驅動程序",
14510 "xloc": [
14493 - "default.handlebars->27->775"
14511 + "default.handlebars->27->784"
14512 ]
14513 },
14514 {
@@ -14507,8 +14525,8 @@
14525 "ru": "Имя ключа",
14526 "zh-chs": "鍵名",
14527 "xloc": [
14510 - "default.handlebars->27->946",
14511 - "default.handlebars->27->949"
14528 + "default.handlebars->27->955",
14529 + "default.handlebars->27->958"
14530 ]
14531 },
14532 {
@@ -14549,7 +14567,7 @@
14567 "ru": "Кхмерский",
14568 "zh-chs": "高棉語",
14569 "xloc": [
14552 - "default.handlebars->27->1056"
14570 + "default.handlebars->27->1065"
14571 ]
14572 },
14573 {
@@ -14566,7 +14584,7 @@
14584 "ru": "Киргизский",
14585 "zh-chs": "吉爾吉斯",
14586 "xloc": [
14569 - "default.handlebars->27->1057"
14587 + "default.handlebars->27->1066"
14588 ]
14589 },
14590 {
@@ -14583,7 +14601,7 @@
14601 "ru": "Клингонский",
14602 "zh-chs": "克林貢",
14603 "xloc": [
14586 - "default.handlebars->27->1058"
14604 + "default.handlebars->27->1067"
14605 ]
14606 },
14607 {
@@ -14601,7 +14619,7 @@
14619 "zh-chs": "已知的",
14620 "xloc": [
14621 "default-mobile.handlebars->9->365",
14604 - "default.handlebars->27->892"
14622 + "default.handlebars->27->901"
14623 ]
14624 },
14625 {
@@ -14618,7 +14636,7 @@
14636 "ru": "Korean",
14637 "zh-chs": "韓語",
14638 "xloc": [
14621 - "default.handlebars->27->1059"
14639 + "default.handlebars->27->1068"
14640 ]
14641 },
14642 {
@@ -14635,7 +14653,7 @@
14653 "ru": "Корейский (Северная Корея)",
14654 "zh-chs": "韓語(朝鮮)",
14655 "xloc": [
14638 - "default.handlebars->27->1060"
14656 + "default.handlebars->27->1069"
14657 ]
14658 },
14659 {
@@ -14652,7 +14670,7 @@
14670 "ru": "Корейский (Южная Корея)",
14671 "zh-chs": "韓語(韓國)",
14672 "xloc": [
14655 - "default.handlebars->27->1061"
14673 + "default.handlebars->27->1070"
14674 ]
14675 },
14676 {
@@ -14669,8 +14687,8 @@
14687 "ru": "LF",
14688 "zh-chs": "如果",
14689 "xloc": [
14672 - "default.handlebars->27->787",
14673 - "default.handlebars->27->796"
14690 + "default.handlebars->27->796",
14691 + "default.handlebars->27->805"
14692 ]
14693 },
14694 {
@@ -14687,7 +14705,7 @@
14705 "ru": "Язык",
14706 "zh-chs": "語言",
14707 "xloc": [
14690 - "default.handlebars->27->1155"
14708 + "default.handlebars->27->1164"
14709 ]
14710 },
14711 {
@@ -14721,7 +14739,7 @@
14739 "ru": "Большой Фокус",
14740 "zh-chs": "大焦點",
14741 "xloc": [
14724 - "default.handlebars->27->763"
14742 + "default.handlebars->27->772"
14743 ]
14744 },
14745 {
@@ -14904,7 +14922,7 @@
14922 "ru": "Последний доступ",
14923 "zh-chs": "最後訪問",
14924 "xloc": [
14907 - "default.handlebars->27->1495"
14925 + "default.handlebars->27->1504"
14926 ]
14927 },
14928 {
@@ -14921,7 +14939,7 @@
14939 "ru": "Последний вход в систему",
14940 "zh-chs": "上次登錄",
14941 "xloc": [
14924 - "default.handlebars->27->1681"
14942 + "default.handlebars->27->1690"
14943 ]
14944 },
14945 {
@@ -14944,9 +14962,9 @@
14962 "default.handlebars->27->69",
14963 "default.handlebars->27->71",
14964 "default.handlebars->27->73",
14947 - "default.handlebars->27->850",
14948 - "default.handlebars->27->851",
14949 - "default.handlebars->27->852"
14965 + "default.handlebars->27->859",
14966 + "default.handlebars->27->860",
14967 + "default.handlebars->27->861"
14968 ]
14969 },
14970 {
@@ -14966,8 +14984,8 @@
14984 "default-mobile.handlebars->9->330",
14985 "default-mobile.handlebars->9->332",
14986 "default.handlebars->27->68",
14969 - "default.handlebars->27->847",
14970 - "default.handlebars->27->849"
14987 + "default.handlebars->27->856",
14988 + "default.handlebars->27->858"
14989 ]
14990 },
14991 {
@@ -14984,7 +15002,7 @@
15002 "ru": "Последнее изменение: {0}",
15003 "zh-chs": "上次更改:{0}",
15004 "xloc": [
14987 - "default.handlebars->27->1685"
15005 + "default.handlebars->27->1694"
15006 ]
15007 },
15008 {
@@ -15035,7 +15053,7 @@
15053 "ru": "Последний вход в систему: {0}",
15054 "zh-chs": "上次登錄:{0}",
15055 "xloc": [
15038 - "default.handlebars->27->1505"
15056 + "default.handlebars->27->1514"
15057 ]
15058 },
15059 {
@@ -15052,7 +15070,7 @@
15070 "ru": "Последнее посещение:",
15071 "zh-chs": "最後一次露面:",
15072 "xloc": [
15055 - "default.handlebars->27->615",
15073 + "default.handlebars->27->624",
15074 "default.handlebars->27->65"
15075 ]
15076 },
@@ -15121,7 +15139,7 @@
15139 "ru": "Латинский",
15140 "zh-chs": "拉丁",
15141 "xloc": [
15124 - "default.handlebars->27->1062"
15142 + "default.handlebars->27->1071"
15143 ]
15144 },
15145 {
@@ -15138,28 +15156,28 @@
15156 "ru": "Латышский",
15157 "zh-chs": "拉脫維亞語",
15158 "xloc": [
15141 - "default.handlebars->27->1063"
15159 + "default.handlebars->27->1072"
15160 ]
15161 },
15162 {
15163 "en": "Launch MeshCentral Router",
15164 "nl": "Start MeshCentral Router",
15165 "xloc": [
15148 - "default.handlebars->27->714"
15166 + "default.handlebars->27->723"
15167 ]
15168 },
15169 {
15170 "en": "Launch noVNC session to this device",
15171 "nl": "Start een noVNC-sessie op dit apparaat",
15172 "xloc": [
15155 - "default.handlebars->27->601"
15173 + "default.handlebars->27->610"
15174 ]
15175 },
15176 {
15177 "en": "Launch web-based RDP session to this device",
15178 "nl": "Start een webgebaseerde RDP-sessie op dit apparaat",
15179 "xloc": [
15162 - "default.handlebars->27->603"
15180 + "default.handlebars->27->612"
15181 ]
15182 },
15183 {
@@ -15172,7 +15190,7 @@
15190 "nl": "Leeg laten voor geen.",
15191 "zh-chs": "一无所有。",
15192 "xloc": [
15175 - "default.handlebars->27->1725"
15193 + "default.handlebars->27->1734"
15194 ]
15195 },
15196 {
@@ -15211,7 +15229,7 @@
15229 "ru": "Меньше",
15230 "zh-chs": "減",
15231 "xloc": [
15214 - "default.handlebars->27->1888"
15232 + "default.handlebars->27->1897"
15233 ]
15234 },
15235 {
@@ -15227,8 +15245,8 @@
15245 "ru": "Предельные события",
15246 "zh-chs": "极限赛事",
15247 "xloc": [
15230 - "default.handlebars->27->636",
15231 - "default.handlebars->27->655"
15248 + "default.handlebars->27->645",
15249 + "default.handlebars->27->664"
15250 ]
15251 },
15252 {
@@ -15264,9 +15282,9 @@
15282 "zh-chs": "有限輸入",
15283 "xloc": [
15284 "default-mobile.handlebars->9->438",
15267 - "default.handlebars->27->1382",
15268 - "default.handlebars->27->629",
15269 - "default.handlebars->27->648"
15285 + "default.handlebars->27->1391",
15286 + "default.handlebars->27->638",
15287 + "default.handlebars->27->657"
15288 ]
15289 },
15290 {
@@ -15284,7 +15302,7 @@
15302 "zh-chs": "僅限於輸入",
15303 "xloc": [
15304 "default-mobile.handlebars->9->413",
15287 - "default.handlebars->27->1340"
15305 + "default.handlebars->27->1349"
15306 ]
15307 },
15308 {
@@ -15457,7 +15475,7 @@
15475 "ru": "Linux ARM, Raspberry Pi (32bit)",
15476 "zh-chs": "Linux ARM,Raspberry Pi(32位)",
15477 "xloc": [
15460 - "default.handlebars->27->721"
15478 + "default.handlebars->27->730"
15479 ]
15480 },
15481 {
@@ -15563,7 +15581,7 @@
15581 "ru": "Linux x86 (32bit)",
15582 "zh-chs": "Linux x86(32位)",
15583 "xloc": [
15566 - "default.handlebars->27->718"
15584 + "default.handlebars->27->727"
15585 ]
15586 },
15587 {
@@ -15580,14 +15598,14 @@
15598 "ru": "Linux x86 (64bit)",
15599 "zh-chs": "Linux x86(64位)",
15600 "xloc": [
15583 - "default.handlebars->27->719"
15601 + "default.handlebars->27->728"
15602 ]
15603 },
15604 {
15605 "en": "Linux/BSD/macOS Command Shell",
15606 "nl": "Linux/BSD/macOS Command Shell",
15607 "xloc": [
15590 - "default.handlebars->27->441"
15608 + "default.handlebars->27->442"
15609 ]
15610 },
15611 {
@@ -15622,7 +15640,7 @@
15640 "ru": "Литовский",
15641 "zh-chs": "立陶宛語",
15642 "xloc": [
15625 - "default.handlebars->27->1064"
15643 + "default.handlebars->27->1073"
15644 ]
15645 },
15646 {
@@ -15640,10 +15658,10 @@
15658 "zh-chs": "載入中...",
15659 "xloc": [
15660 "default-mobile.handlebars->9->72",
15643 - "default.handlebars->27->1209",
15644 - "default.handlebars->27->1213",
15645 - "default.handlebars->27->710",
15646 - "default.handlebars->27->942"
15661 + "default.handlebars->27->1218",
15662 + "default.handlebars->27->1222",
15663 + "default.handlebars->27->719",
15664 + "default.handlebars->27->951"
15665 ]
15666 },
15667 {
@@ -15712,7 +15730,7 @@
15730 "ru": "Настройки локализации",
15731 "zh-chs": "本地化設置",
15732 "xloc": [
15715 - "default.handlebars->27->1158",
15733 + "default.handlebars->27->1167",
15734 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7"
15735 ]
15736 },
@@ -15730,7 +15748,7 @@
15748 "ru": "Местонахождение",
15749 "zh-chs": "位置",
15750 "xloc": [
15733 - "default.handlebars->27->590"
15751 + "default.handlebars->27->599"
15752 ]
15753 },
15754 {
@@ -15764,7 +15782,7 @@
15782 "ru": "Заблокировать учетную запись",
15783 "zh-chs": "鎖定賬戶",
15784 "xloc": [
15767 - "default.handlebars->27->1583"
15785 + "default.handlebars->27->1592"
15786 ]
15787 },
15788 {
@@ -15781,7 +15799,7 @@
15799 "ru": "Заблокировать учетную запись",
15800 "zh-chs": "鎖定賬戶",
15801 "xloc": [
15784 - "default.handlebars->27->1525"
15802 + "default.handlebars->27->1534"
15803 ]
15804 },
15805 {
@@ -15798,7 +15816,7 @@
15816 "ru": "Заблокирован",
15817 "zh-chs": "已鎖定",
15818 "xloc": [
15801 - "default.handlebars->27->1506"
15819 + "default.handlebars->27->1515"
15820 ]
15821 },
15822 {
@@ -15815,7 +15833,7 @@
15833 "ru": "Заблокированная учетная запись",
15834 "zh-chs": "賬戶鎖定",
15835 "xloc": [
15818 - "default.handlebars->27->1657"
15836 + "default.handlebars->27->1666"
15837 ]
15838 },
15839 {
@@ -15832,7 +15850,7 @@

This file is too large to show in full.

views/default.handlebars
+30 -2
@@ -4300,7 +4300,7 @@
4300 }
4301
4302 var x = "Select an operation to perform on all selected devices. Actions will be performed only with proper rights." + '<br /><br />';
4303 - x += addHtmlValue("Operation", '<select id=d2groupop><option value=100>' + "Wake-up devices" + '</option><option value=106>' + "Run commands" + '</option><option value=4>' + "Sleep devices" + '</option><option value=3>' + "Reset devices" + '</option><option value=2>' + "Power off devices" + '</option><option value=105>' + "Export device information" + '</option><option value=102>' + "Move to device group" + '</option>' + addedOptions + '<option value=101>' + "Delete devices" + '</option></select>');
4303 + x += addHtmlValue("Operation", '<select id=d2groupop><option value=100>' + "Wake-up devices" + '</option><option value=106>' + "Run commands" + '</option><option value=4>' + "Sleep devices" + '</option><option value=3>' + "Reset devices" + '</option><option value=2>' + "Power off devices" + '</option><option value=105>' + "Export device information" + '</option><option value=102>' + "Move to device group" + '</option>' + '</option><option value=107>' + "Edit tags" + '</option>' + addedOptions + '<option value=101>' + "Delete devices" + '</option></select>');
4304 setDialogMode(2, "Group Action", 3, groupActionFunctionEx, x);
4305 }
4306
@@ -4360,6 +4360,12 @@
4360 Q('d2runcmd').focus();
4361 //QE('idx_dlgOkButton', true);
4362 }
4363 + } else if (op == 107) {
4364 + // Edit tags
4365 + var x = "Perform batch device tag operation" + '<br /><br />';
4366 + x += addHtmlValue("Operation", '<select id=d2deviceop style=float:right;width:250px><option value=1>' + "Add tags" + '</option><option value=2>' + "Set tags" + '</option><option value=3>' + "Remove tags" + '</option></select>');
4367 + x += addHtmlValue("Tags", '<input id=dp10devicevalue maxlength=4096 placeholder="' + "Tag1, Tag2, Tag3" + '" />');
4368 + setDialogMode(2, "Edit Device Tags", 3, d2groupActionFunctionTagsExec, x);
4369 } else {
4370 // Power operation
4371 meshserver.send({ action: 'poweraction', nodeids: getCheckedDevices(), actiontype: parseInt(op) });
@@ -4367,6 +4373,27 @@
4373 }
4374 }
4375
4376 + function d2groupActionFunctionTagsExec() {
4377 + var chkNodeIds = getCheckedDevices(), op = Q('d2deviceop').value, optags = Q('dp10devicevalue').value;
4378 + if (op == 2) { // Set tags
4379 + for (var i in chkNodeIds) { meshserver.send({ action: 'changedevice', nodeid: chkNodeIds[i], tags: optags }); }
4380 + } else {
4381 + var taggroup = [];
4382 + optags = optags.split(',');
4383 + for (var i in optags) { var tname = optags[i].trim(); if ((tname.length > 0) && (tname.length < 64) && (taggroup.indexOf(tname) == -1)) { taggroup.push(tname); } }
4384 + for (var i in chkNodeIds) {
4385 + var nodeTags = null, tagChanges = false, n = getNodeFromId(chkNodeIds[i]);
4386 + if (n.tags != null) { nodeTags = Clone(n.tags); }
4387 + if (nodeTags == null) { nodeTags = []; }
4388 + for (var j = 0; j < optags.length; j++) {
4389 + if ((op == 1) && (nodeTags.indexOf(optags[j]) == -1)) { nodeTags.push(optags[j]); tagChanges = true; } // Add new tags
4390 + if (op == 3) { var k = nodeTags.indexOf(optags[j]); if (k >= 0) { nodeTags.splice(k, 1); tagChanges = true; } } // Remove tags
4391 + }
4392 + if (tagChanges) { meshserver.send({ action: 'changedevice', nodeid: chkNodeIds[i], tags: nodeTags.join(',') }); }
4393 + }
4394 + }
4395 + }
4396 +
4397 function p2downloadDeviceInfo() {
4398 if (xxdialogMode) return;
4399 var x = "Download the list of devices with one of the file formats below." + '<br /><br />';
@@ -6284,9 +6311,10 @@
6311 var showEditNodeValueDialog_modes = ["Device Name", "Hostname", "Description", "Tags"];
6312 var showEditNodeValueDialog_modes2 = ['name', 'host', 'desc', 'tags'];
6313 var showEditNodeValueDialog_modes3 = ['', '', '', "Tag1, Tag2, Tag3"];
6314 + var showEditNodeValueDialog_modes4 = [64, 64, 64, 4096];
6315 function showEditNodeValueDialog(mode) {
6316 if (xxdialogMode) return;
6289 - var x = addHtmlValue(showEditNodeValueDialog_modes[mode], '<input id=dp10devicevalue maxlength=64 placeholder="' + showEditNodeValueDialog_modes3[mode] + '" onchange=p10editdevicevalueValidate(' + mode + ',event) onkeyup=p10editdevicevalueValidate(' + mode + ',event) />');
6317 + var x = addHtmlValue(showEditNodeValueDialog_modes[mode], '<input id=dp10devicevalue maxlength=' + showEditNodeValueDialog_modes4[mode] + ' placeholder="' + showEditNodeValueDialog_modes3[mode] + '" onchange=p10editdevicevalueValidate(' + mode + ',event) onkeyup=p10editdevicevalueValidate(' + mode + ',event) />');
6318 setDialogMode(2, "Edit Device", 3, showEditNodeValueDialogEx, x, mode);
6319 var v = currentNode[showEditNodeValueDialog_modes2[mode]];
6320 if (v == null) v = '';