Internationalization improvements.

Ylian Saint-Hilaire committed Sep 1, 2021 at 20:06 UTC a9116c2d26f282260f89883866ec5f238f66eadf
3 files changed +2986 -2715
meshcentral.js
+52 -27
@@ -727,7 +727,7 @@ function CreateMeshCentralServer(config, args) {
727 }
728
729 // Check top level configuration for any unreconized values
730 - if (config) { for (var i in config) { if ((typeof i == 'string') && (i.length > 0) && (i[0] != '_') && (['settings', 'domaindefaults', 'domains', 'configfiles', 'smtp', 'letsencrypt', 'peers', 'sms', 'sendgrid', 'firebase', 'firebaserelay', '$schema'].indexOf(i) == -1)) { addServerWarning('Unrecognized configuration option \"' + i + '\".'); } } }
730 + if (config) { for (var i in config) { if ((typeof i == 'string') && (i.length > 0) && (i[0] != '_') && (['settings', 'domaindefaults', 'domains', 'configfiles', 'smtp', 'letsencrypt', 'peers', 'sms', 'sendgrid', 'firebase', 'firebaserelay', '$schema'].indexOf(i) == -1)) { addServerWarning('Unrecognized configuration option \"' + i + '\".', 3, [ i ]); } } }
731
732 if (typeof obj.args.userallowedip == 'string') { if (obj.args.userallowedip == '') { config.settings.userallowedip = obj.args.userallowedip = null; } else { config.settings.userallowedip = obj.args.userallowedip = obj.args.userallowedip.split(','); } }
733 if (typeof obj.args.userblockedip == 'string') { if (obj.args.userblockedip == '') { config.settings.userblockedip = obj.args.userblockedip = null; } else { config.settings.userblockedip = obj.args.userblockedip = obj.args.userblockedip.split(','); } }
@@ -742,7 +742,7 @@ function CreateMeshCentralServer(config, args) {
742 const verSplit = process.version.substring(1).split('.');
743 var ver = parseInt(verSplit[0]) + (parseInt(verSplit[1]) / 100);
744 if (((ver >= 11.11) && (ver <= 12.15)) || (ver == 13.2)) {
745 - if ((obj.args.wscompression === true) || (obj.args.agentwscompression === true)) { addServerWarning('WebSocket compression is disabled, this feature is broken in NodeJS v11.11 to v12.15 and v13.2'); }
745 + if ((obj.args.wscompression === true) || (obj.args.agentwscompression === true)) { addServerWarning('WebSocket compression is disabled, this feature is broken in NodeJS v11.11 to v12.15 and v13.2', 4); }
746 obj.args.wscompression = obj.args.agentwscompression = false;
747 obj.config.settings.wscompression = obj.config.settings.agentwscompression = false;
748 }
@@ -1284,9 +1284,9 @@ function CreateMeshCentralServer(config, args) {
1284 obj.config.domains[i].amtmanager.tlsrootcert2 = obj.certificateOperations.loadGenericCertAndKey(obj.config.domains[i].amtmanager.tlsrootcert);
1285 if (obj.config.domains[i].amtmanager.tlsrootcert2 == null) { // Show an error message if needed
1286 if (i == '') {
1287 - addServerWarning("Unable to load Intel AMT TLS root certificate for default domain.");
1287 + addServerWarning("Unable to load Intel AMT TLS root certificate for default domain.", 5);
1288 } else {
1289 - addServerWarning("Unable to load Intel AMT TLS root certificate for domain " + i + ".");
1289 + addServerWarning("Unable to load Intel AMT TLS root certificate for domain " + i + ".", 6, [ i ]);
1290 }
1291 }
1292 }
@@ -1298,9 +1298,9 @@ function CreateMeshCentralServer(config, args) {
1298
1299 // Look at passed in arguments
1300 if ((obj.args.user != null) && (typeof obj.args.user != 'string')) { delete obj.args.user; }
1301 - if ((obj.args.ciralocalfqdn != null) && ((obj.args.lanonly == true) || (obj.args.wanonly == true))) { addServerWarning("CIRA local FQDN's ignored when server in LAN-only or WAN-only mode."); }
1302 - if ((obj.args.ciralocalfqdn != null) && (obj.args.ciralocalfqdn.split(',').length > 4)) { addServerWarning("Can't have more than 4 CIRA local FQDN's. Ignoring value."); obj.args.ciralocalfqdn = null; }
1303 - if (obj.args.ignoreagenthashcheck === true) { addServerWarning("Agent hash checking is being skipped, this is unsafe."); }
1301 + if ((obj.args.ciralocalfqdn != null) && ((obj.args.lanonly == true) || (obj.args.wanonly == true))) { addServerWarning("CIRA local FQDN's ignored when server in LAN-only or WAN-only mode.", 7); }
1302 + if ((obj.args.ciralocalfqdn != null) && (obj.args.ciralocalfqdn.split(',').length > 4)) { addServerWarning("Can't have more than 4 CIRA local FQDN's. Ignoring value.", 8); obj.args.ciralocalfqdn = null; }
1303 + if (obj.args.ignoreagenthashcheck === true) { addServerWarning("Agent hash checking is being skipped, this is unsafe.", 9); }
1304 if (obj.args.port == null || typeof obj.args.port != 'number') { obj.args.port = 443; }
1305 if (obj.args.aliasport != null && (typeof obj.args.aliasport != 'number')) obj.args.aliasport = null;
1306 if (obj.args.mpsport == null || typeof obj.args.mpsport != 'number') obj.args.mpsport = 4433;
@@ -1418,15 +1418,15 @@ function CreateMeshCentralServer(config, args) {
1418 // Check Let's Encrypt settings
1419 var leok = true;
1420 if ((typeof obj.config.letsencrypt.names != 'string') && (typeof obj.config.settings.cert == 'string')) { obj.config.letsencrypt.names = obj.config.settings.cert; }
1421 - if (typeof obj.config.letsencrypt.email != 'string') { leok = false; addServerWarning("Missing Let's Encrypt email address."); }
1422 - else if (typeof obj.config.letsencrypt.names != 'string') { leok = false; addServerWarning("Invalid Let's Encrypt host names."); }
1423 - else if (obj.config.letsencrypt.names.indexOf('*') >= 0) { leok = false; addServerWarning("Invalid Let's Encrypt names, can't contain a *."); }
1424 - else if (obj.config.letsencrypt.email.split('@').length != 2) { leok = false; addServerWarning("Invalid Let's Encrypt email address."); }
1425 - else if (obj.config.letsencrypt.email.trim() !== obj.config.letsencrypt.email) { leok = false; addServerWarning("Invalid Let's Encrypt email address."); }
1421 + if (typeof obj.config.letsencrypt.email != 'string') { leok = false; addServerWarning("Missing Let's Encrypt email address.", 10); }
1422 + else if (typeof obj.config.letsencrypt.names != 'string') { leok = false; addServerWarning("Invalid Let's Encrypt host names.", 11); }
1423 + else if (obj.config.letsencrypt.names.indexOf('*') >= 0) { leok = false; addServerWarning("Invalid Let's Encrypt names, can't contain a *.", 12); }
1424 + else if (obj.config.letsencrypt.email.split('@').length != 2) { leok = false; addServerWarning("Invalid Let's Encrypt email address.", 10); }
1425 + else if (obj.config.letsencrypt.email.trim() !== obj.config.letsencrypt.email) { leok = false; addServerWarning("Invalid Let's Encrypt email address.", 10); }
1426 else {
1427 var le = require('./letsencrypt.js');
1428 try { obj.letsencrypt = le.CreateLetsEncrypt(obj); } catch (ex) { console.log(ex); }
1429 - if (obj.letsencrypt == null) { addServerWarning("Unable to setup Let's Encrypt module."); leok = false; }
1429 + if (obj.letsencrypt == null) { addServerWarning("Unable to setup Let's Encrypt module.", 13); leok = false; }
1430 }
1431 if (leok == true) {
1432 // Check that the email address domain MX resolves.
@@ -1437,12 +1437,12 @@ function CreateMeshCentralServer(config, args) {
1437 if (err == null) {
1438 obj.letsencrypt.getCertificate(certs, obj.StartEx3); // Use Let's Encrypt
1439 } else {
1440 - for (var i in err) { addServerWarning("Invalid Let's Encrypt names, unable to resolve: " + err[i]); }
1440 + for (var i in err) { addServerWarning("Invalid Let's Encrypt names, unable to resolve: " + err[i], 14, [err[i]]); }
1441 obj.StartEx3(certs); // Let's Encrypt did not load, just use the configured certificates
1442 }
1443 });
1444 } else {
1445 - addServerWarning("Invalid Let's Encrypt email address, unable to resolve: " + obj.config.letsencrypt.email.split('@')[1]);
1445 + addServerWarning("Invalid Let's Encrypt email address, unable to resolve: " + obj.config.letsencrypt.email.split('@')[1], 15, [obj.config.letsencrypt.email.split('@')[1]]);
1446 obj.StartEx3(certs); // Let's Encrypt did not load, just use the configured certificates
1447 }
1448 });
@@ -1487,12 +1487,12 @@ function CreateMeshCentralServer(config, args) {
1487 for (var i in ipranges) { if (ipranges[i] != '') { obj.args.trustedproxy.push(ipranges[i]); } }
1488 obj.config.settings.trustedproxy = obj.args.trustedproxy;
1489 } else {
1490 - addServerWarning("Unable to load CloudFlare trusted proxy IPv6 address list.");
1490 + addServerWarning("Unable to load CloudFlare trusted proxy IPv6 address list.", 16);
1491 }
1492 obj.StartEx4(); // Keep going
1493 });
1494 } else {
1495 - addServerWarning("Unable to load CloudFlare trusted proxy IPv4 address list.");
1495 + addServerWarning("Unable to load CloudFlare trusted proxy IPv4 address list.", 16);
1496 obj.StartEx4(); // Keep going
1497 }
1498 });
@@ -1592,12 +1592,12 @@ function CreateMeshCentralServer(config, args) {
1592 // Sendgrid server
1593 obj.mailserver = require('./meshmail.js').CreateMeshMail(obj);
1594 obj.mailserver.verify();
1595 - if (obj.args.lanonly == true) { addServerWarning("SendGrid server has limited use in LAN mode."); }
1595 + if (obj.args.lanonly == true) { addServerWarning("SendGrid server has limited use in LAN mode.", 17); }
1596 } else if ((obj.config.smtp != null) && (obj.config.smtp.host != null) && (obj.config.smtp.from != null)) {
1597 // SMTP server
1598 obj.mailserver = require('./meshmail.js').CreateMeshMail(obj);
1599 obj.mailserver.verify();
1600 - if (obj.args.lanonly == true) { addServerWarning("SMTP server has limited use in LAN mode."); }
1600 + if (obj.args.lanonly == true) { addServerWarning("SMTP server has limited use in LAN mode.", 18); }
1601 }
1602
1603 // Setup the email server for each domain
@@ -1606,12 +1606,12 @@ function CreateMeshCentralServer(config, args) {
1606 // Sendgrid server
1607 obj.config.domains[i].mailserver = require('./meshmail.js').CreateMeshMail(obj, obj.config.domains[i]);
1608 obj.config.domains[i].mailserver.verify();
1609 - if (obj.args.lanonly == true) { addServerWarning("SendGrid server has limited use in LAN mode."); }
1609 + if (obj.args.lanonly == true) { addServerWarning("SendGrid server has limited use in LAN mode.", 17); }
1610 } else if ((obj.config.domains[i].smtp != null) && (obj.config.domains[i].smtp.host != null) && (obj.config.domains[i].smtp.from != null)) {
1611 // SMTP server
1612 obj.config.domains[i].mailserver = require('./meshmail.js').CreateMeshMail(obj, obj.config.domains[i]);
1613 obj.config.domains[i].mailserver.verify();
1614 - if (obj.args.lanonly == true) { addServerWarning("SMTP server has limited use in LAN mode."); }
1614 + if (obj.args.lanonly == true) { addServerWarning("SMTP server has limited use in LAN mode.", 18); }
1615 } else {
1616 // Setup the parent mail server for this domain
1617 if (obj.mailserver != null) { obj.config.domains[i].mailserver = obj.mailserver; }
@@ -1621,7 +1621,7 @@ function CreateMeshCentralServer(config, args) {
1621 // Setup SMS gateway
1622 if (config.sms != null) {
1623 obj.smsserver = require('./meshsms.js').CreateMeshSMS(obj);
1624 - if ((obj.smsserver != null) && (obj.args.lanonly == true)) { addServerWarning("SMS gateway has limited use in LAN mode."); }
1624 + if ((obj.smsserver != null) && (obj.args.lanonly == true)) { addServerWarning("SMS gateway has limited use in LAN mode.", 19); }
1625 }
1626
1627 // Setup web based push notifications
@@ -1663,7 +1663,7 @@ function CreateMeshCentralServer(config, args) {
1663 if ((obj.config) && (obj.config.settings) && (typeof obj.config.settings.logincookieencryptionkey == 'string')) {
1664 // We have a string, hash it and use that as a key
1665 try { obj.loginCookieEncryptionKey = Buffer.from(obj.config.settings.logincookieencryptionkey, 'hex'); } catch (ex) { }
1666 - if ((obj.loginCookieEncryptionKey == null) || (obj.loginCookieEncryptionKey.length != 80)) { addServerWarning("Invalid \"LoginCookieEncryptionKey\" in config.json."); obj.loginCookieEncryptionKey = null; }
1666 + if ((obj.loginCookieEncryptionKey == null) || (obj.loginCookieEncryptionKey.length != 80)) { addServerWarning("Invalid \"LoginCookieEncryptionKey\" in config.json.", 20); obj.loginCookieEncryptionKey = null; }
1667 }
1668
1669 // Login cookie encryption key not set, use one from the database
@@ -2996,7 +2996,7 @@ function CreateMeshCentralServer(config, args) {
2996 function logWarnEvent(msg) { if (obj.servicelog != null) { obj.servicelog.warn(msg); } console.log(msg); }
2997 function logErrorEvent(msg) { if (obj.servicelog != null) { obj.servicelog.error(msg); } console.error(msg); }
2998 obj.getServerWarnings = function () { return serverWarnings; }
2999 - obj.addServerWarning = function(msg, print) { serverWarnings.push(msg); if (print !== false) { console.log("WARNING: " + msg); } }
2999 + obj.addServerWarning = function (msg, id, args, print) { serverWarnings.push({ msg: msg, id: id, args: args }); if (print !== false) { console.log("WARNING: " + msg); } }
3000
3001 // auth.log functions
3002 obj.authLog = function (server, msg) {
@@ -3139,7 +3139,32 @@ process.on('SIGINT', function () { if (meshserver != null) { meshserver.Stop();
3139
3140 // Add a server warning, warnings will be shown to the administrator on the web application
3141 var serverWarnings = [];
3142 -function addServerWarning(msg, print) { serverWarnings.push(msg); if (print !== false) { console.log("WARNING: " + msg); } }
3142 +function addServerWarning(msg, id, args, print) { serverWarnings.push({ msg: msg, id: id, args: args }); if (print !== false) { console.log("WARNING: " + msg); } }
3143 +
3144 +/*
3145 +var ServerWarnings = {
3146 + 1: "MeshCentral SSH support requires NodeJS 11 or higher.",
3147 + 2: "Missing WebDAV parameters.",
3148 + 3: "Unrecognized configuration option \"{0}\".",
3149 + 4: "WebSocket compression is disabled, this feature is broken in NodeJS v11.11 to v12.15 and v13.2",
3150 + 5: "Unable to load Intel AMT TLS root certificate for default domain.",
3151 + 6: "Unable to load Intel AMT TLS root certificate for domain {0}.",
3152 + 7: "CIRA local FQDN's ignored when server in LAN-only or WAN-only mode.",
3153 + 8: "Can't have more than 4 CIRA local FQDN's. Ignoring value.",
3154 + 9: "Agent hash checking is being skipped, this is unsafe.",
3155 + 10: "Missing Let's Encrypt email address.",
3156 + 11: "Invalid Let's Encrypt host names.",
3157 + 12: "Invalid Let's Encrypt names, can't contain a *.",
3158 + 13: "Unable to setup Let's Encrypt module.",
3159 + 14: "Invalid Let's Encrypt names, unable to resolve: {0}",
3160 + 15: "Invalid Let's Encrypt email address, unable to resolve: {0}",
3161 + 16: "Unable to load CloudFlare trusted proxy IPv6 address list.",
3162 + 17: "SendGrid server has limited use in LAN mode.",
3163 + 18: "SMTP server has limited use in LAN mode.",
3164 + 19: "SMS gateway has limited use in LAN mode.",
3165 + 20: "Invalid \"LoginCookieEncryptionKey\" in config.json."
3166 +};
3167 +*/
3168
3169 // Load the really basic modules
3170 var npmpath = 'npm';
@@ -3225,7 +3250,7 @@ function mainStart() {
3250 if (require('os').platform() == 'win32') { modules.push('node-windows'); modules.push('loadavg-windows'); if (sspi == true) { modules.push('node-sspi'); } } // Add Windows modules
3251 if (ldap == true) { modules.push('ldapauth-fork'); }
3252 if (mstsc == true) { modules.push('node-rdpjs-2'); }
3228 - if (ssh == true) { if (nodeVersion < 11) { addServerWarning('MeshCentral SSH support requires NodeJS 11 or higher.'); } else { modules.push('ssh2'); } }
3253 + if (ssh == true) { if (nodeVersion < 11) { addServerWarning('MeshCentral SSH support requires NodeJS 11 or higher.', 1); } else { modules.push('ssh2'); } }
3254 if (passport != null) { modules.push(...passport); }
3255 if (sessionRecording == true) { modules.push('image-size'); } // Need to get the remote desktop JPEG sizes to index the recodring file.
3256 if (config.letsencrypt != null) { modules.push('acme-client'); } // Add acme-client module
@@ -3249,7 +3274,7 @@ function mainStart() {
3274 if (typeof config.settings.autobackup.googledrive == 'object') { modules.push('googleapis'); }
3275 // Enable WebDAV Support
3276 if (typeof config.settings.autobackup.webdav == 'object') {
3252 - if ((typeof config.settings.autobackup.webdav.url != 'string') || (typeof config.settings.autobackup.webdav.username != 'string') || (typeof config.settings.autobackup.webdav.password != 'string')) { addServerWarning("Missing WebDAV parameters.", !args.launch); } else { modules.push('webdav'); }
3277 + if ((typeof config.settings.autobackup.webdav.url != 'string') || (typeof config.settings.autobackup.webdav.username != 'string') || (typeof config.settings.autobackup.webdav.password != 'string')) { addServerWarning("Missing WebDAV parameters.", 2, null, !args.launch); } else { modules.push('webdav'); }
3278 }
3279 }
3280
translate/translate.json
+2870 -2674
@@ -44,8 +44,8 @@
44 "zh-chs": " + CIRA",
45 "zh-cht": " + CIRA",
46 "xloc": [
47 - "default.handlebars->35->1719",
48 - "default.handlebars->35->1721"
47 + "default.handlebars->37->1751",
48 + "default.handlebars->37->1753"
49 ]
50 },
51 {
@@ -70,7 +70,7 @@
70 "zh-cht": " - 1天后重設。",
71 "xloc": [
72 "default-mobile.handlebars->11->57",
73 - "default.handlebars->35->72"
73 + "default.handlebars->37->72"
74 ]
75 },
76 {
@@ -95,7 +95,7 @@
95 "zh-cht": " - 1小時後重設。",
96 "xloc": [
97 "default-mobile.handlebars->11->55",
98 - "default.handlebars->35->70"
98 + "default.handlebars->37->70"
99 ]
100 },
101 {
@@ -120,7 +120,7 @@
120 "zh-cht": " - 1分鐘後重設。",
121 "xloc": [
122 "default-mobile.handlebars->11->53",
123 - "default.handlebars->35->68"
123 + "default.handlebars->37->68"
124 ]
125 },
126 {
@@ -145,7 +145,7 @@
145 "zh-cht": " - 在{0}天內重置。",
146 "xloc": [
147 "default-mobile.handlebars->11->58",
148 - "default.handlebars->35->73"
148 + "default.handlebars->37->73"
149 ]
150 },
151 {
@@ -170,7 +170,7 @@
170 "zh-cht": " - 在{0}小時內重置。",
171 "xloc": [
172 "default-mobile.handlebars->11->56",
173 - "default.handlebars->35->71"
173 + "default.handlebars->37->71"
174 ]
175 },
176 {
@@ -195,7 +195,7 @@
195 "zh-cht": " - 在{0}分鐘內重置。",
196 "xloc": [
197 "default-mobile.handlebars->11->54",
198 - "default.handlebars->35->69"
198 + "default.handlebars->37->69"
199 ]
200 },
201 {
@@ -221,8 +221,8 @@
221 "xloc": [
222 "default-mobile.handlebars->11->51",
223 "default-mobile.handlebars->11->52",
224 - "default.handlebars->35->66",
225 - "default.handlebars->35->67"
224 + "default.handlebars->37->66",
225 + "default.handlebars->37->67"
226 ]
227 },
228 {
@@ -287,7 +287,7 @@
287 "zh-chs": " 可以使用密码提示,但不建议使用。",
288 "zh-cht": " 可以使用密碼提示,但不建議使用。",
289 "xloc": [
290 - "default.handlebars->35->1619"
290 + "default.handlebars->37->1651"
291 ]
292 },
293 {
@@ -311,8 +311,8 @@
311 "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
312 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
313 "xloc": [
314 - "default.handlebars->35->1813",
315 - "default.handlebars->35->2312"
314 + "default.handlebars->37->1845",
315 + "default.handlebars->37->2344"
316 ]
317 },
318 {
@@ -426,7 +426,7 @@
426 "zh-chs": " TLS。",
427 "zh-cht": " TLS。",
428 "xloc": [
429 - "default.handlebars->35->218"
429 + "default.handlebars->37->240"
430 ]
431 },
432 {
@@ -450,7 +450,7 @@
450 "zh-chs": " 没有TLS。",
451 "zh-cht": " 沒有TLS。",
452 "xloc": [
453 - "default.handlebars->35->219"
453 + "default.handlebars->37->241"
454 ]
455 },
456 {
@@ -667,9 +667,9 @@
667 "nl": "'",
668 "pl": "'",
669 "pt": "'",
670 + "pt-br": "'",
671 "ru": "'",
672 "zh-chs": "'",
672 - "pt-br": "'",
673 "xloc": [
674 "agentinvite.handlebars->3->4",
675 "agentinvite.handlebars->3->5"
@@ -688,8 +688,8 @@
688 "nl": "(",
689 "pl": "(",
690 "pt": "(",
691 - "ru": "(",
691 "pt-br": "(",
692 + "ru": "(",
693 "xloc": [
694 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1"
695 ]
@@ -755,7 +755,7 @@
755 "zh-chs": "(可选的)",
756 "zh-cht": "(可選的)",
757 "xloc": [
758 - "default.handlebars->35->445"
758 + "default.handlebars->37->470"
759 ]
760 },
761 {
@@ -771,8 +771,8 @@
771 "nl": ")",
772 "pl": ")",
773 "pt": ")",
774 - "ru": ")",
774 "pt-br": ")",
775 + "ru": ")",
776 "xloc": [
777 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1"
778 ]
@@ -798,8 +798,8 @@
798 "zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。",
799 "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
800 "xloc": [
801 - "default.handlebars->35->1778",
802 - "default.handlebars->35->411"
801 + "default.handlebars->37->1810",
802 + "default.handlebars->37->433"
803 ]
804 },
805 {
@@ -823,7 +823,7 @@
823 "zh-chs": "*对于BSD,首先运行“ pkg install wget sudo bash ”。",
824 "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
825 "xloc": [
826 - "default.handlebars->35->492"
826 + "default.handlebars->37->517"
827 ]
828 },
829 {
@@ -860,8 +860,8 @@
860 "nl": ",",
861 "pl": ",",
862 "pt": ",",
863 - "ru": ",",
863 "pt-br": ",",
864 + "ru": ",",
865 "xloc": [
866 "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message",
867 "default.handlebars->container->column_l->p0->p0message"
@@ -889,7 +889,7 @@
889 "zh-cht": ",",
890 "xloc": [
891 "default-mobile.handlebars->11->651",
892 - "default.handlebars->35->1887"
892 + "default.handlebars->37->1919"
893 ]
894 },
895 {
@@ -934,7 +934,7 @@
934 "zh-cht": ",只適用於Intel&reg;AMT",
935 "xloc": [
936 "default-mobile.handlebars->11->179",
937 - "default.handlebars->35->286"
937 + "default.handlebars->37->308"
938 ]
939 },
940 {
@@ -957,7 +957,7 @@
957 "tr": ", Yerel Cihazlar",
958 "zh-chs": ", 本地设备",
959 "xloc": [
960 - "default.handlebars->35->287"
960 + "default.handlebars->37->309"
961 ]
962 },
963 {
@@ -982,7 +982,7 @@
982 "zh-cht": ",MQTT在線",
983 "xloc": [
984 "default-mobile.handlebars->11->568",
985 - "default.handlebars->35->1329"
985 + "default.handlebars->37->1361"
986 ]
987 },
988 {
@@ -1005,7 +1005,7 @@
1005 "tr": ", İzin Yok",
1006 "zh-chs": ", 不同意",
1007 "xloc": [
1008 - "default.handlebars->35->868"
1008 + "default.handlebars->37->894"
1009 ]
1010 },
1011 {
@@ -1029,7 +1029,7 @@
1029 "zh-chs": ",提示同意",
1030 "zh-cht": ",提示同意",
1031 "xloc": [
1032 - "default.handlebars->35->869"
1032 + "default.handlebars->37->895"
1033 ]
1034 },
1035 {
@@ -1073,7 +1073,7 @@
1073 "zh-chs": ",软体KVM",
1074 "zh-cht": ",軟體KVM",
1075 "xloc": [
1076 - "default.handlebars->35->1076",
1076 + "default.handlebars->37->1102",
1077 "sharing.handlebars->11->12"
1078 ]
1079 },
@@ -1097,7 +1097,7 @@
1097 "tr": ", Araç Çubuğu",
1098 "zh-chs": ", 工具栏",
1099 "xloc": [
1100 - "default.handlebars->35->870"
1100 + "default.handlebars->37->896"
1101 ]
1102 },
1103 {
@@ -1120,7 +1120,7 @@
1120 "tr": ", Sadece Görüntüle",
1121 "zh-chs": ", 只读",
1122 "xloc": [
1123 - "default.handlebars->35->867"
1123 + "default.handlebars->37->893"
1124 ]
1125 },
1126 {
@@ -1147,9 +1147,9 @@
1147 "default-mobile.handlebars->11->371",
1148 "default-mobile.handlebars->11->406",
1149 "default-mobile.handlebars->11->423",
1150 - "default.handlebars->35->1082",
1151 - "default.handlebars->35->1147",
1152 - "default.handlebars->35->1173",
1150 + "default.handlebars->37->1108",
1151 + "default.handlebars->37->1179",
1152 + "default.handlebars->37->1205",
1153 "sharing.handlebars->11->19",
1154 "sharing.handlebars->11->27",
1155 "sharing.handlebars->11->44",
@@ -1337,7 +1337,7 @@
1337 "zh-chs": ",{0}观看",
1338 "zh-cht": ",{0}觀看",
1339 "xloc": [
1340 - "default.handlebars->35->1077",
1340 + "default.handlebars->37->1103",
1341 "sharing.handlebars->11->13"
1342 ]
1343 },
@@ -1354,8 +1354,8 @@
1354 "nl": "-",
1355 "pl": "-",
1356 "pt": "-",
1357 - "ru": "-",
1357 "pt-br": "-",
1358 + "ru": "-",
1359 "xloc": [
1360 "default.handlebars->container->column_l->p2->p2info->p2createMeshLink1",
1361 "ssh.handlebars->p11->deskarea0->deskarea1->3",
@@ -1397,11 +1397,11 @@
1397 "nl": ".",
1398 "pl": ".",
1399 "pt": ".",
1400 + "pt-br": ".",
1401 "ru": ".",
1402 "sv": ".",
1403 "zh-chs": ".",
1404 "zh-cht": ".",
1404 - "pt-br": ".",
1405 "xloc": [
1406 "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message",
1407 "default.handlebars->container->column_l->p0->p0message",
@@ -1439,9 +1439,9 @@
1439 "xloc": [
1440 "default-mobile.handlebars->11->132",
1441 "default-mobile.handlebars->11->439",
1442 - "default.handlebars->35->1192",
1443 - "default.handlebars->35->1939",
1444 - "default.handlebars->35->2510",
1442 + "default.handlebars->37->1224",
1443 + "default.handlebars->37->1971",
1444 + "default.handlebars->37->2542",
1445 "sharing.handlebars->11->50"
1446 ]
1447 },
@@ -1479,12 +1479,12 @@
1479 "nl": "0",
1480 "pl": "0",
1481 "pt": "0",
1482 + "pt-br": "0",
1483 "ru": "0",
1484 "sv": "0",
1485 "tr": "0",
1486 "zh-chs": "0",
1487 "zh-cht": "0",
1487 - "pt-br": "0",
1488 "xloc": [
1489 "default-mobile.handlebars->container->masthead->notificationCount->notificationCount2",
1490 "default.handlebars->container->masthead->7->notificationCount"
@@ -1596,7 +1596,7 @@
1596 "zh-chs": "1个活跃时段",
1597 "zh-cht": "1個活躍時段",
1598 "xloc": [
1599 - "default.handlebars->35->2400"
1599 + "default.handlebars->37->2432"
1600 ]
1601 },
1602 {
@@ -1622,7 +1622,7 @@
1622 "xloc": [
1623 "default-mobile.handlebars->11->142",
1624 "default-mobile.handlebars->11->694",
1625 - "default.handlebars->35->1963",
1625 + "default.handlebars->37->1995",
1626 "download.handlebars->3->1",
1627 "download2.handlebars->5->1",
1628 "sharing.handlebars->11->96"
@@ -1649,7 +1649,7 @@
1649 "zh-chs": "1条连接",
1650 "zh-cht": "1位聯絡文",
1651 "xloc": [
1652 - "default.handlebars->35->1079",
1652 + "default.handlebars->37->1105",
1653 "sharing.handlebars->11->15"
1654 ]
1655 },
@@ -1674,9 +1674,9 @@
1674 "zh-chs": "1天",
1675 "zh-cht": "1天",
1676 "xloc": [
1677 - "default.handlebars->35->226",
1678 - "default.handlebars->35->436",
1679 - "default.handlebars->35->450"
1677 + "default.handlebars->37->248",
1678 + "default.handlebars->37->461",
1679 + "default.handlebars->37->475"
1680 ]
1681 },
1682 {
@@ -1700,7 +1700,7 @@
1700 "zh-chs": "1组",
1701 "zh-cht": "1群",
1702 "xloc": [
1703 - "default.handlebars->35->2359"
1703 + "default.handlebars->37->2391"
1704 ]
1705 },
1706 {
@@ -1724,9 +1724,9 @@
1724 "zh-chs": "1小时",
1725 "zh-cht": "1小時",
1726 "xloc": [
1727 - "default.handlebars->35->224",
1728 - "default.handlebars->35->434",
1729 - "default.handlebars->35->448"
1727 + "default.handlebars->37->246",
1728 + "default.handlebars->37->459",
1729 + "default.handlebars->37->473"
1730 ]
1731 },
1732 {
@@ -1750,8 +1750,8 @@
1750 "zh-chs": "1分钟",
1751 "zh-cht": "1分鐘",
1752 "xloc": [
1753 - "default.handlebars->35->1585",
1754 - "default.handlebars->35->935"
1753 + "default.handlebars->37->1617",
1754 + "default.handlebars->37->961"
1755 ]
1756 },
1757 {
@@ -1775,7 +1775,7 @@
1775 "zh-chs": "1分钟之后断开连接",
1776 "zh-cht": "1分鐘之後離線",
1777 "xloc": [
1778 - "default.handlebars->35->76"
1778 + "default.handlebars->37->76"
1779 ]
1780 },
1781 {
@@ -1799,9 +1799,9 @@
1799 "zh-chs": "1个月",
1800 "zh-cht": "1個月",
1801 "xloc": [
1802 - "default.handlebars->35->228",
1803 - "default.handlebars->35->438",
1804 - "default.handlebars->35->452"
1802 + "default.handlebars->37->250",
1803 + "default.handlebars->37->463",
1804 + "default.handlebars->37->477"
1805 ]
1806 },
1807 {
@@ -1825,7 +1825,7 @@
1825 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1826 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1827 "xloc": [
1828 - "default.handlebars->35->2134"
1828 + "default.handlebars->37->2166"
1829 ]
1830 },
1831 {
@@ -1849,7 +1849,7 @@
1849 "zh-chs": "1个节点",
1850 "zh-cht": "1個節點",
1851 "xloc": [
1852 - "default.handlebars->35->523"
1852 + "default.handlebars->37->549"
1853 ]
1854 },
1855 {
@@ -1913,7 +1913,7 @@
1913 "zh-chs": "1秒",
1914 "xloc": [
1915 "default-mobile.handlebars->11->321",
1916 - "default.handlebars->35->964"
1916 + "default.handlebars->37->990"
1917 ]
1918 },
1919 {
@@ -1937,7 +1937,7 @@
1937 "zh-chs": "1秒之后断开连接",
1938 "zh-cht": "1秒之後離線",
1939 "xloc": [
1940 - "default.handlebars->35->74"
1940 + "default.handlebars->37->74"
1941 ]
1942 },
1943 {
@@ -1960,7 +1960,7 @@
1960 "tr": "1 seçili cihaz çevrimdışı.",
1961 "zh-chs": "1 个选定的设备处于离线状态。",
1962 "xloc": [
1963 - "default.handlebars->35->582"
1963 + "default.handlebars->37->608"
1964 ]
1965 },
1966 {
@@ -1983,7 +1983,7 @@
1983 "tr": "1 seçili cihaz çevrimiçi.",
1984 "zh-chs": "1 个选定的设备在线。",
1985 "xloc": [
1986 - "default.handlebars->35->580"
1986 + "default.handlebars->37->606"
1987 ]
1988 },
1989 {
@@ -2013,13 +2013,13 @@
2013 "default-mobile.handlebars->11->204",
2014 "default-mobile.handlebars->11->207",
2015 "default-mobile.handlebars->11->210",
2016 - "default.handlebars->35->2138",
2017 - "default.handlebars->35->344",
2018 - "default.handlebars->35->347",
2019 - "default.handlebars->35->350",
2020 - "default.handlebars->35->353",
2021 - "default.handlebars->35->356",
2022 - "default.handlebars->35->359"
2016 + "default.handlebars->37->2170",
2017 + "default.handlebars->37->366",
2018 + "default.handlebars->37->369",
2019 + "default.handlebars->37->372",
2020 + "default.handlebars->37->375",
2021 + "default.handlebars->37->378",
2022 + "default.handlebars->37->381"
2023 ]
2024 },
2025 {
@@ -2043,9 +2043,9 @@
2043 "zh-chs": "1周",
2044 "zh-cht": "1週",
2045 "xloc": [
2046 - "default.handlebars->35->227",
2047 - "default.handlebars->35->437",
2048 - "default.handlebars->35->451"
2046 + "default.handlebars->37->249",
2047 + "default.handlebars->37->462",
2048 + "default.handlebars->37->476"
2049 ]
2050 },
2051 {
@@ -2192,8 +2192,8 @@
2192 "zh-chs": "10分钟",
2193 "zh-cht": "10分鐘",
2194 "xloc": [
2195 - "default.handlebars->35->1587",
2196 - "default.handlebars->35->937"
2195 + "default.handlebars->37->1619",
2196 + "default.handlebars->37->963"
2197 ]
2198 },
2199 {
@@ -2217,7 +2217,7 @@
2217 "zh-chs": "10 秒",
2218 "xloc": [
2219 "default-mobile.handlebars->11->323",
2220 - "default.handlebars->35->966"
2220 + "default.handlebars->37->992"
2221 ]
2222 },
2223 {
@@ -2340,8 +2340,8 @@
2340 "zh-chs": "12小时",
2341 "zh-cht": "12小時",
2342 "xloc": [
2343 - "default.handlebars->35->1595",
2344 - "default.handlebars->35->945"
2343 + "default.handlebars->37->1627",
2344 + "default.handlebars->37->971"
2345 ]
2346 },
2347 {
@@ -2411,8 +2411,8 @@
2411 "zh-chs": "15分钟",
2412 "zh-cht": "15分鐘",
2413 "xloc": [
2414 - "default.handlebars->35->1588",
2415 - "default.handlebars->35->938"
2414 + "default.handlebars->37->1620",
2415 + "default.handlebars->37->964"
2416 ]
2417 },
2418 {
@@ -2436,8 +2436,8 @@
2436 "zh-chs": "16小时",
2437 "zh-cht": "16小時",
2438 "xloc": [
2439 - "default.handlebars->35->1596",
2440 - "default.handlebars->35->946"
2439 + "default.handlebars->37->1628",
2440 + "default.handlebars->37->972"
2441 ]
2442 },
2443 {
@@ -2461,8 +2461,8 @@
2461 "zh-chs": "2天",
2462 "zh-cht": "2天",
2463 "xloc": [
2464 - "default.handlebars->35->1598",
2465 - "default.handlebars->35->948"
2464 + "default.handlebars->37->1630",
2465 + "default.handlebars->37->974"
2466 ]
2467 },
2468 {
@@ -2486,8 +2486,8 @@
2486 "zh-chs": "2小时",
2487 "zh-cht": "2小時",
2488 "xloc": [
2489 - "default.handlebars->35->1592",
2490 - "default.handlebars->35->942"
2489 + "default.handlebars->37->1624",
2490 + "default.handlebars->37->968"
2491 ]
2492 },
2493 {
@@ -2511,7 +2511,7 @@
2511 "zh-chs": "两步登录激活失败。",
2512 "zh-cht": "兩步登入啟用失敗。",
2513 "xloc": [
2514 - "default.handlebars->35->173"
2514 + "default.handlebars->37->195"
2515 ]
2516 },
2517 {
@@ -2535,7 +2535,7 @@
2535 "zh-chs": "两步登录激活删除失败。",
2536 "zh-cht": "兩步登入啟用刪除失敗。",
2537 "xloc": [
2538 - "default.handlebars->35->178"
2538 + "default.handlebars->37->200"
2539 ]
2540 },
2541 {
@@ -2658,8 +2658,8 @@
2658 "zh-chs": "24小时",
2659 "zh-cht": "24小時",
2660 "xloc": [
2661 - "default.handlebars->35->1597",
2662 - "default.handlebars->35->947"
2661 + "default.handlebars->37->1629",
2662 + "default.handlebars->37->973"
2663 ]
2664 },
2665 {
@@ -2733,7 +2733,7 @@
2733 "zh-chs": "2FA备份代码已清除",
2734 "zh-cht": "2FA備份代碼已清除",
2735 "xloc": [
2736 - "default.handlebars->35->2074"
2736 + "default.handlebars->37->2106"
2737 ]
2738 },
2739 {
@@ -2757,8 +2757,8 @@
2757 "zh-chs": "启用第二因素身份验证",
2758 "zh-cht": "啟用第二因素身份驗證",
2759 "xloc": [
2760 - "default.handlebars->35->2151",
2761 - "default.handlebars->35->2383"
2760 + "default.handlebars->37->2183",
2761 + "default.handlebars->37->2415"
2762 ]
2763 },
2764 {
@@ -2798,8 +2798,8 @@
2798 "nl": "3",
2799 "pl": "3",
2800 "pt": "3",
2801 - "ru": "3",
2801 "pt-br": "3",
2802 + "ru": "3",
2803 "xloc": [
2804 "default-mobile.handlebars->11->466"
2805 ]
@@ -2900,8 +2900,8 @@
2900 "zh-chs": "30分钟",
2901 "zh-cht": "30分鐘",
2902 "xloc": [
2903 - "default.handlebars->35->1589",
2904 - "default.handlebars->35->939"
2903 + "default.handlebars->37->1621",
2904 + "default.handlebars->37->965"
2905 ]
2906 },
2907 {
@@ -2925,7 +2925,7 @@
2925 "zh-chs": "32 位",
2926 "xloc": [
2927 "default-mobile.handlebars->11->476",
2928 - "default.handlebars->35->1243"
2928 + "default.handlebars->37->1275"
2929 ]
2930 },
2931 {
@@ -2949,8 +2949,8 @@
2949 "zh-chs": "MeshAgent的32位版本",
2950 "zh-cht": "MeshAgent的32位版本",
2951 "xloc": [
2952 - "default.handlebars->35->482",
2953 - "default.handlebars->35->509"
2952 + "default.handlebars->37->507",
2953 + "default.handlebars->37->535"
2954 ]
2955 },
2956 {
@@ -3000,8 +3000,8 @@
3000 "zh-chs": "4天",
3001 "zh-cht": "4天",
3002 "xloc": [
3003 - "default.handlebars->35->1599",
3004 - "default.handlebars->35->949"
3003 + "default.handlebars->37->1631",
3004 + "default.handlebars->37->975"
3005 ]
3006 },
3007 {
@@ -3025,8 +3025,8 @@
3025 "zh-chs": "4个小时",
3026 "zh-cht": "4個小時",
3027 "xloc": [
3028 - "default.handlebars->35->1593",
3029 - "default.handlebars->35->943"
3028 + "default.handlebars->37->1625",
3029 + "default.handlebars->37->969"
3030 ]
3031 },
3032 {
@@ -3149,8 +3149,8 @@
3149 "zh-chs": "45分钟",
3150 "zh-cht": "45分鐘",
3151 "xloc": [
3152 - "default.handlebars->35->1590",
3153 - "default.handlebars->35->940"
3152 + "default.handlebars->37->1622",
3153 + "default.handlebars->37->966"
3154 ]
3155 },
3156 {
@@ -3198,8 +3198,8 @@
3198 "zh-chs": "5分钟",
3199 "zh-cht": "5分鐘",
3200 "xloc": [
3201 - "default.handlebars->35->1586",
3202 - "default.handlebars->35->936"
3201 + "default.handlebars->37->1618",
3202 + "default.handlebars->37->962"
3203 ]
3204 },
3205 {
@@ -3223,7 +3223,7 @@
3223 "zh-chs": "5秒",
3224 "xloc": [
3225 "default-mobile.handlebars->11->322",
3226 - "default.handlebars->35->965"
3226 + "default.handlebars->37->991"
3227 ]
3228 },
3229 {
@@ -3373,8 +3373,8 @@
3373 "zh-chs": "60分钟",
3374 "zh-cht": "60分鐘",
3375 "xloc": [
3376 - "default.handlebars->35->1591",
3377 - "default.handlebars->35->941"
3376 + "default.handlebars->37->1623",
3377 + "default.handlebars->37->967"
3378 ]
3379 },
3380 {
@@ -3448,7 +3448,7 @@
3448 "zh-chs": "64 位",
3449 "xloc": [
3450 "default-mobile.handlebars->11->478",
3451 - "default.handlebars->35->1245"
3451 + "default.handlebars->37->1277"
3452 ]
3453 },
3454 {
@@ -3472,7 +3472,7 @@
3472 "zh-chs": "64位版本的macOS Mesh Agent",
3473 "zh-cht": "64位版本的macOS Mesh Agent",
3474 "xloc": [
3475 - "default.handlebars->35->496"
3475 + "default.handlebars->37->522"
3476 ]
3477 },
3478 {
@@ -3496,8 +3496,8 @@
3496 "zh-chs": "MeshAgent的64位版本",
3497 "zh-cht": "MeshAgent的64位版本",
3498 "xloc": [
3499 - "default.handlebars->35->486",
3500 - "default.handlebars->35->512"
3499 + "default.handlebars->37->511",
3500 + "default.handlebars->37->538"
3501 ]
3502 },
3503 {
@@ -3566,7 +3566,7 @@
3566 "zh-chs": "7天电源状态",
3567 "zh-cht": "7天電源狀態",
3568 "xloc": [
3569 - "default.handlebars->35->999"
3569 + "default.handlebars->37->1025"
3570 ]
3571 },
3572 {
@@ -3641,10 +3641,10 @@
3641 "zh-chs": "8小時",
3642 "zh-cht": "8小時",
3643 "xloc": [
3644 - "default.handlebars->35->1594",
3645 - "default.handlebars->35->435",
3646 - "default.handlebars->35->449",
3647 - "default.handlebars->35->944"
3644 + "default.handlebars->37->1626",
3645 + "default.handlebars->37->460",
3646 + "default.handlebars->37->474",
3647 + "default.handlebars->37->970"
3648 ]
3649 },
3650 {
@@ -3791,7 +3791,7 @@
3791 "zh-chs": "<a href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\">硬件密钥</a>用作辅助登录身份验证。",
3792 "zh-cht": "<a href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\">硬件密鑰</a>用作輔助登入身份驗證。",
3793 "xloc": [
3794 - "default.handlebars->35->187"
3794 + "default.handlebars->37->209"
3795 ]
3796 },
3797 {
@@ -3956,8 +3956,8 @@
3956 "zh-cht": "ACM",
3957 "xloc": [
3958 "default-mobile.handlebars->11->274",
3959 - "default.handlebars->35->1735",
3960 - "default.handlebars->35->727"
3959 + "default.handlebars->37->1767",
3960 + "default.handlebars->37->753"
3961 ]
3962 },
3963 {
@@ -4023,8 +4023,8 @@
4023 "zh-chs": "AMT",
4024 "zh-cht": "AMT",
4025 "xloc": [
4026 - "default.handlebars->35->330",
4027 - "default.handlebars->35->551"
4026 + "default.handlebars->37->352",
4027 + "default.handlebars->37->577"
4028 ]
4029 },
4030 {
@@ -4047,7 +4047,7 @@
4047 "tr": "AMT-OS",
4048 "zh-chs": "操作系统",
4049 "xloc": [
4050 - "default.handlebars->35->2588"
4050 + "default.handlebars->37->2620"
4051 ]
4052 },
4053 {
@@ -4072,7 +4072,7 @@
4072 "zh-cht": "ARM-Linaro",
4073 "xloc": [
4074 "default-mobile.handlebars->11->30",
4075 - "default.handlebars->35->37"
4075 + "default.handlebars->37->37"
4076 ]
4077 },
4078 {
@@ -4097,7 +4097,7 @@
4097 "zh-cht": "ARMADA/CORTEX-A53/MUSL (OpenWRT)",
4098 "xloc": [
4099 "default-mobile.handlebars->11->47",
4100 - "default.handlebars->35->54"
4100 + "default.handlebars->37->54"
4101 ]
4102 },
4103 {
@@ -4122,7 +4122,7 @@
4122 "zh-cht": "ARMv6l / ARMv7l",
4123 "xloc": [
4124 "default-mobile.handlebars->11->31",
4125 - "default.handlebars->35->38"
4125 + "default.handlebars->37->38"
4126 ]
4127 },
4128 {
@@ -4147,7 +4147,7 @@
4147 "zh-cht": "ARMv6l / ARMv7l / NoKVM",
4148 "xloc": [
4149 "default-mobile.handlebars->11->33",
4150 - "default.handlebars->35->40"
4150 + "default.handlebars->37->40"
4151 ]
4152 },
4153 {
@@ -4172,7 +4172,7 @@
4172 "zh-cht": "ARMv8 64位",
4173 "xloc": [
4174 "default-mobile.handlebars->11->32",
4175 - "default.handlebars->35->39"
4175 + "default.handlebars->37->39"
4176 ]
4177 },
4178 {
@@ -4197,8 +4197,8 @@
4197 "xloc": [
4198 "default-mobile.handlebars->11->480",
4199 "default-mobile.handlebars->11->482",
4200 - "default.handlebars->35->746",
4201 - "default.handlebars->35->748"
4200 + "default.handlebars->37->772",
4201 + "default.handlebars->37->774"
4202 ]
4203 },
4204 {
@@ -4223,7 +4223,7 @@
4223 "zh-cht": "拒絕存取",
4224 "xloc": [
4225 "default-mobile.handlebars->11->569",
4226 - "default.handlebars->35->1330"
4226 + "default.handlebars->37->1362"
4227 ]
4228 },
4229 {
@@ -4296,7 +4296,7 @@
4296 "zh-chs": "访问服务器档案",
4297 "zh-cht": "存取伺服器檔案",
4298 "xloc": [
4299 - "default.handlebars->35->2318"
4299 + "default.handlebars->37->2350"
4300 ]
4301 },
4302 {
@@ -4401,11 +4401,11 @@
4401 "default-mobile.handlebars->11->243",
4402 "default-mobile.handlebars->11->245",
4403 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
4404 - "default.handlebars->35->1628",
4405 - "default.handlebars->35->1630",
4406 - "default.handlebars->35->2641",
4407 - "default.handlebars->35->689",
4408 - "default.handlebars->35->691"
4404 + "default.handlebars->37->1660",
4405 + "default.handlebars->37->1662",
4406 + "default.handlebars->37->2673",
4407 + "default.handlebars->37->715",
4408 + "default.handlebars->37->717"
4409 ]
4410 },
4411 {
@@ -4429,7 +4429,7 @@
4429 "zh-chs": "帐号设定",
4430 "xloc": [
4431 "default-mobile.handlebars->11->662",
4432 - "default.handlebars->35->2518"
4432 + "default.handlebars->37->2550"
4433 ]
4434 },
4435 {
@@ -4502,7 +4502,7 @@
4502 "zh-chs": "帐户已更改:{0}",
4503 "zh-cht": "帳戶已更改:{0}",
4504 "xloc": [
4505 - "default.handlebars->35->2047"
4505 + "default.handlebars->37->2079"
4506 ]
4507 },
4508 {
@@ -4526,7 +4526,7 @@
4526 "zh-chs": "创建帐户,电子邮件为{0}",
4527 "zh-cht": "創建帳戶,電子郵件為{0}",
4528 "xloc": [
4529 - "default.handlebars->35->2046"
4529 + "default.handlebars->37->2078"
4530 ]
4531 },
4532 {
@@ -4550,7 +4550,7 @@
4550 "zh-chs": "创建帐户,用户名是{0}",
4551 "zh-cht": "帳戶已創建,用戶名是{0}",
4552 "xloc": [
4553 - "default.handlebars->35->2045"
4553 + "default.handlebars->37->2077"
4554 ]
4555 },
4556 {
@@ -4574,8 +4574,8 @@
4574 "zh-chs": "帐户已被锁定",
4575 "zh-cht": "帳戶已被鎖定",
4576 "xloc": [
4577 - "default.handlebars->35->2153",
4578 - "default.handlebars->35->2315"
4577 + "default.handlebars->37->2185",
4578 + "default.handlebars->37->2347"
4579 ]
4580 },
4581 {
@@ -4600,7 +4600,7 @@
4600 "zh-cht": "達到帳戶限制。",
4601 "xloc": [
4602 "default-mobile.handlebars->11->674",
4603 - "default.handlebars->35->2530",
4603 + "default.handlebars->37->2562",
4604 "login-mobile.handlebars->5->6",
4605 "login.handlebars->5->6",
4606 "login2.handlebars->7->8"
@@ -4653,7 +4653,7 @@
4653 "zh-chs": "帐号登录",
4654 "zh-cht": "帳號登錄",
4655 "xloc": [
4656 - "default.handlebars->35->1982"
4656 + "default.handlebars->37->2014"
4657 ]
4658 },
4659 {
@@ -4676,7 +4676,7 @@
4676 "tr": "{0}, {1}, {2} adresinden hesap girişi",
4677 "zh-chs": "来自 {0}、{1}、{2} 的帐户登录",
4678 "xloc": [
4679 - "default.handlebars->35->2088"
4679 + "default.handlebars->37->2120"
4680 ]
4681 },
4682 {
@@ -4700,7 +4700,7 @@
4700 "zh-chs": "帐户登出",
4701 "zh-cht": "帳戶登出",
4702 "xloc": [
4703 - "default.handlebars->35->1983"
4703 + "default.handlebars->37->2015"
4704 ]
4705 },
4706 {
@@ -4750,7 +4750,7 @@
4750 "zh-chs": "帐户密码已更改:{0}",
4751 "zh-cht": "帳戶密碼已更改:{0}",
4752 "xloc": [
4753 - "default.handlebars->35->2055"
4753 + "default.handlebars->37->2087"
4754 ]
4755 },
4756 {
@@ -4774,7 +4774,7 @@
4774 "zh-chs": "帐户已删除",
4775 "zh-cht": "帳戶已刪除",
4776 "xloc": [
4777 - "default.handlebars->35->2044"
4777 + "default.handlebars->37->2076"
4778 ]
4779 },
4780 {
@@ -4823,7 +4823,7 @@
4823 "zh-cht": "指令",
4824 "xloc": [
4825 "default-mobile.handlebars->11->575",
4826 - "default.handlebars->35->1336",
4826 + "default.handlebars->37->1368",
4827 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
4828 ]
4829 },
@@ -4848,8 +4848,8 @@
4848 "zh-chs": "动作档案",
4849 "zh-cht": "動作檔案",
4850 "xloc": [
4851 - "default.handlebars->35->1045",
4852 - "default.handlebars->35->1047"
4851 + "default.handlebars->37->1071",
4852 + "default.handlebars->37->1073"
4853 ]
4854 },
4855 {
@@ -4877,7 +4877,7 @@
4877 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
4878 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
4879 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
4880 - "default.handlebars->35->798",
4880 + "default.handlebars->37->824",
4881 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
4882 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
4883 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -4904,7 +4904,7 @@
4904 "zh-chs": "使用FAT格式的USB密钥在管理控制模式(ACM)中激活英特尔&reg;AMT。将setup.bin放在其上,然后使用此键引导一台或多台计算机。",
4905 "zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾&reg;AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
4906 "xloc": [
4907 - "default.handlebars->35->405"
4907 + "default.handlebars->37->427"
4908 ]
4909 },
4910 {
@@ -4976,7 +4976,7 @@
4976 "zh-chs": "如果ACM失败,则激活到CCM",
4977 "zh-cht": "如果ACM失敗,則激活到CCM",
4978 "xloc": [
4979 - "default.handlebars->35->1769"
4979 + "default.handlebars->37->1801"
4980 ]
4981 },
4982 {
@@ -5003,9 +5003,9 @@
5003 "default-mobile.handlebars->11->269",
5004 "default-mobile.handlebars->11->271",
5005 "default-mobile.handlebars->11->531",
5006 - "default.handlebars->35->1291",
5007 - "default.handlebars->35->720",
5008 - "default.handlebars->35->722"
5006 + "default.handlebars->37->1323",
5007 + "default.handlebars->37->746",
5008 + "default.handlebars->37->748"
5009 ]
5010 },
5011 {
@@ -5029,7 +5029,7 @@
5029 "zh-chs": "激活",
5030 "zh-cht": "啟動",
5031 "xloc": [
5032 - "default.handlebars->35->257"
5032 + "default.handlebars->37->279"
5033 ]
5034 },
5035 {
@@ -5053,7 +5053,7 @@
5053 "zh-chs": "主动设备共享",
5054 "zh-cht": "主動設備共享",
5055 "xloc": [
5056 - "default.handlebars->35->856"
5056 + "default.handlebars->37->882"
5057 ]
5058 },
5059 {
@@ -5076,21 +5076,23 @@
5076 "tr": "Aktif Giriş Jetonları",
5077 "zh-chs": "活动登录令牌",
5078 "xloc": [
5079 - "default.handlebars->35->1649"
5079 + "default.handlebars->37->1681"
5080 ]
5081 },
5082 {
5083 "en": "Active User",
5084 + "pl": "Aktywny użytkownik",
5085 "pt-br": "Usuario activo",
5086 "xloc": [
5086 - "default.handlebars->35->764"
5087 + "default.handlebars->37->790"
5088 ]
5089 },
5090 {
5091 "en": "Active Users",
5092 + "pl": "Aktywni użytkownicy",
5093 "pt-br": "Usuarios activos",
5094 "xloc": [
5093 - "default.handlebars->35->763"
5095 + "default.handlebars->37->789"
5096 ]
5097 },
5098 {
@@ -5135,7 +5137,7 @@
5137 "zh-chs": "添加",
5138 "xloc": [
5139 "default-mobile.handlebars->11->398",
5138 - "default.handlebars->35->1113"
5140 + "default.handlebars->37->1139"
5141 ]
5142 },
5143 {
@@ -5199,8 +5201,8 @@
5201 "zh-chs": "添加代理",
5202 "zh-cht": "新增代理",
5203 "xloc": [
5202 - "default.handlebars->35->1731",
5203 - "default.handlebars->35->377"
5204 + "default.handlebars->37->1763",
5205 + "default.handlebars->37->399"
5206 ]
5207 },
5208 {
@@ -5245,9 +5247,9 @@
5247 "zh-chs": "添加设备",
5248 "zh-cht": "新增裝置",
5249 "xloc": [
5248 - "default.handlebars->35->2292",
5249 - "default.handlebars->35->2449",
5250 - "default.handlebars->35->381"
5250 + "default.handlebars->37->2324",
5251 + "default.handlebars->37->2481",
5252 + "default.handlebars->37->403"
5253 ]
5254 },
5255 {
@@ -5271,7 +5273,7 @@
5273 "zh-chs": "添加设备日志",
5274 "zh-cht": "新增裝置日誌",
5275 "xloc": [
5274 - "default.handlebars->35->912"
5276 + "default.handlebars->37->938"
5277 ]
5278 },
5279 {
@@ -5295,10 +5297,10 @@
5297 "zh-chs": "添加设备组",
5298 "zh-cht": "新增裝置群",
5299 "xloc": [
5298 - "default.handlebars->35->1849",
5299 - "default.handlebars->35->2286",
5300 - "default.handlebars->35->2437",
5301 - "default.handlebars->35->310"
5300 + "default.handlebars->37->1881",
5301 + "default.handlebars->37->2318",
5302 + "default.handlebars->37->2469",
5303 + "default.handlebars->37->332"
5304 ]
5305 },
5306 {
@@ -5322,7 +5324,7 @@
5324 "zh-chs": "添加设备组权限",
5325 "zh-cht": "新增裝置群權限",
5326 "xloc": [
5325 - "default.handlebars->35->1846"
5327 + "default.handlebars->37->1878"
5328 ]
5329 },
5330 {
@@ -5346,8 +5348,8 @@
5348 "zh-chs": "添加设备权限",
5349 "zh-cht": "新增裝置權限",
5350 "xloc": [
5349 - "default.handlebars->35->1851",
5350 - "default.handlebars->35->1853"
5351 + "default.handlebars->37->1883",
5352 + "default.handlebars->37->1885"
5353 ]
5354 },
5355 {
@@ -5392,7 +5394,7 @@
5394 "zh-chs": "添加英特尔&reg;AMT设备",
5395 "zh-cht": "新增Intel&reg; AMT裝置",
5396 "xloc": [
5395 - "default.handlebars->35->401"
5397 + "default.handlebars->37->423"
5398 ]
5399 },
5400 {
@@ -5416,7 +5418,7 @@
5418 "zh-chs": "新增密钥",
5419 "zh-cht": "新增密鑰",
5420 "xloc": [
5419 - "default.handlebars->35->191"
5421 + "default.handlebars->37->213"
5422 ]
5423 },
5424 {
@@ -5440,7 +5442,7 @@
5442 "zh-chs": "添加本地",
5443 "zh-cht": "新增本地",
5444 "xloc": [
5443 - "default.handlebars->35->371"
5445 + "default.handlebars->37->393"
5446 ]
5447 },
5448 {
@@ -5484,7 +5486,7 @@
5486 "zh-chs": "添加成员身份",
5487 "zh-cht": "新增成員身份",
5488 "xloc": [
5487 - "default.handlebars->35->2469"
5489 + "default.handlebars->37->2501"
5490 ]
5491 },
5492 {
@@ -5508,7 +5510,7 @@
5510 "zh-chs": "添加 Mesh Agent",
5511 "zh-cht": "新增 Mesh Agent",
5512 "xloc": [
5511 - "default.handlebars->35->522"
5513 + "default.handlebars->37->548"
5514 ]
5515 },
5516 {
@@ -5552,12 +5554,12 @@
5554 "zh-chs": "添加安全密钥",
5555 "zh-cht": "新增安全密鑰",
5556 "xloc": [
5555 - "default.handlebars->35->1375",
5556 - "default.handlebars->35->1376",
5557 - "default.handlebars->35->194",
5558 - "default.handlebars->35->196",
5559 - "default.handlebars->35->199",
5560 - "default.handlebars->35->200"
5557 + "default.handlebars->37->1407",
5558 + "default.handlebars->37->1408",
5559 + "default.handlebars->37->216",
5560 + "default.handlebars->37->218",
5561 + "default.handlebars->37->221",
5562 + "default.handlebars->37->222"
5563 ]
5564 },
5565 {
@@ -5582,7 +5584,7 @@
5584 "zh-cht": "新增用戶",
5585 "xloc": [
5586 "default-mobile.handlebars->11->591",
5585 - "default.handlebars->35->848"
5587 + "default.handlebars->37->874"
5588 ]
5589 },
5590 {
@@ -5606,7 +5608,7 @@
5608 "zh-chs": "添加用户设备权限",
5609 "zh-cht": "新增用戶裝置權限",
5610 "xloc": [
5609 - "default.handlebars->35->1856"
5611 + "default.handlebars->37->1888"
5612 ]
5613 },
5614 {
@@ -5630,10 +5632,10 @@
5632 "zh-chs": "添加用户组",
5633 "zh-cht": "新增用戶群",
5634 "xloc": [
5633 - "default.handlebars->35->1727",
5634 - "default.handlebars->35->1848",
5635 - "default.handlebars->35->2443",
5636 - "default.handlebars->35->849"
5635 + "default.handlebars->37->1759",
5636 + "default.handlebars->37->1880",
5637 + "default.handlebars->37->2475",
5638 + "default.handlebars->37->875"
5639 ]
5640 },
5641 {
@@ -5657,7 +5659,7 @@
5659 "zh-chs": "添加用户组设备权限",
5660 "zh-cht": "新增用戶群裝置權限",
5661 "xloc": [
5660 - "default.handlebars->35->1858"
5662 + "default.handlebars->37->1890"
5663 ]
5664 },
5665 {
@@ -5726,8 +5728,8 @@
5728 "zh-chs": "添加用户",
5729 "zh-cht": "新增用戶",
5730 "xloc": [
5729 - "default.handlebars->35->1726",
5730 - "default.handlebars->35->2281"
5731 + "default.handlebars->37->1758",
5732 + "default.handlebars->37->2313"
5733 ]
5734 },
5735 {
@@ -5751,7 +5753,7 @@
5753 "zh-chs": "将用户添加到设备组",
5754 "zh-cht": "將用戶新增到裝置群",
5755 "xloc": [
5754 - "default.handlebars->35->1845"
5756 + "default.handlebars->37->1877"
5757 ]
5758 },
5759 {
@@ -5775,7 +5777,7 @@
5777 "zh-chs": "将用户添加到用户组",
5778 "zh-cht": "將用戶新增到用戶群",
5779 "xloc": [
5778 - "default.handlebars->35->2314"
5780 + "default.handlebars->37->2346"
5781 ]
5782 },
5783 {
@@ -5799,7 +5801,7 @@
5801 "zh-chs": "添加YubiKey&reg;OTP",
5802 "zh-cht": "新增YubiKey&reg;OTP",
5803 "xloc": [
5802 - "default.handlebars->35->192"
5804 + "default.handlebars->37->214"
5805 ]
5806 },
5807 {
@@ -5822,7 +5824,7 @@
5824 "tr": "\\\"{0}\\\" cihaz grubuna yerel bir cihaz ekleyin.",
5825 "zh-chs": "将本地设备添加到设备组 \\\"{0}\\\"。",
5826 "xloc": [
5825 - "default.handlebars->35->382"
5827 + "default.handlebars->37->404"
5828 ]
5829 },
5830 {
@@ -5846,7 +5848,7 @@
5848 "zh-chs": "通过扫描本地网络添加新的英特尔&reg;AMT计算机。",
5849 "zh-cht": "通過掃描本地網絡新增新的Intel&reg; AMT電腦。",
5850 "xloc": [
5849 - "default.handlebars->35->372"
5851 + "default.handlebars->37->394"
5852 ]
5853 },
5854 {
@@ -5891,7 +5893,7 @@
5893 "zh-chs": "添加位于本地网络上的新英特尔&reg;AMT计算机。",
5894 "zh-cht": "新增位於本地網絡上的新Intel&reg; AMT電腦。",
5895 "xloc": [
5894 - "default.handlebars->35->370"
5896 + "default.handlebars->37->392"
5897 ]
5898 },
5899 {
@@ -5915,7 +5917,7 @@
5917 "zh-chs": "将新的英特尔&reg;AMT设备添加到设备组“{0}”。",
5918 "zh-cht": "將新的Intel&reg; AMT裝置新增到裝置群“{0}”。",
5919 "xloc": [
5918 - "default.handlebars->35->391"
5920 + "default.handlebars->37->413"
5921 ]
5922 },
5923 {
@@ -5939,8 +5941,8 @@
5941 "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
5942 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
5943 "xloc": [
5942 - "default.handlebars->35->1730",
5943 - "default.handlebars->35->376"
5944 + "default.handlebars->37->1762",
5945 + "default.handlebars->37->398"
5946 ]
5947 },
5948 {
@@ -5963,7 +5965,7 @@
5965 "tr": "Yerel ağda bulunan cihazı ekleyin.",
5966 "zh-chs": "添加位于本地网络上的设备。",
5967 "xloc": [
5966 - "default.handlebars->35->380"
5968 + "default.handlebars->37->402"
5969 ]
5970 },
5971 {
@@ -5986,7 +5988,7 @@
5988 "tr": "Yerel cihaz ekle",
5989 "zh-chs": "添加本地设备",
5990 "xloc": [
5989 - "default.handlebars->35->390"
5991 + "default.handlebars->37->412"
5992 ]
5993 },
5994 {
@@ -6010,7 +6012,7 @@
6012 "zh-chs": "添加标签",
6013 "zh-cht": "新增標籤",
6014 "xloc": [
6013 - "default.handlebars->35->596"
6015 + "default.handlebars->37->622"
6016 ]
6017 },
6018 {
@@ -6034,7 +6036,7 @@
6036 "zh-chs": "通过定期在远程设备上以管理员身份运行MeshCmd,添加,激活和配置Intel&reg;AMT以将“{0}”分组。",
6037 "zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel&reg;AMT以將“{0}”分組。",
6038 "xloc": [
6037 - "default.handlebars->35->402"
6039 + "default.handlebars->37->424"
6040 ]
6041 },
6042 {
@@ -6058,7 +6060,7 @@
6060 "zh-chs": "添加了身份验证应用程序",
6061 "zh-cht": "添加了身份驗證應用程序",
6062 "xloc": [
6061 - "default.handlebars->35->2071"
6063 + "default.handlebars->37->2103"
6064 ]
6065 },
6066 {
@@ -6082,7 +6084,7 @@
6084 "zh-chs": "已将设备共享{0}从{1}添加到{2}",
6085 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
6086 "xloc": [
6085 - "default.handlebars->35->2082"
6087 + "default.handlebars->37->2114"
6088 ]
6089 },
6090 {
@@ -6106,8 +6108,8 @@
6108 "zh-chs": "已将设备{0}添加到设备组{1}",
6109 "zh-cht": "已將設備{0}添加到設備組{1}",
6110 "xloc": [
6109 - "default.handlebars->35->2038",
6110 - "default.handlebars->35->2065"
6111 + "default.handlebars->37->2070",
6112 + "default.handlebars->37->2097"
6113 ]
6114 },
6115 {
@@ -6130,7 +6132,7 @@
6132 "tr": "Giriş belirteci eklendi",
6133 "zh-chs": "添加登录令牌",
6134 "xloc": [
6133 - "default.handlebars->35->2096"
6135 + "default.handlebars->37->2128"
6136 ]
6137 },
6138 {
@@ -6153,7 +6155,7 @@
6155 "tr": "Anında iletme bildirimi kimlik doğrulama cihazı eklendi",
6156 "zh-chs": "新增推送通知认证装置",
6157 "xloc": [
6156 - "default.handlebars->35->2094"
6158 + "default.handlebars->37->2126"
6159 ]
6160 },
6161 {
@@ -6177,7 +6179,7 @@
6179 "zh-chs": "添加了安全密钥",
6180 "zh-cht": "添加了安全密鑰",
6181 "xloc": [
6180 - "default.handlebars->35->2076"
6182 + "default.handlebars->37->2108"
6183 ]
6184 },
6185 {
@@ -6201,7 +6203,7 @@
6203 "zh-chs": "已将用户组{0}添加到设备组{1}",
6204 "zh-cht": "已將用戶組{0}添加到設備組{1}",
6205 "xloc": [
6204 - "default.handlebars->35->2049"
6206 + "default.handlebars->37->2081"
6207 ]
6208 },
6209 {
@@ -6225,8 +6227,8 @@
6227 "zh-chs": "已将用户{0}添加到用户组{1}",
6228 "zh-cht": "已將用戶{0}添加到用戶組{1}",
6229 "xloc": [
6228 - "default.handlebars->35->2052",
6229 - "default.handlebars->35->2061"
6230 + "default.handlebars->37->2084",
6231 + "default.handlebars->37->2093"
6232 ]
6233 },
6234 {
@@ -6250,7 +6252,7 @@
6252 "zh-chs": "地址",
6253 "zh-cht": "地址",
6254 "xloc": [
6253 - "default.handlebars->35->305"
6255 + "default.handlebars->37->327"
6256 ]
6257 },
6258 {
@@ -6299,7 +6301,7 @@
6301 "zh-cht": "管理員控制模式(ACM)",
6302 "xloc": [
6303 "default-mobile.handlebars->11->533",
6302 - "default.handlebars->35->1293"
6304 + "default.handlebars->37->1325"
6305 ]
6306 },
6307 {
@@ -6324,7 +6326,7 @@
6326 "zh-cht": "管理員憑證",
6327 "xloc": [
6328 "default-mobile.handlebars->11->539",
6327 - "default.handlebars->35->1299"
6329 + "default.handlebars->37->1331"
6330 ]
6331 },
6332 {
@@ -6373,7 +6375,7 @@
6375 "zh-chs": "管理领域",
6376 "zh-cht": "管理領域",
6377 "xloc": [
6376 - "default.handlebars->35->2363"
6378 + "default.handlebars->37->2395"
6379 ]
6380 },
6381 {
@@ -6422,7 +6424,7 @@
6424 "zh-chs": "管理领域",
6425 "zh-cht": "管理領域",
6426 "xloc": [
6425 - "default.handlebars->35->2218"
6427 + "default.handlebars->37->2250"
6428 ]
6429 },
6430 {
@@ -6446,7 +6448,7 @@
6448 "zh-chs": "管理员",
6449 "zh-cht": "管理員",
6450 "xloc": [
6449 - "default.handlebars->35->2145"
6451 + "default.handlebars->37->2177"
6452 ]
6453 },
6454 {
@@ -6470,7 +6472,7 @@
6472 "zh-chs": "南非文",
6473 "zh-cht": "南非文",
6474 "xloc": [
6473 - "default.handlebars->35->1378"
6475 + "default.handlebars->37->1410"
6476 ]
6477 },
6478 {
@@ -6498,11 +6500,11 @@
6500 "default-mobile.handlebars->11->235",
6501 "default-mobile.handlebars->11->288",
6502 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
6501 - "default.handlebars->35->1914",
6502 - "default.handlebars->35->1927",
6503 - "default.handlebars->35->2586",
6504 - "default.handlebars->35->326",
6505 - "default.handlebars->35->547",
6503 + "default.handlebars->37->1946",
6504 + "default.handlebars->37->1959",
6505 + "default.handlebars->37->2618",
6506 + "default.handlebars->37->348",
6507 + "default.handlebars->37->573",
6508 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1"
6509 ]
6510 },
@@ -6527,8 +6529,8 @@
6529 "zh-chs": "代理+英特尔AMT",
6530 "zh-cht": "代理+Intel&reg; AMT",
6531 "xloc": [
6530 - "default.handlebars->35->1916",
6531 - "default.handlebars->35->1929"
6532 + "default.handlebars->37->1948",
6533 + "default.handlebars->37->1961"
6534 ]
6535 },
6536 {
@@ -6578,7 +6580,7 @@
6580 "zh-cht": "代理控制台",
6581 "xloc": [
6582 "default-mobile.handlebars->11->633",
6581 - "default.handlebars->35->1866"
6583 + "default.handlebars->37->1898"
6584 ]
6585 },
6586 {
@@ -6602,7 +6604,7 @@
6604 "zh-chs": "代理错误计数器",
6605 "zh-cht": "代理錯誤計數器",
6606 "xloc": [
6605 - "default.handlebars->35->2555"
6607 + "default.handlebars->37->2587"
6608 ]
6609 },
6610 {
@@ -6625,7 +6627,7 @@
6627 "tr": "Aracı IP adresi",
6628 "zh-chs": "代理IP地址",
6629 "xloc": [
6628 - "default.handlebars->35->282"
6630 + "default.handlebars->37->304"
6631 ]
6632 },
6633 {
@@ -6674,7 +6676,7 @@
6676 "zh-cht": "代理訊息",
6677 "xloc": [
6678 "default-mobile.handlebars->11->213",
6677 - "default.handlebars->35->362"
6679 + "default.handlebars->37->384"
6680 ]
6681 },
6682 {
@@ -6768,7 +6770,7 @@
6770 "zh-chs": "代理时段",
6771 "zh-cht": "代理時段",
6772 "xloc": [
6771 - "default.handlebars->35->2571"
6773 + "default.handlebars->37->2603"
6774 ]
6775 },
6776 {
@@ -6813,7 +6815,7 @@
6815 "zh-cht": "代理標籤",
6816 "xloc": [
6817 "default-mobile.handlebars->11->287",
6816 - "default.handlebars->35->743"
6818 + "default.handlebars->37->769"
6819 ]
6820 },
6821 {
@@ -6836,8 +6838,8 @@
6838 "tr": "Temsilci Türü",
6839 "zh-chs": "代理类型",
6840 "xloc": [
6839 - "default.handlebars->35->276",
6840 - "default.handlebars->35->300"
6841 + "default.handlebars->37->298",
6842 + "default.handlebars->37->322"
6843 ]
6844 },
6845 {
@@ -6861,7 +6863,7 @@
6863 "zh-chs": "代理类型",
6864 "zh-cht": "代理類型",
6865 "xloc": [
6864 - "default.handlebars->35->1925",
6866 + "default.handlebars->37->1957",
6867 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
6868 ]
6869 },
@@ -6885,8 +6887,8 @@
6887 "tr": "Aracı Sürümü",
6888 "zh-chs": "代理版本",
6889 "xloc": [
6888 - "default.handlebars->35->277",
6889 - "default.handlebars->35->301"
6890 + "default.handlebars->37->299",
6891 + "default.handlebars->37->323"
6892 ]
6893 },
6894 {
@@ -6910,7 +6912,7 @@
6912 "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
6913 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
6914 "xloc": [
6913 - "default.handlebars->35->2035"
6915 + "default.handlebars->37->2067"
6916 ]
6917 },
6918 {
@@ -6934,9 +6936,9 @@
6936 "zh-chs": "代理已连接",
6937 "zh-cht": "代理已連接",
6938 "xloc": [
6937 - "default.handlebars->35->208",
6938 - "default.handlebars->35->839",
6939 - "default.handlebars->35->840"
6939 + "default.handlebars->37->230",
6940 + "default.handlebars->37->865",
6941 + "default.handlebars->37->866"
6942 ]
6943 },
6944 {
@@ -6960,7 +6962,14 @@
6962 "zh-chs": "代理已断开连接",
6963 "zh-cht": "代理已斷開連接",
6964 "xloc": [
6963 - "default.handlebars->35->212"
6965 + "default.handlebars->37->234"
6966 + ]
6967 + },
6968 + {
6969 + "en": "Agent hash checking is being skipped, this is unsafe.",
6970 + "pl": "Sprawdzanie skrótu agenta jest pomijane, jest to niebezpieczne.",
6971 + "xloc": [
6972 + "default.handlebars->37->87"
6973 ]
6974 },
6975 {
@@ -7045,7 +7054,7 @@
7054 "zh-cht": "代理離線",
7055 "xloc": [
7056 "default-mobile.handlebars->11->567",
7048 - "default.handlebars->35->1328"
7057 + "default.handlebars->37->1360"
7058 ]
7059 },
7060 {
@@ -7070,7 +7079,7 @@
7079 "zh-cht": "代理在線",
7080 "xloc": [
7081 "default-mobile.handlebars->11->566",
7073 - "default.handlebars->35->1327"
7082 + "default.handlebars->37->1359"
7083 ]
7084 },
7085 {
@@ -7154,8 +7163,8 @@
7163 "zh-chs": "代理在特权降低的远程设备上运行。",
7164 "zh-cht": "代理在特權降低的遠程設備上運行。",
7165 "xloc": [
7157 - "default.handlebars->35->206",
7158 - "default.handlebars->35->837"
7166 + "default.handlebars->37->228",
7167 + "default.handlebars->37->863"
7168 ]
7169 },
7170 {
@@ -7259,7 +7268,7 @@
7268 "zh-chs": "代理",
7269 "zh-cht": "代理",
7270 "xloc": [
7262 - "default.handlebars->35->2599"
7271 + "default.handlebars->37->2631"
7272 ]
7273 },
7274 {
@@ -7283,7 +7292,7 @@
7292 "zh-chs": "阿尔巴尼亚文",
7293 "zh-cht": "阿爾巴尼亞文",
7294 "xloc": [
7286 - "default.handlebars->35->1379"
7295 + "default.handlebars->37->1411"
7296 ]
7297 },
7298 {
@@ -7334,7 +7343,7 @@
7343 "zh-chs": "全部可用",
7344 "zh-cht": "全部可用",
7345 "xloc": [
7337 - "default.handlebars->35->2108"
7346 + "default.handlebars->37->2140"
7347 ]
7348 },
7349 {
@@ -7358,7 +7367,7 @@
7367 "zh-chs": "所有显示",
7368 "zh-cht": "所有顯示",
7369 "xloc": [
7361 - "default.handlebars->35->1140"
7370 + "default.handlebars->37->1172"
7371 ]
7372 },
7373 {
@@ -7382,7 +7391,7 @@
7391 "zh-chs": "所有事件",
7392 "zh-cht": "所有事件",
7393 "xloc": [
7385 - "default.handlebars->35->2106"
7394 + "default.handlebars->37->2138"
7395 ]
7396 },
7397 {
@@ -7406,9 +7415,9 @@
7415 "zh-chs": "全部聚焦",
7416 "zh-cht": "全部聚焦",
7417 "xloc": [
7409 - "default.handlebars->35->1083",
7410 - "default.handlebars->35->1085",
7411 - "default.handlebars->35->1086"
7418 + "default.handlebars->37->1109",
7419 + "default.handlebars->37->1111",
7420 + "default.handlebars->37->1112"
7421 ]
7422 },
7423 {
@@ -7452,8 +7461,8 @@
7461 "zh-chs": "允许用户管理此设备组和该组中的设备。",
7462 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
7463 "xloc": [
7455 - "default.handlebars->35->1811",
7456 - "default.handlebars->35->2311"
7464 + "default.handlebars->37->1843",
7465 + "default.handlebars->37->2343"
7466 ]
7467 },
7468 {
@@ -7477,7 +7486,7 @@
7486 "zh-chs": "允许用户管理此设备。",
7487 "zh-cht": "允許用戶管理此裝置。",
7488 "xloc": [
7480 - "default.handlebars->35->1812"
7489 + "default.handlebars->37->1844"
7490 ]
7491 },
7492 {
@@ -7500,7 +7509,7 @@
7509 "tr": "İzin verilmiş",
7510 "zh-chs": "允许",
7511 "xloc": [
7503 - "default.handlebars->35->235"
7512 + "default.handlebars->37->257"
7513 ]
7514 },
7515 {
@@ -7545,7 +7554,7 @@
7554 "zh-cht": "Alpine Linux x86 64 Bit (MUSL)",
7555 "xloc": [
7556 "default-mobile.handlebars->11->39",
7548 - "default.handlebars->35->46"
7557 + "default.handlebars->37->46"
7558 ]
7559 },
7560 {
@@ -7570,8 +7579,8 @@
7579 "xloc": [
7580 "default-mobile.handlebars->11->391",
7581 "default-mobile.handlebars->11->395",
7573 - "default.handlebars->35->1106",
7574 - "default.handlebars->35->1110"
7582 + "default.handlebars->37->1132",
7583 + "default.handlebars->37->1136"
7584 ]
7585 },
7586 {
@@ -7645,7 +7654,7 @@
7654 "zh-chs": "备用(F10 = ESC + 0)",
7655 "zh-cht": "備用(F10 = ESC + 0)",
7656 "xloc": [
7648 - "default.handlebars->35->1166",
7657 + "default.handlebars->37->1198",
7658 "sharing.handlebars->11->37"
7659 ]
7660 },
@@ -7716,10 +7725,10 @@
7725 "zh-chs": "一直通知",
7726 "zh-cht": "一直通知",
7727 "xloc": [
7719 - "default.handlebars->35->1706",
7720 - "default.handlebars->35->2272",
7721 - "default.handlebars->35->2372",
7722 - "default.handlebars->35->773"
7728 + "default.handlebars->37->1738",
7729 + "default.handlebars->37->2304",
7730 + "default.handlebars->37->2404",
7731 + "default.handlebars->37->799"
7732 ]
7733 },
7734 {
@@ -7743,10 +7752,10 @@
7752 "zh-chs": "一直提示",
7753 "zh-cht": "一直提示",
7754 "xloc": [
7746 - "default.handlebars->35->1707",
7747 - "default.handlebars->35->2273",
7748 - "default.handlebars->35->2373",
7749 - "default.handlebars->35->774"
7755 + "default.handlebars->37->1739",
7756 + "default.handlebars->37->2305",
7757 + "default.handlebars->37->2405",
7758 + "default.handlebars->37->800"
7759 ]
7760 },
7761 {
@@ -7841,8 +7850,8 @@
7850 "agentinvite.handlebars->container->column_l->5->1->tandrotab",
7851 "agentinvite.handlebars->container->column_l->5->androtab->1",
7852 "default-mobile.handlebars->11->20",
7844 - "default.handlebars->35->22",
7845 - "default.handlebars->35->27"
7853 + "default.handlebars->37->22",
7854 + "default.handlebars->37->27"
7855 ]
7856 },
7857 {
@@ -7958,7 +7967,7 @@
7967 "zh-cht": "安卓x86",
7968 "xloc": [
7969 "default-mobile.handlebars->11->18",
7961 - "default.handlebars->35->25"
7970 + "default.handlebars->37->25"
7971 ]
7972 },
7973 {
@@ -7981,8 +7990,8 @@
7990 "tr": "Anti-virüs etkin değil",
7991 "zh-chs": "杀毒软件未激活",
7992 "xloc": [
7984 - "default.handlebars->35->1918",
7985 - "default.handlebars->35->1932"
7993 + "default.handlebars->37->1950",
7994 + "default.handlebars->37->1964"
7995 ]
7996 },
7997 {
@@ -8007,7 +8016,7 @@
8016 "zh-cht": "防毒軟體",
8017 "xloc": [
8018 "default-mobile.handlebars->11->496",
8010 - "default.handlebars->35->762"
8019 + "default.handlebars->37->788"
8020 ]
8021 },
8022 {
@@ -8031,7 +8040,7 @@
8040 "zh-chs": "任何可支持的",
8041 "zh-cht": "任何可支持的",
8042 "xloc": [
8034 - "default.handlebars->35->429"
8043 + "default.handlebars->37->454"
8044 ]
8045 },
8046 {
@@ -8056,7 +8065,7 @@
8065 "zh-cht": "蘋果矽",
8066 "xloc": [
8067 "default-mobile.handlebars->11->35",
8059 - "default.handlebars->35->42"
8068 + "default.handlebars->37->42"
8069 ]
8070 },
8071 {
@@ -8080,7 +8089,7 @@
8089 "zh-chs": "苹果macOS",
8090 "zh-cht": "蘋果macOS",
8091 "xloc": [
8083 - "default.handlebars->35->463"
8092 + "default.handlebars->37->488"
8093 ]
8094 },
8095 {
@@ -8104,7 +8113,7 @@
8113 "zh-chs": "仅限Apple macOS",
8114 "zh-cht": "僅限Apple macOS",
8115 "xloc": [
8107 - "default.handlebars->35->431"
8116 + "default.handlebars->37->456"
8117 ]
8118 },
8119 {
@@ -8231,7 +8240,7 @@
8240 "tr": "Uygulama, Her zaman bağlı",
8241 "zh-chs": "应用程序,始终连接",
8242 "xloc": [
8234 - "default.handlebars->35->476"
8243 + "default.handlebars->37->501"
8244 ]
8245 },
8246 {
@@ -8254,7 +8263,7 @@
8263 "tr": "Uygulama, Kullanıcı isteği üzerine bağlanın",
8264 "zh-chs": "应用程序,根据用户请求连接",
8265 "xloc": [
8257 - "default.handlebars->35->475"
8266 + "default.handlebars->37->500"
8267 ]
8268 },
8269 {
@@ -8278,7 +8287,7 @@
8287 "zh-chs": "阿拉伯文(阿尔及利亚)",
8288 "zh-cht": "阿拉伯文(阿爾及利亞)",
8289 "xloc": [
8281 - "default.handlebars->35->1381"
8290 + "default.handlebars->37->1413"
8291 ]
8292 },
8293 {
@@ -8302,7 +8311,7 @@
8311 "zh-chs": "阿拉伯文(巴林)",
8312 "zh-cht": "阿拉伯文(巴林)",
8313 "xloc": [
8305 - "default.handlebars->35->1382"
8314 + "default.handlebars->37->1414"
8315 ]
8316 },
8317 {
@@ -8326,7 +8335,7 @@
8335 "zh-chs": "阿拉伯文(埃及)",
8336 "zh-cht": "阿拉伯文(埃及)",
8337 "xloc": [
8329 - "default.handlebars->35->1383"
8338 + "default.handlebars->37->1415"
8339 ]
8340 },
8341 {
@@ -8350,7 +8359,7 @@
8359 "zh-chs": "阿拉伯文(伊拉克)",
8360 "zh-cht": "阿拉伯文(伊拉克)",
8361 "xloc": [
8353 - "default.handlebars->35->1384"
8362 + "default.handlebars->37->1416"
8363 ]
8364 },
8365 {
@@ -8374,7 +8383,7 @@
8383 "zh-chs": "阿拉伯文(约旦)",
8384 "zh-cht": "阿拉伯文(約旦)",
8385 "xloc": [
8377 - "default.handlebars->35->1385"
8386 + "default.handlebars->37->1417"
8387 ]
8388 },
8389 {
@@ -8398,7 +8407,7 @@
8407 "zh-chs": "阿拉伯文(科威特)",
8408 "zh-cht": "阿拉伯文(科威特)",
8409 "xloc": [
8401 - "default.handlebars->35->1386"
8410 + "default.handlebars->37->1418"
8411 ]
8412 },
8413 {
@@ -8422,7 +8431,7 @@
8431 "zh-chs": "阿拉伯文(黎巴嫩)",
8432 "zh-cht": "阿拉伯文(黎巴嫩)",
8433 "xloc": [
8425 - "default.handlebars->35->1387"
8434 + "default.handlebars->37->1419"
8435 ]
8436 },
8437 {
@@ -8446,7 +8455,7 @@
8455 "zh-chs": "阿拉伯文(利比亚)",
8456 "zh-cht": "阿拉伯文(利比亞)",
8457 "xloc": [
8449 - "default.handlebars->35->1388"
8458 + "default.handlebars->37->1420"
8459 ]
8460 },
8461 {
@@ -8470,7 +8479,7 @@
8479 "zh-chs": "阿拉伯文(摩洛哥)",
8480 "zh-cht": "阿拉伯文(摩洛哥)",
8481 "xloc": [
8473 - "default.handlebars->35->1389"
8482 + "default.handlebars->37->1421"
8483 ]
8484 },
8485 {
@@ -8494,7 +8503,7 @@
8503 "zh-chs": "阿拉伯文(阿曼)",
8504 "zh-cht": "阿拉伯文(阿曼)",
8505 "xloc": [
8497 - "default.handlebars->35->1390"
8506 + "default.handlebars->37->1422"
8507 ]
8508 },
8509 {
@@ -8518,7 +8527,7 @@
8527 "zh-chs": "阿拉伯文(卡塔尔)",
8528 "zh-cht": "阿拉伯文(卡塔爾)",
8529 "xloc": [
8521 - "default.handlebars->35->1391"
8530 + "default.handlebars->37->1423"
8531 ]
8532 },
8533 {
@@ -8542,7 +8551,7 @@
8551 "zh-chs": "阿拉伯文(沙特阿拉伯)",
8552 "zh-cht": "阿拉伯文(沙特阿拉伯)",
8553 "xloc": [
8545 - "default.handlebars->35->1392"
8554 + "default.handlebars->37->1424"
8555 ]
8556 },
8557 {
@@ -8566,7 +8575,7 @@
8575 "zh-chs": "阿拉伯文(标准)",
8576 "zh-cht": "阿拉伯文(標準)",
8577 "xloc": [
8569 - "default.handlebars->35->1380"
8578 + "default.handlebars->37->1412"
8579 ]
8580 },
8581 {
@@ -8590,7 +8599,7 @@
8599 "zh-chs": "阿拉伯文(叙利亚)",
8600 "zh-cht": "阿拉伯文(敘利亞)",
8601 "xloc": [
8593 - "default.handlebars->35->1393"
8602 + "default.handlebars->37->1425"
8603 ]
8604 },
8605 {
@@ -8614,7 +8623,7 @@
8623 "zh-chs": "阿拉伯文(突尼斯)",
8624 "zh-cht": "阿拉伯文(突尼斯)",
8625 "xloc": [
8617 - "default.handlebars->35->1394"
8626 + "default.handlebars->37->1426"
8627 ]
8628 },
8629 {
@@ -8638,7 +8647,7 @@
8647 "zh-chs": "阿拉伯文(阿联酋)",
8648 "zh-cht": "阿拉伯文(阿聯酋)",
8649 "xloc": [
8641 - "default.handlebars->35->1395"
8650 + "default.handlebars->37->1427"
8651 ]
8652 },
8653 {
@@ -8662,7 +8671,7 @@
8671 "zh-chs": "阿拉伯文(也门)",
8672 "zh-cht": "阿拉伯文(也門)",
8673 "xloc": [
8665 - "default.handlebars->35->1396"
8674 + "default.handlebars->37->1428"
8675 ]
8676 },
8677 {
@@ -8686,7 +8695,7 @@
8695 "zh-chs": "阿拉贡文",
8696 "zh-cht": "阿拉貢文",
8697 "xloc": [
8689 - "default.handlebars->35->1397"
8698 + "default.handlebars->37->1429"
8699 ]
8700 },
8701 {
@@ -8713,9 +8722,9 @@
8722 "default-mobile.handlebars->11->475",
8723 "default-mobile.handlebars->11->477",
8724 "default-mobile.handlebars->11->479",
8716 - "default.handlebars->35->1242",
8717 - "default.handlebars->35->1244",
8718 - "default.handlebars->35->1246"
8725 + "default.handlebars->37->1274",
8726 + "default.handlebars->37->1276",
8727 + "default.handlebars->37->1278"
8728 ]
8729 },
8730 {
@@ -8739,7 +8748,7 @@
8748 "zh-chs": "您确定要连接到{0}设备吗?",
8749 "zh-cht": "你確定要連接到{0}裝置嗎?",
8750 "xloc": [
8742 - "default.handlebars->35->365"
8751 + "default.handlebars->37->387"
8752 ]
8753 },
8754 {
@@ -8764,7 +8773,7 @@
8773 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
8774 "xloc": [
8775 "default-mobile.handlebars->11->598",
8767 - "default.handlebars->35->1783"
8776 + "default.handlebars->37->1815"
8777 ]
8778 },
8779 {
@@ -8788,7 +8797,7 @@
8797 "zh-chs": "您确定要删除节点{0}吗?",
8798 "zh-cht": "你確定要刪除節點{0}嗎?",
8799 "xloc": [
8791 - "default.handlebars->35->1021"
8800 + "default.handlebars->37->1047"
8801 ]
8802 },
8803 {
@@ -8812,7 +8821,7 @@
8821 "zh-chs": "您确定要卸载所选代理吗?",
8822 "zh-cht": "你確定要卸載所選代理嗎?",
8823 "xloc": [
8815 - "default.handlebars->35->1010"
8824 + "default.handlebars->37->1036"
8825 ]
8826 },
8827 {
@@ -8836,7 +8845,7 @@
8845 "zh-chs": "您确定要卸载所选的{0}代理吗?",
8846 "zh-cht": "你確定要卸載所選的{0}代理嗎?",
8847 "xloc": [
8839 - "default.handlebars->35->1009"
8848 + "default.handlebars->37->1035"
8849 ]
8850 },
8851 {
@@ -8860,7 +8869,7 @@
8869 "zh-chs": "您确定要{0}插件吗:{1}",
8870 "zh-cht": "你確定要{0}外掛嗎:{1}",
8871 "xloc": [
8863 - "default.handlebars->35->2650"
8872 + "default.handlebars->37->2682"
8873 ]
8874 },
8875 {
@@ -8884,7 +8893,7 @@
8893 "zh-chs": "Armada370 - ARM32/HF (libc/2.26)",
8894 "xloc": [
8895 "default-mobile.handlebars->11->41",
8887 - "default.handlebars->35->48"
8896 + "default.handlebars->37->48"
8897 ]
8898 },
8899 {
@@ -8908,7 +8917,7 @@
8917 "zh-chs": "亚美尼亚文",
8918 "zh-cht": "亞美尼亞文",
8919 "xloc": [
8911 - "default.handlebars->35->1398"
8920 + "default.handlebars->37->1430"
8921 ]
8922 },
8923 {
@@ -8980,7 +8989,7 @@
8989 "zh-chs": "阿萨姆文",
8990 "zh-cht": "阿薩姆文",
8991 "xloc": [
8983 - "default.handlebars->35->1399"
8992 + "default.handlebars->37->1431"
8993 ]
8994 },
8995 {
@@ -9028,7 +9037,7 @@
9037 "zh-chs": "助手 (Windows)",
9038 "xloc": [
9039 "default-mobile.handlebars->11->40",
9031 - "default.handlebars->35->47"
9040 + "default.handlebars->37->47"
9041 ]
9042 },
9043 {
@@ -9071,8 +9080,8 @@
9080 "tr": "Windows Yardımcısı (.exe)",
9081 "zh-chs": "Windows 助手 (.exe)",
9082 "xloc": [
9074 - "default.handlebars->35->501",
9075 - "default.handlebars->35->505"
9083 + "default.handlebars->37->527",
9084 + "default.handlebars->37->531"
9085 ]
9086 },
9087 {
@@ -9119,7 +9128,7 @@
9128 "zh-chs": "阿斯图里亚斯文",
9129 "zh-cht": "阿斯圖里亞斯文",
9130 "xloc": [
9122 - "default.handlebars->35->1400"
9131 + "default.handlebars->37->1432"
9132 ]
9133 },
9134 {
@@ -9143,7 +9152,7 @@
9152 "zh-chs": "尝试激活英特尔(R)AMT ACM模式",
9153 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
9154 "xloc": [
9146 - "default.handlebars->35->2004"
9155 + "default.handlebars->37->2036"
9156 ]
9157 },
9158 {
@@ -9190,10 +9199,10 @@
9199 "default-mobile.handlebars->11->416",
9200 "default-mobile.handlebars->11->424",
9201 "default-mobile.handlebars->11->433",
9193 - "default.handlebars->35->1148",
9194 - "default.handlebars->35->1157",
9195 - "default.handlebars->35->1175",
9196 - "default.handlebars->35->1183",
9202 + "default.handlebars->37->1180",
9203 + "default.handlebars->37->1189",
9204 + "default.handlebars->37->1207",
9205 + "default.handlebars->37->1215",
9206 "ssh.handlebars->3->7",
9207 "ssh.handlebars->3->8"
9208 ]
@@ -9219,7 +9228,7 @@
9228 "zh-chs": "认证软件",
9229 "zh-cht": "認證軟體",
9230 "xloc": [
9222 - "default.handlebars->35->2376"
9231 + "default.handlebars->37->2408"
9232 ]
9233 },
9234 {
@@ -9242,9 +9251,9 @@
9251 "tr": "Kimlik Doğrulama Cihazı",
9252 "zh-chs": "认证设备",
9253 "xloc": [
9245 - "default.handlebars->35->1361",
9246 - "default.handlebars->35->1363",
9247 - "default.handlebars->35->1367"
9254 + "default.handlebars->37->1393",
9255 + "default.handlebars->37->1395",
9256 + "default.handlebars->37->1399"
9257 ]
9258 },
9259 {
@@ -9269,8 +9278,8 @@
9278 "xloc": [
9279 "default-mobile.handlebars->11->417",
9280 "default-mobile.handlebars->11->434",
9272 - "default.handlebars->35->1159",
9273 - "default.handlebars->35->1184"
9281 + "default.handlebars->37->1191",
9282 + "default.handlebars->37->1216"
9283 ]
9284 },
9285 {
@@ -9298,10 +9307,10 @@
9307 "default-mobile.handlebars->11->64",
9308 "default-mobile.handlebars->11->95",
9309 "default-mobile.handlebars->11->97",
9301 - "default.handlebars->35->1357",
9302 - "default.handlebars->35->1359",
9303 - "default.handlebars->35->170",
9304 - "default.handlebars->35->175"
9310 + "default.handlebars->37->1389",
9311 + "default.handlebars->37->1391",
9312 + "default.handlebars->37->192",
9313 + "default.handlebars->37->197"
9314 ]
9315 },
9316 {
@@ -9325,7 +9334,7 @@
9334 "zh-chs": "认证软件激活成功。",
9335 "zh-cht": "認證軟體啟動成功。",
9336 "xloc": [
9328 - "default.handlebars->35->171"
9337 + "default.handlebars->37->193"
9338 ]
9339 },
9340 {
@@ -9349,7 +9358,7 @@
9358 "zh-chs": "认证软件已删除。",
9359 "zh-cht": "認證軟體已刪除。",
9360 "xloc": [
9352 - "default.handlebars->35->176"
9361 + "default.handlebars->37->198"
9362 ]
9363 },
9364 {
@@ -9397,7 +9406,7 @@
9406 "zh-chs": "自动删除",
9407 "zh-cht": "自動刪除",
9408 "xloc": [
9400 - "default.handlebars->35->1692"
9409 + "default.handlebars->37->1724"
9410 ]
9411 },
9412 {
@@ -9449,7 +9458,7 @@
9458 "zh-chs": "自动下载代理程序核心转储文件:“{0}”",
9459 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
9460 "xloc": [
9452 - "default.handlebars->35->2085"
9461 + "default.handlebars->37->2117"
9462 ]
9463 },
9464 {
@@ -9539,7 +9548,7 @@
9548 "tr": "Etkin olmayan cihazları otomatik olarak kaldırın",
9549 "zh-chs": "自动移除非活动设备",
9550 "xloc": [
9542 - "default.handlebars->35->1806"
9551 + "default.handlebars->37->1838"
9552 ]
9553 },
9554 {
@@ -9563,7 +9572,7 @@
9572 "zh-chs": "可用內存",
9573 "zh-cht": "可用內存",
9574 "xloc": [
9566 - "default.handlebars->35->2580"
9575 + "default.handlebars->37->2612"
9576 ]
9577 },
9578 {
@@ -9587,7 +9596,7 @@
9596 "zh-chs": "阿塞拜疆文",
9597 "zh-cht": "阿塞拜疆文",
9598 "xloc": [
9590 - "default.handlebars->35->1401"
9599 + "default.handlebars->37->1433"
9600 ]
9601 },
9602 {
@@ -9613,9 +9622,9 @@
9622 "default-mobile.handlebars->11->483",
9623 "default-mobile.handlebars->11->487",
9624 "default-mobile.handlebars->11->491",
9616 - "default.handlebars->35->749",
9617 - "default.handlebars->35->753",
9618 - "default.handlebars->35->757"
9625 + "default.handlebars->37->775",
9626 + "default.handlebars->37->779",
9627 + "default.handlebars->37->783"
9628 ]
9629 },
9630 {
@@ -9640,7 +9649,7 @@
9649 "zh-cht": "的BIOS",
9650 "xloc": [
9651 "default-mobile.handlebars->11->545",
9643 - "default.handlebars->35->1305"
9652 + "default.handlebars->37->1337"
9653 ]
9654 },
9655 {
@@ -9748,7 +9757,7 @@
9757 "zh-chs": "退格",
9758 "xloc": [
9759 "default-mobile.handlebars->11->374",
9751 - "default.handlebars->35->1089"
9760 + "default.handlebars->37->1115"
9761 ]
9762 },
9763 {
@@ -9772,7 +9781,7 @@
9781 "zh-chs": "背景与互动",
9782 "zh-cht": "背景與互動",
9783 "xloc": [
9775 - "default.handlebars->35->471"
9784 + "default.handlebars->37->496"
9785 ]
9786 },
9787 {
@@ -9796,10 +9805,10 @@
9805 "zh-chs": "背景与互动",
9806 "zh-cht": "背景與互動",
9807 "xloc": [
9799 - "default.handlebars->35->1897",
9800 - "default.handlebars->35->1904",
9801 - "default.handlebars->35->441",
9802 - "default.handlebars->35->455"
9808 + "default.handlebars->37->1929",
9809 + "default.handlebars->37->1936",
9810 + "default.handlebars->37->466",
9811 + "default.handlebars->37->480"
9812 ]
9813 },
9814 {
@@ -9823,11 +9832,11 @@
9832 "zh-chs": "仅背景",
9833 "zh-cht": "僅背景",
9834 "xloc": [
9826 - "default.handlebars->35->1898",
9827 - "default.handlebars->35->1905",
9828 - "default.handlebars->35->442",
9829 - "default.handlebars->35->456",
9830 - "default.handlebars->35->472"
9835 + "default.handlebars->37->1930",
9836 + "default.handlebars->37->1937",
9837 + "default.handlebars->37->467",
9838 + "default.handlebars->37->481",
9839 + "default.handlebars->37->497"
9840 ]
9841 },
9842 {
@@ -9876,7 +9885,7 @@
9885 "zh-chs": "备用码",
9886 "zh-cht": "備用碼",
9887 "xloc": [
9879 - "default.handlebars->35->2379"
9888 + "default.handlebars->37->2411"
9889 ]
9890 },
9891 {
@@ -9900,7 +9909,7 @@
9909 "zh-chs": "错误的签名",
9910 "zh-cht": "錯誤的簽名",
9911 "xloc": [
9903 - "default.handlebars->35->2562"
9912 + "default.handlebars->37->2594"
9913 ]
9914 },
9915 {
@@ -9924,7 +9933,7 @@
9933 "zh-chs": "错误的网络证书",
9934 "zh-cht": "錯誤的網絡憑證",
9935 "xloc": [
9927 - "default.handlebars->35->2561"
9936 + "default.handlebars->37->2593"
9937 ]
9938 },
9939 {
@@ -9948,7 +9957,7 @@
9957 "zh-chs": "巴斯克",
9958 "zh-cht": "巴斯克",
9959 "xloc": [
9951 - "default.handlebars->35->1402"
9960 + "default.handlebars->37->1434"
9961 ]
9962 },
9963 {
@@ -9972,7 +9981,7 @@
9981 "zh-chs": "批处理文件上传",
9982 "zh-cht": "批處理文件上傳",
9983 "xloc": [
9975 - "default.handlebars->35->612"
9984 + "default.handlebars->37->638"
9985 ]
9986 },
9987 {
@@ -10020,7 +10029,7 @@
10029 "zh-chs": "将{0}个文件批量上传到文件夹{1}",
10030 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
10031 "xloc": [
10023 - "default.handlebars->35->2084"
10032 + "default.handlebars->37->2116"
10033 ]
10034 },
10035 {
@@ -10044,7 +10053,7 @@
10053 "zh-chs": "白俄罗斯文",
10054 "zh-cht": "白俄羅斯文",
10055 "xloc": [
10047 - "default.handlebars->35->1404"
10056 + "default.handlebars->37->1436"
10057 ]
10058 },
10059 {
@@ -10068,7 +10077,7 @@
10077 "zh-chs": "孟加拉",
10078 "zh-cht": "孟加拉",
10079 "xloc": [
10071 - "default.handlebars->35->1405"
10080 + "default.handlebars->37->1437"
10081 ]
10082 },
10083 {
@@ -10139,7 +10148,7 @@
10148 "zh-chs": "引导加载程序",
10149 "xloc": [
10150 "default-mobile.handlebars->11->509",
10142 - "default.handlebars->35->1259"
10151 + "default.handlebars->37->1291"
10152 ]
10153 },
10154 {
@@ -10163,7 +10172,7 @@
10172 "zh-chs": "波斯尼亚文",
10173 "zh-cht": "波斯尼亞文",
10174 "xloc": [
10166 - "default.handlebars->35->1406"
10175 + "default.handlebars->37->1438"
10176 ]
10177 },
10178 {
@@ -10187,7 +10196,7 @@
10196 "zh-chs": "布列塔尼",
10197 "zh-cht": "布列塔尼",
10198 "xloc": [
10190 - "default.handlebars->35->1407"
10199 + "default.handlebars->37->1439"
10200 ]
10201 },
10202 {
@@ -10211,7 +10220,7 @@
10220 "zh-chs": "广播",
10221 "zh-cht": "廣播",
10222 "xloc": [
10214 - "default.handlebars->35->2279",
10223 + "default.handlebars->37->2311",
10224 "default.handlebars->container->column_l->p4->3->1->0->3->1"
10225 ]
10226 },
@@ -10236,7 +10245,7 @@
10245 "zh-chs": "广播消息",
10246 "zh-cht": "廣播消息",
10247 "xloc": [
10239 - "default.handlebars->35->2200"
10248 + "default.handlebars->37->2232"
10249 ]
10250 },
10251 {
@@ -10260,7 +10269,7 @@
10269 "zh-chs": "向所有连接的用户广播消息。",
10270 "zh-cht": "向所有連接的用戶廣播消息。",
10271 "xloc": [
10263 - "default.handlebars->35->2195"
10272 + "default.handlebars->37->2227"
10273 ]
10274 },
10275 {
@@ -10284,7 +10293,7 @@
10293 "zh-chs": "浏览器默认",
10294 "xloc": [
10295 "default-mobile.handlebars->11->83",
10287 - "default.handlebars->35->58"
10296 + "default.handlebars->37->58"
10297 ]
10298 },
10299 {
@@ -10308,7 +10317,7 @@
10317 "zh-chs": "保加利亚文",
10318 "zh-cht": "保加利亞文",
10319 "xloc": [
10311 - "default.handlebars->35->1403"
10320 + "default.handlebars->37->1435"
10321 ]
10322 },
10323 {
@@ -10332,7 +10341,7 @@
10341 "zh-chs": "缅甸文",
10342 "zh-cht": "緬甸文",
10343 "xloc": [
10335 - "default.handlebars->35->1408"
10344 + "default.handlebars->37->1440"
10345 ]
10346 },
10347 {
@@ -10355,7 +10364,7 @@
10364 "tr": "Varsayılan olarak, etkin olmayan cihazlar 1 gün sonra kaldırılacaktır.",
10365 "zh-chs": "默认情况下,不活动的设备将在 1 天后移除。",
10366 "xloc": [
10358 - "default.handlebars->35->1808"
10367 + "default.handlebars->37->1840"
10368 ]
10369 },
10370 {
@@ -10378,7 +10387,7 @@
10387 "tr": "Varsayılan olarak, etkin olmayan cihazlar {0} gün sonra kaldırılacaktır.",
10388 "zh-chs": "默认情况下,非活动设备将在 {0} 天后移除。",
10389 "xloc": [
10381 - "default.handlebars->35->1809"
10390 + "default.handlebars->37->1841"
10391 ]
10392 },
10393 {
@@ -10403,7 +10412,7 @@
10412 "zh-cht": "CCM",
10413 "xloc": [
10414 "default-mobile.handlebars->11->273",
10406 - "default.handlebars->35->725"
10415 + "default.handlebars->37->751"
10416 ]
10417 },
10418 {
@@ -10427,7 +10436,7 @@
10436 "zh-chs": "CCM模式",
10437 "zh-cht": "CCM模式",
10438 "xloc": [
10430 - "default.handlebars->35->1766"
10439 + "default.handlebars->37->1798"
10440 ]
10441 },
10442 {
@@ -10452,9 +10461,9 @@
10461 "zh-cht": "CIRA",
10462 "xloc": [
10463 "default-mobile.handlebars->11->236",
10455 - "default.handlebars->35->2587",
10456 - "default.handlebars->35->328",
10457 - "default.handlebars->35->549"
10464 + "default.handlebars->37->2619",
10465 + "default.handlebars->37->350",
10466 + "default.handlebars->37->575"
10467 ]
10468 },
10469 {
@@ -10478,7 +10487,7 @@
10487 "zh-chs": "CIRA服务器",
10488 "zh-cht": "CIRA伺服器",
10489 "xloc": [
10481 - "default.handlebars->35->2634"
10490 + "default.handlebars->37->2666"
10491 ]
10492 },
10493 {
@@ -10502,7 +10511,14 @@
10511 "zh-chs": "CIRA服务器命令",
10512 "zh-cht": "CIRA伺服器指令",
10513 "xloc": [
10505 - "default.handlebars->35->2635"
10514 + "default.handlebars->37->2667"
10515 + ]
10516 + },
10517 + {
10518 + "en": "CIRA local FQDN's ignored when server in LAN-only or WAN-only mode.",
10519 + "pl": "Lokalna nazwa FQDN CIRA jest ignorowana, gdy serwer działa w trybie tylko LAN lub tylko WAN.",
10520 + "xloc": [
10521 + "default.handlebars->37->85"
10522 ]
10523 },
10524 {
@@ -10526,7 +10542,7 @@
10542 "zh-chs": "CIRA设置",
10543 "zh-cht": "CIRA設置",
10544 "xloc": [
10529 - "default.handlebars->35->1774"
10545 + "default.handlebars->37->1806"
10546 ]
10547 },
10548 {
@@ -10551,8 +10567,8 @@
10567 "zh-cht": "CPU",
10568 "xloc": [
10569 "default-mobile.handlebars->11->551",
10554 - "default.handlebars->35->1311",
10555 - "default.handlebars->35->2611",
10570 + "default.handlebars->37->1343",
10571 + "default.handlebars->37->2643",
10572 "default.handlebars->container->column_l->p40->3->1->p40type->5"
10573 ]
10574 },
@@ -10577,7 +10593,7 @@
10593 "zh-chs": "CPU负载",
10594 "zh-cht": "CPU負載",
10595 "xloc": [
10580 - "default.handlebars->35->2576"
10596 + "default.handlebars->37->2608"
10597 ]
10598 },
10599 {
@@ -10601,7 +10617,7 @@
10617 "zh-chs": "最近15分钟的CPU负载",
10618 "zh-cht": "最近15分鐘的CPU負載",
10619 "xloc": [
10604 - "default.handlebars->35->2579"
10620 + "default.handlebars->37->2611"
10621 ]
10622 },
10623 {
@@ -10625,7 +10641,7 @@
10641 "zh-chs": "最近5分钟的CPU负载",
10642 "zh-cht": "最近5分鐘的CPU負載",
10643 "xloc": [
10628 - "default.handlebars->35->2578"
10644 + "default.handlebars->37->2610"
10645 ]
10646 },
10647 {
@@ -10649,7 +10665,7 @@
10665 "zh-chs": "最近一分钟的CPU负载",
10666 "zh-cht": "最近一分鐘的CPU負載",
10667 "xloc": [
10652 - "default.handlebars->35->2577"
10668 + "default.handlebars->37->2609"
10669 ]
10670 },
10671 {
@@ -10673,8 +10689,8 @@
10689 "zh-chs": "CR+LF",
10690 "zh-cht": "CR+LF",
10691 "xloc": [
10676 - "default.handlebars->35->1145",
10677 - "default.handlebars->35->1168",
10692 + "default.handlebars->37->1177",
10693 + "default.handlebars->37->1200",
10694 "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
10695 "sharing.handlebars->11->25",
10696 "sharing.handlebars->11->39",
@@ -10702,7 +10718,7 @@
10718 "zh-chs": "CSV",
10719 "zh-cht": "CSV",
10720 "xloc": [
10705 - "default.handlebars->35->2116"
10721 + "default.handlebars->37->2148"
10722 ]
10723 },
10724 {
@@ -10726,9 +10742,9 @@
10742 "zh-chs": "CSV格式",
10743 "zh-cht": "CSV格式",
10744 "xloc": [
10729 - "default.handlebars->35->2120",
10730 - "default.handlebars->35->2187",
10731 - "default.handlebars->35->620"
10745 + "default.handlebars->37->2152",
10746 + "default.handlebars->37->2219",
10747 + "default.handlebars->37->646"
10748 ]
10749 },
10750 {
@@ -10773,7 +10789,14 @@
10789 "zh-chs": "呼叫错误",
10790 "zh-cht": "呼叫錯誤",
10791 "xloc": [
10776 - "default.handlebars->35->2651"
10792 + "default.handlebars->37->2683"
10793 + ]
10794 + },
10795 + {
10796 + "en": "Can't have more than 4 CIRA local FQDN's. Ignoring value.",
10797 + "pl": "Nie może mieć więcej niż 4 lokalnych FQDN CIRA. Ignorowanie wartości.",
10798 + "xloc": [
10799 + "default.handlebars->37->86"
10800 ]
10801 },
10802 {
@@ -10800,8 +10823,9 @@
10823 "agent-translations.json",
10824 "default-mobile.handlebars->11->106",
10825 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
10803 - "default.handlebars->35->1669",
10804 - "default.handlebars->35->2640",
10826 + "default.handlebars->37->1701",
10827 + "default.handlebars->37->2672",
10828 + "default.handlebars->37->440",
10829 "default.handlebars->container->dialog->idx_dlgButtonBar",
10830 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
10831 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -10876,9 +10900,9 @@
10900 "default-mobile.handlebars->11->556",
10901 "default-mobile.handlebars->11->561",
10902 "default-mobile.handlebars->11->563",
10879 - "default.handlebars->35->1316",
10880 - "default.handlebars->35->1321",
10881 - "default.handlebars->35->1323"
10903 + "default.handlebars->37->1348",
10904 + "default.handlebars->37->1353",
10905 + "default.handlebars->37->1355"
10906 ]
10907 },
10908 {
@@ -10903,7 +10927,7 @@
10927 "zh-cht": "容量/速度",
10928 "xloc": [
10929 "default-mobile.handlebars->11->554",
10906 - "default.handlebars->35->1314"
10930 + "default.handlebars->37->1346"
10931 ]
10932 },
10933 {
@@ -10927,7 +10951,7 @@
10951 "zh-chs": "加泰罗尼亚文",
10952 "zh-cht": "加泰羅尼亞文",
10953 "xloc": [
10930 - "default.handlebars->35->1409"
10954 + "default.handlebars->37->1441"
10955 ]
10956 },
10957 {
@@ -10951,7 +10975,7 @@
10975 "zh-chs": "在这里为中心显示地图",
10976 "zh-cht": "在這裡為中心顯示地圖",
10977 "xloc": [
10954 - "default.handlebars->35->680"
10978 + "default.handlebars->37->706"
10979 ]
10980 },
10981 {
@@ -10995,8 +11019,8 @@
11019 "zh-chs": "证书将在 {0} 天后到期",
11020 "xloc": [
11021 "default-mobile.handlebars->11->59",
10998 - "default.handlebars->35->81",
10999 - "default.handlebars->35->82"
11022 + "default.handlebars->37->102",
11023 + "default.handlebars->37->103"
11024 ]
11025 },
11026 {
@@ -11020,7 +11044,7 @@
11044 "zh-chs": "查莫罗",
11045 "zh-cht": "查莫羅",
11046 "xloc": [
11023 - "default.handlebars->35->1410"
11047 + "default.handlebars->37->1442"
11048 ]
11049 },
11050 {
@@ -11070,7 +11094,7 @@
11094 "zh-chs": "更改{0}的电邮",
11095 "zh-cht": "更改{0}的電郵",
11096 "xloc": [
11073 - "default.handlebars->35->2424"
11097 + "default.handlebars->37->2456"
11098 ]
11099 },
11100 {
@@ -11094,9 +11118,9 @@
11118 "zh-chs": "更改组",
11119 "zh-cht": "更改群",
11120 "xloc": [
11097 - "default.handlebars->35->1018",
11098 - "default.handlebars->35->1019",
11099 - "default.handlebars->35->811"
11121 + "default.handlebars->37->1044",
11122 + "default.handlebars->37->1045",
11123 + "default.handlebars->37->837"
11124 ]
11125 },
11126 {
@@ -11121,8 +11145,8 @@
11145 "zh-cht": "更改密碼",
11146 "xloc": [
11147 "default-mobile.handlebars->11->114",
11124 - "default.handlebars->35->1625",
11125 - "default.handlebars->35->2397"
11148 + "default.handlebars->37->1657",
11149 + "default.handlebars->37->2429"
11150 ]
11151 },
11152 {
@@ -11146,7 +11170,7 @@
11170 "zh-chs": "更改{0}的密码",
11171 "zh-cht": "更改{0}的密碼",
11172 "xloc": [
11149 - "default.handlebars->35->2433"
11173 + "default.handlebars->37->2465"
11174 ]
11175 },
11176 {
@@ -11170,7 +11194,7 @@
11194 "zh-chs": "更改{0}的真实名称",
11195 "zh-cht": "更改{0}的真實名稱",
11196 "xloc": [
11173 - "default.handlebars->35->2419"
11197 + "default.handlebars->37->2451"
11198 ]
11199 },
11200 {
@@ -11311,7 +11335,7 @@
11335 "zh-chs": "更改该用户的密码",
11336 "zh-cht": "更改該用戶的密碼",
11337 "xloc": [
11314 - "default.handlebars->35->2396"
11338 + "default.handlebars->37->2428"
11339 ]
11340 },
11341 {
@@ -11359,7 +11383,7 @@
11383 "zh-chs": "在此处更改您的帐户电邮地址。",
11384 "zh-cht": "在此處更改你的帳戶電郵地址。",
11385 "xloc": [
11362 - "default.handlebars->35->1612"
11386 + "default.handlebars->37->1644"
11387 ]
11388 },
11389 {
@@ -11383,7 +11407,7 @@
11407 "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
11408 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
11409 "xloc": [
11386 - "default.handlebars->35->1618"
11410 + "default.handlebars->37->1650"
11411 ]
11412 },
11413 {
@@ -11407,7 +11431,7 @@
11431 "zh-chs": "更改帐户凭据",
11432 "zh-cht": "帳戶憑證已更改",
11433 "xloc": [
11410 - "default.handlebars->35->2056"
11434 + "default.handlebars->37->2088"
11435 ]
11436 },
11437 {
@@ -11431,7 +11455,7 @@
11455 "zh-chs": "{1}组中的设备{0}已更改:{2}",
11456 "zh-cht": "{1}組中的設備{0}已更改:{2}",
11457 "xloc": [
11434 - "default.handlebars->35->2040"
11458 + "default.handlebars->37->2072"
11459 ]
11460 },
11461 {
@@ -11455,7 +11479,7 @@
11479 "zh-chs": "语言从{1}更改为{2}",
11480 "zh-cht": "語言從{1}更改為{2}",
11481 "xloc": [
11458 - "default.handlebars->35->1984"
11482 + "default.handlebars->37->2016"
11483 ]
11484 },
11485 {
@@ -11479,8 +11503,8 @@
11503 "zh-chs": "已更改{0}的用户设备权限",
11504 "zh-cht": "已更改{0}的用戶設備權限",
11505 "xloc": [
11482 - "default.handlebars->35->2042",
11483 - "default.handlebars->35->2063"
11506 + "default.handlebars->37->2074",
11507 + "default.handlebars->37->2095"
11508 ]
11509 },
11510 {
@@ -11524,7 +11548,7 @@
11548 "zh-chs": "更改语言将需要刷新页面。",
11549 "zh-cht": "更改語言將需要刷新頁面。",
11550 "xloc": [
11527 - "default.handlebars->35->1577"
11551 + "default.handlebars->37->1609"
11552 ]
11553 },
11554 {
@@ -11548,12 +11572,12 @@
11572 "zh-chs": "聊天",
11573 "zh-cht": "聊天",
11574 "xloc": [
11551 - "default.handlebars->35->2137",
11552 - "default.handlebars->35->2392",
11553 - "default.handlebars->35->2393",
11554 - "default.handlebars->35->806",
11555 - "default.handlebars->35->885",
11556 - "default.handlebars->35->907"
11575 + "default.handlebars->37->2169",
11576 + "default.handlebars->37->2424",
11577 + "default.handlebars->37->2425",
11578 + "default.handlebars->37->832",
11579 + "default.handlebars->37->911",
11580 + "default.handlebars->37->933"
11581 ]
11582 },
11583 {
@@ -11579,8 +11603,8 @@
11603 "xloc": [
11604 "default-mobile.handlebars->11->623",
11605 "default-mobile.handlebars->11->643",
11582 - "default.handlebars->35->1840",
11583 - "default.handlebars->35->1877"
11606 + "default.handlebars->37->1872",
11607 + "default.handlebars->37->1909"
11608 ]
11609 },
11610 {
@@ -11604,7 +11628,7 @@
11628 "zh-chs": "聊天请求,点击这里接受。",
11629 "xloc": [
11630 "default-mobile.handlebars->11->675",
11607 - "default.handlebars->35->2531"
11631 + "default.handlebars->37->2563"
11632 ]
11633 },
11634 {
@@ -11652,7 +11676,7 @@
11676 "zh-chs": "车臣",
11677 "zh-cht": "車臣",
11678 "xloc": [
11655 - "default.handlebars->35->1411"
11679 + "default.handlebars->37->1443"
11680 ]
11681 },
11682 {
@@ -11676,7 +11700,7 @@
11700 "zh-chs": "检查并单击确定以清除错误日志。",
11701 "zh-cht": "檢查並單擊確定以清除錯誤日誌。",
11702 "xloc": [
11679 - "default.handlebars->35->166"
11703 + "default.handlebars->37->187"
11704 ]
11705 },
11706 {
@@ -11700,7 +11724,7 @@
11724 "zh-chs": "检查并单击确定以开始服务器自我更新。",
11725 "zh-cht": "檢查並單擊確定以開始伺服器自我更新。",
11726 "xloc": [
11703 - "default.handlebars->35->161"
11727 + "default.handlebars->37->182"
11728 ]
11729 },
11730 {
@@ -11748,7 +11772,7 @@
11772 "zh-chs": "检查您的手机并输入验证码。",
11773 "zh-cht": "檢查你的電話並輸入驗證碼。",
11774 "xloc": [
11751 - "default.handlebars->35->202"
11775 + "default.handlebars->37->224"
11776 ]
11777 },
11778 {
@@ -11772,8 +11796,8 @@
11796 "zh-chs": "检查...",
11797 "zh-cht": "檢查...",
11798 "xloc": [
11775 - "default.handlebars->35->1377",
11776 - "default.handlebars->35->2645"
11799 + "default.handlebars->37->1409",
11800 + "default.handlebars->37->2677"
11801 ]
11802 },
11803 {
@@ -11797,7 +11821,7 @@
11821 "zh-chs": "中文",
11822 "zh-cht": "中文",
11823 "xloc": [
11800 - "default.handlebars->35->1412"
11824 + "default.handlebars->37->1444"
11825 ]
11826 },
11827 {
@@ -11821,7 +11845,7 @@
11845 "zh-chs": "中文(香港)",
11846 "zh-cht": "中文(香港)",
11847 "xloc": [
11824 - "default.handlebars->35->1413"
11848 + "default.handlebars->37->1445"
11849 ]
11850 },
11851 {
@@ -11845,7 +11869,7 @@
11869 "zh-chs": "中文(中国)",
11870 "zh-cht": "中文(中國)",
11871 "xloc": [
11848 - "default.handlebars->35->1414"
11872 + "default.handlebars->37->1446"
11873 ]
11874 },
11875 {
@@ -11869,7 +11893,7 @@
11893 "zh-chs": "简体中文",
11894 "zh-cht": "簡體中文",
11895 "xloc": [
11872 - "default.handlebars->35->1574"
11896 + "default.handlebars->37->1606"
11897 ]
11898 },
11899 {
@@ -11893,7 +11917,7 @@
11917 "zh-chs": "中文(新加坡)",
11918 "zh-cht": "中文(新加坡)",
11919 "xloc": [
11896 - "default.handlebars->35->1415"
11920 + "default.handlebars->37->1447"
11921 ]
11922 },
11923 {
@@ -11917,7 +11941,7 @@
11941 "zh-chs": "中文(台湾)",
11942 "zh-cht": "中文(台灣)",
11943 "xloc": [
11920 - "default.handlebars->35->1416"
11944 + "default.handlebars->37->1448"
11945 ]
11946 },
11947 {
@@ -11941,7 +11965,7 @@
11965 "zh-chs": "繁体中文",
11966 "zh-cht": "繁體中文",
11967 "xloc": [
11944 - "default.handlebars->35->1575"
11968 + "default.handlebars->37->1607"
11969 ]
11970 },
11971 {
@@ -11966,7 +11990,7 @@
11990 "zh-cht": "ChromeOS",
11991 "xloc": [
11992 "default-mobile.handlebars->11->23",
11969 - "default.handlebars->35->30"
11993 + "default.handlebars->37->30"
11994 ]
11995 },
11996 {
@@ -11990,7 +12014,7 @@
12014 "zh-chs": "楚瓦什",
12015 "zh-cht": "楚瓦什",
12016 "xloc": [
11993 - "default.handlebars->35->1417"
12017 + "default.handlebars->37->1449"
12018 ]
12019 },
12020 {
@@ -12042,11 +12066,11 @@
12066 "default-mobile.handlebars->11->465",
12067 "default-mobile.handlebars->11->71",
12068 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
12045 - "default.handlebars->35->1218",
12046 - "default.handlebars->35->1220",
12047 - "default.handlebars->35->1222",
12048 - "default.handlebars->35->1224",
12049 - "default.handlebars->35->1978",
12069 + "default.handlebars->37->1250",
12070 + "default.handlebars->37->1252",
12071 + "default.handlebars->37->1254",
12072 + "default.handlebars->37->1256",
12073 + "default.handlebars->37->2010",
12074 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
12075 "default.handlebars->container->column_l->p41->3->1",
12076 "messenger.handlebars->xbottom->1->1->0->5",
@@ -12077,7 +12101,7 @@
12101 "zh-chs": "清除 RDP 凭据?",
12102 "xloc": [
12103 "default-mobile.handlebars->11->359",
12080 - "default.handlebars->35->1062"
12104 + "default.handlebars->37->1088"
12105 ]
12106 },
12107 {
@@ -12101,7 +12125,7 @@
12125 "zh-chs": "清除 SSH 凭据?",
12126 "xloc": [
12127 "default-mobile.handlebars->11->357",
12104 - "default.handlebars->35->1060"
12128 + "default.handlebars->37->1086"
12129 ]
12130 },
12131 {
@@ -12125,7 +12149,7 @@
12149 "zh-chs": "清除保安编码",
12150 "zh-cht": "清除保安編碼",
12151 "xloc": [
12128 - "default.handlebars->35->184"
12152 + "default.handlebars->37->206"
12153 ]
12154 },
12155 {
@@ -12148,8 +12172,8 @@
12172 "tr": "Temsilci çekirdeğini temizle",
12173 "zh-chs": "清除代理核心",
12174 "xloc": [
12151 - "default.handlebars->35->572",
12152 - "default.handlebars->35->616"
12175 + "default.handlebars->37->598",
12176 + "default.handlebars->37->642"
12177 ]
12178 },
12179 {
@@ -12172,7 +12196,7 @@
12196 "tr": "Seçilen cihazlarda temsilci çekirdeği temizlensin mi?",
12197 "zh-chs": "清除选定设备上的代理核心?",
12198 "xloc": [
12175 - "default.handlebars->35->615"
12199 + "default.handlebars->37->641"
12200 ]
12201 },
12202 {
@@ -12197,7 +12221,7 @@
12221 "zh-cht": "全部清除",
12222 "xloc": [
12223 "default-mobile.handlebars->11->658",
12200 - "default.handlebars->35->2514"
12224 + "default.handlebars->37->2546"
12225 ]
12226 },
12227 {
@@ -12222,7 +12246,7 @@
12246 "zh-cht": "清除搜索過濾器",
12247 "xloc": [
12248 "default-mobile.handlebars->11->186",
12225 - "default.handlebars->35->293"
12249 + "default.handlebars->37->315"
12250 ]
12251 },
12252 {
@@ -12247,7 +12271,7 @@
12271 "zh-cht": "清除核心",
12272 "xloc": [
12273 "default-mobile.handlebars->11->577",
12250 - "default.handlebars->35->1338"
12274 + "default.handlebars->37->1370"
12275 ]
12276 },
12277 {
@@ -12271,7 +12295,7 @@
12295 "zh-chs": "从应用程序中清除机密,然后重试。您只有几分钟的时间来输入正确的代码。",
12296 "zh-cht": "從應用程序中清除秘密,然後重試。你只有幾分鐘的時間來輸入正確的代碼。",
12297 "xloc": [
12274 - "default.handlebars->35->174"
12298 + "default.handlebars->37->196"
12299 ]
12300 },
12301 {
@@ -12296,7 +12320,7 @@
12320 "zh-cht": "清除此通知",
12321 "xloc": [
12322 "default-mobile.handlebars->11->657",
12299 - "default.handlebars->35->2513"
12323 + "default.handlebars->37->2545"
12324 ]
12325 },
12326 {
@@ -12368,8 +12392,8 @@
12392 "zh-chs": "单击此处编辑设备组名称",
12393 "zh-cht": "單擊此處編輯裝置群名稱",
12394 "xloc": [
12371 - "default.handlebars->35->1680",
12372 - "default.handlebars->35->1923"
12395 + "default.handlebars->37->1712",
12396 + "default.handlebars->37->1955"
12397 ]
12398 },
12399 {
@@ -12393,7 +12417,7 @@
12417 "zh-chs": "单击此处编辑服务器端设备名称",
12418 "zh-cht": "單擊此處編輯伺服器端裝置名稱",
12419 "xloc": [
12396 - "default.handlebars->35->696"
12420 + "default.handlebars->37->722"
12421 ]
12422 },
12423 {
@@ -12417,7 +12441,7 @@
12441 "zh-chs": "单击此处编辑用户组名称",
12442 "zh-cht": "單擊此處編輯用戶群名稱",
12443 "xloc": [
12420 - "default.handlebars->35->2256"
12444 + "default.handlebars->37->2288"
12445 ]
12446 },
12447 {
@@ -12535,7 +12559,7 @@
12559 "zh-cht": "單擊確定將驗證電郵發送到:",
12560 "xloc": [
12561 "default-mobile.handlebars->11->99",
12538 - "default.handlebars->35->1609"
12562 + "default.handlebars->37->1641"
12563 ]
12564 },
12565 {
@@ -12609,7 +12633,7 @@
12633 "zh-cht": "客戶端控制模式(CCM)",
12634 "xloc": [
12635 "default-mobile.handlebars->11->532",
12612 - "default.handlebars->35->1292"
12636 + "default.handlebars->37->1324"
12637 ]
12638 },
12639 {
@@ -12633,7 +12657,7 @@
12657 "zh-chs": "客户编号",
12658 "zh-cht": "客戶編號",
12659 "xloc": [
12636 - "default.handlebars->35->1662"
12660 + "default.handlebars->37->1694"
12661 ]
12662 },
12663 {
@@ -12657,7 +12681,7 @@
12681 "zh-chs": "客户端启动的远程访问",
12682 "zh-cht": "客戶端啟動的遠程訪問",
12683 "xloc": [
12660 - "default.handlebars->35->1773"
12684 + "default.handlebars->37->1805"
12685 ]
12686 },
12687 {
@@ -12681,7 +12705,7 @@
12705 "zh-chs": "客户机密",
12706 "zh-cht": "客戶機密",
12707 "xloc": [
12684 - "default.handlebars->35->1663"
12708 + "default.handlebars->37->1695"
12709 ]
12710 },
12711 {
@@ -12731,11 +12755,11 @@
12755 "zh-cht": "關",
12756 "xloc": [
12757 "default-mobile.handlebars->11->69",
12734 - "default.handlebars->35->1133",
12735 - "default.handlebars->35->1194",
12736 - "default.handlebars->35->182",
12737 - "default.handlebars->35->190",
12738 - "default.handlebars->35->2639",
12758 + "default.handlebars->37->1165",
12759 + "default.handlebars->37->1226",
12760 + "default.handlebars->37->204",
12761 + "default.handlebars->37->212",
12762 + "default.handlebars->37->2671",
12763 "sharing.handlebars->11->52"
12764 ]
12765 },
@@ -12760,7 +12784,7 @@
12784 "zh-chs": "封闭式桌面多路复用会话,{0}秒",
12785 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
12786 "xloc": [
12763 - "default.handlebars->35->1989"
12787 + "default.handlebars->37->2021"
12788 ]
12789 },
12790 {
@@ -12784,7 +12808,7 @@
12808 "zh-chs": "码",
12809 "zh-cht": "碼",
12810 "xloc": [
12787 - "default.handlebars->35->258"
12811 + "default.handlebars->37->280"
12812 ]
12813 },
12814 {
@@ -12884,7 +12908,7 @@
12908 "zh-chs": "命令",
12909 "zh-cht": "命令",
12910 "xloc": [
12887 - "default.handlebars->35->520"
12911 + "default.handlebars->37->546"
12912 ]
12913 },
12914 {
@@ -12907,7 +12931,7 @@
12931 "tr": "Komut satırı",
12932 "zh-chs": "命令行",
12933 "xloc": [
12910 - "default.handlebars->35->88"
12934 + "default.handlebars->37->109"
12935 ]
12936 },
12937 {
@@ -12932,9 +12956,9 @@
12956 "zh-cht": "指令",
12957 "xloc": [
12958 "default-mobile.handlebars->11->645",
12935 - "default.handlebars->35->1879",
12936 - "default.handlebars->35->887",
12937 - "default.handlebars->35->909"
12959 + "default.handlebars->37->1911",
12960 + "default.handlebars->37->913",
12961 + "default.handlebars->37->935"
12962 ]
12963 },
12964 {
@@ -12958,8 +12982,8 @@
12982 "zh-chs": "通用设备组",
12983 "zh-cht": "通用裝置群",
12984 "xloc": [
12961 - "default.handlebars->35->2287",
12962 - "default.handlebars->35->2438"
12985 + "default.handlebars->37->2319",
12986 + "default.handlebars->37->2470"
12987 ]
12988 },
12989 {
@@ -12983,8 +13007,8 @@
13007 "zh-chs": "通用设备",
13008 "zh-cht": "通用裝置",
13009 "xloc": [
12986 - "default.handlebars->35->2293",
12987 - "default.handlebars->35->2450"
13010 + "default.handlebars->37->2325",
13011 + "default.handlebars->37->2482"
13012 ]
13013 },
13014 {
@@ -13008,7 +13032,7 @@
13032 "zh-chs": "编译时间",
13033 "xloc": [
13034 "default-mobile.handlebars->11->505",
13011 - "default.handlebars->35->1255"
13035 + "default.handlebars->37->1287"
13036 ]
13037 },
13038 {
@@ -13052,7 +13076,7 @@
13076 "zh-chs": "压缩档案...",
13077 "zh-cht": "壓縮檔案...",
13078 "xloc": [
13055 - "default.handlebars->35->1189",
13079 + "default.handlebars->37->1221",
13080 "sharing.handlebars->11->47"
13081 ]
13082 },
@@ -13099,14 +13123,14 @@
13123 "xloc": [
13124 "default-mobile.handlebars->11->354",
13125 "default-mobile.handlebars->11->599",
13102 - "default.handlebars->35->1013",
13103 - "default.handlebars->35->1022",
13104 - "default.handlebars->35->1784",
13105 - "default.handlebars->35->2165",
13106 - "default.handlebars->35->2246",
13107 - "default.handlebars->35->2307",
13108 - "default.handlebars->35->2436",
13109 - "default.handlebars->35->584"
13126 + "default.handlebars->37->1039",
13127 + "default.handlebars->37->1048",
13128 + "default.handlebars->37->1816",
13129 + "default.handlebars->37->2197",
13130 + "default.handlebars->37->2278",
13131 + "default.handlebars->37->2339",
13132 + "default.handlebars->37->2468",
13133 + "default.handlebars->37->610"
13134 ]
13135 },
13136 {
@@ -13151,7 +13175,7 @@
13175 "zh-cht": "確認將1個副本複製到此位置?",
13176 "xloc": [
13177 "default-mobile.handlebars->11->454",
13154 - "default.handlebars->35->1213",
13178 + "default.handlebars->37->1245",
13179 "sharing.handlebars->11->70"
13180 ]
13181 },
@@ -13176,7 +13200,7 @@
13200 "zh-chs": "确认{0}个条目的复制到此位置?",
13201 "zh-cht": "確認{0}個條目的複製到此位置?",
13202 "xloc": [
13179 - "default.handlebars->35->1212",
13203 + "default.handlebars->37->1244",
13204 "sharing.handlebars->11->69"
13205 ]
13206 },
@@ -13225,7 +13249,7 @@
13249 "zh-chs": "确认删除选定的帐户?",
13250 "zh-cht": "確認刪除所選帳戶?",
13251 "xloc": [
13228 - "default.handlebars->35->2164"
13252 + "default.handlebars->37->2196"
13253 ]
13254 },
13255 {
@@ -13270,7 +13294,7 @@
13294 "zh-chs": "确认删除选定的用户组?",
13295 "zh-cht": "確認刪除所選用戶群?",
13296 "xloc": [
13273 - "default.handlebars->35->2245"
13297 + "default.handlebars->37->2277"
13298 ]
13299 },
13300 {
@@ -13294,7 +13318,7 @@
13318 "zh-chs": "确认删除用户{0}?",
13319 "zh-cht": "確認刪除用戶{0}?",
13320 "xloc": [
13297 - "default.handlebars->35->2435"
13321 + "default.handlebars->37->2467"
13322 ]
13323 },
13324 {
@@ -13318,7 +13342,7 @@
13342 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
13343 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
13344 "xloc": [
13321 - "default.handlebars->35->2310"
13345 + "default.handlebars->37->2342"
13346 ]
13347 },
13348 {
@@ -13342,7 +13366,7 @@
13366 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
13367 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
13368 "xloc": [
13345 - "default.handlebars->35->2467"
13369 + "default.handlebars->37->2499"
13370 ]
13371 },
13372 {
@@ -13367,7 +13391,7 @@
13391 "zh-cht": "確認將1個條目移動到此位置?",
13392 "xloc": [
13393 "default-mobile.handlebars->11->456",
13370 - "default.handlebars->35->1215",
13394 + "default.handlebars->37->1247",
13395 "sharing.handlebars->11->72"
13396 ]
13397 },
@@ -13392,7 +13416,7 @@
13416 "zh-chs": "确认将{0}个条目移到此位置?",
13417 "zh-cht": "確認將{0}個條目移到該位置?",
13418 "xloc": [
13395 - "default.handlebars->35->1214",
13419 + "default.handlebars->37->1246",
13420 "sharing.handlebars->11->71"
13421 ]
13422 },
@@ -13441,7 +13465,7 @@
13465 "zh-chs": "确认覆盖?",
13466 "zh-cht": "確認覆蓋?",
13467 "xloc": [
13444 - "default.handlebars->35->1972"
13468 + "default.handlebars->37->2004"
13469 ]
13470 },
13471 {
@@ -13465,8 +13489,8 @@
13489 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
13490 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
13491 "xloc": [
13468 - "default.handlebars->35->2300",
13469 - "default.handlebars->35->2458"
13492 + "default.handlebars->37->2332",
13493 + "default.handlebars->37->2490"
13494 ]
13495 },
13496 {
@@ -13490,8 +13514,8 @@
13514 "zh-chs": "确认删除设备组“ {0} ”的访问权限?",
13515 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
13516 "xloc": [
13493 - "default.handlebars->35->2302",
13494 - "default.handlebars->35->2471"
13517 + "default.handlebars->37->2334",
13518 + "default.handlebars->37->2503"
13519 ]
13520 },
13521 {
@@ -13515,7 +13539,7 @@
13539 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
13540 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
13541 "xloc": [
13518 - "default.handlebars->35->2460"
13542 + "default.handlebars->37->2492"
13543 ]
13544 },
13545 {
@@ -13539,7 +13563,7 @@
13563 "zh-chs": "确认删除用户组“ {0} ”的访问权限?",
13564 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
13565 "xloc": [
13542 - "default.handlebars->35->2463"
13566 + "default.handlebars->37->2495"
13567 ]
13568 },
13569 {
@@ -13563,8 +13587,8 @@
13587 "zh-chs": "确认删除访问权限?",
13588 "zh-cht": "確認刪除訪問權限?",
13589 "xloc": [
13566 - "default.handlebars->35->2461",
13567 - "default.handlebars->35->2464"
13590 + "default.handlebars->37->2493",
13591 + "default.handlebars->37->2496"
13592 ]
13593 },
13594 {
@@ -13589,7 +13613,7 @@
13613 "zh-cht": "確認刪除身份驗證軟體兩步登入?",
13614 "xloc": [
13615 "default-mobile.handlebars->11->98",
13592 - "default.handlebars->35->1360"
13616 + "default.handlebars->37->1392"
13617 ]
13618 },
13619 {
@@ -13634,7 +13658,7 @@
13658 "zh-chs": "确认删除设备共享“{0}”?",
13659 "zh-cht": "確認刪除設備共享“{0}”?",
13660 "xloc": [
13637 - "default.handlebars->35->2456"
13661 + "default.handlebars->37->2488"
13662 ]
13663 },
13664 {
@@ -13699,7 +13723,7 @@
13723 "tr": "Push kimlik doğrulama cihazının kaldırılması onaylansın mı?",
13724 "zh-chs": "确认移除推送认证设备?",
13725 "xloc": [
13702 - "default.handlebars->35->1362"
13726 + "default.handlebars->37->1394"
13727 ]
13728 },
13729 {
@@ -13723,7 +13747,7 @@
13747 "zh-chs": "确认删除用户“ {0} ”的权限?",
13748 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
13749 "xloc": [
13726 - "default.handlebars->35->1890"
13750 + "default.handlebars->37->1922"
13751 ]
13752 },
13753 {
@@ -13747,7 +13771,7 @@
13771 "zh-chs": "确认删除用户组“ {0} ”的权限?",
13772 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
13773 "xloc": [
13750 - "default.handlebars->35->1892"
13774 + "default.handlebars->37->1924"
13775 ]
13776 },
13777 {
@@ -13770,7 +13794,7 @@
13794 "tr": "Seçili aygıtın kaldırılması onaylansın mı?",
13795 "zh-chs": "确认移除所选设备?",
13796 "xloc": [
13773 - "default.handlebars->35->578"
13797 + "default.handlebars->37->604"
13798 ]
13799 },
13800 {
@@ -13793,7 +13817,7 @@
13817 "tr": "Bu giriş belirtecinin kaldırılması onaylansın mı?",
13818 "zh-chs": "确认删除此登录令牌?",
13819 "xloc": [
13796 - "default.handlebars->35->1655"
13820 + "default.handlebars->37->1687"
13821 ]
13822 },
13823 {
@@ -13861,7 +13885,7 @@
13885 "tr": "Seçilen {0} cihazın kaldırılması onaylansın mı?",
13886 "zh-chs": "确认移除 {0} 个选定的设备?",
13887 "xloc": [
13864 - "default.handlebars->35->579"
13888 + "default.handlebars->37->605"
13889 ]
13890 },
13891 {
@@ -13886,7 +13910,7 @@
13910 "zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
13911 "xloc": [
13912 "default-mobile.handlebars->11->151",
13889 - "default.handlebars->35->1973"
13913 + "default.handlebars->37->2005"
13914 ]
13915 },
13916 {
@@ -13915,8 +13939,8 @@
13939 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
13940 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
13941 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
13918 - "default.handlebars->35->1171",
13919 - "default.handlebars->35->1710",
13942 + "default.handlebars->37->1203",
13943 + "default.handlebars->37->1742",
13944 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
13945 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
13946 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -13950,7 +13974,7 @@
13974 "zh-chs": "全部连接",
13975 "zh-cht": "全部連接",
13976 "xloc": [
13953 - "default.handlebars->35->364",
13977 + "default.handlebars->37->386",
13978 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
13979 ]
13980 },
@@ -13995,7 +14019,7 @@
14019 "zh-chs": "连接到服务器",
14020 "zh-cht": "連接到伺服器",
14021 "xloc": [
13998 - "default.handlebars->35->1777"
14022 + "default.handlebars->37->1809"
14023 ]
14024 },
14025 {
@@ -14114,8 +14138,8 @@
14138 "zh-cht": "已連接",
14139 "xloc": [
14140 "default-mobile.handlebars->11->4",
14117 - "default.handlebars->35->11",
14118 - "default.handlebars->35->335",
14141 + "default.handlebars->37->11",
14142 + "default.handlebars->37->357",
14143 "sharing.handlebars->11->4",
14144 "ssh.handlebars->3->4",
14145 "xterm.handlebars->9->4"
@@ -14142,7 +14166,7 @@
14166 "zh-chs": "已连接的英特尔&reg;AMT",
14167 "zh-cht": "已連接的Intel&reg; AMT",
14168 "xloc": [
14145 - "default.handlebars->35->2567"
14169 + "default.handlebars->37->2599"
14170 ]
14171 },
14172 {
@@ -14166,7 +14190,7 @@
14190 "zh-chs": "已连接的用户",
14191 "zh-cht": "已连接的用户",
14192 "xloc": [
14169 - "default.handlebars->35->2572"
14193 + "default.handlebars->37->2604"
14194 ]
14195 },
14196 {
@@ -14191,7 +14215,7 @@
14215 "zh-cht": "現在已連接",
14216 "xloc": [
14217 "default-mobile.handlebars->11->500",
14194 - "default.handlebars->35->1250"
14218 + "default.handlebars->37->1282"
14219 ]
14220 },
14221 {
@@ -14282,11 +14306,11 @@
14306 "default-mobile.handlebars->11->2",
14307 "default-mobile.handlebars->11->472",
14308 "default-mobile.handlebars->11->48",
14285 - "default.handlebars->35->1236",
14286 - "default.handlebars->35->316",
14287 - "default.handlebars->35->319",
14288 - "default.handlebars->35->367",
14289 - "default.handlebars->35->9",
14309 + "default.handlebars->37->1268",
14310 + "default.handlebars->37->338",
14311 + "default.handlebars->37->341",
14312 + "default.handlebars->37->389",
14313 + "default.handlebars->37->9",
14314 "sharing.handlebars->11->2",
14315 "sharing.handlebars->11->93",
14316 "ssh.handlebars->3->2",
@@ -14334,7 +14358,7 @@
14358 "zh-chs": "连接数量",
14359 "zh-cht": "連接數量",
14360 "xloc": [
14337 - "default.handlebars->35->2598"
14361 + "default.handlebars->37->2630"
14362 ]
14363 },
14364 {
@@ -14358,8 +14382,8 @@
14382 "zh-chs": "连接错误",
14383 "xloc": [
14384 "default-mobile.handlebars->11->435",
14361 - "default.handlebars->35->1158",
14362 - "default.handlebars->35->1185",
14385 + "default.handlebars->37->1190",
14386 + "default.handlebars->37->1217",
14387 "login2.handlebars->7->32"
14388 ]
14389 },
@@ -14384,7 +14408,7 @@
14408 "zh-chs": "连接转发器",
14409 "zh-cht": "連接轉發器",
14410 "xloc": [
14387 - "default.handlebars->35->2633"
14411 + "default.handlebars->37->2665"
14412 ]
14413 },
14414 {
@@ -14457,9 +14481,9 @@
14481 "zh-cht": "連接性",
14482 "xloc": [
14483 "default-mobile.handlebars->11->293",
14460 - "default.handlebars->35->1930",
14461 - "default.handlebars->35->306",
14462 - "default.handlebars->35->787",
14484 + "default.handlebars->37->1962",
14485 + "default.handlebars->37->328",
14486 + "default.handlebars->37->813",
14487 "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
14488 ]
14489 },
@@ -14485,8 +14509,8 @@
14509 "zh-cht": "控制台",
14510 "xloc": [
14511 "default-mobile.handlebars->11->316",
14488 - "default.handlebars->35->880",
14489 - "default.handlebars->35->902",
14512 + "default.handlebars->37->906",
14513 + "default.handlebars->37->928",
14514 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
14515 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
14516 "default.handlebars->contextMenu->cxconsole"
@@ -14513,7 +14537,7 @@
14537 "zh-chs": "控制台 -",
14538 "zh-cht": "控制台 -",
14539 "xloc": [
14516 - "default.handlebars->35->697"
14540 + "default.handlebars->37->723"
14541 ]
14542 },
14543 {
@@ -14537,8 +14561,8 @@
14561 "zh-chs": "控制",
14562 "zh-cht": "控制",
14563 "xloc": [
14540 - "default.handlebars->35->879",
14541 - "default.handlebars->35->901",
14564 + "default.handlebars->37->905",
14565 + "default.handlebars->37->927",
14566 "messenger.handlebars->remoteImage->3->2"
14567 ]
14568 },
@@ -14587,7 +14611,7 @@
14611 "zh-chs": "Cookie编码器",
14612 "zh-cht": "Cookie編碼器",
14613 "xloc": [
14590 - "default.handlebars->35->2617"
14614 + "default.handlebars->37->2649"
14615 ]
14616 },
14617 {
@@ -14613,6 +14637,7 @@
14637 "xloc": [
14638 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
14639 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
14640 + "default.handlebars->37->519",
14641 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
14642 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
14643 "sharing.handlebars->p13->p13toolbar->fileArea2->3"
@@ -14639,9 +14664,9 @@
14664 "zh-chs": "将MAC地址复制到剪贴板",
14665 "zh-cht": "將MAC地址複製到剪貼板",
14666 "xloc": [
14642 - "default.handlebars->35->126",
14643 - "default.handlebars->35->134",
14644 - "default.handlebars->35->137"
14667 + "default.handlebars->37->147",
14668 + "default.handlebars->37->155",
14669 + "default.handlebars->37->158"
14670 ]
14671 },
14672 {
@@ -14664,8 +14689,8 @@
14689 "tr": "URL'yi panoya kopyala",
14690 "zh-chs": "将 URL 复制到剪贴板",
14691 "xloc": [
14667 - "default.handlebars->35->502",
14668 - "default.handlebars->35->506"
14692 + "default.handlebars->37->528",
14693 + "default.handlebars->37->532"
14694 ]
14695 },
14696 {
@@ -14689,7 +14714,7 @@
14714 "zh-chs": "将Windows 32位代理URL复制到剪贴板",
14715 "zh-cht": "將Windows 32位代理URL複製到剪貼板",
14716 "xloc": [
14692 - "default.handlebars->35->484"
14717 + "default.handlebars->37->509"
14718 ]
14719 },
14720 {
@@ -14713,7 +14738,7 @@
14738 "zh-chs": "将Windows 64位代理URL复制到剪贴板",
14739 "zh-cht": "將Windows 64位代理URL複製到剪貼板",
14740 "xloc": [
14716 - "default.handlebars->35->488"
14741 + "default.handlebars->37->513"
14742 ]
14743 },
14744 {
@@ -14737,18 +14762,18 @@
14762 "zh-chs": "将地址复制到剪贴板",
14763 "zh-cht": "將地址複製到剪貼板",
14764 "xloc": [
14740 - "default.handlebars->35->115",
14741 - "default.handlebars->35->117",
14742 - "default.handlebars->35->119",
14743 - "default.handlebars->35->128",
14744 - "default.handlebars->35->130",
14745 - "default.handlebars->35->132",
14746 - "default.handlebars->35->140",
14747 - "default.handlebars->35->142",
14748 - "default.handlebars->35->144",
14749 - "default.handlebars->35->146",
14750 - "default.handlebars->35->148",
14751 - "default.handlebars->35->150"
14765 + "default.handlebars->37->136",
14766 + "default.handlebars->37->138",
14767 + "default.handlebars->37->140",
14768 + "default.handlebars->37->149",
14769 + "default.handlebars->37->151",
14770 + "default.handlebars->37->153",
14771 + "default.handlebars->37->161",
14772 + "default.handlebars->37->163",
14773 + "default.handlebars->37->165",
14774 + "default.handlebars->37->167",
14775 + "default.handlebars->37->169",
14776 + "default.handlebars->37->171"
14777 ]
14778 },
14779 {
@@ -14772,8 +14797,8 @@
14797 "zh-chs": "将代理URL复制到剪贴板",
14798 "zh-cht": "將代理URL複製到剪貼板",
14799 "xloc": [
14775 - "default.handlebars->35->519",
14776 - "default.handlebars->35->521"
14800 + "default.handlebars->37->545",
14801 + "default.handlebars->37->547"
14802 ]
14803 },
14804 {
@@ -14797,12 +14822,12 @@
14822 "zh-chs": "复制连结到剪贴板",
14823 "zh-cht": "複製連結到剪貼板",
14824 "xloc": [
14800 - "default.handlebars->35->1941",
14801 - "default.handlebars->35->1960",
14802 - "default.handlebars->35->250",
14803 - "default.handlebars->35->272",
14804 - "default.handlebars->35->274",
14805 - "default.handlebars->35->458"
14825 + "default.handlebars->37->1973",
14826 + "default.handlebars->37->1992",
14827 + "default.handlebars->37->272",
14828 + "default.handlebars->37->294",
14829 + "default.handlebars->37->296",
14830 + "default.handlebars->37->483"
14831 ]
14832 },
14833 {
@@ -14826,7 +14851,7 @@
14851 "zh-chs": "将macOS代理URL复制到剪贴板",
14852 "zh-cht": "將macOS代理URL複製到剪貼板",
14853 "xloc": [
14829 - "default.handlebars->35->497"
14854 + "default.handlebars->37->523"
14855 ]
14856 },
14857 {
@@ -14850,7 +14875,7 @@
14875 "zh-chs": "将名称复制到剪贴板",
14876 "zh-cht": "將名稱複製到剪貼板",
14877 "xloc": [
14853 - "default.handlebars->35->124"
14878 + "default.handlebars->37->145"
14879 ]
14880 },
14881 {
@@ -14876,8 +14901,8 @@
14901 "xloc": [
14902 "agentinvite.handlebars->container->column_l->5->linuxtab",
14903 "agentinvite.handlebars->container->column_l->5->linuxtab",
14879 - "default.handlebars->35->493",
14880 - "default.handlebars->35->515"
14904 + "default.handlebars->37->518",
14905 + "default.handlebars->37->541"
14906 ]
14907 },
14908 {
@@ -14901,7 +14926,7 @@
14926 "zh-chs": "将有效代码复制到剪贴板",
14927 "zh-cht": "將有效代碼複製到剪貼板",
14928 "xloc": [
14904 - "default.handlebars->35->185"
14929 + "default.handlebars->37->207"
14930 ]
14931 },
14932 {
@@ -14925,7 +14950,7 @@
14950 "zh-chs": "复制:“{0}”到“{1}”",
14951 "zh-cht": "複製:“{0}”到“{1}”",
14952 "xloc": [
14928 - "default.handlebars->35->2032"
14953 + "default.handlebars->37->2064"
14954 ]
14955 },
14956 {
@@ -15099,7 +15124,7 @@
15124 "zh-chs": "核心服务器",
15125 "zh-cht": "核心伺服器",
15126 "xloc": [
15102 - "default.handlebars->35->2616"
15127 + "default.handlebars->37->2648"
15128 ]
15129 },
15130 {
@@ -15123,7 +15148,7 @@
15148 "zh-chs": "科西嘉文",
15149 "zh-cht": "科西嘉文",
15150 "xloc": [
15126 - "default.handlebars->35->1418"
15151 + "default.handlebars->37->1450"
15152 ]
15153 },
15154 {
@@ -15167,7 +15192,7 @@
15192 "zh-chs": "创建帐号",
15193 "zh-cht": "創建帳號",
15194 "xloc": [
15170 - "default.handlebars->35->2214",
15195 + "default.handlebars->37->2246",
15196 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
15197 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
15198 "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -15237,8 +15262,8 @@
15262 "tr": "Giriş Simgesi Oluştur",
15263 "zh-chs": "创建登录令牌",
15264 "xloc": [
15240 - "default.handlebars->35->1602",
15241 - "default.handlebars->35->275"
15265 + "default.handlebars->37->1634",
15266 + "default.handlebars->37->297"
15267 ]
15268 },
15269 {
@@ -15262,7 +15287,7 @@
15287 "zh-chs": "创建用户组",
15288 "zh-cht": "創建用戶群",
15289 "xloc": [
15265 - "default.handlebars->35->2253"
15290 + "default.handlebars->37->2285"
15291 ]
15292 },
15293 {
@@ -15286,7 +15311,7 @@
15311 "zh-chs": "创建连结以与访客共享此设备",
15312 "zh-cht": "創建鏈結以與訪客共享此裝置",
15313 "xloc": [
15289 - "default.handlebars->35->809"
15314 + "default.handlebars->37->835"
15315 ]
15316 },
15317 {
@@ -15310,7 +15335,7 @@
15335 "zh-chs": "使用以下选项创建一个新的设备组。",
15336 "zh-cht": "使用以下選項創建一個新的裝置群。",
15337 "xloc": [
15313 - "default.handlebars->35->1632"
15338 + "default.handlebars->37->1664"
15339 ]
15340 },
15341 {
@@ -15334,7 +15359,7 @@
15359 "zh-chs": "创建一个新的设备组。",
15360 "zh-cht": "創建一個新的裝置群。",
15361 "xloc": [
15337 - "default.handlebars->35->309"
15362 + "default.handlebars->37->331"
15363 ]
15364 },
15365 {
@@ -15357,7 +15382,7 @@
15382 "tr": "Hesabınıza alternatif giriş olarak kullanılabilecek geçici bir kullanıcı adı ve şifre oluşturun. Bu, araçların veya diğer hizmetlerin hesabınıza erişmesine izin vermek için kullanışlıdır.",
15383 "zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。",
15384 "xloc": [
15360 - "default.handlebars->35->1583"
15385 + "default.handlebars->37->1615"
15386 ]
15387 },
15388 {
@@ -15381,7 +15406,7 @@
15406 "zh-chs": "创建文件夹(如果不存在)?",
15407 "zh-cht": "創建文件夾(如果不存在)?",
15408 "xloc": [
15384 - "default.handlebars->35->610"
15409 + "default.handlebars->37->636"
15410 ]
15411 },
15412 {
@@ -15405,7 +15430,7 @@
15430 "zh-chs": "创建文件夹:“{0}”",
15431 "zh-cht": "創建文件夾:“{0}”",
15432 "xloc": [
15408 - "default.handlebars->35->2025"
15433 + "default.handlebars->37->2057"
15434 ]
15435 },
15436 {
@@ -15452,7 +15477,7 @@
15477 "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
15478 "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
15479 "xloc": [
15455 - "default.handlebars->35->2178"
15480 + "default.handlebars->37->2210"
15481 ]
15482 },
15483 {
@@ -15502,7 +15527,7 @@
15527 "zh-chs": "创建的设备组:{0}",
15528 "zh-cht": "創建的設備組:{0}",
15529 "xloc": [
15505 - "default.handlebars->35->2036"
15530 + "default.handlebars->37->2068"
15531 ]
15532 },
15533 {
@@ -15526,7 +15551,7 @@
15551 "zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。",
15552 "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
15553 "xloc": [
15529 - "default.handlebars->35->925"
15554 + "default.handlebars->37->951"
15555 ]
15556 },
15557 {
@@ -15592,7 +15617,7 @@
15617 "zh-chs": "创建",
15618 "zh-cht": "創建",
15619 "xloc": [
15595 - "default.handlebars->35->2352"
15620 + "default.handlebars->37->2384"
15621 ]
15622 },
15623 {
@@ -15616,7 +15641,7 @@
15641 "zh-chs": "创建时间",
15642 "zh-cht": "創作時間",
15643 "xloc": [
15619 - "default.handlebars->35->1691"
15644 + "default.handlebars->37->1723"
15645 ]
15646 },
15647 {
@@ -15666,8 +15691,8 @@
15691 "zh-chs": "创建者",
15692 "zh-cht": "創作者",
15693 "xloc": [
15669 - "default.handlebars->35->1689",
15670 - "default.handlebars->35->1690"
15694 + "default.handlebars->37->1721",
15695 + "default.handlebars->37->1722"
15696 ]
15697 },
15698 {
@@ -15692,8 +15717,8 @@
15717 "zh-cht": "證書",
15718 "xloc": [
15719 "default-mobile.handlebars->11->303",
15695 - "default.handlebars->35->1660",
15696 - "default.handlebars->35->797"
15720 + "default.handlebars->37->1692",
15721 + "default.handlebars->37->823"
15722 ]
15723 },
15724 {
@@ -15717,7 +15742,7 @@
15742 "zh-chs": "克里语",
15743 "zh-cht": "克里語",
15744 "xloc": [
15720 - "default.handlebars->35->1419"
15745 + "default.handlebars->37->1451"
15746 ]
15747 },
15748 {
@@ -15741,7 +15766,7 @@
15766 "zh-chs": "克罗地亚文",
15767 "zh-cht": "克羅地亞文",
15768 "xloc": [
15744 - "default.handlebars->35->1420"
15769 + "default.handlebars->37->1452"
15770 ]
15771 },
15772 {
@@ -15817,9 +15842,9 @@
15842 "xloc": [
15843 "default-mobile.handlebars->11->392",
15844 "default-mobile.handlebars->11->396",
15820 - "default.handlebars->35->1107",
15821 - "default.handlebars->35->1111",
15822 - "default.handlebars->35->57",
15845 + "default.handlebars->37->1133",
15846 + "default.handlebars->37->1137",
15847 + "default.handlebars->37->57",
15848 "sharing.handlebars->11->24"
15849 ]
15850 },
@@ -15962,7 +15987,7 @@
15987 "zh-chs": "当前版本",
15988 "zh-cht": "當前版本",
15989 "xloc": [
15965 - "default.handlebars->35->155"
15990 + "default.handlebars->37->176"
15991 ]
15992 },
15993 {
@@ -15986,7 +16011,7 @@
16011 "zh-chs": "当前密码不正确。",
16012 "xloc": [
16013 "default-mobile.handlebars->11->685",
15989 - "default.handlebars->35->2541"
16014 + "default.handlebars->37->2573"
16015 ]
16016 },
16017 {
@@ -16084,7 +16109,7 @@
16109 "zh-chs": "捷克文",
16110 "zh-cht": "捷克文",
16111 "xloc": [
16087 - "default.handlebars->35->1421"
16112 + "default.handlebars->37->1453"
16113 ]
16114 },
16115 {
@@ -16108,7 +16133,7 @@
16133 "zh-chs": "DNS suffix",
16134 "zh-cht": "DNS suffix",
16135 "xloc": [
16111 - "default.handlebars->35->123"
16136 + "default.handlebars->37->144"
16137 ]
16138 },
16139 {
@@ -16132,7 +16157,7 @@
16157 "zh-chs": "丹麦文",
16158 "zh-cht": "丹麥文",
16159 "xloc": [
16135 - "default.handlebars->35->1422"
16160 + "default.handlebars->37->1454"
16161 ]
16162 },
16163 {
@@ -16156,7 +16181,7 @@
16181 "zh-chs": "黑暗模式",
16182 "xloc": [
16183 "default-mobile.handlebars->11->85",
16159 - "default.handlebars->35->60"
16184 + "default.handlebars->37->60"
16185 ]
16186 },
16187 {
@@ -16180,7 +16205,7 @@
16205 "zh-chs": "数据通道",
16206 "zh-cht": "數據通道",
16207 "xloc": [
16183 - "default.handlebars->35->1075",
16208 + "default.handlebars->37->1101",
16209 "sharing.handlebars->11->11"
16210 ]
16211 },
@@ -16205,7 +16230,7 @@
16230 "zh-chs": "日期和时间",
16231 "zh-cht": "日期和時間",
16232 "xloc": [
16208 - "default.handlebars->35->1580"
16233 + "default.handlebars->37->1612"
16234 ]
16235 },
16236 {
@@ -16230,7 +16255,7 @@
16255 "zh-cht": "天",
16256 "xloc": [
16257 "default-mobile.handlebars->11->344",
16233 - "default.handlebars->35->997"
16258 + "default.handlebars->37->1023"
16259 ]
16260 },
16261 {
@@ -16254,7 +16279,7 @@
16279 "zh-chs": "停用",
16280 "zh-cht": "停用",
16281 "xloc": [
16257 - "default.handlebars->35->1756"
16282 + "default.handlebars->37->1788"
16283 ]
16284 },
16285 {
@@ -16278,7 +16303,7 @@
16303 "zh-chs": "如果设置停用CCM",
16304 "zh-cht": "如果設置停用CCM",
16305 "xloc": [
16281 - "default.handlebars->35->1768"
16306 + "default.handlebars->37->1800"
16307 ]
16308 },
16309 {
@@ -16324,7 +16349,7 @@
16349 "zh-cht": "沉睡",
16350 "xloc": [
16351 "default-mobile.handlebars->11->224",
16327 - "default.handlebars->35->532"
16352 + "default.handlebars->37->558"
16353 ]
16354 },
16355 {
@@ -16348,10 +16373,10 @@
16373 "zh-chs": "默认",
16374 "zh-cht": "默認",
16375 "xloc": [
16351 - "default.handlebars->35->2201",
16352 - "default.handlebars->35->2249",
16353 - "default.handlebars->35->2260",
16354 - "default.handlebars->35->2328"
16376 + "default.handlebars->37->2233",
16377 + "default.handlebars->37->2281",
16378 + "default.handlebars->37->2292",
16379 + "default.handlebars->37->2360"
16380 ]
16381 },
16382 {
@@ -16375,7 +16400,7 @@
16400 "zh-chs": "德尔",
16401 "xloc": [
16402 "default-mobile.handlebars->11->380",
16378 - "default.handlebars->35->1095"
16403 + "default.handlebars->37->1121"
16404 ]
16405 },
16406 {
@@ -16404,9 +16429,9 @@
16429 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
16430 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
16431 "default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
16407 - "default.handlebars->35->1204",
16408 - "default.handlebars->35->1967",
16409 - "default.handlebars->35->667",
16432 + "default.handlebars->37->1236",
16433 + "default.handlebars->37->1999",
16434 + "default.handlebars->37->693",
16435 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
16436 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
16437 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -16441,7 +16466,7 @@
16466 "zh-cht": "刪除帳戶",
16467 "xloc": [
16468 "default-mobile.handlebars->11->108",
16444 - "default.handlebars->35->1617"
16469 + "default.handlebars->37->1649"
16470 ]
16471 },
16472 {
@@ -16465,7 +16490,7 @@
16490 "zh-chs": "删除帐户",
16491 "zh-cht": "刪除帳戶",
16492 "xloc": [
16468 - "default.handlebars->35->2166"
16493 + "default.handlebars->37->2198"
16494 ]
16495 },
16496 {
@@ -16490,7 +16515,7 @@
16515 "zh-cht": "刪除裝置",
16516 "xloc": [
16517 "default-mobile.handlebars->11->305",
16493 - "default.handlebars->35->813"
16518 + "default.handlebars->37->839"
16519 ]
16520 },
16521 {
@@ -16513,7 +16538,7 @@
16538 "tr": "Cihazları Sil",
16539 "zh-chs": "删除设备",
16540 "xloc": [
16516 - "default.handlebars->35->585"
16541 + "default.handlebars->37->611"
16542 ]
16543 },
16544 {
@@ -16539,9 +16564,9 @@
16564 "xloc": [
16565 "default-mobile.handlebars->11->597",
16566 "default-mobile.handlebars->11->600",
16542 - "default.handlebars->35->1743",
16543 - "default.handlebars->35->1744",
16544 - "default.handlebars->35->1785"
16567 + "default.handlebars->37->1775",
16568 + "default.handlebars->37->1776",
16569 + "default.handlebars->37->1817"
16570 ]
16571 },
16572 {
@@ -16566,7 +16591,7 @@
16591 "zh-cht": "刪除節點",
16592 "xloc": [
16593 "default-mobile.handlebars->11->352",
16569 - "default.handlebars->35->1023"
16594 + "default.handlebars->37->1049"
16595 ]
16596 },
16597 {
@@ -16611,7 +16636,7 @@
16636 "zh-chs": "删除用户",
16637 "zh-cht": "刪除用戶",
16638 "xloc": [
16614 - "default.handlebars->35->2395"
16639 + "default.handlebars->37->2427"
16640 ]
16641 },
16642 {
@@ -16635,8 +16660,8 @@
16660 "zh-chs": "删除用户群组",
16661 "zh-cht": "刪除用戶群組",
16662 "xloc": [
16638 - "default.handlebars->35->2298",
16639 - "default.handlebars->35->2308"
16663 + "default.handlebars->37->2330",
16664 + "default.handlebars->37->2340"
16665 ]
16666 },
16667 {
@@ -16660,7 +16685,7 @@
16685 "zh-chs": "删除用户群组",
16686 "zh-cht": "刪除用戶群組",
16687 "xloc": [
16663 - "default.handlebars->35->2247"
16688 + "default.handlebars->37->2279"
16689 ]
16690 },
16691 {
@@ -16684,7 +16709,7 @@
16709 "zh-chs": "删除用户{0}",
16710 "zh-cht": "刪除用戶{0}",
16711 "xloc": [
16687 - "default.handlebars->35->2434"
16712 + "default.handlebars->37->2466"
16713 ]
16714 },
16715 {
@@ -16709,7 +16734,7 @@
16734 "zh-cht": "刪除帳戶",
16735 "xloc": [
16736 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
16712 - "default.handlebars->35->2162",
16737 + "default.handlebars->37->2194",
16738 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
16739 ]
16740 },
@@ -16734,7 +16759,7 @@
16759 "zh-chs": "删除设备",
16760 "zh-cht": "刪除裝置",
16761 "xloc": [
16737 - "default.handlebars->35->570"
16762 + "default.handlebars->37->596"
16763 ]
16764 },
16765 {
@@ -16758,7 +16783,7 @@
16783 "zh-chs": "删除群组",
16784 "zh-cht": "刪除群組",
16785 "xloc": [
16761 - "default.handlebars->35->2243"
16786 + "default.handlebars->37->2275"
16787 ]
16788 },
16789 {
@@ -16782,7 +16807,7 @@
16807 "zh-chs": "删除项目?",
16808 "zh-cht": "刪除項目?",
16809 "xloc": [
16785 - "default.handlebars->35->668"
16810 + "default.handlebars->37->694"
16811 ]
16812 },
16813 {
@@ -16806,7 +16831,7 @@
16831 "zh-chs": "递归删除:“{0}”,{1}个元素已删除",
16832 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
16833 "xloc": [
16809 - "default.handlebars->35->2027"
16834 + "default.handlebars->37->2059"
16835 ]
16836 },
16837 {
@@ -16832,8 +16857,8 @@
16857 "xloc": [
16858 "default-mobile.handlebars->11->148",
16859 "default-mobile.handlebars->11->448",
16835 - "default.handlebars->35->1206",
16836 - "default.handlebars->35->1969",
16860 + "default.handlebars->37->1238",
16861 + "default.handlebars->37->2001",
16862 "sharing.handlebars->11->63"
16863 ]
16864 },
@@ -16858,7 +16883,7 @@
16883 "zh-chs": "删除用户群组{0}?",
16884 "zh-cht": "刪除用戶群組{0}?",
16885 "xloc": [
16861 - "default.handlebars->35->2306"
16886 + "default.handlebars->37->2338"
16887 ]
16888 },
16889 {
@@ -16884,8 +16909,8 @@
16909 "xloc": [
16910 "default-mobile.handlebars->11->147",
16911 "default-mobile.handlebars->11->447",
16887 - "default.handlebars->35->1205",
16888 - "default.handlebars->35->1968",
16912 + "default.handlebars->37->1237",
16913 + "default.handlebars->37->2000",
16914 "sharing.handlebars->11->62"
16915 ]
16916 },
@@ -16934,7 +16959,7 @@
16959 "zh-chs": "删除:“{0}”",
16960 "zh-cht": "刪除:“{0}”",
16961 "xloc": [
16937 - "default.handlebars->35->2026"
16962 + "default.handlebars->37->2058"
16963 ]
16964 },
16965 {
@@ -16958,7 +16983,7 @@
16983 "zh-chs": "删除:“{0}”,{1}个元素已删除",
16984 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
16985 "xloc": [
16961 - "default.handlebars->35->2028"
16986 + "default.handlebars->37->2060"
16987 ]
16988 },
16989 {
@@ -16983,7 +17008,7 @@
17008 "zh-cht": "被拒絕",
17009 "xloc": [
17010 "default-mobile.handlebars->11->367",
16986 - "default.handlebars->35->1070",
17011 + "default.handlebars->37->1096",
17012 "sharing.handlebars->11->29",
17013 "sharing.handlebars->11->7"
17014 ]
@@ -17120,19 +17145,19 @@
17145 "default-mobile.handlebars->11->513",
17146 "default-mobile.handlebars->11->588",
17147 "default-mobile.handlebars->11->602",
17123 - "default.handlebars->35->1065",
17124 - "default.handlebars->35->122",
17125 - "default.handlebars->35->1263",
17126 - "default.handlebars->35->1273",
17127 - "default.handlebars->35->1638",
17128 - "default.handlebars->35->1686",
17129 - "default.handlebars->35->1787",
17130 - "default.handlebars->35->2252",
17131 - "default.handlebars->35->2262",
17132 - "default.handlebars->35->2263",
17133 - "default.handlebars->35->2304",
17134 - "default.handlebars->35->708",
17135 - "default.handlebars->35->709",
17148 + "default.handlebars->37->1091",
17149 + "default.handlebars->37->1295",
17150 + "default.handlebars->37->1305",
17151 + "default.handlebars->37->143",
17152 + "default.handlebars->37->1670",
17153 + "default.handlebars->37->1718",
17154 + "default.handlebars->37->1819",
17155 + "default.handlebars->37->2284",
17156 + "default.handlebars->37->2294",
17157 + "default.handlebars->37->2295",
17158 + "default.handlebars->37->2336",
17159 + "default.handlebars->37->734",
17160 + "default.handlebars->37->735",
17161 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
17162 ]
17163 },
@@ -17179,13 +17204,13 @@
17204 "zh-cht": "桌面",
17205 "xloc": [
17206 "default-mobile.handlebars->11->312",
17182 - "default.handlebars->35->1139",
17183 - "default.handlebars->35->1793",
17184 - "default.handlebars->35->2491",
17185 - "default.handlebars->35->2592",
17186 - "default.handlebars->35->673",
17187 - "default.handlebars->35->860",
17188 - "default.handlebars->35->927",
17207 + "default.handlebars->37->1171",
17208 + "default.handlebars->37->1825",
17209 + "default.handlebars->37->2523",
17210 + "default.handlebars->37->2624",
17211 + "default.handlebars->37->699",
17212 + "default.handlebars->37->886",
17213 + "default.handlebars->37->953",
17214 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
17215 "default.handlebars->contextMenu->cxdesktop",
17216 "sharing.handlebars->11->23",
@@ -17212,8 +17237,8 @@
17237 "tr": "Masaüstü + Dosyalar",
17238 "zh-chs": "桌面 + 文件",
17239 "xloc": [
17215 - "default.handlebars->35->864",
17216 - "default.handlebars->35->930"
17240 + "default.handlebars->37->890",
17241 + "default.handlebars->37->956"
17242 ]
17243 },
17244 {
@@ -17236,7 +17261,7 @@
17261 "tr": "Masaüstü + Terminal",
17262 "zh-chs": "桌面 + 终端",
17263 "xloc": [
17239 - "default.handlebars->35->861"
17264 + "default.handlebars->37->887"
17265 ]
17266 },
17267 {
@@ -17259,8 +17284,8 @@
17284 "tr": "Masaüstü + Terminal + Dosyalar",
17285 "zh-chs": "桌面 + 终端 + 文件",
17286 "xloc": [
17262 - "default.handlebars->35->865",
17263 - "default.handlebars->35->932"
17287 + "default.handlebars->37->891",
17288 + "default.handlebars->37->958"
17289 ]
17290 },
17291 {
@@ -17307,7 +17332,7 @@
17332 "tr": "Masaüstü Multiplex",
17333 "zh-chs": "桌面复用",
17334 "xloc": [
17310 - "default.handlebars->35->2597"
17335 + "default.handlebars->37->2629"
17336 ]
17337 },
17338 {
@@ -17331,10 +17356,10 @@
17356 "zh-chs": "桌面通知",
17357 "zh-cht": "桌面通知",
17358 "xloc": [
17334 - "default.handlebars->35->1701",
17335 - "default.handlebars->35->2267",
17336 - "default.handlebars->35->2367",
17337 - "default.handlebars->35->768"
17359 + "default.handlebars->37->1733",
17360 + "default.handlebars->37->2299",
17361 + "default.handlebars->37->2399",
17362 + "default.handlebars->37->794"
17363 ]
17364 },
17365 {
@@ -17358,10 +17383,10 @@
17383 "zh-chs": "桌面提示",
17384 "zh-cht": "桌面提示",
17385 "xloc": [
17361 - "default.handlebars->35->1700",
17362 - "default.handlebars->35->2266",
17363 - "default.handlebars->35->2366",
17364 - "default.handlebars->35->767"
17386 + "default.handlebars->37->1732",
17387 + "default.handlebars->37->2298",
17388 + "default.handlebars->37->2398",
17389 + "default.handlebars->37->793"
17390 ]
17391 },
17392 {
@@ -17385,10 +17410,10 @@
17410 "zh-chs": "桌面提示+工具栏",
17411 "zh-cht": "桌面提示+工具欄",
17412 "xloc": [
17388 - "default.handlebars->35->1698",
17389 - "default.handlebars->35->2264",
17390 - "default.handlebars->35->2364",
17391 - "default.handlebars->35->765"
17413 + "default.handlebars->37->1730",
17414 + "default.handlebars->37->2296",
17415 + "default.handlebars->37->2396",
17416 + "default.handlebars->37->791"
17417 ]
17418 },
17419 {
@@ -17411,7 +17436,7 @@
17436 "tr": "Masaüstü Oturumu",
17437 "zh-chs": "桌面会话",
17438 "xloc": [
17414 - "default.handlebars->35->2484"
17439 + "default.handlebars->37->2516"
17440 ]
17441 },
17442 {
@@ -17505,10 +17530,10 @@
17530 "zh-chs": "桌面工具栏",
17531 "zh-cht": "桌面工具欄",
17532 "xloc": [
17508 - "default.handlebars->35->1699",
17509 - "default.handlebars->35->2265",
17510 - "default.handlebars->35->2365",
17511 - "default.handlebars->35->766"
17533 + "default.handlebars->37->1731",
17534 + "default.handlebars->37->2297",
17535 + "default.handlebars->37->2397",
17536 + "default.handlebars->37->792"
17537 ]
17538 },
17539 {
@@ -17531,7 +17556,7 @@
17556 "tr": "Yalnızca Masaüstü Görünümü",
17557 "zh-chs": "仅桌面视图",
17558 "xloc": [
17534 - "default.handlebars->35->2340"
17559 + "default.handlebars->37->2372"
17560 ]
17561 },
17562 {
@@ -17554,7 +17579,7 @@
17579 "tr": "Masaüstü, Yalnızca görüntüleme",
17580 "zh-chs": "桌面,仅查看",
17581 "xloc": [
17557 - "default.handlebars->35->933"
17582 + "default.handlebars->37->959"
17583 ]
17584 },
17585 {
@@ -17578,7 +17603,7 @@
17603 "zh-chs": "桌面时段",
17604 "zh-cht": "桌面時段",
17605 "xloc": [
17581 - "default.handlebars->35->1138"
17606 + "default.handlebars->37->1170"
17607 ]
17608 },
17609 {
@@ -17652,7 +17677,7 @@
17677 "zh-cht": "細節",
17678 "xloc": [
17679 "default-mobile.handlebars->11->315",
17655 - "default.handlebars->35->1882",
17680 + "default.handlebars->37->1914",
17681 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
17682 "default.handlebars->contextMenu->cxdetails"
17683 ]
@@ -17703,11 +17728,11 @@
17728 "zh-cht": "裝置",
17729 "xloc": [
17730 "default-mobile.handlebars->11->508",
17706 - "default.handlebars->35->1258",
17707 - "default.handlebars->35->1366",
17708 - "default.handlebars->35->1820",
17709 - "default.handlebars->35->231",
17710 - "default.handlebars->35->2453",
17731 + "default.handlebars->37->1290",
17732 + "default.handlebars->37->1398",
17733 + "default.handlebars->37->1852",
17734 + "default.handlebars->37->2485",
17735 + "default.handlebars->37->253",
17736 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
17737 ]
17738 },
@@ -17734,7 +17759,7 @@
17759 "xloc": [
17760 "default-mobile.handlebars->11->333",
17761 "default-mobile.handlebars->11->342",
17737 - "default.handlebars->35->980"
17762 + "default.handlebars->37->1006"
17763 ]
17764 },
17765 {
@@ -17781,7 +17806,7 @@
17806 "tr": "Cihaz Açıklaması",
17807 "zh-chs": "设备描述",
17808 "xloc": [
17784 - "default.handlebars->35->278"
17809 + "default.handlebars->37->300"
17810 ]
17811 },
17812 {
@@ -17804,7 +17829,7 @@
17829 "tr": "Cihaz Ayrıntıları",
17830 "zh-chs": "设备详情",
17831 "xloc": [
17807 - "default.handlebars->35->1844"
17832 + "default.handlebars->37->1876"
17833 ]
17834 },
17835 {
@@ -17854,15 +17879,15 @@
17879 "xloc": [
17880 "agent-translations.json",
17881 "default-mobile.handlebars->11->663",
17857 - "default.handlebars->35->1815",
17858 - "default.handlebars->35->1818",
17859 - "default.handlebars->35->1819",
17860 - "default.handlebars->35->2113",
17861 - "default.handlebars->35->2290",
17862 - "default.handlebars->35->2296",
17863 - "default.handlebars->35->2441",
17864 - "default.handlebars->35->2500",
17865 - "default.handlebars->35->2519"
17882 + "default.handlebars->37->1847",
17883 + "default.handlebars->37->1850",
17884 + "default.handlebars->37->1851",
17885 + "default.handlebars->37->2145",
17886 + "default.handlebars->37->2322",
17887 + "default.handlebars->37->2328",
17888 + "default.handlebars->37->2473",
17889 + "default.handlebars->37->2532",
17890 + "default.handlebars->37->2551"
17891 ]
17892 },
17893 {
@@ -17887,7 +17912,7 @@
17912 "zh-cht": "裝置群用戶",
17913 "xloc": [
17914 "default-mobile.handlebars->11->652",
17890 - "default.handlebars->35->1888"
17915 + "default.handlebars->37->1920"
17916 ]
17917 },
17918 {
@@ -17912,11 +17937,11 @@
17937 "zh-cht": "裝置群",
17938 "xloc": [
17939 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
17915 - "default.handlebars->35->2129",
17916 - "default.handlebars->35->2237",
17917 - "default.handlebars->35->2277",
17918 - "default.handlebars->35->2361",
17919 - "default.handlebars->35->2570",
17940 + "default.handlebars->37->2161",
17941 + "default.handlebars->37->2269",
17942 + "default.handlebars->37->2309",
17943 + "default.handlebars->37->2393",
17944 + "default.handlebars->37->2602",
17945 "default.handlebars->container->column_l->p2->p2info->9"
17946 ]
17947 },
@@ -17941,7 +17966,7 @@
17966 "zh-chs": "设备信息导出",
17967 "zh-cht": "裝置訊息輸出",
17968 "xloc": [
17944 - "default.handlebars->35->627"
17969 + "default.handlebars->37->653"
17970 ]
17971 },
17972 {
@@ -17965,7 +17990,7 @@
17990 "zh-chs": "设备位置",
17991 "zh-cht": "裝置位置",
17992 "xloc": [
17968 - "default.handlebars->35->1024"
17993 + "default.handlebars->37->1050"
17994 ]
17995 },
17996 {
@@ -17989,7 +18014,7 @@
18014 "zh-chs": "设备消息",
18015 "zh-cht": "裝置訊息",
18016 "xloc": [
17992 - "default.handlebars->35->917"
18017 + "default.handlebars->37->943"
18018 ]
18019 },
18020 {
@@ -18014,10 +18039,10 @@
18039 "zh-cht": "裝置名稱",
18040 "xloc": [
18041 "default-mobile.handlebars->11->360",
18017 - "default.handlebars->35->1063",
18018 - "default.handlebars->35->2499",
18019 - "default.handlebars->35->383",
18020 - "default.handlebars->35->392",
18042 + "default.handlebars->37->1089",
18043 + "default.handlebars->37->2531",
18044 + "default.handlebars->37->405",
18045 + "default.handlebars->37->414",
18046 "player.handlebars->3->24"
18047 ]
18048 },
@@ -18042,8 +18067,8 @@
18067 "zh-chs": "设备通知",
18068 "zh-cht": "裝置通知",
18069 "xloc": [
18045 - "default.handlebars->35->606",
18046 - "default.handlebars->35->922"
18070 + "default.handlebars->37->632",
18071 + "default.handlebars->37->948"
18072 ]
18073 },
18074 {
@@ -18089,7 +18114,7 @@
18114 "tr": "Cihaz İtme",
18115 "zh-chs": "设备推送",
18116 "xloc": [
18092 - "default.handlebars->35->2380"
18117 + "default.handlebars->37->2412"
18118 ]
18119 },
18120 {
@@ -18154,7 +18179,7 @@
18179 "zh-chs": "设备共享链接",
18180 "zh-cht": "設備共享鏈接",
18181 "xloc": [
18157 - "default.handlebars->35->857"
18182 + "default.handlebars->37->883"
18183 ]
18184 },
18185 {
@@ -18224,9 +18249,9 @@
18249 "default-mobile.handlebars->11->259",
18250 "default-mobile.handlebars->11->261",
18251 "default-mobile.handlebars->11->263",
18227 - "default.handlebars->35->710",
18228 - "default.handlebars->35->712",
18229 - "default.handlebars->35->714"
18252 + "default.handlebars->37->736",
18253 + "default.handlebars->37->738",
18254 + "default.handlebars->37->740"
18255 ]
18256 },
18257 {
@@ -18249,7 +18274,7 @@
18274 "tr": "Cihaz Görünümü Sütunları",
18275 "zh-chs": "设备视图列",
18276 "xloc": [
18252 - "default.handlebars->35->285"
18277 + "default.handlebars->37->307"
18278 ]
18279 },
18280 {
@@ -18273,8 +18298,8 @@
18298 "zh-chs": "设备连接。",
18299 "zh-cht": "裝置連接。",
18300 "xloc": [
18276 - "default.handlebars->35->1605",
18277 - "default.handlebars->35->1909"
18301 + "default.handlebars->37->1637",
18302 + "default.handlebars->37->1941"
18303 ]
18304 },
18305 {
@@ -18298,8 +18323,8 @@
18323 "zh-chs": "设备断开连接。",
18324 "zh-cht": "裝置斷開連接。",
18325 "xloc": [
18301 - "default.handlebars->35->1606",
18302 - "default.handlebars->35->1910"
18326 + "default.handlebars->37->1638",
18327 + "default.handlebars->37->1942"
18328 ]
18329 },
18330 {

This file is too large to show in full.

views/default.handlebars
+64 -14
@@ -83,6 +83,10 @@
83 <div class="cmtext" onclick="cmdeskaction(2,event)">Ask Consent</div>
84 <div class="cmtext" onclick="cmdeskaction(3,event)">Privacy Bar</div>
85 </div>
86 + <div id="deskDisconnectContextMenu" class="contextMenu noselect" style="display:none;min-width:0px">
87 + <div class="cmtext" onclick="cmdeskaction(10,event)">Disconnect and Lock</div>
88 + <div class="cmtext" onclick="cmdeskaction(11,event)">Disconnect</div>
89 + </div>
90 <div id="altPortContextMenu" class="contextMenu noselect" style="display:none;min-width:0px">
91 <div class="cmtext" onclick="cmaltportaction(1,event)">Alternate Port</div>
92 </div>
@@ -610,7 +614,7 @@
614 <input type="button" id="autoconnectbutton1" value="AutoConnect" onclick=autoConnectDesktop(event) onkeypress="return false" onkeydown="return false" style="display:none" />
615 <span id=connectbutton1span><input type=button id=connectbutton1 cmenu="deskConnectButton" value="Connect" onclick=connectDesktop(event,3) onkeypress="return false" onkeydown="return false" disabled="disabled" /></span>
616 <span id=connectbutton1hspan><input type=button id=connectbutton1h value="HW Connect" title="Connect using Intel&reg; AMT hardware KVM" onclick=connectDesktop(event,2) onkeypress="return false" onkeydown="return false" disabled="disabled" /></span>
613 - <span id=disconnectbutton1span><input type=button id=disconnectbutton1 value="Disconnect" onclick=connectDesktop(event,0) onkeypress="return false" onkeydown="return false" /></span>
617 + <span id=disconnectbutton1span><input type=button id=disconnectbutton1 cmenu="deskDisconnectButton" value="Disconnect" onclick=connectDesktop(event,0) onkeypress="return false" onkeydown="return false" /></span>
618 <span id="deskstatus" style="line-height:22px">Disconnected</span><span id="deskmetadata"></span>
619 </div>
620 </div>
@@ -2162,8 +2166,39 @@
2166 }
2167 case 'serverwarnings': {
2168 if ((message.warnings != null) && (message.warnings.length > 0)) {
2169 + var ServerWarnings = {
2170 + 1: "MeshCentral SSH support requires NodeJS 11 or higher.",
2171 + 2: "Missing WebDAV parameters.",
2172 + 3: "Unrecognized configuration option \"{0}\".",
2173 + 4: "WebSocket compression is disabled, this feature is broken in NodeJS v11.11 to v12.15 and v13.2",
2174 + 5: "Unable to load Intel AMT TLS root certificate for default domain.",
2175 + 6: "Unable to load Intel AMT TLS root certificate for domain {0}.",
2176 + 7: "CIRA local FQDN's ignored when server in LAN-only or WAN-only mode.",
2177 + 8: "Can't have more than 4 CIRA local FQDN's. Ignoring value.",
2178 + 9: "Agent hash checking is being skipped, this is unsafe.",
2179 + 10: "Missing Let's Encrypt email address.",
2180 + 11: "Invalid Let's Encrypt host names.",
2181 + 12: "Invalid Let's Encrypt names, can't contain a *.",
2182 + 13: "Unable to setup Let's Encrypt module.",
2183 + 14: "Invalid Let's Encrypt names, unable to resolve: {0}",
2184 + 15: "Invalid Let's Encrypt email address, unable to resolve: {0}",
2185 + 16: "Unable to load CloudFlare trusted proxy IPv6 address list.",
2186 + 17: "SendGrid server has limited use in LAN mode.",
2187 + 18: "SMTP server has limited use in LAN mode.",
2188 + 19: "SMS gateway has limited use in LAN mode.",
2189 + 20: "Invalid \"LoginCookieEncryptionKey\" in config.json."
2190 + };
2191 var x = '';
2166 - for (var i in message.warnings) { x += '<div style=color:red;padding-bottom:6px><b>' + "WARNING: " + message.warnings[i] + '</b></div>'; }
2192 + for (var i in message.warnings) {
2193 + var y = message.warnings[i];
2194 + if (typeof y == 'string') {
2195 + x += '<div style=color:red;padding-bottom:6px><b>' + "WARNING: " + y + '</b></div>';
2196 + } else {
2197 + var z = ServerWarnings[y.id];
2198 + if (z == null) { z = y.msg; } else { z = format(z, y.args); }
2199 + x += '<div style=color:red;padding-bottom:6px><b>' + "WARNING: " + z + '</b></div>';
2200 + }
2201 + }
2202 QH('serverWarnings', x);
2203 QV('serverWarningsDiv', true);
2204 }
@@ -2593,7 +2628,7 @@
2628 var secret = message.secret;
2629 if (secret.length == 52) { secret = secret.split(/(.............)/).filter(Boolean).join(' '); }
2630 else if (secret.length == 32) { secret = secret.split(/(....)/).filter(Boolean).join(' '); secret = secret.substring(0, 20) + '<br/>' + secret.substring(20) }
2596 - QH('d2optinfo', '<table style=width:380px><tr><td style=vertical-align:top>' + format("Install <a href=\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\" rel=\"noreferrer noopener\" target=_blank>Google Authenticator</a> or a compatible application and scan the barcode, use <a href=\"{0}\" rel=\"noreferrer noopener\" target=_blank>this link</a> or enter the secret. Then, enter the current 6 digit token below to activate 2-Step login.", message.url) + '<br /><br />Secret<br /><tt id=d2optsecret secret="' + message.secret + '" style=font-size:12px>' + secret + '</tt><br /><br /></td><td style=width:1px;vertical-align:top><a href="' + message.url + '" rel="noreferrer noopener" target=_blank><div id="qrcode"></div></a></td><tr><td colspan=2 style="text-align:center;border-top:1px solid black"><br />' + "Enter the token here for 2-step login:" + ' <input type=text autocomplete="one-time-code" inputmode="numeric" pattern="[0-9]*" onkeypress="return (event.keyCode == 8) || (event.charCode >= 48 && event.charCode <= 57)" onkeyup=account_addOtpCheck(event) onkeydown=account_addOtpCheck() maxlength=6 id=d2otpauthinput type=text></td></table>');
2631 + QH('d2optinfo', '<table style=width:380px><tr><td style=vertical-align:top>' + format("Install <a href=\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\" rel=\"noreferrer noopener\" target=_blank>Google Authenticator</a> or a compatible application and scan the barcode, use <a href=\"{0}\" rel=\"noreferrer noopener\" target=_blank>this link</a> or enter the secret. Then, enter the current 6 digit token below to activate 2-Step login.", message.url) + '<br /><br />' + "Secret" + '<br /><tt id=d2optsecret secret="' + message.secret + '" style=font-size:12px>' + secret + '</tt><br /><br /></td><td style=width:1px;vertical-align:top><a href="' + message.url + '" rel="noreferrer noopener" target=_blank><div id="qrcode"></div></a></td><tr><td colspan=2 style="text-align:center;border-top:1px solid black"><br />' + "Enter the token here for 2-step login:" + ' <input type=text autocomplete="one-time-code" inputmode="numeric" pattern="[0-9]*" onkeypress="return (event.keyCode == 8) || (event.charCode >= 48 && event.charCode <= 57)" onkeyup=account_addOtpCheck(event) onkeydown=account_addOtpCheck() maxlength=6 id=d2otpauthinput type=text></td></table>');
2632 new QRCode(Q('qrcode'), { text: message.url, width: 128, height: 128, colorDark: '#000000', colorLight: '#EEE', correctLevel: QRCode.CorrectLevel.H });
2633 QV('idx_dlgOkButton', true);
2634 QE('idx_dlgOkButton', false);
@@ -4682,22 +4717,22 @@
4717 function addAmtScanToMesh(meshid) {
4718 if (xxdialogMode) return false;
4719 var x = "Enter a range of IP addresses to scan for Intel&reg; AMT devices." + '<br /><br />';
4685 - var amtscanoptions = decodeURIComponent('{{{amtscanoptions}}}').split(',');
4720 + var amtscanoptions = '';//decodeURIComponent('{{{amtscanoptions}}}').split(',');
4721 if (amtscanoptions != '') {
4722 x += '<datalist id=iprangelist>';
4723 for (var i in amtscanoptions) { x += '<option>' + amtscanoptions[i] + '</option>'; }
4724 x += '</datalist>';
4690 - x += addHtmlValue("IP Range", '<input id=dp1range list=iprangelist style=width:184px placeholder="192.168.1.0/24" onkeyup=addAmtScanToMeshKeyUp(event) onselect=addAmtScanToMeshKeyUp() onclick=addAmtScanToMeshKeyUp() /><input id=dp1rangebutton type=button value="' + "Scan" + '" onclick=addAmtScanToMeshButton()></input>');
4725 + x += addHtmlValue("IP Range", '<table style=width:250px><tr><td style=width:99%><input id=dp1range list=iprangelist style=width:90% placeholder="192.168.1.0/24" onkeyup=addAmtScanToMeshKeyUp(event) onselect=addAmtScanToMeshKeyUp() onclick=addAmtScanToMeshKeyUp() /><td style=width:1%><input id=dp1rangebutton type=button value="' + "Scan" + '" onclick=addAmtScanToMeshButton()></input></tr></table>');
4726 } else {
4692 - x += addHtmlValue("IP Range", '<input id=dp1range list=iprangelist style=width:184px value="192.168.1.0/24" onkeyup=addAmtScanToMeshKeyUp(event) /><input id=dp1rangebutton type=button value="' + "Scan" + '" onclick=addAmtScanToMeshButton()></input>');
4727 + x += addHtmlValue("IP Range", '<table style=width:250px><tr><td style=width:99%><input id=dp1range style=width:100% list=iprangelist value="192.168.1.0/24" onkeyup=addAmtScanToMeshKeyUp(event) /><td style=width:1%><input id=dp1rangebutton type=button value="' + "Scan" + '" onclick=addAmtScanToMeshButton()></input></tr></table>');
4728 }
4729 x += '<div id=dp1results style="width:100%;height:200px;background-color:white;border:1px gray solid;overflow-y:scroll"></div>';
4730 x += '<input type=hidden id=amtScanMeshId value="' + meshid + '" />';
4696 - x += '<div style="padding:10px;margin-bottom:5px"><input id="idx_dlgCancelButton2" type="button" value="Cancel" style="" onclick="dialogclose(0)" /><input id="idx_dlgOkButton2" type="button" value="OK" style="" onclick="dialogclose(1)" /><div><input id="d2scanSelectButton" type="button" value="Select All" onclick="scanSelectAll()" /></div></div>';
4731 + x += '<div style="padding:10px;margin-bottom:5px"><input id="idx_dlgCancelButton2" type="button" value="' + "Cancel" + '" style="" onclick="dialogclose(0)" /><input id="idx_dlgOkButton2" type="button" value="OK" style="" onclick="dialogclose(1)" /><div><input id="d2scanSelectButton" type="button" value="' + "Select All" + '" onclick="scanSelectAll()" /></div></div>';
4732 setDialogMode(2, "Scan for Intel&reg; AMT devices", 0, addAmtScanToMeshEx, x, meshid);
4733 QE('idx_dlgOkButton2', false);
4734 QE('d2scanSelectButton', false);
4700 - QH('dp1results', '<div style=width:100%;text-align:center;margin-top:12px;color:gray;line-height:1.5>Sample IP range values<br />192.168.0.100<br />192.168.1.0/24<br />192.167.0.1-192.168.0.100</div>');
4735 + QH('dp1results', '<div style=width:100%;text-align:center;margin-top:12px;color:gray;line-height:1.5>' + "Sample IP range values" + '<br />192.168.0.100<br />192.168.1.0/24<br />192.167.0.1-192.168.0.100</div>');
4736 focusTextBox('dp1range');
4737 addAmtScanToMeshKeyUp();
4738 return false;
@@ -4856,7 +4891,7 @@
4891 // Linux agent install
4892 x += '<div id=agins_linux style=display:none>' + format("To add a computer to \"{0}\" run the following command. Root credentials will be needed.", EscapeHtml(mesh.name)) + '<br />';
4893 x += '<textarea id=agins_linux_area rows=2 cols=20 readonly=readonly style=border-radius:4px;padding:6px;margin-top:4px;margin-bottom:4px;background-color:#FFF9D3;border:0;width:100%;resize:none;height:160px;overflow:auto;font-size:12px></textarea>';
4859 - x += '<div style=font-size:x-small;float:right>' + "* For BSD, run \"pkg install wget sudo bash\" first." + '</div><a style=text-decoration:none title="' + "Copy to clipboard" + '" onclick=copyAgentIdValue("agins_linux_area")><img src=images/link4.png height=10 width=10 style=cursor:pointer> Copy</a></div>';
4894 + x += '<div style=font-size:x-small;float:right>' + "* For BSD, run \"pkg install wget sudo bash\" first." + '</div><a style=text-decoration:none title="' + "Copy to clipboard" + '" onclick=copyAgentIdValue("agins_linux_area")><img src=images/link4.png height=10 width=10 style=cursor:pointer> ' + "Copy" + '</a></div>';
4895
4896 // macOS agent install
4897 x += '<div id=agins_osx style=display:none>' + format("To add a new computer to device group \"{0}\", download the mesh agent and install it the computer to manage. This agent installer has server and device group information embedded within it.", EscapeHtml(mesh.name)) + '<br /><br />';
@@ -5514,6 +5549,13 @@
5549 showContextMenuDiv(document.getElementById('deskConnectContextMenu'), event.pageX, event.pageY);
5550 break;
5551 }
5552 + case 'deskDisconnectButton': {
5553 + // Desktop disconnect button context menu
5554 + if ((currentNode == null) || (currentNode.agent == null)) return true;
5555 + contextelement = elem;
5556 + showContextMenuDiv(document.getElementById('deskDisconnectContextMenu'), event.pageX, event.pageY);
5557 + break;
5558 + }
5559 case 'devsContentMenu': {
5560 // Device content menu
5561 contextelement = elem;
@@ -5642,6 +5684,8 @@
5684 if (action == 1) { connectDesktop(null, 3, null, 0x0008 + 0x0040); } // Consent Prompt + Privacy bar
5685 if (action == 2) { connectDesktop(null, 3, null, 0x0008); } // Consent Prompt
5686 if (action == 3) { connectDesktop(null, 3, null, 0x0040); } // Privacy bar
5687 + if (action == 10) { if (desktop != null) { desktop.sendCtrlMsg('{"ctrlChannel":"102938","type":"autolock","value":true}'); connectDesktop(); } } // Disconnect and lock
5688 + if (action == 11) { if (desktop != null) { desktop.sendCtrlMsg('{"ctrlChannel":"102938","type":"autolock","value":false}'); connectDesktop(); } } // Disconnect without lock
5689 }
5690
5691 function cmaltportaction(action) {
@@ -5761,6 +5805,7 @@
5805 QV('termShellContextMenu2', false);
5806 QV('termShellContextMenuLinux', false);
5807 QV('deskConnectContextMenu', false);
5808 + QV('deskDisconnectContextMenu', false);
5809 QV('altPortContextMenu', false);
5810 QV('rfbPortContextMenu', false);
5811 QV('sshPortContextMenu', false);
@@ -8628,8 +8673,8 @@
8673 if (xxdialogMode || desktop == null || desktop.State != 3) return;
8674 Q('DeskClip').blur();
8675 var x = '';
8631 - if ((features2 & 0x0800) == 0) x += '<input id=dlgClipGet type=button value="Get Clipboard" style=width:120px onclick=showDeskClipGet()>';
8632 - if ((features2 & 0x1000) == 0) x += '<input id=dlgClipSet type=button value="Set Clipboard" style=width:120px onclick=showDeskClipSet()>';
8676 + if ((features2 & 0x0800) == 0) x += '<input id=dlgClipGet type=button value="' + "Get Clipboard" + '" style=width:120px onclick=showDeskClipGet()>';
8677 + if ((features2 & 0x1000) == 0) x += '<input id=dlgClipSet type=button value="' + "Set Clipboard" + '" style=width:120px onclick=showDeskClipSet()>';
8678 x += '<div id=dlgClipStatus style="display:inline-block;margin-left:8px" ></div>';
8679 x += '<textarea id=d2clipText style="width:100%;height:184px;resize:none" maxlength=65535></textarea>';
8680 x += '<input type=button value="Close" style=width:80px;float:right onclick=dialogclose(0)><div style=height:26px;margin-top:3px><span id=linuxClipWarn style=display:none>' + "Remote clipboard is valid for 60 seconds." + '</span>&nbsp;</div><div></div>';
@@ -8744,9 +8789,11 @@
8789 var x = '';
8790 for (var i in s) {
8791 if (s[i].p != 0) {
8747 - var c = s[i].d;
8792 + var c = s[i].d, ss = s[i].p;
8793 if (c.length > 30) { c = '<span title="' + c + '">' + c.substring(0, 30) + '...</span>' } else { c = EscapeHtml(c); }
8749 - x += '<div onclick=showServiceDetailsDialog(' + s[i].i + ') class=deskToolsBar><div style=width:70px;float:left;padding-right:5px>' + EscapeHtml(s[i].p) + '</div><div>' + c + '</div></div>';
8794 + if (ss == 'Stopped') { ss = "Stopped"; } // TODO: Add all other states for translation
8795 + else if (ss == 'Running') { ss = "Running"; }
8796 + x += '<div onclick=showServiceDetailsDialog(' + s[i].i + ') class=deskToolsBar><div style=width:70px;float:left;padding-right:5px>' + EscapeHtml(ss) + '</div><div>' + c + '</div></div>';
8797 }
8798 }
8799 QH('DeskToolsServices', x);
@@ -8761,7 +8808,10 @@
8808 if (service.name) { x += addHtmlValue("Name", service.name); }
8809 if (service.displayName) { x += addHtmlValue("Display name", service.displayName); }
8810 if (service.status) {
8764 - if (service.status.state) { x += addHtmlValue("State", capitalizeFirstLetter(service.status.state.toLowerCase())); }
8811 + var ss = capitalizeFirstLetter(service.status.state.toLowerCase());
8812 + if (ss == 'Stopped') { ss = "Stopped"; } // TODO: Add all other states for translation
8813 + else if (ss == 'Running') { ss = "Running"; }
8814 + if (service.status.state) { x += addHtmlValue("State", ss); }
8815 if (service.status.pid) { x += addHtmlValue("PID", service.status.pid); }
8816 var serviceTypes = [];
8817 if (service.status.isFileSystemDriver === true) { serviceTypes.push("FileSystemDriver"); }