More translations, agent console messages are now translated.
Ylian Saint-Hilaire committed
May 3, 2020 at 12:54 UTC
c8e1a1c30513bf36c12209dc770de8064f77aa85
32 files changed
+1885
-1208
agents/meshcore.js
+9
-9
@@ -1248,7 +1248,7 @@ function createMeshCore(agent) {
1248
} catch (e)
1249
{
1250
MeshServerLog('Failed to start remote terminal session, ' + e.toString() + ' (' + this.httprequest.remoteaddr + ')', this.httprequest);
1251
- this.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString() }));
1251
+ this.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString(), msgid: 2, msgargs: [e.toString(), this.httprequest.remoteaddr] }));
1252
this.end();
1253
return;
1254
}
@@ -1326,7 +1326,7 @@ function createMeshCore(agent) {
1326
{
1327
// User Consent Prompt is required
1328
// Send a console message back using the console channel, "\n" is supported.
1329
- that.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access..." }));
1329
+ that.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access...", msgid: 1 }));
1330
var pr = require('message-box').create('MeshCentral', that.httprequest.username + " requesting Terminal Access. Grant access?", 30);
1331
pr.ws = that;
1332
that.pause();
@@ -1339,7 +1339,7 @@ function createMeshCore(agent) {
1339
// Success
1340
this.ws._consentpromise = null;
1341
MeshServerLog("Starting remote terminal after local user accepted (" + this.ws.httprequest.remoteaddr + ")", this.ws.httprequest);
1342
- this.ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: null }));
1342
+ this.ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: null, msgid: 0 }));
1343
if (this.ws.httprequest.consent && (this.ws.httprequest.consent & 2))
1344
{
1345
// User Notifications is required
@@ -1352,7 +1352,7 @@ function createMeshCore(agent) {
1352
// User Consent Denied/Failed
1353
this.ws._consentpromise = null;
1354
MeshServerLog("Failed to start remote terminal after local user rejected (" + this.ws.httprequest.remoteaddr + ")", this.ws.httprequest);
1355
- this.ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString() }));
1355
+ this.ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString(), msgid: 2 }));
1356
this.ws.end();
1357
});
1358
}
@@ -1477,7 +1477,7 @@ function createMeshCore(agent) {
1477
{
1478
// User Consent Prompt is required
1479
// Send a console message back using the console channel, "\n" is supported.
1480
- this.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access..." }));
1480
+ this.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access...", msgid: 1 }));
1481
var pr = require('message-box').create('MeshCentral', this.httprequest.username + " requesting KVM Access. Grant access?", 30);
1482
pr.ws = this;
1483
this.pause();
@@ -1489,7 +1489,7 @@ function createMeshCore(agent) {
1489
// Success
1490
this.ws._consentpromise = null;
1491
MeshServerLog("Starting remote desktop after local user accepted (" + this.ws.httprequest.remoteaddr + ")", this.ws.httprequest);
1492
- this.ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: null }));
1492
+ this.ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: null, msgid: 0 }));
1493
if (this.ws.httprequest.consent && (this.ws.httprequest.consent & 1)) {
1494
// User Notifications is required
1495
try { require('toaster').Toast('MeshCentral', this.ws.httprequest.username + " started a remote desktop session."); } catch (ex) { }
@@ -1528,7 +1528,7 @@ function createMeshCore(agent) {
1528
// User Consent Denied/Failed
1529
this.ws._consentpromise = null;
1530
MeshServerLog("Failed to start remote desktop after local user rejected (" + this.ws.httprequest.remoteaddr + ")", this.ws.httprequest);
1531
- this.ws.end(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString() }));
1531
+ this.ws.end(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString(), msgid: 2 }));
1532
});
1533
}
1534
else {
@@ -1585,7 +1585,7 @@ function createMeshCore(agent) {
1585
if (this.httprequest.consent && (this.httprequest.consent & 32)) {
1586
// User Consent Prompt is required
1587
// Send a console message back using the console channel, "\n" is supported.
1588
- this.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access..." }));
1588
+ this.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access...", msgid: 1 }));
1589
var pr = require('message-box').create('MeshCentral', this.httprequest.username + " requesting remote file access. Grant access?", 30);
1590
pr.ws = this;
1591
this.pause();
@@ -1609,7 +1609,7 @@ function createMeshCore(agent) {
1609
// User Consent Denied/Failed
1610
this.ws._consentpromise = null;
1611
MeshServerLog("Failed to start remote files after local user rejected (" + this.ws.httprequest.remoteaddr + ")", this.ws.httprequest);
1612
- this.ws.end(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString() }));
1612
+ this.ws.end(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString(), msgid: 2 }));
1613
});
1614
} else {
1615
// User Consent Prompt is not required
emails/translations/account-check_hi.html
+5
-5
@@ -1,15 +1,15 @@
1
-<html><head></head><body><div>[[[SERVERNAME]]] - Email Verification</div>
1
+<html><head></head><body><div>[[[SERVERNAME]]] - ईमेल सत्यापन</div>
2
<div style="font-family:Arial,Helvetica,sans-serif">
3
<table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4
<tbody><tr>
5
<td>
6
- <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Verification</b>
6
+ <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]] - सत्यापन</b>
7
</td>
8
</tr>
9
</tbody></table>
10
- <p>Hi [[[USERNAME]]], <a href="[[[SERVERURL]]]">[[[SERVERNAME]]]</a> is requesting email verification, click on the following link to complete the process.</p>
10
+ <p>हाय [[[USERNAME]]], <a href="[[[SERVERURL]]]">[[[सर्वर का नाम]]]</a> ईमेल सत्यापन का अनुरोध कर रहा है, प्रक्रिया को पूरा करने के लिए निम्न लिंक पर क्लिक करें।</p>
11
<p style="margin-left:30px">
12
- <a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Click here to verify your e-mail address.</a>
12
+ <a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">अपना ई-मेल पता सत्यापित करने के लिए यहां क्लिक करें।</a>
13
</p>
14
- If you did not initiate this request, please ignore this mail.
14
+ यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें।
15
</div></body></html>
\ No newline at end of file
emails/translations/account-check_hi.txt
+3
-3
@@ -1,6 +1,6 @@
1
-[[[SERVERNAME]]] - Email Verification
2
-Hi [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) is performing an e-mail verification. Nagivate to the following link to complete the process:
1
+[[[SERVERNAME]]] - ईमेल सत्यापन
2
+हाय [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]] ई-मेल सत्यापन कर रहा है। प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक को बताएं:
3
~
4
~[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]
5
~
6
-If you did not initiate this request, please ignore this mail.
\ No newline at end of file
6
+यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें।
\ No newline at end of file
emails/translations/account-check_ko.html
+5
-5
@@ -1,15 +1,15 @@
1
-<html><head></head><body><div>[[[SERVERNAME]]] - Email Verification</div>
1
+<html><head></head><body><div>[[[SERVERNAME]]]-이메일 확인</div>
2
<div style="font-family:Arial,Helvetica,sans-serif">
3
<table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4
<tbody><tr>
5
<td>
6
- <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Verification</b>
6
+ <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]]-확인</b>
7
</td>
8
</tr>
9
</tbody></table>
10
- <p>Hi [[[USERNAME]]], <a href="[[[SERVERURL]]]">[[[SERVERNAME]]]</a> is requesting email verification, click on the following link to complete the process.</p>
10
+ <p>[[[USERNAME]]] 님, 안녕하세요. <a href="[[[SERVERURL]]]">[[[서버 이름]]]</a> 이메일 확인을 요청하는 중이면 다음 링크를 클릭하여 프로세스를 완료하십시오.</p>
11
<p style="margin-left:30px">
12
- <a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Click here to verify your e-mail address.</a>
12
+ <a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">이메일 주소를 확인하려면 여기를 클릭하십시오.</a>
13
</p>
14
- If you did not initiate this request, please ignore this mail.
14
+ 이 요청을 시작하지 않은 경우이 메일을 무시하십시오.
15
</div></body></html>
\ No newline at end of file
emails/translations/account-check_ko.txt
+3
-3
@@ -1,6 +1,6 @@
1
-[[[SERVERNAME]]] - Email Verification
2
-Hi [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) is performing an e-mail verification. Nagivate to the following link to complete the process:
1
+[[[SERVERNAME]]]-이메일 확인
2
+[[[USERNAME]]] 님, [[[SERVERNAME]]] ([[[SERVERURL]]]) 님이 이메일 확인을 수행하고 있습니다. 프로세스를 완료하려면 다음 링크로 이동하십시오.
3
~
4
~[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]
5
~
6
-If you did not initiate this request, please ignore this mail.
\ No newline at end of file
6
+이 요청을 시작하지 않은 경우이 메일을 무시하십시오.
\ No newline at end of file
emails/translations/account-invite_fr.txt
+1
-1
@@ -1,5 +1,5 @@
1
[[[SERVERNAME]]] - Invitation au compte
2
-An account was created for you on server [[[SERVERNAME]]] ([[[SERVERURL]]]/), you can access it now with username "[[[ACCOUNTNAME]]]" and password "[[[PASSWORD]]]".
2
+Un compte a été créé pour vous sur le serveur [[[[SERVERNAME]]] ([[[SERVERURL]]] /), vous pouvez y accéder maintenant avec le nom d'utilisateur "[[[ACCOUNTNAME]]]" et le mot de passe "[[[MOT DE PASSE] ]] ".
3
~
4
Meilleures salutations,
5
~[[[USERNAME]]]
\ No newline at end of file
emails/translations/account-invite_hi.html
+5
-5
@@ -1,19 +1,19 @@
1
-<html><head></head><body><div>[[[SERVERNAME]]] - Account Invitation</div>
1
+<html><head></head><body><div>[[[SERVERNAME]]] - खाता निमंत्रण</div>
2
<div style="font-family:Arial,Helvetica,sans-serif">
3
<table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4
<tbody><tr>
5
<td>
6
- <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Account Invitation</b>
6
+ <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - खाता निमंत्रण</b>
7
</td>
8
</tr>
9
</tbody></table>
10
- <p>An account was created for you on server <a href="[[[SERVERURL]]]" notrans="1">[[[SERVERNAME]]]</a>, you can access it now with:</p>
10
+ <p>सर्वर पर आपके लिए एक खाता बनाया गया था <a href="[[[SERVERURL]]]" notrans="1">[[[SERVERNAME]]]</a>, आप इसे अभी एक्सेस कर सकते हैं:</p>
11
<p>
12
उपयोगकर्ता नाम: <b notrans="1">[[[ACCOUNTNAME]]]</b><br>
13
कुंजिका: <b notrans="1">[[[PASSWORD]]]</b>
14
</p>
15
- Best regards,
15
+ सादर,
16
<br>
17
- [[[USERNAME]]]
17
+ [[[उपयोगकर्ता नाम]]]
18
<br>
19
</div></body></html>
\ No newline at end of file
emails/translations/account-invite_hi.txt
+3
-3
@@ -1,5 +1,5 @@
1
-[[[SERVERNAME]]] - Account Invitation
2
-An account was created for you on server [[[SERVERNAME]]] ([[[SERVERURL]]]/), you can access it now with username "[[[ACCOUNTNAME]]]" and password "[[[PASSWORD]]]".
1
+[[[SERVERNAME]]] - खाता निमंत्रण
2
+सर्वर [[[SERVERNAME]]] ([[[SERVERURL]]] /) पर आपके लिए एक खाता बनाया गया था, आप इसे अब उपयोगकर्ता नाम "[[[ACCOUNTNAME]]]]" और पासवर्ड "[[PASSWORD] के साथ एक्सेस कर सकते हैं। ]] "।
3
~
4
-Best regards,
4
+सादर,
5
~[[[USERNAME]]]
\ No newline at end of file
emails/translations/account-invite_ko.html
+5
-5
@@ -1,19 +1,19 @@
1
-<html><head></head><body><div>[[[SERVERNAME]]] - Account Invitation</div>
1
+<html><head></head><body><div>[[[SERVERNAME]]]-계정 초대</div>
2
<div style="font-family:Arial,Helvetica,sans-serif">
3
<table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4
<tbody><tr>
5
<td>
6
- <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Account Invitation</b>
6
+ <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]]-계정 초대</b>
7
</td>
8
</tr>
9
</tbody></table>
10
- <p>An account was created for you on server <a href="[[[SERVERURL]]]" notrans="1">[[[SERVERNAME]]]</a>, you can access it now with:</p>
10
+ <p>서버에서 계정이 생성되었습니다 <a href="[[[SERVERURL]]]" notrans="1">[[[SERVERNAME]]]</a>을 통해 다음에 액세스 할 수 있습니다.</p>
11
<p>
12
사용자 이름: <b notrans="1">[[[ACCOUNTNAME]]]</b><br>
13
암호: <b notrans="1">[[[PASSWORD]]]</b>
14
</p>
15
- Best regards,
15
+ 친애하는,
16
<br>
17
- [[[USERNAME]]]
17
+ [[[사용자 이름]]]
18
<br>
19
</div></body></html>
\ No newline at end of file
emails/translations/account-invite_ko.txt
+3
-3
@@ -1,5 +1,5 @@
1
-[[[SERVERNAME]]] - Account Invitation
2
-An account was created for you on server [[[SERVERNAME]]] ([[[SERVERURL]]]/), you can access it now with username "[[[ACCOUNTNAME]]]" and password "[[[PASSWORD]]]".
1
+[[[SERVERNAME]]]-계정 초대
2
+서버 [[[SERVERNAME]]] ([[[SERVERURL]]] /)에서 계정이 생성되었습니다. 사용자 이름 "[[[계정 이름]]]"및 비밀번호 "[[[비밀번호] ]] ".
3
~
4
-Best regards,
4
+친애하는,
5
~[[[USERNAME]]]
\ No newline at end of file
emails/translations/account-invite_zh-chs.txt
+1
-1
@@ -1,5 +1,5 @@
1
[[[SERVERNAME]]]-帐户邀请
2
-An account was created for you on server [[[SERVERNAME]]] ([[[SERVERURL]]]/), you can access it now with username "[[[ACCOUNTNAME]]]" and password "[[[PASSWORD]]]".
2
+已在服务器[[[SERVERNAME]]]([[[SERVERURL]]] /)上为您创建了一个帐户,您现在可以使用用户名“ [[[ACCOUNTNAME]]]”和密码“ [[[PASSWORD] ]]”。
3
~
4
最好的祝福,
5
~[[[USERNAME]]]
\ No newline at end of file
emails/translations/account-login_hi.html
+4
-4
@@ -1,12 +1,12 @@
1
-<html><head></head><body><div>[[[SERVERNAME]]] - Account Login</div>
1
+<html><head></head><body><div>[[[SERVERNAME]]] - खाता लॉगिन</div>
2
<div style="font-family:Arial,Helvetica,sans-serif">
3
<table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4
<tbody><tr>
5
<td>
6
- <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Account Login</b>
6
+ <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - खाता लॉगिन</b>
7
</td>
8
</tr>
9
</tbody></table>
10
- <p>Your login token is: [[[TOKEN]]]</p>
11
- <p>This token can only be used once and is valid for 5 minutes.</p>
10
+ <p>आपका लॉगिन टोकन है: [[[टोकन]]]</p>
11
+ <p>यह टोकन केवल एक बार उपयोग किया जा सकता है और 5 मिनट के लिए वैध है।</p>
12
</div></body></html>
\ No newline at end of file
emails/translations/account-login_hi.txt
+3
-3
@@ -1,4 +1,4 @@
1
-[[[SERVERNAME]]] - Account Login
2
-Your login token is: [[[TOKEN]]]
1
+[[[SERVERNAME]]] - खाता लॉगिन
2
+आपका लॉगिन टोकन है: [[[टोकन]]]
3
~
4
-This token can only be used once and is valid for 5 minutes.
\ No newline at end of file
4
+यह टोकन केवल एक बार उपयोग किया जा सकता है और 5 मिनट के लिए वैध है।
\ No newline at end of file
emails/translations/account-login_ko.html
+4
-4
@@ -1,12 +1,12 @@
1
-<html><head></head><body><div>[[[SERVERNAME]]] - Account Login</div>
1
+<html><head></head><body><div>[[[SERVERNAME]]]-계정 로그인</div>
2
<div style="font-family:Arial,Helvetica,sans-serif">
3
<table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4
<tbody><tr>
5
<td>
6
- <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Account Login</b>
6
+ <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]]-계정 로그인</b>
7
</td>
8
</tr>
9
</tbody></table>
10
- <p>Your login token is: [[[TOKEN]]]</p>
11
- <p>This token can only be used once and is valid for 5 minutes.</p>
10
+ <p>귀하의 로그인 토큰은 [[[TOKEN]]]입니다.</p>
11
+ <p>이 토큰은 한 번만 사용할 수 있으며 5 분 동안 유효합니다.</p>
12
</div></body></html>
\ No newline at end of file
emails/translations/account-login_ko.txt
+3
-3
@@ -1,4 +1,4 @@
1
-[[[SERVERNAME]]] - Account Login
2
-Your login token is: [[[TOKEN]]]
1
+[[[SERVERNAME]]]-계정 로그인
2
+귀하의 로그인 토큰은 [[[TOKEN]]]입니다.
3
~
4
-This token can only be used once and is valid for 5 minutes.
\ No newline at end of file
4
+이 토큰은 한 번만 사용할 수 있으며 5 분 동안 유효합니다.
\ No newline at end of file
emails/translations/account-reset_hi.html
+5
-5
@@ -1,15 +1,15 @@
1
-<html><head></head><body><div>[[[SERVERNAME]]] - Account Reset</div>
1
+<html><head></head><body><div>[[[SERVERNAME]]] - खाता रीसेट</div>
2
<div style="font-family:Arial,Helvetica,sans-serif">
3
<table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4
<tbody><tr>
5
<td>
6
- <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Verification</b>
6
+ <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]] - सत्यापन</b>
7
</td>
8
</tr>
9
</tbody></table>
10
- <p>Hi [[[USERNAME]]], <a href="[[[SERVERURL]]]">[[[SERVERNAME]]]</a> is requesting an account password reset, click on the following link to complete the process.</p>
10
+ <p>हाय [[[USERNAME]]], <a href="[[[SERVERURL]]]">[[[सर्वर का नाम]]]</a> खाता पासवर्ड रीसेट का अनुरोध कर रहा है, प्रक्रिया पूरी करने के लिए निम्न लिंक पर क्लिक करें।</p>
11
<p style="margin-left:30px">
12
- <a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Click here to reset your account password.</a>
12
+ <a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">अपना खाता पासवर्ड रीसेट करने के लिए यहां क्लिक करें।</a>
13
</p>
14
- If you did not initiate this request, please ignore this mail.
14
+ यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें।
15
</div></body></html>
\ No newline at end of file
emails/translations/account-reset_hi.txt
+3
-3
@@ -1,6 +1,6 @@
1
-[[[SERVERNAME]]] - Account Reset
2
-Hi [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) is requesting an account password reset. Nagivate to the following link to complete the process:
1
+[[[SERVERNAME]]] - खाता रीसेट
2
+हाय [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]] से खाता पासवर्ड रीसेट करने का अनुरोध किया जा रहा है। प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक को बताएं:
3
~
4
~[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]
5
~
6
-If you did not initiate this request, please ignore this mail.
\ No newline at end of file
6
+यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें।
\ No newline at end of file
emails/translations/account-reset_ko.html
+5
-5
@@ -1,15 +1,15 @@
1
-<html><head></head><body><div>[[[SERVERNAME]]] - Account Reset</div>
1
+<html><head></head><body><div>[[[SERVERNAME]]]-계정 재설정</div>
2
<div style="font-family:Arial,Helvetica,sans-serif">
3
<table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4
<tbody><tr>
5
<td>
6
- <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Verification</b>
6
+ <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]]-확인</b>
7
</td>
8
</tr>
9
</tbody></table>
10
- <p>Hi [[[USERNAME]]], <a href="[[[SERVERURL]]]">[[[SERVERNAME]]]</a> is requesting an account password reset, click on the following link to complete the process.</p>
10
+ <p>[[[USERNAME]]] 님, 안녕하세요. <a href="[[[SERVERURL]]]">[[[서버 이름]]]</a> 계정 비밀번호 재설정을 요청하는 경우 다음 링크를 클릭하여 프로세스를 완료하십시오.</p>
11
<p style="margin-left:30px">
12
- <a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">Click here to reset your account password.</a>
12
+ <a href="[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]">계정 비밀번호를 재설정하려면 여기를 클릭하십시오.</a>
13
</p>
14
- If you did not initiate this request, please ignore this mail.
14
+ 이 요청을 시작하지 않은 경우이 메일을 무시하십시오.
15
</div></body></html>
\ No newline at end of file
emails/translations/account-reset_ko.txt
+3
-3
@@ -1,6 +1,6 @@
1
-[[[SERVERNAME]]] - Account Reset
2
-Hi [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) is requesting an account password reset. Nagivate to the following link to complete the process:
1
+[[[SERVERNAME]]]-계정 재설정
2
+[[[USERNAME]]] 님, [[[SERVERNAME]]] ([[[SERVERURL]]]) 님이 계정 비밀번호 재설정을 요청하고 있습니다. 프로세스를 완료하려면 다음 링크로 이동하십시오.
3
~
4
~[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]]
5
~
6
-If you did not initiate this request, please ignore this mail.
\ No newline at end of file
6
+이 요청을 시작하지 않은 경우이 메일을 무시하십시오.
\ No newline at end of file
emails/translations/mesh-invite_hi.html
+11
-11
@@ -1,42 +1,42 @@
1
-<html><head></head><body><div>[[[SERVERNAME]]] - Invitation</div>
1
+<html><head></head><body><div>[[[SERVERNAME]]] - निमंत्रण</div>
2
<div style="font-family:Arial,Helvetica,sans-serif">
3
<table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4
<tbody><tr>
5
<td>
6
- <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Agent Installation</b>
6
+ <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - एजेंट स्थापना</b>
7
</td>
8
</tr>
9
</tbody></table>
10
<area-name>
11
<p>
12
- Hello [[[NAME]]],
12
+ नमस्कार [[[NAME]]],
13
</p>
14
</area-name>
15
- <p>User [[[USERNAME]]] on server <a href="[[[SERVERURL]]]">[[[SERVERNAME]]]</a> is requesting you to install software to start a remote control session.</p>
15
+ <p>उपयोगकर्ता [[[USERNAME]]] सर्वर पर <a href="[[[SERVERURL]]]">[[[सर्वर का नाम]]]</a> रिमोट कंट्रोल सेशन शुरू करने के लिए आपको सॉफ्टवेयर इंस्टॉल करने का अनुरोध कर रहा है।</p>
16
<area-msg>
17
<p>
18
- Message: <b notrans="1">[[[MSG]]]</b>
18
+ संदेश: <b notrans="1">[[[MSG]]]</b>
19
</p>
20
</area-msg>
21
<area-windows>
22
<p style="margin-left:30px">
23
- <a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Click here to download the MeshAgent for Windows.</a>
23
+ <a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">विंडोज के लिए मेशजेंट को डाउनलोड करने के लिए यहां क्लिक करें।</a>
24
</p>
25
</area-windows>
26
<area-osx>
27
- <p style="margin-left:30px"><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Click here to download the MeshAgent for Apple OSX.</a></p>
27
+ <p style="margin-left:30px"><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Apple OSX के लिए मेशजेंट को डाउनलोड करने के लिए यहां क्लिक करें।</a></p>
28
</area-osx>
29
<area-linux>
30
<p>
31
- For Linux, cut & paste the following in a terminal to install the agent:<br>
31
+ लिनक्स में, एजेंट को स्थापित करने के लिए टर्मिनल में निम्नलिखित को काटें और चिपकाएँ:<br>
32
</p><pre style="margin-left:30px" notrans="1">wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre>
33
<p></p>
34
</area-linux>
35
<area-link>
36
<p>
37
- To install the software, <a href="[[[SERVERURL]]][[[LINKURL]]]">click here</a> and follow the instructions.
37
+ सॉफ़्टवेयर स्थापित करने के लिए, <a href="[[[SERVERURL]]][[[LINKURL]]]">यहाँ क्लिक करें</a> और निर्देशों का पालन करें।
38
</p>
39
</area-link>
40
- <p>If you did not initiate this request, please ignore this mail.</p>
41
- Best regards,<br>[[[USERNAME]]]<br>
40
+ <p>यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें।</p>
41
+ सादर,<br>[[[उपयोगकर्ता नाम]]]<br>
42
</div></body></html>
\ No newline at end of file
emails/translations/mesh-invite_hi.txt
+10
-10
@@ -1,35 +1,35 @@
1
-[[[SERVERNAME]]] - Invitation
1
+[[[SERVERNAME]]] - निमंत्रण
2
~<area-name>
3
-Hello [[[NAME]]],
3
+नमस्कार [[[NAME]]],
4
~</area-name>
5
-User [[[USERNAME]]] on server [[[SERVERNAME]]] ([[[SERVERURL]]]/) is requesting you install software to start the remote control session.
5
+उपयोगकर्ता [[[USERNAME]]] सर्वर पर [[[SERVERNAME]]] ([[[SERVERURL]]] /) आपसे रिमोट कंट्रोल सेशन शुरू करने के लिए सॉफ़्टवेयर स्थापित करने का अनुरोध कर रहा है।
6
~<area-msg>
7
~
8
-Message: [[[MSG]]]
8
+संदेश: [[[एमएसजी]]]
9
~
10
~</area-msg>
11
~<area-windows>
12
-For Windows, nagivate to the following link to complete the process:
12
+विंडोज के लिए, प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक पर जाएं:
13
~
14
~[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]
15
~
16
~</area-windows>
17
~<area-osx>
18
-For Apple OSX, nagivate to the following link to complete the process:
18
+Apple OSX के लिए, इस प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक पर जाएं:
19
~
20
~[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]
21
~
22
~</area-osx>
23
~<area-linux>
24
-For Linux, cut & paste the following in a terminal to install the agent:
24
+लिनक्स में, एजेंट को स्थापित करने के लिए टर्मिनल में निम्नलिखित को काटें और चिपकाएँ:
25
~
26
~wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] '[[[MESHIDHEX]]]'
27
~
28
~</area-linux>
29
~<area-link>
30
-To install the software, navigate to [[[SERVERURL]]][[[LINKURL]]] and follow the instructions.
30
+सॉफ़्टवेयर को स्थापित करने के लिए, [[[SERVERURL]]] [[[LINKURL]]] पर जाएँ और निर्देशों का पालन करें।
31
~</area-link>
32
-If you did not initiate this request, please ignore this mail.
32
+यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें।
33
~
34
-Best regards,
34
+सादर,
35
~[[[USERNAME]]]
\ No newline at end of file
emails/translations/mesh-invite_ko.html
+11
-11
@@ -1,42 +1,42 @@
1
-<html><head></head><body><div>[[[SERVERNAME]]] - Invitation</div>
1
+<html><head></head><body><div>[[[SERVERNAME]]]-초대</div>
2
<div style="font-family:Arial,Helvetica,sans-serif">
3
<table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
4
<tbody><tr>
5
<td>
6
- <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Agent Installation</b>
6
+ <b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]]-에이전트 설치</b>
7
</td>
8
</tr>
9
</tbody></table>
10
<area-name>
11
<p>
12
- Hello [[[NAME]]],
12
+ [[[NAME]]] 님, 안녕하세요.
13
</p>
14
</area-name>
15
- <p>User [[[USERNAME]]] on server <a href="[[[SERVERURL]]]">[[[SERVERNAME]]]</a> is requesting you to install software to start a remote control session.</p>
15
+ <p>서버의 사용자 [[[USERNAME]]] <a href="[[[SERVERURL]]]">[[[서버 이름]]]</a> 원격 제어 세션을 시작하기 위해 소프트웨어를 설치하도록 요청하고 있습니다.</p>
16
<area-msg>
17
<p>
18
- Message: <b notrans="1">[[[MSG]]]</b>
18
+ 메시지: <b notrans="1">[[[MSG]]]</b>
19
</p>
20
</area-msg>
21
<area-windows>
22
<p style="margin-left:30px">
23
- <a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Click here to download the MeshAgent for Windows.</a>
23
+ <a href="[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Windows 용 MeshAgent를 다운로드하려면 여기를 클릭하십시오.</a>
24
</p>
25
</area-windows>
26
<area-osx>
27
- <p style="margin-left:30px"><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Click here to download the MeshAgent for Apple OSX.</a></p>
27
+ <p style="margin-left:30px"><a href="[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]">Apple OSX 용 MeshAgent를 다운로드하려면 여기를 클릭하십시오.</a></p>
28
</area-osx>
29
<area-linux>
30
<p>
31
- For Linux, cut & paste the following in a terminal to install the agent:<br>
31
+ Linux의 경우 터미널에서 다음을 잘라내어 붙여 넣어 에이전트를 설치하십시오.<br>
32
</p><pre style="margin-left:30px" notrans="1">wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'</pre>
33
<p></p>
34
</area-linux>
35
<area-link>
36
<p>
37
- To install the software, <a href="[[[SERVERURL]]][[[LINKURL]]]">click here</a> and follow the instructions.
37
+ 소프트웨어를 설치하려면 <a href="[[[SERVERURL]]][[[LINKURL]]]">여기를 클릭하십시오</a> 지침을 따르십시오.
38
</p>
39
</area-link>
40
- <p>If you did not initiate this request, please ignore this mail.</p>
41
- Best regards,<br>[[[USERNAME]]]<br>
40
+ <p>이 요청을 시작하지 않은 경우이 메일을 무시하십시오.</p>
41
+ 친애하는,<br>[[[사용자 이름]]]<br>
42
</div></body></html>
\ No newline at end of file
emails/translations/mesh-invite_ko.txt
+10
-10
@@ -1,35 +1,35 @@
1
-[[[SERVERNAME]]] - Invitation
1
+[[[SERVERNAME]]]-초대
2
~<area-name>
3
-Hello [[[NAME]]],
3
+[[[NAME]]] 님, 안녕하세요.
4
~</area-name>
5
-User [[[USERNAME]]] on server [[[SERVERNAME]]] ([[[SERVERURL]]]/) is requesting you install software to start the remote control session.
5
+서버 [[[SERVERNAME]]] ([[[SERVERURL]]] /)의 [[[USERNAME]]] 사용자가 원격 제어 세션을 시작하기 위해 소프트웨어를 설치하도록 요청하고 있습니다.
6
~<area-msg>
7
~
8
-Message: [[[MSG]]]
8
+메시지 : [[[MSG]]]
9
~
10
~</area-msg>
11
~<area-windows>
12
-For Windows, nagivate to the following link to complete the process:
12
+Windows의 경우 다음 링크로 이동하여 프로세스를 완료하십시오.
13
~
14
~[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]
15
~
16
~</area-windows>
17
~<area-osx>
18
-For Apple OSX, nagivate to the following link to complete the process:
18
+Apple OSX의 경우 다음 링크로 이동하여 프로세스를 완료하십시오.
19
~
20
~[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]]
21
~
22
~</area-osx>
23
~<area-linux>
24
-For Linux, cut & paste the following in a terminal to install the agent:
24
+Linux의 경우 터미널에서 다음을 잘라내어 붙여 넣어 에이전트를 설치하십시오.
25
~
26
~wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] '[[[MESHIDHEX]]]'
27
~
28
~</area-linux>
29
~<area-link>
30
-To install the software, navigate to [[[SERVERURL]]][[[LINKURL]]] and follow the instructions.
30
+소프트웨어를 설치하려면 [[[SERVERURL]]] [[[LINKURL]]]으로 이동하여 지침을 따르십시오.
31
~</area-link>
32
-If you did not initiate this request, please ignore this mail.
32
+이 요청을 시작하지 않은 경우이 메일을 무시하십시오.
33
~
34
-Best regards,
34
+친애하는,
35
~[[[USERNAME]]]
\ No newline at end of file
emails/translations/sms-messages_es.txt
+2
-2
@@ -1,2 +1,2 @@
1
-[[0]] verification code is: [[1]]
2
-[[0]] access token is: [[1]]
1
+El código de verificación [[0]] es: [[1]]
2
+[[0]] token de acceso es: [[1]]
emails/translations/sms-messages_fr.txt
+2
-2
@@ -1,2 +1,2 @@
1
-[[0]] verification code is: [[1]]
2
-[[0]] access token is: [[1]]
1
+[[0]] le code de vérification est: [[1]]
2
+[[0]] le jeton d'accès est: [[1]]
emails/translations/sms-messages_hi.txt
+2
-2
@@ -1,2 +1,2 @@
1
-[[0]] verification code is: [[1]]
2
-[[0]] access token is: [[1]]
1
+[[०]] सत्यापन कोड है: [[१]]
2
+[[0]] अभिगमन टोकन है: [[१]]
emails/translations/sms-messages_ko.txt
+2
-2
@@ -1,2 +1,2 @@
1
-[[0]] verification code is: [[1]]
2
-[[0]] access token is: [[1]]
1
+[[0]] 인증 코드는 다음과 같습니다. [[1]]
2
+[[0]] 액세스 토큰은 다음과 같습니다. [[1]]
emails/translations/sms-messages_zh-chs.txt
+2
-2
@@ -1,2 +1,2 @@
1
-[[0]] verification code is: [[1]]
2
-[[0]] access token is: [[1]]
1
+[[0]]验证码是:[[1]]
2
+[[0]]访问令牌是:[[1]]
public/scripts/agent-redir-ws-0.1.1-min.js
+1
-1
@@ -1 +1 @@
1
-var CreateAgentRedirect=function(e,t,n,o,a,r){var c={};function l(){1==c.webSwitchOk&&1==c.webRtcActive&&(c.latency.current=-1,c.sendCtrlMsg('{"ctrlChannel":"102938","type":"webrtc0"}'),c.sendCtrlMsg('{"ctrlChannel":"102938","type":"webrtc1"}'),null!=c.onStateChanged&&c.onStateChanged(c,c.State))}((c.m=t).parent=c).meshserver=e,c.authCookie=o,c.rauthCookie=a,c.State=0,c.nodeid=null,c.options=null,c.socket=null,c.connectstate=-1,c.tunnelid=Math.random().toString(36).substring(2),c.protocol=t.protocol,c.onStateChanged=null,c.ctrlMsgAllowed=!0,c.attemptWebRTC=!1,c.webRtcActive=!1,c.webSwitchOk=!1,c.webchannel=null,c.webrtc=null,c.debugmode=0,c.serverIsRecording=!1,c.latency={lastSend:null,current:-1,callback:null},null==r&&(r="/"),c.consoleMessage=null,c.onConsoleMessageChange=null,c.Start=function(e){var t=window.location.protocol.replace("http","ws")+"//"+window.location.host+window.location.pathname.substring(0,window.location.pathname.lastIndexOf("/"))+"/meshrelay.ashx?browser=1&p="+c.protocol+"&nodeid="+e+"&id="+c.tunnelid;null!=o&&""!=o&&(t+="&auth="+o),null!=urlargs&&null!=urlargs.slowrelay&&(t+="&slowrelay="+urlargs.slowrelay),c.nodeid=e,c.connectstate=0,c.socket=new WebSocket(t),c.socket.onopen=c.xxOnSocketConnected,c.socket.onmessage=c.xxOnMessage,c.socket.onerror=function(e){},c.socket.onclose=c.xxOnSocketClosed,c.xxStateChange(1);var n="*"+r+"meshrelay.ashx?p="+c.protocol+"&nodeid="+e+"&id="+c.tunnelid;null!=a&&""!=a&&(n+="&rauth="+a),c.meshserver.send({action:"msg",type:"tunnel",nodeid:c.nodeid,value:n,usage:c.protocol})},c.xxOnSocketConnected=function(){1==c.debugmode&&console.log("onSocketConnected"),c.xxStateChange(2)},c.xxOnControlCommand=function(e){var t;try{t=JSON.parse(e)}catch(e){return}"102938"==t.ctrlChannel?("undefined"!=typeof args&&args.redirtrace&&console.log("RedirRecv",t),"console"==t.type?c.setConsoleMessage(t.msg):"rtt"==t.type&&"number"==typeof t.time?(c.latency.current=(new Date).getTime()-t.time,null!=c.latency.callbacks&&c.latency.callback(c.latency.current)):null!=c.webrtc&&("answer"==t.type?c.webrtc.setRemoteDescription(new RTCSessionDescription(t),function(){},c.xxCloseWebRTC):"webrtc0"==t.type?(c.webSwitchOk=!0,l()):"webrtc1"==t.type?c.sendCtrlMsg('{"ctrlChannel":"102938","type":"webrtc2"}'):t.type)):c.xxOnSocketData(e)},c.setConsoleMessage=function(e){c.consoleMessage!=e&&(c.consoleMessage=e,c.onConsoleMessageChange&&c.onConsoleMessageChange(c,c.consoleMessage))},c.sendCtrlMsg=function(e){if(1==c.ctrlMsgAllowed){"undefined"!=typeof args&&args.redirtrace&&console.log("RedirSend",typeof e,e);try{c.socket.send(e)}catch(e){}}},c.xxOnMessage=function(e){if(c.State<3&&("c"==e.data||"cr"==e.data)){if("cr"==e.data&&(c.serverIsRecording=!0),null!=c.options){delete c.options.action,c.options.type="options";try{c.sendCtrlMsg(JSON.stringify(c.options))}catch(e){}}try{c.socket.send(c.protocol)}catch(e){}if(c.xxStateChange(3),1==c.attemptWebRTC){"undefined"!=typeof RTCPeerConnection?c.webrtc=new RTCPeerConnection(null):"undefined"!=typeof webkitRTCPeerConnection&&(c.webrtc=new webkitRTCPeerConnection(null)),null!=c.webrtc&&c.webrtc.createDataChannel&&(c.webchannel=c.webrtc.createDataChannel("DataChannel",{}),c.webchannel.onmessage=c.xxOnMessage,c.webchannel.onopen=function(){c.webRtcActive=!0,l()},c.webchannel.onclose=function(e){c.webRtcActive&&c.Stop()},c.webrtc.onicecandidate=function(e){if(null==e.candidate)try{c.sendCtrlMsg(JSON.stringify(c.webrtcoffer))}catch(e){}else c.webrtcoffer.sdp+="a="+e.candidate.candidate+"\r\n"},c.webrtc.oniceconnectionstatechange=function(){null!=c.webrtc&&("disconnected"==c.webrtc.iceConnectionState?1==c.webRtcActive?c.Stop():c.xxCloseWebRTC():"failed"==c.webrtc.iceConnectionState&&c.xxCloseWebRTC())},c.webrtc.createOffer(function(e){c.webrtcoffer=e,c.webrtc.setLocalDescription(e,function(){},c.xxCloseWebRTC)},c.xxCloseWebRTC,{mandatory:{OfferToReceiveAudio:!1,OfferToReceiveVideo:!1}}))}}else if("string"!=typeof e.data){if("object"==typeof e.data){if(1==i)return void d.push(e.data);if(s.readAsBinaryString&&null==c.m.ProcessBinaryData)i=!0,s.readAsBinaryString(new Blob([e.data]));else if(s.readAsArrayBuffer)i=!0,s.readAsArrayBuffer(e.data);else{for(var t="",n=new Uint8Array(e.data),o=n.byteLength,a=0;a<o;a++)t+=String.fromCharCode(n[a]);c.xxOnSocketData(t)}}else c.xxOnSocketData(e.data);if(1!=c.webRtcActive){var r=(new Date).getTime();(null==c.latency.lastSend||5e3<r-c.latency.lastSend)&&(c.latency.lastSend=r,c.sendCtrlMsg('{"ctrlChannel":"102938","type":"rtt","time":'+r+"}"))}}else c.xxOnControlCommand(e.data)};var s=new FileReader,i=!1,d=[];return s.readAsBinaryString&&null==c.m.ProcessBinaryData?s.onload=function(e){c.xxOnSocketData(e.target.result),0==d.length?i=!1:s.readAsBinaryString(new Blob([d.shift()]))}:s.readAsArrayBuffer&&(s.onloadend=function(e){c.xxOnSocketData(e.target.result),0==d.length?i=!1:s.readAsArrayBuffer(d.shift())}),c.xxOnSocketData=function(e){if(e&&-1!=c.connectstate){if("object"==typeof e){if(c.m.ProcessBinaryData)return c.m.ProcessBinaryData(e);for(var t="",n=new Uint8Array(e),o=n.byteLength,a=0;a<o;a++)t+=String.fromCharCode(n[a]);e=t}else if("string"!=typeof e)return;return"undefined"!=typeof args&&args.redirtrace&&console.log("RedirRecv",typeof e,e.length,"{"==e[0]?e:rstr2hex(e).substring(0,64)),c.m.ProcessData(e)}},c.sendText=function(e){"string"!=typeof e&&(e=JSON.stringify(e)),c.send(encode_utf8(e))},c.send=function(e){"undefined"!=typeof args&&args.redirtrace&&console.log("RedirSend",typeof e,e.length,"{"==e[0]?e:rstr2hex(e).substring(0,64));try{if(null!=c.socket&&c.socket.readyState==WebSocket.OPEN)if("string"==typeof e)if(1==c.debugmode){for(var t=new Uint8Array(e.length),n=[],o=0;o<e.length;++o)t[o]=e.charCodeAt(o),n.push(e.charCodeAt(o));1==c.webRtcActive?c.webchannel.send(t.buffer):c.socket.send(t.buffer)}else{for(t=new Uint8Array(e.length),o=0;o<e.length;++o)t[o]=e.charCodeAt(o);1==c.webRtcActive?c.webchannel.send(t.buffer):c.socket.send(t.buffer)}else 1==c.webRtcActive?c.webchannel.send(e):c.socket.send(e)}catch(e){}},c.xxOnSocketClosed=function(){c.Stop(1)},c.xxStateChange=function(e){c.State!=e&&(c.State=e,c.m.xxStateChange(c.State),null!=c.onStateChanged&&c.onStateChanged(c,c.State))},c.xxCloseWebRTC=function(){if(null!=c.webchannel){try{c.webchannel.close()}catch(e){}c.webchannel=null}if(null!=c.webrtc){try{c.webrtc.close()}catch(e){}c.webrtc=null}c.webRtcActive=!1},c.Stop=function(e){if(1==c.debugmode&&console.log("stop",e),c.xxCloseWebRTC(),c.connectstate=-1,null!=c.socket){try{1==c.socket.readyState&&(c.sendCtrlMsg('{"ctrlChannel":"102938","type":"close"}'),c.socket.close())}catch(e){}c.socket=null}c.xxStateChange(0)},c}
\ No newline at end of file
1
+var CreateAgentRedirect=function(e,t,n,o,a,r){var c={};function s(){1==c.webSwitchOk&&1==c.webRtcActive&&(c.latency.current=-1,c.sendCtrlMsg('{"ctrlChannel":"102938","type":"webrtc0"}'),c.sendCtrlMsg('{"ctrlChannel":"102938","type":"webrtc1"}'),null!=c.onStateChanged&&c.onStateChanged(c,c.State))}((c.m=t).parent=c).meshserver=e,c.authCookie=o,c.rauthCookie=a,c.State=0,c.nodeid=null,c.options=null,c.socket=null,c.connectstate=-1,c.tunnelid=Math.random().toString(36).substring(2),c.protocol=t.protocol,c.onStateChanged=null,c.ctrlMsgAllowed=!0,c.attemptWebRTC=!1,c.webRtcActive=!1,c.webSwitchOk=!1,c.webchannel=null,c.webrtc=null,c.debugmode=0,c.serverIsRecording=!1,c.latency={lastSend:null,current:-1,callback:null},null==r&&(r="/"),c.consoleMessage=null,c.onConsoleMessageChange=null,c.Start=function(e){var t=window.location.protocol.replace("http","ws")+"//"+window.location.host+window.location.pathname.substring(0,window.location.pathname.lastIndexOf("/"))+"/meshrelay.ashx?browser=1&p="+c.protocol+"&nodeid="+e+"&id="+c.tunnelid;null!=o&&""!=o&&(t+="&auth="+o),null!=urlargs&&null!=urlargs.slowrelay&&(t+="&slowrelay="+urlargs.slowrelay),c.nodeid=e,c.connectstate=0,c.socket=new WebSocket(t),c.socket.onopen=c.xxOnSocketConnected,c.socket.onmessage=c.xxOnMessage,c.socket.onerror=function(e){},c.socket.onclose=c.xxOnSocketClosed,c.xxStateChange(1);var n="*"+r+"meshrelay.ashx?p="+c.protocol+"&nodeid="+e+"&id="+c.tunnelid;null!=a&&""!=a&&(n+="&rauth="+a),c.meshserver.send({action:"msg",type:"tunnel",nodeid:c.nodeid,value:n,usage:c.protocol})},c.xxOnSocketConnected=function(){1==c.debugmode&&console.log("onSocketConnected"),c.xxStateChange(2)},c.xxOnControlCommand=function(e){var t;try{t=JSON.parse(e)}catch(e){return}"102938"==t.ctrlChannel?("undefined"!=typeof args&&args.redirtrace&&console.log("RedirRecv",t),"console"==t.type?c.setConsoleMessage(t.msg,t.msgid,t.msgargs):"rtt"==t.type&&"number"==typeof t.time?(c.latency.current=(new Date).getTime()-t.time,null!=c.latency.callbacks&&c.latency.callback(c.latency.current)):null!=c.webrtc&&("answer"==t.type?c.webrtc.setRemoteDescription(new RTCSessionDescription(t),function(){},c.xxCloseWebRTC):"webrtc0"==t.type?(c.webSwitchOk=!0,s()):"webrtc1"==t.type?c.sendCtrlMsg('{"ctrlChannel":"102938","type":"webrtc2"}'):t.type)):c.xxOnSocketData(e)},c.setConsoleMessage=function(e,t,n){c.consoleMessage!=e&&(c.consoleMessage=e,c.consoleMessageId=t,c.consoleMessageArgs=n,c.onConsoleMessageChange&&c.onConsoleMessageChange(c,c.consoleMessage,c.consoleMessageId))},c.sendCtrlMsg=function(e){if(1==c.ctrlMsgAllowed){"undefined"!=typeof args&&args.redirtrace&&console.log("RedirSend",typeof e,e);try{c.socket.send(e)}catch(e){}}},c.xxOnMessage=function(e){if(c.State<3&&("c"==e.data||"cr"==e.data)){if("cr"==e.data&&(c.serverIsRecording=!0),null!=c.options){delete c.options.action,c.options.type="options";try{c.sendCtrlMsg(JSON.stringify(c.options))}catch(e){}}try{c.socket.send(c.protocol)}catch(e){}if(c.xxStateChange(3),1==c.attemptWebRTC){"undefined"!=typeof RTCPeerConnection?c.webrtc=new RTCPeerConnection(null):"undefined"!=typeof webkitRTCPeerConnection&&(c.webrtc=new webkitRTCPeerConnection(null)),null!=c.webrtc&&c.webrtc.createDataChannel&&(c.webchannel=c.webrtc.createDataChannel("DataChannel",{}),c.webchannel.onmessage=c.xxOnMessage,c.webchannel.onopen=function(){c.webRtcActive=!0,s()},c.webchannel.onclose=function(e){c.webRtcActive&&c.Stop()},c.webrtc.onicecandidate=function(e){if(null==e.candidate)try{c.sendCtrlMsg(JSON.stringify(c.webrtcoffer))}catch(e){}else c.webrtcoffer.sdp+="a="+e.candidate.candidate+"\r\n"},c.webrtc.oniceconnectionstatechange=function(){null!=c.webrtc&&("disconnected"==c.webrtc.iceConnectionState?1==c.webRtcActive?c.Stop():c.xxCloseWebRTC():"failed"==c.webrtc.iceConnectionState&&c.xxCloseWebRTC())},c.webrtc.createOffer(function(e){c.webrtcoffer=e,c.webrtc.setLocalDescription(e,function(){},c.xxCloseWebRTC)},c.xxCloseWebRTC,{mandatory:{OfferToReceiveAudio:!1,OfferToReceiveVideo:!1}}))}}else if("string"!=typeof e.data){if("object"==typeof e.data){if(1==i)return void d.push(e.data);if(l.readAsBinaryString&&null==c.m.ProcessBinaryData)i=!0,l.readAsBinaryString(new Blob([e.data]));else if(l.readAsArrayBuffer)i=!0,l.readAsArrayBuffer(e.data);else{for(var t="",n=new Uint8Array(e.data),o=n.byteLength,a=0;a<o;a++)t+=String.fromCharCode(n[a]);c.xxOnSocketData(t)}}else c.xxOnSocketData(e.data);if(1!=c.webRtcActive){var r=(new Date).getTime();(null==c.latency.lastSend||5e3<r-c.latency.lastSend)&&(c.latency.lastSend=r,c.sendCtrlMsg('{"ctrlChannel":"102938","type":"rtt","time":'+r+"}"))}}else c.xxOnControlCommand(e.data)};var l=new FileReader,i=!1,d=[];return l.readAsBinaryString&&null==c.m.ProcessBinaryData?l.onload=function(e){c.xxOnSocketData(e.target.result),0==d.length?i=!1:l.readAsBinaryString(new Blob([d.shift()]))}:l.readAsArrayBuffer&&(l.onloadend=function(e){c.xxOnSocketData(e.target.result),0==d.length?i=!1:l.readAsArrayBuffer(d.shift())}),c.xxOnSocketData=function(e){if(e&&-1!=c.connectstate){if("object"==typeof e){if(c.m.ProcessBinaryData)return c.m.ProcessBinaryData(e);for(var t="",n=new Uint8Array(e),o=n.byteLength,a=0;a<o;a++)t+=String.fromCharCode(n[a]);e=t}else if("string"!=typeof e)return;return"undefined"!=typeof args&&args.redirtrace&&console.log("RedirRecv",typeof e,e.length,"{"==e[0]?e:rstr2hex(e).substring(0,64)),c.m.ProcessData(e)}},c.sendText=function(e){"string"!=typeof e&&(e=JSON.stringify(e)),c.send(encode_utf8(e))},c.send=function(e){"undefined"!=typeof args&&args.redirtrace&&console.log("RedirSend",typeof e,e.length,"{"==e[0]?e:rstr2hex(e).substring(0,64));try{if(null!=c.socket&&c.socket.readyState==WebSocket.OPEN)if("string"==typeof e)if(1==c.debugmode){for(var t=new Uint8Array(e.length),n=[],o=0;o<e.length;++o)t[o]=e.charCodeAt(o),n.push(e.charCodeAt(o));1==c.webRtcActive?c.webchannel.send(t.buffer):c.socket.send(t.buffer)}else{for(t=new Uint8Array(e.length),o=0;o<e.length;++o)t[o]=e.charCodeAt(o);1==c.webRtcActive?c.webchannel.send(t.buffer):c.socket.send(t.buffer)}else 1==c.webRtcActive?c.webchannel.send(e):c.socket.send(e)}catch(e){}},c.xxOnSocketClosed=function(){c.Stop(1)},c.xxStateChange=function(e){c.State!=e&&(c.State=e,c.m.xxStateChange(c.State),null!=c.onStateChanged&&c.onStateChanged(c,c.State))},c.xxCloseWebRTC=function(){if(null!=c.webchannel){try{c.webchannel.close()}catch(e){}c.webchannel=null}if(null!=c.webrtc){try{c.webrtc.close()}catch(e){}c.webrtc=null}c.webRtcActive=!1},c.Stop=function(e){if(1==c.debugmode&&console.log("stop",e),c.xxCloseWebRTC(),c.connectstate=-1,null!=c.socket){try{1==c.socket.readyState&&(c.sendCtrlMsg('{"ctrlChannel":"102938","type":"close"}'),c.socket.close())}catch(e){}c.socket=null}c.xxStateChange(0)},c}
\ No newline at end of file
public/scripts/agent-redir-ws-0.1.1.js
+5
-3
@@ -73,7 +73,7 @@ var CreateAgentRedirect = function (meshserver, module, serverPublicNamePort, au
73
//console.log(controlMsg);
74
if ((typeof args != 'undefined') && args.redirtrace) { console.log('RedirRecv', controlMsg); }
75
if (controlMsg.type == 'console') {
76
- obj.setConsoleMessage(controlMsg.msg);
76
+ obj.setConsoleMessage(controlMsg.msg, controlMsg.msgid, controlMsg.msgargs);
77
} else if ((controlMsg.type == 'rtt') && (typeof controlMsg.time == 'number')) {
78
obj.latency.current = (new Date().getTime()) - controlMsg.time;
79
if (obj.latency.callbacks != null) { obj.latency.callback(obj.latency.current); }
@@ -92,10 +92,12 @@ var CreateAgentRedirect = function (meshserver, module, serverPublicNamePort, au
92
}
93
94
// Set the console message
95
- obj.setConsoleMessage = function (str) {
95
+ obj.setConsoleMessage = function (str, id, args) {
96
if (obj.consoleMessage == str) return;
97
obj.consoleMessage = str;
98
- if (obj.onConsoleMessageChange) { obj.onConsoleMessageChange(obj, obj.consoleMessage); }
98
+ obj.consoleMessageId = id;
99
+ obj.consoleMessageArgs = args;
100
+ if (obj.onConsoleMessageChange) { obj.onConsoleMessageChange(obj, obj.consoleMessage, obj.consoleMessageId); }
101
}
102
103
obj.sendCtrlMsg = function (x) { if (obj.ctrlMsgAllowed == true) { if ((typeof args != 'undefined') && args.redirtrace) { console.log('RedirSend', typeof x, x); } try { obj.socket.send(x); } catch (ex) { } } }
translate/translate.json
+1726
-1067
@@ -14,8 +14,8 @@
14
"ru": " + CIRA",
15
"zh-chs": " + CIRA",
16
"xloc": [
17
- "default.handlebars->25->1152",
18
- "default.handlebars->25->1154"
17
+ "default.handlebars->25->1155",
18
+ "default.handlebars->25->1157"
19
]
20
},
21
{
@@ -174,7 +174,7 @@
174
"ru": " Может быть использована подсказка пароля, но не рекоммендуется.",
175
"zh-chs": " 可以使用密碼提示,但不建議使用。",
176
"xloc": [
177
- "default.handlebars->25->1081"
177
+ "default.handlebars->25->1084"
178
]
179
},
180
{
@@ -191,8 +191,8 @@
191
"ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.",
192
"zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
193
"xloc": [
194
- "default.handlebars->25->1227",
195
- "default.handlebars->25->1528"
194
+ "default.handlebars->25->1230",
195
+ "default.handlebars->25->1531"
196
]
197
},
198
{
@@ -375,7 +375,7 @@
375
"ru": "* Оставьте пустым для установления случайного пароля каждому устройству.",
376
"zh-chs": "*保留空白以為每個設備分配一個隨機密碼。",
377
"xloc": [
378
- "default.handlebars->25->1199"
378
+ "default.handlebars->25->1202"
379
]
380
},
381
{
@@ -408,7 +408,7 @@
408
"zh-chs": ",",
409
"xloc": [
410
"default-mobile.handlebars->9->335",
411
- "default.handlebars->25->1293"
411
+ "default.handlebars->25->1296"
412
]
413
},
414
{
@@ -443,7 +443,7 @@
443
"ru": ", MQTT онлайн",
444
"zh-chs": ",MQTT在線",
445
"xloc": [
446
- "default.handlebars->25->824"
446
+ "default.handlebars->25->827"
447
]
448
},
449
{
@@ -460,7 +460,7 @@
460
"ru": ", Soft-KVM",
461
"zh-chs": ",軟KVM",
462
"xloc": [
463
- "default.handlebars->25->676"
463
+ "default.handlebars->25->679"
464
]
465
},
466
{
@@ -479,9 +479,9 @@
479
"xloc": [
480
"default-mobile.handlebars->9->238",
481
"default-mobile.handlebars->9->246",
482
- "default.handlebars->25->677",
483
- "default.handlebars->25->708",
484
- "default.handlebars->25->720",
482
+ "default.handlebars->25->680",
483
+ "default.handlebars->25->711",
484
+ "default.handlebars->25->723",
485
"xterm.handlebars->9->6"
486
]
487
},
@@ -544,7 +544,9 @@
544
"en": ", you can access it now with:",
545
"es": ", ahora puede acceder con:",
546
"fr": ", vous pouvez y accéder maintenant avec:",
547
+ "hi": ", आप इसे अभी एक्सेस कर सकते हैं:",
548
"ja": "、あなたは今それを使ってそれにアクセスできます:",
549
+ "ko": "을 통해 다음에 액세스 할 수 있습니다.",
550
"nl": ", je hebt er nu toegang toe met:",
551
"ru": "Вы можете получить к нему доступ сейчас:",
552
"zh-chs": ",您现在可以通过以下方式访问它:",
@@ -604,9 +606,9 @@
606
"xloc": [
607
"default-mobile.handlebars->9->248",
608
"default-mobile.handlebars->9->77",
607
- "default.handlebars->25->1334",
608
- "default.handlebars->25->1643",
609
- "default.handlebars->25->722"
609
+ "default.handlebars->25->1337",
610
+ "default.handlebars->25->1646",
611
+ "default.handlebars->25->725"
612
]
613
},
614
{
@@ -654,7 +656,7 @@
656
"ru": "1 активная сессия",
657
"zh-chs": "1個活動會話",
658
"xloc": [
657
- "default.handlebars->25->1588"
659
+ "default.handlebars->25->1591"
660
]
661
},
662
{
@@ -673,7 +675,7 @@
675
"xloc": [
676
"default-mobile.handlebars->9->339",
677
"default-mobile.handlebars->9->87",
676
- "default.handlebars->25->1353"
678
+ "default.handlebars->25->1356"
679
]
680
},
681
{
@@ -709,7 +711,7 @@
711
"ru": "1 группа",
712
"zh-chs": "1組",
713
"xloc": [
712
- "default.handlebars->25->1555"
714
+ "default.handlebars->25->1558"
715
]
716
},
717
{
@@ -781,7 +783,7 @@
783
"ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...",
784
"zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...",
785
"xloc": [
784
- "default.handlebars->25->1388"
786
+ "default.handlebars->25->1391"
787
]
788
},
789
{
@@ -832,7 +834,7 @@
834
"ru": "1 сессия",
835
"zh-chs": "1節",
836
"xloc": [
835
- "default.handlebars->25->1392"
837
+ "default.handlebars->25->1395"
838
]
839
},
840
{
@@ -1100,8 +1102,8 @@
1102
"ru": "двухфакторная аутентификация включена",
1103
"zh-chs": "啟用第二因素身份驗證",
1104
"xloc": [
1103
- "default.handlebars->25->1405",
1104
- "default.handlebars->25->1577"
1105
+ "default.handlebars->25->1408",
1106
+ "default.handlebars->25->1580"
1107
]
1108
},
1109
{
@@ -1812,7 +1814,7 @@
1814
"ru": "Отказано в доступе",
1815
"zh-chs": "拒絕訪問",
1816
"xloc": [
1815
- "default.handlebars->25->825"
1817
+ "default.handlebars->25->828"
1818
]
1819
},
1820
{
@@ -1847,7 +1849,7 @@
1849
"ru": "Доступ к файлам сервера",
1850
"zh-chs": "訪問服務器文件",
1851
"xloc": [
1850
- "default.handlebars->25->1534"
1852
+ "default.handlebars->25->1537"
1853
]
1854
},
1855
{
@@ -1922,16 +1924,21 @@
1924
"default-mobile.handlebars->9->62",
1925
"default-mobile.handlebars->9->64",
1926
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0",
1925
- "default.handlebars->25->1090",
1926
- "default.handlebars->25->1092",
1927
+ "default.handlebars->25->1093",
1928
+ "default.handlebars->25->1095",
1929
"default.handlebars->25->448",
1930
"default.handlebars->25->450"
1931
]
1932
},
1933
{
1934
"en": "Account Verification",
1933
- "nl": "Account verificatie",
1935
+ "es": "Verificación de la cuenta",
1936
+ "fr": "Vérification de compte",
1937
+ "hi": "खाता सत्यापन",
1938
"ja": "アカウントの確認",
1939
+ "ko": "계정 확인",
1940
+ "nl": "Account verificatie",
1941
+ "zh-chs": "帐户验证",
1942
"xloc": [
1943
"message.handlebars->3->1"
1944
]
@@ -1959,13 +1966,15 @@
1966
"en": "Account is locked",
1967
"es": "La cuenta esta bloqueada",
1968
"fr": "Le compte est verrouillé",
1969
+ "hi": "खाता बंद है",
1970
"ja": "アカウントがロックされています",
1971
+ "ko": "계정이 잠겨 있습니다",
1972
"nl": "Account is uitgeschakeld",
1973
"ru": "Аккаунт заблокирован",
1974
"zh-chs": "帐户已被锁定",
1975
"xloc": [
1967
- "default.handlebars->25->1407",
1968
- "default.handlebars->25->1531"
1976
+ "default.handlebars->25->1410",
1977
+ "default.handlebars->25->1534"
1978
]
1979
},
1980
{
@@ -2053,7 +2062,7 @@
2062
"ru": "Действиe",
2063
"zh-chs": "行動",
2064
"xloc": [
2056
- "default.handlebars->25->830",
2065
+ "default.handlebars->25->833",
2066
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2067
]
2068
},
@@ -2149,7 +2158,7 @@
2158
"default-mobile.handlebars->9->189",
2159
"default.handlebars->25->469",
2160
"default.handlebars->25->471",
2152
- "default.handlebars->25->788"
2161
+ "default.handlebars->25->791"
2162
]
2163
},
2164
{
@@ -2166,8 +2175,8 @@
2175
"ru": "Активация",
2176
"zh-chs": "激活",
2177
"xloc": [
2169
- "default.handlebars->25->1165",
2170
- "default.handlebars->25->1167",
2178
+ "default.handlebars->25->1168",
2179
+ "default.handlebars->25->1170",
2180
"default.handlebars->25->223",
2181
"default.handlebars->25->225"
2182
]
@@ -2203,7 +2212,7 @@
2212
"ru": "Добавить агент",
2213
"zh-chs": "添加代理",
2214
"xloc": [
2206
- "default.handlebars->25->1169",
2215
+ "default.handlebars->25->1172",
2216
"default.handlebars->25->227"
2217
]
2218
},
@@ -2238,8 +2247,8 @@
2247
"ru": "Добавить устройство",
2248
"zh-chs": "添加設備",
2249
"xloc": [
2241
- "default.handlebars->25->1508",
2242
- "default.handlebars->25->1621"
2250
+ "default.handlebars->25->1511",
2251
+ "default.handlebars->25->1624"
2252
]
2253
},
2254
{
@@ -2273,19 +2282,24 @@
2282
"ru": "Добавить группу устройств",
2283
"zh-chs": "添加設備組",
2284
"xloc": [
2276
- "default.handlebars->25->1259",
2277
- "default.handlebars->25->1502",
2278
- "default.handlebars->25->1609",
2285
+ "default.handlebars->25->1262",
2286
+ "default.handlebars->25->1505",
2287
+ "default.handlebars->25->1612",
2288
"default.handlebars->25->198"
2289
]
2290
},
2291
{
2292
"de": "Gerätegruppe-Berechtigungen hinzufügen",
2293
"en": "Add Device Group Permissions",
2294
+ "es": "Agregar permisos de grupo de dispositivos",
2295
+ "fr": "Ajouter des autorisations de groupe de périphériques",
2296
+ "hi": "डिवाइस समूह अनुमतियाँ जोड़ें",
2297
"ja": "デバイスグループ権限を追加",
2298
+ "ko": "장치 그룹 권한 추가",
2299
"nl": "Machtigingen voor apparaatgroep toevoegen",
2300
+ "zh-chs": "添加设备组权限",
2301
"xloc": [
2288
- "default.handlebars->25->1256"
2302
+ "default.handlebars->25->1259"
2303
]
2304
},
2305
{
@@ -2294,13 +2308,15 @@
2308
"en": "Add Device Permissions",
2309
"es": "Agregar permisos de dispositivo",
2310
"fr": "Ajouter des autorisations de périphérique",
2311
+ "hi": "डिवाइस अनुमतियाँ जोड़ें",
2312
"ja": "デバイス権限を追加",
2313
+ "ko": "장치 권한 추가",
2314
"nl": "Apparaatrechten toevoegen",
2315
"ru": "Добавить разрешения для устройства",
2316
"zh-chs": "添加设备权限",
2317
"xloc": [
2302
- "default.handlebars->25->1261",
2303
- "default.handlebars->25->1263"
2318
+ "default.handlebars->25->1264",
2319
+ "default.handlebars->25->1266"
2320
]
2321
},
2322
{
@@ -2385,7 +2401,7 @@
2401
"ru": "Добавить участие",
2402
"zh-chs": "添加會員",
2403
"xloc": [
2388
- "default.handlebars->25->1639"
2404
+ "default.handlebars->25->1642"
2405
]
2406
},
2407
{
@@ -2423,8 +2439,8 @@
2439
"default.handlebars->25->135",
2440
"default.handlebars->25->138",
2441
"default.handlebars->25->139",
2426
- "default.handlebars->25->858",
2427
- "default.handlebars->25->859"
2442
+ "default.handlebars->25->861",
2443
+ "default.handlebars->25->862"
2444
]
2445
},
2446
{
@@ -2451,12 +2467,14 @@
2467
"en": "Add User Device Permissions",
2468
"es": "Agregar permisos del usuario del dispositivo",
2469
"fr": "Ajouter des autorisations de périphérique utilisateur",
2470
+ "hi": "उपयोगकर्ता डिवाइस अनुमतियाँ जोड़ें",
2471
"ja": "ユーザーデバイスの権限を追加する",
2472
+ "ko": "사용자 장치 권한 추가",
2473
"nl": "Gebruikersmachtigingen voor apparaat toevoegen",
2474
"ru": "Добавить разрешения для пользовательских устройств",
2475
"zh-chs": "添加用户设备权限",
2476
"xloc": [
2459
- "default.handlebars->25->1266"
2477
+ "default.handlebars->25->1269"
2478
]
2479
},
2480
{
@@ -2473,26 +2491,36 @@
2491
"ru": "Добавить группу пользователей",
2492
"zh-chs": "添加用戶組",
2493
"xloc": [
2476
- "default.handlebars->25->1159",
2477
- "default.handlebars->25->1258",
2478
- "default.handlebars->25->1615",
2494
+ "default.handlebars->25->1162",
2495
+ "default.handlebars->25->1261",
2496
+ "default.handlebars->25->1618",
2497
"default.handlebars->25->557"
2498
]
2499
},
2500
{
2501
"de": "Benutzergruppen-Geräteberechtigungen hinzufügen",
2502
"en": "Add User Group Device Permissions",
2503
+ "es": "Agregar permisos de dispositivo de grupo de usuarios",
2504
+ "fr": "Ajouter des autorisations de périphérique de groupe d'utilisateurs",
2505
+ "hi": "उपयोगकर्ता समूह डिवाइस अनुमतियाँ जोड़ें",
2506
"ja": "ユーザーグループデバイスのアクセス許可を追加する",
2507
+ "ko": "사용자 그룹 장치 권한 추가",
2508
"nl": "Gebruikersmachtigingen voor apparaatgroep toevoegen",
2509
+ "zh-chs": "添加用户组设备权限",
2510
"xloc": [
2488
- "default.handlebars->25->1268"
2511
+ "default.handlebars->25->1271"
2512
]
2513
},
2514
{
2515
"de": "Benutzer zu Gerätegruppe hinzufügen",
2516
"en": "Add User to Device Group",
2517
+ "es": "Agregar usuario al grupo de dispositivos",
2518
+ "fr": "Ajouter un utilisateur au groupe d'appareils",
2519
+ "hi": "उपकरण समूह में उपयोगकर्ता जोड़ें",
2520
"ja": "ユーザーをデバイスグループに追加",
2521
+ "ko": "장치 그룹에 사용자 추가",
2522
"nl": "Gebruiker toevoegen aan apparaatgroep",
2523
+ "zh-chs": "将用户添加到设备组",
2524
"xloc": [
2525
"default-mobile.handlebars->9->314"
2526
]
@@ -2525,8 +2553,8 @@
2553
"ru": "Добавить пользователей",
2554
"zh-chs": "添加用戶",
2555
"xloc": [
2528
- "default.handlebars->25->1158",
2529
- "default.handlebars->25->1497"
2556
+ "default.handlebars->25->1161",
2557
+ "default.handlebars->25->1500"
2558
]
2559
},
2560
{
@@ -2543,7 +2571,7 @@
2571
"ru": "Добавить пользователей в группу устройств",
2572
"zh-chs": "將用戶添加到設備組",
2573
"xloc": [
2546
- "default.handlebars->25->1255"
2574
+ "default.handlebars->25->1258"
2575
]
2576
},
2577
{
@@ -2560,7 +2588,7 @@
2588
"ru": "Добавить пользователей в группу",
2589
"zh-chs": "將用戶添加到用戶組",
2590
"xloc": [
2563
- "default.handlebars->25->1530"
2591
+ "default.handlebars->25->1533"
2592
]
2593
},
2594
{
@@ -2611,7 +2639,7 @@
2639
"ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.",
2640
"zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。",
2641
"xloc": [
2614
- "default.handlebars->25->1160",
2642
+ "default.handlebars->25->1163",
2643
"default.handlebars->25->216"
2644
]
2645
},
@@ -2629,7 +2657,7 @@
2657
"ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.",
2658
"zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。",
2659
"xloc": [
2632
- "default.handlebars->25->1162",
2660
+ "default.handlebars->25->1165",
2661
"default.handlebars->25->218"
2662
]
2663
},
@@ -2653,10 +2681,15 @@
2681
{
2682
"de": "Füge einen neuen Computer durch Installation des Mesh-Agenten zu dieser Gerätegruppe hinzu.",
2683
"en": "Add a new computer to this device group by installing the mesh agent.",
2684
+ "es": "Agregue una nueva computadora a este grupo de dispositivos instalando el agente de malla.",
2685
+ "fr": "Ajoutez un nouvel ordinateur à ce groupe de périphériques en installant l'agent de maillage.",
2686
+ "hi": "मेष एजेंट को स्थापित करके इस उपकरण समूह में एक नया कंप्यूटर जोड़ें।",
2687
"ja": "メッシュエージェントをインストールして、このデバイスグループに新しいコンピューターを追加します。",
2688
+ "ko": "메쉬 에이전트를 설치하여이 장치 그룹에 새 컴퓨터를 추가하십시오.",
2689
"nl": "Voeg een nieuwe computer toe aan deze apparaatgroep door de mesh-agent te installeren.",
2690
+ "zh-chs": "通过安装网状代理,将新计算机添加到该设备组。",
2691
"xloc": [
2659
- "default.handlebars->25->1168",
2692
+ "default.handlebars->25->1171",
2693
"default.handlebars->25->226"
2694
]
2695
},
@@ -2708,7 +2741,7 @@
2741
"ru": "Режим управления администратора (ACM)",
2742
"zh-chs": "管理員控制模式(ACM)",
2743
"xloc": [
2711
- "default.handlebars->25->790"
2744
+ "default.handlebars->25->793"
2745
]
2746
},
2747
{
@@ -2725,7 +2758,7 @@
2758
"ru": "Учетные данные администратора",
2759
"zh-chs": "管理員憑證",
2760
"xloc": [
2728
- "default.handlebars->25->796"
2761
+ "default.handlebars->25->799"
2762
]
2763
},
2764
{
@@ -2760,7 +2793,7 @@
2793
"ru": "Области администратора",
2794
"zh-chs": "管理領域",
2795
"xloc": [
2763
- "default.handlebars->25->1559"
2796
+ "default.handlebars->25->1562"
2797
]
2798
},
2799
{
@@ -2795,7 +2828,7 @@
2828
"ru": "Административные области",
2829
"zh-chs": "行政領域",
2830
"xloc": [
2798
- "default.handlebars->25->1455"
2831
+ "default.handlebars->25->1458"
2832
]
2833
},
2834
{
@@ -2812,7 +2845,7 @@
2845
"ru": "Администратор",
2846
"zh-chs": "管理員",
2847
"xloc": [
2815
- "default.handlebars->25->1399"
2848
+ "default.handlebars->25->1402"
2849
]
2850
},
2851
{
@@ -2829,7 +2862,7 @@
2862
"ru": "Африканский",
2863
"zh-chs": "南非語",
2864
"xloc": [
2832
- "default.handlebars->25->861"
2865
+ "default.handlebars->25->864"
2866
]
2867
},
2868
{
@@ -2849,8 +2882,8 @@
2882
"default-mobile.handlebars->9->131",
2883
"default-mobile.handlebars->9->184",
2884
"default-mobile.handlebars->9->200",
2852
- "default.handlebars->25->1320",
2853
- "default.handlebars->25->1328",
2885
+ "default.handlebars->25->1323",
2886
+ "default.handlebars->25->1331",
2887
"default.handlebars->25->177",
2888
"default.handlebars->25->370",
2889
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -2870,8 +2903,8 @@
2903
"ru": "Агент + Intel AMT",
2904
"zh-chs": "代理+英特爾AMT",
2905
"xloc": [
2873
- "default.handlebars->25->1322",
2874
- "default.handlebars->25->1330"
2906
+ "default.handlebars->25->1325",
2907
+ "default.handlebars->25->1333"
2908
]
2909
},
2910
{
@@ -2906,7 +2939,7 @@
2939
"zh-chs": "代理控制台",
2940
"xloc": [
2941
"default-mobile.handlebars->9->320",
2909
- "default.handlebars->25->1276"
2942
+ "default.handlebars->25->1279"
2943
]
2944
},
2945
{
@@ -2923,7 +2956,7 @@
2956
"ru": "Счетчик ошибок агента",
2957
"zh-chs": "座席錯誤計數器",
2958
"xloc": [
2926
- "default.handlebars->25->1653"
2959
+ "default.handlebars->25->1656"
2960
]
2961
},
2962
{
@@ -2992,7 +3025,7 @@
3025
"ru": "Сессии агентов",
3026
"zh-chs": "座席會議",
3027
"xloc": [
2995
- "default.handlebars->25->1669"
3028
+ "default.handlebars->25->1672"
3029
]
3030
},
3031
{
@@ -3027,7 +3060,7 @@
3060
"ru": "Типы агента",
3061
"zh-chs": "代理類型",
3062
"xloc": [
3030
- "default.handlebars->25->1326",
3063
+ "default.handlebars->25->1329",
3064
"default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
3065
]
3066
},
@@ -3081,7 +3114,7 @@
3114
"ru": "Агент оффлайн",
3115
"zh-chs": "代理離線",
3116
"xloc": [
3084
- "default.handlebars->25->823"
3117
+ "default.handlebars->25->826"
3118
]
3119
},
3120
{
@@ -3098,7 +3131,7 @@
3131
"ru": "Агент онлайн",
3132
"zh-chs": "代理在線",
3133
"xloc": [
3101
- "default.handlebars->25->822"
3134
+ "default.handlebars->25->825"
3135
]
3136
},
3137
{
@@ -3115,7 +3148,7 @@
3148
"ru": "Агенты",
3149
"zh-chs": "代理商",
3150
"xloc": [
3118
- "default.handlebars->25->1682"
3151
+ "default.handlebars->25->1685"
3152
]
3153
},
3154
{
@@ -3132,7 +3165,7 @@
3165
"ru": "Албанский",
3166
"zh-chs": "阿爾巴尼亞語",
3167
"xloc": [
3135
- "default.handlebars->25->862"
3168
+ "default.handlebars->25->865"
3169
]
3170
},
3171
{
@@ -3185,9 +3218,9 @@
3218
"ru": "Фокусирование всех",
3219
"zh-chs": "全部聚焦",
3220
"xloc": [
3188
- "default.handlebars->25->678",
3189
- "default.handlebars->25->680",
3190
- "default.handlebars->25->681"
3221
+ "default.handlebars->25->681",
3222
+ "default.handlebars->25->683",
3223
+ "default.handlebars->25->684"
3224
]
3225
},
3226
{
@@ -3204,8 +3237,8 @@
3237
"ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.",
3238
"zh-chs": "允許用戶管理此設備組和該組中的設備。",
3239
"xloc": [
3207
- "default.handlebars->25->1225",
3208
- "default.handlebars->25->1527"
3240
+ "default.handlebars->25->1228",
3241
+ "default.handlebars->25->1530"
3242
]
3243
},
3244
{
@@ -3214,12 +3247,14 @@
3247
"en": "Allow users to manage this device.",
3248
"es": "Permitir al usuario administrar este dispositivo",
3249
"fr": "Autorisez les utilisateurs à gérer cet appareil.",
3250
+ "hi": "उपयोगकर्ताओं को इस उपकरण को प्रबंधित करने की अनुमति दें।",
3251
"ja": "ユーザーにこのデバイスの管理を許可します。",
3252
+ "ko": "사용자가이 기기를 관리 할 수 있도록합니다.",
3253
"nl": "Sta gebruikers toe om dit apparaat te beheren.",
3254
"ru": "Разрешить пользователям управлять этим устройством.",
3255
"zh-chs": "允许用户管理此设备。",
3256
"xloc": [
3222
- "default.handlebars->25->1226"
3257
+ "default.handlebars->25->1229"
3258
]
3259
},
3260
{
@@ -3272,7 +3307,7 @@
3307
"ru": "Поменять (F10 = ESC+0)",
3308
"zh-chs": "備用(F10 = ESC + 0)",
3309
"xloc": [
3275
- "default.handlebars->25->713"
3310
+ "default.handlebars->25->716"
3311
]
3312
},
3313
{
@@ -3306,8 +3341,8 @@
3341
"ru": "Всегда уведомлять",
3342
"zh-chs": "始終通知",
3343
"xloc": [
3309
- "default.handlebars->25->1139",
3310
- "default.handlebars->25->1568",
3344
+ "default.handlebars->25->1142",
3345
+ "default.handlebars->25->1571",
3346
"default.handlebars->25->505"
3347
]
3348
},
@@ -3325,8 +3360,8 @@
3360
"ru": "Всегда запрашивать",
3361
"zh-chs": "總是提示",
3362
"xloc": [
3328
- "default.handlebars->25->1140",
3329
- "default.handlebars->25->1569",
3363
+ "default.handlebars->25->1143",
3364
+ "default.handlebars->25->1572",
3365
"default.handlebars->25->506"
3366
]
3367
},
@@ -3336,7 +3371,9 @@
3371
"en": "An account was created for you on server",
3372
"es": "Una cuenta ha sido creada en su servidor",
3373
"fr": "Un compte a été créé pour vous sur le serveur",
3374
+ "hi": "सर्वर पर आपके लिए एक खाता बनाया गया था",
3375
"ja": "サーバー上にアカウントが作成されました",
3376
+ "ko": "서버에서 계정이 생성되었습니다",
3377
"nl": "Er is een account voor je aangemaakt op de server",
3378
"ru": "Учетная запись была создана для вас на сервере",
3379
"zh-chs": "在服务器上为您创建了一个帐户",
@@ -3348,8 +3385,12 @@
3385
"de": "Auf dem Server [[[SERVERNAME]]] ([[[SERVERURL]]]/) wurde ein Konto für Sie erstellt, Sie können ab sofort mit dem Benutzernamen \"[[[ACCOUNTNAME]]]\" und dem Passwort \"[[[PASSWORD]]]\" darauf zugreifen.",
3386
"en": "An account was created for you on server [[[SERVERNAME]]] ([[[SERVERURL]]]/), you can access it now with username \"[[[ACCOUNTNAME]]]\" and password \"[[[PASSWORD]]]\".",
3387
"es": "Una cuenta ha sido creada en su servidor [[[SERVERNAME]]] ([[[SERVERURL]]]/), ahora puede acceder con el usuario \"[[[ACCOUNTNAME]]]\" y la contraseña \"[[[PASSWORD]]]\".",
3388
+ "fr": "Un compte a été créé pour vous sur le serveur [[[[SERVERNAME]]] ([[[SERVERURL]]] /), vous pouvez y accéder maintenant avec le nom d'utilisateur \"[[[ACCOUNTNAME]]]\" et le mot de passe \"[[[MOT DE PASSE] ]] \".",
3389
+ "hi": "सर्वर [[[SERVERNAME]]] ([[[SERVERURL]]] /) पर आपके लिए एक खाता बनाया गया था, आप इसे अब उपयोगकर्ता नाम \"[[[ACCOUNTNAME]]]]\" और पासवर्ड \"[[PASSWORD] के साथ एक्सेस कर सकते हैं। ]] \"।",
3390
"ja": "サーバー[[[SERVERNAME]]]([[[SERVERURL]]] /)にアカウントが作成されました。ユーザー名 \"[[[ACCOUNTNAME]]]\"とパスワード \"[[[PASSWORD] ]] \"。",
3391
+ "ko": "서버 [[[SERVERNAME]]] ([[[SERVERURL]]] /)에서 계정이 생성되었습니다. 사용자 이름 \"[[[계정 이름]]]\"및 비밀번호 \"[[[비밀번호] ]] \".",
3392
"nl": "Er is een account jouw aangemaakt op de server [[[SERVERNAME]]] ([[[SERVERURL]]]/), Je kan inloggen met de gebruikersnaam \"[[[ACCOUNTNAME]]]\" en wachtwoord \"[[[PASSWORD]]]\".",
3393
+ "zh-chs": "已在服务器[[[SERVERNAME]]]([[[SERVERURL]]] /)上为您创建了一个帐户,您现在可以使用用户名“ [[[ACCOUNTNAME]]]”和密码“ [[[PASSWORD] ]]”。",
3394
"xloc": [
3395
"account-invite.txt"
3396
]
@@ -3360,7 +3401,9 @@
3401
"en": "An account was created for you on server [[[SERVERNAME]]] ([[[SERVERURL]]]/), you can access it now with username \\\"[[[ACCOUNTNAME]]]\\\" en wachtwoord \\\"[[[PASSWORD]]]\\\".",
3402
"es": "Una cuenta ha sido creada en su servidor [[[SERVERNAME]]] ([[[SERVERURL]]]/), ahora puede acceder con el usuario \\\"[[[ACCOUNTNAME]]]\\\" y la contraseña \\\"[[[PASSWORD]]]\\\".",
3403
"fr": "Un compte a été créé pour vous sur le serveur [[[SERVERNAME]]] ([[[SERVERURL]]]/), vous pouvez y accéder maintenant avec le nom d'utilisateur \\\"[[[ACCOUNTNAME]]]\\\" et le mot de passe \\\"[[[PASSWORD]]]\\\".",
3404
+ "hi": "सर्वर [[[SERVERNAME]]] ([[[SERVERURL]]]] पर आपके लिए एक खाता बनाया गया था, अब आप इसे उपयोगकर्ता नाम \\\"[[ACCOUNTNAME]]] \\\" en wachchwoord \\\"[[के साथ एक्सेस कर सकते हैं। [कुंजिका]]]\\\"।",
3405
"ja": "サーバー[[[SERVERNAME]]]([[[SERVERURL]]]/)にアカウントが作成されました。ユーザー名 \\\"[[[ACCOUNTNAME]]]\\\" とパスワード \\\"[[[PASSWORD]]]\\\"。",
3406
+ "ko": "[[[SERVERNAME]]] ([[[SERVERURL]]] /) 서버에서 계정이 생성되었습니다. 사용자 이름 \\\"[[[계정 이름]]] \\\"ko wachtwoord \\\"[[ [암호]]]\\\".",
3407
"nl": "Er is een account jouw aangemaakt op de server [[[SERVERNAME]]] ([[[SERVERURL]]]/), Je kan inloggen met de gebruikersnaam \\\"[[[ACCOUNTNAME]]]\\\" and password \\\"[[[PASSWORD]]]\\\".",
3408
"ru": "Для вас была создана учетная запись на сервере [[[SERVERNAME]]] ([[[SERVERURL]]]/), теперь вы можете получить к ней доступ с помощью имени пользователя \\\"[[[ACCOUNTNAME]]]\\\" и пароля \\\"[[[PASSWORD]]]\\\".",
3409
"zh-chs": "已在服务器[[[SERVERNAME]]]([[[SERVERURL]]]/ 上为您创建了一个帐户,您现在可以使用用户名\\“ [[[ACCOUNTNAME]]] 和密码 \\\"[[[PASSWORD]]]\\\"。"
@@ -3518,7 +3561,7 @@
3561
"ru": "Арабский (Алжир)",
3562
"zh-chs": "阿拉伯文(阿爾及利亞)",
3563
"xloc": [
3521
- "default.handlebars->25->864"
3564
+ "default.handlebars->25->867"
3565
]
3566
},
3567
{
@@ -3535,7 +3578,7 @@
3578
"ru": "Арабский (Бахрейн)",
3579
"zh-chs": "阿拉伯文(巴林)",
3580
"xloc": [
3538
- "default.handlebars->25->865"
3581
+ "default.handlebars->25->868"
3582
]
3583
},
3584
{
@@ -3552,7 +3595,7 @@
3595
"ru": "Арабский (Египет)",
3596
"zh-chs": "阿拉伯文(埃及)",
3597
"xloc": [
3555
- "default.handlebars->25->866"
3598
+ "default.handlebars->25->869"
3599
]
3600
},
3601
{
@@ -3569,7 +3612,7 @@
3612
"ru": "Арабский (Ирак)",
3613
"zh-chs": "阿拉伯文(伊拉克)",
3614
"xloc": [
3572
- "default.handlebars->25->867"
3615
+ "default.handlebars->25->870"
3616
]
3617
},
3618
{
@@ -3586,7 +3629,7 @@
3629
"ru": "Арабский (Иордания)",
3630
"zh-chs": "阿拉伯語(約旦)",
3631
"xloc": [
3589
- "default.handlebars->25->868"
3632
+ "default.handlebars->25->871"
3633
]
3634
},
3635
{
@@ -3603,7 +3646,7 @@
3646
"ru": "Арабский (Кувейт)",
3647
"zh-chs": "阿拉伯文(科威特)",
3648
"xloc": [
3606
- "default.handlebars->25->869"
3649
+ "default.handlebars->25->872"
3650
]
3651
},
3652
{
@@ -3620,7 +3663,7 @@
3663
"ru": "Арабский (Ливан)",
3664
"zh-chs": "阿拉伯語(黎巴嫩)",
3665
"xloc": [
3623
- "default.handlebars->25->870"
3666
+ "default.handlebars->25->873"
3667
]
3668
},
3669
{
@@ -3637,7 +3680,7 @@
3680
"ru": "Арабский (Ливия)",
3681
"zh-chs": "阿拉伯文(利比亞)",
3682
"xloc": [
3640
- "default.handlebars->25->871"
3683
+ "default.handlebars->25->874"
3684
]
3685
},
3686
{
@@ -3654,7 +3697,7 @@
3697
"ru": "Арабский (Марокко)",
3698
"zh-chs": "阿拉伯文(摩洛哥)",
3699
"xloc": [
3657
- "default.handlebars->25->872"
3700
+ "default.handlebars->25->875"
3701
]
3702
},
3703
{
@@ -3671,7 +3714,7 @@
3714
"ru": "Арабский (Оман)",
3715
"zh-chs": "阿拉伯文(阿曼)",
3716
"xloc": [
3674
- "default.handlebars->25->873"
3717
+ "default.handlebars->25->876"
3718
]
3719
},
3720
{
@@ -3688,7 +3731,7 @@
3731
"ru": "Арабский (Катар)",
3732
"zh-chs": "阿拉伯語(卡塔爾)",
3733
"xloc": [
3691
- "default.handlebars->25->874"
3734
+ "default.handlebars->25->877"
3735
]
3736
},
3737
{
@@ -3705,7 +3748,7 @@
3748
"ru": "Арабский (Саудовская Аравия)",
3749
"zh-chs": "阿拉伯語(沙特阿拉伯)",
3750
"xloc": [
3708
- "default.handlebars->25->875"
3751
+ "default.handlebars->25->878"
3752
]
3753
},
3754
{
@@ -3722,7 +3765,7 @@
3765
"ru": "Арабский (стандартный)",
3766
"zh-chs": "阿拉伯語(標準)",
3767
"xloc": [
3725
- "default.handlebars->25->863"
3768
+ "default.handlebars->25->866"
3769
]
3770
},
3771
{
@@ -3739,7 +3782,7 @@
3782
"ru": "Арабский (Сирия)",
3783
"zh-chs": "阿拉伯語(敘利亞)",
3784
"xloc": [
3742
- "default.handlebars->25->876"
3785
+ "default.handlebars->25->879"
3786
]
3787
},
3788
{
@@ -3756,7 +3799,7 @@
3799
"ru": "Арабский (Тунис)",
3800
"zh-chs": "阿拉伯文(突尼斯)",
3801
"xloc": [
3759
- "default.handlebars->25->877"
3802
+ "default.handlebars->25->880"
3803
]
3804
},
3805
{
@@ -3773,7 +3816,7 @@
3816
"ru": "Арабский (О.А.Э.)",
3817
"zh-chs": "阿拉伯文(阿聯酋)",
3818
"xloc": [
3776
- "default.handlebars->25->878"
3819
+ "default.handlebars->25->881"
3820
]
3821
},
3822
{
@@ -3790,7 +3833,7 @@
3833
"ru": "Арабский (Йемен)",
3834
"zh-chs": "阿拉伯文(也門)",
3835
"xloc": [
3793
- "default.handlebars->25->879"
3836
+ "default.handlebars->25->882"
3837
]
3838
},
3839
{
@@ -3807,7 +3850,7 @@
3850
"ru": "Арагонский",
3851
"zh-chs": "阿拉貢人",
3852
"xloc": [
3810
- "default.handlebars->25->880"
3853
+ "default.handlebars->25->883"
3854
]
3855
},
3856
{
@@ -3824,7 +3867,7 @@
3867
"ru": "Архитектура",
3868
"zh-chs": "建築",
3869
"xloc": [
3827
- "default.handlebars->25->764"
3870
+ "default.handlebars->25->767"
3871
]
3872
},
3873
{
@@ -3859,7 +3902,7 @@
3902
"zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。",
3903
"xloc": [
3904
"default-mobile.handlebars->9->291",
3862
- "default.handlebars->25->1203"
3905
+ "default.handlebars->25->1206"
3906
]
3907
},
3908
{
@@ -3927,7 +3970,7 @@
3970
"ru": "Вы уверенны, что {0} плагин: {1}",
3971
"zh-chs": "您確定要{0}插件嗎:{1}",
3972
"xloc": [
3930
- "default.handlebars->25->1722"
3973
+ "default.handlebars->25->1725"
3974
]
3975
},
3976
{
@@ -3944,14 +3987,19 @@
3987
"ru": "Армянский",
3988
"zh-chs": "亞美尼亞人",
3989
"xloc": [
3947
- "default.handlebars->25->881"
3990
+ "default.handlebars->25->884"
3991
]
3992
},
3993
{
3994
"de": "Einwilligung anfordern",
3995
"en": "Ask Consent",
3996
+ "es": "Pedir consentimiento",
3997
+ "fr": "Demander le consentement",
3998
+ "hi": "सहमति से पूछें",
3999
"ja": "同意を求める",
4000
+ "ko": "동의 요청",
4001
"nl": "Vraag toestemming",
4002
+ "zh-chs": "询问同意",
4003
"xloc": [
4004
"default.handlebars->deskConnectContextMenu->cxdeskuc->0"
4005
]
@@ -3959,8 +4007,13 @@
4007
{
4008
"de": "Einwilligung anfordern + Balken",
4009
"en": "Ask Consent + Bar",
4010
+ "es": "Pedir consentimiento + barra",
4011
+ "fr": "Demander le consentement + le bar",
4012
+ "hi": "सहमति + बार पूछें",
4013
"ja": "同意を求める+バー",
4014
+ "ko": "동의 + 바 요청",
4015
"nl": "Vraag toestemming + informatiebalk",
4016
+ "zh-chs": "询问同意+酒吧",
4017
"xloc": [
4018
"default.handlebars->deskConnectContextMenu->cxdeskuc->0"
4019
]
@@ -3979,7 +4032,7 @@
4032
"ru": "Ассамский",
4033
"zh-chs": "阿薩姆語",
4034
"xloc": [
3982
- "default.handlebars->25->882"
4035
+ "default.handlebars->25->885"
4036
]
4037
},
4038
{
@@ -3996,7 +4049,7 @@
4049
"ru": "Астурии",
4050
"zh-chs": "阿斯圖里亞斯人",
4051
"xloc": [
3999
- "default.handlebars->25->883"
4052
+ "default.handlebars->25->886"
4053
]
4054
},
4055
{
@@ -4013,7 +4066,7 @@
4066
"ru": "Приложение аутентификации",
4067
"zh-chs": "身份驗證應用",
4068
"xloc": [
4016
- "default.handlebars->25->1572"
4069
+ "default.handlebars->25->1575"
4070
]
4071
},
4072
{
@@ -4036,8 +4089,8 @@
4089
"default-mobile.handlebars->9->42",
4090
"default.handlebars->25->109",
4091
"default.handlebars->25->114",
4039
- "default.handlebars->25->847",
4040
- "default.handlebars->25->849"
4092
+ "default.handlebars->25->850",
4093
+ "default.handlebars->25->852"
4094
]
4095
},
4096
{
@@ -4105,7 +4158,7 @@
4158
"ru": "Автоудаление",
4159
"zh-chs": "自動刪除",
4160
"xloc": [
4108
- "default.handlebars->25->1127"
4161
+ "default.handlebars->25->1130"
4162
]
4163
},
4164
{
@@ -4159,7 +4212,7 @@
4212
"ru": "Азербайджанский",
4213
"zh-chs": "阿塞拜疆",
4214
"xloc": [
4162
- "default.handlebars->25->884"
4215
+ "default.handlebars->25->887"
4216
]
4217
},
4218
{
@@ -4176,7 +4229,7 @@
4229
"ru": "BIOS",
4230
"zh-chs": "的BIOS",
4231
"xloc": [
4179
- "default.handlebars->25->802"
4232
+ "default.handlebars->25->805"
4233
]
4234
},
4235
{
@@ -4273,8 +4326,8 @@
4326
"ru": "Фоновый и интерактивный",
4327
"zh-chs": "背景與互動",
4328
"xloc": [
4276
- "default.handlebars->25->1303",
4277
- "default.handlebars->25->1310",
4329
+ "default.handlebars->25->1306",
4330
+ "default.handlebars->25->1313",
4331
"default.handlebars->25->295"
4332
]
4333
},
@@ -4292,8 +4345,8 @@
4345
"ru": "Только фоновый",
4346
"zh-chs": "僅背景",
4347
"xloc": [
4295
- "default.handlebars->25->1304",
4296
- "default.handlebars->25->1311",
4348
+ "default.handlebars->25->1307",
4349
+ "default.handlebars->25->1314",
4350
"default.handlebars->25->296",
4351
"default.handlebars->25->318"
4352
]
@@ -4329,7 +4382,7 @@
4382
"ru": "Резервные коды",
4383
"zh-chs": "備用碼",
4384
"xloc": [
4332
- "default.handlebars->25->1574"
4385
+ "default.handlebars->25->1577"
4386
]
4387
},
4388
{
@@ -4346,7 +4399,7 @@
4399
"ru": "Плохой ключ",
4400
"zh-chs": "錯誤的簽名",
4401
"xloc": [
4349
- "default.handlebars->25->1660"
4402
+ "default.handlebars->25->1663"
4403
]
4404
},
4405
{
@@ -4363,7 +4416,7 @@
4416
"ru": "Плохой веб-сертификат",
4417
"zh-chs": "錯誤的網絡證書",
4418
"xloc": [
4366
- "default.handlebars->25->1659"
4419
+ "default.handlebars->25->1662"
4420
]
4421
},
4422
{
@@ -4380,7 +4433,7 @@
4433
"ru": "Баскский",
4434
"zh-chs": "巴斯克",
4435
"xloc": [
4383
- "default.handlebars->25->885"
4436
+ "default.handlebars->25->888"
4437
]
4438
},
4439
{
@@ -4414,7 +4467,7 @@
4467
"ru": "Белорусский",
4468
"zh-chs": "白俄羅斯語",
4469
"xloc": [
4417
- "default.handlebars->25->887"
4470
+ "default.handlebars->25->890"
4471
]
4472
},
4473
{
@@ -4431,7 +4484,7 @@
4484
"ru": "Бенгальский",
4485
"zh-chs": "孟加拉",
4486
"xloc": [
4434
- "default.handlebars->25->888"
4487
+ "default.handlebars->25->891"
4488
]
4489
},
4490
{
@@ -4440,7 +4493,9 @@
4493
"en": "Best regards,",
4494
"es": "Atentamente,",
4495
"fr": "Meilleures salutations,",
4496
+ "hi": "सादर,",
4497
"ja": "宜しくお願いします、",
4498
+ "ko": "친애하는,",
4499
"nl": "Vriendelijke groeten,",
4500
"ru": "С уважением,",
4501
"zh-chs": "最好的祝福,",
@@ -4465,7 +4520,7 @@
4520
"ru": "Боснийский",
4521
"zh-chs": "波斯尼亞人",
4522
"xloc": [
4468
- "default.handlebars->25->889"
4523
+ "default.handlebars->25->892"
4524
]
4525
},
4526
{
@@ -4482,7 +4537,7 @@
4537
"ru": "Бретонский",
4538
"zh-chs": "布列塔尼",
4539
"xloc": [
4485
- "default.handlebars->25->890"
4540
+ "default.handlebars->25->893"
4541
]
4542
},
4543
{
@@ -4499,7 +4554,7 @@
4554
"ru": "Отправить сообщение",
4555
"zh-chs": "廣播",
4556
"xloc": [
4502
- "default.handlebars->25->1495",
4557
+ "default.handlebars->25->1498",
4558
"default.handlebars->container->column_l->p4->3->1->0->3->1"
4559
]
4560
},
@@ -4517,7 +4572,7 @@
4572
"ru": "Отправить сообщение",
4573
"zh-chs": "廣播消息",
4574
"xloc": [
4520
- "default.handlebars->25->1440"
4575
+ "default.handlebars->25->1443"
4576
]
4577
},
4578
{
@@ -4534,7 +4589,7 @@
4589
"ru": "Отправить сообщение всем подключенным пользователям.",
4590
"zh-chs": "向所有連接的用戶廣播消息。",
4591
"xloc": [
4537
- "default.handlebars->25->1439"
4592
+ "default.handlebars->25->1442"
4593
]
4594
},
4595
{
@@ -4551,7 +4606,7 @@
4606
"ru": "Болгарский",
4607
"zh-chs": "保加利亞語",
4608
"xloc": [
4554
- "default.handlebars->25->886"
4609
+ "default.handlebars->25->889"
4610
]
4611
},
4612
{
@@ -4568,7 +4623,7 @@
4623
"ru": "Бирманский",
4624
"zh-chs": "緬甸人",
4625
"xloc": [
4571
- "default.handlebars->25->891"
4626
+ "default.handlebars->25->894"
4627
]
4628
},
4629
{
@@ -4604,8 +4659,8 @@
4659
"zh-chs": "CIRA",
4660
"xloc": [
4661
"default-mobile.handlebars->9->132",
4607
- "default.handlebars->25->1191",
4608
- "default.handlebars->25->1196",
4662
+ "default.handlebars->25->1194",
4663
+ "default.handlebars->25->1199",
4664
"default.handlebars->25->179",
4665
"default.handlebars->25->372"
4666
]
@@ -4624,7 +4679,7 @@
4679
"ru": "CIRA Сервер",
4680
"zh-chs": "CIRA服務器",
4681
"xloc": [
4627
- "default.handlebars->25->1710"
4682
+ "default.handlebars->25->1713"
4683
]
4684
},
4685
{
@@ -4641,7 +4696,7 @@
4696
"ru": "CIRA Сервер команды",
4697
"zh-chs": "CIRA服務器命令",
4698
"xloc": [
4644
- "default.handlebars->25->1711"
4699
+ "default.handlebars->25->1714"
4700
]
4701
},
4702
{
@@ -4649,6 +4704,7 @@
4704
"en": "CPU",
4705
"es": "CPU",
4706
"fr": "CPU",
4707
+ "hi": "सी पी यू",
4708
"ja": "CPU",
4709
"ko": "CPU",
4710
"nl": "CPU",
@@ -4656,7 +4712,7 @@
4712
"ru": "CPU",
4713
"zh-chs": "CPU",
4714
"xloc": [
4659
- "default.handlebars->25->808"
4715
+ "default.handlebars->25->811"
4716
]
4717
},
4718
{
@@ -4673,7 +4729,7 @@
4729
"ru": "Загрузка CPU",
4730
"zh-chs": "CPU負載",
4731
"xloc": [
4676
- "default.handlebars->25->1674"
4732
+ "default.handlebars->25->1677"
4733
]
4734
},
4735
{
@@ -4690,7 +4746,7 @@
4746
"ru": "Загрузка CPU за последние 15 минут",
4747
"zh-chs": "最近15分鐘的CPU負載",
4748
"xloc": [
4693
- "default.handlebars->25->1677"
4749
+ "default.handlebars->25->1680"
4750
]
4751
},
4752
{
@@ -4707,7 +4763,7 @@
4763
"ru": "Загрузка CPU за последние 5 минут",
4764
"zh-chs": "最近5分鐘的CPU負載",
4765
"xloc": [
4710
- "default.handlebars->25->1676"
4766
+ "default.handlebars->25->1679"
4767
]
4768
},
4769
{
@@ -4724,7 +4780,7 @@
4780
"ru": "Загрузка CPU за последнюю минуту",
4781
"zh-chs": "最後一分鐘的CPU負載",
4782
"xloc": [
4727
- "default.handlebars->25->1675"
4783
+ "default.handlebars->25->1678"
4784
]
4785
},
4786
{
@@ -4741,8 +4797,8 @@
4797
"ru": "CR+LF",
4798
"zh-chs": "CR +低頻",
4799
"xloc": [
4744
- "default.handlebars->25->706",
4745
- "default.handlebars->25->715",
4800
+ "default.handlebars->25->709",
4801
+ "default.handlebars->25->718",
4802
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
4803
]
4804
},
@@ -4760,8 +4816,8 @@
4816
"ru": "Формат CSV",
4817
"zh-chs": "CSV格式",
4818
"xloc": [
4763
- "default.handlebars->25->1374",
4764
- "default.handlebars->25->1431",
4819
+ "default.handlebars->25->1377",
4820
+ "default.handlebars->25->1434",
4821
"default.handlebars->25->399"
4822
]
4823
},
@@ -4779,7 +4835,7 @@
4835
"ru": "Ошибка вызова",
4836
"zh-chs": "通話錯誤",
4837
"xloc": [
4782
- "default.handlebars->25->1723"
4838
+ "default.handlebars->25->1726"
4839
]
4840
},
4841
{
@@ -4798,7 +4854,7 @@
4854
"xloc": [
4855
"default-mobile.handlebars->9->51",
4856
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
4801
- "default.handlebars->25->1111",
4857
+ "default.handlebars->25->1114",
4858
"default.handlebars->container->dialog->idx_dlgButtonBar",
4859
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
4860
"login.handlebars->dialog->idx_dlgButtonBar",
@@ -4808,11 +4864,16 @@
4864
},
4865
{
4866
"en": "Capacity",
4867
+ "es": "Capacidad",
4868
+ "fr": "Capacité",
4869
+ "hi": "क्षमता",
4870
"ja": "容量",
4871
+ "ko": "생산 능력",
4872
"nl": "Capaciteit",
4873
+ "zh-chs": "容量",
4874
"xloc": [
4814
- "default.handlebars->25->816",
4815
- "default.handlebars->25->818"
4875
+ "default.handlebars->25->819",
4876
+ "default.handlebars->25->821"
4877
]
4878
},
4879
{
@@ -4829,7 +4890,7 @@
4890
"ru": "Объем / Скорость",
4891
"zh-chs": "容量/速度",
4892
"xloc": [
4832
- "default.handlebars->25->811"
4893
+ "default.handlebars->25->814"
4894
]
4895
},
4896
{
@@ -4846,7 +4907,7 @@
4907
"ru": "Каталонский",
4908
"zh-chs": "加泰羅尼亞語",
4909
"xloc": [
4849
- "default.handlebars->25->892"
4910
+ "default.handlebars->25->895"
4911
]
4912
},
4913
{
@@ -4880,13 +4941,18 @@
4941
"ru": "Чаморро",
4942
"zh-chs": "查莫羅",
4943
"xloc": [
4883
- "default.handlebars->25->893"
4944
+ "default.handlebars->25->896"
4945
]
4946
},
4947
{
4948
"en": "Change Email Address",
4949
+ "es": "Cambiar dirección de correo electrónico",
4950
+ "fr": "Changer l'adresse email",
4951
+ "hi": "ईमेल पता बदलें",
4952
"ja": "メールアドレスを変更する",
4953
+ "ko": "이메일 주소 변경",
4954
"nl": "Verander e-mailadres",
4955
+ "zh-chs": "更改电子邮件地址",
4956
"xloc": [
4957
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->checkemailpanel->1->checkCheckOperations->1->2->1->1",
4958
"login.handlebars->container->column_l->centralTable->1->0->logincell->checkemailpanel->1->checkCheckOperations->1->2->1->1"
@@ -4906,7 +4972,7 @@
4972
"ru": "Смена email для {0}",
4973
"zh-chs": "更改{0}的電子郵件",
4974
"xloc": [
4909
- "default.handlebars->25->1598"
4975
+ "default.handlebars->25->1601"
4976
]
4977
},
4978
{
@@ -4943,8 +5009,8 @@
5009
"zh-chs": "更改密碼",
5010
"xloc": [
5011
"default-mobile.handlebars->9->59",
4946
- "default.handlebars->25->1087",
4947
- "default.handlebars->25->1587"
5012
+ "default.handlebars->25->1090",
5013
+ "default.handlebars->25->1590"
5014
]
5015
},
5016
{
@@ -4961,7 +5027,7 @@
5027
"ru": "Смена пароля для {0}",
5028
"zh-chs": "更改{0}的密碼",
5029
"xloc": [
4964
- "default.handlebars->25->1605"
5030
+ "default.handlebars->25->1608"
5031
]
5032
},
5033
{
@@ -5031,7 +5097,7 @@
5097
"ru": "Изменить пароль для этого пользователя",
5098
"zh-chs": "更改該用戶的密碼",
5099
"xloc": [
5034
- "default.handlebars->25->1586"
5100
+ "default.handlebars->25->1589"
5101
]
5102
},
5103
{
@@ -5065,7 +5131,7 @@
5131
"ru": "Измените адрес электронной почты вашей учетной записи здесь.",
5132
"zh-chs": "在此處更改您的帳戶電子郵件地址。",
5133
"xloc": [
5068
- "default.handlebars->25->1074"
5134
+ "default.handlebars->25->1077"
5135
]
5136
},
5137
{
@@ -5082,7 +5148,7 @@
5148
"ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.",
5149
"zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
5150
"xloc": [
5085
- "default.handlebars->25->1080"
5151
+ "default.handlebars->25->1083"
5152
]
5153
},
5154
{
@@ -5099,7 +5165,7 @@
5165
"ru": "Изменение языка потребует перезагрузить страницу.",
5166
"zh-chs": "更改語言將需要刷新頁面。",
5167
"xloc": [
5102
- "default.handlebars->25->1059"
5168
+ "default.handlebars->25->1062"
5169
]
5170
},
5171
{
@@ -5116,7 +5182,7 @@
5182
"ru": "Чат",
5183
"zh-chs": "聊天室",
5184
"xloc": [
5119
- "default.handlebars->25->1391",
5185
+ "default.handlebars->25->1394",
5186
"default.handlebars->25->577",
5187
"default.handlebars->25->596"
5188
]
@@ -5137,8 +5203,8 @@
5203
"xloc": [
5204
"default-mobile.handlebars->9->312",
5205
"default-mobile.handlebars->9->330",
5140
- "default.handlebars->25->1253",
5141
- "default.handlebars->25->1287"
5206
+ "default.handlebars->25->1256",
5207
+ "default.handlebars->25->1290"
5208
]
5209
},
5210
{
@@ -5155,7 +5221,7 @@
5221
"ru": "Чеченский",
5222
"zh-chs": "車臣",
5223
"xloc": [
5158
- "default.handlebars->25->894"
5224
+ "default.handlebars->25->897"
5225
]
5226
},
5227
{
@@ -5211,8 +5277,13 @@
5277
},
5278
{
5279
"en": "Check your phone and enter the verification code.",
5214
- "nl": "Controleer uw telefoon en voer de verificatiecode in.",
5280
+ "es": "Revisa tu teléfono e ingresa el código de verificación.",
5281
+ "fr": "Vérifiez votre téléphone et entrez le code de vérification.",
5282
+ "hi": "अपना फ़ोन जांचें और सत्यापन कोड दर्ज करें।",
5283
"ja": "スマートフォンを確認し、確認コードを入力してください。",
5284
+ "ko": "휴대 전화를 확인하고 인증 코드를 입력하십시오.",
5285
+ "nl": "Controleer uw telefoon en voer de verificatiecode in.",
5286
+ "zh-chs": "检查您的电话并输入验证码。",
5287
"xloc": [
5288
"default.handlebars->25->141"
5289
]
@@ -5231,8 +5302,8 @@
5302
"ru": "Проверка...",
5303
"zh-chs": "檢查...",
5304
"xloc": [
5234
- "default.handlebars->25->1717",
5235
- "default.handlebars->25->860"
5305
+ "default.handlebars->25->1720",
5306
+ "default.handlebars->25->863"
5307
]
5308
},
5309
{
@@ -5249,7 +5320,7 @@
5320
"ru": "Китайский",
5321
"zh-chs": "中文",
5322
"xloc": [
5252
- "default.handlebars->25->895"
5323
+ "default.handlebars->25->898"
5324
]
5325
},
5326
{
@@ -5266,7 +5337,7 @@
5337
"ru": "Китайский (Гонконг)",
5338
"zh-chs": "中文(香港)",
5339
"xloc": [
5269
- "default.handlebars->25->896"
5340
+ "default.handlebars->25->899"
5341
]
5342
},
5343
{
@@ -5283,7 +5354,7 @@
5354
"ru": "Китайский (КНР)",
5355
"zh-chs": "中文(中國)",
5356
"xloc": [
5286
- "default.handlebars->25->897"
5357
+ "default.handlebars->25->900"
5358
]
5359
},
5360
{
@@ -5292,13 +5363,15 @@
5363
"en": "Chinese (Simplified)",
5364
"es": "Chino (simplificado)",
5365
"fr": "Chinois simplifié)",
5366
+ "hi": "सरलीकृत चीनी)",
5367
"ja": "中国語(簡体字)",
5368
+ "ko": "중국어 (간체)",
5369
"nl": "Chinees (Vereenvoudigd)",
5370
"pt": "Chinês (simplificado)",
5371
"ru": "Упрощенный китайский)",
5372
"zh-chs": "简体中文)",
5373
"xloc": [
5301
- "default.handlebars->25->1057"
5374
+ "default.handlebars->25->1060"
5375
]
5376
},
5377
{
@@ -5315,7 +5388,7 @@
5388
"ru": "Китайский (Сингапур)",
5389
"zh-chs": "中文(新加坡)",
5390
"xloc": [
5318
- "default.handlebars->25->898"
5391
+ "default.handlebars->25->901"
5392
]
5393
},
5394
{
@@ -5332,7 +5405,7 @@
5405
"ru": "Китайский (Тайвань)",
5406
"zh-chs": "中文(台灣)",
5407
"xloc": [
5335
- "default.handlebars->25->899"
5408
+ "default.handlebars->25->902"
5409
]
5410
},
5411
{
@@ -5367,7 +5440,7 @@
5440
"ru": "Чувашский",
5441
"zh-chs": "楚瓦什",
5442
"xloc": [
5370
- "default.handlebars->25->900"
5443
+ "default.handlebars->25->903"
5444
]
5445
},
5446
{
@@ -5407,11 +5480,11 @@
5480
"default-mobile.handlebars->9->271",
5481
"default-mobile.handlebars->9->273",
5482
"default-mobile.handlebars->9->28",
5410
- "default.handlebars->25->1368",
5411
- "default.handlebars->25->741",
5412
- "default.handlebars->25->743",
5413
- "default.handlebars->25->745",
5414
- "default.handlebars->25->747",
5483
+ "default.handlebars->25->1371",
5484
+ "default.handlebars->25->744",
5485
+ "default.handlebars->25->746",
5486
+ "default.handlebars->25->748",
5487
+ "default.handlebars->25->750",
5488
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
5489
"default.handlebars->container->column_l->p41->3->1",
5490
"messenger.handlebars->xbottom"
@@ -5437,10 +5510,15 @@
5510
{
5511
"de": "Alles leeren",
5512
"en": "Clear all",
5513
+ "es": "Limpiar todo",
5514
+ "fr": "Tout effacer",
5515
+ "hi": "सभी साफ करें",
5516
"ja": "すべてクリア",
5517
+ "ko": "모두 지우기",
5518
"nl": "Wis alle meldingen",
5519
+ "zh-chs": "全部清除",
5520
"xloc": [
5443
- "default.handlebars->25->1647"
5521
+ "default.handlebars->25->1650"
5522
]
5523
},
5524
{
@@ -5457,7 +5535,7 @@
5535
"ru": "Очистить ядро",
5536
"zh-chs": "清除核心",
5537
"xloc": [
5460
- "default.handlebars->25->832"
5538
+ "default.handlebars->25->835"
5539
]
5540
},
5541
{
@@ -5483,12 +5561,14 @@
5561
"en": "Clear this notification",
5562
"es": "Borrar esta notificación",
5563
"fr": "Effacez cette notification",
5564
+ "hi": "इस अधिसूचना को साफ़ करें",
5565
"ja": "この通知をクリア",
5566
+ "ko": "이 알림을 지우십시오",
5567
"nl": "Wis deze melding",
5568
"ru": "Очистить это уведомление",
5569
"zh-chs": "清除此通知",
5570
"xloc": [
5491
- "default.handlebars->25->1646"
5571
+ "default.handlebars->25->1649"
5572
]
5573
},
5574
{
@@ -5497,7 +5577,9 @@
5577
"en": "Click here to download the MeshAgent for Apple OSX.",
5578
"es": "Haga click aquí para descargar el Agente de MeshCentral para Apple OSX.",
5579
"fr": "Cliquez ici pour télécharger le MeshAgent pour Apple OSX.",
5580
+ "hi": "Apple OSX के लिए मेशजेंट को डाउनलोड करने के लिए यहां क्लिक करें।",
5581
"ja": "ここをクリックして、Apple OSX用のMeshAgentをダウンロードしてください。",
5582
+ "ko": "Apple OSX 용 MeshAgent를 다운로드하려면 여기를 클릭하십시오.",
5583
"nl": "Klik hier om de MeshAgent te downloaden voor Apple OSX.",
5584
"ru": "Нажмите здесь, чтобы загрузить MeshAgent для Apple OSX.",
5585
"zh-chs": "单击此处下载适用于Apple OSX的MeshAgent。",
@@ -5511,7 +5593,9 @@
5593
"en": "Click here to download the MeshAgent for Windows.",
5594
"es": "Haga click aquí para descargar el agente de MeshCentral para Windows.",
5595
"fr": "Cliquez ici pour télécharger le MeshAgent pour Windows.",
5596
+ "hi": "विंडोज के लिए मेशजेंट को डाउनलोड करने के लिए यहां क्लिक करें।",
5597
"ja": "Windows用のMeshAgentをダウンロードするには、ここをクリックしてください。",
5598
+ "ko": "Windows 용 MeshAgent를 다운로드하려면 여기를 클릭하십시오.",
5599
"nl": "Klik hier om de MeshAgent te downloaden voor Windows.",
5600
"ru": "Нажмите здесь, чтобы загрузить MeshAgent для Windows.",
5601
"zh-chs": "单击此处下载适用于Windows的MeshAgent。",
@@ -5521,11 +5605,16 @@
5605
},
5606
{
5607
"en": "Click here to edit the device group name",
5608
+ "es": "Haga clic aquí para editar el nombre del grupo de dispositivos.",
5609
+ "fr": "Cliquez ici pour modifier le nom du groupe d'appareils",
5610
+ "hi": "डिवाइस समूह का नाम संपादित करने के लिए यहां क्लिक करें",
5611
"ja": "ここをクリックしてデバイスグループ名を編集します",
5612
+ "ko": "장치 그룹 이름을 편집하려면 여기를 클릭하십시오",
5613
"nl": "Klik hier om de apparaatgroepsnaam te bewerken",
5614
+ "zh-chs": "单击此处编辑设备组名称",
5615
"xloc": [
5527
- "default.handlebars->25->1120",
5528
- "default.handlebars->25->1324"
5616
+ "default.handlebars->25->1123",
5617
+ "default.handlebars->25->1327"
5618
]
5619
},
5620
{
@@ -5547,10 +5636,15 @@
5636
},
5637
{
5638
"en": "Click here to edit the user group name",
5639
+ "es": "Haga clic aquí para editar el nombre del grupo de usuarios.",
5640
+ "fr": "Cliquez ici pour modifier le nom du groupe d'utilisateurs",
5641
+ "hi": "उपयोगकर्ता समूह नाम संपादित करने के लिए यहां क्लिक करें",
5642
"ja": "ユーザーグループ名を編集するには、ここをクリックしてください",
5643
+ "ko": "사용자 그룹 이름을 편집하려면 여기를 클릭하십시오",
5644
"nl": "Klik hier om de gebruikersgroepsnaam te bewerken",
5645
+ "zh-chs": "单击此处编辑用户组名称",
5646
"xloc": [
5553
- "default.handlebars->25->1488"
5647
+ "default.handlebars->25->1491"
5648
]
5649
},
5650
{
@@ -5559,7 +5653,9 @@
5653
"en": "Click here to reset your account password.",
5654
"es": "Haga click aquí para resetear la contraseña de su cuenta.",
5655
"fr": "Cliquez ici pour réinitialiser le mot de passe de votre compte.",
5656
+ "hi": "अपना खाता पासवर्ड रीसेट करने के लिए यहां क्लिक करें।",
5657
"ja": "ここをクリックしてアカウントのパスワードをリセットしてください。",
5658
+ "ko": "계정 비밀번호를 재설정하려면 여기를 클릭하십시오.",
5659
"nl": "Klik hier om je wachtwoord opnieuw in te stellen.",
5660
"ru": "Нажмите здесь, чтобы сбросить пароль учетной записи.",
5661
"zh-chs": "单击此处重置您的帐户密码。",
@@ -5573,7 +5669,9 @@
5669
"en": "Click here to verify your e-mail address.",
5670
"es": "Haga click aquí para verificar su dirección de e-mail",
5671
"fr": "Cliquez ici pour vérifier votre adresse e-mail.",
5672
+ "hi": "अपना ई-मेल पता सत्यापित करने के लिए यहां क्लिक करें।",
5673
"ja": "ここをクリックして、電子メールアドレスを確認してください。",
5674
+ "ko": "이메일 주소를 확인하려면 여기를 클릭하십시오.",
5675
"nl": "Klik hier om uw e-mailadres te verifiëren.",
5676
"ru": "Нажмите здесь, чтобы подтвердить свой адрес электронной почты.",
5677
"zh-chs": "单击此处以验证您的电子邮件地址。",
@@ -5596,7 +5694,7 @@
5694
"zh-chs": "單擊確定將驗證郵件發送到:",
5695
"xloc": [
5696
"default-mobile.handlebars->9->44",
5599
- "default.handlebars->25->1071"
5697
+ "default.handlebars->25->1074"
5698
]
5699
},
5700
{
@@ -5630,7 +5728,7 @@
5728
"ru": "Режим управления клиентом (CCM)",
5729
"zh-chs": "客戶端控制模式(CCM)",
5730
"xloc": [
5633
- "default.handlebars->25->789"
5731
+ "default.handlebars->25->792"
5732
]
5733
},
5734
{
@@ -5647,8 +5745,8 @@
5745
"ru": "Клиент инициировал удаленный доступ",
5746
"zh-chs": "客戶端啟動的遠程訪問",
5747
"xloc": [
5650
- "default.handlebars->25->1190",
5651
- "default.handlebars->25->1195"
5748
+ "default.handlebars->25->1193",
5749
+ "default.handlebars->25->1198"
5750
]
5751
},
5752
{
@@ -5685,7 +5783,7 @@
5783
"default-mobile.handlebars->9->26",
5784
"default.handlebars->25->121",
5785
"default.handlebars->25->129",
5688
- "default.handlebars->25->699"
5786
+ "default.handlebars->25->702"
5787
]
5788
},
5789
{
@@ -5720,8 +5818,8 @@
5818
"ru": "Общие группы устройств",
5819
"zh-chs": "通用設備組",
5820
"xloc": [
5723
- "default.handlebars->25->1503",
5724
- "default.handlebars->25->1610"
5821
+ "default.handlebars->25->1506",
5822
+ "default.handlebars->25->1613"
5823
]
5824
},
5825
{
@@ -5738,8 +5836,8 @@
5836
"ru": "Общие устройства",
5837
"zh-chs": "通用設備",
5838
"xloc": [
5741
- "default.handlebars->25->1509",
5742
- "default.handlebars->25->1622"
5839
+ "default.handlebars->25->1512",
5840
+ "default.handlebars->25->1625"
5841
]
5842
},
5843
{
@@ -5757,7 +5855,7 @@
5855
"zh-chs": "將{1}入口{2}中的{0}限製到此位置?",
5856
"xloc": [
5857
"default-mobile.handlebars->9->96",
5760
- "default.handlebars->25->1363"
5858
+ "default.handlebars->25->1366"
5859
]
5860
},
5861
{
@@ -5776,11 +5874,11 @@
5874
"xloc": [
5875
"default-mobile.handlebars->9->230",
5876
"default-mobile.handlebars->9->292",
5779
- "default.handlebars->25->1204",
5780
- "default.handlebars->25->1417",
5781
- "default.handlebars->25->1480",
5782
- "default.handlebars->25->1523",
5783
- "default.handlebars->25->1608",
5877
+ "default.handlebars->25->1207",
5878
+ "default.handlebars->25->1420",
5879
+ "default.handlebars->25->1483",
5880
+ "default.handlebars->25->1526",
5881
+ "default.handlebars->25->1611",
5882
"default.handlebars->25->396",
5883
"default.handlebars->25->630",
5884
"default.handlebars->25->639"
@@ -5801,7 +5899,7 @@
5899
"zh-chs": "確認將1個副本複製到此位置?",
5900
"xloc": [
5901
"default-mobile.handlebars->9->262",
5804
- "default.handlebars->25->736"
5902
+ "default.handlebars->25->739"
5903
]
5904
},
5905
{
@@ -5819,16 +5917,21 @@
5917
"zh-chs": "確認{0}個條目的副本到此位置?",
5918
"xloc": [
5919
"default-mobile.handlebars->9->261",
5822
- "default.handlebars->25->735"
5920
+ "default.handlebars->25->738"
5921
]
5922
},
5923
{
5924
"de": "Bestätigen Sie das Löschen der gewählten Konten?",
5925
"en": "Confirm delete selected account(s)?",
5926
+ "es": "¿Confirmar eliminar cuenta (s) seleccionada (s)?",
5927
+ "fr": "Confirmer la suppression des comptes sélectionnés?",
5928
+ "hi": "चयनित खाते को हटाने की पुष्टि करें?",
5929
"ja": "選択したアカウントの削除を確認しますか?",
5930
+ "ko": "선택한 계정을 삭제 하시겠습니까?",
5931
"nl": "Bevestig verwijdering geselecteerde account(s)?",
5932
+ "zh-chs": "确认删除选定的帐户?",
5933
"xloc": [
5831
- "default.handlebars->25->1416"
5934
+ "default.handlebars->25->1419"
5935
]
5936
},
5937
{
@@ -5851,10 +5954,15 @@
5954
{
5955
"de": "Bestätigen Sie das Löschen der gewählten Benutzergruppen?",
5956
"en": "Confirm delete selected user groups(s)?",
5957
+ "es": "¿Confirmar eliminar grupos de usuarios seleccionados?",
5958
+ "fr": "Confirmer la suppression des groupes d'utilisateurs sélectionnés?",
5959
+ "hi": "चयनित उपयोगकर्ता समूहों को हटाएं?",
5960
"ja": "選択したユーザーグループの削除を確認しますか?",
5961
+ "ko": "선택한 사용자 그룹을 삭제 하시겠습니까?",
5962
"nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?",
5963
+ "zh-chs": "确认删除选定的用户组?",
5964
"xloc": [
5857
- "default.handlebars->25->1479"
5965
+ "default.handlebars->25->1482"
5966
]
5967
},
5968
{
@@ -5871,25 +5979,35 @@
5979
"ru": "Подтвердить удаление пользователя {0}?",
5980
"zh-chs": "確認刪除用戶{0}?",
5981
"xloc": [
5874
- "default.handlebars->25->1607"
5982
+ "default.handlebars->25->1610"
5983
]
5984
},
5985
{
5986
"de": "Bestätigen Sie den Mitgliedschaftsentzug für Benutzer \\\"{0}\\\"?",
5987
"en": "Confirm membership removal of user \\\"{0}\\\"?",
5988
+ "es": "¿Confirmar la eliminación de la membresía del usuario \\\"{0}\\\"?",
5989
+ "fr": "Confirmer la suppression de l'adhésion de l'utilisateur \\\"{0}\\\"?",
5990
+ "hi": "उपयोगकर्ता के \\\"{0}\\\" की सदस्यता हटाने की पुष्टि करें?",
5991
"ja": "ユーザー\\\"{0}\\\"のメンバーシップの削除を確認しますか?",
5992
+ "ko": "사용자 \\\"{0}\\\"의 멤버십 제거를 확인 하시겠습니까?",
5993
"nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?",
5994
+ "zh-chs": "确认删除用户\\“ {0} \\”的成员身份?",
5995
"xloc": [
5883
- "default.handlebars->25->1526"
5996
+ "default.handlebars->25->1529"
5997
]
5998
},
5999
{
6000
"de": "Bestätigen Sie den Mitgliedschaftsentzug für Benutzergruppe \\\"{0}\\\"?",
6001
"en": "Confirm membership removal of user group \\\"{0}\\\"?",
6002
+ "es": "¿Confirmar la eliminación de la membresía del grupo de usuarios \\\"{0}\\\"?",
6003
+ "fr": "Confirmer la suppression de l'appartenance au groupe d'utilisateurs \\\"{0}\\\"?",
6004
+ "hi": "उपयोगकर्ता समूह की सदस्यता हटाने की पुष्टि करें \\\"{0}\\\"?",
6005
"ja": "ユーザーグループ\\\"{0}\\\"のメンバーシップの削除を確認しますか?",
6006
+ "ko": "사용자 그룹 \\\"{0}\\\"의 멤버십 제거를 확인 하시겠습니까?",
6007
"nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?",
6008
+ "zh-chs": "确认删除用户组 “{0}” 的成员身份?",
6009
"xloc": [
5892
- "default.handlebars->25->1637"
6010
+ "default.handlebars->25->1640"
6011
]
6012
},
6013
{
@@ -5907,7 +6025,7 @@
6025
"zh-chs": "確認將1個入口移動到此位置?",
6026
"xloc": [
6027
"default-mobile.handlebars->9->264",
5910
- "default.handlebars->25->738"
6028
+ "default.handlebars->25->741"
6029
]
6030
},
6031
{
@@ -5925,7 +6043,7 @@
6043
"zh-chs": "確認將{0}個條目移到此位置?",
6044
"xloc": [
6045
"default-mobile.handlebars->9->263",
5928
- "default.handlebars->25->737"
6046
+ "default.handlebars->25->740"
6047
]
6048
},
6049
{
@@ -5942,55 +6060,80 @@
6060
"ru": "Подтвердить перезапись?",
6061
"zh-chs": "確認覆蓋?",
6062
"xloc": [
5945
- "default.handlebars->25->1362"
6063
+ "default.handlebars->25->1365"
6064
]
6065
},
6066
{
6067
"de": "Bestätigen Sie den Entzug von Zugriffsrechten für Gerät \\\"{0}\\\"?",
6068
"en": "Confirm removal of access rights for device \\\"{0}\\\"?",
6069
+ "es": "¿Confirmar la eliminación de los derechos de acceso para el dispositivo \\\"{0}\\\"?",
6070
+ "fr": "Confirmer la suppression des droits d'accès pour l'appareil \\\"{0}\\\"?",
6071
+ "hi": "डिवाइस \\\"{0}\\\" के लिए एक्सेस अधिकारों को हटाने की पुष्टि करें?",
6072
"ja": "デバイス「{0}」のアクセス権の削除を確認しますか?",
6073
+ "ko": "\\\"{0}\\\"장치에 대한 액세스 권한 제거를 확인 하시겠습니까?",
6074
"nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?",
6075
+ "zh-chs": "确认删除设备“ {0} ”的访问权限?",
6076
"xloc": [
5954
- "default.handlebars->25->1516",
5955
- "default.handlebars->25->1628"
6077
+ "default.handlebars->25->1519",
6078
+ "default.handlebars->25->1631"
6079
]
6080
},
6081
{
6082
"de": "Bestätigen Sie den Entzug von Zugriffsrechten für Gerätegruppe \\\"{0}\\\"?",
6083
"en": "Confirm removal of access rights for device group \\\"{0}\\\"?",
6084
+ "es": "¿Confirmar la eliminación de los derechos de acceso para el grupo de dispositivos \\\"{0}\\\"?",
6085
+ "fr": "Confirmer la suppression des droits d'accès pour le groupe d'appareils \\\"{0}\\\"?",
6086
+ "hi": "उपकरण समूह \\\"{0}\\\" के लिए एक्सेस अधिकारों को हटाने की पुष्टि करें?",
6087
"ja": "デバイスグループ「{0}」のアクセス権の削除を確認しますか?",
6088
+ "ko": "장치 그룹 \\\"{0}\\\"에 대한 액세스 권한 제거를 확인 하시겠습니까?",
6089
"nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?",
6090
+ "zh-chs": "是否确认删除设备组“ {0}”的访问权限?",
6091
"xloc": [
5964
- "default.handlebars->25->1518",
5965
- "default.handlebars->25->1641"
6092
+ "default.handlebars->25->1521",
6093
+ "default.handlebars->25->1644"
6094
]
6095
},
6096
{
6097
"de": "Bestätigen Sie den Entzug von Zugriffsrechten für Benutzer \\\"{0}\\\"?",
6098
"en": "Confirm removal of access rights for user \\\"{0}\\\"?",
6099
+ "es": "¿Confirmar la eliminación de los derechos de acceso para el usuario \\\"{0}\\\"?",
6100
+ "fr": "Confirmer la suppression des droits d'accès pour l'utilisateur \\\"{0}\\\"?",
6101
+ "hi": "उपयोगकर्ता के लिए पहुँच अधिकारों की पुष्टि करें \\\"{0}\\\"?",
6102
"ja": "ユーザー\\\"{0}\\\"のアクセス権の削除を確認しますか?",
6103
+ "ko": "사용자 \\\"{0}\\\"에 대한 액세스 권한 제거를 확인 하시겠습니까?",
6104
"nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?",
6105
+ "zh-chs": "确认删除用户\\“ {0} \\”的访问权限?",
6106
"xloc": [
5974
- "default.handlebars->25->1630"
6107
+ "default.handlebars->25->1633"
6108
]
6109
},
6110
{
6111
"de": "Bestätigen Sie den Entzug von Zugriffsrechten für Benutzergruppe \\\"{0}\\\"?",
6112
"en": "Confirm removal of access rights for user group \\\"{0}\\\"?",
6113
+ "es": "¿Confirmar la eliminación de los derechos de acceso para el grupo de usuarios \\\"{0}\\\"?",
6114
+ "fr": "Confirmer la suppression des droits d'accès pour le groupe d'utilisateurs \\\"{0}\\\"?",
6115
+ "hi": "उपयोगकर्ता समूह के लिए पहुँच अधिकारों की पुष्टि करें \\\"{0}\\\"?",
6116
"ja": "ユーザーグループ「{0}」のアクセス権の削除を確認しますか?",
6117
+ "ko": "사용자 그룹 \\\"{0}\\\"에 대한 액세스 권한 제거를 확인 하시겠습니까?",
6118
"nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?",
6119
+ "zh-chs": "确认删除用户组“ {0}”的访问权限?",
6120
"xloc": [
5983
- "default.handlebars->25->1633"
6121
+ "default.handlebars->25->1636"
6122
]
6123
},
6124
{
6125
"de": "Bestätigen Sie den Entzug von Zugriffsrechten?",
6126
"en": "Confirm removal of access rights?",
6127
+ "es": "¿Confirmar la eliminación de los derechos de acceso?",
6128
+ "fr": "Confirmer la suppression des droits d'accès?",
6129
+ "hi": "एक्सेस अधिकारों को हटाने की पुष्टि करें?",
6130
"ja": "アクセス権の削除を確認しますか?",
6131
+ "ko": "액세스 권한 제거를 확인 하시겠습니까?",
6132
"nl": "Verwijdering van toegangsrechten bevestigen?",
6133
+ "zh-chs": "确认删除访问权限?",
6134
"xloc": [
5992
- "default.handlebars->25->1631",
5993
- "default.handlebars->25->1634"
6135
+ "default.handlebars->25->1634",
6136
+ "default.handlebars->25->1637"
6137
]
6138
},
6139
{
@@ -6008,7 +6151,7 @@
6151
"zh-chs": "確認刪除身份驗證器應用程序兩步登錄?",
6152
"xloc": [
6153
"default-mobile.handlebars->9->43",
6011
- "default.handlebars->25->850"
6154
+ "default.handlebars->25->853"
6155
]
6156
},
6157
{
@@ -6031,7 +6174,9 @@
6174
"en": "Confirm removal of device {0}?",
6175
"es": "Confirmar la eliminación del dispositivo {0}?",
6176
"fr": "Confirmer la suppression de l'appareil {0}?",
6177
+ "hi": "डिवाइस {0} को हटाने की पुष्टि करें?",
6178
"ja": "デバイス{0}の削除を確認しますか?",
6179
+ "ko": "장치 {0}의 제거를 확인 하시겠습니까?",
6180
"nl": "Bevestig het verwijderen van apparaat {0}?",
6181
"ru": "Подтвердите удаление устройства {0}?",
6182
"zh-chs": "确认移除设备{0}?"
@@ -6053,26 +6198,41 @@
6198
{
6199
"de": "Bestätigen Sie den Entzug von Rechten für Benutzer \\\"{0}\\\"?",
6200
"en": "Confirm removal of rights for user \\\"{0}\\\"?",
6201
+ "es": "¿Confirmar la eliminación de los derechos del usuario \\\"{0}\\\"?",
6202
+ "fr": "Confirmer la suppression des droits de l'utilisateur \\\"{0}\\\"?",
6203
+ "hi": "उपयोगकर्ता के लिए अधिकारों की पुष्टि \\\"{0}\\\"?",
6204
"ja": "ユーザー「{0}」の権限の削除を確認しますか?",
6205
+ "ko": "사용자 \\\"{0}\\\"에 대한 권한 제거를 확인 하시겠습니까?",
6206
"nl": "Bevestig de verwijdering van rechten voor gebruiker \\\"{0}\\\"?",
6207
+ "zh-chs": "确认删除用户“ {0} ”的权限?",
6208
"xloc": [
6059
- "default.handlebars->25->1296"
6209
+ "default.handlebars->25->1299"
6210
]
6211
},
6212
{
6213
"de": "Bestätigen Sie den Entzug von Rechten für Benutzergruppe \\\"{0}\\\"?",
6214
"en": "Confirm removal of rights for user group \\\"{0}\\\"?",
6215
+ "es": "¿Confirmar la eliminación de derechos para el grupo de usuarios \\\"{0}\\\"?",
6216
+ "fr": "Confirmer la suppression des droits du groupe d'utilisateurs \\\"{0}\\\"?",
6217
+ "hi": "उपयोगकर्ता समूह के लिए अधिकारों को हटाने की पुष्टि करें \\\"{0}\\\"?",
6218
"ja": "ユーザーグループ「{0}」の権限の削除を確認しますか?",
6219
+ "ko": "사용자 그룹 \\\"{0}\\\"에 대한 권한 제거를 확인 하시겠습니까?",
6220
"nl": "Bevestig de verwijdering van rechten voor de gebruikergroep \\\"{0}\\\"?",
6221
+ "zh-chs": "确认删除用户组“ {0} ”的权限?",
6222
"xloc": [
6068
- "default.handlebars->25->1298"
6223
+ "default.handlebars->25->1301"
6224
]
6225
},
6226
{
6227
"de": "Bestätigen Sie das Entfernen der Benutzergruppe {0}?",
6228
"en": "Confirm removal of user group {0}?",
6229
+ "es": "¿Confirmar la eliminación del grupo de usuarios {0}?",
6230
+ "fr": "Confirmer la suppression du groupe d'utilisateurs {0}?",
6231
+ "hi": "उपयोगकर्ता समूह {0} को हटाने की पुष्टि करें?",
6232
"ja": "ユーザーグループ{0}の削除を確認しますか?",
6075
- "nl": "Verwijderen van gebruikersgroep {0} bevestigen?"
6233
+ "ko": "사용자 그룹 {0}의 제거를 확인 하시겠습니까?",
6234
+ "nl": "Verwijderen van gebruikersgroep {0} bevestigen?",
6235
+ "zh-chs": "确认删除用户组{0}?"
6236
},
6237
{
6238
"cs": "Potvrdit odstranění uživatele {0}?",
@@ -6108,8 +6268,8 @@
6268
"default-mobile.handlebars->9->244",
6269
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
6270
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
6111
- "default.handlebars->25->1143",
6112
- "default.handlebars->25->718",
6271
+ "default.handlebars->25->1146",
6272
+ "default.handlebars->25->721",
6273
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
6274
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
6275
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -6148,8 +6308,8 @@
6308
"ru": "Подключиться к серверу",
6309
"zh-chs": "連接到服務器",
6310
"xloc": [
6151
- "default.handlebars->25->1194",
6152
- "default.handlebars->25->1198"
6311
+ "default.handlebars->25->1197",
6312
+ "default.handlebars->25->1201"
6313
]
6314
},
6315
{
@@ -6220,7 +6380,7 @@
6380
"ru": "Подключено Intel® AMT",
6381
"zh-chs": "連接的英特爾®AMT",
6382
"xloc": [
6223
- "default.handlebars->25->1665"
6383
+ "default.handlebars->25->1668"
6384
]
6385
},
6386
{
@@ -6237,7 +6397,7 @@
6397
"ru": "Подключенные пользователи",
6398
"zh-chs": "關聯用戶",
6399
"xloc": [
6240
- "default.handlebars->25->1670"
6400
+ "default.handlebars->25->1673"
6401
]
6402
},
6403
{
@@ -6254,7 +6414,7 @@
6414
"ru": "Подключено сейчас",
6415
"zh-chs": "現在已連接",
6416
"xloc": [
6257
- "default.handlebars->25->768"
6417
+ "default.handlebars->25->771"
6418
]
6419
},
6420
{
@@ -6294,7 +6454,7 @@
6454
"default.handlebars->25->204",
6455
"default.handlebars->25->207",
6456
"default.handlebars->25->213",
6297
- "default.handlebars->25->759",
6457
+ "default.handlebars->25->762",
6458
"default.handlebars->25->9",
6459
"xterm.handlebars->9->2"
6460
]
@@ -6313,7 +6473,7 @@
6473
"ru": "Подключений ",
6474
"zh-chs": "連接數",
6475
"xloc": [
6316
- "default.handlebars->25->1681"
6476
+ "default.handlebars->25->1684"
6477
]
6478
},
6479
{
@@ -6330,7 +6490,7 @@
6490
"ru": "Ретранслятор подключения",
6491
"zh-chs": "連接繼電器",
6492
"xloc": [
6333
- "default.handlebars->25->1709"
6493
+ "default.handlebars->25->1712"
6494
]
6495
},
6496
{
@@ -6382,7 +6542,7 @@
6542
"zh-chs": "連接性",
6543
"xloc": [
6544
"default-mobile.handlebars->9->205",
6385
- "default.handlebars->25->1331",
6545
+ "default.handlebars->25->1334",
6546
"default.handlebars->25->195",
6547
"default.handlebars->25->519",
6548
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -6432,7 +6592,9 @@
6592
"en": "Control",
6593
"es": "Control",
6594
"fr": "Contrôle",
6595
+ "hi": "नियंत्रण",
6596
"ja": "コントロール",
6597
+ "ko": "제어",
6598
"nl": "Controle",
6599
"ru": "контроль",
6600
"zh-chs": "控制",
@@ -6455,7 +6617,7 @@
6617
"ru": "Cookie-кодировщик",
6618
"zh-chs": "Cookie編碼器",
6619
"xloc": [
6458
- "default.handlebars->25->1695"
6620
+ "default.handlebars->25->1698"
6621
]
6622
},
6623
{
@@ -6519,7 +6681,9 @@
6681
"en": "Copy Windows 32bit agent URL to clipboard",
6682
"es": "Copiar la URL del Agente de Windows de 32bit al portapapeles",
6683
"fr": "Copier l'URL de l'agent Windows 32 bits dans le presse-papiers",
6684
+ "hi": "Windows 32bit एजेंट URL को क्लिपबोर्ड पर कॉपी करें",
6685
"ja": "Windows 32ビットエージェントのURLをクリップボードにコピー",
6686
+ "ko": "Windows 32 비트 에이전트 URL을 클립 보드에 복사",
6687
"nl": "Kopieer de Windows 32bit-agent URL naar het klembord",
6688
"ru": "Скопировать URL-адрес агента Windows 32bit в буфер обмена",
6689
"zh-chs": "将Windows 32位代理URL复制到剪贴板",
@@ -6533,7 +6697,9 @@
6697
"en": "Copy Windows 64bit agent URL to clipboard",
6698
"es": "Copiar la URL del Agente de Windows de 64bit al portapapeles",
6699
"fr": "Copier l'URL de l'agent Windows 64 bits dans le presse-papiers",
6700
+ "hi": "क्लिपबोर्ड पर विंडोज़ 64 बिट एजेंट URL की प्रतिलिपि बनाएँ",
6701
"ja": "Windows 64ビットエージェントのURLをクリップボードにコピー",
6702
+ "ko": "Windows 64 비트 에이전트 URL을 클립 보드에 복사",
6703
"nl": "Kopieer de Windows 64bit-agent URL naar het klembord",
6704
"ru": "Скопировать URL-адрес агента Windows 64bit в буфер обмена",
6705
"zh-chs": "将Windows 64位代理URL复制到剪贴板",
@@ -6577,8 +6743,8 @@
6743
"ru": "Скопировать ссылку в буфер обмена",
6744
"zh-chs": "複製鏈接到剪貼板",
6745
"xloc": [
6580
- "default.handlebars->25->1336",
6581
- "default.handlebars->25->1350",
6746
+ "default.handlebars->25->1339",
6747
+ "default.handlebars->25->1353",
6748
"default.handlebars->25->308"
6749
]
6750
},
@@ -6756,7 +6922,7 @@
6922
"ru": "Основной сервер",
6923
"zh-chs": "核心服務器",
6924
"xloc": [
6759
- "default.handlebars->25->1694"
6925
+ "default.handlebars->25->1697"
6926
]
6927
},
6928
{
@@ -6773,7 +6939,7 @@
6939
"ru": "Kорсиканский",
6940
"zh-chs": "科西嘉人",
6941
"xloc": [
6776
- "default.handlebars->25->901"
6942
+ "default.handlebars->25->904"
6943
]
6944
},
6945
{
@@ -6790,7 +6956,7 @@
6956
"ru": "Создать учетную запись",
6957
"zh-chs": "創建帳號",
6958
"xloc": [
6793
- "default.handlebars->25->1451",
6959
+ "default.handlebars->25->1454",
6960
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
6961
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
6962
]
@@ -6826,7 +6992,7 @@
6992
"ru": "Создать группу пользователей",
6993
"zh-chs": "創建用戶組",
6994
"xloc": [
6829
- "default.handlebars->25->1485"
6995
+ "default.handlebars->25->1488"
6996
]
6997
},
6998
{
@@ -6843,7 +7009,7 @@
7009
"ru": "Создайте новую группу устройств, используя параметры ниже.",
7010
"zh-chs": "使用以下選項創建一個新的設備組。",
7011
"xloc": [
6846
- "default.handlebars->25->1094"
7012
+ "default.handlebars->25->1097"
7013
]
7014
},
7015
{
@@ -6877,7 +7043,7 @@
7043
"ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:",
7044
"zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:",
7045
"xloc": [
6880
- "default.handlebars->25->1422"
7046
+ "default.handlebars->25->1425"
7047
]
7048
},
7049
{
@@ -6912,7 +7078,7 @@
7078
"ru": "Создано",
7079
"zh-chs": "創建",
7080
"xloc": [
6915
- "default.handlebars->25->1548"
7081
+ "default.handlebars->25->1551"
7082
]
7083
},
7084
{
@@ -6947,7 +7113,7 @@
7113
"ru": "Кри (Канадский язык)",
7114
"zh-chs": "克里",
7115
"xloc": [
6950
- "default.handlebars->25->902"
7116
+ "default.handlebars->25->905"
7117
]
7118
},
7119
{
@@ -6964,7 +7130,7 @@
7130
"ru": "Хорватский",
7131
"zh-chs": "克羅地亞語",
7132
"xloc": [
6967
- "default.handlebars->25->903"
7133
+ "default.handlebars->25->906"
7134
]
7135
},
7136
{
@@ -7105,7 +7271,7 @@
7271
"ru": "Чешский",
7272
"zh-chs": "捷克文",
7273
"xloc": [
7108
- "default.handlebars->25->904"
7274
+ "default.handlebars->25->907"
7275
]
7276
},
7277
{
@@ -7139,7 +7305,7 @@
7305
"ru": "Датский",
7306
"zh-chs": "丹麥文",
7307
"xloc": [
7142
- "default.handlebars->25->905"
7308
+ "default.handlebars->25->908"
7309
]
7310
},
7311
{
@@ -7156,7 +7322,7 @@
7322
"ru": "DataChannel",
7323
"zh-chs": "數據通道",
7324
"xloc": [
7159
- "default.handlebars->25->675"
7325
+ "default.handlebars->25->678"
7326
]
7327
},
7328
{
@@ -7173,7 +7339,7 @@
7339
"ru": "Дата & Время",
7340
"zh-chs": "日期和時間",
7341
"xloc": [
7176
- "default.handlebars->25->1062"
7342
+ "default.handlebars->25->1065"
7343
]
7344
},
7345
{
@@ -7207,7 +7373,7 @@
7373
"ru": "Деактивировать режим управления клиентом (CCM)",
7374
"zh-chs": "停用客戶端控制模式(CCM)",
7375
"xloc": [
7210
- "default.handlebars->25->1182"
7376
+ "default.handlebars->25->1185"
7377
]
7378
},
7379
{
@@ -7246,9 +7412,9 @@
7412
"default-mobile.handlebars->9->91",
7413
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
7414
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
7249
- "default.handlebars->25->1357",
7415
+ "default.handlebars->25->1360",
7416
"default.handlebars->25->426",
7251
- "default.handlebars->25->728",
7417
+ "default.handlebars->25->731",
7418
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
7419
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
7420
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -7272,16 +7438,21 @@
7438
"zh-chs": "刪除帳戶",
7439
"xloc": [
7440
"default-mobile.handlebars->9->53",
7275
- "default.handlebars->25->1079"
7441
+ "default.handlebars->25->1082"
7442
]
7443
},
7444
{
7445
"de": "Konten löschen",
7446
"en": "Delete Accounts",
7447
+ "es": "Eliminar cuentas",
7448
+ "fr": "Supprimer des comptes",
7449
+ "hi": "खाते हटाएं",
7450
"ja": "アカウントを削除",
7451
+ "ko": "계정 삭제",
7452
"nl": "Verwijder accounts",
7453
+ "zh-chs": "删除帐号",
7454
"xloc": [
7284
- "default.handlebars->25->1418"
7455
+ "default.handlebars->25->1421"
7456
]
7457
},
7458
{
@@ -7318,8 +7489,8 @@
7489
"xloc": [
7490
"default-mobile.handlebars->9->290",
7491
"default-mobile.handlebars->9->293",
7321
- "default.handlebars->25->1175",
7322
- "default.handlebars->25->1205"
7492
+ "default.handlebars->25->1178",
7493
+ "default.handlebars->25->1208"
7494
]
7495
},
7496
{
@@ -7371,7 +7542,7 @@
7542
"ru": "Удалить пользователя",
7543
"zh-chs": "刪除用戶",
7544
"xloc": [
7374
- "default.handlebars->25->1585"
7545
+ "default.handlebars->25->1588"
7546
]
7547
},
7548
{
@@ -7388,17 +7559,22 @@
7559
"ru": "Удалить группу пользователей",
7560
"zh-chs": "刪除用戶組",
7561
"xloc": [
7391
- "default.handlebars->25->1514",
7392
- "default.handlebars->25->1524"
7562
+ "default.handlebars->25->1517",
7563
+ "default.handlebars->25->1527"
7564
]
7565
},
7566
{
7567
"de": "Benutzergruppen löschen",
7568
"en": "Delete User Groups",
7569
+ "es": "Eliminar grupos de usuarios",
7570
+ "fr": "Supprimer des groupes d'utilisateurs",
7571
+ "hi": "उपयोगकर्ता समूह हटाएं",
7572
"ja": "ユーザーグループの削除",
7573
+ "ko": "사용자 그룹 삭제",
7574
"nl": "Gebruikersgroepen verwijderen",
7575
+ "zh-chs": "删除用户组",
7576
"xloc": [
7401
- "default.handlebars->25->1481"
7577
+ "default.handlebars->25->1484"
7578
]
7579
},
7580
{
@@ -7415,7 +7591,7 @@
7591
"ru": "Удалить пользователя {0}",
7592
"zh-chs": "刪除用戶{0}",
7593
"xloc": [
7418
- "default.handlebars->25->1606"
7594
+ "default.handlebars->25->1609"
7595
]
7596
},
7597
{
@@ -7433,7 +7609,7 @@
7609
"zh-chs": "刪除帳戶",
7610
"xloc": [
7611
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->9->0",
7436
- "default.handlebars->25->1414",
7612
+ "default.handlebars->25->1417",
7613
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
7614
]
7615
},
@@ -7457,10 +7633,15 @@
7633
{
7634
"de": "Gruppe löschen",
7635
"en": "Delete group",
7636
+ "es": "Eliminar grupo",
7637
+ "fr": "Supprimer le groupe",
7638
+ "hi": "समूह हटाएँ",
7639
"ja": "グループを削除",
7640
+ "ko": "그룹 삭제",
7641
"nl": "Verwijder groep",
7642
+ "zh-chs": "删除群组",
7643
"xloc": [
7463
- "default.handlebars->25->1477"
7644
+ "default.handlebars->25->1480"
7645
]
7646
},
7647
{
@@ -7496,8 +7677,8 @@
7677
"xloc": [
7678
"default-mobile.handlebars->9->256",
7679
"default-mobile.handlebars->9->93",
7499
- "default.handlebars->25->1359",
7500
- "default.handlebars->25->730"
7680
+ "default.handlebars->25->1362",
7681
+ "default.handlebars->25->733"
7682
]
7683
},
7684
{
@@ -7514,7 +7695,7 @@
7695
"ru": "Удалить группу пользователей {0}?",
7696
"zh-chs": "刪除用戶組{0}?",
7697
"xloc": [
7517
- "default.handlebars->25->1522"
7698
+ "default.handlebars->25->1525"
7699
]
7700
},
7701
{
@@ -7533,8 +7714,8 @@
7714
"xloc": [
7715
"default-mobile.handlebars->9->255",
7716
"default-mobile.handlebars->9->92",
7536
- "default.handlebars->25->1358",
7537
- "default.handlebars->25->729"
7717
+ "default.handlebars->25->1361",
7718
+ "default.handlebars->25->732"
7719
]
7720
},
7721
{
@@ -7554,6 +7735,18 @@
7735
"default-mobile.handlebars->9->229"
7736
]
7737
},
7738
+ {
7739
+ "en": "Denied",
7740
+ "es": "Negado",
7741
+ "fr": "Refusée",
7742
+ "hi": "निषेध",
7743
+ "ja": "拒否されました",
7744
+ "ko": "거부",
7745
+ "zh-chs": "被拒绝",
7746
+ "xloc": [
7747
+ "default.handlebars->25->676"
7748
+ ]
7749
+ },
7750
{
7751
"cs": "Sestupně podle data",
7752
"de": "Nach Datum absteigend",
@@ -7634,17 +7827,17 @@
7827
"default-mobile.handlebars->9->282",
7828
"default-mobile.handlebars->9->295",
7829
"default-mobile.handlebars->9->70",
7637
- "default.handlebars->25->1099",
7638
- "default.handlebars->25->1124",
7639
- "default.handlebars->25->1207",
7640
- "default.handlebars->25->1484",
7641
- "default.handlebars->25->1490",
7642
- "default.handlebars->25->1491",
7643
- "default.handlebars->25->1520",
7830
+ "default.handlebars->25->1102",
7831
+ "default.handlebars->25->1127",
7832
+ "default.handlebars->25->1210",
7833
+ "default.handlebars->25->1487",
7834
+ "default.handlebars->25->1493",
7835
+ "default.handlebars->25->1494",
7836
+ "default.handlebars->25->1523",
7837
"default.handlebars->25->464",
7838
"default.handlebars->25->465",
7839
"default.handlebars->25->671",
7647
- "default.handlebars->25->774",
7840
+ "default.handlebars->25->777",
7841
"default.handlebars->25->78",
7842
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
7843
]
@@ -7677,7 +7870,7 @@
7870
"ru": "Рабочий стол",
7871
"zh-chs": "桌面",
7872
"xloc": [
7680
- "default.handlebars->25->1212",
7873
+ "default.handlebars->25->1215",
7874
"default.handlebars->25->432",
7875
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
7876
"default.handlebars->contextMenu->cxdesktop"
@@ -7714,8 +7907,8 @@
7907
"ru": "Уведомление на рабочем столе",
7908
"zh-chs": "桌面通知",
7909
"xloc": [
7717
- "default.handlebars->25->1134",
7718
- "default.handlebars->25->1563",
7910
+ "default.handlebars->25->1137",
7911
+ "default.handlebars->25->1566",
7912
"default.handlebars->25->500"
7913
]
7914
},
@@ -7733,8 +7926,8 @@
7926
"ru": "Запрос рабочего стола",
7927
"zh-chs": "桌面提示",
7928
"xloc": [
7736
- "default.handlebars->25->1133",
7737
- "default.handlebars->25->1562",
7929
+ "default.handlebars->25->1136",
7930
+ "default.handlebars->25->1565",
7931
"default.handlebars->25->499"
7932
]
7933
},
@@ -7752,16 +7945,21 @@
7945
"ru": "Запрос рабочего стола + панель инструментов",
7946
"zh-chs": "桌面提示+工具欄",
7947
"xloc": [
7755
- "default.handlebars->25->1131",
7756
- "default.handlebars->25->1560",
7948
+ "default.handlebars->25->1134",
7949
+ "default.handlebars->25->1563",
7950
"default.handlebars->25->497"
7951
]
7952
},
7953
{
7954
"de": "Desktop-Sitzungslatenz",
7955
"en": "Desktop Session Latency",
7956
+ "es": "Latencia de sesión de escritorio",
7957
+ "fr": "Latence de la session de bureau",
7958
+ "hi": "डेस्कटॉप सत्र विलंबता",
7959
"ja": "デスクトップセッションの遅延",
7960
+ "ko": "데스크톱 세션 지연",
7961
"nl": "Desktop sessie wachttijd",
7962
+ "zh-chs": "桌面会话延迟",
7963
"xloc": [
7964
"default.handlebars->container->column_l->p11->deskarea0->deskarea4->1"
7965
]
@@ -7780,8 +7978,8 @@
7978
"ru": "Панель инструментов рабочего стола",
7979
"zh-chs": "桌面工具欄",
7980
"xloc": [
7783
- "default.handlebars->25->1132",
7784
- "default.handlebars->25->1561",
7981
+ "default.handlebars->25->1135",
7982
+ "default.handlebars->25->1564",
7983
"default.handlebars->25->498"
7984
]
7985
},
@@ -7851,8 +8049,8 @@
8049
"ru": "Устройство",
8050
"zh-chs": "設備",
8051
"xloc": [
7854
- "default.handlebars->25->1234",
7855
- "default.handlebars->25->1625",
8052
+ "default.handlebars->25->1237",
8053
+ "default.handlebars->25->1628",
8054
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
8055
]
8056
},
@@ -7888,12 +8086,12 @@
8086
"ru": "Группа устройства",
8087
"zh-chs": "設備組",
8088
"xloc": [
7891
- "default.handlebars->25->1229",
8089
"default.handlebars->25->1232",
7893
- "default.handlebars->25->1233",
7894
- "default.handlebars->25->1506",
7895
- "default.handlebars->25->1512",
7896
- "default.handlebars->25->1613"
8090
+ "default.handlebars->25->1235",
8091
+ "default.handlebars->25->1236",
8092
+ "default.handlebars->25->1509",
8093
+ "default.handlebars->25->1515",
8094
+ "default.handlebars->25->1616"
8095
]
8096
},
8097
{
@@ -7911,7 +8109,7 @@
8109
"zh-chs": "設備組用戶",
8110
"xloc": [
8111
"default-mobile.handlebars->9->336",
7914
- "default.handlebars->25->1294"
8112
+ "default.handlebars->25->1297"
8113
]
8114
},
8115
{
@@ -7929,11 +8127,11 @@
8127
"zh-chs": "設備組",
8128
"xloc": [
8129
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
7932
- "default.handlebars->25->1383",
7933
- "default.handlebars->25->1471",
7934
- "default.handlebars->25->1493",
7935
- "default.handlebars->25->1557",
7936
- "default.handlebars->25->1668",
8130
+ "default.handlebars->25->1386",
8131
+ "default.handlebars->25->1474",
8132
+ "default.handlebars->25->1496",
8133
+ "default.handlebars->25->1560",
8134
+ "default.handlebars->25->1671",
8135
"default.handlebars->container->column_l->p2->p2info->7"
8136
]
8137
},
@@ -8039,8 +8237,8 @@
8237
"ru": "Подключения устройств.",
8238
"zh-chs": "設備連接。",
8239
"xloc": [
8042
- "default.handlebars->25->1067",
8043
- "default.handlebars->25->1315"
8240
+ "default.handlebars->25->1070",
8241
+ "default.handlebars->25->1318"
8242
]
8243
},
8244
{
@@ -8057,8 +8255,8 @@
8255
"ru": "Отключения устройств.",
8256
"zh-chs": "設備斷開連接。",
8257
"xloc": [
8060
- "default.handlebars->25->1068",
8061
- "default.handlebars->25->1316"
8258
+ "default.handlebars->25->1071",
8259
+ "default.handlebars->25->1319"
8260
]
8261
},
8262
{
@@ -8360,11 +8558,16 @@
8558
{
8559
"de": "Geräte",
8560
"en": "Devices",
8561
+ "es": "Dispositivos",
8562
+ "fr": "Dispositifs",
8563
+ "hi": "उपकरण",
8564
"ja": "デバイス",
8565
+ "ko": "장치",
8566
"nl": "Apparaten",
8567
+ "zh-chs": "设备",
8568
"xloc": [
8366
- "default.handlebars->25->1472",
8367
- "default.handlebars->25->1494"
8569
+ "default.handlebars->25->1475",
8570
+ "default.handlebars->25->1497"
8571
]
8572
},
8573
{
@@ -8400,8 +8603,8 @@
8603
"xloc": [
8604
"default-mobile.handlebars->9->245",
8605
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8403
- "default.handlebars->25->1144",
8404
- "default.handlebars->25->719",
8606
+ "default.handlebars->25->1147",
8607
+ "default.handlebars->25->722",
8608
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
8609
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
8610
"xterm.handlebars->p11->deskarea0->deskarea1->3"
@@ -8483,7 +8686,7 @@
8686
"ru": "Отобразить имя группы устройств",
8687
"zh-chs": "顯示設備組名稱",
8688
"xloc": [
8486
- "default.handlebars->25->1066"
8689
+ "default.handlebars->25->1069"
8690
]
8691
},
8692
{
@@ -8500,7 +8703,7 @@
8703
"ru": "Отображаемое имя",
8704
"zh-chs": "顯示名稱",
8705
"xloc": [
8503
- "default.handlebars->25->690"
8706
+ "default.handlebars->25->693"
8707
]
8708
},
8709
{
@@ -8509,12 +8712,14 @@
8712
"en": "Display public link",
8713
"es": "Mostrar enlace público",
8714
"fr": "Afficher le lien public",
8715
+ "hi": "सार्वजनिक लिंक प्रदर्शित करें",
8716
"ja": "公開リンクを表示",
8717
+ "ko": "공개 링크 표시",
8718
"nl": "Openbare link weergeven",
8719
"ru": "Показать публичную ссылку",
8720
"zh-chs": "显示公共链接",
8721
"xloc": [
8517
- "default.handlebars->25->1335"
8722
+ "default.handlebars->25->1338"
8723
]
8724
},
8725
{
@@ -8531,22 +8736,34 @@
8736
"ru": "Ничего не делать",
8737
"zh-chs": "沒做什麼",
8738
"xloc": [
8534
- "default.handlebars->25->1188"
8739
+ "default.handlebars->25->1191"
8740
]
8741
},
8742
{
8743
"en": "Don't configure",
8744
+ "es": "No configurar",
8745
+ "fr": "Ne configurez pas",
8746
+ "hi": "कॉन्फ़िगर न करें",
8747
+ "ja": "設定しないでください",
8748
+ "ko": "구성하지 마십시오",
8749
"nl": "Niet configureren",
8750
+ "zh-chs": "不要配置",
8751
"xloc": [
8541
- "default.handlebars->25->1192",
8542
- "default.handlebars->25->1197"
8752
+ "default.handlebars->25->1195",
8753
+ "default.handlebars->25->1200"
8754
]
8755
},
8756
{
8757
"en": "Don't connect to server",
8758
+ "es": "No te conectes al servidor",
8759
+ "fr": "Ne vous connectez pas au serveur",
8760
+ "hi": "सर्वर से कनेक्ट न करें",
8761
+ "ja": "サーバーに接続しない",
8762
+ "ko": "서버에 연결하지 마십시오",
8763
"nl": "Maak geen verbinding met de server",
8764
+ "zh-chs": "不要连接到服务器",
8765
"xloc": [
8549
- "default.handlebars->25->1193"
8766
+ "default.handlebars->25->1196"
8767
]
8768
},
8769
{
@@ -8646,7 +8863,7 @@
8863
"zh-chs": "下載文件",
8864
"xloc": [
8865
"default-mobile.handlebars->9->275",
8649
- "default.handlebars->25->748"
8866
+ "default.handlebars->25->751"
8867
]
8868
},
8869
{
@@ -8867,7 +9084,7 @@
9084
"ru": "Скачать список событий в одном из форматов ниже.",
9085
"zh-chs": "使用以下一種文件格式下載事件列表。",
9086
"xloc": [
8870
- "default.handlebars->25->1373"
9087
+ "default.handlebars->25->1376"
9088
]
9089
},
9090
{
@@ -8884,7 +9101,7 @@
9101
"ru": "Скачать список пользователей в одном из форматов ниже.",
9102
"zh-chs": "使用以下一種文件格式下載用戶列表。",
9103
"xloc": [
8887
- "default.handlebars->25->1430"
9104
+ "default.handlebars->25->1433"
9105
]
9106
},
9107
{
@@ -8959,10 +9176,15 @@
9176
{
9177
"de": "Agent-Duplikat",
9178
"en": "Duplicate Agent",
9179
+ "es": "Agente duplicado",
9180
+ "fr": "Agent en double",
9181
+ "hi": "डुप्लीकेट एजेंट",
9182
"ja": "エージェントの複製",
9183
+ "ko": "중복 에이전트",
9184
"nl": "Dubbele agent",
9185
+ "zh-chs": "代理重复",
9186
"xloc": [
8965
- "default.handlebars->25->1664"
9187
+ "default.handlebars->25->1667"
9188
]
9189
},
9190
{
@@ -8996,7 +9218,7 @@
9218
"ru": "Скопировать группу пользователей",
9219
"zh-chs": "重複的用戶組",
9220
"xloc": [
8999
- "default.handlebars->25->1486"
9221
+ "default.handlebars->25->1489"
9222
]
9223
},
9224
{
@@ -9044,7 +9266,7 @@
9266
"ru": "Во время активации агент будет иметь доступ к паролю администратора.",
9267
"zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。",
9268
"xloc": [
9047
- "default.handlebars->25->1202"
9269
+ "default.handlebars->25->1205"
9270
]
9271
},
9272
{
@@ -9061,7 +9283,7 @@
9283
"ru": "Голландский (Бельгийский)",
9284
"zh-chs": "荷蘭語(比利時)",
9285
"xloc": [
9064
- "default.handlebars->25->907"
9286
+ "default.handlebars->25->910"
9287
]
9288
},
9289
{
@@ -9078,29 +9300,44 @@
9300
"ru": "Голландский (Стандартный)",
9301
"zh-chs": "荷蘭語(標準)",
9302
"xloc": [
9081
- "default.handlebars->25->906"
9303
+ "default.handlebars->25->909"
9304
]
9305
},
9306
{
9307
"en": "E-mail \\\"{0}\\\" already in use on a different account. Change the email address and try again.",
9086
- "nl": "E-mail \\\"{0}\\\" reeds in gebruik door een ander account. Wijzig het e-mailadres en probeer het opnieuw.",
9308
+ "es": "El correo electrónico \\\"{0}\\\" ya está en uso en una cuenta diferente. Cambie la dirección de correo electrónico e intente nuevamente.",
9309
+ "fr": "E-mail \\\"{0}\\\" déjà utilisé sur un autre compte. Modifiez l'adresse e-mail et réessayez.",
9310
+ "hi": "ई-मेल \\\"{0}\\\" पहले से ही एक अलग खाते पर उपयोग में है। ईमेल पता बदलें और पुनः प्रयास करें।",
9311
"ja": "別のアカウントですでに使用されている電子メール「{0}」。メールアドレスを変更して、もう一度お試しください。",
9312
+ "ko": "\\\"{0}\\\"이메일이 이미 다른 계정에서 사용 중입니다. 이메일 주소를 변경하고 다시 시도하십시오.",
9313
+ "nl": "E-mail \\\"{0}\\\" reeds in gebruik door een ander account. Wijzig het e-mailadres en probeer het opnieuw.",
9314
+ "zh-chs": "已在其他帐户上使用的电子邮件“ {0} ”。更改电子邮件地址,然后重试。",
9315
"xloc": [
9316
"message.handlebars->3->6"
9317
]
9318
},
9319
{
9320
"en": "E-mail \\\"{0}\\\" for user \\\"{1}\\\" already verified.",
9094
- "nl": "E-mail \\\"{0}\\\" voor gebruiker \\\"{1}\\\" al geverifieerd.",
9321
+ "es": "Correo electrónico \\\"{0}\\\" para el usuario \\\"{1}\\\" ya verificado.",
9322
+ "fr": "E-mail \\\"{0}\\\" pour l'utilisateur \\\"{1}\\\" déjà vérifié.",
9323
+ "hi": "उपयोगकर्ता \\\"{1}\\\" के लिए ई-मेल \\\"{0}\\\" पहले से ही सत्यापित।",
9324
"ja": "ユーザー\\\"{1}\\\"の電子メール\\\"{0}\\\"はすでに確認されています。",
9325
+ "ko": "사용자 \\\"{1}\\\"의 이메일 \\\"{0}\\\"이 (가) 이미 확인되었습니다.",
9326
+ "nl": "E-mail \\\"{0}\\\" voor gebruiker \\\"{1}\\\" al geverifieerd.",
9327
+ "zh-chs": "用户“ {1} ”的电子邮件“ {0} ”已通过验证。",
9328
"xloc": [
9329
"message.handlebars->3->5"
9330
]
9331
},
9332
{
9333
"en": "E-mail \\\"{0}\\\" for user \\\"{1}\\\" not verified.",
9102
- "nl": "E-mail \\\"{0}\\\" voor gebruiker \\\"{1}\\\" niet geverifieerd.",
9334
+ "es": "Correo electrónico \\\"{0}\\\" para el usuario \\\"{1}\\\" no verificado.",
9335
+ "fr": "E-mail \\\"{0}\\\" pour l'utilisateur \\\"{1}\\\" non vérifié.",
9336
+ "hi": "उपयोगकर्ता \\\"{1}\\\" के लिए ई-मेल \\\"{0}\\\" सत्यापित नहीं।",
9337
"ja": "ユーザー\\\"{1}\\\"の電子メール\\\"{0}\\\"は確認されていません。",
9338
+ "ko": "사용자 \\\"{1}\\\"의 이메일 \\\"{0}\\\"이 (가) 확인되지 않았습니다.",
9339
+ "nl": "E-mail \\\"{0}\\\" voor gebruiker \\\"{1}\\\" niet geverifieerd.",
9340
+ "zh-chs": "未验证用户“ {1} ”的电子邮件“ {0} ”。",
9341
"xloc": [
9342
"message.handlebars->3->8"
9343
]
@@ -9124,40 +9361,65 @@
9361
},
9362
{
9363
"en": "ERROR: Invalid account check, verification url is only valid for 30 minutes.",
9127
- "nl": "FOUT: Ongeldige accountcontrole, verificatie URL is slechts 30 minuten geldig.",
9364
+ "es": "ERROR: verificación de cuenta no válida, la URL de verificación solo es válida durante 30 minutos.",
9365
+ "fr": "ERREUR: vérification de compte non valide, l'URL de vérification n'est valide que pendant 30 minutes.",
9366
+ "hi": "त्रुटि: अमान्य खाता जांच, सत्यापन url केवल 30 मिनट के लिए मान्य है।",
9367
"ja": "エラー:アカウントチェックが無効です。確認URLは30分間のみ有効です。",
9368
+ "ko": "오류 : 잘못된 계정 확인, 확인 URL은 30 분 동안 만 유효합니다.",
9369
+ "nl": "FOUT: Ongeldige accountcontrole, verificatie URL is slechts 30 minuten geldig.",
9370
+ "zh-chs": "错误:无效的帐户检查,验证网址仅在30分钟内有效。",
9371
"xloc": [
9372
"message.handlebars->3->12"
9373
]
9374
},
9375
{
9376
"en": "ERROR: Invalid account check.",
9135
- "nl": "FOUT: Ongeldige account controle.",
9377
+ "es": "ERROR: verificación de cuenta no válida.",
9378
+ "fr": "ERREUR: vérification de compte non valide.",
9379
+ "hi": "त्रुटि: अमान्य खाता जांच।",
9380
"ja": "エラー:アカウントチェックが無効です。",
9381
+ "ko": "오류 : 잘못된 계정 확인입니다.",
9382
+ "nl": "FOUT: Ongeldige account controle.",
9383
+ "zh-chs": "错误:无效的帐户检查。",
9384
"xloc": [
9385
"message.handlebars->3->11"
9386
]
9387
},
9388
{
9389
"en": "ERROR: Invalid domain.",
9143
- "nl": "FOUT: ongeldig domein.",
9390
+ "es": "ERROR: dominio inválido.",
9391
+ "fr": "ERREUR: domaine non valide.",
9392
+ "hi": "त्रुटि: अमान्य डोमेन।",
9393
"ja": "エラー:ドメインが無効です。",
9394
+ "ko": "오류 : 잘못된 도메인입니다.",
9395
+ "nl": "FOUT: ongeldig domein.",
9396
+ "zh-chs": "错误:无效的域。",
9397
"xloc": [
9398
"message.handlebars->3->2"
9399
]
9400
},
9401
{
9402
"en": "ERROR: Invalid e-mail \\\"{0}\\\" for user \\\"{1}\\\".",
9151
- "nl": "FOUT: Ongeldige e-mail \\\"{0}\\\" voor gebruiker \\\"{1}\\\".",
9403
+ "es": "ERROR: correo electrónico no válido \\\"{0}\\\" para el usuario \\\"{1}\\\".",
9404
+ "fr": "ERREUR: e-mail \\\"{0}\\\" non valide pour l'utilisateur \\\"{1}\\\".",
9405
+ "hi": "त्रुटि: उपयोगकर्ता के लिए \\\"{1}\\\" के लिए अमान्य ई-मेल \\\"{0}\\\"।",
9406
"ja": "エラー:ユーザー\\\"{1}\\\"の電子メール\\\"{0}\\\"が無効です。",
9407
+ "ko": "오류 : 사용자 \\\"{1}\\\"에 대한 잘못된 이메일 \\\"{0}\\\".",
9408
+ "nl": "FOUT: Ongeldige e-mail \\\"{0}\\\" voor gebruiker \\\"{1}\\\".",
9409
+ "zh-chs": "错误:用户“ {1} ”的无效电子邮件“ {0} ”。",
9410
"xloc": [
9411
"message.handlebars->3->4"
9412
]
9413
},
9414
{
9415
"en": "ERROR: Invalid username \\\"{0}\\\".",
9159
- "nl": "FOUT: Ongeldige gebruikersnaam \\\"{0}\\\".",
9416
+ "es": "ERROR: nombre de usuario no válido \\\"{0}\\\".",
9417
+ "fr": "ERREUR: nom d'utilisateur non valide \\\"{0}\\\".",
9418
+ "hi": "त्रुटि: अमान्य उपयोगकर्ता नाम \"{0} \\\"।",
9419
"ja": "エラー:ユーザー名「{0}」が無効です。",
9420
+ "ko": "오류 : 잘못된 사용자 이름 \\\"{0}\\\"입니다.",
9421
+ "nl": "FOUT: Ongeldige gebruikersnaam \\\"{0}\\\".",
9422
+ "zh-chs": "错误:无效的用户名“ {0} ”。",
9423
"xloc": [
9424
"message.handlebars->3->3"
9425
]
@@ -9249,10 +9511,10 @@
9511
"default-mobile.handlebars->9->296",
9512
"default-mobile.handlebars->9->298",
9513
"default-mobile.handlebars->9->316",
9252
- "default.handlebars->25->1208",
9253
- "default.handlebars->25->1238",
9254
- "default.handlebars->25->1260",
9255
- "default.handlebars->25->1272"
9514
+ "default.handlebars->25->1211",
9515
+ "default.handlebars->25->1241",
9516
+ "default.handlebars->25->1263",
9517
+ "default.handlebars->25->1275"
9518
]
9519
},
9520
{
@@ -9269,7 +9531,7 @@
9531
"ru": "Редактировать функции группы устройств",
9532
"zh-chs": "編輯設備組功能",
9533
"xloc": [
9272
- "default.handlebars->25->1224"
9534
+ "default.handlebars->25->1227"
9535
]
9536
},
9537
{
@@ -9286,8 +9548,8 @@
9548
"ru": "Редактировать права группы устройств",
9549
"zh-chs": "編輯設備組權限",
9550
"xloc": [
9289
- "default.handlebars->25->1257",
9290
- "default.handlebars->25->1269"
9551
+ "default.handlebars->25->1260",
9552
+ "default.handlebars->25->1272"
9553
]
9554
},
9555
{
@@ -9304,7 +9566,7 @@
9566
"ru": "Редактировать согласие пользователя группы устройств",
9567
"zh-chs": "編輯設備組用戶同意",
9568
"xloc": [
9307
- "default.handlebars->25->1209"
9569
+ "default.handlebars->25->1212"
9570
]
9571
},
9572
{
@@ -9322,7 +9584,7 @@
9584
"zh-chs": "編輯設備說明",
9585
"xloc": [
9586
"default-mobile.handlebars->9->310",
9325
- "default.handlebars->25->1251"
9587
+ "default.handlebars->25->1254"
9588
]
9589
},
9590
{
@@ -9331,22 +9593,29 @@
9593
"en": "Edit Device Permissions",
9594
"es": "Editar los permisos del dispositivo",
9595
"fr": "Modifier les autorisations de périphérique",
9596
+ "hi": "डिवाइस अनुमतियाँ संपादित करें",
9597
"ja": "デバイスの権限を編集する",
9598
+ "ko": "장치 권한 편집",
9599
"nl": "Bewerk apparaatrechten",
9600
"ru": "Изменить разрешения устройства",
9601
"zh-chs": "编辑设备权限",
9602
"xloc": [
9339
- "default.handlebars->25->1262",
9340
- "default.handlebars->25->1264"
9603
+ "default.handlebars->25->1265",
9604
+ "default.handlebars->25->1267"
9605
]
9606
},
9607
{
9608
"de": "Geräte-Benutzereinwilligung bearbeiten",
9609
"en": "Edit Device User Consent",
9610
+ "es": "Editar consentimiento del usuario del dispositivo",
9611
+ "fr": "Modifier le consentement de l'utilisateur de l'appareil",
9612
+ "hi": "डिवाइस उपयोगकर्ता सहमति संपादित करें",
9613
"ja": "デバイスのユーザー同意の編集",
9614
+ "ko": "장치 사용자 동의 편집",
9615
"nl": "Gebruikerstoestemming apparaat bewerken",
9616
+ "zh-chs": "编辑设备用户同意",
9617
"xloc": [
9349
- "default.handlebars->25->1211"
9618
+ "default.handlebars->25->1214"
9619
]
9620
},
9621
{
@@ -9355,7 +9624,9 @@
9624
"en": "Edit Group",
9625
"es": "Editar Grupo",
9626
"fr": "Modifier le groupe",
9627
+ "hi": "समूह संपादित करें",
9628
"ja": "グループを編集",
9629
+ "ko": "그룹 편집",
9630
"nl": "Bewerk groep",
9631
"ru": "Редактировать группу",
9632
"zh-chs": "编辑组",
@@ -9398,16 +9669,21 @@
9669
"zh-chs": "編輯筆記",
9670
"xloc": [
9671
"default-mobile.handlebars->9->323",
9401
- "default.handlebars->25->1279"
9672
+ "default.handlebars->25->1282"
9673
]
9674
},
9675
{
9676
"de": "Benutzereinwilligung bearbeiten",
9677
"en": "Edit User Consent",
9678
+ "es": "Editar consentimiento del usuario",
9679
+ "fr": "Modifier le consentement de l'utilisateur",
9680
+ "hi": "उपयोगकर्ता सहमति संपादित करें",
9681
"ja": "ユーザーの同意を編集",
9682
+ "ko": "사용자 동의 편집",
9683
"nl": "Gebruikerstoestemming bewerken",
9684
+ "zh-chs": "编辑用户同意",
9685
"xloc": [
9410
- "default.handlebars->25->1210"
9686
+ "default.handlebars->25->1213"
9687
]
9688
},
9689
{
@@ -9424,7 +9700,7 @@
9700
"ru": "Редактировать права пользователя для группы устройств",
9701
"zh-chs": "編輯用戶設備組權限",
9702
"xloc": [
9427
- "default.handlebars->25->1270"
9703
+ "default.handlebars->25->1273"
9704
]
9705
},
9706
{
@@ -9433,12 +9709,14 @@
9709
"en": "Edit User Device Permissions",
9710
"es": "Editar los permisos del usuario del dispositivo",
9711
"fr": "Modifier les autorisations des périphériques utilisateur",
9712
+ "hi": "उपयोगकर्ता डिवाइस अनुमतियाँ संपादित करें",
9713
"ja": "ユーザーデバイスの権限を編集する",
9714
+ "ko": "사용자 장치 권한 편집",
9715
"nl": "Bewerk gebruikersapparaatrechten",
9716
"ru": "Изменить разрешения для пользовательских устройств",
9717
"zh-chs": "编辑用户设备权限",
9718
"xloc": [
9441
- "default.handlebars->25->1265"
9719
+ "default.handlebars->25->1268"
9720
]
9721
},
9722
{
@@ -9455,16 +9733,21 @@
9733
"ru": "Редактировать группу пользователей",
9734
"zh-chs": "編輯用戶組",
9735
"xloc": [
9458
- "default.handlebars->25->1521"
9736
+ "default.handlebars->25->1524"
9737
]
9738
},
9739
{
9740
"de": "Benutzergruppen-Geräteberechtigungen bearbeiten",
9741
"en": "Edit User Group Device Permissions",
9742
+ "es": "Editar permisos de dispositivo de grupo de usuarios",
9743
+ "fr": "Modifier les autorisations de périphérique du groupe d'utilisateurs",
9744
+ "hi": "उपयोगकर्ता समूह डिवाइस अनुमतियाँ संपादित करें",
9745
"ja": "ユーザーグループデバイス権限の編集",
9746
+ "ko": "사용자 그룹 장치 권한 편집",
9747
"nl": "Gebruikersmachtigingen voor apparaatgroep bewerken",
9748
+ "zh-chs": "编辑用户组设备权限",
9749
"xloc": [
9467
- "default.handlebars->25->1267"
9750
+ "default.handlebars->25->1270"
9751
]
9752
},
9753
{
@@ -9499,10 +9782,10 @@
9782
"zh-chs": "電子郵件",
9783
"xloc": [
9784
"default-mobile.handlebars->9->47",
9502
- "default.handlebars->25->1442",
9503
- "default.handlebars->25->1542",
9504
- "default.handlebars->25->1543",
9505
- "default.handlebars->25->1594",
9785
+ "default.handlebars->25->1445",
9786
+ "default.handlebars->25->1545",
9787
+ "default.handlebars->25->1546",
9788
+ "default.handlebars->25->1597",
9789
"default.handlebars->25->279",
9790
"login-mobile.handlebars->5->42",
9791
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -9525,7 +9808,7 @@
9808
"zh-chs": "電郵地址變更",
9809
"xloc": [
9810
"default-mobile.handlebars->9->48",
9528
- "default.handlebars->25->1075"
9811
+ "default.handlebars->25->1078"
9812
]
9813
},
9814
{
@@ -9543,13 +9826,18 @@
9826
"zh-chs": "郵件認證",
9827
"xloc": [
9828
"default-mobile.handlebars->9->37",
9546
- "default.handlebars->25->844"
9829
+ "default.handlebars->25->847"
9830
]
9831
},
9832
{
9833
"en": "Email Confirmation",
9834
+ "es": "confirmación de correo electrónico",
9835
+ "fr": "confirmation de l'émail",
9836
+ "hi": "ईमेल की पुष्टि",
9837
"ja": "メール確認",
9838
+ "ko": "이메일 확인",
9839
"nl": "E-mail bevestigen",
9840
+ "zh-chs": "邮件确认",
9841
"xloc": [
9842
"login-mobile.handlebars->5->43",
9843
"login.handlebars->5->44"
@@ -9561,7 +9849,9 @@
9849
"en": "Email Traffic",
9850
"es": "Tráfico de correo electrónico",
9851
"fr": "Trafic des e-mails",
9852
+ "hi": "ईमेल ट्रैफ़िक",
9853
"ja": "メールトラフィック",
9854
+ "ko": "이메일 트래픽",
9855
"nl": "E-mailverkeer",
9856
"ru": "Почтовый трафик",
9857
"zh-chs": "电子邮件流量"
@@ -9581,15 +9871,19 @@
9871
"zh-chs": "電子郵件驗證",
9872
"xloc": [
9873
"default-mobile.handlebars->9->46",
9584
- "default.handlebars->25->1073"
9874
+ "default.handlebars->25->1076"
9875
]
9876
},
9877
{
9878
"de": "E-Mail-Einladung",
9879
"en": "Email invitation",
9880
"es": "Email de invitación",
9881
+ "fr": "Invitation par e-mail",
9882
+ "hi": "ईमेल आमंत्रण",
9883
"ja": "招待メール",
9884
+ "ko": "이메일 초대",
9885
"nl": "E-mail uitnodiging",
9886
+ "zh-chs": "电子邮件邀请",
9887
"xloc": [
9888
"default.handlebars->25->276"
9889
]
@@ -9600,12 +9894,14 @@
9894
"en": "Email is not verified",
9895
"es": "El email no esta no esta verficado",
9896
"fr": "L'email n'est pas verifié",
9897
+ "hi": "ईमेल की पुष्टि नहीं हुई",
9898
"ja": "メールは検証されていない",
9899
+ "ko": "이메일이 확인되지 않았습니다",
9900
"nl": "E-mail is niet geverifieerd",
9901
"ru": "Электронная почта не подтверждена",
9902
"zh-chs": "邮件未验证",
9903
"xloc": [
9608
- "default.handlebars->25->1402"
9904
+ "default.handlebars->25->1405"
9905
]
9906
},
9907
{
@@ -9622,8 +9918,8 @@
9918
"ru": "Email подтвержден",
9919
"zh-chs": "電子郵件已驗證",
9920
"xloc": [
9625
- "default.handlebars->25->1403",
9626
- "default.handlebars->25->1539"
9921
+ "default.handlebars->25->1406",
9922
+ "default.handlebars->25->1542"
9923
]
9924
},
9925
{
@@ -9640,7 +9936,7 @@
9936
"ru": "Email подтвержден.",
9937
"zh-chs": "電子郵件已驗證。",
9938
"xloc": [
9643
- "default.handlebars->25->1448"
9939
+ "default.handlebars->25->1451"
9940
]
9941
},
9942
{
@@ -9657,7 +9953,7 @@
9953
"ru": "Email не подтвержден",
9954
"zh-chs": "電子郵件未驗證",
9955
"xloc": [
9660
- "default.handlebars->25->1540"
9956
+ "default.handlebars->25->1543"
9957
]
9958
},
9959
{
@@ -9680,8 +9976,13 @@
9976
},
9977
{
9978
"en": "Email verification required, check your mailbox and click the confirmation link.",
9979
+ "es": "Se requiere verificación de correo electrónico, verifique su buzón y haga clic en el enlace de confirmación.",
9980
+ "fr": "Vérification par e-mail requise, vérifiez votre boîte aux lettres et cliquez sur le lien de confirmation.",
9981
+ "hi": "ईमेल सत्यापन की आवश्यकता है, अपने मेलबॉक्स की जांच करें और पुष्टि लिंक पर क्लिक करें।",
9982
"ja": "メールの確認が必要です。メールボックスを確認し、確認リンクをクリックしてください。",
9983
+ "ko": "이메일 확인이 필요합니다. 사서함을 확인하고 확인 링크를 클릭하십시오.",
9984
"nl": "E-mailverificatie vereist, controleer uw mailbox en klik op de bevestigingslink.",
9985
+ "zh-chs": "需要通过电子邮件验证,请检查您的邮箱,然后单击确认链接。",
9986
"xloc": [
9987
"login-mobile.handlebars->5->3",
9988
"login.handlebars->5->3"
@@ -9689,10 +9990,15 @@
9990
},
9991
{
9992
"en": "Email/SMS Traffic",
9993
+ "es": "Tráfico de correo electrónico / SMS",
9994
+ "fr": "Trafic e-mail / SMS",
9995
+ "hi": "ईमेल / एसएमएस आवागमन",
9996
"ja": "メール/ SMSトラフィック",
9997
+ "ko": "이메일 / SMS 트래픽",
9998
"nl": "Email/SMS verkeer",
9999
+ "zh-chs": "电子邮件/短信流量",
10000
"xloc": [
9695
- "default.handlebars->25->1703"
10001
+ "default.handlebars->25->1706"
10002
]
10003
},
10004
{
@@ -9731,7 +10037,7 @@
10037
"ru": "Включить коды приглашения",
10038
"zh-chs": "啟用邀請代碼",
10039
"xloc": [
9734
- "default.handlebars->25->1300"
10040
+ "default.handlebars->25->1303"
10041
]
10042
},
10043
{
@@ -9766,7 +10072,7 @@
10072
"zh-chs": "啟用電子郵件兩因素驗證。",
10073
"xloc": [
10074
"default-mobile.handlebars->9->39",
9769
- "default.handlebars->25->846"
10075
+ "default.handlebars->25->849"
10076
]
10077
},
10078
{
@@ -9817,7 +10123,7 @@
10123
"ru": "Английский",
10124
"zh-chs": "英語",
10125
"xloc": [
9820
- "default.handlebars->25->908"
10126
+ "default.handlebars->25->911"
10127
]
10128
},
10129
{
@@ -9834,7 +10140,7 @@
10140
"ru": "Английский (Австралия)",
10141
"zh-chs": "英文(澳洲)",
10142
"xloc": [
9837
- "default.handlebars->25->909"
10143
+ "default.handlebars->25->912"
10144
]
10145
},
10146
{
@@ -9851,7 +10157,7 @@
10157
"ru": "Английский (Белиз)",
10158
"zh-chs": "英語(伯利茲)",
10159
"xloc": [
9854
- "default.handlebars->25->910"
10160
+ "default.handlebars->25->913"
10161
]
10162
},
10163
{
@@ -9868,7 +10174,7 @@
10174
"ru": "Английский (Канада)",
10175
"zh-chs": "英文(加拿大)",
10176
"xloc": [
9871
- "default.handlebars->25->911"
10177
+ "default.handlebars->25->914"
10178
]
10179
},
10180
{
@@ -9885,7 +10191,7 @@
10191
"ru": "Английский (Ирландия)",
10192
"zh-chs": "英文(愛爾蘭)",
10193
"xloc": [
9888
- "default.handlebars->25->912"
10194
+ "default.handlebars->25->915"
10195
]
10196
},
10197
{
@@ -9902,7 +10208,7 @@
10208
"ru": "Английский (Ямайка)",
10209
"zh-chs": "英文(牙買加)",
10210
"xloc": [
9905
- "default.handlebars->25->913"
10211
+ "default.handlebars->25->916"
10212
]
10213
},
10214
{
@@ -9919,7 +10225,7 @@
10225
"ru": "Английский (Новая Зеландия)",
10226
"zh-chs": "英文(紐西蘭)",
10227
"xloc": [
9922
- "default.handlebars->25->914"
10228
+ "default.handlebars->25->917"
10229
]
10230
},
10231
{
@@ -9936,7 +10242,7 @@
10242
"ru": "Английский (Филиппины)",
10243
"zh-chs": "英文(菲律賓)",
10244
"xloc": [
9939
- "default.handlebars->25->915"
10245
+ "default.handlebars->25->918"
10246
]
10247
},
10248
{
@@ -9953,7 +10259,7 @@
10259
"ru": "Английский (Южная Африка)",
10260
"zh-chs": "英語(南非)",
10261
"xloc": [
9956
- "default.handlebars->25->916"
10262
+ "default.handlebars->25->919"
10263
]
10264
},
10265
{
@@ -9970,7 +10276,7 @@
10276
"ru": "Английский (Тринидад и Тобаго)",
10277
"zh-chs": "英文(特立尼達和多巴哥)",
10278
"xloc": [
9973
- "default.handlebars->25->917"
10279
+ "default.handlebars->25->920"
10280
]
10281
},
10282
{
@@ -9987,7 +10293,7 @@
10293
"ru": "Английский (Великобритания)",
10294
"zh-chs": "英文(英國)",
10295
"xloc": [
9990
- "default.handlebars->25->918"
10296
+ "default.handlebars->25->921"
10297
]
10298
},
10299
{
@@ -10004,7 +10310,7 @@
10310
"ru": "Английский (Соединенные Штаты)",
10311
"zh-chs": "美國英語)",
10312
"xloc": [
10007
- "default.handlebars->25->919"
10313
+ "default.handlebars->25->922"
10314
]
10315
},
10316
{
@@ -10021,7 +10327,7 @@
10327
"ru": "Английский (Зимбабве)",
10328
"zh-chs": "英文(津巴布韋)",
10329
"xloc": [
10024
- "default.handlebars->25->920"
10330
+ "default.handlebars->25->923"
10331
]
10332
},
10333
{
@@ -10038,8 +10344,8 @@
10344
"ru": "Ввод",
10345
"zh-chs": "輸入",
10346
"xloc": [
10041
- "default.handlebars->25->1101",
10042
- "default.handlebars->25->1102"
10347
+ "default.handlebars->25->1104",
10348
+ "default.handlebars->25->1105"
10349
]
10350
},
10351
{
@@ -10056,7 +10362,7 @@
10362
"ru": "Введите разделенный запятыми список имен административных областей.",
10363
"zh-chs": "輸入管理領域名稱的逗號分隔列表。",
10364
"xloc": [
10059
- "default.handlebars->25->1452"
10365
+ "default.handlebars->25->1455"
10366
]
10367
},
10368
{
@@ -10090,7 +10396,7 @@
10396
"ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.",
10397
"zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
10398
"xloc": [
10093
- "default.handlebars->25->684"
10399
+ "default.handlebars->25->687"
10400
]
10401
},
10402
{
@@ -10130,10 +10436,15 @@
10436
},
10437
{
10438
"en": "Enter your SMS capable phone number. Once verified, the number may be used for login verification and other notifications.",
10133
- "nl": "Voer uw telefoonnummer in dat geschikt is voor SMS. Na verificatie kan het nummer worden gebruikt voor inlogverificatie en andere meldingen.",
10439
+ "es": "Ingrese su número de teléfono con capacidad para SMS. Una vez verificado, el número puede usarse para la verificación de inicio de sesión y otras notificaciones.",
10440
+ "fr": "Entrez votre numéro de téléphone compatible SMS. Une fois vérifié, le numéro peut être utilisé pour la vérification de connexion et d'autres notifications.",
10441
+ "hi": "अपना एसएमएस सक्षम फोन नंबर दर्ज करें। एक बार सत्यापित करने के बाद, संख्या का उपयोग लॉगिन सत्यापन और अन्य सूचनाओं के लिए किया जा सकता है।",
10442
"ja": "SMS対応の電話番号を入力します。確認後、番号はログイン確認やその他の通知に使用できます。",
10443
+ "ko": "SMS 가능 전화 번호를 입력하십시오. 확인되면이 번호는 로그인 확인 및 기타 알림에 사용될 수 있습니다.",
10444
+ "nl": "Voer uw telefoonnummer in dat geschikt is voor SMS. Na verificatie kan het nummer worden gebruikt voor inlogverificatie en andere meldingen.",
10445
+ "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
10446
"xloc": [
10136
- "default.handlebars->25->841"
10447
+ "default.handlebars->25->844"
10448
]
10449
},
10450
{
@@ -10184,7 +10495,7 @@
10495
"ru": "Эсперанто",
10496
"zh-chs": "世界語",
10497
"xloc": [
10187
- "default.handlebars->25->921"
10498
+ "default.handlebars->25->924"
10499
]
10500
},
10501
{
@@ -10201,7 +10512,7 @@
10512
"ru": "Эстонский",
10513
"zh-chs": "愛沙尼亞語",
10514
"xloc": [
10204
- "default.handlebars->25->922"
10515
+ "default.handlebars->25->925"
10516
]
10517
},
10518
{
@@ -10218,7 +10529,7 @@
10529
"ru": "Детали события",
10530
"zh-chs": "活動詳情",
10531
"xloc": [
10221
- "default.handlebars->25->761"
10532
+ "default.handlebars->25->764"
10533
]
10534
},
10535
{
@@ -10235,7 +10546,7 @@
10546
"ru": "Экспорт списка событий",
10547
"zh-chs": "活動列表導出",
10548
"xloc": [
10238
- "default.handlebars->25->1378"
10549
+ "default.handlebars->25->1381"
10550
]
10551
},
10552
{
@@ -10324,7 +10635,7 @@
10635
"ru": "Расширенный ASCII",
10636
"zh-chs": "擴展ASCII",
10637
"xloc": [
10327
- "default.handlebars->25->710"
10638
+ "default.handlebars->25->713"
10639
]
10640
},
10641
{
@@ -10358,7 +10669,7 @@
10669
"ru": "Внешний",
10670
"zh-chs": "外部",
10671
"xloc": [
10361
- "default.handlebars->25->1688"
10672
+ "default.handlebars->25->1691"
10673
]
10674
},
10675
{
@@ -10375,7 +10686,7 @@
10686
"ru": "Mакедонский (БЮР)",
10687
"zh-chs": "FYRO馬其頓語",
10688
"xloc": [
10378
- "default.handlebars->25->972"
10689
+ "default.handlebars->25->975"
10690
]
10691
},
10692
{
@@ -10392,7 +10703,7 @@
10703
"ru": "Фарерский",
10704
"zh-chs": "法羅語",
10705
"xloc": [
10395
- "default.handlebars->25->923"
10706
+ "default.handlebars->25->926"
10707
]
10708
},
10709
{
@@ -10412,6 +10723,18 @@
10723
"default.handlebars->25->67"
10724
]
10725
},
10726
+ {
10727
+ "en": "Failed to start remote terminal session, {0} ({1})",
10728
+ "es": "Error al iniciar sesión de terminal remota, {0} ({1})",
10729
+ "fr": "Impossible de démarrer la session de terminal distant, {0} ({1})",
10730
+ "hi": "दूरस्थ टर्मिनल सत्र शुरू करने में विफल, {0} ({1})",
10731
+ "ja": "リモートターミナルセッションの開始に失敗しました、{0}({1})",
10732
+ "ko": "원격 터미널 세션을 시작하지 못했습니다 : {0} ({1})",
10733
+ "zh-chs": "无法启动远程终端会话{0}({1})",
10734
+ "xloc": [
10735
+ "default.handlebars->25->677"
10736
+ ]
10737
+ },
10738
{
10739
"cs": "Farsi (perština)",
10740
"de": "Persisch",
@@ -10426,7 +10749,7 @@
10749
"ru": "Фарси (Персидский)",
10750
"zh-chs": "波斯語(波斯語)",
10751
"xloc": [
10429
- "default.handlebars->25->924"
10752
+ "default.handlebars->25->927"
10753
]
10754
},
10755
{
@@ -10461,7 +10784,7 @@
10784
"ru": "Функции",
10785
"zh-chs": "特徵",
10786
"xloc": [
10464
- "default.handlebars->25->1130"
10787
+ "default.handlebars->25->1133"
10788
]
10789
},
10790
{
@@ -10478,7 +10801,7 @@
10801
"ru": "Фиджи",
10802
"zh-chs": "斐濟",
10803
"xloc": [
10481
- "default.handlebars->25->925"
10804
+ "default.handlebars->25->928"
10805
]
10806
},
10807
{
@@ -10497,7 +10820,7 @@
10820
"xloc": [
10821
"default-mobile.handlebars->9->259",
10822
"default.handlebars->25->424",
10500
- "default.handlebars->25->733"
10823
+ "default.handlebars->25->736"
10824
]
10825
},
10826
{
@@ -10531,7 +10854,7 @@
10854
"ru": "Драйвер файловой системы",
10855
"zh-chs": "FileSystemDriver",
10856
"xloc": [
10534
- "default.handlebars->25->693"
10857
+ "default.handlebars->25->696"
10858
]
10859
},
10860
{
@@ -10548,7 +10871,7 @@
10871
"ru": "Файлы",
10872
"zh-chs": "檔案",
10873
"xloc": [
10551
- "default.handlebars->25->1219",
10874
+ "default.handlebars->25->1222",
10875
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
10876
"default.handlebars->contextMenu->cxfiles"
10877
]
@@ -10584,8 +10907,8 @@
10907
"ru": "Уведомление файлов",
10908
"zh-chs": "文件通知",
10909
"xloc": [
10587
- "default.handlebars->25->1138",
10588
- "default.handlebars->25->1567",
10910
+ "default.handlebars->25->1141",
10911
+ "default.handlebars->25->1570",
10912
"default.handlebars->25->504"
10913
]
10914
},
@@ -10603,8 +10926,8 @@
10926
"ru": "Запрос файлов",
10927
"zh-chs": "文件提示",
10928
"xloc": [
10606
- "default.handlebars->25->1137",
10607
- "default.handlebars->25->1566",
10929
+ "default.handlebars->25->1140",
10930
+ "default.handlebars->25->1569",
10931
"default.handlebars->25->503"
10932
]
10933
},
@@ -10641,7 +10964,7 @@
10964
"ru": "Финский",
10965
"zh-chs": "芬蘭",
10966
"xloc": [
10644
- "default.handlebars->25->926"
10967
+ "default.handlebars->25->929"
10968
]
10969
},
10970
{
@@ -10707,7 +11030,9 @@
11030
"en": "For Apple OSX, nagivate to the following link to complete the process:",
11031
"es": "Para Apple OSX, navegue hasta el siguiente enlace para completar el proceso:",
11032
"fr": "Pour Apple OSX, accédez au lien suivant pour terminer le processus:",
11033
+ "hi": "Apple OSX के लिए, इस प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक पर जाएं:",
11034
"ja": "Apple OSXの場合、次のリンクに移動してプロセスを完了します。",
11035
+ "ko": "Apple OSX의 경우 다음 링크로 이동하여 프로세스를 완료하십시오.",
11036
"nl": "Voor Apple OSX ga je naar de volgende link om het proces te voltooien:",
11037
"ru": "Для Apple OSX перейдите по следующей ссылке, чтобы завершить процесс:",
11038
"zh-chs": "对于Apple OSX,请导航至以下链接以完成该过程:",
@@ -10721,7 +11046,9 @@
11046
"en": "For Linux, cut & paste the following in a terminal to install the agent:",
11047
"es": "Para Linux, copie y pegue lo siguiente en la terminal para instalar el agente:",
11048
"fr": "Pour Linux, copiez et collez les éléments suivants dans un terminal pour installer l'agent:",
11049
+ "hi": "लिनक्स में, एजेंट को स्थापित करने के लिए टर्मिनल में निम्नलिखित को काटें और चिपकाएँ:",
11050
"ja": "Linuxの場合は、ターミナルで以下をカットアンドペーストしてエージェントをインストールします。",
11051
+ "ko": "Linux의 경우 터미널에서 다음을 잘라내어 붙여 넣어 에이전트를 설치하십시오.",
11052
"nl": "Voor Linux, knip het volgende en plak dit in een terminal om de agent te installeren:",
11053
"ru": "Для Linux вырезайте и вставляйте в терминал следующее, чтобы установить агент:",
11054
"zh-chs": "对于Linux,将以下内容剪切并粘贴到终端中以安装代理程序:",
@@ -10736,7 +11063,9 @@
11063
"en": "For Windows, nagivate to the following link to complete the process:",
11064
"es": "Para windows, navegue al siguiente enlace para completar el proceso:",
11065
"fr": "Pour Windows, accédez au lien suivant pour terminer le processus:",
11066
+ "hi": "विंडोज के लिए, प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक पर जाएं:",
11067
"ja": "Windowsの場合、次のリンクに移動してプロセスを完了します。",
11068
+ "ko": "Windows의 경우 다음 링크로 이동하여 프로세스를 완료하십시오.",
11069
"nl": "Voor Windows, ga je naar de volgende link om het proces te voltooien:",
11070
"ru": "Для Windows откройте следующую ссылку, чтобы завершить процесс:",
11071
"zh-chs": "对于Windows,请导航至以下链接以完成该过程:",
@@ -10758,8 +11087,8 @@
11087
"ru": "Принудительно сбросить пароль при следующем входе в систему.",
11088
"zh-chs": "下次登錄時強制重置密碼。",
11089
"xloc": [
10761
- "default.handlebars->25->1446",
10762
- "default.handlebars->25->1603"
11090
+ "default.handlebars->25->1449",
11091
+ "default.handlebars->25->1606"
11092
]
11093
},
11094
{
@@ -10845,8 +11174,8 @@
11174
"ru": "Свободно",
11175
"zh-chs": "自由",
11176
"xloc": [
10848
- "default.handlebars->25->1649",
10849
- "default.handlebars->25->1651"
11177
+ "default.handlebars->25->1652",
11178
+ "default.handlebars->25->1654"
11179
]
11180
},
11181
{
@@ -10881,7 +11210,7 @@
11210
"ru": "Французский (Бельгия)",
11211
"zh-chs": "法語(比利時)",
11212
"xloc": [
10884
- "default.handlebars->25->928"
11213
+ "default.handlebars->25->931"
11214
]
11215
},
11216
{
@@ -10898,7 +11227,7 @@
11227
"ru": "Французский (Канада)",
11228
"zh-chs": "法語(加拿大)",
11229
"xloc": [
10901
- "default.handlebars->25->929"
11230
+ "default.handlebars->25->932"
11231
]
11232
},
11233
{
@@ -10915,7 +11244,7 @@
11244
"ru": "Французский (Франция)",
11245
"zh-chs": "法語(法國)",
11246
"xloc": [
10918
- "default.handlebars->25->930"
11247
+ "default.handlebars->25->933"
11248
]
11249
},
11250
{
@@ -10932,7 +11261,7 @@
11261
"ru": "Французский (Люксембург)",
11262
"zh-chs": "法語(盧森堡)",
11263
"xloc": [
10935
- "default.handlebars->25->931"
11264
+ "default.handlebars->25->934"
11265
]
11266
},
11267
{
@@ -10949,7 +11278,7 @@
11278
"ru": "Французский (Монако)",
11279
"zh-chs": "法語(摩納哥)",
11280
"xloc": [
10952
- "default.handlebars->25->932"
11281
+ "default.handlebars->25->935"
11282
]
11283
},
11284
{
@@ -10966,7 +11295,7 @@
11295
"ru": "Французский (Стандартный)",
11296
"zh-chs": "法語(標準)",
11297
"xloc": [
10969
- "default.handlebars->25->927"
11298
+ "default.handlebars->25->930"
11299
]
11300
},
11301
{
@@ -10983,7 +11312,7 @@
11312
"ru": "Французский (Швейцария)",
11313
"zh-chs": "法語(瑞士)",
11314
"xloc": [
10986
- "default.handlebars->25->933"
11315
+ "default.handlebars->25->936"
11316
]
11317
},
11318
{
@@ -11000,7 +11329,7 @@
11329
"ru": "Фризский",
11330
"zh-chs": "弗里斯蘭語",
11331
"xloc": [
11003
- "default.handlebars->25->934"
11332
+ "default.handlebars->25->937"
11333
]
11334
},
11335
{
@@ -11017,7 +11346,7 @@
11346
"ru": "Фриульский",
11347
"zh-chs": "弗留利",
11348
"xloc": [
11020
- "default.handlebars->25->935"
11349
+ "default.handlebars->25->938"
11350
]
11351
},
11352
{
@@ -11038,9 +11367,9 @@
11367
"default-mobile.handlebars->9->297",
11368
"default-mobile.handlebars->9->315",
11369
"default-mobile.handlebars->9->74",
11041
- "default.handlebars->25->1108",
11042
- "default.handlebars->25->1237",
11043
- "default.handlebars->25->1458"
11370
+ "default.handlebars->25->1111",
11371
+ "default.handlebars->25->1240",
11372
+ "default.handlebars->25->1461"
11373
]
11374
},
11375
{
@@ -11057,7 +11386,7 @@
11386
"ru": "Администратор с полным доступом (все права)",
11387
"zh-chs": "正式管理員(保留所有權利)",
11388
"xloc": [
11060
- "default.handlebars->25->1271"
11389
+ "default.handlebars->25->1274"
11390
]
11391
},
11392
{
@@ -11097,7 +11426,9 @@
11426
"en": "Full Rights",
11427
"es": "Derechos Completos",
11428
"fr": "Droits complets",
11429
+ "hi": "पूर्ण अधिकार",
11430
"ja": "完全な権利",
11431
+ "ko": "모든 권리",
11432
"nl": "Volledige rechten",
11433
"ru": "Полные права",
11434
"zh-chs": "完全权利",
@@ -11138,15 +11469,20 @@
11469
"ru": "Администратор с полным доступом",
11470
"zh-chs": "正式管理員",
11471
"xloc": [
11141
- "default.handlebars->25->1535"
11472
+ "default.handlebars->25->1538"
11473
]
11474
},
11475
{
11476
"en": "GPU",
11477
+ "es": "GPU",
11478
+ "fr": "GPU",
11479
+ "hi": "GPU",
11480
"ja": "GPU",
11481
+ "ko": "GPU",
11482
"nl": "GPU",
11483
+ "zh-chs": "显卡",
11484
"xloc": [
11149
- "default.handlebars->25->809"
11485
+ "default.handlebars->25->812"
11486
]
11487
},
11488
{
@@ -11163,7 +11499,7 @@
11499
"ru": "Гэльский (Ирландский)",
11500
"zh-chs": "蓋爾語(愛爾蘭)",
11501
"xloc": [
11166
- "default.handlebars->25->937"
11502
+ "default.handlebars->25->940"
11503
]
11504
},
11505
{
@@ -11180,7 +11516,7 @@
11516
"ru": "Гэльский (Шотландия)",
11517
"zh-chs": "蓋爾語(蘇格蘭語)",
11518
"xloc": [
11183
- "default.handlebars->25->936"
11519
+ "default.handlebars->25->939"
11520
]
11521
},
11522
{
@@ -11197,7 +11533,7 @@
11533
"ru": "Галицкий",
11534
"zh-chs": "加拉契人",
11535
"xloc": [
11200
- "default.handlebars->25->938"
11536
+ "default.handlebars->25->941"
11537
]
11538
},
11539
{
@@ -11304,7 +11640,7 @@
11640
"ru": "Грузинский",
11641
"zh-chs": "格魯吉亞人",
11642
"xloc": [
11307
- "default.handlebars->25->939"
11643
+ "default.handlebars->25->942"
11644
]
11645
},
11646
{
@@ -11321,7 +11657,7 @@
11657
"ru": "Немецкий (Австрия)",
11658
"zh-chs": "德語(奧地利)",
11659
"xloc": [
11324
- "default.handlebars->25->941"
11660
+ "default.handlebars->25->944"
11661
]
11662
},
11663
{
@@ -11338,7 +11674,7 @@
11674
"ru": "Немецкий (Германия)",
11675
"zh-chs": "德文(德國)",
11676
"xloc": [
11341
- "default.handlebars->25->942"
11677
+ "default.handlebars->25->945"
11678
]
11679
},
11680
{
@@ -11355,7 +11691,7 @@
11691
"ru": "Немецкий (Лихтенштейн)",
11692
"zh-chs": "德文(列支敦士登)",
11693
"xloc": [
11358
- "default.handlebars->25->943"
11694
+ "default.handlebars->25->946"
11695
]
11696
},
11697
{
@@ -11372,7 +11708,7 @@
11708
"ru": "Немецкий (Люксембург)",
11709
"zh-chs": "德語(盧森堡)",
11710
"xloc": [
11375
- "default.handlebars->25->944"
11711
+ "default.handlebars->25->947"
11712
]
11713
},
11714
{
@@ -11389,7 +11725,7 @@
11725
"ru": "Немецкий (Стандартный)",
11726
"zh-chs": "德語(標準)",
11727
"xloc": [
11392
- "default.handlebars->25->940"
11728
+ "default.handlebars->25->943"
11729
]
11730
},
11731
{
@@ -11406,7 +11742,7 @@
11742
"ru": "Немецкий (Швейцария)",
11743
"zh-chs": "德語(瑞士)",
11744
"xloc": [
11409
- "default.handlebars->25->945"
11745
+ "default.handlebars->25->948"
11746
]
11747
},
11748
{
@@ -11446,8 +11782,13 @@
11782
},
11783
{
11784
"en": "Go to login page",
11449
- "nl": "Ga naar de inlogpagina",
11785
+ "es": "Ir a la página de inicio de sesión",
11786
+ "fr": "Accéder à la page de connexion",
11787
+ "hi": "लॉगइन पेज पर जाएं",
11788
"ja": "ログインページに移動",
11789
+ "ko": "로그인 페이지로 이동",
11790
+ "nl": "Ga naar de inlogpagina",
11791
+ "zh-chs": "进入登录页面",
11792
"xloc": [
11793
"message.handlebars->3->13"
11794
]
@@ -11484,7 +11825,7 @@
11825
"ru": "Хорошо",
11826
"zh-chs": "好",
11827
"xloc": [
11487
- "default.handlebars->25->1104"
11828
+ "default.handlebars->25->1107"
11829
]
11830
},
11831
{
@@ -11521,7 +11862,7 @@
11862
"ru": "Греческий",
11863
"zh-chs": "希臘語",
11864
"xloc": [
11524
- "default.handlebars->25->946"
11865
+ "default.handlebars->25->949"
11866
]
11867
},
11868
{
@@ -11557,8 +11898,8 @@
11898
"ru": "Групповое действие",
11899
"zh-chs": "集體行動",
11900
"xloc": [
11560
- "default.handlebars->25->1415",
11561
- "default.handlebars->25->1478",
11901
+ "default.handlebars->25->1418",
11902
+ "default.handlebars->25->1481",
11903
"default.handlebars->25->393",
11904
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
11905
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -11579,7 +11920,7 @@
11920
"ru": "Члены группы",
11921
"zh-chs": "小組成員",
11922
"xloc": [
11582
- "default.handlebars->25->1498"
11923
+ "default.handlebars->25->1501"
11924
]
11925
},
11926
{
@@ -11596,7 +11937,7 @@
11937
"ru": "Права на группу для пользователя {0}.",
11938
"zh-chs": "用戶{0}的組權限。",
11939
"xloc": [
11599
- "default.handlebars->25->1236"
11940
+ "default.handlebars->25->1239"
11941
]
11942
},
11943
{
@@ -11613,7 +11954,7 @@
11954
"ru": "Права на группу для {0}.",
11955
"zh-chs": "{0}的組權限。",
11956
"xloc": [
11616
- "default.handlebars->25->1235"
11957
+ "default.handlebars->25->1238"
11958
]
11959
},
11960
{
@@ -11664,7 +12005,7 @@
12005
"ru": "Гуджарати",
12006
"zh-chs": "古久拉提",
12007
"xloc": [
11667
- "default.handlebars->25->947"
12008
+ "default.handlebars->25->950"
12009
]
12010
},
12011
{
@@ -11700,7 +12041,7 @@
12041
"ru": "Гаитянский",
12042
"zh-chs": "海地",
12043
"xloc": [
11703
- "default.handlebars->25->948"
12044
+ "default.handlebars->25->951"
12045
]
12046
},
12047
{
@@ -11734,7 +12075,7 @@
12075
"ru": "Жесткое отключение агента",
12076
"zh-chs": "硬斷開劑",
12077
"xloc": [
11737
- "default.handlebars->25->836"
12078
+ "default.handlebars->25->839"
12079
]
12080
},
12081
{
@@ -11751,7 +12092,7 @@
12092
"ru": "Всего кучи",
12093
"zh-chs": "堆總數",
12094
"xloc": [
11754
- "default.handlebars->25->1690"
12095
+ "default.handlebars->25->1693"
12096
]
12097
},
12098
{
@@ -11768,7 +12109,7 @@
12109
"ru": "Куча используется",
12110
"zh-chs": "堆使用",
12111
"xloc": [
11771
- "default.handlebars->25->1689"
12112
+ "default.handlebars->25->1692"
12113
]
12114
},
12115
{
@@ -11785,7 +12126,7 @@
12126
"ru": "Иврит",
12127
"zh-chs": "希伯來語",
12128
"xloc": [
11788
- "default.handlebars->25->949"
12129
+ "default.handlebars->25->952"
12130
]
12131
},
12132
{
@@ -11794,7 +12135,9 @@
12135
"en": "Hello [[[NAME]]],",
12136
"es": "Hola [[[NAME]]],",
12137
"fr": "Bonjour [[[NAME]]],",
12138
+ "hi": "नमस्कार [[[NAME]]],",
12139
"ja": "[[[NAME]]]様",
12140
+ "ko": "[[[NAME]]] 님, 안녕하세요.",
12141
"nl": "Hallo [[[NAME]]],",
12142
"ru": "Здравствуйте, [[[NAME]]],",
12143
"zh-chs": "您好[[[NAME]]],",
@@ -11817,7 +12160,7 @@
12160
"ru": "Помочь перевести MeshCentral",
12161
"zh-chs": "幫助翻譯MeshCentral",
12162
"xloc": [
11820
- "default.handlebars->25->1063"
12163
+ "default.handlebars->25->1066"
12164
]
12165
},
12166
{
@@ -11826,7 +12169,9 @@
12169
"en": "Hi [[[USERNAME]]],",
12170
"es": "Hola [[[USERNAME]]],",
12171
"fr": "Bonjour [[[USERNAME]]],",
12172
+ "hi": "हाय [[[USERNAME]]],",
12173
"ja": "[[[USERNAME]]]様",
12174
+ "ko": "[[[USERNAME]]] 님, 안녕하세요.",
12175
"nl": "Hallo [[[USERNAME]]],",
12176
"ru": "Привет [[[USERNAME]]],",
12177
"zh-chs": "[[[USERNAME]],你好,",
@@ -11841,7 +12186,9 @@
12186
"en": "Hi [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) is performing an e-mail verification. Nagivate to the following link to complete the process:",
12187
"es": "Hola [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) esta realizando una comprobación del e-mail. Navegue al siguiente enlace para completar el proceso:",
12188
"fr": "Bonjour [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) effectue une vérification par e-mail. Accédez au lien suivant pour terminer le processus:",
12189
+ "hi": "हाय [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]] ई-मेल सत्यापन कर रहा है। प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक को बताएं:",
12190
"ja": "こんにちは[[[USERNAME]]]、[[[SERVERNAME]]]([[[SERVERURL]]])は電子メールの検証を実行しています。プロセスを完了するには、次のリンクに移動します。",
12191
+ "ko": "[[[USERNAME]]] 님, [[[SERVERNAME]]] ([[[SERVERURL]]]) 님이 이메일 확인을 수행하고 있습니다. 프로세스를 완료하려면 다음 링크로 이동하십시오.",
12192
"nl": "Hallo [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) voert een e-mailverificatie uit. Ga naar de volgende link om het proces te voltooien:",
12193
"ru": "Здравствуйте, [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) выполняет проверку электронной почты. Для завершения процесса перейдите по следующей ссылке:",
12194
"zh-chs": "嗨[[[USERNAME]]],[[[SERVERNAME]]]([[[SERVERURL]]])正在执行电子邮件验证。导航至以下链接以完成该过程:",
@@ -11855,7 +12202,9 @@
12202
"en": "Hi [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) is requesting an account password reset. Nagivate to the following link to complete the process:",
12203
"es": "Hola [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) está solicitando un restablecimiento de contraseña de cuenta. Navegue al siguiente enlace para completar el proceso:",
12204
"fr": "Bonjour [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) demande une réinitialisation du mot de passe du compte. Accédez au lien suivant pour terminer le processus:",
12205
+ "hi": "हाय [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]] से खाता पासवर्ड रीसेट करने का अनुरोध किया जा रहा है। प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक को बताएं:",
12206
"ja": "こんにちは[[[USERNAME]]]、[[[SERVERNAME]]]([[[SERVERURL]]])はアカウントパスワードのリセットをリクエストしています。プロセスを完了するには、次のリンクに移動します。",
12207
+ "ko": "[[[USERNAME]]] 님, [[[SERVERNAME]]] ([[[SERVERURL]]]) 님이 계정 비밀번호 재설정을 요청하고 있습니다. 프로세스를 완료하려면 다음 링크로 이동하십시오.",
12208
"nl": "Hallo [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) vraagt om het opnieuw instellen van het account wachtwoord. Ga naar de volgende link om het proces te voltooien:",
12209
"ru": "Здравствуйте, [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) запрашивает сброс пароля учетной записи. Для завершения процесса перейдите по следующей ссылке:",
12210
"zh-chs": "[[[USERNAME]],您好:[[[SERVERNAME]]]([[[SERVERURL]]])正在请求重置帐户密码。导航至以下链接以完成该过程:",
@@ -11897,7 +12246,7 @@
12246
"ru": "Хинди",
12247
"zh-chs": "印地語",
12248
"xloc": [
11900
- "default.handlebars->25->950"
12249
+ "default.handlebars->25->953"
12250
]
12251
},
12252
{
@@ -11933,7 +12282,7 @@
12282
"zh-chs": "持有1份副本",
12283
"xloc": [
12284
"default-mobile.handlebars->9->268",
11936
- "default.handlebars->25->742"
12285
+ "default.handlebars->25->745"
12286
]
12287
},
12288
{
@@ -11951,7 +12300,7 @@
12300
"zh-chs": "持有1個搬家公司",
12301
"xloc": [
12302
"default-mobile.handlebars->9->272",
11954
- "default.handlebars->25->746"
12303
+ "default.handlebars->25->749"
12304
]
12305
},
12306
{
@@ -11969,7 +12318,7 @@
12318
"zh-chs": "保留{0}個條目進行複制",
12319
"xloc": [
12320
"default-mobile.handlebars->9->266",
11972
- "default.handlebars->25->740"
12321
+ "default.handlebars->25->743"
12322
]
12323
},
12324
{
@@ -11987,7 +12336,7 @@
12336
"zh-chs": "保留{0}個條目以進行移動",
12337
"xloc": [
12338
"default-mobile.handlebars->9->270",
11990
- "default.handlebars->25->744"
12339
+ "default.handlebars->25->747"
12340
]
12341
},
12342
{
@@ -12005,7 +12354,7 @@
12354
"zh-chs": "保持{2}的{0}入口{1}",
12355
"xloc": [
12356
"default-mobile.handlebars->9->98",
12008
- "default.handlebars->25->1365"
12357
+ "default.handlebars->25->1368"
12358
]
12359
},
12360
{
@@ -12045,7 +12394,7 @@
12394
"ru": "Синхронизация имени хоста",
12395
"zh-chs": "主機名同步",
12396
"xloc": [
12048
- "default.handlebars->25->1128"
12397
+ "default.handlebars->25->1131"
12398
]
12399
},
12400
{
@@ -12062,7 +12411,7 @@
12411
"ru": "Венгерский",
12412
"zh-chs": "匈牙利",
12413
"xloc": [
12065
- "default.handlebars->25->951"
12414
+ "default.handlebars->25->954"
12415
]
12416
},
12417
{
@@ -12114,7 +12463,7 @@
12463
"ru": "IP: {0}",
12464
"zh-chs": "IP:{0}",
12465
"xloc": [
12117
- "default.handlebars->25->782"
12466
+ "default.handlebars->25->785"
12467
]
12468
},
12469
{
@@ -12131,7 +12480,7 @@
12480
"ru": "IP: {0}, маска: {1}, шлюз: {2}",
12481
"zh-chs": "IP:{0},掩碼:{1},網關:{2}",
12482
"xloc": [
12134
- "default.handlebars->25->780"
12483
+ "default.handlebars->25->783"
12484
]
12485
},
12486
{
@@ -12148,8 +12497,8 @@
12497
"ru": "Уровень IPv4",
12498
"zh-chs": "IPv4層",
12499
"xloc": [
12151
- "default.handlebars->25->779",
12152
- "default.handlebars->25->781"
12500
+ "default.handlebars->25->782",
12501
+ "default.handlebars->25->784"
12502
]
12503
},
12504
{
@@ -12217,7 +12566,7 @@
12566
"ru": "Исландский",
12567
"zh-chs": "冰島的",
12568
"xloc": [
12220
- "default.handlebars->25->952"
12569
+ "default.handlebars->25->955"
12570
]
12571
},
12572
{
@@ -12252,7 +12601,7 @@
12601
"ru": "Идентификатор",
12602
"zh-chs": "識別碼",
12603
"xloc": [
12255
- "default.handlebars->25->807"
12604
+ "default.handlebars->25->810"
12605
]
12606
},
12607
{
@@ -12261,7 +12610,9 @@
12610
"en": "If you did not initiate this request, please ignore this mail.",
12611
"es": "Si Ud. no inicio este proceso, por favor ignore este email",
12612
"fr": "Si vous n'avez pas initié cette demande, veuillez ignorer ce courrier.",
12613
+ "hi": "यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें।",
12614
"ja": "このリクエストを開始していない場合は、このメールを無視してください。",
12615
+ "ko": "이 요청을 시작하지 않은 경우이 메일을 무시하십시오.",
12616
"nl": "Als u dit verzoek niet heeft ingediend, dan kunt u deze e-mail negeren.",
12617
"ru": "Если вы не инициировали этот запрос, игнорируйте это письмо.",
12618
"zh-chs": "如果您没有发起此请求,请忽略此邮件。",
@@ -12328,7 +12679,9 @@
12679
"en": "Individual Devices",
12680
"es": "Dispositivos Individuales",
12681
"fr": "Appareils individuels",
12682
+ "hi": "व्यक्तिगत उपकरण",
12683
"ja": "個々のデバイス",
12684
+ "ko": "개별 장치",
12685
"nl": "Individuele apparaten",
12686
"ru": "Индивидуальные устройства",
12687
"zh-chs": "个别装置",
@@ -12351,7 +12704,7 @@
12704
"ru": "Индонезийский",
12705
"zh-chs": "印度尼西亞",
12706
"xloc": [
12354
- "default.handlebars->25->953"
12707
+ "default.handlebars->25->956"
12708
]
12709
},
12710
{
@@ -12426,6 +12779,7 @@
12779
"en": "Install <a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a> or a compatible application and scan the barcode, use <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>this link</a> or enter the secret. Then, enter the current 6 digit token below to activate 2-Step login.",
12780
"es": "Instale <a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a> o una aplicación compatible y escanee el código de barras, use <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank> este enlace </a> o ingrese el secreto. Luego, ingrese el token actual de 6 dígitos a continuación para activar el inicio de sesión en 2 pasos.",
12781
"fr": "Installez <a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank> Google Authenticator </a> ou une application compatible et scannez le code-barres, utilisez <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank> ce lien </a> ou entrez le secret. Ensuite, entrez le jeton actuel à 6 chiffres ci-dessous pour activer la connexion en 2 étapes.",
12782
+ "hi": "<a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank> Google प्रमाणक स्थापित करें </a> या एक संगत एप्लिकेशन और बारकोड को स्कैन करें, <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank> इस लिंक </a> का उपयोग करें या रहस्य दर्ज करें। फिर, 2-चरण लॉगिन को सक्रिय करने के लिए नीचे वर्तमान 6 अंक टोकन दर्ज करें।",
12783
"ja": "インストール<a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a>または互換性のあるアプリケーションでバーコードをスキャンするには、<a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>このリンク</a>を使用するか、秘密。次に、現在の6桁のトークンを入力して、2段階ログインを有効にします。",
12784
"ko": "<a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank> Google 인증 기 설치 </a> 또는 호환되는 응용 프로그램에서 바코드를 스캔하려면 <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>이 링크 </a>를 사용하거나 비밀을 입력하십시오. 그런 다음 아래에 현재 6 자리 토큰을 입력하여 2 단계 로그인을 활성화하십시오.",
12785
"nl": "Installeer <a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a> of een compatibele applicatie en scan de streepjescode, gebruik <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>deze link</a> of voer de link in geheim. Voer vervolgens het huidige 6-cijferige token hieronder in om 2-staps aanmelding te activeren.",
@@ -12442,6 +12796,7 @@
12796
"en": "Install <a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a> or a compatible application, use <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank> this link</a> or enter the secret below. Then, enter the current 6 digit token to activate 2-Step login.",
12797
"es": "Instale <a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a> o una aplicación compatible, use <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank> este enlace</a> o ingrese el secreto a continuación. Luego, ingrese el token actual de 6 dígitos para activar el inicio de sesión en 2 pasos.",
12798
"fr": "Installez <a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank> Google Authenticator </a> ou une application compatible, utilisez <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank> ce lien </a> ou entrez le secret ci-dessous. Ensuite, entrez le jeton actuel à 6 chiffres pour activer la connexion en 2 étapes.",
12799
+ "hi": "<a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank> या किसी संगत एप्लिकेशन के लिए,<a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank> इस लिंक </a> का उपयोग करें या नीचे दिए गए रहस्य दर्ज करें। फिर, 2-चरण लॉगिन को सक्रिय करने के लिए वर्तमान 6 अंकीय टोकन दर्ज करें।",
12800
"ja": "インストール<a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank> Google Authenticator </a>または互換性のあるアプリケーションの場合、<a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>このリンク</a>を使用するか、下に秘密を入力します。次に、現在の6桁のトークンを入力して、2段階ログインを有効にします。",
12801
"ko": "<a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank> Google 인증 기 설치 </a> 또는 호환되는 응용 프로그램을 사용하려면 <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>이 링크 </a>를 사용하거나 아래의 비밀을 입력하십시오. 그런 다음 현재 6 자리 토큰을 입력하여 2 단계 로그인을 활성화하십시오.",
12802
"nl": "Installeer <a href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank>Google Authenticator</a> of een compatibele toepassing, gebruik <a href=\\\"{0}\\\" rel=\\\"noreferrer noopener\\\" target=_blank>deze link</a> of voer hieronder het geheim in. Voer vervolgens het huidige 6-cijferige token in om 2-staps aanmelding te activeren.",
@@ -12466,7 +12821,7 @@
12821
"ru": "Установка CIRA",
12822
"zh-chs": "安裝CIRA",
12823
"xloc": [
12469
- "default.handlebars->25->1161"
12824
+ "default.handlebars->25->1164"
12825
]
12826
},
12827
{
@@ -12483,7 +12838,7 @@
12838
"ru": "Локальная установка",
12839
"zh-chs": "安裝本地",
12840
"xloc": [
12486
- "default.handlebars->25->1163"
12841
+ "default.handlebars->25->1166"
12842
]
12843
},
12844
{
@@ -12500,8 +12855,8 @@
12855
"ru": "Тип установки",
12856
"zh-chs": "安裝類型",
12857
"xloc": [
12503
- "default.handlebars->25->1302",
12504
- "default.handlebars->25->1309",
12858
+ "default.handlebars->25->1305",
12859
+ "default.handlebars->25->1312",
12860
"default.handlebars->25->294",
12861
"default.handlebars->25->316"
12862
]
@@ -12520,7 +12875,7 @@
12875
"ru": "Intel (F10 = ESC+[OM)",
12876
"zh-chs": "英特爾(F10 = ESC + [OM)",
12877
"xloc": [
12523
- "default.handlebars->25->712",
12878
+ "default.handlebars->25->715",
12879
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
12880
]
12881
},
@@ -12538,10 +12893,10 @@
12893
"ru": "Intel AMT",
12894
"zh-chs": "英特爾AMT",
12895
"xloc": [
12541
- "default.handlebars->25->1321",
12542
- "default.handlebars->25->1329",
12543
- "default.handlebars->25->1686",
12544
- "default.handlebars->25->1708"
12896
+ "default.handlebars->25->1324",
12897
+ "default.handlebars->25->1332",
12898
+ "default.handlebars->25->1689",
12899
+ "default.handlebars->25->1711"
12900
]
12901
},
12902
{
@@ -12694,7 +13049,7 @@
13049
"ru": "Intel ASCII",
13050
"zh-chs": "英特爾ASCII",
13051
"xloc": [
12697
- "default.handlebars->25->711"
13052
+ "default.handlebars->25->714"
13053
]
13054
},
13055
{
@@ -12714,8 +13069,8 @@
13069
"default-mobile.handlebars->9->133",
13070
"default-mobile.handlebars->9->197",
13071
"default-mobile.handlebars->9->202",
12717
- "default.handlebars->25->1145",
12718
- "default.handlebars->25->1155",
13072
+ "default.handlebars->25->1148",
13073
+ "default.handlebars->25->1158",
13074
"default.handlebars->25->434",
13075
"default.handlebars->25->486",
13076
"default.handlebars->25->514"
@@ -12791,7 +13146,7 @@
13146
"ru": "Политика Intel® AMT",
13147
"zh-chs": "英特爾®AMT政策",
13148
"xloc": [
12794
- "default.handlebars->25->1184"
13149
+ "default.handlebars->25->1187"
13150
]
13151
},
13152
{
@@ -12896,8 +13251,8 @@
13251
"ru": "События Intel® AMT desktop или serial.",
13252
"zh-chs": "英特爾®AMT桌面和串行事件。",
13253
"xloc": [
12899
- "default.handlebars->25->1069",
12900
- "default.handlebars->25->1317"
13254
+ "default.handlebars->25->1072",
13255
+ "default.handlebars->25->1320"
13256
]
13257
},
13258
{
@@ -12986,8 +13341,8 @@
13341
"zh-chs": "僅限英特爾®AMT,無代理",
13342
"xloc": [
13343
"default-mobile.handlebars->9->279",
12989
- "default.handlebars->25->1098",
12990
- "default.handlebars->25->1122"
13344
+ "default.handlebars->25->1101",
13345
+ "default.handlebars->25->1125"
13346
]
13347
},
13348
{
@@ -13021,7 +13376,7 @@
13376
"ru": "Intel® Active Management Technology (Intel® AMT)",
13377
"zh-chs": "英特爾®主動管理技術(英特爾®AMT)",
13378
"xloc": [
13024
- "default.handlebars->25->799"
13379
+ "default.handlebars->25->802"
13380
]
13381
},
13382
{
@@ -13044,7 +13399,13 @@
13399
},
13400
{
13401
"en": "Intel® Manageability Engine",
13402
+ "es": "Motor de administración Intel®",
13403
+ "fr": "Moteur de gestion Intel®",
13404
+ "hi": "Intel® प्रबंधनीयता इंजन",
13405
+ "ja": "インテル®管理エンジン",
13406
+ "ko": "인텔 ® 관리 효율성 엔진",
13407
"nl": "Intel® Manageability Engine",
13408
+ "zh-chs": "英特尔®可管理性引擎",
13409
"xloc": [
13410
"default.handlebars->25->483"
13411
]
@@ -13182,7 +13543,7 @@
13543
"ru": "Интерактивный",
13544
"zh-chs": "互動",
13545
"xloc": [
13185
- "default.handlebars->25->694"
13546
+ "default.handlebars->25->697"
13547
]
13548
},
13549
{
@@ -13199,8 +13560,8 @@
13560
"ru": "Только интерактивный режим",
13561
"zh-chs": "僅限互動",
13562
"xloc": [
13202
- "default.handlebars->25->1305",
13203
- "default.handlebars->25->1312",
13563
+ "default.handlebars->25->1308",
13564
+ "default.handlebars->25->1315",
13565
"default.handlebars->25->297",
13566
"default.handlebars->25->319"
13567
]
@@ -13236,7 +13597,7 @@
13597
"ru": "Инуктитут",
13598
"zh-chs": "因紐特人",
13599
"xloc": [
13239
- "default.handlebars->25->954"
13600
+ "default.handlebars->25->957"
13601
]
13602
},
13603
{
@@ -13253,7 +13614,7 @@
13614
"ru": "Некорректный тип группы устройств",
13615
"zh-chs": "無效的設備組類型",
13616
"xloc": [
13256
- "default.handlebars->25->1663"
13617
+ "default.handlebars->25->1666"
13618
]
13619
},
13620
{
@@ -13270,7 +13631,7 @@
13631
"ru": "Некорректный JSON",
13632
"zh-chs": "無效的JSON",
13633
"xloc": [
13273
- "default.handlebars->25->1657"
13634
+ "default.handlebars->25->1660"
13635
]
13636
},
13637
{
@@ -13287,8 +13648,8 @@
13648
"ru": "Некорректный формат файла JSON.",
13649
"zh-chs": "無效的JSON文件格式。",
13650
"xloc": [
13290
- "default.handlebars->25->1427",
13291
- "default.handlebars->25->1429"
13651
+ "default.handlebars->25->1430",
13652
+ "default.handlebars->25->1432"
13653
]
13654
},
13655
{
@@ -13305,7 +13666,7 @@
13666
"ru": "Некорректный файл JSON: {0}.",
13667
"zh-chs": "無效的JSON文件:{0}。",
13668
"xloc": [
13308
- "default.handlebars->25->1425"
13669
+ "default.handlebars->25->1428"
13670
]
13671
},
13672
{
@@ -13322,7 +13683,7 @@
13683
"ru": "Некорректная сигнатура PKCS",
13684
"zh-chs": "無效的PKCS簽名",
13685
"xloc": [
13325
- "default.handlebars->25->1655"
13686
+ "default.handlebars->25->1658"
13687
]
13688
},
13689
{
@@ -13339,7 +13700,7 @@
13700
"ru": "Некорректная сигнатура RSA",
13701
"zh-chs": "無效的RSA密碼",
13702
"xloc": [
13342
- "default.handlebars->25->1656"
13703
+ "default.handlebars->25->1659"
13704
]
13705
},
13706
{
@@ -13475,7 +13836,7 @@
13836
"ru": "Коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:",
13837
"zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:",
13838
"xloc": [
13478
- "default.handlebars->25->1307"
13839
+ "default.handlebars->25->1310"
13840
]
13841
},
13842
{
@@ -13484,7 +13845,9 @@
13845
"en": "Invitation Code",
13846
"es": "Código de Invitación",
13847
"fr": "Code d'invitation",
13848
+ "hi": "आमंत्रण संकेत",
13849
"ja": "招待コード",
13850
+ "ko": "초대 코드",
13851
"nl": "Uitnodigingscode",
13852
"ru": "Код приглашения",
13853
"zh-chs": "邀请码",
@@ -13506,7 +13869,7 @@
13869
"ru": "Пригласить",
13870
"zh-chs": "邀請",
13871
"xloc": [
13509
- "default.handlebars->25->1171",
13872
+ "default.handlebars->25->1174",
13873
"default.handlebars->25->229",
13874
"default.handlebars->25->309"
13875
]
@@ -13525,11 +13888,11 @@
13888
"ru": "Пригласительные коды",
13889
"zh-chs": "邀請碼",
13890
"xloc": [
13528
- "default.handlebars->25->1149",
13529
- "default.handlebars->25->1301",
13530
- "default.handlebars->25->1306",
13531
- "default.handlebars->25->1308",
13532
- "default.handlebars->25->1313"
13891
+ "default.handlebars->25->1152",
13892
+ "default.handlebars->25->1304",
13893
+ "default.handlebars->25->1309",
13894
+ "default.handlebars->25->1311",
13895
+ "default.handlebars->25->1316"
13896
]
13897
},
13898
{
@@ -13552,10 +13915,15 @@
13915
{
13916
"de": "Laden Sie jemanden ein, den Mesh-Agenten für diese Gerätegruppe zu installieren.",
13917
"en": "Invite someone to install the mesh agent on this device group.",
13918
+ "es": "Invite a alguien a instalar el agente de malla en este grupo de dispositivos.",
13919
+ "fr": "Invitez quelqu'un à installer l'agent maillé sur ce groupe de périphériques.",
13920
+ "hi": "इस उपकरण समूह पर मेष एजेंट को स्थापित करने के लिए किसी को आमंत्रित करें।",
13921
"ja": "このデバイスグループにメッシュエージェントをインストールするように誰かを招待します。",
13922
+ "ko": "이 장치 그룹에 메쉬 에이전트를 설치하도록 누군가 초대하십시오.",
13923
"nl": "Nodig iemand uit om de mesh-agent in deze apparaatgroep te installeren.",
13924
+ "zh-chs": "邀请某人在该设备组上安装网状代理。",
13925
"xloc": [
13558
- "default.handlebars->25->1170",
13926
+ "default.handlebars->25->1173",
13927
"default.handlebars->25->228"
13928
]
13929
},
@@ -13590,7 +13958,7 @@
13958
"ru": "Ирландский",
13959
"zh-chs": "愛爾蘭人",
13960
"xloc": [
13593
- "default.handlebars->25->955"
13961
+ "default.handlebars->25->958"
13962
]
13963
},
13964
{
@@ -13607,7 +13975,7 @@
13975
"ru": "Итальянский (Стандартный)",
13976
"zh-chs": "意大利語(標準)",
13977
"xloc": [
13610
- "default.handlebars->25->956"
13978
+ "default.handlebars->25->959"
13979
]
13980
},
13981
{
@@ -13624,7 +13992,7 @@
13992
"ru": "Итальянский (Швейцария)",
13993
"zh-chs": "義大利文(瑞士)",
13994
"xloc": [
13627
- "default.handlebars->25->957"
13995
+ "default.handlebars->25->960"
13996
]
13997
},
13998
{
@@ -13641,8 +14009,8 @@
14009
"ru": "Формат JSON",
14010
"zh-chs": "JSON格式",
14011
"xloc": [
13644
- "default.handlebars->25->1376",
13645
- "default.handlebars->25->1433",
14012
+ "default.handlebars->25->1379",
14013
+ "default.handlebars->25->1436",
14014
"default.handlebars->25->401"
14015
]
14016
},
@@ -13660,7 +14028,7 @@
14028
"ru": "Японский",
14029
"zh-chs": "日本",
14030
"xloc": [
13663
- "default.handlebars->25->958"
14031
+ "default.handlebars->25->961"
14032
]
14033
},
14034
{
@@ -13677,7 +14045,7 @@
14045
"ru": "Каннада",
14046
"zh-chs": "卡納達語",
14047
"xloc": [
13680
- "default.handlebars->25->959"
14048
+ "default.handlebars->25->962"
14049
]
14050
},
14051
{
@@ -13694,7 +14062,7 @@
14062
"ru": "Кашмирский",
14063
"zh-chs": "克什米爾語",
14064
"xloc": [
13697
- "default.handlebars->25->960"
14065
+ "default.handlebars->25->963"
14066
]
14067
},
14068
{
@@ -13711,7 +14079,7 @@
14079
"ru": "Казахский",
14080
"zh-chs": "哈薩克語",
14081
"xloc": [
13714
- "default.handlebars->25->961"
14082
+ "default.handlebars->25->964"
14083
]
14084
},
14085
{
@@ -13728,7 +14096,7 @@
14096
"ru": "Драйвер ядра",
14097
"zh-chs": "內核驅動程序",
14098
"xloc": [
13731
- "default.handlebars->25->695"
14099
+ "default.handlebars->25->698"
14100
]
14101
},
14102
{
@@ -13745,8 +14113,8 @@
14113
"ru": "Имя ключа",
14114
"zh-chs": "鍵名",
14115
"xloc": [
13748
- "default.handlebars->25->852",
13749
- "default.handlebars->25->855"
14116
+ "default.handlebars->25->855",
14117
+ "default.handlebars->25->858"
14118
]
14119
},
14120
{
@@ -13780,7 +14148,7 @@
14148
"ru": "Кхмерский",
14149
"zh-chs": "高棉語",
14150
"xloc": [
13783
- "default.handlebars->25->962"
14151
+ "default.handlebars->25->965"
14152
]
14153
},
14154
{
@@ -13797,7 +14165,7 @@
14165
"ru": "Киргизский",
14166
"zh-chs": "吉爾吉斯",
14167
"xloc": [
13800
- "default.handlebars->25->963"
14168
+ "default.handlebars->25->966"
14169
]
14170
},
14171
{
@@ -13814,7 +14182,7 @@
14182
"ru": "Клингонский",
14183
"zh-chs": "克林貢",
14184
"xloc": [
13817
- "default.handlebars->25->964"
14185
+ "default.handlebars->25->967"
14186
]
14187
},
14188
{
@@ -13831,7 +14199,7 @@
14199
"ru": "Известный",
14200
"zh-chs": "已知的",
14201
"xloc": [
13834
- "default.handlebars->25->798"
14202
+ "default.handlebars->25->801"
14203
]
14204
},
14205
{
@@ -13848,7 +14216,7 @@
14216
"ru": "Korean",
14217
"zh-chs": "韓語",
14218
"xloc": [
13851
- "default.handlebars->25->965"
14219
+ "default.handlebars->25->968"
14220
]
14221
},
14222
{
@@ -13865,7 +14233,7 @@
14233
"ru": "Корейский (Северная Корея)",
14234
"zh-chs": "韓語(朝鮮)",
14235
"xloc": [
13868
- "default.handlebars->25->966"
14236
+ "default.handlebars->25->969"
14237
]
14238
},
14239
{
@@ -13882,7 +14250,7 @@
14250
"ru": "Корейский (Южная Корея)",
14251
"zh-chs": "韓語(韓國)",
14252
"xloc": [
13885
- "default.handlebars->25->967"
14253
+ "default.handlebars->25->970"
14254
]
14255
},
14256
{
@@ -13899,8 +14267,8 @@
14267
"ru": "LF",
14268
"zh-chs": "如果",
14269
"xloc": [
13902
- "default.handlebars->25->707",
13903
- "default.handlebars->25->716"
14270
+ "default.handlebars->25->710",
14271
+ "default.handlebars->25->719"
14272
]
14273
},
14274
{
@@ -13917,7 +14285,7 @@
14285
"ru": "Язык",
14286
"zh-chs": "語言",
14287
"xloc": [
13920
- "default.handlebars->25->1061"
14288
+ "default.handlebars->25->1064"
14289
]
14290
},
14291
{
@@ -13951,7 +14319,7 @@
14319
"ru": "Большой Фокус",
14320
"zh-chs": "大焦點",
14321
"xloc": [
13954
- "default.handlebars->25->683"
14322
+ "default.handlebars->25->686"
14323
]
14324
},
14325
{
@@ -14134,7 +14502,7 @@
14502
"ru": "Последний доступ",
14503
"zh-chs": "最後訪問",
14504
"xloc": [
14137
- "default.handlebars->25->1384"
14505
+ "default.handlebars->25->1387"
14506
]
14507
},
14508
{
@@ -14151,7 +14519,7 @@
14519
"ru": "Последний вход в систему",
14520
"zh-chs": "上次登錄",
14521
"xloc": [
14154
- "default.handlebars->25->1549"
14522
+ "default.handlebars->25->1552"
14523
]
14524
},
14525
{
@@ -14171,9 +14539,9 @@
14539
"default.handlebars->25->70",
14540
"default.handlebars->25->72",
14541
"default.handlebars->25->74",
14174
- "default.handlebars->25->770",
14175
- "default.handlebars->25->771",
14176
- "default.handlebars->25->772"
14542
+ "default.handlebars->25->773",
14543
+ "default.handlebars->25->774",
14544
+ "default.handlebars->25->775"
14545
]
14546
},
14547
{
@@ -14191,8 +14559,8 @@
14559
"zh-chs": "上次代理連接",
14560
"xloc": [
14561
"default.handlebars->25->69",
14194
- "default.handlebars->25->767",
14195
- "default.handlebars->25->769"
14562
+ "default.handlebars->25->770",
14563
+ "default.handlebars->25->772"
14564
]
14565
},
14566
{
@@ -14209,7 +14577,7 @@
14577
"ru": "Последнее изменение: {0}",
14578
"zh-chs": "上次更改:{0}",
14579
"xloc": [
14212
- "default.handlebars->25->1553"
14580
+ "default.handlebars->25->1556"
14581
]
14582
},
14583
{
@@ -14260,7 +14628,7 @@
14628
"ru": "Последний вход в систему: {0}",
14629
"zh-chs": "上次登錄:{0}",
14630
"xloc": [
14263
- "default.handlebars->25->1394"
14631
+ "default.handlebars->25->1397"
14632
]
14633
},
14634
{
@@ -14346,7 +14714,7 @@
14714
"ru": "Латинский",
14715
"zh-chs": "拉丁",
14716
"xloc": [
14349
- "default.handlebars->25->968"
14717
+ "default.handlebars->25->971"
14718
]
14719
},
14720
{
@@ -14363,15 +14731,20 @@
14731
"ru": "Латышский",
14732
"zh-chs": "拉脫維亞語",
14733
"xloc": [
14366
- "default.handlebars->25->969"
14734
+ "default.handlebars->25->972"
14735
]
14736
},
14737
{
14738
"en": "Leave blank for none.",
14371
- "nl": "Leeg laten voor geen.",
14739
+ "es": "Deje en blanco para ninguno.",
14740
+ "fr": "Laissez vide pour aucun.",
14741
+ "hi": "किसी के लिए भी खाली छोड़ दें।",
14742
"ja": "なしの場合は空白のままにします。",
14743
+ "ko": "비워 두십시오.",
14744
+ "nl": "Leeg laten voor geen.",
14745
+ "zh-chs": "一无所有。",
14746
"xloc": [
14374
- "default.handlebars->25->1591"
14747
+ "default.handlebars->25->1594"
14748
]
14749
},
14750
{
@@ -14410,7 +14783,7 @@
14783
"ru": "Меньше",
14784
"zh-chs": "減",
14785
"xloc": [
14413
- "default.handlebars->25->1725"
14786
+ "default.handlebars->25->1728"
14787
]
14788
},
14789
{
@@ -14419,7 +14792,9 @@
14792
"en": "Limit Events",
14793
"es": "Limitar Eventos",
14794
"fr": "Limiter les événements",
14795
+ "hi": "घटनाओं को सीमित करें",
14796
"ja": "イベントを制限する",
14797
+ "ko": "이벤트 제한",
14798
"nl": "Beperk gebeurtenissen",
14799
"ru": "Предельные события",
14800
"zh-chs": "极限赛事",
@@ -14461,7 +14836,7 @@
14836
"zh-chs": "有限輸入",
14837
"xloc": [
14838
"default-mobile.handlebars->9->328",
14464
- "default.handlebars->25->1285",
14839
+ "default.handlebars->25->1288",
14840
"default.handlebars->25->569",
14841
"default.handlebars->25->588"
14842
]
@@ -14481,7 +14856,7 @@
14856
"zh-chs": "僅限於輸入",
14857
"xloc": [
14858
"default-mobile.handlebars->9->303",
14484
- "default.handlebars->25->1243"
14859
+ "default.handlebars->25->1246"
14860
]
14861
},
14862
{
@@ -14524,8 +14899,12 @@
14899
"de": "Link-Einladung",
14900
"en": "Link invitation",
14901
"es": "Enlace de invitación",
14902
+ "fr": "Lien d'invitation",
14903
+ "hi": "लिंक आमंत्रण",
14904
"ja": "リンクへの招待",
14905
+ "ko": "링크 초대",
14906
"nl": "Uitnodigingslink",
14907
+ "zh-chs": "链接邀请",
14908
"xloc": [
14909
"default.handlebars->25->275"
14910
]
@@ -14808,7 +15187,7 @@
15187
"ru": "Литовский",
15188
"zh-chs": "立陶宛語",
15189
"xloc": [
14811
- "default.handlebars->25->970"
15190
+ "default.handlebars->25->973"
15191
]
15192
},
15193
{
@@ -14826,10 +15205,10 @@
15205
"zh-chs": "載入中...",
15206
"xloc": [
15207
"default-mobile.handlebars->9->41",
14829
- "default.handlebars->25->1115",
14830
- "default.handlebars->25->1117",
15208
+ "default.handlebars->25->1118",
15209
+ "default.handlebars->25->1120",
15210
"default.handlebars->25->643",
14832
- "default.handlebars->25->848"
15211
+ "default.handlebars->25->851"
15212
]
15213
},
15214
{
@@ -14897,7 +15276,7 @@
15276
"ru": "Настройки локализации",
15277
"zh-chs": "本地化設置",
15278
"xloc": [
14900
- "default.handlebars->25->1064",
15279
+ "default.handlebars->25->1067",
15280
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7"
15281
]
15282
},
@@ -14949,7 +15328,7 @@
15328
"ru": "Заблокировать учетную запись",
15329
"zh-chs": "鎖定賬戶",
15330
"xloc": [
14952
- "default.handlebars->25->1464"
15331
+ "default.handlebars->25->1467"
15332
]
15333
},
15334
{
@@ -14966,7 +15345,7 @@
15345
"ru": "Заблокировать учетную запись",
15346
"zh-chs": "鎖定賬戶",
15347
"xloc": [
14969
- "default.handlebars->25->1412"
15348
+ "default.handlebars->25->1415"
15349
]
15350
},
15351
{
@@ -14983,7 +15362,7 @@
15362
"ru": "Заблокирован",
15363
"zh-chs": "已鎖定",
15364
"xloc": [
14986
- "default.handlebars->25->1395"
15365
+ "default.handlebars->25->1398"
15366
]
15367
},
15368
{
@@ -15000,7 +15379,7 @@
15379
"ru": "Заблокированная учетная запись",
15380
"zh-chs": "賬戶鎖定",
15381
"xloc": [
15003
- "default.handlebars->25->1532"
15382
+ "default.handlebars->25->1535"
15383
]
15384
},
15385
{
@@ -15097,8 +15476,13 @@
15476
},
15477
{
15478
"en": "Login and go to the \\\"My Account\\\" tab to update your password.",
15100
- "nl": "Log in en ga naar het tabblad \\\"Mijn Account\\\" om uw wachtwoord bij te werken.",
15479
+ "es": "Inicie sesión y vaya a la pestaña \"Mi cuenta\" para actualizar su contraseña.",
15480
+ "fr": "Connectez-vous et accédez à l'onglet \\\"Mon compte\\\" pour mettre à jour votre mot de passe.",
15481
+ "hi": "लॉगिन करें और अपना पासवर्ड अपडेट करने के लिए \\\"मेरा खाता\\\" टैब पर जाएं।",
15482
"ja": "ログインして[マイアカウント]タブにアクセスし、パスワードを更新します。",
15483
+ "ko": "로그인하고 \\\"내 계정\\\"탭으로 이동하여 비밀번호를 업데이트하십시오.",
15484
+ "nl": "Log in en ga naar het tabblad \\\"Mijn Account\\\" om uw wachtwoord bij te werken.",
15485
+ "zh-chs": "登录并转到\\“我的帐户\\”选项卡以更新密码。",
15486
"xloc": [
15487
"message.handlebars->3->10"
15488
]
@@ -15174,7 +15558,7 @@
15558
"ru": "Люксембургский",
15559
"zh-chs": "盧森堡語",
15560
"xloc": [
15177
- "default.handlebars->25->971"
15561
+ "default.handlebars->25->974"
15562
]
15563
},
15564
{
@@ -15191,8 +15575,8 @@
15575
"ru": "MAC-уровень",
15576
"zh-chs": "MAC層",
15577
"xloc": [
15194
- "default.handlebars->25->775",
15195
- "default.handlebars->25->777"
15578
+ "default.handlebars->25->778",
15579
+ "default.handlebars->25->780"
15580
]
15581
},
15582
{
@@ -15226,7 +15610,7 @@
15610
"ru": "MAC: {0}",
15611
"zh-chs": "MAC:{0}",
15612
"xloc": [
15229
- "default.handlebars->25->778"
15613
+ "default.handlebars->25->781"
15614
]
15615
},
15616
{
@@ -15243,7 +15627,7 @@
15627
"ru": "MAC: {0}, шлюз: {1}",
15628
"zh-chs": "MAC:{0},網關:{1}",
15629
"xloc": [
15246
- "default.handlebars->25->776"
15630
+ "default.handlebars->25->779"
15631
]
15632
},
15633
{
@@ -15301,8 +15685,8 @@
15685
"default.handlebars->25->185",
15686
"default.handlebars->25->378",
15687
"default.handlebars->25->518",
15304
- "default.handlebars->25->826",
15305
- "default.handlebars->25->827",
15688
+ "default.handlebars->25->829",
15689
+ "default.handlebars->25->830",
15690
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3"
15691
]
15692
},
@@ -15496,7 +15880,7 @@
15880
"ru": "Сообщения главного сервера",
15881
"zh-chs": "主服務器消息",
15882
"xloc": [
15499
- "default.handlebars->25->1697"
15883
+ "default.handlebars->25->1700"
15884
]
15885
},
15886
{
@@ -15513,7 +15897,7 @@
15897
"ru": "Малайский",
15898
"zh-chs": "馬來語",
15899
"xloc": [
15516
- "default.handlebars->25->973"
15900
+ "default.handlebars->25->976"
15901
]
15902
},
15903
{
@@ -15530,7 +15914,7 @@
15914
"ru": "Малаяламский",
15915
"zh-chs": "馬拉雅拉姆語",
15916
"xloc": [
15533
- "default.handlebars->25->974"
15917
+ "default.handlebars->25->977"
15918
]
15919
},
15920
{
@@ -15547,7 +15931,7 @@
15931
"ru": "Мальтийский",
15932
"zh-chs": "馬耳他語",
15933
"xloc": [
15550
- "default.handlebars->25->975"
15934
+ "default.handlebars->25->978"
15935
]
15936
},
15937
{
@@ -15584,8 +15968,8 @@
15968
"xloc": [
15969
"default-mobile.handlebars->9->300",
15970
"default-mobile.handlebars->9->318",
15587
- "default.handlebars->25->1240",
15588
- "default.handlebars->25->1274"
15971
+ "default.handlebars->25->1243",
15972
+ "default.handlebars->25->1277"
15973
]
15974
},
15975
{
@@ -15604,8 +15988,8 @@
15988
"xloc": [
15989
"default-mobile.handlebars->9->299",
15990
"default-mobile.handlebars->9->317",
15607
- "default.handlebars->25->1239",
15608
- "default.handlebars->25->1273"
15991
+ "default.handlebars->25->1242",
15992
+ "default.handlebars->25->1276"
15993
]
15994
},
15995
{
@@ -15614,7 +15998,9 @@
15998
"en": "Manage Devices",
15999
"es": "Administrar dispositivos",
16000
"fr": "Gérer les appareils",
16001
+ "hi": "उपकरण प्रबंधित करें",
16002
"ja": "デバイスを管理する",
16003
+ "ko": "장치 관리",
16004
"nl": "Beheer apparaten",
16005
"ru": "Управление устройствами",
16006
"zh-chs": "管理设备",
@@ -15653,7 +16039,7 @@
16039
"ru": "Управление группами пользователя",
16040
"zh-chs": "管理用戶組",
16041
"xloc": [
15656
- "default.handlebars->25->1463"
16042
+ "default.handlebars->25->1466"
16043
]
16044
},
16045
{
@@ -15670,7 +16056,7 @@
16056
"ru": "Управление пользователями",
16057
"zh-chs": "管理用戶",
16058
"xloc": [
This file is too large to show in full.
views/default.handlebars
+28
-12
@@ -5835,6 +5835,16 @@
5835
var autoConnectDesktopTimer = null;
5836
function autoConnectDesktop(e) { if (autoConnectDesktopTimer == null) { autoConnectDesktopTimer = setInterval(function() { connectDesktop(null, 1) }, 1000); } else { clearInterval(autoConnectDesktopTimer); autoConnectDesktopTimer = null; } }
5837
5838
+ // Used to translate incoming agent console messages
5839
+ var agentConsoleMessages = [ '', "Waiting for user to grant access...", "Denied", "Failed to start remote terminal session, {0} ({1})" ];
5840
+ function formatAgentConsoleMessage(msg, msgid, msgargs) {
5841
+ var r;
5842
+ if (msgargs == null) { msgargs = []; }
5843
+ while (msgargs.length < 3) { msgargs.push(''); } // We need to call the format function in a way that works with older browsers and minifier, can't use apply() or ...
5844
+ if (msgid && (msgid < agentConsoleMessages.length)) { r = EscapeHtml(format(agentConsoleMessages[msgid], (msgargs[0]), (msgargs[1]), (msgargs[2]))); } else { r = EscapeHtml(msg); }
5845
+ return r.split('\n').join('<br />') + '<br /><br />';
5846
+ }
5847
+
5848
function connectDesktop(e, contype, tsid, consent) {
5849
if (xxdialogMode) return;
5850
if ((e != null) && (e.shiftKey != false) && (contype == 3)) { contype = 1; } // If the shift key is not pressed, don't try to ask for session list.
@@ -5938,10 +5948,10 @@
5948
desktop.onStateChanged = onDesktopStateChange;
5949
desktop.onConsoleMessageChange = function () {
5950
if (desktop.consoleMessage) {
5941
- Q('p11DeskConsoleMsg').innerHTML += EscapeHtml(desktop.consoleMessage).split('\n').join('<br />') + '<br /><br />';
5951
+ Q('p11DeskConsoleMsg').innerHTML += formatAgentConsoleMessage(desktop.consoleMessage, desktop.consoleMessageId, desktop.consoleMessageArgs);
5952
QV('p11DeskConsoleMsg', true);
5943
- if (p11DeskConsoleMsgTimer != null) { clearTimeout(p11DeskConsoleMsgTimer); }
5944
- p11DeskConsoleMsgTimer = setTimeout(p11clearConsoleMsg, 8000);
5953
+ //if (p11DeskConsoleMsgTimer != null) { clearTimeout(p11DeskConsoleMsgTimer); }
5954
+ //p11DeskConsoleMsgTimer = setTimeout(p11clearConsoleMsg, 8000);
5955
} else {
5956
p11clearConsoleMsg();
5957
}
@@ -6792,10 +6802,12 @@
6802
terminal.attemptWebRTC = false; // Never do WebRTC on terminal, because of a race condition we can't do it.
6803
terminal.onConsoleMessageChange = function (server, msg) {
6804
if (terminal.consoleMessage) {
6795
- Q('p12TermConsoleMsg').innerHTML += EscapeHtml(terminal.consoleMessage).split('\n').join('<br />') + '<br /><br />';
6805
+ Q('p12TermConsoleMsg').innerHTML += formatAgentConsoleMessage(terminal.consoleMessage, terminal.consoleMessageId, terminal.consoleMessageArgs);
6806
QV('p12TermConsoleMsg', true);
6797
- if (p12TermConsoleMsgTimer != null) { clearTimeout(p12TermConsoleMsgTimer); }
6798
- p12TermConsoleMsgTimer = setTimeout(p12clearConsoleMsg, 8000);
6807
+ //if (p12DeskConsoleMsgTimer != null) { clearTimeout(p12DeskConsoleMsgTimer); }
6808
+ //p12TermConsoleMsgTimer = setTimeout(p12clearConsoleMsg, 8000);
6809
+ } else {
6810
+ p12clearConsoleMsg();
6811
}
6812
};
6813
} else {
@@ -6813,10 +6825,12 @@
6825
terminal.onStateChanged = onTerminalStateChange;
6826
terminal.onConsoleMessageChange = function () {
6827
if (terminal.consoleMessage) {
6816
- Q('p12TermConsoleMsg').innerHTML += EscapeHtml(terminal.consoleMessage).split('\n').join('<br />') + '<br /><br />';
6828
+ Q('p12TermConsoleMsg').innerHTML += formatAgentConsoleMessage(terminal.consoleMessage, terminal.consoleMessageId, terminal.consoleMessageArgs);
6829
QV('p12TermConsoleMsg', true);
6818
- if (p12TermConsoleMsgTimer != null) { clearTimeout(p12TermConsoleMsgTimer); }
6819
- p12TermConsoleMsgTimer = setTimeout(p12clearConsoleMsg, 8000);
6830
+ //if (p12DeskConsoleMsgTimer != null) { clearTimeout(p12DeskConsoleMsgTimer); }
6831
+ //p12TermConsoleMsgTimer = setTimeout(p12clearConsoleMsg, 8000);
6832
+ } else {
6833
+ p12clearConsoleMsg();
6834
}
6835
}
6836
terminal.Start(terminalNode._id);
@@ -6963,10 +6977,12 @@
6977
files.onStateChanged = onFilesStateChange;
6978
files.onConsoleMessageChange = function () {
6979
if (files.consoleMessage) {
6966
- Q('p13FilesConsoleMsg').innerHTML += EscapeHtml(files.consoleMessage).split('\n').join('<br />') + '<br /><br />';
6980
+ Q('p13FilesConsoleMsg').innerHTML += formatAgentConsoleMessage(files.consoleMessage, files.consoleMessageId, files.consoleMessageArgs);
6981
QV('p13FilesConsoleMsg', true);
6968
- if (p13FilesConsoleMsgTimer != null) { clearTimeout(p13FilesConsoleMsgTimer); }
6969
- p13FilesConsoleMsgTimer = setTimeout(p13clearConsoleMsg, 8000);
6982
+ //if (p13DeskConsoleMsgTimer != null) { clearTimeout(p13DeskConsoleMsgTimer); }
6983
+ //p13FilesConsoleMsgTimer = setTimeout(p13clearConsoleMsg, 8000);
6984
+ } else {
6985
+ p13clearConsoleMsg();
6986
}
6987
}
6988
files.Start(filesNode._id);