From cbda9382e984330341dc1b3d30ef894c2c730714 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Sat, 1 Aug 2020 21:12:07 -0700 Subject: [PATCH] Added early server support for agent binary installer on Linux. --- agents/meshinstall-linux.js | 109 ++ meshcentral.js | 8 +- translate/translate.json | 3149 ++++++++++++++++++----------------- views/default.handlebars | 34 +- webserver.js | 53 +- 5 files changed, 1773 insertions(+), 1580 deletions(-) create mode 100644 agents/meshinstall-linux.js diff --git a/agents/meshinstall-linux.js b/agents/meshinstall-linux.js new file mode 100644 index 00000000..7c945e0b --- /dev/null +++ b/agents/meshinstall-linux.js @@ -0,0 +1,109 @@ +/* +Copyright 2020 Intel Corporation + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +/* +TODO: in msh, when: +InstallFlags=1 --> Interactive only, show connect button, not install/uninstal. +InstallFlags=2 --> Background only, show only install/uninstal, not connect. +*/ + +var msh = {}; +var s = null; +try { s = require('service-manager').manager.getService('meshagent'); } catch (e) { } + +var buttons = ["Connect", "Cancel"]; +if (s) { + buttons.unshift("Uninstall"); + buttons.unshift("Update"); +} else { + buttons.unshift("Install"); +} + +if ((require('message-box').zenity == null) || (!require('message-box').zenity.extra)) { + console.log('\n' + "This installer cannot run on this system."); + console.log("Try installing/updating Zenity, and run again." + '\n'); + process.exit(); +} + +if (!s) { + msg = "Agent: " + "NOT INSTALLED" + '\n'; +} else { + msg = "Agent: " + (s.isRunning() ? "RUNNING" : "NOT RUNNING") + '\n'; +} +msg += ("Device Group: " + msh.MeshName + '\n'); +msg += ("Server URL: " + msh.MeshServer + '\n'); + +var p = require('message-box').create("MeshCentral Agent Setup", msg, 99999, buttons); +p.then(function (v) { + switch (v) { + case "Cancel": + process.exit(); + break; + case "Connect": + global._child = require('child_process').execFile(process.execPath, + [process.execPath.split('/').pop(), '--no-embedded=1', '--disableUpdate=1', + '--MeshName="' + msh.MeshName + '"', '--MeshType="' + msh.MeshType + '"', + '--MeshID="' + msh.MeshID + '"', + '--ServerID="' + msh.ServerID + '"', + '--MeshServer="' + msh.MeshServer + '"', + '--AgentCapabilities="0x00000020"']); + + global._child.stdout.on('data', function (c) { }); + global._child.stderr.on('data', function (c) { }); + global._child.on('exit', function (code) { process.exit(code); }); + + msg = ("Device Group: " + msh.MeshName + '\n'); + msg += ("Server URL: " + msh.MeshServer + '\n'); + + var d = require('message-box').create("MeshCentral Agent", msg, 99999, ["Disconnect"]); + d.then(function (v) { process.exit(); }).catch(function (v) { process.exit(); }); + break; + case "Uninstall": + global._child = require('child_process').execFile(process.execPath, + [process.execPath.split('/').pop(), '-fulluninstall', '--no-embedded=1']); + + global._child.stdout.on('data', function (c) { process.stdout.write(c.toString()); }); + global._child.stderr.on('data', function (c) { process.stdout.write(c.toString()); }); + global._child.waitExit(); + process.exit(); + break; + case "Install": + case "Update": + var mstr = require('fs').createWriteStream(process.execPath + '.msh', { flags: 'wb' }); + mstr.write('MeshName=' + msh.MeshName + '\n'); + mstr.write('MeshType=' + msh.MeshType + '\n'); + mstr.write('MeshID=' + msh.MeshID + '\n'); + mstr.write('ServerID=' + msh.ServerID + '\n'); + mstr.write('MeshServer=' + msh.MeshServer + '\n'); + mstr.end(); + + global._child = require('child_process').execFile(process.execPath, + [process.execPath.split('/').pop(), '-fullinstall', '--no-embedded=1', '--copy-msh=1']); + + global._child.stdout.on('data', function (c) { process.stdout.write(c.toString()); }); + global._child.stderr.on('data', function (c) { process.stdout.write(c.toString()); }); + global._child.waitExit(); + process.exit(); + break; + default: + console.log(v); + process.exit(); + break; + } +}).catch(function (e) { + process.exit(); +}); + diff --git a/meshcentral.js b/meshcentral.js index 7914e5bc..cbe914a8 100644 --- a/meshcentral.js +++ b/meshcentral.js @@ -130,7 +130,7 @@ function CreateMeshCentralServer(config, args) { try { require('./pass').hash('test', function () { }, 0); } catch (e) { console.log('Old version of node, must upgrade.'); return; } // TODO: Not sure if this test works or not. // Check for invalid arguments - var validArguments = ['_', 'notls', 'user', 'port', 'aliasport', 'mpsport', 'mpsaliasport', 'redirport', 'rediraliasport', 'cert', 'mpscert', 'deletedomain', 'deletedefaultdomain', 'showall', 'showusers', 'showitem', 'listuserids', 'showusergroups', 'shownodes', 'showmeshes', 'showevents', 'showsmbios', 'showpower', 'clearpower', 'showiplocations', 'help', 'exactports', 'xinstall', 'xuninstall', 'install', 'uninstall', 'start', 'stop', 'restart', 'debug', 'filespath', 'datapath', 'noagentupdate', 'launch', 'noserverbackup', 'mongodb', 'mongodbcol', 'wanonly', 'lanonly', 'nousers', 'mpspass', 'ciralocalfqdn', 'dbexport', 'dbexportmin', 'dbimport', 'dbmerge', 'dbencryptkey', 'selfupdate', 'tlsoffload', 'userallowedip', 'userblockedip', 'swarmallowedip', 'agentallowedip', 'agentblockedip', 'fastcert', 'swarmport', 'logintoken', 'logintokenkey', 'logintokengen', 'mailtokengen', 'admin', 'unadmin', 'sessionkey', 'sessiontime', 'minify', 'minifycore', 'dblistconfigfiles', 'dbshowconfigfile', 'dbpushconfigfiles', 'dbpullconfigfiles', 'dbdeleteconfigfiles', 'vaultpushconfigfiles', 'vaultpullconfigfiles', 'vaultdeleteconfigfiles', 'configkey', 'loadconfigfromdb', 'npmpath', 'serverid', 'recordencryptionrecode', 'vault', 'token', 'unsealkey', 'name', 'log', 'dbstats', 'translate', 'createaccount', 'resetaccount', 'pass', 'adminaccount', 'removeaccount', 'domain', 'email']; + var validArguments = ['_', 'notls', 'user', 'port', 'aliasport', 'mpsport', 'mpsaliasport', 'redirport', 'rediraliasport', 'cert', 'mpscert', 'deletedomain', 'deletedefaultdomain', 'showall', 'showusers', 'showitem', 'listuserids', 'showusergroups', 'shownodes', 'showallmeshes', 'showmeshes', 'showevents', 'showsmbios', 'showpower', 'clearpower', 'showiplocations', 'help', 'exactports', 'xinstall', 'xuninstall', 'install', 'uninstall', 'start', 'stop', 'restart', 'debug', 'filespath', 'datapath', 'noagentupdate', 'launch', 'noserverbackup', 'mongodb', 'mongodbcol', 'wanonly', 'lanonly', 'nousers', 'mpspass', 'ciralocalfqdn', 'dbexport', 'dbexportmin', 'dbimport', 'dbmerge', 'dbencryptkey', 'selfupdate', 'tlsoffload', 'userallowedip', 'userblockedip', 'swarmallowedip', 'agentallowedip', 'agentblockedip', 'fastcert', 'swarmport', 'logintoken', 'logintokenkey', 'logintokengen', 'mailtokengen', 'admin', 'unadmin', 'sessionkey', 'sessiontime', 'minify', 'minifycore', 'dblistconfigfiles', 'dbshowconfigfile', 'dbpushconfigfiles', 'dbpullconfigfiles', 'dbdeleteconfigfiles', 'vaultpushconfigfiles', 'vaultpullconfigfiles', 'vaultdeleteconfigfiles', 'configkey', 'loadconfigfromdb', 'npmpath', 'serverid', 'recordencryptionrecode', 'vault', 'token', 'unsealkey', 'name', 'log', 'dbstats', 'translate', 'createaccount', 'resetaccount', 'pass', 'adminaccount', 'removeaccount', 'domain', 'email']; for (var arg in obj.args) { obj.args[arg.toLocaleLowerCase()] = obj.args[arg]; if (validArguments.indexOf(arg.toLocaleLowerCase()) == -1) { console.log('Invalid argument "' + arg + '", use --help.'); return; } } if (obj.args.mongodb == true) { console.log('Must specify: --mongodb [connectionstring] \r\nSee https://docs.mongodb.com/manual/reference/connection-string/ for MongoDB connection string.'); return; } for (i in obj.config.settings) { obj.args[i] = obj.config.settings[i]; } // Place all settings into arguments, arguments have already been placed into settings so arguments take precedence. @@ -675,7 +675,8 @@ function CreateMeshCentralServer(config, args) { if (obj.args.listuserids) { obj.db.GetAllType('user', function (err, docs) { for (var i in docs) { console.log(docs[i]._id); } process.exit(); }); return; } if (obj.args.showusergroups) { obj.db.GetAllType('ugrp', function (err, docs) { console.log(JSON.stringify(docs, null, 2)); process.exit(); }); return; } if (obj.args.shownodes) { obj.db.GetAllType('node', function (err, docs) { console.log(JSON.stringify(docs, null, 2)); process.exit(); }); return; } - if (obj.args.showmeshes) { obj.db.GetAllType('mesh', function (err, docs) { console.log(JSON.stringify(docs, null, 2)); process.exit(); }); return; } + if (obj.args.showallmeshes) { obj.db.GetAllType('mesh', function (err, docs) { console.log(JSON.stringify(docs, null, 2)); process.exit(); }); return; } + if (obj.args.showmeshes) { obj.db.GetAllType('mesh', function (err, docs) { var x = []; for (var i in docs) { if (docs[i].deleted == null) { x.push(docs[i]); } } console.log(JSON.stringify(x, null, 2)); process.exit(); }); return; } if (obj.args.showevents) { obj.db.GetAllEvents(function (err, docs) { console.log(JSON.stringify(docs, null, 2)); process.exit(); }); return; } if (obj.args.showsmbios) { obj.db.GetAllSMBIOS(function (err, docs) { console.log(JSON.stringify(docs, null, 2)); process.exit(); }); return; } if (obj.args.showpower) { obj.db.getAllPower(function (err, docs) { console.log(JSON.stringify(docs, null, 2)); process.exit(); }); return; } @@ -2052,7 +2053,8 @@ function CreateMeshCentralServer(config, args) { var meshAgentsInstallScriptList = { 1: { id: 1, localname: 'meshinstall-linux.sh', rname: 'meshinstall.sh', linux: true }, 2: { id: 2, localname: 'meshinstall-initd.sh', rname: 'meshagent', linux: true }, - 5: { id: 5, localname: 'meshinstall-bsd-rcd.sh', rname: 'meshagent', linux: true } + 5: { id: 5, localname: 'meshinstall-bsd-rcd.sh', rname: 'meshagent', linux: true }, + 6: { id: 6, localname: 'meshinstall-linux.js', rname: 'meshinstall.js', linux: true } }; // Update the list of available mesh agents diff --git a/translate/translate.json b/translate/translate.json index 733a23a1..65c8e2ef 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -14,8 +14,8 @@ "ru": " + CIRA", "zh-chs": " + CIRA", "xloc": [ - "default.handlebars->27->1258", - "default.handlebars->27->1260" + "default.handlebars->27->1264", + "default.handlebars->27->1266" ] }, { @@ -174,7 +174,7 @@ "ru": " Может быть использована подсказка пароля, но не рекоммендуется.", "zh-chs": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->27->1184" + "default.handlebars->27->1190" ] }, { @@ -191,8 +191,8 @@ "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.", "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。", "xloc": [ - "default.handlebars->27->1333", - "default.handlebars->27->1670" + "default.handlebars->27->1339", + "default.handlebars->27->1676" ] }, { @@ -378,7 +378,7 @@ "ru": "* Для BSD сначала запустите \\\"pkg install wget sudo bash\\\".", "zh-chs": "*對於BSD,首先運行 “pkg install wget sudo bash”。", "xloc": [ - "default.handlebars->27->372" + "default.handlebars->27->374" ] }, { @@ -395,7 +395,7 @@ "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.", "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。", "xloc": [ - "default.handlebars->27->1305" + "default.handlebars->27->1311" ] }, { @@ -429,7 +429,7 @@ "zh-chs": ",", "xloc": [ "default-mobile.handlebars->9->446", - "default.handlebars->27->1399" + "default.handlebars->27->1405" ] }, { @@ -464,7 +464,7 @@ "ru": ", MQTT онлайн", "zh-chs": ",MQTT在線", "xloc": [ - "default.handlebars->27->927" + "default.handlebars->27->933" ] }, { @@ -481,7 +481,7 @@ "ru": ", Soft-KVM", "zh-chs": ",軟KVM", "xloc": [ - "default.handlebars->27->759" + "default.handlebars->27->765" ] }, { @@ -500,9 +500,9 @@ "xloc": [ "default-mobile.handlebars->9->284", "default-mobile.handlebars->9->293", - "default.handlebars->27->766", - "default.handlebars->27->797", - "default.handlebars->27->809", + "default.handlebars->27->772", + "default.handlebars->27->803", + "default.handlebars->27->815", "xterm.handlebars->9->6" ] }, @@ -583,7 +583,7 @@ "en": ", {0} watching", "nl": ", {0} kijken", "xloc": [ - "default.handlebars->27->760" + "default.handlebars->27->766" ] }, { @@ -640,9 +640,9 @@ "xloc": [ "default-mobile.handlebars->9->108", "default-mobile.handlebars->9->295", - "default.handlebars->27->1440", - "default.handlebars->27->1827", - "default.handlebars->27->811" + "default.handlebars->27->1446", + "default.handlebars->27->1831", + "default.handlebars->27->817" ] }, { @@ -691,7 +691,7 @@ "ru": "1 активная сессия", "zh-chs": "1個活動會話", "xloc": [ - "default.handlebars->27->1739" + "default.handlebars->27->1745" ] }, { @@ -710,14 +710,14 @@ "xloc": [ "default-mobile.handlebars->9->118", "default-mobile.handlebars->9->450", - "default.handlebars->27->1459" + "default.handlebars->27->1465" ] }, { "en": "1 connection", "nl": "1 verbinding", "xloc": [ - "default.handlebars->27->762" + "default.handlebars->27->768" ] }, { @@ -753,7 +753,7 @@ "ru": "1 группа", "zh-chs": "1組", "xloc": [ - "default.handlebars->27->1704" + "default.handlebars->27->1710" ] }, { @@ -825,7 +825,7 @@ "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...", "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->27->1508" + "default.handlebars->27->1514" ] }, { @@ -842,7 +842,7 @@ "ru": "1 устройство", "zh-chs": "1個節點", "xloc": [ - "default.handlebars->27->386" + "default.handlebars->27->392" ] }, { @@ -882,7 +882,7 @@ "default-mobile.handlebars->9->168", "default-mobile.handlebars->9->171", "default-mobile.handlebars->9->174", - "default.handlebars->27->1512", + "default.handlebars->27->1518", "default.handlebars->27->228", "default.handlebars->27->231", "default.handlebars->27->234", @@ -1163,8 +1163,8 @@ "ru": "двухфакторная аутентификация включена", "zh-chs": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->27->1525", - "default.handlebars->27->1726" + "default.handlebars->27->1531", + "default.handlebars->27->1732" ] }, { @@ -1266,8 +1266,8 @@ "ru": "32-разрядная версия MeshAgent", "zh-chs": "MeshAgent的32位版本", "xloc": [ - "default.handlebars->27->362", - "default.handlebars->27->379" + "default.handlebars->27->364", + "default.handlebars->27->381" ] }, { @@ -1480,7 +1480,7 @@ "ru": "64-битная версия MacOS Mesh Agent", "zh-chs": "64位版本的MacOS Mesh Agent", "xloc": [ - "default.handlebars->27->375" + "default.handlebars->27->377" ] }, { @@ -1497,8 +1497,8 @@ "ru": "64-разрядная версия MeshAgent", "zh-chs": "MeshAgent的64位版本", "xloc": [ - "default.handlebars->27->366", - "default.handlebars->27->382" + "default.handlebars->27->368", + "default.handlebars->27->384" ] }, { @@ -1536,7 +1536,7 @@ "ru": "7-дневная статистика работы", "zh-chs": "7天電源狀態", "xloc": [ - "default.handlebars->27->692" + "default.handlebars->27->698" ] }, { @@ -1643,11 +1643,7 @@ "zh-chs": ":" }, { - "en": "", - "xloc": [ - "default.handlebars->27->1797", - "default.handlebars->27->1799" - ] + "en": "" }, { "cs": "<<", @@ -1783,7 +1779,7 @@ "zh-chs": "ACM", "xloc": [ "default-mobile.handlebars->9->231", - "default.handlebars->27->539" + "default.handlebars->27->545" ] }, { @@ -1801,7 +1797,7 @@ "zh-chs": "AMT", "xloc": [ "default.handlebars->27->199", - "default.handlebars->27->414" + "default.handlebars->27->420" ] }, { @@ -1890,7 +1886,7 @@ "ru": "Отказано в доступе", "zh-chs": "拒絕訪問", "xloc": [ - "default.handlebars->27->928" + "default.handlebars->27->934" ] }, { @@ -1925,7 +1921,7 @@ "ru": "Доступ к файлам сервера", "zh-chs": "訪問服務器文件", "xloc": [ - "default.handlebars->27->1676" + "default.handlebars->27->1682" ] }, { @@ -2000,10 +1996,10 @@ "default-mobile.handlebars->9->93", "default-mobile.handlebars->9->95", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->27->1193", - "default.handlebars->27->1195", - "default.handlebars->27->508", - "default.handlebars->27->510" + "default.handlebars->27->1199", + "default.handlebars->27->1201", + "default.handlebars->27->514", + "default.handlebars->27->516" ] }, { @@ -2049,8 +2045,8 @@ "ru": "Аккаунт заблокирован", "zh-chs": "帐户已被锁定", "xloc": [ - "default.handlebars->27->1527", - "default.handlebars->27->1673" + "default.handlebars->27->1533", + "default.handlebars->27->1679" ] }, { @@ -2138,7 +2134,7 @@ "ru": "Действиe", "zh-chs": "行動", "xloc": [ - "default.handlebars->27->933", + "default.handlebars->27->939", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -2156,8 +2152,8 @@ "ru": "Файл действий", "zh-chs": "動作文件", "xloc": [ - "default.handlebars->27->735", - "default.handlebars->27->737" + "default.handlebars->27->741", + "default.handlebars->27->743" ] }, { @@ -2177,7 +2173,7 @@ "default-mobile.handlebars->9->248", "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->27->584", + "default.handlebars->27->590", "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" @@ -2234,9 +2230,9 @@ "default-mobile.handlebars->9->226", "default-mobile.handlebars->9->228", "default-mobile.handlebars->9->355", - "default.handlebars->27->532", - "default.handlebars->27->534", - "default.handlebars->27->891" + "default.handlebars->27->538", + "default.handlebars->27->540", + "default.handlebars->27->897" ] }, { @@ -2253,8 +2249,8 @@ "ru": "Активация", "zh-chs": "激活", "xloc": [ - "default.handlebars->27->1271", - "default.handlebars->27->1273", + "default.handlebars->27->1277", + "default.handlebars->27->1279", "default.handlebars->27->261", "default.handlebars->27->263" ] @@ -2273,7 +2269,7 @@ "ru": "Активный пользователь", "zh-chs": "活動用戶{0}", "xloc": [ - "default.handlebars->27->559" + "default.handlebars->27->565" ] }, { @@ -2290,7 +2286,7 @@ "ru": "Добавить агент", "zh-chs": "添加代理", "xloc": [ - "default.handlebars->27->1275", + "default.handlebars->27->1281", "default.handlebars->27->265" ] }, @@ -2325,8 +2321,8 @@ "ru": "Добавить устройство", "zh-chs": "添加設備", "xloc": [ - "default.handlebars->27->1650", - "default.handlebars->27->1774" + "default.handlebars->27->1656", + "default.handlebars->27->1780" ] }, { @@ -2343,7 +2339,7 @@ "ru": "Добавить событие к устройству", "zh-chs": "添加設備事件", "xloc": [ - "default.handlebars->27->668" + "default.handlebars->27->674" ] }, { @@ -2360,9 +2356,9 @@ "ru": "Добавить группу устройств", "zh-chs": "添加設備組", "xloc": [ - "default.handlebars->27->1365", - "default.handlebars->27->1644", - "default.handlebars->27->1762", + "default.handlebars->27->1371", + "default.handlebars->27->1650", + "default.handlebars->27->1768", "default.handlebars->27->216" ] }, @@ -2377,7 +2373,7 @@ "nl": "Machtigingen voor apparaatgroep toevoegen", "zh-chs": "添加设备组权限", "xloc": [ - "default.handlebars->27->1362" + "default.handlebars->27->1368" ] }, { @@ -2393,8 +2389,8 @@ "ru": "Добавить разрешения для устройства", "zh-chs": "添加设备权限", "xloc": [ - "default.handlebars->27->1367", - "default.handlebars->27->1369" + "default.handlebars->27->1373", + "default.handlebars->27->1375" ] }, { @@ -2479,7 +2475,7 @@ "ru": "Добавить участие", "zh-chs": "添加會員", "xloc": [ - "default.handlebars->27->1792" + "default.handlebars->27->1798" ] }, { @@ -2496,7 +2492,7 @@ "ru": "Добавить Mesh Agent", "zh-chs": "添加網格代理", "xloc": [ - "default.handlebars->27->385" + "default.handlebars->27->391" ] }, { @@ -2517,8 +2513,8 @@ "default.handlebars->27->151", "default.handlebars->27->154", "default.handlebars->27->155", - "default.handlebars->27->961", - "default.handlebars->27->962" + "default.handlebars->27->967", + "default.handlebars->27->968" ] }, { @@ -2536,7 +2532,7 @@ "zh-chs": "添加用戶", "xloc": [ "default-mobile.handlebars->9->395", - "default.handlebars->27->625" + "default.handlebars->27->631" ] }, { @@ -2552,7 +2548,7 @@ "ru": "Добавить разрешения для пользовательских устройств", "zh-chs": "添加用户设备权限", "xloc": [ - "default.handlebars->27->1372" + "default.handlebars->27->1378" ] }, { @@ -2569,10 +2565,10 @@ "ru": "Добавить группу пользователей", "zh-chs": "添加用戶組", "xloc": [ - "default.handlebars->27->1265", - "default.handlebars->27->1364", - "default.handlebars->27->1768", - "default.handlebars->27->626" + "default.handlebars->27->1271", + "default.handlebars->27->1370", + "default.handlebars->27->1774", + "default.handlebars->27->632" ] }, { @@ -2586,7 +2582,7 @@ "nl": "Gebruikersmachtigingen voor apparaatgroep toevoegen", "zh-chs": "添加用户组设备权限", "xloc": [ - "default.handlebars->27->1374" + "default.handlebars->27->1380" ] }, { @@ -2631,8 +2627,8 @@ "ru": "Добавить пользователей", "zh-chs": "添加用戶", "xloc": [ - "default.handlebars->27->1264", - "default.handlebars->27->1639" + "default.handlebars->27->1270", + "default.handlebars->27->1645" ] }, { @@ -2649,7 +2645,7 @@ "ru": "Добавить пользователей в группу устройств", "zh-chs": "將用戶添加到設備組", "xloc": [ - "default.handlebars->27->1361" + "default.handlebars->27->1367" ] }, { @@ -2666,7 +2662,7 @@ "ru": "Добавить пользователей в группу", "zh-chs": "將用戶添加到用戶組", "xloc": [ - "default.handlebars->27->1672" + "default.handlebars->27->1678" ] }, { @@ -2717,7 +2713,7 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.", "zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->27->1266", + "default.handlebars->27->1272", "default.handlebars->27->254" ] }, @@ -2735,7 +2731,7 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.", "zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->27->1268", + "default.handlebars->27->1274", "default.handlebars->27->256" ] }, @@ -2767,14 +2763,14 @@ "nl": "Voeg een nieuwe computer toe aan deze apparaatgroep door de mesh-agent te installeren.", "zh-chs": "通过安装网状代理,将新计算机添加到该设备组。", "xloc": [ - "default.handlebars->27->1274", + "default.handlebars->27->1280", "default.handlebars->27->264" ] }, { "en": "Add tags", "xloc": [ - "default.handlebars->27->446" + "default.handlebars->27->452" ] }, { @@ -2826,7 +2822,7 @@ "zh-chs": "管理員控制模式(ACM)", "xloc": [ "default-mobile.handlebars->9->357", - "default.handlebars->27->893" + "default.handlebars->27->899" ] }, { @@ -2844,7 +2840,7 @@ "zh-chs": "管理員憑證", "xloc": [ "default-mobile.handlebars->9->363", - "default.handlebars->27->899" + "default.handlebars->27->905" ] }, { @@ -2879,7 +2875,7 @@ "ru": "Области администратора", "zh-chs": "管理領域", "xloc": [ - "default.handlebars->27->1708" + "default.handlebars->27->1714" ] }, { @@ -2914,7 +2910,7 @@ "ru": "Административные области", "zh-chs": "行政領域", "xloc": [ - "default.handlebars->27->1590" + "default.handlebars->27->1596" ] }, { @@ -2931,7 +2927,7 @@ "ru": "Администратор", "zh-chs": "管理員", "xloc": [ - "default.handlebars->27->1519" + "default.handlebars->27->1525" ] }, { @@ -2948,7 +2944,7 @@ "ru": "Африканский", "zh-chs": "南非語", "xloc": [ - "default.handlebars->27->964" + "default.handlebars->27->970" ] }, { @@ -2968,10 +2964,10 @@ "default-mobile.handlebars->9->199", "default-mobile.handlebars->9->223", "default-mobile.handlebars->9->239", - "default.handlebars->27->1426", - "default.handlebars->27->1434", + "default.handlebars->27->1432", + "default.handlebars->27->1440", "default.handlebars->27->195", - "default.handlebars->27->410", + "default.handlebars->27->416", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" ] }, @@ -2989,8 +2985,8 @@ "ru": "Агент + Intel AMT", "zh-chs": "代理+英特爾AMT", "xloc": [ - "default.handlebars->27->1428", - "default.handlebars->27->1436" + "default.handlebars->27->1434", + "default.handlebars->27->1442" ] }, { @@ -3025,7 +3021,7 @@ "zh-chs": "代理控制台", "xloc": [ "default-mobile.handlebars->9->430", - "default.handlebars->27->1382" + "default.handlebars->27->1388" ] }, { @@ -3042,7 +3038,7 @@ "ru": "Счетчик ошибок агента", "zh-chs": "座席錯誤計數器", "xloc": [ - "default.handlebars->27->1837" + "default.handlebars->27->1841" ] }, { @@ -3118,7 +3114,7 @@ "ru": "Сессии агентов", "zh-chs": "座席會議", "xloc": [ - "default.handlebars->27->1853" + "default.handlebars->27->1857" ] }, { @@ -3136,7 +3132,7 @@ "zh-chs": "代理商標籤", "xloc": [ "default-mobile.handlebars->9->238", - "default.handlebars->27->552" + "default.handlebars->27->558" ] }, { @@ -3153,7 +3149,7 @@ "ru": "Типы агента", "zh-chs": "代理類型", "xloc": [ - "default.handlebars->27->1432", + "default.handlebars->27->1438", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -3172,8 +3168,8 @@ "zh-chs": "代理已連接", "xloc": [ "default.handlebars->27->160", - "default.handlebars->27->616", - "default.handlebars->27->617" + "default.handlebars->27->622", + "default.handlebars->27->623" ] }, { @@ -3207,7 +3203,7 @@ "ru": "Агент оффлайн", "zh-chs": "代理離線", "xloc": [ - "default.handlebars->27->926" + "default.handlebars->27->932" ] }, { @@ -3224,7 +3220,7 @@ "ru": "Агент онлайн", "zh-chs": "代理在線", "xloc": [ - "default.handlebars->27->925" + "default.handlebars->27->931" ] }, { @@ -3241,7 +3237,7 @@ "ru": "Агенты", "zh-chs": "代理商", "xloc": [ - "default.handlebars->27->1866" + "default.handlebars->27->1870" ] }, { @@ -3258,7 +3254,7 @@ "ru": "Албанский", "zh-chs": "阿爾巴尼亞語", "xloc": [ - "default.handlebars->27->965" + "default.handlebars->27->971" ] }, { @@ -3284,7 +3280,7 @@ "en": "All Available", "nl": "Alle beschikbare", "xloc": [ - "default.handlebars->27->1482" + "default.handlebars->27->1488" ] }, { @@ -3305,7 +3301,7 @@ "en": "All Events", "nl": "Alle gebeurtenissen", "xloc": [ - "default.handlebars->27->1480" + "default.handlebars->27->1486" ] }, { @@ -3322,9 +3318,9 @@ "ru": "Фокусирование всех", "zh-chs": "全部聚焦", "xloc": [ - "default.handlebars->27->767", - "default.handlebars->27->769", - "default.handlebars->27->770" + "default.handlebars->27->773", + "default.handlebars->27->775", + "default.handlebars->27->776" ] }, { @@ -3341,8 +3337,8 @@ "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.", "zh-chs": "允許用戶管理此設備組和該組中的設備。", "xloc": [ - "default.handlebars->27->1331", - "default.handlebars->27->1669" + "default.handlebars->27->1337", + "default.handlebars->27->1675" ] }, { @@ -3358,7 +3354,7 @@ "ru": "Разрешить пользователям управлять этим устройством.", "zh-chs": "允许用户管理此设备。", "xloc": [ - "default.handlebars->27->1332" + "default.handlebars->27->1338" ] }, { @@ -3411,7 +3407,7 @@ "ru": "Поменять (F10 = ESC+0)", "zh-chs": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->27->802" + "default.handlebars->27->808" ] }, { @@ -3446,9 +3442,9 @@ "ru": "Всегда уведомлять", "zh-chs": "始終通知", "xloc": [ - "default.handlebars->27->1245", - "default.handlebars->27->1717", - "default.handlebars->27->568" + "default.handlebars->27->1251", + "default.handlebars->27->1723", + "default.handlebars->27->574" ] }, { @@ -3465,9 +3461,9 @@ "ru": "Всегда запрашивать", "zh-chs": "總是提示", "xloc": [ - "default.handlebars->27->1246", - "default.handlebars->27->1718", - "default.handlebars->27->569" + "default.handlebars->27->1252", + "default.handlebars->27->1724", + "default.handlebars->27->575" ] }, { @@ -3581,7 +3577,7 @@ "ru": "Антивирус", "zh-chs": "防毒軟件", "xloc": [ - "default.handlebars->27->558" + "default.handlebars->27->564" ] }, { @@ -3615,7 +3611,7 @@ "ru": "Apple MacOS", "zh-chs": "蘋果MacOS", "xloc": [ - "default.handlebars->27->353" + "default.handlebars->27->354" ] }, { @@ -3666,7 +3662,7 @@ "ru": "Арабский (Алжир)", "zh-chs": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->27->967" + "default.handlebars->27->973" ] }, { @@ -3683,7 +3679,7 @@ "ru": "Арабский (Бахрейн)", "zh-chs": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->27->968" + "default.handlebars->27->974" ] }, { @@ -3700,7 +3696,7 @@ "ru": "Арабский (Египет)", "zh-chs": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->27->969" + "default.handlebars->27->975" ] }, { @@ -3717,7 +3713,7 @@ "ru": "Арабский (Ирак)", "zh-chs": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->27->970" + "default.handlebars->27->976" ] }, { @@ -3734,7 +3730,7 @@ "ru": "Арабский (Иордания)", "zh-chs": "阿拉伯語(約旦)", "xloc": [ - "default.handlebars->27->971" + "default.handlebars->27->977" ] }, { @@ -3751,7 +3747,7 @@ "ru": "Арабский (Кувейт)", "zh-chs": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->27->972" + "default.handlebars->27->978" ] }, { @@ -3768,7 +3764,7 @@ "ru": "Арабский (Ливан)", "zh-chs": "阿拉伯語(黎巴嫩)", "xloc": [ - "default.handlebars->27->973" + "default.handlebars->27->979" ] }, { @@ -3785,7 +3781,7 @@ "ru": "Арабский (Ливия)", "zh-chs": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->27->974" + "default.handlebars->27->980" ] }, { @@ -3802,7 +3798,7 @@ "ru": "Арабский (Марокко)", "zh-chs": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->27->975" + "default.handlebars->27->981" ] }, { @@ -3819,7 +3815,7 @@ "ru": "Арабский (Оман)", "zh-chs": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->27->976" + "default.handlebars->27->982" ] }, { @@ -3836,7 +3832,7 @@ "ru": "Арабский (Катар)", "zh-chs": "阿拉伯語(卡塔爾)", "xloc": [ - "default.handlebars->27->977" + "default.handlebars->27->983" ] }, { @@ -3853,7 +3849,7 @@ "ru": "Арабский (Саудовская Аравия)", "zh-chs": "阿拉伯語(沙特阿拉伯)", "xloc": [ - "default.handlebars->27->978" + "default.handlebars->27->984" ] }, { @@ -3870,7 +3866,7 @@ "ru": "Арабский (стандартный)", "zh-chs": "阿拉伯語(標準)", "xloc": [ - "default.handlebars->27->966" + "default.handlebars->27->972" ] }, { @@ -3887,7 +3883,7 @@ "ru": "Арабский (Сирия)", "zh-chs": "阿拉伯語(敘利亞)", "xloc": [ - "default.handlebars->27->979" + "default.handlebars->27->985" ] }, { @@ -3904,7 +3900,7 @@ "ru": "Арабский (Тунис)", "zh-chs": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->27->980" + "default.handlebars->27->986" ] }, { @@ -3921,7 +3917,7 @@ "ru": "Арабский (О.А.Э.)", "zh-chs": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->27->981" + "default.handlebars->27->987" ] }, { @@ -3938,7 +3934,7 @@ "ru": "Арабский (Йемен)", "zh-chs": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->27->982" + "default.handlebars->27->988" ] }, { @@ -3955,7 +3951,7 @@ "ru": "Арагонский", "zh-chs": "阿拉貢人", "xloc": [ - "default.handlebars->27->983" + "default.handlebars->27->989" ] }, { @@ -3973,7 +3969,7 @@ "zh-chs": "建築", "xloc": [ "default-mobile.handlebars->9->327", - "default.handlebars->27->853" + "default.handlebars->27->859" ] }, { @@ -4008,7 +4004,7 @@ "zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。", "xloc": [ "default-mobile.handlebars->9->401", - "default.handlebars->27->1309" + "default.handlebars->27->1315" ] }, { @@ -4025,7 +4021,7 @@ "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?", "zh-chs": "您確定要刪除節點{0}嗎?", "xloc": [ - "default.handlebars->27->714" + "default.handlebars->27->720" ] }, { @@ -4042,7 +4038,7 @@ "ru": "Вы действительно хотите деинсталировать выбранного агента?", "zh-chs": "您確定要卸載所選代理嗎?", "xloc": [ - "default.handlebars->27->703" + "default.handlebars->27->709" ] }, { @@ -4059,7 +4055,7 @@ "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?", "zh-chs": "您確定要卸載所選的{0}代理嗎?", "xloc": [ - "default.handlebars->27->702" + "default.handlebars->27->708" ] }, { @@ -4076,7 +4072,7 @@ "ru": "Вы уверенны, что {0} плагин: {1}", "zh-chs": "您確定要{0}插件嗎:{1}", "xloc": [ - "default.handlebars->27->1906" + "default.handlebars->27->1910" ] }, { @@ -4093,7 +4089,7 @@ "ru": "Армянский", "zh-chs": "亞美尼亞人", "xloc": [ - "default.handlebars->27->984" + "default.handlebars->27->990" ] }, { @@ -4138,7 +4134,7 @@ "ru": "Ассамский", "zh-chs": "阿薩姆語", "xloc": [ - "default.handlebars->27->985" + "default.handlebars->27->991" ] }, { @@ -4155,7 +4151,7 @@ "ru": "Астурии", "zh-chs": "阿斯圖里亞斯人", "xloc": [ - "default.handlebars->27->986" + "default.handlebars->27->992" ] }, { @@ -4172,7 +4168,7 @@ "ru": "Приложение аутентификации", "zh-chs": "身份驗證應用", "xloc": [ - "default.handlebars->27->1721" + "default.handlebars->27->1727" ] }, { @@ -4195,8 +4191,8 @@ "default-mobile.handlebars->9->73", "default.handlebars->27->125", "default.handlebars->27->130", - "default.handlebars->27->950", - "default.handlebars->27->952" + "default.handlebars->27->956", + "default.handlebars->27->958" ] }, { @@ -4264,7 +4260,7 @@ "ru": "Автоудаление", "zh-chs": "自動刪除", "xloc": [ - "default.handlebars->27->1233" + "default.handlebars->27->1239" ] }, { @@ -4318,7 +4314,7 @@ "ru": "Азербайджанский", "zh-chs": "阿塞拜疆", "xloc": [ - "default.handlebars->27->987" + "default.handlebars->27->993" ] }, { @@ -4336,7 +4332,7 @@ "zh-chs": "的BIOS", "xloc": [ "default-mobile.handlebars->9->369", - "default.handlebars->27->905" + "default.handlebars->27->911" ] }, { @@ -4416,7 +4412,7 @@ "ru": "Фоновый и интерактивный", "zh-chs": "背景與互動", "xloc": [ - "default.handlebars->27->357" + "default.handlebars->27->359" ] }, { @@ -4433,8 +4429,8 @@ "ru": "Фоновый и интерактивный", "zh-chs": "背景與互動", "xloc": [ - "default.handlebars->27->1409", - "default.handlebars->27->1416", + "default.handlebars->27->1415", + "default.handlebars->27->1422", "default.handlebars->27->335" ] }, @@ -4452,10 +4448,10 @@ "ru": "Только фоновый", "zh-chs": "僅背景", "xloc": [ - "default.handlebars->27->1410", - "default.handlebars->27->1417", + "default.handlebars->27->1416", + "default.handlebars->27->1423", "default.handlebars->27->336", - "default.handlebars->27->358" + "default.handlebars->27->360" ] }, { @@ -4489,7 +4485,7 @@ "ru": "Резервные коды", "zh-chs": "備用碼", "xloc": [ - "default.handlebars->27->1723" + "default.handlebars->27->1729" ] }, { @@ -4506,7 +4502,7 @@ "ru": "Плохой ключ", "zh-chs": "錯誤的簽名", "xloc": [ - "default.handlebars->27->1844" + "default.handlebars->27->1848" ] }, { @@ -4523,7 +4519,7 @@ "ru": "Плохой веб-сертификат", "zh-chs": "錯誤的網絡證書", "xloc": [ - "default.handlebars->27->1843" + "default.handlebars->27->1847" ] }, { @@ -4540,7 +4536,7 @@ "ru": "Баскский", "zh-chs": "巴斯克", "xloc": [ - "default.handlebars->27->988" + "default.handlebars->27->994" ] }, { @@ -4574,7 +4570,7 @@ "ru": "Белорусский", "zh-chs": "白俄羅斯語", "xloc": [ - "default.handlebars->27->990" + "default.handlebars->27->996" ] }, { @@ -4591,7 +4587,7 @@ "ru": "Бенгальский", "zh-chs": "孟加拉", "xloc": [ - "default.handlebars->27->991" + "default.handlebars->27->997" ] }, { @@ -4627,7 +4623,7 @@ "ru": "Боснийский", "zh-chs": "波斯尼亞人", "xloc": [ - "default.handlebars->27->992" + "default.handlebars->27->998" ] }, { @@ -4644,7 +4640,7 @@ "ru": "Бретонский", "zh-chs": "布列塔尼", "xloc": [ - "default.handlebars->27->993" + "default.handlebars->27->999" ] }, { @@ -4661,7 +4657,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播", "xloc": [ - "default.handlebars->27->1637", + "default.handlebars->27->1643", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -4679,7 +4675,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播消息", "xloc": [ - "default.handlebars->27->1572" + "default.handlebars->27->1578" ] }, { @@ -4696,7 +4692,7 @@ "ru": "Отправить сообщение всем подключенным пользователям.", "zh-chs": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->27->1567" + "default.handlebars->27->1573" ] }, { @@ -4713,7 +4709,7 @@ "ru": "Болгарский", "zh-chs": "保加利亞語", "xloc": [ - "default.handlebars->27->989" + "default.handlebars->27->995" ] }, { @@ -4730,7 +4726,7 @@ "ru": "Бирманский", "zh-chs": "緬甸人", "xloc": [ - "default.handlebars->27->994" + "default.handlebars->27->1000" ] }, { @@ -4748,7 +4744,7 @@ "zh-chs": "CCM", "xloc": [ "default-mobile.handlebars->9->230", - "default.handlebars->27->537" + "default.handlebars->27->543" ] }, { @@ -4766,10 +4762,10 @@ "zh-chs": "CIRA", "xloc": [ "default-mobile.handlebars->9->200", - "default.handlebars->27->1297", - "default.handlebars->27->1302", + "default.handlebars->27->1303", + "default.handlebars->27->1308", "default.handlebars->27->197", - "default.handlebars->27->412" + "default.handlebars->27->418" ] }, { @@ -4786,7 +4782,7 @@ "ru": "CIRA Сервер", "zh-chs": "CIRA服務器", "xloc": [ - "default.handlebars->27->1894" + "default.handlebars->27->1898" ] }, { @@ -4803,7 +4799,7 @@ "ru": "CIRA Сервер команды", "zh-chs": "CIRA服務器命令", "xloc": [ - "default.handlebars->27->1895" + "default.handlebars->27->1899" ] }, { @@ -4820,7 +4816,7 @@ "zh-chs": "CPU", "xloc": [ "default-mobile.handlebars->9->375", - "default.handlebars->27->911" + "default.handlebars->27->917" ] }, { @@ -4837,7 +4833,7 @@ "ru": "Загрузка CPU", "zh-chs": "CPU負載", "xloc": [ - "default.handlebars->27->1858" + "default.handlebars->27->1862" ] }, { @@ -4854,7 +4850,7 @@ "ru": "Загрузка CPU за последние 15 минут", "zh-chs": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1861" + "default.handlebars->27->1865" ] }, { @@ -4871,7 +4867,7 @@ "ru": "Загрузка CPU за последние 5 минут", "zh-chs": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1860" + "default.handlebars->27->1864" ] }, { @@ -4888,7 +4884,7 @@ "ru": "Загрузка CPU за последнюю минуту", "zh-chs": "最後一分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1859" + "default.handlebars->27->1863" ] }, { @@ -4905,8 +4901,8 @@ "ru": "CR+LF", "zh-chs": "CR +低頻", "xloc": [ - "default.handlebars->27->795", - "default.handlebars->27->804", + "default.handlebars->27->801", + "default.handlebars->27->810", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -4923,7 +4919,7 @@ "ru": "CSV", "zh-chs": "CSV", "xloc": [ - "default.handlebars->27->1490" + "default.handlebars->27->1496" ] }, { @@ -4940,9 +4936,9 @@ "ru": "Формат CSV", "zh-chs": "CSV格式", "xloc": [ - "default.handlebars->27->1494", - "default.handlebars->27->1559", - "default.handlebars->27->453" + "default.handlebars->27->1500", + "default.handlebars->27->1565", + "default.handlebars->27->459" ] }, { @@ -4959,7 +4955,7 @@ "ru": "Ошибка вызова", "zh-chs": "通話錯誤", "xloc": [ - "default.handlebars->27->1907" + "default.handlebars->27->1911" ] }, { @@ -4978,7 +4974,7 @@ "xloc": [ "default-mobile.handlebars->9->82", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->27->1214", + "default.handlebars->27->1220", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -4998,8 +4994,8 @@ "xloc": [ "default-mobile.handlebars->9->383", "default-mobile.handlebars->9->385", - "default.handlebars->27->919", - "default.handlebars->27->921" + "default.handlebars->27->925", + "default.handlebars->27->927" ] }, { @@ -5017,7 +5013,7 @@ "zh-chs": "容量/速度", "xloc": [ "default-mobile.handlebars->9->378", - "default.handlebars->27->914" + "default.handlebars->27->920" ] }, { @@ -5034,7 +5030,7 @@ "ru": "Каталонский", "zh-chs": "加泰羅尼亞語", "xloc": [ - "default.handlebars->27->995" + "default.handlebars->27->1001" ] }, { @@ -5051,7 +5047,7 @@ "ru": "Установить центр карты здесь", "zh-chs": "中心地圖在這裡", "xloc": [ - "default.handlebars->27->499" + "default.handlebars->27->505" ] }, { @@ -5068,7 +5064,7 @@ "ru": "Чаморро", "zh-chs": "查莫羅", "xloc": [ - "default.handlebars->27->996" + "default.handlebars->27->1002" ] }, { @@ -5099,7 +5095,7 @@ "ru": "Смена email для {0}", "zh-chs": "更改{0}的電子郵件", "xloc": [ - "default.handlebars->27->1751" + "default.handlebars->27->1757" ] }, { @@ -5116,9 +5112,9 @@ "ru": "Смена группы", "zh-chs": "變更組", "xloc": [ - "default.handlebars->27->593", - "default.handlebars->27->711", - "default.handlebars->27->712" + "default.handlebars->27->599", + "default.handlebars->27->717", + "default.handlebars->27->718" ] }, { @@ -5136,8 +5132,8 @@ "zh-chs": "更改密碼", "xloc": [ "default-mobile.handlebars->9->90", - "default.handlebars->27->1190", - "default.handlebars->27->1738" + "default.handlebars->27->1196", + "default.handlebars->27->1744" ] }, { @@ -5154,14 +5150,14 @@ "ru": "Смена пароля для {0}", "zh-chs": "更改{0}的密碼", "xloc": [ - "default.handlebars->27->1758" + "default.handlebars->27->1764" ] }, { "en": "Change Real Name for {0}", "nl": "Verander echte naam voor {0}", "xloc": [ - "default.handlebars->27->1746" + "default.handlebars->27->1752" ] }, { @@ -5231,7 +5227,7 @@ "ru": "Изменить пароль для этого пользователя", "zh-chs": "更改該用戶的密碼", "xloc": [ - "default.handlebars->27->1737" + "default.handlebars->27->1743" ] }, { @@ -5265,7 +5261,7 @@ "ru": "Измените адрес электронной почты вашей учетной записи здесь.", "zh-chs": "在此處更改您的帳戶電子郵件地址。", "xloc": [ - "default.handlebars->27->1177" + "default.handlebars->27->1183" ] }, { @@ -5282,7 +5278,7 @@ "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.", "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->27->1183" + "default.handlebars->27->1189" ] }, { @@ -5299,7 +5295,7 @@ "ru": "Изменение языка потребует перезагрузить страницу.", "zh-chs": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->27->1162" + "default.handlebars->27->1168" ] }, { @@ -5316,9 +5312,9 @@ "ru": "Чат", "zh-chs": "聊天室", "xloc": [ - "default.handlebars->27->1511", - "default.handlebars->27->646", - "default.handlebars->27->665" + "default.handlebars->27->1517", + "default.handlebars->27->652", + "default.handlebars->27->671" ] }, { @@ -5337,8 +5333,8 @@ "xloc": [ "default-mobile.handlebars->9->422", "default-mobile.handlebars->9->440", - "default.handlebars->27->1359", - "default.handlebars->27->1393" + "default.handlebars->27->1365", + "default.handlebars->27->1399" ] }, { @@ -5362,7 +5358,7 @@ "ru": "Чеченский", "zh-chs": "車臣", "xloc": [ - "default.handlebars->27->997" + "default.handlebars->27->1003" ] }, { @@ -5443,8 +5439,8 @@ "ru": "Проверка...", "zh-chs": "檢查...", "xloc": [ - "default.handlebars->27->1901", - "default.handlebars->27->963" + "default.handlebars->27->1905", + "default.handlebars->27->969" ] }, { @@ -5461,7 +5457,7 @@ "ru": "Китайский", "zh-chs": "中文", "xloc": [ - "default.handlebars->27->998" + "default.handlebars->27->1004" ] }, { @@ -5478,7 +5474,7 @@ "ru": "Китайский (Гонконг)", "zh-chs": "中文(香港)", "xloc": [ - "default.handlebars->27->999" + "default.handlebars->27->1005" ] }, { @@ -5495,7 +5491,7 @@ "ru": "Китайский (КНР)", "zh-chs": "中文(中國)", "xloc": [ - "default.handlebars->27->1000" + "default.handlebars->27->1006" ] }, { @@ -5512,7 +5508,7 @@ "ru": "Упрощенный китайский)", "zh-chs": "简体中文)", "xloc": [ - "default.handlebars->27->1160" + "default.handlebars->27->1166" ] }, { @@ -5529,7 +5525,7 @@ "ru": "Китайский (Сингапур)", "zh-chs": "中文(新加坡)", "xloc": [ - "default.handlebars->27->1001" + "default.handlebars->27->1007" ] }, { @@ -5546,7 +5542,7 @@ "ru": "Китайский (Тайвань)", "zh-chs": "中文(台灣)", "xloc": [ - "default.handlebars->27->1002" + "default.handlebars->27->1008" ] }, { @@ -5581,7 +5577,7 @@ "ru": "Чувашский", "zh-chs": "楚瓦什", "xloc": [ - "default.handlebars->27->1003" + "default.handlebars->27->1009" ] }, { @@ -5621,11 +5617,11 @@ "default-mobile.handlebars->9->318", "default-mobile.handlebars->9->320", "default-mobile.handlebars->9->59", - "default.handlebars->27->1474", - "default.handlebars->27->830", - "default.handlebars->27->832", - "default.handlebars->27->834", + "default.handlebars->27->1480", "default.handlebars->27->836", + "default.handlebars->27->838", + "default.handlebars->27->840", + "default.handlebars->27->842", "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" @@ -5659,7 +5655,7 @@ "nl": "Wis alle meldingen", "zh-chs": "全部清除", "xloc": [ - "default.handlebars->27->1831" + "default.handlebars->27->1835" ] }, { @@ -5676,7 +5672,7 @@ "ru": "Очистить ядро", "zh-chs": "清除核心", "xloc": [ - "default.handlebars->27->935" + "default.handlebars->27->941" ] }, { @@ -5709,7 +5705,7 @@ "ru": "Очистить это уведомление", "zh-chs": "清除此通知", "xloc": [ - "default.handlebars->27->1830" + "default.handlebars->27->1834" ] }, { @@ -5754,8 +5750,8 @@ "nl": "Klik hier om de apparaatgroepsnaam te bewerken", "zh-chs": "单击此处编辑设备组名称", "xloc": [ - "default.handlebars->27->1225", - "default.handlebars->27->1430" + "default.handlebars->27->1231", + "default.handlebars->27->1436" ] }, { @@ -5772,7 +5768,7 @@ "ru": "Для изменения имени устройства на сервере нажмите сюда", "zh-chs": "單擊此處編輯服務器端設備名稱", "xloc": [ - "default.handlebars->27->515" + "default.handlebars->27->521" ] }, { @@ -5785,7 +5781,7 @@ "nl": "Klik hier om de gebruikersgroepsnaam te bewerken", "zh-chs": "单击此处编辑用户组名称", "xloc": [ - "default.handlebars->27->1626" + "default.handlebars->27->1632" ] }, { @@ -5835,7 +5831,7 @@ "zh-chs": "單擊確定將驗證郵件發送到:", "xloc": [ "default-mobile.handlebars->9->75", - "default.handlebars->27->1174" + "default.handlebars->27->1180" ] }, { @@ -5870,7 +5866,7 @@ "zh-chs": "客戶端控制模式(CCM)", "xloc": [ "default-mobile.handlebars->9->356", - "default.handlebars->27->892" + "default.handlebars->27->898" ] }, { @@ -5887,8 +5883,8 @@ "ru": "Клиент инициировал удаленный доступ", "zh-chs": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->27->1296", - "default.handlebars->27->1301" + "default.handlebars->27->1302", + "default.handlebars->27->1307" ] }, { @@ -5925,7 +5921,7 @@ "default-mobile.handlebars->9->57", "default.handlebars->27->137", "default.handlebars->27->145", - "default.handlebars->27->788" + "default.handlebars->27->794" ] }, { @@ -5968,8 +5964,8 @@ "ru": "Общие группы устройств", "zh-chs": "通用設備組", "xloc": [ - "default.handlebars->27->1645", - "default.handlebars->27->1763" + "default.handlebars->27->1651", + "default.handlebars->27->1769" ] }, { @@ -5986,8 +5982,8 @@ "ru": "Общие устройства", "zh-chs": "通用設備", "xloc": [ - "default.handlebars->27->1651", - "default.handlebars->27->1775" + "default.handlebars->27->1657", + "default.handlebars->27->1781" ] }, { @@ -6005,7 +6001,7 @@ "zh-chs": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->9->127", - "default.handlebars->27->1469" + "default.handlebars->27->1475" ] }, { @@ -6024,14 +6020,14 @@ "xloc": [ "default-mobile.handlebars->9->276", "default-mobile.handlebars->9->402", - "default.handlebars->27->1310", - "default.handlebars->27->1539", - "default.handlebars->27->1616", - "default.handlebars->27->1665", - "default.handlebars->27->1761", - "default.handlebars->27->437", - "default.handlebars->27->706", - "default.handlebars->27->715" + "default.handlebars->27->1316", + "default.handlebars->27->1545", + "default.handlebars->27->1622", + "default.handlebars->27->1671", + "default.handlebars->27->1767", + "default.handlebars->27->443", + "default.handlebars->27->712", + "default.handlebars->27->721" ] }, { @@ -6049,7 +6045,7 @@ "zh-chs": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->9->309", - "default.handlebars->27->825" + "default.handlebars->27->831" ] }, { @@ -6067,7 +6063,7 @@ "zh-chs": "確認{0}個條目的副本到此位置?", "xloc": [ "default-mobile.handlebars->9->308", - "default.handlebars->27->824" + "default.handlebars->27->830" ] }, { @@ -6081,7 +6077,7 @@ "nl": "Bevestig verwijdering geselecteerde account(s)?", "zh-chs": "确认删除选定的帐户?", "xloc": [ - "default.handlebars->27->1538" + "default.handlebars->27->1544" ] }, { @@ -6098,7 +6094,7 @@ "ru": "Подтвердить удаление выбранных устройств?", "zh-chs": "確認刪除所選設備?", "xloc": [ - "default.handlebars->27->436" + "default.handlebars->27->442" ] }, { @@ -6112,7 +6108,7 @@ "nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?", "zh-chs": "确认删除选定的用户组?", "xloc": [ - "default.handlebars->27->1615" + "default.handlebars->27->1621" ] }, { @@ -6129,7 +6125,7 @@ "ru": "Подтвердить удаление пользователя {0}?", "zh-chs": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->27->1760" + "default.handlebars->27->1766" ] }, { @@ -6143,7 +6139,7 @@ "nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户\\“ {0} \\”的成员身份?", "xloc": [ - "default.handlebars->27->1668" + "default.handlebars->27->1674" ] }, { @@ -6157,7 +6153,7 @@ "nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组 “{0}” 的成员身份?", "xloc": [ - "default.handlebars->27->1790" + "default.handlebars->27->1796" ] }, { @@ -6175,7 +6171,7 @@ "zh-chs": "確認將1個入口移動到此位置?", "xloc": [ "default-mobile.handlebars->9->311", - "default.handlebars->27->827" + "default.handlebars->27->833" ] }, { @@ -6193,7 +6189,7 @@ "zh-chs": "確認將{0}個條目移到此位置?", "xloc": [ "default-mobile.handlebars->9->310", - "default.handlebars->27->826" + "default.handlebars->27->832" ] }, { @@ -6210,7 +6206,7 @@ "ru": "Подтвердить перезапись?", "zh-chs": "確認覆蓋?", "xloc": [ - "default.handlebars->27->1468" + "default.handlebars->27->1474" ] }, { @@ -6224,8 +6220,8 @@ "nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?", "zh-chs": "确认删除设备“ {0} ”的访问权限?", "xloc": [ - "default.handlebars->27->1658", - "default.handlebars->27->1781" + "default.handlebars->27->1664", + "default.handlebars->27->1787" ] }, { @@ -6239,8 +6235,8 @@ "nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?", "zh-chs": "是否确认删除设备组“ {0}”的访问权限?", "xloc": [ - "default.handlebars->27->1660", - "default.handlebars->27->1794" + "default.handlebars->27->1666", + "default.handlebars->27->1800" ] }, { @@ -6254,7 +6250,7 @@ "nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户\\“ {0} \\”的访问权限?", "xloc": [ - "default.handlebars->27->1783" + "default.handlebars->27->1789" ] }, { @@ -6268,7 +6264,7 @@ "nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组“ {0}”的访问权限?", "xloc": [ - "default.handlebars->27->1786" + "default.handlebars->27->1792" ] }, { @@ -6282,8 +6278,8 @@ "nl": "Verwijdering van toegangsrechten bevestigen?", "zh-chs": "确认删除访问权限?", "xloc": [ - "default.handlebars->27->1784", - "default.handlebars->27->1787" + "default.handlebars->27->1790", + "default.handlebars->27->1793" ] }, { @@ -6301,7 +6297,7 @@ "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?", "xloc": [ "default-mobile.handlebars->9->74", - "default.handlebars->27->953" + "default.handlebars->27->959" ] }, { @@ -6356,7 +6352,7 @@ "nl": "Bevestig de verwijdering van rechten voor gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户“ {0} ”的权限?", "xloc": [ - "default.handlebars->27->1402" + "default.handlebars->27->1408" ] }, { @@ -6370,7 +6366,7 @@ "nl": "Bevestig de verwijdering van rechten voor de gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组“ {0} ”的权限?", "xloc": [ - "default.handlebars->27->1404" + "default.handlebars->27->1410" ] }, { @@ -6418,8 +6414,8 @@ "default-mobile.handlebars->9->291", "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->27->1249", - "default.handlebars->27->807", + "default.handlebars->27->1255", + "default.handlebars->27->813", "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", @@ -6459,8 +6455,8 @@ "ru": "Подключиться к серверу", "zh-chs": "連接到服務器", "xloc": [ - "default.handlebars->27->1300", - "default.handlebars->27->1304" + "default.handlebars->27->1306", + "default.handlebars->27->1310" ] }, { @@ -6531,7 +6527,7 @@ "ru": "Подключено Intel® AMT", "zh-chs": "連接的英特爾®AMT", "xloc": [ - "default.handlebars->27->1849" + "default.handlebars->27->1853" ] }, { @@ -6548,7 +6544,7 @@ "ru": "Подключенные пользователи", "zh-chs": "關聯用戶", "xloc": [ - "default.handlebars->27->1854" + "default.handlebars->27->1858" ] }, { @@ -6566,7 +6562,7 @@ "zh-chs": "現在已連接", "xloc": [ "default-mobile.handlebars->9->331", - "default.handlebars->27->857" + "default.handlebars->27->863" ] }, { @@ -6606,7 +6602,7 @@ "default.handlebars->27->222", "default.handlebars->27->225", "default.handlebars->27->251", - "default.handlebars->27->848", + "default.handlebars->27->854", "default.handlebars->27->9", "xterm.handlebars->9->2" ] @@ -6625,7 +6621,7 @@ "ru": "Подключений ", "zh-chs": "連接數", "xloc": [ - "default.handlebars->27->1865" + "default.handlebars->27->1869" ] }, { @@ -6642,7 +6638,7 @@ "ru": "Ретранслятор подключения", "zh-chs": "連接繼電器", "xloc": [ - "default.handlebars->27->1893" + "default.handlebars->27->1897" ] }, { @@ -6694,9 +6690,9 @@ "zh-chs": "連接性", "xloc": [ "default-mobile.handlebars->9->244", - "default.handlebars->27->1437", + "default.handlebars->27->1443", "default.handlebars->27->213", - "default.handlebars->27->582", + "default.handlebars->27->588", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" ] }, @@ -6714,8 +6710,8 @@ "ru": "Консоль", "zh-chs": "安慰", "xloc": [ - "default.handlebars->27->641", - "default.handlebars->27->660", + "default.handlebars->27->647", + "default.handlebars->27->666", "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" @@ -6735,7 +6731,7 @@ "ru": "Консоль - ", "zh-chs": "安慰 -", "xloc": [ - "default.handlebars->27->516" + "default.handlebars->27->522" ] }, { @@ -6751,8 +6747,8 @@ "ru": "контроль", "zh-chs": "控制", "xloc": [ - "default.handlebars->27->640", - "default.handlebars->27->659", + "default.handlebars->27->646", + "default.handlebars->27->665", "messenger.handlebars->13->1" ] }, @@ -6770,7 +6766,7 @@ "ru": "Cookie-кодировщик", "zh-chs": "Cookie編碼器", "xloc": [ - "default.handlebars->27->1879" + "default.handlebars->27->1883" ] }, { @@ -6826,7 +6822,7 @@ "ru": "Скопировать ссылку MacOS agent в буфер обмена", "zh-chs": "將MacOS代理URL複製到剪貼板", "xloc": [ - "default.handlebars->27->376" + "default.handlebars->27->378" ] }, { @@ -6842,7 +6838,7 @@ "ru": "Скопировать URL-адрес агента Windows 32bit в буфер обмена", "zh-chs": "将Windows 32位代理URL复制到剪贴板", "xloc": [ - "default.handlebars->27->364" + "default.handlebars->27->366" ] }, { @@ -6858,7 +6854,7 @@ "ru": "Скопировать URL-адрес агента Windows 64bit в буфер обмена", "zh-chs": "将Windows 64位代理URL复制到剪贴板", "xloc": [ - "default.handlebars->27->368" + "default.handlebars->27->370" ] }, { @@ -6889,6 +6885,12 @@ "default.handlebars->27->99" ] }, + { + "en": "Copy agent URL to clipboard", + "xloc": [ + "default.handlebars->27->390" + ] + }, { "cs": "Kopírovat odkaz do schránky", "de": "Link in Zwischenablage kopieren", @@ -6903,8 +6905,8 @@ "ru": "Скопировать ссылку в буфер обмена", "zh-chs": "複製鏈接到剪貼板", "xloc": [ - "default.handlebars->27->1442", - "default.handlebars->27->1456", + "default.handlebars->27->1448", + "default.handlebars->27->1462", "default.handlebars->27->348" ] }, @@ -7082,7 +7084,7 @@ "ru": "Основной сервер", "zh-chs": "核心服務器", "xloc": [ - "default.handlebars->27->1878" + "default.handlebars->27->1882" ] }, { @@ -7099,7 +7101,7 @@ "ru": "Kорсиканский", "zh-chs": "科西嘉人", "xloc": [ - "default.handlebars->27->1004" + "default.handlebars->27->1010" ] }, { @@ -7116,7 +7118,7 @@ "ru": "Создать учетную запись", "zh-chs": "創建帳號", "xloc": [ - "default.handlebars->27->1586", + "default.handlebars->27->1592", "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" ] @@ -7152,7 +7154,7 @@ "ru": "Создать группу пользователей", "zh-chs": "創建用戶組", "xloc": [ - "default.handlebars->27->1623" + "default.handlebars->27->1629" ] }, { @@ -7169,7 +7171,7 @@ "ru": "Создайте новую группу устройств, используя параметры ниже.", "zh-chs": "使用以下選項創建一個新的設備組。", "xloc": [ - "default.handlebars->27->1197" + "default.handlebars->27->1203" ] }, { @@ -7203,7 +7205,7 @@ "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:", "xloc": [ - "default.handlebars->27->1550" + "default.handlebars->27->1556" ] }, { @@ -7238,7 +7240,7 @@ "ru": "Создано", "zh-chs": "創建", "xloc": [ - "default.handlebars->27->1697" + "default.handlebars->27->1703" ] }, { @@ -7273,7 +7275,7 @@ "ru": "Кри (Канадский язык)", "zh-chs": "克里", "xloc": [ - "default.handlebars->27->1005" + "default.handlebars->27->1011" ] }, { @@ -7290,7 +7292,7 @@ "ru": "Хорватский", "zh-chs": "克羅地亞語", "xloc": [ - "default.handlebars->27->1006" + "default.handlebars->27->1012" ] }, { @@ -7431,7 +7433,7 @@ "ru": "Чешский", "zh-chs": "捷克文", "xloc": [ - "default.handlebars->27->1007" + "default.handlebars->27->1013" ] }, { @@ -7465,7 +7467,7 @@ "ru": "Датский", "zh-chs": "丹麥文", "xloc": [ - "default.handlebars->27->1008" + "default.handlebars->27->1014" ] }, { @@ -7482,7 +7484,7 @@ "ru": "DataChannel", "zh-chs": "數據通道", "xloc": [ - "default.handlebars->27->758" + "default.handlebars->27->764" ] }, { @@ -7499,7 +7501,7 @@ "ru": "Дата & Время", "zh-chs": "日期和時間", "xloc": [ - "default.handlebars->27->1165" + "default.handlebars->27->1171" ] }, { @@ -7517,7 +7519,7 @@ "zh-chs": "天", "xloc": [ "default-mobile.handlebars->9->266", - "default.handlebars->27->690" + "default.handlebars->27->696" ] }, { @@ -7534,7 +7536,7 @@ "ru": "Деактивировать режим управления клиентом (CCM)", "zh-chs": "停用客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->27->1288" + "default.handlebars->27->1294" ] }, { @@ -7552,17 +7554,17 @@ "zh-chs": "沉睡", "xloc": [ "default-mobile.handlebars->9->188", - "default.handlebars->27->395" + "default.handlebars->27->401" ] }, { "en": "Default", "nl": "Standaard", "xloc": [ - "default.handlebars->27->1573", - "default.handlebars->27->1619", - "default.handlebars->27->1630", - "default.handlebars->27->1686" + "default.handlebars->27->1579", + "default.handlebars->27->1625", + "default.handlebars->27->1636", + "default.handlebars->27->1692" ] }, { @@ -7583,9 +7585,9 @@ "default-mobile.handlebars->9->301", "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->27->1463", - "default.handlebars->27->486", - "default.handlebars->27->817", + "default.handlebars->27->1469", + "default.handlebars->27->492", + "default.handlebars->27->823", "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", @@ -7609,7 +7611,7 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->9->84", - "default.handlebars->27->1182" + "default.handlebars->27->1188" ] }, { @@ -7623,7 +7625,7 @@ "nl": "Verwijder accounts", "zh-chs": "删除帐号", "xloc": [ - "default.handlebars->27->1540" + "default.handlebars->27->1546" ] }, { @@ -7641,7 +7643,7 @@ "zh-chs": "刪除裝置", "xloc": [ "default-mobile.handlebars->9->249", - "default.handlebars->27->595" + "default.handlebars->27->601" ] }, { @@ -7660,8 +7662,8 @@ "xloc": [ "default-mobile.handlebars->9->400", "default-mobile.handlebars->9->403", - "default.handlebars->27->1281", - "default.handlebars->27->1311" + "default.handlebars->27->1287", + "default.handlebars->27->1317" ] }, { @@ -7679,7 +7681,7 @@ "zh-chs": "刪除節點", "xloc": [ "default-mobile.handlebars->9->274", - "default.handlebars->27->716" + "default.handlebars->27->722" ] }, { @@ -7696,7 +7698,7 @@ "ru": "Удалить устройства", "zh-chs": "刪除節點", "xloc": [ - "default.handlebars->27->438" + "default.handlebars->27->444" ] }, { @@ -7713,7 +7715,7 @@ "ru": "Удалить пользователя", "zh-chs": "刪除用戶", "xloc": [ - "default.handlebars->27->1736" + "default.handlebars->27->1742" ] }, { @@ -7730,8 +7732,8 @@ "ru": "Удалить группу пользователей", "zh-chs": "刪除用戶組", "xloc": [ - "default.handlebars->27->1656", - "default.handlebars->27->1666" + "default.handlebars->27->1662", + "default.handlebars->27->1672" ] }, { @@ -7745,7 +7747,7 @@ "nl": "Gebruikersgroepen verwijderen", "zh-chs": "删除用户组", "xloc": [ - "default.handlebars->27->1617" + "default.handlebars->27->1623" ] }, { @@ -7762,7 +7764,7 @@ "ru": "Удалить пользователя {0}", "zh-chs": "刪除用戶{0}", "xloc": [ - "default.handlebars->27->1759" + "default.handlebars->27->1765" ] }, { @@ -7780,7 +7782,7 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->27->1536", + "default.handlebars->27->1542", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -7798,7 +7800,7 @@ "ru": "Удалить устройства", "zh-chs": "刪除設備", "xloc": [ - "default.handlebars->27->434" + "default.handlebars->27->440" ] }, { @@ -7812,7 +7814,7 @@ "nl": "Verwijder groep", "zh-chs": "删除群组", "xloc": [ - "default.handlebars->27->1613" + "default.handlebars->27->1619" ] }, { @@ -7829,7 +7831,7 @@ "ru": "Удалить пункт?", "zh-chs": "刪除項目?", "xloc": [ - "default.handlebars->27->487" + "default.handlebars->27->493" ] }, { @@ -7848,8 +7850,8 @@ "xloc": [ "default-mobile.handlebars->9->124", "default-mobile.handlebars->9->303", - "default.handlebars->27->1465", - "default.handlebars->27->819" + "default.handlebars->27->1471", + "default.handlebars->27->825" ] }, { @@ -7866,7 +7868,7 @@ "ru": "Удалить группу пользователей {0}?", "zh-chs": "刪除用戶組{0}?", "xloc": [ - "default.handlebars->27->1664" + "default.handlebars->27->1670" ] }, { @@ -7885,8 +7887,8 @@ "xloc": [ "default-mobile.handlebars->9->123", "default-mobile.handlebars->9->302", - "default.handlebars->27->1464", - "default.handlebars->27->818" + "default.handlebars->27->1470", + "default.handlebars->27->824" ] }, { @@ -7916,7 +7918,7 @@ "ko": "거부", "zh-chs": "被拒绝", "xloc": [ - "default.handlebars->27->754" + "default.handlebars->27->760" ] }, { @@ -8000,19 +8002,19 @@ "default-mobile.handlebars->9->337", "default-mobile.handlebars->9->392", "default-mobile.handlebars->9->405", - "default.handlebars->27->1202", - "default.handlebars->27->1230", - "default.handlebars->27->1313", - "default.handlebars->27->1622", - "default.handlebars->27->1632", - "default.handlebars->27->1633", - "default.handlebars->27->1662", - "default.handlebars->27->527", - "default.handlebars->27->528", - "default.handlebars->27->749", + "default.handlebars->27->1208", + "default.handlebars->27->1236", + "default.handlebars->27->1319", + "default.handlebars->27->1628", + "default.handlebars->27->1638", + "default.handlebars->27->1639", + "default.handlebars->27->1668", + "default.handlebars->27->533", + "default.handlebars->27->534", + "default.handlebars->27->755", "default.handlebars->27->77", - "default.handlebars->27->863", - "default.handlebars->27->873", + "default.handlebars->27->869", + "default.handlebars->27->879", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] }, @@ -8045,9 +8047,9 @@ "zh-chs": "桌面", "xloc": [ "default-mobile.handlebars->9->256", - "default.handlebars->27->1318", - "default.handlebars->27->1808", - "default.handlebars->27->492", + "default.handlebars->27->1324", + "default.handlebars->27->1812", + "default.handlebars->27->498", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop" ] @@ -8083,9 +8085,9 @@ "ru": "Уведомление на рабочем столе", "zh-chs": "桌面通知", "xloc": [ - "default.handlebars->27->1240", - "default.handlebars->27->1712", - "default.handlebars->27->563" + "default.handlebars->27->1246", + "default.handlebars->27->1718", + "default.handlebars->27->569" ] }, { @@ -8102,9 +8104,9 @@ "ru": "Запрос рабочего стола", "zh-chs": "桌面提示", "xloc": [ - "default.handlebars->27->1239", - "default.handlebars->27->1711", - "default.handlebars->27->562" + "default.handlebars->27->1245", + "default.handlebars->27->1717", + "default.handlebars->27->568" ] }, { @@ -8121,9 +8123,9 @@ "ru": "Запрос рабочего стола + панель инструментов", "zh-chs": "桌面提示+工具欄", "xloc": [ - "default.handlebars->27->1237", - "default.handlebars->27->1709", - "default.handlebars->27->560" + "default.handlebars->27->1243", + "default.handlebars->27->1715", + "default.handlebars->27->566" ] }, { @@ -8154,9 +8156,9 @@ "ru": "Панель инструментов рабочего стола", "zh-chs": "桌面工具欄", "xloc": [ - "default.handlebars->27->1238", - "default.handlebars->27->1710", - "default.handlebars->27->561" + "default.handlebars->27->1244", + "default.handlebars->27->1716", + "default.handlebars->27->567" ] }, { @@ -8227,8 +8229,8 @@ "ru": "Устройство", "zh-chs": "設備", "xloc": [ - "default.handlebars->27->1340", - "default.handlebars->27->1778", + "default.handlebars->27->1346", + "default.handlebars->27->1784", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -8247,7 +8249,7 @@ "zh-chs": "設備動作", "xloc": [ "default-mobile.handlebars->9->265", - "default.handlebars->27->685" + "default.handlebars->27->691" ] }, { @@ -8264,14 +8266,14 @@ "ru": "Группа устройства", "zh-chs": "設備組", "xloc": [ - "default.handlebars->27->1335", - "default.handlebars->27->1338", - "default.handlebars->27->1339", - "default.handlebars->27->1487", - "default.handlebars->27->1648", + "default.handlebars->27->1341", + "default.handlebars->27->1344", + "default.handlebars->27->1345", + "default.handlebars->27->1493", "default.handlebars->27->1654", - "default.handlebars->27->1766", - "default.handlebars->27->1817" + "default.handlebars->27->1660", + "default.handlebars->27->1772", + "default.handlebars->27->1821" ] }, { @@ -8289,7 +8291,7 @@ "zh-chs": "設備組用戶", "xloc": [ "default-mobile.handlebars->9->447", - "default.handlebars->27->1400" + "default.handlebars->27->1406" ] }, { @@ -8307,11 +8309,11 @@ "zh-chs": "設備組", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->27->1503", - "default.handlebars->27->1607", - "default.handlebars->27->1635", - "default.handlebars->27->1706", - "default.handlebars->27->1852", + "default.handlebars->27->1509", + "default.handlebars->27->1613", + "default.handlebars->27->1641", + "default.handlebars->27->1712", + "default.handlebars->27->1856", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -8329,7 +8331,7 @@ "ru": "Экспорт информации об устройстве", "zh-chs": "設備信息導出", "xloc": [ - "default.handlebars->27->457" + "default.handlebars->27->463" ] }, { @@ -8346,7 +8348,7 @@ "ru": "Местонахождение устройства", "zh-chs": "設備位置", "xloc": [ - "default.handlebars->27->717" + "default.handlebars->27->723" ] }, { @@ -8354,7 +8356,7 @@ "nl": "Apparaatbericht", "fr": "Message de Service", "xloc": [ - "default.handlebars->27->673" + "default.handlebars->27->679" ] }, { @@ -8372,9 +8374,9 @@ "zh-chs": "設備名稱", "xloc": [ "default-mobile.handlebars->9->278", - "default.handlebars->27->1816", + "default.handlebars->27->1820", "default.handlebars->27->269", - "default.handlebars->27->747", + "default.handlebars->27->753", "player.handlebars->3->9" ] }, @@ -8392,7 +8394,7 @@ "ru": "Уведомление устройства", "zh-chs": "設備通知", "xloc": [ - "default.handlebars->27->675" + "default.handlebars->27->681" ] }, { @@ -8426,8 +8428,8 @@ "ru": "Подключения устройств.", "zh-chs": "設備連接。", "xloc": [ - "default.handlebars->27->1170", - "default.handlebars->27->1421" + "default.handlebars->27->1176", + "default.handlebars->27->1427" ] }, { @@ -8444,8 +8446,8 @@ "ru": "Отключения устройств.", "zh-chs": "設備斷開連接。", "xloc": [ - "default.handlebars->27->1171", - "default.handlebars->27->1422" + "default.handlebars->27->1177", + "default.handlebars->27->1428" ] }, { @@ -8462,7 +8464,7 @@ "ru": "Примечания могут быть просмотрены и изменены другими администраторами.", "zh-chs": "其他設備組管理員可以查看和更改設備組註釋。", "xloc": [ - "default.handlebars->27->670" + "default.handlebars->27->676" ] }, { @@ -8472,7 +8474,7 @@ "default-mobile.handlebars->9->152", "default-mobile.handlebars->9->212", "default.handlebars->27->193", - "default.handlebars->27->513" + "default.handlebars->27->519" ] }, { @@ -8489,7 +8491,7 @@ "ru": "Устройство обнаружено, но состояние питания не может быть получено.", "zh-chs": "檢測到設備,但無法獲得電源狀態。", "xloc": [ - "default.handlebars->27->400" + "default.handlebars->27->406" ] }, { @@ -8507,7 +8509,7 @@ "zh-chs": "設備正在休眠(S4)", "xloc": [ "default-mobile.handlebars->9->196", - "default.handlebars->27->406" + "default.handlebars->27->412" ] }, { @@ -8525,7 +8527,7 @@ "zh-chs": "設備處於深度睡眠狀態(S3)", "xloc": [ "default-mobile.handlebars->9->195", - "default.handlebars->27->405" + "default.handlebars->27->411" ] }, { @@ -8542,7 +8544,7 @@ "ru": "Устройство находится в состоянии глубокого сна (S3).", "zh-chs": "設備處於深度睡眠狀態(S3)。", "xloc": [ - "default.handlebars->27->394" + "default.handlebars->27->400" ] }, { @@ -8559,7 +8561,7 @@ "ru": "Устройство находится в режиме гибернации (S4).", "zh-chs": "設備處於休眠狀態(S4)。", "xloc": [ - "default.handlebars->27->396" + "default.handlebars->27->402" ] }, { @@ -8576,7 +8578,7 @@ "ru": "Устройство находится в выключенном состоянии (S5).", "zh-chs": "設備處於關機狀態(S5)。", "xloc": [ - "default.handlebars->27->398" + "default.handlebars->27->404" ] }, { @@ -8594,7 +8596,7 @@ "zh-chs": "設備處於睡眠狀態(S1)", "xloc": [ "default-mobile.handlebars->9->193", - "default.handlebars->27->403" + "default.handlebars->27->409" ] }, { @@ -8611,7 +8613,7 @@ "ru": "Устройство находится в спящем режиме (S1).", "zh-chs": "設備處於睡眠狀態(S1)。", "xloc": [ - "default.handlebars->27->390" + "default.handlebars->27->396" ] }, { @@ -8629,7 +8631,7 @@ "zh-chs": "設備處於睡眠狀態(S2)", "xloc": [ "default-mobile.handlebars->9->194", - "default.handlebars->27->404" + "default.handlebars->27->410" ] }, { @@ -8646,7 +8648,7 @@ "ru": "Устройство находится в спящем режиме (S2).", "zh-chs": "設備處於睡眠狀態(S2)。", "xloc": [ - "default.handlebars->27->392" + "default.handlebars->27->398" ] }, { @@ -8664,7 +8666,7 @@ "zh-chs": "設備處於軟斷開狀態(S5)", "xloc": [ "default-mobile.handlebars->9->197", - "default.handlebars->27->407" + "default.handlebars->27->413" ] }, { @@ -8674,7 +8676,7 @@ "default-mobile.handlebars->9->151", "default-mobile.handlebars->9->211", "default.handlebars->27->192", - "default.handlebars->27->512" + "default.handlebars->27->518" ] }, { @@ -8692,7 +8694,7 @@ "zh-chs": "設備已上電", "xloc": [ "default-mobile.handlebars->9->192", - "default.handlebars->27->402" + "default.handlebars->27->408" ] }, { @@ -8709,7 +8711,7 @@ "ru": "Устройство включено.", "zh-chs": "設備上電。", "xloc": [ - "default.handlebars->27->388" + "default.handlebars->27->394" ] }, { @@ -8727,7 +8729,7 @@ "zh-chs": "設備存在,但無法確定電源狀態", "xloc": [ "default-mobile.handlebars->9->198", - "default.handlebars->27->408" + "default.handlebars->27->414" ] }, { @@ -8744,7 +8746,7 @@ "ru": "Имя устройства", "zh-chs": "設備名稱", "xloc": [ - "default.handlebars->27->504" + "default.handlebars->27->510" ] }, { @@ -8772,8 +8774,8 @@ "nl": "Apparaten", "zh-chs": "设备", "xloc": [ - "default.handlebars->27->1608", - "default.handlebars->27->1636" + "default.handlebars->27->1614", + "default.handlebars->27->1642" ] }, { @@ -8790,7 +8792,7 @@ "ru": "Отключено", "zh-chs": "殘障人士", "xloc": [ - "default.handlebars->27->555" + "default.handlebars->27->561" ] }, { @@ -8809,8 +8811,8 @@ "xloc": [ "default-mobile.handlebars->9->292", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->27->1250", - "default.handlebars->27->808", + "default.handlebars->27->1256", + "default.handlebars->27->814", "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" @@ -8866,7 +8868,7 @@ "nl": "Geef een berichtvenster weer op het externe apparaat.", "fr": "Afficher un message sur le poste distant", "xloc": [ - "default.handlebars->27->674" + "default.handlebars->27->680" ] }, { @@ -8891,7 +8893,7 @@ "nl": "Geef een tekstbericht weer op het externe apparaat", "fr": "Afficher un message sur le poste distant", "xloc": [ - "default.handlebars->27->591" + "default.handlebars->27->597" ] }, { @@ -8908,7 +8910,7 @@ "ru": "Отобразить имя группы устройств", "zh-chs": "顯示設備組名稱", "xloc": [ - "default.handlebars->27->1169" + "default.handlebars->27->1175" ] }, { @@ -8925,7 +8927,7 @@ "ru": "Отображаемое имя", "zh-chs": "顯示名稱", "xloc": [ - "default.handlebars->27->779" + "default.handlebars->27->785" ] }, { @@ -8941,7 +8943,7 @@ "ru": "Показать публичную ссылку", "zh-chs": "显示公共链接", "xloc": [ - "default.handlebars->27->1441" + "default.handlebars->27->1447" ] }, { @@ -8958,17 +8960,17 @@ "ru": "Ничего не делать", "zh-chs": "沒做什麼", "xloc": [ - "default.handlebars->27->1294" + "default.handlebars->27->1300" ] }, { "en": "Domain", "nl": "Domein", "xloc": [ - "default.handlebars->27->1574", - "default.handlebars->27->1620", - "default.handlebars->27->1629", - "default.handlebars->27->1685", + "default.handlebars->27->1580", + "default.handlebars->27->1626", + "default.handlebars->27->1635", + "default.handlebars->27->1691", "mstsc.handlebars->main->1->3->1->2->1->0", "mstsc.handlebars->main->1->3->1->2->3" ] @@ -8983,8 +8985,8 @@ "nl": "Niet configureren", "zh-chs": "不要配置", "xloc": [ - "default.handlebars->27->1298", - "default.handlebars->27->1303" + "default.handlebars->27->1304", + "default.handlebars->27->1309" ] }, { @@ -8997,7 +8999,7 @@ "nl": "Maak geen verbinding met de server", "zh-chs": "不要连接到服务器", "xloc": [ - "default.handlebars->27->1299" + "default.handlebars->27->1305" ] }, { @@ -9098,7 +9100,7 @@ "zh-chs": "下載文件", "xloc": [ "default-mobile.handlebars->9->322", - "default.handlebars->27->837" + "default.handlebars->27->843" ] }, { @@ -9132,7 +9134,7 @@ "ru": "Скачать MeshCmd", "zh-chs": "下載MeshCmd", "xloc": [ - "default.handlebars->27->739" + "default.handlebars->27->745" ] }, { @@ -9173,7 +9175,7 @@ "en": "Download Report", "nl": "Rapport downloaden", "xloc": [ - "default.handlebars->27->1492", + "default.handlebars->27->1498", "default.handlebars->container->column_l->p3->3->1->0->3" ] }, @@ -9191,7 +9193,7 @@ "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.", "zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。", "xloc": [ - "default.handlebars->27->732" + "default.handlebars->27->738" ] }, { @@ -9259,7 +9261,7 @@ "ru": "Скачать события состояния питания", "zh-chs": "下載電源事件", "xloc": [ - "default.handlebars->27->691" + "default.handlebars->27->697" ] }, { @@ -9310,7 +9312,7 @@ "ru": "Загрузите список устройств с одним из форматов файлов ниже.", "zh-chs": "使用以下一種文件格式下載設備列表。", "xloc": [ - "default.handlebars->27->452" + "default.handlebars->27->458" ] }, { @@ -9327,7 +9329,7 @@ "ru": "Скачать список событий в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載事件列表。", "xloc": [ - "default.handlebars->27->1493" + "default.handlebars->27->1499" ] }, { @@ -9344,7 +9346,7 @@ "ru": "Скачать список пользователей в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載用戶列表。", "xloc": [ - "default.handlebars->27->1558" + "default.handlebars->27->1564" ] }, { @@ -9427,7 +9429,7 @@ "nl": "Dubbele agent", "zh-chs": "代理重复", "xloc": [ - "default.handlebars->27->1848" + "default.handlebars->27->1852" ] }, { @@ -9461,7 +9463,7 @@ "ru": "Скопировать группу пользователей", "zh-chs": "重複的用戶組", "xloc": [ - "default.handlebars->27->1624" + "default.handlebars->27->1630" ] }, { @@ -9492,8 +9494,8 @@ "ru": "Длительность", "zh-chs": "持續時間", "xloc": [ - "default.handlebars->27->1802", - "default.handlebars->27->1822", + "default.handlebars->27->1806", + "default.handlebars->27->1826", "player.handlebars->3->2" ] }, @@ -9511,7 +9513,7 @@ "ru": "Во время активации агент будет иметь доступ к паролю администратора.", "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。", "xloc": [ - "default.handlebars->27->1308" + "default.handlebars->27->1314" ] }, { @@ -9528,7 +9530,7 @@ "ru": "Голландский (Бельгийский)", "zh-chs": "荷蘭語(比利時)", "xloc": [ - "default.handlebars->27->1010" + "default.handlebars->27->1016" ] }, { @@ -9545,7 +9547,7 @@ "ru": "Голландский (Стандартный)", "zh-chs": "荷蘭語(標準)", "xloc": [ - "default.handlebars->27->1009" + "default.handlebars->27->1015" ] }, { @@ -9736,7 +9738,7 @@ "zh-chs": "編輯裝置", "xloc": [ "default-mobile.handlebars->9->283", - "default.handlebars->27->752" + "default.handlebars->27->758" ] }, { @@ -9756,10 +9758,10 @@ "default-mobile.handlebars->9->406", "default-mobile.handlebars->9->408", "default-mobile.handlebars->9->426", - "default.handlebars->27->1314", - "default.handlebars->27->1344", - "default.handlebars->27->1366", - "default.handlebars->27->1378" + "default.handlebars->27->1320", + "default.handlebars->27->1350", + "default.handlebars->27->1372", + "default.handlebars->27->1384" ] }, { @@ -9776,7 +9778,7 @@ "ru": "Редактировать функции группы устройств", "zh-chs": "編輯設備組功能", "xloc": [ - "default.handlebars->27->1330" + "default.handlebars->27->1336" ] }, { @@ -9793,8 +9795,8 @@ "ru": "Редактировать права группы устройств", "zh-chs": "編輯設備組權限", "xloc": [ - "default.handlebars->27->1363", - "default.handlebars->27->1375" + "default.handlebars->27->1369", + "default.handlebars->27->1381" ] }, { @@ -9811,7 +9813,7 @@ "ru": "Редактировать согласие пользователя группы устройств", "zh-chs": "編輯設備組用戶同意", "xloc": [ - "default.handlebars->27->1315" + "default.handlebars->27->1321" ] }, { @@ -9829,7 +9831,7 @@ "zh-chs": "編輯設備說明", "xloc": [ "default-mobile.handlebars->9->420", - "default.handlebars->27->1357" + "default.handlebars->27->1363" ] }, { @@ -9845,14 +9847,14 @@ "ru": "Изменить разрешения устройства", "zh-chs": "编辑设备权限", "xloc": [ - "default.handlebars->27->1368", - "default.handlebars->27->1370" + "default.handlebars->27->1374", + "default.handlebars->27->1376" ] }, { "en": "Edit Device Tags", "xloc": [ - "default.handlebars->27->451" + "default.handlebars->27->457" ] }, { @@ -9866,7 +9868,7 @@ "nl": "Gebruikerstoestemming apparaat bewerken", "zh-chs": "编辑设备用户同意", "xloc": [ - "default.handlebars->27->1317" + "default.handlebars->27->1323" ] }, { @@ -9882,7 +9884,7 @@ "ru": "Редактировать группу", "zh-chs": "编辑组", "xloc": [ - "default.handlebars->27->650" + "default.handlebars->27->656" ] }, { @@ -9900,9 +9902,9 @@ "zh-chs": "編輯英特爾®AMT憑據", "xloc": [ "default-mobile.handlebars->9->273", - "default.handlebars->27->542", - "default.handlebars->27->545", - "default.handlebars->27->698" + "default.handlebars->27->548", + "default.handlebars->27->551", + "default.handlebars->27->704" ] }, { @@ -9920,7 +9922,7 @@ "zh-chs": "編輯筆記", "xloc": [ "default-mobile.handlebars->9->433", - "default.handlebars->27->1385" + "default.handlebars->27->1391" ] }, { @@ -9934,7 +9936,7 @@ "nl": "Gebruikerstoestemming bewerken", "zh-chs": "编辑用户同意", "xloc": [ - "default.handlebars->27->1316" + "default.handlebars->27->1322" ] }, { @@ -9951,7 +9953,7 @@ "ru": "Редактировать права пользователя для группы устройств", "zh-chs": "編輯用戶設備組權限", "xloc": [ - "default.handlebars->27->1376" + "default.handlebars->27->1382" ] }, { @@ -9967,7 +9969,7 @@ "ru": "Изменить разрешения для пользовательских устройств", "zh-chs": "编辑用户设备权限", "xloc": [ - "default.handlebars->27->1371" + "default.handlebars->27->1377" ] }, { @@ -9984,7 +9986,7 @@ "ru": "Редактировать группу пользователей", "zh-chs": "編輯用戶組", "xloc": [ - "default.handlebars->27->1663" + "default.handlebars->27->1669" ] }, { @@ -9998,7 +10000,7 @@ "nl": "Gebruikersmachtigingen voor apparaatgroep bewerken", "zh-chs": "编辑用户组设备权限", "xloc": [ - "default.handlebars->27->1373" + "default.handlebars->27->1379" ] }, { @@ -10021,7 +10023,7 @@ { "en": "Edit tags", "xloc": [ - "default.handlebars->27->433" + "default.handlebars->27->439" ] }, { @@ -10039,11 +10041,11 @@ "zh-chs": "電子郵件", "xloc": [ "default-mobile.handlebars->9->78", - "default.handlebars->27->1576", - "default.handlebars->27->1689", - "default.handlebars->27->1691", - "default.handlebars->27->1731", - "default.handlebars->27->1747", + "default.handlebars->27->1582", + "default.handlebars->27->1695", + "default.handlebars->27->1697", + "default.handlebars->27->1737", + "default.handlebars->27->1753", "default.handlebars->27->319", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -10066,7 +10068,7 @@ "zh-chs": "電郵地址變更", "xloc": [ "default-mobile.handlebars->9->79", - "default.handlebars->27->1178" + "default.handlebars->27->1184" ] }, { @@ -10084,7 +10086,7 @@ "zh-chs": "郵件認證", "xloc": [ "default-mobile.handlebars->9->68", - "default.handlebars->27->947" + "default.handlebars->27->953" ] }, { @@ -10129,7 +10131,7 @@ "zh-chs": "電子郵件驗證", "xloc": [ "default-mobile.handlebars->9->77", - "default.handlebars->27->1176" + "default.handlebars->27->1182" ] }, { @@ -10159,7 +10161,7 @@ "ru": "Электронная почта не подтверждена", "zh-chs": "邮件未验证", "xloc": [ - "default.handlebars->27->1522" + "default.handlebars->27->1528" ] }, { @@ -10176,8 +10178,8 @@ "ru": "Email подтвержден", "zh-chs": "電子郵件已驗證", "xloc": [ - "default.handlebars->27->1523", - "default.handlebars->27->1683" + "default.handlebars->27->1529", + "default.handlebars->27->1689" ] }, { @@ -10194,7 +10196,7 @@ "ru": "Email подтвержден.", "zh-chs": "電子郵件已驗證。", "xloc": [ - "default.handlebars->27->1582" + "default.handlebars->27->1588" ] }, { @@ -10211,7 +10213,7 @@ "ru": "Email не подтвержден", "zh-chs": "電子郵件未驗證", "xloc": [ - "default.handlebars->27->1684" + "default.handlebars->27->1690" ] }, { @@ -10250,7 +10252,7 @@ "en": "Email verified and forced password reset required.", "nl": "E-mail geverifieerd en geforceerd opnieuw instellen van wachtwoord vereist.", "xloc": [ - "default.handlebars->27->1583" + "default.handlebars->27->1589" ] }, { @@ -10263,7 +10265,7 @@ "nl": "Email/SMS verkeer", "zh-chs": "电子邮件/短信流量", "xloc": [ - "default.handlebars->27->1887" + "default.handlebars->27->1891" ] }, { @@ -10302,7 +10304,7 @@ "ru": "Включить коды приглашения", "zh-chs": "啟用邀請代碼", "xloc": [ - "default.handlebars->27->1406" + "default.handlebars->27->1412" ] }, { @@ -10337,7 +10339,7 @@ "zh-chs": "啟用電子郵件兩因素驗證。", "xloc": [ "default-mobile.handlebars->9->70", - "default.handlebars->27->949" + "default.handlebars->27->955" ] }, { @@ -10361,7 +10363,7 @@ "en": "Enabled", "nl": "Ingeschakeld", "xloc": [ - "default.handlebars->27->1824" + "default.handlebars->27->1828" ] }, { @@ -10385,7 +10387,7 @@ "en": "End Time", "nl": "Eindtijd", "xloc": [ - "default.handlebars->27->1821" + "default.handlebars->27->1825" ] }, { @@ -10402,7 +10404,7 @@ "ru": "Английский", "zh-chs": "英語", "xloc": [ - "default.handlebars->27->1011" + "default.handlebars->27->1017" ] }, { @@ -10419,7 +10421,7 @@ "ru": "Английский (Австралия)", "zh-chs": "英文(澳洲)", "xloc": [ - "default.handlebars->27->1012" + "default.handlebars->27->1018" ] }, { @@ -10436,7 +10438,7 @@ "ru": "Английский (Белиз)", "zh-chs": "英語(伯利茲)", "xloc": [ - "default.handlebars->27->1013" + "default.handlebars->27->1019" ] }, { @@ -10453,7 +10455,7 @@ "ru": "Английский (Канада)", "zh-chs": "英文(加拿大)", "xloc": [ - "default.handlebars->27->1014" + "default.handlebars->27->1020" ] }, { @@ -10470,7 +10472,7 @@ "ru": "Английский (Ирландия)", "zh-chs": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->27->1015" + "default.handlebars->27->1021" ] }, { @@ -10487,7 +10489,7 @@ "ru": "Английский (Ямайка)", "zh-chs": "英文(牙買加)", "xloc": [ - "default.handlebars->27->1016" + "default.handlebars->27->1022" ] }, { @@ -10504,7 +10506,7 @@ "ru": "Английский (Новая Зеландия)", "zh-chs": "英文(紐西蘭)", "xloc": [ - "default.handlebars->27->1017" + "default.handlebars->27->1023" ] }, { @@ -10521,7 +10523,7 @@ "ru": "Английский (Филиппины)", "zh-chs": "英文(菲律賓)", "xloc": [ - "default.handlebars->27->1018" + "default.handlebars->27->1024" ] }, { @@ -10538,7 +10540,7 @@ "ru": "Английский (Южная Африка)", "zh-chs": "英語(南非)", "xloc": [ - "default.handlebars->27->1019" + "default.handlebars->27->1025" ] }, { @@ -10555,7 +10557,7 @@ "ru": "Английский (Тринидад и Тобаго)", "zh-chs": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->27->1020" + "default.handlebars->27->1026" ] }, { @@ -10572,7 +10574,7 @@ "ru": "Английский (Великобритания)", "zh-chs": "英文(英國)", "xloc": [ - "default.handlebars->27->1021" + "default.handlebars->27->1027" ] }, { @@ -10589,7 +10591,7 @@ "ru": "Английский (Соединенные Штаты)", "zh-chs": "美國英語)", "xloc": [ - "default.handlebars->27->1022" + "default.handlebars->27->1028" ] }, { @@ -10606,7 +10608,7 @@ "ru": "Английский (Зимбабве)", "zh-chs": "英文(津巴布韋)", "xloc": [ - "default.handlebars->27->1023" + "default.handlebars->27->1029" ] }, { @@ -10623,8 +10625,8 @@ "ru": "Ввод", "zh-chs": "輸入", "xloc": [ - "default.handlebars->27->1204", - "default.handlebars->27->1205" + "default.handlebars->27->1210", + "default.handlebars->27->1211" ] }, { @@ -10641,7 +10643,7 @@ "ru": "Введите разделенный запятыми список имен административных областей.", "zh-chs": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->27->1587" + "default.handlebars->27->1593" ] }, { @@ -10675,7 +10677,7 @@ "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.", "zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->27->773" + "default.handlebars->27->779" ] }, { @@ -10723,7 +10725,7 @@ "nl": "Voer uw telefoonnummer in dat geschikt is voor SMS. Na verificatie kan het nummer worden gebruikt voor inlogverificatie en andere meldingen.", "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "xloc": [ - "default.handlebars->27->944" + "default.handlebars->27->950" ] }, { @@ -10774,7 +10776,7 @@ "ru": "Эсперанто", "zh-chs": "世界語", "xloc": [ - "default.handlebars->27->1024" + "default.handlebars->27->1030" ] }, { @@ -10791,7 +10793,7 @@ "ru": "Эстонский", "zh-chs": "愛沙尼亞語", "xloc": [ - "default.handlebars->27->1025" + "default.handlebars->27->1031" ] }, { @@ -10808,7 +10810,7 @@ "ru": "Детали события", "zh-chs": "活動詳情", "xloc": [ - "default.handlebars->27->850" + "default.handlebars->27->856" ] }, { @@ -10825,7 +10827,7 @@ "ru": "Экспорт списка событий", "zh-chs": "活動列表導出", "xloc": [ - "default.handlebars->27->1498" + "default.handlebars->27->1504" ] }, { @@ -10897,7 +10899,7 @@ "ru": "Экспорт информации об устройстве", "zh-chs": "導出設備信息", "xloc": [ - "default.handlebars->27->431" + "default.handlebars->27->437" ] }, { @@ -10914,7 +10916,7 @@ "ru": "Расширенный ASCII", "zh-chs": "擴展ASCII", "xloc": [ - "default.handlebars->27->799" + "default.handlebars->27->805" ] }, { @@ -10948,7 +10950,7 @@ "ru": "Внешний", "zh-chs": "外部", "xloc": [ - "default.handlebars->27->1872" + "default.handlebars->27->1876" ] }, { @@ -10972,7 +10974,7 @@ "ru": "Mакедонский (БЮР)", "zh-chs": "FYRO馬其頓語", "xloc": [ - "default.handlebars->27->1075" + "default.handlebars->27->1081" ] }, { @@ -10989,7 +10991,7 @@ "ru": "Фарерский", "zh-chs": "法羅語", "xloc": [ - "default.handlebars->27->1026" + "default.handlebars->27->1032" ] }, { @@ -11019,7 +11021,7 @@ "ko": "원격 터미널 세션을 시작하지 못했습니다 : {0} ({1})", "zh-chs": "无法启动远程终端会话{0}({1})", "xloc": [ - "default.handlebars->27->755" + "default.handlebars->27->761" ] }, { @@ -11036,7 +11038,7 @@ "ru": "Фарси (Персидский)", "zh-chs": "波斯語(波斯語)", "xloc": [ - "default.handlebars->27->1027" + "default.handlebars->27->1033" ] }, { @@ -11071,7 +11073,7 @@ "ru": "Функции", "zh-chs": "特徵", "xloc": [ - "default.handlebars->27->1236" + "default.handlebars->27->1242" ] }, { @@ -11088,7 +11090,7 @@ "ru": "Фиджи", "zh-chs": "斐濟", "xloc": [ - "default.handlebars->27->1028" + "default.handlebars->27->1034" ] }, { @@ -11106,8 +11108,8 @@ "zh-chs": "文件編輯器", "xloc": [ "default-mobile.handlebars->9->306", - "default.handlebars->27->484", - "default.handlebars->27->822" + "default.handlebars->27->490", + "default.handlebars->27->828" ] }, { @@ -11141,7 +11143,7 @@ "ru": "Драйвер файловой системы", "zh-chs": "FileSystemDriver", "xloc": [ - "default.handlebars->27->782" + "default.handlebars->27->788" ] }, { @@ -11160,8 +11162,8 @@ "xloc": [ "default-mobile.handlebars->9->167", "default-mobile.handlebars->9->257", - "default.handlebars->27->1325", - "default.handlebars->27->1809", + "default.handlebars->27->1331", + "default.handlebars->27->1813", "default.handlebars->27->236", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" @@ -11198,9 +11200,9 @@ "ru": "Уведомление файлов", "zh-chs": "文件通知", "xloc": [ - "default.handlebars->27->1244", - "default.handlebars->27->1716", - "default.handlebars->27->567" + "default.handlebars->27->1250", + "default.handlebars->27->1722", + "default.handlebars->27->573" ] }, { @@ -11217,9 +11219,9 @@ "ru": "Запрос файлов", "zh-chs": "文件提示", "xloc": [ - "default.handlebars->27->1243", - "default.handlebars->27->1715", - "default.handlebars->27->566" + "default.handlebars->27->1249", + "default.handlebars->27->1721", + "default.handlebars->27->572" ] }, { @@ -11256,7 +11258,7 @@ "ru": "Финский", "zh-chs": "芬蘭", "xloc": [ - "default.handlebars->27->1029" + "default.handlebars->27->1035" ] }, { @@ -11379,8 +11381,8 @@ "ru": "Принудительно сбросить пароль при следующем входе в систему.", "zh-chs": "下次登錄時強制重置密碼。", "xloc": [ - "default.handlebars->27->1581", - "default.handlebars->27->1756" + "default.handlebars->27->1587", + "default.handlebars->27->1762" ] }, { @@ -11439,7 +11441,7 @@ "en": "Format", "nl": "Formaat", "xloc": [ - "default.handlebars->27->1489" + "default.handlebars->27->1495" ] }, { @@ -11473,8 +11475,8 @@ "ru": "Свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->27->1833", - "default.handlebars->27->1835" + "default.handlebars->27->1837", + "default.handlebars->27->1839" ] }, { @@ -11509,7 +11511,7 @@ "ru": "Французский (Бельгия)", "zh-chs": "法語(比利時)", "xloc": [ - "default.handlebars->27->1031" + "default.handlebars->27->1037" ] }, { @@ -11526,7 +11528,7 @@ "ru": "Французский (Канада)", "zh-chs": "法語(加拿大)", "xloc": [ - "default.handlebars->27->1032" + "default.handlebars->27->1038" ] }, { @@ -11543,7 +11545,7 @@ "ru": "Французский (Франция)", "zh-chs": "法語(法國)", "xloc": [ - "default.handlebars->27->1033" + "default.handlebars->27->1039" ] }, { @@ -11560,7 +11562,7 @@ "ru": "Французский (Люксембург)", "zh-chs": "法語(盧森堡)", "xloc": [ - "default.handlebars->27->1034" + "default.handlebars->27->1040" ] }, { @@ -11577,7 +11579,7 @@ "ru": "Французский (Монако)", "zh-chs": "法語(摩納哥)", "xloc": [ - "default.handlebars->27->1035" + "default.handlebars->27->1041" ] }, { @@ -11594,7 +11596,7 @@ "ru": "Французский (Стандартный)", "zh-chs": "法語(標準)", "xloc": [ - "default.handlebars->27->1030" + "default.handlebars->27->1036" ] }, { @@ -11611,7 +11613,7 @@ "ru": "Французский (Швейцария)", "zh-chs": "法語(瑞士)", "xloc": [ - "default.handlebars->27->1036" + "default.handlebars->27->1042" ] }, { @@ -11628,7 +11630,7 @@ "ru": "Фризский", "zh-chs": "弗里斯蘭語", "xloc": [ - "default.handlebars->27->1037" + "default.handlebars->27->1043" ] }, { @@ -11645,7 +11647,7 @@ "ru": "Фриульский", "zh-chs": "弗留利", "xloc": [ - "default.handlebars->27->1038" + "default.handlebars->27->1044" ] }, { @@ -11666,9 +11668,9 @@ "default-mobile.handlebars->9->398", "default-mobile.handlebars->9->407", "default-mobile.handlebars->9->425", - "default.handlebars->27->1211", - "default.handlebars->27->1343", - "default.handlebars->27->1593" + "default.handlebars->27->1217", + "default.handlebars->27->1349", + "default.handlebars->27->1599" ] }, { @@ -11685,7 +11687,7 @@ "ru": "Администратор с полным доступом (все права)", "zh-chs": "正式管理員(保留所有權利)", "xloc": [ - "default.handlebars->27->1377" + "default.handlebars->27->1383" ] }, { @@ -11716,7 +11718,7 @@ "ru": "Полные права на устройство", "zh-chs": "完整的設備權限", "xloc": [ - "default.handlebars->27->633" + "default.handlebars->27->639" ] }, { @@ -11732,7 +11734,7 @@ "ru": "Полные права", "zh-chs": "完全权利", "xloc": [ - "default.handlebars->27->649" + "default.handlebars->27->655" ] }, { @@ -11768,7 +11770,7 @@ "ru": "Администратор с полным доступом", "zh-chs": "正式管理員", "xloc": [ - "default.handlebars->27->1677" + "default.handlebars->27->1683" ] }, { @@ -11782,7 +11784,7 @@ "zh-chs": "显卡", "xloc": [ "default-mobile.handlebars->9->376", - "default.handlebars->27->912" + "default.handlebars->27->918" ] }, { @@ -11799,7 +11801,7 @@ "ru": "Гэльский (Ирландский)", "zh-chs": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->27->1040" + "default.handlebars->27->1046" ] }, { @@ -11816,7 +11818,7 @@ "ru": "Гэльский (Шотландия)", "zh-chs": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->27->1039" + "default.handlebars->27->1045" ] }, { @@ -11833,7 +11835,7 @@ "ru": "Галицкий", "zh-chs": "加拉契人", "xloc": [ - "default.handlebars->27->1041" + "default.handlebars->27->1047" ] }, { @@ -11907,7 +11909,7 @@ "ru": "Общая информация", "zh-chs": "一般信息", "xloc": [ - "default.handlebars->27->491" + "default.handlebars->27->497" ] }, { @@ -11941,7 +11943,7 @@ "ru": "Грузинский", "zh-chs": "格魯吉亞人", "xloc": [ - "default.handlebars->27->1042" + "default.handlebars->27->1048" ] }, { @@ -11958,7 +11960,7 @@ "ru": "Немецкий (Австрия)", "zh-chs": "德語(奧地利)", "xloc": [ - "default.handlebars->27->1044" + "default.handlebars->27->1050" ] }, { @@ -11975,7 +11977,7 @@ "ru": "Немецкий (Германия)", "zh-chs": "德文(德國)", "xloc": [ - "default.handlebars->27->1045" + "default.handlebars->27->1051" ] }, { @@ -11992,7 +11994,7 @@ "ru": "Немецкий (Лихтенштейн)", "zh-chs": "德文(列支敦士登)", "xloc": [ - "default.handlebars->27->1046" + "default.handlebars->27->1052" ] }, { @@ -12009,7 +12011,7 @@ "ru": "Немецкий (Люксембург)", "zh-chs": "德語(盧森堡)", "xloc": [ - "default.handlebars->27->1047" + "default.handlebars->27->1053" ] }, { @@ -12026,7 +12028,7 @@ "ru": "Немецкий (Стандартный)", "zh-chs": "德語(標準)", "xloc": [ - "default.handlebars->27->1043" + "default.handlebars->27->1049" ] }, { @@ -12043,7 +12045,7 @@ "ru": "Немецкий (Швейцария)", "zh-chs": "德語(瑞士)", "xloc": [ - "default.handlebars->27->1048" + "default.handlebars->27->1054" ] }, { @@ -12060,7 +12062,7 @@ "ru": "Получить учетные данные MQTT для этого устройства.", "zh-chs": "獲取此設備的MQTT登錄憑據。", "xloc": [ - "default.handlebars->27->614" + "default.handlebars->27->620" ] }, { @@ -12126,7 +12128,7 @@ "ru": "Хорошо", "zh-chs": "好", "xloc": [ - "default.handlebars->27->1207" + "default.handlebars->27->1213" ] }, { @@ -12163,7 +12165,7 @@ "ru": "Греческий", "zh-chs": "希臘語", "xloc": [ - "default.handlebars->27->1049" + "default.handlebars->27->1055" ] }, { @@ -12181,7 +12183,7 @@ "zh-chs": "組", "xloc": [ "default-mobile.handlebars->9->214", - "default.handlebars->27->519", + "default.handlebars->27->525", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, @@ -12199,9 +12201,9 @@ "ru": "Групповое действие", "zh-chs": "集體行動", "xloc": [ - "default.handlebars->27->1537", - "default.handlebars->27->1614", - "default.handlebars->27->435", + "default.handlebars->27->1543", + "default.handlebars->27->1620", + "default.handlebars->27->441", "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" @@ -12211,14 +12213,14 @@ "en": "Group By", "nl": "Groeperen op", "xloc": [ - "default.handlebars->27->1485" + "default.handlebars->27->1491" ] }, { "en": "Group Identifier", "nl": "Groepsidentificatie", "xloc": [ - "default.handlebars->27->1631" + "default.handlebars->27->1637" ] }, { @@ -12235,7 +12237,7 @@ "ru": "Члены группы", "zh-chs": "小組成員", "xloc": [ - "default.handlebars->27->1640" + "default.handlebars->27->1646" ] }, { @@ -12252,7 +12254,7 @@ "ru": "Права на группу для пользователя {0}.", "zh-chs": "用戶{0}的組權限。", "xloc": [ - "default.handlebars->27->1342" + "default.handlebars->27->1348" ] }, { @@ -12269,7 +12271,7 @@ "ru": "Права на группу для {0}.", "zh-chs": "{0}的組權限。", "xloc": [ - "default.handlebars->27->1341" + "default.handlebars->27->1347" ] }, { @@ -12320,7 +12322,7 @@ "ru": "Гуджарати", "zh-chs": "古久拉提", "xloc": [ - "default.handlebars->27->1050" + "default.handlebars->27->1056" ] }, { @@ -12356,7 +12358,7 @@ "ru": "Гаитянский", "zh-chs": "海地", "xloc": [ - "default.handlebars->27->1051" + "default.handlebars->27->1057" ] }, { @@ -12390,7 +12392,7 @@ "ru": "Жесткое отключение агента", "zh-chs": "硬斷開劑", "xloc": [ - "default.handlebars->27->939" + "default.handlebars->27->945" ] }, { @@ -12407,7 +12409,7 @@ "ru": "Всего кучи", "zh-chs": "堆總數", "xloc": [ - "default.handlebars->27->1874" + "default.handlebars->27->1878" ] }, { @@ -12424,7 +12426,7 @@ "ru": "Куча используется", "zh-chs": "堆使用", "xloc": [ - "default.handlebars->27->1873" + "default.handlebars->27->1877" ] }, { @@ -12441,7 +12443,7 @@ "ru": "Иврит", "zh-chs": "希伯來語", "xloc": [ - "default.handlebars->27->1052" + "default.handlebars->27->1058" ] }, { @@ -12475,7 +12477,7 @@ "ru": "Помочь перевести MeshCentral", "zh-chs": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->27->1166" + "default.handlebars->27->1172" ] }, { @@ -12543,7 +12545,7 @@ "xloc": [ "default-mobile.handlebars->9->182", "default-mobile.handlebars->9->189", - "default.handlebars->27->397", + "default.handlebars->27->403", "default.handlebars->27->5" ] }, @@ -12561,7 +12563,7 @@ "ru": "Хинди", "zh-chs": "印地語", "xloc": [ - "default.handlebars->27->1053" + "default.handlebars->27->1059" ] }, { @@ -12593,7 +12595,7 @@ "zh-chs": "持有1份副本", "xloc": [ "default-mobile.handlebars->9->315", - "default.handlebars->27->831" + "default.handlebars->27->837" ] }, { @@ -12611,7 +12613,7 @@ "zh-chs": "持有1個搬家公司", "xloc": [ "default-mobile.handlebars->9->319", - "default.handlebars->27->835" + "default.handlebars->27->841" ] }, { @@ -12629,7 +12631,7 @@ "zh-chs": "保留{0}個條目進行複制", "xloc": [ "default-mobile.handlebars->9->313", - "default.handlebars->27->829" + "default.handlebars->27->835" ] }, { @@ -12647,7 +12649,7 @@ "zh-chs": "保留{0}個條目以進行移動", "xloc": [ "default-mobile.handlebars->9->317", - "default.handlebars->27->833" + "default.handlebars->27->839" ] }, { @@ -12665,7 +12667,7 @@ "zh-chs": "保持{2}的{0}入口{1}", "xloc": [ "default-mobile.handlebars->9->129", - "default.handlebars->27->1471" + "default.handlebars->27->1477" ] }, { @@ -12687,8 +12689,8 @@ "default-mobile.handlebars->9->219", "default-mobile.handlebars->9->279", "default.handlebars->27->270", - "default.handlebars->27->524", - "default.handlebars->27->748" + "default.handlebars->27->530", + "default.handlebars->27->754" ] }, { @@ -12705,7 +12707,7 @@ "ru": "Синхронизация имени хоста", "zh-chs": "主機名同步", "xloc": [ - "default.handlebars->27->1234" + "default.handlebars->27->1240" ] }, { @@ -12722,7 +12724,7 @@ "ru": "Венгерский", "zh-chs": "匈牙利", "xloc": [ - "default.handlebars->27->1054" + "default.handlebars->27->1060" ] }, { @@ -12777,9 +12779,9 @@ "xloc": [ "default-mobile.handlebars->9->345", "default-mobile.handlebars->9->349", - "default.handlebars->27->871", - "default.handlebars->27->881", - "default.handlebars->27->885" + "default.handlebars->27->877", + "default.handlebars->27->887", + "default.handlebars->27->891" ] }, { @@ -12798,9 +12800,9 @@ "xloc": [ "default-mobile.handlebars->9->343", "default-mobile.handlebars->9->347", - "default.handlebars->27->869", - "default.handlebars->27->879", - "default.handlebars->27->883" + "default.handlebars->27->875", + "default.handlebars->27->885", + "default.handlebars->27->889" ] }, { @@ -12819,10 +12821,10 @@ "xloc": [ "default-mobile.handlebars->9->342", "default-mobile.handlebars->9->344", - "default.handlebars->27->868", - "default.handlebars->27->870", - "default.handlebars->27->878", - "default.handlebars->27->880" + "default.handlebars->27->874", + "default.handlebars->27->876", + "default.handlebars->27->884", + "default.handlebars->27->886" ] }, { @@ -12885,8 +12887,8 @@ "xloc": [ "default-mobile.handlebars->9->346", "default-mobile.handlebars->9->348", - "default.handlebars->27->882", - "default.handlebars->27->884" + "default.handlebars->27->888", + "default.handlebars->27->890" ] }, { @@ -12924,7 +12926,7 @@ "ru": "Исландский", "zh-chs": "冰島的", "xloc": [ - "default.handlebars->27->1055" + "default.handlebars->27->1061" ] }, { @@ -12942,7 +12944,7 @@ "zh-chs": "圖標選擇", "xloc": [ "default-mobile.handlebars->9->277", - "default.handlebars->27->746" + "default.handlebars->27->752" ] }, { @@ -12960,7 +12962,7 @@ "zh-chs": "識別碼", "xloc": [ "default-mobile.handlebars->9->374", - "default.handlebars->27->910" + "default.handlebars->27->916" ] }, { @@ -13071,7 +13073,7 @@ "ru": "Индонезийский", "zh-chs": "印度尼西亞", "xloc": [ - "default.handlebars->27->1056" + "default.handlebars->27->1062" ] }, { @@ -13188,7 +13190,7 @@ "ru": "Установка CIRA", "zh-chs": "安裝CIRA", "xloc": [ - "default.handlebars->27->1267" + "default.handlebars->27->1273" ] }, { @@ -13205,7 +13207,7 @@ "ru": "Локальная установка", "zh-chs": "安裝本地", "xloc": [ - "default.handlebars->27->1269" + "default.handlebars->27->1275" ] }, { @@ -13222,10 +13224,10 @@ "ru": "Тип установки", "zh-chs": "安裝類型", "xloc": [ - "default.handlebars->27->1408", - "default.handlebars->27->1415", + "default.handlebars->27->1414", + "default.handlebars->27->1421", "default.handlebars->27->334", - "default.handlebars->27->356" + "default.handlebars->27->358" ] }, { @@ -13242,7 +13244,7 @@ "ru": "Intel (F10 = ESC+[OM)", "zh-chs": "英特爾(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->27->801", + "default.handlebars->27->807", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -13260,10 +13262,10 @@ "ru": "Intel AMT", "zh-chs": "英特爾AMT", "xloc": [ - "default.handlebars->27->1427", - "default.handlebars->27->1435", - "default.handlebars->27->1870", - "default.handlebars->27->1892" + "default.handlebars->27->1433", + "default.handlebars->27->1441", + "default.handlebars->27->1874", + "default.handlebars->27->1896" ] }, { @@ -13304,14 +13306,14 @@ "en": "Intel AMT Redirection", "nl": "Intel AMT omleiding", "xloc": [ - "default.handlebars->27->1811" + "default.handlebars->27->1815" ] }, { "en": "Intel AMT WSMAN", "nl": "Intel AMT WSMAN", "xloc": [ - "default.handlebars->27->1810" + "default.handlebars->27->1814" ] }, { @@ -13345,7 +13347,7 @@ "ru": "Intel AMT активирован в режиме администратора", "zh-chs": "在管理控制模式下激活了Intel AMT", "xloc": [ - "default.handlebars->27->538" + "default.handlebars->27->544" ] }, { @@ -13362,7 +13364,7 @@ "ru": "Intel AMT активирован в режиме клиента", "zh-chs": "英特爾AMT在客戶端控制模式下被激活", "xloc": [ - "default.handlebars->27->536" + "default.handlebars->27->542" ] }, { @@ -13379,7 +13381,7 @@ "ru": "Intel AMT настроен с TLS безопасностью сети", "zh-chs": "英特爾AMT已設置TLS網絡安全性", "xloc": [ - "default.handlebars->27->540" + "default.handlebars->27->546" ] }, { @@ -13430,7 +13432,7 @@ "ru": "Intel ASCII", "zh-chs": "英特爾ASCII", "xloc": [ - "default.handlebars->27->800" + "default.handlebars->27->806" ] }, { @@ -13450,11 +13452,11 @@ "default-mobile.handlebars->9->201", "default-mobile.handlebars->9->236", "default-mobile.handlebars->9->241", - "default.handlebars->27->1251", - "default.handlebars->27->1261", - "default.handlebars->27->494", - "default.handlebars->27->549", - "default.handlebars->27->577" + "default.handlebars->27->1257", + "default.handlebars->27->1267", + "default.handlebars->27->500", + "default.handlebars->27->555", + "default.handlebars->27->583" ] }, { @@ -13472,7 +13474,7 @@ "zh-chs": "英特爾®AMT CIRA", "xloc": [ "default-mobile.handlebars->9->240", - "default.handlebars->27->575" + "default.handlebars->27->581" ] }, { @@ -13490,8 +13492,8 @@ "zh-chs": "英特爾®AMT CIRA已連接並可以使用。", "xloc": [ "default.handlebars->27->196", - "default.handlebars->27->411", - "default.handlebars->27->574" + "default.handlebars->27->417", + "default.handlebars->27->580" ] }, { @@ -13540,7 +13542,7 @@ "ru": "Политика Intel® AMT", "zh-chs": "英特爾®AMT政策", "xloc": [ - "default.handlebars->27->1290" + "default.handlebars->27->1296" ] }, { @@ -13574,7 +13576,7 @@ "ru": "Intel® AMT Тег", "zh-chs": "英特爾®AMT標籤", "xloc": [ - "default.handlebars->27->553" + "default.handlebars->27->559" ] }, { @@ -13627,8 +13629,8 @@ "zh-chs": "英特爾®AMT已連接", "xloc": [ "default-mobile.handlebars->9->251", - "default.handlebars->27->618", - "default.handlebars->27->619" + "default.handlebars->27->624", + "default.handlebars->27->625" ] }, { @@ -13645,8 +13647,8 @@ "ru": "События Intel® AMT desktop или serial.", "zh-chs": "英特爾®AMT桌面和串行事件。", "xloc": [ - "default.handlebars->27->1172", - "default.handlebars->27->1423" + "default.handlebars->27->1178", + "default.handlebars->27->1429" ] }, { @@ -13664,8 +13666,8 @@ "zh-chs": "檢測到英特爾®AMT", "xloc": [ "default-mobile.handlebars->9->252", - "default.handlebars->27->620", - "default.handlebars->27->621" + "default.handlebars->27->626", + "default.handlebars->27->627" ] }, { @@ -13682,7 +13684,7 @@ "ru": "Intel® AMT маршрутизируется и готов к использованию.", "zh-chs": "英特爾®AMT可路由並可以使用。", "xloc": [ - "default.handlebars->27->576" + "default.handlebars->27->582" ] }, { @@ -13700,7 +13702,7 @@ "zh-chs": "英特爾®AMT是可路由的。", "xloc": [ "default.handlebars->27->198", - "default.handlebars->27->413" + "default.handlebars->27->419" ] }, { @@ -13735,8 +13737,8 @@ "zh-chs": "僅限英特爾®AMT,無代理", "xloc": [ "default-mobile.handlebars->9->389", - "default.handlebars->27->1201", - "default.handlebars->27->1227" + "default.handlebars->27->1207", + "default.handlebars->27->1233" ] }, { @@ -13753,7 +13755,7 @@ "ru": "Технология Intel® Active Management", "zh-chs": "英特爾®主動管理技術", "xloc": [ - "default.handlebars->27->548" + "default.handlebars->27->554" ] }, { @@ -13771,7 +13773,7 @@ "zh-chs": "英特爾®主動管理技術(英特爾®AMT)", "xloc": [ "default-mobile.handlebars->9->366", - "default.handlebars->27->902" + "default.handlebars->27->908" ] }, { @@ -13789,7 +13791,7 @@ "zh-chs": "英特爾®ME", "xloc": [ "default-mobile.handlebars->9->235", - "default.handlebars->27->547" + "default.handlebars->27->553" ] }, { @@ -13802,7 +13804,7 @@ "nl": "Intel® Manageability Engine", "zh-chs": "英特尔®可管理性引擎", "xloc": [ - "default.handlebars->27->546" + "default.handlebars->27->552" ] }, { @@ -13820,7 +13822,7 @@ "zh-chs": "英特爾®SM", "xloc": [ "default-mobile.handlebars->9->237", - "default.handlebars->27->551" + "default.handlebars->27->557" ] }, { @@ -13837,7 +13839,7 @@ "ru": "Intel® Standard Manageability", "zh-chs": "英特爾®標準可管理性", "xloc": [ - "default.handlebars->27->550" + "default.handlebars->27->556" ] }, { @@ -13938,7 +13940,7 @@ "ru": "Интерактивный", "zh-chs": "互動", "xloc": [ - "default.handlebars->27->783" + "default.handlebars->27->789" ] }, { @@ -13955,10 +13957,10 @@ "ru": "Только интерактивный режим", "zh-chs": "僅限互動", "xloc": [ - "default.handlebars->27->1411", - "default.handlebars->27->1418", + "default.handlebars->27->1417", + "default.handlebars->27->1424", "default.handlebars->27->337", - "default.handlebars->27->359" + "default.handlebars->27->361" ] }, { @@ -13975,7 +13977,7 @@ "ru": "Интерфейсы", "zh-chs": "介面", "xloc": [ - "default.handlebars->27->597" + "default.handlebars->27->603" ] }, { @@ -13992,7 +13994,7 @@ "ru": "Инуктитут", "zh-chs": "因紐特人", "xloc": [ - "default.handlebars->27->1057" + "default.handlebars->27->1063" ] }, { @@ -14009,7 +14011,7 @@ "ru": "Некорректный тип группы устройств", "zh-chs": "無效的設備組類型", "xloc": [ - "default.handlebars->27->1847" + "default.handlebars->27->1851" ] }, { @@ -14026,7 +14028,7 @@ "ru": "Некорректный JSON", "zh-chs": "無效的JSON", "xloc": [ - "default.handlebars->27->1841" + "default.handlebars->27->1845" ] }, { @@ -14043,8 +14045,8 @@ "ru": "Некорректный формат файла JSON.", "zh-chs": "無效的JSON文件格式。", "xloc": [ - "default.handlebars->27->1555", - "default.handlebars->27->1557" + "default.handlebars->27->1561", + "default.handlebars->27->1563" ] }, { @@ -14061,7 +14063,7 @@ "ru": "Некорректный файл JSON: {0}.", "zh-chs": "無效的JSON文件:{0}。", "xloc": [ - "default.handlebars->27->1553" + "default.handlebars->27->1559" ] }, { @@ -14078,7 +14080,7 @@ "ru": "Некорректная сигнатура PKCS", "zh-chs": "無效的PKCS簽名", "xloc": [ - "default.handlebars->27->1839" + "default.handlebars->27->1843" ] }, { @@ -14095,7 +14097,7 @@ "ru": "Некорректная сигнатура RSA", "zh-chs": "無效的RSA密碼", "xloc": [ - "default.handlebars->27->1840" + "default.handlebars->27->1844" ] }, { @@ -14173,7 +14175,7 @@ "en": "Invalidate Email", "nl": "E-mail ongeldig maken", "xloc": [ - "default.handlebars->27->1531" + "default.handlebars->27->1537" ] }, { @@ -14238,7 +14240,7 @@ "ru": "Коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->27->1413" + "default.handlebars->27->1419" ] }, { @@ -14271,7 +14273,7 @@ "ru": "Пригласить", "zh-chs": "邀請", "xloc": [ - "default.handlebars->27->1277", + "default.handlebars->27->1283", "default.handlebars->27->267", "default.handlebars->27->349" ] @@ -14290,11 +14292,11 @@ "ru": "Пригласительные коды", "zh-chs": "邀請碼", "xloc": [ - "default.handlebars->27->1255", - "default.handlebars->27->1407", - "default.handlebars->27->1412", - "default.handlebars->27->1414", - "default.handlebars->27->1419" + "default.handlebars->27->1261", + "default.handlebars->27->1413", + "default.handlebars->27->1418", + "default.handlebars->27->1420", + "default.handlebars->27->1425" ] }, { @@ -14325,7 +14327,7 @@ "nl": "Nodig iemand uit om de mesh-agent in deze apparaatgroep te installeren.", "zh-chs": "邀请某人在该设备组上安装网状代理。", "xloc": [ - "default.handlebars->27->1276", + "default.handlebars->27->1282", "default.handlebars->27->266" ] }, @@ -14360,7 +14362,7 @@ "ru": "Ирландский", "zh-chs": "愛爾蘭人", "xloc": [ - "default.handlebars->27->1058" + "default.handlebars->27->1064" ] }, { @@ -14377,7 +14379,7 @@ "ru": "Итальянский (Стандартный)", "zh-chs": "意大利語(標準)", "xloc": [ - "default.handlebars->27->1059" + "default.handlebars->27->1065" ] }, { @@ -14394,7 +14396,7 @@ "ru": "Итальянский (Швейцария)", "zh-chs": "義大利文(瑞士)", "xloc": [ - "default.handlebars->27->1060" + "default.handlebars->27->1066" ] }, { @@ -14411,7 +14413,7 @@ "ru": "JSON", "zh-chs": "JSON", "xloc": [ - "default.handlebars->27->1491" + "default.handlebars->27->1497" ] }, { @@ -14428,9 +14430,9 @@ "ru": "Формат JSON", "zh-chs": "JSON格式", "xloc": [ - "default.handlebars->27->1496", - "default.handlebars->27->1561", - "default.handlebars->27->455" + "default.handlebars->27->1502", + "default.handlebars->27->1567", + "default.handlebars->27->461" ] }, { @@ -14447,7 +14449,7 @@ "ru": "Японский", "zh-chs": "日本", "xloc": [ - "default.handlebars->27->1061" + "default.handlebars->27->1067" ] }, { @@ -14464,7 +14466,7 @@ "ru": "Каннада", "zh-chs": "卡納達語", "xloc": [ - "default.handlebars->27->1062" + "default.handlebars->27->1068" ] }, { @@ -14481,7 +14483,7 @@ "ru": "Кашмирский", "zh-chs": "克什米爾語", "xloc": [ - "default.handlebars->27->1063" + "default.handlebars->27->1069" ] }, { @@ -14498,7 +14500,7 @@ "ru": "Казахский", "zh-chs": "哈薩克語", "xloc": [ - "default.handlebars->27->1064" + "default.handlebars->27->1070" ] }, { @@ -14515,7 +14517,7 @@ "ru": "Драйвер ядра", "zh-chs": "內核驅動程序", "xloc": [ - "default.handlebars->27->784" + "default.handlebars->27->790" ] }, { @@ -14532,8 +14534,8 @@ "ru": "Имя ключа", "zh-chs": "鍵名", "xloc": [ - "default.handlebars->27->955", - "default.handlebars->27->958" + "default.handlebars->27->961", + "default.handlebars->27->964" ] }, { @@ -14574,7 +14576,7 @@ "ru": "Кхмерский", "zh-chs": "高棉語", "xloc": [ - "default.handlebars->27->1065" + "default.handlebars->27->1071" ] }, { @@ -14591,7 +14593,7 @@ "ru": "Киргизский", "zh-chs": "吉爾吉斯", "xloc": [ - "default.handlebars->27->1066" + "default.handlebars->27->1072" ] }, { @@ -14608,7 +14610,7 @@ "ru": "Клингонский", "zh-chs": "克林貢", "xloc": [ - "default.handlebars->27->1067" + "default.handlebars->27->1073" ] }, { @@ -14626,7 +14628,7 @@ "zh-chs": "已知的", "xloc": [ "default-mobile.handlebars->9->365", - "default.handlebars->27->901" + "default.handlebars->27->907" ] }, { @@ -14643,7 +14645,7 @@ "ru": "Korean", "zh-chs": "韓語", "xloc": [ - "default.handlebars->27->1068" + "default.handlebars->27->1074" ] }, { @@ -14660,7 +14662,7 @@ "ru": "Корейский (Северная Корея)", "zh-chs": "韓語(朝鮮)", "xloc": [ - "default.handlebars->27->1069" + "default.handlebars->27->1075" ] }, { @@ -14677,7 +14679,7 @@ "ru": "Корейский (Южная Корея)", "zh-chs": "韓語(韓國)", "xloc": [ - "default.handlebars->27->1070" + "default.handlebars->27->1076" ] }, { @@ -14694,8 +14696,8 @@ "ru": "LF", "zh-chs": "如果", "xloc": [ - "default.handlebars->27->796", - "default.handlebars->27->805" + "default.handlebars->27->802", + "default.handlebars->27->811" ] }, { @@ -14712,7 +14714,7 @@ "ru": "Язык", "zh-chs": "語言", "xloc": [ - "default.handlebars->27->1164" + "default.handlebars->27->1170" ] }, { @@ -14746,7 +14748,7 @@ "ru": "Большой Фокус", "zh-chs": "大焦點", "xloc": [ - "default.handlebars->27->772" + "default.handlebars->27->778" ] }, { @@ -14929,7 +14931,7 @@ "ru": "Последний доступ", "zh-chs": "最後訪問", "xloc": [ - "default.handlebars->27->1504" + "default.handlebars->27->1510" ] }, { @@ -14946,7 +14948,7 @@ "ru": "Последний вход в систему", "zh-chs": "上次登錄", "xloc": [ - "default.handlebars->27->1698" + "default.handlebars->27->1704" ] }, { @@ -14969,9 +14971,9 @@ "default.handlebars->27->69", "default.handlebars->27->71", "default.handlebars->27->73", - "default.handlebars->27->859", - "default.handlebars->27->860", - "default.handlebars->27->861" + "default.handlebars->27->865", + "default.handlebars->27->866", + "default.handlebars->27->867" ] }, { @@ -14991,8 +14993,8 @@ "default-mobile.handlebars->9->330", "default-mobile.handlebars->9->332", "default.handlebars->27->68", - "default.handlebars->27->856", - "default.handlebars->27->858" + "default.handlebars->27->862", + "default.handlebars->27->864" ] }, { @@ -15009,7 +15011,7 @@ "ru": "Последнее изменение: {0}", "zh-chs": "上次更改:{0}", "xloc": [ - "default.handlebars->27->1702" + "default.handlebars->27->1708" ] }, { @@ -15060,7 +15062,7 @@ "ru": "Последний вход в систему: {0}", "zh-chs": "上次登錄:{0}", "xloc": [ - "default.handlebars->27->1514" + "default.handlebars->27->1520" ] }, { @@ -15077,7 +15079,7 @@ "ru": "Последнее посещение:", "zh-chs": "最後一次露面:", "xloc": [ - "default.handlebars->27->624", + "default.handlebars->27->630", "default.handlebars->27->65" ] }, @@ -15146,7 +15148,7 @@ "ru": "Латинский", "zh-chs": "拉丁", "xloc": [ - "default.handlebars->27->1071" + "default.handlebars->27->1077" ] }, { @@ -15163,28 +15165,28 @@ "ru": "Латышский", "zh-chs": "拉脫維亞語", "xloc": [ - "default.handlebars->27->1072" + "default.handlebars->27->1078" ] }, { "en": "Launch MeshCentral Router", "nl": "Start MeshCentral Router", "xloc": [ - "default.handlebars->27->723" + "default.handlebars->27->729" ] }, { "en": "Launch noVNC session to this device", "nl": "Start een noVNC-sessie op dit apparaat", "xloc": [ - "default.handlebars->27->610" + "default.handlebars->27->616" ] }, { "en": "Launch web-based RDP session to this device", "nl": "Start een webgebaseerde RDP-sessie op dit apparaat", "xloc": [ - "default.handlebars->27->612" + "default.handlebars->27->618" ] }, { @@ -15197,7 +15199,7 @@ "nl": "Leeg laten voor geen.", "zh-chs": "一无所有。", "xloc": [ - "default.handlebars->27->1742" + "default.handlebars->27->1748" ] }, { @@ -15236,7 +15238,7 @@ "ru": "Меньше", "zh-chs": "減", "xloc": [ - "default.handlebars->27->1909" + "default.handlebars->27->1913" ] }, { @@ -15252,8 +15254,8 @@ "ru": "Предельные события", "zh-chs": "极限赛事", "xloc": [ - "default.handlebars->27->645", - "default.handlebars->27->664" + "default.handlebars->27->651", + "default.handlebars->27->670" ] }, { @@ -15289,9 +15291,9 @@ "zh-chs": "有限輸入", "xloc": [ "default-mobile.handlebars->9->438", - "default.handlebars->27->1391", - "default.handlebars->27->638", - "default.handlebars->27->657" + "default.handlebars->27->1397", + "default.handlebars->27->644", + "default.handlebars->27->663" ] }, { @@ -15309,7 +15311,7 @@ "zh-chs": "僅限於輸入", "xloc": [ "default-mobile.handlebars->9->413", - "default.handlebars->27->1349" + "default.handlebars->27->1355" ] }, { @@ -15394,7 +15396,7 @@ "ru": "Linux / BSD", "zh-chs": "Linux / BSD", "xloc": [ - "default.handlebars->27->352" + "default.handlebars->27->353" ] }, { @@ -15411,7 +15413,7 @@ "ru": "Linux / BSD (Удаление)", "zh-chs": "Linux / BSD(卸載)", "xloc": [ - "default.handlebars->27->355" + "default.handlebars->27->356" ] }, { @@ -15482,7 +15484,7 @@ "ru": "Linux ARM, Raspberry Pi (32bit)", "zh-chs": "Linux ARM,Raspberry Pi(32位)", "xloc": [ - "default.handlebars->27->730" + "default.handlebars->27->736" ] }, { @@ -15588,7 +15590,7 @@ "ru": "Linux x86 (32bit)", "zh-chs": "Linux x86(32位)", "xloc": [ - "default.handlebars->27->727" + "default.handlebars->27->733" ] }, { @@ -15605,14 +15607,20 @@ "ru": "Linux x86 (64bit)", "zh-chs": "Linux x86(64位)", "xloc": [ - "default.handlebars->27->728" + "default.handlebars->27->734" ] }, { "en": "Linux/BSD/macOS Command Shell", "nl": "Linux/BSD/macOS Command Shell", "xloc": [ - "default.handlebars->27->442" + "default.handlebars->27->448" + ] + }, + { + "en": "Linux/macOS Binary Installer", + "xloc": [ + "default.handlebars->27->350" ] }, { @@ -15647,7 +15655,7 @@ "ru": "Литовский", "zh-chs": "立陶宛語", "xloc": [ - "default.handlebars->27->1073" + "default.handlebars->27->1079" ] }, { @@ -15665,11 +15673,11 @@ "zh-chs": "載入中...", "xloc": [ "default-mobile.handlebars->9->72", - "default.handlebars->27->1218", - "default.handlebars->27->1222", - "default.handlebars->27->1796", - "default.handlebars->27->719", - "default.handlebars->27->951" + "default.handlebars->27->1224", + "default.handlebars->27->1228", + "default.handlebars->27->1802", + "default.handlebars->27->725", + "default.handlebars->27->957" ] }, { @@ -15738,7 +15746,7 @@ "ru": "Настройки локализации", "zh-chs": "本地化設置", "xloc": [ - "default.handlebars->27->1167", + "default.handlebars->27->1173", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -15756,7 +15764,7 @@ "ru": "Местонахождение", "zh-chs": "位置", "xloc": [ - "default.handlebars->27->599" + "default.handlebars->27->605" ] }, { @@ -15790,7 +15798,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->27->1600" + "default.handlebars->27->1606" ] }, { @@ -15807,7 +15815,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->27->1534" + "default.handlebars->27->1540" ] }, { @@ -15824,7 +15832,7 @@ "ru": "Заблокирован", "zh-chs": "已鎖定", "xloc": [ - "default.handlebars->27->1515" + "default.handlebars->27->1521" ] }, { @@ -15841,7 +15849,7 @@ "ru": "Заблокированная учетная запись", "zh-chs": "賬戶鎖定", "xloc": [ - "default.handlebars->27->1674" + "default.handlebars->27->1680" ] }, { @@ -15858,7 +15866,7 @@ "ru": "Добавить событие", "zh-chs": "記錄事件", "xloc": [ - "default.handlebars->27->588" + "default.handlebars->27->594" ] }, { @@ -16028,7 +16036,7 @@ "ru": "Люксембургский", "zh-chs": "盧森堡語", "xloc": [ - "default.handlebars->27->1074" + "default.handlebars->27->1080" ] }, { @@ -16047,10 +16055,10 @@ "xloc": [ "default-mobile.handlebars->9->338", "default-mobile.handlebars->9->340", - "default.handlebars->27->864", - "default.handlebars->27->866", - "default.handlebars->27->874", - "default.handlebars->27->876" + "default.handlebars->27->870", + "default.handlebars->27->872", + "default.handlebars->27->880", + "default.handlebars->27->882" ] }, { @@ -16086,8 +16094,8 @@ "zh-chs": "MAC:{0}", "xloc": [ "default-mobile.handlebars->9->341", - "default.handlebars->27->867", - "default.handlebars->27->877" + "default.handlebars->27->873", + "default.handlebars->27->883" ] }, { @@ -16105,8 +16113,8 @@ "zh-chs": "MAC:{0},網關:{1}", "xloc": [ "default-mobile.handlebars->9->339", - "default.handlebars->27->865", - "default.handlebars->27->875" + "default.handlebars->27->871", + "default.handlebars->27->881" ] }, { @@ -16162,10 +16170,10 @@ "default-mobile.handlebars->9->203", "default-mobile.handlebars->9->243", "default.handlebars->27->203", - "default.handlebars->27->418", - "default.handlebars->27->581", - "default.handlebars->27->929", - "default.handlebars->27->930", + "default.handlebars->27->424", + "default.handlebars->27->587", + "default.handlebars->27->935", + "default.handlebars->27->936", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -16200,7 +16208,7 @@ "ru": "MQTT Вход", "zh-chs": "MQTT登錄", "xloc": [ - "default.handlebars->27->615" + "default.handlebars->27->621" ] }, { @@ -16218,7 +16226,7 @@ "zh-chs": "MQTT通道已連接", "xloc": [ "default-mobile.handlebars->9->253", - "default.handlebars->27->623" + "default.handlebars->27->629" ] }, { @@ -16236,7 +16244,7 @@ "zh-chs": "MQTT已連接", "xloc": [ "default.handlebars->27->163", - "default.handlebars->27->622" + "default.handlebars->27->628" ] }, { @@ -16254,8 +16262,8 @@ "zh-chs": "與設備的MQTT連接已激活。", "xloc": [ "default.handlebars->27->202", - "default.handlebars->27->417", - "default.handlebars->27->580" + "default.handlebars->27->423", + "default.handlebars->27->586" ] }, { @@ -16306,7 +16314,7 @@ "ru": "MacOS (64bit)", "zh-chs": "MacOS(64位)", "xloc": [ - "default.handlebars->27->729" + "default.handlebars->27->735" ] }, { @@ -16359,7 +16367,7 @@ "ru": "Сообщения главного сервера", "zh-chs": "主服務器消息", "xloc": [ - "default.handlebars->27->1881" + "default.handlebars->27->1885" ] }, { @@ -16376,7 +16384,7 @@ "ru": "Малайский", "zh-chs": "馬來語", "xloc": [ - "default.handlebars->27->1076" + "default.handlebars->27->1082" ] }, { @@ -16393,7 +16401,7 @@ "ru": "Малаяламский", "zh-chs": "馬拉雅拉姆語", "xloc": [ - "default.handlebars->27->1077" + "default.handlebars->27->1083" ] }, { @@ -16410,7 +16418,7 @@ "ru": "Мальтийский", "zh-chs": "馬耳他語", "xloc": [ - "default.handlebars->27->1078" + "default.handlebars->27->1084" ] }, { @@ -16447,8 +16455,8 @@ "xloc": [ "default-mobile.handlebars->9->410", "default-mobile.handlebars->9->428", - "default.handlebars->27->1346", - "default.handlebars->27->1380" + "default.handlebars->27->1352", + "default.handlebars->27->1386" ] }, { @@ -16467,8 +16475,8 @@ "xloc": [ "default-mobile.handlebars->9->409", "default-mobile.handlebars->9->427", - "default.handlebars->27->1345", - "default.handlebars->27->1379" + "default.handlebars->27->1351", + "default.handlebars->27->1385" ] }, { @@ -16484,14 +16492,14 @@ "ru": "Управление устройствами", "zh-chs": "管理设备", "xloc": [ - "default.handlebars->27->652" + "default.handlebars->27->658" ] }, { "en": "Manage Recordings", "nl": "Beheeer opnames", "xloc": [ - "default.handlebars->27->1599" + "default.handlebars->27->1605" ] }, { @@ -16525,7 +16533,7 @@ "ru": "Управление группами пользователя", "zh-chs": "管理用戶組", "xloc": [ - "default.handlebars->27->1598" + "default.handlebars->27->1604" ] }, { @@ -16542,8 +16550,8 @@ "ru": "Управление пользователями", "zh-chs": "管理用戶", "xloc": [ - "default.handlebars->27->1597", - "default.handlebars->27->651" + "default.handlebars->27->1603", + "default.handlebars->27->657" ] }, { @@ -16647,7 +16655,7 @@ "ru": "Управление с помощью программного агента", "zh-chs": "使用軟件代理進行管理", "xloc": [ - "default.handlebars->27->1200" + "default.handlebars->27->1206" ] }, { @@ -16665,7 +16673,7 @@ "zh-chs": "使用軟件代理進行管理", "xloc": [ "default-mobile.handlebars->9->390", - "default.handlebars->27->1228" + "default.handlebars->27->1234" ] }, { @@ -16682,7 +16690,7 @@ "ru": "Менеджер", "zh-chs": "經理", "xloc": [ - "default.handlebars->27->1520" + "default.handlebars->27->1526" ] }, { @@ -16733,7 +16741,7 @@ "ru": "Маори", "zh-chs": "毛利人", "xloc": [ - "default.handlebars->27->1079" + "default.handlebars->27->1085" ] }, { @@ -16768,7 +16776,7 @@ "ru": "Маратхи", "zh-chs": "馬拉地語", "xloc": [ - "default.handlebars->27->1080" + "default.handlebars->27->1086" ] }, { @@ -16785,7 +16793,7 @@ "ru": "Достигнуто максимальное число сессий", "zh-chs": "達到的會話數上限", "xloc": [ - "default.handlebars->27->1845" + "default.handlebars->27->1849" ] }, { @@ -16839,7 +16847,7 @@ "ru": "Мегабайт", "zh-chs": "兆字節", "xloc": [ - "default.handlebars->27->1871" + "default.handlebars->27->1875" ] }, { @@ -16857,8 +16865,8 @@ "zh-chs": "記憶", "xloc": [ "default-mobile.handlebars->9->381", - "default.handlebars->27->1862", - "default.handlebars->27->917", + "default.handlebars->27->1866", + "default.handlebars->27->923", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -16879,15 +16887,16 @@ "default-mobile.handlebars->9->250", "default-mobile.handlebars->9->329", "default-mobile.handlebars->9->336", - "default.handlebars->27->361", - "default.handlebars->27->365", - "default.handlebars->27->374", - "default.handlebars->27->378", - "default.handlebars->27->381", - "default.handlebars->27->529", - "default.handlebars->27->573", - "default.handlebars->27->855", - "default.handlebars->27->862" + "default.handlebars->27->363", + "default.handlebars->27->367", + "default.handlebars->27->376", + "default.handlebars->27->380", + "default.handlebars->27->383", + "default.handlebars->27->388", + "default.handlebars->27->535", + "default.handlebars->27->579", + "default.handlebars->27->861", + "default.handlebars->27->868" ] }, { @@ -16905,7 +16914,7 @@ "zh-chs": "網格代理控制台", "xloc": [ "default-mobile.handlebars->9->417", - "default.handlebars->27->1354" + "default.handlebars->27->1360" ] }, { @@ -16922,7 +16931,7 @@ "ru": "Ретранслятор Mesh", "zh-chs": "網狀中繼", "xloc": [ - "default.handlebars->27->579" + "default.handlebars->27->585" ] }, { @@ -16940,8 +16949,8 @@ "zh-chs": "已連接網狀代理並準備使用。", "xloc": [ "default.handlebars->27->194", - "default.handlebars->27->409", - "default.handlebars->27->572" + "default.handlebars->27->415", + "default.handlebars->27->578" ] }, { @@ -16959,8 +16968,8 @@ "zh-chs": "使用其他代理作為中繼可以訪問網狀代理。", "xloc": [ "default.handlebars->27->200", - "default.handlebars->27->415", - "default.handlebars->27->578" + "default.handlebars->27->421", + "default.handlebars->27->584" ] }, { @@ -16977,8 +16986,8 @@ "ru": "MeshAction (.txt)", "zh-chs": "MeshAction(.txt)", "xloc": [ - "default.handlebars->27->736", - "default.handlebars->27->738" + "default.handlebars->27->742", + "default.handlebars->27->744" ] }, { @@ -16995,7 +17004,7 @@ "ru": "Трафик MeshAgent", "zh-chs": "MeshAgent流量", "xloc": [ - "default.handlebars->27->1883" + "default.handlebars->27->1887" ] }, { @@ -17012,7 +17021,7 @@ "ru": "Обновление MeshAgent", "zh-chs": "MeshAgent更新", "xloc": [ - "default.handlebars->27->1884" + "default.handlebars->27->1888" ] }, { @@ -17046,7 +17055,7 @@ "ru": "Ошибки MeshCentral", "zh-chs": "網格中心錯誤", "xloc": [ - "default.handlebars->27->1221" + "default.handlebars->27->1227" ] }, { @@ -17063,7 +17072,7 @@ "ru": "MeshCentral Router ", "zh-chs": "MeshCentral路由器", "xloc": [ - "default.handlebars->27->724" + "default.handlebars->27->730" ] }, { @@ -17080,7 +17089,7 @@ "ru": "MeshCentral Router это инструмент Windows для сопоставления портов TCP. Например, через этот сервер можно установить подключение по RDP к удаленному устройству.", "zh-chs": "MeshCentral Router是Windows工具,用於TCP端口映射。例如,您可以通過該服務器將RDP放入遠程設備。", "xloc": [ - "default.handlebars->27->720" + "default.handlebars->27->726" ] }, { @@ -17115,7 +17124,7 @@ "ru": "Соединения сервера MeshCentral", "zh-chs": "MeshCentral服務器對等", "xloc": [ - "default.handlebars->27->1882" + "default.handlebars->27->1886" ] }, { @@ -17151,7 +17160,7 @@ "xloc": [ "default.handlebars->27->115", "default.handlebars->27->117", - "default.handlebars->27->1217" + "default.handlebars->27->1223" ] }, { @@ -17169,8 +17178,8 @@ "zh-chs": "MeshCmd", "xloc": [ "default.handlebars->27->218", - "default.handlebars->27->601", - "default.handlebars->27->734" + "default.handlebars->27->607", + "default.handlebars->27->740" ] }, { @@ -17187,7 +17196,7 @@ "ru": "MeshCmd (Linux ARM, 32bit)", "zh-chs": "MeshCmd(Linux ARM,32位)", "xloc": [ - "default.handlebars->27->745" + "default.handlebars->27->751" ] }, { @@ -17204,7 +17213,7 @@ "ru": "MeshCmd (Linux x86, 32bit)", "zh-chs": "MeshCmd(Linux x86,32bit)", "xloc": [ - "default.handlebars->27->742" + "default.handlebars->27->748" ] }, { @@ -17221,7 +17230,7 @@ "ru": "MeshCmd (Linux x86, 64bit)", "zh-chs": "MeshCmd(Linux x86,64bit)", "xloc": [ - "default.handlebars->27->743" + "default.handlebars->27->749" ] }, { @@ -17238,7 +17247,7 @@ "ru": "MeshCmd (MacOS, 64bit)", "zh-chs": "MeshCmd(MacOS,64位)", "xloc": [ - "default.handlebars->27->744" + "default.handlebars->27->750" ] }, { @@ -17255,7 +17264,7 @@ "ru": "MeshCmd (приложение Win32)", "zh-chs": "MeshCmd(Win32可執行文件)", "xloc": [ - "default.handlebars->27->740" + "default.handlebars->27->746" ] }, { @@ -17272,7 +17281,7 @@ "ru": "MeshCmd (приложение Win64)", "zh-chs": "MeshCmd(Win64可執行文件)", "xloc": [ - "default.handlebars->27->741" + "default.handlebars->27->747" ] }, { @@ -17289,7 +17298,7 @@ "ru": "MeshCmd это утилита с командной строкой, которая позволяет выполнить множество операций. Файл с командами может быть опционально скачан и отредактирован для указания информации о сервере и учетных данных.", "zh-chs": "MeshCmd是執行許多不同操作的命令行工具。可以選擇下載和編輯操作文件以提供服務器信息和憑據。", "xloc": [ - "default.handlebars->27->731" + "default.handlebars->27->737" ] }, { @@ -17361,8 +17370,8 @@ "zh-chs": "信息", "xloc": [ "default.handlebars->27->338", - "default.handlebars->27->590", - "default.handlebars->27->700" + "default.handlebars->27->596", + "default.handlebars->27->706" ] }, { @@ -17379,7 +17388,7 @@ "ru": "Диспетчер сообщения", "zh-chs": "郵件調度程序", "xloc": [ - "default.handlebars->27->1880" + "default.handlebars->27->1884" ] }, { @@ -17477,7 +17486,7 @@ "zh-chs": "模型", "xloc": [ "default-mobile.handlebars->9->382", - "default.handlebars->27->918" + "default.handlebars->27->924" ] }, { @@ -17494,7 +17503,7 @@ "ru": "Изменить позицию узла", "zh-chs": "修改節點位置", "xloc": [ - "default.handlebars->27->488" + "default.handlebars->27->494" ] }, { @@ -17511,7 +17520,7 @@ "ru": "Молдавский", "zh-chs": "摩爾達維亞人", "xloc": [ - "default.handlebars->27->1081" + "default.handlebars->27->1087" ] }, { @@ -17528,7 +17537,7 @@ "ru": "Еще", "zh-chs": "更多", "xloc": [ - "default.handlebars->27->1908" + "default.handlebars->27->1912" ] }, { @@ -17546,7 +17555,7 @@ "zh-chs": "母板", "xloc": [ "default-mobile.handlebars->9->377", - "default.handlebars->27->913" + "default.handlebars->27->919" ] }, { @@ -17563,7 +17572,7 @@ "ru": "Переместить это устройство в другую группу устройств", "zh-chs": "將此設備移到其他設備組", "xloc": [ - "default.handlebars->27->592" + "default.handlebars->27->598" ] }, { @@ -17580,7 +17589,7 @@ "ru": "Переместить в группу устройств", "zh-chs": "移至設備組", "xloc": [ - "default.handlebars->27->432" + "default.handlebars->27->438" ] }, { @@ -17604,7 +17613,7 @@ "en": "Multiplexor", "nl": "Multiplexor", "xloc": [ - "default.handlebars->27->1823" + "default.handlebars->27->1827" ] }, { @@ -17719,7 +17728,7 @@ "ru": "Консоль моего сервера", "zh-chs": "我的服務器控制台", "xloc": [ - "default.handlebars->27->924" + "default.handlebars->27->930" ] }, { @@ -17847,8 +17856,8 @@ "ru": "Мой ключ", "zh-chs": "我的鑰匙", "xloc": [ - "default.handlebars->27->956", - "default.handlebars->27->959" + "default.handlebars->27->962", + "default.handlebars->27->965" ] }, { @@ -17872,21 +17881,21 @@ "default-mobile.handlebars->9->404", "default-mobile.handlebars->9->97", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->27->1198", - "default.handlebars->27->1229", - "default.handlebars->27->1312", - "default.handlebars->27->1502", - "default.handlebars->27->1605", - "default.handlebars->27->1621", - "default.handlebars->27->1628", - "default.handlebars->27->1661", - "default.handlebars->27->1680", - "default.handlebars->27->517", + "default.handlebars->27->1204", + "default.handlebars->27->1235", + "default.handlebars->27->1318", + "default.handlebars->27->1508", + "default.handlebars->27->1611", + "default.handlebars->27->1627", + "default.handlebars->27->1634", + "default.handlebars->27->1667", + "default.handlebars->27->1686", + "default.handlebars->27->523", "default.handlebars->27->76", - "default.handlebars->27->778", - "default.handlebars->27->851", + "default.handlebars->27->784", + "default.handlebars->27->857", "default.handlebars->27->90", - "default.handlebars->27->907", + "default.handlebars->27->913", "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" @@ -17923,7 +17932,7 @@ "ru": "Имя1, Имя2, Имя3", "zh-chs": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->27->1589" + "default.handlebars->27->1595" ] }, { @@ -17940,7 +17949,7 @@ "ru": "Навахо", "zh-chs": "納瓦霍人", "xloc": [ - "default.handlebars->27->1082" + "default.handlebars->27->1088" ] }, { @@ -17957,7 +17966,7 @@ "ru": "Ндонга", "zh-chs": "恩東加", "xloc": [ - "default.handlebars->27->1083" + "default.handlebars->27->1089" ] }, { @@ -17974,7 +17983,7 @@ "ru": "Непальский", "zh-chs": "尼泊爾文", "xloc": [ - "default.handlebars->27->1084" + "default.handlebars->27->1090" ] }, { @@ -17991,7 +18000,7 @@ "ru": "Сетевые интерфейсы", "zh-chs": "網絡接口", "xloc": [ - "default.handlebars->27->718" + "default.handlebars->27->724" ] }, { @@ -18023,8 +18032,8 @@ "zh-chs": "聯網", "xloc": [ "default-mobile.handlebars->9->350", - "default.handlebars->27->872", - "default.handlebars->27->886" + "default.handlebars->27->878", + "default.handlebars->27->892" ] }, { @@ -18077,9 +18086,9 @@ "zh-chs": "新設備組", "xloc": [ "default-mobile.handlebars->9->91", - "default.handlebars->27->1191", - "default.handlebars->27->1203", - "default.handlebars->27->710" + "default.handlebars->27->1197", + "default.handlebars->27->1209", + "default.handlebars->27->716" ] }, { @@ -18098,8 +18107,8 @@ "xloc": [ "default-mobile.handlebars->9->120", "default-mobile.handlebars->9->299", - "default.handlebars->27->1461", - "default.handlebars->27->815", + "default.handlebars->27->1467", + "default.handlebars->27->821", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -18154,8 +18163,8 @@ "xloc": [ "default-mobile.handlebars->9->86", "default-mobile.handlebars->9->87", - "default.handlebars->27->1186", - "default.handlebars->27->1187" + "default.handlebars->27->1192", + "default.handlebars->27->1193" ] }, { @@ -18172,8 +18181,8 @@ "ru": "Нет AMT", "zh-chs": "没有AMT", "xloc": [ - "default.handlebars->27->637", - "default.handlebars->27->656" + "default.handlebars->27->643", + "default.handlebars->27->662" ] }, { @@ -18223,8 +18232,8 @@ "xloc": [ "default-mobile.handlebars->9->233", "default-mobile.handlebars->9->234", - "default.handlebars->27->543", - "default.handlebars->27->544" + "default.handlebars->27->549", + "default.handlebars->27->550" ] }, { @@ -18241,9 +18250,9 @@ "ru": "Нет рабочего стола", "zh-chs": "沒有桌面", "xloc": [ - "default.handlebars->27->1387", - "default.handlebars->27->639", - "default.handlebars->27->658" + "default.handlebars->27->1393", + "default.handlebars->27->645", + "default.handlebars->27->664" ] }, { @@ -18260,7 +18269,7 @@ "ru": "Нет доступа к рабочему столу", "zh-chs": "沒有桌面訪問", "xloc": [ - "default.handlebars->27->1350" + "default.handlebars->27->1356" ] }, { @@ -18277,9 +18286,9 @@ "ru": "События не найдены", "zh-chs": "找不到活動", "xloc": [ - "default.handlebars->27->1478", - "default.handlebars->27->1795", - "default.handlebars->27->849" + "default.handlebars->27->1484", + "default.handlebars->27->1801", + "default.handlebars->27->855" ] }, { @@ -18297,7 +18306,7 @@ "zh-chs": "沒有文件訪問", "xloc": [ "default-mobile.handlebars->9->415", - "default.handlebars->27->1352" + "default.handlebars->27->1358" ] }, { @@ -18315,9 +18324,9 @@ "zh-chs": "沒有文件", "xloc": [ "default-mobile.handlebars->9->436", - "default.handlebars->27->1389", - "default.handlebars->27->636", - "default.handlebars->27->655" + "default.handlebars->27->1395", + "default.handlebars->27->642", + "default.handlebars->27->661" ] }, { @@ -18333,8 +18342,8 @@ "ru": "Нет ввода", "zh-chs": "无输入", "xloc": [ - "default.handlebars->27->634", - "default.handlebars->27->653" + "default.handlebars->27->640", + "default.handlebars->27->659" ] }, { @@ -18353,8 +18362,8 @@ "xloc": [ "default-mobile.handlebars->9->416", "default-mobile.handlebars->9->437", - "default.handlebars->27->1353", - "default.handlebars->27->1390" + "default.handlebars->27->1359", + "default.handlebars->27->1396" ] }, { @@ -18422,7 +18431,7 @@ "ru": "Нет членов", "zh-chs": "沒有會員", "xloc": [ - "default.handlebars->27->1643" + "default.handlebars->27->1649" ] }, { @@ -18439,7 +18448,7 @@ "ru": "Запретить создание групп устройств", "zh-chs": "沒有新的設備組", "xloc": [ - "default.handlebars->27->1601" + "default.handlebars->27->1607" ] }, { @@ -18456,9 +18465,9 @@ "ru": "Политик нет", "zh-chs": "沒有政策", "xloc": [ - "default.handlebars->27->1256", - "default.handlebars->27->1284", - "default.handlebars->27->1287" + "default.handlebars->27->1262", + "default.handlebars->27->1290", + "default.handlebars->27->1293" ] }, { @@ -18478,10 +18487,10 @@ "default-mobile.handlebars->9->106", "default-mobile.handlebars->9->399", "default-mobile.handlebars->9->442", - "default.handlebars->27->1212", - "default.handlebars->27->1395", - "default.handlebars->27->648", - "default.handlebars->27->667" + "default.handlebars->27->1218", + "default.handlebars->27->1401", + "default.handlebars->27->654", + "default.handlebars->27->673" ] }, { @@ -18500,7 +18509,7 @@ "xloc": [ "default-mobile.handlebars->9->271", "default.handlebars->27->276", - "default.handlebars->27->696" + "default.handlebars->27->702" ] }, { @@ -18518,9 +18527,9 @@ "zh-chs": "沒有終端", "xloc": [ "default-mobile.handlebars->9->435", - "default.handlebars->27->1388", - "default.handlebars->27->635", - "default.handlebars->27->654" + "default.handlebars->27->1394", + "default.handlebars->27->641", + "default.handlebars->27->660" ] }, { @@ -18538,7 +18547,7 @@ "zh-chs": "沒有終端訪問", "xloc": [ "default-mobile.handlebars->9->414", - "default.handlebars->27->1351" + "default.handlebars->27->1357" ] }, { @@ -18555,7 +18564,7 @@ "ru": "Нет инструментов (MeshCmd/Router)", "zh-chs": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->27->1602" + "default.handlebars->27->1608" ] }, { @@ -18572,8 +18581,8 @@ "ru": "Нет общих групп устройств", "zh-chs": "沒有共同的設備組", "xloc": [ - "default.handlebars->27->1649", - "default.handlebars->27->1767" + "default.handlebars->27->1655", + "default.handlebars->27->1773" ] }, { @@ -18652,7 +18661,7 @@ "ru": "Устройства не найдены.", "zh-chs": "找不到設備。", "xloc": [ - "default.handlebars->27->505" + "default.handlebars->27->511" ] }, { @@ -18669,8 +18678,8 @@ "ru": "Нет общих устройств", "zh-chs": "沒有共同的設備", "xloc": [ - "default.handlebars->27->1655", - "default.handlebars->27->1779" + "default.handlebars->27->1661", + "default.handlebars->27->1785" ] }, { @@ -18687,7 +18696,7 @@ "ru": "В группе нет устройств.", "zh-chs": "該設備組中沒有設備。", "xloc": [ - "default.handlebars->27->1438" + "default.handlebars->27->1444" ] }, { @@ -18757,7 +18766,7 @@ "ru": "Группы не найдены.", "zh-chs": "找不到群組。", "xloc": [ - "default.handlebars->27->1604" + "default.handlebars->27->1610" ] }, { @@ -18775,7 +18784,7 @@ "zh-chs": "沒有此設備的信息。", "xloc": [ "default-mobile.handlebars->9->387", - "default.handlebars->27->923" + "default.handlebars->27->929" ] }, { @@ -18792,7 +18801,7 @@ "ru": "Местоположение не найдено.", "zh-chs": "找不到位置。", "xloc": [ - "default.handlebars->27->507" + "default.handlebars->27->513" ] }, { @@ -18826,7 +18835,7 @@ "ru": "Других групп устройств такого же типа не существует.", "zh-chs": "沒有其他相同類型的設備組。", "xloc": [ - "default.handlebars->27->713" + "default.handlebars->27->719" ] }, { @@ -18849,7 +18858,7 @@ { "en": "No recordings.", "xloc": [ - "default.handlebars->27->1798" + "default.handlebars->27->1803" ] }, { @@ -18866,7 +18875,7 @@ "ru": "Нет серверных прав", "zh-chs": "沒有服務器權限", "xloc": [ - "default.handlebars->27->1675" + "default.handlebars->27->1681" ] }, { @@ -18883,7 +18892,7 @@ "ru": "Нет членства в группах пользователей", "zh-chs": "沒有用戶組成員身份", "xloc": [ - "default.handlebars->27->1773" + "default.handlebars->27->1779" ] }, { @@ -18900,7 +18909,7 @@ "ru": "Пользователи не найдены.", "zh-chs": "未找到相應的用戶。", "xloc": [ - "default.handlebars->27->1510" + "default.handlebars->27->1516" ] }, { @@ -18916,7 +18925,7 @@ "ru": "Нет пользователей со специальными правами доступа к устройству", "zh-chs": "没有拥有特殊设备权限的用户", "xloc": [ - "default.handlebars->27->632" + "default.handlebars->27->638" ] }, { @@ -18977,29 +18986,29 @@ "default-mobile.handlebars->9->245", "default-mobile.handlebars->9->297", "default-mobile.handlebars->9->393", - "default.handlebars->27->1224", - "default.handlebars->27->1231", - "default.handlebars->27->1235", - "default.handlebars->27->1247", - "default.handlebars->27->1252", - "default.handlebars->27->1254", - "default.handlebars->27->1429", - "default.handlebars->27->1448", - "default.handlebars->27->1486", - "default.handlebars->27->1625", - "default.handlebars->27->1627", - "default.handlebars->27->1694", - "default.handlebars->27->1703", - "default.handlebars->27->1707", - "default.handlebars->27->1719", + "default.handlebars->27->1230", + "default.handlebars->27->1237", + "default.handlebars->27->1241", + "default.handlebars->27->1253", + "default.handlebars->27->1258", + "default.handlebars->27->1260", + "default.handlebars->27->1435", + "default.handlebars->27->1454", + "default.handlebars->27->1492", + "default.handlebars->27->1631", + "default.handlebars->27->1633", + "default.handlebars->27->1700", + "default.handlebars->27->1709", + "default.handlebars->27->1713", + "default.handlebars->27->1725", "default.handlebars->27->174", "default.handlebars->27->190", "default.handlebars->27->191", - "default.handlebars->27->514", - "default.handlebars->27->525", - "default.handlebars->27->526", - "default.handlebars->27->570", - "default.handlebars->27->583", + "default.handlebars->27->520", + "default.handlebars->27->531", + "default.handlebars->27->532", + "default.handlebars->27->576", + "default.handlebars->27->589", "default.handlebars->27->63", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] @@ -19035,7 +19044,7 @@ "ru": "Норвежский", "zh-chs": "挪威", "xloc": [ - "default.handlebars->27->1085" + "default.handlebars->27->1091" ] }, { @@ -19052,7 +19061,7 @@ "ru": "Норвежский (Букмол)", "zh-chs": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->27->1086" + "default.handlebars->27->1092" ] }, { @@ -19069,7 +19078,7 @@ "ru": "Норвежский (Нюнорск)", "zh-chs": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->27->1087" + "default.handlebars->27->1093" ] }, { @@ -19088,8 +19097,8 @@ "xloc": [ "default-mobile.handlebars->9->225", "default-mobile.handlebars->9->354", - "default.handlebars->27->531", - "default.handlebars->27->890" + "default.handlebars->27->537", + "default.handlebars->27->896" ] }, { @@ -19108,8 +19117,8 @@ "xloc": [ "default-mobile.handlebars->9->224", "default-mobile.handlebars->9->353", - "default.handlebars->27->530", - "default.handlebars->27->889" + "default.handlebars->27->536", + "default.handlebars->27->895" ] }, { @@ -19126,8 +19135,8 @@ "ru": "Не подключен", "zh-chs": "未連接", "xloc": [ - "default.handlebars->27->1425", - "default.handlebars->27->1433" + "default.handlebars->27->1431", + "default.handlebars->27->1439" ] }, { @@ -19145,14 +19154,14 @@ "zh-chs": "未知", "xloc": [ "default-mobile.handlebars->9->364", - "default.handlebars->27->900" + "default.handlebars->27->906" ] }, { "en": "Not on server", "nl": "Niet op de server", "xloc": [ - "default.handlebars->27->1815" + "default.handlebars->27->1819" ] }, { @@ -19169,8 +19178,8 @@ "ru": "Не задано", "zh-chs": "沒有設置", "xloc": [ - "default.handlebars->27->1681", - "default.handlebars->27->1682" + "default.handlebars->27->1687", + "default.handlebars->27->1688" ] }, { @@ -19187,7 +19196,7 @@ "ru": "не подтверждено", "zh-chs": "未經審核的", "xloc": [ - "default.handlebars->27->1749" + "default.handlebars->27->1755" ] }, { @@ -19204,12 +19213,12 @@ "ru": "Примечания", "zh-chs": "筆記", "xloc": [ - "default.handlebars->27->1262", - "default.handlebars->27->1727", - "default.handlebars->27->586", - "default.handlebars->27->644", - "default.handlebars->27->663", - "default.handlebars->27->671" + "default.handlebars->27->1268", + "default.handlebars->27->1733", + "default.handlebars->27->592", + "default.handlebars->27->650", + "default.handlebars->27->669", + "default.handlebars->27->677" ] }, { @@ -19243,8 +19252,8 @@ "ru": "Настройки уведомлений", "zh-chs": "通知設置", "xloc": [ - "default.handlebars->27->1173", - "default.handlebars->27->1424", + "default.handlebars->27->1179", + "default.handlebars->27->1430", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -19262,7 +19271,7 @@ "ru": "Уведомления также должны быть включены в настройках учетной записи.", "zh-chs": "通知設置還必須在帳戶設置中啟用。", "xloc": [ - "default.handlebars->27->1420" + "default.handlebars->27->1426" ] }, { @@ -19279,7 +19288,7 @@ "ru": "Звук уведомления", "zh-chs": "通知聲音。", "xloc": [ - "default.handlebars->27->1168" + "default.handlebars->27->1174" ] }, { @@ -19296,7 +19305,7 @@ "ru": "Уведомления", "zh-chs": "通知事項", "xloc": [ - "default.handlebars->27->1253" + "default.handlebars->27->1259" ] }, { @@ -19313,7 +19322,7 @@ "ru": "Уведомить", "zh-chs": "通知", "xloc": [ - "default.handlebars->27->1733" + "default.handlebars->27->1739" ] }, { @@ -19330,9 +19339,9 @@ "ru": "Уведомить пользователя", "zh-chs": "通知使用者", "xloc": [ - "default.handlebars->27->1319", - "default.handlebars->27->1323", - "default.handlebars->27->1326" + "default.handlebars->27->1325", + "default.handlebars->27->1329", + "default.handlebars->27->1332" ] }, { @@ -19349,7 +19358,7 @@ "ru": "Уведомить {0}", "zh-chs": "通知{0}", "xloc": [ - "default.handlebars->27->1549" + "default.handlebars->27->1555" ] }, { @@ -19368,8 +19377,8 @@ "xloc": [ "default-mobile.handlebars->9->83", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->27->1215", - "default.handlebars->27->557", + "default.handlebars->27->1221", + "default.handlebars->27->563", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -19392,7 +19401,7 @@ "zh-chs": "操作系統名稱", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1->5", - "default.handlebars->27->522", + "default.handlebars->27->528", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->7->1" ] }, @@ -19410,7 +19419,7 @@ "ru": "Окситанский", "zh-chs": "歐舒丹", "xloc": [ - "default.handlebars->27->1088" + "default.handlebars->27->1094" ] }, { @@ -19427,7 +19436,7 @@ "ru": "Произошло в {0}", "zh-chs": "發生在{0}", "xloc": [ - "default.handlebars->27->1829" + "default.handlebars->27->1833" ] }, { @@ -19444,7 +19453,7 @@ "ru": "Оффлайн пользователи", "zh-chs": "離線用戶", "xloc": [ - "default.handlebars->27->1507" + "default.handlebars->27->1513" ] }, { @@ -19462,14 +19471,14 @@ "zh-chs": "舊密碼:", "xloc": [ "default-mobile.handlebars->9->85", - "default.handlebars->27->1185" + "default.handlebars->27->1191" ] }, { "en": "One Day", "nl": "één dag", "xloc": [ - "default.handlebars->27->1483" + "default.handlebars->27->1489" ] }, { @@ -19512,7 +19521,7 @@ "ru": "Онлайн пользователи", "zh-chs": "在線用戶", "xloc": [ - "default.handlebars->27->1506" + "default.handlebars->27->1512" ] }, { @@ -19530,8 +19539,8 @@ "zh-chs": "只能編輯小於200k的文件。", "xloc": [ "default-mobile.handlebars->9->307", - "default.handlebars->27->485", - "default.handlebars->27->823" + "default.handlebars->27->491", + "default.handlebars->27->829" ] }, { @@ -19573,7 +19582,7 @@ "ru": "Открыть страницу на устройстве", "zh-chs": "在設備上打開頁面", "xloc": [ - "default.handlebars->27->672" + "default.handlebars->27->678" ] }, { @@ -19604,7 +19613,7 @@ "ru": "Открыть терминал XTerm", "zh-chs": "打開XTerm終端", "xloc": [ - "default.handlebars->27->602" + "default.handlebars->27->608" ] }, { @@ -19657,10 +19666,10 @@ "xloc": [ "default-mobile.handlebars->9->328", "default.handlebars->27->321", - "default.handlebars->27->350", - "default.handlebars->27->554", - "default.handlebars->27->733", - "default.handlebars->27->854" + "default.handlebars->27->351", + "default.handlebars->27->560", + "default.handlebars->27->739", + "default.handlebars->27->860" ] }, { @@ -19678,11 +19687,11 @@ "zh-chs": "運作方式", "xloc": [ "default-mobile.handlebars->9->264", - "default.handlebars->27->1533", - "default.handlebars->27->1612", - "default.handlebars->27->425", - "default.handlebars->27->445", - "default.handlebars->27->684" + "default.handlebars->27->1539", + "default.handlebars->27->1618", + "default.handlebars->27->431", + "default.handlebars->27->451", + "default.handlebars->27->690" ] }, { @@ -19716,7 +19725,7 @@ "ru": "Ория", "zh-chs": "奧里亞", "xloc": [ - "default.handlebars->27->1089" + "default.handlebars->27->1095" ] }, { @@ -19733,7 +19742,7 @@ "ru": "Оромо", "zh-chs": "奧羅莫", "xloc": [ - "default.handlebars->27->1090" + "default.handlebars->27->1096" ] }, { @@ -19784,7 +19793,7 @@ "ru": "Устаревший", "zh-chs": "過時的", "xloc": [ - "default.handlebars->27->556" + "default.handlebars->27->562" ] }, { @@ -19801,7 +19810,7 @@ "ru": "Собственный процесс", "zh-chs": "自己的過程", "xloc": [ - "default.handlebars->27->785" + "default.handlebars->27->791" ] }, { @@ -19819,7 +19828,7 @@ "zh-chs": "PID", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", - "default.handlebars->27->781", + "default.handlebars->27->787", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -19838,7 +19847,7 @@ "zh-chs": "零件號", "xloc": [ "default-mobile.handlebars->9->380", - "default.handlebars->27->916" + "default.handlebars->27->922" ] }, { @@ -19855,7 +19864,7 @@ "ru": "Частично", "zh-chs": "部分的", "xloc": [ - "default.handlebars->27->1521" + "default.handlebars->27->1527" ] }, { @@ -19902,7 +19911,7 @@ "xloc": [ "default-mobile.handlebars->9->104", "default-mobile.handlebars->9->397", - "default.handlebars->27->1210" + "default.handlebars->27->1216" ] }, { @@ -19919,7 +19928,7 @@ "ru": "Частичные права", "zh-chs": "部分權利", "xloc": [ - "default.handlebars->27->1678" + "default.handlebars->27->1684" ] }, { @@ -19954,15 +19963,15 @@ "zh-chs": "密碼", "xloc": [ "default-mobile.handlebars->9->269", - "default.handlebars->27->1577", - "default.handlebars->27->1578", - "default.handlebars->27->1699", - "default.handlebars->27->1701", - "default.handlebars->27->1752", - "default.handlebars->27->1753", + "default.handlebars->27->1583", + "default.handlebars->27->1584", + "default.handlebars->27->1705", + "default.handlebars->27->1707", + "default.handlebars->27->1758", + "default.handlebars->27->1759", "default.handlebars->27->274", "default.handlebars->27->305", - "default.handlebars->27->694", + "default.handlebars->27->700", "mstsc.handlebars->main->1->3->1->6->1->0", "mstsc.handlebars->main->1->3->1->6->3" ] @@ -20070,7 +20079,7 @@ "ru": "Подсказка пароля", "zh-chs": "密碼提示", "xloc": [ - "default.handlebars->27->1754" + "default.handlebars->27->1760" ] }, { @@ -20088,7 +20097,7 @@ "zh-chs": "密碼提示:", "xloc": [ "default-mobile.handlebars->9->88", - "default.handlebars->27->1188" + "default.handlebars->27->1194" ] }, { @@ -20105,7 +20114,7 @@ "ru": "Пароль не совпадает", "zh-chs": "密碼不符合", "xloc": [ - "default.handlebars->27->1293" + "default.handlebars->27->1299" ] }, { @@ -20140,8 +20149,8 @@ "ru": "Пароль*", "zh-chs": "密碼*", "xloc": [ - "default.handlebars->27->1291", - "default.handlebars->27->1292" + "default.handlebars->27->1297", + "default.handlebars->27->1298" ] }, { @@ -20161,8 +20170,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->9->80", "default-mobile.handlebars->9->81", - "default.handlebars->27->1180", - "default.handlebars->27->1181", + "default.handlebars->27->1186", + "default.handlebars->27->1187", "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", @@ -20193,9 +20202,9 @@ "default-mobile.handlebars->9->312", "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->27->1470", - "default.handlebars->27->806", - "default.handlebars->27->828", + "default.handlebars->27->1476", + "default.handlebars->27->812", + "default.handlebars->27->834", "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" @@ -20249,7 +20258,7 @@ "ru": "Произвести действие агента", "zh-chs": "執行代理動作", "xloc": [ - "default.handlebars->27->932" + "default.handlebars->27->938" ] }, { @@ -20283,7 +20292,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).", "zh-chs": "執行英特爾AMT管理員控制模式(ACM)激活。", "xloc": [ - "default.handlebars->27->1272", + "default.handlebars->27->1278", "default.handlebars->27->262" ] }, @@ -20318,14 +20327,14 @@ "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).", "zh-chs": "執行英特爾AMT客戶端控制模式(CCM)激活。", "xloc": [ - "default.handlebars->27->1270", + "default.handlebars->27->1276", "default.handlebars->27->260" ] }, { "en": "Perform batch device tag operation", "xloc": [ - "default.handlebars->27->444" + "default.handlebars->27->450" ] }, { @@ -20342,7 +20351,7 @@ "ru": "Управление питанием устройства", "zh-chs": "在設備上執行電源操作", "xloc": [ - "default.handlebars->27->585", + "default.handlebars->27->591", "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" @@ -20363,8 +20372,8 @@ "zh-chs": "權限", "xloc": [ "default-mobile.handlebars->9->445", - "default.handlebars->27->1398", - "default.handlebars->27->1505" + "default.handlebars->27->1404", + "default.handlebars->27->1511" ] }, { @@ -20381,7 +20390,7 @@ "ru": "Персидский/Иран", "zh-chs": "波斯/伊朗", "xloc": [ - "default.handlebars->27->1091" + "default.handlebars->27->1097" ] }, { @@ -20398,9 +20407,9 @@ "default-mobile.handlebars->9->65", "default-mobile.handlebars->9->67", "default.handlebars->27->159", - "default.handlebars->27->1744", - "default.handlebars->27->943", - "default.handlebars->27->946" + "default.handlebars->27->1750", + "default.handlebars->27->949", + "default.handlebars->27->952" ] }, { @@ -20413,7 +20422,7 @@ "nl": "Telefoonnummer", "zh-chs": "电话号码", "xloc": [ - "default.handlebars->27->1693" + "default.handlebars->27->1699" ] }, { @@ -20427,8 +20436,8 @@ "zh-chs": "电话号码:", "xloc": [ "default-mobile.handlebars->9->66", - "default.handlebars->27->1743", - "default.handlebars->27->945" + "default.handlebars->27->1749", + "default.handlebars->27->951" ] }, { @@ -20459,7 +20468,7 @@ "ru": "Поместить узел сюда", "zh-chs": "將節點放在這裡", "xloc": [ - "default.handlebars->27->500" + "default.handlebars->27->506" ] }, { @@ -20546,7 +20555,7 @@ "zh-chs": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->9->76", - "default.handlebars->27->1175" + "default.handlebars->27->1181" ] }, { @@ -20564,7 +20573,7 @@ "zh-chs": "插件動作", "xloc": [ "default.handlebars->27->185", - "default.handlebars->27->1905" + "default.handlebars->27->1909" ] }, { @@ -20687,7 +20696,7 @@ "zh-chs": "政策", "xloc": [ "default-mobile.handlebars->9->103", - "default.handlebars->27->1209" + "default.handlebars->27->1215" ] }, { @@ -20704,7 +20713,7 @@ "ru": "Польский", "zh-chs": "拋光", "xloc": [ - "default.handlebars->27->1092" + "default.handlebars->27->1098" ] }, { @@ -20721,7 +20730,7 @@ "ru": "Португальский", "zh-chs": "葡萄牙語", "xloc": [ - "default.handlebars->27->1093" + "default.handlebars->27->1099" ] }, { @@ -20738,7 +20747,7 @@ "ru": "Португальский (Бразилия)", "zh-chs": "葡萄牙語(巴西)", "xloc": [ - "default.handlebars->27->1094" + "default.handlebars->27->1100" ] }, { @@ -20797,7 +20806,7 @@ "ru": "Состояния питания", "zh-chs": "電力國", "xloc": [ - "default.handlebars->27->1431", + "default.handlebars->27->1437", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -20818,7 +20827,7 @@ "default-mobile.handlebars->9->183", "default-mobile.handlebars->9->263", "default.handlebars->27->6", - "default.handlebars->27->681" + "default.handlebars->27->687" ] }, { @@ -20835,7 +20844,7 @@ "ru": "Выключить устройства", "zh-chs": "關閉設備電源", "xloc": [ - "default.handlebars->27->430" + "default.handlebars->27->436" ] }, { @@ -20855,7 +20864,7 @@ "default-mobile.handlebars->9->178", "default-mobile.handlebars->9->185", "default.handlebars->27->1", - "default.handlebars->27->389" + "default.handlebars->27->395" ] }, { @@ -20874,7 +20883,7 @@ "xloc": [ "default-mobile.handlebars->9->184", "default-mobile.handlebars->9->191", - "default.handlebars->27->401", + "default.handlebars->27->407", "default.handlebars->27->7" ] }, @@ -20882,7 +20891,7 @@ "en": "Present on server", "nl": "Aanwezig op de server", "xloc": [ - "default.handlebars->27->1814" + "default.handlebars->27->1818" ] }, { @@ -20944,7 +20953,7 @@ "zh-chs": "過程控制", "xloc": [ "default-mobile.handlebars->9->289", - "default.handlebars->27->793" + "default.handlebars->27->799" ] }, { @@ -20979,9 +20988,9 @@ "ru": "Запрос согласия пользователя", "zh-chs": "提示用戶同意", "xloc": [ - "default.handlebars->27->1320", - "default.handlebars->27->1324", - "default.handlebars->27->1327" + "default.handlebars->27->1326", + "default.handlebars->27->1330", + "default.handlebars->27->1333" ] }, { @@ -20998,7 +21007,7 @@ "ru": "Протокол", "zh-chs": "協議", "xloc": [ - "default.handlebars->27->1812", + "default.handlebars->27->1816", "player.handlebars->3->16" ] }, @@ -21031,7 +21040,7 @@ "zh-chs": "供應國", "xloc": [ "default-mobile.handlebars->9->358", - "default.handlebars->27->894" + "default.handlebars->27->900" ] }, { @@ -21049,7 +21058,7 @@ "zh-chs": "公開連結", "xloc": [ "default-mobile.handlebars->9->115", - "default.handlebars->27->1455" + "default.handlebars->27->1461" ] }, { @@ -21066,7 +21075,7 @@ "ru": "Пенджаби", "zh-chs": "旁遮普語", "xloc": [ - "default.handlebars->27->1095" + "default.handlebars->27->1101" ] }, { @@ -21083,7 +21092,7 @@ "ru": "Пенджаби (Индия)", "zh-chs": "旁遮普(印度)", "xloc": [ - "default.handlebars->27->1096" + "default.handlebars->27->1102" ] }, { @@ -21100,7 +21109,7 @@ "ru": "Пенджаби (Пакистан)", "zh-chs": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->27->1097" + "default.handlebars->27->1103" ] }, { @@ -21117,7 +21126,7 @@ "ru": "Putty", "zh-chs": "油灰", "xloc": [ - "default.handlebars->27->607" + "default.handlebars->27->613" ] }, { @@ -21152,7 +21161,7 @@ "ru": "Кечуа", "zh-chs": "蓋丘亞族", "xloc": [ - "default.handlebars->27->1098" + "default.handlebars->27->1104" ] }, { @@ -21205,7 +21214,7 @@ "ru": "RDP", "zh-chs": "RDP", "xloc": [ - "default.handlebars->27->605" + "default.handlebars->27->611" ] }, { @@ -21222,7 +21231,7 @@ "ru": "Подключение RDP", "zh-chs": "RDP連接", "xloc": [ - "default.handlebars->27->480" + "default.handlebars->27->486" ] }, { @@ -21239,7 +21248,7 @@ "ru": "Порт RDP:", "zh-chs": "RDP遠程連接端口:", "xloc": [ - "default.handlebars->27->479" + "default.handlebars->27->485" ] }, { @@ -21306,7 +21315,7 @@ "ru": "RSS", "zh-chs": "的RSS", "xloc": [ - "default.handlebars->27->1875" + "default.handlebars->27->1879" ] }, { @@ -21323,7 +21332,7 @@ "ru": "Случайный пароль.", "zh-chs": "隨機化密碼。", "xloc": [ - "default.handlebars->27->1579" + "default.handlebars->27->1585" ] }, { @@ -21357,16 +21366,16 @@ "ru": "Реактивировать Intel® AMT", "zh-chs": "重新激活英特爾®AMT", "xloc": [ - "default.handlebars->27->1295" + "default.handlebars->27->1301" ] }, { "en": "Real Name", "nl": "Echte naam", "xloc": [ - "default.handlebars->27->1690", - "default.handlebars->27->1692", - "default.handlebars->27->1745" + "default.handlebars->27->1696", + "default.handlebars->27->1698", + "default.handlebars->27->1751" ] }, { @@ -21383,14 +21392,14 @@ "ru": "Области", "zh-chs": "境界", "xloc": [ - "default.handlebars->27->1588" + "default.handlebars->27->1594" ] }, { "en": "Received invalid network data", "nl": "Ongeldige netwerkgegevens ontvangen", "xloc": [ - "default.handlebars->27->757" + "default.handlebars->27->763" ] }, { @@ -21410,7 +21419,7 @@ "en": "Recording Details", "nl": "Opname details", "xloc": [ - "default.handlebars->27->1826" + "default.handlebars->27->1830" ] }, { @@ -21436,8 +21445,8 @@ "xloc": [ "default-mobile.handlebars->9->121", "default-mobile.handlebars->9->300", - "default.handlebars->27->1462", - "default.handlebars->27->816" + "default.handlebars->27->1468", + "default.handlebars->27->822" ] }, { @@ -21477,7 +21486,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->27->497", + "default.handlebars->27->503", "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", @@ -21517,7 +21526,7 @@ "xloc": [ "default-mobile.handlebars->9->202", "default.handlebars->27->201", - "default.handlebars->27->416" + "default.handlebars->27->422" ] }, { @@ -21534,7 +21543,7 @@ "ru": "Число ретрансляций", "zh-chs": "中繼計數", "xloc": [ - "default.handlebars->27->1857" + "default.handlebars->27->1861" ] }, { @@ -21551,7 +21560,7 @@ "ru": "Ошибки ретранслятора", "zh-chs": "中繼錯誤", "xloc": [ - "default.handlebars->27->1850" + "default.handlebars->27->1854" ] }, { @@ -21568,8 +21577,8 @@ "ru": "Сессии ретранслятора", "zh-chs": "接力會議", "xloc": [ - "default.handlebars->27->1856", - "default.handlebars->27->1869" + "default.handlebars->27->1860", + "default.handlebars->27->1873" ] }, { @@ -21680,7 +21689,7 @@ "ru": "Удаленный буфер обмена", "zh-chs": "遠程剪貼板", "xloc": [ - "default.handlebars->27->776" + "default.handlebars->27->782" ] }, { @@ -21699,8 +21708,8 @@ "xloc": [ "default-mobile.handlebars->9->411", "default-mobile.handlebars->9->429", - "default.handlebars->27->1347", - "default.handlebars->27->1381" + "default.handlebars->27->1353", + "default.handlebars->27->1387" ] }, { @@ -21729,7 +21738,7 @@ "xloc": [ "default-mobile.handlebars->9->285", "default.handlebars->27->253", - "default.handlebars->27->768" + "default.handlebars->27->774" ] }, { @@ -21746,7 +21755,7 @@ "ru": "Ввод с удаленной клавиатуры", "zh-chs": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->27->774" + "default.handlebars->27->780" ] }, { @@ -21796,8 +21805,8 @@ "xloc": [ "default-mobile.handlebars->9->412", "default-mobile.handlebars->9->434", - "default.handlebars->27->1348", - "default.handlebars->27->1386" + "default.handlebars->27->1354", + "default.handlebars->27->1392" ] }, { @@ -21814,7 +21823,7 @@ "ru": "Удаленный буфер обмена действителен в течении 60 секунд.", "zh-chs": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->27->775" + "default.handlebars->27->781" ] }, { @@ -21890,8 +21899,8 @@ "nl": "Apparaatgroepmachtigingen verwijderen", "zh-chs": "删除设备组权限", "xloc": [ - "default.handlebars->27->1659", - "default.handlebars->27->1793" + "default.handlebars->27->1665", + "default.handlebars->27->1799" ] }, { @@ -21905,8 +21914,8 @@ "nl": "Apparaatmachtigingen verwijderen", "zh-chs": "删除设备权限", "xloc": [ - "default.handlebars->27->1657", - "default.handlebars->27->1780" + "default.handlebars->27->1663", + "default.handlebars->27->1786" ] }, { @@ -21934,7 +21943,7 @@ "nl": "Lidmaatschap van gebruikersgroep verwijderen", "zh-chs": "删除用户组成员身份", "xloc": [ - "default.handlebars->27->1789" + "default.handlebars->27->1795" ] }, { @@ -21948,8 +21957,8 @@ "nl": "Gebruikersgroepmachtigingen verwijderen", "zh-chs": "删除用户组权限", "xloc": [ - "default.handlebars->27->1403", - "default.handlebars->27->1785" + "default.handlebars->27->1409", + "default.handlebars->27->1791" ] }, { @@ -21963,7 +21972,7 @@ "nl": "Gebruikerslidmaatschap verwijderen", "zh-chs": "删除用户成员资格", "xloc": [ - "default.handlebars->27->1667" + "default.handlebars->27->1673" ] }, { @@ -21977,8 +21986,8 @@ "nl": "Gebruikersmachtigingen verwijderen", "zh-chs": "删除用户权限", "xloc": [ - "default.handlebars->27->1401", - "default.handlebars->27->1782" + "default.handlebars->27->1407", + "default.handlebars->27->1788" ] }, { @@ -21995,7 +22004,7 @@ "ru": "Удалить все двухфакторные аутентификации.", "zh-chs": "刪除所有第二因素驗證。", "xloc": [ - "default.handlebars->27->1757" + "default.handlebars->27->1763" ] }, { @@ -22012,7 +22021,7 @@ "ru": "Удалить все прошлые события для этого userid.", "zh-chs": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->27->1580" + "default.handlebars->27->1586" ] }, { @@ -22029,7 +22038,7 @@ "ru": "Удалить устройство при отключении", "zh-chs": "斷開連接後移除設備", "xloc": [ - "default.handlebars->27->1328" + "default.handlebars->27->1334" ] }, { @@ -22046,7 +22055,7 @@ "ru": "Удалить местоположение узла", "zh-chs": "刪除節點位置", "xloc": [ - "default.handlebars->27->489" + "default.handlebars->27->495" ] }, { @@ -22060,13 +22069,13 @@ "zh-chs": "删除电话号码", "xloc": [ "default-mobile.handlebars->9->64", - "default.handlebars->27->942" + "default.handlebars->27->948" ] }, { "en": "Remove tags", "xloc": [ - "default.handlebars->27->448" + "default.handlebars->27->454" ] }, { @@ -22083,7 +22092,7 @@ "ru": "Удалить это устройство", "zh-chs": "刪除此設備", "xloc": [ - "default.handlebars->27->594" + "default.handlebars->27->600" ] }, { @@ -22099,7 +22108,7 @@ "ru": "Удалить этого пользователя", "zh-chs": "删除该用户", "xloc": [ - "default.handlebars->27->1735" + "default.handlebars->27->1741" ] }, { @@ -22116,7 +22125,7 @@ "ru": "Удалить членство пользователя в группе", "zh-chs": "刪除用戶組成員身份", "xloc": [ - "default.handlebars->27->1771" + "default.handlebars->27->1777" ] }, { @@ -22130,7 +22139,7 @@ "nl": "Gebruikersrechten voor dit apparaat verwijderen", "zh-chs": "删除此设备的用户组权限", "xloc": [ - "default.handlebars->27->1653" + "default.handlebars->27->1659" ] }, { @@ -22147,8 +22156,8 @@ "ru": "Удалить права группы пользователей для этой группы устройств", "zh-chs": "刪除該設備組的用戶組權限", "xloc": [ - "default.handlebars->27->1647", - "default.handlebars->27->628" + "default.handlebars->27->1653", + "default.handlebars->27->634" ] }, { @@ -22165,11 +22174,11 @@ "ru": "Удалить права пользователя для этой группы устройств", "zh-chs": "刪除此設備組的用戶權限", "xloc": [ - "default.handlebars->27->1279", - "default.handlebars->27->1641", - "default.handlebars->27->1765", - "default.handlebars->27->1777", - "default.handlebars->27->629" + "default.handlebars->27->1285", + "default.handlebars->27->1647", + "default.handlebars->27->1771", + "default.handlebars->27->1783", + "default.handlebars->27->635" ] }, { @@ -22190,9 +22199,9 @@ "default-mobile.handlebars->9->304", "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->27->1466", - "default.handlebars->27->483", - "default.handlebars->27->820", + "default.handlebars->27->1472", + "default.handlebars->27->489", + "default.handlebars->27->826", "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->1" @@ -22202,14 +22211,14 @@ "en": "Report Day", "nl": "Dag rapport", "xloc": [ - "default.handlebars->27->1484" + "default.handlebars->27->1490" ] }, { "en": "Report Type", "nl": "Rapporttype", "xloc": [ - "default.handlebars->27->1479" + "default.handlebars->27->1485" ] }, { @@ -22226,7 +22235,7 @@ "ru": "Требования: ", "zh-chs": "要求:", "xloc": [ - "default.handlebars->27->1189" + "default.handlebars->27->1195" ] }, { @@ -22244,8 +22253,8 @@ "zh-chs": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->27->1585", - "default.handlebars->27->1755" + "default.handlebars->27->1591", + "default.handlebars->27->1761" ] }, { @@ -22262,7 +22271,7 @@ "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере", "zh-chs": "需要瀏覽器中的Microsoft ClickOnce支持", "xloc": [ - "default.handlebars->27->604" + "default.handlebars->27->610" ] }, { @@ -22279,8 +22288,8 @@ "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере.", "zh-chs": "在瀏覽器中需要Microsoft ClickOnce支持。", "xloc": [ - "default.handlebars->27->606", - "default.handlebars->27->608" + "default.handlebars->27->612", + "default.handlebars->27->614" ] }, { @@ -22312,7 +22321,7 @@ "zh-chs": "重啟", "xloc": [ "default-mobile.handlebars->9->262", - "default.handlebars->27->680", + "default.handlebars->27->686", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -22384,7 +22393,7 @@ "ru": "Отправить в перезагрузку", "zh-chs": "重置設備", "xloc": [ - "default.handlebars->27->429" + "default.handlebars->27->435" ] }, { @@ -22418,7 +22427,7 @@ "ru": "Перезапуск", "zh-chs": "重新開始", "xloc": [ - "default.handlebars->27->791", + "default.handlebars->27->797", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -22436,7 +22445,7 @@ "ru": "Восстановить сервер", "zh-chs": "還原伺服器", "xloc": [ - "default.handlebars->27->1216" + "default.handlebars->27->1222" ] }, { @@ -22470,7 +22479,7 @@ "ru": "Восстановить сервер из резервной копии, это удалит существующие данные сервера . Продолжайте дальше только если знаете, что делаете.", "zh-chs": "使用備份還原服務器,這將刪除現有服務器數據。僅當您知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->27->1213" + "default.handlebars->27->1219" ] }, { @@ -22487,7 +22496,7 @@ "ru": "Ограничения", "zh-chs": "限制條件", "xloc": [ - "default.handlebars->27->1679" + "default.handlebars->27->1685" ] }, { @@ -22504,7 +22513,7 @@ "ru": "Ретороманский", "zh-chs": "修羅羅馬式", "xloc": [ - "default.handlebars->27->1099" + "default.handlebars->27->1105" ] }, { @@ -22521,7 +22530,7 @@ "ru": "Румынский", "zh-chs": "羅馬尼亞語", "xloc": [ - "default.handlebars->27->1100" + "default.handlebars->27->1106" ] }, { @@ -22538,7 +22547,7 @@ "ru": "Румынский (Молдавия)", "zh-chs": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->27->1101" + "default.handlebars->27->1107" ] }, { @@ -22557,8 +22566,8 @@ "xloc": [ "default-mobile.handlebars->9->107", "default-mobile.handlebars->9->294", - "default.handlebars->27->1439", - "default.handlebars->27->810" + "default.handlebars->27->1445", + "default.handlebars->27->816" ] }, { @@ -22670,37 +22679,37 @@ "en": "Run Commands", "nl": "Voer opdrachten uit", "xloc": [ - "default.handlebars->27->443", - "default.handlebars->27->678", - "default.handlebars->27->689" + "default.handlebars->27->449", + "default.handlebars->27->684", + "default.handlebars->27->695" ] }, { "en": "Run MeshCentral Router and click \\\"install\\\" to make it launchable from the browser.", "nl": "Start MeshCentral Router en klik \\\"install\\\" om het startbaar te maken vanuit de browser.", "xloc": [ - "default.handlebars->27->722" + "default.handlebars->27->728" ] }, { "en": "Run commands", "nl": "Voer opdrachten uit", "xloc": [ - "default.handlebars->27->427" + "default.handlebars->27->433" ] }, { "en": "Run commands on selected devices.", "nl": "Voer opdrachten uit op geselecteerde apparaten.", "xloc": [ - "default.handlebars->27->439" + "default.handlebars->27->445" ] }, { "en": "Run commands on this device.", "nl": "Voer opdrachten uit op dit apparaat.", "xloc": [ - "default.handlebars->27->686" + "default.handlebars->27->692" ] }, { @@ -22717,7 +22726,7 @@ "ru": "Русский", "zh-chs": "俄語", "xloc": [ - "default.handlebars->27->1102" + "default.handlebars->27->1108" ] }, { @@ -22734,7 +22743,7 @@ "ru": "Русский (Молдавия)", "zh-chs": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->27->1103" + "default.handlebars->27->1109" ] }, { @@ -22747,8 +22756,8 @@ "nl": "SMS", "zh-chs": "短信", "xloc": [ - "default.handlebars->27->1724", - "default.handlebars->27->1729", + "default.handlebars->27->1730", + "default.handlebars->27->1735", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3" ] @@ -22763,7 +22772,7 @@ "nl": "SMS geschikt telefoonnummer voor deze gebruiker.", "zh-chs": "此用户的短信功能电话号码。", "xloc": [ - "default.handlebars->27->1741" + "default.handlebars->27->1747" ] }, { @@ -22811,7 +22820,7 @@ "ru": "Саамский", "zh-chs": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->27->1104" + "default.handlebars->27->1110" ] }, { @@ -22856,7 +22865,7 @@ "ru": "Санго", "zh-chs": "三鄉", "xloc": [ - "default.handlebars->27->1105" + "default.handlebars->27->1111" ] }, { @@ -22873,7 +22882,7 @@ "ru": "Санскритский", "zh-chs": "梵文", "xloc": [ - "default.handlebars->27->1106" + "default.handlebars->27->1112" ] }, { @@ -22890,7 +22899,7 @@ "ru": "Сардинский", "zh-chs": "撒丁島", "xloc": [ - "default.handlebars->27->1107" + "default.handlebars->27->1113" ] }, { @@ -22931,7 +22940,7 @@ "ru": "Сохранить расположение узла", "zh-chs": "保存節點位置", "xloc": [ - "default.handlebars->27->490" + "default.handlebars->27->496" ] }, { @@ -23083,7 +23092,7 @@ "ru": "Поиск", "zh-chs": "搜索", "xloc": [ - "default.handlebars->27->503", + "default.handlebars->27->509", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -23156,7 +23165,7 @@ "zh-chs": "使用TLS保護", "xloc": [ "default-mobile.handlebars->9->361", - "default.handlebars->27->897" + "default.handlebars->27->903" ] }, { @@ -23175,10 +23184,10 @@ "xloc": [ "default-mobile.handlebars->9->270", "default-mobile.handlebars->9->360", - "default.handlebars->27->1725", + "default.handlebars->27->1731", "default.handlebars->27->275", - "default.handlebars->27->695", - "default.handlebars->27->896" + "default.handlebars->27->701", + "default.handlebars->27->902" ] }, { @@ -23195,7 +23204,7 @@ "ru": "Ключ безопасности", "zh-chs": "安全密鑰", "xloc": [ - "default.handlebars->27->1722" + "default.handlebars->27->1728" ] }, { @@ -23229,12 +23238,12 @@ "ru": "Выбрать все", "zh-chs": "全選", "xloc": [ - "default.handlebars->27->1458", - "default.handlebars->27->1529", - "default.handlebars->27->1610", - "default.handlebars->27->421", - "default.handlebars->27->812", - "default.handlebars->27->814", + "default.handlebars->27->1464", + "default.handlebars->27->1535", + "default.handlebars->27->1616", + "default.handlebars->27->427", + "default.handlebars->27->818", + "default.handlebars->27->820", "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", @@ -23257,11 +23266,11 @@ "ru": "Очистить все", "zh-chs": "選擇無", "xloc": [ - "default.handlebars->27->1457", - "default.handlebars->27->1528", - "default.handlebars->27->1609", - "default.handlebars->27->420", - "default.handlebars->27->813", + "default.handlebars->27->1463", + "default.handlebars->27->1534", + "default.handlebars->27->1615", + "default.handlebars->27->426", + "default.handlebars->27->819", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -23279,7 +23288,7 @@ "ru": "Выберите новую группу для выбранных устройств", "zh-chs": "為所選設備選擇一個新組", "xloc": [ - "default.handlebars->27->709" + "default.handlebars->27->715" ] }, { @@ -23296,7 +23305,7 @@ "ru": "Выберите новую группу для этого устройства", "zh-chs": "選擇此設備的新組", "xloc": [ - "default.handlebars->27->708" + "default.handlebars->27->714" ] }, { @@ -23313,7 +23322,7 @@ "ru": "Выберите узел для размещения", "zh-chs": "選擇要放置的節點", "xloc": [ - "default.handlebars->27->506" + "default.handlebars->27->512" ] }, { @@ -23330,7 +23339,7 @@ "ru": "Выберите действие для осуществления на всех выбранных устройствах. Действия будут выполнены только при наличии соответствующих прав.", "zh-chs": "選擇要在所有選定設備上執行的操作。僅在擁有適當權限的情況下才能執行操作。", "xloc": [ - "default.handlebars->27->424" + "default.handlebars->27->430" ] }, { @@ -23344,8 +23353,8 @@ "nl": "Selecteer een bewerking die u op alle geselecteerde gebruikers wilt uitvoeren.", "zh-chs": "选择要对所有选定用户执行的操作。", "xloc": [ - "default.handlebars->27->1532", - "default.handlebars->27->1611" + "default.handlebars->27->1538", + "default.handlebars->27->1617" ] }, { @@ -23363,7 +23372,7 @@ "zh-chs": "選擇要在此設備上執行的操作。", "xloc": [ "default-mobile.handlebars->9->259", - "default.handlebars->27->676" + "default.handlebars->27->682" ] }, { @@ -23399,7 +23408,7 @@ "zh-chs": "僅自我事件", "xloc": [ "default-mobile.handlebars->9->439", - "default.handlebars->27->1392" + "default.handlebars->27->1398" ] }, { @@ -23425,7 +23434,7 @@ "en": "Send Email", "nl": "E-mail verzenden", "xloc": [ - "default.handlebars->27->1543" + "default.handlebars->27->1549" ] }, { @@ -23442,8 +23451,8 @@ "ru": "Отправить MQTT сообщение", "zh-chs": "發送MQTT消息", "xloc": [ - "default.handlebars->27->422", - "default.handlebars->27->682" + "default.handlebars->27->428", + "default.handlebars->27->688" ] }, { @@ -23460,7 +23469,7 @@ "ru": "Отправить MQTT сообщение", "zh-chs": "發送MQTT消息", "xloc": [ - "default.handlebars->27->701" + "default.handlebars->27->707" ] }, { @@ -23473,7 +23482,7 @@ "nl": "verstuur SMS", "zh-chs": "发送短信", "xloc": [ - "default.handlebars->27->1541" + "default.handlebars->27->1547" ] }, { @@ -23486,7 +23495,7 @@ "nl": "Stuur een SMS bericht naar deze gebruiker", "zh-chs": "发送短信给该用户", "xloc": [ - "default.handlebars->27->1730" + "default.handlebars->27->1736" ] }, { @@ -23494,7 +23503,7 @@ "nl": "Stuur een e-mailbericht naar deze gebruiker", "fr": "Envoyer un Mail à cet utilisateur", "xloc": [ - "default.handlebars->27->1732" + "default.handlebars->27->1738" ] }, { @@ -23511,7 +23520,7 @@ "ru": "Отправить уведомление всем пользователям этой группы.", "zh-chs": "向該組中的所有用戶發送通知。", "xloc": [ - "default.handlebars->27->1638" + "default.handlebars->27->1644" ] }, { @@ -23528,7 +23537,7 @@ "ru": "Отправить текстовое уведомление этому пользователю.", "zh-chs": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->27->1544" + "default.handlebars->27->1550" ] }, { @@ -23544,7 +23553,7 @@ "ru": "Отправить письмо пользователю", "zh-chs": "发送电子邮件给用户", "xloc": [ - "default.handlebars->27->1524" + "default.handlebars->27->1530" ] }, { @@ -23578,7 +23587,7 @@ "ru": "Отправить приглашение по email.", "zh-chs": "發送邀請電子郵件。", "xloc": [ - "default.handlebars->27->1584" + "default.handlebars->27->1590" ] }, { @@ -23644,7 +23653,7 @@ "ru": "Отправить уведомление пользователю", "zh-chs": "發送用戶通知", "xloc": [ - "default.handlebars->27->1734" + "default.handlebars->27->1740" ] }, { @@ -23661,7 +23670,7 @@ "ru": "Сербский", "zh-chs": "塞爾維亞", "xloc": [ - "default.handlebars->27->1110" + "default.handlebars->27->1116" ] }, { @@ -23679,7 +23688,7 @@ "zh-chs": "序列號", "xloc": [ "default-mobile.handlebars->9->372", - "default.handlebars->27->908" + "default.handlebars->27->914" ] }, { @@ -23696,7 +23705,7 @@ "ru": "Резервное копирование сервера", "zh-chs": "服務器備份", "xloc": [ - "default.handlebars->27->1594" + "default.handlebars->27->1600" ] }, { @@ -23713,7 +23722,7 @@ "ru": "Сертификат сервера", "zh-chs": "服務器證書", "xloc": [ - "default.handlebars->27->1885" + "default.handlebars->27->1889" ] }, { @@ -23730,7 +23739,7 @@ "ru": "База данных сервера", "zh-chs": "服務器數據庫", "xloc": [ - "default.handlebars->27->1886" + "default.handlebars->27->1890" ] }, { @@ -23749,11 +23758,11 @@ "xloc": [ "default-mobile.handlebars->9->418", "default-mobile.handlebars->9->431", - "default.handlebars->27->1355", - "default.handlebars->27->1383", - "default.handlebars->27->1591", - "default.handlebars->27->642", - "default.handlebars->27->661" + "default.handlebars->27->1361", + "default.handlebars->27->1389", + "default.handlebars->27->1597", + "default.handlebars->27->648", + "default.handlebars->27->667" ] }, { @@ -23770,8 +23779,8 @@ "ru": "Разрешения сервера", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->27->1516", - "default.handlebars->27->1603" + "default.handlebars->27->1522", + "default.handlebars->27->1609" ] }, { @@ -23788,7 +23797,7 @@ "ru": "Квота сервера", "zh-chs": "服務器配額", "xloc": [ - "default.handlebars->27->1696" + "default.handlebars->27->1702" ] }, { @@ -23805,7 +23814,7 @@ "ru": "Восстановление сервера", "zh-chs": "服務器還原", "xloc": [ - "default.handlebars->27->1595" + "default.handlebars->27->1601" ] }, { @@ -23822,7 +23831,7 @@ "ru": "Права", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->27->1695" + "default.handlebars->27->1701" ] }, { @@ -23839,7 +23848,7 @@ "ru": "Состояние сервера", "zh-chs": "服務器狀態", "xloc": [ - "default.handlebars->27->1836" + "default.handlebars->27->1840" ] }, { @@ -23873,7 +23882,7 @@ "ru": "Трассировка сервера", "zh-chs": "服務器跟踪", "xloc": [ - "default.handlebars->27->1896" + "default.handlebars->27->1900" ] }, { @@ -23890,7 +23899,7 @@ "ru": "Обновление сервера", "zh-chs": "服務器更新", "xloc": [ - "default.handlebars->27->1596" + "default.handlebars->27->1602" ] }, { @@ -24012,7 +24021,7 @@ "ru": "ServerStats.csv", "zh-chs": "ServerStats.csv", "xloc": [ - "default.handlebars->27->1877" + "default.handlebars->27->1881" ] }, { @@ -24029,7 +24038,7 @@ "ru": "Детали службы", "zh-chs": "服務詳情", "xloc": [ - "default.handlebars->27->792" + "default.handlebars->27->798" ] }, { @@ -24053,14 +24062,14 @@ "en": "Session", "nl": "Sessie", "xloc": [ - "default.handlebars->27->1800" + "default.handlebars->27->1804" ] }, { "en": "Session Information", "nl": "Sessie informatie", "xloc": [ - "default.handlebars->27->765" + "default.handlebars->27->771" ] }, { @@ -24109,7 +24118,7 @@ { "en": "Set tags", "xloc": [ - "default.handlebars->27->447" + "default.handlebars->27->453" ] }, { @@ -24144,7 +24153,7 @@ "ru": "Файл с настройками", "zh-chs": "設定文件", "xloc": [ - "default.handlebars->27->369" + "default.handlebars->27->371" ] }, { @@ -24251,7 +24260,7 @@ "ru": "Общий процесс", "zh-chs": "共享過程", "xloc": [ - "default.handlebars->27->786" + "default.handlebars->27->792" ] }, { @@ -24368,7 +24377,7 @@ "zh-chs": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->9->421", - "default.handlebars->27->1358" + "default.handlebars->27->1364" ] }, { @@ -24385,7 +24394,7 @@ "ru": "Показывать панель-уведомление", "zh-chs": "顯示連接工具欄", "xloc": [ - "default.handlebars->27->1321" + "default.handlebars->27->1327" ] }, { @@ -24402,7 +24411,7 @@ "ru": "Показать информацию о расположении устройства", "zh-chs": "顯示設備位置信息", "xloc": [ - "default.handlebars->27->598" + "default.handlebars->27->604" ] }, { @@ -24419,7 +24428,7 @@ "ru": "Показать информацию о сетевом интерфейсе устройства", "zh-chs": "顯示設備網絡接口信息", "xloc": [ - "default.handlebars->27->596" + "default.handlebars->27->602" ] }, { @@ -24442,29 +24451,29 @@ { "en": "Show for 1 minute", "xloc": [ - "default.handlebars->27->1547", - "default.handlebars->27->1570" + "default.handlebars->27->1553", + "default.handlebars->27->1576" ] }, { "en": "Show for 10 seconds", "xloc": [ - "default.handlebars->27->1546", - "default.handlebars->27->1569" + "default.handlebars->27->1552", + "default.handlebars->27->1575" ] }, { "en": "Show for 5 minutes", "xloc": [ - "default.handlebars->27->1548", - "default.handlebars->27->1571" + "default.handlebars->27->1554", + "default.handlebars->27->1577" ] }, { "en": "Show message until dismissed by user", "xloc": [ - "default.handlebars->27->1545", - "default.handlebars->27->1568" + "default.handlebars->27->1551", + "default.handlebars->27->1574" ] }, { @@ -24554,8 +24563,8 @@ "ru": "Простой режим управления администратора (ACM)", "zh-chs": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->27->1259", - "default.handlebars->27->1282" + "default.handlebars->27->1265", + "default.handlebars->27->1288" ] }, { @@ -24572,9 +24581,9 @@ "ru": "Простой режим управления клиента (CCM)", "zh-chs": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->27->1257", - "default.handlebars->27->1285", - "default.handlebars->27->1289" + "default.handlebars->27->1263", + "default.handlebars->27->1291", + "default.handlebars->27->1295" ] }, { @@ -24591,7 +24600,7 @@ "ru": "Синдхи", "zh-chs": "信地", "xloc": [ - "default.handlebars->27->1108" + "default.handlebars->27->1114" ] }, { @@ -24608,7 +24617,7 @@ "ru": "Сингальский", "zh-chs": "僧伽羅語", "xloc": [ - "default.handlebars->27->1109" + "default.handlebars->27->1115" ] }, { @@ -24633,8 +24642,8 @@ "ru": "Размер", "zh-chs": "尺寸", "xloc": [ - "default.handlebars->27->1803", - "default.handlebars->27->1818", + "default.handlebars->27->1807", + "default.handlebars->27->1822", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -24652,7 +24661,7 @@ "ru": "Размер: 100%", "zh-chs": "尺寸:100%", "xloc": [ - "default.handlebars->27->840" + "default.handlebars->27->846" ] }, { @@ -24669,7 +24678,7 @@ "ru": "Размер: 125%", "zh-chs": "尺寸:125%", "xloc": [ - "default.handlebars->27->841" + "default.handlebars->27->847" ] }, { @@ -24686,7 +24695,7 @@ "ru": "Размер: 150%", "zh-chs": "尺寸:150%", "xloc": [ - "default.handlebars->27->842" + "default.handlebars->27->848" ] }, { @@ -24703,7 +24712,7 @@ "ru": "Размер: 200%", "zh-chs": "尺寸:200%", "xloc": [ - "default.handlebars->27->843" + "default.handlebars->27->849" ] }, { @@ -24727,7 +24736,7 @@ "default.handlebars->27->2", "default.handlebars->27->3", "default.handlebars->27->4", - "default.handlebars->27->679" + "default.handlebars->27->685" ] }, { @@ -24744,7 +24753,7 @@ "ru": "Отправить в сон", "zh-chs": "睡眠裝置", "xloc": [ - "default.handlebars->27->428" + "default.handlebars->27->434" ] }, { @@ -24763,8 +24772,8 @@ "xloc": [ "default-mobile.handlebars->9->186", "default-mobile.handlebars->9->187", - "default.handlebars->27->391", - "default.handlebars->27->393" + "default.handlebars->27->397", + "default.handlebars->27->399" ] }, { @@ -24781,7 +24790,7 @@ "ru": "Словацкий", "zh-chs": "斯洛伐克文", "xloc": [ - "default.handlebars->27->1111" + "default.handlebars->27->1117" ] }, { @@ -24798,7 +24807,7 @@ "ru": "Словенский", "zh-chs": "斯洛文尼亞文", "xloc": [ - "default.handlebars->27->1112" + "default.handlebars->27->1118" ] }, { @@ -24851,7 +24860,7 @@ "ru": "Малая фокусировка", "zh-chs": "小焦點", "xloc": [ - "default.handlebars->27->771" + "default.handlebars->27->777" ] }, { @@ -24868,7 +24877,7 @@ "ru": "Програмное отключение агента", "zh-chs": "軟斷開劑", "xloc": [ - "default.handlebars->27->938" + "default.handlebars->27->944" ] }, { @@ -24886,7 +24895,7 @@ "zh-chs": "軟關", "xloc": [ "default-mobile.handlebars->9->190", - "default.handlebars->27->399" + "default.handlebars->27->405" ] }, { @@ -24920,7 +24929,7 @@ "ru": "Сомани", "zh-chs": "索馬尼", "xloc": [ - "default.handlebars->27->1113" + "default.handlebars->27->1119" ] }, { @@ -24937,7 +24946,7 @@ "ru": "Сорбский", "zh-chs": "索比亞人", "xloc": [ - "default.handlebars->27->1114" + "default.handlebars->27->1120" ] }, { @@ -25067,7 +25076,7 @@ "ru": "Испанский", "zh-chs": "西班牙文", "xloc": [ - "default.handlebars->27->1115" + "default.handlebars->27->1121" ] }, { @@ -25084,7 +25093,7 @@ "ru": "Испанский (Аргентина)", "zh-chs": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->27->1116" + "default.handlebars->27->1122" ] }, { @@ -25101,7 +25110,7 @@ "ru": "Испанский (Боливия)", "zh-chs": "西班牙語(玻利維亞)", "xloc": [ - "default.handlebars->27->1117" + "default.handlebars->27->1123" ] }, { @@ -25118,7 +25127,7 @@ "ru": "Испанский (Чили)", "zh-chs": "西班牙語(智利)", "xloc": [ - "default.handlebars->27->1118" + "default.handlebars->27->1124" ] }, { @@ -25135,7 +25144,7 @@ "ru": "Испанский (Колумбия)", "zh-chs": "西班牙語(哥倫比亞)", "xloc": [ - "default.handlebars->27->1119" + "default.handlebars->27->1125" ] }, { @@ -25152,7 +25161,7 @@ "ru": "Испанский (Коста-Рика)", "zh-chs": "西班牙語(哥斯達黎加)", "xloc": [ - "default.handlebars->27->1120" + "default.handlebars->27->1126" ] }, { @@ -25169,7 +25178,7 @@ "ru": "Испанский (Доминиканская Республика)", "zh-chs": "西班牙語(多米尼加共和國)", "xloc": [ - "default.handlebars->27->1121" + "default.handlebars->27->1127" ] }, { @@ -25186,7 +25195,7 @@ "ru": "Испанский (Эквадор)", "zh-chs": "西班牙語(厄瓜多爾)", "xloc": [ - "default.handlebars->27->1122" + "default.handlebars->27->1128" ] }, { @@ -25203,7 +25212,7 @@ "ru": "Испанский (Сальвадор)", "zh-chs": "西班牙語(薩爾瓦多)", "xloc": [ - "default.handlebars->27->1123" + "default.handlebars->27->1129" ] }, { @@ -25220,7 +25229,7 @@ "ru": "Испанский (Гватемала)", "zh-chs": "西班牙語(危地馬拉)", "xloc": [ - "default.handlebars->27->1124" + "default.handlebars->27->1130" ] }, { @@ -25237,7 +25246,7 @@ "ru": "Испанский (Гондурас)", "zh-chs": "西班牙語(洪都拉斯)", "xloc": [ - "default.handlebars->27->1125" + "default.handlebars->27->1131" ] }, { @@ -25254,7 +25263,7 @@ "ru": "Испанский (Мексика)", "zh-chs": "西班牙語(墨西哥)", "xloc": [ - "default.handlebars->27->1126" + "default.handlebars->27->1132" ] }, { @@ -25271,7 +25280,7 @@ "ru": "Испанский (Никарагуа)", "zh-chs": "西班牙語(尼加拉瓜)", "xloc": [ - "default.handlebars->27->1127" + "default.handlebars->27->1133" ] }, { @@ -25288,7 +25297,7 @@ "ru": "Испанский (Панама)", "zh-chs": "西班牙語(巴拿馬)", "xloc": [ - "default.handlebars->27->1128" + "default.handlebars->27->1134" ] }, { @@ -25305,7 +25314,7 @@ "ru": "Испанский (Парагвай)", "zh-chs": "西班牙語(巴拉圭)", "xloc": [ - "default.handlebars->27->1129" + "default.handlebars->27->1135" ] }, { @@ -25322,7 +25331,7 @@ "ru": "Испанский (Перу)", "zh-chs": "西班牙語(秘魯)", "xloc": [ - "default.handlebars->27->1130" + "default.handlebars->27->1136" ] }, { @@ -25339,7 +25348,7 @@ "ru": "Испанский (Пуэрто-Рико)", "zh-chs": "西班牙語(波多黎各)", "xloc": [ - "default.handlebars->27->1131" + "default.handlebars->27->1137" ] }, { @@ -25356,7 +25365,7 @@ "ru": "Испанский (Испания)", "zh-chs": "西班牙語(西班牙)", "xloc": [ - "default.handlebars->27->1132" + "default.handlebars->27->1138" ] }, { @@ -25373,7 +25382,7 @@ "ru": "Испанский (Уругвай)", "zh-chs": "西班牙語(烏拉圭)", "xloc": [ - "default.handlebars->27->1133" + "default.handlebars->27->1139" ] }, { @@ -25390,7 +25399,7 @@ "ru": "Испанский (Венесуэла)", "zh-chs": "西班牙語(委內瑞拉)", "xloc": [ - "default.handlebars->27->1134" + "default.handlebars->27->1140" ] }, { @@ -25438,7 +25447,7 @@ "ru": "Старт", "zh-chs": "開始", "xloc": [ - "default.handlebars->27->789" + "default.handlebars->27->795" ] }, { @@ -25449,9 +25458,9 @@ "en": "Start Time", "nl": "Start tijd", "xloc": [ - "default.handlebars->27->1801", - "default.handlebars->27->1820", - "default.handlebars->27->761" + "default.handlebars->27->1805", + "default.handlebars->27->1824", + "default.handlebars->27->767" ] }, { @@ -25468,7 +25477,7 @@ "ru": "Состояние", "zh-chs": "州", "xloc": [ - "default.handlebars->27->780", + "default.handlebars->27->786", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -25503,8 +25512,8 @@ "ru": "Статус", "zh-chs": "狀態", "xloc": [ - "default.handlebars->27->1748", - "default.handlebars->27->1813", + "default.handlebars->27->1754", + "default.handlebars->27->1817", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -25522,7 +25531,7 @@ "ru": "Стоп", "zh-chs": "停止", "xloc": [ - "default.handlebars->27->790" + "default.handlebars->27->796" ] }, { @@ -25538,7 +25547,7 @@ "ru": "Остановить процесс", "zh-chs": "停止程序", "xloc": [ - "default.handlebars->27->777" + "default.handlebars->27->783" ] }, { @@ -25556,7 +25565,7 @@ "zh-chs": "停止進程#{0} \\“ {1} \\”?", "xloc": [ "default-mobile.handlebars->9->290", - "default.handlebars->27->794" + "default.handlebars->27->800" ] }, { @@ -25570,7 +25579,7 @@ "zh-chs": "存储", "xloc": [ "default-mobile.handlebars->9->386", - "default.handlebars->27->922" + "default.handlebars->27->928" ] }, { @@ -25604,7 +25613,7 @@ "ru": "Превышен лимит места для хранения", "zh-chs": "儲存空間超過", "xloc": [ - "default.handlebars->27->1443" + "default.handlebars->27->1449" ] }, { @@ -25621,7 +25630,7 @@ "ru": "Надежный", "zh-chs": "強大", "xloc": [ - "default.handlebars->27->1206" + "default.handlebars->27->1212" ] }, { @@ -25648,7 +25657,7 @@ "en": "Subject", "nl": "Onderwerp", "xloc": [ - "default.handlebars->27->1542" + "default.handlebars->27->1548" ] }, { @@ -25733,7 +25742,7 @@ "ru": "Суту", "zh-chs": "蘇圖", "xloc": [ - "default.handlebars->27->1135" + "default.handlebars->27->1141" ] }, { @@ -25750,7 +25759,7 @@ "ru": "Суахили", "zh-chs": "斯瓦希里語", "xloc": [ - "default.handlebars->27->1136" + "default.handlebars->27->1142" ] }, { @@ -25767,7 +25776,7 @@ "ru": "Шведский", "zh-chs": "瑞典", "xloc": [ - "default.handlebars->27->1137" + "default.handlebars->27->1143" ] }, { @@ -25784,7 +25793,7 @@ "ru": "Шведский (Финляндия)", "zh-chs": "瑞典語(芬蘭)", "xloc": [ - "default.handlebars->27->1138" + "default.handlebars->27->1144" ] }, { @@ -25801,7 +25810,7 @@ "ru": "Шведский (Швеция)", "zh-chs": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->27->1139" + "default.handlebars->27->1145" ] }, { @@ -25818,7 +25827,13 @@ "ru": "Синхронизировать имя устройства на сервере с именем хоста", "zh-chs": "將服務器設備名稱同步到主機名", "xloc": [ - "default.handlebars->27->1329" + "default.handlebars->27->1335" + ] + }, + { + "en": "System Type", + "xloc": [ + "default.handlebars->27->357" ] }, { @@ -25902,7 +25917,7 @@ "zh-chs": "TLS", "xloc": [ "default-mobile.handlebars->9->232", - "default.handlebars->27->541" + "default.handlebars->27->547" ] }, { @@ -25920,7 +25935,7 @@ "zh-chs": "未設置TLS", "xloc": [ "default-mobile.handlebars->9->362", - "default.handlebars->27->898" + "default.handlebars->27->904" ] }, { @@ -25939,7 +25954,7 @@ "xloc": [ "default-mobile.handlebars->9->272", "default.handlebars->27->277", - "default.handlebars->27->697" + "default.handlebars->27->703" ] }, { @@ -25973,8 +25988,8 @@ "ru": "Тег1, Тег2, Тег3", "zh-chs": "標籤1,標籤2,標籤3", "xloc": [ - "default.handlebars->27->450", - "default.handlebars->27->751" + "default.handlebars->27->456", + "default.handlebars->27->757" ] }, { @@ -25994,8 +26009,8 @@ "default-mobile.handlebars->9->246", "default-mobile.handlebars->9->247", "default-mobile.handlebars->9->281", - "default.handlebars->27->449", - "default.handlebars->27->750", + "default.handlebars->27->455", + "default.handlebars->27->756", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -26013,7 +26028,7 @@ "ru": "Тамильский", "zh-chs": "泰米爾語", "xloc": [ - "default.handlebars->27->1140" + "default.handlebars->27->1146" ] }, { @@ -26030,7 +26045,7 @@ "ru": "Татарский", "zh-chs": "塔塔爾族", "xloc": [ - "default.handlebars->27->1141" + "default.handlebars->27->1147" ] }, { @@ -26047,7 +26062,7 @@ "ru": "Телугу", "zh-chs": "泰盧加", "xloc": [ - "default.handlebars->27->1142" + "default.handlebars->27->1148" ] }, { @@ -26065,10 +26080,10 @@ "zh-chs": "終奌站", "xloc": [ "default-mobile.handlebars->9->164", - "default.handlebars->27->1322", - "default.handlebars->27->1807", + "default.handlebars->27->1328", + "default.handlebars->27->1811", "default.handlebars->27->233", - "default.handlebars->27->493", + "default.handlebars->27->499", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal" ] @@ -26104,9 +26119,9 @@ "ru": "Терминал уведомление", "zh-chs": "終端通知", "xloc": [ - "default.handlebars->27->1242", - "default.handlebars->27->1714", - "default.handlebars->27->565" + "default.handlebars->27->1248", + "default.handlebars->27->1720", + "default.handlebars->27->571" ] }, { @@ -26123,9 +26138,9 @@ "ru": "Запрос терминала", "zh-chs": "終端提示", "xloc": [ - "default.handlebars->27->1241", - "default.handlebars->27->1713", - "default.handlebars->27->564" + "default.handlebars->27->1247", + "default.handlebars->27->1719", + "default.handlebars->27->570" ] }, { @@ -26181,7 +26196,7 @@ "ru": "Тайский", "zh-chs": "泰國", "xloc": [ - "default.handlebars->27->1143" + "default.handlebars->27->1149" ] }, { @@ -26216,7 +26231,7 @@ "ru": "Имя группы устройств, к которой принадлежит этот компьютер", "zh-chs": "該計算機所屬的設備組的名稱", "xloc": [ - "default.handlebars->27->520" + "default.handlebars->27->526" ] }, { @@ -26233,7 +26248,7 @@ "ru": "Имя группы устройств, к которой принадлежит этот компьютер.", "zh-chs": "該計算機所屬的設備組的名稱。", "xloc": [ - "default.handlebars->27->518" + "default.handlebars->27->524" ] }, { @@ -26250,8 +26265,8 @@ "ru": "Имя этого компьютера, указанное в операционной системе", "zh-chs": "在操作系統中設置的此計算機的名稱", "xloc": [ - "default.handlebars->27->521", - "default.handlebars->27->523" + "default.handlebars->27->527", + "default.handlebars->27->529" ] }, { @@ -26268,7 +26283,7 @@ "ru": "На данный момент уведомлений нет", "zh-chs": "目前沒有任何通知", "xloc": [ - "default.handlebars->27->1828" + "default.handlebars->27->1832" ] }, { @@ -26320,7 +26335,13 @@ "zh-chs": "該帳戶無權創建新的設備組。", "xloc": [ "default-mobile.handlebars->9->92", - "default.handlebars->27->1192" + "default.handlebars->27->1198" + ] + }, + { + "en": "This is a executable that will only run as root and on OS's with graphical user interfaces.", + "xloc": [ + "default.handlebars->27->387" ] }, { @@ -26354,7 +26375,7 @@ "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.", "zh-chs": "這不是安全的策略,因為代理將執行激活。", "xloc": [ - "default.handlebars->27->1307" + "default.handlebars->27->1313" ] }, { @@ -26389,7 +26410,7 @@ "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.", "zh-chs": "該策略不會影響採用ACM模式的英特爾®AMT的設備。", "xloc": [ - "default.handlebars->27->1306" + "default.handlebars->27->1312" ] }, { @@ -26455,7 +26476,7 @@ "nl": "Hiermee wordt een vermelding toegevoegd aan het gebeurtenislogboek van dit apparaat.", "zh-chs": "这会将条目添加到该设备的事件日志中。", "xloc": [ - "default.handlebars->27->669" + "default.handlebars->27->675" ] }, { @@ -26486,7 +26507,7 @@ "ru": "Это не приведет к удалению устройств с сервера, но они больше не смогут подключаться к серверу. Весь удаленный доступ к устройствам будет потерян. Устройства должны быть подключены, чтобы эта команда работала.", "zh-chs": "這不會從服務器上刪除設備,但是設備將不再能夠連接到服務器。對設備的所有遠程訪問都將丟失。必須連接設備,此命令才能起作用。", "xloc": [ - "default.handlebars->27->704" + "default.handlebars->27->710" ] }, { @@ -26503,7 +26524,7 @@ "ru": "Это не приведет к удалению этого устройства с сервера, но оно больше не сможет подключаться к серверу. Весь удаленный доступ к устройству будет потерян. Для работы этой команды устройство должно быть подключено.", "zh-chs": "這不會將該設備從服務器上刪除,但是該設備將不再能夠連接到服務器。對設備的所有遠程訪問都將丟失。必須連接設備,此命令才能起作用。", "xloc": [ - "default.handlebars->27->705" + "default.handlebars->27->711" ] }, { @@ -26520,7 +26541,7 @@ "ru": "Тигровый", "zh-chs": "蒂格雷", "xloc": [ - "default.handlebars->27->1144" + "default.handlebars->27->1150" ] }, { @@ -26544,14 +26565,14 @@ "en": "Time Span", "nl": "Tijdspanne", "xloc": [ - "default.handlebars->27->1481" + "default.handlebars->27->1487" ] }, { "en": "Timeout", "nl": "Time-out", "xloc": [ - "default.handlebars->27->756" + "default.handlebars->27->762" ] }, { @@ -26568,7 +26589,7 @@ "ru": "Чтобы добавить компьютер в группу \\\"{0}\\\", выполните следующую команду. Потребуются права root.", "zh-chs": "要將計算機添加到{0},請運行以下命令。需要根憑證。", "xloc": [ - "default.handlebars->27->371" + "default.handlebars->27->373" ] }, { @@ -26636,7 +26657,7 @@ "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Agent и установите его для управления этим компьютером. В этот агент встроена информация о текущем сервере и группе устройств.", "zh-chs": "要將新計算機添加到設備組\\“ {0} \\”,請下載網狀代理並安裝該計算機以進行管理。該代理中嵌入了服務器和設備組信息。", "xloc": [ - "default.handlebars->27->360" + "default.handlebars->27->362" ] }, { @@ -26653,7 +26674,7 @@ "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Agent и установите его для управления этим компьютером. В этот установщик агента встроена информация о текущем сервере и группе устройств.", "zh-chs": "要將新計算機添加到設備組\\“ {0} \\”,請下載網狀代理並安裝該計算機以進行管理。該代理安裝程序中嵌入了服務器和設備組信息。", "xloc": [ - "default.handlebars->27->373" + "default.handlebars->27->375" ] }, { @@ -26670,7 +26691,7 @@ "ru": "Чтобы удалить эту учетную запись, введите пароль учетной записи в оба поля и нажмите ОК.", "zh-chs": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->27->1179" + "default.handlebars->27->1185" ] }, { @@ -26753,7 +26774,7 @@ "ru": "Для удаления Mesh Agent скачайте файл ниже, запустите его и нажмите \\\"удалить\\\".", "zh-chs": "要刪除網格代理,請下載以下文件,運行並單擊\\“卸載\\”。", "xloc": [ - "default.handlebars->27->377" + "default.handlebars->27->379" ] }, { @@ -26770,7 +26791,7 @@ "ru": "Для удаления Mesh Agent выполните следующую команду. Потребуются учетные данные root.", "zh-chs": "要刪除網格代理,請運行以下命令。需要根憑證。", "xloc": [ - "default.handlebars->27->384" + "default.handlebars->27->386" ] }, { @@ -27025,7 +27046,7 @@ "ru": "Тема", "zh-chs": "話題", "xloc": [ - "default.handlebars->27->699" + "default.handlebars->27->705" ] }, { @@ -27076,7 +27097,7 @@ "ru": "Router используется для подключения к различным портам устройства через этот сервер", "zh-chs": "用於通過此服務器連接到設備的流量路由器", "xloc": [ - "default.handlebars->27->600" + "default.handlebars->27->606" ] }, { @@ -27110,7 +27131,7 @@ "ru": "Тсонга", "zh-chs": "特松加", "xloc": [ - "default.handlebars->27->1145" + "default.handlebars->27->1151" ] }, { @@ -27127,7 +27148,7 @@ "ru": "Тсвана", "zh-chs": "茨瓦納", "xloc": [ - "default.handlebars->27->1146" + "default.handlebars->27->1152" ] }, { @@ -27144,7 +27165,7 @@ "ru": "Турецкий", "zh-chs": "土耳其", "xloc": [ - "default.handlebars->27->1147" + "default.handlebars->27->1153" ] }, { @@ -27161,7 +27182,7 @@ "ru": "Туркменский", "zh-chs": "土庫曼人", "xloc": [ - "default.handlebars->27->1148" + "default.handlebars->27->1154" ] }, { @@ -27197,11 +27218,11 @@ "xloc": [ "default-mobile.handlebars->9->394", "default-mobile.handlebars->9->98", - "default.handlebars->27->1199", - "default.handlebars->27->1232", - "default.handlebars->27->1283", - "default.handlebars->27->1286", - "default.handlebars->27->787", + "default.handlebars->27->1205", + "default.handlebars->27->1238", + "default.handlebars->27->1289", + "default.handlebars->27->1292", + "default.handlebars->27->793", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, @@ -27219,7 +27240,7 @@ "ru": "Введите имя ключа, выберите поле OTP и нажмите кнопку на YubiKey™.", "zh-chs": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->27->957" + "default.handlebars->27->963" ] }, { @@ -27236,7 +27257,7 @@ "ru": "Введите имя ключа для добавления.", "zh-chs": "輸入要添加的密鑰的名稱。", "xloc": [ - "default.handlebars->27->954" + "default.handlebars->27->960" ] }, { @@ -27261,7 +27282,7 @@ "ru": "Терминал UTF8", "zh-chs": "UTF8終端", "xloc": [ - "default.handlebars->27->798" + "default.handlebars->27->804" ] }, { @@ -27278,7 +27299,7 @@ "ru": "Украинский", "zh-chs": "烏克蘭", "xloc": [ - "default.handlebars->27->1149" + "default.handlebars->27->1155" ] }, { @@ -27295,8 +27316,8 @@ "ru": "Невозможно получить доступ к устройству, пока адрес email не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес email.", "zh-chs": "在驗證電子郵件地址之前,無法訪問設備。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "xloc": [ - "default.handlebars->27->1194", - "default.handlebars->27->509" + "default.handlebars->27->1200", + "default.handlebars->27->515" ] }, { @@ -27349,8 +27370,8 @@ "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите на вкладку \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "zh-chs": "在啟用兩因素身份驗證之前,無法訪問設備。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->27->1196", - "default.handlebars->27->511" + "default.handlebars->27->1202", + "default.handlebars->27->517" ] }, { @@ -27457,9 +27478,9 @@ "zh-chs": "卸載", "xloc": [ "default-mobile.handlebars->9->441", - "default.handlebars->27->1394", - "default.handlebars->27->647", - "default.handlebars->27->666" + "default.handlebars->27->1400", + "default.handlebars->27->653", + "default.handlebars->27->672" ] }, { @@ -27477,9 +27498,9 @@ "zh-chs": "卸載代理", "xloc": [ "default-mobile.handlebars->9->423", - "default.handlebars->27->1360", - "default.handlebars->27->423", - "default.handlebars->27->683" + "default.handlebars->27->1366", + "default.handlebars->27->429", + "default.handlebars->27->689" ] }, { @@ -27496,7 +27517,7 @@ "ru": "Удалить агент", "zh-chs": "卸載代理", "xloc": [ - "default.handlebars->27->707" + "default.handlebars->27->713" ] }, { @@ -27524,17 +27545,17 @@ "default.handlebars->27->109", "default.handlebars->27->111", "default.handlebars->27->113", - "default.handlebars->27->1219", - "default.handlebars->27->1220", + "default.handlebars->27->1225", + "default.handlebars->27->1226", "default.handlebars->27->13", - "default.handlebars->27->1788", - "default.handlebars->27->1805", - "default.handlebars->27->1806", + "default.handlebars->27->1794", + "default.handlebars->27->1809", + "default.handlebars->27->1810", "default.handlebars->27->41", - "default.handlebars->27->419", "default.handlebars->27->42", - "default.handlebars->27->888", - "default.handlebars->27->895" + "default.handlebars->27->425", + "default.handlebars->27->894", + "default.handlebars->27->901" ] }, { @@ -27552,7 +27573,7 @@ "zh-chs": "未知#{0}", "xloc": [ "default-mobile.handlebars->9->388", - "default.handlebars->27->1226" + "default.handlebars->27->1232" ] }, { @@ -27569,7 +27590,7 @@ "ru": "Неизвестное действие", "zh-chs": "未知動作", "xloc": [ - "default.handlebars->27->1842" + "default.handlebars->27->1846" ] }, { @@ -27586,8 +27607,8 @@ "ru": "Неизвестное устройство", "zh-chs": "未知設備", "xloc": [ - "default.handlebars->27->1652", - "default.handlebars->27->1776" + "default.handlebars->27->1658", + "default.handlebars->27->1782" ] }, { @@ -27604,9 +27625,9 @@ "ru": "Неизвестная группа устройств", "zh-chs": "未知設備組", "xloc": [ - "default.handlebars->27->1646", - "default.handlebars->27->1764", - "default.handlebars->27->1846" + "default.handlebars->27->1652", + "default.handlebars->27->1770", + "default.handlebars->27->1850" ] }, { @@ -27623,7 +27644,7 @@ "ru": "Неизвестная группа", "zh-chs": "未知群組", "xloc": [ - "default.handlebars->27->1838" + "default.handlebars->27->1842" ] }, { @@ -27641,7 +27662,7 @@ "zh-chs": "未知狀態", "xloc": [ "default-mobile.handlebars->9->227", - "default.handlebars->27->533" + "default.handlebars->27->539" ] }, { @@ -27658,7 +27679,7 @@ "ru": "Неизвестная группа пользователей", "zh-chs": "未知用戶組", "xloc": [ - "default.handlebars->27->1770" + "default.handlebars->27->1776" ] }, { @@ -27676,7 +27697,7 @@ "zh-chs": "未知版本和狀態", "xloc": [ "default-mobile.handlebars->9->229", - "default.handlebars->27->535" + "default.handlebars->27->541" ] }, { @@ -27709,7 +27730,7 @@ "nl": "Account ontgrendelen", "zh-chs": "解锁帐号", "xloc": [ - "default.handlebars->27->1535" + "default.handlebars->27->1541" ] }, { @@ -27747,7 +27768,7 @@ "ru": "Актуально", "zh-chs": "最新", "xloc": [ - "default.handlebars->27->1903" + "default.handlebars->27->1907" ] }, { @@ -27788,11 +27809,11 @@ "default-mobile.handlebars->9->126", "default-mobile.handlebars->9->305", "default-mobile.handlebars->9->323", - "default.handlebars->27->1467", - "default.handlebars->27->1475", - "default.handlebars->27->821", - "default.handlebars->27->844", - "default.handlebars->27->847", + "default.handlebars->27->1473", + "default.handlebars->27->1481", + "default.handlebars->27->827", + "default.handlebars->27->850", + "default.handlebars->27->853", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -27810,7 +27831,7 @@ "ru": "Загрузить ядро Mesh Agent", "zh-chs": "上傳網格代理核心", "xloc": [ - "default.handlebars->27->940" + "default.handlebars->27->946" ] }, { @@ -27827,7 +27848,7 @@ "ru": "Загрузить файл ядра", "zh-chs": "上載核心文件", "xloc": [ - "default.handlebars->27->937" + "default.handlebars->27->943" ] }, { @@ -27844,7 +27865,7 @@ "ru": "Загрузить ядро по умолчанию с сервера ", "zh-chs": "上載默認服務器核心", "xloc": [ - "default.handlebars->27->934" + "default.handlebars->27->940" ] }, { @@ -27861,7 +27882,7 @@ "ru": "Загрузить ядро восстановления", "zh-chs": "上傳恢復核心", "xloc": [ - "default.handlebars->27->936" + "default.handlebars->27->942" ] }, { @@ -27878,8 +27899,8 @@ "ru": "Загрузка перезапишет 1 файл. Продолжить?", "zh-chs": "上傳將覆蓋1個文件。繼續?", "xloc": [ - "default.handlebars->27->1476", - "default.handlebars->27->845" + "default.handlebars->27->1482", + "default.handlebars->27->851" ] }, { @@ -27896,8 +27917,8 @@ "ru": "Загрузка перезапишет {0} файлов. Продолжить?", "zh-chs": "上傳將覆蓋{0}個文件。繼續?", "xloc": [ - "default.handlebars->27->1477", - "default.handlebars->27->846" + "default.handlebars->27->1483", + "default.handlebars->27->852" ] }, { @@ -27928,7 +27949,7 @@ "ru": "Верхний Сорбский", "zh-chs": "上索布族", "xloc": [ - "default.handlebars->27->1150" + "default.handlebars->27->1156" ] }, { @@ -27945,7 +27966,7 @@ "ru": "Урду", "zh-chs": "烏爾都語", "xloc": [ - "default.handlebars->27->1151" + "default.handlebars->27->1157" ] }, { @@ -27997,8 +28018,8 @@ "ru": "Использовано", "zh-chs": "用過的", "xloc": [ - "default.handlebars->27->1832", - "default.handlebars->27->1834" + "default.handlebars->27->1836", + "default.handlebars->27->1838" ] }, { @@ -28015,13 +28036,13 @@ "ru": "Пользователь", "zh-chs": "用戶", "xloc": [ - "default.handlebars->27->1280", - "default.handlebars->27->1488", - "default.handlebars->27->1517", - "default.handlebars->27->1642", - "default.handlebars->27->1825", + "default.handlebars->27->1286", + "default.handlebars->27->1494", + "default.handlebars->27->1523", + "default.handlebars->27->1648", + "default.handlebars->27->1829", "default.handlebars->27->211", - "default.handlebars->27->631" + "default.handlebars->27->637" ] }, { @@ -28038,7 +28059,7 @@ "ru": "Пользователь + Файлы", "zh-chs": "用戶+文件", "xloc": [ - "default.handlebars->27->1518" + "default.handlebars->27->1524" ] }, { @@ -28055,10 +28076,10 @@ "ru": "Импорт учетной записи пользователя", "zh-chs": "用戶帳戶導入", "xloc": [ - "default.handlebars->27->1551", - "default.handlebars->27->1552", - "default.handlebars->27->1554", - "default.handlebars->27->1556" + "default.handlebars->27->1557", + "default.handlebars->27->1558", + "default.handlebars->27->1560", + "default.handlebars->27->1562" ] }, { @@ -28075,7 +28096,7 @@ "ru": "Учетные записи пользователей", "zh-chs": "用戶帳號", "xloc": [ - "default.handlebars->27->1851" + "default.handlebars->27->1855" ] }, { @@ -28093,8 +28114,8 @@ "zh-chs": "用戶授權", "xloc": [ "default-mobile.handlebars->9->396", - "default.handlebars->27->1278", - "default.handlebars->27->627" + "default.handlebars->27->1284", + "default.handlebars->27->633" ] }, { @@ -28111,9 +28132,9 @@ "ru": "Согласие пользователя", "zh-chs": "用戶同意", "xloc": [ - "default.handlebars->27->1248", - "default.handlebars->27->1720", - "default.handlebars->27->571" + "default.handlebars->27->1254", + "default.handlebars->27->1726", + "default.handlebars->27->577" ] }, { @@ -28130,12 +28151,12 @@ "ru": "Группа пользователей", "zh-chs": "用戶組", "xloc": [ - "default.handlebars->27->1336", - "default.handlebars->27->1337", - "default.handlebars->27->1618", - "default.handlebars->27->1772", - "default.handlebars->27->1791", - "default.handlebars->27->630" + "default.handlebars->27->1342", + "default.handlebars->27->1343", + "default.handlebars->27->1624", + "default.handlebars->27->1778", + "default.handlebars->27->1797", + "default.handlebars->27->636" ] }, { @@ -28169,7 +28190,7 @@ "ru": "Членство в группах пользователей", "zh-chs": "用戶組成員資格", "xloc": [ - "default.handlebars->27->1769" + "default.handlebars->27->1775" ] }, { @@ -28193,17 +28214,17 @@ "ru": "Идентификатор пользователя", "zh-chs": "用戶標識", "xloc": [ - "default.handlebars->27->1397", - "default.handlebars->27->1687", - "default.handlebars->27->1688" + "default.handlebars->27->1403", + "default.handlebars->27->1693", + "default.handlebars->27->1694" ] }, { "en": "User Identifiers", "nl": "Gebruikers-ID's", "xloc": [ - "default.handlebars->27->1334", - "default.handlebars->27->1671" + "default.handlebars->27->1340", + "default.handlebars->27->1677" ] }, { @@ -28220,7 +28241,7 @@ "ru": "Экспортировать список пользователей", "zh-chs": "用戶列表導出", "xloc": [ - "default.handlebars->27->1563" + "default.handlebars->27->1569" ] }, { @@ -28238,7 +28259,7 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->443", - "default.handlebars->27->1396" + "default.handlebars->27->1402" ] }, { @@ -28300,7 +28321,7 @@ "ru": "Сессии пользователя", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->27->1868" + "default.handlebars->27->1872" ] }, { @@ -28359,7 +28380,7 @@ "en": "User \\\"{0}\\\"", "nl": "Gebuiker \\\"{0}\\\"", "xloc": [ - "default.handlebars->27->764" + "default.handlebars->27->770" ] }, { @@ -28376,8 +28397,8 @@ "ru": "Использовать настройки браузера", "zh-chs": "用戶瀏覽器價值", "xloc": [ - "default.handlebars->27->1161", - "default.handlebars->27->1163" + "default.handlebars->27->1167", + "default.handlebars->27->1169" ] }, { @@ -28434,10 +28455,10 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->268", - "default.handlebars->27->1575", + "default.handlebars->27->1581", "default.handlebars->27->272", "default.handlebars->27->304", - "default.handlebars->27->693", + "default.handlebars->27->699", "mstsc.handlebars->main->1->3->1->4->1->0", "mstsc.handlebars->main->1->3->1->4->3", "player.handlebars->3->4" @@ -28496,9 +28517,9 @@ "ru": "Пользователи", "zh-chs": "用戶數", "xloc": [ - "default.handlebars->27->1606", - "default.handlebars->27->1634", - "default.handlebars->27->1867", + "default.handlebars->27->1612", + "default.handlebars->27->1640", + "default.handlebars->27->1871", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -28516,7 +28537,7 @@ "ru": "Сессии пользователей", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->27->1855" + "default.handlebars->27->1859" ] }, { @@ -28533,14 +28554,14 @@ "ru": "VT100+ (F10 = ESC+[OY)", "zh-chs": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->27->803" + "default.handlebars->27->809" ] }, { "en": "Validate Email", "nl": "E-mail valideren", "xloc": [ - "default.handlebars->27->1530" + "default.handlebars->27->1536" ] }, { @@ -28557,7 +28578,7 @@ "ru": "Венда", "zh-chs": "文達", "xloc": [ - "default.handlebars->27->1152" + "default.handlebars->27->1158" ] }, { @@ -28576,8 +28597,8 @@ "xloc": [ "default-mobile.handlebars->9->367", "default-mobile.handlebars->9->370", - "default.handlebars->27->903", - "default.handlebars->27->906" + "default.handlebars->27->909", + "default.handlebars->27->912" ] }, { @@ -28608,7 +28629,7 @@ "ru": "Проверенный", "zh-chs": "已驗證", "xloc": [ - "default.handlebars->27->1750" + "default.handlebars->27->1756" ] }, { @@ -28635,8 +28656,8 @@ "zh-chs": "验证电话号码", "xloc": [ "default-mobile.handlebars->9->63", - "default.handlebars->27->1526", - "default.handlebars->27->941" + "default.handlebars->27->1532", + "default.handlebars->27->947" ] }, { @@ -28692,10 +28713,10 @@ "default-mobile.handlebars->9->351", "default-mobile.handlebars->9->368", "default-mobile.handlebars->9->373", - "default.handlebars->27->852", - "default.handlebars->27->887", - "default.handlebars->27->904", - "default.handlebars->27->909", + "default.handlebars->27->858", + "default.handlebars->27->893", + "default.handlebars->27->910", + "default.handlebars->27->915", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -28712,7 +28733,7 @@ "ru": "Версия несовместима, пожалуйста, сначала обновите установку MeshCentral", "zh-chs": "版本不兼容,请先升级您的MeshCentral安装", "xloc": [ - "default.handlebars->27->1899" + "default.handlebars->27->1903" ] }, { @@ -28747,7 +28768,7 @@ "ru": "Вьетнамский", "zh-chs": "越南文", "xloc": [ - "default.handlebars->27->1153" + "default.handlebars->27->1159" ] }, { @@ -28780,8 +28801,8 @@ "ru": "Просмотр журнала изменений", "zh-chs": "查看变更日志", "xloc": [ - "default.handlebars->27->1902", - "default.handlebars->27->1904" + "default.handlebars->27->1906", + "default.handlebars->27->1908" ] }, { @@ -28798,7 +28819,7 @@ "ru": "Посмотреть примечания этого устройства", "zh-chs": "查看有關此設備的註釋", "xloc": [ - "default.handlebars->27->587" + "default.handlebars->27->593" ] }, { @@ -28815,7 +28836,7 @@ "ru": "Посмотреть примечания этой группы устройств", "zh-chs": "查看有關此設備組的註釋", "xloc": [ - "default.handlebars->27->1263" + "default.handlebars->27->1269" ] }, { @@ -28832,7 +28853,7 @@ "ru": "Посмотреть примечания об этом пользователе", "zh-chs": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->27->1728" + "default.handlebars->27->1734" ] }, { @@ -28849,7 +28870,7 @@ "ru": "Волапукский", "zh-chs": "沃拉普克", "xloc": [ - "default.handlebars->27->1154" + "default.handlebars->27->1160" ] }, { @@ -28896,7 +28917,7 @@ "ko": "사용자가 액세스 권한을 부여하기를 기다리는 중 ...", "zh-chs": "正在等待用户授予访问权限...", "xloc": [ - "default.handlebars->27->753" + "default.handlebars->27->759" ] }, { @@ -28912,8 +28933,8 @@ "ru": "Услуга", "zh-chs": "唤醒", "xloc": [ - "default.handlebars->27->643", - "default.handlebars->27->662" + "default.handlebars->27->649", + "default.handlebars->27->668" ] }, { @@ -28932,8 +28953,8 @@ "xloc": [ "default-mobile.handlebars->9->419", "default-mobile.handlebars->9->432", - "default.handlebars->27->1356", - "default.handlebars->27->1384" + "default.handlebars->27->1362", + "default.handlebars->27->1390" ] }, { @@ -28951,7 +28972,7 @@ "zh-chs": "醒來", "xloc": [ "default-mobile.handlebars->9->260", - "default.handlebars->27->677" + "default.handlebars->27->683" ] }, { @@ -28968,7 +28989,7 @@ "ru": "Разбудить устройства", "zh-chs": "喚醒設備", "xloc": [ - "default.handlebars->27->426" + "default.handlebars->27->432" ] }, { @@ -28985,7 +29006,7 @@ "ru": "Валлонский", "zh-chs": "瓦隆", "xloc": [ - "default.handlebars->27->1155" + "default.handlebars->27->1161" ] }, { @@ -29002,7 +29023,7 @@ "ru": "Слабый", "zh-chs": "弱", "xloc": [ - "default.handlebars->27->1208" + "default.handlebars->27->1214" ] }, { @@ -29039,8 +29060,8 @@ "ru": "Веб-сервер", "zh-chs": "網絡服務器", "xloc": [ - "default.handlebars->27->1888", - "default.handlebars->27->1889" + "default.handlebars->27->1892", + "default.handlebars->27->1893" ] }, { @@ -29057,7 +29078,7 @@ "ru": "Запросы веб-сервера", "zh-chs": "Web服務器請求", "xloc": [ - "default.handlebars->27->1890" + "default.handlebars->27->1894" ] }, { @@ -29074,14 +29095,14 @@ "ru": "Ретранслятор Web Socket", "zh-chs": "Web套接字中繼", "xloc": [ - "default.handlebars->27->1891" + "default.handlebars->27->1895" ] }, { "en": "Web-RDP", "nl": "Web-RDP", "xloc": [ - "default.handlebars->27->613" + "default.handlebars->27->619" ] }, { @@ -29134,7 +29155,7 @@ "ru": "Уэльский", "zh-chs": "威爾士語", "xloc": [ - "default.handlebars->27->1156" + "default.handlebars->27->1162" ] }, { @@ -29151,7 +29172,7 @@ "ru": "Когда этот параметр включен, коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->27->1405" + "default.handlebars->27->1411" ] }, { @@ -29169,7 +29190,7 @@ "zh-chs": "啟用後,每次登錄時,您都可以選擇向電子郵件帳戶接收登錄令牌,以提高安全性。", "xloc": [ "default-mobile.handlebars->9->69", - "default.handlebars->27->948" + "default.handlebars->27->954" ] }, { @@ -29186,7 +29207,7 @@ "ru": "Будет изменено при следующем входе в систему.", "zh-chs": "下次登錄時將更改。", "xloc": [ - "default.handlebars->27->1700" + "default.handlebars->27->1706" ] }, { @@ -29345,7 +29366,7 @@ "ru": "Исполняемый файл Win32", "zh-chs": "Win32可執行文件", "xloc": [ - "default.handlebars->27->721" + "default.handlebars->27->727" ] }, { @@ -29362,7 +29383,7 @@ "ru": "WinSCP", "zh-chs": "WinSCP", "xloc": [ - "default.handlebars->27->609" + "default.handlebars->27->615" ] }, { @@ -29379,7 +29400,7 @@ "ru": "Windows", "zh-chs": "視窗", "xloc": [ - "default.handlebars->27->351" + "default.handlebars->27->352" ] }, { @@ -29396,8 +29417,8 @@ "ru": "Windows (.exe)", "zh-chs": "Windows(.exe)", "xloc": [ - "default.handlebars->27->363", - "default.handlebars->27->380" + "default.handlebars->27->365", + "default.handlebars->27->382" ] }, { @@ -29414,7 +29435,7 @@ "ru": "Windows (32bit)", "zh-chs": "Windows(32位)", "xloc": [ - "default.handlebars->27->725" + "default.handlebars->27->731" ] }, { @@ -29431,7 +29452,7 @@ "ru": "Windows (64bit)", "zh-chs": "Windows(64位)", "xloc": [ - "default.handlebars->27->726" + "default.handlebars->27->732" ] }, { @@ -29448,7 +29469,7 @@ "ru": "Windows (Удаление)", "zh-chs": "Windows(卸載)", "xloc": [ - "default.handlebars->27->354" + "default.handlebars->27->355" ] }, { @@ -29561,8 +29582,8 @@ "en": "Windows Command Prompt", "nl": "Windows opdrachtprompt", "xloc": [ - "default.handlebars->27->440", - "default.handlebars->27->687" + "default.handlebars->27->446", + "default.handlebars->27->693" ] }, { @@ -29605,8 +29626,8 @@ "en": "Windows PowerShell", "nl": "Windows PowerShell", "xloc": [ - "default.handlebars->27->441", - "default.handlebars->27->688" + "default.handlebars->27->447", + "default.handlebars->27->694" ] }, { @@ -29640,8 +29661,8 @@ "ru": "Windows x64 (.exe)", "zh-chs": "Windows x64(.exe)", "xloc": [ - "default.handlebars->27->367", - "default.handlebars->27->383" + "default.handlebars->27->369", + "default.handlebars->27->385" ] }, { @@ -29675,7 +29696,7 @@ "ru": "Перенос строк: ВЫКЛ", "zh-chs": "包裝:關閉", "xloc": [ - "default.handlebars->27->839" + "default.handlebars->27->845" ] }, { @@ -29692,7 +29713,7 @@ "ru": "Перенос строк: ВКЛ", "zh-chs": "包裝:開", "xloc": [ - "default.handlebars->27->838" + "default.handlebars->27->844" ] }, { @@ -29709,7 +29730,7 @@ "ru": "Записать событие к этому устройству", "zh-chs": "為此設備寫一個事件", "xloc": [ - "default.handlebars->27->589" + "default.handlebars->27->595" ] }, { @@ -29763,7 +29784,7 @@ "ru": "XTerm", "zh-chs": "XTerm", "xloc": [ - "default.handlebars->27->603" + "default.handlebars->27->609" ] }, { @@ -29780,7 +29801,7 @@ "ru": "Кос", "zh-chs": "科薩", "xloc": [ - "default.handlebars->27->1157" + "default.handlebars->27->1163" ] }, { @@ -29797,7 +29818,7 @@ "ru": "Идиш", "zh-chs": "意第緒語", "xloc": [ - "default.handlebars->27->1158" + "default.handlebars->27->1164" ] }, { @@ -29872,7 +29893,7 @@ "ru": "YubiKey™ OTP", "zh-chs": "YubiKey™ OTP", "xloc": [ - "default.handlebars->27->960" + "default.handlebars->27->966" ] }, { @@ -29889,7 +29910,7 @@ "ru": "Масштабирование по размеру", "zh-chs": "縮放至適合範圍", "xloc": [ - "default.handlebars->27->498" + "default.handlebars->27->504" ] }, { @@ -29906,8 +29927,8 @@ "ru": "Масштабирование +", "zh-chs": "放大到一定程度", "xloc": [ - "default.handlebars->27->495", - "default.handlebars->27->501" + "default.handlebars->27->501", + "default.handlebars->27->507" ] }, { @@ -29924,8 +29945,8 @@ "ru": "Масштабирование -", "zh-chs": "縮小到一定程度", "xloc": [ - "default.handlebars->27->496", - "default.handlebars->27->502" + "default.handlebars->27->502", + "default.handlebars->27->508" ] }, { @@ -29942,7 +29963,7 @@ "ru": "Зулусский", "zh-chs": "祖魯族", "xloc": [ - "default.handlebars->27->1159" + "default.handlebars->27->1165" ] }, { @@ -30155,7 +30176,7 @@ "ru": "\\\\'", "zh-chs": "\\\\'", "xloc": [ - "default.handlebars->27->1900" + "default.handlebars->27->1904" ] }, { @@ -30167,8 +30188,8 @@ "fr": "a:", "de": "a:", "xloc": [ - "default.handlebars->27->477", - "default.handlebars->27->478" + "default.handlebars->27->483", + "default.handlebars->27->484" ] }, { @@ -30244,8 +30265,8 @@ "en": "atag:", "nl": "atag:", "xloc": [ - "default.handlebars->27->475", - "default.handlebars->27->476" + "default.handlebars->27->481", + "default.handlebars->27->482" ] }, { @@ -30331,7 +30352,7 @@ "ru": "console.txt", "zh-chs": "console.txt", "xloc": [ - "default.handlebars->27->931" + "default.handlebars->27->937" ] }, { @@ -30349,7 +30370,7 @@ "zh-chs": "複製", "xloc": [ "default-mobile.handlebars->9->130", - "default.handlebars->27->1472" + "default.handlebars->27->1478" ] }, { @@ -30373,8 +30394,8 @@ "ru": "devicelist.csv", "zh-chs": "devicelist.csv", "xloc": [ - "default.handlebars->27->454", - "default.handlebars->27->459" + "default.handlebars->27->460", + "default.handlebars->27->465" ] }, { @@ -30391,8 +30412,8 @@ "ru": "devicelist.json", "zh-chs": "devicelist.json", "xloc": [ - "default.handlebars->27->456", - "default.handlebars->27->460" + "default.handlebars->27->462", + "default.handlebars->27->466" ] }, { @@ -30423,8 +30444,8 @@ "ru": "eventslist.csv", "zh-chs": "eventslist.csv", "xloc": [ - "default.handlebars->27->1495", - "default.handlebars->27->1500" + "default.handlebars->27->1501", + "default.handlebars->27->1506" ] }, { @@ -30441,8 +30462,8 @@ "ru": "eventslist.json", "zh-chs": "eventslist.json", "xloc": [ - "default.handlebars->27->1497", - "default.handlebars->27->1501" + "default.handlebars->27->1503", + "default.handlebars->27->1507" ] }, { @@ -30476,7 +30497,7 @@ "ru": "свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->27->1863" + "default.handlebars->27->1867" ] }, { @@ -30495,8 +30516,8 @@ "xloc": [ "default-mobile.handlebars->9->141", "default-mobile.handlebars->9->142", - "default.handlebars->27->469", - "default.handlebars->27->470" + "default.handlebars->27->475", + "default.handlebars->27->476" ] }, { @@ -30515,8 +30536,8 @@ "xloc": [ "default-mobile.handlebars->9->139", "default-mobile.handlebars->9->140", - "default.handlebars->27->467", - "default.handlebars->27->468" + "default.handlebars->27->473", + "default.handlebars->27->474" ] }, { @@ -30661,7 +30682,7 @@ "ru": "id, name, email, creation, lastlogin, groups, authfactors", "zh-chs": "id,名稱,電子郵件,創建,lastlogin,組,authfactors", "xloc": [ - "default.handlebars->27->1564" + "default.handlebars->27->1570" ] }, { @@ -30678,7 +30699,7 @@ "ru": "идентификатор, имя, имя, хост, значок, ip, osdesc, состояние, имя группы, conn, pwr", "zh-chs": "id,名稱,rname,主機,圖標,ip,osdesc,狀態,組名,conn,pwr", "xloc": [ - "default.handlebars->27->458" + "default.handlebars->27->464" ] }, { @@ -30697,8 +30718,8 @@ "xloc": [ "default-mobile.handlebars->9->137", "default-mobile.handlebars->9->138", - "default.handlebars->27->465", - "default.handlebars->27->466" + "default.handlebars->27->471", + "default.handlebars->27->472" ] }, { @@ -30762,7 +30783,7 @@ "ru": "k max, пусто по умолчанию", "zh-chs": "k max,默认为空白", "xloc": [ - "default.handlebars->27->1592" + "default.handlebars->27->1598" ] }, { @@ -30783,6 +30804,12 @@ "terms.handlebars->container->column_l->75->1" ] }, + { + "en": "meshagent", + "xloc": [ + "default.handlebars->27->389" + ] + }, { "cs": "přesunout", "de": "verschieben", @@ -30798,28 +30825,28 @@ "zh-chs": "移動", "xloc": [ "default-mobile.handlebars->9->131", - "default.handlebars->27->1473" + "default.handlebars->27->1479" ] }, { "en": "noVNC", "nl": "noVNC", "xloc": [ - "default.handlebars->27->611" + "default.handlebars->27->617" ] }, { "en": "noVNC Connection", "nl": "noVNC verbinding", "xloc": [ - "default.handlebars->27->482" + "default.handlebars->27->488" ] }, { "en": "noVNC remote connection port:", "nl": "noVNC externe verbindingspoort:", "xloc": [ - "default.handlebars->27->481" + "default.handlebars->27->487" ] }, { @@ -30850,7 +30877,7 @@ "ru": "servererrors.txt", "zh-chs": "servererrors.txt", "xloc": [ - "default.handlebars->27->1223" + "default.handlebars->27->1229" ] }, { @@ -30867,7 +30894,7 @@ "ru": "servertrace.csv", "zh-chs": "servertrace.csv", "xloc": [ - "default.handlebars->27->1898" + "default.handlebars->27->1902" ] }, { @@ -30886,8 +30913,8 @@ "xloc": [ "default-mobile.handlebars->9->145", "default-mobile.handlebars->9->146", - "default.handlebars->27->473", - "default.handlebars->27->474" + "default.handlebars->27->479", + "default.handlebars->27->480" ] }, { @@ -30906,8 +30933,8 @@ "xloc": [ "default-mobile.handlebars->9->143", "default-mobile.handlebars->9->144", - "default.handlebars->27->471", - "default.handlebars->27->472" + "default.handlebars->27->477", + "default.handlebars->27->478" ] }, { @@ -30924,7 +30951,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->27->1876" + "default.handlebars->27->1880" ] }, { @@ -30941,7 +30968,7 @@ "ru": "time, source, message", "zh-chs": "時間,來源,訊息", "xloc": [ - "default.handlebars->27->1897" + "default.handlebars->27->1901" ] }, { @@ -30972,7 +30999,7 @@ "ru": "всего", "zh-chs": "總", "xloc": [ - "default.handlebars->27->1864" + "default.handlebars->27->1868" ] }, { @@ -30991,8 +31018,8 @@ "xloc": [ "default-mobile.handlebars->9->135", "default-mobile.handlebars->9->136", - "default.handlebars->27->463", - "default.handlebars->27->464" + "default.handlebars->27->469", + "default.handlebars->27->470" ] }, { @@ -31025,8 +31052,8 @@ "xloc": [ "default-mobile.handlebars->9->133", "default-mobile.handlebars->9->134", - "default.handlebars->27->461", - "default.handlebars->27->462" + "default.handlebars->27->467", + "default.handlebars->27->468" ] }, { @@ -31043,8 +31070,8 @@ "ru": "userlist.csv", "zh-chs": "userlist.csv", "xloc": [ - "default.handlebars->27->1560", - "default.handlebars->27->1565" + "default.handlebars->27->1566", + "default.handlebars->27->1571" ] }, { @@ -31061,8 +31088,8 @@ "ru": "userlist.json", "zh-chs": "userlist.json", "xloc": [ - "default.handlebars->27->1562", - "default.handlebars->27->1566" + "default.handlebars->27->1568", + "default.handlebars->27->1572" ] }, { @@ -31079,7 +31106,7 @@ "ru": "utc, время, тип, действие, пользователь, устройство, сообщение", "zh-chs": "utc,時間,類型,操作,用戶,設備,消息", "xloc": [ - "default.handlebars->27->1499" + "default.handlebars->27->1505" ] }, { @@ -31113,7 +31140,7 @@ "ru": "{0} Гб", "zh-chs": "{0} Gb", "xloc": [ - "default.handlebars->27->1452" + "default.handlebars->27->1458" ] }, { @@ -31130,8 +31157,8 @@ "ru": "{0} Kб", "zh-chs": "{0} Kb", "xloc": [ - "default.handlebars->27->1450", - "default.handlebars->27->1804" + "default.handlebars->27->1456", + "default.handlebars->27->1808" ] }, { @@ -31149,8 +31176,8 @@ "zh-chs": "{0} Mb", "xloc": [ "default-mobile.handlebars->9->384", - "default.handlebars->27->1451", - "default.handlebars->27->920" + "default.handlebars->27->1457", + "default.handlebars->27->926" ] }, { @@ -31168,7 +31195,7 @@ "zh-chs": "{0} Mb,{1} Mhz", "xloc": [ "default-mobile.handlebars->9->379", - "default.handlebars->27->915" + "default.handlebars->27->921" ] }, { @@ -31185,7 +31212,7 @@ "ru": "{0} активных сессий", "zh-chs": "{0}個活動會話", "xloc": [ - "default.handlebars->27->1740" + "default.handlebars->27->1746" ] }, { @@ -31202,7 +31229,7 @@ "ru": "{0} байт", "zh-chs": "{0} b", "xloc": [ - "default.handlebars->27->1449" + "default.handlebars->27->1455" ] }, { @@ -31220,8 +31247,8 @@ "zh-chs": "{0}個字節", "xloc": [ "default-mobile.handlebars->9->119", - "default.handlebars->27->1460", - "default.handlebars->27->1819" + "default.handlebars->27->1466", + "default.handlebars->27->1823" ] }, { @@ -31238,14 +31265,14 @@ "ru": "{0} байт осталось", "zh-chs": "剩餘{0}個字節", "xloc": [ - "default.handlebars->27->1444" + "default.handlebars->27->1450" ] }, { "en": "{0} connections", "nl": "{0} verbindingen", "xloc": [ - "default.handlebars->27->763" + "default.handlebars->27->769" ] }, { @@ -31262,7 +31289,7 @@ "ru": "{0} гигабайт осталось", "zh-chs": "剩餘{0} GB", "xloc": [ - "default.handlebars->27->1447" + "default.handlebars->27->1453" ] }, { @@ -31279,7 +31306,7 @@ "ru": "{0} групп", "zh-chs": "{0}個群組", "xloc": [ - "default.handlebars->27->1705" + "default.handlebars->27->1711" ] }, { @@ -31327,7 +31354,7 @@ "ru": "{0} килобайт осталось", "zh-chs": "剩餘{0}千字節", "xloc": [ - "default.handlebars->27->1445" + "default.handlebars->27->1451" ] }, { @@ -31362,7 +31389,7 @@ "ru": "{0} мегабайт осталось", "zh-chs": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->27->1446" + "default.handlebars->27->1452" ] }, { @@ -31396,7 +31423,7 @@ "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей...", "zh-chs": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->27->1509" + "default.handlebars->27->1515" ] }, { @@ -31413,7 +31440,7 @@ "ru": "{0} устройств", "zh-chs": "{0}個節點", "xloc": [ - "default.handlebars->27->387" + "default.handlebars->27->393" ] }, { @@ -31534,7 +31561,7 @@ "default-mobile.handlebars->9->169", "default-mobile.handlebars->9->172", "default-mobile.handlebars->9->175", - "default.handlebars->27->1513", + "default.handlebars->27->1519", "default.handlebars->27->229", "default.handlebars->27->232", "default.handlebars->27->235", @@ -31557,7 +31584,7 @@ "ru": "{0} настройки (.msh)", "zh-chs": "{0}設置(.msh)", "xloc": [ - "default.handlebars->27->370" + "default.handlebars->27->372" ] }, { @@ -31660,7 +31687,7 @@ "ru": "{0}k в 1 файле. {1}k максимум", "zh-chs": "{0} k合1檔案。最多{1} k", "xloc": [ - "default.handlebars->27->1454" + "default.handlebars->27->1460" ] }, { @@ -31677,7 +31704,7 @@ "ru": "{0}k в {1} файлах. {2}k максимум", "zh-chs": "{1}個文件中有{0}個。最多{2} k", "xloc": [ - "default.handlebars->27->1453" + "default.handlebars->27->1459" ] }, { diff --git a/views/default.handlebars b/views/default.handlebars index efcb49fb..3b243f51 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -4105,8 +4105,19 @@ function addAgentToMesh(meshid) { if (xxdialogMode) return false; - var mesh = meshes[meshid], x = '', installType = 0; - x += addHtmlValue("Operating System", ''); + var mesh = meshes[meshid], x = '', installType = 0, moreoptions = ''; + if (debugmode > 0) { moreoptions = ''; } + x += addHtmlValue("Operating System", ''); + + if (debugmode > 0) { + var binaryInstallAgents = { 5 : 'Linux x86-32', 6 : 'Linux x86-64', 16 : 'Apple OSX x86-64', 25 : 'Linux ARM-HF, Rasberry Pi', 26 : 'Linux ARM64', 30 : 'FreeBSD x86-64' }; + moreoptions = ''; + for (var i in binaryInstallAgents) { moreoptions += '' } + x += '
'; + x += addHtmlValue("System Type", ''); + x += '
'; + } + x += '
'; x += addHtmlValue("Installation Type", ''); x += '

'; @@ -4144,6 +4155,13 @@ x += ''; x += ''; + if (debugmode > 0) { + // Linux binary installer + x += '"; + x += '
' + "Loading..." + '
'; } else if (p52recordings.length == 0) { - x += '
' + "No recordings." + "
"; + x += '
' + "No recordings." + '
'; } else { // Display the users using the sorted list x += ''; diff --git a/webserver.js b/webserver.js index 307e7acb..a23a9c0c 100644 --- a/webserver.js +++ b/webserver.js @@ -3911,7 +3911,29 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { // If required, check if this user has rights to do this if ((obj.parent.config.settings != null) && ((obj.parent.config.settings.lockagentdownload == true) || (domain.lockagentdownload == true)) && (req.session.userid == null)) { res.sendStatus(401); return; } - if (req.query.id != null) { + if ((req.query.meshinstall != null) && (req.query.id != null)) { + if ((domain.loginkey != null) && (domain.loginkey.indexOf(req.query.key) == -1)) { res.sendStatus(404); return; } // Check 3FA URL key + + // Send meshagent with included self installer for a specific platform back + // Start by getting the .msh for this request + var meshsettings = getMshFromRequest(req, res, domain); + if (meshsettings == null) { res.sendStatus(401); return; } + + // Get the interactive install script, this only works for non-Windows agents + var agentid = parseInt(req.query.meshinstall); + var argentInfo = obj.parent.meshAgentBinaries[agentid]; + var scriptInfo = obj.parent.meshAgentInstallScripts[6]; + if ((argentInfo == null) || (scriptInfo == null) || (argentInfo.platform == 'win32')) { res.sendStatus(404); return; } + + // Change the .msh file into JSON format and merge it into the install script + var tokens, msh = {}, meshsettingslines = meshsettings.split('\r').join('').split('\n'); + for (var i in meshsettingslines) { tokens = meshsettingslines[i].split('='); if (tokens.length == 2) { msh[tokens[0]] = tokens[1]; } } + var js = scriptInfo.data.replace('var msh = {};', 'var msh = ' + JSON.stringify(msh) + ';'); + + res.set({ 'Cache-Control': 'no-cache, no-store, must-revalidate', 'Pragma': 'no-cache', 'Expires': '0', 'Content-Type': 'application/octet-stream', 'Content-Disposition': 'attachment; filename="meshagent"' }); + res.statusCode = 200; + obj.parent.exeHandler.streamExeWithJavaScript({ platform: argentInfo.platform, sourceFileName: argentInfo.path, destinationStream: res, js: Buffer.from(js, 'utf8'), peinfo: argentInfo.pe }); + } else if (req.query.id != null) { // Send a specific mesh agent back var argentInfo = obj.parent.meshAgentBinaries[req.query.id]; if (argentInfo == null) { res.sendStatus(404); return; } @@ -4012,7 +4034,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { res.set({ 'Cache-Control': 'no-cache, no-store, must-revalidate', 'Pragma': 'no-cache', 'Expires': '0', 'Content-Type': 'application/octet-stream', 'Content-Disposition': 'attachment; filename="meshcmd' + ((req.query.meshcmd <= 4) ? '.exe' : '') + '"' }); res.statusCode = 200; if (argentInfo.signedMeshCmdPath != null) { - // If we hav a pre-signed MeshCmd, send that. + // If we have a pre-signed MeshCmd, send that. res.sendFile(argentInfo.signedMeshCmdPath); } else { // Merge JavaScript to a unsigned agent and send that. @@ -4073,6 +4095,8 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { domain = checkUserIpAddress(req, res); // Recheck the domain to apply user IP filtering. if (domain == null) return; if ((domain.loginkey != null) && (domain.loginkey.indexOf(req.query.key) == -1)) { res.sendStatus(404); return; } // Check 3FA URL key + if ((req.session == null) || (req.session.userid == null)) { res.sendStatus(404); return; } + // Send a list of available mesh agents var response = 'Mesh Agents
'; response += ''; @@ -4200,14 +4224,10 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { }); } - // Handle a request to download a mesh settings - obj.handleMeshSettingsRequest = function (req, res) { - const domain = getDomain(req); - if (domain == null) { return; } - //if ((domain.id !== '') || (!req.session) || (req.session == null) || (!req.session.userid)) { res.sendStatus(401); return; } - + // Return a .msh file from a given request, id is the device group identifier or encrypted cookie with the identifier. + function getMshFromRequest(req, res, domain) { // If required, check if this user has rights to do this - if ((obj.parent.config.settings != null) && ((obj.parent.config.settings.lockagentdownload == true) || (domain.lockagentdownload == true)) && (req.session.userid == null)) { res.sendStatus(401); return; } + if ((obj.parent.config.settings != null) && ((obj.parent.config.settings.lockagentdownload == true) || (domain.lockagentdownload == true)) && (req.session.userid == null)) { return null; } // Check if the meshid is a time limited, encrypted cookie var meshcookie = obj.parent.decodeCookie(req.query.id, obj.parent.invitationLinkEncryptionKey); @@ -4215,11 +4235,11 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { // Fetch the mesh object var mesh = obj.meshes['mesh/' + domain.id + '/' + req.query.id]; - if (mesh == null) { res.sendStatus(401); return; } + if (mesh == null) { return null; } // If needed, check if this user has rights to do this if ((obj.parent.config.settings != null) && ((obj.parent.config.settings.lockagentdownload == true) || (domain.lockagentdownload == true))) { - if ((domain.id != mesh.domain) || ((obj.GetMeshRights(req.session.userid, mesh) & 1) == 0)) { res.sendStatus(401); return; } + if ((domain.id != mesh.domain) || ((obj.GetMeshRights(req.session.userid, mesh) & 1) == 0)) { return null; } } var meshidhex = Buffer.from(req.query.id.replace(/\@/g, '+').replace(/\$/g, '/'), 'base64').toString('hex').toUpperCase(); @@ -4245,6 +4265,17 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { if ((domain.agentnoproxy === true) || (obj.args.lanonly == true)) { meshsettings += 'ignoreProxyFile=1\r\n'; } if (obj.args.agentconfig) { for (var i in obj.args.agentconfig) { meshsettings += obj.args.agentconfig[i] + '\r\n'; } } if (domain.agentconfig) { for (var i in domain.agentconfig) { meshsettings += domain.agentconfig[i] + '\r\n'; } } + return meshsettings; + } + + // Handle a request to download a mesh settings + obj.handleMeshSettingsRequest = function (req, res) { + const domain = getDomain(req); + if (domain == null) { return; } + //if ((domain.id !== '') || (!req.session) || (req.session == null) || (!req.session.userid)) { res.sendStatus(401); return; } + + var meshsettings = getMshFromRequest(req, res, domain); + if (meshsettings == null) { res.sendStatus(401); return; } res.set({ 'Cache-Control': 'no-cache, no-store, must-revalidate', 'Pragma': 'no-cache', 'Expires': '0', 'Content-Type': 'application/octet-stream', 'Content-Disposition': 'attachment; filename="meshagent.msh"' }); res.send(meshsettings);
IDDescriptionLinkSizeSHA384MeshCmd