From c8e1a1c30513bf36c12209dc770de8064f77aa85 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Sun, 3 May 2020 12:54:51 -0700 Subject: [PATCH] More translations, agent console messages are now translated. --- agents/meshcore.js | 18 +- emails/translations/account-check_hi.html | 10 +- emails/translations/account-check_hi.txt | 6 +- emails/translations/account-check_ko.html | 10 +- emails/translations/account-check_ko.txt | 6 +- emails/translations/account-invite_fr.txt | 2 +- emails/translations/account-invite_hi.html | 10 +- emails/translations/account-invite_hi.txt | 6 +- emails/translations/account-invite_ko.html | 10 +- emails/translations/account-invite_ko.txt | 6 +- emails/translations/account-invite_zh-chs.txt | 2 +- emails/translations/account-login_hi.html | 8 +- emails/translations/account-login_hi.txt | 6 +- emails/translations/account-login_ko.html | 8 +- emails/translations/account-login_ko.txt | 6 +- emails/translations/account-reset_hi.html | 10 +- emails/translations/account-reset_hi.txt | 6 +- emails/translations/account-reset_ko.html | 10 +- emails/translations/account-reset_ko.txt | 6 +- emails/translations/mesh-invite_hi.html | 22 +- emails/translations/mesh-invite_hi.txt | 20 +- emails/translations/mesh-invite_ko.html | 22 +- emails/translations/mesh-invite_ko.txt | 20 +- emails/translations/sms-messages_es.txt | 4 +- emails/translations/sms-messages_fr.txt | 4 +- emails/translations/sms-messages_hi.txt | 4 +- emails/translations/sms-messages_ko.txt | 4 +- emails/translations/sms-messages_zh-chs.txt | 4 +- public/scripts/agent-redir-ws-0.1.1-min.js | 2 +- public/scripts/agent-redir-ws-0.1.1.js | 8 +- translate/translate.json | 2807 ++++++++++------- views/default.handlebars | 40 +- 32 files changed, 1892 insertions(+), 1215 deletions(-) diff --git a/agents/meshcore.js b/agents/meshcore.js index 941d6512..60b19668 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -1248,7 +1248,7 @@ function createMeshCore(agent) { } catch (e) { MeshServerLog('Failed to start remote terminal session, ' + e.toString() + ' (' + this.httprequest.remoteaddr + ')', this.httprequest); - this.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString() })); + this.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString(), msgid: 2, msgargs: [e.toString(), this.httprequest.remoteaddr] })); this.end(); return; } @@ -1326,7 +1326,7 @@ function createMeshCore(agent) { { // User Consent Prompt is required // Send a console message back using the console channel, "\n" is supported. - that.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access..." })); + that.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access...", msgid: 1 })); var pr = require('message-box').create('MeshCentral', that.httprequest.username + " requesting Terminal Access. Grant access?", 30); pr.ws = that; that.pause(); @@ -1339,7 +1339,7 @@ function createMeshCore(agent) { // Success this.ws._consentpromise = null; MeshServerLog("Starting remote terminal after local user accepted (" + this.ws.httprequest.remoteaddr + ")", this.ws.httprequest); - this.ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: null })); + this.ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: null, msgid: 0 })); if (this.ws.httprequest.consent && (this.ws.httprequest.consent & 2)) { // User Notifications is required @@ -1352,7 +1352,7 @@ function createMeshCore(agent) { // User Consent Denied/Failed this.ws._consentpromise = null; MeshServerLog("Failed to start remote terminal after local user rejected (" + this.ws.httprequest.remoteaddr + ")", this.ws.httprequest); - this.ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString() })); + this.ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString(), msgid: 2 })); this.ws.end(); }); } @@ -1477,7 +1477,7 @@ function createMeshCore(agent) { { // User Consent Prompt is required // Send a console message back using the console channel, "\n" is supported. - this.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access..." })); + this.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access...", msgid: 1 })); var pr = require('message-box').create('MeshCentral', this.httprequest.username + " requesting KVM Access. Grant access?", 30); pr.ws = this; this.pause(); @@ -1489,7 +1489,7 @@ function createMeshCore(agent) { // Success this.ws._consentpromise = null; MeshServerLog("Starting remote desktop after local user accepted (" + this.ws.httprequest.remoteaddr + ")", this.ws.httprequest); - this.ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: null })); + this.ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: null, msgid: 0 })); if (this.ws.httprequest.consent && (this.ws.httprequest.consent & 1)) { // User Notifications is required try { require('toaster').Toast('MeshCentral', this.ws.httprequest.username + " started a remote desktop session."); } catch (ex) { } @@ -1528,7 +1528,7 @@ function createMeshCore(agent) { // User Consent Denied/Failed this.ws._consentpromise = null; MeshServerLog("Failed to start remote desktop after local user rejected (" + this.ws.httprequest.remoteaddr + ")", this.ws.httprequest); - this.ws.end(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString() })); + this.ws.end(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString(), msgid: 2 })); }); } else { @@ -1585,7 +1585,7 @@ function createMeshCore(agent) { if (this.httprequest.consent && (this.httprequest.consent & 32)) { // User Consent Prompt is required // Send a console message back using the console channel, "\n" is supported. - this.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access..." })); + this.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access...", msgid: 1 })); var pr = require('message-box').create('MeshCentral', this.httprequest.username + " requesting remote file access. Grant access?", 30); pr.ws = this; this.pause(); @@ -1609,7 +1609,7 @@ function createMeshCore(agent) { // User Consent Denied/Failed this.ws._consentpromise = null; MeshServerLog("Failed to start remote files after local user rejected (" + this.ws.httprequest.remoteaddr + ")", this.ws.httprequest); - this.ws.end(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString() })); + this.ws.end(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString(), msgid: 2 })); }); } else { // User Consent Prompt is not required diff --git a/emails/translations/account-check_hi.html b/emails/translations/account-check_hi.html index 3b9b08f4..5055710b 100644 --- a/emails/translations/account-check_hi.html +++ b/emails/translations/account-check_hi.html @@ -1,15 +1,15 @@ -
[[[SERVERNAME]]] - Email Verification
+
[[[SERVERNAME]]] - ईमेल सत्यापन
- [[[SERVERNAME]]] - Verification + [[[SERVERNAME]] - सत्यापन
-

Hi [[[USERNAME]]], [[[SERVERNAME]]] is requesting email verification, click on the following link to complete the process.

+

हाय [[[USERNAME]]], [[[सर्वर का नाम]]] ईमेल सत्यापन का अनुरोध कर रहा है, प्रक्रिया को पूरा करने के लिए निम्न लिंक पर क्लिक करें।

- Click here to verify your e-mail address. + अपना ई-मेल पता सत्यापित करने के लिए यहां क्लिक करें।

- If you did not initiate this request, please ignore this mail. + यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें।
\ No newline at end of file diff --git a/emails/translations/account-check_hi.txt b/emails/translations/account-check_hi.txt index b90c0d2f..e4e4c2bc 100644 --- a/emails/translations/account-check_hi.txt +++ b/emails/translations/account-check_hi.txt @@ -1,6 +1,6 @@ -[[[SERVERNAME]]] - Email Verification -Hi [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) is performing an e-mail verification. Nagivate to the following link to complete the process: +[[[SERVERNAME]]] - ईमेल सत्यापन +हाय [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]] ई-मेल सत्यापन कर रहा है। प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक को बताएं: ~ ~[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]] ~ -If you did not initiate this request, please ignore this mail. \ No newline at end of file +यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें। \ No newline at end of file diff --git a/emails/translations/account-check_ko.html b/emails/translations/account-check_ko.html index 3b9b08f4..2b73a626 100644 --- a/emails/translations/account-check_ko.html +++ b/emails/translations/account-check_ko.html @@ -1,15 +1,15 @@ -
[[[SERVERNAME]]] - Email Verification
+
[[[SERVERNAME]]]-이메일 확인
- [[[SERVERNAME]]] - Verification + [[[SERVERNAME]]]-확인
-

Hi [[[USERNAME]]], [[[SERVERNAME]]] is requesting email verification, click on the following link to complete the process.

+

[[[USERNAME]]] 님, 안녕하세요. [[[서버 이름]]] 이메일 확인을 요청하는 중이면 다음 링크를 클릭하여 프로세스를 완료하십시오.

- Click here to verify your e-mail address. + 이메일 주소를 확인하려면 여기를 클릭하십시오.

- If you did not initiate this request, please ignore this mail. + 이 요청을 시작하지 않은 경우이 메일을 무시하십시오.
\ No newline at end of file diff --git a/emails/translations/account-check_ko.txt b/emails/translations/account-check_ko.txt index b90c0d2f..d6163158 100644 --- a/emails/translations/account-check_ko.txt +++ b/emails/translations/account-check_ko.txt @@ -1,6 +1,6 @@ -[[[SERVERNAME]]] - Email Verification -Hi [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) is performing an e-mail verification. Nagivate to the following link to complete the process: +[[[SERVERNAME]]]-이메일 확인 +[[[USERNAME]]] 님, [[[SERVERNAME]]] ([[[SERVERURL]]]) 님이 이메일 확인을 수행하고 있습니다. 프로세스를 완료하려면 다음 링크로 이동하십시오. ~ ~[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]] ~ -If you did not initiate this request, please ignore this mail. \ No newline at end of file +이 요청을 시작하지 않은 경우이 메일을 무시하십시오. \ No newline at end of file diff --git a/emails/translations/account-invite_fr.txt b/emails/translations/account-invite_fr.txt index 97e43db8..cbc3a64a 100644 --- a/emails/translations/account-invite_fr.txt +++ b/emails/translations/account-invite_fr.txt @@ -1,5 +1,5 @@ [[[SERVERNAME]]] - Invitation au compte -An account was created for you on server [[[SERVERNAME]]] ([[[SERVERURL]]]/), you can access it now with username "[[[ACCOUNTNAME]]]" and password "[[[PASSWORD]]]". +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] ]] ". ~ Meilleures salutations, ~[[[USERNAME]]] \ No newline at end of file diff --git a/emails/translations/account-invite_hi.html b/emails/translations/account-invite_hi.html index 103da1ea..0beb94db 100644 --- a/emails/translations/account-invite_hi.html +++ b/emails/translations/account-invite_hi.html @@ -1,19 +1,19 @@ -
[[[SERVERNAME]]] - Account Invitation
+
[[[SERVERNAME]]] - खाता निमंत्रण
- [[[SERVERNAME]]] - Account Invitation + [[[SERVERNAME]]] - खाता निमंत्रण
-

An account was created for you on server [[[SERVERNAME]]], you can access it now with:

+

सर्वर पर आपके लिए एक खाता बनाया गया था [[[SERVERNAME]]], आप इसे अभी एक्सेस कर सकते हैं:

   उपयोगकर्ता नाम: [[[ACCOUNTNAME]]]
   कुंजिका: [[[PASSWORD]]]

- Best regards, + सादर,
- [[[USERNAME]]] + [[[उपयोगकर्ता नाम]]]
\ No newline at end of file diff --git a/emails/translations/account-invite_hi.txt b/emails/translations/account-invite_hi.txt index 3061a670..79f0f4b7 100644 --- a/emails/translations/account-invite_hi.txt +++ b/emails/translations/account-invite_hi.txt @@ -1,5 +1,5 @@ -[[[SERVERNAME]]] - Account Invitation -An account was created for you on server [[[SERVERNAME]]] ([[[SERVERURL]]]/), you can access it now with username "[[[ACCOUNTNAME]]]" and password "[[[PASSWORD]]]". +[[[SERVERNAME]]] - खाता निमंत्रण +सर्वर [[[SERVERNAME]]] ([[[SERVERURL]]] /) पर आपके लिए एक खाता बनाया गया था, आप इसे अब उपयोगकर्ता नाम "[[[ACCOUNTNAME]]]]" और पासवर्ड "[[PASSWORD] के साथ एक्सेस कर सकते हैं। ]] "। ~ -Best regards, +सादर, ~[[[USERNAME]]] \ No newline at end of file diff --git a/emails/translations/account-invite_ko.html b/emails/translations/account-invite_ko.html index 6c1b0af5..87f1017f 100644 --- a/emails/translations/account-invite_ko.html +++ b/emails/translations/account-invite_ko.html @@ -1,19 +1,19 @@ -
[[[SERVERNAME]]] - Account Invitation
+
[[[SERVERNAME]]]-계정 초대
- [[[SERVERNAME]]] - Account Invitation + [[[SERVERNAME]]]-계정 초대
-

An account was created for you on server [[[SERVERNAME]]], you can access it now with:

+

서버에서 계정이 생성되었습니다 [[[SERVERNAME]]]을 통해 다음에 액세스 할 수 있습니다.

   사용자 이름: [[[ACCOUNTNAME]]]
   암호: [[[PASSWORD]]]

- Best regards, + 친애하는,
- [[[USERNAME]]] + [[[사용자 이름]]]
\ No newline at end of file diff --git a/emails/translations/account-invite_ko.txt b/emails/translations/account-invite_ko.txt index 3061a670..21164241 100644 --- a/emails/translations/account-invite_ko.txt +++ b/emails/translations/account-invite_ko.txt @@ -1,5 +1,5 @@ -[[[SERVERNAME]]] - Account Invitation -An account was created for you on server [[[SERVERNAME]]] ([[[SERVERURL]]]/), you can access it now with username "[[[ACCOUNTNAME]]]" and password "[[[PASSWORD]]]". +[[[SERVERNAME]]]-계정 초대 +서버 [[[SERVERNAME]]] ([[[SERVERURL]]] /)에서 계정이 생성되었습니다. 사용자 이름 "[[[계정 이름]]]"및 비밀번호 "[[[비밀번호] ]] ". ~ -Best regards, +친애하는, ~[[[USERNAME]]] \ No newline at end of file diff --git a/emails/translations/account-invite_zh-chs.txt b/emails/translations/account-invite_zh-chs.txt index 598973ba..1c062380 100644 --- a/emails/translations/account-invite_zh-chs.txt +++ b/emails/translations/account-invite_zh-chs.txt @@ -1,5 +1,5 @@ [[[SERVERNAME]]]-帐户邀请 -An account was created for you on server [[[SERVERNAME]]] ([[[SERVERURL]]]/), you can access it now with username "[[[ACCOUNTNAME]]]" and password "[[[PASSWORD]]]". +已在服务器[[[SERVERNAME]]]([[[SERVERURL]]] /)上为您创建了一个帐户,您现在可以使用用户名“ [[[ACCOUNTNAME]]]”和密码“ [[[PASSWORD] ]]”。 ~ 最好的祝福, ~[[[USERNAME]]] \ No newline at end of file diff --git a/emails/translations/account-login_hi.html b/emails/translations/account-login_hi.html index a218cade..95966ad9 100644 --- a/emails/translations/account-login_hi.html +++ b/emails/translations/account-login_hi.html @@ -1,12 +1,12 @@ -
[[[SERVERNAME]]] - Account Login
+
[[[SERVERNAME]]] - खाता लॉगिन
- [[[SERVERNAME]]] - Account Login + [[[SERVERNAME]]] - खाता लॉगिन
-

Your login token is: [[[TOKEN]]]

-

This token can only be used once and is valid for 5 minutes.

+

आपका लॉगिन टोकन है: [[[टोकन]]]

+

यह टोकन केवल एक बार उपयोग किया जा सकता है और 5 मिनट के लिए वैध है।

\ No newline at end of file diff --git a/emails/translations/account-login_hi.txt b/emails/translations/account-login_hi.txt index 5cf6151e..05844118 100644 --- a/emails/translations/account-login_hi.txt +++ b/emails/translations/account-login_hi.txt @@ -1,4 +1,4 @@ -[[[SERVERNAME]]] - Account Login -Your login token is: [[[TOKEN]]] +[[[SERVERNAME]]] - खाता लॉगिन +आपका लॉगिन टोकन है: [[[टोकन]]] ~ -This token can only be used once and is valid for 5 minutes. \ No newline at end of file +यह टोकन केवल एक बार उपयोग किया जा सकता है और 5 मिनट के लिए वैध है। \ No newline at end of file diff --git a/emails/translations/account-login_ko.html b/emails/translations/account-login_ko.html index a218cade..f1ff23c6 100644 --- a/emails/translations/account-login_ko.html +++ b/emails/translations/account-login_ko.html @@ -1,12 +1,12 @@ -
[[[SERVERNAME]]] - Account Login
+
[[[SERVERNAME]]]-계정 로그인
- [[[SERVERNAME]]] - Account Login + [[[SERVERNAME]]]-계정 로그인
-

Your login token is: [[[TOKEN]]]

-

This token can only be used once and is valid for 5 minutes.

+

귀하의 로그인 토큰은 [[[TOKEN]]]입니다.

+

이 토큰은 한 번만 사용할 수 있으며 5 분 동안 유효합니다.

\ No newline at end of file diff --git a/emails/translations/account-login_ko.txt b/emails/translations/account-login_ko.txt index 5cf6151e..53ba91f8 100644 --- a/emails/translations/account-login_ko.txt +++ b/emails/translations/account-login_ko.txt @@ -1,4 +1,4 @@ -[[[SERVERNAME]]] - Account Login -Your login token is: [[[TOKEN]]] +[[[SERVERNAME]]]-계정 로그인 +귀하의 로그인 토큰은 [[[TOKEN]]]입니다. ~ -This token can only be used once and is valid for 5 minutes. \ No newline at end of file +이 토큰은 한 번만 사용할 수 있으며 5 분 동안 유효합니다. \ No newline at end of file diff --git a/emails/translations/account-reset_hi.html b/emails/translations/account-reset_hi.html index dd09c6bd..30f88f9d 100644 --- a/emails/translations/account-reset_hi.html +++ b/emails/translations/account-reset_hi.html @@ -1,15 +1,15 @@ -
[[[SERVERNAME]]] - Account Reset
+
[[[SERVERNAME]]] - खाता रीसेट
- [[[SERVERNAME]]] - Verification + [[[SERVERNAME]] - सत्यापन
-

Hi [[[USERNAME]]], [[[SERVERNAME]]] is requesting an account password reset, click on the following link to complete the process.

+

हाय [[[USERNAME]]], [[[सर्वर का नाम]]] खाता पासवर्ड रीसेट का अनुरोध कर रहा है, प्रक्रिया पूरी करने के लिए निम्न लिंक पर क्लिक करें।

- Click here to reset your account password. + अपना खाता पासवर्ड रीसेट करने के लिए यहां क्लिक करें।

- If you did not initiate this request, please ignore this mail. + यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें।
\ No newline at end of file diff --git a/emails/translations/account-reset_hi.txt b/emails/translations/account-reset_hi.txt index 8960967d..0dd9f94f 100644 --- a/emails/translations/account-reset_hi.txt +++ b/emails/translations/account-reset_hi.txt @@ -1,6 +1,6 @@ -[[[SERVERNAME]]] - Account Reset -Hi [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) is requesting an account password reset. Nagivate to the following link to complete the process: +[[[SERVERNAME]]] - खाता रीसेट +हाय [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]] से खाता पासवर्ड रीसेट करने का अनुरोध किया जा रहा है। प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक को बताएं: ~ ~[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]] ~ -If you did not initiate this request, please ignore this mail. \ No newline at end of file +यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें। \ No newline at end of file diff --git a/emails/translations/account-reset_ko.html b/emails/translations/account-reset_ko.html index dd09c6bd..c6a9905e 100644 --- a/emails/translations/account-reset_ko.html +++ b/emails/translations/account-reset_ko.html @@ -1,15 +1,15 @@ -
[[[SERVERNAME]]] - Account Reset
+
[[[SERVERNAME]]]-계정 재설정
- [[[SERVERNAME]]] - Verification + [[[SERVERNAME]]]-확인
-

Hi [[[USERNAME]]], [[[SERVERNAME]]] is requesting an account password reset, click on the following link to complete the process.

+

[[[USERNAME]]] 님, 안녕하세요. [[[서버 이름]]] 계정 비밀번호 재설정을 요청하는 경우 다음 링크를 클릭하여 프로세스를 완료하십시오.

- Click here to reset your account password. + 계정 비밀번호를 재설정하려면 여기를 클릭하십시오.

- If you did not initiate this request, please ignore this mail. + 이 요청을 시작하지 않은 경우이 메일을 무시하십시오.
\ No newline at end of file diff --git a/emails/translations/account-reset_ko.txt b/emails/translations/account-reset_ko.txt index 8960967d..90005c8c 100644 --- a/emails/translations/account-reset_ko.txt +++ b/emails/translations/account-reset_ko.txt @@ -1,6 +1,6 @@ -[[[SERVERNAME]]] - Account Reset -Hi [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) is requesting an account password reset. Nagivate to the following link to complete the process: +[[[SERVERNAME]]]-계정 재설정 +[[[USERNAME]]] 님, [[[SERVERNAME]]] ([[[SERVERURL]]]) 님이 계정 비밀번호 재설정을 요청하고 있습니다. 프로세스를 완료하려면 다음 링크로 이동하십시오. ~ ~[[[SERVERURL]]]/checkmail?c=[[[COOKIE]]] ~ -If you did not initiate this request, please ignore this mail. \ No newline at end of file +이 요청을 시작하지 않은 경우이 메일을 무시하십시오. \ No newline at end of file diff --git a/emails/translations/mesh-invite_hi.html b/emails/translations/mesh-invite_hi.html index b2db0760..00b62443 100644 --- a/emails/translations/mesh-invite_hi.html +++ b/emails/translations/mesh-invite_hi.html @@ -1,42 +1,42 @@ -
[[[SERVERNAME]]] - Invitation
+
[[[SERVERNAME]]] - निमंत्रण
- [[[SERVERNAME]]] - Agent Installation + [[[SERVERNAME]]] - एजेंट स्थापना

- Hello [[[NAME]]], + नमस्कार [[[NAME]]],

-

User [[[USERNAME]]] on server [[[SERVERNAME]]] is requesting you to install software to start a remote control session.

+

उपयोगकर्ता [[[USERNAME]]] सर्वर पर [[[सर्वर का नाम]]] रिमोट कंट्रोल सेशन शुरू करने के लिए आपको सॉफ्टवेयर इंस्टॉल करने का अनुरोध कर रहा है।

- Message: [[[MSG]]] + संदेश: [[[MSG]]]

- Click here to download the MeshAgent for Windows. + विंडोज के लिए मेशजेंट को डाउनलोड करने के लिए यहां क्लिक करें।

-

Click here to download the MeshAgent for Apple OSX.

+

Apple OSX के लिए मेशजेंट को डाउनलोड करने के लिए यहां क्लिक करें।

- For Linux, cut & paste the following in a terminal to install the agent:
+ लिनक्स में, एजेंट को स्थापित करने के लिए टर्मिनल में निम्नलिखित को काटें और चिपकाएँ:

wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'

- To install the software, click here and follow the instructions. + सॉफ़्टवेयर स्थापित करने के लिए, यहाँ क्लिक करें और निर्देशों का पालन करें।

-

If you did not initiate this request, please ignore this mail.

- Best regards,
[[[USERNAME]]]
+

यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें।

+ सादर,
[[[उपयोगकर्ता नाम]]]
\ No newline at end of file diff --git a/emails/translations/mesh-invite_hi.txt b/emails/translations/mesh-invite_hi.txt index ac8ad99b..577d1f7c 100644 --- a/emails/translations/mesh-invite_hi.txt +++ b/emails/translations/mesh-invite_hi.txt @@ -1,35 +1,35 @@ -[[[SERVERNAME]]] - Invitation +[[[SERVERNAME]]] - निमंत्रण ~ -Hello [[[NAME]]], +नमस्कार [[[NAME]]], ~ -User [[[USERNAME]]] on server [[[SERVERNAME]]] ([[[SERVERURL]]]/) is requesting you install software to start the remote control session. +उपयोगकर्ता [[[USERNAME]]] सर्वर पर [[[SERVERNAME]]] ([[[SERVERURL]]] /) आपसे रिमोट कंट्रोल सेशन शुरू करने के लिए सॉफ़्टवेयर स्थापित करने का अनुरोध कर रहा है। ~ ~ -Message: [[[MSG]]] +संदेश: [[[एमएसजी]]] ~ ~ ~ -For Windows, nagivate to the following link to complete the process: +विंडोज के लिए, प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक पर जाएं: ~ ~[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]] ~ ~ ~ -For Apple OSX, nagivate to the following link to complete the process: +Apple OSX के लिए, इस प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक पर जाएं: ~ ~[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]] ~ ~ ~ -For Linux, cut & paste the following in a terminal to install the agent: +लिनक्स में, एजेंट को स्थापित करने के लिए टर्मिनल में निम्नलिखित को काटें और चिपकाएँ: ~ ~wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] '[[[MESHIDHEX]]]' ~ ~ ~ -To install the software, navigate to [[[SERVERURL]]][[[LINKURL]]] and follow the instructions. +सॉफ़्टवेयर को स्थापित करने के लिए, [[[SERVERURL]]] [[[LINKURL]]] पर जाएँ और निर्देशों का पालन करें। ~ -If you did not initiate this request, please ignore this mail. +यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें। ~ -Best regards, +सादर, ~[[[USERNAME]]] \ No newline at end of file diff --git a/emails/translations/mesh-invite_ko.html b/emails/translations/mesh-invite_ko.html index b2db0760..95b507da 100644 --- a/emails/translations/mesh-invite_ko.html +++ b/emails/translations/mesh-invite_ko.html @@ -1,42 +1,42 @@ -
[[[SERVERNAME]]] - Invitation
+
[[[SERVERNAME]]]-초대
- [[[SERVERNAME]]] - Agent Installation + [[[SERVERNAME]]]-에이전트 설치

- Hello [[[NAME]]], + [[[NAME]]] 님, 안녕하세요.

-

User [[[USERNAME]]] on server [[[SERVERNAME]]] is requesting you to install software to start a remote control session.

+

서버의 사용자 [[[USERNAME]]] [[[서버 이름]]] 원격 제어 세션을 시작하기 위해 소프트웨어를 설치하도록 요청하고 있습니다.

- Message: [[[MSG]]] + 메시지: [[[MSG]]]

- Click here to download the MeshAgent for Windows. + Windows 용 MeshAgent를 다운로드하려면 여기를 클릭하십시오.

-

Click here to download the MeshAgent for Apple OSX.

+

Apple OSX 용 MeshAgent를 다운로드하려면 여기를 클릭하십시오.

- For Linux, cut & paste the following in a terminal to install the agent:
+ Linux의 경우 터미널에서 다음을 잘라내어 붙여 넣어 에이전트를 설치하십시오.

wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] \'[[[MESHIDHEX]]]\'

- To install the software, click here and follow the instructions. + 소프트웨어를 설치하려면 여기를 클릭하십시오 지침을 따르십시오.

-

If you did not initiate this request, please ignore this mail.

- Best regards,
[[[USERNAME]]]
+

이 요청을 시작하지 않은 경우이 메일을 무시하십시오.

+ 친애하는,
[[[사용자 이름]]]
\ No newline at end of file diff --git a/emails/translations/mesh-invite_ko.txt b/emails/translations/mesh-invite_ko.txt index ac8ad99b..50343366 100644 --- a/emails/translations/mesh-invite_ko.txt +++ b/emails/translations/mesh-invite_ko.txt @@ -1,35 +1,35 @@ -[[[SERVERNAME]]] - Invitation +[[[SERVERNAME]]]-초대 ~ -Hello [[[NAME]]], +[[[NAME]]] 님, 안녕하세요. ~ -User [[[USERNAME]]] on server [[[SERVERNAME]]] ([[[SERVERURL]]]/) is requesting you install software to start the remote control session. +서버 [[[SERVERNAME]]] ([[[SERVERURL]]] /)의 [[[USERNAME]]] 사용자가 원격 제어 세션을 시작하기 위해 소프트웨어를 설치하도록 요청하고 있습니다. ~ ~ -Message: [[[MSG]]] +메시지 : [[[MSG]]] ~ ~ ~ -For Windows, nagivate to the following link to complete the process: +Windows의 경우 다음 링크로 이동하여 프로세스를 완료하십시오. ~ ~[[[SERVERURL]]]/meshagents?id=3&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]] ~ ~ ~ -For Apple OSX, nagivate to the following link to complete the process: +Apple OSX의 경우 다음 링크로 이동하여 프로세스를 완료하십시오. ~ ~[[[SERVERURL]]]/meshagents?id=16&meshid=[[[MESHIDHEX]]]&tag=mailto:[[[EMAIL]]]&installflags=[[[INSTALLFLAGS]]] ~ ~ ~ -For Linux, cut & paste the following in a terminal to install the agent: +Linux의 경우 터미널에서 다음을 잘라내어 붙여 넣어 에이전트를 설치하십시오. ~ ~wget -q "[[[SERVERURL]]]/meshagents?script=1" --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh [[[SERVERURL]]] '[[[MESHIDHEX]]]' ~ ~ ~ -To install the software, navigate to [[[SERVERURL]]][[[LINKURL]]] and follow the instructions. +소프트웨어를 설치하려면 [[[SERVERURL]]] [[[LINKURL]]]으로 이동하여 지침을 따르십시오. ~ -If you did not initiate this request, please ignore this mail. +이 요청을 시작하지 않은 경우이 메일을 무시하십시오. ~ -Best regards, +친애하는, ~[[[USERNAME]]] \ No newline at end of file diff --git a/emails/translations/sms-messages_es.txt b/emails/translations/sms-messages_es.txt index cffc6c48..0c5eccba 100644 --- a/emails/translations/sms-messages_es.txt +++ b/emails/translations/sms-messages_es.txt @@ -1,2 +1,2 @@ -[[0]] verification code is: [[1]] -[[0]] access token is: [[1]] +El código de verificación [[0]] es: [[1]] +[[0]] token de acceso es: [[1]] diff --git a/emails/translations/sms-messages_fr.txt b/emails/translations/sms-messages_fr.txt index cffc6c48..fda9fe69 100644 --- a/emails/translations/sms-messages_fr.txt +++ b/emails/translations/sms-messages_fr.txt @@ -1,2 +1,2 @@ -[[0]] verification code is: [[1]] -[[0]] access token is: [[1]] +[[0]] le code de vérification est: [[1]] +[[0]] le jeton d'accès est: [[1]] diff --git a/emails/translations/sms-messages_hi.txt b/emails/translations/sms-messages_hi.txt index cffc6c48..3c933cf3 100644 --- a/emails/translations/sms-messages_hi.txt +++ b/emails/translations/sms-messages_hi.txt @@ -1,2 +1,2 @@ -[[0]] verification code is: [[1]] -[[0]] access token is: [[1]] +[[०]] सत्यापन कोड है: [[१]] +[[0]] अभिगमन टोकन है: [[१]] diff --git a/emails/translations/sms-messages_ko.txt b/emails/translations/sms-messages_ko.txt index cffc6c48..d9760713 100644 --- a/emails/translations/sms-messages_ko.txt +++ b/emails/translations/sms-messages_ko.txt @@ -1,2 +1,2 @@ -[[0]] verification code is: [[1]] -[[0]] access token is: [[1]] +[[0]] 인증 코드는 다음과 같습니다. [[1]] +[[0]] 액세스 토큰은 다음과 같습니다. [[1]] diff --git a/emails/translations/sms-messages_zh-chs.txt b/emails/translations/sms-messages_zh-chs.txt index cffc6c48..9d2e320e 100644 --- a/emails/translations/sms-messages_zh-chs.txt +++ b/emails/translations/sms-messages_zh-chs.txt @@ -1,2 +1,2 @@ -[[0]] verification code is: [[1]] -[[0]] access token is: [[1]] +[[0]]验证码是:[[1]] +[[0]]访问令牌是:[[1]] diff --git a/public/scripts/agent-redir-ws-0.1.1-min.js b/public/scripts/agent-redir-ws-0.1.1-min.js index 38532d1e..65dd7acd 100644 --- a/public/scripts/agent-redir-ws-0.1.1-min.js +++ b/public/scripts/agent-redir-ws-0.1.1-min.js @@ -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;a25->1152", - "default.handlebars->25->1154" + "default.handlebars->25->1155", + "default.handlebars->25->1157" ] }, { @@ -174,7 +174,7 @@ "ru": " Может быть использована подсказка пароля, но не рекоммендуется.", "zh-chs": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->25->1081" + "default.handlebars->25->1084" ] }, { @@ -191,8 +191,8 @@ "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.", "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。", "xloc": [ - "default.handlebars->25->1227", - "default.handlebars->25->1528" + "default.handlebars->25->1230", + "default.handlebars->25->1531" ] }, { @@ -375,7 +375,7 @@ "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.", "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。", "xloc": [ - "default.handlebars->25->1199" + "default.handlebars->25->1202" ] }, { @@ -408,7 +408,7 @@ "zh-chs": ",", "xloc": [ "default-mobile.handlebars->9->335", - "default.handlebars->25->1293" + "default.handlebars->25->1296" ] }, { @@ -443,7 +443,7 @@ "ru": ", MQTT онлайн", "zh-chs": ",MQTT在線", "xloc": [ - "default.handlebars->25->824" + "default.handlebars->25->827" ] }, { @@ -460,7 +460,7 @@ "ru": ", Soft-KVM", "zh-chs": ",軟KVM", "xloc": [ - "default.handlebars->25->676" + "default.handlebars->25->679" ] }, { @@ -479,9 +479,9 @@ "xloc": [ "default-mobile.handlebars->9->238", "default-mobile.handlebars->9->246", - "default.handlebars->25->677", - "default.handlebars->25->708", - "default.handlebars->25->720", + "default.handlebars->25->680", + "default.handlebars->25->711", + "default.handlebars->25->723", "xterm.handlebars->9->6" ] }, @@ -544,7 +544,9 @@ "en": ", you can access it now with:", "es": ", ahora puede acceder con:", "fr": ", vous pouvez y accéder maintenant avec:", + "hi": ", आप इसे अभी एक्सेस कर सकते हैं:", "ja": "、あなたは今それを使ってそれにアクセスできます:", + "ko": "을 통해 다음에 액세스 할 수 있습니다.", "nl": ", je hebt er nu toegang toe met:", "ru": "Вы можете получить к нему доступ сейчас:", "zh-chs": ",您现在可以通过以下方式访问它:", @@ -604,9 +606,9 @@ "xloc": [ "default-mobile.handlebars->9->248", "default-mobile.handlebars->9->77", - "default.handlebars->25->1334", - "default.handlebars->25->1643", - "default.handlebars->25->722" + "default.handlebars->25->1337", + "default.handlebars->25->1646", + "default.handlebars->25->725" ] }, { @@ -654,7 +656,7 @@ "ru": "1 активная сессия", "zh-chs": "1個活動會話", "xloc": [ - "default.handlebars->25->1588" + "default.handlebars->25->1591" ] }, { @@ -673,7 +675,7 @@ "xloc": [ "default-mobile.handlebars->9->339", "default-mobile.handlebars->9->87", - "default.handlebars->25->1353" + "default.handlebars->25->1356" ] }, { @@ -709,7 +711,7 @@ "ru": "1 группа", "zh-chs": "1組", "xloc": [ - "default.handlebars->25->1555" + "default.handlebars->25->1558" ] }, { @@ -781,7 +783,7 @@ "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...", "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->25->1388" + "default.handlebars->25->1391" ] }, { @@ -832,7 +834,7 @@ "ru": "1 сессия", "zh-chs": "1節", "xloc": [ - "default.handlebars->25->1392" + "default.handlebars->25->1395" ] }, { @@ -1100,8 +1102,8 @@ "ru": "двухфакторная аутентификация включена", "zh-chs": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->25->1405", - "default.handlebars->25->1577" + "default.handlebars->25->1408", + "default.handlebars->25->1580" ] }, { @@ -1812,7 +1814,7 @@ "ru": "Отказано в доступе", "zh-chs": "拒絕訪問", "xloc": [ - "default.handlebars->25->825" + "default.handlebars->25->828" ] }, { @@ -1847,7 +1849,7 @@ "ru": "Доступ к файлам сервера", "zh-chs": "訪問服務器文件", "xloc": [ - "default.handlebars->25->1534" + "default.handlebars->25->1537" ] }, { @@ -1922,16 +1924,21 @@ "default-mobile.handlebars->9->62", "default-mobile.handlebars->9->64", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0", - "default.handlebars->25->1090", - "default.handlebars->25->1092", + "default.handlebars->25->1093", + "default.handlebars->25->1095", "default.handlebars->25->448", "default.handlebars->25->450" ] }, { "en": "Account Verification", - "nl": "Account verificatie", + "es": "Verificación de la cuenta", + "fr": "Vérification de compte", + "hi": "खाता सत्यापन", "ja": "アカウントの確認", + "ko": "계정 확인", + "nl": "Account verificatie", + "zh-chs": "帐户验证", "xloc": [ "message.handlebars->3->1" ] @@ -1959,13 +1966,15 @@ "en": "Account is locked", "es": "La cuenta esta bloqueada", "fr": "Le compte est verrouillé", + "hi": "खाता बंद है", "ja": "アカウントがロックされています", + "ko": "계정이 잠겨 있습니다", "nl": "Account is uitgeschakeld", "ru": "Аккаунт заблокирован", "zh-chs": "帐户已被锁定", "xloc": [ - "default.handlebars->25->1407", - "default.handlebars->25->1531" + "default.handlebars->25->1410", + "default.handlebars->25->1534" ] }, { @@ -2053,7 +2062,7 @@ "ru": "Действиe", "zh-chs": "行動", "xloc": [ - "default.handlebars->25->830", + "default.handlebars->25->833", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -2149,7 +2158,7 @@ "default-mobile.handlebars->9->189", "default.handlebars->25->469", "default.handlebars->25->471", - "default.handlebars->25->788" + "default.handlebars->25->791" ] }, { @@ -2166,8 +2175,8 @@ "ru": "Активация", "zh-chs": "激活", "xloc": [ - "default.handlebars->25->1165", - "default.handlebars->25->1167", + "default.handlebars->25->1168", + "default.handlebars->25->1170", "default.handlebars->25->223", "default.handlebars->25->225" ] @@ -2203,7 +2212,7 @@ "ru": "Добавить агент", "zh-chs": "添加代理", "xloc": [ - "default.handlebars->25->1169", + "default.handlebars->25->1172", "default.handlebars->25->227" ] }, @@ -2238,8 +2247,8 @@ "ru": "Добавить устройство", "zh-chs": "添加設備", "xloc": [ - "default.handlebars->25->1508", - "default.handlebars->25->1621" + "default.handlebars->25->1511", + "default.handlebars->25->1624" ] }, { @@ -2273,19 +2282,24 @@ "ru": "Добавить группу устройств", "zh-chs": "添加設備組", "xloc": [ - "default.handlebars->25->1259", - "default.handlebars->25->1502", - "default.handlebars->25->1609", + "default.handlebars->25->1262", + "default.handlebars->25->1505", + "default.handlebars->25->1612", "default.handlebars->25->198" ] }, { "de": "Gerätegruppe-Berechtigungen hinzufügen", "en": "Add Device Group Permissions", + "es": "Agregar permisos de grupo de dispositivos", + "fr": "Ajouter des autorisations de groupe de périphériques", + "hi": "डिवाइस समूह अनुमतियाँ जोड़ें", "ja": "デバイスグループ権限を追加", + "ko": "장치 그룹 권한 추가", "nl": "Machtigingen voor apparaatgroep toevoegen", + "zh-chs": "添加设备组权限", "xloc": [ - "default.handlebars->25->1256" + "default.handlebars->25->1259" ] }, { @@ -2294,13 +2308,15 @@ "en": "Add Device Permissions", "es": "Agregar permisos de dispositivo", "fr": "Ajouter des autorisations de périphérique", + "hi": "डिवाइस अनुमतियाँ जोड़ें", "ja": "デバイス権限を追加", + "ko": "장치 권한 추가", "nl": "Apparaatrechten toevoegen", "ru": "Добавить разрешения для устройства", "zh-chs": "添加设备权限", "xloc": [ - "default.handlebars->25->1261", - "default.handlebars->25->1263" + "default.handlebars->25->1264", + "default.handlebars->25->1266" ] }, { @@ -2385,7 +2401,7 @@ "ru": "Добавить участие", "zh-chs": "添加會員", "xloc": [ - "default.handlebars->25->1639" + "default.handlebars->25->1642" ] }, { @@ -2423,8 +2439,8 @@ "default.handlebars->25->135", "default.handlebars->25->138", "default.handlebars->25->139", - "default.handlebars->25->858", - "default.handlebars->25->859" + "default.handlebars->25->861", + "default.handlebars->25->862" ] }, { @@ -2451,12 +2467,14 @@ "en": "Add User Device Permissions", "es": "Agregar permisos del usuario del dispositivo", "fr": "Ajouter des autorisations de périphérique utilisateur", + "hi": "उपयोगकर्ता डिवाइस अनुमतियाँ जोड़ें", "ja": "ユーザーデバイスの権限を追加する", + "ko": "사용자 장치 권한 추가", "nl": "Gebruikersmachtigingen voor apparaat toevoegen", "ru": "Добавить разрешения для пользовательских устройств", "zh-chs": "添加用户设备权限", "xloc": [ - "default.handlebars->25->1266" + "default.handlebars->25->1269" ] }, { @@ -2473,26 +2491,36 @@ "ru": "Добавить группу пользователей", "zh-chs": "添加用戶組", "xloc": [ - "default.handlebars->25->1159", - "default.handlebars->25->1258", - "default.handlebars->25->1615", + "default.handlebars->25->1162", + "default.handlebars->25->1261", + "default.handlebars->25->1618", "default.handlebars->25->557" ] }, { "de": "Benutzergruppen-Geräteberechtigungen hinzufügen", "en": "Add User Group Device Permissions", + "es": "Agregar permisos de dispositivo de grupo de usuarios", + "fr": "Ajouter des autorisations de périphérique de groupe d'utilisateurs", + "hi": "उपयोगकर्ता समूह डिवाइस अनुमतियाँ जोड़ें", "ja": "ユーザーグループデバイスのアクセス許可を追加する", + "ko": "사용자 그룹 장치 권한 추가", "nl": "Gebruikersmachtigingen voor apparaatgroep toevoegen", + "zh-chs": "添加用户组设备权限", "xloc": [ - "default.handlebars->25->1268" + "default.handlebars->25->1271" ] }, { "de": "Benutzer zu Gerätegruppe hinzufügen", "en": "Add User to Device Group", + "es": "Agregar usuario al grupo de dispositivos", + "fr": "Ajouter un utilisateur au groupe d'appareils", + "hi": "उपकरण समूह में उपयोगकर्ता जोड़ें", "ja": "ユーザーをデバイスグループに追加", + "ko": "장치 그룹에 사용자 추가", "nl": "Gebruiker toevoegen aan apparaatgroep", + "zh-chs": "将用户添加到设备组", "xloc": [ "default-mobile.handlebars->9->314" ] @@ -2525,8 +2553,8 @@ "ru": "Добавить пользователей", "zh-chs": "添加用戶", "xloc": [ - "default.handlebars->25->1158", - "default.handlebars->25->1497" + "default.handlebars->25->1161", + "default.handlebars->25->1500" ] }, { @@ -2543,7 +2571,7 @@ "ru": "Добавить пользователей в группу устройств", "zh-chs": "將用戶添加到設備組", "xloc": [ - "default.handlebars->25->1255" + "default.handlebars->25->1258" ] }, { @@ -2560,7 +2588,7 @@ "ru": "Добавить пользователей в группу", "zh-chs": "將用戶添加到用戶組", "xloc": [ - "default.handlebars->25->1530" + "default.handlebars->25->1533" ] }, { @@ -2611,7 +2639,7 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.", "zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->25->1160", + "default.handlebars->25->1163", "default.handlebars->25->216" ] }, @@ -2629,7 +2657,7 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.", "zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->25->1162", + "default.handlebars->25->1165", "default.handlebars->25->218" ] }, @@ -2653,10 +2681,15 @@ { "de": "Füge einen neuen Computer durch Installation des Mesh-Agenten zu dieser Gerätegruppe hinzu.", "en": "Add a new computer to this device group by installing the mesh agent.", + "es": "Agregue una nueva computadora a este grupo de dispositivos instalando el agente de malla.", + "fr": "Ajoutez un nouvel ordinateur à ce groupe de périphériques en installant l'agent de maillage.", + "hi": "मेष एजेंट को स्थापित करके इस उपकरण समूह में एक नया कंप्यूटर जोड़ें।", "ja": "メッシュエージェントをインストールして、このデバイスグループに新しいコンピューターを追加します。", + "ko": "메쉬 에이전트를 설치하여이 장치 그룹에 새 컴퓨터를 추가하십시오.", "nl": "Voeg een nieuwe computer toe aan deze apparaatgroep door de mesh-agent te installeren.", + "zh-chs": "通过安装网状代理,将新计算机添加到该设备组。", "xloc": [ - "default.handlebars->25->1168", + "default.handlebars->25->1171", "default.handlebars->25->226" ] }, @@ -2708,7 +2741,7 @@ "ru": "Режим управления администратора (ACM)", "zh-chs": "管理員控制模式(ACM)", "xloc": [ - "default.handlebars->25->790" + "default.handlebars->25->793" ] }, { @@ -2725,7 +2758,7 @@ "ru": "Учетные данные администратора", "zh-chs": "管理員憑證", "xloc": [ - "default.handlebars->25->796" + "default.handlebars->25->799" ] }, { @@ -2760,7 +2793,7 @@ "ru": "Области администратора", "zh-chs": "管理領域", "xloc": [ - "default.handlebars->25->1559" + "default.handlebars->25->1562" ] }, { @@ -2795,7 +2828,7 @@ "ru": "Административные области", "zh-chs": "行政領域", "xloc": [ - "default.handlebars->25->1455" + "default.handlebars->25->1458" ] }, { @@ -2812,7 +2845,7 @@ "ru": "Администратор", "zh-chs": "管理員", "xloc": [ - "default.handlebars->25->1399" + "default.handlebars->25->1402" ] }, { @@ -2829,7 +2862,7 @@ "ru": "Африканский", "zh-chs": "南非語", "xloc": [ - "default.handlebars->25->861" + "default.handlebars->25->864" ] }, { @@ -2849,8 +2882,8 @@ "default-mobile.handlebars->9->131", "default-mobile.handlebars->9->184", "default-mobile.handlebars->9->200", - "default.handlebars->25->1320", - "default.handlebars->25->1328", + "default.handlebars->25->1323", + "default.handlebars->25->1331", "default.handlebars->25->177", "default.handlebars->25->370", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" @@ -2870,8 +2903,8 @@ "ru": "Агент + Intel AMT", "zh-chs": "代理+英特爾AMT", "xloc": [ - "default.handlebars->25->1322", - "default.handlebars->25->1330" + "default.handlebars->25->1325", + "default.handlebars->25->1333" ] }, { @@ -2906,7 +2939,7 @@ "zh-chs": "代理控制台", "xloc": [ "default-mobile.handlebars->9->320", - "default.handlebars->25->1276" + "default.handlebars->25->1279" ] }, { @@ -2923,7 +2956,7 @@ "ru": "Счетчик ошибок агента", "zh-chs": "座席錯誤計數器", "xloc": [ - "default.handlebars->25->1653" + "default.handlebars->25->1656" ] }, { @@ -2992,7 +3025,7 @@ "ru": "Сессии агентов", "zh-chs": "座席會議", "xloc": [ - "default.handlebars->25->1669" + "default.handlebars->25->1672" ] }, { @@ -3027,7 +3060,7 @@ "ru": "Типы агента", "zh-chs": "代理類型", "xloc": [ - "default.handlebars->25->1326", + "default.handlebars->25->1329", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -3081,7 +3114,7 @@ "ru": "Агент оффлайн", "zh-chs": "代理離線", "xloc": [ - "default.handlebars->25->823" + "default.handlebars->25->826" ] }, { @@ -3098,7 +3131,7 @@ "ru": "Агент онлайн", "zh-chs": "代理在線", "xloc": [ - "default.handlebars->25->822" + "default.handlebars->25->825" ] }, { @@ -3115,7 +3148,7 @@ "ru": "Агенты", "zh-chs": "代理商", "xloc": [ - "default.handlebars->25->1682" + "default.handlebars->25->1685" ] }, { @@ -3132,7 +3165,7 @@ "ru": "Албанский", "zh-chs": "阿爾巴尼亞語", "xloc": [ - "default.handlebars->25->862" + "default.handlebars->25->865" ] }, { @@ -3185,9 +3218,9 @@ "ru": "Фокусирование всех", "zh-chs": "全部聚焦", "xloc": [ - "default.handlebars->25->678", - "default.handlebars->25->680", - "default.handlebars->25->681" + "default.handlebars->25->681", + "default.handlebars->25->683", + "default.handlebars->25->684" ] }, { @@ -3204,8 +3237,8 @@ "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.", "zh-chs": "允許用戶管理此設備組和該組中的設備。", "xloc": [ - "default.handlebars->25->1225", - "default.handlebars->25->1527" + "default.handlebars->25->1228", + "default.handlebars->25->1530" ] }, { @@ -3214,12 +3247,14 @@ "en": "Allow users to manage this device.", "es": "Permitir al usuario administrar este dispositivo", "fr": "Autorisez les utilisateurs à gérer cet appareil.", + "hi": "उपयोगकर्ताओं को इस उपकरण को प्रबंधित करने की अनुमति दें।", "ja": "ユーザーにこのデバイスの管理を許可します。", + "ko": "사용자가이 기기를 관리 할 수 ​​있도록합니다.", "nl": "Sta gebruikers toe om dit apparaat te beheren.", "ru": "Разрешить пользователям управлять этим устройством.", "zh-chs": "允许用户管理此设备。", "xloc": [ - "default.handlebars->25->1226" + "default.handlebars->25->1229" ] }, { @@ -3272,7 +3307,7 @@ "ru": "Поменять (F10 = ESC+0)", "zh-chs": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->25->713" + "default.handlebars->25->716" ] }, { @@ -3306,8 +3341,8 @@ "ru": "Всегда уведомлять", "zh-chs": "始終通知", "xloc": [ - "default.handlebars->25->1139", - "default.handlebars->25->1568", + "default.handlebars->25->1142", + "default.handlebars->25->1571", "default.handlebars->25->505" ] }, @@ -3325,8 +3360,8 @@ "ru": "Всегда запрашивать", "zh-chs": "總是提示", "xloc": [ - "default.handlebars->25->1140", - "default.handlebars->25->1569", + "default.handlebars->25->1143", + "default.handlebars->25->1572", "default.handlebars->25->506" ] }, @@ -3336,7 +3371,9 @@ "en": "An account was created for you on server", "es": "Una cuenta ha sido creada en su servidor", "fr": "Un compte a été créé pour vous sur le serveur", + "hi": "सर्वर पर आपके लिए एक खाता बनाया गया था", "ja": "サーバー上にアカウントが作成されました", + "ko": "서버에서 계정이 생성되었습니다", "nl": "Er is een account voor je aangemaakt op de server", "ru": "Учетная запись была создана для вас на сервере", "zh-chs": "在服务器上为您创建了一个帐户", @@ -3348,8 +3385,12 @@ "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.", "en": "An account was created for you on server [[[SERVERNAME]]] ([[[SERVERURL]]]/), you can access it now with username \"[[[ACCOUNTNAME]]]\" and password \"[[[PASSWORD]]]\".", "es": "Una cuenta ha sido creada en su servidor [[[SERVERNAME]]] ([[[SERVERURL]]]/), ahora puede acceder con el usuario \"[[[ACCOUNTNAME]]]\" y la contraseña \"[[[PASSWORD]]]\".", + "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] ]] \".", + "hi": "सर्वर [[[SERVERNAME]]] ([[[SERVERURL]]] /) पर आपके लिए एक खाता बनाया गया था, आप इसे अब उपयोगकर्ता नाम \"[[[ACCOUNTNAME]]]]\" और पासवर्ड \"[[PASSWORD] के साथ एक्सेस कर सकते हैं। ]] \"।", "ja": "サーバー[[[SERVERNAME]]]([[[SERVERURL]]] /)にアカウントが作成されました。ユーザー名 \"[[[ACCOUNTNAME]]]\"とパスワード \"[[[PASSWORD] ]] \"。", + "ko": "서버 [[[SERVERNAME]]] ([[[SERVERURL]]] /)에서 계정이 생성되었습니다. 사용자 이름 \"[[[계정 이름]]]\"및 비밀번호 \"[[[비밀번호] ]] \".", "nl": "Er is een account jouw aangemaakt op de server [[[SERVERNAME]]] ([[[SERVERURL]]]/), Je kan inloggen met de gebruikersnaam \"[[[ACCOUNTNAME]]]\" en wachtwoord \"[[[PASSWORD]]]\".", + "zh-chs": "已在服务器[[[SERVERNAME]]]([[[SERVERURL]]] /)上为您创建了一个帐户,您现在可以使用用户名“ [[[ACCOUNTNAME]]]”和密码“ [[[PASSWORD] ]]”。", "xloc": [ "account-invite.txt" ] @@ -3360,7 +3401,9 @@ "en": "An account was created for you on server [[[SERVERNAME]]] ([[[SERVERURL]]]/), you can access it now with username \\\"[[[ACCOUNTNAME]]]\\\" en wachtwoord \\\"[[[PASSWORD]]]\\\".", "es": "Una cuenta ha sido creada en su servidor [[[SERVERNAME]]] ([[[SERVERURL]]]/), ahora puede acceder con el usuario \\\"[[[ACCOUNTNAME]]]\\\" y la contraseña \\\"[[[PASSWORD]]]\\\".", "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]]]\\\".", + "hi": "सर्वर [[[SERVERNAME]]] ([[[SERVERURL]]]] पर आपके लिए एक खाता बनाया गया था, अब आप इसे उपयोगकर्ता नाम \\\"[[ACCOUNTNAME]]] \\\" en wachchwoord \\\"[[के साथ एक्सेस कर सकते हैं। [कुंजिका]]]\\\"।", "ja": "サーバー[[[SERVERNAME]]]([[[SERVERURL]]]/)にアカウントが作成されました。ユーザー名 \\\"[[[ACCOUNTNAME]]]\\\" とパスワード \\\"[[[PASSWORD]]]\\\"。", + "ko": "[[[SERVERNAME]]] ([[[SERVERURL]]] /) 서버에서 계정이 생성되었습니다. 사용자 이름 \\\"[[[계정 이름]]] \\\"ko wachtwoord \\\"[[ [암호]]]\\\".", "nl": "Er is een account jouw aangemaakt op de server [[[SERVERNAME]]] ([[[SERVERURL]]]/), Je kan inloggen met de gebruikersnaam \\\"[[[ACCOUNTNAME]]]\\\" and password \\\"[[[PASSWORD]]]\\\".", "ru": "Для вас была создана учетная запись на сервере [[[SERVERNAME]]] ([[[SERVERURL]]]/), теперь вы можете получить к ней доступ с помощью имени пользователя \\\"[[[ACCOUNTNAME]]]\\\" и пароля \\\"[[[PASSWORD]]]\\\".", "zh-chs": "已在服务器[[[SERVERNAME]]]([[[SERVERURL]]]/ 上为您创建了一个帐户,您现在可以使用用户名\\“ [[[ACCOUNTNAME]]] 和密码 \\\"[[[PASSWORD]]]\\\"。" @@ -3518,7 +3561,7 @@ "ru": "Арабский (Алжир)", "zh-chs": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->25->864" + "default.handlebars->25->867" ] }, { @@ -3535,7 +3578,7 @@ "ru": "Арабский (Бахрейн)", "zh-chs": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->25->865" + "default.handlebars->25->868" ] }, { @@ -3552,7 +3595,7 @@ "ru": "Арабский (Египет)", "zh-chs": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->25->866" + "default.handlebars->25->869" ] }, { @@ -3569,7 +3612,7 @@ "ru": "Арабский (Ирак)", "zh-chs": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->25->867" + "default.handlebars->25->870" ] }, { @@ -3586,7 +3629,7 @@ "ru": "Арабский (Иордания)", "zh-chs": "阿拉伯語(約旦)", "xloc": [ - "default.handlebars->25->868" + "default.handlebars->25->871" ] }, { @@ -3603,7 +3646,7 @@ "ru": "Арабский (Кувейт)", "zh-chs": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->25->869" + "default.handlebars->25->872" ] }, { @@ -3620,7 +3663,7 @@ "ru": "Арабский (Ливан)", "zh-chs": "阿拉伯語(黎巴嫩)", "xloc": [ - "default.handlebars->25->870" + "default.handlebars->25->873" ] }, { @@ -3637,7 +3680,7 @@ "ru": "Арабский (Ливия)", "zh-chs": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->25->871" + "default.handlebars->25->874" ] }, { @@ -3654,7 +3697,7 @@ "ru": "Арабский (Марокко)", "zh-chs": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->25->872" + "default.handlebars->25->875" ] }, { @@ -3671,7 +3714,7 @@ "ru": "Арабский (Оман)", "zh-chs": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->25->873" + "default.handlebars->25->876" ] }, { @@ -3688,7 +3731,7 @@ "ru": "Арабский (Катар)", "zh-chs": "阿拉伯語(卡塔爾)", "xloc": [ - "default.handlebars->25->874" + "default.handlebars->25->877" ] }, { @@ -3705,7 +3748,7 @@ "ru": "Арабский (Саудовская Аравия)", "zh-chs": "阿拉伯語(沙特阿拉伯)", "xloc": [ - "default.handlebars->25->875" + "default.handlebars->25->878" ] }, { @@ -3722,7 +3765,7 @@ "ru": "Арабский (стандартный)", "zh-chs": "阿拉伯語(標準)", "xloc": [ - "default.handlebars->25->863" + "default.handlebars->25->866" ] }, { @@ -3739,7 +3782,7 @@ "ru": "Арабский (Сирия)", "zh-chs": "阿拉伯語(敘利亞)", "xloc": [ - "default.handlebars->25->876" + "default.handlebars->25->879" ] }, { @@ -3756,7 +3799,7 @@ "ru": "Арабский (Тунис)", "zh-chs": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->25->877" + "default.handlebars->25->880" ] }, { @@ -3773,7 +3816,7 @@ "ru": "Арабский (О.А.Э.)", "zh-chs": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->25->878" + "default.handlebars->25->881" ] }, { @@ -3790,7 +3833,7 @@ "ru": "Арабский (Йемен)", "zh-chs": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->25->879" + "default.handlebars->25->882" ] }, { @@ -3807,7 +3850,7 @@ "ru": "Арагонский", "zh-chs": "阿拉貢人", "xloc": [ - "default.handlebars->25->880" + "default.handlebars->25->883" ] }, { @@ -3824,7 +3867,7 @@ "ru": "Архитектура", "zh-chs": "建築", "xloc": [ - "default.handlebars->25->764" + "default.handlebars->25->767" ] }, { @@ -3859,7 +3902,7 @@ "zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。", "xloc": [ "default-mobile.handlebars->9->291", - "default.handlebars->25->1203" + "default.handlebars->25->1206" ] }, { @@ -3927,7 +3970,7 @@ "ru": "Вы уверенны, что {0} плагин: {1}", "zh-chs": "您確定要{0}插件嗎:{1}", "xloc": [ - "default.handlebars->25->1722" + "default.handlebars->25->1725" ] }, { @@ -3944,14 +3987,19 @@ "ru": "Армянский", "zh-chs": "亞美尼亞人", "xloc": [ - "default.handlebars->25->881" + "default.handlebars->25->884" ] }, { "de": "Einwilligung anfordern", "en": "Ask Consent", + "es": "Pedir consentimiento", + "fr": "Demander le consentement", + "hi": "सहमति से पूछें", "ja": "同意を求める", + "ko": "동의 요청", "nl": "Vraag toestemming", + "zh-chs": "询问同意", "xloc": [ "default.handlebars->deskConnectContextMenu->cxdeskuc->0" ] @@ -3959,8 +4007,13 @@ { "de": "Einwilligung anfordern + Balken", "en": "Ask Consent + Bar", + "es": "Pedir consentimiento + barra", + "fr": "Demander le consentement + le bar", + "hi": "सहमति + बार पूछें", "ja": "同意を求める+バー", + "ko": "동의 + 바 요청", "nl": "Vraag toestemming + informatiebalk", + "zh-chs": "询问同意+酒吧", "xloc": [ "default.handlebars->deskConnectContextMenu->cxdeskuc->0" ] @@ -3979,7 +4032,7 @@ "ru": "Ассамский", "zh-chs": "阿薩姆語", "xloc": [ - "default.handlebars->25->882" + "default.handlebars->25->885" ] }, { @@ -3996,7 +4049,7 @@ "ru": "Астурии", "zh-chs": "阿斯圖里亞斯人", "xloc": [ - "default.handlebars->25->883" + "default.handlebars->25->886" ] }, { @@ -4013,7 +4066,7 @@ "ru": "Приложение аутентификации", "zh-chs": "身份驗證應用", "xloc": [ - "default.handlebars->25->1572" + "default.handlebars->25->1575" ] }, { @@ -4036,8 +4089,8 @@ "default-mobile.handlebars->9->42", "default.handlebars->25->109", "default.handlebars->25->114", - "default.handlebars->25->847", - "default.handlebars->25->849" + "default.handlebars->25->850", + "default.handlebars->25->852" ] }, { @@ -4105,7 +4158,7 @@ "ru": "Автоудаление", "zh-chs": "自動刪除", "xloc": [ - "default.handlebars->25->1127" + "default.handlebars->25->1130" ] }, { @@ -4159,7 +4212,7 @@ "ru": "Азербайджанский", "zh-chs": "阿塞拜疆", "xloc": [ - "default.handlebars->25->884" + "default.handlebars->25->887" ] }, { @@ -4176,7 +4229,7 @@ "ru": "BIOS", "zh-chs": "的BIOS", "xloc": [ - "default.handlebars->25->802" + "default.handlebars->25->805" ] }, { @@ -4273,8 +4326,8 @@ "ru": "Фоновый и интерактивный", "zh-chs": "背景與互動", "xloc": [ - "default.handlebars->25->1303", - "default.handlebars->25->1310", + "default.handlebars->25->1306", + "default.handlebars->25->1313", "default.handlebars->25->295" ] }, @@ -4292,8 +4345,8 @@ "ru": "Только фоновый", "zh-chs": "僅背景", "xloc": [ - "default.handlebars->25->1304", - "default.handlebars->25->1311", + "default.handlebars->25->1307", + "default.handlebars->25->1314", "default.handlebars->25->296", "default.handlebars->25->318" ] @@ -4329,7 +4382,7 @@ "ru": "Резервные коды", "zh-chs": "備用碼", "xloc": [ - "default.handlebars->25->1574" + "default.handlebars->25->1577" ] }, { @@ -4346,7 +4399,7 @@ "ru": "Плохой ключ", "zh-chs": "錯誤的簽名", "xloc": [ - "default.handlebars->25->1660" + "default.handlebars->25->1663" ] }, { @@ -4363,7 +4416,7 @@ "ru": "Плохой веб-сертификат", "zh-chs": "錯誤的網絡證書", "xloc": [ - "default.handlebars->25->1659" + "default.handlebars->25->1662" ] }, { @@ -4380,7 +4433,7 @@ "ru": "Баскский", "zh-chs": "巴斯克", "xloc": [ - "default.handlebars->25->885" + "default.handlebars->25->888" ] }, { @@ -4414,7 +4467,7 @@ "ru": "Белорусский", "zh-chs": "白俄羅斯語", "xloc": [ - "default.handlebars->25->887" + "default.handlebars->25->890" ] }, { @@ -4431,7 +4484,7 @@ "ru": "Бенгальский", "zh-chs": "孟加拉", "xloc": [ - "default.handlebars->25->888" + "default.handlebars->25->891" ] }, { @@ -4440,7 +4493,9 @@ "en": "Best regards,", "es": "Atentamente,", "fr": "Meilleures salutations,", + "hi": "सादर,", "ja": "宜しくお願いします、", + "ko": "친애하는,", "nl": "Vriendelijke groeten,", "ru": "С уважением,", "zh-chs": "最好的祝福,", @@ -4465,7 +4520,7 @@ "ru": "Боснийский", "zh-chs": "波斯尼亞人", "xloc": [ - "default.handlebars->25->889" + "default.handlebars->25->892" ] }, { @@ -4482,7 +4537,7 @@ "ru": "Бретонский", "zh-chs": "布列塔尼", "xloc": [ - "default.handlebars->25->890" + "default.handlebars->25->893" ] }, { @@ -4499,7 +4554,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播", "xloc": [ - "default.handlebars->25->1495", + "default.handlebars->25->1498", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -4517,7 +4572,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播消息", "xloc": [ - "default.handlebars->25->1440" + "default.handlebars->25->1443" ] }, { @@ -4534,7 +4589,7 @@ "ru": "Отправить сообщение всем подключенным пользователям.", "zh-chs": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->25->1439" + "default.handlebars->25->1442" ] }, { @@ -4551,7 +4606,7 @@ "ru": "Болгарский", "zh-chs": "保加利亞語", "xloc": [ - "default.handlebars->25->886" + "default.handlebars->25->889" ] }, { @@ -4568,7 +4623,7 @@ "ru": "Бирманский", "zh-chs": "緬甸人", "xloc": [ - "default.handlebars->25->891" + "default.handlebars->25->894" ] }, { @@ -4604,8 +4659,8 @@ "zh-chs": "CIRA", "xloc": [ "default-mobile.handlebars->9->132", - "default.handlebars->25->1191", - "default.handlebars->25->1196", + "default.handlebars->25->1194", + "default.handlebars->25->1199", "default.handlebars->25->179", "default.handlebars->25->372" ] @@ -4624,7 +4679,7 @@ "ru": "CIRA Сервер", "zh-chs": "CIRA服務器", "xloc": [ - "default.handlebars->25->1710" + "default.handlebars->25->1713" ] }, { @@ -4641,7 +4696,7 @@ "ru": "CIRA Сервер команды", "zh-chs": "CIRA服務器命令", "xloc": [ - "default.handlebars->25->1711" + "default.handlebars->25->1714" ] }, { @@ -4649,6 +4704,7 @@ "en": "CPU", "es": "CPU", "fr": "CPU", + "hi": "सी पी यू", "ja": "CPU", "ko": "CPU", "nl": "CPU", @@ -4656,7 +4712,7 @@ "ru": "CPU", "zh-chs": "CPU", "xloc": [ - "default.handlebars->25->808" + "default.handlebars->25->811" ] }, { @@ -4673,7 +4729,7 @@ "ru": "Загрузка CPU", "zh-chs": "CPU負載", "xloc": [ - "default.handlebars->25->1674" + "default.handlebars->25->1677" ] }, { @@ -4690,7 +4746,7 @@ "ru": "Загрузка CPU за последние 15 минут", "zh-chs": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->25->1677" + "default.handlebars->25->1680" ] }, { @@ -4707,7 +4763,7 @@ "ru": "Загрузка CPU за последние 5 минут", "zh-chs": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->25->1676" + "default.handlebars->25->1679" ] }, { @@ -4724,7 +4780,7 @@ "ru": "Загрузка CPU за последнюю минуту", "zh-chs": "最後一分鐘的CPU負載", "xloc": [ - "default.handlebars->25->1675" + "default.handlebars->25->1678" ] }, { @@ -4741,8 +4797,8 @@ "ru": "CR+LF", "zh-chs": "CR +低頻", "xloc": [ - "default.handlebars->25->706", - "default.handlebars->25->715", + "default.handlebars->25->709", + "default.handlebars->25->718", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -4760,8 +4816,8 @@ "ru": "Формат CSV", "zh-chs": "CSV格式", "xloc": [ - "default.handlebars->25->1374", - "default.handlebars->25->1431", + "default.handlebars->25->1377", + "default.handlebars->25->1434", "default.handlebars->25->399" ] }, @@ -4779,7 +4835,7 @@ "ru": "Ошибка вызова", "zh-chs": "通話錯誤", "xloc": [ - "default.handlebars->25->1723" + "default.handlebars->25->1726" ] }, { @@ -4798,7 +4854,7 @@ "xloc": [ "default-mobile.handlebars->9->51", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->25->1111", + "default.handlebars->25->1114", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -4808,11 +4864,16 @@ }, { "en": "Capacity", + "es": "Capacidad", + "fr": "Capacité", + "hi": "क्षमता", "ja": "容量", + "ko": "생산 능력", "nl": "Capaciteit", + "zh-chs": "容量", "xloc": [ - "default.handlebars->25->816", - "default.handlebars->25->818" + "default.handlebars->25->819", + "default.handlebars->25->821" ] }, { @@ -4829,7 +4890,7 @@ "ru": "Объем / Скорость", "zh-chs": "容量/速度", "xloc": [ - "default.handlebars->25->811" + "default.handlebars->25->814" ] }, { @@ -4846,7 +4907,7 @@ "ru": "Каталонский", "zh-chs": "加泰羅尼亞語", "xloc": [ - "default.handlebars->25->892" + "default.handlebars->25->895" ] }, { @@ -4880,13 +4941,18 @@ "ru": "Чаморро", "zh-chs": "查莫羅", "xloc": [ - "default.handlebars->25->893" + "default.handlebars->25->896" ] }, { "en": "Change Email Address", + "es": "Cambiar dirección de correo electrónico", + "fr": "Changer l'adresse email", + "hi": "ईमेल पता बदलें", "ja": "メールアドレスを変更する", + "ko": "이메일 주소 변경", "nl": "Verander e-mailadres", + "zh-chs": "更改电子邮件地址", "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->checkemailpanel->1->checkCheckOperations->1->2->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->checkemailpanel->1->checkCheckOperations->1->2->1->1" @@ -4906,7 +4972,7 @@ "ru": "Смена email для {0}", "zh-chs": "更改{0}的電子郵件", "xloc": [ - "default.handlebars->25->1598" + "default.handlebars->25->1601" ] }, { @@ -4943,8 +5009,8 @@ "zh-chs": "更改密碼", "xloc": [ "default-mobile.handlebars->9->59", - "default.handlebars->25->1087", - "default.handlebars->25->1587" + "default.handlebars->25->1090", + "default.handlebars->25->1590" ] }, { @@ -4961,7 +5027,7 @@ "ru": "Смена пароля для {0}", "zh-chs": "更改{0}的密碼", "xloc": [ - "default.handlebars->25->1605" + "default.handlebars->25->1608" ] }, { @@ -5031,7 +5097,7 @@ "ru": "Изменить пароль для этого пользователя", "zh-chs": "更改該用戶的密碼", "xloc": [ - "default.handlebars->25->1586" + "default.handlebars->25->1589" ] }, { @@ -5065,7 +5131,7 @@ "ru": "Измените адрес электронной почты вашей учетной записи здесь.", "zh-chs": "在此處更改您的帳戶電子郵件地址。", "xloc": [ - "default.handlebars->25->1074" + "default.handlebars->25->1077" ] }, { @@ -5082,7 +5148,7 @@ "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.", "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->25->1080" + "default.handlebars->25->1083" ] }, { @@ -5099,7 +5165,7 @@ "ru": "Изменение языка потребует перезагрузить страницу.", "zh-chs": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->25->1059" + "default.handlebars->25->1062" ] }, { @@ -5116,7 +5182,7 @@ "ru": "Чат", "zh-chs": "聊天室", "xloc": [ - "default.handlebars->25->1391", + "default.handlebars->25->1394", "default.handlebars->25->577", "default.handlebars->25->596" ] @@ -5137,8 +5203,8 @@ "xloc": [ "default-mobile.handlebars->9->312", "default-mobile.handlebars->9->330", - "default.handlebars->25->1253", - "default.handlebars->25->1287" + "default.handlebars->25->1256", + "default.handlebars->25->1290" ] }, { @@ -5155,7 +5221,7 @@ "ru": "Чеченский", "zh-chs": "車臣", "xloc": [ - "default.handlebars->25->894" + "default.handlebars->25->897" ] }, { @@ -5211,8 +5277,13 @@ }, { "en": "Check your phone and enter the verification code.", - "nl": "Controleer uw telefoon en voer de verificatiecode in.", + "es": "Revisa tu teléfono e ingresa el código de verificación.", + "fr": "Vérifiez votre téléphone et entrez le code de vérification.", + "hi": "अपना फ़ोन जांचें और सत्यापन कोड दर्ज करें।", "ja": "スマートフォンを確認し、確認コードを入力してください。", + "ko": "휴대 전화를 확인하고 인증 코드를 입력하십시오.", + "nl": "Controleer uw telefoon en voer de verificatiecode in.", + "zh-chs": "检查您的电话并输入验证码。", "xloc": [ "default.handlebars->25->141" ] @@ -5231,8 +5302,8 @@ "ru": "Проверка...", "zh-chs": "檢查...", "xloc": [ - "default.handlebars->25->1717", - "default.handlebars->25->860" + "default.handlebars->25->1720", + "default.handlebars->25->863" ] }, { @@ -5249,7 +5320,7 @@ "ru": "Китайский", "zh-chs": "中文", "xloc": [ - "default.handlebars->25->895" + "default.handlebars->25->898" ] }, { @@ -5266,7 +5337,7 @@ "ru": "Китайский (Гонконг)", "zh-chs": "中文(香港)", "xloc": [ - "default.handlebars->25->896" + "default.handlebars->25->899" ] }, { @@ -5283,7 +5354,7 @@ "ru": "Китайский (КНР)", "zh-chs": "中文(中國)", "xloc": [ - "default.handlebars->25->897" + "default.handlebars->25->900" ] }, { @@ -5292,13 +5363,15 @@ "en": "Chinese (Simplified)", "es": "Chino (simplificado)", "fr": "Chinois simplifié)", + "hi": "सरलीकृत चीनी)", "ja": "中国語(簡体字)", + "ko": "중국어 (간체)", "nl": "Chinees (Vereenvoudigd)", "pt": "Chinês (simplificado)", "ru": "Упрощенный китайский)", "zh-chs": "简体中文)", "xloc": [ - "default.handlebars->25->1057" + "default.handlebars->25->1060" ] }, { @@ -5315,7 +5388,7 @@ "ru": "Китайский (Сингапур)", "zh-chs": "中文(新加坡)", "xloc": [ - "default.handlebars->25->898" + "default.handlebars->25->901" ] }, { @@ -5332,7 +5405,7 @@ "ru": "Китайский (Тайвань)", "zh-chs": "中文(台灣)", "xloc": [ - "default.handlebars->25->899" + "default.handlebars->25->902" ] }, { @@ -5367,7 +5440,7 @@ "ru": "Чувашский", "zh-chs": "楚瓦什", "xloc": [ - "default.handlebars->25->900" + "default.handlebars->25->903" ] }, { @@ -5407,11 +5480,11 @@ "default-mobile.handlebars->9->271", "default-mobile.handlebars->9->273", "default-mobile.handlebars->9->28", - "default.handlebars->25->1368", - "default.handlebars->25->741", - "default.handlebars->25->743", - "default.handlebars->25->745", - "default.handlebars->25->747", + "default.handlebars->25->1371", + "default.handlebars->25->744", + "default.handlebars->25->746", + "default.handlebars->25->748", + "default.handlebars->25->750", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default.handlebars->container->column_l->p41->3->1", "messenger.handlebars->xbottom" @@ -5437,10 +5510,15 @@ { "de": "Alles leeren", "en": "Clear all", + "es": "Limpiar todo", + "fr": "Tout effacer", + "hi": "सभी साफ करें", "ja": "すべてクリア", + "ko": "모두 지우기", "nl": "Wis alle meldingen", + "zh-chs": "全部清除", "xloc": [ - "default.handlebars->25->1647" + "default.handlebars->25->1650" ] }, { @@ -5457,7 +5535,7 @@ "ru": "Очистить ядро", "zh-chs": "清除核心", "xloc": [ - "default.handlebars->25->832" + "default.handlebars->25->835" ] }, { @@ -5483,12 +5561,14 @@ "en": "Clear this notification", "es": "Borrar esta notificación", "fr": "Effacez cette notification", + "hi": "इस अधिसूचना को साफ़ करें", "ja": "この通知をクリア", + "ko": "이 알림을 지우십시오", "nl": "Wis deze melding", "ru": "Очистить это уведомление", "zh-chs": "清除此通知", "xloc": [ - "default.handlebars->25->1646" + "default.handlebars->25->1649" ] }, { @@ -5497,7 +5577,9 @@ "en": "Click here to download the MeshAgent for Apple OSX.", "es": "Haga click aquí para descargar el Agente de MeshCentral para Apple OSX.", "fr": "Cliquez ici pour télécharger le MeshAgent pour Apple OSX.", + "hi": "Apple OSX के लिए मेशजेंट को डाउनलोड करने के लिए यहां क्लिक करें।", "ja": "ここをクリックして、Apple OSX用のMeshAgentをダウンロードしてください。", + "ko": "Apple OSX 용 MeshAgent를 다운로드하려면 여기를 클릭하십시오.", "nl": "Klik hier om de MeshAgent te downloaden voor Apple OSX.", "ru": "Нажмите здесь, чтобы загрузить MeshAgent для Apple OSX.", "zh-chs": "单击此处下载适用于Apple OSX的MeshAgent。", @@ -5511,7 +5593,9 @@ "en": "Click here to download the MeshAgent for Windows.", "es": "Haga click aquí para descargar el agente de MeshCentral para Windows.", "fr": "Cliquez ici pour télécharger le MeshAgent pour Windows.", + "hi": "विंडोज के लिए मेशजेंट को डाउनलोड करने के लिए यहां क्लिक करें।", "ja": "Windows用のMeshAgentをダウンロードするには、ここをクリックしてください。", + "ko": "Windows 용 MeshAgent를 다운로드하려면 여기를 클릭하십시오.", "nl": "Klik hier om de MeshAgent te downloaden voor Windows.", "ru": "Нажмите здесь, чтобы загрузить MeshAgent для Windows.", "zh-chs": "单击此处下载适用于Windows的MeshAgent。", @@ -5521,11 +5605,16 @@ }, { "en": "Click here to edit the device group name", + "es": "Haga clic aquí para editar el nombre del grupo de dispositivos.", + "fr": "Cliquez ici pour modifier le nom du groupe d'appareils", + "hi": "डिवाइस समूह का नाम संपादित करने के लिए यहां क्लिक करें", "ja": "ここをクリックしてデバイスグループ名を編集します", + "ko": "장치 그룹 이름을 편집하려면 여기를 클릭하십시오", "nl": "Klik hier om de apparaatgroepsnaam te bewerken", + "zh-chs": "单击此处编辑设备组名称", "xloc": [ - "default.handlebars->25->1120", - "default.handlebars->25->1324" + "default.handlebars->25->1123", + "default.handlebars->25->1327" ] }, { @@ -5547,10 +5636,15 @@ }, { "en": "Click here to edit the user group name", + "es": "Haga clic aquí para editar el nombre del grupo de usuarios.", + "fr": "Cliquez ici pour modifier le nom du groupe d'utilisateurs", + "hi": "उपयोगकर्ता समूह नाम संपादित करने के लिए यहां क्लिक करें", "ja": "ユーザーグループ名を編集するには、ここをクリックしてください", + "ko": "사용자 그룹 이름을 편집하려면 여기를 클릭하십시오", "nl": "Klik hier om de gebruikersgroepsnaam te bewerken", + "zh-chs": "单击此处编辑用户组名称", "xloc": [ - "default.handlebars->25->1488" + "default.handlebars->25->1491" ] }, { @@ -5559,7 +5653,9 @@ "en": "Click here to reset your account password.", "es": "Haga click aquí para resetear la contraseña de su cuenta.", "fr": "Cliquez ici pour réinitialiser le mot de passe de votre compte.", + "hi": "अपना खाता पासवर्ड रीसेट करने के लिए यहां क्लिक करें।", "ja": "ここをクリックしてアカウントのパスワードをリセットしてください。", + "ko": "계정 비밀번호를 재설정하려면 여기를 클릭하십시오.", "nl": "Klik hier om je wachtwoord opnieuw in te stellen.", "ru": "Нажмите здесь, чтобы сбросить пароль учетной записи.", "zh-chs": "单击此处重置您的帐户密码。", @@ -5573,7 +5669,9 @@ "en": "Click here to verify your e-mail address.", "es": "Haga click aquí para verificar su dirección de e-mail", "fr": "Cliquez ici pour vérifier votre adresse e-mail.", + "hi": "अपना ई-मेल पता सत्यापित करने के लिए यहां क्लिक करें।", "ja": "ここをクリックして、電子メールアドレスを確認してください。", + "ko": "이메일 주소를 확인하려면 여기를 클릭하십시오.", "nl": "Klik hier om uw e-mailadres te verifiëren.", "ru": "Нажмите здесь, чтобы подтвердить свой адрес электронной почты.", "zh-chs": "单击此处以验证您的电子邮件地址。", @@ -5596,7 +5694,7 @@ "zh-chs": "單擊確定將驗證郵件發送到:", "xloc": [ "default-mobile.handlebars->9->44", - "default.handlebars->25->1071" + "default.handlebars->25->1074" ] }, { @@ -5630,7 +5728,7 @@ "ru": "Режим управления клиентом (CCM)", "zh-chs": "客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->25->789" + "default.handlebars->25->792" ] }, { @@ -5647,8 +5745,8 @@ "ru": "Клиент инициировал удаленный доступ", "zh-chs": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->25->1190", - "default.handlebars->25->1195" + "default.handlebars->25->1193", + "default.handlebars->25->1198" ] }, { @@ -5685,7 +5783,7 @@ "default-mobile.handlebars->9->26", "default.handlebars->25->121", "default.handlebars->25->129", - "default.handlebars->25->699" + "default.handlebars->25->702" ] }, { @@ -5720,8 +5818,8 @@ "ru": "Общие группы устройств", "zh-chs": "通用設備組", "xloc": [ - "default.handlebars->25->1503", - "default.handlebars->25->1610" + "default.handlebars->25->1506", + "default.handlebars->25->1613" ] }, { @@ -5738,8 +5836,8 @@ "ru": "Общие устройства", "zh-chs": "通用設備", "xloc": [ - "default.handlebars->25->1509", - "default.handlebars->25->1622" + "default.handlebars->25->1512", + "default.handlebars->25->1625" ] }, { @@ -5757,7 +5855,7 @@ "zh-chs": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->9->96", - "default.handlebars->25->1363" + "default.handlebars->25->1366" ] }, { @@ -5776,11 +5874,11 @@ "xloc": [ "default-mobile.handlebars->9->230", "default-mobile.handlebars->9->292", - "default.handlebars->25->1204", - "default.handlebars->25->1417", - "default.handlebars->25->1480", - "default.handlebars->25->1523", - "default.handlebars->25->1608", + "default.handlebars->25->1207", + "default.handlebars->25->1420", + "default.handlebars->25->1483", + "default.handlebars->25->1526", + "default.handlebars->25->1611", "default.handlebars->25->396", "default.handlebars->25->630", "default.handlebars->25->639" @@ -5801,7 +5899,7 @@ "zh-chs": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->9->262", - "default.handlebars->25->736" + "default.handlebars->25->739" ] }, { @@ -5819,16 +5917,21 @@ "zh-chs": "確認{0}個條目的副本到此位置?", "xloc": [ "default-mobile.handlebars->9->261", - "default.handlebars->25->735" + "default.handlebars->25->738" ] }, { "de": "Bestätigen Sie das Löschen der gewählten Konten?", "en": "Confirm delete selected account(s)?", + "es": "¿Confirmar eliminar cuenta (s) seleccionada (s)?", + "fr": "Confirmer la suppression des comptes sélectionnés?", + "hi": "चयनित खाते को हटाने की पुष्टि करें?", "ja": "選択したアカウントの削除を確認しますか?", + "ko": "선택한 계정을 삭제 하시겠습니까?", "nl": "Bevestig verwijdering geselecteerde account(s)?", + "zh-chs": "确认删除选定的帐户?", "xloc": [ - "default.handlebars->25->1416" + "default.handlebars->25->1419" ] }, { @@ -5851,10 +5954,15 @@ { "de": "Bestätigen Sie das Löschen der gewählten Benutzergruppen?", "en": "Confirm delete selected user groups(s)?", + "es": "¿Confirmar eliminar grupos de usuarios seleccionados?", + "fr": "Confirmer la suppression des groupes d'utilisateurs sélectionnés?", + "hi": "चयनित उपयोगकर्ता समूहों को हटाएं?", "ja": "選択したユーザーグループの削除を確認しますか?", + "ko": "선택한 사용자 그룹을 삭제 하시겠습니까?", "nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?", + "zh-chs": "确认删除选定的用户组?", "xloc": [ - "default.handlebars->25->1479" + "default.handlebars->25->1482" ] }, { @@ -5871,25 +5979,35 @@ "ru": "Подтвердить удаление пользователя {0}?", "zh-chs": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->25->1607" + "default.handlebars->25->1610" ] }, { "de": "Bestätigen Sie den Mitgliedschaftsentzug für Benutzer \\\"{0}\\\"?", "en": "Confirm membership removal of user \\\"{0}\\\"?", + "es": "¿Confirmar la eliminación de la membresía del usuario \\\"{0}\\\"?", + "fr": "Confirmer la suppression de l'adhésion de l'utilisateur \\\"{0}\\\"?", + "hi": "उपयोगकर्ता के \\\"{0}\\\" की सदस्यता हटाने की पुष्टि करें?", "ja": "ユーザー\\\"{0}\\\"のメンバーシップの削除を確認しますか?", + "ko": "사용자 \\\"{0}\\\"의 멤버십 제거를 확인 하시겠습니까?", "nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?", + "zh-chs": "确认删除用户\\“ {0} \\”的成员身份?", "xloc": [ - "default.handlebars->25->1526" + "default.handlebars->25->1529" ] }, { "de": "Bestätigen Sie den Mitgliedschaftsentzug für Benutzergruppe \\\"{0}\\\"?", "en": "Confirm membership removal of user group \\\"{0}\\\"?", + "es": "¿Confirmar la eliminación de la membresía del grupo de usuarios \\\"{0}\\\"?", + "fr": "Confirmer la suppression de l'appartenance au groupe d'utilisateurs \\\"{0}\\\"?", + "hi": "उपयोगकर्ता समूह की सदस्यता हटाने की पुष्टि करें \\\"{0}\\\"?", "ja": "ユーザーグループ\\\"{0}\\\"のメンバーシップの削除を確認しますか?", + "ko": "사용자 그룹 \\\"{0}\\\"의 멤버십 제거를 확인 하시겠습니까?", "nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?", + "zh-chs": "确认删除用户组 “{0}” 的成员身份?", "xloc": [ - "default.handlebars->25->1637" + "default.handlebars->25->1640" ] }, { @@ -5907,7 +6025,7 @@ "zh-chs": "確認將1個入口移動到此位置?", "xloc": [ "default-mobile.handlebars->9->264", - "default.handlebars->25->738" + "default.handlebars->25->741" ] }, { @@ -5925,7 +6043,7 @@ "zh-chs": "確認將{0}個條目移到此位置?", "xloc": [ "default-mobile.handlebars->9->263", - "default.handlebars->25->737" + "default.handlebars->25->740" ] }, { @@ -5942,55 +6060,80 @@ "ru": "Подтвердить перезапись?", "zh-chs": "確認覆蓋?", "xloc": [ - "default.handlebars->25->1362" + "default.handlebars->25->1365" ] }, { "de": "Bestätigen Sie den Entzug von Zugriffsrechten für Gerät \\\"{0}\\\"?", "en": "Confirm removal of access rights for device \\\"{0}\\\"?", + "es": "¿Confirmar la eliminación de los derechos de acceso para el dispositivo \\\"{0}\\\"?", + "fr": "Confirmer la suppression des droits d'accès pour l'appareil \\\"{0}\\\"?", + "hi": "डिवाइस \\\"{0}\\\" के लिए एक्सेस अधिकारों को हटाने की पुष्टि करें?", "ja": "デバイス「{0}」のアクセス権の削除を確認しますか?", + "ko": "\\\"{0}\\\"장치에 대한 액세스 권한 제거를 확인 하시겠습니까?", "nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?", + "zh-chs": "确认删除设备“ {0} ”的访问权限?", "xloc": [ - "default.handlebars->25->1516", - "default.handlebars->25->1628" + "default.handlebars->25->1519", + "default.handlebars->25->1631" ] }, { "de": "Bestätigen Sie den Entzug von Zugriffsrechten für Gerätegruppe \\\"{0}\\\"?", "en": "Confirm removal of access rights for device group \\\"{0}\\\"?", + "es": "¿Confirmar la eliminación de los derechos de acceso para el grupo de dispositivos \\\"{0}\\\"?", + "fr": "Confirmer la suppression des droits d'accès pour le groupe d'appareils \\\"{0}\\\"?", + "hi": "उपकरण समूह \\\"{0}\\\" के लिए एक्सेस अधिकारों को हटाने की पुष्टि करें?", "ja": "デバイスグループ「{0}」のアクセス権の削除を確認しますか?", + "ko": "장치 그룹 \\\"{0}\\\"에 대한 액세스 권한 제거를 확인 하시겠습니까?", "nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?", + "zh-chs": "是否确认删除设备组“ {0}”的访问权限?", "xloc": [ - "default.handlebars->25->1518", - "default.handlebars->25->1641" + "default.handlebars->25->1521", + "default.handlebars->25->1644" ] }, { "de": "Bestätigen Sie den Entzug von Zugriffsrechten für Benutzer \\\"{0}\\\"?", "en": "Confirm removal of access rights for user \\\"{0}\\\"?", + "es": "¿Confirmar la eliminación de los derechos de acceso para el usuario \\\"{0}\\\"?", + "fr": "Confirmer la suppression des droits d'accès pour l'utilisateur \\\"{0}\\\"?", + "hi": "उपयोगकर्ता के लिए पहुँच अधिकारों की पुष्टि करें \\\"{0}\\\"?", "ja": "ユーザー\\\"{0}\\\"のアクセス権の削除を確認しますか?", + "ko": "사용자 \\\"{0}\\\"에 대한 액세스 권한 제거를 확인 하시겠습니까?", "nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?", - "xloc": [ - "default.handlebars->25->1630" - ] - }, - { - "de": "Bestätigen Sie den Entzug von Zugriffsrechten für Benutzergruppe \\\"{0}\\\"?", - "en": "Confirm removal of access rights for user group \\\"{0}\\\"?", - "ja": "ユーザーグループ「{0}」のアクセス権の削除を確認しますか?", - "nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?", + "zh-chs": "确认删除用户\\“ {0} \\”的访问权限?", "xloc": [ "default.handlebars->25->1633" ] }, + { + "de": "Bestätigen Sie den Entzug von Zugriffsrechten für Benutzergruppe \\\"{0}\\\"?", + "en": "Confirm removal of access rights for user group \\\"{0}\\\"?", + "es": "¿Confirmar la eliminación de los derechos de acceso para el grupo de usuarios \\\"{0}\\\"?", + "fr": "Confirmer la suppression des droits d'accès pour le groupe d'utilisateurs \\\"{0}\\\"?", + "hi": "उपयोगकर्ता समूह के लिए पहुँच अधिकारों की पुष्टि करें \\\"{0}\\\"?", + "ja": "ユーザーグループ「{0}」のアクセス権の削除を確認しますか?", + "ko": "사용자 그룹 \\\"{0}\\\"에 대한 액세스 권한 제거를 확인 하시겠습니까?", + "nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?", + "zh-chs": "确认删除用户组“ {0}”的访问权限?", + "xloc": [ + "default.handlebars->25->1636" + ] + }, { "de": "Bestätigen Sie den Entzug von Zugriffsrechten?", "en": "Confirm removal of access rights?", + "es": "¿Confirmar la eliminación de los derechos de acceso?", + "fr": "Confirmer la suppression des droits d'accès?", + "hi": "एक्सेस अधिकारों को हटाने की पुष्टि करें?", "ja": "アクセス権の削除を確認しますか?", + "ko": "액세스 권한 제거를 확인 하시겠습니까?", "nl": "Verwijdering van toegangsrechten bevestigen?", + "zh-chs": "确认删除访问权限?", "xloc": [ - "default.handlebars->25->1631", - "default.handlebars->25->1634" + "default.handlebars->25->1634", + "default.handlebars->25->1637" ] }, { @@ -6008,7 +6151,7 @@ "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?", "xloc": [ "default-mobile.handlebars->9->43", - "default.handlebars->25->850" + "default.handlebars->25->853" ] }, { @@ -6031,7 +6174,9 @@ "en": "Confirm removal of device {0}?", "es": "Confirmar la eliminación del dispositivo {0}?", "fr": "Confirmer la suppression de l'appareil {0}?", + "hi": "डिवाइस {0} को हटाने की पुष्टि करें?", "ja": "デバイス{0}の削除を確認しますか?", + "ko": "장치 {0}의 제거를 확인 하시겠습니까?", "nl": "Bevestig het verwijderen van apparaat {0}?", "ru": "Подтвердите удаление устройства {0}?", "zh-chs": "确认移除设备{0}?" @@ -6053,26 +6198,41 @@ { "de": "Bestätigen Sie den Entzug von Rechten für Benutzer \\\"{0}\\\"?", "en": "Confirm removal of rights for user \\\"{0}\\\"?", + "es": "¿Confirmar la eliminación de los derechos del usuario \\\"{0}\\\"?", + "fr": "Confirmer la suppression des droits de l'utilisateur \\\"{0}\\\"?", + "hi": "उपयोगकर्ता के लिए अधिकारों की पुष्टि \\\"{0}\\\"?", "ja": "ユーザー「{0}」の権限の削除を確認しますか?", + "ko": "사용자 \\\"{0}\\\"에 대한 권한 제거를 확인 하시겠습니까?", "nl": "Bevestig de verwijdering van rechten voor gebruiker \\\"{0}\\\"?", + "zh-chs": "确认删除用户“ {0} ”的权限?", "xloc": [ - "default.handlebars->25->1296" + "default.handlebars->25->1299" ] }, { "de": "Bestätigen Sie den Entzug von Rechten für Benutzergruppe \\\"{0}\\\"?", "en": "Confirm removal of rights for user group \\\"{0}\\\"?", + "es": "¿Confirmar la eliminación de derechos para el grupo de usuarios \\\"{0}\\\"?", + "fr": "Confirmer la suppression des droits du groupe d'utilisateurs \\\"{0}\\\"?", + "hi": "उपयोगकर्ता समूह के लिए अधिकारों को हटाने की पुष्टि करें \\\"{0}\\\"?", "ja": "ユーザーグループ「{0}」の権限の削除を確認しますか?", + "ko": "사용자 그룹 \\\"{0}\\\"에 대한 권한 제거를 확인 하시겠습니까?", "nl": "Bevestig de verwijdering van rechten voor de gebruikergroep \\\"{0}\\\"?", + "zh-chs": "确认删除用户组“ {0} ”的权限?", "xloc": [ - "default.handlebars->25->1298" + "default.handlebars->25->1301" ] }, { "de": "Bestätigen Sie das Entfernen der Benutzergruppe {0}?", "en": "Confirm removal of user group {0}?", + "es": "¿Confirmar la eliminación del grupo de usuarios {0}?", + "fr": "Confirmer la suppression du groupe d'utilisateurs {0}?", + "hi": "उपयोगकर्ता समूह {0} को हटाने की पुष्टि करें?", "ja": "ユーザーグループ{0}の削除を確認しますか?", - "nl": "Verwijderen van gebruikersgroep {0} bevestigen?" + "ko": "사용자 그룹 {0}의 제거를 확인 하시겠습니까?", + "nl": "Verwijderen van gebruikersgroep {0} bevestigen?", + "zh-chs": "确认删除用户组{0}?" }, { "cs": "Potvrdit odstranění uživatele {0}?", @@ -6108,8 +6268,8 @@ "default-mobile.handlebars->9->244", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", - "default.handlebars->25->1143", - "default.handlebars->25->718", + "default.handlebars->25->1146", + "default.handlebars->25->721", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3", @@ -6148,8 +6308,8 @@ "ru": "Подключиться к серверу", "zh-chs": "連接到服務器", "xloc": [ - "default.handlebars->25->1194", - "default.handlebars->25->1198" + "default.handlebars->25->1197", + "default.handlebars->25->1201" ] }, { @@ -6220,7 +6380,7 @@ "ru": "Подключено Intel® AMT", "zh-chs": "連接的英特爾®AMT", "xloc": [ - "default.handlebars->25->1665" + "default.handlebars->25->1668" ] }, { @@ -6237,7 +6397,7 @@ "ru": "Подключенные пользователи", "zh-chs": "關聯用戶", "xloc": [ - "default.handlebars->25->1670" + "default.handlebars->25->1673" ] }, { @@ -6254,7 +6414,7 @@ "ru": "Подключено сейчас", "zh-chs": "現在已連接", "xloc": [ - "default.handlebars->25->768" + "default.handlebars->25->771" ] }, { @@ -6294,7 +6454,7 @@ "default.handlebars->25->204", "default.handlebars->25->207", "default.handlebars->25->213", - "default.handlebars->25->759", + "default.handlebars->25->762", "default.handlebars->25->9", "xterm.handlebars->9->2" ] @@ -6313,7 +6473,7 @@ "ru": "Подключений ", "zh-chs": "連接數", "xloc": [ - "default.handlebars->25->1681" + "default.handlebars->25->1684" ] }, { @@ -6330,7 +6490,7 @@ "ru": "Ретранслятор подключения", "zh-chs": "連接繼電器", "xloc": [ - "default.handlebars->25->1709" + "default.handlebars->25->1712" ] }, { @@ -6382,7 +6542,7 @@ "zh-chs": "連接性", "xloc": [ "default-mobile.handlebars->9->205", - "default.handlebars->25->1331", + "default.handlebars->25->1334", "default.handlebars->25->195", "default.handlebars->25->519", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" @@ -6432,7 +6592,9 @@ "en": "Control", "es": "Control", "fr": "Contrôle", + "hi": "नियंत्रण", "ja": "コントロール", + "ko": "제어", "nl": "Controle", "ru": "контроль", "zh-chs": "控制", @@ -6455,7 +6617,7 @@ "ru": "Cookie-кодировщик", "zh-chs": "Cookie編碼器", "xloc": [ - "default.handlebars->25->1695" + "default.handlebars->25->1698" ] }, { @@ -6519,7 +6681,9 @@ "en": "Copy Windows 32bit agent URL to clipboard", "es": "Copiar la URL del Agente de Windows de 32bit al portapapeles", "fr": "Copier l'URL de l'agent Windows 32 bits dans le presse-papiers", + "hi": "Windows 32bit एजेंट URL को क्लिपबोर्ड पर कॉपी करें", "ja": "Windows 32ビットエージェントのURLをクリップボードにコピー", + "ko": "Windows 32 비트 에이전트 URL을 클립 보드에 복사", "nl": "Kopieer de Windows 32bit-agent URL naar het klembord", "ru": "Скопировать URL-адрес агента Windows 32bit в буфер обмена", "zh-chs": "将Windows 32位代理URL复制到剪贴板", @@ -6533,7 +6697,9 @@ "en": "Copy Windows 64bit agent URL to clipboard", "es": "Copiar la URL del Agente de Windows de 64bit al portapapeles", "fr": "Copier l'URL de l'agent Windows 64 bits dans le presse-papiers", + "hi": "क्लिपबोर्ड पर विंडोज़ 64 बिट एजेंट URL की प्रतिलिपि बनाएँ", "ja": "Windows 64ビットエージェントのURLをクリップボードにコピー", + "ko": "Windows 64 비트 에이전트 URL을 클립 보드에 복사", "nl": "Kopieer de Windows 64bit-agent URL naar het klembord", "ru": "Скопировать URL-адрес агента Windows 64bit в буфер обмена", "zh-chs": "将Windows 64位代理URL复制到剪贴板", @@ -6577,8 +6743,8 @@ "ru": "Скопировать ссылку в буфер обмена", "zh-chs": "複製鏈接到剪貼板", "xloc": [ - "default.handlebars->25->1336", - "default.handlebars->25->1350", + "default.handlebars->25->1339", + "default.handlebars->25->1353", "default.handlebars->25->308" ] }, @@ -6756,7 +6922,7 @@ "ru": "Основной сервер", "zh-chs": "核心服務器", "xloc": [ - "default.handlebars->25->1694" + "default.handlebars->25->1697" ] }, { @@ -6773,7 +6939,7 @@ "ru": "Kорсиканский", "zh-chs": "科西嘉人", "xloc": [ - "default.handlebars->25->901" + "default.handlebars->25->904" ] }, { @@ -6790,7 +6956,7 @@ "ru": "Создать учетную запись", "zh-chs": "創建帳號", "xloc": [ - "default.handlebars->25->1451", + "default.handlebars->25->1454", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1" ] @@ -6826,7 +6992,7 @@ "ru": "Создать группу пользователей", "zh-chs": "創建用戶組", "xloc": [ - "default.handlebars->25->1485" + "default.handlebars->25->1488" ] }, { @@ -6843,7 +7009,7 @@ "ru": "Создайте новую группу устройств, используя параметры ниже.", "zh-chs": "使用以下選項創建一個新的設備組。", "xloc": [ - "default.handlebars->25->1094" + "default.handlebars->25->1097" ] }, { @@ -6877,7 +7043,7 @@ "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:", "xloc": [ - "default.handlebars->25->1422" + "default.handlebars->25->1425" ] }, { @@ -6912,7 +7078,7 @@ "ru": "Создано", "zh-chs": "創建", "xloc": [ - "default.handlebars->25->1548" + "default.handlebars->25->1551" ] }, { @@ -6947,7 +7113,7 @@ "ru": "Кри (Канадский язык)", "zh-chs": "克里", "xloc": [ - "default.handlebars->25->902" + "default.handlebars->25->905" ] }, { @@ -6964,7 +7130,7 @@ "ru": "Хорватский", "zh-chs": "克羅地亞語", "xloc": [ - "default.handlebars->25->903" + "default.handlebars->25->906" ] }, { @@ -7105,7 +7271,7 @@ "ru": "Чешский", "zh-chs": "捷克文", "xloc": [ - "default.handlebars->25->904" + "default.handlebars->25->907" ] }, { @@ -7139,7 +7305,7 @@ "ru": "Датский", "zh-chs": "丹麥文", "xloc": [ - "default.handlebars->25->905" + "default.handlebars->25->908" ] }, { @@ -7156,7 +7322,7 @@ "ru": "DataChannel", "zh-chs": "數據通道", "xloc": [ - "default.handlebars->25->675" + "default.handlebars->25->678" ] }, { @@ -7173,7 +7339,7 @@ "ru": "Дата & Время", "zh-chs": "日期和時間", "xloc": [ - "default.handlebars->25->1062" + "default.handlebars->25->1065" ] }, { @@ -7207,7 +7373,7 @@ "ru": "Деактивировать режим управления клиентом (CCM)", "zh-chs": "停用客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->25->1182" + "default.handlebars->25->1185" ] }, { @@ -7246,9 +7412,9 @@ "default-mobile.handlebars->9->91", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->25->1357", + "default.handlebars->25->1360", "default.handlebars->25->426", - "default.handlebars->25->728", + "default.handlebars->25->731", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->container->dialog->idx_dlgButtonBar->5", @@ -7272,16 +7438,21 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->9->53", - "default.handlebars->25->1079" + "default.handlebars->25->1082" ] }, { "de": "Konten löschen", "en": "Delete Accounts", + "es": "Eliminar cuentas", + "fr": "Supprimer des comptes", + "hi": "खाते हटाएं", "ja": "アカウントを削除", + "ko": "계정 삭제", "nl": "Verwijder accounts", + "zh-chs": "删除帐号", "xloc": [ - "default.handlebars->25->1418" + "default.handlebars->25->1421" ] }, { @@ -7318,8 +7489,8 @@ "xloc": [ "default-mobile.handlebars->9->290", "default-mobile.handlebars->9->293", - "default.handlebars->25->1175", - "default.handlebars->25->1205" + "default.handlebars->25->1178", + "default.handlebars->25->1208" ] }, { @@ -7371,7 +7542,7 @@ "ru": "Удалить пользователя", "zh-chs": "刪除用戶", "xloc": [ - "default.handlebars->25->1585" + "default.handlebars->25->1588" ] }, { @@ -7388,17 +7559,22 @@ "ru": "Удалить группу пользователей", "zh-chs": "刪除用戶組", "xloc": [ - "default.handlebars->25->1514", - "default.handlebars->25->1524" + "default.handlebars->25->1517", + "default.handlebars->25->1527" ] }, { "de": "Benutzergruppen löschen", "en": "Delete User Groups", + "es": "Eliminar grupos de usuarios", + "fr": "Supprimer des groupes d'utilisateurs", + "hi": "उपयोगकर्ता समूह हटाएं", "ja": "ユーザーグループの削除", + "ko": "사용자 그룹 삭제", "nl": "Gebruikersgroepen verwijderen", + "zh-chs": "删除用户组", "xloc": [ - "default.handlebars->25->1481" + "default.handlebars->25->1484" ] }, { @@ -7415,7 +7591,7 @@ "ru": "Удалить пользователя {0}", "zh-chs": "刪除用戶{0}", "xloc": [ - "default.handlebars->25->1606" + "default.handlebars->25->1609" ] }, { @@ -7433,7 +7609,7 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->9->0", - "default.handlebars->25->1414", + "default.handlebars->25->1417", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -7457,10 +7633,15 @@ { "de": "Gruppe löschen", "en": "Delete group", + "es": "Eliminar grupo", + "fr": "Supprimer le groupe", + "hi": "समूह हटाएँ", "ja": "グループを削除", + "ko": "그룹 삭제", "nl": "Verwijder groep", + "zh-chs": "删除群组", "xloc": [ - "default.handlebars->25->1477" + "default.handlebars->25->1480" ] }, { @@ -7496,8 +7677,8 @@ "xloc": [ "default-mobile.handlebars->9->256", "default-mobile.handlebars->9->93", - "default.handlebars->25->1359", - "default.handlebars->25->730" + "default.handlebars->25->1362", + "default.handlebars->25->733" ] }, { @@ -7514,7 +7695,7 @@ "ru": "Удалить группу пользователей {0}?", "zh-chs": "刪除用戶組{0}?", "xloc": [ - "default.handlebars->25->1522" + "default.handlebars->25->1525" ] }, { @@ -7533,8 +7714,8 @@ "xloc": [ "default-mobile.handlebars->9->255", "default-mobile.handlebars->9->92", - "default.handlebars->25->1358", - "default.handlebars->25->729" + "default.handlebars->25->1361", + "default.handlebars->25->732" ] }, { @@ -7554,6 +7735,18 @@ "default-mobile.handlebars->9->229" ] }, + { + "en": "Denied", + "es": "Negado", + "fr": "Refusée", + "hi": "निषेध", + "ja": "拒否されました", + "ko": "거부", + "zh-chs": "被拒绝", + "xloc": [ + "default.handlebars->25->676" + ] + }, { "cs": "Sestupně podle data", "de": "Nach Datum absteigend", @@ -7634,17 +7827,17 @@ "default-mobile.handlebars->9->282", "default-mobile.handlebars->9->295", "default-mobile.handlebars->9->70", - "default.handlebars->25->1099", - "default.handlebars->25->1124", - "default.handlebars->25->1207", - "default.handlebars->25->1484", - "default.handlebars->25->1490", - "default.handlebars->25->1491", - "default.handlebars->25->1520", + "default.handlebars->25->1102", + "default.handlebars->25->1127", + "default.handlebars->25->1210", + "default.handlebars->25->1487", + "default.handlebars->25->1493", + "default.handlebars->25->1494", + "default.handlebars->25->1523", "default.handlebars->25->464", "default.handlebars->25->465", "default.handlebars->25->671", - "default.handlebars->25->774", + "default.handlebars->25->777", "default.handlebars->25->78", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] @@ -7677,7 +7870,7 @@ "ru": "Рабочий стол", "zh-chs": "桌面", "xloc": [ - "default.handlebars->25->1212", + "default.handlebars->25->1215", "default.handlebars->25->432", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop" @@ -7714,8 +7907,8 @@ "ru": "Уведомление на рабочем столе", "zh-chs": "桌面通知", "xloc": [ - "default.handlebars->25->1134", - "default.handlebars->25->1563", + "default.handlebars->25->1137", + "default.handlebars->25->1566", "default.handlebars->25->500" ] }, @@ -7733,8 +7926,8 @@ "ru": "Запрос рабочего стола", "zh-chs": "桌面提示", "xloc": [ - "default.handlebars->25->1133", - "default.handlebars->25->1562", + "default.handlebars->25->1136", + "default.handlebars->25->1565", "default.handlebars->25->499" ] }, @@ -7752,16 +7945,21 @@ "ru": "Запрос рабочего стола + панель инструментов", "zh-chs": "桌面提示+工具欄", "xloc": [ - "default.handlebars->25->1131", - "default.handlebars->25->1560", + "default.handlebars->25->1134", + "default.handlebars->25->1563", "default.handlebars->25->497" ] }, { "de": "Desktop-Sitzungslatenz", "en": "Desktop Session Latency", + "es": "Latencia de sesión de escritorio", + "fr": "Latence de la session de bureau", + "hi": "डेस्कटॉप सत्र विलंबता", "ja": "デスクトップセッションの遅延", + "ko": "데스크톱 세션 지연", "nl": "Desktop sessie wachttijd", + "zh-chs": "桌面会话延迟", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" ] @@ -7780,8 +7978,8 @@ "ru": "Панель инструментов рабочего стола", "zh-chs": "桌面工具欄", "xloc": [ - "default.handlebars->25->1132", - "default.handlebars->25->1561", + "default.handlebars->25->1135", + "default.handlebars->25->1564", "default.handlebars->25->498" ] }, @@ -7851,8 +8049,8 @@ "ru": "Устройство", "zh-chs": "設備", "xloc": [ - "default.handlebars->25->1234", - "default.handlebars->25->1625", + "default.handlebars->25->1237", + "default.handlebars->25->1628", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -7888,12 +8086,12 @@ "ru": "Группа устройства", "zh-chs": "設備組", "xloc": [ - "default.handlebars->25->1229", "default.handlebars->25->1232", - "default.handlebars->25->1233", - "default.handlebars->25->1506", - "default.handlebars->25->1512", - "default.handlebars->25->1613" + "default.handlebars->25->1235", + "default.handlebars->25->1236", + "default.handlebars->25->1509", + "default.handlebars->25->1515", + "default.handlebars->25->1616" ] }, { @@ -7911,7 +8109,7 @@ "zh-chs": "設備組用戶", "xloc": [ "default-mobile.handlebars->9->336", - "default.handlebars->25->1294" + "default.handlebars->25->1297" ] }, { @@ -7929,11 +8127,11 @@ "zh-chs": "設備組", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->25->1383", - "default.handlebars->25->1471", - "default.handlebars->25->1493", - "default.handlebars->25->1557", - "default.handlebars->25->1668", + "default.handlebars->25->1386", + "default.handlebars->25->1474", + "default.handlebars->25->1496", + "default.handlebars->25->1560", + "default.handlebars->25->1671", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -8039,8 +8237,8 @@ "ru": "Подключения устройств.", "zh-chs": "設備連接。", "xloc": [ - "default.handlebars->25->1067", - "default.handlebars->25->1315" + "default.handlebars->25->1070", + "default.handlebars->25->1318" ] }, { @@ -8057,8 +8255,8 @@ "ru": "Отключения устройств.", "zh-chs": "設備斷開連接。", "xloc": [ - "default.handlebars->25->1068", - "default.handlebars->25->1316" + "default.handlebars->25->1071", + "default.handlebars->25->1319" ] }, { @@ -8360,11 +8558,16 @@ { "de": "Geräte", "en": "Devices", + "es": "Dispositivos", + "fr": "Dispositifs", + "hi": "उपकरण", "ja": "デバイス", + "ko": "장치", "nl": "Apparaten", + "zh-chs": "设备", "xloc": [ - "default.handlebars->25->1472", - "default.handlebars->25->1494" + "default.handlebars->25->1475", + "default.handlebars->25->1497" ] }, { @@ -8400,8 +8603,8 @@ "xloc": [ "default-mobile.handlebars->9->245", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->25->1144", - "default.handlebars->25->719", + "default.handlebars->25->1147", + "default.handlebars->25->722", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", "xterm.handlebars->p11->deskarea0->deskarea1->3" @@ -8483,7 +8686,7 @@ "ru": "Отобразить имя группы устройств", "zh-chs": "顯示設備組名稱", "xloc": [ - "default.handlebars->25->1066" + "default.handlebars->25->1069" ] }, { @@ -8500,7 +8703,7 @@ "ru": "Отображаемое имя", "zh-chs": "顯示名稱", "xloc": [ - "default.handlebars->25->690" + "default.handlebars->25->693" ] }, { @@ -8509,12 +8712,14 @@ "en": "Display public link", "es": "Mostrar enlace público", "fr": "Afficher le lien public", + "hi": "सार्वजनिक लिंक प्रदर्शित करें", "ja": "公開リンクを表示", + "ko": "공개 링크 표시", "nl": "Openbare link weergeven", "ru": "Показать публичную ссылку", "zh-chs": "显示公共链接", "xloc": [ - "default.handlebars->25->1335" + "default.handlebars->25->1338" ] }, { @@ -8531,22 +8736,34 @@ "ru": "Ничего не делать", "zh-chs": "沒做什麼", "xloc": [ - "default.handlebars->25->1188" + "default.handlebars->25->1191" ] }, { "en": "Don't configure", + "es": "No configurar", + "fr": "Ne configurez pas", + "hi": "कॉन्फ़िगर न करें", + "ja": "設定しないでください", + "ko": "구성하지 마십시오", "nl": "Niet configureren", + "zh-chs": "不要配置", "xloc": [ - "default.handlebars->25->1192", - "default.handlebars->25->1197" + "default.handlebars->25->1195", + "default.handlebars->25->1200" ] }, { "en": "Don't connect to server", + "es": "No te conectes al servidor", + "fr": "Ne vous connectez pas au serveur", + "hi": "सर्वर से कनेक्ट न करें", + "ja": "サーバーに接続しない", + "ko": "서버에 연결하지 마십시오", "nl": "Maak geen verbinding met de server", + "zh-chs": "不要连接到服务器", "xloc": [ - "default.handlebars->25->1193" + "default.handlebars->25->1196" ] }, { @@ -8646,7 +8863,7 @@ "zh-chs": "下載文件", "xloc": [ "default-mobile.handlebars->9->275", - "default.handlebars->25->748" + "default.handlebars->25->751" ] }, { @@ -8867,7 +9084,7 @@ "ru": "Скачать список событий в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載事件列表。", "xloc": [ - "default.handlebars->25->1373" + "default.handlebars->25->1376" ] }, { @@ -8884,7 +9101,7 @@ "ru": "Скачать список пользователей в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載用戶列表。", "xloc": [ - "default.handlebars->25->1430" + "default.handlebars->25->1433" ] }, { @@ -8959,10 +9176,15 @@ { "de": "Agent-Duplikat", "en": "Duplicate Agent", + "es": "Agente duplicado", + "fr": "Agent en double", + "hi": "डुप्लीकेट एजेंट", "ja": "エージェントの複製", + "ko": "중복 에이전트", "nl": "Dubbele agent", + "zh-chs": "代理重复", "xloc": [ - "default.handlebars->25->1664" + "default.handlebars->25->1667" ] }, { @@ -8996,7 +9218,7 @@ "ru": "Скопировать группу пользователей", "zh-chs": "重複的用戶組", "xloc": [ - "default.handlebars->25->1486" + "default.handlebars->25->1489" ] }, { @@ -9044,7 +9266,7 @@ "ru": "Во время активации агент будет иметь доступ к паролю администратора.", "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。", "xloc": [ - "default.handlebars->25->1202" + "default.handlebars->25->1205" ] }, { @@ -9061,7 +9283,7 @@ "ru": "Голландский (Бельгийский)", "zh-chs": "荷蘭語(比利時)", "xloc": [ - "default.handlebars->25->907" + "default.handlebars->25->910" ] }, { @@ -9078,29 +9300,44 @@ "ru": "Голландский (Стандартный)", "zh-chs": "荷蘭語(標準)", "xloc": [ - "default.handlebars->25->906" + "default.handlebars->25->909" ] }, { "en": "E-mail \\\"{0}\\\" already in use on a different account. Change the email address and try again.", - "nl": "E-mail \\\"{0}\\\" reeds in gebruik door een ander account. Wijzig het e-mailadres en probeer het opnieuw.", + "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.", + "fr": "E-mail \\\"{0}\\\" déjà utilisé sur un autre compte. Modifiez l'adresse e-mail et réessayez.", + "hi": "ई-मेल \\\"{0}\\\" पहले से ही एक अलग खाते पर उपयोग में है। ईमेल पता बदलें और पुनः प्रयास करें।", "ja": "別のアカウントですでに使用されている電子メール「{0}」。メールアドレスを変更して、もう一度お試しください。", + "ko": "\\\"{0}\\\"이메일이 이미 다른 계정에서 사용 중입니다. 이메일 주소를 변경하고 다시 시도하십시오.", + "nl": "E-mail \\\"{0}\\\" reeds in gebruik door een ander account. Wijzig het e-mailadres en probeer het opnieuw.", + "zh-chs": "已在其他帐户上使用的电子邮件“ {0} ”。更改电子邮件地址,然后重试。", "xloc": [ "message.handlebars->3->6" ] }, { "en": "E-mail \\\"{0}\\\" for user \\\"{1}\\\" already verified.", - "nl": "E-mail \\\"{0}\\\" voor gebruiker \\\"{1}\\\" al geverifieerd.", + "es": "Correo electrónico \\\"{0}\\\" para el usuario \\\"{1}\\\" ya verificado.", + "fr": "E-mail \\\"{0}\\\" pour l'utilisateur \\\"{1}\\\" déjà vérifié.", + "hi": "उपयोगकर्ता \\\"{1}\\\" के लिए ई-मेल \\\"{0}\\\" पहले से ही सत्यापित।", "ja": "ユーザー\\\"{1}\\\"の電子メール\\\"{0}\\\"はすでに確認されています。", + "ko": "사용자 \\\"{1}\\\"의 이메일 \\\"{0}\\\"이 (가) 이미 확인되었습니다.", + "nl": "E-mail \\\"{0}\\\" voor gebruiker \\\"{1}\\\" al geverifieerd.", + "zh-chs": "用户“ {1} ”的电子邮件“ {0} ”已通过验证。", "xloc": [ "message.handlebars->3->5" ] }, { "en": "E-mail \\\"{0}\\\" for user \\\"{1}\\\" not verified.", - "nl": "E-mail \\\"{0}\\\" voor gebruiker \\\"{1}\\\" niet geverifieerd.", + "es": "Correo electrónico \\\"{0}\\\" para el usuario \\\"{1}\\\" no verificado.", + "fr": "E-mail \\\"{0}\\\" pour l'utilisateur \\\"{1}\\\" non vérifié.", + "hi": "उपयोगकर्ता \\\"{1}\\\" के लिए ई-मेल \\\"{0}\\\" सत्यापित नहीं।", "ja": "ユーザー\\\"{1}\\\"の電子メール\\\"{0}\\\"は確認されていません。", + "ko": "사용자 \\\"{1}\\\"의 이메일 \\\"{0}\\\"이 (가) 확인되지 않았습니다.", + "nl": "E-mail \\\"{0}\\\" voor gebruiker \\\"{1}\\\" niet geverifieerd.", + "zh-chs": "未验证用户“ {1} ”的电子邮件“ {0} ”。", "xloc": [ "message.handlebars->3->8" ] @@ -9124,40 +9361,65 @@ }, { "en": "ERROR: Invalid account check, verification url is only valid for 30 minutes.", - "nl": "FOUT: Ongeldige accountcontrole, verificatie URL is slechts 30 minuten geldig.", + "es": "ERROR: verificación de cuenta no válida, la URL de verificación solo es válida durante 30 minutos.", + "fr": "ERREUR: vérification de compte non valide, l'URL de vérification n'est valide que pendant 30 minutes.", + "hi": "त्रुटि: अमान्य खाता जांच, सत्यापन url केवल 30 मिनट के लिए मान्य है।", "ja": "エラー:アカウントチェックが無効です。確認URLは30分間のみ有効です。", + "ko": "오류 : 잘못된 계정 확인, 확인 URL은 30 분 동안 만 유효합니다.", + "nl": "FOUT: Ongeldige accountcontrole, verificatie URL is slechts 30 minuten geldig.", + "zh-chs": "错误:无效的帐户检查,验证网址仅在30分钟内有效。", "xloc": [ "message.handlebars->3->12" ] }, { "en": "ERROR: Invalid account check.", - "nl": "FOUT: Ongeldige account controle.", + "es": "ERROR: verificación de cuenta no válida.", + "fr": "ERREUR: vérification de compte non valide.", + "hi": "त्रुटि: अमान्य खाता जांच।", "ja": "エラー:アカウントチェックが無効です。", + "ko": "오류 : 잘못된 계정 확인입니다.", + "nl": "FOUT: Ongeldige account controle.", + "zh-chs": "错误:无效的帐户检查。", "xloc": [ "message.handlebars->3->11" ] }, { "en": "ERROR: Invalid domain.", - "nl": "FOUT: ongeldig domein.", + "es": "ERROR: dominio inválido.", + "fr": "ERREUR: domaine non valide.", + "hi": "त्रुटि: अमान्य डोमेन।", "ja": "エラー:ドメインが無効です。", + "ko": "오류 : 잘못된 도메인입니다.", + "nl": "FOUT: ongeldig domein.", + "zh-chs": "错误:无效的域。", "xloc": [ "message.handlebars->3->2" ] }, { "en": "ERROR: Invalid e-mail \\\"{0}\\\" for user \\\"{1}\\\".", - "nl": "FOUT: Ongeldige e-mail \\\"{0}\\\" voor gebruiker \\\"{1}\\\".", + "es": "ERROR: correo electrónico no válido \\\"{0}\\\" para el usuario \\\"{1}\\\".", + "fr": "ERREUR: e-mail \\\"{0}\\\" non valide pour l'utilisateur \\\"{1}\\\".", + "hi": "त्रुटि: उपयोगकर्ता के लिए \\\"{1}\\\" के लिए अमान्य ई-मेल \\\"{0}\\\"।", "ja": "エラー:ユーザー\\\"{1}\\\"の電子メール\\\"{0}\\\"が無効です。", + "ko": "오류 : 사용자 \\\"{1}\\\"에 대한 잘못된 이메일 \\\"{0}\\\".", + "nl": "FOUT: Ongeldige e-mail \\\"{0}\\\" voor gebruiker \\\"{1}\\\".", + "zh-chs": "错误:用户“ {1} ”的无效电子邮件“ {0} ”。", "xloc": [ "message.handlebars->3->4" ] }, { "en": "ERROR: Invalid username \\\"{0}\\\".", - "nl": "FOUT: Ongeldige gebruikersnaam \\\"{0}\\\".", + "es": "ERROR: nombre de usuario no válido \\\"{0}\\\".", + "fr": "ERREUR: nom d'utilisateur non valide \\\"{0}\\\".", + "hi": "त्रुटि: अमान्य उपयोगकर्ता नाम \"{0} \\\"।", "ja": "エラー:ユーザー名「{0}」が無効です。", + "ko": "오류 : 잘못된 사용자 이름 \\\"{0}\\\"입니다.", + "nl": "FOUT: Ongeldige gebruikersnaam \\\"{0}\\\".", + "zh-chs": "错误:无效的用户名“ {0} ”。", "xloc": [ "message.handlebars->3->3" ] @@ -9249,10 +9511,10 @@ "default-mobile.handlebars->9->296", "default-mobile.handlebars->9->298", "default-mobile.handlebars->9->316", - "default.handlebars->25->1208", - "default.handlebars->25->1238", - "default.handlebars->25->1260", - "default.handlebars->25->1272" + "default.handlebars->25->1211", + "default.handlebars->25->1241", + "default.handlebars->25->1263", + "default.handlebars->25->1275" ] }, { @@ -9269,7 +9531,7 @@ "ru": "Редактировать функции группы устройств", "zh-chs": "編輯設備組功能", "xloc": [ - "default.handlebars->25->1224" + "default.handlebars->25->1227" ] }, { @@ -9286,8 +9548,8 @@ "ru": "Редактировать права группы устройств", "zh-chs": "編輯設備組權限", "xloc": [ - "default.handlebars->25->1257", - "default.handlebars->25->1269" + "default.handlebars->25->1260", + "default.handlebars->25->1272" ] }, { @@ -9304,7 +9566,7 @@ "ru": "Редактировать согласие пользователя группы устройств", "zh-chs": "編輯設備組用戶同意", "xloc": [ - "default.handlebars->25->1209" + "default.handlebars->25->1212" ] }, { @@ -9322,7 +9584,7 @@ "zh-chs": "編輯設備說明", "xloc": [ "default-mobile.handlebars->9->310", - "default.handlebars->25->1251" + "default.handlebars->25->1254" ] }, { @@ -9331,22 +9593,29 @@ "en": "Edit Device Permissions", "es": "Editar los permisos del dispositivo", "fr": "Modifier les autorisations de périphérique", + "hi": "डिवाइस अनुमतियाँ संपादित करें", "ja": "デバイスの権限を編集する", + "ko": "장치 권한 편집", "nl": "Bewerk apparaatrechten", "ru": "Изменить разрешения устройства", "zh-chs": "编辑设备权限", "xloc": [ - "default.handlebars->25->1262", - "default.handlebars->25->1264" + "default.handlebars->25->1265", + "default.handlebars->25->1267" ] }, { "de": "Geräte-Benutzereinwilligung bearbeiten", "en": "Edit Device User Consent", + "es": "Editar consentimiento del usuario del dispositivo", + "fr": "Modifier le consentement de l'utilisateur de l'appareil", + "hi": "डिवाइस उपयोगकर्ता सहमति संपादित करें", "ja": "デバイスのユーザー同意の編集", + "ko": "장치 사용자 동의 편집", "nl": "Gebruikerstoestemming apparaat bewerken", + "zh-chs": "编辑设备用户同意", "xloc": [ - "default.handlebars->25->1211" + "default.handlebars->25->1214" ] }, { @@ -9355,7 +9624,9 @@ "en": "Edit Group", "es": "Editar Grupo", "fr": "Modifier le groupe", + "hi": "समूह संपादित करें", "ja": "グループを編集", + "ko": "그룹 편집", "nl": "Bewerk groep", "ru": "Редактировать группу", "zh-chs": "编辑组", @@ -9398,16 +9669,21 @@ "zh-chs": "編輯筆記", "xloc": [ "default-mobile.handlebars->9->323", - "default.handlebars->25->1279" + "default.handlebars->25->1282" ] }, { "de": "Benutzereinwilligung bearbeiten", "en": "Edit User Consent", + "es": "Editar consentimiento del usuario", + "fr": "Modifier le consentement de l'utilisateur", + "hi": "उपयोगकर्ता सहमति संपादित करें", "ja": "ユーザーの同意を編集", + "ko": "사용자 동의 편집", "nl": "Gebruikerstoestemming bewerken", + "zh-chs": "编辑用户同意", "xloc": [ - "default.handlebars->25->1210" + "default.handlebars->25->1213" ] }, { @@ -9424,7 +9700,7 @@ "ru": "Редактировать права пользователя для группы устройств", "zh-chs": "編輯用戶設備組權限", "xloc": [ - "default.handlebars->25->1270" + "default.handlebars->25->1273" ] }, { @@ -9433,12 +9709,14 @@ "en": "Edit User Device Permissions", "es": "Editar los permisos del usuario del dispositivo", "fr": "Modifier les autorisations des périphériques utilisateur", + "hi": "उपयोगकर्ता डिवाइस अनुमतियाँ संपादित करें", "ja": "ユーザーデバイスの権限を編集する", + "ko": "사용자 장치 권한 편집", "nl": "Bewerk gebruikersapparaatrechten", "ru": "Изменить разрешения для пользовательских устройств", "zh-chs": "编辑用户设备权限", "xloc": [ - "default.handlebars->25->1265" + "default.handlebars->25->1268" ] }, { @@ -9455,16 +9733,21 @@ "ru": "Редактировать группу пользователей", "zh-chs": "編輯用戶組", "xloc": [ - "default.handlebars->25->1521" + "default.handlebars->25->1524" ] }, { "de": "Benutzergruppen-Geräteberechtigungen bearbeiten", "en": "Edit User Group Device Permissions", + "es": "Editar permisos de dispositivo de grupo de usuarios", + "fr": "Modifier les autorisations de périphérique du groupe d'utilisateurs", + "hi": "उपयोगकर्ता समूह डिवाइस अनुमतियाँ संपादित करें", "ja": "ユーザーグループデバイス権限の編集", + "ko": "사용자 그룹 장치 권한 편집", "nl": "Gebruikersmachtigingen voor apparaatgroep bewerken", + "zh-chs": "编辑用户组设备权限", "xloc": [ - "default.handlebars->25->1267" + "default.handlebars->25->1270" ] }, { @@ -9499,10 +9782,10 @@ "zh-chs": "電子郵件", "xloc": [ "default-mobile.handlebars->9->47", - "default.handlebars->25->1442", - "default.handlebars->25->1542", - "default.handlebars->25->1543", - "default.handlebars->25->1594", + "default.handlebars->25->1445", + "default.handlebars->25->1545", + "default.handlebars->25->1546", + "default.handlebars->25->1597", "default.handlebars->25->279", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -9525,7 +9808,7 @@ "zh-chs": "電郵地址變更", "xloc": [ "default-mobile.handlebars->9->48", - "default.handlebars->25->1075" + "default.handlebars->25->1078" ] }, { @@ -9543,13 +9826,18 @@ "zh-chs": "郵件認證", "xloc": [ "default-mobile.handlebars->9->37", - "default.handlebars->25->844" + "default.handlebars->25->847" ] }, { "en": "Email Confirmation", + "es": "confirmación de correo electrónico", + "fr": "confirmation de l'émail", + "hi": "ईमेल की पुष्टि", "ja": "メール確認", + "ko": "이메일 확인", "nl": "E-mail bevestigen", + "zh-chs": "邮件确认", "xloc": [ "login-mobile.handlebars->5->43", "login.handlebars->5->44" @@ -9561,7 +9849,9 @@ "en": "Email Traffic", "es": "Tráfico de correo electrónico", "fr": "Trafic des e-mails", + "hi": "ईमेल ट्रैफ़िक", "ja": "メールトラフィック", + "ko": "이메일 트래픽", "nl": "E-mailverkeer", "ru": "Почтовый трафик", "zh-chs": "电子邮件流量" @@ -9581,15 +9871,19 @@ "zh-chs": "電子郵件驗證", "xloc": [ "default-mobile.handlebars->9->46", - "default.handlebars->25->1073" + "default.handlebars->25->1076" ] }, { "de": "E-Mail-Einladung", "en": "Email invitation", "es": "Email de invitación", + "fr": "Invitation par e-mail", + "hi": "ईमेल आमंत्रण", "ja": "招待メール", + "ko": "이메일 초대", "nl": "E-mail uitnodiging", + "zh-chs": "电子邮件邀请", "xloc": [ "default.handlebars->25->276" ] @@ -9600,12 +9894,14 @@ "en": "Email is not verified", "es": "El email no esta no esta verficado", "fr": "L'email n'est pas verifié", + "hi": "ईमेल की पुष्टि नहीं हुई", "ja": "メールは検証されていない", + "ko": "이메일이 확인되지 않았습니다", "nl": "E-mail is niet geverifieerd", "ru": "Электронная почта не подтверждена", "zh-chs": "邮件未验证", "xloc": [ - "default.handlebars->25->1402" + "default.handlebars->25->1405" ] }, { @@ -9622,8 +9918,8 @@ "ru": "Email подтвержден", "zh-chs": "電子郵件已驗證", "xloc": [ - "default.handlebars->25->1403", - "default.handlebars->25->1539" + "default.handlebars->25->1406", + "default.handlebars->25->1542" ] }, { @@ -9640,7 +9936,7 @@ "ru": "Email подтвержден.", "zh-chs": "電子郵件已驗證。", "xloc": [ - "default.handlebars->25->1448" + "default.handlebars->25->1451" ] }, { @@ -9657,7 +9953,7 @@ "ru": "Email не подтвержден", "zh-chs": "電子郵件未驗證", "xloc": [ - "default.handlebars->25->1540" + "default.handlebars->25->1543" ] }, { @@ -9680,8 +9976,13 @@ }, { "en": "Email verification required, check your mailbox and click the confirmation link.", + "es": "Se requiere verificación de correo electrónico, verifique su buzón y haga clic en el enlace de confirmación.", + "fr": "Vérification par e-mail requise, vérifiez votre boîte aux lettres et cliquez sur le lien de confirmation.", + "hi": "ईमेल सत्यापन की आवश्यकता है, अपने मेलबॉक्स की जांच करें और पुष्टि लिंक पर क्लिक करें।", "ja": "メールの確認が必要です。メールボックスを確認し、確認リンクをクリックしてください。", + "ko": "이메일 확인이 필요합니다. 사서함을 확인하고 확인 링크를 클릭하십시오.", "nl": "E-mailverificatie vereist, controleer uw mailbox en klik op de bevestigingslink.", + "zh-chs": "需要通过电子邮件验证,请检查您的邮箱,然后单击确认链接。", "xloc": [ "login-mobile.handlebars->5->3", "login.handlebars->5->3" @@ -9689,10 +9990,15 @@ }, { "en": "Email/SMS Traffic", + "es": "Tráfico de correo electrónico / SMS", + "fr": "Trafic e-mail / SMS", + "hi": "ईमेल / एसएमएस आवागमन", "ja": "メール/ SMSトラフィック", + "ko": "이메일 / SMS 트래픽", "nl": "Email/SMS verkeer", + "zh-chs": "电子邮件/短信流量", "xloc": [ - "default.handlebars->25->1703" + "default.handlebars->25->1706" ] }, { @@ -9731,7 +10037,7 @@ "ru": "Включить коды приглашения", "zh-chs": "啟用邀請代碼", "xloc": [ - "default.handlebars->25->1300" + "default.handlebars->25->1303" ] }, { @@ -9766,7 +10072,7 @@ "zh-chs": "啟用電子郵件兩因素驗證。", "xloc": [ "default-mobile.handlebars->9->39", - "default.handlebars->25->846" + "default.handlebars->25->849" ] }, { @@ -9817,7 +10123,7 @@ "ru": "Английский", "zh-chs": "英語", "xloc": [ - "default.handlebars->25->908" + "default.handlebars->25->911" ] }, { @@ -9834,7 +10140,7 @@ "ru": "Английский (Австралия)", "zh-chs": "英文(澳洲)", "xloc": [ - "default.handlebars->25->909" + "default.handlebars->25->912" ] }, { @@ -9851,7 +10157,7 @@ "ru": "Английский (Белиз)", "zh-chs": "英語(伯利茲)", "xloc": [ - "default.handlebars->25->910" + "default.handlebars->25->913" ] }, { @@ -9868,7 +10174,7 @@ "ru": "Английский (Канада)", "zh-chs": "英文(加拿大)", "xloc": [ - "default.handlebars->25->911" + "default.handlebars->25->914" ] }, { @@ -9885,7 +10191,7 @@ "ru": "Английский (Ирландия)", "zh-chs": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->25->912" + "default.handlebars->25->915" ] }, { @@ -9902,7 +10208,7 @@ "ru": "Английский (Ямайка)", "zh-chs": "英文(牙買加)", "xloc": [ - "default.handlebars->25->913" + "default.handlebars->25->916" ] }, { @@ -9919,7 +10225,7 @@ "ru": "Английский (Новая Зеландия)", "zh-chs": "英文(紐西蘭)", "xloc": [ - "default.handlebars->25->914" + "default.handlebars->25->917" ] }, { @@ -9936,7 +10242,7 @@ "ru": "Английский (Филиппины)", "zh-chs": "英文(菲律賓)", "xloc": [ - "default.handlebars->25->915" + "default.handlebars->25->918" ] }, { @@ -9953,7 +10259,7 @@ "ru": "Английский (Южная Африка)", "zh-chs": "英語(南非)", "xloc": [ - "default.handlebars->25->916" + "default.handlebars->25->919" ] }, { @@ -9970,7 +10276,7 @@ "ru": "Английский (Тринидад и Тобаго)", "zh-chs": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->25->917" + "default.handlebars->25->920" ] }, { @@ -9987,7 +10293,7 @@ "ru": "Английский (Великобритания)", "zh-chs": "英文(英國)", "xloc": [ - "default.handlebars->25->918" + "default.handlebars->25->921" ] }, { @@ -10004,7 +10310,7 @@ "ru": "Английский (Соединенные Штаты)", "zh-chs": "美國英語)", "xloc": [ - "default.handlebars->25->919" + "default.handlebars->25->922" ] }, { @@ -10021,7 +10327,7 @@ "ru": "Английский (Зимбабве)", "zh-chs": "英文(津巴布韋)", "xloc": [ - "default.handlebars->25->920" + "default.handlebars->25->923" ] }, { @@ -10038,8 +10344,8 @@ "ru": "Ввод", "zh-chs": "輸入", "xloc": [ - "default.handlebars->25->1101", - "default.handlebars->25->1102" + "default.handlebars->25->1104", + "default.handlebars->25->1105" ] }, { @@ -10056,7 +10362,7 @@ "ru": "Введите разделенный запятыми список имен административных областей.", "zh-chs": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->25->1452" + "default.handlebars->25->1455" ] }, { @@ -10090,7 +10396,7 @@ "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.", "zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->25->684" + "default.handlebars->25->687" ] }, { @@ -10130,10 +10436,15 @@ }, { "en": "Enter your SMS capable phone number. Once verified, the number may be used for login verification and other notifications.", - "nl": "Voer uw telefoonnummer in dat geschikt is voor SMS. Na verificatie kan het nummer worden gebruikt voor inlogverificatie en andere meldingen.", + "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.", + "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.", + "hi": "अपना एसएमएस सक्षम फोन नंबर दर्ज करें। एक बार सत्यापित करने के बाद, संख्या का उपयोग लॉगिन सत्यापन और अन्य सूचनाओं के लिए किया जा सकता है।", "ja": "SMS対応の電話番号を入力します。確認後、番号はログイン確認やその他の通知に使用できます。", + "ko": "SMS 가능 전화 번호를 입력하십시오. 확인되면이 번호는 로그인 확인 및 기타 알림에 사용될 수 있습니다.", + "nl": "Voer uw telefoonnummer in dat geschikt is voor SMS. Na verificatie kan het nummer worden gebruikt voor inlogverificatie en andere meldingen.", + "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "xloc": [ - "default.handlebars->25->841" + "default.handlebars->25->844" ] }, { @@ -10184,7 +10495,7 @@ "ru": "Эсперанто", "zh-chs": "世界語", "xloc": [ - "default.handlebars->25->921" + "default.handlebars->25->924" ] }, { @@ -10201,7 +10512,7 @@ "ru": "Эстонский", "zh-chs": "愛沙尼亞語", "xloc": [ - "default.handlebars->25->922" + "default.handlebars->25->925" ] }, { @@ -10218,7 +10529,7 @@ "ru": "Детали события", "zh-chs": "活動詳情", "xloc": [ - "default.handlebars->25->761" + "default.handlebars->25->764" ] }, { @@ -10235,7 +10546,7 @@ "ru": "Экспорт списка событий", "zh-chs": "活動列表導出", "xloc": [ - "default.handlebars->25->1378" + "default.handlebars->25->1381" ] }, { @@ -10324,7 +10635,7 @@ "ru": "Расширенный ASCII", "zh-chs": "擴展ASCII", "xloc": [ - "default.handlebars->25->710" + "default.handlebars->25->713" ] }, { @@ -10358,7 +10669,7 @@ "ru": "Внешний", "zh-chs": "外部", "xloc": [ - "default.handlebars->25->1688" + "default.handlebars->25->1691" ] }, { @@ -10375,7 +10686,7 @@ "ru": "Mакедонский (БЮР)", "zh-chs": "FYRO馬其頓語", "xloc": [ - "default.handlebars->25->972" + "default.handlebars->25->975" ] }, { @@ -10392,7 +10703,7 @@ "ru": "Фарерский", "zh-chs": "法羅語", "xloc": [ - "default.handlebars->25->923" + "default.handlebars->25->926" ] }, { @@ -10412,6 +10723,18 @@ "default.handlebars->25->67" ] }, + { + "en": "Failed to start remote terminal session, {0} ({1})", + "es": "Error al iniciar sesión de terminal remota, {0} ({1})", + "fr": "Impossible de démarrer la session de terminal distant, {0} ({1})", + "hi": "दूरस्थ टर्मिनल सत्र शुरू करने में विफल, {0} ({1})", + "ja": "リモートターミナルセッションの開始に失敗しました、{0}({1})", + "ko": "원격 터미널 세션을 시작하지 못했습니다 : {0} ({1})", + "zh-chs": "无法启动远程终端会话{0}({1})", + "xloc": [ + "default.handlebars->25->677" + ] + }, { "cs": "Farsi (perština)", "de": "Persisch", @@ -10426,7 +10749,7 @@ "ru": "Фарси (Персидский)", "zh-chs": "波斯語(波斯語)", "xloc": [ - "default.handlebars->25->924" + "default.handlebars->25->927" ] }, { @@ -10461,7 +10784,7 @@ "ru": "Функции", "zh-chs": "特徵", "xloc": [ - "default.handlebars->25->1130" + "default.handlebars->25->1133" ] }, { @@ -10478,7 +10801,7 @@ "ru": "Фиджи", "zh-chs": "斐濟", "xloc": [ - "default.handlebars->25->925" + "default.handlebars->25->928" ] }, { @@ -10497,7 +10820,7 @@ "xloc": [ "default-mobile.handlebars->9->259", "default.handlebars->25->424", - "default.handlebars->25->733" + "default.handlebars->25->736" ] }, { @@ -10531,7 +10854,7 @@ "ru": "Драйвер файловой системы", "zh-chs": "FileSystemDriver", "xloc": [ - "default.handlebars->25->693" + "default.handlebars->25->696" ] }, { @@ -10548,7 +10871,7 @@ "ru": "Файлы", "zh-chs": "檔案", "xloc": [ - "default.handlebars->25->1219", + "default.handlebars->25->1222", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" ] @@ -10584,8 +10907,8 @@ "ru": "Уведомление файлов", "zh-chs": "文件通知", "xloc": [ - "default.handlebars->25->1138", - "default.handlebars->25->1567", + "default.handlebars->25->1141", + "default.handlebars->25->1570", "default.handlebars->25->504" ] }, @@ -10603,8 +10926,8 @@ "ru": "Запрос файлов", "zh-chs": "文件提示", "xloc": [ - "default.handlebars->25->1137", - "default.handlebars->25->1566", + "default.handlebars->25->1140", + "default.handlebars->25->1569", "default.handlebars->25->503" ] }, @@ -10641,7 +10964,7 @@ "ru": "Финский", "zh-chs": "芬蘭", "xloc": [ - "default.handlebars->25->926" + "default.handlebars->25->929" ] }, { @@ -10707,7 +11030,9 @@ "en": "For Apple OSX, nagivate to the following link to complete the process:", "es": "Para Apple OSX, navegue hasta el siguiente enlace para completar el proceso:", "fr": "Pour Apple OSX, accédez au lien suivant pour terminer le processus:", + "hi": "Apple OSX के लिए, इस प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक पर जाएं:", "ja": "Apple OSXの場合、次のリンクに移動してプロセスを完了します。", + "ko": "Apple OSX의 경우 다음 링크로 이동하여 프로세스를 완료하십시오.", "nl": "Voor Apple OSX ga je naar de volgende link om het proces te voltooien:", "ru": "Для Apple OSX перейдите по следующей ссылке, чтобы завершить процесс:", "zh-chs": "对于Apple OSX,请导航至以下链接以完成该过程:", @@ -10721,7 +11046,9 @@ "en": "For Linux, cut & paste the following in a terminal to install the agent:", "es": "Para Linux, copie y pegue lo siguiente en la terminal para instalar el agente:", "fr": "Pour Linux, copiez et collez les éléments suivants dans un terminal pour installer l'agent:", + "hi": "लिनक्स में, एजेंट को स्थापित करने के लिए टर्मिनल में निम्नलिखित को काटें और चिपकाएँ:", "ja": "Linuxの場合は、ターミナルで以下をカットアンドペーストしてエージェントをインストールします。", + "ko": "Linux의 경우 터미널에서 다음을 잘라내어 붙여 넣어 에이전트를 설치하십시오.", "nl": "Voor Linux, knip het volgende en plak dit in een terminal om de agent te installeren:", "ru": "Для Linux вырезайте и вставляйте в терминал следующее, чтобы установить агент:", "zh-chs": "对于Linux,将以下内容剪切并粘贴到终端中以安装代理程序:", @@ -10736,7 +11063,9 @@ "en": "For Windows, nagivate to the following link to complete the process:", "es": "Para windows, navegue al siguiente enlace para completar el proceso:", "fr": "Pour Windows, accédez au lien suivant pour terminer le processus:", + "hi": "विंडोज के लिए, प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक पर जाएं:", "ja": "Windowsの場合、次のリンクに移動してプロセスを完了します。", + "ko": "Windows의 경우 다음 링크로 이동하여 프로세스를 완료하십시오.", "nl": "Voor Windows, ga je naar de volgende link om het proces te voltooien:", "ru": "Для Windows откройте следующую ссылку, чтобы завершить процесс:", "zh-chs": "对于Windows,请导航至以下链接以完成该过程:", @@ -10758,8 +11087,8 @@ "ru": "Принудительно сбросить пароль при следующем входе в систему.", "zh-chs": "下次登錄時強制重置密碼。", "xloc": [ - "default.handlebars->25->1446", - "default.handlebars->25->1603" + "default.handlebars->25->1449", + "default.handlebars->25->1606" ] }, { @@ -10845,8 +11174,8 @@ "ru": "Свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->25->1649", - "default.handlebars->25->1651" + "default.handlebars->25->1652", + "default.handlebars->25->1654" ] }, { @@ -10881,7 +11210,7 @@ "ru": "Французский (Бельгия)", "zh-chs": "法語(比利時)", "xloc": [ - "default.handlebars->25->928" + "default.handlebars->25->931" ] }, { @@ -10898,7 +11227,7 @@ "ru": "Французский (Канада)", "zh-chs": "法語(加拿大)", "xloc": [ - "default.handlebars->25->929" + "default.handlebars->25->932" ] }, { @@ -10915,7 +11244,7 @@ "ru": "Французский (Франция)", "zh-chs": "法語(法國)", "xloc": [ - "default.handlebars->25->930" + "default.handlebars->25->933" ] }, { @@ -10932,7 +11261,7 @@ "ru": "Французский (Люксембург)", "zh-chs": "法語(盧森堡)", "xloc": [ - "default.handlebars->25->931" + "default.handlebars->25->934" ] }, { @@ -10949,7 +11278,7 @@ "ru": "Французский (Монако)", "zh-chs": "法語(摩納哥)", "xloc": [ - "default.handlebars->25->932" + "default.handlebars->25->935" ] }, { @@ -10966,7 +11295,7 @@ "ru": "Французский (Стандартный)", "zh-chs": "法語(標準)", "xloc": [ - "default.handlebars->25->927" + "default.handlebars->25->930" ] }, { @@ -10983,7 +11312,7 @@ "ru": "Французский (Швейцария)", "zh-chs": "法語(瑞士)", "xloc": [ - "default.handlebars->25->933" + "default.handlebars->25->936" ] }, { @@ -11000,7 +11329,7 @@ "ru": "Фризский", "zh-chs": "弗里斯蘭語", "xloc": [ - "default.handlebars->25->934" + "default.handlebars->25->937" ] }, { @@ -11017,7 +11346,7 @@ "ru": "Фриульский", "zh-chs": "弗留利", "xloc": [ - "default.handlebars->25->935" + "default.handlebars->25->938" ] }, { @@ -11038,9 +11367,9 @@ "default-mobile.handlebars->9->297", "default-mobile.handlebars->9->315", "default-mobile.handlebars->9->74", - "default.handlebars->25->1108", - "default.handlebars->25->1237", - "default.handlebars->25->1458" + "default.handlebars->25->1111", + "default.handlebars->25->1240", + "default.handlebars->25->1461" ] }, { @@ -11057,7 +11386,7 @@ "ru": "Администратор с полным доступом (все права)", "zh-chs": "正式管理員(保留所有權利)", "xloc": [ - "default.handlebars->25->1271" + "default.handlebars->25->1274" ] }, { @@ -11097,7 +11426,9 @@ "en": "Full Rights", "es": "Derechos Completos", "fr": "Droits complets", + "hi": "पूर्ण अधिकार", "ja": "完全な権利", + "ko": "모든 권리", "nl": "Volledige rechten", "ru": "Полные права", "zh-chs": "完全权利", @@ -11138,15 +11469,20 @@ "ru": "Администратор с полным доступом", "zh-chs": "正式管理員", "xloc": [ - "default.handlebars->25->1535" + "default.handlebars->25->1538" ] }, { "en": "GPU", + "es": "GPU", + "fr": "GPU", + "hi": "GPU", "ja": "GPU", + "ko": "GPU", "nl": "GPU", + "zh-chs": "显卡", "xloc": [ - "default.handlebars->25->809" + "default.handlebars->25->812" ] }, { @@ -11163,7 +11499,7 @@ "ru": "Гэльский (Ирландский)", "zh-chs": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->25->937" + "default.handlebars->25->940" ] }, { @@ -11180,7 +11516,7 @@ "ru": "Гэльский (Шотландия)", "zh-chs": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->25->936" + "default.handlebars->25->939" ] }, { @@ -11197,7 +11533,7 @@ "ru": "Галицкий", "zh-chs": "加拉契人", "xloc": [ - "default.handlebars->25->938" + "default.handlebars->25->941" ] }, { @@ -11304,7 +11640,7 @@ "ru": "Грузинский", "zh-chs": "格魯吉亞人", "xloc": [ - "default.handlebars->25->939" + "default.handlebars->25->942" ] }, { @@ -11321,7 +11657,7 @@ "ru": "Немецкий (Австрия)", "zh-chs": "德語(奧地利)", "xloc": [ - "default.handlebars->25->941" + "default.handlebars->25->944" ] }, { @@ -11338,7 +11674,7 @@ "ru": "Немецкий (Германия)", "zh-chs": "德文(德國)", "xloc": [ - "default.handlebars->25->942" + "default.handlebars->25->945" ] }, { @@ -11355,7 +11691,7 @@ "ru": "Немецкий (Лихтенштейн)", "zh-chs": "德文(列支敦士登)", "xloc": [ - "default.handlebars->25->943" + "default.handlebars->25->946" ] }, { @@ -11372,7 +11708,7 @@ "ru": "Немецкий (Люксембург)", "zh-chs": "德語(盧森堡)", "xloc": [ - "default.handlebars->25->944" + "default.handlebars->25->947" ] }, { @@ -11389,7 +11725,7 @@ "ru": "Немецкий (Стандартный)", "zh-chs": "德語(標準)", "xloc": [ - "default.handlebars->25->940" + "default.handlebars->25->943" ] }, { @@ -11406,7 +11742,7 @@ "ru": "Немецкий (Швейцария)", "zh-chs": "德語(瑞士)", "xloc": [ - "default.handlebars->25->945" + "default.handlebars->25->948" ] }, { @@ -11446,8 +11782,13 @@ }, { "en": "Go to login page", - "nl": "Ga naar de inlogpagina", + "es": "Ir a la página de inicio de sesión", + "fr": "Accéder à la page de connexion", + "hi": "लॉगइन पेज पर जाएं", "ja": "ログインページに移動", + "ko": "로그인 페이지로 이동", + "nl": "Ga naar de inlogpagina", + "zh-chs": "进入登录页面", "xloc": [ "message.handlebars->3->13" ] @@ -11484,7 +11825,7 @@ "ru": "Хорошо", "zh-chs": "好", "xloc": [ - "default.handlebars->25->1104" + "default.handlebars->25->1107" ] }, { @@ -11521,7 +11862,7 @@ "ru": "Греческий", "zh-chs": "希臘語", "xloc": [ - "default.handlebars->25->946" + "default.handlebars->25->949" ] }, { @@ -11557,8 +11898,8 @@ "ru": "Групповое действие", "zh-chs": "集體行動", "xloc": [ - "default.handlebars->25->1415", - "default.handlebars->25->1478", + "default.handlebars->25->1418", + "default.handlebars->25->1481", "default.handlebars->25->393", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -11579,7 +11920,7 @@ "ru": "Члены группы", "zh-chs": "小組成員", "xloc": [ - "default.handlebars->25->1498" + "default.handlebars->25->1501" ] }, { @@ -11596,7 +11937,7 @@ "ru": "Права на группу для пользователя {0}.", "zh-chs": "用戶{0}的組權限。", "xloc": [ - "default.handlebars->25->1236" + "default.handlebars->25->1239" ] }, { @@ -11613,7 +11954,7 @@ "ru": "Права на группу для {0}.", "zh-chs": "{0}的組權限。", "xloc": [ - "default.handlebars->25->1235" + "default.handlebars->25->1238" ] }, { @@ -11664,7 +12005,7 @@ "ru": "Гуджарати", "zh-chs": "古久拉提", "xloc": [ - "default.handlebars->25->947" + "default.handlebars->25->950" ] }, { @@ -11700,7 +12041,7 @@ "ru": "Гаитянский", "zh-chs": "海地", "xloc": [ - "default.handlebars->25->948" + "default.handlebars->25->951" ] }, { @@ -11734,7 +12075,7 @@ "ru": "Жесткое отключение агента", "zh-chs": "硬斷開劑", "xloc": [ - "default.handlebars->25->836" + "default.handlebars->25->839" ] }, { @@ -11751,7 +12092,7 @@ "ru": "Всего кучи", "zh-chs": "堆總數", "xloc": [ - "default.handlebars->25->1690" + "default.handlebars->25->1693" ] }, { @@ -11768,7 +12109,7 @@ "ru": "Куча используется", "zh-chs": "堆使用", "xloc": [ - "default.handlebars->25->1689" + "default.handlebars->25->1692" ] }, { @@ -11785,7 +12126,7 @@ "ru": "Иврит", "zh-chs": "希伯來語", "xloc": [ - "default.handlebars->25->949" + "default.handlebars->25->952" ] }, { @@ -11794,7 +12135,9 @@ "en": "Hello [[[NAME]]],", "es": "Hola [[[NAME]]],", "fr": "Bonjour [[[NAME]]],", + "hi": "नमस्कार [[[NAME]]],", "ja": "[[[NAME]]]様", + "ko": "[[[NAME]]] 님, 안녕하세요.", "nl": "Hallo [[[NAME]]],", "ru": "Здравствуйте, [[[NAME]]],", "zh-chs": "您好[[[NAME]]],", @@ -11817,7 +12160,7 @@ "ru": "Помочь перевести MeshCentral", "zh-chs": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->25->1063" + "default.handlebars->25->1066" ] }, { @@ -11826,7 +12169,9 @@ "en": "Hi [[[USERNAME]]],", "es": "Hola [[[USERNAME]]],", "fr": "Bonjour [[[USERNAME]]],", + "hi": "हाय [[[USERNAME]]],", "ja": "[[[USERNAME]]]様", + "ko": "[[[USERNAME]]] 님, 안녕하세요.", "nl": "Hallo [[[USERNAME]]],", "ru": "Привет [[[USERNAME]]],", "zh-chs": "[[[USERNAME]],你好,", @@ -11841,7 +12186,9 @@ "en": "Hi [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) is performing an e-mail verification. Nagivate to the following link to complete the process:", "es": "Hola [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) esta realizando una comprobación del e-mail. Navegue al siguiente enlace para completar el proceso:", "fr": "Bonjour [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) effectue une vérification par e-mail. Accédez au lien suivant pour terminer le processus:", + "hi": "हाय [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]] ई-मेल सत्यापन कर रहा है। प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक को बताएं:", "ja": "こんにちは[[[USERNAME]]]、[[[SERVERNAME]]]([[[SERVERURL]]])は電子メールの検証を実行しています。プロセスを完了するには、次のリンクに移動します。", + "ko": "[[[USERNAME]]] 님, [[[SERVERNAME]]] ([[[SERVERURL]]]) 님이 이메일 확인을 수행하고 있습니다. 프로세스를 완료하려면 다음 링크로 이동하십시오.", "nl": "Hallo [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) voert een e-mailverificatie uit. Ga naar de volgende link om het proces te voltooien:", "ru": "Здравствуйте, [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) выполняет проверку электронной почты. Для завершения процесса перейдите по следующей ссылке:", "zh-chs": "嗨[[[USERNAME]]],[[[SERVERNAME]]]([[[SERVERURL]]])正在执行电子邮件验证。导航至以下链接以完成该过程:", @@ -11855,7 +12202,9 @@ "en": "Hi [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) is requesting an account password reset. Nagivate to the following link to complete the process:", "es": "Hola [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) está solicitando un restablecimiento de contraseña de cuenta. Navegue al siguiente enlace para completar el proceso:", "fr": "Bonjour [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) demande une réinitialisation du mot de passe du compte. Accédez au lien suivant pour terminer le processus:", + "hi": "हाय [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]] से खाता पासवर्ड रीसेट करने का अनुरोध किया जा रहा है। प्रक्रिया को पूरा करने के लिए निम्नलिखित लिंक को बताएं:", "ja": "こんにちは[[[USERNAME]]]、[[[SERVERNAME]]]([[[SERVERURL]]])はアカウントパスワードのリセットをリクエストしています。プロセスを完了するには、次のリンクに移動します。", + "ko": "[[[USERNAME]]] 님, [[[SERVERNAME]]] ([[[SERVERURL]]]) 님이 계정 비밀번호 재설정을 요청하고 있습니다. 프로세스를 완료하려면 다음 링크로 이동하십시오.", "nl": "Hallo [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) vraagt om het opnieuw instellen van het account wachtwoord. Ga naar de volgende link om het proces te voltooien:", "ru": "Здравствуйте, [[[USERNAME]]], [[[SERVERNAME]]] ([[[SERVERURL]]]) запрашивает сброс пароля учетной записи. Для завершения процесса перейдите по следующей ссылке:", "zh-chs": "[[[USERNAME]],您好:[[[SERVERNAME]]]([[[SERVERURL]]])正在请求重置帐户密码。导航至以下链接以完成该过程:", @@ -11897,7 +12246,7 @@ "ru": "Хинди", "zh-chs": "印地語", "xloc": [ - "default.handlebars->25->950" + "default.handlebars->25->953" ] }, { @@ -11933,7 +12282,7 @@ "zh-chs": "持有1份副本", "xloc": [ "default-mobile.handlebars->9->268", - "default.handlebars->25->742" + "default.handlebars->25->745" ] }, { @@ -11951,7 +12300,7 @@ "zh-chs": "持有1個搬家公司", "xloc": [ "default-mobile.handlebars->9->272", - "default.handlebars->25->746" + "default.handlebars->25->749" ] }, { @@ -11969,7 +12318,7 @@ "zh-chs": "保留{0}個條目進行複制", "xloc": [ "default-mobile.handlebars->9->266", - "default.handlebars->25->740" + "default.handlebars->25->743" ] }, { @@ -11987,7 +12336,7 @@ "zh-chs": "保留{0}個條目以進行移動", "xloc": [ "default-mobile.handlebars->9->270", - "default.handlebars->25->744" + "default.handlebars->25->747" ] }, { @@ -12005,7 +12354,7 @@ "zh-chs": "保持{2}的{0}入口{1}", "xloc": [ "default-mobile.handlebars->9->98", - "default.handlebars->25->1365" + "default.handlebars->25->1368" ] }, { @@ -12045,7 +12394,7 @@ "ru": "Синхронизация имени хоста", "zh-chs": "主機名同步", "xloc": [ - "default.handlebars->25->1128" + "default.handlebars->25->1131" ] }, { @@ -12062,7 +12411,7 @@ "ru": "Венгерский", "zh-chs": "匈牙利", "xloc": [ - "default.handlebars->25->951" + "default.handlebars->25->954" ] }, { @@ -12114,7 +12463,7 @@ "ru": "IP: {0}", "zh-chs": "IP:{0}", "xloc": [ - "default.handlebars->25->782" + "default.handlebars->25->785" ] }, { @@ -12131,7 +12480,7 @@ "ru": "IP: {0}, маска: {1}, шлюз: {2}", "zh-chs": "IP:{0},掩碼:{1},網關:{2}", "xloc": [ - "default.handlebars->25->780" + "default.handlebars->25->783" ] }, { @@ -12148,8 +12497,8 @@ "ru": "Уровень IPv4", "zh-chs": "IPv4層", "xloc": [ - "default.handlebars->25->779", - "default.handlebars->25->781" + "default.handlebars->25->782", + "default.handlebars->25->784" ] }, { @@ -12217,7 +12566,7 @@ "ru": "Исландский", "zh-chs": "冰島的", "xloc": [ - "default.handlebars->25->952" + "default.handlebars->25->955" ] }, { @@ -12252,7 +12601,7 @@ "ru": "Идентификатор", "zh-chs": "識別碼", "xloc": [ - "default.handlebars->25->807" + "default.handlebars->25->810" ] }, { @@ -12261,7 +12610,9 @@ "en": "If you did not initiate this request, please ignore this mail.", "es": "Si Ud. no inicio este proceso, por favor ignore este email", "fr": "Si vous n'avez pas initié cette demande, veuillez ignorer ce courrier.", + "hi": "यदि आपने यह अनुरोध आरंभ नहीं किया है, तो कृपया इस मेल को अनदेखा करें।", "ja": "このリクエストを開始していない場合は、このメールを無視してください。", + "ko": "이 요청을 시작하지 않은 경우이 메일을 무시하십시오.", "nl": "Als u dit verzoek niet heeft ingediend, dan kunt u deze e-mail negeren.", "ru": "Если вы не инициировали этот запрос, игнорируйте это письмо.", "zh-chs": "如果您没有发起此请求,请忽略此邮件。", @@ -12328,7 +12679,9 @@ "en": "Individual Devices", "es": "Dispositivos Individuales", "fr": "Appareils individuels", + "hi": "व्यक्तिगत उपकरण", "ja": "個々のデバイス", + "ko": "개별 장치", "nl": "Individuele apparaten", "ru": "Индивидуальные устройства", "zh-chs": "个别装置", @@ -12351,7 +12704,7 @@ "ru": "Индонезийский", "zh-chs": "印度尼西亞", "xloc": [ - "default.handlebars->25->953" + "default.handlebars->25->956" ] }, { @@ -12426,6 +12779,7 @@ "en": "Install Google Authenticator or a compatible application and scan the barcode, use this link or enter the secret. Then, enter the current 6 digit token below to activate 2-Step login.", "es": "Instale Google Authenticator o una aplicación compatible y escanee el código de barras, use este enlace 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.", "fr": "Installez Google Authenticator ou une application compatible et scannez le code-barres, utilisez ce lien ou entrez le secret. Ensuite, entrez le jeton actuel à 6 chiffres ci-dessous pour activer la connexion en 2 étapes.", + "hi": " Google प्रमाणक स्थापित करें या एक संगत एप्लिकेशन और बारकोड को स्कैन करें, इस लिंक का उपयोग करें या रहस्य दर्ज करें। फिर, 2-चरण लॉगिन को सक्रिय करने के लिए नीचे वर्तमान 6 अंक टोकन दर्ज करें।", "ja": "インストールGoogle Authenticatorまたは互換性のあるアプリケーションでバーコードをスキャンするには、このリンクを使用するか、秘密。次に、現在の6桁のトークンを入力して、2段階ログインを有効にします。", "ko": " Google 인증 기 설치 또는 호환되는 응용 프로그램에서 바코드를 스캔하려면 이 링크 를 사용하거나 비밀을 입력하십시오. 그런 다음 아래에 현재 6 자리 토큰을 입력하여 2 단계 로그인을 활성화하십시오.", "nl": "Installeer Google Authenticator of een compatibele applicatie en scan de streepjescode, gebruik deze link 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 @@ "en": "Install Google Authenticator or a compatible application, use this link or enter the secret below. Then, enter the current 6 digit token to activate 2-Step login.", "es": "Instale Google Authenticator o una aplicación compatible, use este enlace 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.", "fr": "Installez Google Authenticator ou une application compatible, utilisez ce lien ou entrez le secret ci-dessous. Ensuite, entrez le jeton actuel à 6 chiffres pour activer la connexion en 2 étapes.", + "hi": " या किसी संगत एप्लिकेशन के लिए, इस लिंक का उपयोग करें या नीचे दिए गए रहस्य दर्ज करें। फिर, 2-चरण लॉगिन को सक्रिय करने के लिए वर्तमान 6 अंकीय टोकन दर्ज करें।", "ja": "インストール Google Authenticator または互換性のあるアプリケーションの場合、このリンクを使用するか、下に秘密を入力します。次に、現在の6桁のトークンを入力して、2段階ログインを有効にします。", "ko": " Google 인증 기 설치 또는 호환되는 응용 프로그램을 사용하려면 이 링크 를 사용하거나 아래의 비밀을 입력하십시오. 그런 다음 현재 6 자리 토큰을 입력하여 2 단계 로그인을 활성화하십시오.", "nl": "Installeer Google Authenticator of een compatibele toepassing, gebruik deze link of voer hieronder het geheim in. Voer vervolgens het huidige 6-cijferige token in om 2-staps aanmelding te activeren.", @@ -12466,7 +12821,7 @@ "ru": "Установка CIRA", "zh-chs": "安裝CIRA", "xloc": [ - "default.handlebars->25->1161" + "default.handlebars->25->1164" ] }, { @@ -12483,7 +12838,7 @@ "ru": "Локальная установка", "zh-chs": "安裝本地", "xloc": [ - "default.handlebars->25->1163" + "default.handlebars->25->1166" ] }, { @@ -12500,8 +12855,8 @@ "ru": "Тип установки", "zh-chs": "安裝類型", "xloc": [ - "default.handlebars->25->1302", - "default.handlebars->25->1309", + "default.handlebars->25->1305", + "default.handlebars->25->1312", "default.handlebars->25->294", "default.handlebars->25->316" ] @@ -12520,7 +12875,7 @@ "ru": "Intel (F10 = ESC+[OM)", "zh-chs": "英特爾(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->25->712", + "default.handlebars->25->715", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -12538,10 +12893,10 @@ "ru": "Intel AMT", "zh-chs": "英特爾AMT", "xloc": [ - "default.handlebars->25->1321", - "default.handlebars->25->1329", - "default.handlebars->25->1686", - "default.handlebars->25->1708" + "default.handlebars->25->1324", + "default.handlebars->25->1332", + "default.handlebars->25->1689", + "default.handlebars->25->1711" ] }, { @@ -12694,7 +13049,7 @@ "ru": "Intel ASCII", "zh-chs": "英特爾ASCII", "xloc": [ - "default.handlebars->25->711" + "default.handlebars->25->714" ] }, { @@ -12714,8 +13069,8 @@ "default-mobile.handlebars->9->133", "default-mobile.handlebars->9->197", "default-mobile.handlebars->9->202", - "default.handlebars->25->1145", - "default.handlebars->25->1155", + "default.handlebars->25->1148", + "default.handlebars->25->1158", "default.handlebars->25->434", "default.handlebars->25->486", "default.handlebars->25->514" @@ -12791,7 +13146,7 @@ "ru": "Политика Intel® AMT", "zh-chs": "英特爾®AMT政策", "xloc": [ - "default.handlebars->25->1184" + "default.handlebars->25->1187" ] }, { @@ -12896,8 +13251,8 @@ "ru": "События Intel® AMT desktop или serial.", "zh-chs": "英特爾®AMT桌面和串行事件。", "xloc": [ - "default.handlebars->25->1069", - "default.handlebars->25->1317" + "default.handlebars->25->1072", + "default.handlebars->25->1320" ] }, { @@ -12986,8 +13341,8 @@ "zh-chs": "僅限英特爾®AMT,無代理", "xloc": [ "default-mobile.handlebars->9->279", - "default.handlebars->25->1098", - "default.handlebars->25->1122" + "default.handlebars->25->1101", + "default.handlebars->25->1125" ] }, { @@ -13021,7 +13376,7 @@ "ru": "Intel® Active Management Technology (Intel® AMT)", "zh-chs": "英特爾®主動管理技術(英特爾®AMT)", "xloc": [ - "default.handlebars->25->799" + "default.handlebars->25->802" ] }, { @@ -13044,7 +13399,13 @@ }, { "en": "Intel® Manageability Engine", + "es": "Motor de administración Intel®", + "fr": "Moteur de gestion Intel®", + "hi": "Intel® प्रबंधनीयता इंजन", + "ja": "インテル®管理エンジン", + "ko": "인텔 ® 관리 효율성 엔진", "nl": "Intel® Manageability Engine", + "zh-chs": "英特尔®可管理性引擎", "xloc": [ "default.handlebars->25->483" ] @@ -13182,7 +13543,7 @@ "ru": "Интерактивный", "zh-chs": "互動", "xloc": [ - "default.handlebars->25->694" + "default.handlebars->25->697" ] }, { @@ -13199,8 +13560,8 @@ "ru": "Только интерактивный режим", "zh-chs": "僅限互動", "xloc": [ - "default.handlebars->25->1305", - "default.handlebars->25->1312", + "default.handlebars->25->1308", + "default.handlebars->25->1315", "default.handlebars->25->297", "default.handlebars->25->319" ] @@ -13236,7 +13597,7 @@ "ru": "Инуктитут", "zh-chs": "因紐特人", "xloc": [ - "default.handlebars->25->954" + "default.handlebars->25->957" ] }, { @@ -13253,7 +13614,7 @@ "ru": "Некорректный тип группы устройств", "zh-chs": "無效的設備組類型", "xloc": [ - "default.handlebars->25->1663" + "default.handlebars->25->1666" ] }, { @@ -13270,7 +13631,7 @@ "ru": "Некорректный JSON", "zh-chs": "無效的JSON", "xloc": [ - "default.handlebars->25->1657" + "default.handlebars->25->1660" ] }, { @@ -13287,8 +13648,8 @@ "ru": "Некорректный формат файла JSON.", "zh-chs": "無效的JSON文件格式。", "xloc": [ - "default.handlebars->25->1427", - "default.handlebars->25->1429" + "default.handlebars->25->1430", + "default.handlebars->25->1432" ] }, { @@ -13305,7 +13666,7 @@ "ru": "Некорректный файл JSON: {0}.", "zh-chs": "無效的JSON文件:{0}。", "xloc": [ - "default.handlebars->25->1425" + "default.handlebars->25->1428" ] }, { @@ -13322,7 +13683,7 @@ "ru": "Некорректная сигнатура PKCS", "zh-chs": "無效的PKCS簽名", "xloc": [ - "default.handlebars->25->1655" + "default.handlebars->25->1658" ] }, { @@ -13339,7 +13700,7 @@ "ru": "Некорректная сигнатура RSA", "zh-chs": "無效的RSA密碼", "xloc": [ - "default.handlebars->25->1656" + "default.handlebars->25->1659" ] }, { @@ -13475,7 +13836,7 @@ "ru": "Коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->25->1307" + "default.handlebars->25->1310" ] }, { @@ -13484,7 +13845,9 @@ "en": "Invitation Code", "es": "Código de Invitación", "fr": "Code d'invitation", + "hi": "आमंत्रण संकेत", "ja": "招待コード", + "ko": "초대 코드", "nl": "Uitnodigingscode", "ru": "Код приглашения", "zh-chs": "邀请码", @@ -13506,7 +13869,7 @@ "ru": "Пригласить", "zh-chs": "邀請", "xloc": [ - "default.handlebars->25->1171", + "default.handlebars->25->1174", "default.handlebars->25->229", "default.handlebars->25->309" ] @@ -13525,11 +13888,11 @@ "ru": "Пригласительные коды", "zh-chs": "邀請碼", "xloc": [ - "default.handlebars->25->1149", - "default.handlebars->25->1301", - "default.handlebars->25->1306", - "default.handlebars->25->1308", - "default.handlebars->25->1313" + "default.handlebars->25->1152", + "default.handlebars->25->1304", + "default.handlebars->25->1309", + "default.handlebars->25->1311", + "default.handlebars->25->1316" ] }, { @@ -13552,10 +13915,15 @@ { "de": "Laden Sie jemanden ein, den Mesh-Agenten für diese Gerätegruppe zu installieren.", "en": "Invite someone to install the mesh agent on this device group.", + "es": "Invite a alguien a instalar el agente de malla en este grupo de dispositivos.", + "fr": "Invitez quelqu'un à installer l'agent maillé sur ce groupe de périphériques.", + "hi": "इस उपकरण समूह पर मेष एजेंट को स्थापित करने के लिए किसी को आमंत्रित करें।", "ja": "このデバイスグループにメッシュエージェントをインストールするように誰かを招待します。", + "ko": "이 장치 그룹에 메쉬 에이전트를 설치하도록 누군가 초대하십시오.", "nl": "Nodig iemand uit om de mesh-agent in deze apparaatgroep te installeren.", + "zh-chs": "邀请某人在该设备组上安装网状代理。", "xloc": [ - "default.handlebars->25->1170", + "default.handlebars->25->1173", "default.handlebars->25->228" ] }, @@ -13590,7 +13958,7 @@ "ru": "Ирландский", "zh-chs": "愛爾蘭人", "xloc": [ - "default.handlebars->25->955" + "default.handlebars->25->958" ] }, { @@ -13607,7 +13975,7 @@ "ru": "Итальянский (Стандартный)", "zh-chs": "意大利語(標準)", "xloc": [ - "default.handlebars->25->956" + "default.handlebars->25->959" ] }, { @@ -13624,7 +13992,7 @@ "ru": "Итальянский (Швейцария)", "zh-chs": "義大利文(瑞士)", "xloc": [ - "default.handlebars->25->957" + "default.handlebars->25->960" ] }, { @@ -13641,8 +14009,8 @@ "ru": "Формат JSON", "zh-chs": "JSON格式", "xloc": [ - "default.handlebars->25->1376", - "default.handlebars->25->1433", + "default.handlebars->25->1379", + "default.handlebars->25->1436", "default.handlebars->25->401" ] }, @@ -13660,7 +14028,7 @@ "ru": "Японский", "zh-chs": "日本", "xloc": [ - "default.handlebars->25->958" + "default.handlebars->25->961" ] }, { @@ -13677,7 +14045,7 @@ "ru": "Каннада", "zh-chs": "卡納達語", "xloc": [ - "default.handlebars->25->959" + "default.handlebars->25->962" ] }, { @@ -13694,7 +14062,7 @@ "ru": "Кашмирский", "zh-chs": "克什米爾語", "xloc": [ - "default.handlebars->25->960" + "default.handlebars->25->963" ] }, { @@ -13711,7 +14079,7 @@ "ru": "Казахский", "zh-chs": "哈薩克語", "xloc": [ - "default.handlebars->25->961" + "default.handlebars->25->964" ] }, { @@ -13728,7 +14096,7 @@ "ru": "Драйвер ядра", "zh-chs": "內核驅動程序", "xloc": [ - "default.handlebars->25->695" + "default.handlebars->25->698" ] }, { @@ -13745,8 +14113,8 @@ "ru": "Имя ключа", "zh-chs": "鍵名", "xloc": [ - "default.handlebars->25->852", - "default.handlebars->25->855" + "default.handlebars->25->855", + "default.handlebars->25->858" ] }, { @@ -13780,7 +14148,7 @@ "ru": "Кхмерский", "zh-chs": "高棉語", "xloc": [ - "default.handlebars->25->962" + "default.handlebars->25->965" ] }, { @@ -13797,7 +14165,7 @@ "ru": "Киргизский", "zh-chs": "吉爾吉斯", "xloc": [ - "default.handlebars->25->963" + "default.handlebars->25->966" ] }, { @@ -13814,7 +14182,7 @@ "ru": "Клингонский", "zh-chs": "克林貢", "xloc": [ - "default.handlebars->25->964" + "default.handlebars->25->967" ] }, { @@ -13831,7 +14199,7 @@ "ru": "Известный", "zh-chs": "已知的", "xloc": [ - "default.handlebars->25->798" + "default.handlebars->25->801" ] }, { @@ -13848,7 +14216,7 @@ "ru": "Korean", "zh-chs": "韓語", "xloc": [ - "default.handlebars->25->965" + "default.handlebars->25->968" ] }, { @@ -13865,7 +14233,7 @@ "ru": "Корейский (Северная Корея)", "zh-chs": "韓語(朝鮮)", "xloc": [ - "default.handlebars->25->966" + "default.handlebars->25->969" ] }, { @@ -13882,7 +14250,7 @@ "ru": "Корейский (Южная Корея)", "zh-chs": "韓語(韓國)", "xloc": [ - "default.handlebars->25->967" + "default.handlebars->25->970" ] }, { @@ -13899,8 +14267,8 @@ "ru": "LF", "zh-chs": "如果", "xloc": [ - "default.handlebars->25->707", - "default.handlebars->25->716" + "default.handlebars->25->710", + "default.handlebars->25->719" ] }, { @@ -13917,7 +14285,7 @@ "ru": "Язык", "zh-chs": "語言", "xloc": [ - "default.handlebars->25->1061" + "default.handlebars->25->1064" ] }, { @@ -13951,7 +14319,7 @@ "ru": "Большой Фокус", "zh-chs": "大焦點", "xloc": [ - "default.handlebars->25->683" + "default.handlebars->25->686" ] }, { @@ -14134,7 +14502,7 @@ "ru": "Последний доступ", "zh-chs": "最後訪問", "xloc": [ - "default.handlebars->25->1384" + "default.handlebars->25->1387" ] }, { @@ -14151,7 +14519,7 @@ "ru": "Последний вход в систему", "zh-chs": "上次登錄", "xloc": [ - "default.handlebars->25->1549" + "default.handlebars->25->1552" ] }, { @@ -14171,9 +14539,9 @@ "default.handlebars->25->70", "default.handlebars->25->72", "default.handlebars->25->74", - "default.handlebars->25->770", - "default.handlebars->25->771", - "default.handlebars->25->772" + "default.handlebars->25->773", + "default.handlebars->25->774", + "default.handlebars->25->775" ] }, { @@ -14191,8 +14559,8 @@ "zh-chs": "上次代理連接", "xloc": [ "default.handlebars->25->69", - "default.handlebars->25->767", - "default.handlebars->25->769" + "default.handlebars->25->770", + "default.handlebars->25->772" ] }, { @@ -14209,7 +14577,7 @@ "ru": "Последнее изменение: {0}", "zh-chs": "上次更改:{0}", "xloc": [ - "default.handlebars->25->1553" + "default.handlebars->25->1556" ] }, { @@ -14260,7 +14628,7 @@ "ru": "Последний вход в систему: {0}", "zh-chs": "上次登錄:{0}", "xloc": [ - "default.handlebars->25->1394" + "default.handlebars->25->1397" ] }, { @@ -14346,7 +14714,7 @@ "ru": "Латинский", "zh-chs": "拉丁", "xloc": [ - "default.handlebars->25->968" + "default.handlebars->25->971" ] }, { @@ -14363,15 +14731,20 @@ "ru": "Латышский", "zh-chs": "拉脫維亞語", "xloc": [ - "default.handlebars->25->969" + "default.handlebars->25->972" ] }, { "en": "Leave blank for none.", - "nl": "Leeg laten voor geen.", + "es": "Deje en blanco para ninguno.", + "fr": "Laissez vide pour aucun.", + "hi": "किसी के लिए भी खाली छोड़ दें।", "ja": "なしの場合は空白のままにします。", + "ko": "비워 두십시오.", + "nl": "Leeg laten voor geen.", + "zh-chs": "一无所有。", "xloc": [ - "default.handlebars->25->1591" + "default.handlebars->25->1594" ] }, { @@ -14410,7 +14783,7 @@ "ru": "Меньше", "zh-chs": "減", "xloc": [ - "default.handlebars->25->1725" + "default.handlebars->25->1728" ] }, { @@ -14419,7 +14792,9 @@ "en": "Limit Events", "es": "Limitar Eventos", "fr": "Limiter les événements", + "hi": "घटनाओं को सीमित करें", "ja": "イベントを制限する", + "ko": "이벤트 제한", "nl": "Beperk gebeurtenissen", "ru": "Предельные события", "zh-chs": "极限赛事", @@ -14461,7 +14836,7 @@ "zh-chs": "有限輸入", "xloc": [ "default-mobile.handlebars->9->328", - "default.handlebars->25->1285", + "default.handlebars->25->1288", "default.handlebars->25->569", "default.handlebars->25->588" ] @@ -14481,7 +14856,7 @@ "zh-chs": "僅限於輸入", "xloc": [ "default-mobile.handlebars->9->303", - "default.handlebars->25->1243" + "default.handlebars->25->1246" ] }, { @@ -14524,8 +14899,12 @@ "de": "Link-Einladung", "en": "Link invitation", "es": "Enlace de invitación", + "fr": "Lien d'invitation", + "hi": "लिंक आमंत्रण", "ja": "リンクへの招待", + "ko": "링크 초대", "nl": "Uitnodigingslink", + "zh-chs": "链接邀请", "xloc": [ "default.handlebars->25->275" ] @@ -14808,7 +15187,7 @@ "ru": "Литовский", "zh-chs": "立陶宛語", "xloc": [ - "default.handlebars->25->970" + "default.handlebars->25->973" ] }, { @@ -14826,10 +15205,10 @@ "zh-chs": "載入中...", "xloc": [ "default-mobile.handlebars->9->41", - "default.handlebars->25->1115", - "default.handlebars->25->1117", + "default.handlebars->25->1118", + "default.handlebars->25->1120", "default.handlebars->25->643", - "default.handlebars->25->848" + "default.handlebars->25->851" ] }, { @@ -14897,7 +15276,7 @@ "ru": "Настройки локализации", "zh-chs": "本地化設置", "xloc": [ - "default.handlebars->25->1064", + "default.handlebars->25->1067", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -14949,7 +15328,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->25->1464" + "default.handlebars->25->1467" ] }, { @@ -14966,7 +15345,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->25->1412" + "default.handlebars->25->1415" ] }, { @@ -14983,7 +15362,7 @@ "ru": "Заблокирован", "zh-chs": "已鎖定", "xloc": [ - "default.handlebars->25->1395" + "default.handlebars->25->1398" ] }, { @@ -15000,7 +15379,7 @@ "ru": "Заблокированная учетная запись", "zh-chs": "賬戶鎖定", "xloc": [ - "default.handlebars->25->1532" + "default.handlebars->25->1535" ] }, { @@ -15097,8 +15476,13 @@ }, { "en": "Login and go to the \\\"My Account\\\" tab to update your password.", - "nl": "Log in en ga naar het tabblad \\\"Mijn Account\\\" om uw wachtwoord bij te werken.", + "es": "Inicie sesión y vaya a la pestaña \"Mi cuenta\" para actualizar su contraseña.", + "fr": "Connectez-vous et accédez à l'onglet \\\"Mon compte\\\" pour mettre à jour votre mot de passe.", + "hi": "लॉगिन करें और अपना पासवर्ड अपडेट करने के लिए \\\"मेरा खाता\\\" टैब पर जाएं।", "ja": "ログインして[マイアカウント]タブにアクセスし、パスワードを更新します。", + "ko": "로그인하고 \\\"내 계정\\\"탭으로 이동하여 비밀번호를 업데이트하십시오.", + "nl": "Log in en ga naar het tabblad \\\"Mijn Account\\\" om uw wachtwoord bij te werken.", + "zh-chs": "登录并转到\\“我的帐户\\”选项卡以更新密码。", "xloc": [ "message.handlebars->3->10" ] @@ -15174,7 +15558,7 @@ "ru": "Люксембургский", "zh-chs": "盧森堡語", "xloc": [ - "default.handlebars->25->971" + "default.handlebars->25->974" ] }, { @@ -15191,8 +15575,8 @@ "ru": "MAC-уровень", "zh-chs": "MAC層", "xloc": [ - "default.handlebars->25->775", - "default.handlebars->25->777" + "default.handlebars->25->778", + "default.handlebars->25->780" ] }, { @@ -15226,7 +15610,7 @@ "ru": "MAC: {0}", "zh-chs": "MAC:{0}", "xloc": [ - "default.handlebars->25->778" + "default.handlebars->25->781" ] }, { @@ -15243,7 +15627,7 @@ "ru": "MAC: {0}, шлюз: {1}", "zh-chs": "MAC:{0},網關:{1}", "xloc": [ - "default.handlebars->25->776" + "default.handlebars->25->779" ] }, { @@ -15301,8 +15685,8 @@ "default.handlebars->25->185", "default.handlebars->25->378", "default.handlebars->25->518", - "default.handlebars->25->826", - "default.handlebars->25->827", + "default.handlebars->25->829", + "default.handlebars->25->830", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -15496,7 +15880,7 @@ "ru": "Сообщения главного сервера", "zh-chs": "主服務器消息", "xloc": [ - "default.handlebars->25->1697" + "default.handlebars->25->1700" ] }, { @@ -15513,7 +15897,7 @@ "ru": "Малайский", "zh-chs": "馬來語", "xloc": [ - "default.handlebars->25->973" + "default.handlebars->25->976" ] }, { @@ -15530,7 +15914,7 @@ "ru": "Малаяламский", "zh-chs": "馬拉雅拉姆語", "xloc": [ - "default.handlebars->25->974" + "default.handlebars->25->977" ] }, { @@ -15547,7 +15931,7 @@ "ru": "Мальтийский", "zh-chs": "馬耳他語", "xloc": [ - "default.handlebars->25->975" + "default.handlebars->25->978" ] }, { @@ -15584,8 +15968,8 @@ "xloc": [ "default-mobile.handlebars->9->300", "default-mobile.handlebars->9->318", - "default.handlebars->25->1240", - "default.handlebars->25->1274" + "default.handlebars->25->1243", + "default.handlebars->25->1277" ] }, { @@ -15604,8 +15988,8 @@ "xloc": [ "default-mobile.handlebars->9->299", "default-mobile.handlebars->9->317", - "default.handlebars->25->1239", - "default.handlebars->25->1273" + "default.handlebars->25->1242", + "default.handlebars->25->1276" ] }, { @@ -15614,7 +15998,9 @@ "en": "Manage Devices", "es": "Administrar dispositivos", "fr": "Gérer les appareils", + "hi": "उपकरण प्रबंधित करें", "ja": "デバイスを管理する", + "ko": "장치 관리", "nl": "Beheer apparaten", "ru": "Управление устройствами", "zh-chs": "管理设备", @@ -15653,7 +16039,7 @@ "ru": "Управление группами пользователя", "zh-chs": "管理用戶組", "xloc": [ - "default.handlebars->25->1463" + "default.handlebars->25->1466" ] }, { @@ -15670,7 +16056,7 @@ "ru": "Управление пользователями", "zh-chs": "管理用戶", "xloc": [ - "default.handlebars->25->1462", + "default.handlebars->25->1465", "default.handlebars->25->582" ] }, @@ -15730,8 +16116,13 @@ }, { "en": "Manage phone number", + "es": "Administrar número de teléfono", + "fr": "Gérer le numéro de téléphone", + "hi": "फ़ोन नंबर प्रबंधित करें", "ja": "電話番号を管理する", + "ko": "전화 번호 관리", "nl": "Beheer telefoonnummer", + "zh-chs": "管理电话号码", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->3->managePhoneNumber1->0", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->1->managePhoneNumber2->0", @@ -15770,7 +16161,7 @@ "ru": "Управление с помощью программного агента", "zh-chs": "使用軟件代理進行管理", "xloc": [ - "default.handlebars->25->1097" + "default.handlebars->25->1100" ] }, { @@ -15788,7 +16179,7 @@ "zh-chs": "使用軟件代理進行管理", "xloc": [ "default-mobile.handlebars->9->280", - "default.handlebars->25->1123" + "default.handlebars->25->1126" ] }, { @@ -15805,7 +16196,7 @@ "ru": "Менеджер", "zh-chs": "經理", "xloc": [ - "default.handlebars->25->1400" + "default.handlebars->25->1403" ] }, { @@ -15856,7 +16247,7 @@ "ru": "Маори", "zh-chs": "毛利人", "xloc": [ - "default.handlebars->25->976" + "default.handlebars->25->979" ] }, { @@ -15891,7 +16282,7 @@ "ru": "Маратхи", "zh-chs": "馬拉地語", "xloc": [ - "default.handlebars->25->977" + "default.handlebars->25->980" ] }, { @@ -15908,7 +16299,7 @@ "ru": "Достигнуто максимальное число сессий", "zh-chs": "達到的會話數上限", "xloc": [ - "default.handlebars->25->1661" + "default.handlebars->25->1664" ] }, { @@ -15962,7 +16353,7 @@ "ru": "Мегабайт", "zh-chs": "兆字節", "xloc": [ - "default.handlebars->25->1687" + "default.handlebars->25->1690" ] }, { @@ -15979,8 +16370,8 @@ "ru": "ОЗУ", "zh-chs": "記憶", "xloc": [ - "default.handlebars->25->1678", - "default.handlebars->25->814", + "default.handlebars->25->1681", + "default.handlebars->25->817", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -16006,8 +16397,8 @@ "default.handlebars->25->341", "default.handlebars->25->466", "default.handlebars->25->510", - "default.handlebars->25->766", - "default.handlebars->25->773" + "default.handlebars->25->769", + "default.handlebars->25->776" ] }, { @@ -16025,7 +16416,7 @@ "zh-chs": "網格代理控制台", "xloc": [ "default-mobile.handlebars->9->307", - "default.handlebars->25->1248" + "default.handlebars->25->1251" ] }, { @@ -16115,7 +16506,7 @@ "ru": "Трафик MeshAgent", "zh-chs": "MeshAgent流量", "xloc": [ - "default.handlebars->25->1699" + "default.handlebars->25->1702" ] }, { @@ -16132,7 +16523,7 @@ "ru": "Обновление MeshAgent", "zh-chs": "MeshAgent更新", "xloc": [ - "default.handlebars->25->1700" + "default.handlebars->25->1703" ] }, { @@ -16166,7 +16557,7 @@ "ru": "Ошибки MeshCentral", "zh-chs": "網格中心錯誤", "xloc": [ - "default.handlebars->25->1116" + "default.handlebars->25->1119" ] }, { @@ -16235,7 +16626,7 @@ "ru": "Соединения сервера MeshCentral", "zh-chs": "MeshCentral服務器對等", "xloc": [ - "default.handlebars->25->1698" + "default.handlebars->25->1701" ] }, { @@ -16270,7 +16661,7 @@ "zh-chs": "MeshCentral版本", "xloc": [ "default.handlebars->25->101", - "default.handlebars->25->1114", + "default.handlebars->25->1117", "default.handlebars->25->99" ] }, @@ -16498,7 +16889,7 @@ "ru": "Диспетчер сообщения", "zh-chs": "郵件調度程序", "xloc": [ - "default.handlebars->25->1696" + "default.handlebars->25->1699" ] }, { @@ -16507,7 +16898,9 @@ "en": "Message:", "es": "Mensaje:", "fr": "Message:", + "hi": "संदेश:", "ja": "メッセージ:", + "ko": "메시지:", "nl": "Bericht:", "ru": "Сообщение:", "zh-chs": "信息:", @@ -16521,7 +16914,9 @@ "en": "Message: [[[MSG]]]", "es": "Mensaje: [[[MSG]]]", "fr": "Message: [[[MSG]]]", + "hi": "संदेश: [[[एमएसजी]]]", "ja": "メッセージ:[[[MSG]]]", + "ko": "메시지 : [[[MSG]]]", "nl": "Bericht: [[[MSG]]]", "ru": "Сообщение: [[[MSG]]]", "zh-chs": "讯息:[[[MSG]]]", @@ -16583,10 +16978,15 @@ }, { "en": "Model", + "es": "Modelo", + "fr": "Modèle", + "hi": "नमूना", "ja": "型番", + "ko": "모델", "nl": "Model", + "zh-chs": "模型", "xloc": [ - "default.handlebars->25->815" + "default.handlebars->25->818" ] }, { @@ -16620,7 +17020,7 @@ "ru": "Молдавский", "zh-chs": "摩爾達維亞人", "xloc": [ - "default.handlebars->25->978" + "default.handlebars->25->981" ] }, { @@ -16637,7 +17037,7 @@ "ru": "Еще", "zh-chs": "更多", "xloc": [ - "default.handlebars->25->1724" + "default.handlebars->25->1727" ] }, { @@ -16654,7 +17054,7 @@ "ru": "Материнская плата", "zh-chs": "母板", "xloc": [ - "default.handlebars->25->810" + "default.handlebars->25->813" ] }, { @@ -16820,7 +17220,7 @@ "ru": "Консоль моего сервера", "zh-chs": "我的服務器控制台", "xloc": [ - "default.handlebars->25->821" + "default.handlebars->25->824" ] }, { @@ -16941,8 +17341,8 @@ "ru": "Мой ключ", "zh-chs": "我的鑰匙", "xloc": [ - "default.handlebars->25->853", - "default.handlebars->25->856" + "default.handlebars->25->856", + "default.handlebars->25->859" ] }, { @@ -16964,17 +17364,17 @@ "default-mobile.handlebars->9->294", "default-mobile.handlebars->9->66", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->25->1095", - "default.handlebars->25->1206", - "default.handlebars->25->1382", - "default.handlebars->25->1469", - "default.handlebars->25->1483", - "default.handlebars->25->1519", + "default.handlebars->25->1098", + "default.handlebars->25->1209", + "default.handlebars->25->1385", + "default.handlebars->25->1472", + "default.handlebars->25->1486", + "default.handlebars->25->1522", "default.handlebars->25->459", - "default.handlebars->25->689", - "default.handlebars->25->762", + "default.handlebars->25->692", + "default.handlebars->25->765", "default.handlebars->25->77", - "default.handlebars->25->804", + "default.handlebars->25->807", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default.handlebars->container->column_l->p42->p42tbl->1->0->2" @@ -17011,7 +17411,7 @@ "ru": "Имя1, Имя2, Имя3", "zh-chs": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->25->1454" + "default.handlebars->25->1457" ] }, { @@ -17028,7 +17428,7 @@ "ru": "Навахо", "zh-chs": "納瓦霍人", "xloc": [ - "default.handlebars->25->979" + "default.handlebars->25->982" ] }, { @@ -17045,7 +17445,7 @@ "ru": "Ндонга", "zh-chs": "恩東加", "xloc": [ - "default.handlebars->25->980" + "default.handlebars->25->983" ] }, { @@ -17062,7 +17462,7 @@ "ru": "Непальский", "zh-chs": "尼泊爾文", "xloc": [ - "default.handlebars->25->981" + "default.handlebars->25->984" ] }, { @@ -17110,7 +17510,7 @@ "ru": "сетей", "zh-chs": "聯網", "xloc": [ - "default.handlebars->25->783" + "default.handlebars->25->786" ] }, { @@ -17163,8 +17563,8 @@ "zh-chs": "新設備組", "xloc": [ "default-mobile.handlebars->9->60", - "default.handlebars->25->1088", - "default.handlebars->25->1100", + "default.handlebars->25->1091", + "default.handlebars->25->1103", "default.handlebars->25->634" ] }, @@ -17184,8 +17584,8 @@ "xloc": [ "default-mobile.handlebars->9->252", "default-mobile.handlebars->9->89", - "default.handlebars->25->1355", - "default.handlebars->25->726", + "default.handlebars->25->1358", + "default.handlebars->25->729", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -17240,8 +17640,8 @@ "xloc": [ "default-mobile.handlebars->9->55", "default-mobile.handlebars->9->56", - "default.handlebars->25->1083", - "default.handlebars->25->1084" + "default.handlebars->25->1086", + "default.handlebars->25->1087" ] }, { @@ -17250,7 +17650,9 @@ "en": "No AMT", "es": "Sin AMT", "fr": "Pas d'appareil AMT", + "hi": "कोई ए.एम.टी.", "ja": "AMTなし", + "ko": "AMT 없음", "nl": "Geen AMT", "pt": "Nenhum AMT", "ru": "Нет AMT", @@ -17284,7 +17686,9 @@ "en": "No Added Rights", "es": "Sin derechos añadidos", "fr": "Aucun droit ajouté", + "hi": "कोई जोड़ा अधिकार नहीं", "ja": "追加された権利なし", + "ko": "추가 된 권리 없음", "nl": "Geen toegevoegde rechten", "ru": "Нет добавленных прав", "zh-chs": "没有增加的权利" @@ -17323,7 +17727,7 @@ "ru": "Нет рабочего стола", "zh-chs": "沒有桌面", "xloc": [ - "default.handlebars->25->1281", + "default.handlebars->25->1284", "default.handlebars->25->570", "default.handlebars->25->589" ] @@ -17342,7 +17746,7 @@ "ru": "Нет доступа к рабочему столу", "zh-chs": "沒有桌面訪問", "xloc": [ - "default.handlebars->25->1244" + "default.handlebars->25->1247" ] }, { @@ -17359,9 +17763,9 @@ "ru": "События не найдены", "zh-chs": "找不到活動", "xloc": [ - "default.handlebars->25->1372", - "default.handlebars->25->1642", - "default.handlebars->25->760" + "default.handlebars->25->1375", + "default.handlebars->25->1645", + "default.handlebars->25->763" ] }, { @@ -17379,7 +17783,7 @@ "zh-chs": "沒有文件訪問", "xloc": [ "default-mobile.handlebars->9->305", - "default.handlebars->25->1246" + "default.handlebars->25->1249" ] }, { @@ -17397,7 +17801,7 @@ "zh-chs": "沒有文件", "xloc": [ "default-mobile.handlebars->9->326", - "default.handlebars->25->1283", + "default.handlebars->25->1286", "default.handlebars->25->567", "default.handlebars->25->586" ] @@ -17408,7 +17812,9 @@ "en": "No Input", "es": "Sin entrada", "fr": "Pas d'entrée", + "hi": "कोई निवेश नहीं", "ja": "入力なし", + "ko": "입력이 없습니다", "nl": "Geen input", "ru": "Нет ввода", "zh-chs": "无输入", @@ -17433,8 +17839,8 @@ "xloc": [ "default-mobile.handlebars->9->306", "default-mobile.handlebars->9->327", - "default.handlebars->25->1247", - "default.handlebars->25->1284" + "default.handlebars->25->1250", + "default.handlebars->25->1287" ] }, { @@ -17502,7 +17908,7 @@ "ru": "Нет членов", "zh-chs": "沒有會員", "xloc": [ - "default.handlebars->25->1501" + "default.handlebars->25->1504" ] }, { @@ -17519,7 +17925,7 @@ "ru": "Запретить создание групп устройств", "zh-chs": "沒有新的設備組", "xloc": [ - "default.handlebars->25->1465" + "default.handlebars->25->1468" ] }, { @@ -17536,9 +17942,9 @@ "ru": "Политик нет", "zh-chs": "沒有政策", "xloc": [ - "default.handlebars->25->1150", - "default.handlebars->25->1178", - "default.handlebars->25->1181" + "default.handlebars->25->1153", + "default.handlebars->25->1181", + "default.handlebars->25->1184" ] }, { @@ -17558,8 +17964,8 @@ "default-mobile.handlebars->9->289", "default-mobile.handlebars->9->332", "default-mobile.handlebars->9->75", - "default.handlebars->25->1109", - "default.handlebars->25->1289", + "default.handlebars->25->1112", + "default.handlebars->25->1292", "default.handlebars->25->579", "default.handlebars->25->598" ] @@ -17598,7 +18004,7 @@ "zh-chs": "沒有終端", "xloc": [ "default-mobile.handlebars->9->325", - "default.handlebars->25->1282", + "default.handlebars->25->1285", "default.handlebars->25->566", "default.handlebars->25->585" ] @@ -17618,7 +18024,7 @@ "zh-chs": "沒有終端訪問", "xloc": [ "default-mobile.handlebars->9->304", - "default.handlebars->25->1245" + "default.handlebars->25->1248" ] }, { @@ -17635,7 +18041,7 @@ "ru": "Нет инструментов (MeshCmd/Router)", "zh-chs": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->25->1466" + "default.handlebars->25->1469" ] }, { @@ -17652,8 +18058,8 @@ "ru": "Нет общих групп устройств", "zh-chs": "沒有共同的設備組", "xloc": [ - "default.handlebars->25->1507", - "default.handlebars->25->1614" + "default.handlebars->25->1510", + "default.handlebars->25->1617" ] }, { @@ -17694,7 +18100,12 @@ }, { "en": "No devices are included in any groups, click on a device's \\\"Groups\\\" to add to a group.", + "es": "No se incluyen dispositivos en ningún grupo, haga clic en los \\\"Grupos\\\" de un dispositivo para agregarlos a un grupo.", + "fr": "Aucun appareil n'est inclus dans aucun groupe, cliquez sur les \\\"Groupes\\\" d'un appareil pour l'ajouter à un groupe.", + "ja": "どのグループにもデバイスが含まれていません。デバイスの[グループ]をクリックしてグループに追加してください。", + "ko": "그룹에 장치가 포함되어 있지 않으면 장치의 \\\"그룹\\\"을 클릭하여 그룹에 추가하십시오.", "nl": "Er zijn geen apparaten opgenomen in groepen, klik op het apparaat \\\"Groups\\\" om het aan een groep toe te voegen.", + "zh-chs": "任何组中均不包含任何设备,请单击设备的“组”以添加到组中。", "xloc": [ "default.handlebars->25->187" ] @@ -17707,7 +18118,7 @@ "fr": "Aucun appareil n'est inclus dans aucun groupe, cliquez sur \\\"Groupes\\\" d'un appareil pour l'ajouter à un groupe.", "hi": "कोई भी उपकरण किसी भी समूह में शामिल नहीं हैं, एक समूह में जोड़ने के लिए एक उपकरण \\\"समूह \\\" पर क्लिक करें।", "ja": "どのグループにもデバイスは含まれていません。デバイスの\\\"グループ\\\"をクリックしてグループに追加してください。", - "ko": "그룹에 장치가 포함되어 있지 않으면 장치의 \\\"그룹 \\\"을 클릭하여 그룹에 추가하십시오.", + "ko": "그룹에 장치가 포함되어 있지 않으면 장치의 \\\"그룹\\\"을 클릭하여 그룹에 추가하십시오.", "nl": "Er zijn geen apparaten opgenomen in groepen, klik op een apparaat \\\"Groepen\\\" om toe te voegen aan een groep.", "pt": "Nenhum dispositivo está incluído em nenhum grupo, clique no \\\"Grupo\\\" de um dispositivo para adicionar a um grupo", "ru": "Ни одно устройство не включено ни в одну из групп, чтобы добавить группу нажмите \\\"Группы\\\" устройств.", @@ -17744,8 +18155,8 @@ "ru": "Нет общих устройств", "zh-chs": "沒有共同的設備", "xloc": [ - "default.handlebars->25->1513", - "default.handlebars->25->1626" + "default.handlebars->25->1516", + "default.handlebars->25->1629" ] }, { @@ -17762,7 +18173,7 @@ "ru": "В группе нет устройств.", "zh-chs": "該設備組中沒有設備。", "xloc": [ - "default.handlebars->25->1332" + "default.handlebars->25->1335" ] }, { @@ -17831,7 +18242,7 @@ "ru": "Группы не найдены.", "zh-chs": "找不到群組。", "xloc": [ - "default.handlebars->25->1468" + "default.handlebars->25->1471" ] }, { @@ -17848,7 +18259,7 @@ "ru": "Информации об этом устройстве нет", "zh-chs": "沒有此設備的信息。", "xloc": [ - "default.handlebars->25->820" + "default.handlebars->25->823" ] }, { @@ -17933,7 +18344,7 @@ "ru": "Нет серверных прав", "zh-chs": "沒有服務器權限", "xloc": [ - "default.handlebars->25->1533" + "default.handlebars->25->1536" ] }, { @@ -17950,7 +18361,7 @@ "ru": "Нет членства в группах пользователей", "zh-chs": "沒有用戶組成員身份", "xloc": [ - "default.handlebars->25->1620" + "default.handlebars->25->1623" ] }, { @@ -17967,7 +18378,7 @@ "ru": "Пользователи не найдены.", "zh-chs": "未找到相應的用戶。", "xloc": [ - "default.handlebars->25->1390" + "default.handlebars->25->1393" ] }, { @@ -17976,7 +18387,9 @@ "en": "No users with special device permissions", "es": "No hay usuarios con permisos especiales para dispositivos.", "fr": "Aucun utilisateur avec des autorisations spéciales sur les appareils", + "hi": "विशेष उपकरण अनुमतियों वाला कोई उपयोगकर्ता नहीं", "ja": "特別なデバイス権限を持つユーザーはいません", + "ko": "특별한 장치 권한을 가진 사용자가 없습니다", "nl": "Geen gebruikers met speciale apparaatrechten", "ru": "Нет пользователей со специальными правами доступа к устройству", "zh-chs": "没有拥有特殊设备权限的用户", @@ -18042,20 +18455,20 @@ "default-mobile.handlebars->9->250", "default-mobile.handlebars->9->283", "default-mobile.handlebars->9->85", - "default.handlebars->25->1119", - "default.handlebars->25->1125", - "default.handlebars->25->1129", - "default.handlebars->25->1141", - "default.handlebars->25->1146", - "default.handlebars->25->1148", - "default.handlebars->25->1323", - "default.handlebars->25->1342", - "default.handlebars->25->1487", - "default.handlebars->25->1489", - "default.handlebars->25->1545", - "default.handlebars->25->1554", - "default.handlebars->25->1558", - "default.handlebars->25->1570", + "default.handlebars->25->1122", + "default.handlebars->25->1128", + "default.handlebars->25->1132", + "default.handlebars->25->1144", + "default.handlebars->25->1149", + "default.handlebars->25->1151", + "default.handlebars->25->1326", + "default.handlebars->25->1345", + "default.handlebars->25->1490", + "default.handlebars->25->1492", + "default.handlebars->25->1548", + "default.handlebars->25->1557", + "default.handlebars->25->1561", + "default.handlebars->25->1573", "default.handlebars->25->158", "default.handlebars->25->174", "default.handlebars->25->175", @@ -18099,7 +18512,7 @@ "ru": "Норвежский", "zh-chs": "挪威", "xloc": [ - "default.handlebars->25->982" + "default.handlebars->25->985" ] }, { @@ -18116,7 +18529,7 @@ "ru": "Норвежский (Букмол)", "zh-chs": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->25->983" + "default.handlebars->25->986" ] }, { @@ -18133,7 +18546,7 @@ "ru": "Норвежский (Нюнорск)", "zh-chs": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->25->984" + "default.handlebars->25->987" ] }, { @@ -18152,7 +18565,7 @@ "xloc": [ "default-mobile.handlebars->9->186", "default.handlebars->25->468", - "default.handlebars->25->787" + "default.handlebars->25->790" ] }, { @@ -18171,7 +18584,7 @@ "xloc": [ "default-mobile.handlebars->9->185", "default.handlebars->25->467", - "default.handlebars->25->786" + "default.handlebars->25->789" ] }, { @@ -18188,8 +18601,8 @@ "ru": "Не подключен", "zh-chs": "未連接", "xloc": [ - "default.handlebars->25->1319", - "default.handlebars->25->1327" + "default.handlebars->25->1322", + "default.handlebars->25->1330" ] }, { @@ -18206,7 +18619,7 @@ "ru": "Неизвестный", "zh-chs": "未知", "xloc": [ - "default.handlebars->25->797" + "default.handlebars->25->800" ] }, { @@ -18223,7 +18636,7 @@ "ru": "Не задано", "zh-chs": "沒有設置", "xloc": [ - "default.handlebars->25->1538" + "default.handlebars->25->1541" ] }, { @@ -18240,7 +18653,7 @@ "ru": "не подтверждено", "zh-chs": "未經審核的", "xloc": [ - "default.handlebars->25->1596" + "default.handlebars->25->1599" ] }, { @@ -18257,8 +18670,8 @@ "ru": "Примечания", "zh-chs": "筆記", "xloc": [ - "default.handlebars->25->1156", - "default.handlebars->25->1578", + "default.handlebars->25->1159", + "default.handlebars->25->1581", "default.handlebars->25->523", "default.handlebars->25->575", "default.handlebars->25->594", @@ -18296,8 +18709,8 @@ "ru": "Настройки уведомлений", "zh-chs": "通知設置", "xloc": [ - "default.handlebars->25->1070", - "default.handlebars->25->1318", + "default.handlebars->25->1073", + "default.handlebars->25->1321", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -18315,7 +18728,7 @@ "ru": "Уведомления также должны быть включены в настройках учетной записи.", "zh-chs": "通知設置還必須在帳戶設置中啟用。", "xloc": [ - "default.handlebars->25->1314" + "default.handlebars->25->1317" ] }, { @@ -18332,7 +18745,7 @@ "ru": "Звук уведомления", "zh-chs": "通知聲音。", "xloc": [ - "default.handlebars->25->1065" + "default.handlebars->25->1068" ] }, { @@ -18349,7 +18762,7 @@ "ru": "Уведомления", "zh-chs": "通知事項", "xloc": [ - "default.handlebars->25->1147" + "default.handlebars->25->1150" ] }, { @@ -18366,7 +18779,7 @@ "ru": "Уведомить", "zh-chs": "通知", "xloc": [ - "default.handlebars->25->1582" + "default.handlebars->25->1585" ] }, { @@ -18383,9 +18796,9 @@ "ru": "Уведомить пользователя", "zh-chs": "通知使用者", "xloc": [ - "default.handlebars->25->1213", - "default.handlebars->25->1217", - "default.handlebars->25->1220" + "default.handlebars->25->1216", + "default.handlebars->25->1220", + "default.handlebars->25->1223" ] }, { @@ -18402,7 +18815,7 @@ "ru": "Уведомить {0}", "zh-chs": "通知{0}", "xloc": [ - "default.handlebars->25->1420" + "default.handlebars->25->1423" ] }, { @@ -18421,7 +18834,7 @@ "xloc": [ "default-mobile.handlebars->9->52", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->25->1112", + "default.handlebars->25->1115", "default.handlebars->25->494", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -18461,7 +18874,7 @@ "ru": "Окситанский", "zh-chs": "歐舒丹", "xloc": [ - "default.handlebars->25->985" + "default.handlebars->25->988" ] }, { @@ -18478,7 +18891,7 @@ "ru": "Произошло в {0}", "zh-chs": "發生在{0}", "xloc": [ - "default.handlebars->25->1645" + "default.handlebars->25->1648" ] }, { @@ -18495,7 +18908,7 @@ "ru": "Оффлайн пользователи", "zh-chs": "離線用戶", "xloc": [ - "default.handlebars->25->1387" + "default.handlebars->25->1390" ] }, { @@ -18513,7 +18926,7 @@ "zh-chs": "舊密碼:", "xloc": [ "default-mobile.handlebars->9->54", - "default.handlebars->25->1082" + "default.handlebars->25->1085" ] }, { @@ -18548,7 +18961,7 @@ "ru": "Онлайн пользователи", "zh-chs": "在線用戶", "xloc": [ - "default.handlebars->25->1386" + "default.handlebars->25->1389" ] }, { @@ -18567,7 +18980,7 @@ "xloc": [ "default-mobile.handlebars->9->260", "default.handlebars->25->425", - "default.handlebars->25->734" + "default.handlebars->25->737" ] }, { @@ -18607,7 +19020,13 @@ }, { "en": "Open Player...", + "es": "Abrir jugador ...", + "fr": "Ouvrir le lecteur ...", + "hi": "प्लेयर खोलें ...", + "ja": "プレーヤーを開く...", + "ko": "플레이어 열기 ...", "nl": "Open speler...", + "zh-chs": "打开播放器...", "xloc": [ "default.handlebars->deskPlayerContextMenu->cxopenplayer->0" ] @@ -18681,7 +19100,7 @@ "default.handlebars->25->310", "default.handlebars->25->491", "default.handlebars->25->655", - "default.handlebars->25->765" + "default.handlebars->25->768" ] }, { @@ -18699,8 +19118,8 @@ "zh-chs": "運作方式", "xloc": [ "default-mobile.handlebars->9->220", - "default.handlebars->25->1411", - "default.handlebars->25->1476", + "default.handlebars->25->1414", + "default.handlebars->25->1479", "default.handlebars->25->385", "default.handlebars->25->612" ] @@ -18736,7 +19155,7 @@ "ru": "Ория", "zh-chs": "奧里亞", "xloc": [ - "default.handlebars->25->986" + "default.handlebars->25->989" ] }, { @@ -18753,7 +19172,7 @@ "ru": "Оромо", "zh-chs": "奧羅莫", "xloc": [ - "default.handlebars->25->987" + "default.handlebars->25->990" ] }, { @@ -18821,7 +19240,7 @@ "ru": "Собственный процесс", "zh-chs": "自己的過程", "xloc": [ - "default.handlebars->25->696" + "default.handlebars->25->699" ] }, { @@ -18839,7 +19258,7 @@ "zh-chs": "PID", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", - "default.handlebars->25->692", + "default.handlebars->25->695", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -18857,7 +19276,7 @@ "ru": "Part Number", "zh-chs": "零件號", "xloc": [ - "default.handlebars->25->813" + "default.handlebars->25->816" ] }, { @@ -18874,7 +19293,7 @@ "ru": "Частично", "zh-chs": "部分的", "xloc": [ - "default.handlebars->25->1401" + "default.handlebars->25->1404" ] }, { @@ -18921,7 +19340,7 @@ "xloc": [ "default-mobile.handlebars->9->287", "default-mobile.handlebars->9->73", - "default.handlebars->25->1107" + "default.handlebars->25->1110" ] }, { @@ -18938,7 +19357,7 @@ "ru": "Частичные права", "zh-chs": "部分權利", "xloc": [ - "default.handlebars->25->1536" + "default.handlebars->25->1539" ] }, { @@ -18973,12 +19392,12 @@ "zh-chs": "密碼", "xloc": [ "default-mobile.handlebars->9->223", - "default.handlebars->25->1443", - "default.handlebars->25->1444", - "default.handlebars->25->1550", - "default.handlebars->25->1552", - "default.handlebars->25->1599", - "default.handlebars->25->1600", + "default.handlebars->25->1446", + "default.handlebars->25->1447", + "default.handlebars->25->1553", + "default.handlebars->25->1555", + "default.handlebars->25->1602", + "default.handlebars->25->1603", "default.handlebars->25->236", "default.handlebars->25->265", "default.handlebars->25->618" @@ -19062,8 +19481,13 @@ }, { "en": "Password for account {0} has been reset to:", - "nl": "Wachtwoord voor account {0} is gereset naar:", + "es": "La contraseña de la cuenta {0} se ha restablecido a:", + "fr": "Le mot de passe du compte {0} a été réinitialisé:", + "hi": "खाते के लिए पासवर्ड {0} पर रीसेट कर दिया गया है:", "ja": "アカウント{0}のパスワードは次のようにリセットされました:", + "ko": "계정 {0}의 비밀번호가 다음으로 재설정되었습니다.", + "nl": "Wachtwoord voor account {0} is gereset naar:", + "zh-chs": "帐户{0}的密码已重置为:", "xloc": [ "message.handlebars->3->9" ] @@ -19082,7 +19506,7 @@ "ru": "Подсказка пароля", "zh-chs": "密碼提示", "xloc": [ - "default.handlebars->25->1601" + "default.handlebars->25->1604" ] }, { @@ -19100,7 +19524,7 @@ "zh-chs": "密碼提示:", "xloc": [ "default-mobile.handlebars->9->57", - "default.handlebars->25->1085" + "default.handlebars->25->1088" ] }, { @@ -19117,7 +19541,7 @@ "ru": "Пароль не совпадает", "zh-chs": "密碼不符合", "xloc": [ - "default.handlebars->25->1187" + "default.handlebars->25->1190" ] }, { @@ -19152,8 +19576,8 @@ "ru": "Пароль*", "zh-chs": "密碼*", "xloc": [ - "default.handlebars->25->1185", - "default.handlebars->25->1186" + "default.handlebars->25->1188", + "default.handlebars->25->1189" ] }, { @@ -19173,8 +19597,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->9->49", "default-mobile.handlebars->9->50", - "default.handlebars->25->1077", - "default.handlebars->25->1078", + "default.handlebars->25->1080", + "default.handlebars->25->1081", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1", @@ -19205,9 +19629,9 @@ "default-mobile.handlebars->9->97", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->25->1364", - "default.handlebars->25->717", - "default.handlebars->25->739", + "default.handlebars->25->1367", + "default.handlebars->25->720", + "default.handlebars->25->742", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" @@ -19261,7 +19685,7 @@ "ru": "Произвести действие агента", "zh-chs": "執行代理動作", "xloc": [ - "default.handlebars->25->829" + "default.handlebars->25->832" ] }, { @@ -19295,7 +19719,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).", "zh-chs": "執行英特爾AMT管理員控制模式(ACM)激活。", "xloc": [ - "default.handlebars->25->1166", + "default.handlebars->25->1169", "default.handlebars->25->224" ] }, @@ -19330,7 +19754,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).", "zh-chs": "執行英特爾AMT客戶端控制模式(CCM)激活。", "xloc": [ - "default.handlebars->25->1164", + "default.handlebars->25->1167", "default.handlebars->25->222" ] }, @@ -19369,8 +19793,8 @@ "zh-chs": "權限", "xloc": [ "default-mobile.handlebars->9->334", - "default.handlebars->25->1292", - "default.handlebars->25->1385" + "default.handlebars->25->1295", + "default.handlebars->25->1388" ] }, { @@ -19387,39 +19811,54 @@ "ru": "Персидский/Иран", "zh-chs": "波斯/伊朗", "xloc": [ - "default.handlebars->25->988" + "default.handlebars->25->991" ] }, { "en": "Phone Notifications", + "es": "Notificaciones telefónicas", + "fr": "Notifications téléphoniques", + "hi": "फोन सूचनाएं", "ja": "電話通知", + "ko": "전화 알림", "nl": "Telefonische meldingen", + "zh-chs": "电话通知", "xloc": [ "default-mobile.handlebars->9->31", "default-mobile.handlebars->9->34", "default-mobile.handlebars->9->36", "default.handlebars->25->143", - "default.handlebars->25->1593", - "default.handlebars->25->840", - "default.handlebars->25->843" + "default.handlebars->25->1596", + "default.handlebars->25->843", + "default.handlebars->25->846" ] }, { "en": "Phone Number", + "es": "Número de teléfono", + "fr": "Numéro de téléphone", + "hi": "फ़ोन नंबर", "ja": "電話番号", + "ko": "전화 번호", "nl": "Telefoonnummer", + "zh-chs": "电话号码", "xloc": [ - "default.handlebars->25->1544" + "default.handlebars->25->1547" ] }, { "en": "Phone number:", + "es": "Número de teléfono:", + "fr": "Numéro de téléphone:", + "hi": "फ़ोन नंबर:", "ja": "電話番号:", + "ko": "전화 번호:", "nl": "Telefoonnummer", + "zh-chs": "电话号码:", "xloc": [ "default-mobile.handlebars->9->35", - "default.handlebars->25->1592", - "default.handlebars->25->842" + "default.handlebars->25->1595", + "default.handlebars->25->845" ] }, { @@ -19537,7 +19976,7 @@ "zh-chs": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->9->45", - "default.handlebars->25->1072" + "default.handlebars->25->1075" ] }, { @@ -19555,7 +19994,7 @@ "zh-chs": "插件動作", "xloc": [ "default.handlebars->25->169", - "default.handlebars->25->1721" + "default.handlebars->25->1724" ] }, { @@ -19677,7 +20116,7 @@ "zh-chs": "政策", "xloc": [ "default-mobile.handlebars->9->72", - "default.handlebars->25->1106" + "default.handlebars->25->1109" ] }, { @@ -19694,7 +20133,7 @@ "ru": "Польский", "zh-chs": "拋光", "xloc": [ - "default.handlebars->25->989" + "default.handlebars->25->992" ] }, { @@ -19711,7 +20150,7 @@ "ru": "Португальский", "zh-chs": "葡萄牙語", "xloc": [ - "default.handlebars->25->990" + "default.handlebars->25->993" ] }, { @@ -19728,7 +20167,7 @@ "ru": "Португальский (Бразилия)", "zh-chs": "葡萄牙語(巴西)", "xloc": [ - "default.handlebars->25->991" + "default.handlebars->25->994" ] }, { @@ -19780,7 +20219,7 @@ "ru": "Состояния питания", "zh-chs": "電力國", "xloc": [ - "default.handlebars->25->1325", + "default.handlebars->25->1328", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -19911,7 +20350,7 @@ "zh-chs": "過程控制", "xloc": [ "default-mobile.handlebars->9->242", - "default.handlebars->25->704" + "default.handlebars->25->707" ] }, { @@ -19946,9 +20385,9 @@ "ru": "Запрос согласия пользователя", "zh-chs": "提示用戶同意", "xloc": [ - "default.handlebars->25->1214", - "default.handlebars->25->1218", - "default.handlebars->25->1221" + "default.handlebars->25->1217", + "default.handlebars->25->1221", + "default.handlebars->25->1224" ] }, { @@ -19996,7 +20435,7 @@ "ru": "Предоставление государства", "zh-chs": "供應國", "xloc": [ - "default.handlebars->25->791" + "default.handlebars->25->794" ] }, { @@ -20014,7 +20453,7 @@ "zh-chs": "公開連結", "xloc": [ "default-mobile.handlebars->9->84", - "default.handlebars->25->1349" + "default.handlebars->25->1352" ] }, { @@ -20031,7 +20470,7 @@ "ru": "Пенджаби", "zh-chs": "旁遮普語", "xloc": [ - "default.handlebars->25->992" + "default.handlebars->25->995" ] }, { @@ -20048,7 +20487,7 @@ "ru": "Пенджаби (Индия)", "zh-chs": "旁遮普(印度)", "xloc": [ - "default.handlebars->25->993" + "default.handlebars->25->996" ] }, { @@ -20065,7 +20504,7 @@ "ru": "Пенджаби (Пакистан)", "zh-chs": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->25->994" + "default.handlebars->25->997" ] }, { @@ -20117,7 +20556,7 @@ "ru": "Кечуа", "zh-chs": "蓋丘亞族", "xloc": [ - "default.handlebars->25->995" + "default.handlebars->25->998" ] }, { @@ -20271,7 +20710,7 @@ "ru": "RSS", "zh-chs": "的RSS", "xloc": [ - "default.handlebars->25->1691" + "default.handlebars->25->1694" ] }, { @@ -20288,7 +20727,7 @@ "ru": "Случайный пароль.", "zh-chs": "隨機化密碼。", "xloc": [ - "default.handlebars->25->1445" + "default.handlebars->25->1448" ] }, { @@ -20322,7 +20761,7 @@ "ru": "Реактивировать Intel® AMT", "zh-chs": "重新激活英特爾®AMT", "xloc": [ - "default.handlebars->25->1189" + "default.handlebars->25->1192" ] }, { @@ -20339,12 +20778,18 @@ "ru": "Области", "zh-chs": "境界", "xloc": [ - "default.handlebars->25->1453" + "default.handlebars->25->1456" ] }, { "en": "Record remote desktop session to file", + "es": "Grabar sesión de escritorio remoto en archivo", + "fr": "Enregistrer une session de bureau à distance dans un fichier", + "hi": "रिकॉर्ड दूरस्थ डेस्कटॉप सत्र फ़ाइल करने के लिए", + "ja": "リモートデスクトップセッションをファイルに記録", + "ko": "원격 데스크톱 세션을 파일에 기록", "nl": "Neem externe bureaublad sessie op naar een bestand", + "zh-chs": "将远程桌面会话记录到文件", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" ] @@ -20365,8 +20810,8 @@ "xloc": [ "default-mobile.handlebars->9->253", "default-mobile.handlebars->9->90", - "default.handlebars->25->1356", - "default.handlebars->25->727" + "default.handlebars->25->1359", + "default.handlebars->25->730" ] }, { @@ -20462,7 +20907,7 @@ "ru": "Число ретрансляций", "zh-chs": "中繼計數", "xloc": [ - "default.handlebars->25->1673" + "default.handlebars->25->1676" ] }, { @@ -20479,7 +20924,7 @@ "ru": "Ошибки ретранслятора", "zh-chs": "中繼錯誤", "xloc": [ - "default.handlebars->25->1666" + "default.handlebars->25->1669" ] }, { @@ -20496,8 +20941,8 @@ "ru": "Сессии ретранслятора", "zh-chs": "接力會議", "xloc": [ - "default.handlebars->25->1672", - "default.handlebars->25->1685" + "default.handlebars->25->1675", + "default.handlebars->25->1688" ] }, { @@ -20530,8 +20975,13 @@ }, { "en": "Remember this device for {0} days.", + "es": "Recuerde este dispositivo durante {0} días.", + "fr": "N'oubliez pas cet appareil pendant {0} jours.", + "hi": "इस डिवाइस को {0} दिनों तक याद रखें।", "ja": "このデバイスを{0}日間覚えてください。", + "ko": "이 기기는 {0} 일 동안 기억하십시오.", "nl": "Onthoud dit apparaat {0} dagen.", + "zh-chs": "记住此设备{0}天。", "xloc": [ "login-mobile.handlebars->5->20", "login.handlebars->5->20" @@ -20602,7 +21052,7 @@ "ru": "Удаленный буфер обмена", "zh-chs": "遠程剪貼板", "xloc": [ - "default.handlebars->25->687" + "default.handlebars->25->690" ] }, { @@ -20621,8 +21071,8 @@ "xloc": [ "default-mobile.handlebars->9->301", "default-mobile.handlebars->9->319", - "default.handlebars->25->1241", - "default.handlebars->25->1275" + "default.handlebars->25->1244", + "default.handlebars->25->1278" ] }, { @@ -20641,7 +21091,7 @@ "xloc": [ "default-mobile.handlebars->9->239", "default.handlebars->25->215", - "default.handlebars->25->679" + "default.handlebars->25->682" ] }, { @@ -20658,7 +21108,7 @@ "ru": "Ввод с удаленной клавиатуры", "zh-chs": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->25->685" + "default.handlebars->25->688" ] }, { @@ -20708,8 +21158,8 @@ "xloc": [ "default-mobile.handlebars->9->302", "default-mobile.handlebars->9->324", - "default.handlebars->25->1242", - "default.handlebars->25->1280" + "default.handlebars->25->1245", + "default.handlebars->25->1283" ] }, { @@ -20726,7 +21176,7 @@ "ru": "Удаленный буфер обмена действителен в течении 60 секунд.", "zh-chs": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->25->686" + "default.handlebars->25->689" ] }, { @@ -20770,7 +21220,9 @@ "en": "Remove Device", "es": "Dispositivo Remoto", "fr": "Enlevez l'appareil", + "hi": "यन्त्र को निकालो", "ja": "デバイスを削除", + "ko": "장치를 제거", "nl": "Verwijder apparaat", "ru": "Удалить устройство", "zh-chs": "删除设备" @@ -20792,21 +21244,31 @@ { "de": "Gerätegruppenberechtigungen entfernen", "en": "Remove Device Group Permissions", + "es": "Eliminar permisos de grupo de dispositivos", + "fr": "Supprimer les autorisations de groupe de périphériques", + "hi": "डिवाइस समूह अनुमतियाँ निकालें", "ja": "デバイスグループの権限を削除する", + "ko": "장치 그룹 권한 제거", "nl": "Apparaatgroepmachtigingen verwijderen", + "zh-chs": "删除设备组权限", "xloc": [ - "default.handlebars->25->1517", - "default.handlebars->25->1640" + "default.handlebars->25->1520", + "default.handlebars->25->1643" ] }, { "de": "Geräteberechtigungen entfernen", "en": "Remove Device Permissions", + "es": "Eliminar permisos del dispositivo", + "fr": "Supprimer les autorisations de périphérique", + "hi": "डिवाइस अनुमतियाँ निकालें", "ja": "デバイスの権限を削除", + "ko": "장치 권한 제거", "nl": "Apparaatmachtigingen verwijderen", + "zh-chs": "删除设备权限", "xloc": [ - "default.handlebars->25->1515", - "default.handlebars->25->1627" + "default.handlebars->25->1518", + "default.handlebars->25->1630" ] }, { @@ -20826,39 +21288,59 @@ { "de": "Benutzergruppenmitgliedschaft entziehen", "en": "Remove User Group Membership", + "es": "Eliminar membresía de grupo de usuarios", + "fr": "Supprimer l'appartenance à un groupe d'utilisateurs", + "hi": "उपयोगकर्ता समूह सदस्यता निकालें", "ja": "ユーザーグループメンバーシップを削除する", + "ko": "사용자 그룹 멤버십 제거", "nl": "Lidmaatschap van gebruikersgroep verwijderen", + "zh-chs": "删除用户组成员身份", "xloc": [ - "default.handlebars->25->1636" + "default.handlebars->25->1639" ] }, { "de": "Benutzergruppenberechtigungen entziehen", "en": "Remove User Group Permissions", + "es": "Eliminar permisos de grupo de usuarios", + "fr": "Supprimer les autorisations des groupes d'utilisateurs", + "hi": "उपयोगकर्ता समूह अनुमतियाँ निकालें", "ja": "ユーザーグループのアクセス許可を削除する", + "ko": "사용자 그룹 권한 제거", "nl": "Gebruikersgroepmachtigingen verwijderen", + "zh-chs": "删除用户组权限", "xloc": [ - "default.handlebars->25->1297", - "default.handlebars->25->1632" + "default.handlebars->25->1300", + "default.handlebars->25->1635" ] }, { "de": "Benutzermitgliedschaft entziehen", "en": "Remove User Membership", + "es": "Eliminar membresía de usuario", + "fr": "Supprimer l'adhésion d'utilisateur", + "hi": "उपयोगकर्ता सदस्यता निकालें", "ja": "ユーザーメンバーシップを削除", + "ko": "사용자 멤버십 제거", "nl": "Gebruikerslidmaatschap verwijderen", + "zh-chs": "删除用户成员资格", "xloc": [ - "default.handlebars->25->1525" + "default.handlebars->25->1528" ] }, { "de": "Benutzerberechtigungen entziehen", "en": "Remove User Permissions", + "es": "Eliminar permisos de usuario", + "fr": "Supprimer les autorisations utilisateur", + "hi": "उपयोगकर्ता अनुमतियाँ निकालें", "ja": "ユーザー権限を削除", + "ko": "사용자 권한 제거", "nl": "Gebruikersmachtigingen verwijderen", + "zh-chs": "删除用户权限", "xloc": [ - "default.handlebars->25->1295", - "default.handlebars->25->1629" + "default.handlebars->25->1298", + "default.handlebars->25->1632" ] }, { @@ -20875,7 +21357,7 @@ "ru": "Удалить все двухфакторные аутентификации.", "zh-chs": "刪除所有第二因素驗證。", "xloc": [ - "default.handlebars->25->1604" + "default.handlebars->25->1607" ] }, { @@ -20892,7 +21374,7 @@ "ru": "Удалить все прошлые события для этого userid.", "zh-chs": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->25->1447" + "default.handlebars->25->1450" ] }, { @@ -20909,7 +21391,7 @@ "ru": "Удалить устройство при отключении", "zh-chs": "斷開連接後移除設備", "xloc": [ - "default.handlebars->25->1222" + "default.handlebars->25->1225" ] }, { @@ -20931,11 +21413,16 @@ }, { "en": "Remove phone number", + "es": "Quitar número de teléfono", + "fr": "Supprimer le numéro de téléphone", + "hi": "फ़ोन नंबर हटा दें", "ja": "電話番号を削除", + "ko": "전화 번호 제거", "nl": "Verwijder telefoonnummer", + "zh-chs": "删除电话号码", "xloc": [ "default-mobile.handlebars->9->33", - "default.handlebars->25->839" + "default.handlebars->25->842" ] }, { @@ -20961,12 +21448,14 @@ "en": "Remove this user", "es": "Eliminar a este usuario", "fr": "Supprimer cet utilisateur", + "hi": "इस उपयोगकर्ता को निकालें", "ja": "このユーザーを削除", + "ko": "이 사용자를 제거", "nl": "Verwijder deze gebruiker", "ru": "Удалить этого пользователя", "zh-chs": "删除该用户", "xloc": [ - "default.handlebars->25->1584" + "default.handlebars->25->1587" ] }, { @@ -20983,16 +21472,21 @@ "ru": "Удалить членство пользователя в группе", "zh-chs": "刪除用戶組成員身份", "xloc": [ - "default.handlebars->25->1618" + "default.handlebars->25->1621" ] }, { "de": "Benutzergruppenrechte an diesem Gerät entziehen", "en": "Remove user group rights to this device", + "es": "Eliminar los derechos de grupo de usuarios para este dispositivo", + "fr": "Supprimer les droits du groupe d'utilisateurs sur cet appareil", + "hi": "इस उपकरण के उपयोगकर्ता समूह अधिकार निकालें", "ja": "このデバイスへのユーザーグループ権限を削除します", + "ko": "이 장치에 대한 사용자 그룹 권한 제거", "nl": "Gebruikersrechten voor dit apparaat verwijderen", + "zh-chs": "删除此设备的用户组权限", "xloc": [ - "default.handlebars->25->1511" + "default.handlebars->25->1514" ] }, { @@ -21009,7 +21503,7 @@ "ru": "Удалить права группы пользователей для этой группы устройств", "zh-chs": "刪除該設備組的用戶組權限", "xloc": [ - "default.handlebars->25->1505", + "default.handlebars->25->1508", "default.handlebars->25->559" ] }, @@ -21027,10 +21521,10 @@ "ru": "Удалить права пользователя для этой группы устройств", "zh-chs": "刪除此設備組的用戶權限", "xloc": [ - "default.handlebars->25->1173", - "default.handlebars->25->1499", - "default.handlebars->25->1612", - "default.handlebars->25->1624", + "default.handlebars->25->1176", + "default.handlebars->25->1502", + "default.handlebars->25->1615", + "default.handlebars->25->1627", "default.handlebars->25->560" ] }, @@ -21052,9 +21546,9 @@ "default-mobile.handlebars->9->94", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->25->1360", + "default.handlebars->25->1363", "default.handlebars->25->423", - "default.handlebars->25->731", + "default.handlebars->25->734", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->filesContextMenu->cxfilerename->0" @@ -21074,7 +21568,7 @@ "ru": "Требования: ", "zh-chs": "要求:", "xloc": [ - "default.handlebars->25->1086" + "default.handlebars->25->1089" ] }, { @@ -21092,8 +21586,8 @@ "zh-chs": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->58", - "default.handlebars->25->1450", - "default.handlebars->25->1602" + "default.handlebars->25->1453", + "default.handlebars->25->1605" ] }, { @@ -21133,8 +21627,13 @@ }, { "en": "Resend Confirmation Email", + "es": "Reenviar correo electrónico de confirmación", + "fr": "Renvoyer un courriel de confirmation", + "hi": "पुष्टिकरण ईमेल पुन: भेजें", "ja": "確認メールを再送信", + "ko": "확인 이메일 재발송", "nl": "Verzend bevestigingsmail opnieuw", + "zh-chs": "重发确认邮件", "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->checkemailpanel->1->checkCheckOperations->1->2->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->checkemailpanel->1->checkCheckOperations->1->2->1->1" @@ -21261,7 +21760,7 @@ "ru": "Перезапуск", "zh-chs": "重新開始", "xloc": [ - "default.handlebars->25->702", + "default.handlebars->25->705", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -21279,7 +21778,7 @@ "ru": "Восстановить сервер", "zh-chs": "還原伺服器", "xloc": [ - "default.handlebars->25->1113" + "default.handlebars->25->1116" ] }, { @@ -21313,7 +21812,7 @@ "ru": "Восстановить сервер из резервной копии, это удалит существующие данные сервера . Продолжайте дальше только если знаете, что делаете.", "zh-chs": "使用備份還原服務器,這將刪除現有服務器數據。僅當您知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->25->1110" + "default.handlebars->25->1113" ] }, { @@ -21330,7 +21829,7 @@ "ru": "Ограничения", "zh-chs": "限制條件", "xloc": [ - "default.handlebars->25->1537" + "default.handlebars->25->1540" ] }, { @@ -21347,7 +21846,7 @@ "ru": "Ретороманский", "zh-chs": "修羅羅馬式", "xloc": [ - "default.handlebars->25->996" + "default.handlebars->25->999" ] }, { @@ -21364,7 +21863,7 @@ "ru": "Румынский", "zh-chs": "羅馬尼亞語", "xloc": [ - "default.handlebars->25->997" + "default.handlebars->25->1000" ] }, { @@ -21381,7 +21880,7 @@ "ru": "Румынский (Молдавия)", "zh-chs": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->25->998" + "default.handlebars->25->1001" ] }, { @@ -21400,8 +21899,8 @@ "xloc": [ "default-mobile.handlebars->9->247", "default-mobile.handlebars->9->76", - "default.handlebars->25->1333", - "default.handlebars->25->721" + "default.handlebars->25->1336", + "default.handlebars->25->724" ] }, { @@ -21523,7 +22022,7 @@ "ru": "Русский", "zh-chs": "俄語", "xloc": [ - "default.handlebars->25->999" + "default.handlebars->25->1002" ] }, { @@ -21540,32 +22039,47 @@ "ru": "Русский (Молдавия)", "zh-chs": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->25->1000" + "default.handlebars->25->1003" ] }, { "en": "SMS", + "es": "SMS", + "fr": "SMS", + "hi": "एसएमएस", "ja": "SMS", + "ko": "SMS", "nl": "SMS", + "zh-chs": "短信", "xloc": [ - "default.handlebars->25->1575", - "default.handlebars->25->1580", + "default.handlebars->25->1578", + "default.handlebars->25->1583", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3" ] }, { "en": "SMS capable phone number for this user.", - "nl": "SMS geschikt telefoonnummer voor deze gebruiker.", + "es": "Número de teléfono con capacidad de SMS para este usuario.", + "fr": "Numéro de téléphone compatible SMS pour cet utilisateur.", + "hi": "इस उपयोगकर्ता के लिए एसएमएस सक्षम फोन नंबर।", "ja": "このユーザーのSMS対応電話番号。", + "ko": "이 사용자의 SMS 가능 전화 번호입니다.", + "nl": "SMS geschikt telefoonnummer voor deze gebruiker.", + "zh-chs": "此用户的短信功能电话号码。", "xloc": [ - "default.handlebars->25->1590" + "default.handlebars->25->1593" ] }, { "en": "SMS sent.", + "es": "SMS enviados", + "fr": "SMS envoyé.", + "hi": "एसएमएस भेजा गया।", "ja": "SMSを送信しました。", + "ko": "SMS를 보냈습니다.", "nl": "SMS verzonden.", + "zh-chs": "短信已发送。", "xloc": [ "login-mobile.handlebars->5->4", "login.handlebars->5->4" @@ -21602,13 +22116,18 @@ "ru": "Саамский", "zh-chs": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->25->1001" + "default.handlebars->25->1004" ] }, { "en": "Sample IP range values", + "es": "Muestra de valores de rango de IP", + "fr": "Exemples de valeurs de plage IP", + "hi": "नमूना IP श्रेणी मान", "ja": "IP範囲の値の例", + "ko": "샘플 IP 범위 값", "nl": "Voorbeeld IP bereikwaarden", + "zh-chs": "IP范围值样本", "xloc": [ "default.handlebars->25->153", "default.handlebars->25->157" @@ -21642,7 +22161,7 @@ "ru": "Санго", "zh-chs": "三鄉", "xloc": [ - "default.handlebars->25->1002" + "default.handlebars->25->1005" ] }, { @@ -21659,7 +22178,7 @@ "ru": "Санскритский", "zh-chs": "梵文", "xloc": [ - "default.handlebars->25->1003" + "default.handlebars->25->1006" ] }, { @@ -21676,7 +22195,7 @@ "ru": "Сардинский", "zh-chs": "撒丁島", "xloc": [ - "default.handlebars->25->1004" + "default.handlebars->25->1007" ] }, { @@ -21798,8 +22317,13 @@ }, { "en": "Scan returned no results.", + "es": "La exploración no arrojó resultados.", + "fr": "L'analyse n'a donné aucun résultat.", + "hi": "स्कैन के कोई परिणाम नहीं मिले।", "ja": "スキャンは結果を返しませんでした。", + "ko": "스캔 결과가 없습니다.", "nl": "Scan leverde geen resultaten op.", + "zh-chs": "扫描未返回任何结果。", "xloc": [ "default.handlebars->25->156" ] @@ -21907,7 +22431,7 @@ "ru": "Защищено с помощью TLS", "zh-chs": "使用TLS保護", "xloc": [ - "default.handlebars->25->794" + "default.handlebars->25->797" ] }, { @@ -21925,10 +22449,10 @@ "zh-chs": "安全", "xloc": [ "default-mobile.handlebars->9->224", - "default.handlebars->25->1576", + "default.handlebars->25->1579", "default.handlebars->25->237", "default.handlebars->25->619", - "default.handlebars->25->793" + "default.handlebars->25->796" ] }, { @@ -21945,7 +22469,7 @@ "ru": "Ключ безопасности", "zh-chs": "安全密鑰", "xloc": [ - "default.handlebars->25->1573" + "default.handlebars->25->1576" ] }, { @@ -21979,12 +22503,12 @@ "ru": "Выбрать все", "zh-chs": "全選", "xloc": [ - "default.handlebars->25->1352", - "default.handlebars->25->1409", - "default.handlebars->25->1474", + "default.handlebars->25->1355", + "default.handlebars->25->1412", + "default.handlebars->25->1477", "default.handlebars->25->381", - "default.handlebars->25->723", - "default.handlebars->25->725", + "default.handlebars->25->726", + "default.handlebars->25->728", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -22007,11 +22531,11 @@ "ru": "Очистить все", "zh-chs": "選擇無", "xloc": [ - "default.handlebars->25->1351", - "default.handlebars->25->1408", - "default.handlebars->25->1473", + "default.handlebars->25->1354", + "default.handlebars->25->1411", + "default.handlebars->25->1476", "default.handlebars->25->380", - "default.handlebars->25->724", + "default.handlebars->25->727", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -22086,11 +22610,16 @@ { "de": "Wählen Sie eine Operation für die Durchführung auf alle ausgewählten Benutzer.", "en": "Select an operation to perform on all selected users.", + "es": "Seleccione una operación para realizar en todos los usuarios seleccionados.", + "fr": "Sélectionnez une opération à effectuer sur tous les utilisateurs sélectionnés.", + "hi": "सभी चयनित उपयोगकर्ताओं पर प्रदर्शन करने के लिए एक ऑपरेशन का चयन करें।", "ja": "選択したすべてのユーザーに対して実行する操作を選択します。", + "ko": "선택한 모든 사용자에 대해 수행 할 작업을 선택하십시오.", "nl": "Selecteer een bewerking die u op alle geselecteerde gebruikers wilt uitvoeren.", + "zh-chs": "选择要对所有选定用户执行的操作。", "xloc": [ - "default.handlebars->25->1410", - "default.handlebars->25->1475" + "default.handlebars->25->1413", + "default.handlebars->25->1478" ] }, { @@ -22144,7 +22673,7 @@ "zh-chs": "僅自我事件", "xloc": [ "default-mobile.handlebars->9->329", - "default.handlebars->25->1286" + "default.handlebars->25->1289" ] }, { @@ -22203,18 +22732,28 @@ }, { "en": "Send SMS", + "es": "Enviar SMS", + "fr": "Envoyer un SMS", + "hi": "संदेश भेजो", "ja": "SMSを送信", + "ko": "문자를 보내다", "nl": "verstuur SMS", + "zh-chs": "发送短信", "xloc": [ - "default.handlebars->25->1419" + "default.handlebars->25->1422" ] }, { "en": "Send a SMS message to this user", + "es": "Enviar un mensaje SMS a este usuario", + "fr": "Envoyer un SMS à cet utilisateur", + "hi": "इस उपयोगकर्ता को एक एसएमएस संदेश भेजें", "ja": "このユーザーにSMSメッセージを送信します", + "ko": "이 사용자에게 SMS 메시지 보내기", "nl": "Stuur een SMS bericht naar deze gebruiker", + "zh-chs": "发送短信给该用户", "xloc": [ - "default.handlebars->25->1581" + "default.handlebars->25->1584" ] }, { @@ -22231,7 +22770,7 @@ "ru": "Отправить уведомление всем пользователям этой группы.", "zh-chs": "向該組中的所有用戶發送通知。", "xloc": [ - "default.handlebars->25->1496" + "default.handlebars->25->1499" ] }, { @@ -22248,7 +22787,7 @@ "ru": "Отправить текстовое уведомление этому пользователю.", "zh-chs": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->25->1421" + "default.handlebars->25->1424" ] }, { @@ -22257,12 +22796,14 @@ "en": "Send email to user", "es": "Enviar email al usuario", "fr": "Envoyer un e-mail à l'utilisateur", + "hi": "उपयोगकर्ता को ईमेल भेजें", "ja": "ユーザーにメールを送信", + "ko": "사용자에게 이메일 보내기", "nl": "Stuur e-mail naar de gebruiker", "ru": "Отправить письмо пользователю", "zh-chs": "发送电子邮件给用户", "xloc": [ - "default.handlebars->25->1404" + "default.handlebars->25->1407" ] }, { @@ -22296,7 +22837,7 @@ "ru": "Отправить приглашение по email.", "zh-chs": "發送邀請電子郵件。", "xloc": [ - "default.handlebars->25->1449" + "default.handlebars->25->1452" ] }, { @@ -22336,8 +22877,13 @@ }, { "en": "Send token to registed phone number?", + "es": "¿Enviar token al número de teléfono registrado?", + "fr": "Envoyer un jeton au numéro de téléphone enregistré?", + "hi": "विनियमित फोन नंबर पर टोकन भेजें?", "ja": "登録した電話番号にトークンを送信しますか?", + "ko": "등록 된 전화 번호로 토큰을 보내시겠습니까?", "nl": "Token naar geregistreerd telefoonnummer verzenden?", + "zh-chs": "将令牌发送到注册电话号码?", "xloc": [ "login-mobile.handlebars->5->26", "login.handlebars->5->26" @@ -22357,7 +22903,7 @@ "ru": "Отправить уведомление пользователю", "zh-chs": "發送用戶通知", "xloc": [ - "default.handlebars->25->1583" + "default.handlebars->25->1586" ] }, { @@ -22374,7 +22920,7 @@ "ru": "Сербский", "zh-chs": "塞爾維亞", "xloc": [ - "default.handlebars->25->1007" + "default.handlebars->25->1010" ] }, { @@ -22391,7 +22937,7 @@ "ru": "Серийный номер", "zh-chs": "序列號", "xloc": [ - "default.handlebars->25->805" + "default.handlebars->25->808" ] }, { @@ -22408,7 +22954,7 @@ "ru": "Резервное копирование сервера", "zh-chs": "服務器備份", "xloc": [ - "default.handlebars->25->1459" + "default.handlebars->25->1462" ] }, { @@ -22425,7 +22971,7 @@ "ru": "Сертификат сервера", "zh-chs": "服務器證書", "xloc": [ - "default.handlebars->25->1701" + "default.handlebars->25->1704" ] }, { @@ -22442,7 +22988,7 @@ "ru": "База данных сервера", "zh-chs": "服務器數據庫", "xloc": [ - "default.handlebars->25->1702" + "default.handlebars->25->1705" ] }, { @@ -22461,9 +23007,9 @@ "xloc": [ "default-mobile.handlebars->9->308", "default-mobile.handlebars->9->321", - "default.handlebars->25->1249", - "default.handlebars->25->1277", - "default.handlebars->25->1456", + "default.handlebars->25->1252", + "default.handlebars->25->1280", + "default.handlebars->25->1459", "default.handlebars->25->573", "default.handlebars->25->592" ] @@ -22482,8 +23028,8 @@ "ru": "Разрешения сервера", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->25->1396", - "default.handlebars->25->1467" + "default.handlebars->25->1399", + "default.handlebars->25->1470" ] }, { @@ -22500,7 +23046,7 @@ "ru": "Квота сервера", "zh-chs": "服務器配額", "xloc": [ - "default.handlebars->25->1547" + "default.handlebars->25->1550" ] }, { @@ -22517,7 +23063,7 @@ "ru": "Восстановление сервера", "zh-chs": "服務器還原", "xloc": [ - "default.handlebars->25->1460" + "default.handlebars->25->1463" ] }, { @@ -22534,7 +23080,7 @@ "ru": "Права", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->25->1546" + "default.handlebars->25->1549" ] }, { @@ -22551,7 +23097,7 @@ "ru": "Состояние сервера", "zh-chs": "服務器狀態", "xloc": [ - "default.handlebars->25->1652" + "default.handlebars->25->1655" ] }, { @@ -22585,7 +23131,7 @@ "ru": "Трассировка сервера", "zh-chs": "服務器跟踪", "xloc": [ - "default.handlebars->25->1712" + "default.handlebars->25->1715" ] }, { @@ -22602,7 +23148,7 @@ "ru": "Обновление сервера", "zh-chs": "服務器更新", "xloc": [ - "default.handlebars->25->1461" + "default.handlebars->25->1464" ] }, { @@ -22724,7 +23270,7 @@ "ru": "ServerStats.csv", "zh-chs": "ServerStats.csv", "xloc": [ - "default.handlebars->25->1693" + "default.handlebars->25->1696" ] }, { @@ -22741,7 +23287,7 @@ "ru": "Детали службы", "zh-chs": "服務詳情", "xloc": [ - "default.handlebars->25->703" + "default.handlebars->25->706" ] }, { @@ -22935,7 +23481,7 @@ "ru": "Общий процесс", "zh-chs": "共享過程", "xloc": [ - "default.handlebars->25->697" + "default.handlebars->25->700" ] }, { @@ -23045,7 +23591,7 @@ "zh-chs": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->9->311", - "default.handlebars->25->1252" + "default.handlebars->25->1255" ] }, { @@ -23062,7 +23608,7 @@ "ru": "Показывать панель-уведомление", "zh-chs": "顯示連接工具欄", "xloc": [ - "default.handlebars->25->1215" + "default.handlebars->25->1218" ] }, { @@ -23147,8 +23693,8 @@ "ru": "Простой режим управления администратора (ACM)", "zh-chs": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->25->1153", - "default.handlebars->25->1176" + "default.handlebars->25->1156", + "default.handlebars->25->1179" ] }, { @@ -23165,9 +23711,9 @@ "ru": "Простой режим управления клиента (CCM)", "zh-chs": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->25->1151", - "default.handlebars->25->1179", - "default.handlebars->25->1183" + "default.handlebars->25->1154", + "default.handlebars->25->1182", + "default.handlebars->25->1186" ] }, { @@ -23184,7 +23730,7 @@ "ru": "Синдхи", "zh-chs": "信地", "xloc": [ - "default.handlebars->25->1005" + "default.handlebars->25->1008" ] }, { @@ -23201,7 +23747,7 @@ "ru": "Сингальский", "zh-chs": "僧伽羅語", "xloc": [ - "default.handlebars->25->1006" + "default.handlebars->25->1009" ] }, { @@ -23235,7 +23781,7 @@ "ru": "Размер: 100%", "zh-chs": "尺寸:100%", "xloc": [ - "default.handlebars->25->751" + "default.handlebars->25->754" ] }, { @@ -23252,7 +23798,7 @@ "ru": "Размер: 125%", "zh-chs": "尺寸:125%", "xloc": [ - "default.handlebars->25->752" + "default.handlebars->25->755" ] }, { @@ -23269,7 +23815,7 @@ "ru": "Размер: 150%", "zh-chs": "尺寸:150%", "xloc": [ - "default.handlebars->25->753" + "default.handlebars->25->756" ] }, { @@ -23286,7 +23832,7 @@ "ru": "Размер: 200%", "zh-chs": "尺寸:200%", "xloc": [ - "default.handlebars->25->754" + "default.handlebars->25->757" ] }, { @@ -23364,7 +23910,7 @@ "ru": "Словацкий", "zh-chs": "斯洛伐克文", "xloc": [ - "default.handlebars->25->1008" + "default.handlebars->25->1011" ] }, { @@ -23381,7 +23927,7 @@ "ru": "Словенский", "zh-chs": "斯洛文尼亞文", "xloc": [ - "default.handlebars->25->1009" + "default.handlebars->25->1012" ] }, { @@ -23434,7 +23980,7 @@ "ru": "Малая фокусировка", "zh-chs": "小焦點", "xloc": [ - "default.handlebars->25->682" + "default.handlebars->25->685" ] }, { @@ -23451,7 +23997,7 @@ "ru": "Програмное отключение агента", "zh-chs": "軟斷開劑", "xloc": [ - "default.handlebars->25->835" + "default.handlebars->25->838" ] }, { @@ -23503,7 +24049,7 @@ "ru": "Сомани", "zh-chs": "索馬尼", "xloc": [ - "default.handlebars->25->1010" + "default.handlebars->25->1013" ] }, { @@ -23520,7 +24066,7 @@ "ru": "Сорбский", "zh-chs": "索比亞人", "xloc": [ - "default.handlebars->25->1011" + "default.handlebars->25->1014" ] }, { @@ -23650,7 +24196,7 @@ "ru": "Испанский", "zh-chs": "西班牙文", "xloc": [ - "default.handlebars->25->1012" + "default.handlebars->25->1015" ] }, { @@ -23667,7 +24213,7 @@ "ru": "Испанский (Аргентина)", "zh-chs": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->25->1013" + "default.handlebars->25->1016" ] }, { @@ -23684,7 +24230,7 @@ "ru": "Испанский (Боливия)", "zh-chs": "西班牙語(玻利維亞)", "xloc": [ - "default.handlebars->25->1014" + "default.handlebars->25->1017" ] }, { @@ -23701,7 +24247,7 @@ "ru": "Испанский (Чили)", "zh-chs": "西班牙語(智利)", "xloc": [ - "default.handlebars->25->1015" + "default.handlebars->25->1018" ] }, { @@ -23718,7 +24264,7 @@ "ru": "Испанский (Колумбия)", "zh-chs": "西班牙語(哥倫比亞)", "xloc": [ - "default.handlebars->25->1016" + "default.handlebars->25->1019" ] }, { @@ -23735,7 +24281,7 @@ "ru": "Испанский (Коста-Рика)", "zh-chs": "西班牙語(哥斯達黎加)", "xloc": [ - "default.handlebars->25->1017" + "default.handlebars->25->1020" ] }, { @@ -23752,7 +24298,7 @@ "ru": "Испанский (Доминиканская Республика)", "zh-chs": "西班牙語(多米尼加共和國)", "xloc": [ - "default.handlebars->25->1018" + "default.handlebars->25->1021" ] }, { @@ -23769,7 +24315,7 @@ "ru": "Испанский (Эквадор)", "zh-chs": "西班牙語(厄瓜多爾)", "xloc": [ - "default.handlebars->25->1019" + "default.handlebars->25->1022" ] }, { @@ -23786,7 +24332,7 @@ "ru": "Испанский (Сальвадор)", "zh-chs": "西班牙語(薩爾瓦多)", "xloc": [ - "default.handlebars->25->1020" + "default.handlebars->25->1023" ] }, { @@ -23803,7 +24349,7 @@ "ru": "Испанский (Гватемала)", "zh-chs": "西班牙語(危地馬拉)", "xloc": [ - "default.handlebars->25->1021" + "default.handlebars->25->1024" ] }, { @@ -23820,7 +24366,7 @@ "ru": "Испанский (Гондурас)", "zh-chs": "西班牙語(洪都拉斯)", "xloc": [ - "default.handlebars->25->1022" + "default.handlebars->25->1025" ] }, { @@ -23837,7 +24383,7 @@ "ru": "Испанский (Мексика)", "zh-chs": "西班牙語(墨西哥)", "xloc": [ - "default.handlebars->25->1023" + "default.handlebars->25->1026" ] }, { @@ -23854,7 +24400,7 @@ "ru": "Испанский (Никарагуа)", "zh-chs": "西班牙語(尼加拉瓜)", "xloc": [ - "default.handlebars->25->1024" + "default.handlebars->25->1027" ] }, { @@ -23871,7 +24417,7 @@ "ru": "Испанский (Панама)", "zh-chs": "西班牙語(巴拿馬)", "xloc": [ - "default.handlebars->25->1025" + "default.handlebars->25->1028" ] }, { @@ -23888,7 +24434,7 @@ "ru": "Испанский (Парагвай)", "zh-chs": "西班牙語(巴拉圭)", "xloc": [ - "default.handlebars->25->1026" + "default.handlebars->25->1029" ] }, { @@ -23905,7 +24451,7 @@ "ru": "Испанский (Перу)", "zh-chs": "西班牙語(秘魯)", "xloc": [ - "default.handlebars->25->1027" + "default.handlebars->25->1030" ] }, { @@ -23922,7 +24468,7 @@ "ru": "Испанский (Пуэрто-Рико)", "zh-chs": "西班牙語(波多黎各)", "xloc": [ - "default.handlebars->25->1028" + "default.handlebars->25->1031" ] }, { @@ -23939,7 +24485,7 @@ "ru": "Испанский (Испания)", "zh-chs": "西班牙語(西班牙)", "xloc": [ - "default.handlebars->25->1029" + "default.handlebars->25->1032" ] }, { @@ -23956,7 +24502,7 @@ "ru": "Испанский (Уругвай)", "zh-chs": "西班牙語(烏拉圭)", "xloc": [ - "default.handlebars->25->1030" + "default.handlebars->25->1033" ] }, { @@ -23973,7 +24519,7 @@ "ru": "Испанский (Венесуэла)", "zh-chs": "西班牙語(委內瑞拉)", "xloc": [ - "default.handlebars->25->1031" + "default.handlebars->25->1034" ] }, { @@ -23997,8 +24543,13 @@ { "de": "Stabile Version", "en": "Stable Version", + "es": "Versión estable", + "fr": "Version stable", + "hi": "स्थिर संस्करण", "ja": "安定版", + "ko": "안정적인 버전", "nl": "Stabiele versie", + "zh-chs": "稳定版", "xloc": [ "default.handlebars->25->96" ] @@ -24017,7 +24568,7 @@ "ru": "Старт", "zh-chs": "開始", "xloc": [ - "default.handlebars->25->700" + "default.handlebars->25->703" ] }, { @@ -24034,7 +24585,7 @@ "ru": "Состояние", "zh-chs": "州", "xloc": [ - "default.handlebars->25->691", + "default.handlebars->25->694", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -24069,7 +24620,7 @@ "ru": "Статус", "zh-chs": "狀態", "xloc": [ - "default.handlebars->25->1595", + "default.handlebars->25->1598", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -24087,7 +24638,7 @@ "ru": "Стоп", "zh-chs": "停止", "xloc": [ - "default.handlebars->25->701" + "default.handlebars->25->704" ] }, { @@ -24096,12 +24647,14 @@ "en": "Stop process", "es": "Detener el proceso", "fr": "Arrêter le processus", + "hi": "प्रक्रिया को रोकें", "ja": "プロセスを停止", + "ko": "프로세스 중지", "nl": "Stop proces", "ru": "Остановить процесс", "zh-chs": "停止程序", "xloc": [ - "default.handlebars->25->688" + "default.handlebars->25->691" ] }, { @@ -24119,15 +24672,20 @@ "zh-chs": "停止進程#{0} \\“ {1} \\”?", "xloc": [ "default-mobile.handlebars->9->243", - "default.handlebars->25->705" + "default.handlebars->25->708" ] }, { "en": "Storage", + "es": "Almacenamiento", + "fr": "Espace de rangement", + "hi": "भंडारण", "ja": "ストレージ", + "ko": "저장", "nl": "Opslag", + "zh-chs": "存储", "xloc": [ - "default.handlebars->25->819" + "default.handlebars->25->822" ] }, { @@ -24161,7 +24719,7 @@ "ru": "Превышен лимит места для хранения", "zh-chs": "儲存空間超過", "xloc": [ - "default.handlebars->25->1337" + "default.handlebars->25->1340" ] }, { @@ -24178,7 +24736,7 @@ "ru": "Надежный", "zh-chs": "強大", "xloc": [ - "default.handlebars->25->1103" + "default.handlebars->25->1106" ] }, { @@ -24283,7 +24841,7 @@ "ru": "Суту", "zh-chs": "蘇圖", "xloc": [ - "default.handlebars->25->1032" + "default.handlebars->25->1035" ] }, { @@ -24300,7 +24858,7 @@ "ru": "Суахили", "zh-chs": "斯瓦希里語", "xloc": [ - "default.handlebars->25->1033" + "default.handlebars->25->1036" ] }, { @@ -24317,7 +24875,7 @@ "ru": "Шведский", "zh-chs": "瑞典", "xloc": [ - "default.handlebars->25->1034" + "default.handlebars->25->1037" ] }, { @@ -24334,7 +24892,7 @@ "ru": "Шведский (Финляндия)", "zh-chs": "瑞典語(芬蘭)", "xloc": [ - "default.handlebars->25->1035" + "default.handlebars->25->1038" ] }, { @@ -24351,7 +24909,7 @@ "ru": "Шведский (Швеция)", "zh-chs": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->25->1036" + "default.handlebars->25->1039" ] }, { @@ -24368,7 +24926,7 @@ "ru": "Синхронизировать имя устройства на сервере с именем хоста", "zh-chs": "將服務器設備名稱同步到主機名", "xloc": [ - "default.handlebars->25->1223" + "default.handlebars->25->1226" ] }, { @@ -24461,7 +25019,7 @@ "ru": "TLS не настроен", "zh-chs": "未設置TLS", "xloc": [ - "default.handlebars->25->795" + "default.handlebars->25->798" ] }, { @@ -24552,7 +25110,7 @@ "ru": "Тамильский", "zh-chs": "泰米爾語", "xloc": [ - "default.handlebars->25->1037" + "default.handlebars->25->1040" ] }, { @@ -24569,7 +25127,7 @@ "ru": "Татарский", "zh-chs": "塔塔爾族", "xloc": [ - "default.handlebars->25->1038" + "default.handlebars->25->1041" ] }, { @@ -24586,7 +25144,7 @@ "ru": "Телугу", "zh-chs": "泰盧加", "xloc": [ - "default.handlebars->25->1039" + "default.handlebars->25->1042" ] }, { @@ -24603,7 +25161,7 @@ "ru": "Терминал", "zh-chs": "終奌站", "xloc": [ - "default.handlebars->25->1216", + "default.handlebars->25->1219", "default.handlebars->25->433", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal" @@ -24640,8 +25198,8 @@ "ru": "Терминал уведомление", "zh-chs": "終端通知", "xloc": [ - "default.handlebars->25->1136", - "default.handlebars->25->1565", + "default.handlebars->25->1139", + "default.handlebars->25->1568", "default.handlebars->25->502" ] }, @@ -24659,8 +25217,8 @@ "ru": "Запрос терминала", "zh-chs": "終端提示", "xloc": [ - "default.handlebars->25->1135", - "default.handlebars->25->1564", + "default.handlebars->25->1138", + "default.handlebars->25->1567", "default.handlebars->25->501" ] }, @@ -24717,7 +25275,7 @@ "ru": "Тайский", "zh-chs": "泰國", "xloc": [ - "default.handlebars->25->1040" + "default.handlebars->25->1043" ] }, { @@ -24804,7 +25362,7 @@ "ru": "На данный момент уведомлений нет", "zh-chs": "目前沒有任何通知", "xloc": [ - "default.handlebars->25->1644" + "default.handlebars->25->1647" ] }, { @@ -24856,7 +25414,7 @@ "zh-chs": "該帳戶無權創建新的設備組。", "xloc": [ "default-mobile.handlebars->9->61", - "default.handlebars->25->1089" + "default.handlebars->25->1092" ] }, { @@ -24890,7 +25448,7 @@ "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.", "zh-chs": "這不是安全的策略,因為代理將執行激活。", "xloc": [ - "default.handlebars->25->1201" + "default.handlebars->25->1204" ] }, { @@ -24925,7 +25483,7 @@ "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.", "zh-chs": "該策略不會影響採用ACM模式的英特爾®AMT的設備。", "xloc": [ - "default.handlebars->25->1200" + "default.handlebars->25->1203" ] }, { @@ -24970,7 +25528,9 @@ "en": "This token can only be used once and is valid for 5 minutes.", "es": "Este token solo se puede usar una vez y es válido durante 5 minutos.", "fr": "Ce jeton ne peut être utilisé qu'une seule fois et est valide pendant 5 minutes.", + "hi": "यह टोकन केवल एक बार उपयोग किया जा सकता है और 5 मिनट के लिए वैध है।", "ja": "このトークンは1回だけ使用でき、5分間有効です。", + "ko": "이 토큰은 한 번만 사용할 수 있으며 5 분 동안 유효합니다.", "nl": "Dit token kan maar één keer worden gebruikt en is 5 minuten geldig.", "ru": "Этот токен может быть использован только один раз и действителен в течение 5 минут.", "zh-chs": "该令牌只能使用一次,有效期为5分钟。", @@ -24981,7 +25541,13 @@ }, { "en": "This will add an entry to this device's event log.", + "es": "Esto agregará una entrada al registro de eventos de este dispositivo.", + "fr": "Cela ajoutera une entrée au journal des événements de cet appareil.", + "hi": "यह इस डिवाइस के इवेंट लॉग में एक प्रविष्टि जोड़ देगा।", + "ja": "これにより、このデバイスのイベントログにエントリが追加されます。", + "ko": "이 장치의 이벤트 로그에 항목이 추가됩니다.", "nl": "Hiermee wordt een vermelding toegevoegd aan het gebeurtenislogboek van dit apparaat.", + "zh-chs": "这会将条目添加到该设备的事件日志中。", "xloc": [ "default.handlebars->25->600" ] @@ -25048,7 +25614,7 @@ "ru": "Тигровый", "zh-chs": "蒂格雷", "xloc": [ - "default.handlebars->25->1041" + "default.handlebars->25->1044" ] }, { @@ -25184,7 +25750,7 @@ "ru": "Чтобы удалить эту учетную запись, введите пароль учетной записи в оба поля и нажмите ОК.", "zh-chs": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->25->1076" + "default.handlebars->25->1079" ] }, { @@ -25210,7 +25776,9 @@ "en": "To install the software,", "es": "Para instalar este software,", "fr": "Pour installer le logiciel,", + "hi": "सॉफ़्टवेयर स्थापित करने के लिए,", "ja": "ソフトウェアをインストールするには、", + "ko": "소프트웨어를 설치하려면", "nl": "Om de software te installeren,", "ru": "Чтобы установить программное обеспечение,", "zh-chs": "要安装软件,", @@ -25224,7 +25792,9 @@ "en": "To install the software, navigate to [[[SERVERURL]]][[[LINKURL]]] and follow the instructions.", "es": "Para instalar el software, navega a [[[SERVERURL]]][[[LINKURL]]] y siga las instrucciones.", "fr": "Pour installer le logiciel, accédez à [[[SERVERURL]]][[[LINKURL]]] et suivez les instructions.", + "hi": "सॉफ़्टवेयर को स्थापित करने के लिए, [[[SERVERURL]]] [[[LINKURL]]] पर जाएँ और निर्देशों का पालन करें।", "ja": "ソフトウェアをインストールするには、[[[SERVERURL]]][[[LINKURL]]]に移動し、指示に従います。", + "ko": "소프트웨어를 설치하려면 [[[SERVERURL]]] [[[LINKURL]]]으로 이동하여 지침을 따르십시오.", "nl": "Om de software te installeren, navigeert u naar [[[SERVERURL]]] [[[LINKURL]]] en volgt u de instructies.", "ru": "Для установки программного обеспечения перейдите к [[[SERVERURL]]][[[LINKURL]]] и следуйте инструкциям.", "zh-chs": "要安装软件,请导航至[[[SERVERURL]]][[[LINKURL]]],然后按照说明进行操作。", @@ -25614,7 +26184,7 @@ "ru": "Тсонга", "zh-chs": "特松加", "xloc": [ - "default.handlebars->25->1042" + "default.handlebars->25->1045" ] }, { @@ -25631,7 +26201,7 @@ "ru": "Тсвана", "zh-chs": "茨瓦納", "xloc": [ - "default.handlebars->25->1043" + "default.handlebars->25->1046" ] }, { @@ -25648,7 +26218,7 @@ "ru": "Турецкий", "zh-chs": "土耳其", "xloc": [ - "default.handlebars->25->1044" + "default.handlebars->25->1047" ] }, { @@ -25665,7 +26235,7 @@ "ru": "Туркменский", "zh-chs": "土庫曼人", "xloc": [ - "default.handlebars->25->1045" + "default.handlebars->25->1048" ] }, { @@ -25701,11 +26271,11 @@ "xloc": [ "default-mobile.handlebars->9->284", "default-mobile.handlebars->9->67", - "default.handlebars->25->1096", - "default.handlebars->25->1126", - "default.handlebars->25->1177", + "default.handlebars->25->1099", + "default.handlebars->25->1129", "default.handlebars->25->1180", - "default.handlebars->25->698", + "default.handlebars->25->1183", + "default.handlebars->25->701", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, @@ -25723,7 +26293,7 @@ "ru": "Введите имя ключа, выберите поле OTP и нажмите кнопку на YubiKey™.", "zh-chs": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->25->854" + "default.handlebars->25->857" ] }, { @@ -25740,7 +26310,7 @@ "ru": "Введите имя ключа для добавления.", "zh-chs": "輸入要添加的密鑰的名稱。", "xloc": [ - "default.handlebars->25->851" + "default.handlebars->25->854" ] }, { @@ -25757,7 +26327,7 @@ "ru": "Терминал UTF8", "zh-chs": "UTF8終端", "xloc": [ - "default.handlebars->25->709" + "default.handlebars->25->712" ] }, { @@ -25774,7 +26344,7 @@ "ru": "Украинский", "zh-chs": "烏克蘭", "xloc": [ - "default.handlebars->25->1046" + "default.handlebars->25->1049" ] }, { @@ -25791,7 +26361,7 @@ "ru": "Невозможно получить доступ к устройству, пока адрес email не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес email.", "zh-chs": "在驗證電子郵件地址之前,無法訪問設備。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "xloc": [ - "default.handlebars->25->1091", + "default.handlebars->25->1094", "default.handlebars->25->449" ] }, @@ -25845,7 +26415,7 @@ "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите на вкладку \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "zh-chs": "在啟用兩因素身份驗證之前,無法訪問設備。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->25->1093", + "default.handlebars->25->1096", "default.handlebars->25->451" ] }, @@ -25953,7 +26523,7 @@ "zh-chs": "卸載", "xloc": [ "default-mobile.handlebars->9->331", - "default.handlebars->25->1288", + "default.handlebars->25->1291", "default.handlebars->25->578", "default.handlebars->25->597" ] @@ -25973,7 +26543,7 @@ "zh-chs": "卸載代理", "xloc": [ "default-mobile.handlebars->9->313", - "default.handlebars->25->1254", + "default.handlebars->25->1257", "default.handlebars->25->383", "default.handlebars->25->611" ] @@ -26014,12 +26584,12 @@ "default-mobile.handlebars->9->181", "default-mobile.handlebars->9->182", "default.handlebars->25->13", - "default.handlebars->25->1635", + "default.handlebars->25->1638", "default.handlebars->25->379", "default.handlebars->25->41", "default.handlebars->25->42", - "default.handlebars->25->785", - "default.handlebars->25->792", + "default.handlebars->25->788", + "default.handlebars->25->795", "default.handlebars->25->91", "default.handlebars->25->92", "default.handlebars->25->93", @@ -26042,7 +26612,7 @@ "zh-chs": "未知#{0}", "xloc": [ "default-mobile.handlebars->9->278", - "default.handlebars->25->1121" + "default.handlebars->25->1124" ] }, { @@ -26059,7 +26629,7 @@ "ru": "Неизвестное действие", "zh-chs": "未知動作", "xloc": [ - "default.handlebars->25->1658" + "default.handlebars->25->1661" ] }, { @@ -26076,8 +26646,8 @@ "ru": "Неизвестное устройство", "zh-chs": "未知設備", "xloc": [ - "default.handlebars->25->1510", - "default.handlebars->25->1623" + "default.handlebars->25->1513", + "default.handlebars->25->1626" ] }, { @@ -26094,9 +26664,9 @@ "ru": "Неизвестная группа устройств", "zh-chs": "未知設備組", "xloc": [ - "default.handlebars->25->1504", - "default.handlebars->25->1611", - "default.handlebars->25->1662" + "default.handlebars->25->1507", + "default.handlebars->25->1614", + "default.handlebars->25->1665" ] }, { @@ -26113,7 +26683,7 @@ "ru": "Неизвестная группа", "zh-chs": "未知群組", "xloc": [ - "default.handlebars->25->1654" + "default.handlebars->25->1657" ] }, { @@ -26148,7 +26718,7 @@ "ru": "Неизвестная группа пользователей", "zh-chs": "未知用戶組", "xloc": [ - "default.handlebars->25->1617" + "default.handlebars->25->1620" ] }, { @@ -26191,10 +26761,15 @@ { "de": "Konto entsperren", "en": "Unlock account", + "es": "Desbloquear cuenta", + "fr": "Déverrouiller compte", + "hi": "खाता अनलॉक", "ja": "アカウントのロックを解除", + "ko": "계정 잠금 해제", "nl": "Account ontgrendelen", + "zh-chs": "解锁帐号", "xloc": [ - "default.handlebars->25->1413" + "default.handlebars->25->1416" ] }, { @@ -26232,7 +26807,7 @@ "ru": "Актуально", "zh-chs": "最新", "xloc": [ - "default.handlebars->25->1719" + "default.handlebars->25->1722" ] }, { @@ -26272,11 +26847,11 @@ "default-mobile.handlebars->9->258", "default-mobile.handlebars->9->276", "default-mobile.handlebars->9->95", - "default.handlebars->25->1361", - "default.handlebars->25->1369", - "default.handlebars->25->732", - "default.handlebars->25->755", + "default.handlebars->25->1364", + "default.handlebars->25->1372", + "default.handlebars->25->735", "default.handlebars->25->758", + "default.handlebars->25->761", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -26294,7 +26869,7 @@ "ru": "Загрузить ядро Mesh Agent", "zh-chs": "上傳網格代理核心", "xloc": [ - "default.handlebars->25->837" + "default.handlebars->25->840" ] }, { @@ -26311,7 +26886,7 @@ "ru": "Загрузить файл ядра", "zh-chs": "上載核心文件", "xloc": [ - "default.handlebars->25->834" + "default.handlebars->25->837" ] }, { @@ -26328,7 +26903,7 @@ "ru": "Загрузить ядро по умолчанию с сервера ", "zh-chs": "上載默認服務器核心", "xloc": [ - "default.handlebars->25->831" + "default.handlebars->25->834" ] }, { @@ -26345,7 +26920,7 @@ "ru": "Загрузить ядро восстановления", "zh-chs": "上傳恢復核心", "xloc": [ - "default.handlebars->25->833" + "default.handlebars->25->836" ] }, { @@ -26362,8 +26937,8 @@ "ru": "Загрузка перезапишет 1 файл. Продолжить?", "zh-chs": "上傳將覆蓋1個文件。繼續?", "xloc": [ - "default.handlebars->25->1370", - "default.handlebars->25->756" + "default.handlebars->25->1373", + "default.handlebars->25->759" ] }, { @@ -26380,8 +26955,8 @@ "ru": "Загрузка перезапишет {0} файлов. Продолжить?", "zh-chs": "上傳將覆蓋{0}個文件。繼續?", "xloc": [ - "default.handlebars->25->1371", - "default.handlebars->25->757" + "default.handlebars->25->1374", + "default.handlebars->25->760" ] }, { @@ -26412,7 +26987,7 @@ "ru": "Верхний Сорбский", "zh-chs": "上索布族", "xloc": [ - "default.handlebars->25->1047" + "default.handlebars->25->1050" ] }, { @@ -26429,7 +27004,7 @@ "ru": "Урду", "zh-chs": "烏爾都語", "xloc": [ - "default.handlebars->25->1048" + "default.handlebars->25->1051" ] }, { @@ -26481,8 +27056,8 @@ "ru": "Использовано", "zh-chs": "用過的", "xloc": [ - "default.handlebars->25->1648", - "default.handlebars->25->1650" + "default.handlebars->25->1651", + "default.handlebars->25->1653" ] }, { @@ -26500,9 +27075,9 @@ "zh-chs": "用戶", "xloc": [ "default-mobile.handlebars->9->333", - "default.handlebars->25->1174", - "default.handlebars->25->1397", - "default.handlebars->25->1500", + "default.handlebars->25->1177", + "default.handlebars->25->1400", + "default.handlebars->25->1503", "default.handlebars->25->193", "default.handlebars->25->562" ] @@ -26521,7 +27096,7 @@ "ru": "Пользователь + Файлы", "zh-chs": "用戶+文件", "xloc": [ - "default.handlebars->25->1398" + "default.handlebars->25->1401" ] }, { @@ -26538,10 +27113,10 @@ "ru": "Импорт учетной записи пользователя", "zh-chs": "用戶帳戶導入", "xloc": [ - "default.handlebars->25->1423", - "default.handlebars->25->1424", "default.handlebars->25->1426", - "default.handlebars->25->1428" + "default.handlebars->25->1427", + "default.handlebars->25->1429", + "default.handlebars->25->1431" ] }, { @@ -26558,7 +27133,7 @@ "ru": "Учетные записи пользователей", "zh-chs": "用戶帳號", "xloc": [ - "default.handlebars->25->1667" + "default.handlebars->25->1670" ] }, { @@ -26576,7 +27151,7 @@ "zh-chs": "用戶授權", "xloc": [ "default-mobile.handlebars->9->286", - "default.handlebars->25->1172", + "default.handlebars->25->1175", "default.handlebars->25->558" ] }, @@ -26594,8 +27169,8 @@ "ru": "Согласие пользователя", "zh-chs": "用戶同意", "xloc": [ - "default.handlebars->25->1142", - "default.handlebars->25->1571", + "default.handlebars->25->1145", + "default.handlebars->25->1574", "default.handlebars->25->508" ] }, @@ -26613,11 +27188,11 @@ "ru": "Группа пользователей", "zh-chs": "用戶組", "xloc": [ - "default.handlebars->25->1230", - "default.handlebars->25->1231", - "default.handlebars->25->1482", - "default.handlebars->25->1619", - "default.handlebars->25->1638", + "default.handlebars->25->1233", + "default.handlebars->25->1234", + "default.handlebars->25->1485", + "default.handlebars->25->1622", + "default.handlebars->25->1641", "default.handlebars->25->561" ] }, @@ -26652,7 +27227,7 @@ "ru": "Членство в группах пользователей", "zh-chs": "用戶組成員資格", "xloc": [ - "default.handlebars->25->1616" + "default.handlebars->25->1619" ] }, { @@ -26669,8 +27244,8 @@ "ru": "Идентификатор пользователя", "zh-chs": "用戶標識", "xloc": [ - "default.handlebars->25->1291", - "default.handlebars->25->1541" + "default.handlebars->25->1294", + "default.handlebars->25->1544" ] }, { @@ -26687,7 +27262,7 @@ "ru": "Экспортировать список пользователей", "zh-chs": "用戶列表導出", "xloc": [ - "default.handlebars->25->1435" + "default.handlebars->25->1438" ] }, { @@ -26704,7 +27279,7 @@ "ru": "Имя пользователя", "zh-chs": "用戶名", "xloc": [ - "default.handlebars->25->1290" + "default.handlebars->25->1293" ] }, { @@ -26721,8 +27296,8 @@ "ru": "Имена пользователей", "zh-chs": "用戶名", "xloc": [ - "default.handlebars->25->1228", - "default.handlebars->25->1529" + "default.handlebars->25->1231", + "default.handlebars->25->1532" ] }, { @@ -26731,7 +27306,9 @@ "en": "User Permissions", "es": "Permisos de usuario", "fr": "Autorisations utilisateur", + "hi": "उपयोगकर्ता", "ja": "ユーザー権限", + "ko": "사용자 권한", "nl": "Gebruikersrechten", "ru": "Пользовательские разрешения", "zh-chs": "用户权限" @@ -26768,7 +27345,7 @@ "ru": "Сессии пользователя", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->25->1684" + "default.handlebars->25->1687" ] }, { @@ -26797,7 +27374,9 @@ "en": "User [[[USERNAME]]] on server", "es": "Usuario [[[USERNAME]]] en servidor", "fr": "Utilisateur [[[USERNAME]]] sur le serveur", + "hi": "उपयोगकर्ता [[[USERNAME]]] सर्वर पर", "ja": "サーバー上のユーザー[[[USERNAME]]]", + "ko": "서버의 사용자 [[[USERNAME]]]", "nl": "Gebruiker [[[USERNAME]]] op server", "ru": "Пользователь [[[USERNAME]]] на сервере", "zh-chs": "伺服器上的使用者[[[USERNAME]]]", @@ -26811,7 +27390,9 @@ "en": "User [[[USERNAME]]] on server [[[SERVERNAME]]] ([[[SERVERURL]]]/) is requesting you install software to start the remote control session.", "es": "Usuario [[[USERNAME]]] en servitor [[[SERVERNAME]]] ([[[SERVERURL]]]/) le solicita que instale software para iniciar la sesión de control remoto.", "fr": "L'utilisateur [[[USERNAME]]] sur le serveur [[[SERVERNAME]]] ([[[SERVERURL]]]/) vous demande d'installer un logiciel pour démarrer la session de contrôle à distance.", + "hi": "उपयोगकर्ता [[[USERNAME]]] सर्वर पर [[[SERVERNAME]]] ([[[SERVERURL]]] /) आपसे रिमोट कंट्रोल सेशन शुरू करने के लिए सॉफ़्टवेयर स्थापित करने का अनुरोध कर रहा है।", "ja": "サーバー[[[SERVERNAME]]]([[[SERVERURL]]]/)のユーザー[[[USERNAME]]]が、リモートコントロールセッションを開始するためのソフトウェアのインストールを要求しています。", + "ko": "서버 [[[SERVERNAME]]] ([[[SERVERURL]]] /)의 [[[USERNAME]]] 사용자가 원격 제어 세션을 시작하기 위해 소프트웨어를 설치하도록 요청하고 있습니다.", "nl": "Gebruiker [[[USERNAME]]] op server [[[SERVERNAME]]] ([[[SERVERURL]]] /) vraagt u de software te installeren om de sessie voor afstandsbediening te starten.", "ru": "Пользователь [[[USERNAME]]] на сервере [[[SERVERNAME]]] ([[[SERVERURL]]]/) запрашивает установку программного обеспечения для запуска сеанса удаленного управления.", "zh-chs": "服务器[[[SERVERNAME]]]([[[SERVERURL]]]/)上的用户[[[USERNAME]]]请求您安装软件以启动远程控制会话。", @@ -26833,8 +27414,8 @@ "ru": "Использовать настройки браузера", "zh-chs": "用戶瀏覽器價值", "xloc": [ - "default.handlebars->25->1058", - "default.handlebars->25->1060" + "default.handlebars->25->1061", + "default.handlebars->25->1063" ] }, { @@ -26891,7 +27472,7 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->222", - "default.handlebars->25->1441", + "default.handlebars->25->1444", "default.handlebars->25->234", "default.handlebars->25->264", "default.handlebars->25->617", @@ -26951,9 +27532,9 @@ "ru": "Пользователи", "zh-chs": "用戶數", "xloc": [ - "default.handlebars->25->1470", - "default.handlebars->25->1492", - "default.handlebars->25->1683", + "default.handlebars->25->1473", + "default.handlebars->25->1495", + "default.handlebars->25->1686", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -26971,7 +27552,7 @@ "ru": "Сессии пользователей", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->25->1671" + "default.handlebars->25->1674" ] }, { @@ -26988,7 +27569,7 @@ "ru": "VT100+ (F10 = ESC+[OY)", "zh-chs": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->25->714" + "default.handlebars->25->717" ] }, { @@ -27005,7 +27586,7 @@ "ru": "Венда", "zh-chs": "文達", "xloc": [ - "default.handlebars->25->1049" + "default.handlebars->25->1052" ] }, { @@ -27022,14 +27603,19 @@ "ru": "Вендор", "zh-chs": "供應商", "xloc": [ - "default.handlebars->25->800", - "default.handlebars->25->803" + "default.handlebars->25->803", + "default.handlebars->25->806" ] }, { "en": "Verification code:", + "es": "Código de verificación:", + "fr": "Code de vérification:", + "hi": "पुष्टि संख्या:", "ja": "検証コード:", + "ko": "확인 코드:", "nl": "Verificatie code:", + "zh-chs": "验证码:", "xloc": [ "default-mobile.handlebars->9->30", "default.handlebars->25->142" @@ -27049,25 +27635,35 @@ "ru": "Проверенный", "zh-chs": "已驗證", "xloc": [ - "default.handlebars->25->1597" + "default.handlebars->25->1600" ] }, { "en": "Verified email {0} for user account {1}.", - "nl": "Geverifieerd e-mailadres {0} voor gebruikersaccount {1}.", + "es": "Correo electrónico verificado {0} para la cuenta de usuario {1}.", + "fr": "E-mail validé {0} pour le compte utilisateur {1}.", + "hi": "उपयोगकर्ता खाते {1} के लिए सत्यापित ईमेल {0}।", "ja": "ユーザーアカウント{1}の確認済みメール{0}。", + "ko": "사용자 계정 {1}에 대해 확인 된 이메일 {0}.", + "nl": "Geverifieerd e-mailadres {0} voor gebruikersaccount {1}.", + "zh-chs": "用户帐户{1}的已验证电子邮件{0}。", "xloc": [ "message.handlebars->3->7" ] }, { "en": "Verified phone number", + "es": "Número de teléfono verificado", + "fr": "Numéro de téléphone vérifié", + "hi": "सत्यापित फ़ोन नंबर", "ja": "確認済みの電話番号", + "ko": "확인 된 전화 번호", "nl": "Geverifieerd telefoonnummer", + "zh-chs": "验证电话号码", "xloc": [ "default-mobile.handlebars->9->32", - "default.handlebars->25->1406", - "default.handlebars->25->838" + "default.handlebars->25->1409", + "default.handlebars->25->841" ] }, { @@ -27119,10 +27715,10 @@ "ru": "Версия", "zh-chs": "版", "xloc": [ - "default.handlebars->25->763", - "default.handlebars->25->784", - "default.handlebars->25->801", - "default.handlebars->25->806", + "default.handlebars->25->766", + "default.handlebars->25->787", + "default.handlebars->25->804", + "default.handlebars->25->809", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -27132,12 +27728,14 @@ "en": "Version incompatible, please upgrade your MeshCentral installation first", "es": "Versión Incompatible, por favor primero actualice su instalación de MeshCentral", "fr": "Version incompatible, veuillez d'abord mettre à niveau votre installation MeshCentral", + "hi": "संस्करण असंगत है, कृपया पहले अपने मेश् ट्राईसेन्ट्रल इंस्टॉलेशन को अपग्रेड करें", "ja": "バージョンに互換性がありません。最初にMeshCentralインストールをアップグレードしてください", + "ko": "버전이 호환되지 않습니다. MeshCentral 설치를 먼저 업그레이드하십시오", "nl": "Versie is niet compatibel, upgrade eerst uw MeshCentral installatie", "ru": "Версия несовместима, пожалуйста, сначала обновите установку MeshCentral", "zh-chs": "版本不兼容,请先升级您的MeshCentral安装", "xloc": [ - "default.handlebars->25->1715" + "default.handlebars->25->1718" ] }, { @@ -27172,7 +27770,7 @@ "ru": "Вьетнамский", "zh-chs": "越南文", "xloc": [ - "default.handlebars->25->1050" + "default.handlebars->25->1053" ] }, { @@ -27198,13 +27796,15 @@ "en": "View Changelog", "es": "Ver registro de cambios", "fr": "Voir la log des modifications", + "hi": "परिवर्तन लॉग देखें", "ja": "変更ログを表示", + "ko": "변경 내역보기", "nl": "Bekijk aanpassingen log", "ru": "Просмотр журнала изменений", "zh-chs": "查看变更日志", "xloc": [ - "default.handlebars->25->1718", - "default.handlebars->25->1720" + "default.handlebars->25->1721", + "default.handlebars->25->1723" ] }, { @@ -27238,7 +27838,7 @@ "ru": "Посмотреть примечания этой группы устройств", "zh-chs": "查看有關此設備組的註釋", "xloc": [ - "default.handlebars->25->1157" + "default.handlebars->25->1160" ] }, { @@ -27255,7 +27855,7 @@ "ru": "Посмотреть примечания об этом пользователе", "zh-chs": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->25->1579" + "default.handlebars->25->1582" ] }, { @@ -27272,7 +27872,7 @@ "ru": "Волапукский", "zh-chs": "沃拉普克", "xloc": [ - "default.handlebars->25->1051" + "default.handlebars->25->1054" ] }, { @@ -27309,13 +27909,27 @@ "messenger.handlebars->13->6" ] }, + { + "en": "Waiting for user to grant access...", + "es": "Esperando a que el usuario otorgue acceso ...", + "fr": "En attente de l'autorisation d'accès par l'utilisateur ...", + "hi": "उपयोगकर्ता की पहुँच की प्रतीक्षा कर रहा है ...", + "ja": "ユーザーがアクセスを許可するのを待っています...", + "ko": "사용자가 액세스 권한을 부여하기를 기다리는 중 ...", + "zh-chs": "正在等待用户授予访问权限...", + "xloc": [ + "default.handlebars->25->675" + ] + }, { "cs": "Probudit", "de": "Aufwachen", "en": "Wake", "es": "Despertar", "fr": "Réveiller", + "hi": "जागो", "ja": "ウェイク", + "ko": "일어나 다", "nl": "Wekken", "ru": "Услуга", "zh-chs": "唤醒", @@ -27340,8 +27954,8 @@ "xloc": [ "default-mobile.handlebars->9->309", "default-mobile.handlebars->9->322", - "default.handlebars->25->1250", - "default.handlebars->25->1278" + "default.handlebars->25->1253", + "default.handlebars->25->1281" ] }, { @@ -27393,7 +28007,7 @@ "ru": "Валлонский", "zh-chs": "瓦隆", "xloc": [ - "default.handlebars->25->1052" + "default.handlebars->25->1055" ] }, { @@ -27410,7 +28024,7 @@ "ru": "Слабый", "zh-chs": "弱", "xloc": [ - "default.handlebars->25->1105" + "default.handlebars->25->1108" ] }, { @@ -27447,8 +28061,8 @@ "ru": "Веб-сервер", "zh-chs": "網絡服務器", "xloc": [ - "default.handlebars->25->1704", - "default.handlebars->25->1705" + "default.handlebars->25->1707", + "default.handlebars->25->1708" ] }, { @@ -27465,7 +28079,7 @@ "ru": "Запросы веб-сервера", "zh-chs": "Web服務器請求", "xloc": [ - "default.handlebars->25->1706" + "default.handlebars->25->1709" ] }, { @@ -27482,7 +28096,7 @@ "ru": "Ретранслятор Web Socket", "zh-chs": "Web套接字中繼", "xloc": [ - "default.handlebars->25->1707" + "default.handlebars->25->1710" ] }, { @@ -27535,7 +28149,7 @@ "ru": "Уэльский", "zh-chs": "威爾士語", "xloc": [ - "default.handlebars->25->1053" + "default.handlebars->25->1056" ] }, { @@ -27552,7 +28166,7 @@ "ru": "Когда этот параметр включен, коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->25->1299" + "default.handlebars->25->1302" ] }, { @@ -27570,7 +28184,7 @@ "zh-chs": "啟用後,每次登錄時,您都可以選擇向電子郵件帳戶接收登錄令牌,以提高安全性。", "xloc": [ "default-mobile.handlebars->9->38", - "default.handlebars->25->845" + "default.handlebars->25->848" ] }, { @@ -27587,7 +28201,7 @@ "ru": "Будет изменено при следующем входе в систему.", "zh-chs": "下次登錄時將更改。", "xloc": [ - "default.handlebars->25->1551" + "default.handlebars->25->1554" ] }, { @@ -28060,7 +28674,7 @@ "ru": "Перенос строк: ВЫКЛ", "zh-chs": "包裝:關閉", "xloc": [ - "default.handlebars->25->750" + "default.handlebars->25->753" ] }, { @@ -28077,7 +28691,7 @@ "ru": "Перенос строк: ВКЛ", "zh-chs": "包裝:開", "xloc": [ - "default.handlebars->25->749" + "default.handlebars->25->752" ] }, { @@ -28163,7 +28777,7 @@ "ru": "Кос", "zh-chs": "科薩", "xloc": [ - "default.handlebars->25->1054" + "default.handlebars->25->1057" ] }, { @@ -28180,7 +28794,7 @@ "ru": "Идиш", "zh-chs": "意第緒語", "xloc": [ - "default.handlebars->25->1055" + "default.handlebars->25->1058" ] }, { @@ -28206,7 +28820,9 @@ "en": "You have been invited to install a software that will allow a remote operator to fully access your computer remotely including the desktop and files. Only follow the instructions below if this invitation was expected and you know who will be accessing your computer. Selecting your operation system and follow the instructions below.", "es": "Se le invitó a instalar un software que permitirá que un operador remoto acceda completamente a su computadora de forma remota, incluido el escritorio y los archivos. Solo siga las instrucciones a continuación si estaba esperando esta invitación y sabe quién accederá a su computadora. Seleccione su sistema operativo y siga las instrucciones a continuación.", "fr": "Vous avez été invité à installer un logiciel qui permettra à un opérateur distant d'accéder pleinement à votre ordinateur à distance, y compris le bureau et les fichiers. Suivez les instructions ci-dessous uniquement si cette invitation était attendue et que vous savez qui aura accès à votre ordinateur. Sélectionnez votre système d'exploitation et suivez les instructions ci-dessous.", + "hi": "आपको एक सॉफ़्टवेयर स्थापित करने के लिए आमंत्रित किया गया है जो दूरस्थ ऑपरेटर को आपके कंप्यूटर को डेस्कटॉप और फ़ाइलों सहित दूरस्थ रूप से पूरी तरह से एक्सेस करने की अनुमति देगा। केवल नीचे दिए गए निर्देशों का पालन करें यदि यह आमंत्रण अपेक्षित था और आप जानते हैं कि आपके कंप्यूटर तक कौन पहुंचेगा। अपने ऑपरेशन सिस्टम का चयन करें और नीचे दिए गए निर्देशों का पालन करें।", "ja": "リモートオペレーターがデスクトップやファイルを含め、リモートでコンピューターに完全にアクセスできるようにするソフトウェアをインストールするよう招待されました。この招待が予期されていて、誰がコンピュータにアクセスするかがわかっている場合にのみ、以下の手順に従ってください。オペレーティングシステムを選択し、以下の手順に従います。", + "ko": "원격 운영자가 데스크탑 및 파일을 포함하여 원격으로 컴퓨터에 완전히 액세스 할 수 있도록하는 소프트웨어를 설치하도록 초대되었습니다. 이 초대가 예상되고 컴퓨터에 누가 액세스 할 것인지 아는 경우에만 아래 지침을 따르십시오. 운영 체제를 선택하고 아래 지침을 따르십시오.", "nl": "U bent uitgenodigd om software te installeren waarmee een externe operator op afstand volledige toegang heeft tot uw computer, inclusief het bureaublad en de bestanden. Volg de onderstaande instructies alleen als deze uitnodiging werd verwacht en u weet wie er toegang krijgt tot uw computer. Selecteer uw besturingssysteem en volg de onderstaande instructies.", "ru": "Вам было предложено установить программное обеспечение, которое позволит удаленному оператору получить полный доступ к вашему компьютеру, включая рабочий стол и файлы. Следуйте приведенным ниже инструкциям только в том случае, если это приглашение ожидалось и вы знаете, кто будет обращаться к вашему компьютеру. Выбор вашей операционной системы и следуйте инструкциям ниже.", "zh-chs": "已邀请您安装软件,该软件将允许远程操作员远程完全访问您的计算机,包括桌面和文件。如果预期会收到此邀请,请仅遵循以下说明,并且您知道谁将访问您的计算机。选择操作系统,然后按照以下说明进行操作。", @@ -28237,7 +28853,9 @@ "en": "Your login token is: [[[TOKEN]]]", "es": "Su token de inicio de sesión es: [[[TOKEN]]]", "fr": "Votre jeton de connexion est: [[[TOKEN]]]", + "hi": "आपका लॉगिन टोकन है: [[[टोकन]]]", "ja": "ログイントークンは次のとおりです:[[[TOKEN]]]", + "ko": "귀하의 로그인 토큰은 [[[TOKEN]]]입니다.", "nl": "Uw login token is: [[[TOKEN]]]", "ru": "Ваш токен для входа: [[[TOKEN]]]", "zh-chs": "您的登录令牌为:[[[TOKEN]]]", @@ -28260,7 +28878,7 @@ "ru": "YubiKey™ OTP", "zh-chs": "YubiKey™ OTP", "xloc": [ - "default.handlebars->25->857" + "default.handlebars->25->860" ] }, { @@ -28330,21 +28948,31 @@ "ru": "Зулусский", "zh-chs": "祖魯族", "xloc": [ - "default.handlebars->25->1056" + "default.handlebars->25->1059" ] }, { "en": "[[0]] access token is: [[1]]", + "es": "[[0]] token de acceso es: [[1]]", + "fr": "[[0]] le jeton d'accès est: [[1]]", + "hi": "[[0]] अभिगमन टोकन है: [[१]]", "ja": "[[0]]アクセストークンは:[[1]]", + "ko": "[[0]] 액세스 토큰은 다음과 같습니다. [[1]]", "nl": "[[0]] Toegangs token is: [[1]]", + "zh-chs": "[[0]]访问令牌是:[[1]]", "xloc": [ "sms-messages.txt" ] }, { "en": "[[0]] verification code is: [[1]]", + "es": "El código de verificación [[0]] es: [[1]]", + "fr": "[[0]] le code de vérification est: [[1]]", + "hi": "[[०]] सत्यापन कोड है: [[१]]", "ja": "[[0]]確認コード:[[1]]", + "ko": "[[0]] 인증 코드는 다음과 같습니다. [[1]]", "nl": "[[0]] verificatie code is: [[1]]", + "zh-chs": "[[0]]验证码是:[[1]]", "xloc": [ "sms-messages.txt" ] @@ -28355,7 +28983,9 @@ "en": "[[[SERVERNAME]]]", "es": "[[[SERVERNAME]]]", "fr": "[[[SERVERNAME]]]", + "hi": "[[[सर्वर का नाम]]]", "ja": "[[[SERVERNAME]]]", + "ko": "[[[서버 이름]]]", "nl": "[[[SERVERNAME]]]", "pt": "[[[SERVERNAME]]]", "ru": "[[[SERVERNAME]]]", @@ -28372,7 +29002,9 @@ "en": "[[[SERVERNAME]]] - Account Invitation", "es": "[[[SERVERNAME]]] - Invitación de Cuenta", "fr": "[[[SERVERNAME]]] - Invitation au compte", + "hi": "[[[SERVERNAME]]] - खाता निमंत्रण", "ja": "[[[SERVERNAME]]]-アカウントの招待", + "ko": "[[[SERVERNAME]]]-계정 초대", "nl": "[[[SERVERNAME]]] - Account uitnodiging", "ru": "[[[SERVERNAME]]] - приглашение в аккаунт", "zh-chs": "[[[SERVERNAME]]]-帐户邀请", @@ -28388,7 +29020,9 @@ "en": "[[[SERVERNAME]]] - Account Login", "es": "[[[SERVERNAME]]] - Nombre de Usuario", "fr": "[[[SERVERNAME]]] - Connexion au compte", + "hi": "[[[SERVERNAME]]] - खाता लॉगिन", "ja": "[[[SERVERNAME]]]-アカウントログイン", + "ko": "[[[SERVERNAME]]]-계정 로그인", "nl": "[[[SERVERNAME]]] - Inloggen account", "ru": "[[[SERVERNAME]]] - Вход в аккаунт", "zh-chs": "[[[SERVERNAME]]]-帐户登录", @@ -28404,7 +29038,9 @@ "en": "[[[SERVERNAME]]] - Account Reset", "es": "[[[SERVERNAME]]] - Resetear Cuenta", "fr": "[[[SERVERNAME]]] - Réinitialisation du compte", + "hi": "[[[SERVERNAME]]] - खाता रीसेट", "ja": "[[[SERVERNAME]]]-アカウントのリセット", + "ko": "[[[SERVERNAME]]]-계정 재설정", "nl": "[[[SERVERNAME]]] - Account Reset", "ru": "[[[SERVERNAME]]] - Сброс учетной записи", "zh-chs": "[[[SERVERNAME]]]-帐户重置", @@ -28419,7 +29055,9 @@ "en": "[[[SERVERNAME]]] - Agent Installation", "es": "[[[SERVERNAME]]] - Instalación de Agente", "fr": "[[[SERVERNAME]]] - Installation de l'agent", + "hi": "[[[SERVERNAME]]] - एजेंट स्थापना", "ja": "[[[SERVERNAME]]]-エージェントのインストール", + "ko": "[[[SERVERNAME]]]-에이전트 설치", "nl": "[[[SERVERNAME]]] - Agent installatie", "ru": "[[[SERVERNAME]]] - Установка агента", "zh-chs": "[[[SERVERNAME]]]-代理程序安装", @@ -28433,7 +29071,9 @@ "en": "[[[SERVERNAME]]] - Email Verification", "es": "[[[SERVERNAME]]] - Verificación de Email", "fr": "[[[SERVERNAME]]] - Vérification E-mail", + "hi": "[[[SERVERNAME]]] - ईमेल सत्यापन", "ja": "[[[SERVERNAME]]]-メールの確認", + "ko": "[[[SERVERNAME]]]-이메일 확인", "nl": "[[[SERVERNAME]]] - E-mail Verificatie", "ru": "[[[SERVERNAME]]] - подтверждение по электронной почте", "zh-chs": "[[[SERVERNAME]]]-电子邮件验证", @@ -28448,7 +29088,9 @@ "en": "[[[SERVERNAME]]] - Invitation", "es": "[[[SERVERNAME]]] - Invitación", "fr": "[[[SERVERNAME]]] - Invitation", + "hi": "[[[SERVERNAME]]] - निमंत्रण", "ja": "[[[SERVERNAME]]]-招待", + "ko": "[[[SERVERNAME]]]-초대", "nl": "[[[SERVERNAME]]] - Uitnodiging", "ru": "[[[SERVERNAME]]] - Приглашение", "zh-chs": "[[[SERVERNAME]]]-邀请", @@ -28463,7 +29105,9 @@ "en": "[[[SERVERNAME]]] - Verification", "es": "[[[SERVERNAME]]] - Invitación", "fr": "[[[SERVERNAME]]] - Vérification", + "hi": "[[[SERVERNAME]] - सत्यापन", "ja": "[[[SERVERNAME]]]-確認", + "ko": "[[[SERVERNAME]]]-확인", "nl": "[[[SERVERNAME]]] - Verificatie", "ru": "[[[SERVERNAME]]] - Подтверждение", "zh-chs": "[[[SERVERNAME]]]-验证", @@ -28478,7 +29122,9 @@ "en": "[[[USERNAME]]]", "es": "[[[USERNAME]]]", "fr": "[[[USERNAME]]]", + "hi": "[[[उपयोगकर्ता नाम]]]", "ja": "[[[USERNAME]]]", + "ko": "[[[사용자 이름]]]", "nl": "[[[USERNAME]]]", "ru": "[[[USERNAME]]]", "zh-chs": "[[[USERNAME]]]", @@ -28515,7 +29161,7 @@ "ru": "\\\\'", "zh-chs": "\\\\'", "xloc": [ - "default.handlebars->25->1716" + "default.handlebars->25->1719" ] }, { @@ -28559,7 +29205,9 @@ "en": "and follow the instructions.", "es": "y siga las instrucciones", "fr": "et suivez les instructions.", + "hi": "और निर्देशों का पालन करें।", "ja": "指示に従ってください。", + "ko": "지침을 따르십시오.", "nl": "en volg de instructies.", "ru": "и следуйте инструкциям.", "zh-chs": "并按照说明进行操作。", @@ -28591,7 +29239,9 @@ "en": "click here", "es": "haga click aquí", "fr": "cliquez ici", + "hi": "यहाँ क्लिक करें", "ja": "ここをクリック", + "ko": "여기를 클릭하십시오", "nl": "Klik hier", "ru": "кликните сюда", "zh-chs": "点击这里", @@ -28648,7 +29298,7 @@ "ru": "console.txt", "zh-chs": "console.txt", "xloc": [ - "default.handlebars->25->828" + "default.handlebars->25->831" ] }, { @@ -28666,7 +29316,7 @@ "zh-chs": "複製", "xloc": [ "default-mobile.handlebars->9->99", - "default.handlebars->25->1366" + "default.handlebars->25->1369" ] }, { @@ -28733,8 +29383,8 @@ "ru": "eventslist.csv", "zh-chs": "eventslist.csv", "xloc": [ - "default.handlebars->25->1375", - "default.handlebars->25->1380" + "default.handlebars->25->1378", + "default.handlebars->25->1383" ] }, { @@ -28751,8 +29401,8 @@ "ru": "eventslist.json", "zh-chs": "eventslist.json", "xloc": [ - "default.handlebars->25->1377", - "default.handlebars->25->1381" + "default.handlebars->25->1380", + "default.handlebars->25->1384" ] }, { @@ -28786,7 +29436,7 @@ "ru": "свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->25->1679" + "default.handlebars->25->1682" ] }, { @@ -28967,7 +29617,7 @@ "ru": "id, name, email, creation, lastlogin, groups, authfactors", "zh-chs": "id,名稱,電子郵件,創建,lastlogin,組,authfactors", "xloc": [ - "default.handlebars->25->1436" + "default.handlebars->25->1439" ] }, { @@ -29011,7 +29661,9 @@ "en": "is requesting an account password reset, click on the following link to complete the process.", "es": "solicita restablecer la contraseña de la cuenta, haga clic en el siguiente enlace para completar el proceso.", "fr": "demande une réinitialisation du mot de passe du compte, cliquez sur le lien suivant pour terminer le processus.", + "hi": "खाता पासवर्ड रीसेट का अनुरोध कर रहा है, प्रक्रिया पूरी करने के लिए निम्न लिंक पर क्लिक करें।", "ja": "がアカウントパスワードのリセットを要求している場合は、次のリンクをクリックしてプロセスを完了します。", + "ko": "계정 비밀번호 재설정을 요청하는 경우 다음 링크를 클릭하여 프로세스를 완료하십시오.", "nl": "vraagt om het opnieuw instellen van het wachtwoord van een account, klik op de volgende link om het proces te voltooien.", "ru": "запрашивает сброс пароля учетной записи, нажмите на следующую ссылку, чтобы завершить процесс.", "zh-chs": "正在要求重置帐户密码,请单击以下链接以完成该过程。", @@ -29025,7 +29677,9 @@ "en": "is requesting email verification, click on the following link to complete the process.", "es": "solicita la verificación por correo electrónico, haga clic en el siguiente enlace para completar el proceso.", "fr": "demande une vérification par e-mail, cliquez sur le lien suivant pour terminer le processus.", + "hi": "ईमेल सत्यापन का अनुरोध कर रहा है, प्रक्रिया को पूरा करने के लिए निम्न लिंक पर क्लिक करें।", "ja": "がメールの確認をリクエストしている場合は、次のリンクをクリックしてプロセスを完了してください。", + "ko": "이메일 확인을 요청하는 중이면 다음 링크를 클릭하여 프로세스를 완료하십시오.", "nl": "vraagt om e-mailverificatie, klik op de volgende link om het proces te voltooien.", "ru": "запрашивает подтверждение по электронной почте, нажмите на следующую ссылку, чтобы завершить процесс.", "zh-chs": "正在请求电子邮件验证,请单击以下链接以完成该过程。", @@ -29039,7 +29693,9 @@ "en": "is requesting you to install software to start a remote control session.", "es": "le solicita que instale software para iniciar una sesión de control remoto.", "fr": "vous demande d'installer un logiciel pour démarrer une session de contrôle à distance.", + "hi": "रिमोट कंट्रोल सेशन शुरू करने के लिए आपको सॉफ्टवेयर इंस्टॉल करने का अनुरोध कर रहा है।", "ja": "リモートコントロールセッションを開始するソフトウェアをインストールするように要求しています。", + "ko": "원격 제어 세션을 시작하기 위해 소프트웨어를 설치하도록 요청하고 있습니다.", "nl": "vraagt u om de software te installeren om een ondersteunings sessie te starten.", "ru": "просит вас установить программное обеспечение, чтобы начать сеанс удаленного управления.", "zh-chs": "正在要求您安装软件以启动远程控制会话。", @@ -29053,12 +29709,14 @@ "en": "k max, blank for default", "es": "k max, en blanco por defecto", "fr": "k max, vide par défaut", + "hi": "k अधिकतम, डिफ़ॉल्ट के लिए रिक्त", "ja": "k max、デフォルトでは空白", + "ko": "k 최대, 기본값은 공백", "nl": "k max, blank voor standaard", "ru": "k max, пусто по умолчанию", "zh-chs": "k max,默认为空白", "xloc": [ - "default.handlebars->25->1457" + "default.handlebars->25->1460" ] }, { @@ -29094,7 +29752,7 @@ "zh-chs": "移動", "xloc": [ "default-mobile.handlebars->9->100", - "default.handlebars->25->1367" + "default.handlebars->25->1370" ] }, { @@ -29125,7 +29783,7 @@ "ru": "servererrors.txt", "zh-chs": "servererrors.txt", "xloc": [ - "default.handlebars->25->1118" + "default.handlebars->25->1121" ] }, { @@ -29142,7 +29800,7 @@ "ru": "servertrace.csv", "zh-chs": "servertrace.csv", "xloc": [ - "default.handlebars->25->1714" + "default.handlebars->25->1717" ] }, { @@ -29195,7 +29853,7 @@ "ru": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "zh-chs": "時間,conn.agent,conn.users,conn.usersessions,conn.relaysession,conn.intelamt,mem.external,mem.heapused,mem.heaptotal,mem.rss", "xloc": [ - "default.handlebars->25->1692" + "default.handlebars->25->1695" ] }, { @@ -29212,7 +29870,7 @@ "ru": "time, source, message", "zh-chs": "時間,來源,訊息", "xloc": [ - "default.handlebars->25->1713" + "default.handlebars->25->1716" ] }, { @@ -29243,7 +29901,7 @@ "ru": "всего", "zh-chs": "總", "xloc": [ - "default.handlebars->25->1680" + "default.handlebars->25->1683" ] }, { @@ -29310,8 +29968,8 @@ "ru": "userlist.csv", "zh-chs": "userlist.csv", "xloc": [ - "default.handlebars->25->1432", - "default.handlebars->25->1437" + "default.handlebars->25->1435", + "default.handlebars->25->1440" ] }, { @@ -29328,8 +29986,8 @@ "ru": "userlist.json", "zh-chs": "userlist.json", "xloc": [ - "default.handlebars->25->1434", - "default.handlebars->25->1438" + "default.handlebars->25->1437", + "default.handlebars->25->1441" ] }, { @@ -29346,7 +30004,7 @@ "ru": "utc, время, тип, действие, пользователь, устройство, сообщение", "zh-chs": "utc,時間,類型,操作,用戶,設備,消息", "xloc": [ - "default.handlebars->25->1379" + "default.handlebars->25->1382" ] }, { @@ -29380,7 +30038,7 @@ "ru": "{0} Гб", "zh-chs": "{0} Gb", "xloc": [ - "default.handlebars->25->1346" + "default.handlebars->25->1349" ] }, { @@ -29397,7 +30055,7 @@ "ru": "{0} Kб", "zh-chs": "{0} Kb", "xloc": [ - "default.handlebars->25->1344" + "default.handlebars->25->1347" ] }, { @@ -29414,8 +30072,8 @@ "ru": "{0} Mб", "zh-chs": "{0} Mb", "xloc": [ - "default.handlebars->25->1345", - "default.handlebars->25->817" + "default.handlebars->25->1348", + "default.handlebars->25->820" ] }, { @@ -29432,7 +30090,7 @@ "ru": "{0} Мб, {1} Мгц", "zh-chs": "{0} Mb,{1} Mhz", "xloc": [ - "default.handlebars->25->812" + "default.handlebars->25->815" ] }, { @@ -29449,7 +30107,7 @@ "ru": "{0} активных сессий", "zh-chs": "{0}個活動會話", "xloc": [ - "default.handlebars->25->1589" + "default.handlebars->25->1592" ] }, { @@ -29466,7 +30124,7 @@ "ru": "{0} байт", "zh-chs": "{0} b", "xloc": [ - "default.handlebars->25->1343" + "default.handlebars->25->1346" ] }, { @@ -29484,7 +30142,7 @@ "zh-chs": "{0}個字節", "xloc": [ "default-mobile.handlebars->9->88", - "default.handlebars->25->1354" + "default.handlebars->25->1357" ] }, { @@ -29501,7 +30159,7 @@ "ru": "{0} байт осталось", "zh-chs": "剩餘{0}個字節", "xloc": [ - "default.handlebars->25->1338" + "default.handlebars->25->1341" ] }, { @@ -29518,7 +30176,7 @@ "ru": "{0} гигабайт осталось", "zh-chs": "剩餘{0} GB", "xloc": [ - "default.handlebars->25->1341" + "default.handlebars->25->1344" ] }, { @@ -29535,7 +30193,7 @@ "ru": "{0} групп", "zh-chs": "{0}個群組", "xloc": [ - "default.handlebars->25->1556" + "default.handlebars->25->1559" ] }, { @@ -29583,7 +30241,7 @@ "ru": "{0} килобайт осталось", "zh-chs": "剩餘{0}千字節", "xloc": [ - "default.handlebars->25->1339" + "default.handlebars->25->1342" ] }, { @@ -29618,7 +30276,7 @@ "ru": "{0} мегабайт осталось", "zh-chs": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->25->1340" + "default.handlebars->25->1343" ] }, { @@ -29652,7 +30310,7 @@ "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей...", "zh-chs": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->25->1389" + "default.handlebars->25->1392" ] }, { @@ -29784,7 +30442,7 @@ "ru": "{0} сессий", "zh-chs": "{0}個會話", "xloc": [ - "default.handlebars->25->1393" + "default.handlebars->25->1396" ] }, { @@ -29904,7 +30562,7 @@ "ru": "{0}k в 1 файле. {1}k максимум", "zh-chs": "{0} k合1檔案。最多{1} k", "xloc": [ - "default.handlebars->25->1348" + "default.handlebars->25->1351" ] }, { @@ -29913,6 +30571,7 @@ "en": "{0}k in {1} files. {2}k maximum", "es": "{0}k en {1} archivos. {2}k maximo", "fr": "{0} k dans {1} fichiers.{2} k maximum", + "hi": "{0} k {1} फाइलों में। {2} k अधिकतम", "ja": "{0} k個の{1}ファイル。 {2} k最大", "ko": "{1} 파일에서 {0} k. {2} k 최대", "nl": "{0}k in 1 file. {2}k maximum", @@ -29920,7 +30579,7 @@ "ru": "{0}k в {1} файлах. {2}k максимум", "zh-chs": "{1}個文件中有{0}個。最多{2} k", "xloc": [ - "default.handlebars->25->1347" + "default.handlebars->25->1350" ] }, { @@ -30098,4 +30757,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/views/default.handlebars b/views/default.handlebars index a0c86391..e792a7cc 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -5835,6 +5835,16 @@ var autoConnectDesktopTimer = null; function autoConnectDesktop(e) { if (autoConnectDesktopTimer == null) { autoConnectDesktopTimer = setInterval(function() { connectDesktop(null, 1) }, 1000); } else { clearInterval(autoConnectDesktopTimer); autoConnectDesktopTimer = null; } } + // Used to translate incoming agent console messages + var agentConsoleMessages = [ '', "Waiting for user to grant access...", "Denied", "Failed to start remote terminal session, {0} ({1})" ]; + function formatAgentConsoleMessage(msg, msgid, msgargs) { + var r; + if (msgargs == null) { msgargs = []; } + 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 ... + if (msgid && (msgid < agentConsoleMessages.length)) { r = EscapeHtml(format(agentConsoleMessages[msgid], (msgargs[0]), (msgargs[1]), (msgargs[2]))); } else { r = EscapeHtml(msg); } + return r.split('\n').join('
') + '

'; + } + function connectDesktop(e, contype, tsid, consent) { if (xxdialogMode) return; 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 @@ desktop.onStateChanged = onDesktopStateChange; desktop.onConsoleMessageChange = function () { if (desktop.consoleMessage) { - Q('p11DeskConsoleMsg').innerHTML += EscapeHtml(desktop.consoleMessage).split('\n').join('
') + '

'; + Q('p11DeskConsoleMsg').innerHTML += formatAgentConsoleMessage(desktop.consoleMessage, desktop.consoleMessageId, desktop.consoleMessageArgs); QV('p11DeskConsoleMsg', true); - if (p11DeskConsoleMsgTimer != null) { clearTimeout(p11DeskConsoleMsgTimer); } - p11DeskConsoleMsgTimer = setTimeout(p11clearConsoleMsg, 8000); + //if (p11DeskConsoleMsgTimer != null) { clearTimeout(p11DeskConsoleMsgTimer); } + //p11DeskConsoleMsgTimer = setTimeout(p11clearConsoleMsg, 8000); } else { p11clearConsoleMsg(); } @@ -6792,10 +6802,12 @@ terminal.attemptWebRTC = false; // Never do WebRTC on terminal, because of a race condition we can't do it. terminal.onConsoleMessageChange = function (server, msg) { if (terminal.consoleMessage) { - Q('p12TermConsoleMsg').innerHTML += EscapeHtml(terminal.consoleMessage).split('\n').join('
') + '

'; + Q('p12TermConsoleMsg').innerHTML += formatAgentConsoleMessage(terminal.consoleMessage, terminal.consoleMessageId, terminal.consoleMessageArgs); QV('p12TermConsoleMsg', true); - if (p12TermConsoleMsgTimer != null) { clearTimeout(p12TermConsoleMsgTimer); } - p12TermConsoleMsgTimer = setTimeout(p12clearConsoleMsg, 8000); + //if (p12DeskConsoleMsgTimer != null) { clearTimeout(p12DeskConsoleMsgTimer); } + //p12TermConsoleMsgTimer = setTimeout(p12clearConsoleMsg, 8000); + } else { + p12clearConsoleMsg(); } }; } else { @@ -6813,10 +6825,12 @@ terminal.onStateChanged = onTerminalStateChange; terminal.onConsoleMessageChange = function () { if (terminal.consoleMessage) { - Q('p12TermConsoleMsg').innerHTML += EscapeHtml(terminal.consoleMessage).split('\n').join('
') + '

'; + Q('p12TermConsoleMsg').innerHTML += formatAgentConsoleMessage(terminal.consoleMessage, terminal.consoleMessageId, terminal.consoleMessageArgs); QV('p12TermConsoleMsg', true); - if (p12TermConsoleMsgTimer != null) { clearTimeout(p12TermConsoleMsgTimer); } - p12TermConsoleMsgTimer = setTimeout(p12clearConsoleMsg, 8000); + //if (p12DeskConsoleMsgTimer != null) { clearTimeout(p12DeskConsoleMsgTimer); } + //p12TermConsoleMsgTimer = setTimeout(p12clearConsoleMsg, 8000); + } else { + p12clearConsoleMsg(); } } terminal.Start(terminalNode._id); @@ -6963,10 +6977,12 @@ files.onStateChanged = onFilesStateChange; files.onConsoleMessageChange = function () { if (files.consoleMessage) { - Q('p13FilesConsoleMsg').innerHTML += EscapeHtml(files.consoleMessage).split('\n').join('
') + '

'; + Q('p13FilesConsoleMsg').innerHTML += formatAgentConsoleMessage(files.consoleMessage, files.consoleMessageId, files.consoleMessageArgs); QV('p13FilesConsoleMsg', true); - if (p13FilesConsoleMsgTimer != null) { clearTimeout(p13FilesConsoleMsgTimer); } - p13FilesConsoleMsgTimer = setTimeout(p13clearConsoleMsg, 8000); + //if (p13DeskConsoleMsgTimer != null) { clearTimeout(p13DeskConsoleMsgTimer); } + //p13FilesConsoleMsgTimer = setTimeout(p13clearConsoleMsg, 8000); + } else { + p13clearConsoleMsg(); } } files.Start(filesNode._id);