From cefd6c98b3655d1f4d600ac79c44ceade1fee0b2 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Wed, 22 Apr 2020 15:29:26 -0700 Subject: [PATCH] More work on SMS integration, added Plivo support. --- meshcentral.js | 1 + meshsms.js | 67 +- meshuser.js | 58 +- sample-config.json | 12 + translate/translate.json | 3257 +++++++++++++++++++------------------- views/default.handlebars | 29 +- views/login.handlebars | 16 +- webserver.js | 67 +- 8 files changed, 1877 insertions(+), 1630 deletions(-) diff --git a/meshcentral.js b/meshcentral.js index a24b3ccf..9feec6d1 100644 --- a/meshcentral.js +++ b/meshcentral.js @@ -2571,6 +2571,7 @@ function mainStart() { // SMS support if ((config.sms != null) && (config.sms.provider == 'twilio')) { modules.push('twilio'); } + if ((config.sms != null) && (config.sms.provider == 'plivo')) { modules.push('plivo'); } // Syslog support if ((require('os').platform() != 'win32') && (config.settings.syslog || config.settings.syslogjson)) { modules.push('modern-syslog'); } diff --git a/meshsms.js b/meshsms.js index 0b9a65cf..b44419e5 100644 --- a/meshsms.js +++ b/meshsms.js @@ -14,6 +14,24 @@ /*jshint esversion: 6 */ "use strict"; +/* +// For Twilio, add this in config.json +"sms": { + "provider": "twilio", + "sid": "ACxxxxxxxxx", + "auth": "xxxxxxx", + "from": "+15555555555" +}, + +// For Plivo, add this in config.json +"sms": { + "provider": "plivo", + "id": "xxxxxxx", + "token": "xxxxxxx", + "from": "15555555555" +} +*/ + // Construct a MeshAgent object, called upon connection module.exports.CreateMeshSMS = function (parent) { var obj = {}; @@ -33,6 +51,17 @@ module.exports.CreateMeshSMS = function (parent) { obj.provider = new Twilio(parent.config.sms.sid, parent.config.sms.auth); break; } + case 'plivo': { + // Validate Plivo configuration values + if (typeof parent.config.sms.id != 'string') { console.log('Invalid or missing SMS gateway provider id.'); return null; } + if (typeof parent.config.sms.token != 'string') { console.log('Invalid or missing SMS gateway provider token.'); return null; } + if (typeof parent.config.sms.from != 'string') { console.log('Invalid or missing SMS gateway provider from.'); return null; } + + // Setup Twilio + var plivo = require('plivo'); + obj.provider = new plivo.Client(parent.config.sms.id, parent.config.sms.token); + break; + } default: { // Unknown SMS gateway provider console.log('Unknown SMS gateway provider: ' + parent.config.sms.provider); @@ -43,15 +72,32 @@ module.exports.CreateMeshSMS = function (parent) { // Send an SMS message obj.sendSMS = function (to, msg, func) { parent.debug('email', 'Sending SMS to: ' + to + ': ' + msg); - if (parent.config.sms.provider == 'twilio') { + if (parent.config.sms.provider == 'twilio') { // Twilio obj.provider.messages.create({ from: parent.config.sms.from, to: to, body: msg }, function (err, result) { - if (err != null) { parent.debug('email', 'SMS error: ' + JSON.stringify(err)); } else { parent.debug('email', 'SMS result: ' + JSON.stringify(result)); } - if (func != null) { func((err == null) && (result.status == 'queued'), err, result); } + if (err != null) { parent.debug('email', 'SMS error: ' + err.message); } else { parent.debug('email', 'SMS result: ' + JSON.stringify(result)); } + if (func != null) { func((err == null) && (result.status == 'queued'), err ? err.message : null, result); } }); + } else if (parent.config.sms.provider == 'plivo') { // Plivo + if (to.split('-').join('').split(' ').join('').split('+').join('').length == 10) { to = '1' + to; } // If we only have 10 digits, add a 1 in front. + obj.provider.messages.create( + parent.config.sms.from, + to, + msg + ).then(function (result) { + parent.debug('email', 'SMS result: ' + JSON.stringify(result)); + if (func != null) { func((result != null) && (result.messageUuid != null), null, result); } + } + ).catch(function (err) { + var msg = null; + if ((err != null) && err.message) { msg = JSON.parse(err.message).error; } + parent.debug('email', 'SMS error: ' + msg); + if (func != null) { func(false, msg, null); } + } + ); } } @@ -109,5 +155,20 @@ module.exports.CreateMeshSMS = function (parent) { obj.sendSMS(phoneNumber, sms, func); }; + // Send phone number verification SMS + obj.sendToken = function (domain, phoneNumber, verificationCode, language, func) { + parent.debug('email', "Sending login token SMS to " + phoneNumber); + + var sms = getTemplate(1, domain, language); + if (sms == null) { parent.debug('email', "Error: Failed to get SMS template"); return; } // No SMS template found + + // Setup the template + sms = sms.split('[[0]]').join(domain.title ? domain.title : 'MeshCentral'); + sms = sms.split('[[1]]').join(verificationCode); + + // Send the SMS + obj.sendSMS(phoneNumber, sms, func); + }; + return obj; }; diff --git a/meshuser.js b/meshuser.js index 9ee3cc99..aa987b23 100644 --- a/meshuser.js +++ b/meshuser.js @@ -762,8 +762,12 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use if (cmdargs['_'].length != 2) { r = "Usage: SMS \"PhoneNumber\" \"Message\"."; } else { - parent.parent.smsserver.sendSMS(cmdargs['_'][0], cmdargs['_'][1], function (status) { - try { ws.send(JSON.stringify({ action: 'serverconsole', value: status?'Success':'Failed', tag: command.tag })); } catch (ex) { } + parent.parent.smsserver.sendSMS(cmdargs['_'][0], cmdargs['_'][1], function (status, msg) { + if (typeof msg == 'string') { + try { ws.send(JSON.stringify({ action: 'serverconsole', value: status ? ('Success: ' + msg) : ('Failed: ' + msg), tag: command.tag })); } catch (ex) { } + } else { + try { ws.send(JSON.stringify({ action: 'serverconsole', value: status ? 'Success' : 'Failed', tag: command.tag })); } catch (ex) { } + } }); } } @@ -3713,9 +3717,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use if (parent.parent.smsserver == null) return; if (common.validateString(command.phone, 1, 18) == false) break; // Check phone length if (command.phone.match(/^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/) == false) break; // Check phone - const code = getRandomEightDigitInteger(); - - // TODO: We need limit how many times we can guess the code + const code = common.zeroPad(getRandomSixDigitInteger(), 6) const phoneCookie = parent.parent.encodeCookie({ a: 'verifyPhone', c: code, p: command.phone, s: ws.sessionId }); parent.parent.smsserver.sendPhoneCheck(domain, command.phone, code, parent.getLanguageCodes(req), function (success) { ws.send(JSON.stringify({ action: 'verifyPhone', cookie: phoneCookie, success: success })); @@ -3723,11 +3725,19 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use break; } case 'confirmPhone': { - if ((parent.parent.smsserver == null) || (typeof command.cookie != 'string') || (typeof command.code != 'number')) break; // Input checks + if ((parent.parent.smsserver == null) || (typeof command.cookie != 'string') || (typeof command.code != 'string') || (obj.failedSmsCookieCheck == 1)) break; // Input checks var cookie = parent.parent.decodeCookie(command.cookie); if (cookie == null) break; // Invalid cookie if (cookie.s != ws.sessionId) break; // Invalid session - if (cookie.c != command.code) { ws.send(JSON.stringify({ action: 'verifyPhone', cookie: command.cookie, success: true })); break; } // Code does not match + if (cookie.c != command.code) { + obj.failedSmsCookieCheck = 1; + // Code does not match, delay the response to limit how many guesses we can make and don't allow more than 1 guess at any given time. + setTimeout(function () { + ws.send(JSON.stringify({ action: 'verifyPhone', cookie: command.cookie, success: true })); + delete obj.failedSmsCookieCheck; + }, 2000 + (parent.crypto.randomBytes(2).readUInt16BE(0) % 4095)); + break; + } // Set the user's phone user.phone = cookie.p; @@ -3755,14 +3765,25 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use break; } case 'smsuser': { // Send a SMS message to a user - if (parent.parent.smsserver == null) break; - if ((user.siteadmin & 2) == 0) break; - if (common.validateString(command.userid, 1, 2048) == false) break; - if (common.validateString(command.msg, 1, 160) == false) break; - var smsuser = parent.users[command.userid]; - if ((smsuser == null) || (smsuser.phone == null)) break; - parent.parent.smsserver.sendSMS(smsuser.phone, command.msg, function (success) { - // TODO + var errMsg = null, smsuser = null; + if (parent.parent.smsserver == null) { errMsg = 'SMS gateway not enabled'; } + else if ((user.siteadmin & 2) == 0) { errMsg = 'No user management rights'; } + else if (common.validateString(command.userid, 1, 2048) == false) { errMsg = 'Invalid userid'; } + else if (common.validateString(command.msg, 1, 160) == false) { errMsg = 'Invalid SMS message'; } + else { + smsuser = parent.users[command.userid]; + if (smsuser == null) { errMsg = 'Invalid userid'; } + else if (smsuser.phone == null) { errMsg = 'No phone number for this user'; } + } + + if (errMsg != null) { displayNotificationMessage(errMsg); break; } + + parent.parent.smsserver.sendSMS(smsuser.phone, command.msg, function (success, msg) { + if (success) { + displayNotificationMessage('SMS succesfuly sent.'); + } else { + if (typeof msg == 'string') { displayNotificationMessage('SMS error: ' + msg); } else { displayNotificationMessage('SMS error'); } + } }); break; } @@ -4179,11 +4200,8 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } // Generate a 8 digit integer with even random probability for each value. - function getRandomEightDigitInteger() { - var bigInt; - do { bigInt = parent.crypto.randomBytes(4).readUInt32BE(0); } while (bigInt >= 4200000000); - return bigInt % 100000000; - } + function getRandomEightDigitInteger() { var bigInt; do { bigInt = parent.crypto.randomBytes(4).readUInt32BE(0); } while (bigInt >= 4200000000); return bigInt % 100000000; } + function getRandomSixDigitInteger() { var bigInt; do { bigInt = parent.crypto.randomBytes(4).readUInt32BE(0); } while (bigInt >= 4200000000); return bigInt % 1000000; } // Parse arguments string array into an object function parseArgs(argv) { diff --git a/sample-config.json b/sample-config.json index e383cdcd..83da1d40 100644 --- a/sample-config.json +++ b/sample-config.json @@ -178,5 +178,17 @@ "_tlscertcheck": false, "__tlsstrict__": "When set to true, TLS cypher setup is more limited, SSLv2 and SSLv3 are not allowed.", "_tlsstrict": true + }, + "_sms": { + "provider": "twilio", + "sid": "ACxxxxxxxxx", + "auth": "xxxxxxx", + "from": "+1-555-555-5555" + }, + "__sms": { + "provider": "plivo", + "id": "xxxxxxx", + "token": "xxxxxxx", + "from": "1-555-555-5555" } } diff --git a/translate/translate.json b/translate/translate.json index cd076b7e..897253f1 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -14,8 +14,8 @@ "ru": " + CIRA", "zh-chs": " + CIRA", "xloc": [ - "default.handlebars->29->1135", - "default.handlebars->29->1137" + "default.handlebars->29->1142", + "default.handlebars->29->1144" ] }, { @@ -174,7 +174,7 @@ "ru": " Может быть использована подсказка пароля, но не рекоммендуется.", "zh-chs": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->29->1064" + "default.handlebars->29->1071" ] }, { @@ -191,8 +191,8 @@ "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.", "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。", "xloc": [ - "default.handlebars->29->1210", - "default.handlebars->29->1509" + "default.handlebars->29->1217", + "default.handlebars->29->1518" ] }, { @@ -209,7 +209,7 @@ "ru": " и задайте указанное ниже имя пользователя и любой пароль.", "zh-chs": " 並使用該用戶名和任何密碼對服務器進行身份驗證。", "xloc": [ - "default.handlebars->29->257" + "default.handlebars->29->259" ] }, { @@ -226,7 +226,7 @@ "ru": " и задайте указанные ниже имя пользователя и пароль.", "zh-chs": " 並使用該用戶名和密碼向服務器驗證身份。", "xloc": [ - "default.handlebars->29->256" + "default.handlebars->29->258" ] }, { @@ -277,7 +277,7 @@ "ru": " с TLS.", "zh-chs": " TLS。", "xloc": [ - "default.handlebars->29->151" + "default.handlebars->29->153" ] }, { @@ -294,7 +294,7 @@ "ru": " без TLS", "zh-chs": " 沒有TLS。", "xloc": [ - "default.handlebars->29->152" + "default.handlebars->29->154" ] }, { @@ -326,7 +326,7 @@ "ru": "(необязательно)", "zh-chs": "(可選的)", "xloc": [ - "default.handlebars->29->296" + "default.handlebars->29->298" ] }, { @@ -358,7 +358,7 @@ "ru": "* Для BSD сначала запустите \\\"pkg install wget sudo bash\\\".", "zh-chs": "*對於BSD,首先運行 “pkg install wget sudo bash”。", "xloc": [ - "default.handlebars->29->329" + "default.handlebars->29->331" ] }, { @@ -375,7 +375,7 @@ "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.", "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。", "xloc": [ - "default.handlebars->29->1182" + "default.handlebars->29->1189" ] }, { @@ -408,7 +408,7 @@ "zh-chs": ",", "xloc": [ "default-mobile.handlebars->9->331", - "default.handlebars->29->1276" + "default.handlebars->29->1283" ] }, { @@ -426,7 +426,7 @@ "zh-chs": ",僅限Intel®AMT", "xloc": [ "default-mobile.handlebars->9->95", - "default.handlebars->29->169" + "default.handlebars->29->171" ] }, { @@ -443,7 +443,7 @@ "ru": ", MQTT онлайн", "zh-chs": ",MQTT在線", "xloc": [ - "default.handlebars->29->813" + "default.handlebars->29->815" ] }, { @@ -460,7 +460,7 @@ "ru": ", Soft-KVM", "zh-chs": ",軟KVM", "xloc": [ - "default.handlebars->29->672" + "default.handlebars->29->674" ] }, { @@ -479,9 +479,9 @@ "xloc": [ "default-mobile.handlebars->9->231", "default-mobile.handlebars->9->239", - "default.handlebars->29->673", - "default.handlebars->29->704", - "default.handlebars->29->716", + "default.handlebars->29->675", + "default.handlebars->29->706", + "default.handlebars->29->718", "xterm.handlebars->9->6" ] }, @@ -604,9 +604,9 @@ "xloc": [ "default-mobile.handlebars->9->244", "default-mobile.handlebars->9->70", - "default.handlebars->29->1317", - "default.handlebars->29->1615", - "default.handlebars->29->718" + "default.handlebars->29->1324", + "default.handlebars->29->1628", + "default.handlebars->29->720" ] }, { @@ -654,7 +654,7 @@ "ru": "1 активная сессия", "zh-chs": "1個活動會話", "xloc": [ - "default.handlebars->29->1564" + "default.handlebars->29->1577" ] }, { @@ -673,7 +673,7 @@ "xloc": [ "default-mobile.handlebars->9->335", "default-mobile.handlebars->9->80", - "default.handlebars->29->1336" + "default.handlebars->29->1343" ] }, { @@ -690,9 +690,9 @@ "ru": "1 день", "zh-chs": "1天", "xloc": [ - "default.handlebars->29->159", - "default.handlebars->29->287", - "default.handlebars->29->301" + "default.handlebars->29->161", + "default.handlebars->29->289", + "default.handlebars->29->303" ] }, { @@ -709,7 +709,7 @@ "ru": "1 группа", "zh-chs": "1組", "xloc": [ - "default.handlebars->29->1534" + "default.handlebars->29->1544" ] }, { @@ -726,9 +726,9 @@ "ru": "1 час", "zh-chs": "1小時", "xloc": [ - "default.handlebars->29->157", - "default.handlebars->29->285", - "default.handlebars->29->299" + "default.handlebars->29->159", + "default.handlebars->29->287", + "default.handlebars->29->301" ] }, { @@ -762,9 +762,9 @@ "ru": "1 месяц", "zh-chs": "1個月", "xloc": [ - "default.handlebars->29->161", - "default.handlebars->29->289", - "default.handlebars->29->303" + "default.handlebars->29->163", + "default.handlebars->29->291", + "default.handlebars->29->305" ] }, { @@ -781,7 +781,7 @@ "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...", "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->29->1371" + "default.handlebars->29->1378" ] }, { @@ -798,7 +798,7 @@ "ru": "1 устройство", "zh-chs": "1個節點", "xloc": [ - "default.handlebars->29->343" + "default.handlebars->29->345" ] }, { @@ -832,7 +832,7 @@ "ru": "1 сессия", "zh-chs": "1節", "xloc": [ - "default.handlebars->29->1375" + "default.handlebars->29->1382" ] }, { @@ -849,9 +849,9 @@ "ru": "1 неделя", "zh-chs": "1週", "xloc": [ - "default.handlebars->29->160", - "default.handlebars->29->288", - "default.handlebars->29->302" + "default.handlebars->29->162", + "default.handlebars->29->290", + "default.handlebars->29->304" ] }, { @@ -1100,8 +1100,8 @@ "ru": "двухфакторная аутентификация включена", "zh-chs": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->29->1388", - "default.handlebars->29->1555" + "default.handlebars->29->1395", + "default.handlebars->29->1566" ] }, { @@ -1202,8 +1202,8 @@ "ru": "32-разрядная версия MeshAgent", "zh-chs": "MeshAgent的32位版本", "xloc": [ - "default.handlebars->29->319", - "default.handlebars->29->336" + "default.handlebars->29->321", + "default.handlebars->29->338" ] }, { @@ -1416,7 +1416,7 @@ "ru": "64-битная версия MacOS Mesh Agent", "zh-chs": "64位版本的MacOS Mesh Agent", "xloc": [ - "default.handlebars->29->332" + "default.handlebars->29->334" ] }, { @@ -1433,8 +1433,8 @@ "ru": "64-разрядная версия MeshAgent", "zh-chs": "MeshAgent的64位版本", "xloc": [ - "default.handlebars->29->323", - "default.handlebars->29->339" + "default.handlebars->29->325", + "default.handlebars->29->341" ] }, { @@ -1465,7 +1465,7 @@ "ru": "7-дневная статистика работы", "zh-chs": "7天電源狀態", "xloc": [ - "default.handlebars->29->612" + "default.handlebars->29->614" ] }, { @@ -1518,8 +1518,8 @@ "ru": "8 часов", "zh-chs": "8小時", "xloc": [ - "default.handlebars->29->286", - "default.handlebars->29->300" + "default.handlebars->29->288", + "default.handlebars->29->302" ] }, { @@ -1705,7 +1705,7 @@ "zh-chs": "ACM", "xloc": [ "default-mobile.handlebars->9->185", - "default.handlebars->29->473" + "default.handlebars->29->475" ] }, { @@ -1722,8 +1722,8 @@ "ru": "AMT", "zh-chs": "AMT", "xloc": [ - "default.handlebars->29->178", - "default.handlebars->29->371" + "default.handlebars->29->180", + "default.handlebars->29->373" ] }, { @@ -1812,7 +1812,7 @@ "ru": "Отказано в доступе", "zh-chs": "拒絕訪問", "xloc": [ - "default.handlebars->29->814" + "default.handlebars->29->816" ] }, { @@ -1830,7 +1830,7 @@ "zh-chs": "拒絕訪問。", "xloc": [ "login-mobile.handlebars->5->15", - "login.handlebars->5->15" + "login.handlebars->5->16" ] }, { @@ -1847,7 +1847,7 @@ "ru": "Доступ к файлам сервера", "zh-chs": "訪問服務器文件", "xloc": [ - "default.handlebars->29->1515" + "default.handlebars->29->1524" ] }, { @@ -1922,10 +1922,10 @@ "default-mobile.handlebars->9->55", "default-mobile.handlebars->9->57", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0", - "default.handlebars->29->1073", - "default.handlebars->29->1075", - "default.handlebars->29->445", - "default.handlebars->29->447" + "default.handlebars->29->1080", + "default.handlebars->29->1082", + "default.handlebars->29->447", + "default.handlebars->29->449" ] }, { @@ -1956,8 +1956,8 @@ "ru": "Аккаунт заблокирован", "zh-chs": "帐户已被锁定", "xloc": [ - "default.handlebars->29->1389", - "default.handlebars->29->1512" + "default.handlebars->29->1397", + "default.handlebars->29->1521" ] }, { @@ -1975,7 +1975,7 @@ "zh-chs": "達到帳戶限制。", "xloc": [ "login-mobile.handlebars->5->5", - "login.handlebars->5->5" + "login.handlebars->5->6" ] }, { @@ -1993,7 +1993,7 @@ "zh-chs": "帳戶被鎖定。", "xloc": [ "login-mobile.handlebars->5->14", - "login.handlebars->5->14" + "login.handlebars->5->15" ] }, { @@ -2011,7 +2011,7 @@ "zh-chs": "找不到帳戶。", "xloc": [ "login-mobile.handlebars->5->11", - "login.handlebars->5->11" + "login.handlebars->5->12" ] }, { @@ -2045,7 +2045,7 @@ "ru": "Действиe", "zh-chs": "行動", "xloc": [ - "default.handlebars->29->819", + "default.handlebars->29->821", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -2063,8 +2063,8 @@ "ru": "Файл действий", "zh-chs": "動作文件", "xloc": [ - "default.handlebars->29->653", - "default.handlebars->29->655" + "default.handlebars->29->655", + "default.handlebars->29->657" ] }, { @@ -2083,7 +2083,7 @@ "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1", - "default.handlebars->29->517", + "default.handlebars->29->519", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -2139,9 +2139,9 @@ "xloc": [ "default-mobile.handlebars->9->180", "default-mobile.handlebars->9->182", - "default.handlebars->29->466", "default.handlebars->29->468", - "default.handlebars->29->784" + "default.handlebars->29->470", + "default.handlebars->29->786" ] }, { @@ -2158,10 +2158,10 @@ "ru": "Активация", "zh-chs": "激活", "xloc": [ - "default.handlebars->29->1148", - "default.handlebars->29->1150", - "default.handlebars->29->220", - "default.handlebars->29->222" + "default.handlebars->29->1155", + "default.handlebars->29->1157", + "default.handlebars->29->222", + "default.handlebars->29->224" ] }, { @@ -2178,7 +2178,7 @@ "ru": "Активный пользователь", "zh-chs": "活動用戶{0}", "xloc": [ - "default.handlebars->29->492" + "default.handlebars->29->494" ] }, { @@ -2195,8 +2195,8 @@ "ru": "Добавить агент", "zh-chs": "添加代理", "xloc": [ - "default.handlebars->29->1152", - "default.handlebars->29->224" + "default.handlebars->29->1159", + "default.handlebars->29->226" ] }, { @@ -2213,7 +2213,7 @@ "ru": "Добавить CIRA", "zh-chs": "添加CIRA", "xloc": [ - "default.handlebars->29->214" + "default.handlebars->29->216" ] }, { @@ -2230,8 +2230,8 @@ "ru": "Добавить устройство", "zh-chs": "添加設備", "xloc": [ - "default.handlebars->29->1489", - "default.handlebars->29->1593" + "default.handlebars->29->1498", + "default.handlebars->29->1606" ] }, { @@ -2248,7 +2248,7 @@ "ru": "Добавить событие к устройству", "zh-chs": "添加設備事件", "xloc": [ - "default.handlebars->29->595" + "default.handlebars->29->597" ] }, { @@ -2265,10 +2265,10 @@ "ru": "Добавить группу устройств", "zh-chs": "添加設備組", "xloc": [ - "default.handlebars->29->1242", - "default.handlebars->29->1483", - "default.handlebars->29->1581", - "default.handlebars->29->195" + "default.handlebars->29->1249", + "default.handlebars->29->1492", + "default.handlebars->29->1594", + "default.handlebars->29->197" ] }, { @@ -2276,7 +2276,7 @@ "en": "Add Device Group Permissions", "nl": "Machtigingen voor apparaatgroep toevoegen", "xloc": [ - "default.handlebars->29->1239" + "default.handlebars->29->1246" ] }, { @@ -2290,8 +2290,8 @@ "ru": "Добавить разрешения для устройства", "zh-chs": "添加设备权限", "xloc": [ - "default.handlebars->29->1244", - "default.handlebars->29->1246" + "default.handlebars->29->1251", + "default.handlebars->29->1253" ] }, { @@ -2308,7 +2308,7 @@ "ru": "Добавить Intel® AMT CIRA устройство", "zh-chs": "添加英特爾®AMT CIRA設備", "xloc": [ - "default.handlebars->29->270" + "default.handlebars->29->272" ] }, { @@ -2325,7 +2325,7 @@ "ru": "Добавить Intel® AMT устройство", "zh-chs": "添加英特爾®AMT設備", "xloc": [ - "default.handlebars->29->237" + "default.handlebars->29->239" ] }, { @@ -2359,7 +2359,7 @@ "ru": "Добавить локально", "zh-chs": "添加本地", "xloc": [ - "default.handlebars->29->216" + "default.handlebars->29->218" ] }, { @@ -2376,7 +2376,7 @@ "ru": "Добавить участие", "zh-chs": "添加會員", "xloc": [ - "default.handlebars->29->1611" + "default.handlebars->29->1624" ] }, { @@ -2393,7 +2393,7 @@ "ru": "Добавить Mesh Agent", "zh-chs": "添加網格代理", "xloc": [ - "default.handlebars->29->342" + "default.handlebars->29->344" ] }, { @@ -2414,8 +2414,8 @@ "default.handlebars->29->135", "default.handlebars->29->138", "default.handlebars->29->139", - "default.handlebars->29->841", - "default.handlebars->29->842" + "default.handlebars->29->848", + "default.handlebars->29->849" ] }, { @@ -2433,7 +2433,7 @@ "zh-chs": "添加用戶", "xloc": [ "default-mobile.handlebars->9->281", - "default.handlebars->29->552" + "default.handlebars->29->554" ] }, { @@ -2447,7 +2447,7 @@ "ru": "Добавить разрешения для пользовательских устройств", "zh-chs": "添加用户设备权限", "xloc": [ - "default.handlebars->29->1249" + "default.handlebars->29->1256" ] }, { @@ -2464,10 +2464,10 @@ "ru": "Добавить группу пользователей", "zh-chs": "添加用戶組", "xloc": [ - "default.handlebars->29->1142", - "default.handlebars->29->1241", - "default.handlebars->29->1587", - "default.handlebars->29->553" + "default.handlebars->29->1149", + "default.handlebars->29->1248", + "default.handlebars->29->1600", + "default.handlebars->29->555" ] }, { @@ -2475,7 +2475,7 @@ "en": "Add User Group Device Permissions", "nl": "Gebruikersmachtigingen voor apparaatgroep toevoegen", "xloc": [ - "default.handlebars->29->1251" + "default.handlebars->29->1258" ] }, { @@ -2514,8 +2514,8 @@ "ru": "Добавить пользователей", "zh-chs": "添加用戶", "xloc": [ - "default.handlebars->29->1141", - "default.handlebars->29->1478" + "default.handlebars->29->1148", + "default.handlebars->29->1487" ] }, { @@ -2532,7 +2532,7 @@ "ru": "Добавить пользователей в группу устройств", "zh-chs": "將用戶添加到設備組", "xloc": [ - "default.handlebars->29->1238" + "default.handlebars->29->1245" ] }, { @@ -2549,7 +2549,7 @@ "ru": "Добавить пользователей в группу", "zh-chs": "將用戶添加到用戶組", "xloc": [ - "default.handlebars->29->1511" + "default.handlebars->29->1520" ] }, { @@ -2583,7 +2583,7 @@ "ru": "Добавить новый Intel® AMT компьютер сканированием локальной сети.", "zh-chs": "通過掃描本地網絡添加新的英特爾®AMT計算機。", "xloc": [ - "default.handlebars->29->217" + "default.handlebars->29->219" ] }, { @@ -2600,8 +2600,8 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.", "zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->29->1143", - "default.handlebars->29->213" + "default.handlebars->29->1150", + "default.handlebars->29->215" ] }, { @@ -2618,8 +2618,8 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.", "zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->29->1145", - "default.handlebars->29->215" + "default.handlebars->29->1152", + "default.handlebars->29->217" ] }, { @@ -2636,7 +2636,7 @@ "ru": "Добавить новое Intel® AMT устройство к группе устройств \\\"{0}\\\".", "zh-chs": "將新的英特爾®AMT設備添加到設備組“{0}”。", "xloc": [ - "default.handlebars->29->227" + "default.handlebars->29->229" ] }, { @@ -2644,8 +2644,8 @@ "en": "Add a new computer to this device group by installing the mesh agent.", "nl": "Voeg een nieuwe computer toe aan deze apparaatgroep door de mesh-agent te installeren.", "xloc": [ - "default.handlebars->29->1151", - "default.handlebars->29->223" + "default.handlebars->29->1158", + "default.handlebars->29->225" ] }, { @@ -2662,7 +2662,7 @@ "ru": "Адрес", "zh-chs": "地址", "xloc": [ - "default.handlebars->29->191" + "default.handlebars->29->193" ] }, { @@ -2696,7 +2696,7 @@ "ru": "Режим управления администратора (ACM)", "zh-chs": "管理員控制模式(ACM)", "xloc": [ - "default.handlebars->29->786" + "default.handlebars->29->788" ] }, { @@ -2713,7 +2713,7 @@ "ru": "Учетные данные администратора", "zh-chs": "管理員憑證", "xloc": [ - "default.handlebars->29->792" + "default.handlebars->29->794" ] }, { @@ -2748,7 +2748,7 @@ "ru": "Области администратора", "zh-chs": "管理領域", "xloc": [ - "default.handlebars->29->1538" + "default.handlebars->29->1548" ] }, { @@ -2783,7 +2783,7 @@ "ru": "Административные области", "zh-chs": "行政領域", "xloc": [ - "default.handlebars->29->1436" + "default.handlebars->29->1445" ] }, { @@ -2800,7 +2800,7 @@ "ru": "Администратор", "zh-chs": "管理員", "xloc": [ - "default.handlebars->29->1382" + "default.handlebars->29->1389" ] }, { @@ -2817,7 +2817,7 @@ "ru": "Африканский", "zh-chs": "南非語", "xloc": [ - "default.handlebars->29->844" + "default.handlebars->29->851" ] }, { @@ -2837,10 +2837,10 @@ "default-mobile.handlebars->9->124", "default-mobile.handlebars->9->177", "default-mobile.handlebars->9->193", - "default.handlebars->29->1303", - "default.handlebars->29->1311", - "default.handlebars->29->174", - "default.handlebars->29->367", + "default.handlebars->29->1310", + "default.handlebars->29->1318", + "default.handlebars->29->176", + "default.handlebars->29->369", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" ] }, @@ -2858,8 +2858,8 @@ "ru": "Агент + Intel AMT", "zh-chs": "代理+英特爾AMT", "xloc": [ - "default.handlebars->29->1305", - "default.handlebars->29->1313" + "default.handlebars->29->1312", + "default.handlebars->29->1320" ] }, { @@ -2894,7 +2894,7 @@ "zh-chs": "代理控制台", "xloc": [ "default-mobile.handlebars->9->316", - "default.handlebars->29->1259" + "default.handlebars->29->1266" ] }, { @@ -2911,7 +2911,7 @@ "ru": "Счетчик ошибок агента", "zh-chs": "座席錯誤計數器", "xloc": [ - "default.handlebars->29->1625" + "default.handlebars->29->1638" ] }, { @@ -2980,7 +2980,7 @@ "ru": "Сессии агентов", "zh-chs": "座席會議", "xloc": [ - "default.handlebars->29->1641" + "default.handlebars->29->1654" ] }, { @@ -2998,7 +2998,7 @@ "zh-chs": "代理商標籤", "xloc": [ "default-mobile.handlebars->9->192", - "default.handlebars->29->485" + "default.handlebars->29->487" ] }, { @@ -3015,7 +3015,7 @@ "ru": "Типы агента", "zh-chs": "代理類型", "xloc": [ - "default.handlebars->29->1309", + "default.handlebars->29->1316", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -3033,9 +3033,9 @@ "ru": "Агент подключен", "zh-chs": "代理已連接", "xloc": [ - "default.handlebars->29->141", - "default.handlebars->29->543", - "default.handlebars->29->544" + "default.handlebars->29->143", + "default.handlebars->29->545", + "default.handlebars->29->546" ] }, { @@ -3052,7 +3052,7 @@ "ru": "Агент отключился", "zh-chs": "代理已斷開連接", "xloc": [ - "default.handlebars->29->145" + "default.handlebars->29->147" ] }, { @@ -3069,7 +3069,7 @@ "ru": "Агент оффлайн", "zh-chs": "代理離線", "xloc": [ - "default.handlebars->29->812" + "default.handlebars->29->814" ] }, { @@ -3086,7 +3086,7 @@ "ru": "Агент онлайн", "zh-chs": "代理在線", "xloc": [ - "default.handlebars->29->811" + "default.handlebars->29->813" ] }, { @@ -3103,7 +3103,7 @@ "ru": "Агенты", "zh-chs": "代理商", "xloc": [ - "default.handlebars->29->1654" + "default.handlebars->29->1667" ] }, { @@ -3120,7 +3120,7 @@ "ru": "Албанский", "zh-chs": "阿爾巴尼亞語", "xloc": [ - "default.handlebars->29->845" + "default.handlebars->29->852" ] }, { @@ -3173,9 +3173,9 @@ "ru": "Фокусирование всех", "zh-chs": "全部聚焦", "xloc": [ - "default.handlebars->29->674", "default.handlebars->29->676", - "default.handlebars->29->677" + "default.handlebars->29->678", + "default.handlebars->29->679" ] }, { @@ -3192,8 +3192,8 @@ "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.", "zh-chs": "允許用戶管理此設備組和該組中的設備。", "xloc": [ - "default.handlebars->29->1208", - "default.handlebars->29->1508" + "default.handlebars->29->1215", + "default.handlebars->29->1517" ] }, { @@ -3207,7 +3207,7 @@ "ru": "Разрешить пользователям управлять этим устройством.", "zh-chs": "允许用户管理此设备。", "xloc": [ - "default.handlebars->29->1209" + "default.handlebars->29->1216" ] }, { @@ -3260,7 +3260,7 @@ "ru": "Поменять (F10 = ESC+0)", "zh-chs": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->29->709" + "default.handlebars->29->711" ] }, { @@ -3294,9 +3294,9 @@ "ru": "Всегда уведомлять", "zh-chs": "始終通知", "xloc": [ - "default.handlebars->29->1122", - "default.handlebars->29->1547", - "default.handlebars->29->501" + "default.handlebars->29->1129", + "default.handlebars->29->1557", + "default.handlebars->29->503" ] }, { @@ -3313,9 +3313,9 @@ "ru": "Всегда запрашивать", "zh-chs": "總是提示", "xloc": [ - "default.handlebars->29->1123", - "default.handlebars->29->1548", - "default.handlebars->29->502" + "default.handlebars->29->1130", + "default.handlebars->29->1558", + "default.handlebars->29->504" ] }, { @@ -3420,7 +3420,7 @@ "ru": "Антивирус", "zh-chs": "防毒軟件", "xloc": [ - "default.handlebars->29->491" + "default.handlebars->29->493" ] }, { @@ -3437,7 +3437,7 @@ "ru": "Любые поддерживаемые", "zh-chs": "任何支持", "xloc": [ - "default.handlebars->29->280" + "default.handlebars->29->282" ] }, { @@ -3454,7 +3454,7 @@ "ru": "Apple MacOS", "zh-chs": "蘋果MacOS", "xloc": [ - "default.handlebars->29->310" + "default.handlebars->29->312" ] }, { @@ -3471,7 +3471,7 @@ "ru": "Только Apple MacOS", "zh-chs": "僅限Apple MacOS", "xloc": [ - "default.handlebars->29->282" + "default.handlebars->29->284" ] }, { @@ -3505,7 +3505,7 @@ "ru": "Арабский (Алжир)", "zh-chs": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->29->847" + "default.handlebars->29->854" ] }, { @@ -3522,7 +3522,7 @@ "ru": "Арабский (Бахрейн)", "zh-chs": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->29->848" + "default.handlebars->29->855" ] }, { @@ -3539,7 +3539,7 @@ "ru": "Арабский (Египет)", "zh-chs": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->29->849" + "default.handlebars->29->856" ] }, { @@ -3556,7 +3556,7 @@ "ru": "Арабский (Ирак)", "zh-chs": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->29->850" + "default.handlebars->29->857" ] }, { @@ -3573,7 +3573,7 @@ "ru": "Арабский (Иордания)", "zh-chs": "阿拉伯語(約旦)", "xloc": [ - "default.handlebars->29->851" + "default.handlebars->29->858" ] }, { @@ -3590,7 +3590,7 @@ "ru": "Арабский (Кувейт)", "zh-chs": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->29->852" + "default.handlebars->29->859" ] }, { @@ -3607,7 +3607,7 @@ "ru": "Арабский (Ливан)", "zh-chs": "阿拉伯語(黎巴嫩)", "xloc": [ - "default.handlebars->29->853" + "default.handlebars->29->860" ] }, { @@ -3624,7 +3624,7 @@ "ru": "Арабский (Ливия)", "zh-chs": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->29->854" + "default.handlebars->29->861" ] }, { @@ -3641,7 +3641,7 @@ "ru": "Арабский (Марокко)", "zh-chs": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->29->855" + "default.handlebars->29->862" ] }, { @@ -3658,7 +3658,7 @@ "ru": "Арабский (Оман)", "zh-chs": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->29->856" + "default.handlebars->29->863" ] }, { @@ -3675,7 +3675,7 @@ "ru": "Арабский (Катар)", "zh-chs": "阿拉伯語(卡塔爾)", "xloc": [ - "default.handlebars->29->857" + "default.handlebars->29->864" ] }, { @@ -3692,7 +3692,7 @@ "ru": "Арабский (Саудовская Аравия)", "zh-chs": "阿拉伯語(沙特阿拉伯)", "xloc": [ - "default.handlebars->29->858" + "default.handlebars->29->865" ] }, { @@ -3709,7 +3709,7 @@ "ru": "Арабский (стандартный)", "zh-chs": "阿拉伯語(標準)", "xloc": [ - "default.handlebars->29->846" + "default.handlebars->29->853" ] }, { @@ -3726,7 +3726,7 @@ "ru": "Арабский (Сирия)", "zh-chs": "阿拉伯語(敘利亞)", "xloc": [ - "default.handlebars->29->859" + "default.handlebars->29->866" ] }, { @@ -3743,7 +3743,7 @@ "ru": "Арабский (Тунис)", "zh-chs": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->29->860" + "default.handlebars->29->867" ] }, { @@ -3760,7 +3760,7 @@ "ru": "Арабский (О.А.Э.)", "zh-chs": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->29->861" + "default.handlebars->29->868" ] }, { @@ -3777,7 +3777,7 @@ "ru": "Арабский (Йемен)", "zh-chs": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->29->862" + "default.handlebars->29->869" ] }, { @@ -3794,7 +3794,7 @@ "ru": "Арагонский", "zh-chs": "阿拉貢人", "xloc": [ - "default.handlebars->29->863" + "default.handlebars->29->870" ] }, { @@ -3811,7 +3811,7 @@ "ru": "Архитектура", "zh-chs": "建築", "xloc": [ - "default.handlebars->29->760" + "default.handlebars->29->762" ] }, { @@ -3828,7 +3828,7 @@ "ru": "Вы действительно хотите подключиться к {0} устройствам?", "zh-chs": "您確定要連接到{0}設備嗎?", "xloc": [ - "default.handlebars->29->208" + "default.handlebars->29->210" ] }, { @@ -3846,7 +3846,7 @@ "zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。", "xloc": [ "default-mobile.handlebars->9->287", - "default.handlebars->29->1186" + "default.handlebars->29->1193" ] }, { @@ -3863,7 +3863,7 @@ "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?", "zh-chs": "您確定要刪除節點{0}嗎?", "xloc": [ - "default.handlebars->29->634" + "default.handlebars->29->636" ] }, { @@ -3880,7 +3880,7 @@ "ru": "Вы действительно хотите деинсталировать выбранного агента?", "zh-chs": "您確定要卸載所選代理嗎?", "xloc": [ - "default.handlebars->29->623" + "default.handlebars->29->625" ] }, { @@ -3897,7 +3897,7 @@ "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?", "zh-chs": "您確定要卸載所選的{0}代理嗎?", "xloc": [ - "default.handlebars->29->622" + "default.handlebars->29->624" ] }, { @@ -3914,7 +3914,7 @@ "ru": "Вы уверенны, что {0} плагин: {1}", "zh-chs": "您確定要{0}插件嗎:{1}", "xloc": [ - "default.handlebars->29->1694" + "default.handlebars->29->1707" ] }, { @@ -3931,7 +3931,7 @@ "ru": "Армянский", "zh-chs": "亞美尼亞人", "xloc": [ - "default.handlebars->29->864" + "default.handlebars->29->871" ] }, { @@ -3964,7 +3964,7 @@ "ru": "Ассамский", "zh-chs": "阿薩姆語", "xloc": [ - "default.handlebars->29->865" + "default.handlebars->29->872" ] }, { @@ -3981,7 +3981,7 @@ "ru": "Астурии", "zh-chs": "阿斯圖里亞斯人", "xloc": [ - "default.handlebars->29->866" + "default.handlebars->29->873" ] }, { @@ -3998,7 +3998,7 @@ "ru": "Приложение аутентификации", "zh-chs": "身份驗證應用", "xloc": [ - "default.handlebars->29->1551" + "default.handlebars->29->1561" ] }, { @@ -4021,8 +4021,8 @@ "default-mobile.handlebars->9->35", "default.handlebars->29->109", "default.handlebars->29->114", - "default.handlebars->29->830", - "default.handlebars->29->832" + "default.handlebars->29->837", + "default.handlebars->29->839" ] }, { @@ -4090,7 +4090,7 @@ "ru": "Автоудаление", "zh-chs": "自動刪除", "xloc": [ - "default.handlebars->29->1110" + "default.handlebars->29->1117" ] }, { @@ -4144,7 +4144,7 @@ "ru": "Азербайджанский", "zh-chs": "阿塞拜疆", "xloc": [ - "default.handlebars->29->867" + "default.handlebars->29->874" ] }, { @@ -4161,7 +4161,7 @@ "ru": "BIOS", "zh-chs": "的BIOS", "xloc": [ - "default.handlebars->29->798" + "default.handlebars->29->800" ] }, { @@ -4241,7 +4241,7 @@ "ru": "Фоновый и интерактивный", "zh-chs": "背景與互動", "xloc": [ - "default.handlebars->29->314" + "default.handlebars->29->316" ] }, { @@ -4258,9 +4258,9 @@ "ru": "Фоновый и интерактивный", "zh-chs": "背景與互動", "xloc": [ - "default.handlebars->29->1286", "default.handlebars->29->1293", - "default.handlebars->29->292" + "default.handlebars->29->1300", + "default.handlebars->29->294" ] }, { @@ -4277,10 +4277,10 @@ "ru": "Только фоновый", "zh-chs": "僅背景", "xloc": [ - "default.handlebars->29->1287", "default.handlebars->29->1294", - "default.handlebars->29->293", - "default.handlebars->29->315" + "default.handlebars->29->1301", + "default.handlebars->29->295", + "default.handlebars->29->317" ] }, { @@ -4314,7 +4314,7 @@ "ru": "Резервные коды", "zh-chs": "備用碼", "xloc": [ - "default.handlebars->29->1553" + "default.handlebars->29->1563" ] }, { @@ -4331,7 +4331,7 @@ "ru": "Плохой ключ", "zh-chs": "錯誤的簽名", "xloc": [ - "default.handlebars->29->1632" + "default.handlebars->29->1645" ] }, { @@ -4348,7 +4348,7 @@ "ru": "Плохой веб-сертификат", "zh-chs": "錯誤的網絡證書", "xloc": [ - "default.handlebars->29->1631" + "default.handlebars->29->1644" ] }, { @@ -4365,7 +4365,7 @@ "ru": "Баскский", "zh-chs": "巴斯克", "xloc": [ - "default.handlebars->29->868" + "default.handlebars->29->875" ] }, { @@ -4399,7 +4399,7 @@ "ru": "Белорусский", "zh-chs": "白俄羅斯語", "xloc": [ - "default.handlebars->29->870" + "default.handlebars->29->877" ] }, { @@ -4416,7 +4416,7 @@ "ru": "Бенгальский", "zh-chs": "孟加拉", "xloc": [ - "default.handlebars->29->871" + "default.handlebars->29->878" ] }, { @@ -4450,7 +4450,7 @@ "ru": "Боснийский", "zh-chs": "波斯尼亞人", "xloc": [ - "default.handlebars->29->872" + "default.handlebars->29->879" ] }, { @@ -4467,7 +4467,7 @@ "ru": "Бретонский", "zh-chs": "布列塔尼", "xloc": [ - "default.handlebars->29->873" + "default.handlebars->29->880" ] }, { @@ -4484,7 +4484,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播", "xloc": [ - "default.handlebars->29->1476", + "default.handlebars->29->1485", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -4502,7 +4502,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播消息", "xloc": [ - "default.handlebars->29->1421" + "default.handlebars->29->1430" ] }, { @@ -4519,7 +4519,7 @@ "ru": "Отправить сообщение всем подключенным пользователям.", "zh-chs": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->29->1420" + "default.handlebars->29->1429" ] }, { @@ -4536,7 +4536,7 @@ "ru": "Болгарский", "zh-chs": "保加利亞語", "xloc": [ - "default.handlebars->29->869" + "default.handlebars->29->876" ] }, { @@ -4553,7 +4553,7 @@ "ru": "Бирманский", "zh-chs": "緬甸人", "xloc": [ - "default.handlebars->29->874" + "default.handlebars->29->881" ] }, { @@ -4571,7 +4571,7 @@ "zh-chs": "CCM", "xloc": [ "default-mobile.handlebars->9->184", - "default.handlebars->29->471" + "default.handlebars->29->473" ] }, { @@ -4589,10 +4589,10 @@ "zh-chs": "CIRA", "xloc": [ "default-mobile.handlebars->9->125", - "default.handlebars->29->1174", - "default.handlebars->29->1179", - "default.handlebars->29->176", - "default.handlebars->29->369" + "default.handlebars->29->1181", + "default.handlebars->29->1186", + "default.handlebars->29->178", + "default.handlebars->29->371" ] }, { @@ -4609,7 +4609,7 @@ "ru": "CIRA Сервер", "zh-chs": "CIRA服務器", "xloc": [ - "default.handlebars->29->1682" + "default.handlebars->29->1695" ] }, { @@ -4626,7 +4626,7 @@ "ru": "CIRA Сервер команды", "zh-chs": "CIRA服務器命令", "xloc": [ - "default.handlebars->29->1683" + "default.handlebars->29->1696" ] }, { @@ -4643,7 +4643,7 @@ "ru": "Загрузка CPU", "zh-chs": "CPU負載", "xloc": [ - "default.handlebars->29->1646" + "default.handlebars->29->1659" ] }, { @@ -4660,7 +4660,7 @@ "ru": "Загрузка CPU за последние 15 минут", "zh-chs": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->29->1649" + "default.handlebars->29->1662" ] }, { @@ -4677,7 +4677,7 @@ "ru": "Загрузка CPU за последние 5 минут", "zh-chs": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->29->1648" + "default.handlebars->29->1661" ] }, { @@ -4694,7 +4694,7 @@ "ru": "Загрузка CPU за последнюю минуту", "zh-chs": "最後一分鐘的CPU負載", "xloc": [ - "default.handlebars->29->1647" + "default.handlebars->29->1660" ] }, { @@ -4711,8 +4711,8 @@ "ru": "CR+LF", "zh-chs": "CR +低頻", "xloc": [ - "default.handlebars->29->702", - "default.handlebars->29->711", + "default.handlebars->29->704", + "default.handlebars->29->713", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -4730,9 +4730,9 @@ "ru": "Формат CSV", "zh-chs": "CSV格式", "xloc": [ - "default.handlebars->29->1357", - "default.handlebars->29->1412", - "default.handlebars->29->396" + "default.handlebars->29->1364", + "default.handlebars->29->1421", + "default.handlebars->29->398" ] }, { @@ -4749,7 +4749,7 @@ "ru": "Ошибка вызова", "zh-chs": "通話錯誤", "xloc": [ - "default.handlebars->29->1695" + "default.handlebars->29->1708" ] }, { @@ -4768,7 +4768,7 @@ "xloc": [ "default-mobile.handlebars->9->44", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->29->1094", + "default.handlebars->29->1101", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -4790,7 +4790,7 @@ "ru": "Объем / Скорость", "zh-chs": "容量/速度", "xloc": [ - "default.handlebars->29->805" + "default.handlebars->29->807" ] }, { @@ -4807,7 +4807,7 @@ "ru": "Каталонский", "zh-chs": "加泰羅尼亞語", "xloc": [ - "default.handlebars->29->875" + "default.handlebars->29->882" ] }, { @@ -4824,7 +4824,7 @@ "ru": "Установить центр карты здесь", "zh-chs": "中心地圖在這裡", "xloc": [ - "default.handlebars->29->436" + "default.handlebars->29->438" ] }, { @@ -4841,7 +4841,7 @@ "ru": "Чаморро", "zh-chs": "查莫羅", "xloc": [ - "default.handlebars->29->876" + "default.handlebars->29->883" ] }, { @@ -4865,7 +4865,7 @@ "ru": "Смена email для {0}", "zh-chs": "更改{0}的電子郵件", "xloc": [ - "default.handlebars->29->1570" + "default.handlebars->29->1583" ] }, { @@ -4882,9 +4882,9 @@ "ru": "Смена группы", "zh-chs": "變更組", "xloc": [ - "default.handlebars->29->524", - "default.handlebars->29->631", - "default.handlebars->29->632" + "default.handlebars->29->526", + "default.handlebars->29->633", + "default.handlebars->29->634" ] }, { @@ -4902,8 +4902,8 @@ "zh-chs": "更改密碼", "xloc": [ "default-mobile.handlebars->9->52", - "default.handlebars->29->1070", - "default.handlebars->29->1563" + "default.handlebars->29->1077", + "default.handlebars->29->1576" ] }, { @@ -4920,7 +4920,7 @@ "ru": "Смена пароля для {0}", "zh-chs": "更改{0}的密碼", "xloc": [ - "default.handlebars->29->1577" + "default.handlebars->29->1590" ] }, { @@ -4990,7 +4990,7 @@ "ru": "Изменить пароль для этого пользователя", "zh-chs": "更改該用戶的密碼", "xloc": [ - "default.handlebars->29->1562" + "default.handlebars->29->1575" ] }, { @@ -5024,7 +5024,7 @@ "ru": "Измените адрес электронной почты вашей учетной записи здесь.", "zh-chs": "在此處更改您的帳戶電子郵件地址。", "xloc": [ - "default.handlebars->29->1057" + "default.handlebars->29->1064" ] }, { @@ -5041,7 +5041,7 @@ "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.", "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->29->1063" + "default.handlebars->29->1070" ] }, { @@ -5058,7 +5058,7 @@ "ru": "Изменение языка потребует перезагрузить страницу.", "zh-chs": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->29->1042" + "default.handlebars->29->1049" ] }, { @@ -5075,9 +5075,9 @@ "ru": "Чат", "zh-chs": "聊天室", "xloc": [ - "default.handlebars->29->1374", - "default.handlebars->29->573", - "default.handlebars->29->592" + "default.handlebars->29->1381", + "default.handlebars->29->575", + "default.handlebars->29->594" ] }, { @@ -5096,8 +5096,8 @@ "xloc": [ "default-mobile.handlebars->9->308", "default-mobile.handlebars->9->326", - "default.handlebars->29->1236", - "default.handlebars->29->1270" + "default.handlebars->29->1243", + "default.handlebars->29->1277" ] }, { @@ -5114,7 +5114,7 @@ "ru": "Чеченский", "zh-chs": "車臣", "xloc": [ - "default.handlebars->29->877" + "default.handlebars->29->884" ] }, { @@ -5182,8 +5182,8 @@ "ru": "Проверка...", "zh-chs": "檢查...", "xloc": [ - "default.handlebars->29->1689", - "default.handlebars->29->843" + "default.handlebars->29->1702", + "default.handlebars->29->850" ] }, { @@ -5200,7 +5200,7 @@ "ru": "Китайский", "zh-chs": "中文", "xloc": [ - "default.handlebars->29->878" + "default.handlebars->29->885" ] }, { @@ -5217,7 +5217,7 @@ "ru": "Китайский (Гонконг)", "zh-chs": "中文(香港)", "xloc": [ - "default.handlebars->29->879" + "default.handlebars->29->886" ] }, { @@ -5234,7 +5234,7 @@ "ru": "Китайский (КНР)", "zh-chs": "中文(中國)", "xloc": [ - "default.handlebars->29->880" + "default.handlebars->29->887" ] }, { @@ -5249,7 +5249,7 @@ "ru": "Упрощенный китайский)", "zh-chs": "简体中文)", "xloc": [ - "default.handlebars->29->1040" + "default.handlebars->29->1047" ] }, { @@ -5266,7 +5266,7 @@ "ru": "Китайский (Сингапур)", "zh-chs": "中文(新加坡)", "xloc": [ - "default.handlebars->29->881" + "default.handlebars->29->888" ] }, { @@ -5283,7 +5283,7 @@ "ru": "Китайский (Тайвань)", "zh-chs": "中文(台灣)", "xloc": [ - "default.handlebars->29->882" + "default.handlebars->29->889" ] }, { @@ -5318,7 +5318,7 @@ "ru": "Чувашский", "zh-chs": "楚瓦什", "xloc": [ - "default.handlebars->29->883" + "default.handlebars->29->890" ] }, { @@ -5335,7 +5335,7 @@ "ru": "Очистка CIRA", "zh-chs": "清理CIRA", "xloc": [ - "default.handlebars->29->254" + "default.handlebars->29->256" ] }, { @@ -5358,11 +5358,11 @@ "default-mobile.handlebars->9->269", "default-mobile.handlebars->9->28", "default-mobile.handlebars->9->94", - "default.handlebars->29->1351", - "default.handlebars->29->737", + "default.handlebars->29->1358", "default.handlebars->29->739", "default.handlebars->29->741", "default.handlebars->29->743", + "default.handlebars->29->745", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default.handlebars->container->column_l->p41->3->1", "messenger.handlebars->xbottom" @@ -5390,7 +5390,7 @@ "en": "Clear all", "nl": "Wis alle meldingen", "xloc": [ - "default.handlebars->29->1619" + "default.handlebars->29->1632" ] }, { @@ -5407,7 +5407,7 @@ "ru": "Очистить ядро", "zh-chs": "清除核心", "xloc": [ - "default.handlebars->29->821" + "default.handlebars->29->823" ] }, { @@ -5438,7 +5438,7 @@ "ru": "Очистить это уведомление", "zh-chs": "清除此通知", "xloc": [ - "default.handlebars->29->1618" + "default.handlebars->29->1631" ] }, { @@ -5473,8 +5473,8 @@ "en": "Click here to edit the device group name", "nl": "Klik hier om de apparaatgroepsnaam te bewerken", "xloc": [ - "default.handlebars->29->1103", - "default.handlebars->29->1307" + "default.handlebars->29->1110", + "default.handlebars->29->1314" ] }, { @@ -5491,14 +5491,14 @@ "ru": "Для изменения имени устройства на сервере нажмите сюда", "zh-chs": "單擊此處編輯服務器端設備名稱", "xloc": [ - "default.handlebars->29->450" + "default.handlebars->29->452" ] }, { "en": "Click here to edit the user group name", "nl": "Klik hier om de gebruikersgroepsnaam te bewerken", "xloc": [ - "default.handlebars->29->1469" + "default.handlebars->29->1478" ] }, { @@ -5544,7 +5544,7 @@ "zh-chs": "單擊確定將驗證郵件發送到:", "xloc": [ "default-mobile.handlebars->9->37", - "default.handlebars->29->1054" + "default.handlebars->29->1061" ] }, { @@ -5578,7 +5578,7 @@ "ru": "Режим управления клиентом (CCM)", "zh-chs": "客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->29->785" + "default.handlebars->29->787" ] }, { @@ -5595,8 +5595,8 @@ "ru": "Клиент инициировал удаленный доступ", "zh-chs": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->29->1173", - "default.handlebars->29->1178" + "default.handlebars->29->1180", + "default.handlebars->29->1185" ] }, { @@ -5633,7 +5633,7 @@ "default-mobile.handlebars->9->26", "default.handlebars->29->121", "default.handlebars->29->129", - "default.handlebars->29->695" + "default.handlebars->29->697" ] }, { @@ -5668,8 +5668,8 @@ "ru": "Общие группы устройств", "zh-chs": "通用設備組", "xloc": [ - "default.handlebars->29->1484", - "default.handlebars->29->1582" + "default.handlebars->29->1493", + "default.handlebars->29->1595" ] }, { @@ -5686,8 +5686,8 @@ "ru": "Общие устройства", "zh-chs": "通用設備", "xloc": [ - "default.handlebars->29->1490", - "default.handlebars->29->1594" + "default.handlebars->29->1499", + "default.handlebars->29->1607" ] }, { @@ -5705,7 +5705,7 @@ "zh-chs": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->29->1346" + "default.handlebars->29->1353" ] }, { @@ -5724,14 +5724,14 @@ "xloc": [ "default-mobile.handlebars->9->223", "default-mobile.handlebars->9->288", - "default.handlebars->29->1187", - "default.handlebars->29->1399", - "default.handlebars->29->1461", - "default.handlebars->29->1504", - "default.handlebars->29->1580", - "default.handlebars->29->393", - "default.handlebars->29->626", - "default.handlebars->29->635" + "default.handlebars->29->1194", + "default.handlebars->29->1407", + "default.handlebars->29->1470", + "default.handlebars->29->1513", + "default.handlebars->29->1593", + "default.handlebars->29->395", + "default.handlebars->29->628", + "default.handlebars->29->637" ] }, { @@ -5749,7 +5749,7 @@ "zh-chs": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->9->258", - "default.handlebars->29->732" + "default.handlebars->29->734" ] }, { @@ -5767,7 +5767,7 @@ "zh-chs": "確認{0}個條目的副本到此位置?", "xloc": [ "default-mobile.handlebars->9->257", - "default.handlebars->29->731" + "default.handlebars->29->733" ] }, { @@ -5775,7 +5775,7 @@ "en": "Confirm delete selected account(s)?", "nl": "Bevestig verwijdering geselecteerde account(s)?", "xloc": [ - "default.handlebars->29->1398" + "default.handlebars->29->1406" ] }, { @@ -5792,7 +5792,7 @@ "ru": "Подтвердить удаление выбранных устройств?", "zh-chs": "確認刪除所選設備?", "xloc": [ - "default.handlebars->29->392" + "default.handlebars->29->394" ] }, { @@ -5800,7 +5800,7 @@ "en": "Confirm delete selected user groups(s)?", "nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?", "xloc": [ - "default.handlebars->29->1460" + "default.handlebars->29->1469" ] }, { @@ -5817,7 +5817,7 @@ "ru": "Подтвердить удаление пользователя {0}?", "zh-chs": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->29->1579" + "default.handlebars->29->1592" ] }, { @@ -5825,7 +5825,7 @@ "en": "Confirm membership removal of user \\\"{0}\\\"?", "nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1507" + "default.handlebars->29->1516" ] }, { @@ -5833,7 +5833,7 @@ "en": "Confirm membership removal of user group \\\"{0}\\\"?", "nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1609" + "default.handlebars->29->1622" ] }, { @@ -5851,7 +5851,7 @@ "zh-chs": "確認將1個入口移動到此位置?", "xloc": [ "default-mobile.handlebars->9->260", - "default.handlebars->29->734" + "default.handlebars->29->736" ] }, { @@ -5869,7 +5869,7 @@ "zh-chs": "確認將{0}個條目移到此位置?", "xloc": [ "default-mobile.handlebars->9->259", - "default.handlebars->29->733" + "default.handlebars->29->735" ] }, { @@ -5886,7 +5886,7 @@ "ru": "Подтвердить перезапись?", "zh-chs": "確認覆蓋?", "xloc": [ - "default.handlebars->29->1345" + "default.handlebars->29->1352" ] }, { @@ -5894,8 +5894,8 @@ "en": "Confirm removal of access rights for device \\\"{0}\\\"?", "nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1497", - "default.handlebars->29->1600" + "default.handlebars->29->1506", + "default.handlebars->29->1613" ] }, { @@ -5903,8 +5903,8 @@ "en": "Confirm removal of access rights for device group \\\"{0}\\\"?", "nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1499", - "default.handlebars->29->1613" + "default.handlebars->29->1508", + "default.handlebars->29->1626" ] }, { @@ -5912,7 +5912,7 @@ "en": "Confirm removal of access rights for user \\\"{0}\\\"?", "nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1602" + "default.handlebars->29->1615" ] }, { @@ -5920,7 +5920,7 @@ "en": "Confirm removal of access rights for user group \\\"{0}\\\"?", "nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1605" + "default.handlebars->29->1618" ] }, { @@ -5928,8 +5928,8 @@ "en": "Confirm removal of access rights?", "nl": "Verwijdering van toegangsrechten bevestigen?", "xloc": [ - "default.handlebars->29->1603", - "default.handlebars->29->1606" + "default.handlebars->29->1616", + "default.handlebars->29->1619" ] }, { @@ -5947,7 +5947,7 @@ "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?", "xloc": [ "default-mobile.handlebars->9->36", - "default.handlebars->29->833" + "default.handlebars->29->840" ] }, { @@ -5994,7 +5994,7 @@ "en": "Confirm removal of rights for user \\\"{0}\\\"?", "nl": "Bevestig de verwijdering van rechten voor gebruiker \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1279" + "default.handlebars->29->1286" ] }, { @@ -6002,7 +6002,7 @@ "en": "Confirm removal of rights for user group \\\"{0}\\\"?", "nl": "Bevestig de verwijdering van rechten voor de gebruikergroep \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1281" + "default.handlebars->29->1288" ] }, { @@ -6044,8 +6044,8 @@ "default-mobile.handlebars->9->237", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", - "default.handlebars->29->1126", - "default.handlebars->29->714", + "default.handlebars->29->1133", + "default.handlebars->29->716", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3", @@ -6066,7 +6066,7 @@ "ru": "Подключиться ко всем", "zh-chs": "全部連接", "xloc": [ - "default.handlebars->29->207", + "default.handlebars->29->209", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar" ] }, @@ -6084,8 +6084,8 @@ "ru": "Подключиться к серверу", "zh-chs": "連接到服務器", "xloc": [ - "default.handlebars->29->1177", - "default.handlebars->29->1181" + "default.handlebars->29->1184", + "default.handlebars->29->1188" ] }, { @@ -6156,7 +6156,7 @@ "ru": "Подключено Intel® AMT", "zh-chs": "連接的英特爾®AMT", "xloc": [ - "default.handlebars->29->1637" + "default.handlebars->29->1650" ] }, { @@ -6173,7 +6173,7 @@ "ru": "Подключенные пользователи", "zh-chs": "關聯用戶", "xloc": [ - "default.handlebars->29->1642" + "default.handlebars->29->1655" ] }, { @@ -6190,7 +6190,7 @@ "ru": "Подключено сейчас", "zh-chs": "現在已連接", "xloc": [ - "default.handlebars->29->764" + "default.handlebars->29->766" ] }, { @@ -6227,10 +6227,10 @@ "default-mobile.handlebars->9->2", "default-mobile.handlebars->9->273", "default-mobile.handlebars->9->6", - "default.handlebars->29->201", - "default.handlebars->29->204", - "default.handlebars->29->210", - "default.handlebars->29->755", + "default.handlebars->29->203", + "default.handlebars->29->206", + "default.handlebars->29->212", + "default.handlebars->29->757", "default.handlebars->29->9", "xterm.handlebars->9->2" ] @@ -6249,7 +6249,7 @@ "ru": "Подключений ", "zh-chs": "連接數", "xloc": [ - "default.handlebars->29->1653" + "default.handlebars->29->1666" ] }, { @@ -6266,7 +6266,7 @@ "ru": "Ретранслятор подключения", "zh-chs": "連接繼電器", "xloc": [ - "default.handlebars->29->1681" + "default.handlebars->29->1694" ] }, { @@ -6318,9 +6318,9 @@ "zh-chs": "連接性", "xloc": [ "default-mobile.handlebars->9->198", - "default.handlebars->29->1314", - "default.handlebars->29->192", - "default.handlebars->29->515", + "default.handlebars->29->1321", + "default.handlebars->29->194", + "default.handlebars->29->517", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" ] }, @@ -6338,8 +6338,8 @@ "ru": "Консоль", "zh-chs": "安慰", "xloc": [ - "default.handlebars->29->568", - "default.handlebars->29->587", + "default.handlebars->29->570", + "default.handlebars->29->589", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole", "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole", "default.handlebars->contextMenu->cxconsole" @@ -6359,7 +6359,7 @@ "ru": "Консоль - ", "zh-chs": "安慰 -", "xloc": [ - "default.handlebars->29->451" + "default.handlebars->29->453" ] }, { @@ -6373,8 +6373,8 @@ "ru": "контроль", "zh-chs": "控制", "xloc": [ - "default.handlebars->29->567", - "default.handlebars->29->586" + "default.handlebars->29->569", + "default.handlebars->29->588" ] }, { @@ -6391,7 +6391,7 @@ "ru": "Cookie-кодировщик", "zh-chs": "Cookie編碼器", "xloc": [ - "default.handlebars->29->1667" + "default.handlebars->29->1680" ] }, { @@ -6446,7 +6446,7 @@ "ru": "Скопировать ссылку MacOS agent в буфер обмена", "zh-chs": "將MacOS代理URL複製到剪貼板", "xloc": [ - "default.handlebars->29->333" + "default.handlebars->29->335" ] }, { @@ -6460,7 +6460,7 @@ "ru": "Скопировать URL-адрес агента Windows 32bit в буфер обмена", "zh-chs": "将Windows 32位代理URL复制到剪贴板", "xloc": [ - "default.handlebars->29->321" + "default.handlebars->29->323" ] }, { @@ -6474,7 +6474,7 @@ "ru": "Скопировать URL-адрес агента Windows 64bit в буфер обмена", "zh-chs": "将Windows 64位代理URL复制到剪贴板", "xloc": [ - "default.handlebars->29->325" + "default.handlebars->29->327" ] }, { @@ -6513,9 +6513,9 @@ "ru": "Скопировать ссылку в буфер обмена", "zh-chs": "複製鏈接到剪貼板", "xloc": [ - "default.handlebars->29->1319", - "default.handlebars->29->1333", - "default.handlebars->29->305" + "default.handlebars->29->1326", + "default.handlebars->29->1340", + "default.handlebars->29->307" ] }, { @@ -6692,7 +6692,7 @@ "ru": "Основной сервер", "zh-chs": "核心服務器", "xloc": [ - "default.handlebars->29->1666" + "default.handlebars->29->1679" ] }, { @@ -6709,7 +6709,7 @@ "ru": "Kорсиканский", "zh-chs": "科西嘉人", "xloc": [ - "default.handlebars->29->884" + "default.handlebars->29->891" ] }, { @@ -6726,7 +6726,7 @@ "ru": "Создать учетную запись", "zh-chs": "創建帳號", "xloc": [ - "default.handlebars->29->1432", + "default.handlebars->29->1441", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1" ] @@ -6762,7 +6762,7 @@ "ru": "Создать группу пользователей", "zh-chs": "創建用戶組", "xloc": [ - "default.handlebars->29->1466" + "default.handlebars->29->1475" ] }, { @@ -6779,7 +6779,7 @@ "ru": "Создайте новую группу устройств, используя параметры ниже.", "zh-chs": "使用以下選項創建一個新的設備組。", "xloc": [ - "default.handlebars->29->1077" + "default.handlebars->29->1084" ] }, { @@ -6796,7 +6796,7 @@ "ru": "Создать новую группу устройств.", "zh-chs": "創建一個新的設備組。", "xloc": [ - "default.handlebars->29->194" + "default.handlebars->29->196" ] }, { @@ -6813,7 +6813,7 @@ "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:", "xloc": [ - "default.handlebars->29->1403" + "default.handlebars->29->1412" ] }, { @@ -6848,7 +6848,7 @@ "ru": "Создано", "zh-chs": "創建", "xloc": [ - "default.handlebars->29->1527" + "default.handlebars->29->1537" ] }, { @@ -6883,7 +6883,7 @@ "ru": "Кри (Канадский язык)", "zh-chs": "克里", "xloc": [ - "default.handlebars->29->885" + "default.handlebars->29->892" ] }, { @@ -6900,7 +6900,7 @@ "ru": "Хорватский", "zh-chs": "克羅地亞語", "xloc": [ - "default.handlebars->29->886" + "default.handlebars->29->893" ] }, { @@ -7041,7 +7041,7 @@ "ru": "Чешский", "zh-chs": "捷克文", "xloc": [ - "default.handlebars->29->887" + "default.handlebars->29->894" ] }, { @@ -7075,7 +7075,7 @@ "ru": "Датский", "zh-chs": "丹麥文", "xloc": [ - "default.handlebars->29->888" + "default.handlebars->29->895" ] }, { @@ -7092,7 +7092,7 @@ "ru": "DataChannel", "zh-chs": "數據通道", "xloc": [ - "default.handlebars->29->671" + "default.handlebars->29->673" ] }, { @@ -7109,7 +7109,7 @@ "ru": "Дата & Время", "zh-chs": "日期和時間", "xloc": [ - "default.handlebars->29->1045" + "default.handlebars->29->1052" ] }, { @@ -7126,7 +7126,7 @@ "ru": "День", "zh-chs": "天", "xloc": [ - "default.handlebars->29->610" + "default.handlebars->29->612" ] }, { @@ -7143,7 +7143,7 @@ "ru": "Деактивировать режим управления клиентом (CCM)", "zh-chs": "停用客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->29->1165" + "default.handlebars->29->1172" ] }, { @@ -7161,7 +7161,7 @@ "zh-chs": "沉睡", "xloc": [ "default-mobile.handlebars->9->113", - "default.handlebars->29->352" + "default.handlebars->29->354" ] }, { @@ -7182,9 +7182,9 @@ "default-mobile.handlebars->9->84", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->29->1340", - "default.handlebars->29->423", - "default.handlebars->29->724", + "default.handlebars->29->1347", + "default.handlebars->29->425", + "default.handlebars->29->726", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->container->dialog->idx_dlgButtonBar->5", @@ -7208,7 +7208,7 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->9->46", - "default.handlebars->29->1062" + "default.handlebars->29->1069" ] }, { @@ -7216,7 +7216,7 @@ "en": "Delete Accounts", "nl": "Verwijder accounts", "xloc": [ - "default.handlebars->29->1400" + "default.handlebars->29->1408" ] }, { @@ -7234,7 +7234,7 @@ "zh-chs": "刪除裝置", "xloc": [ "default-mobile.handlebars->9->202", - "default.handlebars->29->526" + "default.handlebars->29->528" ] }, { @@ -7253,8 +7253,8 @@ "xloc": [ "default-mobile.handlebars->9->286", "default-mobile.handlebars->9->289", - "default.handlebars->29->1158", - "default.handlebars->29->1188" + "default.handlebars->29->1165", + "default.handlebars->29->1195" ] }, { @@ -7272,7 +7272,7 @@ "zh-chs": "刪除節點", "xloc": [ "default-mobile.handlebars->9->221", - "default.handlebars->29->636" + "default.handlebars->29->638" ] }, { @@ -7289,7 +7289,7 @@ "ru": "Удалить устройства", "zh-chs": "刪除節點", "xloc": [ - "default.handlebars->29->394" + "default.handlebars->29->396" ] }, { @@ -7306,7 +7306,7 @@ "ru": "Удалить пользователя", "zh-chs": "刪除用戶", "xloc": [ - "default.handlebars->29->1561" + "default.handlebars->29->1574" ] }, { @@ -7323,8 +7323,8 @@ "ru": "Удалить группу пользователей", "zh-chs": "刪除用戶組", "xloc": [ - "default.handlebars->29->1495", - "default.handlebars->29->1505" + "default.handlebars->29->1504", + "default.handlebars->29->1514" ] }, { @@ -7332,7 +7332,7 @@ "en": "Delete User Groups", "nl": "Gebruikersgroepen verwijderen", "xloc": [ - "default.handlebars->29->1462" + "default.handlebars->29->1471" ] }, { @@ -7349,7 +7349,7 @@ "ru": "Удалить пользователя {0}", "zh-chs": "刪除用戶{0}", "xloc": [ - "default.handlebars->29->1578" + "default.handlebars->29->1591" ] }, { @@ -7367,7 +7367,7 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->7->0", - "default.handlebars->29->1396", + "default.handlebars->29->1404", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -7385,7 +7385,7 @@ "ru": "Удалить устройства", "zh-chs": "刪除設備", "xloc": [ - "default.handlebars->29->389" + "default.handlebars->29->391" ] }, { @@ -7393,7 +7393,7 @@ "en": "Delete group", "nl": "Verwijder groep", "xloc": [ - "default.handlebars->29->1458" + "default.handlebars->29->1467" ] }, { @@ -7410,7 +7410,7 @@ "ru": "Удалить пункт?", "zh-chs": "刪除項目?", "xloc": [ - "default.handlebars->29->424" + "default.handlebars->29->426" ] }, { @@ -7429,8 +7429,8 @@ "xloc": [ "default-mobile.handlebars->9->252", "default-mobile.handlebars->9->86", - "default.handlebars->29->1342", - "default.handlebars->29->726" + "default.handlebars->29->1349", + "default.handlebars->29->728" ] }, { @@ -7447,7 +7447,7 @@ "ru": "Удалить группу пользователей {0}?", "zh-chs": "刪除用戶組{0}?", "xloc": [ - "default.handlebars->29->1503" + "default.handlebars->29->1512" ] }, { @@ -7466,8 +7466,8 @@ "xloc": [ "default-mobile.handlebars->9->251", "default-mobile.handlebars->9->85", - "default.handlebars->29->1341", - "default.handlebars->29->725" + "default.handlebars->29->1348", + "default.handlebars->29->727" ] }, { @@ -7567,17 +7567,17 @@ "default-mobile.handlebars->9->278", "default-mobile.handlebars->9->291", "default-mobile.handlebars->9->63", - "default.handlebars->29->1082", - "default.handlebars->29->1107", - "default.handlebars->29->1190", - "default.handlebars->29->1465", - "default.handlebars->29->1471", - "default.handlebars->29->1472", - "default.handlebars->29->1501", - "default.handlebars->29->461", - "default.handlebars->29->462", - "default.handlebars->29->667", - "default.handlebars->29->770", + "default.handlebars->29->1089", + "default.handlebars->29->1114", + "default.handlebars->29->1197", + "default.handlebars->29->1474", + "default.handlebars->29->1480", + "default.handlebars->29->1481", + "default.handlebars->29->1510", + "default.handlebars->29->463", + "default.handlebars->29->464", + "default.handlebars->29->669", + "default.handlebars->29->772", "default.handlebars->29->78", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] @@ -7610,8 +7610,8 @@ "ru": "Рабочий стол", "zh-chs": "桌面", "xloc": [ - "default.handlebars->29->1195", - "default.handlebars->29->429", + "default.handlebars->29->1202", + "default.handlebars->29->431", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop" ] @@ -7647,9 +7647,9 @@ "ru": "Уведомление на рабочем столе", "zh-chs": "桌面通知", "xloc": [ - "default.handlebars->29->1117", - "default.handlebars->29->1542", - "default.handlebars->29->496" + "default.handlebars->29->1124", + "default.handlebars->29->1552", + "default.handlebars->29->498" ] }, { @@ -7666,9 +7666,9 @@ "ru": "Запрос рабочего стола", "zh-chs": "桌面提示", "xloc": [ - "default.handlebars->29->1116", - "default.handlebars->29->1541", - "default.handlebars->29->495" + "default.handlebars->29->1123", + "default.handlebars->29->1551", + "default.handlebars->29->497" ] }, { @@ -7685,9 +7685,9 @@ "ru": "Запрос рабочего стола + панель инструментов", "zh-chs": "桌面提示+工具欄", "xloc": [ - "default.handlebars->29->1114", - "default.handlebars->29->1539", - "default.handlebars->29->493" + "default.handlebars->29->1121", + "default.handlebars->29->1549", + "default.handlebars->29->495" ] }, { @@ -7712,9 +7712,9 @@ "ru": "Панель инструментов рабочего стола", "zh-chs": "桌面工具欄", "xloc": [ - "default.handlebars->29->1115", - "default.handlebars->29->1540", - "default.handlebars->29->494" + "default.handlebars->29->1122", + "default.handlebars->29->1550", + "default.handlebars->29->496" ] }, { @@ -7783,8 +7783,8 @@ "ru": "Устройство", "zh-chs": "設備", "xloc": [ - "default.handlebars->29->1217", - "default.handlebars->29->1597", + "default.handlebars->29->1224", + "default.handlebars->29->1610", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -7803,7 +7803,7 @@ "zh-chs": "設備動作", "xloc": [ "default-mobile.handlebars->9->214", - "default.handlebars->29->609" + "default.handlebars->29->611" ] }, { @@ -7820,12 +7820,12 @@ "ru": "Группа устройства", "zh-chs": "設備組", "xloc": [ - "default.handlebars->29->1212", - "default.handlebars->29->1215", - "default.handlebars->29->1216", - "default.handlebars->29->1487", - "default.handlebars->29->1493", - "default.handlebars->29->1585" + "default.handlebars->29->1219", + "default.handlebars->29->1222", + "default.handlebars->29->1223", + "default.handlebars->29->1496", + "default.handlebars->29->1502", + "default.handlebars->29->1598" ] }, { @@ -7843,7 +7843,7 @@ "zh-chs": "設備組用戶", "xloc": [ "default-mobile.handlebars->9->332", - "default.handlebars->29->1277" + "default.handlebars->29->1284" ] }, { @@ -7861,11 +7861,11 @@ "zh-chs": "設備組", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->29->1366", - "default.handlebars->29->1452", - "default.handlebars->29->1474", - "default.handlebars->29->1536", - "default.handlebars->29->1640", + "default.handlebars->29->1373", + "default.handlebars->29->1461", + "default.handlebars->29->1483", + "default.handlebars->29->1546", + "default.handlebars->29->1653", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -7883,7 +7883,7 @@ "ru": "Экспорт информации об устройстве", "zh-chs": "設備信息導出", "xloc": [ - "default.handlebars->29->400" + "default.handlebars->29->402" ] }, { @@ -7900,7 +7900,7 @@ "ru": "Местонахождение устройства", "zh-chs": "設備位置", "xloc": [ - "default.handlebars->29->637" + "default.handlebars->29->639" ] }, { @@ -7918,8 +7918,8 @@ "zh-chs": "設備名稱", "xloc": [ "default-mobile.handlebars->9->225", - "default.handlebars->29->228", - "default.handlebars->29->665", + "default.handlebars->29->230", + "default.handlebars->29->667", "player.handlebars->3->9" ] }, @@ -7937,7 +7937,7 @@ "ru": "Уведомление устройства", "zh-chs": "設備通知", "xloc": [ - "default.handlebars->29->600" + "default.handlebars->29->602" ] }, { @@ -7971,8 +7971,8 @@ "ru": "Подключения устройств.", "zh-chs": "設備連接。", "xloc": [ - "default.handlebars->29->1050", - "default.handlebars->29->1298" + "default.handlebars->29->1057", + "default.handlebars->29->1305" ] }, { @@ -7989,8 +7989,8 @@ "ru": "Отключения устройств.", "zh-chs": "設備斷開連接。", "xloc": [ - "default.handlebars->29->1051", - "default.handlebars->29->1299" + "default.handlebars->29->1058", + "default.handlebars->29->1306" ] }, { @@ -8007,7 +8007,7 @@ "ru": "Примечания могут быть просмотрены и изменены другими администраторами.", "zh-chs": "其他設備組管理員可以查看和更改設備組註釋。", "xloc": [ - "default.handlebars->29->598" + "default.handlebars->29->600" ] }, { @@ -8024,7 +8024,7 @@ "ru": "Устройство обнаружено, но состояние питания не может быть получено.", "zh-chs": "檢測到設備,但無法獲得電源狀態。", "xloc": [ - "default.handlebars->29->357" + "default.handlebars->29->359" ] }, { @@ -8042,7 +8042,7 @@ "zh-chs": "設備正在休眠(S4)", "xloc": [ "default-mobile.handlebars->9->121", - "default.handlebars->29->363" + "default.handlebars->29->365" ] }, { @@ -8060,7 +8060,7 @@ "zh-chs": "設備處於深度睡眠狀態(S3)", "xloc": [ "default-mobile.handlebars->9->120", - "default.handlebars->29->362" + "default.handlebars->29->364" ] }, { @@ -8077,7 +8077,7 @@ "ru": "Устройство находится в состоянии глубокого сна (S3).", "zh-chs": "設備處於深度睡眠狀態(S3)。", "xloc": [ - "default.handlebars->29->351" + "default.handlebars->29->353" ] }, { @@ -8094,7 +8094,7 @@ "ru": "Устройство находится в режиме гибернации (S4).", "zh-chs": "設備處於休眠狀態(S4)。", "xloc": [ - "default.handlebars->29->353" + "default.handlebars->29->355" ] }, { @@ -8111,7 +8111,7 @@ "ru": "Устройство находится в выключенном состоянии (S5).", "zh-chs": "設備處於關機狀態(S5)。", "xloc": [ - "default.handlebars->29->355" + "default.handlebars->29->357" ] }, { @@ -8129,7 +8129,7 @@ "zh-chs": "設備處於睡眠狀態(S1)", "xloc": [ "default-mobile.handlebars->9->118", - "default.handlebars->29->360" + "default.handlebars->29->362" ] }, { @@ -8146,7 +8146,7 @@ "ru": "Устройство находится в спящем режиме (S1).", "zh-chs": "設備處於睡眠狀態(S1)。", "xloc": [ - "default.handlebars->29->347" + "default.handlebars->29->349" ] }, { @@ -8164,7 +8164,7 @@ "zh-chs": "設備處於睡眠狀態(S2)", "xloc": [ "default-mobile.handlebars->9->119", - "default.handlebars->29->361" + "default.handlebars->29->363" ] }, { @@ -8181,7 +8181,7 @@ "ru": "Устройство находится в спящем режиме (S2).", "zh-chs": "設備處於睡眠狀態(S2)。", "xloc": [ - "default.handlebars->29->349" + "default.handlebars->29->351" ] }, { @@ -8199,7 +8199,7 @@ "zh-chs": "設備處於軟斷開狀態(S5)", "xloc": [ "default-mobile.handlebars->9->122", - "default.handlebars->29->364" + "default.handlebars->29->366" ] }, { @@ -8217,7 +8217,7 @@ "zh-chs": "設備已上電", "xloc": [ "default-mobile.handlebars->9->117", - "default.handlebars->29->359" + "default.handlebars->29->361" ] }, { @@ -8234,7 +8234,7 @@ "ru": "Устройство включено.", "zh-chs": "設備上電。", "xloc": [ - "default.handlebars->29->345" + "default.handlebars->29->347" ] }, { @@ -8252,7 +8252,7 @@ "zh-chs": "設備存在,但無法確定電源狀態", "xloc": [ "default-mobile.handlebars->9->123", - "default.handlebars->29->365" + "default.handlebars->29->367" ] }, { @@ -8269,7 +8269,7 @@ "ru": "Имя устройства", "zh-chs": "設備名稱", "xloc": [ - "default.handlebars->29->441" + "default.handlebars->29->443" ] }, { @@ -8286,7 +8286,7 @@ "ru": "DeviceCheckbox", "zh-chs": "設備複選框", "xloc": [ - "default.handlebars->29->391" + "default.handlebars->29->393" ] }, { @@ -8294,8 +8294,8 @@ "en": "Devices", "nl": "Apparaten", "xloc": [ - "default.handlebars->29->1453", - "default.handlebars->29->1475" + "default.handlebars->29->1462", + "default.handlebars->29->1484" ] }, { @@ -8312,7 +8312,7 @@ "ru": "Отключено", "zh-chs": "殘障人士", "xloc": [ - "default.handlebars->29->488" + "default.handlebars->29->490" ] }, { @@ -8331,8 +8331,8 @@ "xloc": [ "default-mobile.handlebars->9->238", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->29->1127", - "default.handlebars->29->715", + "default.handlebars->29->1134", + "default.handlebars->29->717", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", "xterm.handlebars->p11->deskarea0->deskarea1->3" @@ -8372,10 +8372,10 @@ "default-mobile.handlebars->9->1", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status", - "default.handlebars->29->183", - "default.handlebars->29->200", - "default.handlebars->29->203", - "default.handlebars->29->209", + "default.handlebars->29->185", + "default.handlebars->29->202", + "default.handlebars->29->205", + "default.handlebars->29->211", "default.handlebars->29->8", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus", @@ -8414,7 +8414,7 @@ "ru": "Отобразить имя группы устройств", "zh-chs": "顯示設備組名稱", "xloc": [ - "default.handlebars->29->1049" + "default.handlebars->29->1056" ] }, { @@ -8431,7 +8431,7 @@ "ru": "Отображаемое имя", "zh-chs": "顯示名稱", "xloc": [ - "default.handlebars->29->686" + "default.handlebars->29->688" ] }, { @@ -8445,7 +8445,7 @@ "ru": "Показать публичную ссылку", "zh-chs": "显示公共链接", "xloc": [ - "default.handlebars->29->1318" + "default.handlebars->29->1325" ] }, { @@ -8462,7 +8462,7 @@ "ru": "Ничего не делать", "zh-chs": "沒做什麼", "xloc": [ - "default.handlebars->29->1171" + "default.handlebars->29->1178" ] }, { @@ -8497,8 +8497,8 @@ "ru": "Не настраивать", "zh-chs": "不要配置", "xloc": [ - "default.handlebars->29->1175", - "default.handlebars->29->1180" + "default.handlebars->29->1182", + "default.handlebars->29->1187" ] }, { @@ -8515,7 +8515,7 @@ "ru": "Не подключаться к серверу", "zh-chs": "不連接服務器", "xloc": [ - "default.handlebars->29->1176" + "default.handlebars->29->1183" ] }, { @@ -8569,7 +8569,7 @@ "zh-chs": "下載文件", "xloc": [ "default-mobile.handlebars->9->271", - "default.handlebars->29->744" + "default.handlebars->29->746" ] }, { @@ -8586,7 +8586,7 @@ "ru": "Скачать MeshCentral Router, инструмент сопоставления TCP портов.", "zh-chs": "下載MeshCentral Router,一個TCP端口映射工具。", "xloc": [ - "default.handlebars->29->198" + "default.handlebars->29->200" ] }, { @@ -8603,7 +8603,7 @@ "ru": "Скачать MeshCmd", "zh-chs": "下載MeshCmd", "xloc": [ - "default.handlebars->29->657" + "default.handlebars->29->659" ] }, { @@ -8620,7 +8620,7 @@ "ru": "Скачать MeshCmd, инструмент командной строки, выполняющий множество функций.", "zh-chs": "下載MeshCmd,這是一個執行許多功能的命令行工具。", "xloc": [ - "default.handlebars->29->196" + "default.handlebars->29->198" ] }, { @@ -8654,7 +8654,7 @@ "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.", "zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。", "xloc": [ - "default.handlebars->29->650" + "default.handlebars->29->652" ] }, { @@ -8722,7 +8722,7 @@ "ru": "Скачать события состояния питания", "zh-chs": "下載電源事件", "xloc": [ - "default.handlebars->29->611" + "default.handlebars->29->613" ] }, { @@ -8773,7 +8773,7 @@ "ru": "Загрузите список устройств с одним из форматов файлов ниже.", "zh-chs": "使用以下一種文件格式下載設備列表。", "xloc": [ - "default.handlebars->29->395" + "default.handlebars->29->397" ] }, { @@ -8790,7 +8790,7 @@ "ru": "Скачать список событий в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載事件列表。", "xloc": [ - "default.handlebars->29->1356" + "default.handlebars->29->1363" ] }, { @@ -8807,7 +8807,7 @@ "ru": "Скачать список пользователей в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載用戶列表。", "xloc": [ - "default.handlebars->29->1411" + "default.handlebars->29->1420" ] }, { @@ -8884,7 +8884,7 @@ "en": "Duplicate Agent", "nl": "Dubbele agent", "xloc": [ - "default.handlebars->29->1636" + "default.handlebars->29->1649" ] }, { @@ -8918,7 +8918,7 @@ "ru": "Скопировать группу пользователей", "zh-chs": "重複的用戶組", "xloc": [ - "default.handlebars->29->1467" + "default.handlebars->29->1476" ] }, { @@ -8966,7 +8966,7 @@ "ru": "Во время активации агент будет иметь доступ к паролю администратора.", "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。", "xloc": [ - "default.handlebars->29->1185" + "default.handlebars->29->1192" ] }, { @@ -8983,7 +8983,7 @@ "ru": "Голландский (Бельгийский)", "zh-chs": "荷蘭語(比利時)", "xloc": [ - "default.handlebars->29->890" + "default.handlebars->29->897" ] }, { @@ -9000,7 +9000,7 @@ "ru": "Голландский (Стандартный)", "zh-chs": "荷蘭語(標準)", "xloc": [ - "default.handlebars->29->889" + "default.handlebars->29->896" ] }, { @@ -9090,7 +9090,7 @@ "zh-chs": "編輯裝置", "xloc": [ "default-mobile.handlebars->9->230", - "default.handlebars->29->670" + "default.handlebars->29->672" ] }, { @@ -9110,10 +9110,10 @@ "default-mobile.handlebars->9->292", "default-mobile.handlebars->9->294", "default-mobile.handlebars->9->312", - "default.handlebars->29->1191", - "default.handlebars->29->1221", - "default.handlebars->29->1243", - "default.handlebars->29->1255" + "default.handlebars->29->1198", + "default.handlebars->29->1228", + "default.handlebars->29->1250", + "default.handlebars->29->1262" ] }, { @@ -9130,7 +9130,7 @@ "ru": "Редактировать функции группы устройств", "zh-chs": "編輯設備組功能", "xloc": [ - "default.handlebars->29->1207" + "default.handlebars->29->1214" ] }, { @@ -9147,8 +9147,8 @@ "ru": "Редактировать права группы устройств", "zh-chs": "編輯設備組權限", "xloc": [ - "default.handlebars->29->1240", - "default.handlebars->29->1252" + "default.handlebars->29->1247", + "default.handlebars->29->1259" ] }, { @@ -9165,7 +9165,7 @@ "ru": "Редактировать согласие пользователя группы устройств", "zh-chs": "編輯設備組用戶同意", "xloc": [ - "default.handlebars->29->1192" + "default.handlebars->29->1199" ] }, { @@ -9183,7 +9183,7 @@ "zh-chs": "編輯設備說明", "xloc": [ "default-mobile.handlebars->9->306", - "default.handlebars->29->1234" + "default.handlebars->29->1241" ] }, { @@ -9197,8 +9197,8 @@ "ru": "Изменить разрешения устройства", "zh-chs": "编辑设备权限", "xloc": [ - "default.handlebars->29->1245", - "default.handlebars->29->1247" + "default.handlebars->29->1252", + "default.handlebars->29->1254" ] }, { @@ -9206,7 +9206,7 @@ "en": "Edit Device User Consent", "nl": "Gebruikerstoestemming apparaat bewerken", "xloc": [ - "default.handlebars->29->1194" + "default.handlebars->29->1201" ] }, { @@ -9220,7 +9220,7 @@ "ru": "Редактировать группу", "zh-chs": "编辑组", "xloc": [ - "default.handlebars->29->577" + "default.handlebars->29->579" ] }, { @@ -9238,9 +9238,9 @@ "zh-chs": "編輯英特爾®AMT憑據", "xloc": [ "default-mobile.handlebars->9->220", - "default.handlebars->29->476", - "default.handlebars->29->479", - "default.handlebars->29->618" + "default.handlebars->29->478", + "default.handlebars->29->481", + "default.handlebars->29->620" ] }, { @@ -9258,7 +9258,7 @@ "zh-chs": "編輯筆記", "xloc": [ "default-mobile.handlebars->9->319", - "default.handlebars->29->1262" + "default.handlebars->29->1269" ] }, { @@ -9266,7 +9266,7 @@ "en": "Edit User Consent", "nl": "Gebruikerstoestemming bewerken", "xloc": [ - "default.handlebars->29->1193" + "default.handlebars->29->1200" ] }, { @@ -9283,7 +9283,7 @@ "ru": "Редактировать права пользователя для группы устройств", "zh-chs": "編輯用戶設備組權限", "xloc": [ - "default.handlebars->29->1253" + "default.handlebars->29->1260" ] }, { @@ -9297,7 +9297,7 @@ "ru": "Изменить разрешения для пользовательских устройств", "zh-chs": "编辑用户设备权限", "xloc": [ - "default.handlebars->29->1248" + "default.handlebars->29->1255" ] }, { @@ -9314,7 +9314,7 @@ "ru": "Редактировать группу пользователей", "zh-chs": "編輯用戶組", "xloc": [ - "default.handlebars->29->1502" + "default.handlebars->29->1511" ] }, { @@ -9322,7 +9322,7 @@ "en": "Edit User Group Device Permissions", "nl": "Gebruikersmachtigingen voor apparaatgroep bewerken", "xloc": [ - "default.handlebars->29->1250" + "default.handlebars->29->1257" ] }, { @@ -9357,14 +9357,14 @@ "zh-chs": "電子郵件", "xloc": [ "default-mobile.handlebars->9->40", - "default.handlebars->29->1423", - "default.handlebars->29->1523", - "default.handlebars->29->1524", - "default.handlebars->29->1566", - "default.handlebars->29->276", + "default.handlebars->29->1432", + "default.handlebars->29->1532", + "default.handlebars->29->1533", + "default.handlebars->29->1579", + "default.handlebars->29->278", "login-mobile.handlebars->5->38", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", - "login.handlebars->5->39", + "login.handlebars->5->42", "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3" ] }, @@ -9383,7 +9383,7 @@ "zh-chs": "電郵地址變更", "xloc": [ "default-mobile.handlebars->9->41", - "default.handlebars->29->1058" + "default.handlebars->29->1065" ] }, { @@ -9401,7 +9401,7 @@ "zh-chs": "郵件認證", "xloc": [ "default-mobile.handlebars->9->30", - "default.handlebars->29->827" + "default.handlebars->29->834" ] }, { @@ -9409,7 +9409,7 @@ "nl": "E-mail bevestigen", "xloc": [ "login-mobile.handlebars->5->39", - "login.handlebars->5->40" + "login.handlebars->5->43" ] }, { @@ -9421,10 +9421,7 @@ "ja": "メールトラフィック", "nl": "E-mailverkeer", "ru": "Почтовый трафик", - "zh-chs": "电子邮件流量", - "xloc": [ - "default.handlebars->29->1675" - ] + "zh-chs": "电子邮件流量" }, { "cs": "Ověření e-mailu", @@ -9441,7 +9438,7 @@ "zh-chs": "電子郵件驗證", "xloc": [ "default-mobile.handlebars->9->39", - "default.handlebars->29->1056" + "default.handlebars->29->1063" ] }, { @@ -9450,7 +9447,7 @@ "es": "Email de invitación", "nl": "E-mail uitnodiging", "xloc": [ - "default.handlebars->29->273" + "default.handlebars->29->275" ] }, { @@ -9464,7 +9461,7 @@ "ru": "Электронная почта не подтверждена", "zh-chs": "邮件未验证", "xloc": [ - "default.handlebars->29->1385" + "default.handlebars->29->1392" ] }, { @@ -9481,8 +9478,8 @@ "ru": "Email подтвержден", "zh-chs": "電子郵件已驗證", "xloc": [ - "default.handlebars->29->1386", - "default.handlebars->29->1520" + "default.handlebars->29->1393", + "default.handlebars->29->1529" ] }, { @@ -9499,7 +9496,7 @@ "ru": "Email подтвержден.", "zh-chs": "電子郵件已驗證。", "xloc": [ - "default.handlebars->29->1429" + "default.handlebars->29->1438" ] }, { @@ -9516,7 +9513,7 @@ "ru": "Email не подтвержден", "zh-chs": "電子郵件未驗證", "xloc": [ - "default.handlebars->29->1521" + "default.handlebars->29->1530" ] }, { @@ -9545,6 +9542,12 @@ "login.handlebars->5->3" ] }, + { + "en": "Email/SMS Traffic", + "xloc": [ + "default.handlebars->29->1688" + ] + }, { "cs": "E-mail:", "de": "E-Mail:", @@ -9562,7 +9565,7 @@ "login-mobile.handlebars->5->19", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->2->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->7->1->0->1", - "login.handlebars->5->19", + "login.handlebars->5->20", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->2->nuEmail", "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->7->1->0->1" ] @@ -9581,7 +9584,7 @@ "ru": "Включить коды приглашения", "zh-chs": "啟用邀請代碼", "xloc": [ - "default.handlebars->29->1283" + "default.handlebars->29->1290" ] }, { @@ -9616,7 +9619,7 @@ "zh-chs": "啟用電子郵件兩因素驗證。", "xloc": [ "default-mobile.handlebars->9->32", - "default.handlebars->29->829" + "default.handlebars->29->836" ] }, { @@ -9667,7 +9670,7 @@ "ru": "Английский", "zh-chs": "英語", "xloc": [ - "default.handlebars->29->891" + "default.handlebars->29->898" ] }, { @@ -9684,7 +9687,7 @@ "ru": "Английский (Австралия)", "zh-chs": "英文(澳洲)", "xloc": [ - "default.handlebars->29->892" + "default.handlebars->29->899" ] }, { @@ -9701,7 +9704,7 @@ "ru": "Английский (Белиз)", "zh-chs": "英語(伯利茲)", "xloc": [ - "default.handlebars->29->893" + "default.handlebars->29->900" ] }, { @@ -9718,7 +9721,7 @@ "ru": "Английский (Канада)", "zh-chs": "英文(加拿大)", "xloc": [ - "default.handlebars->29->894" + "default.handlebars->29->901" ] }, { @@ -9735,7 +9738,7 @@ "ru": "Английский (Ирландия)", "zh-chs": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->29->895" + "default.handlebars->29->902" ] }, { @@ -9752,7 +9755,7 @@ "ru": "Английский (Ямайка)", "zh-chs": "英文(牙買加)", "xloc": [ - "default.handlebars->29->896" + "default.handlebars->29->903" ] }, { @@ -9769,7 +9772,7 @@ "ru": "Английский (Новая Зеландия)", "zh-chs": "英文(紐西蘭)", "xloc": [ - "default.handlebars->29->897" + "default.handlebars->29->904" ] }, { @@ -9786,7 +9789,7 @@ "ru": "Английский (Филиппины)", "zh-chs": "英文(菲律賓)", "xloc": [ - "default.handlebars->29->898" + "default.handlebars->29->905" ] }, { @@ -9803,7 +9806,7 @@ "ru": "Английский (Южная Африка)", "zh-chs": "英語(南非)", "xloc": [ - "default.handlebars->29->899" + "default.handlebars->29->906" ] }, { @@ -9820,7 +9823,7 @@ "ru": "Английский (Тринидад и Тобаго)", "zh-chs": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->29->900" + "default.handlebars->29->907" ] }, { @@ -9837,7 +9840,7 @@ "ru": "Английский (Великобритания)", "zh-chs": "英文(英國)", "xloc": [ - "default.handlebars->29->901" + "default.handlebars->29->908" ] }, { @@ -9854,7 +9857,7 @@ "ru": "Английский (Соединенные Штаты)", "zh-chs": "美國英語)", "xloc": [ - "default.handlebars->29->902" + "default.handlebars->29->909" ] }, { @@ -9871,7 +9874,7 @@ "ru": "Английский (Зимбабве)", "zh-chs": "英文(津巴布韋)", "xloc": [ - "default.handlebars->29->903" + "default.handlebars->29->910" ] }, { @@ -9888,8 +9891,8 @@ "ru": "Ввод", "zh-chs": "輸入", "xloc": [ - "default.handlebars->29->1084", - "default.handlebars->29->1085" + "default.handlebars->29->1091", + "default.handlebars->29->1092" ] }, { @@ -9906,7 +9909,7 @@ "ru": "Введите разделенный запятыми список имен административных областей.", "zh-chs": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->29->1433" + "default.handlebars->29->1442" ] }, { @@ -9923,7 +9926,7 @@ "ru": "Введите диапазон IP-адресов для сканирования Intel AMT устройств.", "zh-chs": "輸入IP地址範圍以掃描Intel AMT設備。", "xloc": [ - "default.handlebars->29->243" + "default.handlebars->29->245" ] }, { @@ -9940,7 +9943,7 @@ "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.", "zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->29->680" + "default.handlebars->29->682" ] }, { @@ -10026,7 +10029,7 @@ "ru": "Эсперанто", "zh-chs": "世界語", "xloc": [ - "default.handlebars->29->904" + "default.handlebars->29->911" ] }, { @@ -10043,7 +10046,7 @@ "ru": "Эстонский", "zh-chs": "愛沙尼亞語", "xloc": [ - "default.handlebars->29->905" + "default.handlebars->29->912" ] }, { @@ -10060,7 +10063,7 @@ "ru": "Детали события", "zh-chs": "活動詳情", "xloc": [ - "default.handlebars->29->757" + "default.handlebars->29->759" ] }, { @@ -10077,7 +10080,7 @@ "ru": "Экспорт списка событий", "zh-chs": "活動列表導出", "xloc": [ - "default.handlebars->29->1361" + "default.handlebars->29->1368" ] }, { @@ -10132,7 +10135,7 @@ "zh-chs": "使用此電子郵件地址的現有帳戶。", "xloc": [ "login-mobile.handlebars->5->6", - "login.handlebars->5->6" + "login.handlebars->5->7" ] }, { @@ -10149,7 +10152,7 @@ "ru": "Экспорт информации об устройстве", "zh-chs": "導出設備信息", "xloc": [ - "default.handlebars->29->387" + "default.handlebars->29->389" ] }, { @@ -10166,7 +10169,7 @@ "ru": "Расширенный ASCII", "zh-chs": "擴展ASCII", "xloc": [ - "default.handlebars->29->706" + "default.handlebars->29->708" ] }, { @@ -10200,7 +10203,7 @@ "ru": "Внешний", "zh-chs": "外部", "xloc": [ - "default.handlebars->29->1660" + "default.handlebars->29->1673" ] }, { @@ -10217,7 +10220,7 @@ "ru": "Mакедонский (БЮР)", "zh-chs": "FYRO馬其頓語", "xloc": [ - "default.handlebars->29->955" + "default.handlebars->29->962" ] }, { @@ -10234,7 +10237,7 @@ "ru": "Фарерский", "zh-chs": "法羅語", "xloc": [ - "default.handlebars->29->906" + "default.handlebars->29->913" ] }, { @@ -10268,7 +10271,7 @@ "ru": "Фарси (Персидский)", "zh-chs": "波斯語(波斯語)", "xloc": [ - "default.handlebars->29->907" + "default.handlebars->29->914" ] }, { @@ -10303,7 +10306,7 @@ "ru": "Функции", "zh-chs": "特徵", "xloc": [ - "default.handlebars->29->1113" + "default.handlebars->29->1120" ] }, { @@ -10320,7 +10323,7 @@ "ru": "Фиджи", "zh-chs": "斐濟", "xloc": [ - "default.handlebars->29->908" + "default.handlebars->29->915" ] }, { @@ -10338,8 +10341,8 @@ "zh-chs": "文件編輯器", "xloc": [ "default-mobile.handlebars->9->255", - "default.handlebars->29->421", - "default.handlebars->29->729" + "default.handlebars->29->423", + "default.handlebars->29->731" ] }, { @@ -10373,7 +10376,7 @@ "ru": "Драйвер файловой системы", "zh-chs": "FileSystemDriver", "xloc": [ - "default.handlebars->29->689" + "default.handlebars->29->691" ] }, { @@ -10390,7 +10393,7 @@ "ru": "Файлы", "zh-chs": "檔案", "xloc": [ - "default.handlebars->29->1202", + "default.handlebars->29->1209", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" ] @@ -10426,9 +10429,9 @@ "ru": "Уведомление файлов", "zh-chs": "文件通知", "xloc": [ - "default.handlebars->29->1121", - "default.handlebars->29->1546", - "default.handlebars->29->500" + "default.handlebars->29->1128", + "default.handlebars->29->1556", + "default.handlebars->29->502" ] }, { @@ -10445,9 +10448,9 @@ "ru": "Запрос файлов", "zh-chs": "文件提示", "xloc": [ - "default.handlebars->29->1120", - "default.handlebars->29->1545", - "default.handlebars->29->499" + "default.handlebars->29->1127", + "default.handlebars->29->1555", + "default.handlebars->29->501" ] }, { @@ -10482,7 +10485,7 @@ "ru": "Финский", "zh-chs": "芬蘭", "xloc": [ - "default.handlebars->29->909" + "default.handlebars->29->916" ] }, { @@ -10599,8 +10602,8 @@ "ru": "Принудительно сбросить пароль при следующем входе в систему.", "zh-chs": "下次登錄時強制重置密碼。", "xloc": [ - "default.handlebars->29->1427", - "default.handlebars->29->1575" + "default.handlebars->29->1436", + "default.handlebars->29->1588" ] }, { @@ -10618,7 +10621,7 @@ "zh-chs": "忘記密碼?", "xloc": [ "login-mobile.handlebars->5->20", - "login.handlebars->5->20" + "login.handlebars->5->21" ] }, { @@ -10686,8 +10689,8 @@ "ru": "Свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->29->1621", - "default.handlebars->29->1623" + "default.handlebars->29->1634", + "default.handlebars->29->1636" ] }, { @@ -10722,7 +10725,7 @@ "ru": "Французский (Бельгия)", "zh-chs": "法語(比利時)", "xloc": [ - "default.handlebars->29->911" + "default.handlebars->29->918" ] }, { @@ -10739,7 +10742,7 @@ "ru": "Французский (Канада)", "zh-chs": "法語(加拿大)", "xloc": [ - "default.handlebars->29->912" + "default.handlebars->29->919" ] }, { @@ -10756,7 +10759,7 @@ "ru": "Французский (Франция)", "zh-chs": "法語(法國)", "xloc": [ - "default.handlebars->29->913" + "default.handlebars->29->920" ] }, { @@ -10773,7 +10776,7 @@ "ru": "Французский (Люксембург)", "zh-chs": "法語(盧森堡)", "xloc": [ - "default.handlebars->29->914" + "default.handlebars->29->921" ] }, { @@ -10790,7 +10793,7 @@ "ru": "Французский (Монако)", "zh-chs": "法語(摩納哥)", "xloc": [ - "default.handlebars->29->915" + "default.handlebars->29->922" ] }, { @@ -10807,7 +10810,7 @@ "ru": "Французский (Стандартный)", "zh-chs": "法語(標準)", "xloc": [ - "default.handlebars->29->910" + "default.handlebars->29->917" ] }, { @@ -10824,7 +10827,7 @@ "ru": "Французский (Швейцария)", "zh-chs": "法語(瑞士)", "xloc": [ - "default.handlebars->29->916" + "default.handlebars->29->923" ] }, { @@ -10841,7 +10844,7 @@ "ru": "Фризский", "zh-chs": "弗里斯蘭語", "xloc": [ - "default.handlebars->29->917" + "default.handlebars->29->924" ] }, { @@ -10858,7 +10861,7 @@ "ru": "Фриульский", "zh-chs": "弗留利", "xloc": [ - "default.handlebars->29->918" + "default.handlebars->29->925" ] }, { @@ -10879,9 +10882,9 @@ "default-mobile.handlebars->9->293", "default-mobile.handlebars->9->311", "default-mobile.handlebars->9->67", - "default.handlebars->29->1091", - "default.handlebars->29->1220", - "default.handlebars->29->1439" + "default.handlebars->29->1098", + "default.handlebars->29->1227", + "default.handlebars->29->1448" ] }, { @@ -10898,7 +10901,7 @@ "ru": "Администратор с полным доступом (все права)", "zh-chs": "正式管理員(保留所有權利)", "xloc": [ - "default.handlebars->29->1254" + "default.handlebars->29->1261" ] }, { @@ -10929,7 +10932,7 @@ "ru": "Полные права на устройство", "zh-chs": "完整的設備權限", "xloc": [ - "default.handlebars->29->560" + "default.handlebars->29->562" ] }, { @@ -10943,7 +10946,7 @@ "ru": "Полные права", "zh-chs": "完全权利", "xloc": [ - "default.handlebars->29->576" + "default.handlebars->29->578" ] }, { @@ -10979,7 +10982,7 @@ "ru": "Администратор с полным доступом", "zh-chs": "正式管理員", "xloc": [ - "default.handlebars->29->1516" + "default.handlebars->29->1525" ] }, { @@ -10996,7 +10999,7 @@ "ru": "Гэльский (Ирландский)", "zh-chs": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->29->920" + "default.handlebars->29->927" ] }, { @@ -11013,7 +11016,7 @@ "ru": "Гэльский (Шотландия)", "zh-chs": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->29->919" + "default.handlebars->29->926" ] }, { @@ -11030,7 +11033,7 @@ "ru": "Галицкий", "zh-chs": "加拉契人", "xloc": [ - "default.handlebars->29->921" + "default.handlebars->29->928" ] }, { @@ -11103,7 +11106,7 @@ "ru": "Общая информация", "zh-chs": "一般信息", "xloc": [ - "default.handlebars->29->428" + "default.handlebars->29->430" ] }, { @@ -11137,7 +11140,7 @@ "ru": "Грузинский", "zh-chs": "格魯吉亞人", "xloc": [ - "default.handlebars->29->922" + "default.handlebars->29->929" ] }, { @@ -11154,7 +11157,7 @@ "ru": "Немецкий (Австрия)", "zh-chs": "德語(奧地利)", "xloc": [ - "default.handlebars->29->924" + "default.handlebars->29->931" ] }, { @@ -11171,7 +11174,7 @@ "ru": "Немецкий (Германия)", "zh-chs": "德文(德國)", "xloc": [ - "default.handlebars->29->925" + "default.handlebars->29->932" ] }, { @@ -11188,7 +11191,7 @@ "ru": "Немецкий (Лихтенштейн)", "zh-chs": "德文(列支敦士登)", "xloc": [ - "default.handlebars->29->926" + "default.handlebars->29->933" ] }, { @@ -11205,7 +11208,7 @@ "ru": "Немецкий (Люксембург)", "zh-chs": "德語(盧森堡)", "xloc": [ - "default.handlebars->29->927" + "default.handlebars->29->934" ] }, { @@ -11222,7 +11225,7 @@ "ru": "Немецкий (Стандартный)", "zh-chs": "德語(標準)", "xloc": [ - "default.handlebars->29->923" + "default.handlebars->29->930" ] }, { @@ -11239,7 +11242,7 @@ "ru": "Немецкий (Швейцария)", "zh-chs": "德語(瑞士)", "xloc": [ - "default.handlebars->29->928" + "default.handlebars->29->935" ] }, { @@ -11256,7 +11259,7 @@ "ru": "Получить учетные данные MQTT для этого устройства.", "zh-chs": "獲取此設備的MQTT登錄憑據。", "xloc": [ - "default.handlebars->29->541" + "default.handlebars->29->543" ] }, { @@ -11309,7 +11312,7 @@ "ru": "Хорошо", "zh-chs": "好", "xloc": [ - "default.handlebars->29->1087" + "default.handlebars->29->1094" ] }, { @@ -11328,8 +11331,8 @@ "xloc": [ "login-mobile.handlebars->5->25", "login-mobile.handlebars->5->29", - "login.handlebars->5->25", - "login.handlebars->5->29" + "login.handlebars->5->28", + "login.handlebars->5->32" ] }, { @@ -11346,7 +11349,7 @@ "ru": "Греческий", "zh-chs": "希臘語", "xloc": [ - "default.handlebars->29->929" + "default.handlebars->29->936" ] }, { @@ -11364,7 +11367,7 @@ "zh-chs": "組", "xloc": [ "default-mobile.handlebars->9->137", - "default.handlebars->29->453", + "default.handlebars->29->455", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, @@ -11382,9 +11385,9 @@ "ru": "Групповое действие", "zh-chs": "集體行動", "xloc": [ - "default.handlebars->29->1397", - "default.handlebars->29->1459", - "default.handlebars->29->390", + "default.handlebars->29->1405", + "default.handlebars->29->1468", + "default.handlebars->29->392", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", "default.handlebars->container->column_l->p50->3->1->0->3->3" @@ -11404,7 +11407,7 @@ "ru": "Члены группы", "zh-chs": "小組成員", "xloc": [ - "default.handlebars->29->1479" + "default.handlebars->29->1488" ] }, { @@ -11421,7 +11424,7 @@ "ru": "Права на группу для пользователя {0}.", "zh-chs": "用戶{0}的組權限。", "xloc": [ - "default.handlebars->29->1219" + "default.handlebars->29->1226" ] }, { @@ -11438,7 +11441,7 @@ "ru": "Права на группу для {0}.", "zh-chs": "{0}的組權限。", "xloc": [ - "default.handlebars->29->1218" + "default.handlebars->29->1225" ] }, { @@ -11489,7 +11492,7 @@ "ru": "Гуджарати", "zh-chs": "古久拉提", "xloc": [ - "default.handlebars->29->930" + "default.handlebars->29->937" ] }, { @@ -11525,7 +11528,7 @@ "ru": "Гаитянский", "zh-chs": "海地", "xloc": [ - "default.handlebars->29->931" + "default.handlebars->29->938" ] }, { @@ -11559,7 +11562,7 @@ "ru": "Жесткое отключение агента", "zh-chs": "硬斷開劑", "xloc": [ - "default.handlebars->29->825" + "default.handlebars->29->827" ] }, { @@ -11576,7 +11579,7 @@ "ru": "Всего кучи", "zh-chs": "堆總數", "xloc": [ - "default.handlebars->29->1662" + "default.handlebars->29->1675" ] }, { @@ -11593,7 +11596,7 @@ "ru": "Куча используется", "zh-chs": "堆使用", "xloc": [ - "default.handlebars->29->1661" + "default.handlebars->29->1674" ] }, { @@ -11610,7 +11613,7 @@ "ru": "Иврит", "zh-chs": "希伯來語", "xloc": [ - "default.handlebars->29->932" + "default.handlebars->29->939" ] }, { @@ -11642,7 +11645,7 @@ "ru": "Помочь перевести MeshCentral", "zh-chs": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->29->1046" + "default.handlebars->29->1053" ] }, { @@ -11704,7 +11707,7 @@ "xloc": [ "default-mobile.handlebars->9->107", "default-mobile.handlebars->9->114", - "default.handlebars->29->354", + "default.handlebars->29->356", "default.handlebars->29->5" ] }, @@ -11722,7 +11725,7 @@ "ru": "Хинди", "zh-chs": "印地語", "xloc": [ - "default.handlebars->29->933" + "default.handlebars->29->940" ] }, { @@ -11758,7 +11761,7 @@ "zh-chs": "持有1份副本", "xloc": [ "default-mobile.handlebars->9->264", - "default.handlebars->29->738" + "default.handlebars->29->740" ] }, { @@ -11776,7 +11779,7 @@ "zh-chs": "持有1個搬家公司", "xloc": [ "default-mobile.handlebars->9->268", - "default.handlebars->29->742" + "default.handlebars->29->744" ] }, { @@ -11794,7 +11797,7 @@ "zh-chs": "保留{0}個條目進行複制", "xloc": [ "default-mobile.handlebars->9->262", - "default.handlebars->29->736" + "default.handlebars->29->738" ] }, { @@ -11812,7 +11815,7 @@ "zh-chs": "保留{0}個條目以進行移動", "xloc": [ "default-mobile.handlebars->9->266", - "default.handlebars->29->740" + "default.handlebars->29->742" ] }, { @@ -11830,7 +11833,7 @@ "zh-chs": "保持{2}的{0}入口{1}", "xloc": [ "default-mobile.handlebars->9->91", - "default.handlebars->29->1348" + "default.handlebars->29->1355" ] }, { @@ -11851,9 +11854,9 @@ "default-mobile.handlebars->9->140", "default-mobile.handlebars->9->142", "default-mobile.handlebars->9->226", - "default.handlebars->29->229", - "default.handlebars->29->458", - "default.handlebars->29->666" + "default.handlebars->29->231", + "default.handlebars->29->460", + "default.handlebars->29->668" ] }, { @@ -11870,7 +11873,7 @@ "ru": "Синхронизация имени хоста", "zh-chs": "主機名同步", "xloc": [ - "default.handlebars->29->1111" + "default.handlebars->29->1118" ] }, { @@ -11887,7 +11890,7 @@ "ru": "Венгерский", "zh-chs": "匈牙利", "xloc": [ - "default.handlebars->29->934" + "default.handlebars->29->941" ] }, { @@ -11904,7 +11907,7 @@ "ru": "Диапазон IP", "zh-chs": "IP範圍", "xloc": [ - "default.handlebars->29->244" + "default.handlebars->29->246" ] }, { @@ -11922,7 +11925,7 @@ "zh-chs": "IP位址已封鎖,請稍後再試。", "xloc": [ "login-mobile.handlebars->5->18", - "login.handlebars->5->18" + "login.handlebars->5->19" ] }, { @@ -11939,7 +11942,7 @@ "ru": "IP: {0}", "zh-chs": "IP:{0}", "xloc": [ - "default.handlebars->29->778" + "default.handlebars->29->780" ] }, { @@ -11956,7 +11959,7 @@ "ru": "IP: {0}, маска: {1}, шлюз: {2}", "zh-chs": "IP:{0},掩碼:{1},網關:{2}", "xloc": [ - "default.handlebars->29->776" + "default.handlebars->29->778" ] }, { @@ -11973,8 +11976,8 @@ "ru": "Уровень IPv4", "zh-chs": "IPv4層", "xloc": [ - "default.handlebars->29->775", - "default.handlebars->29->777" + "default.handlebars->29->777", + "default.handlebars->29->779" ] }, { @@ -12042,7 +12045,7 @@ "ru": "Исландский", "zh-chs": "冰島的", "xloc": [ - "default.handlebars->29->935" + "default.handlebars->29->942" ] }, { @@ -12060,7 +12063,7 @@ "zh-chs": "圖標選擇", "xloc": [ "default-mobile.handlebars->9->224", - "default.handlebars->29->664" + "default.handlebars->29->666" ] }, { @@ -12077,7 +12080,7 @@ "ru": "Идентификатор", "zh-chs": "識別碼", "xloc": [ - "default.handlebars->29->803" + "default.handlebars->29->805" ] }, { @@ -12159,7 +12162,7 @@ "zh-chs": "个别装置", "xloc": [ "default-mobile.handlebars->9->96", - "default.handlebars->29->170" + "default.handlebars->29->172" ] }, { @@ -12176,7 +12179,7 @@ "ru": "Индонезийский", "zh-chs": "印度尼西亞", "xloc": [ - "default.handlebars->29->936" + "default.handlebars->29->943" ] }, { @@ -12291,7 +12294,7 @@ "ru": "Установка CIRA", "zh-chs": "安裝CIRA", "xloc": [ - "default.handlebars->29->1144" + "default.handlebars->29->1151" ] }, { @@ -12308,7 +12311,7 @@ "ru": "Локальная установка", "zh-chs": "安裝本地", "xloc": [ - "default.handlebars->29->1146" + "default.handlebars->29->1153" ] }, { @@ -12325,10 +12328,10 @@ "ru": "Тип установки", "zh-chs": "安裝類型", "xloc": [ - "default.handlebars->29->1285", "default.handlebars->29->1292", - "default.handlebars->29->291", - "default.handlebars->29->313" + "default.handlebars->29->1299", + "default.handlebars->29->293", + "default.handlebars->29->315" ] }, { @@ -12345,7 +12348,7 @@ "ru": "Intel (F10 = ESC+[OM)", "zh-chs": "英特爾(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->29->708", + "default.handlebars->29->710", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -12363,10 +12366,10 @@ "ru": "Intel AMT", "zh-chs": "英特爾AMT", "xloc": [ - "default.handlebars->29->1304", - "default.handlebars->29->1312", - "default.handlebars->29->1658", - "default.handlebars->29->1680" + "default.handlebars->29->1311", + "default.handlebars->29->1319", + "default.handlebars->29->1671", + "default.handlebars->29->1693" ] }, { @@ -12383,7 +12386,7 @@ "ru": "Подключен Intel AMT CIRA", "zh-chs": "英特爾AMT CIRA已連接", "xloc": [ - "default.handlebars->29->143" + "default.handlebars->29->145" ] }, { @@ -12400,7 +12403,7 @@ "ru": "Отключен Intel AMT CIRA", "zh-chs": "英特爾AMT CIRA斷開連接", "xloc": [ - "default.handlebars->29->147" + "default.handlebars->29->149" ] }, { @@ -12417,7 +12420,7 @@ "ru": "Обнаружен Intel AMT", "zh-chs": "檢測到英特爾AMT", "xloc": [ - "default.handlebars->29->142" + "default.handlebars->29->144" ] }, { @@ -12434,7 +12437,7 @@ "ru": "Intel AMT активирован в режиме администратора", "zh-chs": "在管理控制模式下激活了Intel AMT", "xloc": [ - "default.handlebars->29->472" + "default.handlebars->29->474" ] }, { @@ -12451,7 +12454,7 @@ "ru": "Intel AMT активирован в режиме клиента", "zh-chs": "英特爾AMT在客戶端控制模式下被激活", "xloc": [ - "default.handlebars->29->470" + "default.handlebars->29->472" ] }, { @@ -12468,7 +12471,7 @@ "ru": "Intel AMT настроен с TLS безопасностью сети", "zh-chs": "英特爾AMT已設置TLS網絡安全性", "xloc": [ - "default.handlebars->29->474" + "default.handlebars->29->476" ] }, { @@ -12485,7 +12488,7 @@ "ru": "Intel AMT не обнаружен", "zh-chs": "未檢測到英特爾AMT", "xloc": [ - "default.handlebars->29->146" + "default.handlebars->29->148" ] }, { @@ -12502,7 +12505,7 @@ "ru": "Intel AMT необходимо установить с доверенным FQDN в MEBx или иметь кабельное подключение к локальной сети:", "zh-chs": "英特爾AMT將需要在MEBx中設置為受信任的FQDN,或者在網絡上具有有線局域網:", "xloc": [ - "default.handlebars->29->241" + "default.handlebars->29->243" ] }, { @@ -12519,7 +12522,7 @@ "ru": "Intel ASCII", "zh-chs": "英特爾ASCII", "xloc": [ - "default.handlebars->29->707" + "default.handlebars->29->709" ] }, { @@ -12539,11 +12542,11 @@ "default-mobile.handlebars->9->126", "default-mobile.handlebars->9->190", "default-mobile.handlebars->9->195", - "default.handlebars->29->1128", - "default.handlebars->29->1138", - "default.handlebars->29->431", - "default.handlebars->29->482", - "default.handlebars->29->510" + "default.handlebars->29->1135", + "default.handlebars->29->1145", + "default.handlebars->29->433", + "default.handlebars->29->484", + "default.handlebars->29->512" ] }, { @@ -12561,7 +12564,7 @@ "zh-chs": "英特爾®AMT CIRA", "xloc": [ "default-mobile.handlebars->9->194", - "default.handlebars->29->508" + "default.handlebars->29->510" ] }, { @@ -12578,9 +12581,9 @@ "ru": "Intel® AMT CIRA подключен и готов к использованию.", "zh-chs": "英特爾®AMT CIRA已連接並可以使用。", "xloc": [ - "default.handlebars->29->175", - "default.handlebars->29->368", - "default.handlebars->29->507" + "default.handlebars->29->177", + "default.handlebars->29->370", + "default.handlebars->29->509" ] }, { @@ -12616,7 +12619,7 @@ "ru": "Политика Intel® AMT", "zh-chs": "英特爾®AMT政策", "xloc": [ - "default.handlebars->29->1167" + "default.handlebars->29->1174" ] }, { @@ -12650,7 +12653,7 @@ "ru": "Intel® AMT Тег", "zh-chs": "英特爾®AMT標籤", "xloc": [ - "default.handlebars->29->486" + "default.handlebars->29->488" ] }, { @@ -12684,8 +12687,8 @@ "ru": "Активация Intel® AMT", "zh-chs": "英特爾®AMT激活", "xloc": [ - "default.handlebars->29->239", - "default.handlebars->29->242" + "default.handlebars->29->241", + "default.handlebars->29->244" ] }, { @@ -12703,8 +12706,8 @@ "zh-chs": "英特爾®AMT已連接", "xloc": [ "default-mobile.handlebars->9->204", - "default.handlebars->29->545", - "default.handlebars->29->546" + "default.handlebars->29->547", + "default.handlebars->29->548" ] }, { @@ -12721,8 +12724,8 @@ "ru": "События Intel® AMT desktop или serial.", "zh-chs": "英特爾®AMT桌面和串行事件。", "xloc": [ - "default.handlebars->29->1052", - "default.handlebars->29->1300" + "default.handlebars->29->1059", + "default.handlebars->29->1307" ] }, { @@ -12740,8 +12743,8 @@ "zh-chs": "檢測到英特爾®AMT", "xloc": [ "default-mobile.handlebars->9->205", - "default.handlebars->29->547", - "default.handlebars->29->548" + "default.handlebars->29->549", + "default.handlebars->29->550" ] }, { @@ -12758,7 +12761,7 @@ "ru": "Intel® AMT маршрутизируется и готов к использованию.", "zh-chs": "英特爾®AMT可路由並可以使用。", "xloc": [ - "default.handlebars->29->509" + "default.handlebars->29->511" ] }, { @@ -12775,8 +12778,8 @@ "ru": "Intel® AMT маршрутизируется.", "zh-chs": "英特爾®AMT是可路由的。", "xloc": [ - "default.handlebars->29->177", - "default.handlebars->29->370" + "default.handlebars->29->179", + "default.handlebars->29->372" ] }, { @@ -12811,8 +12814,8 @@ "zh-chs": "僅限英特爾®AMT,無代理", "xloc": [ "default-mobile.handlebars->9->275", - "default.handlebars->29->1081", - "default.handlebars->29->1105" + "default.handlebars->29->1088", + "default.handlebars->29->1112" ] }, { @@ -12829,7 +12832,7 @@ "ru": "Технология Intel® Active Management", "zh-chs": "英特爾®主動管理技術", "xloc": [ - "default.handlebars->29->481" + "default.handlebars->29->483" ] }, { @@ -12846,7 +12849,7 @@ "ru": "Intel® Active Management Technology (Intel® AMT)", "zh-chs": "英特爾®主動管理技術(英特爾®AMT)", "xloc": [ - "default.handlebars->29->795" + "default.handlebars->29->797" ] }, { @@ -12864,7 +12867,7 @@ "zh-chs": "英特爾®ME", "xloc": [ "default-mobile.handlebars->9->189", - "default.handlebars->29->480" + "default.handlebars->29->482" ] }, { @@ -12882,7 +12885,7 @@ "zh-chs": "英特爾®SM", "xloc": [ "default-mobile.handlebars->9->191", - "default.handlebars->29->484" + "default.handlebars->29->486" ] }, { @@ -12899,7 +12902,7 @@ "ru": "Intel® Standard Manageability", "zh-chs": "英特爾®標準可管理性", "xloc": [ - "default.handlebars->29->483" + "default.handlebars->29->485" ] }, { @@ -13000,7 +13003,7 @@ "ru": "Интерактивный", "zh-chs": "互動", "xloc": [ - "default.handlebars->29->690" + "default.handlebars->29->692" ] }, { @@ -13017,10 +13020,10 @@ "ru": "Только интерактивный режим", "zh-chs": "僅限互動", "xloc": [ - "default.handlebars->29->1288", "default.handlebars->29->1295", - "default.handlebars->29->294", - "default.handlebars->29->316" + "default.handlebars->29->1302", + "default.handlebars->29->296", + "default.handlebars->29->318" ] }, { @@ -13037,7 +13040,7 @@ "ru": "Интерфейсы", "zh-chs": "介面", "xloc": [ - "default.handlebars->29->528" + "default.handlebars->29->530" ] }, { @@ -13054,7 +13057,7 @@ "ru": "Инуктитут", "zh-chs": "因紐特人", "xloc": [ - "default.handlebars->29->937" + "default.handlebars->29->944" ] }, { @@ -13071,7 +13074,7 @@ "ru": "Некорректный тип группы устройств", "zh-chs": "無效的設備組類型", "xloc": [ - "default.handlebars->29->1635" + "default.handlebars->29->1648" ] }, { @@ -13088,7 +13091,7 @@ "ru": "Некорректный JSON", "zh-chs": "無效的JSON", "xloc": [ - "default.handlebars->29->1629" + "default.handlebars->29->1642" ] }, { @@ -13105,8 +13108,8 @@ "ru": "Некорректный формат файла JSON.", "zh-chs": "無效的JSON文件格式。", "xloc": [ - "default.handlebars->29->1408", - "default.handlebars->29->1410" + "default.handlebars->29->1417", + "default.handlebars->29->1419" ] }, { @@ -13123,7 +13126,7 @@ "ru": "Некорректный файл JSON: {0}.", "zh-chs": "無效的JSON文件:{0}。", "xloc": [ - "default.handlebars->29->1406" + "default.handlebars->29->1415" ] }, { @@ -13140,7 +13143,7 @@ "ru": "Некорректная сигнатура PKCS", "zh-chs": "無效的PKCS簽名", "xloc": [ - "default.handlebars->29->1627" + "default.handlebars->29->1640" ] }, { @@ -13157,7 +13160,7 @@ "ru": "Некорректная сигнатура RSA", "zh-chs": "無效的RSA密碼", "xloc": [ - "default.handlebars->29->1628" + "default.handlebars->29->1641" ] }, { @@ -13175,7 +13178,7 @@ "zh-chs": "無效的帳戶創建令牌。", "xloc": [ "login-mobile.handlebars->5->7", - "login.handlebars->5->7" + "login.handlebars->5->8" ] }, { @@ -13193,7 +13196,7 @@ "zh-chs": "不合規電郵。", "xloc": [ "login-mobile.handlebars->5->10", - "login.handlebars->5->10" + "login.handlebars->5->11" ] }, { @@ -13228,7 +13231,7 @@ "zh-chs": "令牌無效,請重試。", "xloc": [ "login-mobile.handlebars->5->12", - "login.handlebars->5->12" + "login.handlebars->5->13" ] }, { @@ -13259,7 +13262,7 @@ "ru": "Ссылка для приглашения ({0})", "zh-chs": "邀請鏈接({0})", "xloc": [ - "default.handlebars->29->163" + "default.handlebars->29->165" ] }, { @@ -13276,7 +13279,7 @@ "ru": "Тип приглашения", "zh-chs": "邀請類型", "xloc": [ - "default.handlebars->29->271" + "default.handlebars->29->273" ] }, { @@ -13293,7 +13296,7 @@ "ru": "Коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->29->1290" + "default.handlebars->29->1297" ] }, { @@ -13324,9 +13327,9 @@ "ru": "Пригласить", "zh-chs": "邀請", "xloc": [ - "default.handlebars->29->1154", - "default.handlebars->29->226", - "default.handlebars->29->306" + "default.handlebars->29->1161", + "default.handlebars->29->228", + "default.handlebars->29->308" ] }, { @@ -13343,11 +13346,11 @@ "ru": "Пригласительные коды", "zh-chs": "邀請碼", "xloc": [ - "default.handlebars->29->1132", - "default.handlebars->29->1284", - "default.handlebars->29->1289", + "default.handlebars->29->1139", "default.handlebars->29->1291", - "default.handlebars->29->1296" + "default.handlebars->29->1296", + "default.handlebars->29->1298", + "default.handlebars->29->1303" ] }, { @@ -13364,7 +13367,7 @@ "ru": "Пригласите установить Mesh Agent поделившись ссылкой. Эта ссылка ведет на инструкции для установки для группы устройств \\\"{0}\\\". Ссылка общедоступна и не требует наличия учетной записи на сервере.", "zh-chs": "通過共享邀請鏈接來邀請某人安裝網格代理。該鏈接為用戶提供 “{0}” 設備組的安裝說明。該鏈接是公共的,不需要該服務器的帳戶。", "xloc": [ - "default.handlebars->29->297" + "default.handlebars->29->299" ] }, { @@ -13372,8 +13375,8 @@ "en": "Invite someone to install the mesh agent on this device group.", "nl": "Nodig iemand uit om de mesh-agent in deze apparaatgroep te installeren.", "xloc": [ - "default.handlebars->29->1153", - "default.handlebars->29->225" + "default.handlebars->29->1160", + "default.handlebars->29->227" ] }, { @@ -13390,7 +13393,7 @@ "ru": "Пригласите установить Mesh Agent. Ссылка на установку для группы \\\"{0}\\\" будет отправлена по электронной почте.", "zh-chs": "邀請某人安裝網狀代理。將發送一封電子郵件,其中包含指向 “{0}” 設備組的網狀代理安裝的鏈接。", "xloc": [ - "default.handlebars->29->274" + "default.handlebars->29->276" ] }, { @@ -13407,7 +13410,7 @@ "ru": "Ирландский", "zh-chs": "愛爾蘭人", "xloc": [ - "default.handlebars->29->938" + "default.handlebars->29->945" ] }, { @@ -13424,7 +13427,7 @@ "ru": "Итальянский (Стандартный)", "zh-chs": "意大利語(標準)", "xloc": [ - "default.handlebars->29->939" + "default.handlebars->29->946" ] }, { @@ -13441,7 +13444,7 @@ "ru": "Итальянский (Швейцария)", "zh-chs": "義大利文(瑞士)", "xloc": [ - "default.handlebars->29->940" + "default.handlebars->29->947" ] }, { @@ -13458,9 +13461,9 @@ "ru": "Формат JSON", "zh-chs": "JSON格式", "xloc": [ - "default.handlebars->29->1359", - "default.handlebars->29->1414", - "default.handlebars->29->398" + "default.handlebars->29->1366", + "default.handlebars->29->1423", + "default.handlebars->29->400" ] }, { @@ -13477,7 +13480,7 @@ "ru": "Японский", "zh-chs": "日本", "xloc": [ - "default.handlebars->29->941" + "default.handlebars->29->948" ] }, { @@ -13494,7 +13497,7 @@ "ru": "Каннада", "zh-chs": "卡納達語", "xloc": [ - "default.handlebars->29->942" + "default.handlebars->29->949" ] }, { @@ -13511,7 +13514,7 @@ "ru": "Кашмирский", "zh-chs": "克什米爾語", "xloc": [ - "default.handlebars->29->943" + "default.handlebars->29->950" ] }, { @@ -13528,7 +13531,7 @@ "ru": "Казахский", "zh-chs": "哈薩克語", "xloc": [ - "default.handlebars->29->944" + "default.handlebars->29->951" ] }, { @@ -13545,7 +13548,7 @@ "ru": "Драйвер ядра", "zh-chs": "內核驅動程序", "xloc": [ - "default.handlebars->29->691" + "default.handlebars->29->693" ] }, { @@ -13562,8 +13565,8 @@ "ru": "Имя ключа", "zh-chs": "鍵名", "xloc": [ - "default.handlebars->29->835", - "default.handlebars->29->838" + "default.handlebars->29->842", + "default.handlebars->29->845" ] }, { @@ -13597,7 +13600,7 @@ "ru": "Кхмерский", "zh-chs": "高棉語", "xloc": [ - "default.handlebars->29->945" + "default.handlebars->29->952" ] }, { @@ -13614,7 +13617,7 @@ "ru": "Киргизский", "zh-chs": "吉爾吉斯", "xloc": [ - "default.handlebars->29->946" + "default.handlebars->29->953" ] }, { @@ -13631,7 +13634,7 @@ "ru": "Клингонский", "zh-chs": "克林貢", "xloc": [ - "default.handlebars->29->947" + "default.handlebars->29->954" ] }, { @@ -13648,7 +13651,7 @@ "ru": "Известный", "zh-chs": "已知的", "xloc": [ - "default.handlebars->29->794" + "default.handlebars->29->796" ] }, { @@ -13665,7 +13668,7 @@ "ru": "Korean", "zh-chs": "韓語", "xloc": [ - "default.handlebars->29->948" + "default.handlebars->29->955" ] }, { @@ -13682,7 +13685,7 @@ "ru": "Корейский (Северная Корея)", "zh-chs": "韓語(朝鮮)", "xloc": [ - "default.handlebars->29->949" + "default.handlebars->29->956" ] }, { @@ -13699,7 +13702,7 @@ "ru": "Корейский (Южная Корея)", "zh-chs": "韓語(韓國)", "xloc": [ - "default.handlebars->29->950" + "default.handlebars->29->957" ] }, { @@ -13716,8 +13719,8 @@ "ru": "LF", "zh-chs": "如果", "xloc": [ - "default.handlebars->29->703", - "default.handlebars->29->712" + "default.handlebars->29->705", + "default.handlebars->29->714" ] }, { @@ -13734,7 +13737,7 @@ "ru": "Язык", "zh-chs": "語言", "xloc": [ - "default.handlebars->29->1044" + "default.handlebars->29->1051" ] }, { @@ -13768,7 +13771,7 @@ "ru": "Большой Фокус", "zh-chs": "大焦點", "xloc": [ - "default.handlebars->29->679" + "default.handlebars->29->681" ] }, { @@ -13951,7 +13954,7 @@ "ru": "Последний доступ", "zh-chs": "最後訪問", "xloc": [ - "default.handlebars->29->1367" + "default.handlebars->29->1374" ] }, { @@ -13968,7 +13971,7 @@ "ru": "Последний вход в систему", "zh-chs": "上次登錄", "xloc": [ - "default.handlebars->29->1528" + "default.handlebars->29->1538" ] }, { @@ -13988,9 +13991,9 @@ "default.handlebars->29->70", "default.handlebars->29->72", "default.handlebars->29->74", - "default.handlebars->29->766", - "default.handlebars->29->767", - "default.handlebars->29->768" + "default.handlebars->29->768", + "default.handlebars->29->769", + "default.handlebars->29->770" ] }, { @@ -14008,8 +14011,8 @@ "zh-chs": "上次代理連接", "xloc": [ "default.handlebars->29->69", - "default.handlebars->29->763", - "default.handlebars->29->765" + "default.handlebars->29->765", + "default.handlebars->29->767" ] }, { @@ -14026,7 +14029,7 @@ "ru": "Последнее изменение: {0}", "zh-chs": "上次更改:{0}", "xloc": [ - "default.handlebars->29->1532" + "default.handlebars->29->1542" ] }, { @@ -14077,7 +14080,7 @@ "ru": "Последний вход в систему: {0}", "zh-chs": "上次登錄:{0}", "xloc": [ - "default.handlebars->29->1377" + "default.handlebars->29->1384" ] }, { @@ -14094,7 +14097,7 @@ "ru": "Последнее посещение:", "zh-chs": "最後一次露面:", "xloc": [ - "default.handlebars->29->551", + "default.handlebars->29->553", "default.handlebars->29->65" ] }, @@ -14163,7 +14166,7 @@ "ru": "Латинский", "zh-chs": "拉丁", "xloc": [ - "default.handlebars->29->951" + "default.handlebars->29->958" ] }, { @@ -14180,7 +14183,7 @@ "ru": "Латышский", "zh-chs": "拉脫維亞語", "xloc": [ - "default.handlebars->29->952" + "default.handlebars->29->959" ] }, { @@ -14219,7 +14222,7 @@ "ru": "Меньше", "zh-chs": "減", "xloc": [ - "default.handlebars->29->1697" + "default.handlebars->29->1710" ] }, { @@ -14233,8 +14236,8 @@ "ru": "Предельные события", "zh-chs": "极限赛事", "xloc": [ - "default.handlebars->29->572", - "default.handlebars->29->591" + "default.handlebars->29->574", + "default.handlebars->29->593" ] }, { @@ -14270,9 +14273,9 @@ "zh-chs": "有限輸入", "xloc": [ "default-mobile.handlebars->9->324", - "default.handlebars->29->1268", - "default.handlebars->29->565", - "default.handlebars->29->584" + "default.handlebars->29->1275", + "default.handlebars->29->567", + "default.handlebars->29->586" ] }, { @@ -14290,7 +14293,7 @@ "zh-chs": "僅限於輸入", "xloc": [ "default-mobile.handlebars->9->299", - "default.handlebars->29->1226" + "default.handlebars->29->1233" ] }, { @@ -14325,8 +14328,8 @@ "ru": "Срок действия ссылки", "zh-chs": "鏈接過期", "xloc": [ - "default.handlebars->29->284", - "default.handlebars->29->298" + "default.handlebars->29->286", + "default.handlebars->29->300" ] }, { @@ -14335,7 +14338,7 @@ "es": "Enlace de invitación", "nl": "Uitnodigingslink", "xloc": [ - "default.handlebars->29->272" + "default.handlebars->29->274" ] }, { @@ -14370,7 +14373,7 @@ "ru": "Linux / BSD", "zh-chs": "Linux / BSD", "xloc": [ - "default.handlebars->29->309" + "default.handlebars->29->311" ] }, { @@ -14387,7 +14390,7 @@ "ru": "Linux / BSD (Удаление)", "zh-chs": "Linux / BSD(卸載)", "xloc": [ - "default.handlebars->29->312" + "default.handlebars->29->314" ] }, { @@ -14458,7 +14461,7 @@ "ru": "Linux ARM, Raspberry Pi (32bit)", "zh-chs": "Linux ARM,Raspberry Pi(32位)", "xloc": [ - "default.handlebars->29->648" + "default.handlebars->29->650" ] }, { @@ -14547,7 +14550,7 @@ "ru": "Только Linux", "zh-chs": "僅Linux", "xloc": [ - "default.handlebars->29->283" + "default.handlebars->29->285" ] }, { @@ -14564,7 +14567,7 @@ "ru": "Linux x86 (32bit)", "zh-chs": "Linux x86(32位)", "xloc": [ - "default.handlebars->29->645" + "default.handlebars->29->647" ] }, { @@ -14581,7 +14584,7 @@ "ru": "Linux x86 (64bit)", "zh-chs": "Linux x86(64位)", "xloc": [ - "default.handlebars->29->646" + "default.handlebars->29->648" ] }, { @@ -14616,7 +14619,7 @@ "ru": "Литовский", "zh-chs": "立陶宛語", "xloc": [ - "default.handlebars->29->953" + "default.handlebars->29->960" ] }, { @@ -14634,10 +14637,10 @@ "zh-chs": "載入中...", "xloc": [ "default-mobile.handlebars->9->34", - "default.handlebars->29->1098", - "default.handlebars->29->1100", - "default.handlebars->29->639", - "default.handlebars->29->831" + "default.handlebars->29->1105", + "default.handlebars->29->1107", + "default.handlebars->29->641", + "default.handlebars->29->838" ] }, { @@ -14705,8 +14708,8 @@ "ru": "Настройки локализации", "zh-chs": "本地化設置", "xloc": [ - "default.handlebars->29->1047", - "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->5" + "default.handlebars->29->1054", + "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, { @@ -14723,7 +14726,7 @@ "ru": "Местонахождение", "zh-chs": "位置", "xloc": [ - "default.handlebars->29->530" + "default.handlebars->29->532" ] }, { @@ -14757,7 +14760,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->29->1445" + "default.handlebars->29->1454" ] }, { @@ -14774,7 +14777,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->29->1394" + "default.handlebars->29->1402" ] }, { @@ -14791,7 +14794,7 @@ "ru": "Заблокирован", "zh-chs": "已鎖定", "xloc": [ - "default.handlebars->29->1378" + "default.handlebars->29->1385" ] }, { @@ -14808,7 +14811,7 @@ "ru": "Заблокированная учетная запись", "zh-chs": "賬戶鎖定", "xloc": [ - "default.handlebars->29->1513" + "default.handlebars->29->1522" ] }, { @@ -14825,7 +14828,7 @@ "ru": "Добавить событие", "zh-chs": "記錄事件", "xloc": [ - "default.handlebars->29->521" + "default.handlebars->29->523" ] }, { @@ -14918,7 +14921,7 @@ "zh-chs": "登錄失敗,請檢查用戶名和密碼。", "xloc": [ "login-mobile.handlebars->5->16", - "login.handlebars->5->16" + "login.handlebars->5->17" ] }, { @@ -14974,7 +14977,7 @@ "ru": "Люксембургский", "zh-chs": "盧森堡語", "xloc": [ - "default.handlebars->29->954" + "default.handlebars->29->961" ] }, { @@ -14991,8 +14994,8 @@ "ru": "MAC-уровень", "zh-chs": "MAC層", "xloc": [ - "default.handlebars->29->771", - "default.handlebars->29->773" + "default.handlebars->29->773", + "default.handlebars->29->775" ] }, { @@ -15026,7 +15029,7 @@ "ru": "MAC: {0}", "zh-chs": "MAC:{0}", "xloc": [ - "default.handlebars->29->774" + "default.handlebars->29->776" ] }, { @@ -15043,7 +15046,7 @@ "ru": "MAC: {0}, шлюз: {1}", "zh-chs": "MAC:{0},網關:{1}", "xloc": [ - "default.handlebars->29->772" + "default.handlebars->29->774" ] }, { @@ -15078,8 +15081,8 @@ "ru": "MPS Сервер", "zh-chs": "MPS服務器", "xloc": [ - "default.handlebars->29->263", - "default.handlebars->29->269" + "default.handlebars->29->265", + "default.handlebars->29->271" ] }, { @@ -15098,11 +15101,11 @@ "xloc": [ "default-mobile.handlebars->9->128", "default-mobile.handlebars->9->197", - "default.handlebars->29->182", - "default.handlebars->29->375", - "default.handlebars->29->514", - "default.handlebars->29->815", - "default.handlebars->29->816", + "default.handlebars->29->184", + "default.handlebars->29->377", + "default.handlebars->29->516", + "default.handlebars->29->817", + "default.handlebars->29->818", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -15120,7 +15123,7 @@ "ru": "MQTT Учетные данные", "zh-chs": "MQTT憑證", "xloc": [ - "default.handlebars->29->165" + "default.handlebars->29->167" ] }, { @@ -15137,7 +15140,7 @@ "ru": "MQTT Вход", "zh-chs": "MQTT登錄", "xloc": [ - "default.handlebars->29->542" + "default.handlebars->29->544" ] }, { @@ -15155,7 +15158,7 @@ "zh-chs": "MQTT通道已連接", "xloc": [ "default-mobile.handlebars->9->206", - "default.handlebars->29->550" + "default.handlebars->29->552" ] }, { @@ -15172,8 +15175,8 @@ "ru": "Подключен MQTT", "zh-chs": "MQTT已連接", "xloc": [ - "default.handlebars->29->144", - "default.handlebars->29->549" + "default.handlebars->29->146", + "default.handlebars->29->551" ] }, { @@ -15190,9 +15193,9 @@ "ru": "MQTT подключение к устройству активно.", "zh-chs": "與設備的MQTT連接已激活。", "xloc": [ - "default.handlebars->29->181", - "default.handlebars->29->374", - "default.handlebars->29->513" + "default.handlebars->29->183", + "default.handlebars->29->376", + "default.handlebars->29->515" ] }, { @@ -15209,7 +15212,7 @@ "ru": "MQTT отключено", "zh-chs": "MQTT已斷開連接", "xloc": [ - "default.handlebars->29->148" + "default.handlebars->29->150" ] }, { @@ -15243,7 +15246,7 @@ "ru": "MacOS (64bit)", "zh-chs": "MacOS(64位)", "xloc": [ - "default.handlebars->29->647" + "default.handlebars->29->649" ] }, { @@ -15296,7 +15299,7 @@ "ru": "Сообщения главного сервера", "zh-chs": "主服務器消息", "xloc": [ - "default.handlebars->29->1669" + "default.handlebars->29->1682" ] }, { @@ -15313,7 +15316,7 @@ "ru": "Малайский", "zh-chs": "馬來語", "xloc": [ - "default.handlebars->29->956" + "default.handlebars->29->963" ] }, { @@ -15330,7 +15333,7 @@ "ru": "Малаяламский", "zh-chs": "馬拉雅拉姆語", "xloc": [ - "default.handlebars->29->957" + "default.handlebars->29->964" ] }, { @@ -15347,7 +15350,7 @@ "ru": "Мальтийский", "zh-chs": "馬耳他語", "xloc": [ - "default.handlebars->29->958" + "default.handlebars->29->965" ] }, { @@ -15384,8 +15387,8 @@ "xloc": [ "default-mobile.handlebars->9->296", "default-mobile.handlebars->9->314", - "default.handlebars->29->1223", - "default.handlebars->29->1257" + "default.handlebars->29->1230", + "default.handlebars->29->1264" ] }, { @@ -15404,8 +15407,8 @@ "xloc": [ "default-mobile.handlebars->9->295", "default-mobile.handlebars->9->313", - "default.handlebars->29->1222", - "default.handlebars->29->1256" + "default.handlebars->29->1229", + "default.handlebars->29->1263" ] }, { @@ -15419,7 +15422,7 @@ "ru": "Управление устройствами", "zh-chs": "管理设备", "xloc": [ - "default.handlebars->29->579" + "default.handlebars->29->581" ] }, { @@ -15453,7 +15456,7 @@ "ru": "Управление группами пользователя", "zh-chs": "管理用戶組", "xloc": [ - "default.handlebars->29->1444" + "default.handlebars->29->1453" ] }, { @@ -15470,8 +15473,8 @@ "ru": "Управление пользователями", "zh-chs": "管理用戶", "xloc": [ - "default.handlebars->29->1443", - "default.handlebars->29->578" + "default.handlebars->29->1452", + "default.handlebars->29->580" ] }, { @@ -15528,6 +15531,13 @@ "default.handlebars->container->column_l->p2->p2info->p2AccountSecurity->3->manageEmail2FA->1->0" ] }, + { + "en": "Manage phone number", + "xloc": [ + "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->managePhoneNumber2->0", + "default.handlebars->container->column_l->p2->p2info->p2AccountSecurity->3->managePhoneNumber1->1->0" + ] + }, { "cs": "Spravovat klíče zabezpečení", "de": "Sicherheitsschlüssel verwalten", @@ -15559,7 +15569,7 @@ "ru": "Управление с помощью программного агента", "zh-chs": "使用軟件代理進行管理", "xloc": [ - "default.handlebars->29->1080" + "default.handlebars->29->1087" ] }, { @@ -15577,7 +15587,7 @@ "zh-chs": "使用軟件代理進行管理", "xloc": [ "default-mobile.handlebars->9->276", - "default.handlebars->29->1106" + "default.handlebars->29->1113" ] }, { @@ -15594,7 +15604,7 @@ "ru": "Менеджер", "zh-chs": "經理", "xloc": [ - "default.handlebars->29->1383" + "default.handlebars->29->1390" ] }, { @@ -15611,7 +15621,7 @@ "ru": "Ручной Сертификат", "zh-chs": "手動證書", "xloc": [ - "default.handlebars->29->250" + "default.handlebars->29->252" ] }, { @@ -15628,7 +15638,7 @@ "ru": "Ручной Имя пользователя/Пароль", "zh-chs": "手動用戶名/密碼", "xloc": [ - "default.handlebars->29->249" + "default.handlebars->29->251" ] }, { @@ -15645,7 +15655,7 @@ "ru": "Маори", "zh-chs": "毛利人", "xloc": [ - "default.handlebars->29->959" + "default.handlebars->29->966" ] }, { @@ -15680,7 +15690,7 @@ "ru": "Маратхи", "zh-chs": "馬拉地語", "xloc": [ - "default.handlebars->29->960" + "default.handlebars->29->967" ] }, { @@ -15697,7 +15707,7 @@ "ru": "Достигнуто максимальное число сессий", "zh-chs": "達到的會話數上限", "xloc": [ - "default.handlebars->29->1633" + "default.handlebars->29->1646" ] }, { @@ -15715,7 +15725,7 @@ "zh-chs": "最大長度為{0}", "xloc": [ "login-mobile.handlebars->5->33", - "login.handlebars->5->33" + "login.handlebars->5->36" ] }, { @@ -15751,7 +15761,7 @@ "ru": "Мегабайт", "zh-chs": "兆字節", "xloc": [ - "default.handlebars->29->1659" + "default.handlebars->29->1672" ] }, { @@ -15768,8 +15778,8 @@ "ru": "ОЗУ", "zh-chs": "記憶", "xloc": [ - "default.handlebars->29->1650", - "default.handlebars->29->808", + "default.handlebars->29->1663", + "default.handlebars->29->810", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -15788,15 +15798,15 @@ "zh-chs": "網格代理", "xloc": [ "default-mobile.handlebars->9->203", - "default.handlebars->29->318", - "default.handlebars->29->322", - "default.handlebars->29->331", - "default.handlebars->29->335", - "default.handlebars->29->338", - "default.handlebars->29->463", - "default.handlebars->29->506", - "default.handlebars->29->762", - "default.handlebars->29->769" + "default.handlebars->29->320", + "default.handlebars->29->324", + "default.handlebars->29->333", + "default.handlebars->29->337", + "default.handlebars->29->340", + "default.handlebars->29->465", + "default.handlebars->29->508", + "default.handlebars->29->764", + "default.handlebars->29->771" ] }, { @@ -15814,7 +15824,7 @@ "zh-chs": "網格代理控制台", "xloc": [ "default-mobile.handlebars->9->303", - "default.handlebars->29->1231" + "default.handlebars->29->1238" ] }, { @@ -15831,7 +15841,7 @@ "ru": "Ретранслятор Mesh", "zh-chs": "網狀中繼", "xloc": [ - "default.handlebars->29->512" + "default.handlebars->29->514" ] }, { @@ -15848,9 +15858,9 @@ "ru": "Mesh Agent подключен и готов к использованию.", "zh-chs": "已連接網狀代理並準備使用。", "xloc": [ - "default.handlebars->29->173", - "default.handlebars->29->366", - "default.handlebars->29->505" + "default.handlebars->29->175", + "default.handlebars->29->368", + "default.handlebars->29->507" ] }, { @@ -15867,9 +15877,9 @@ "ru": "Mesh Agent доступен с использованием другого агента в качестве ретранслятора.", "zh-chs": "使用其他代理作為中繼可以訪問網狀代理。", "xloc": [ - "default.handlebars->29->179", - "default.handlebars->29->372", - "default.handlebars->29->511" + "default.handlebars->29->181", + "default.handlebars->29->374", + "default.handlebars->29->513" ] }, { @@ -15886,8 +15896,8 @@ "ru": "MeshAction (.txt)", "zh-chs": "MeshAction(.txt)", "xloc": [ - "default.handlebars->29->654", - "default.handlebars->29->656" + "default.handlebars->29->656", + "default.handlebars->29->658" ] }, { @@ -15904,7 +15914,7 @@ "ru": "Трафик MeshAgent", "zh-chs": "MeshAgent流量", "xloc": [ - "default.handlebars->29->1671" + "default.handlebars->29->1684" ] }, { @@ -15921,7 +15931,7 @@ "ru": "Обновление MeshAgent", "zh-chs": "MeshAgent更新", "xloc": [ - "default.handlebars->29->1672" + "default.handlebars->29->1685" ] }, { @@ -15955,7 +15965,7 @@ "ru": "Ошибки MeshCentral", "zh-chs": "網格中心錯誤", "xloc": [ - "default.handlebars->29->1099" + "default.handlebars->29->1106" ] }, { @@ -15972,7 +15982,7 @@ "ru": "MeshCentral Router ", "zh-chs": "MeshCentral路由器", "xloc": [ - "default.handlebars->29->642" + "default.handlebars->29->644" ] }, { @@ -15989,7 +15999,7 @@ "ru": "MeshCentral Router это инструмент Windows для сопоставления портов TCP. Например, через этот сервер можно установить подключение по RDP к удаленному устройству.", "zh-chs": "MeshCentral Router是Windows工具,用於TCP端口映射。例如,您可以通過該服務器將RDP放入遠程設備。", "xloc": [ - "default.handlebars->29->640" + "default.handlebars->29->642" ] }, { @@ -16024,7 +16034,7 @@ "ru": "Соединения сервера MeshCentral", "zh-chs": "MeshCentral服務器對等", "xloc": [ - "default.handlebars->29->1670" + "default.handlebars->29->1683" ] }, { @@ -16059,7 +16069,7 @@ "zh-chs": "MeshCentral版本", "xloc": [ "default.handlebars->29->101", - "default.handlebars->29->1097", + "default.handlebars->29->1104", "default.handlebars->29->99" ] }, @@ -16077,9 +16087,9 @@ "ru": "MeshCmd", "zh-chs": "MeshCmd", "xloc": [ - "default.handlebars->29->197", - "default.handlebars->29->532", - "default.handlebars->29->652" + "default.handlebars->29->199", + "default.handlebars->29->534", + "default.handlebars->29->654" ] }, { @@ -16096,7 +16106,7 @@ "ru": "MeshCmd (Linux ARM, 32bit)", "zh-chs": "MeshCmd(Linux ARM,32位)", "xloc": [ - "default.handlebars->29->663" + "default.handlebars->29->665" ] }, { @@ -16113,7 +16123,7 @@ "ru": "MeshCmd (Linux x86, 32bit)", "zh-chs": "MeshCmd(Linux x86,32bit)", "xloc": [ - "default.handlebars->29->660" + "default.handlebars->29->662" ] }, { @@ -16130,7 +16140,7 @@ "ru": "MeshCmd (Linux x86, 64bit)", "zh-chs": "MeshCmd(Linux x86,64bit)", "xloc": [ - "default.handlebars->29->661" + "default.handlebars->29->663" ] }, { @@ -16147,7 +16157,7 @@ "ru": "MeshCmd (MacOS, 64bit)", "zh-chs": "MeshCmd(MacOS,64位)", "xloc": [ - "default.handlebars->29->662" + "default.handlebars->29->664" ] }, { @@ -16164,7 +16174,7 @@ "ru": "MeshCmd (приложение Win32)", "zh-chs": "MeshCmd(Win32可執行文件)", "xloc": [ - "default.handlebars->29->658" + "default.handlebars->29->660" ] }, { @@ -16181,7 +16191,7 @@ "ru": "MeshCmd (приложение Win64)", "zh-chs": "MeshCmd(Win64可執行文件)", "xloc": [ - "default.handlebars->29->659" + "default.handlebars->29->661" ] }, { @@ -16198,7 +16208,7 @@ "ru": "MeshCmd это утилита с командной строкой, которая позволяет выполнить множество операций. Файл с командами может быть опционально скачан и отредактирован для указания информации о сервере и учетных данных.", "zh-chs": "MeshCmd是執行許多不同操作的命令行工具。可以選擇下載和編輯操作文件以提供服務器信息和憑據。", "xloc": [ - "default.handlebars->29->649" + "default.handlebars->29->651" ] }, { @@ -16215,7 +16225,7 @@ "ru": "MeshCommander Script", "zh-chs": "MeshCommander腳本", "xloc": [ - "default.handlebars->29->248" + "default.handlebars->29->250" ] }, { @@ -16251,8 +16261,8 @@ "ru": "MeshServerRootCert.cer", "zh-chs": "MeshServerRootCert.cer", "xloc": [ - "default.handlebars->29->259", - "default.handlebars->29->266" + "default.handlebars->29->261", + "default.handlebars->29->268" ] }, { @@ -16269,8 +16279,8 @@ "ru": "Сообщение", "zh-chs": "信息", "xloc": [ - "default.handlebars->29->295", - "default.handlebars->29->620" + "default.handlebars->29->297", + "default.handlebars->29->622" ] }, { @@ -16287,7 +16297,7 @@ "ru": "Диспетчер сообщения", "zh-chs": "郵件調度程序", "xloc": [ - "default.handlebars->29->1668" + "default.handlebars->29->1681" ] }, { @@ -16367,7 +16377,7 @@ "zh-chs": "最小長度為{0}", "xloc": [ "login-mobile.handlebars->5->32", - "login.handlebars->5->32" + "login.handlebars->5->35" ] }, { @@ -16384,7 +16394,7 @@ "ru": "Изменить позицию узла", "zh-chs": "修改節點位置", "xloc": [ - "default.handlebars->29->425" + "default.handlebars->29->427" ] }, { @@ -16401,7 +16411,7 @@ "ru": "Молдавский", "zh-chs": "摩爾達維亞人", "xloc": [ - "default.handlebars->29->961" + "default.handlebars->29->968" ] }, { @@ -16418,7 +16428,7 @@ "ru": "Еще", "zh-chs": "更多", "xloc": [ - "default.handlebars->29->1696" + "default.handlebars->29->1709" ] }, { @@ -16435,7 +16445,7 @@ "ru": "Материнская плата", "zh-chs": "母板", "xloc": [ - "default.handlebars->29->804" + "default.handlebars->29->806" ] }, { @@ -16452,7 +16462,7 @@ "ru": "Переместить это устройство в другую группу устройств", "zh-chs": "將此設備移到其他設備組", "xloc": [ - "default.handlebars->29->523" + "default.handlebars->29->525" ] }, { @@ -16469,7 +16479,7 @@ "ru": "Переместить в группу устройств", "zh-chs": "移至設備組", "xloc": [ - "default.handlebars->29->388" + "default.handlebars->29->390" ] }, { @@ -16601,7 +16611,7 @@ "ru": "Консоль моего сервера", "zh-chs": "我的服務器控制台", "xloc": [ - "default.handlebars->29->810" + "default.handlebars->29->812" ] }, { @@ -16722,8 +16732,8 @@ "ru": "Мой ключ", "zh-chs": "我的鑰匙", "xloc": [ - "default.handlebars->29->836", - "default.handlebars->29->839" + "default.handlebars->29->843", + "default.handlebars->29->846" ] }, { @@ -16745,17 +16755,17 @@ "default-mobile.handlebars->9->290", "default-mobile.handlebars->9->59", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->29->1078", - "default.handlebars->29->1189", - "default.handlebars->29->1365", - "default.handlebars->29->1450", - "default.handlebars->29->1464", - "default.handlebars->29->1500", - "default.handlebars->29->456", - "default.handlebars->29->685", - "default.handlebars->29->758", + "default.handlebars->29->1085", + "default.handlebars->29->1196", + "default.handlebars->29->1372", + "default.handlebars->29->1459", + "default.handlebars->29->1473", + "default.handlebars->29->1509", + "default.handlebars->29->458", + "default.handlebars->29->687", + "default.handlebars->29->760", "default.handlebars->29->77", - "default.handlebars->29->800", + "default.handlebars->29->802", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default.handlebars->container->column_l->p42->p42tbl->1->0->2" @@ -16775,7 +16785,7 @@ "ru": "Имя (не обязательно)", "zh-chs": "名稱(可選)", "xloc": [ - "default.handlebars->29->275" + "default.handlebars->29->277" ] }, { @@ -16792,7 +16802,7 @@ "ru": "Имя1, Имя2, Имя3", "zh-chs": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->29->1435" + "default.handlebars->29->1444" ] }, { @@ -16809,7 +16819,7 @@ "ru": "Навахо", "zh-chs": "納瓦霍人", "xloc": [ - "default.handlebars->29->962" + "default.handlebars->29->969" ] }, { @@ -16826,7 +16836,7 @@ "ru": "Ндонга", "zh-chs": "恩東加", "xloc": [ - "default.handlebars->29->963" + "default.handlebars->29->970" ] }, { @@ -16843,7 +16853,7 @@ "ru": "Непальский", "zh-chs": "尼泊爾文", "xloc": [ - "default.handlebars->29->964" + "default.handlebars->29->971" ] }, { @@ -16860,7 +16870,7 @@ "ru": "Сетевые интерфейсы", "zh-chs": "網絡接口", "xloc": [ - "default.handlebars->29->638" + "default.handlebars->29->640" ] }, { @@ -16891,7 +16901,7 @@ "ru": "сетей", "zh-chs": "聯網", "xloc": [ - "default.handlebars->29->779" + "default.handlebars->29->781" ] }, { @@ -16944,9 +16954,9 @@ "zh-chs": "新設備組", "xloc": [ "default-mobile.handlebars->9->53", - "default.handlebars->29->1071", - "default.handlebars->29->1083", - "default.handlebars->29->630" + "default.handlebars->29->1078", + "default.handlebars->29->1090", + "default.handlebars->29->632" ] }, { @@ -16965,8 +16975,8 @@ "xloc": [ "default-mobile.handlebars->9->248", "default-mobile.handlebars->9->82", - "default.handlebars->29->1338", - "default.handlebars->29->722", + "default.handlebars->29->1345", + "default.handlebars->29->724", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -17021,8 +17031,8 @@ "xloc": [ "default-mobile.handlebars->9->48", "default-mobile.handlebars->9->49", - "default.handlebars->29->1066", - "default.handlebars->29->1067" + "default.handlebars->29->1073", + "default.handlebars->29->1074" ] }, { @@ -17037,8 +17047,8 @@ "ru": "Нет AMT", "zh-chs": "没有AMT", "xloc": [ - "default.handlebars->29->564", - "default.handlebars->29->583" + "default.handlebars->29->566", + "default.handlebars->29->585" ] }, { @@ -17086,8 +17096,8 @@ "xloc": [ "default-mobile.handlebars->9->187", "default-mobile.handlebars->9->188", - "default.handlebars->29->477", - "default.handlebars->29->478" + "default.handlebars->29->479", + "default.handlebars->29->480" ] }, { @@ -17104,9 +17114,9 @@ "ru": "Нет рабочего стола", "zh-chs": "沒有桌面", "xloc": [ - "default.handlebars->29->1264", - "default.handlebars->29->566", - "default.handlebars->29->585" + "default.handlebars->29->1271", + "default.handlebars->29->568", + "default.handlebars->29->587" ] }, { @@ -17123,7 +17133,7 @@ "ru": "Нет доступа к рабочему столу", "zh-chs": "沒有桌面訪問", "xloc": [ - "default.handlebars->29->1227" + "default.handlebars->29->1234" ] }, { @@ -17140,9 +17150,9 @@ "ru": "События не найдены", "zh-chs": "找不到活動", "xloc": [ - "default.handlebars->29->1355", - "default.handlebars->29->1614", - "default.handlebars->29->756" + "default.handlebars->29->1362", + "default.handlebars->29->1627", + "default.handlebars->29->758" ] }, { @@ -17160,7 +17170,7 @@ "zh-chs": "沒有文件訪問", "xloc": [ "default-mobile.handlebars->9->301", - "default.handlebars->29->1229" + "default.handlebars->29->1236" ] }, { @@ -17178,9 +17188,9 @@ "zh-chs": "沒有文件", "xloc": [ "default-mobile.handlebars->9->322", - "default.handlebars->29->1266", - "default.handlebars->29->563", - "default.handlebars->29->582" + "default.handlebars->29->1273", + "default.handlebars->29->565", + "default.handlebars->29->584" ] }, { @@ -17194,8 +17204,8 @@ "ru": "Нет ввода", "zh-chs": "无输入", "xloc": [ - "default.handlebars->29->561", - "default.handlebars->29->580" + "default.handlebars->29->563", + "default.handlebars->29->582" ] }, { @@ -17214,8 +17224,8 @@ "xloc": [ "default-mobile.handlebars->9->302", "default-mobile.handlebars->9->323", - "default.handlebars->29->1230", - "default.handlebars->29->1267" + "default.handlebars->29->1237", + "default.handlebars->29->1274" ] }, { @@ -17249,7 +17259,7 @@ "ru": "Intel® AMT устройств в этой сети нет", "zh-chs": "此網格中沒有英特爾®AMT設備", "xloc": [ - "default.handlebars->29->186" + "default.handlebars->29->188" ] }, { @@ -17283,7 +17293,7 @@ "ru": "Нет членов", "zh-chs": "沒有會員", "xloc": [ - "default.handlebars->29->1482" + "default.handlebars->29->1491" ] }, { @@ -17300,7 +17310,7 @@ "ru": "Запретить создание групп устройств", "zh-chs": "沒有新的設備組", "xloc": [ - "default.handlebars->29->1446" + "default.handlebars->29->1455" ] }, { @@ -17317,9 +17327,9 @@ "ru": "Политик нет", "zh-chs": "沒有政策", "xloc": [ - "default.handlebars->29->1133", - "default.handlebars->29->1161", - "default.handlebars->29->1164" + "default.handlebars->29->1140", + "default.handlebars->29->1168", + "default.handlebars->29->1171" ] }, { @@ -17339,10 +17349,10 @@ "default-mobile.handlebars->9->285", "default-mobile.handlebars->9->328", "default-mobile.handlebars->9->68", - "default.handlebars->29->1092", - "default.handlebars->29->1272", - "default.handlebars->29->575", - "default.handlebars->29->594" + "default.handlebars->29->1099", + "default.handlebars->29->1279", + "default.handlebars->29->577", + "default.handlebars->29->596" ] }, { @@ -17360,8 +17370,8 @@ "zh-chs": "沒有TLS安全性", "xloc": [ "default-mobile.handlebars->9->218", - "default.handlebars->29->235", - "default.handlebars->29->616" + "default.handlebars->29->237", + "default.handlebars->29->618" ] }, { @@ -17379,9 +17389,9 @@ "zh-chs": "沒有終端", "xloc": [ "default-mobile.handlebars->9->321", - "default.handlebars->29->1265", - "default.handlebars->29->562", - "default.handlebars->29->581" + "default.handlebars->29->1272", + "default.handlebars->29->564", + "default.handlebars->29->583" ] }, { @@ -17399,7 +17409,7 @@ "zh-chs": "沒有終端訪問", "xloc": [ "default-mobile.handlebars->9->300", - "default.handlebars->29->1228" + "default.handlebars->29->1235" ] }, { @@ -17416,7 +17426,7 @@ "ru": "Нет инструментов (MeshCmd/Router)", "zh-chs": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->29->1447" + "default.handlebars->29->1456" ] }, { @@ -17433,8 +17443,8 @@ "ru": "Нет общих групп устройств", "zh-chs": "沒有共同的設備組", "xloc": [ - "default.handlebars->29->1488", - "default.handlebars->29->1586" + "default.handlebars->29->1497", + "default.handlebars->29->1599" ] }, { @@ -17487,7 +17497,7 @@ "ru": "Ни одно устройство не включено ни в одну из групп, чтобы добавить группу нажмите \\\"Группы\\\" устройств.", "zh-chs": "任何組中均不包含任何設備,請單擊設備的“組”以添加到組中。", "xloc": [ - "default.handlebars->29->184" + "default.handlebars->29->186" ] }, { @@ -17504,7 +17514,7 @@ "ru": "Устройства не найдены.", "zh-chs": "找不到設備。", "xloc": [ - "default.handlebars->29->442" + "default.handlebars->29->444" ] }, { @@ -17521,8 +17531,8 @@ "ru": "Нет общих устройств", "zh-chs": "沒有共同的設備", "xloc": [ - "default.handlebars->29->1494", - "default.handlebars->29->1598" + "default.handlebars->29->1503", + "default.handlebars->29->1611" ] }, { @@ -17539,7 +17549,7 @@ "ru": "В группе нет устройств.", "zh-chs": "該設備組中沒有設備。", "xloc": [ - "default.handlebars->29->1315" + "default.handlebars->29->1322" ] }, { @@ -17557,7 +17567,7 @@ "zh-chs": "該組中沒有設備", "xloc": [ "default-mobile.handlebars->9->100", - "default.handlebars->29->188" + "default.handlebars->29->190" ] }, { @@ -17574,7 +17584,7 @@ "ru": "Нет устройств, соответствующих этому запросу.", "zh-chs": "沒有與此搜索匹配的設備。", "xloc": [ - "default.handlebars->29->185" + "default.handlebars->29->187" ] }, { @@ -17591,7 +17601,7 @@ "ru": "Не найдено устройств с тегом.", "zh-chs": "找不到帶有標籤的設備。", "xloc": [ - "default.handlebars->29->193" + "default.handlebars->29->195" ] }, { @@ -17608,7 +17618,7 @@ "ru": "Группы не найдены.", "zh-chs": "找不到群組。", "xloc": [ - "default.handlebars->29->1449" + "default.handlebars->29->1458" ] }, { @@ -17625,7 +17635,7 @@ "ru": "Информации об этом устройстве нет", "zh-chs": "沒有此設備的信息。", "xloc": [ - "default.handlebars->29->809" + "default.handlebars->29->811" ] }, { @@ -17642,7 +17652,7 @@ "ru": "Местоположение не найдено.", "zh-chs": "找不到位置。", "xloc": [ - "default.handlebars->29->444" + "default.handlebars->29->446" ] }, { @@ -17676,7 +17686,7 @@ "ru": "Других групп устройств такого же типа не существует.", "zh-chs": "沒有其他相同類型的設備組。", "xloc": [ - "default.handlebars->29->633" + "default.handlebars->29->635" ] }, { @@ -17710,7 +17720,7 @@ "ru": "Нет серверных прав", "zh-chs": "沒有服務器權限", "xloc": [ - "default.handlebars->29->1514" + "default.handlebars->29->1523" ] }, { @@ -17727,7 +17737,7 @@ "ru": "Нет членства в группах пользователей", "zh-chs": "沒有用戶組成員身份", "xloc": [ - "default.handlebars->29->1592" + "default.handlebars->29->1605" ] }, { @@ -17744,7 +17754,7 @@ "ru": "Пользователи не найдены.", "zh-chs": "未找到相應的用戶。", "xloc": [ - "default.handlebars->29->1373" + "default.handlebars->29->1380" ] }, { @@ -17758,7 +17768,7 @@ "ru": "Нет пользователей со специальными правами доступа к устройству", "zh-chs": "没有拥有特殊设备权限的用户", "xloc": [ - "default.handlebars->29->559" + "default.handlebars->29->561" ] }, { @@ -17819,27 +17829,27 @@ "default-mobile.handlebars->9->78", "default-mobile.handlebars->9->97", "default-mobile.handlebars->9->98", - "default.handlebars->29->1102", - "default.handlebars->29->1108", - "default.handlebars->29->1112", - "default.handlebars->29->1124", - "default.handlebars->29->1129", + "default.handlebars->29->1109", + "default.handlebars->29->1115", + "default.handlebars->29->1119", "default.handlebars->29->1131", - "default.handlebars->29->1306", - "default.handlebars->29->1325", - "default.handlebars->29->1468", - "default.handlebars->29->1470", - "default.handlebars->29->1533", - "default.handlebars->29->1537", - "default.handlebars->29->1549", - "default.handlebars->29->155", - "default.handlebars->29->171", - "default.handlebars->29->172", - "default.handlebars->29->449", - "default.handlebars->29->459", - "default.handlebars->29->460", - "default.handlebars->29->503", - "default.handlebars->29->516", + "default.handlebars->29->1136", + "default.handlebars->29->1138", + "default.handlebars->29->1313", + "default.handlebars->29->1332", + "default.handlebars->29->1477", + "default.handlebars->29->1479", + "default.handlebars->29->1543", + "default.handlebars->29->1547", + "default.handlebars->29->1559", + "default.handlebars->29->157", + "default.handlebars->29->173", + "default.handlebars->29->174", + "default.handlebars->29->451", + "default.handlebars->29->461", + "default.handlebars->29->462", + "default.handlebars->29->505", + "default.handlebars->29->518", "default.handlebars->29->63", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] @@ -17875,7 +17885,7 @@ "ru": "Норвежский", "zh-chs": "挪威", "xloc": [ - "default.handlebars->29->965" + "default.handlebars->29->972" ] }, { @@ -17892,7 +17902,7 @@ "ru": "Норвежский (Букмол)", "zh-chs": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->29->966" + "default.handlebars->29->973" ] }, { @@ -17909,7 +17919,7 @@ "ru": "Норвежский (Нюнорск)", "zh-chs": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->29->967" + "default.handlebars->29->974" ] }, { @@ -17927,8 +17937,8 @@ "zh-chs": "未激活(輸入)", "xloc": [ "default-mobile.handlebars->9->179", - "default.handlebars->29->465", - "default.handlebars->29->783" + "default.handlebars->29->467", + "default.handlebars->29->785" ] }, { @@ -17946,8 +17956,8 @@ "zh-chs": "未激活(預)", "xloc": [ "default-mobile.handlebars->9->178", - "default.handlebars->29->464", - "default.handlebars->29->782" + "default.handlebars->29->466", + "default.handlebars->29->784" ] }, { @@ -17964,8 +17974,8 @@ "ru": "Не подключен", "zh-chs": "未連接", "xloc": [ - "default.handlebars->29->1302", - "default.handlebars->29->1310" + "default.handlebars->29->1309", + "default.handlebars->29->1317" ] }, { @@ -17982,7 +17992,7 @@ "ru": "Неизвестный", "zh-chs": "未知", "xloc": [ - "default.handlebars->29->793" + "default.handlebars->29->795" ] }, { @@ -17999,7 +18009,7 @@ "ru": "Не задано", "zh-chs": "沒有設置", "xloc": [ - "default.handlebars->29->1519" + "default.handlebars->29->1528" ] }, { @@ -18016,7 +18026,7 @@ "ru": "не подтверждено", "zh-chs": "未經審核的", "xloc": [ - "default.handlebars->29->1568" + "default.handlebars->29->1581" ] }, { @@ -18033,12 +18043,12 @@ "ru": "Примечания", "zh-chs": "筆記", "xloc": [ - "default.handlebars->29->1139", - "default.handlebars->29->1556", - "default.handlebars->29->519", - "default.handlebars->29->571", - "default.handlebars->29->590", - "default.handlebars->29->597" + "default.handlebars->29->1146", + "default.handlebars->29->1567", + "default.handlebars->29->521", + "default.handlebars->29->573", + "default.handlebars->29->592", + "default.handlebars->29->599" ] }, { @@ -18072,9 +18082,9 @@ "ru": "Настройки уведомлений", "zh-chs": "通知設置", "xloc": [ - "default.handlebars->29->1053", - "default.handlebars->29->1301", - "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->8" + "default.handlebars->29->1060", + "default.handlebars->29->1308", + "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, { @@ -18091,7 +18101,7 @@ "ru": "Уведомления также должны быть включены в настройках учетной записи.", "zh-chs": "通知設置還必須在帳戶設置中啟用。", "xloc": [ - "default.handlebars->29->1297" + "default.handlebars->29->1304" ] }, { @@ -18108,7 +18118,7 @@ "ru": "Звук уведомления", "zh-chs": "通知聲音。", "xloc": [ - "default.handlebars->29->1048" + "default.handlebars->29->1055" ] }, { @@ -18125,7 +18135,7 @@ "ru": "Уведомления", "zh-chs": "通知事項", "xloc": [ - "default.handlebars->29->1130" + "default.handlebars->29->1137" ] }, { @@ -18142,7 +18152,7 @@ "ru": "Уведомить", "zh-chs": "通知", "xloc": [ - "default.handlebars->29->1558" + "default.handlebars->29->1571" ] }, { @@ -18159,9 +18169,9 @@ "ru": "Уведомить пользователя", "zh-chs": "通知使用者", "xloc": [ - "default.handlebars->29->1196", - "default.handlebars->29->1200", - "default.handlebars->29->1203" + "default.handlebars->29->1203", + "default.handlebars->29->1207", + "default.handlebars->29->1210" ] }, { @@ -18178,7 +18188,7 @@ "ru": "Уведомить {0}", "zh-chs": "通知{0}", "xloc": [ - "default.handlebars->29->1401" + "default.handlebars->29->1410" ] }, { @@ -18197,8 +18207,8 @@ "xloc": [ "default-mobile.handlebars->9->45", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->29->1095", - "default.handlebars->29->490", + "default.handlebars->29->1102", + "default.handlebars->29->492", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -18237,7 +18247,7 @@ "ru": "Окситанский", "zh-chs": "歐舒丹", "xloc": [ - "default.handlebars->29->968" + "default.handlebars->29->975" ] }, { @@ -18254,7 +18264,7 @@ "ru": "Произошло в {0}", "zh-chs": "發生在{0}", "xloc": [ - "default.handlebars->29->1617" + "default.handlebars->29->1630" ] }, { @@ -18271,7 +18281,7 @@ "ru": "Оффлайн пользователи", "zh-chs": "離線用戶", "xloc": [ - "default.handlebars->29->1370" + "default.handlebars->29->1377" ] }, { @@ -18289,7 +18299,7 @@ "zh-chs": "舊密碼:", "xloc": [ "default-mobile.handlebars->9->47", - "default.handlebars->29->1065" + "default.handlebars->29->1072" ] }, { @@ -18324,7 +18334,7 @@ "ru": "Онлайн пользователи", "zh-chs": "在線用戶", "xloc": [ - "default.handlebars->29->1369" + "default.handlebars->29->1376" ] }, { @@ -18342,8 +18352,8 @@ "zh-chs": "只能編輯小於200k的文件。", "xloc": [ "default-mobile.handlebars->9->256", - "default.handlebars->29->422", - "default.handlebars->29->730" + "default.handlebars->29->424", + "default.handlebars->29->732" ] }, { @@ -18378,7 +18388,7 @@ "ru": "Открыть страницу на устройстве", "zh-chs": "在設備上打開頁面", "xloc": [ - "default.handlebars->29->599" + "default.handlebars->29->601" ] }, { @@ -18395,7 +18405,7 @@ "ru": "Открыть терминал XTerm", "zh-chs": "打開XTerm終端", "xloc": [ - "default.handlebars->29->533" + "default.handlebars->29->535" ] }, { @@ -18446,11 +18456,11 @@ "ru": "Операционная система", "zh-chs": "操作系統", "xloc": [ - "default.handlebars->29->278", - "default.handlebars->29->307", - "default.handlebars->29->487", - "default.handlebars->29->651", - "default.handlebars->29->761" + "default.handlebars->29->280", + "default.handlebars->29->309", + "default.handlebars->29->489", + "default.handlebars->29->653", + "default.handlebars->29->763" ] }, { @@ -18468,10 +18478,10 @@ "zh-chs": "運作方式", "xloc": [ "default-mobile.handlebars->9->213", - "default.handlebars->29->1393", - "default.handlebars->29->1457", - "default.handlebars->29->382", - "default.handlebars->29->608" + "default.handlebars->29->1401", + "default.handlebars->29->1466", + "default.handlebars->29->384", + "default.handlebars->29->610" ] }, { @@ -18488,7 +18498,7 @@ "ru": "Организация", "zh-chs": "組織", "xloc": [ - "default.handlebars->29->268" + "default.handlebars->29->270" ] }, { @@ -18505,7 +18515,7 @@ "ru": "Ория", "zh-chs": "奧里亞", "xloc": [ - "default.handlebars->29->969" + "default.handlebars->29->976" ] }, { @@ -18522,7 +18532,7 @@ "ru": "Оромо", "zh-chs": "奧羅莫", "xloc": [ - "default.handlebars->29->970" + "default.handlebars->29->977" ] }, { @@ -18573,7 +18583,7 @@ "ru": "Устаревший", "zh-chs": "過時的", "xloc": [ - "default.handlebars->29->489" + "default.handlebars->29->491" ] }, { @@ -18590,7 +18600,7 @@ "ru": "Собственный процесс", "zh-chs": "自己的過程", "xloc": [ - "default.handlebars->29->692" + "default.handlebars->29->694" ] }, { @@ -18608,7 +18618,7 @@ "zh-chs": "PID", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", - "default.handlebars->29->688", + "default.handlebars->29->690", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -18626,7 +18636,7 @@ "ru": "Part Number", "zh-chs": "零件號", "xloc": [ - "default.handlebars->29->807" + "default.handlebars->29->809" ] }, { @@ -18643,7 +18653,7 @@ "ru": "Частично", "zh-chs": "部分的", "xloc": [ - "default.handlebars->29->1384" + "default.handlebars->29->1391" ] }, { @@ -18690,7 +18700,7 @@ "xloc": [ "default-mobile.handlebars->9->283", "default-mobile.handlebars->9->66", - "default.handlebars->29->1090" + "default.handlebars->29->1097" ] }, { @@ -18707,7 +18717,7 @@ "ru": "Частичные права", "zh-chs": "部分權利", "xloc": [ - "default.handlebars->29->1517" + "default.handlebars->29->1526" ] }, { @@ -18742,15 +18752,15 @@ "zh-chs": "密碼", "xloc": [ "default-mobile.handlebars->9->216", - "default.handlebars->29->1424", - "default.handlebars->29->1425", - "default.handlebars->29->1529", - "default.handlebars->29->1531", - "default.handlebars->29->1571", - "default.handlebars->29->1572", - "default.handlebars->29->233", - "default.handlebars->29->262", - "default.handlebars->29->614" + "default.handlebars->29->1433", + "default.handlebars->29->1434", + "default.handlebars->29->1539", + "default.handlebars->29->1541", + "default.handlebars->29->1584", + "default.handlebars->29->1585", + "default.handlebars->29->235", + "default.handlebars->29->264", + "default.handlebars->29->616" ] }, { @@ -18768,7 +18778,7 @@ "zh-chs": "密碼提示", "xloc": [ "login-mobile.handlebars->5->23", - "login.handlebars->5->23" + "login.handlebars->5->26" ] }, { @@ -18806,9 +18816,9 @@ "xloc": [ "login-mobile.handlebars->5->27", "login-mobile.handlebars->5->31", - "login.handlebars->5->27", - "login.handlebars->5->31", - "login.handlebars->5->38" + "login.handlebars->5->30", + "login.handlebars->5->34", + "login.handlebars->5->41" ] }, { @@ -18826,7 +18836,7 @@ "zh-chs": "要求更改密碼。", "xloc": [ "login-mobile.handlebars->5->17", - "login.handlebars->5->17" + "login.handlebars->5->18" ] }, { @@ -18843,7 +18853,7 @@ "ru": "Подсказка пароля", "zh-chs": "密碼提示", "xloc": [ - "default.handlebars->29->1573" + "default.handlebars->29->1586" ] }, { @@ -18861,7 +18871,7 @@ "zh-chs": "密碼提示:", "xloc": [ "default-mobile.handlebars->9->50", - "default.handlebars->29->1068" + "default.handlebars->29->1075" ] }, { @@ -18878,7 +18888,7 @@ "ru": "Пароль не совпадает", "zh-chs": "密碼不符合", "xloc": [ - "default.handlebars->29->1170" + "default.handlebars->29->1177" ] }, { @@ -18896,7 +18906,7 @@ "zh-chs": "密碼被拒絕,請使用其他密碼。", "xloc": [ "login-mobile.handlebars->5->9", - "login.handlebars->5->9" + "login.handlebars->5->10" ] }, { @@ -18913,8 +18923,8 @@ "ru": "Пароль*", "zh-chs": "密碼*", "xloc": [ - "default.handlebars->29->1168", - "default.handlebars->29->1169" + "default.handlebars->29->1175", + "default.handlebars->29->1176" ] }, { @@ -18934,8 +18944,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->9->42", "default-mobile.handlebars->9->43", - "default.handlebars->29->1060", - "default.handlebars->29->1061", + "default.handlebars->29->1067", + "default.handlebars->29->1068", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1", @@ -18966,9 +18976,9 @@ "default-mobile.handlebars->9->90", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->29->1347", - "default.handlebars->29->713", - "default.handlebars->29->735", + "default.handlebars->29->1354", + "default.handlebars->29->715", + "default.handlebars->29->737", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" @@ -19022,7 +19032,7 @@ "ru": "Произвести действие агента", "zh-chs": "執行代理動作", "xloc": [ - "default.handlebars->29->818" + "default.handlebars->29->820" ] }, { @@ -19039,7 +19049,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM) для группы \\\"{0}\\\",скачав инструмент MeshCMD и запустив его следующим образом:", "zh-chs": "通過下載MeshCMD工具並像下面這樣運行它,以執行Intel AMT管理員控制模式(ACM)激活以將 “{0}” 組:", "xloc": [ - "default.handlebars->29->240" + "default.handlebars->29->242" ] }, { @@ -19056,8 +19066,8 @@ "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).", "zh-chs": "執行英特爾AMT管理員控制模式(ACM)激活。", "xloc": [ - "default.handlebars->29->1149", - "default.handlebars->29->221" + "default.handlebars->29->1156", + "default.handlebars->29->223" ] }, { @@ -19074,7 +19084,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM) для группы \\\"{0}\\\",скачав инструмент MeshCMD и запустив его следующим образом:", "zh-chs": "通過下載MeshCMD工具並像下面這樣運行,來執行Intel AMT客戶端控制模式(CCM)激活以將\\“{0}\\”分組:", "xloc": [ - "default.handlebars->29->238" + "default.handlebars->29->240" ] }, { @@ -19091,8 +19101,8 @@ "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).", "zh-chs": "執行英特爾AMT客戶端控制模式(CCM)激活。", "xloc": [ - "default.handlebars->29->1147", - "default.handlebars->29->219" + "default.handlebars->29->1154", + "default.handlebars->29->221" ] }, { @@ -19109,7 +19119,7 @@ "ru": "Управление питанием устройства", "zh-chs": "在設備上執行電源操作", "xloc": [ - "default.handlebars->29->518", + "default.handlebars->29->520", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -19130,8 +19140,8 @@ "zh-chs": "權限", "xloc": [ "default-mobile.handlebars->9->330", - "default.handlebars->29->1275", - "default.handlebars->29->1368" + "default.handlebars->29->1282", + "default.handlebars->29->1375" ] }, { @@ -19148,7 +19158,27 @@ "ru": "Персидский/Иран", "zh-chs": "波斯/伊朗", "xloc": [ - "default.handlebars->29->971" + "default.handlebars->29->978" + ] + }, + { + "en": "Phone Notifications", + "xloc": [ + "default.handlebars->29->142", + "default.handlebars->29->831", + "default.handlebars->29->833" + ] + }, + { + "en": "Phone Number", + "xloc": [ + "default.handlebars->29->1534" + ] + }, + { + "en": "Phone number:", + "xloc": [ + "default.handlebars->29->832" ] }, { @@ -19179,7 +19209,7 @@ "ru": "Поместить узел сюда", "zh-chs": "將節點放在這裡", "xloc": [ - "default.handlebars->29->437" + "default.handlebars->29->439" ] }, { @@ -19230,7 +19260,7 @@ "ru": "Внимание, понижение версии не рекомендуется. Делайте это только в том случае, если недавнее обновление что-то сломало.", "zh-chs": "請注意,不建議降級。請僅在最近的升級損壞了某些情況時才這樣做。", "xloc": [ - "default.handlebars->29->167" + "default.handlebars->29->169" ] }, { @@ -19266,7 +19296,7 @@ "zh-chs": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->9->38", - "default.handlebars->29->1055" + "default.handlebars->29->1062" ] }, { @@ -19283,8 +19313,8 @@ "ru": "Действие плагина", "zh-chs": "插件動作", "xloc": [ - "default.handlebars->29->166", - "default.handlebars->29->1693" + "default.handlebars->29->168", + "default.handlebars->29->1706" ] }, { @@ -19301,7 +19331,7 @@ "ru": "Ошибка плагина", "zh-chs": "插件錯誤", "xloc": [ - "default.handlebars->29->168" + "default.handlebars->29->170" ] }, { @@ -19318,7 +19348,7 @@ "ru": "PluginHandler не смог сообщение о событии:", "zh-chs": "PluginHandler無法事件消息:", "xloc": [ - "default.handlebars->29->156" + "default.handlebars->29->158" ] }, { @@ -19406,7 +19436,7 @@ "zh-chs": "政策", "xloc": [ "default-mobile.handlebars->9->65", - "default.handlebars->29->1089" + "default.handlebars->29->1096" ] }, { @@ -19423,7 +19453,7 @@ "ru": "Польский", "zh-chs": "拋光", "xloc": [ - "default.handlebars->29->972" + "default.handlebars->29->979" ] }, { @@ -19440,7 +19470,7 @@ "ru": "Португальский", "zh-chs": "葡萄牙語", "xloc": [ - "default.handlebars->29->973" + "default.handlebars->29->980" ] }, { @@ -19457,7 +19487,7 @@ "ru": "Португальский (Бразилия)", "zh-chs": "葡萄牙語(巴西)", "xloc": [ - "default.handlebars->29->974" + "default.handlebars->29->981" ] }, { @@ -19509,7 +19539,7 @@ "ru": "Состояния питания", "zh-chs": "電力國", "xloc": [ - "default.handlebars->29->1308", + "default.handlebars->29->1315", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -19530,7 +19560,7 @@ "default-mobile.handlebars->9->108", "default-mobile.handlebars->9->212", "default.handlebars->29->6", - "default.handlebars->29->605" + "default.handlebars->29->607" ] }, { @@ -19547,7 +19577,7 @@ "ru": "Выключить устройства", "zh-chs": "關閉設備電源", "xloc": [ - "default.handlebars->29->386" + "default.handlebars->29->388" ] }, { @@ -19567,7 +19597,7 @@ "default-mobile.handlebars->9->103", "default-mobile.handlebars->9->110", "default.handlebars->29->1", - "default.handlebars->29->346" + "default.handlebars->29->348" ] }, { @@ -19586,7 +19616,7 @@ "xloc": [ "default-mobile.handlebars->9->109", "default-mobile.handlebars->9->116", - "default.handlebars->29->358", + "default.handlebars->29->360", "default.handlebars->29->7" ] }, @@ -19640,7 +19670,7 @@ "zh-chs": "過程控制", "xloc": [ "default-mobile.handlebars->9->235", - "default.handlebars->29->700" + "default.handlebars->29->702" ] }, { @@ -19675,9 +19705,9 @@ "ru": "Запрос согласия пользователя", "zh-chs": "提示用戶同意", "xloc": [ - "default.handlebars->29->1197", - "default.handlebars->29->1201", - "default.handlebars->29->1204" + "default.handlebars->29->1204", + "default.handlebars->29->1208", + "default.handlebars->29->1211" ] }, { @@ -19725,7 +19755,7 @@ "ru": "Предоставление государства", "zh-chs": "供應國", "xloc": [ - "default.handlebars->29->787" + "default.handlebars->29->789" ] }, { @@ -19743,7 +19773,7 @@ "zh-chs": "公開連結", "xloc": [ "default-mobile.handlebars->9->77", - "default.handlebars->29->1332" + "default.handlebars->29->1339" ] }, { @@ -19760,7 +19790,7 @@ "ru": "Пенджаби", "zh-chs": "旁遮普語", "xloc": [ - "default.handlebars->29->975" + "default.handlebars->29->982" ] }, { @@ -19777,7 +19807,7 @@ "ru": "Пенджаби (Индия)", "zh-chs": "旁遮普(印度)", "xloc": [ - "default.handlebars->29->976" + "default.handlebars->29->983" ] }, { @@ -19794,7 +19824,7 @@ "ru": "Пенджаби (Пакистан)", "zh-chs": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->29->977" + "default.handlebars->29->984" ] }, { @@ -19811,7 +19841,7 @@ "ru": "Putty", "zh-chs": "油灰", "xloc": [ - "default.handlebars->29->538" + "default.handlebars->29->540" ] }, { @@ -19846,7 +19876,7 @@ "ru": "Кечуа", "zh-chs": "蓋丘亞族", "xloc": [ - "default.handlebars->29->978" + "default.handlebars->29->985" ] }, { @@ -19899,7 +19929,7 @@ "ru": "RDP", "zh-chs": "RDP", "xloc": [ - "default.handlebars->29->536" + "default.handlebars->29->538" ] }, { @@ -19916,7 +19946,7 @@ "ru": "Подключение RDP", "zh-chs": "RDP連接", "xloc": [ - "default.handlebars->29->419" + "default.handlebars->29->421" ] }, { @@ -19933,7 +19963,7 @@ "ru": "Порт RDP:", "zh-chs": "RDP遠程連接端口:", "xloc": [ - "default.handlebars->29->418" + "default.handlebars->29->420" ] }, { @@ -20000,7 +20030,7 @@ "ru": "RSS", "zh-chs": "的RSS", "xloc": [ - "default.handlebars->29->1663" + "default.handlebars->29->1676" ] }, { @@ -20017,7 +20047,7 @@ "ru": "Случайный пароль.", "zh-chs": "隨機化密碼。", "xloc": [ - "default.handlebars->29->1426" + "default.handlebars->29->1435" ] }, { @@ -20051,7 +20081,7 @@ "ru": "Реактивировать Intel® AMT", "zh-chs": "重新激活英特爾®AMT", "xloc": [ - "default.handlebars->29->1172" + "default.handlebars->29->1179" ] }, { @@ -20068,7 +20098,7 @@ "ru": "Области", "zh-chs": "境界", "xloc": [ - "default.handlebars->29->1434" + "default.handlebars->29->1443" ] }, { @@ -20087,8 +20117,8 @@ "xloc": [ "default-mobile.handlebars->9->249", "default-mobile.handlebars->9->83", - "default.handlebars->29->1339", - "default.handlebars->29->723" + "default.handlebars->29->1346", + "default.handlebars->29->725" ] }, { @@ -20128,7 +20158,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->DeskToolsRefreshButton", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->29->434", + "default.handlebars->29->436", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->DeskToolsRefreshButton", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p40->3->3" @@ -20166,8 +20196,8 @@ "zh-chs": "中繼", "xloc": [ "default-mobile.handlebars->9->127", - "default.handlebars->29->180", - "default.handlebars->29->373" + "default.handlebars->29->182", + "default.handlebars->29->375" ] }, { @@ -20184,7 +20214,7 @@ "ru": "Число ретрансляций", "zh-chs": "中繼計數", "xloc": [ - "default.handlebars->29->1645" + "default.handlebars->29->1658" ] }, { @@ -20201,7 +20231,7 @@ "ru": "Ошибки ретранслятора", "zh-chs": "中繼錯誤", "xloc": [ - "default.handlebars->29->1638" + "default.handlebars->29->1651" ] }, { @@ -20218,8 +20248,8 @@ "ru": "Сессии ретранслятора", "zh-chs": "接力會議", "xloc": [ - "default.handlebars->29->1644", - "default.handlebars->29->1657" + "default.handlebars->29->1657", + "default.handlebars->29->1670" ] }, { @@ -20319,7 +20349,7 @@ "ru": "Удаленный буфер обмена", "zh-chs": "遠程剪貼板", "xloc": [ - "default.handlebars->29->683" + "default.handlebars->29->685" ] }, { @@ -20338,8 +20368,8 @@ "xloc": [ "default-mobile.handlebars->9->297", "default-mobile.handlebars->9->315", - "default.handlebars->29->1224", - "default.handlebars->29->1258" + "default.handlebars->29->1231", + "default.handlebars->29->1265" ] }, { @@ -20357,8 +20387,8 @@ "zh-chs": "遠程桌面設置", "xloc": [ "default-mobile.handlebars->9->232", - "default.handlebars->29->212", - "default.handlebars->29->675" + "default.handlebars->29->214", + "default.handlebars->29->677" ] }, { @@ -20375,7 +20405,7 @@ "ru": "Ввод с удаленной клавиатуры", "zh-chs": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->29->681" + "default.handlebars->29->683" ] }, { @@ -20425,8 +20455,8 @@ "xloc": [ "default-mobile.handlebars->9->298", "default-mobile.handlebars->9->320", - "default.handlebars->29->1225", - "default.handlebars->29->1263" + "default.handlebars->29->1232", + "default.handlebars->29->1270" ] }, { @@ -20443,7 +20473,7 @@ "ru": "Удаленный буфер обмена действителен в течении 60 секунд.", "zh-chs": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->29->682" + "default.handlebars->29->684" ] }, { @@ -20511,8 +20541,8 @@ "en": "Remove Device Group Permissions", "nl": "Apparaatgroepmachtigingen verwijderen", "xloc": [ - "default.handlebars->29->1498", - "default.handlebars->29->1612" + "default.handlebars->29->1507", + "default.handlebars->29->1625" ] }, { @@ -20520,8 +20550,8 @@ "en": "Remove Device Permissions", "nl": "Apparaatmachtigingen verwijderen", "xloc": [ - "default.handlebars->29->1496", - "default.handlebars->29->1599" + "default.handlebars->29->1505", + "default.handlebars->29->1612" ] }, { @@ -20543,7 +20573,7 @@ "en": "Remove User Group Membership", "nl": "Lidmaatschap van gebruikersgroep verwijderen", "xloc": [ - "default.handlebars->29->1608" + "default.handlebars->29->1621" ] }, { @@ -20551,8 +20581,8 @@ "en": "Remove User Group Permissions", "nl": "Gebruikersgroepmachtigingen verwijderen", "xloc": [ - "default.handlebars->29->1280", - "default.handlebars->29->1604" + "default.handlebars->29->1287", + "default.handlebars->29->1617" ] }, { @@ -20560,7 +20590,7 @@ "en": "Remove User Membership", "nl": "Gebruikerslidmaatschap verwijderen", "xloc": [ - "default.handlebars->29->1506" + "default.handlebars->29->1515" ] }, { @@ -20568,8 +20598,8 @@ "en": "Remove User Permissions", "nl": "Gebruikersmachtigingen verwijderen", "xloc": [ - "default.handlebars->29->1278", - "default.handlebars->29->1601" + "default.handlebars->29->1285", + "default.handlebars->29->1614" ] }, { @@ -20586,7 +20616,7 @@ "ru": "Удалить все двухфакторные аутентификации.", "zh-chs": "刪除所有第二因素驗證。", "xloc": [ - "default.handlebars->29->1576" + "default.handlebars->29->1589" ] }, { @@ -20603,7 +20633,7 @@ "ru": "Удалить все прошлые события для этого userid.", "zh-chs": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->29->1428" + "default.handlebars->29->1437" ] }, { @@ -20620,7 +20650,7 @@ "ru": "Удалить устройство при отключении", "zh-chs": "斷開連接後移除設備", "xloc": [ - "default.handlebars->29->1205" + "default.handlebars->29->1212" ] }, { @@ -20637,7 +20667,13 @@ "ru": "Удалить местоположение узла", "zh-chs": "刪除節點位置", "xloc": [ - "default.handlebars->29->426" + "default.handlebars->29->428" + ] + }, + { + "en": "Remove phone number", + "xloc": [ + "default.handlebars->29->830" ] }, { @@ -20654,7 +20690,7 @@ "ru": "Удалить это устройство", "zh-chs": "刪除此設備", "xloc": [ - "default.handlebars->29->525" + "default.handlebars->29->527" ] }, { @@ -20668,7 +20704,7 @@ "ru": "Удалить этого пользователя", "zh-chs": "删除该用户", "xloc": [ - "default.handlebars->29->1560" + "default.handlebars->29->1573" ] }, { @@ -20685,7 +20721,7 @@ "ru": "Удалить членство пользователя в группе", "zh-chs": "刪除用戶組成員身份", "xloc": [ - "default.handlebars->29->1590" + "default.handlebars->29->1603" ] }, { @@ -20693,7 +20729,7 @@ "en": "Remove user group rights to this device", "nl": "Gebruikersrechten voor dit apparaat verwijderen", "xloc": [ - "default.handlebars->29->1492" + "default.handlebars->29->1501" ] }, { @@ -20710,8 +20746,8 @@ "ru": "Удалить права группы пользователей для этой группы устройств", "zh-chs": "刪除該設備組的用戶組權限", "xloc": [ - "default.handlebars->29->1486", - "default.handlebars->29->555" + "default.handlebars->29->1495", + "default.handlebars->29->557" ] }, { @@ -20728,11 +20764,11 @@ "ru": "Удалить права пользователя для этой группы устройств", "zh-chs": "刪除此設備組的用戶權限", "xloc": [ - "default.handlebars->29->1156", - "default.handlebars->29->1480", - "default.handlebars->29->1584", - "default.handlebars->29->1596", - "default.handlebars->29->556" + "default.handlebars->29->1163", + "default.handlebars->29->1489", + "default.handlebars->29->1597", + "default.handlebars->29->1609", + "default.handlebars->29->558" ] }, { @@ -20753,9 +20789,9 @@ "default-mobile.handlebars->9->87", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->29->1343", - "default.handlebars->29->420", - "default.handlebars->29->727", + "default.handlebars->29->1350", + "default.handlebars->29->422", + "default.handlebars->29->729", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->filesContextMenu->cxfilerename->0" @@ -20775,7 +20811,7 @@ "ru": "Требования: ", "zh-chs": "要求:", "xloc": [ - "default.handlebars->29->1069" + "default.handlebars->29->1076" ] }, { @@ -20793,8 +20829,8 @@ "zh-chs": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->51", - "default.handlebars->29->1431", - "default.handlebars->29->1574" + "default.handlebars->29->1440", + "default.handlebars->29->1587" ] }, { @@ -20811,7 +20847,7 @@ "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере", "zh-chs": "需要瀏覽器中的Microsoft ClickOnce支持", "xloc": [ - "default.handlebars->29->535" + "default.handlebars->29->537" ] }, { @@ -20828,8 +20864,8 @@ "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере.", "zh-chs": "在瀏覽器中需要Microsoft ClickOnce支持。", "xloc": [ - "default.handlebars->29->537", - "default.handlebars->29->539" + "default.handlebars->29->539", + "default.handlebars->29->541" ] }, { @@ -20855,7 +20891,7 @@ "zh-chs": "重啟", "xloc": [ "default-mobile.handlebars->9->211", - "default.handlebars->29->604", + "default.handlebars->29->606", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -20927,7 +20963,7 @@ "ru": "Отправить в перезагрузку", "zh-chs": "重置設備", "xloc": [ - "default.handlebars->29->385" + "default.handlebars->29->387" ] }, { @@ -20961,7 +20997,7 @@ "ru": "Перезапуск", "zh-chs": "重新開始", "xloc": [ - "default.handlebars->29->698", + "default.handlebars->29->700", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -20979,7 +21015,7 @@ "ru": "Восстановить сервер", "zh-chs": "還原伺服器", "xloc": [ - "default.handlebars->29->1096" + "default.handlebars->29->1103" ] }, { @@ -21013,7 +21049,7 @@ "ru": "Восстановить сервер из резервной копии, это удалит существующие данные сервера . Продолжайте дальше только если знаете, что делаете.", "zh-chs": "使用備份還原服務器,這將刪除現有服務器數據。僅當您知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->29->1093" + "default.handlebars->29->1100" ] }, { @@ -21030,7 +21066,7 @@ "ru": "Ограничения", "zh-chs": "限制條件", "xloc": [ - "default.handlebars->29->1518" + "default.handlebars->29->1527" ] }, { @@ -21047,7 +21083,7 @@ "ru": "Ретороманский", "zh-chs": "修羅羅馬式", "xloc": [ - "default.handlebars->29->979" + "default.handlebars->29->986" ] }, { @@ -21064,7 +21100,7 @@ "ru": "Румынский", "zh-chs": "羅馬尼亞語", "xloc": [ - "default.handlebars->29->980" + "default.handlebars->29->987" ] }, { @@ -21081,7 +21117,7 @@ "ru": "Румынский (Молдавия)", "zh-chs": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->29->981" + "default.handlebars->29->988" ] }, { @@ -21100,8 +21136,8 @@ "xloc": [ "default-mobile.handlebars->9->243", "default-mobile.handlebars->9->69", - "default.handlebars->29->1316", - "default.handlebars->29->717" + "default.handlebars->29->1323", + "default.handlebars->29->719" ] }, { @@ -21118,8 +21154,8 @@ "ru": "Корневой сертификат", "zh-chs": "根證書", "xloc": [ - "default.handlebars->29->258", - "default.handlebars->29->265" + "default.handlebars->29->260", + "default.handlebars->29->267" ] }, { @@ -21136,8 +21172,8 @@ "ru": "Файл корневого сертификата", "zh-chs": "根證書文件", "xloc": [ - "default.handlebars->29->260", - "default.handlebars->29->267" + "default.handlebars->29->262", + "default.handlebars->29->269" ] }, { @@ -21206,7 +21242,7 @@ "ru": "Router", "zh-chs": "路由器", "xloc": [ - "default.handlebars->29->199" + "default.handlebars->29->201" ] }, { @@ -21223,7 +21259,7 @@ "ru": "Русский", "zh-chs": "俄語", "xloc": [ - "default.handlebars->29->982" + "default.handlebars->29->989" ] }, { @@ -21240,7 +21276,21 @@ "ru": "Русский (Молдавия)", "zh-chs": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->29->983" + "default.handlebars->29->990" + ] + }, + { + "en": "SMS", + "xloc": [ + "default.handlebars->29->1564", + "default.handlebars->29->1569", + "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3" + ] + }, + { + "en": "SMS sent.", + "xloc": [ + "login.handlebars->5->4" ] }, { @@ -21257,7 +21307,7 @@ "ru": "Такое же как имя устройства", "zh-chs": "與設備名稱相同", "xloc": [ - "default.handlebars->29->230" + "default.handlebars->29->232" ] }, { @@ -21274,15 +21324,15 @@ "ru": "Саамский", "zh-chs": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->29->984" + "default.handlebars->29->991" ] }, { "en": "Sample IP range values", "nl": "Voorbeeld IP bereikwaarden", "xloc": [ - "default.handlebars->29->150", - "default.handlebars->29->154" + "default.handlebars->29->152", + "default.handlebars->29->156" ] }, { @@ -21313,7 +21363,7 @@ "ru": "Санго", "zh-chs": "三鄉", "xloc": [ - "default.handlebars->29->985" + "default.handlebars->29->992" ] }, { @@ -21330,7 +21380,7 @@ "ru": "Санскритский", "zh-chs": "梵文", "xloc": [ - "default.handlebars->29->986" + "default.handlebars->29->993" ] }, { @@ -21347,7 +21397,7 @@ "ru": "Сардинский", "zh-chs": "撒丁島", "xloc": [ - "default.handlebars->29->987" + "default.handlebars->29->994" ] }, { @@ -21381,7 +21431,7 @@ "ru": "Сохранить расположение узла", "zh-chs": "保存節點位置", "xloc": [ - "default.handlebars->29->427" + "default.handlebars->29->429" ] }, { @@ -21433,7 +21483,7 @@ "ru": "Сканировать", "zh-chs": "掃瞄", "xloc": [ - "default.handlebars->29->245" + "default.handlebars->29->247" ] }, { @@ -21450,7 +21500,7 @@ "ru": "Сканировать сеть", "zh-chs": "掃描網絡", "xloc": [ - "default.handlebars->29->218" + "default.handlebars->29->220" ] }, { @@ -21467,14 +21517,14 @@ "ru": "Сканировать на наличие Intel® AMT устройств", "zh-chs": "掃描英特爾®AMT設備", "xloc": [ - "default.handlebars->29->246" + "default.handlebars->29->248" ] }, { "en": "Scan returned no results.", "nl": "Scan leverde geen resultaten op.", "xloc": [ - "default.handlebars->29->153" + "default.handlebars->29->155" ] }, { @@ -21491,7 +21541,7 @@ "ru": "Сканирование...", "zh-chs": "掃描...", "xloc": [ - "default.handlebars->29->247" + "default.handlebars->29->249" ] }, { @@ -21508,7 +21558,7 @@ "ru": "Поиск", "zh-chs": "搜索", "xloc": [ - "default.handlebars->29->440", + "default.handlebars->29->442", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -21561,7 +21611,8 @@ "zh-chs": "安全登錄", "xloc": [ "login-mobile.handlebars->5->21", - "login.handlebars->5->21" + "login.handlebars->5->22", + "login.handlebars->5->24" ] }, { @@ -21578,7 +21629,7 @@ "ru": "Защищено с помощью TLS", "zh-chs": "使用TLS保護", "xloc": [ - "default.handlebars->29->790" + "default.handlebars->29->792" ] }, { @@ -21596,10 +21647,10 @@ "zh-chs": "安全", "xloc": [ "default-mobile.handlebars->9->217", - "default.handlebars->29->1554", - "default.handlebars->29->234", - "default.handlebars->29->615", - "default.handlebars->29->789" + "default.handlebars->29->1565", + "default.handlebars->29->236", + "default.handlebars->29->617", + "default.handlebars->29->791" ] }, { @@ -21616,7 +21667,7 @@ "ru": "Ключ безопасности", "zh-chs": "安全密鑰", "xloc": [ - "default.handlebars->29->1552" + "default.handlebars->29->1562" ] }, { @@ -21650,12 +21701,12 @@ "ru": "Выбрать все", "zh-chs": "全選", "xloc": [ - "default.handlebars->29->1335", - "default.handlebars->29->1391", - "default.handlebars->29->1455", - "default.handlebars->29->378", - "default.handlebars->29->719", + "default.handlebars->29->1342", + "default.handlebars->29->1399", + "default.handlebars->29->1464", + "default.handlebars->29->380", "default.handlebars->29->721", + "default.handlebars->29->723", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -21678,11 +21729,11 @@ "ru": "Очистить все", "zh-chs": "選擇無", "xloc": [ - "default.handlebars->29->1334", - "default.handlebars->29->1390", - "default.handlebars->29->1454", - "default.handlebars->29->377", - "default.handlebars->29->720", + "default.handlebars->29->1341", + "default.handlebars->29->1398", + "default.handlebars->29->1463", + "default.handlebars->29->379", + "default.handlebars->29->722", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -21700,7 +21751,7 @@ "ru": "Выберите новую группу для выбранных устройств", "zh-chs": "為所選設備選擇一個新組", "xloc": [ - "default.handlebars->29->629" + "default.handlebars->29->631" ] }, { @@ -21717,7 +21768,7 @@ "ru": "Выберите новую группу для этого устройства", "zh-chs": "選擇此設備的新組", "xloc": [ - "default.handlebars->29->628" + "default.handlebars->29->630" ] }, { @@ -21734,7 +21785,7 @@ "ru": "Выберите узел для размещения", "zh-chs": "選擇要放置的節點", "xloc": [ - "default.handlebars->29->443" + "default.handlebars->29->445" ] }, { @@ -21751,7 +21802,7 @@ "ru": "Выберите действие для осуществления на всех выбранных устройствах. Действия будут выполнены только при наличии соответствующих прав.", "zh-chs": "選擇要在所有選定設備上執行的操作。僅在擁有適當權限的情況下才能執行操作。", "xloc": [ - "default.handlebars->29->381" + "default.handlebars->29->383" ] }, { @@ -21759,8 +21810,8 @@ "en": "Select an operation to perform on all selected users.", "nl": "Selecteer een bewerking die u op alle geselecteerde gebruikers wilt uitvoeren.", "xloc": [ - "default.handlebars->29->1392", - "default.handlebars->29->1456" + "default.handlebars->29->1400", + "default.handlebars->29->1465" ] }, { @@ -21778,7 +21829,7 @@ "zh-chs": "選擇要在此設備上執行的操作。", "xloc": [ "default-mobile.handlebars->9->208", - "default.handlebars->29->601" + "default.handlebars->29->603" ] }, { @@ -21814,7 +21865,7 @@ "zh-chs": "僅自我事件", "xloc": [ "default-mobile.handlebars->9->325", - "default.handlebars->29->1269" + "default.handlebars->29->1276" ] }, { @@ -21850,8 +21901,8 @@ "ru": "Отправить MQTT сообщение", "zh-chs": "發送MQTT消息", "xloc": [ - "default.handlebars->29->379", - "default.handlebars->29->606" + "default.handlebars->29->381", + "default.handlebars->29->608" ] }, { @@ -21868,7 +21919,19 @@ "ru": "Отправить MQTT сообщение", "zh-chs": "發送MQTT消息", "xloc": [ - "default.handlebars->29->621" + "default.handlebars->29->623" + ] + }, + { + "en": "Send SMS", + "xloc": [ + "default.handlebars->29->1409" + ] + }, + { + "en": "Send a SMS message to this user", + "xloc": [ + "default.handlebars->29->1570" ] }, { @@ -21885,7 +21948,7 @@ "ru": "Отправить уведомление всем пользователям этой группы.", "zh-chs": "向該組中的所有用戶發送通知。", "xloc": [ - "default.handlebars->29->1477" + "default.handlebars->29->1486" ] }, { @@ -21902,7 +21965,7 @@ "ru": "Отправить текстовое уведомление этому пользователю.", "zh-chs": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->29->1402" + "default.handlebars->29->1411" ] }, { @@ -21916,7 +21979,7 @@ "ru": "Отправить письмо пользователю", "zh-chs": "发送电子邮件给用户", "xloc": [ - "default.handlebars->29->1387" + "default.handlebars->29->1394" ] }, { @@ -21933,7 +21996,7 @@ "ru": "Отправить ссылку для установки", "zh-chs": "發送安裝鏈接", "xloc": [ - "default.handlebars->29->279" + "default.handlebars->29->281" ] }, { @@ -21950,7 +22013,7 @@ "ru": "Отправить приглашение по email.", "zh-chs": "發送邀請電子郵件。", "xloc": [ - "default.handlebars->29->1430" + "default.handlebars->29->1439" ] }, { @@ -21985,7 +22048,13 @@ "zh-chs": "將令牌發送到註冊的電子郵件地址?", "xloc": [ "login-mobile.handlebars->5->22", - "login.handlebars->5->22" + "login.handlebars->5->23" + ] + }, + { + "en": "Send token to registed phone number?", + "xloc": [ + "login.handlebars->5->25" ] }, { @@ -22002,7 +22071,7 @@ "ru": "Отправить уведомление пользователю", "zh-chs": "發送用戶通知", "xloc": [ - "default.handlebars->29->1559" + "default.handlebars->29->1572" ] }, { @@ -22019,7 +22088,7 @@ "ru": "Сербский", "zh-chs": "塞爾維亞", "xloc": [ - "default.handlebars->29->990" + "default.handlebars->29->997" ] }, { @@ -22036,7 +22105,7 @@ "ru": "Серийный номер", "zh-chs": "序列號", "xloc": [ - "default.handlebars->29->801" + "default.handlebars->29->803" ] }, { @@ -22053,7 +22122,7 @@ "ru": "Резервное копирование сервера", "zh-chs": "服務器備份", "xloc": [ - "default.handlebars->29->1440" + "default.handlebars->29->1449" ] }, { @@ -22070,7 +22139,7 @@ "ru": "Сертификат сервера", "zh-chs": "服務器證書", "xloc": [ - "default.handlebars->29->1673" + "default.handlebars->29->1686" ] }, { @@ -22087,7 +22156,7 @@ "ru": "База данных сервера", "zh-chs": "服務器數據庫", "xloc": [ - "default.handlebars->29->1674" + "default.handlebars->29->1687" ] }, { @@ -22106,11 +22175,11 @@ "xloc": [ "default-mobile.handlebars->9->304", "default-mobile.handlebars->9->317", - "default.handlebars->29->1232", - "default.handlebars->29->1260", - "default.handlebars->29->1437", - "default.handlebars->29->569", - "default.handlebars->29->588" + "default.handlebars->29->1239", + "default.handlebars->29->1267", + "default.handlebars->29->1446", + "default.handlebars->29->571", + "default.handlebars->29->590" ] }, { @@ -22127,8 +22196,8 @@ "ru": "Разрешения сервера", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->29->1379", - "default.handlebars->29->1448" + "default.handlebars->29->1386", + "default.handlebars->29->1457" ] }, { @@ -22145,7 +22214,7 @@ "ru": "Квота сервера", "zh-chs": "服務器配額", "xloc": [ - "default.handlebars->29->1526" + "default.handlebars->29->1536" ] }, { @@ -22162,7 +22231,7 @@ "ru": "Восстановление сервера", "zh-chs": "服務器還原", "xloc": [ - "default.handlebars->29->1441" + "default.handlebars->29->1450" ] }, { @@ -22179,7 +22248,7 @@ "ru": "Права", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->29->1525" + "default.handlebars->29->1535" ] }, { @@ -22196,7 +22265,7 @@ "ru": "Состояние сервера", "zh-chs": "服務器狀態", "xloc": [ - "default.handlebars->29->1624" + "default.handlebars->29->1637" ] }, { @@ -22230,7 +22299,7 @@ "ru": "Трассировка сервера", "zh-chs": "服務器跟踪", "xloc": [ - "default.handlebars->29->1684" + "default.handlebars->29->1697" ] }, { @@ -22247,7 +22316,7 @@ "ru": "Обновление сервера", "zh-chs": "服務器更新", "xloc": [ - "default.handlebars->29->1442" + "default.handlebars->29->1451" ] }, { @@ -22369,7 +22438,7 @@ "ru": "ServerStats.csv", "zh-chs": "ServerStats.csv", "xloc": [ - "default.handlebars->29->1665" + "default.handlebars->29->1678" ] }, { @@ -22386,7 +22455,7 @@ "ru": "Детали службы", "zh-chs": "服務詳情", "xloc": [ - "default.handlebars->29->699" + "default.handlebars->29->701" ] }, { @@ -22473,7 +22542,7 @@ "ru": "Файл с настройками", "zh-chs": "設定文件", "xloc": [ - "default.handlebars->29->326" + "default.handlebars->29->328" ] }, { @@ -22507,7 +22576,7 @@ "ru": "Установить CIRA", "zh-chs": "設置CIRA", "xloc": [ - "default.handlebars->29->253" + "default.handlebars->29->255" ] }, { @@ -22524,7 +22593,7 @@ "ru": "Метод установки", "zh-chs": "設定方法", "xloc": [ - "default.handlebars->29->251" + "default.handlebars->29->253" ] }, { @@ -22543,9 +22612,9 @@ "xloc": [ "default-mobile.handlebars->9->3", "default.handlebars->29->10", - "default.handlebars->29->202", - "default.handlebars->29->205", - "default.handlebars->29->211", + "default.handlebars->29->204", + "default.handlebars->29->207", + "default.handlebars->29->213", "xterm.handlebars->9->3" ] }, @@ -22580,7 +22649,7 @@ "ru": "Общий процесс", "zh-chs": "共享過程", "xloc": [ - "default.handlebars->29->693" + "default.handlebars->29->695" ] }, { @@ -22690,7 +22759,7 @@ "zh-chs": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->9->307", - "default.handlebars->29->1235" + "default.handlebars->29->1242" ] }, { @@ -22707,7 +22776,7 @@ "ru": "Показывать панель-уведомление", "zh-chs": "顯示連接工具欄", "xloc": [ - "default.handlebars->29->1198" + "default.handlebars->29->1205" ] }, { @@ -22724,7 +22793,7 @@ "ru": "Показать информацию о расположении устройства", "zh-chs": "顯示設備位置信息", "xloc": [ - "default.handlebars->29->529" + "default.handlebars->29->531" ] }, { @@ -22741,7 +22810,7 @@ "ru": "Показать информацию о сетевом интерфейсе устройства", "zh-chs": "顯示設備網絡接口信息", "xloc": [ - "default.handlebars->29->527" + "default.handlebars->29->529" ] }, { @@ -22792,8 +22861,8 @@ "ru": "Простой режим управления администратора (ACM)", "zh-chs": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->29->1136", - "default.handlebars->29->1159" + "default.handlebars->29->1143", + "default.handlebars->29->1166" ] }, { @@ -22810,9 +22879,9 @@ "ru": "Простой режим управления клиента (CCM)", "zh-chs": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->29->1134", - "default.handlebars->29->1162", - "default.handlebars->29->1166" + "default.handlebars->29->1141", + "default.handlebars->29->1169", + "default.handlebars->29->1173" ] }, { @@ -22829,7 +22898,7 @@ "ru": "Синдхи", "zh-chs": "信地", "xloc": [ - "default.handlebars->29->988" + "default.handlebars->29->995" ] }, { @@ -22846,7 +22915,7 @@ "ru": "Сингальский", "zh-chs": "僧伽羅語", "xloc": [ - "default.handlebars->29->989" + "default.handlebars->29->996" ] }, { @@ -22880,7 +22949,7 @@ "ru": "Размер: 100%", "zh-chs": "尺寸:100%", "xloc": [ - "default.handlebars->29->747" + "default.handlebars->29->749" ] }, { @@ -22897,7 +22966,7 @@ "ru": "Размер: 125%", "zh-chs": "尺寸:125%", "xloc": [ - "default.handlebars->29->748" + "default.handlebars->29->750" ] }, { @@ -22914,7 +22983,7 @@ "ru": "Размер: 150%", "zh-chs": "尺寸:150%", "xloc": [ - "default.handlebars->29->749" + "default.handlebars->29->751" ] }, { @@ -22931,7 +23000,7 @@ "ru": "Размер: 200%", "zh-chs": "尺寸:200%", "xloc": [ - "default.handlebars->29->750" + "default.handlebars->29->752" ] }, { @@ -22955,7 +23024,7 @@ "default.handlebars->29->2", "default.handlebars->29->3", "default.handlebars->29->4", - "default.handlebars->29->603" + "default.handlebars->29->605" ] }, { @@ -22972,7 +23041,7 @@ "ru": "Отправить в сон", "zh-chs": "睡眠裝置", "xloc": [ - "default.handlebars->29->384" + "default.handlebars->29->386" ] }, { @@ -22991,8 +23060,8 @@ "xloc": [ "default-mobile.handlebars->9->111", "default-mobile.handlebars->9->112", - "default.handlebars->29->348", - "default.handlebars->29->350" + "default.handlebars->29->350", + "default.handlebars->29->352" ] }, { @@ -23009,7 +23078,7 @@ "ru": "Словацкий", "zh-chs": "斯洛伐克文", "xloc": [ - "default.handlebars->29->991" + "default.handlebars->29->998" ] }, { @@ -23026,7 +23095,7 @@ "ru": "Словенский", "zh-chs": "斯洛文尼亞文", "xloc": [ - "default.handlebars->29->992" + "default.handlebars->29->999" ] }, { @@ -23079,7 +23148,7 @@ "ru": "Малая фокусировка", "zh-chs": "小焦點", "xloc": [ - "default.handlebars->29->678" + "default.handlebars->29->680" ] }, { @@ -23096,7 +23165,7 @@ "ru": "Програмное отключение агента", "zh-chs": "軟斷開劑", "xloc": [ - "default.handlebars->29->824" + "default.handlebars->29->826" ] }, { @@ -23114,7 +23183,7 @@ "zh-chs": "軟關", "xloc": [ "default-mobile.handlebars->9->115", - "default.handlebars->29->356" + "default.handlebars->29->358" ] }, { @@ -23148,7 +23217,7 @@ "ru": "Сомани", "zh-chs": "索馬尼", "xloc": [ - "default.handlebars->29->993" + "default.handlebars->29->1000" ] }, { @@ -23165,7 +23234,7 @@ "ru": "Сорбский", "zh-chs": "索比亞人", "xloc": [ - "default.handlebars->29->994" + "default.handlebars->29->1001" ] }, { @@ -23295,7 +23364,7 @@ "ru": "Испанский", "zh-chs": "西班牙文", "xloc": [ - "default.handlebars->29->995" + "default.handlebars->29->1002" ] }, { @@ -23312,7 +23381,7 @@ "ru": "Испанский (Аргентина)", "zh-chs": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->29->996" + "default.handlebars->29->1003" ] }, { @@ -23329,7 +23398,7 @@ "ru": "Испанский (Боливия)", "zh-chs": "西班牙語(玻利維亞)", "xloc": [ - "default.handlebars->29->997" + "default.handlebars->29->1004" ] }, { @@ -23346,7 +23415,7 @@ "ru": "Испанский (Чили)", "zh-chs": "西班牙語(智利)", "xloc": [ - "default.handlebars->29->998" + "default.handlebars->29->1005" ] }, { @@ -23363,7 +23432,7 @@ "ru": "Испанский (Колумбия)", "zh-chs": "西班牙語(哥倫比亞)", "xloc": [ - "default.handlebars->29->999" + "default.handlebars->29->1006" ] }, { @@ -23380,7 +23449,7 @@ "ru": "Испанский (Коста-Рика)", "zh-chs": "西班牙語(哥斯達黎加)", "xloc": [ - "default.handlebars->29->1000" + "default.handlebars->29->1007" ] }, { @@ -23397,7 +23466,7 @@ "ru": "Испанский (Доминиканская Республика)", "zh-chs": "西班牙語(多米尼加共和國)", "xloc": [ - "default.handlebars->29->1001" + "default.handlebars->29->1008" ] }, { @@ -23414,7 +23483,7 @@ "ru": "Испанский (Эквадор)", "zh-chs": "西班牙語(厄瓜多爾)", "xloc": [ - "default.handlebars->29->1002" + "default.handlebars->29->1009" ] }, { @@ -23431,7 +23500,7 @@ "ru": "Испанский (Сальвадор)", "zh-chs": "西班牙語(薩爾瓦多)", "xloc": [ - "default.handlebars->29->1003" + "default.handlebars->29->1010" ] }, { @@ -23448,7 +23517,7 @@ "ru": "Испанский (Гватемала)", "zh-chs": "西班牙語(危地馬拉)", "xloc": [ - "default.handlebars->29->1004" + "default.handlebars->29->1011" ] }, { @@ -23465,7 +23534,7 @@ "ru": "Испанский (Гондурас)", "zh-chs": "西班牙語(洪都拉斯)", "xloc": [ - "default.handlebars->29->1005" + "default.handlebars->29->1012" ] }, { @@ -23482,7 +23551,7 @@ "ru": "Испанский (Мексика)", "zh-chs": "西班牙語(墨西哥)", "xloc": [ - "default.handlebars->29->1006" + "default.handlebars->29->1013" ] }, { @@ -23499,7 +23568,7 @@ "ru": "Испанский (Никарагуа)", "zh-chs": "西班牙語(尼加拉瓜)", "xloc": [ - "default.handlebars->29->1007" + "default.handlebars->29->1014" ] }, { @@ -23516,7 +23585,7 @@ "ru": "Испанский (Панама)", "zh-chs": "西班牙語(巴拿馬)", "xloc": [ - "default.handlebars->29->1008" + "default.handlebars->29->1015" ] }, { @@ -23533,7 +23602,7 @@ "ru": "Испанский (Парагвай)", "zh-chs": "西班牙語(巴拉圭)", "xloc": [ - "default.handlebars->29->1009" + "default.handlebars->29->1016" ] }, { @@ -23550,7 +23619,7 @@ "ru": "Испанский (Перу)", "zh-chs": "西班牙語(秘魯)", "xloc": [ - "default.handlebars->29->1010" + "default.handlebars->29->1017" ] }, { @@ -23567,7 +23636,7 @@ "ru": "Испанский (Пуэрто-Рико)", "zh-chs": "西班牙語(波多黎各)", "xloc": [ - "default.handlebars->29->1011" + "default.handlebars->29->1018" ] }, { @@ -23584,7 +23653,7 @@ "ru": "Испанский (Испания)", "zh-chs": "西班牙語(西班牙)", "xloc": [ - "default.handlebars->29->1012" + "default.handlebars->29->1019" ] }, { @@ -23601,7 +23670,7 @@ "ru": "Испанский (Уругвай)", "zh-chs": "西班牙語(烏拉圭)", "xloc": [ - "default.handlebars->29->1013" + "default.handlebars->29->1020" ] }, { @@ -23618,7 +23687,7 @@ "ru": "Испанский (Венесуэла)", "zh-chs": "西班牙語(委內瑞拉)", "xloc": [ - "default.handlebars->29->1014" + "default.handlebars->29->1021" ] }, { @@ -23661,7 +23730,7 @@ "ru": "Старт", "zh-chs": "開始", "xloc": [ - "default.handlebars->29->696" + "default.handlebars->29->698" ] }, { @@ -23678,7 +23747,7 @@ "ru": "Состояние", "zh-chs": "州", "xloc": [ - "default.handlebars->29->687", + "default.handlebars->29->689", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -23713,7 +23782,7 @@ "ru": "Статус", "zh-chs": "狀態", "xloc": [ - "default.handlebars->29->1567", + "default.handlebars->29->1580", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -23731,7 +23800,7 @@ "ru": "Стоп", "zh-chs": "停止", "xloc": [ - "default.handlebars->29->697" + "default.handlebars->29->699" ] }, { @@ -23745,7 +23814,7 @@ "ru": "Остановить процесс", "zh-chs": "停止程序", "xloc": [ - "default.handlebars->29->684" + "default.handlebars->29->686" ] }, { @@ -23763,7 +23832,7 @@ "zh-chs": "停止進程#{0} \\“ {1} \\”?", "xloc": [ "default-mobile.handlebars->9->236", - "default.handlebars->29->701" + "default.handlebars->29->703" ] }, { @@ -23797,7 +23866,7 @@ "ru": "Превышен лимит места для хранения", "zh-chs": "儲存空間超過", "xloc": [ - "default.handlebars->29->1320" + "default.handlebars->29->1327" ] }, { @@ -23814,7 +23883,7 @@ "ru": "Надежный", "zh-chs": "強大", "xloc": [ - "default.handlebars->29->1086" + "default.handlebars->29->1093" ] }, { @@ -23833,8 +23902,8 @@ "xloc": [ "login-mobile.handlebars->5->24", "login-mobile.handlebars->5->28", - "login.handlebars->5->24", - "login.handlebars->5->28" + "login.handlebars->5->27", + "login.handlebars->5->31" ] }, { @@ -23919,7 +23988,7 @@ "ru": "Суту", "zh-chs": "蘇圖", "xloc": [ - "default.handlebars->29->1015" + "default.handlebars->29->1022" ] }, { @@ -23936,7 +24005,7 @@ "ru": "Суахили", "zh-chs": "斯瓦希里語", "xloc": [ - "default.handlebars->29->1016" + "default.handlebars->29->1023" ] }, { @@ -23953,7 +24022,7 @@ "ru": "Шведский", "zh-chs": "瑞典", "xloc": [ - "default.handlebars->29->1017" + "default.handlebars->29->1024" ] }, { @@ -23970,7 +24039,7 @@ "ru": "Шведский (Финляндия)", "zh-chs": "瑞典語(芬蘭)", "xloc": [ - "default.handlebars->29->1018" + "default.handlebars->29->1025" ] }, { @@ -23987,7 +24056,7 @@ "ru": "Шведский (Швеция)", "zh-chs": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->29->1019" + "default.handlebars->29->1026" ] }, { @@ -24004,7 +24073,7 @@ "ru": "Синхронизировать имя устройства на сервере с именем хоста", "zh-chs": "將服務器設備名稱同步到主機名", "xloc": [ - "default.handlebars->29->1206" + "default.handlebars->29->1213" ] }, { @@ -24080,7 +24149,7 @@ "zh-chs": "TLS", "xloc": [ "default-mobile.handlebars->9->186", - "default.handlebars->29->475" + "default.handlebars->29->477" ] }, { @@ -24097,7 +24166,7 @@ "ru": "TLS не настроен", "zh-chs": "未設置TLS", "xloc": [ - "default.handlebars->29->791" + "default.handlebars->29->793" ] }, { @@ -24115,8 +24184,8 @@ "zh-chs": "需要TLS安全", "xloc": [ "default-mobile.handlebars->9->219", - "default.handlebars->29->236", - "default.handlebars->29->617" + "default.handlebars->29->238", + "default.handlebars->29->619" ] }, { @@ -24150,7 +24219,7 @@ "ru": "Тег1, Тег2, Тег3", "zh-chs": "標籤1,標籤2,標籤3", "xloc": [ - "default.handlebars->29->669" + "default.handlebars->29->671" ] }, { @@ -24170,7 +24239,7 @@ "default-mobile.handlebars->9->200", "default-mobile.handlebars->9->201", "default-mobile.handlebars->9->228", - "default.handlebars->29->668", + "default.handlebars->29->670", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -24188,7 +24257,7 @@ "ru": "Тамильский", "zh-chs": "泰米爾語", "xloc": [ - "default.handlebars->29->1020" + "default.handlebars->29->1027" ] }, { @@ -24205,7 +24274,7 @@ "ru": "Татарский", "zh-chs": "塔塔爾族", "xloc": [ - "default.handlebars->29->1021" + "default.handlebars->29->1028" ] }, { @@ -24222,7 +24291,7 @@ "ru": "Телугу", "zh-chs": "泰盧加", "xloc": [ - "default.handlebars->29->1022" + "default.handlebars->29->1029" ] }, { @@ -24239,8 +24308,8 @@ "ru": "Терминал", "zh-chs": "終奌站", "xloc": [ - "default.handlebars->29->1199", - "default.handlebars->29->430", + "default.handlebars->29->1206", + "default.handlebars->29->432", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal" ] @@ -24276,9 +24345,9 @@ "ru": "Терминал уведомление", "zh-chs": "終端通知", "xloc": [ - "default.handlebars->29->1119", - "default.handlebars->29->1544", - "default.handlebars->29->498" + "default.handlebars->29->1126", + "default.handlebars->29->1554", + "default.handlebars->29->500" ] }, { @@ -24295,9 +24364,9 @@ "ru": "Запрос терминала", "zh-chs": "終端提示", "xloc": [ - "default.handlebars->29->1118", - "default.handlebars->29->1543", - "default.handlebars->29->497" + "default.handlebars->29->1125", + "default.handlebars->29->1553", + "default.handlebars->29->499" ] }, { @@ -24353,7 +24422,7 @@ "ru": "Тайский", "zh-chs": "泰國", "xloc": [ - "default.handlebars->29->1023" + "default.handlebars->29->1030" ] }, { @@ -24388,7 +24457,7 @@ "ru": "Имя группы устройств, к которой принадлежит этот компьютер", "zh-chs": "該計算機所屬的設備組的名稱", "xloc": [ - "default.handlebars->29->454" + "default.handlebars->29->456" ] }, { @@ -24405,7 +24474,7 @@ "ru": "Имя группы устройств, к которой принадлежит этот компьютер.", "zh-chs": "該計算機所屬的設備組的名稱。", "xloc": [ - "default.handlebars->29->452" + "default.handlebars->29->454" ] }, { @@ -24422,8 +24491,8 @@ "ru": "Имя этого компьютера, указанное в операционной системе", "zh-chs": "在操作系統中設置的此計算機的名稱", "xloc": [ - "default.handlebars->29->455", - "default.handlebars->29->457" + "default.handlebars->29->457", + "default.handlebars->29->459" ] }, { @@ -24440,7 +24509,7 @@ "ru": "На данный момент уведомлений нет", "zh-chs": "目前沒有任何通知", "xloc": [ - "default.handlebars->29->1616" + "default.handlebars->29->1629" ] }, { @@ -24474,7 +24543,7 @@ "ru": "Эти настройки можно использовать для подключения MQTT для этого устройства.", "zh-chs": "這些設置可用於連接該設備的MQTT。", "xloc": [ - "default.handlebars->29->164" + "default.handlebars->29->166" ] }, { @@ -24492,7 +24561,7 @@ "zh-chs": "該帳戶無權創建新的設備組。", "xloc": [ "default-mobile.handlebars->9->54", - "default.handlebars->29->1072" + "default.handlebars->29->1079" ] }, { @@ -24526,7 +24595,7 @@ "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.", "zh-chs": "這不是安全的策略,因為代理將執行激活。", "xloc": [ - "default.handlebars->29->1184" + "default.handlebars->29->1191" ] }, { @@ -24561,7 +24630,7 @@ "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.", "zh-chs": "該策略不會影響採用ACM模式的英特爾®AMT的設備。", "xloc": [ - "default.handlebars->29->1183" + "default.handlebars->29->1190" ] }, { @@ -24629,7 +24698,7 @@ "ru": "Это добавит запись в журнал событий данного устройства.", "zh-chs": "這會將條目添加到該設備的事件日誌中。", "xloc": [ - "default.handlebars->29->596" + "default.handlebars->29->598" ] }, { @@ -24646,7 +24715,7 @@ "ru": "Это не приведет к удалению устройств с сервера, но они больше не смогут подключаться к серверу. Весь удаленный доступ к устройствам будет потерян. Устройства должны быть подключены, чтобы эта команда работала.", "zh-chs": "這不會從服務器上刪除設備,但是設備將不再能夠連接到服務器。對設備的所有遠程訪問都將丟失。必須連接設備,此命令才能起作用。", "xloc": [ - "default.handlebars->29->624" + "default.handlebars->29->626" ] }, { @@ -24663,7 +24732,7 @@ "ru": "Это не приведет к удалению этого устройства с сервера, но оно больше не сможет подключаться к серверу. Весь удаленный доступ к устройству будет потерян. Для работы этой команды устройство должно быть подключено.", "zh-chs": "這不會將該設備從服務器上刪除,但是該設備將不再能夠連接到服務器。對設備的所有遠程訪問都將丟失。必須連接設備,此命令才能起作用。", "xloc": [ - "default.handlebars->29->625" + "default.handlebars->29->627" ] }, { @@ -24680,7 +24749,7 @@ "ru": "Тигровый", "zh-chs": "蒂格雷", "xloc": [ - "default.handlebars->29->1024" + "default.handlebars->29->1031" ] }, { @@ -24714,7 +24783,7 @@ "ru": "Чтобы добавить компьютер в группу \\\"{0}\\\", выполните следующую команду. Потребуются права root.", "zh-chs": "要將計算機添加到{0},請運行以下命令。需要根憑證。", "xloc": [ - "default.handlebars->29->328" + "default.handlebars->29->330" ] }, { @@ -24731,7 +24800,7 @@ "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующие файлы со скриптами и используйте MeshCommander, чтобы запустить скрипт для настройки компьютеров.", "zh-chs": "要將新的英特爾®AMT設備添加到具有CIRA的設備組“ {0} \\”中,請下載以下腳本文件,並使用 MeshCommander 來運行腳本來配置計算機。", "xloc": [ - "default.handlebars->29->252" + "default.handlebars->29->254" ] }, { @@ -24748,7 +24817,7 @@ "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующий сертификат в качестве доверенного в Intel AMT", "zh-chs": "要將新的英特爾®AMT設備添加到具有CIRA的設備組“ {0} \\”,請在英特爾AMT中將以下證書作為受信任的根加載", "xloc": [ - "default.handlebars->29->255" + "default.handlebars->29->257" ] }, { @@ -24765,7 +24834,7 @@ "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующий сертификат в качестве доверенного в Intel AMT, выполните аутентификацию с использованием сертификата клиента со следующим общим именем и подключитесь к серверу.", "zh-chs": "要將新的英特爾®AMT設備添加到具有CIRA的設備組“ {0} \\”中,請將以下證書作為受信任的根加載到英特爾AMT中,使用具有以下通用名稱的客戶端證書進行身份驗證並連接到以下服務器。", "xloc": [ - "default.handlebars->29->264" + "default.handlebars->29->266" ] }, { @@ -24782,7 +24851,7 @@ "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Agent и установите его для управления этим компьютером. В этот агент встроена информация о текущем сервере и группе устройств.", "zh-chs": "要將新計算機添加到設備組\\“ {0} \\”,請下載網狀代理並安裝該計算機以進行管理。該代理中嵌入了服務器和設備組信息。", "xloc": [ - "default.handlebars->29->317" + "default.handlebars->29->319" ] }, { @@ -24799,7 +24868,7 @@ "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Agent и установите его для управления этим компьютером. В этот установщик агента встроена информация о текущем сервере и группе устройств.", "zh-chs": "要將新計算機添加到設備組\\“ {0} \\”,請下載網狀代理並安裝該計算機以進行管理。該代理安裝程序中嵌入了服務器和設備組信息。", "xloc": [ - "default.handlebars->29->330" + "default.handlebars->29->332" ] }, { @@ -24816,7 +24885,7 @@ "ru": "Чтобы удалить эту учетную запись, введите пароль учетной записи в оба поля и нажмите ОК.", "zh-chs": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->29->1059" + "default.handlebars->29->1066" ] }, { @@ -24895,7 +24964,7 @@ "ru": "Для удаления Mesh Agent скачайте файл ниже, запустите его и нажмите \\\"удалить\\\".", "zh-chs": "要刪除網格代理,請下載以下文件,運行並單擊\\“卸載\\”。", "xloc": [ - "default.handlebars->29->334" + "default.handlebars->29->336" ] }, { @@ -24912,7 +24981,7 @@ "ru": "Для удаления Mesh Agent выполните следующую команду. Потребуются учетные данные root.", "zh-chs": "要刪除網格代理,請運行以下命令。需要根憑證。", "xloc": [ - "default.handlebars->29->341" + "default.handlebars->29->343" ] }, { @@ -25161,7 +25230,7 @@ "ru": "Тема", "zh-chs": "話題", "xloc": [ - "default.handlebars->29->619" + "default.handlebars->29->621" ] }, { @@ -25212,7 +25281,7 @@ "ru": "Router используется для подключения к различным портам устройства через этот сервер", "zh-chs": "用於通過此服務器連接到設備的流量路由器", "xloc": [ - "default.handlebars->29->531" + "default.handlebars->29->533" ] }, { @@ -25246,7 +25315,7 @@ "ru": "Тсонга", "zh-chs": "特松加", "xloc": [ - "default.handlebars->29->1025" + "default.handlebars->29->1032" ] }, { @@ -25263,7 +25332,7 @@ "ru": "Тсвана", "zh-chs": "茨瓦納", "xloc": [ - "default.handlebars->29->1026" + "default.handlebars->29->1033" ] }, { @@ -25280,7 +25349,7 @@ "ru": "Турецкий", "zh-chs": "土耳其", "xloc": [ - "default.handlebars->29->1027" + "default.handlebars->29->1034" ] }, { @@ -25297,7 +25366,7 @@ "ru": "Туркменский", "zh-chs": "土庫曼人", "xloc": [ - "default.handlebars->29->1028" + "default.handlebars->29->1035" ] }, { @@ -25333,11 +25402,11 @@ "xloc": [ "default-mobile.handlebars->9->280", "default-mobile.handlebars->9->60", - "default.handlebars->29->1079", - "default.handlebars->29->1109", - "default.handlebars->29->1160", - "default.handlebars->29->1163", - "default.handlebars->29->694", + "default.handlebars->29->1086", + "default.handlebars->29->1116", + "default.handlebars->29->1167", + "default.handlebars->29->1170", + "default.handlebars->29->696", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, @@ -25355,7 +25424,7 @@ "ru": "Введите имя ключа, выберите поле OTP и нажмите кнопку на YubiKey™.", "zh-chs": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->29->837" + "default.handlebars->29->844" ] }, { @@ -25372,7 +25441,7 @@ "ru": "Введите имя ключа для добавления.", "zh-chs": "輸入要添加的密鑰的名稱。", "xloc": [ - "default.handlebars->29->834" + "default.handlebars->29->841" ] }, { @@ -25389,7 +25458,7 @@ "ru": "Терминал UTF8", "zh-chs": "UTF8終端", "xloc": [ - "default.handlebars->29->705" + "default.handlebars->29->707" ] }, { @@ -25406,7 +25475,7 @@ "ru": "Украинский", "zh-chs": "烏克蘭", "xloc": [ - "default.handlebars->29->1029" + "default.handlebars->29->1036" ] }, { @@ -25423,8 +25492,8 @@ "ru": "Невозможно получить доступ к устройству, пока адрес email не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес email.", "zh-chs": "在驗證電子郵件地址之前,無法訪問設備。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "xloc": [ - "default.handlebars->29->1074", - "default.handlebars->29->446" + "default.handlebars->29->1081", + "default.handlebars->29->448" ] }, { @@ -25477,8 +25546,8 @@ "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите на вкладку \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "zh-chs": "在啟用兩因素身份驗證之前,無法訪問設備。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->29->1076", - "default.handlebars->29->448" + "default.handlebars->29->1083", + "default.handlebars->29->450" ] }, { @@ -25514,7 +25583,7 @@ "zh-chs": "無法創建帳戶。", "xloc": [ "login-mobile.handlebars->5->4", - "login.handlebars->5->4" + "login.handlebars->5->5" ] }, { @@ -25549,7 +25618,7 @@ "ru": "Невозможно отсканировать этот диапазон адресов.", "zh-chs": "無法掃描該地址範圍。", "xloc": [ - "default.handlebars->29->149" + "default.handlebars->29->151" ] }, { @@ -25567,7 +25636,7 @@ "zh-chs": "無法發送電子郵件。", "xloc": [ "login-mobile.handlebars->5->13", - "login.handlebars->5->13" + "login.handlebars->5->14" ] }, { @@ -25585,9 +25654,9 @@ "zh-chs": "卸載", "xloc": [ "default-mobile.handlebars->9->327", - "default.handlebars->29->1271", - "default.handlebars->29->574", - "default.handlebars->29->593" + "default.handlebars->29->1278", + "default.handlebars->29->576", + "default.handlebars->29->595" ] }, { @@ -25605,9 +25674,9 @@ "zh-chs": "卸載代理", "xloc": [ "default-mobile.handlebars->9->309", - "default.handlebars->29->1237", - "default.handlebars->29->380", - "default.handlebars->29->607" + "default.handlebars->29->1244", + "default.handlebars->29->382", + "default.handlebars->29->609" ] }, { @@ -25624,7 +25693,7 @@ "ru": "Удалить агент", "zh-chs": "卸載代理", "xloc": [ - "default.handlebars->29->627" + "default.handlebars->29->629" ] }, { @@ -25646,12 +25715,12 @@ "default-mobile.handlebars->9->174", "default-mobile.handlebars->9->175", "default.handlebars->29->13", - "default.handlebars->29->1607", - "default.handlebars->29->376", + "default.handlebars->29->1620", + "default.handlebars->29->378", "default.handlebars->29->41", "default.handlebars->29->42", - "default.handlebars->29->781", - "default.handlebars->29->788", + "default.handlebars->29->783", + "default.handlebars->29->790", "default.handlebars->29->91", "default.handlebars->29->92", "default.handlebars->29->93", @@ -25674,7 +25743,7 @@ "zh-chs": "未知#{0}", "xloc": [ "default-mobile.handlebars->9->274", - "default.handlebars->29->1104" + "default.handlebars->29->1111" ] }, { @@ -25691,7 +25760,7 @@ "ru": "Неизвестное действие", "zh-chs": "未知動作", "xloc": [ - "default.handlebars->29->1630" + "default.handlebars->29->1643" ] }, { @@ -25708,8 +25777,8 @@ "ru": "Неизвестное устройство", "zh-chs": "未知設備", "xloc": [ - "default.handlebars->29->1491", - "default.handlebars->29->1595" + "default.handlebars->29->1500", + "default.handlebars->29->1608" ] }, { @@ -25726,9 +25795,9 @@ "ru": "Неизвестная группа устройств", "zh-chs": "未知設備組", "xloc": [ - "default.handlebars->29->1485", - "default.handlebars->29->1583", - "default.handlebars->29->1634" + "default.handlebars->29->1494", + "default.handlebars->29->1596", + "default.handlebars->29->1647" ] }, { @@ -25745,7 +25814,7 @@ "ru": "Неизвестная группа", "zh-chs": "未知群組", "xloc": [ - "default.handlebars->29->1626" + "default.handlebars->29->1639" ] }, { @@ -25763,7 +25832,7 @@ "zh-chs": "未知狀態", "xloc": [ "default-mobile.handlebars->9->181", - "default.handlebars->29->467" + "default.handlebars->29->469" ] }, { @@ -25780,7 +25849,7 @@ "ru": "Неизвестная группа пользователей", "zh-chs": "未知用戶組", "xloc": [ - "default.handlebars->29->1589" + "default.handlebars->29->1602" ] }, { @@ -25798,7 +25867,7 @@ "zh-chs": "未知版本和狀態", "xloc": [ "default-mobile.handlebars->9->183", - "default.handlebars->29->469" + "default.handlebars->29->471" ] }, { @@ -25815,9 +25884,9 @@ "ru": "Неограниченно", "zh-chs": "無限", "xloc": [ - "default.handlebars->29->162", - "default.handlebars->29->290", - "default.handlebars->29->304" + "default.handlebars->29->164", + "default.handlebars->29->292", + "default.handlebars->29->306" ] }, { @@ -25825,7 +25894,7 @@ "en": "Unlock account", "nl": "Account ontgrendelen", "xloc": [ - "default.handlebars->29->1395" + "default.handlebars->29->1403" ] }, { @@ -25863,7 +25932,7 @@ "ru": "Актуально", "zh-chs": "最新", "xloc": [ - "default.handlebars->29->1691" + "default.handlebars->29->1704" ] }, { @@ -25903,11 +25972,11 @@ "default-mobile.handlebars->9->254", "default-mobile.handlebars->9->272", "default-mobile.handlebars->9->88", - "default.handlebars->29->1344", - "default.handlebars->29->1352", - "default.handlebars->29->728", - "default.handlebars->29->751", - "default.handlebars->29->754", + "default.handlebars->29->1351", + "default.handlebars->29->1359", + "default.handlebars->29->730", + "default.handlebars->29->753", + "default.handlebars->29->756", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -25925,7 +25994,7 @@ "ru": "Загрузить ядро Mesh Agent", "zh-chs": "上傳網格代理核心", "xloc": [ - "default.handlebars->29->826" + "default.handlebars->29->828" ] }, { @@ -25942,7 +26011,7 @@ "ru": "Загрузить файл ядра", "zh-chs": "上載核心文件", "xloc": [ - "default.handlebars->29->823" + "default.handlebars->29->825" ] }, { @@ -25959,7 +26028,7 @@ "ru": "Загрузить ядро по умолчанию с сервера ", "zh-chs": "上載默認服務器核心", "xloc": [ - "default.handlebars->29->820" + "default.handlebars->29->822" ] }, { @@ -25976,7 +26045,7 @@ "ru": "Загрузить ядро восстановления", "zh-chs": "上傳恢復核心", "xloc": [ - "default.handlebars->29->822" + "default.handlebars->29->824" ] }, { @@ -25993,8 +26062,8 @@ "ru": "Загрузка перезапишет 1 файл. Продолжить?", "zh-chs": "上傳將覆蓋1個文件。繼續?", "xloc": [ - "default.handlebars->29->1353", - "default.handlebars->29->752" + "default.handlebars->29->1360", + "default.handlebars->29->754" ] }, { @@ -26011,8 +26080,8 @@ "ru": "Загрузка перезапишет {0} файлов. Продолжить?", "zh-chs": "上傳將覆蓋{0}個文件。繼續?", "xloc": [ - "default.handlebars->29->1354", - "default.handlebars->29->753" + "default.handlebars->29->1361", + "default.handlebars->29->755" ] }, { @@ -26043,7 +26112,7 @@ "ru": "Верхний Сорбский", "zh-chs": "上索布族", "xloc": [ - "default.handlebars->29->1030" + "default.handlebars->29->1037" ] }, { @@ -26060,7 +26129,7 @@ "ru": "Урду", "zh-chs": "烏爾都語", "xloc": [ - "default.handlebars->29->1031" + "default.handlebars->29->1038" ] }, { @@ -26112,8 +26181,8 @@ "ru": "Использовано", "zh-chs": "用過的", "xloc": [ - "default.handlebars->29->1620", - "default.handlebars->29->1622" + "default.handlebars->29->1633", + "default.handlebars->29->1635" ] }, { @@ -26131,11 +26200,11 @@ "zh-chs": "用戶", "xloc": [ "default-mobile.handlebars->9->329", - "default.handlebars->29->1157", - "default.handlebars->29->1380", - "default.handlebars->29->1481", - "default.handlebars->29->190", - "default.handlebars->29->558" + "default.handlebars->29->1164", + "default.handlebars->29->1387", + "default.handlebars->29->1490", + "default.handlebars->29->192", + "default.handlebars->29->560" ] }, { @@ -26152,7 +26221,7 @@ "ru": "Пользователь + Файлы", "zh-chs": "用戶+文件", "xloc": [ - "default.handlebars->29->1381" + "default.handlebars->29->1388" ] }, { @@ -26169,10 +26238,10 @@ "ru": "Импорт учетной записи пользователя", "zh-chs": "用戶帳戶導入", "xloc": [ - "default.handlebars->29->1404", - "default.handlebars->29->1405", - "default.handlebars->29->1407", - "default.handlebars->29->1409" + "default.handlebars->29->1413", + "default.handlebars->29->1414", + "default.handlebars->29->1416", + "default.handlebars->29->1418" ] }, { @@ -26189,7 +26258,7 @@ "ru": "Учетные записи пользователей", "zh-chs": "用戶帳號", "xloc": [ - "default.handlebars->29->1639" + "default.handlebars->29->1652" ] }, { @@ -26207,8 +26276,8 @@ "zh-chs": "用戶授權", "xloc": [ "default-mobile.handlebars->9->282", - "default.handlebars->29->1155", - "default.handlebars->29->554" + "default.handlebars->29->1162", + "default.handlebars->29->556" ] }, { @@ -26225,9 +26294,9 @@ "ru": "Согласие пользователя", "zh-chs": "用戶同意", "xloc": [ - "default.handlebars->29->1125", - "default.handlebars->29->1550", - "default.handlebars->29->504" + "default.handlebars->29->1132", + "default.handlebars->29->1560", + "default.handlebars->29->506" ] }, { @@ -26244,12 +26313,12 @@ "ru": "Группа пользователей", "zh-chs": "用戶組", "xloc": [ - "default.handlebars->29->1213", - "default.handlebars->29->1214", - "default.handlebars->29->1463", - "default.handlebars->29->1591", - "default.handlebars->29->1610", - "default.handlebars->29->557" + "default.handlebars->29->1220", + "default.handlebars->29->1221", + "default.handlebars->29->1472", + "default.handlebars->29->1604", + "default.handlebars->29->1623", + "default.handlebars->29->559" ] }, { @@ -26283,7 +26352,7 @@ "ru": "Членство в группах пользователей", "zh-chs": "用戶組成員資格", "xloc": [ - "default.handlebars->29->1588" + "default.handlebars->29->1601" ] }, { @@ -26300,8 +26369,8 @@ "ru": "Идентификатор пользователя", "zh-chs": "用戶標識", "xloc": [ - "default.handlebars->29->1274", - "default.handlebars->29->1522" + "default.handlebars->29->1281", + "default.handlebars->29->1531" ] }, { @@ -26318,7 +26387,7 @@ "ru": "Экспортировать список пользователей", "zh-chs": "用戶列表導出", "xloc": [ - "default.handlebars->29->1416" + "default.handlebars->29->1425" ] }, { @@ -26335,7 +26404,7 @@ "ru": "Имя пользователя", "zh-chs": "用戶名", "xloc": [ - "default.handlebars->29->1273" + "default.handlebars->29->1280" ] }, { @@ -26352,8 +26421,8 @@ "ru": "Имена пользователей", "zh-chs": "用戶名", "xloc": [ - "default.handlebars->29->1211", - "default.handlebars->29->1510" + "default.handlebars->29->1218", + "default.handlebars->29->1519" ] }, { @@ -26399,7 +26468,7 @@ "ru": "Сессии пользователя", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->29->1656" + "default.handlebars->29->1669" ] }, { @@ -26464,8 +26533,8 @@ "ru": "Использовать настройки браузера", "zh-chs": "用戶瀏覽器價值", "xloc": [ - "default.handlebars->29->1041", - "default.handlebars->29->1043" + "default.handlebars->29->1048", + "default.handlebars->29->1050" ] }, { @@ -26522,10 +26591,10 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->215", - "default.handlebars->29->1422", - "default.handlebars->29->231", - "default.handlebars->29->261", - "default.handlebars->29->613", + "default.handlebars->29->1431", + "default.handlebars->29->233", + "default.handlebars->29->263", + "default.handlebars->29->615", "player.handlebars->3->4" ] }, @@ -26544,7 +26613,7 @@ "zh-chs": "此用戶名已存在。", "xloc": [ "login-mobile.handlebars->5->8", - "login.handlebars->5->8" + "login.handlebars->5->9" ] }, { @@ -26582,9 +26651,9 @@ "ru": "Пользователи", "zh-chs": "用戶數", "xloc": [ - "default.handlebars->29->1451", - "default.handlebars->29->1473", - "default.handlebars->29->1655", + "default.handlebars->29->1460", + "default.handlebars->29->1482", + "default.handlebars->29->1668", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -26602,7 +26671,7 @@ "ru": "Сессии пользователей", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->29->1643" + "default.handlebars->29->1656" ] }, { @@ -26619,7 +26688,7 @@ "ru": "VT100+ (F10 = ESC+[OY)", "zh-chs": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->29->710" + "default.handlebars->29->712" ] }, { @@ -26636,7 +26705,7 @@ "ru": "Венда", "zh-chs": "文達", "xloc": [ - "default.handlebars->29->1032" + "default.handlebars->29->1039" ] }, { @@ -26653,8 +26722,14 @@ "ru": "Вендор", "zh-chs": "供應商", "xloc": [ - "default.handlebars->29->796", - "default.handlebars->29->799" + "default.handlebars->29->798", + "default.handlebars->29->801" + ] + }, + { + "en": "Verification code:", + "xloc": [ + "default.handlebars->29->141" ] }, { @@ -26671,7 +26746,14 @@ "ru": "Проверенный", "zh-chs": "已驗證", "xloc": [ - "default.handlebars->29->1569" + "default.handlebars->29->1582" + ] + }, + { + "en": "Verified phone number", + "xloc": [ + "default.handlebars->29->1396", + "default.handlebars->29->829" ] }, { @@ -26723,10 +26805,10 @@ "ru": "Версия", "zh-chs": "版", "xloc": [ - "default.handlebars->29->759", - "default.handlebars->29->780", - "default.handlebars->29->797", - "default.handlebars->29->802", + "default.handlebars->29->761", + "default.handlebars->29->782", + "default.handlebars->29->799", + "default.handlebars->29->804", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -26741,7 +26823,7 @@ "ru": "Версия несовместима, пожалуйста, сначала обновите установку MeshCentral", "zh-chs": "版本不兼容,请先升级您的MeshCentral安装", "xloc": [ - "default.handlebars->29->1687" + "default.handlebars->29->1700" ] }, { @@ -26776,7 +26858,7 @@ "ru": "Вьетнамский", "zh-chs": "越南文", "xloc": [ - "default.handlebars->29->1033" + "default.handlebars->29->1040" ] }, { @@ -26807,8 +26889,8 @@ "ru": "Просмотр журнала изменений", "zh-chs": "查看变更日志", "xloc": [ - "default.handlebars->29->1690", - "default.handlebars->29->1692" + "default.handlebars->29->1703", + "default.handlebars->29->1705" ] }, { @@ -26825,7 +26907,7 @@ "ru": "Посмотреть примечания этого устройства", "zh-chs": "查看有關此設備的註釋", "xloc": [ - "default.handlebars->29->520" + "default.handlebars->29->522" ] }, { @@ -26842,7 +26924,7 @@ "ru": "Посмотреть примечания этой группы устройств", "zh-chs": "查看有關此設備組的註釋", "xloc": [ - "default.handlebars->29->1140" + "default.handlebars->29->1147" ] }, { @@ -26859,7 +26941,7 @@ "ru": "Посмотреть примечания об этом пользователе", "zh-chs": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->29->1557" + "default.handlebars->29->1568" ] }, { @@ -26876,7 +26958,7 @@ "ru": "Волапукский", "zh-chs": "沃拉普克", "xloc": [ - "default.handlebars->29->1034" + "default.handlebars->29->1041" ] }, { @@ -26924,8 +27006,8 @@ "ru": "Услуга", "zh-chs": "唤醒", "xloc": [ - "default.handlebars->29->570", - "default.handlebars->29->589" + "default.handlebars->29->572", + "default.handlebars->29->591" ] }, { @@ -26944,8 +27026,8 @@ "xloc": [ "default-mobile.handlebars->9->305", "default-mobile.handlebars->9->318", - "default.handlebars->29->1233", - "default.handlebars->29->1261" + "default.handlebars->29->1240", + "default.handlebars->29->1268" ] }, { @@ -26963,7 +27045,7 @@ "zh-chs": "醒來", "xloc": [ "default-mobile.handlebars->9->209", - "default.handlebars->29->602" + "default.handlebars->29->604" ] }, { @@ -26980,7 +27062,7 @@ "ru": "Разбудить устройства", "zh-chs": "喚醒設備", "xloc": [ - "default.handlebars->29->383" + "default.handlebars->29->385" ] }, { @@ -26997,7 +27079,7 @@ "ru": "Валлонский", "zh-chs": "瓦隆", "xloc": [ - "default.handlebars->29->1035" + "default.handlebars->29->1042" ] }, { @@ -27014,7 +27096,7 @@ "ru": "Слабый", "zh-chs": "弱", "xloc": [ - "default.handlebars->29->1088" + "default.handlebars->29->1095" ] }, { @@ -27033,8 +27115,8 @@ "xloc": [ "login-mobile.handlebars->5->26", "login-mobile.handlebars->5->30", - "login.handlebars->5->26", - "login.handlebars->5->30" + "login.handlebars->5->29", + "login.handlebars->5->33" ] }, { @@ -27051,8 +27133,8 @@ "ru": "Веб-сервер", "zh-chs": "網絡服務器", "xloc": [ - "default.handlebars->29->1676", - "default.handlebars->29->1677" + "default.handlebars->29->1689", + "default.handlebars->29->1690" ] }, { @@ -27069,7 +27151,7 @@ "ru": "Запросы веб-сервера", "zh-chs": "Web服務器請求", "xloc": [ - "default.handlebars->29->1678" + "default.handlebars->29->1691" ] }, { @@ -27086,7 +27168,7 @@ "ru": "Ретранслятор Web Socket", "zh-chs": "Web套接字中繼", "xloc": [ - "default.handlebars->29->1679" + "default.handlebars->29->1692" ] }, { @@ -27139,7 +27221,7 @@ "ru": "Уэльский", "zh-chs": "威爾士語", "xloc": [ - "default.handlebars->29->1036" + "default.handlebars->29->1043" ] }, { @@ -27156,7 +27238,7 @@ "ru": "Когда этот параметр включен, коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->29->1282" + "default.handlebars->29->1289" ] }, { @@ -27174,7 +27256,7 @@ "zh-chs": "啟用後,每次登錄時,您都可以選擇向電子郵件帳戶接收登錄令牌,以提高安全性。", "xloc": [ "default-mobile.handlebars->9->31", - "default.handlebars->29->828" + "default.handlebars->29->835" ] }, { @@ -27191,7 +27273,7 @@ "ru": "Будет изменено при следующем входе в систему.", "zh-chs": "下次登錄時將更改。", "xloc": [ - "default.handlebars->29->1530" + "default.handlebars->29->1540" ] }, { @@ -27350,7 +27432,7 @@ "ru": "Исполняемый файл Win32", "zh-chs": "Win32可執行文件", "xloc": [ - "default.handlebars->29->641" + "default.handlebars->29->643" ] }, { @@ -27367,7 +27449,7 @@ "ru": "WinSCP", "zh-chs": "WinSCP", "xloc": [ - "default.handlebars->29->540" + "default.handlebars->29->542" ] }, { @@ -27384,7 +27466,7 @@ "ru": "Windows", "zh-chs": "視窗", "xloc": [ - "default.handlebars->29->308" + "default.handlebars->29->310" ] }, { @@ -27401,8 +27483,8 @@ "ru": "Windows (.exe)", "zh-chs": "Windows(.exe)", "xloc": [ - "default.handlebars->29->320", - "default.handlebars->29->337" + "default.handlebars->29->322", + "default.handlebars->29->339" ] }, { @@ -27419,7 +27501,7 @@ "ru": "Windows (32bit)", "zh-chs": "Windows(32位)", "xloc": [ - "default.handlebars->29->643" + "default.handlebars->29->645" ] }, { @@ -27436,7 +27518,7 @@ "ru": "Windows (64bit)", "zh-chs": "Windows(64位)", "xloc": [ - "default.handlebars->29->644" + "default.handlebars->29->646" ] }, { @@ -27453,7 +27535,7 @@ "ru": "Windows (Удаление)", "zh-chs": "Windows(卸載)", "xloc": [ - "default.handlebars->29->311" + "default.handlebars->29->313" ] }, { @@ -27612,7 +27694,7 @@ "ru": "Только Windows", "zh-chs": "僅Windows", "xloc": [ - "default.handlebars->29->281" + "default.handlebars->29->283" ] }, { @@ -27629,8 +27711,8 @@ "ru": "Windows x64 (.exe)", "zh-chs": "Windows x64(.exe)", "xloc": [ - "default.handlebars->29->324", - "default.handlebars->29->340" + "default.handlebars->29->326", + "default.handlebars->29->342" ] }, { @@ -27664,7 +27746,7 @@ "ru": "Перенос строк: ВЫКЛ", "zh-chs": "包裝:關閉", "xloc": [ - "default.handlebars->29->746" + "default.handlebars->29->748" ] }, { @@ -27681,7 +27763,7 @@ "ru": "Перенос строк: ВКЛ", "zh-chs": "包裝:開", "xloc": [ - "default.handlebars->29->745" + "default.handlebars->29->747" ] }, { @@ -27698,7 +27780,7 @@ "ru": "Записать событие к этому устройству", "zh-chs": "為此設備寫一個事件", "xloc": [ - "default.handlebars->29->522" + "default.handlebars->29->524" ] }, { @@ -27750,7 +27832,7 @@ "ru": "XTerm", "zh-chs": "XTerm", "xloc": [ - "default.handlebars->29->534" + "default.handlebars->29->536" ] }, { @@ -27767,7 +27849,7 @@ "ru": "Кос", "zh-chs": "科薩", "xloc": [ - "default.handlebars->29->1037" + "default.handlebars->29->1044" ] }, { @@ -27784,7 +27866,7 @@ "ru": "Идиш", "zh-chs": "意第緒語", "xloc": [ - "default.handlebars->29->1038" + "default.handlebars->29->1045" ] }, { @@ -27864,7 +27946,7 @@ "ru": "YubiKey™ OTP", "zh-chs": "YubiKey™ OTP", "xloc": [ - "default.handlebars->29->840" + "default.handlebars->29->847" ] }, { @@ -27881,7 +27963,7 @@ "ru": "Масштабирование по размеру", "zh-chs": "縮放至適合範圍", "xloc": [ - "default.handlebars->29->435" + "default.handlebars->29->437" ] }, { @@ -27898,8 +27980,8 @@ "ru": "Масштабирование +", "zh-chs": "放大到一定程度", "xloc": [ - "default.handlebars->29->432", - "default.handlebars->29->438" + "default.handlebars->29->434", + "default.handlebars->29->440" ] }, { @@ -27916,8 +27998,8 @@ "ru": "Масштабирование -", "zh-chs": "縮小到一定程度", "xloc": [ - "default.handlebars->29->433", - "default.handlebars->29->439" + "default.handlebars->29->435", + "default.handlebars->29->441" ] }, { @@ -27934,7 +28016,7 @@ "ru": "Зулусский", "zh-chs": "祖魯族", "xloc": [ - "default.handlebars->29->1039" + "default.handlebars->29->1046" ] }, { @@ -28119,7 +28201,7 @@ "ru": "\\\\'", "zh-chs": "\\\\'", "xloc": [ - "default.handlebars->29->1688" + "default.handlebars->29->1701" ] }, { @@ -28136,8 +28218,8 @@ "ru": "добавить", "zh-chs": "加一", "xloc": [ - "default.handlebars->29->187", - "default.handlebars->29->189" + "default.handlebars->29->189", + "default.handlebars->29->191" ] }, { @@ -28154,7 +28236,7 @@ "ru": "админ", "zh-chs": "管理員", "xloc": [ - "default.handlebars->29->232" + "default.handlebars->29->234" ] }, { @@ -28252,7 +28334,7 @@ "ru": "console.txt", "zh-chs": "console.txt", "xloc": [ - "default.handlebars->29->817" + "default.handlebars->29->819" ] }, { @@ -28270,7 +28352,7 @@ "zh-chs": "複製", "xloc": [ "default-mobile.handlebars->9->92", - "default.handlebars->29->1349" + "default.handlebars->29->1356" ] }, { @@ -28287,8 +28369,8 @@ "ru": "devicelist.csv", "zh-chs": "devicelist.csv", "xloc": [ - "default.handlebars->29->397", - "default.handlebars->29->402" + "default.handlebars->29->399", + "default.handlebars->29->404" ] }, { @@ -28305,8 +28387,8 @@ "ru": "devicelist.json", "zh-chs": "devicelist.json", "xloc": [ - "default.handlebars->29->399", - "default.handlebars->29->403" + "default.handlebars->29->401", + "default.handlebars->29->405" ] }, { @@ -28337,8 +28419,8 @@ "ru": "eventslist.csv", "zh-chs": "eventslist.csv", "xloc": [ - "default.handlebars->29->1358", - "default.handlebars->29->1363" + "default.handlebars->29->1365", + "default.handlebars->29->1370" ] }, { @@ -28355,8 +28437,8 @@ "ru": "eventslist.json", "zh-chs": "eventslist.json", "xloc": [ - "default.handlebars->29->1360", - "default.handlebars->29->1364" + "default.handlebars->29->1367", + "default.handlebars->29->1371" ] }, { @@ -28373,7 +28455,7 @@ "ru": "example@email.com", "zh-chs": "example@email.com", "xloc": [ - "default.handlebars->29->277" + "default.handlebars->29->279" ] }, { @@ -28390,7 +28472,7 @@ "ru": "свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->29->1651" + "default.handlebars->29->1664" ] }, { @@ -28407,8 +28489,8 @@ "ru": "г:", "zh-chs": "G:", "xloc": [ - "default.handlebars->29->412", - "default.handlebars->29->413" + "default.handlebars->29->414", + "default.handlebars->29->415" ] }, { @@ -28425,8 +28507,8 @@ "ru": "группа:", "zh-chs": "組:", "xloc": [ - "default.handlebars->29->410", - "default.handlebars->29->411" + "default.handlebars->29->412", + "default.handlebars->29->413" ] }, { @@ -28571,7 +28653,7 @@ "ru": "id, name, email, creation, lastlogin, groups, authfactors", "zh-chs": "id,名稱,電子郵件,創建,lastlogin,組,authfactors", "xloc": [ - "default.handlebars->29->1417" + "default.handlebars->29->1426" ] }, { @@ -28588,7 +28670,7 @@ "ru": "идентификатор, имя, имя, хост, значок, ip, osdesc, состояние, имя группы, conn, pwr", "zh-chs": "id,名稱,rname,主機,圖標,ip,osdesc,狀態,組名,conn,pwr", "xloc": [ - "default.handlebars->29->401" + "default.handlebars->29->403" ] }, { @@ -28605,8 +28687,8 @@ "ru": "ip:", "zh-chs": "ip:", "xloc": [ - "default.handlebars->29->408", - "default.handlebars->29->409" + "default.handlebars->29->410", + "default.handlebars->29->411" ] }, { @@ -28662,7 +28744,7 @@ "ru": "k max, пусто по умолчанию", "zh-chs": "k max,默认为空白", "xloc": [ - "default.handlebars->29->1438" + "default.handlebars->29->1447" ] }, { @@ -28698,7 +28780,7 @@ "zh-chs": "移動", "xloc": [ "default-mobile.handlebars->9->93", - "default.handlebars->29->1350" + "default.handlebars->29->1357" ] }, { @@ -28729,7 +28811,7 @@ "ru": "servererrors.txt", "zh-chs": "servererrors.txt", "xloc": [ - "default.handlebars->29->1101" + "default.handlebars->29->1108" ] }, { @@ -28746,7 +28828,7 @@ "ru": "servertrace.csv", "zh-chs": "servertrace.csv", "xloc": [ - "default.handlebars->29->1686" + "default.handlebars->29->1699" ] }, { @@ -28763,8 +28845,8 @@ "ru": "т:", "zh-chs": "t:", "xloc": [ - "default.handlebars->29->416", - "default.handlebars->29->417" + "default.handlebars->29->418", + "default.handlebars->29->419" ] }, { @@ -28781,8 +28863,8 @@ "ru": "тег:", "zh-chs": "標籤:", "xloc": [ - "default.handlebars->29->414", - "default.handlebars->29->415" + "default.handlebars->29->416", + "default.handlebars->29->417" ] }, { @@ -28799,7 +28881,7 @@ "ru": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "zh-chs": "時間,conn.agent,conn.users,conn.usersessions,conn.relaysession,conn.intelamt,mem.external,mem.heapused,mem.heaptotal,mem.rss", "xloc": [ - "default.handlebars->29->1664" + "default.handlebars->29->1677" ] }, { @@ -28816,7 +28898,7 @@ "ru": "time, source, message", "zh-chs": "時間,來源,訊息", "xloc": [ - "default.handlebars->29->1685" + "default.handlebars->29->1698" ] }, { @@ -28847,7 +28929,7 @@ "ru": "всего", "zh-chs": "總", "xloc": [ - "default.handlebars->29->1652" + "default.handlebars->29->1665" ] }, { @@ -28864,8 +28946,8 @@ "ru": "п:", "zh-chs": "你:", "xloc": [ - "default.handlebars->29->406", - "default.handlebars->29->407" + "default.handlebars->29->408", + "default.handlebars->29->409" ] }, { @@ -28896,8 +28978,8 @@ "ru": "пользователь:", "zh-chs": "用戶:", "xloc": [ - "default.handlebars->29->404", - "default.handlebars->29->405" + "default.handlebars->29->406", + "default.handlebars->29->407" ] }, { @@ -28914,8 +28996,8 @@ "ru": "userlist.csv", "zh-chs": "userlist.csv", "xloc": [ - "default.handlebars->29->1413", - "default.handlebars->29->1418" + "default.handlebars->29->1422", + "default.handlebars->29->1427" ] }, { @@ -28932,8 +29014,8 @@ "ru": "userlist.json", "zh-chs": "userlist.json", "xloc": [ - "default.handlebars->29->1415", - "default.handlebars->29->1419" + "default.handlebars->29->1424", + "default.handlebars->29->1428" ] }, { @@ -28950,7 +29032,7 @@ "ru": "utc, время, тип, действие, пользователь, устройство, сообщение", "zh-chs": "utc,時間,類型,操作,用戶,設備,消息", "xloc": [ - "default.handlebars->29->1362" + "default.handlebars->29->1369" ] }, { @@ -28984,7 +29066,7 @@ "ru": "{0} Гб", "zh-chs": "{0} Gb", "xloc": [ - "default.handlebars->29->1329" + "default.handlebars->29->1336" ] }, { @@ -29001,7 +29083,7 @@ "ru": "{0} Kб", "zh-chs": "{0} Kb", "xloc": [ - "default.handlebars->29->1327" + "default.handlebars->29->1334" ] }, { @@ -29018,7 +29100,7 @@ "ru": "{0} Mб", "zh-chs": "{0} Mb", "xloc": [ - "default.handlebars->29->1328" + "default.handlebars->29->1335" ] }, { @@ -29035,7 +29117,7 @@ "ru": "{0} Мб, {1} Мгц", "zh-chs": "{0} Mb,{1} Mhz", "xloc": [ - "default.handlebars->29->806" + "default.handlebars->29->808" ] }, { @@ -29052,7 +29134,7 @@ "ru": "{0} активных сессий", "zh-chs": "{0}個活動會話", "xloc": [ - "default.handlebars->29->1565" + "default.handlebars->29->1578" ] }, { @@ -29069,7 +29151,7 @@ "ru": "{0} байт", "zh-chs": "{0} b", "xloc": [ - "default.handlebars->29->1326" + "default.handlebars->29->1333" ] }, { @@ -29087,7 +29169,7 @@ "zh-chs": "{0}個字節", "xloc": [ "default-mobile.handlebars->9->81", - "default.handlebars->29->1337" + "default.handlebars->29->1344" ] }, { @@ -29104,7 +29186,7 @@ "ru": "{0} байт осталось", "zh-chs": "剩餘{0}個字節", "xloc": [ - "default.handlebars->29->1321" + "default.handlebars->29->1328" ] }, { @@ -29121,7 +29203,7 @@ "ru": "{0} гигабайт осталось", "zh-chs": "剩餘{0} GB", "xloc": [ - "default.handlebars->29->1324" + "default.handlebars->29->1331" ] }, { @@ -29138,7 +29220,7 @@ "ru": "{0} групп", "zh-chs": "{0}個群組", "xloc": [ - "default.handlebars->29->1535" + "default.handlebars->29->1545" ] }, { @@ -29155,7 +29237,7 @@ "ru": "{0} часов", "zh-chs": "{0}小時", "xloc": [ - "default.handlebars->29->158" + "default.handlebars->29->160" ] }, { @@ -29186,7 +29268,7 @@ "ru": "{0} килобайт осталось", "zh-chs": "剩餘{0}千字節", "xloc": [ - "default.handlebars->29->1322" + "default.handlebars->29->1329" ] }, { @@ -29204,7 +29286,7 @@ "zh-chs": "{0}小寫", "xloc": [ "login-mobile.handlebars->5->35", - "login.handlebars->5->35" + "login.handlebars->5->38" ] }, { @@ -29221,7 +29303,7 @@ "ru": "{0} мегабайт осталось", "zh-chs": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->29->1323" + "default.handlebars->29->1330" ] }, { @@ -29255,7 +29337,7 @@ "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей...", "zh-chs": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->29->1372" + "default.handlebars->29->1379" ] }, { @@ -29272,7 +29354,7 @@ "ru": "{0} устройств", "zh-chs": "{0}個節點", "xloc": [ - "default.handlebars->29->344" + "default.handlebars->29->346" ] }, { @@ -29290,7 +29372,7 @@ "zh-chs": "{0}非字母數字", "xloc": [ "login-mobile.handlebars->5->37", - "login.handlebars->5->37" + "login.handlebars->5->40" ] }, { @@ -29308,7 +29390,7 @@ "zh-chs": "{0}數字", "xloc": [ "login-mobile.handlebars->5->36", - "login.handlebars->5->36" + "login.handlebars->5->39" ] }, { @@ -29387,7 +29469,7 @@ "ru": "{0} сессий", "zh-chs": "{0}個會話", "xloc": [ - "default.handlebars->29->1376" + "default.handlebars->29->1383" ] }, { @@ -29404,7 +29486,7 @@ "ru": "{0} настройки (.msh)", "zh-chs": "{0}設置(.msh)", "xloc": [ - "default.handlebars->29->327" + "default.handlebars->29->329" ] }, { @@ -29439,7 +29521,7 @@ "zh-chs": "{0}大寫", "xloc": [ "login-mobile.handlebars->5->34", - "login.handlebars->5->34" + "login.handlebars->5->37" ] }, { @@ -29456,7 +29538,7 @@ "ru": "{0} пользователей", "zh-chs": "{0}個用戶", "xloc": [ - "default.handlebars->29->206" + "default.handlebars->29->208" ] }, { @@ -29507,7 +29589,7 @@ "ru": "{0}k в 1 файле. {1}k максимум", "zh-chs": "{0} k合1檔案。最多{1} k", "xloc": [ - "default.handlebars->29->1331" + "default.handlebars->29->1338" ] }, { @@ -29523,7 +29605,7 @@ "ru": "{0}k в {1} файлах. {2}k максимум", "zh-chs": "{1}個文件中有{0}個。最多{2} k", "xloc": [ - "default.handlebars->29->1330" + "default.handlebars->29->1337" ] }, { @@ -29655,6 +29737,7 @@ "default.handlebars->container->column_l->p2->p2info->p2AccountSecurity->3->manageEmail2FA->0->authEmailSetupCheck->0", "default.handlebars->container->column_l->p2->p2info->p2AccountSecurity->3->manageHardwareOtp->0->authKeySetupCheck->0", "default.handlebars->container->column_l->p2->p2info->p2AccountSecurity->3->manageOtp->0->authCodesSetupCheck->0", + "default.handlebars->container->column_l->p2->p2info->p2AccountSecurity->3->managePhoneNumber1->0->authPhoneNumberCheck->0", "default.handlebars->container->column_l->p5->p5filetable->bigok->0", "player.handlebars->p11->deskarea0->deskarea3x->bigok->0", "xterm.handlebars->p11->deskarea0->deskarea3x->bigok->0" diff --git a/views/default.handlebars b/views/default.handlebars index 9489c9c0..83b567cb 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -306,7 +306,7 @@