diff --git a/db.js b/db.js index fec1c3d9..54cf09c4 100644 --- a/db.js +++ b/db.js @@ -170,20 +170,39 @@ module.exports.CreateDB = function (parent, func) { // Get the number of records in the database for various types, this is the slow NeDB way. // WARNING: This is a terrible query for database performance. Only do this when needed. This query will look at almost every document in the database. obj.getStats = function (func) { - if (obj.databaseType > 1) { - // MongoJS or MongoDB version (not tested on MongoDB) + if (obj.databaseType == 3) { + // MongoDB + obj.file.aggregate([{ "$group": { _id: "$type", count: { $sum: 1 } } }]).toArray(function (err, docs) { + var counters = {}, totalCount = 0; + for (var i in docs) { if (docs[i]._id != null) { counters[docs[i]._id] = docs[i].count; totalCount += docs[i].count; } } + func(counters); + }); + } else if (obj.databaseType == 2) { + // MongoJS obj.file.aggregate([{ "$group": { _id: "$type", count: { $sum: 1 } } }], function (err, docs) { var counters = {}, totalCount = 0; for (var i in docs) { if (docs[i]._id != null) { counters[docs[i]._id] = docs[i].count; totalCount += docs[i].count; } } - func({ nodes: counters['node'], meshes: counters['mesh'], users: counters['user'], total: totalCount }); - }) - } else { + func(counters); + }); + } else if (obj.databaseType == 1) { // NeDB version obj.file.count({ type: 'node' }, function (err, nodeCount) { obj.file.count({ type: 'mesh' }, function (err, meshCount) { obj.file.count({ type: 'user' }, function (err, userCount) { - obj.file.count({}, function (err, totalCount) { - func({ nodes: nodeCount, meshes: meshCount, users: userCount, total: totalCount }); + obj.file.count({ type: 'sysinfo' }, function (err, sysinfoCount) { + obj.file.count({ type: 'note' }, function (err, noteCount) { + obj.file.count({ type: 'iploc' }, function (err, iplocCount) { + obj.file.count({ type: 'ifinfo' }, function (err, ifinfoCount) { + obj.file.count({ type: 'cfile' }, function (err, cfileCount) { + obj.file.count({ type: 'lastconnect' }, function (err, lastconnectCount) { + obj.file.count({}, function (err, totalCount) { + func({ node: nodeCount, mesh: meshCount, user: userCount, sysinfo: sysinfoCount, iploc: iplocCount, note: noteCount, ifinfo: ifinfoCount, cfile: cfileCount, lastconnect: lastconnectCount, total: totalCount }); + }); + }); + }); + }); + }); + }); }); }); }); @@ -730,6 +749,7 @@ module.exports.CreateDB = function (parent, func) { obj.removeAllPowerEventsForNode = function (nodeid) { obj.powerfile.deleteMany({ nodeid: nodeid }, { multi: true }); }; // Database actions on the SMBIOS collection + obj.GetAllSMBIOS = function (func) { obj.smbiosfile.find({}).toArray(func); }; obj.SetSMBIOS = function (smbios, func) { checkObjectNames(smbios, 'x7'); // DEBUG CHECKING obj.smbiosfile.updateOne({ _id: smbios._id }, { $set: smbios }, { upsert: true }, func); @@ -767,6 +787,17 @@ module.exports.CreateDB = function (parent, func) { }); } + // Get database information + obj.getDbStats = function (func) { + obj.stats = { c: 6 }; + obj.getStats(function (r) { obj.stats.recordTypes = r; if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }) + obj.file.stats().then(function (stats) { obj.stats[stats.ns] = { size: stats.size, count: stats.count, avgObjSize: stats.avgObjSize, capped: stats.capped }; if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }, function () { if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }, ); + obj.eventsfile.stats().then(function (stats) { obj.stats[stats.ns] = { size: stats.size, count: stats.count, avgObjSize: stats.avgObjSize, capped: stats.capped }; if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }, function () { if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }, ); + obj.powerfile.stats().then(function (stats) { obj.stats[stats.ns] = { size: stats.size, count: stats.count, avgObjSize: stats.avgObjSize, capped: stats.capped }; if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }, function () { if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }, ); + obj.smbiosfile.stats().then(function (stats) { obj.stats[stats.ns] = { size: stats.size, count: stats.count, avgObjSize: stats.avgObjSize, capped: stats.capped }; if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }, function () { if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }, ); + obj.serverstatsfile.stats().then(function (stats) { obj.stats[stats.ns] = { size: stats.size, count: stats.count, avgObjSize: stats.avgObjSize, capped: stats.capped }; if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }, function () { if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }, ); + } + // Plugin operations if (parent.config.settings.plugins != null) { obj.addPlugin = function (plugin, func) { plugin.type = "plugin"; obj.pluginsfile.insertOne(plugin, func); }; // Add a plugin @@ -874,6 +905,7 @@ module.exports.CreateDB = function (parent, func) { obj.removeAllPowerEventsForNode = function (nodeid) { obj.powerfile.remove({ nodeid: nodeid }, { multi: true }); }; // Database actions on the SMBIOS collection + obj.GetAllSMBIOS = function (func) { obj.smbiosfile.find({}, func); }; obj.SetSMBIOS = function (smbios, func) { obj.smbiosfile.update({ _id: smbios._id }, smbios, { upsert: true }, func); }; obj.RemoveSMBIOS = function (id) { obj.smbiosfile.remove({ _id: id }); }; obj.GetSMBIOS = function (id, func) { obj.smbiosfile.find({ _id: id }, func); }; @@ -908,10 +940,21 @@ module.exports.CreateDB = function (parent, func) { }); } + // Get database information + obj.getDbStats = function (func) { + obj.stats = { c: 6 }; + obj.getStats(function (r) { obj.stats.recordTypes = r; if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }) + obj.file.count({}, function (err, count) { obj.stats.meshcentral = { count: count }; if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }); + obj.eventsfile.count({}, function (err, count) { obj.stats.events = { count: count }; if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }); + obj.powerfile.count({}, function (err, count) { obj.stats.power = { count: count }; if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }); + obj.smbiosfile.count({}, function (err, count) { obj.stats.smbios = { count: count }; if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }); + obj.serverstatsfile.count({}, function (err, count) { obj.stats.serverstats = { count: count }; if (--obj.stats.c == 0) { delete obj.stats.c; func(obj.stats); } }); + } + // Plugin operations if (parent.config.settings.plugins != null) { - obj.addPlugin = function (plugin, func) { plugin.type = "plugin"; obj.pluginsfile.insert(plugin, func); }; // Add a plugin - obj.getPlugins = function (func) { obj.pluginsfile.find({ "type": "plugin" }, { "type": 0 }).sort({ name: 1 }).exec(func); }; // Get all plugins + obj.addPlugin = function (plugin, func) { plugin.type = 'plugin'; obj.pluginsfile.insert(plugin, func); }; // Add a plugin + obj.getPlugins = function (func) { obj.pluginsfile.find({ 'type': 'plugin' }, { 'type': 0 }).sort({ name: 1 }).exec(func); }; // Get all plugins obj.getPlugin = function (id, func) { obj.pluginsfile.find({ _id: id }).sort({ name: 1 }).exec(func); }; // Get plugin obj.deletePlugin = function (id, func) { obj.pluginsfile.remove({ _id: id }, func); }; // Delete plugin obj.setPluginStatus = function (id, status, func) { obj.pluginsfile.update({ _id: id }, { $set: { status: status } }, func); }; diff --git a/meshcentral.js b/meshcentral.js index 3f5e0725..4a639418 100644 --- a/meshcentral.js +++ b/meshcentral.js @@ -118,7 +118,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', 'shownodes', 'showmeshes', 'showevents', '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', 'logintokengen', 'mailtokengen', 'admin', 'unadmin', 'sessionkey', 'sessiontime', 'minify', 'minifycore', 'dblistconfigfiles', 'dbshowconfigfile', 'dbpushconfigfiles', 'dbpullconfigfiles', 'dbdeleteconfigfiles', 'vaultpushconfigfiles', 'vaultpullconfigfiles', 'vaultdeleteconfigfiles', 'configkey', 'loadconfigfromdb', 'npmpath', 'memorytracking', 'serverid', 'recordencryptionrecode', 'vault', 'token', 'unsealkey', 'name', 'log']; + var validArguments = ['_', 'notls', 'user', 'port', 'aliasport', 'mpsport', 'mpsaliasport', 'redirport', 'rediraliasport', 'cert', 'mpscert', 'deletedomain', 'deletedefaultdomain', 'showall', 'showusers', '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', 'logintokengen', 'mailtokengen', 'admin', 'unadmin', 'sessionkey', 'sessiontime', 'minify', 'minifycore', 'dblistconfigfiles', 'dbshowconfigfile', 'dbpushconfigfiles', 'dbpullconfigfiles', 'dbdeleteconfigfiles', 'vaultpushconfigfiles', 'vaultpullconfigfiles', 'vaultdeleteconfigfiles', 'configkey', 'loadconfigfromdb', 'npmpath', 'memorytracking', 'serverid', 'recordencryptionrecode', 'vault', 'token', 'unsealkey', 'name', 'log', 'dbstats']; 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. @@ -431,12 +431,14 @@ function CreateMeshCentralServer(config, args) { if (obj.args.shownodes) { obj.db.GetAllType('node', function (err, docs) { console.log(docs); process.exit(); }); return; } if (obj.args.showmeshes) { obj.db.GetAllType('mesh', function (err, docs) { console.log(docs); process.exit(); }); return; } if (obj.args.showevents) { obj.db.GetAllEvents(function (err, docs) { console.log(docs); process.exit(); }); return; } + if (obj.args.showsmbios) { obj.db.GetAllSMBIOS(function (err, docs) { console.log(docs); process.exit(); }); return; } if (obj.args.showpower) { obj.db.getAllPower(function (err, docs) { console.log(docs); process.exit(); }); return; } if (obj.args.clearpower) { obj.db.removeAllPowerEvents(function () { process.exit(); }); return; } if (obj.args.showiplocations) { obj.db.GetAllType('iploc', function (err, docs) { console.log(docs); process.exit(); }); return; } if (obj.args.logintoken) { obj.getLoginToken(obj.args.logintoken, function (r) { console.log(r); process.exit(); }); return; } if (obj.args.logintokenkey) { obj.showLoginTokenKey(function (r) { console.log(r); process.exit(); }); return; } if (obj.args.recordencryptionrecode) { obj.db.performRecordEncryptionRecode(function (count) { console.log('Re-encoded ' + count + ' record(s).'); process.exit(); }); return; } + if (obj.args.dbstats) { obj.db.getDbStats(function (stats) { console.log(stats); process.exit(); }); return; } // Show a list of all configuration files in the database if (obj.args.dblistconfigfiles) { @@ -907,7 +909,23 @@ function CreateMeshCentralServer(config, args) { if (obj.letsencrypt == null) { addServerWarning("Unable to setup GreenLock module."); leok = false; } } if (leok == true) { - obj.letsencrypt.getCertificate(certs, obj.StartEx3); // Use Let's Encrypt + // Check that the email address domain MX resolves. + require('dns').resolveMx(obj.config.letsencrypt.email.split('@')[1], function (err, addresses) { + if (err == null) { + // Check that all names resolve + checkResolveAll(obj.config.letsencrypt.names.split(','), function (err) { + if (err == null) { + obj.letsencrypt.getCertificate(certs, obj.StartEx3); // Use Let's Encrypt + } else { + for (var i in err) { addServerWarning("Invalid Let's Encrypt names, unable to resolve: " + err[i]); } + obj.StartEx3(certs); // Let's Encrypt did not load, just use the configured certificates + } + }); + } else { + addServerWarning("Invalid Let's Encrypt email address, unable to resolve: " + obj.config.letsencrypt.email.split('@')[1]); + obj.StartEx3(certs); // Let's Encrypt did not load, just use the configured certificates + } + }); } else { obj.StartEx3(certs); // Let's Encrypt did not load, just use the configured certificates } @@ -1976,6 +1994,17 @@ function CreateMeshCentralServer(config, args) { return obj; } +// Resolve a list of names, call back with list of failed resolves. +function checkResolveAll(names, func) { + var dns = require('dns'), state = { func: func, count: names.length, err: null }; + for (var i in names) { + dns.resolve(names[i], function (err, records) { + if (err != null) { if (this.state.err == null) { this.state.err = [this.name]; } else { this.state.err.push(this.name); } } + if (--this.state.count == 0) { this.state.func(this.state.err); } + }.bind({ name: names[i], state: state })) + } +} + // Return the server configuration function getConfig(createSampleConfig) { // Figure out the datapath location diff --git a/package.json b/package.json index 1551a057..ceafa8bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "meshcentral", - "version": "0.4.5-j", + "version": "0.4.5-l", "keywords": [ "Remote Management", "Intel AMT", diff --git a/public/scripts/common-0.0.1.js b/public/scripts/common-0.0.1.js index b0375911..53799a5c 100644 --- a/public/scripts/common-0.0.1.js +++ b/public/scripts/common-0.0.1.js @@ -9,8 +9,8 @@ if (!String.prototype.startsWith) { String.prototype.startsWith = function (str) if (!String.prototype.endsWith) { String.prototype.endsWith = function (str) { return this.indexOf(str, this.length - str.length) !== -1; }; } // Quick UI functions, a bit of a replacement for jQuery -function Q(x) { if (document.getElementById(x) == null) { console.log('Invalid element: ' + x); } return document.getElementById(x); } // "Q" -//function Q(x) { return document.getElementById(x); } // "Q" +//function Q(x) { if (document.getElementById(x) == null) { console.log('Invalid element: ' + x); } return document.getElementById(x); } // "Q" +function Q(x) { return document.getElementById(x); } // "Q" function QS(x) { try { return Q(x).style; } catch (x) { } } // "Q" style function QE(x, y) { try { Q(x).disabled = !y; } catch (x) { } } // "Q" enable function QV(x, y) { try { QS(x).display = (y ? '' : 'none'); } catch (x) { } } // "Q" visible diff --git a/public/translations/player-min_cs.htm b/public/translations/player-min_cs.htm index b50933fd..b271581b 100644 --- a/public/translations/player-min_cs.htm +++ b/public/translations/player-min_cs.htm @@ -1 +1 @@ -
00:00:00
 
\ No newline at end of file +
00:00:00
 
\ No newline at end of file diff --git a/public/translations/player_cs.htm b/public/translations/player_cs.htm index bf7e94e6..7d0f93ff 100644 --- a/public/translations/player_cs.htm +++ b/public/translations/player_cs.htm @@ -51,12 +51,12 @@ @@ -168,7 +168,7 @@ x += addInfo("Uživatel", recFileMetadata.username); x += addInfo("UserID", recFileMetadata.userid); x += addInfo("SessionID", recFileMetadata.sessionid); - if (recFileMetadata.ipaddr1 && recFileMetadata.ipaddr2) { x += addInfo("Addresses", format("{0} to {1}", recFileMetadata.ipaddr1, recFileMetadata.ipaddr2)); } + if (recFileMetadata.ipaddr1 && recFileMetadata.ipaddr2) { x += addInfo("Adresy", format("{0} to {1}", recFileMetadata.ipaddr1, recFileMetadata.ipaddr2)); } if (recFileMetadata.devicename) { x += addInfo("Device Name", recFileMetadata.devicename); } x += addInfo("NodeID", recFileMetadata.nodeid); if (recFileMetadata.protocol) { diff --git a/translate/translate.json b/translate/translate.json index 78661c0f..9908ba72 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -1,6373 +1,10379 @@ { "strings": [ { - "xloc": [ "default.handlebars->17->966", "default.handlebars->17->964" ], - "en": " + CIRA", - "fr": "+ CIRA" + "en": "0", + "xloc": [ + "default.handlebars->container->masthead->5->notificationCount", + "default-mobile.handlebars->9->229" + ] + }, + { + "en": "3", + "xloc": [ + "default-mobile.handlebars->9->266" + ] + }, + { + "en": "404", + "xloc": [ + "error404.handlebars->container->column_l->1->0", + "error404-mobile.handlebars->container->page_content->column_l->1->0" + ] + }, + { + "en": " + CIRA", + "fr": "+ CIRA", + "xloc": [ + "default.handlebars->23->965", + "default.handlebars->23->967" + ] }, { - "xloc": [ "default.handlebars->17->24", "default-mobile.handlebars->9->13" ], "en": " - Reset in {0} day{1}.", "cs": " - Reset v {0} den{1}.", - "fr": "- Réinitialiser dans le {0} jour {1}." + "fr": "- Réinitialiser dans le {0} jour {1}.", + "xloc": [ + "default.handlebars->23->24", + "default-mobile.handlebars->9->13" + ] }, { - "xloc": [ "default-mobile.handlebars->9->12", "default.handlebars->17->23" ], "en": " - Reset in {0} hour{1}.", - "fr": "- Réinitialisation dans {0} heure {1}." + "cs": " - Reset v {0} hodin{1}.", + "fr": "- Réinitialisation dans {0} heure {1}.", + "xloc": [ + "default.handlebars->23->23", + "default-mobile.handlebars->9->12" + ] }, { - "xloc": [ "default.handlebars->17->22", "default-mobile.handlebars->9->11" ], "en": " - Reset in {0} minute{1}.", - "fr": "- Réinitialisation en {0} minute {1}." + "cs": " - Reset v {0} minut{1}.", + "fr": "- Réinitialisation en {0} minute {1}.", + "xloc": [ + "default.handlebars->23->22", + "default-mobile.handlebars->9->11" + ] }, { - "xloc": [ "default.handlebars->17->20", "default-mobile.handlebars->9->9", "default.handlebars->17->21", "default-mobile.handlebars->9->10" ], "en": " - Reset on next login.", - "fr": "- Réinitialiser à la prochaine connexion." + "cs": " - Reset při příštím přihlášení.", + "fr": "- Réinitialiser à la prochaine connexion.", + "xloc": [ + "default.handlebars->23->20", + "default.handlebars->23->21", + "default-mobile.handlebars->9->9", + "default-mobile.handlebars->9->10" + ] }, { - "xloc": [ "default-mobile.handlebars->9->91" ], - "en": " / " + "en": " / ", + "xloc": [ + "default-mobile.handlebars->9->91" + ] }, { - "xloc": [ "default-mobile.handlebars->9->277" ], "en": " Add User", - "fr": "Ajouter un utilisateur" + "cs": " Přidat uživatele", + "fr": "Ajouter un utilisateur", + "xloc": [ + "default-mobile.handlebars->9->277" + ] }, { - "xloc": [ "default.handlebars->17->231" ], "en": " and authenticate to the server using this username and any password.", - "fr": "et vous authentifier sur le serveur en utilisant ce nom d'utilisateur et n'importe quel mot de passe." + "cs": " a autentizovat se na serveru pomocí tohoto uživatelského jména a hesla.", + "fr": "et vous authentifier sur le serveur en utilisant ce nom d'utilisateur et n'importe quel mot de passe.", + "xloc": [ + "default.handlebars->23->231" + ] }, { - "xloc": [ "default.handlebars->17->230" ], "en": " and authenticate to the server using this username and password.", - "fr": "et authentifiez-vous sur le serveur en utilisant ce nom d'utilisateur et mot de passe." + "cs": " a autentizovat se na serveru pomocí tohoto uživatelského jména a hesla.", + "fr": "et authentifiez-vous sur le serveur en utilisant ce nom d'utilisateur et mot de passe.", + "xloc": [ + "default.handlebars->23->230" + ] }, { - "xloc": [ "default-mobile.handlebars->9->124" ], "en": " node", - "cs": " zařízení", - "fr": "nœud" + "cs": " nód", + "fr": "nœud", + "xloc": [ + "default-mobile.handlebars->9->124" + ] }, { - "xloc": [ "default-mobile.handlebars->9->125" ], "en": " nodes", - "fr": "noeuds" + "cs": " nódy", + "fr": "noeuds", + "xloc": [ + "default-mobile.handlebars->9->125" + ] }, { - "xloc": [ "default.handlebars->17->896" ], "en": " Password hint can be used but is not recommanded.", "cs": " Nápověda hesla může být použita, ale není doporučováno.", - "fr": "Un indice de mot de passe peut être utilisé mais n'est pas recommandé." + "fr": "Un indice de mot de passe peut être utilisé mais n'est pas recommandé.", + "xloc": [ + "default.handlebars->23->897" + ] }, { - "xloc": [ "default.handlebars->17->1036" ], "en": " Users need to login to this server once before they can be added to a device group.", - "fr": "Les utilisateurs doivent se connecter une fois sur ce serveur avant de pouvoir être ajoutés à un groupe de périphériques.." + "cs": " Uživatelé se musí před přidáním do skupiny zařízení jednou přihlásit k tomuto serveru.", + "fr": "Les utilisateurs doivent se connecter une fois sur ce serveur avant de pouvoir être ajoutés à un groupe de périphériques..", + "xloc": [ + "default.handlebars->23->1037" + ] }, { - "xloc": [ "default.handlebars->17->128" ], "en": " with TLS.", - "fr": "avec TLS." + "cs": " s TLS.", + "fr": "avec TLS.", + "xloc": [ + "default.handlebars->23->128" + ] }, { - "xloc": [ "default.handlebars->17->129" ], "en": " without TLS.", "cs": " bez TLS.", - "fr": "sans TLS." + "fr": "sans TLS.", + "xloc": [ + "default.handlebars->23->129" + ] }, { - "xloc": [ ], - "en": "(" + "en": "(", + "xloc": [ + "default.handlebars->container->column_l->p2->p2createMeshLink1", + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3createMeshLink1" + ] }, { - "xloc": [ "default.handlebars->17->267" ], "en": "(optional)", - "cs": "(volitelné)" + "cs": "(volitelné)", + "xloc": [ + "default.handlebars->23->267" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p2->p2createMeshLink1", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3createMeshLink1" ], - "en": ")" + "en": ")", + "xloc": [ + "default.handlebars->container->column_l->p2->p2createMeshLink1", + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3createMeshLink1" + ] }, { - "xloc": [ "default.handlebars->17->298" ], - "en": "* For BSD, run \\\"pkg install wget sudo bash\\\" first." + "en": "* For BSD, run \\\"pkg install wget sudo bash\\\" first.", + "cs": "* Pro BSD, spusť \\\"pkg install wget sudo bash\\\" nejprve.", + "xloc": [ + "default.handlebars->23->298" + ] }, { - "xloc": [ "default.handlebars->17->1013" ], - "en": "* Leave blank to assign a random password to each device." + "en": "* Leave blank to assign a random password to each device.", + "cs": "* Ponechat prázdné pro vygenerování náhodného hesla každému zařízení.", + "xloc": [ + "default.handlebars->23->1014" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p0->p0message", "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message" ], - "en": "," + "en": ",", + "xloc": [ + "default.handlebars->container->column_l->p0->p0message", + "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message" + ] }, { - "xloc": [ "default.handlebars->17->1079", "default-mobile.handlebars->9->327" ], - "en": ", " + "en": ", ", + "xloc": [ + "default.handlebars->23->1080", + "default-mobile.handlebars->9->327" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p12->p12warning->3->p12warninga", "default.handlebars->container->column_l->p11->p11warning->3->p11warninga" ], "en": ", click here to enable it.", - "cs": ", zde kliknout pro aktivaci." + "cs": ", zde kliknout pro aktivaci.", + "xloc": [ + "default.handlebars->container->column_l->p11->p11warning->3->p11warninga", + "default.handlebars->container->column_l->p12->p12warning->3->p12warninga" + ] }, { - "xloc": [ "default-mobile.handlebars->9->89", "default.handlebars->17->145" ], - "en": ", Intel® AMT only" + "en": ", Intel® AMT only", + "cs": ", Intel® AMT pouze", + "xloc": [ + "default.handlebars->23->145", + "default-mobile.handlebars->9->89" + ] }, { - "xloc": [ "default.handlebars->17->651" ], - "en": ", MQTT is online" + "en": ", MQTT is online", + "cs": ", MQTT je online", + "xloc": [ + "default.handlebars->23->651" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->5->macostab->3" ], "en": ", right click on it or press \"control\" and click on the file. Then select \"Open\" and follow the instructions.", - "cs": ", poté spusťe instalaci. Postupujte dle instrukcí." + "cs": ", poté spusťe instalaci. Postupujte dle instrukcí.", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->macostab->3" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->5->wintab64->3", "agentinvite.handlebars->container->column_l->5->wintab32->3" ], "en": ", run it and press \"Install\" or \"Connect\".", - "cs": ", spusťte soubor a zvolte \"Install\" nebo \"Connect\"." + "cs": ", spusťte soubor a zvolte \"Install\" nebo \"Connect\".", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->wintab64->3", + "agentinvite.handlebars->container->column_l->5->wintab32->3" + ] }, { - "xloc": [ "default.handlebars->17->569" ], - "en": ", Soft-KVM" + "en": ", Soft-KVM", + "xloc": [ + "default.handlebars->23->569" + ] }, { - "xloc": [ "login.handlebars->container->column_l->welcomeText" ], - "en": ", the real time, open source remote monitoring and management web site. You will need to download and install a management agent on your computers. Once installed, computers will show up in the \"My Devices\" section of this web site and you will be able to monitor them and take control of them.", - "cs": ". Jednoduchá správa přes web. Jediné co potřebujete je agent na daném zařízení. Po instalaci uvidíte zařízení v sekci \"Moje zařízení\" a můžete toto zařízení ovládat.", - "fr": ", le site web open source de surveillance et de gestion d’ordinateur à distance en temps réel. Vous devrez télécharger et installer un agent de gestion sur vos ordinateurs. Une fois installés, les ordinateurs apparaîtront dans la section \"Mes appareils\" de ce site et vous pourrez les surveiller et en prendre le contrôle." + "en": ", WebRTC", + "xloc": [ + "default.handlebars->23->570", + "default.handlebars->23->601", + "default.handlebars->23->613", + "default-mobile.handlebars->9->225", + "default-mobile.handlebars->9->235" + ] }, { - "xloc": [ "default.handlebars->17->613", "default.handlebars->17->601", "default.handlebars->17->570", "default-mobile.handlebars->9->225", "default-mobile.handlebars->9->235" ], - "en": ", WebRTC" + "en": "-", + "xloc": [ + "default-mobile.handlebars->9->228" + ] }, { - "xloc": [ "default-mobile.handlebars->9->228" ], - "en": "-" + "en": ".", + "xloc": [ + "default.handlebars->container->column_l->p0->p0message", + "default.handlebars->container->column_l->p1->NoMeshesPanel->1->1->0->3->getStarted1", + "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message", + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->resetAccountDiv", + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->newAccountDiv", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->resetAccountDiv", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->newAccountDiv", + "terms.handlebars->container->column_l->75->1", + "terms-mobile.handlebars->container->page_content->column_l->75->1" + ] }, { - "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->resetAccountDiv", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->resetAccountDiv" ], - "en": "." + "en": "...", + "xloc": [ + "default.handlebars->23->615", + "default.handlebars->23->1086", + "default.handlebars->23->1244", + "default-mobile.handlebars->9->64", + "default-mobile.handlebars->9->240" + ] }, { - "xloc": [ "default.handlebars->17->1085", "default.handlebars->17->615", "default.handlebars->17->1244", "default-mobile.handlebars->9->64", "default-mobile.handlebars->9->240" ], - "en": "..." + "en": "00:00:00", + "xloc": [ + "player.htm->p11->deskarea0->deskarea4->1->timespan" + ] }, { - "xloc": [ "default.handlebars->container->masthead->5->notificationCount", "default-mobile.handlebars->9->229" ], - "en": "0" - }, - { - "xloc": [ "player.htm->p11->deskarea0->deskarea4->1->timespan" ], - "en": "00:00:00" - }, - { - "xloc": [ "default.handlebars->17->1230" ], "en": "1 active session", "cs": "1 session aktivní", - "fr": "1 session active" + "fr": "1 session active", + "xloc": [ + "default.handlebars->23->1230" + ] }, { - "xloc": [ "default.handlebars->17->1102", "default-mobile.handlebars->9->74", "default-mobile.handlebars->9->331" ], "en": "1 byte", "cs": "1 byte", - "fr": "1 octet" + "fr": "1 octet", + "xloc": [ + "default.handlebars->23->1103", + "default-mobile.handlebars->9->74", + "default-mobile.handlebars->9->331" + ] }, { - "xloc": [ "default.handlebars->17->132", "default.handlebars->17->258", "default.handlebars->17->272" ], "en": "1 day", "cs": "1 den", - "fr": "1 jour" + "fr": "1 jour", + "xloc": [ + "default.handlebars->23->132", + "default.handlebars->23->258", + "default.handlebars->23->272" + ] }, { - "xloc": [ "default.handlebars->17->1216" ], "en": "1 group", - "fr": "1 groupe" + "cs": "1 skupina", + "fr": "1 groupe", + "xloc": [ + "default.handlebars->23->1216" + ] }, { - "xloc": [ "default.handlebars->17->256", "default.handlebars->17->270" ], "en": "1 hour", "cs": "1 hodina", - "fr": "1 heure" + "fr": "1 heure", + "xloc": [ + "default.handlebars->23->256", + "default.handlebars->23->270" + ] }, { - "xloc": [ "default.handlebars->17->134", "default.handlebars->17->274", "default.handlebars->17->260" ], "en": "1 month", "cs": "1 měsíc", - "fr": "1 mois" + "fr": "1 mois", + "xloc": [ + "default.handlebars->23->134", + "default.handlebars->23->260", + "default.handlebars->23->274" + ] }, { - "xloc": [ "default.handlebars->17->1136" ], - "en": "1 more user not shown, use search box to look for users..." + "en": "1 more user not shown, use search box to look for users...", + "cs": "1 další uživatel není zobrazen, pomocí vyhledávacího pole vyhledejte uživatele ...", + "xloc": [ + "default.handlebars->23->1136" + ] }, { - "xloc": [ "default.handlebars->17->311" ], "en": "1 node", - "fr": "1 appareil" + "cs": "1 nód", + "fr": "1 appareil", + "xloc": [ + "default.handlebars->23->311" + ] }, { - "xloc": [ "default.handlebars->17->1140" ], "en": "1 session", - "fr": "1 session" + "cs": "1 session", + "fr": "1 session", + "xloc": [ + "default.handlebars->23->1140" + ] }, { - "xloc": [ "default.handlebars->17->133", "default.handlebars->17->259", "default.handlebars->17->273" ], "en": "1 week", "cs": "1 týden", - "fr": "1 semaine" + "fr": "1 semaine", + "xloc": [ + "default.handlebars->23->133", + "default.handlebars->23->259", + "default.handlebars->23->273" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->9->1->0", "terms.handlebars->container->column_l->9->1->0" ], - "en": "1.AJAX Control Toolkit - New BSD License" + "en": "1.AJAX Control Toolkit - New BSD License", + "cs": "1.AJAX Control Toolkit - Nová BSD Licence", + "xloc": [ + "terms.handlebars->container->column_l->9->1->0", + "terms-mobile.handlebars->container->page_content->column_l->9->1->0" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->15->1", "terms-mobile.handlebars->container->page_content->column_l->15->1", "terms-mobile.handlebars->container->page_content->column_l->31->1", "terms.handlebars->container->column_l->31->1" ], - "en": "1.Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer." + "en": "1.Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.", + "cs": "1.Redistribuce zdrojového kódu si musí zachovat výše uvedené upozornění o autorských právech, tento seznam podmínek a následující vyloučení odpovědnosti.", + "xloc": [ + "terms.handlebars->container->column_l->15->1", + "terms.handlebars->container->column_l->31->1", + "terms-mobile.handlebars->container->page_content->column_l->15->1", + "terms-mobile.handlebars->container->page_content->column_l->31->1" + ] }, { - "xloc": [ "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->3" ], "en": "1/2 Speed", - "fr": "1/2 vitesse" + "cs": "1/2 rychlost", + "fr": "1/2 vitesse", + "xloc": [ + "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->3" + ] }, { - "xloc": [ "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->1" ], "en": "1/4 Speed", - "fr": "1/4 vitesse" + "cs": "1/4 rychlost", + "fr": "1/4 vitesse", + "xloc": [ + "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->1" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->1", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->1" ], - "en": "100%" + "en": "100%", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->1", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSizeDropDown->termSizeList->1" ], - "en": "100x30" + "en": "100x30", + "xloc": [ + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSizeDropDown->termSizeList->1" + ] }, { - "xloc": [ "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->11" ], "en": "10x Speed", - "fr": "10x vitesse" + "cs": "10x rychlost", + "fr": "10x vitesse", + "xloc": [ + "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->11" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->15", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->15" ], - "en": "12.5%" + "en": "12.5%", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->15", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->15" + ] }, { - "xloc": [ "default.handlebars->17->89" ], - "en": "2-step login activation failed." + "en": "2-step login activation failed.", + "cs": "aktivace 2-faktorového přihlašování selhalo.", + "xloc": [ + "default.handlebars->23->89" + ] }, { - "xloc": [ "default.handlebars->17->94" ], - "en": "2-step login activation removal failed." + "en": "2-step login activation removal failed.", + "cs": "odstranění 2-faktorového přihlašování selhalo.", + "xloc": [ + "default.handlebars->23->94" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->23->1->0", "terms-mobile.handlebars->container->page_content->column_l->23->1->0" ], - "en": "2.OpenSSL – OpenSSL and SSLeay License" + "en": "2.OpenSSL – OpenSSL and SSLeay License", + "cs": "2.OpenSSL – OpenSSL a SSLeay licence", + "xloc": [ + "terms.handlebars->container->column_l->23->1->0", + "terms-mobile.handlebars->container->page_content->column_l->23->1->0" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->17->1", "terms-mobile.handlebars->container->page_content->column_l->33->1", "terms.handlebars->container->column_l->33->1", "terms-mobile.handlebars->container->page_content->column_l->17->1" ], - "en": "2.Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution." + "en": "2.Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.", + "cs": "2.Redistribuce v binární podobě musí reprodukovat výše uvedené oznámení o autorských právech, tento seznam podmínek a následující vyloučení odpovědnosti v dokumentaci a / nebo jiných materiálech dodávaných s distribucí.", + "xloc": [ + "terms.handlebars->container->column_l->17->1", + "terms.handlebars->container->column_l->33->1", + "terms-mobile.handlebars->container->page_content->column_l->17->1", + "terms-mobile.handlebars->container->page_content->column_l->33->1" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->13", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->13" ], - "en": "25%" + "en": "25%", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->13", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->13" + ] }, { - "xloc": [ "default.handlebars->17->1225" ], - "en": "2nd factor authentication enabled", - "fr": "Authentification 2e facteur activée" - }, - { - "xloc": [ "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->7" ], "en": "2x Speed", "cs": "2x rychlost", - "fr": "2x vitesse" + "fr": "2x vitesse", + "xloc": [ + "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->7" + ] }, { - "xloc": [ "default-mobile.handlebars->9->266" ], - "en": "3" + "en": "3.All advertising materials mentioning features or use of this software must display the following acknowledgment: \"This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/)\"", + "cs": "Všechny reklamní materiály uvádějící funkce nebo použití tohoto softwaru musí obsahovat následující potvrzení: \"Tento produkt zahrnuje software vyvinutý projektem OpenSSL pro použití v sadě OpenSSL Toolkit. (http://www.openssl.org/)\"", + "xloc": [ + "terms.handlebars->container->column_l->35->1", + "terms-mobile.handlebars->container->page_content->column_l->35->1" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->35->1", "terms-mobile.handlebars->container->page_content->column_l->35->1" ], - "en": "3.All advertising materials mentioning features or use of this software must display the following acknowledgment: \"This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/)\"" + "en": "3.jQuery Foundation - MIT License", + "cs": "3.jQuery Foundation - MIT licence", + "xloc": [ + "terms.handlebars->container->column_l->45->1->0", + "terms-mobile.handlebars->container->page_content->column_l->45->1->0" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->45->1->0", "terms.handlebars->container->column_l->45->1->0" ], - "en": "3.jQuery Foundation - MIT License" + "en": "3.Neither the name of CodePlex Foundation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.", + "cs": "3.Název Nadace CodePlex Foundation ani jména jejích přispěvatelů nesmí být bez předchozího písemného svolení použita k podpoře nebo propagaci produktů odvozených od tohoto softwaru.", + "xloc": [ + "terms.handlebars->container->column_l->19->1", + "terms-mobile.handlebars->container->page_content->column_l->19->1" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->19->1", "terms-mobile.handlebars->container->page_content->column_l->19->1" ], - "en": "3.Neither the name of CodePlex Foundation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission." + "en": "32bit version of the MeshAgent", + "cs": "32bit verze MeshAgent", + "xloc": [ + "default.handlebars->23->290", + "default.handlebars->23->304" + ] }, { - "xloc": [ "default.handlebars->17->304", "default.handlebars->17->290" ], - "en": "32bit version of the MeshAgent" + "en": "37.5%", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->11", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->11" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->11", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->11" ], - "en": "37.5%" + "en": "4.jQuery User Interface - MIT License", + "cs": "4.jQuery User Interface - MIT Licence", + "xloc": [ + "terms.handlebars->container->column_l->51->1->0", + "terms-mobile.handlebars->container->page_content->column_l->51->1->0" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->51->1->0", "terms.handlebars->container->column_l->51->1->0" ], - "en": "4.jQuery User Interface - MIT License" + "en": "4.The names \"OpenSSL Toolkit\" and \"OpenSSL Project\" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact openssl-core@openssl.org.", + "cs": "4.Názvy \"OpenSSL Toolkit\" a \"OpenSSL Project\" nesmí být bez předchozího písemného souhlasu použity k propagaci nebo propagaci produktů odvozených z tohoto softwaru. Pro písemné povolení nás prosím kontaktujte openssl-core@openssl.org.", + "xloc": [ + "terms.handlebars->container->column_l->37->1", + "terms-mobile.handlebars->container->page_content->column_l->37->1" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->37->1", "terms.handlebars->container->column_l->37->1" ], - "en": "4.The names \"OpenSSL Toolkit\" and \"OpenSSL Project\" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact openssl-core@openssl.org." - }, - { - "xloc": [ "error404-mobile.handlebars->container->page_content->column_l->1->0", "error404.handlebars->container->column_l->1->0" ], - "en": "404" - }, - { - "xloc": [ "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->9" ], "en": "4x Speed", - "fr": "4x vitesse" + "cs": "4x rychlost", + "fr": "4x vitesse", + "xloc": [ + "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->9" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->59->1->0", "terms.handlebars->container->column_l->59->1->0" ], - "en": "5.noVNC - Mozilla Public License 2.0" + "en": "5.noVNC - Mozilla Public License 2.0", + "cs": "5.noVNC - Mozilla Public licence 2.0", + "xloc": [ + "terms.handlebars->container->column_l->59->1->0", + "terms-mobile.handlebars->container->page_content->column_l->59->1->0" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->39->1", "terms.handlebars->container->column_l->39->1" ], - "en": "5.Products derived from this software may not be called \"OpenSSL\" nor may \"OpenSSL\" appear in their names without prior written permission of the OpenSSL Project." + "en": "5.Products derived from this software may not be called \"OpenSSL\" nor may \"OpenSSL\" appear in their names without prior written permission of the OpenSSL Project.", + "cs": "5.Produkty odvozené od tohoto softwaru nesmí být nazývány \"OpenSSL\" ani se nesmí \"OpenSSL\" objevit v jejich jménech bez předchozího písemného souhlasu projektu OpenSSL.", + "xloc": [ + "terms.handlebars->container->column_l->39->1", + "terms-mobile.handlebars->container->page_content->column_l->39->1" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->9", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->9" ], - "en": "50%" + "en": "50%", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->9", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->9" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->65->1->0", "terms-mobile.handlebars->container->page_content->column_l->65->1->0" ], - "en": "6.Rcarousel - MIT LIcense" + "en": "6.Redistributions of any form whatsoever must retain the following acknowledgment: \"This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/)\".", + "cs": "6.Redistribuce jakékoli formy si musí zachovat následující potvrzení: \"Tento produkt zahrnuje software vyvinutý v rámci projektu OpenSSL pro použití v sadě OpenSSL Toolkit (http://www.openssl.org/)\".", + "xloc": [ + "terms.handlebars->container->column_l->41->1", + "terms-mobile.handlebars->container->page_content->column_l->41->1" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->41->1", "terms-mobile.handlebars->container->page_content->column_l->41->1" ], - "en": "6.Redistributions of any form whatsoever must retain the following acknowledgment: \"This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/)\"." + "en": "62.5%", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->7", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->7" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->7", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->7" ], - "en": "62.5%" + "en": "64bit version of the MeshAgent", + "cs": "64bit verze MeshAgent", + "xloc": [ + "default.handlebars->23->293", + "default.handlebars->23->307" + ] }, { - "xloc": [ "default.handlebars->17->307", "default.handlebars->17->293" ], - "en": "64bit version of the MeshAgent" - }, - { - "xloc": [ "default.handlebars->17->523" ], "en": "7 Day Power State", - "cs": "7 denní statistika provozu" + "cs": "7 denní statistika provozu", + "xloc": [ + "default.handlebars->23->523" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->73->1->0", "terms.handlebars->container->column_l->73->1->0" ], - "en": "7.Webtoolkit Javascript Base 64 – Creative Commons Attribution 2.0 UK License" + "en": "7.Webtoolkit Javascript Base 64 – Creative Commons Attribution 2.0 UK License", + "cs": "7.Webtoolkit Javascript Base 64 – Creative Commons Attribution 2.0 UK licence", + "xloc": [ + "terms.handlebars->container->column_l->73->1->0", + "terms-mobile.handlebars->container->page_content->column_l->73->1->0" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->5", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->5" ], - "en": "75%" + "en": "75%", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->5", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->5" + ] }, { - "xloc": [ "default.handlebars->17->271", "default.handlebars->17->257" ], "en": "8 hours", "cs": "8 hodin", - "fr": "8 heures" + "fr": "8 heures", + "xloc": [ + "default.handlebars->23->257", + "default.handlebars->23->271" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSizeDropDown->termSizeList->0" ], - "en": "80x25" + "en": "80x25", + "xloc": [ + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSizeDropDown->termSizeList->0" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->3", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->3" ], - "en": "87.5%" + "en": "87.5%", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->3", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->3" + ] }, { - "xloc": [ "agentinvite.handlebars->3->1" ], - "en": ":" + "en": ":", + "xloc": [ + "agentinvite.handlebars->3->1" + ] }, { - "xloc": [ "default.handlebars->17->103" ], - "en": "Hardware keys are used as secondary login authentication." + "en": "Hardware keys are used as secondary login authentication.", + "cs": "Hardwarové klíče jsou použity jako druhá možnost autentizace.", + "xloc": [ + "default.handlebars->23->103" + ] }, { - "xloc": [ "default-mobile.handlebars->9->19" ], - "en": "2-step login activation removed. You can reactivate this feature at any time." + "en": "2-step login activation removed. You can reactivate this feature at any time.", + "cs": "2-faktorové přihlášení odstraněno. Lze znovu kdykoliv zapnout.", + "xloc": [ + "default-mobile.handlebars->9->19" + ] }, { - "xloc": [ "default-mobile.handlebars->9->16" ], - "en": "2-step login activation successful. You will now need a valid token to login again." + "en": "2-step login activation successful. You will now need a valid token to login again.", + "cs": "2-faktorová autentizace zapnuta. Je třeba platný token k přihlášení.", + "xloc": [ + "default-mobile.handlebars->9->16" + ] }, { - "xloc": [ "default-mobile.handlebars->9->17" ], - "en": "2-step login activation failed. Clear the secret from the application and try again. You only have a few minutes to enter the proper code." + "en": "2-step login activation failed. Clear the secret from the application and try again. You only have a few minutes to enter the proper code.", + "cs": "2-faktorové přihlášení selhalo. Je třeba smazat tajemství z aplikace a zkusit znovu. Na toto máte již jen pár minut.", + "xloc": [ + "default-mobile.handlebars->9->17" + ] }, { - "xloc": [ "default-mobile.handlebars->9->20" ], - "en": "2-step login activation removal failed. Try again." + "en": "2-step login activation removal failed. Try again.", + "cs": "Odstranění 2-faktorového přihlášení selhalo. Zkuste znovu.", + "xloc": [ + "default-mobile.handlebars->9->20" + ] }, { - "xloc": [ "default-mobile.handlebars->9->236", "default-mobile.handlebars->9->237", "default-mobile.handlebars->9->238" ], - "en": "\\\\" + "en": "\\\\", + "xloc": [ + "default-mobile.handlebars->9->236", + "default-mobile.handlebars->9->237", + "default-mobile.handlebars->9->238" + ] }, { - "xloc": [ "default.handlebars->17->652" ], "en": "Access Denied", - "fr": "Accès refusé" + "cs": "Přístup zamítnut", + "fr": "Accès refusé", + "xloc": [ + "default.handlebars->23->652" + ] }, { - "xloc": [ "login.handlebars->5->13", "login-mobile.handlebars->5->13" ], - "en": "Access denied." + "en": "Access denied.", + "cs": "Přístup zamítnut", + "xloc": [ + "login.handlebars->5->13", + "login-mobile.handlebars->5->13" + ] }, { - "xloc": [ "default.handlebars->17->1197" ], - "en": "Access to server files" + "en": "Access to server files", + "cs": "Přístup k souborům na serveru", + "xloc": [ + "default.handlebars->23->1197" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p2->p2AccountActions->1->0" ], - "en": "Account actions" + "en": "Account actions", + "cs": "Akce účtu", + "xloc": [ + "default.handlebars->container->column_l->p2->p2AccountActions->1->0" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->5->0" ], - "en": "Account Actions" + "en": "Account Actions", + "cs": "Akce účtu", + "xloc": [ + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->5->0" + ] }, { - "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->5->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->5->1" ], - "en": "Account Creation" + "en": "Account Creation", + "cs": "Vytvoření účtu", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->5->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->5->1" + ] }, { - "xloc": [ "login-mobile.handlebars->5->3", "login.handlebars->5->3" ], - "en": "Account limit reached." + "en": "Account limit reached.", + "cs": "Maximální počet účtů dosažen.", + "xloc": [ + "login.handlebars->5->3", + "login-mobile.handlebars->5->3" + ] }, { - "xloc": [ "login.handlebars->5->12", "login-mobile.handlebars->5->12" ], - "en": "Account locked." + "en": "Account locked.", + "cs": "Účet uzamknut.", + "xloc": [ + "login.handlebars->5->12", + "login-mobile.handlebars->5->12" + ] }, { - "xloc": [ "login-mobile.handlebars->5->9", "login.handlebars->5->9" ], - "en": "Account not found." + "en": "Account not found.", + "cs": "Účet nenalezen.", + "xloc": [ + "login.handlebars->5->9", + "login-mobile.handlebars->5->9" + ] }, { - "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->5->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->5->1" ], "en": "Account Reset", - "cs": "Reset hesla" + "cs": "Reset hesla", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->5->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->5->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p2->p2AccountSecurity->1->0" ], "en": "Account security", - "cs": "Nastavení bezpečnosti" + "cs": "Nastavení bezpečnosti", + "xloc": [ + "default.handlebars->container->column_l->p2->p2AccountSecurity->1->0" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0", "default.handlebars->17->907", "default.handlebars->17->905", "default-mobile.handlebars->9->126", "default.handlebars->17->383", "default.handlebars->17->385", "default-mobile.handlebars->9->49", "default-mobile.handlebars->9->128", "default-mobile.handlebars->9->51" ], - "en": "Account Security" + "en": "Account Security", + "cs": "Nastavení bezpečnosti", + "xloc": [ + "default.handlebars->23->383", + "default.handlebars->23->385", + "default.handlebars->23->906", + "default.handlebars->23->908", + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0", + "default-mobile.handlebars->9->49", + "default-mobile.handlebars->9->51", + "default-mobile.handlebars->9->126", + "default-mobile.handlebars->9->128" + ] }, { - "xloc": [ "default-mobile.handlebars->9->179", "default.handlebars->17->441" ], - "en": "ACM" + "en": "ACM", + "xloc": [ + "default.handlebars->23->441", + "default-mobile.handlebars->9->179" + ] }, { - "xloc": [ "default.handlebars->17->657", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ], - "en": "Action" + "en": "Action", + "cs": "Akce", + "xloc": [ + "default.handlebars->container->column_l->p42->p42tbl->1->0->8", + "default.handlebars->23->657" + ] }, { - "xloc": [ "default.handlebars->17->473", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1" ], "en": "Actions", - "cs": "Akce" + "cs": "Akce", + "xloc": [ + "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", + "default.handlebars->23->473", + "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" + ] }, { - "xloc": [ ], "en": "Activate camera & microphone", - "fr": "Activer caméra et microphone" + "cs": "Aktivovat kameru & mikrofon", + "fr": "Activer caméra et microphone", + "xloc": [ + "messenger.handlebars->xtop->1" + ] }, { - "xloc": [ ], "en": "Activate microphone", - "fr": "Activer le microphone" + "cs": "Aktivovat mikrofon", + "fr": "Activer le microphone", + "xloc": [ + "messenger.handlebars->xtop->1" + ] }, { - "xloc": [ "default.handlebars->17->436", "default.handlebars->17->434", "default-mobile.handlebars->9->174", "default-mobile.handlebars->9->176" ], "en": "Activated", - "fr": "Activé" + "cs": "Aktivováno", + "fr": "Activé", + "xloc": [ + "default.handlebars->23->434", + "default.handlebars->23->436", + "default-mobile.handlebars->9->174", + "default-mobile.handlebars->9->176" + ] }, { - "xloc": [ "default.handlebars->17->978", "default.handlebars->17->976", "default.handlebars->17->196", "default.handlebars->17->194" ], "en": "Activation", - "cs": "Aktivace" + "cs": "Aktivace", + "xloc": [ + "default.handlebars->23->194", + "default.handlebars->23->196", + "default.handlebars->23->977", + "default.handlebars->23->979" + ] }, { - "xloc": [ "default.handlebars->17->460" ], - "en": "Active User{0}" + "en": "Active User{0}", + "cs": "Aktivní uživatel{0}", + "xloc": [ + "default.handlebars->23->460" + ] }, { - "xloc": [ "default.handlebars->17->979", "default.handlebars->17->197" ], - "en": "Add a new computer to this mesh by installing the mesh agent." + "en": "Add a new computer to this mesh by installing the mesh agent.", + "cs": "Přidat nový počítač pomocí agenta.", + "xloc": [ + "default.handlebars->23->197", + "default.handlebars->23->980" + ] }, { - "xloc": [ "default.handlebars->17->191" ], - "en": "Add a new Intel® AMT computer by scanning the local network." + "en": "Add a new Intel® AMT computer by scanning the local network.", + "cs": "Přidat nový Intel® AMT počítač pomocí skenu lokální sítě.", + "xloc": [ + "default.handlebars->23->191" + ] }, { - "xloc": [ "default.handlebars->17->187", "default.handlebars->17->971" ], - "en": "Add a new Intel® AMT computer that is located on the internet." + "en": "Add a new Intel® AMT computer that is located on the internet.", + "cs": "Přidat nový Intel® AMT počítač, který je umístěn v síti Internet.", + "xloc": [ + "default.handlebars->23->187", + "default.handlebars->23->972" + ] }, { - "xloc": [ "default.handlebars->17->189", "default.handlebars->17->973" ], - "en": "Add a new Intel® AMT computer that is located on the local network." + "en": "Add a new Intel® AMT computer that is located on the local network.", + "cs": "Přidat nový Intel® AMT počítač, který je umístěn v lokální síti.", + "xloc": [ + "default.handlebars->23->189", + "default.handlebars->23->974" + ] }, { - "xloc": [ "default.handlebars->17->201" ], - "en": "Add a new Intel® AMT device to device group \\\"{0}\\\"." + "en": "Add a new Intel® AMT device to device group \\\"{0}\\\".", + "cs": "Přidat nové Intel® AMT zařízení do skupiny \\\"{0}\\\".", + "xloc": [ + "default.handlebars->23->201" + ] }, { - "xloc": [ "default.handlebars->17->198" ], "en": "Add Agent", "cs": "Přidat agenta", - "fr": "Ajouter un agent" + "fr": "Ajouter un agent", + "xloc": [ + "default.handlebars->23->198" + ] }, { - "xloc": [ "default.handlebars->17->188" ], "en": "Add CIRA", "cs": "Přidat CIRA", - "fr": "Ajouter CIRA" + "fr": "Ajouter CIRA", + "xloc": [ + "default.handlebars->23->188" + ] }, { - "xloc": [ "default.handlebars->17->506" ], "en": "Add Device Event", - "fr": "Ajouter un événement" + "cs": "Přidat událost zařízení", + "fr": "Ajouter un événement", + "xloc": [ + "default.handlebars->23->506" + ] }, { - "xloc": [ "default.handlebars->17->169" ], "en": "Add Device Group", "cs": "Přidat skupinu zařízení", - "fr": "Ajouter un groupe" + "fr": "Ajouter un groupe", + "xloc": [ + "default.handlebars->23->169" + ] }, { - "xloc": [ "default.handlebars->17->243" ], - "en": "Add Intel® AMT CIRA device" + "en": "Add Intel® AMT CIRA device", + "cs": "Přidat Intel® AMT CIRA zařízení", + "xloc": [ + "default.handlebars->23->243" + ] }, { - "xloc": [ "default.handlebars->17->211" ], - "en": "Add Intel® AMT device" + "en": "Add Intel® AMT device", + "cs": "Přidat Intel® AMT zařízení", + "xloc": [ + "default.handlebars->23->211" + ] }, { - "xloc": [ "default.handlebars->17->107" ], - "en": "Add Key" + "en": "Add Key", + "cs": "Přidat klíč", + "xloc": [ + "default.handlebars->23->107" + ] }, { - "xloc": [ "default.handlebars->17->190" ], - "en": "Add Local" + "en": "Add Local", + "cs": "Přidat lokálně", + "xloc": [ + "default.handlebars->23->190" + ] }, { - "xloc": [ "default.handlebars->17->310" ], "en": "Add Mesh Agent", - "cs": "Přidat agenta" + "cs": "Přidat agenta", + "xloc": [ + "default.handlebars->23->310" + ] }, { - "xloc": [ "default.handlebars->17->167", "default.handlebars->17->165" ], "en": "add one", "cs": "přidat", - "fr": "ajoute un" + "fr": "ajoute un", + "xloc": [ + "default.handlebars->23->165", + "default.handlebars->23->167" + ] }, { - "xloc": [ "default.handlebars->17->112", "default.handlebars->17->110", "default.handlebars->17->116", "default.handlebars->17->115", "default.handlebars->17->676", "default.handlebars->17->677" ], "en": "Add Security Key", - "fr": "Ajouter une clé de sécurité" + "cs": "Přidat bezpečnostní klíč", + "fr": "Ajouter une clé de sécurité", + "xloc": [ + "default.handlebars->23->110", + "default.handlebars->23->112", + "default.handlebars->23->115", + "default.handlebars->23->116", + "default.handlebars->23->676", + "default.handlebars->23->677" + ] }, { - "xloc": [ "default-mobile.handlebars->9->306" ], "en": "Add User to Mesh", - "fr": "Ajouter un utilisateur au groupe" + "cs": "Přidat uživatele do skupiny", + "fr": "Ajouter un utilisateur au groupe", + "xloc": [ + "default-mobile.handlebars->9->306" + ] }, { - "xloc": [ "default.handlebars->17->970" ], "en": "Add Users", - "fr": "Ajouter des utilisateurs" + "cs": "Přidat uživatele", + "fr": "Ajouter des utilisateurs", + "xloc": [ + "default.handlebars->23->971" + ] }, { - "xloc": [ "default.handlebars->17->1056" ], - "en": "Add Users to Device Group" + "en": "Add Users to Device Group", + "cs": "Přidat uživatele do skupiny zařizení", + "xloc": [ + "default.handlebars->23->1057" + ] }, { - "xloc": [ "default.handlebars->17->108" ], - "en": "Add YubiKey® OTP" + "en": "Add YubiKey® OTP", + "cs": "Přidat YubiKey® OTP", + "xloc": [ + "default.handlebars->23->108" + ] }, { - "xloc": [ "default.handlebars->17->143", "default.handlebars->17->160" ], "en": "Address", - "cs": "Adresa" + "cs": "Adresa", + "xloc": [ + "default.handlebars->23->143", + "default.handlebars->23->160" + ] }, { - "xloc": [ "player.htm->3->7" ], - "en": "Addresses" + "en": "Addresses", + "cs": "Adresy", + "xloc": [ + "player.htm->3->7" + ] }, { - "xloc": [ "default.handlebars->17->206" ], - "en": "admin" + "en": "admin", + "xloc": [ + "default.handlebars->23->206" + ] }, { - "xloc": [ "default.handlebars->17->1220" ], - "en": "Admin Realms" + "en": "Admin Realms", + "cs": "Administrátorské realmy", + "xloc": [ + "default.handlebars->23->1220" + ] }, { - "xloc": [ "default.handlebars->17->1184" ], - "en": "Administrative Realms" + "en": "Administrative Realms", + "cs": "Administrátorské realmy", + "xloc": [ + "default.handlebars->23->1184" + ] }, { - "xloc": [ "default.handlebars->17->1147" ], - "en": "Administrator" + "en": "Administrator", + "xloc": [ + "default.handlebars->23->1147" + ] }, { - "xloc": [ "default.handlebars->17->679" ], - "en": "Afrikaans" + "en": "Afrikaans", + "xloc": [ + "default.handlebars->23->679" + ] }, { - "xloc": [ "default.handlebars->17->335", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1", "default-mobile.handlebars->9->171", "default.handlebars->17->149", "default-mobile.handlebars->9->118", "default-mobile.handlebars->9->187" ], "en": "Agent", "cs": "Agent", - "fr": "Agent" + "fr": "Agent", + "xloc": [ + "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1", + "default.handlebars->23->149", + "default.handlebars->23->335", + "default-mobile.handlebars->9->118", + "default-mobile.handlebars->9->171", + "default-mobile.handlebars->9->187" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p15->consoleTable->1->0->1->1" ], - "en": "Agent Action" + "en": "Agent Action", + "cs": "Akce agenta", + "xloc": [ + "default.handlebars->container->column_l->p15->consoleTable->1->0->1->1" + ] }, { - "xloc": [ "default.handlebars->17->118", "default.handlebars->17->498", "default.handlebars->17->497" ], "en": "Agent connected", - "cs": "Agent připojen" + "cs": "Agent připojen", + "xloc": [ + "default.handlebars->23->118", + "default.handlebars->23->497", + "default.handlebars->23->498" + ] }, { - "xloc": [ "default.handlebars->17->1063", "default-mobile.handlebars->9->312" ], - "en": "Agent Console" + "en": "Agent Console", + "cs": "Konzole agenta", + "xloc": [ + "default.handlebars->23->1064", + "default-mobile.handlebars->9->312" + ] }, { - "xloc": [ "default.handlebars->17->122" ], - "en": "Agent disconnected" + "en": "Agent disconnected", + "cs": "Agent odpojen", + "xloc": [ + "default.handlebars->23->122" + ] }, { - "xloc": [ "default.handlebars->17->650" ], - "en": "Agent is offline" + "en": "Agent is offline", + "cs": "Agent je offline", + "xloc": [ + "default.handlebars->23->650" + ] }, { - "xloc": [ "default.handlebars->17->649" ], "en": "Agent is online", - "cs": "Agent je online" + "cs": "Agent je online", + "xloc": [ + "default.handlebars->23->649" + ] }, { - "xloc": [ "default-mobile.handlebars->9->190" ], - "en": "Agent Relay" + "en": "Agent Relay", + "xloc": [ + "default-mobile.handlebars->9->190" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->1", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->1" ], - "en": "Agent Remote Desktop" + "en": "Agent Remote Desktop", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->1", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->1" + ] }, { - "xloc": [ "default.handlebars->17->453", "default-mobile.handlebars->9->186" ], - "en": "Agent Tag" + "en": "Agent Tag", + "xloc": [ + "default.handlebars->23->453", + "default-mobile.handlebars->9->186" + ] }, { - "xloc": [ "default.handlebars->17->1258" ], "en": "Agents", - "cs": "Agenti" + "cs": "Agenti", + "xloc": [ + "default.handlebars->23->1258" + ] }, { - "xloc": [ "default.handlebars->17->680" ], - "en": "Albanian" + "en": "Albanian", + "xloc": [ + "default.handlebars->23->680" + ] }, { - "xloc": [ "default-mobile.handlebars->9->243", "default-mobile.handlebars->9->241", "default-mobile.handlebars->9->73" ], "en": "All", "cs": "Vše", - "fr": "Tout" + "fr": "Tout", + "xloc": [ + "default-mobile.handlebars->9->73", + "default-mobile.handlebars->9->241", + "default-mobile.handlebars->9->243" + ] }, { - "xloc": [ "default-mobile.handlebars->9->230" ], - "en": "All Displays" + "en": "All Displays", + "cs": "Všechny displeje", + "xloc": [ + "default-mobile.handlebars->9->230" + ] }, { - "xloc": [ "default.handlebars->17->574", "default.handlebars->17->573", "default.handlebars->17->571" ], - "en": "All Focus" + "en": "All Focus", + "xloc": [ + "default.handlebars->23->571", + "default.handlebars->23->573", + "default.handlebars->23->574" + ] }, { - "xloc": [ "default.handlebars->17->1035" ], "en": "Allow users to manage this device group and devices in this group.", - "fr": "Autoriser les utilisateurs à gérer ce groupe et les périphériques de ce groupe." + "fr": "Autoriser les utilisateurs à gérer ce groupe et les périphériques de ce groupe.", + "xloc": [ + "default.handlebars->23->1036" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->19", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->17" ], - "en": "Alt-F4" + "en": "Alt-F4", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->17", + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->19" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->21", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->23" ], - "en": "Alt-Tab" + "en": "Alt-Tab", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->21", + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->23" + ] }, { - "xloc": [ "default.handlebars->17->606" ], - "en": "Alternate (F10 = ESC+0)" + "en": "Alternate (F10 = ESC+0)", + "xloc": [ + "default.handlebars->23->606" + ] }, { - "xloc": [ "default.handlebars->17->953" ], "en": "Always Notify", - "fr": "Toujours aviser" + "fr": "Toujours aviser", + "xloc": [ + "default.handlebars->23->954" + ] }, { - "xloc": [ "default.handlebars->17->954" ], - "en": "Always Prompt" + "en": "Always Prompt", + "xloc": [ + "default.handlebars->23->955" + ] }, { - "xloc": [ "default.handlebars->17->339", "default.handlebars->17->153" ], - "en": "AMT" + "en": "AMT", + "xloc": [ + "default.handlebars->23->153", + "default.handlebars->23->339" + ] }, { - "xloc": [ ], - "en": "and its source can be downloaded from" + "en": "and its source can be downloaded from", + "xloc": [ + "terms.handlebars->container->column_l->75->1", + "terms-mobile.handlebars->container->page_content->column_l->75->1" + ] }, { - "xloc": [ "default.handlebars->17->414", "default-mobile.handlebars->9->154" ], - "en": "Android APK" + "en": "Android APK", + "xloc": [ + "default.handlebars->23->414", + "default-mobile.handlebars->9->154" + ] }, { - "xloc": [ "default-mobile.handlebars->9->149", "default.handlebars->17->409" ], - "en": "Android ARM" + "en": "Android ARM", + "xloc": [ + "default.handlebars->23->409", + "default-mobile.handlebars->9->149" + ] }, { - "xloc": [ "default.handlebars->17->412", "default-mobile.handlebars->9->152" ], - "en": "Android x86" + "en": "Android x86", + "xloc": [ + "default.handlebars->23->412", + "default-mobile.handlebars->9->152" + ] }, { - "xloc": [ "default.handlebars->17->459" ], "en": "Antivirus", - "fr": "Antivirus" + "fr": "Antivirus", + "xloc": [ + "default.handlebars->23->459" + ] }, { - "xloc": [ "default.handlebars->17->251" ], - "en": "Any supported" + "en": "Any supported", + "xloc": [ + "default.handlebars->23->251" + ] }, { - "xloc": [ "default.handlebars->17->281" ], - "en": "Apple MacOS" + "en": "Apple MacOS", + "xloc": [ + "default.handlebars->23->281" + ] }, { - "xloc": [ "default.handlebars->17->253" ], - "en": "Apple MacOS only" + "en": "Apple MacOS only", + "xloc": [ + "default.handlebars->23->253" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->5->macostab->1" ], - "en": "Apple™ MacOS" + "en": "Apple™ MacOS", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->macostab->1" + ] }, { - "xloc": [ "default.handlebars->17->682" ], - "en": "Arabic (Algeria)" + "en": "Arabic (Algeria)", + "xloc": [ + "default.handlebars->23->682" + ] }, { - "xloc": [ "default.handlebars->17->683" ], - "en": "Arabic (Bahrain)" + "en": "Arabic (Bahrain)", + "xloc": [ + "default.handlebars->23->683" + ] }, { - "xloc": [ "default.handlebars->17->684" ], - "en": "Arabic (Egypt)" + "en": "Arabic (Egypt)", + "xloc": [ + "default.handlebars->23->684" + ] }, { - "xloc": [ "default.handlebars->17->685" ], - "en": "Arabic (Iraq)" + "en": "Arabic (Iraq)", + "xloc": [ + "default.handlebars->23->685" + ] }, { - "xloc": [ "default.handlebars->17->686" ], - "en": "Arabic (Jordan)" + "en": "Arabic (Jordan)", + "xloc": [ + "default.handlebars->23->686" + ] }, { - "xloc": [ "default.handlebars->17->687" ], - "en": "Arabic (Kuwait)" + "en": "Arabic (Kuwait)", + "xloc": [ + "default.handlebars->23->687" + ] }, { - "xloc": [ "default.handlebars->17->688" ], - "en": "Arabic (Lebanon)" + "en": "Arabic (Lebanon)", + "xloc": [ + "default.handlebars->23->688" + ] }, { - "xloc": [ "default.handlebars->17->689" ], - "en": "Arabic (Libya)" + "en": "Arabic (Libya)", + "xloc": [ + "default.handlebars->23->689" + ] }, { - "xloc": [ "default.handlebars->17->690" ], - "en": "Arabic (Morocco)" + "en": "Arabic (Morocco)", + "xloc": [ + "default.handlebars->23->690" + ] }, { - "xloc": [ "default.handlebars->17->691" ], - "en": "Arabic (Oman)" + "en": "Arabic (Oman)", + "xloc": [ + "default.handlebars->23->691" + ] }, { - "xloc": [ "default.handlebars->17->692" ], - "en": "Arabic (Qatar)" + "en": "Arabic (Qatar)", + "xloc": [ + "default.handlebars->23->692" + ] }, { - "xloc": [ "default.handlebars->17->693" ], - "en": "Arabic (Saudi Arabia)" + "en": "Arabic (Saudi Arabia)", + "xloc": [ + "default.handlebars->23->693" + ] }, { - "xloc": [ "default.handlebars->17->681" ], - "en": "Arabic (Standard)" + "en": "Arabic (Standard)", + "xloc": [ + "default.handlebars->23->681" + ] }, { - "xloc": [ "default.handlebars->17->694" ], - "en": "Arabic (Syria)" + "en": "Arabic (Syria)", + "xloc": [ + "default.handlebars->23->694" + ] }, { - "xloc": [ "default.handlebars->17->695" ], - "en": "Arabic (Tunisia)" + "en": "Arabic (Tunisia)", + "xloc": [ + "default.handlebars->23->695" + ] }, { - "xloc": [ "default.handlebars->17->696" ], - "en": "Arabic (U.A.E.)" + "en": "Arabic (U.A.E.)", + "xloc": [ + "default.handlebars->23->696" + ] }, { - "xloc": [ "default.handlebars->17->697" ], - "en": "Arabic (Yemen)" + "en": "Arabic (Yemen)", + "xloc": [ + "default.handlebars->23->697" + ] }, { - "xloc": [ "default.handlebars->17->698" ], - "en": "Aragonese" + "en": "Aragonese", + "xloc": [ + "default.handlebars->23->698" + ] }, { - "xloc": [ "default.handlebars->17->46" ], "en": "Architecture", "cs": "Architektura", - "fr": "Architecture" + "fr": "Architecture", + "xloc": [ + "default.handlebars->23->46" + ] }, { - "xloc": [ "default.handlebars->17->182" ], - "en": "Are you sure you want to connect to {0} devices?" + "en": "Are you sure you want to connect to {0} devices?", + "xloc": [ + "default.handlebars->23->182" + ] }, { - "xloc": [ "default.handlebars->17->1017", "default-mobile.handlebars->9->283" ], "en": "Are you sure you want to delete group {0}? Deleting the device group will also delete all information about devices within this group.", - "fr": "Êtes-vous sûr de vouloir supprimer le groupe {0}? La suppression du groupe de périphériques supprimera également toutes les informations relatives aux périphériques de ce groupe." + "fr": "Êtes-vous sûr de vouloir supprimer le groupe {0}? La suppression du groupe de périphériques supprimera également toutes les informations relatives aux périphériques de ce groupe.", + "xloc": [ + "default.handlebars->23->1018", + "default-mobile.handlebars->9->283" + ] }, { - "xloc": [ "default.handlebars->17->545" ], "en": "Are you sure you want to delete node {0}?", - "fr": "Êtes-vous sûr de vouloir supprimer le noeud {0}?" + "fr": "Êtes-vous sûr de vouloir supprimer le noeud {0}?", + "xloc": [ + "default.handlebars->23->545" + ] }, { - "xloc": [ "default.handlebars->17->534" ], - "en": "Are you sure you want to uninstall selected agent?" + "en": "Are you sure you want to uninstall selected agent?", + "xloc": [ + "default.handlebars->23->534" + ] }, { - "xloc": [ "default.handlebars->17->533" ], - "en": "Are you sure you want to uninstall the selected {0} agents?" + "en": "Are you sure you want to uninstall the selected {0} agents?", + "xloc": [ + "default.handlebars->23->533" + ] }, { - "xloc": [ "default.handlebars->17->1288" ], - "en": "Are you sure you want to {0} the plugin: {1}" + "en": "Are you sure you want to {0} the plugin: {1}", + "xloc": [ + "default.handlebars->23->1289" + ] }, { - "xloc": [ "default-mobile.handlebars->9->164", "default.handlebars->17->424" ], - "en": "ARM-Linaro" + "en": "ARM-Linaro", + "xloc": [ + "default.handlebars->23->424", + "default-mobile.handlebars->9->164" + ] }, { - "xloc": [ "default.handlebars->17->699" ], - "en": "Armenian" + "en": "Armenian", + "xloc": [ + "default.handlebars->23->699" + ] }, { - "xloc": [ "default.handlebars->17->425", "default-mobile.handlebars->9->165" ], - "en": "ARMv6l / ARMv7l" + "en": "ARMv6l / ARMv7l", + "xloc": [ + "default.handlebars->23->425", + "default-mobile.handlebars->9->165" + ] }, { - "xloc": [ "default.handlebars->17->427", "default-mobile.handlebars->9->167" ], - "en": "ARMv6l / ARMv7l / NoKVM" + "en": "ARMv6l / ARMv7l / NoKVM", + "xloc": [ + "default.handlebars->23->427", + "default-mobile.handlebars->9->167" + ] }, { - "xloc": [ "default-mobile.handlebars->9->166", "default.handlebars->17->426" ], - "en": "ARMv8 64bit" + "en": "ARMv8 64bit", + "xloc": [ + "default.handlebars->23->426", + "default-mobile.handlebars->9->166" + ] }, { - "xloc": [ "default.handlebars->17->700" ], - "en": "Assamese" + "en": "Assamese", + "xloc": [ + "default.handlebars->23->700" + ] }, { - "xloc": [ "default.handlebars->17->701" ], - "en": "Asturian" + "en": "Asturian", + "xloc": [ + "default.handlebars->23->701" + ] }, { - "xloc": [ "default.handlebars->17->1221" ], - "en": "Authentication App" + "en": "Authentication App", + "xloc": [ + "default.handlebars->23->1221" + ] }, { - "xloc": [ "default.handlebars->17->86", "default-mobile.handlebars->9->29", "default.handlebars->17->91", "default-mobile.handlebars->9->15", "default-mobile.handlebars->9->27", "default.handlebars->17->665", "default.handlebars->17->667", "default-mobile.handlebars->9->18" ], - "en": "Authenticator App" + "en": "Authenticator App", + "xloc": [ + "default.handlebars->23->86", + "default.handlebars->23->91", + "default.handlebars->23->665", + "default.handlebars->23->667", + "default-mobile.handlebars->9->15", + "default-mobile.handlebars->9->18", + "default-mobile.handlebars->9->27", + "default-mobile.handlebars->9->29" + ] }, { - "xloc": [ "default.handlebars->17->87" ], - "en": "Authenticator app activation successful." + "en": "Authenticator app activation successful.", + "xloc": [ + "default.handlebars->23->87" + ] }, { - "xloc": [ "default.handlebars->17->92" ], - "en": "Authenticator application removed." + "en": "Authenticator application removed.", + "xloc": [ + "default.handlebars->23->92" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSizeDropDown->termSizeList->2" ], "en": "Auto", - "fr": "Automatique" + "fr": "Automatique", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar->5", + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSizeDropDown->termSizeList->2" + ] }, { - "xloc": [ "default.handlebars->17->941" ], - "en": "Auto-Remove" + "en": "Auto-Remove", + "xloc": [ + "default.handlebars->23->942" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3" ], - "en": "AutoConnect" + "en": "AutoConnect", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3", + "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3", + "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar->5" ], "en": "Automatic connect", - "fr": "Connexion automatique" + "fr": "Connexion automatique", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar->5" + ] }, { - "xloc": [ "default.handlebars->17->702" ], - "en": "Azerbaijani" + "en": "Azerbaijani", + "xloc": [ + "default.handlebars->23->702" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p30->1->1->0->1->p30title->1", "default.handlebars->container->column_l->p15->p15title->p15BackButton", "default.handlebars->container->column_l->p12->p12title->p12BackButton", "default.handlebars->container->column_l->p11->p11title->p11deviceNameHeader->p11BackButton", "default.handlebars->container->column_l->p14->p14title->p14BackButton", "terms-mobile.handlebars->container->footer->1->1->0->3->1", "default.handlebars->container->column_l->p43->p43BackButton", "default.handlebars->container->column_l->p13->p13title->p13BackButton", "default.handlebars->container->column_l->p20->3", "default.handlebars->container->column_l->p10->1->1->0->1->p10title->p10BackButton", "error404-mobile.handlebars->container->footer->1->1->0->3->1", "default.handlebars->container->column_l->p16->p16title->p16BackButton", "default.handlebars->container->column_l->p31->1", "terms.handlebars->container->footer->1->1->0->3->0", "error404.handlebars->container->footer->1->1->0->3->0", "default.handlebars->container->column_l->p17->p17title->p17BackButton" ], "en": "Back", "cs": "Zpět", - "fr": "Retour" + "fr": "Retour", + "xloc": [ + "default.handlebars->container->column_l->p10->1->1->0->1->p10title->p10BackButton", + "default.handlebars->container->column_l->p11->p11title->p11deviceNameHeader->p11BackButton", + "default.handlebars->container->column_l->p12->p12title->p12BackButton", + "default.handlebars->container->column_l->p13->p13title->p13BackButton", + "default.handlebars->container->column_l->p14->p14title->p14BackButton", + "default.handlebars->container->column_l->p15->p15title->p15BackButton", + "default.handlebars->container->column_l->p16->p16title->p16BackButton", + "default.handlebars->container->column_l->p17->p17title->p17BackButton", + "default.handlebars->container->column_l->p20->3", + "default.handlebars->container->column_l->p30->1->1->0->1->p30title->1", + "default.handlebars->container->column_l->p31->1", + "default.handlebars->container->column_l->p43->p43BackButton", + "error404.handlebars->container->footer->1->1->0->3->0", + "error404-mobile.handlebars->container->footer->1->1->0->3->1", + "terms.handlebars->container->footer->1->1->0->3->0", + "terms-mobile.handlebars->container->footer->1->1->0->3->1" + ] }, { - "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->10", "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->8", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->12", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->10", "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->10", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->10", "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->10", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->10", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->12", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resettokenpanel->1->8" ], - "en": "Back to login" + "en": "Back to login", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->12", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->10", + "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->10", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->8", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->10", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->12", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->10", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->10", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resettokenpanel->1->8", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->10" + ] }, { - "xloc": [ "default.handlebars->17->285" ], - "en": "Background & interactive" + "en": "Background & interactive", + "xloc": [ + "default.handlebars->23->285" + ] }, { - "xloc": [ "default.handlebars->17->263" ], - "en": "Background and interactive" + "en": "Background and interactive", + "xloc": [ + "default.handlebars->23->263" + ] }, { - "xloc": [ "default.handlebars->17->286", "default.handlebars->17->264" ], - "en": "Background only" + "en": "Background only", + "xloc": [ + "default.handlebars->23->264", + "default.handlebars->23->286" + ] }, { - "xloc": [ ], "en": "Backspace", - "fr": "Retour arrière" + "fr": "Retour arrière", + "xloc": [ + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3" + ] }, { - "xloc": [ "default.handlebars->17->1223" ], - "en": "Backup Codes" + "en": "Backup Codes", + "xloc": [ + "default.handlebars->23->1223" + ] }, { - "xloc": [ "default.handlebars->17->703" ], - "en": "Basque" + "en": "Basque", + "xloc": [ + "default.handlebars->23->703" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p4->3->1->0->3->1->5" ], - "en": "Batch create many user accounts" + "en": "Batch create many user accounts", + "xloc": [ + "default.handlebars->container->column_l->p4->3->1->0->3->1->5" + ] }, { - "xloc": [ "default.handlebars->17->705" ], - "en": "Belarusian" + "en": "Belarusian", + "xloc": [ + "default.handlebars->23->705" + ] }, { - "xloc": [ "default.handlebars->17->706" ], - "en": "Bengali" + "en": "Bengali", + "xloc": [ + "default.handlebars->23->706" + ] }, { - "xloc": [ "default.handlebars->17->30" ], - "en": "BIOS" + "en": "BIOS", + "xloc": [ + "default.handlebars->23->30" + ] }, { - "xloc": [ "default.handlebars->17->707" ], - "en": "Bosnian" + "en": "Bosnian", + "xloc": [ + "default.handlebars->23->707" + ] }, { - "xloc": [ "default.handlebars->17->708" ], - "en": "Breton" + "en": "Breton", + "xloc": [ + "default.handlebars->23->708" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p4->3->1->0->3->1" ], "en": "Broadcast", - "fr": "Diffuser" + "fr": "Diffuser", + "xloc": [ + "default.handlebars->container->column_l->p4->3->1->0->3->1" + ] }, { - "xloc": [ "default.handlebars->17->1169" ], - "en": "Broadcast a message to all connected users." + "en": "Broadcast a message to all connected users.", + "xloc": [ + "default.handlebars->23->1169" + ] }, { - "xloc": [ "default.handlebars->17->1170" ], "en": "Broadcast Message", - "fr": "Diffusion d'un Message" + "fr": "Diffusion d'un Message", + "xloc": [ + "default.handlebars->23->1170" + ] }, { - "xloc": [ "default.handlebars->17->704" ], - "en": "Bulgarian" + "en": "Bulgarian", + "xloc": [ + "default.handlebars->23->704" + ] }, { - "xloc": [ "default.handlebars->17->709" ], - "en": "Burmese" + "en": "Burmese", + "xloc": [ + "default.handlebars->23->709" + ] }, { - "xloc": [ "default.handlebars->17->1289" ], "en": "Call Error", - "fr": "Erreur d'appel" + "fr": "Erreur d'appel", + "xloc": [ + "default.handlebars->23->1290" + ] }, { - "xloc": [ "default-mobile.handlebars->9->38", "default.handlebars->17->926" ], "en": "Cancel", "cs": "Zrušit", - "fr": "Annuler" + "fr": "Annuler", + "xloc": [ + "default.handlebars->container->dialog->idx_dlgButtonBar", + "default.handlebars->23->927", + "default-mobile.handlebars->dialog->idx_dlgButtonBar", + "default-mobile.handlebars->9->38", + "login.handlebars->dialog->idx_dlgButtonBar", + "login-mobile.handlebars->dialog->idx_dlgButtonBar", + "player.htm->p11->dialog->idx_dlgButtonBar" + ] }, { - "xloc": [ "default.handlebars->17->40" ], - "en": "Capacity / Speed" + "en": "Capacity / Speed", + "xloc": [ + "default.handlebars->23->40" + ] }, { - "xloc": [ "default.handlebars->17->710" ], - "en": "Catalan" + "en": "Catalan", + "xloc": [ + "default.handlebars->23->710" + ] }, { - "xloc": [ "default.handlebars->17->439", "default-mobile.handlebars->9->178" ], - "en": "CCM" + "en": "CCM", + "xloc": [ + "default.handlebars->23->439", + "default-mobile.handlebars->9->178" + ] }, { - "xloc": [ "default.handlebars->17->373" ], "en": "Center map here", - "fr": "Centré la carte ici" + "fr": "Centré la carte ici", + "xloc": [ + "default.handlebars->23->373" + ] }, { - "xloc": [ "default.handlebars->17->711" ], - "en": "Chamorro" + "en": "Chamorro", + "xloc": [ + "default.handlebars->23->711" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p2->p2AccountActions->3->accountChangeEmailAddressSpan->0", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->3->changeEmailId->0" ], - "en": "Change email address" + "en": "Change email address", + "cs": "Změnit emailovou adresu", + "xloc": [ + "default.handlebars->container->column_l->p2->p2AccountActions->3->accountChangeEmailAddressSpan->0", + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->3->changeEmailId->0" + ] }, { - "xloc": [ "default.handlebars->17->1234" ], - "en": "Change Email for {0}" + "en": "Change Email for {0}", + "cs": "Změnit email pro {0}", + "xloc": [ + "default.handlebars->23->1234" + ] }, { - "xloc": [ "default.handlebars->17->480", "default.handlebars->17->543", "default.handlebars->17->542" ], "en": "Change Group", - "cs": "Změnit skupinu" + "cs": "Změnit skupinu", + "xloc": [ + "default.handlebars->23->480", + "default.handlebars->23->542", + "default.handlebars->23->543" + ] }, { - "xloc": [ "default.handlebars->17->902", "default-mobile.handlebars->9->46" ], "en": "Change Password", - "cs": "Změnit heslo" + "cs": "Změnit heslo", + "xloc": [ + "default.handlebars->23->903", + "default-mobile.handlebars->9->46" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->5->0", "default.handlebars->container->column_l->p2->p2AccountActions->3->13" ], "en": "Change password", - "cs": "Změnit heslo" + "cs": "Změnit heslo", + "xloc": [ + "default.handlebars->container->column_l->p2->p2AccountActions->3->13", + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->5->0" + ] }, { - "xloc": [ "default.handlebars->17->1241" ], - "en": "Change Password for {0}" + "en": "Change Password for {0}", + "xloc": [ + "default.handlebars->23->1241" + ] }, { - "xloc": [ ], - "en": "Change the agent Java Script code module" + "en": "Change the agent Java Script code module", + "xloc": [ + "default.handlebars->container->column_l->p15->consoleTable->1->0->1->1" + ] }, { - "xloc": [ ], - "en": "Change the power state of the remote machine" + "en": "Change the power state of the remote machine", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" + ] }, { - "xloc": [ "default.handlebars->17->889" ], - "en": "Change your account email address here." + "en": "Change your account email address here.", + "xloc": [ + "default.handlebars->23->890" + ] }, { - "xloc": [ "default.handlebars->17->895" ], "en": "Change your account password by entering the old password and new password twice in the boxes below.", - "cs": "Změnit heslo zadáním starého a dvakrát nového hesla níže." + "cs": "Změnit heslo zadáním starého a dvakrát nového hesla níže.", + "xloc": [ + "default.handlebars->23->896" + ] }, { - "xloc": [ "default.handlebars->17->876" ], - "en": "Changing the language will require a refresh of the page." + "en": "Changing the language will require a refresh of the page.", + "xloc": [ + "default.handlebars->23->876" + ] }, { - "xloc": [ "default.handlebars->17->1139" ], - "en": "Chat" + "en": "Chat", + "xloc": [ + "default.handlebars->23->1139" + ] }, { - "xloc": [ "default.handlebars->17->1073", "default-mobile.handlebars->9->304", "default.handlebars->17->1054", "default-mobile.handlebars->9->322" ], - "en": "Chat & Notify" + "en": "Chat & Notify", + "xloc": [ + "default.handlebars->23->1055", + "default.handlebars->23->1074", + "default-mobile.handlebars->9->304", + "default-mobile.handlebars->9->322" + ] }, { - "xloc": [ "default.handlebars->17->712" ], - "en": "Chechen" + "en": "Chechen", + "xloc": [ + "default.handlebars->23->712" + ] }, { - "xloc": [ "default.handlebars->17->83" ], - "en": "Check and click OK to clear error log." + "en": "Check and click OK to clear error log.", + "xloc": [ + "default.handlebars->23->83" + ] }, { - "xloc": [ "default.handlebars->17->78" ], - "en": "Check and click OK to start server self-update." + "en": "Check and click OK to start server self-update.", + "xloc": [ + "default.handlebars->23->78" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p6->p2ServerActions->3->p2ServerActionsVersion->0" ], "en": "Check server version", - "cs": "Zkontrolovat verzi serveru" + "cs": "Zkontrolovat verzi serveru", + "xloc": [ + "default.handlebars->container->column_l->p6->p2ServerActions->3->p2ServerActionsVersion->0" + ] }, { - "xloc": [ "default.handlebars->17->1285", "default.handlebars->17->678" ], "en": "Checking...", - "cs": "Kontrola..." + "cs": "Kontrola...", + "xloc": [ + "default.handlebars->23->678", + "default.handlebars->23->1286" + ] }, { - "xloc": [ "default.handlebars->17->713" ], - "en": "Chinese" + "en": "Chinese", + "xloc": [ + "default.handlebars->23->713" + ] }, { - "xloc": [ "default.handlebars->17->714" ], - "en": "Chinese (Hong Kong)" + "en": "Chinese (Hong Kong)", + "xloc": [ + "default.handlebars->23->714" + ] }, { - "xloc": [ "default.handlebars->17->715" ], - "en": "Chinese (PRC)" + "en": "Chinese (PRC)", + "xloc": [ + "default.handlebars->23->715" + ] }, { - "xloc": [ "default.handlebars->17->716" ], - "en": "Chinese (Singapore)" + "en": "Chinese (Singapore)", + "xloc": [ + "default.handlebars->23->716" + ] }, { - "xloc": [ "default.handlebars->17->717" ], - "en": "Chinese (Taiwan)" + "en": "Chinese (Taiwan)", + "xloc": [ + "default.handlebars->23->717" + ] }, { - "xloc": [ "default.handlebars->17->417", "default-mobile.handlebars->9->157" ], - "en": "ChromeOS" + "en": "ChromeOS", + "xloc": [ + "default.handlebars->23->417", + "default-mobile.handlebars->9->157" + ] }, { - "xloc": [ "default.handlebars->17->718" ], - "en": "Chuvash" + "en": "Chuvash", + "xloc": [ + "default.handlebars->23->718" + ] }, { - "xloc": [ "default.handlebars->17->1010", "default.handlebars->17->337", "default.handlebars->17->151", "default.handlebars->17->1005", "default-mobile.handlebars->9->119" ], - "en": "CIRA" + "en": "CIRA", + "xloc": [ + "default.handlebars->23->151", + "default.handlebars->23->337", + "default.handlebars->23->1006", + "default.handlebars->23->1011", + "default-mobile.handlebars->9->119" + ] }, { - "xloc": [ "default.handlebars->17->1280" ], - "en": "CIRA Server" + "en": "CIRA Server", + "xloc": [ + "default.handlebars->23->1280" + ] }, { - "xloc": [ "default.handlebars->17->1281" ], - "en": "CIRA Server Commands" + "en": "CIRA Server Commands", + "xloc": [ + "default.handlebars->23->1281" + ] }, { - "xloc": [ "default.handlebars->17->228" ], - "en": "Cleanup CIRA" + "en": "Cleanup CIRA", + "xloc": [ + "default.handlebars->23->228" + ] }, { - "xloc": [ "default-mobile.handlebars->9->259", "default-mobile.handlebars->9->265", "default-mobile.handlebars->9->263", "default-mobile.handlebars->9->261", "default.handlebars->17->634", "default.handlebars->17->636", "default.handlebars->17->638", "default-mobile.handlebars->9->25", "default.handlebars->17->1117", "messenger.handlebars->xbottom", "default.handlebars->17->640", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default-mobile.handlebars->9->88" ], - "en": "Clear" + "en": "Clear", + "xloc": [ + "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", + "default.handlebars->container->column_l->p41->3->1", + "default.handlebars->23->634", + "default.handlebars->23->636", + "default.handlebars->23->638", + "default.handlebars->23->640", + "default.handlebars->23->1118", + "default-mobile.handlebars->9->25", + "default-mobile.handlebars->9->88", + "default-mobile.handlebars->9->259", + "default-mobile.handlebars->9->261", + "default-mobile.handlebars->9->263", + "default-mobile.handlebars->9->265", + "messenger.handlebars->xbottom" + ] }, { - "xloc": [ "default.handlebars->17->659" ], - "en": "Clear the core" + "en": "Clear the core", + "xloc": [ + "default.handlebars->23->659" + ] }, { - "xloc": [ "default.handlebars->17->90" ], - "en": "Clear the secret from the application and try again. You only have a few minutes to enter the proper code." + "en": "Clear the secret from the application and try again. You only have a few minutes to enter the proper code.", + "xloc": [ + "default.handlebars->23->90" + ] }, { - "xloc": [ "default.handlebars->17->100" ], - "en": "Clear Tokens" + "en": "Clear Tokens", + "xloc": [ + "default.handlebars->23->100" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->NoMeshesPanel->1->1->0->3->getStarted1->1->0" ], - "en": "click here to create a device group" + "en": "click here to create a device group", + "xloc": [ + "default.handlebars->container->column_l->p1->NoMeshesPanel->1->1->0->3->getStarted1->1->0" + ] }, { - "xloc": [ "default.handlebars->17->388" ], - "en": "Click here to edit the server-side device name" + "en": "Click here to edit the server-side device name", + "xloc": [ + "default.handlebars->23->388" + ] }, { - "xloc": [ "default.handlebars->17->886", "default-mobile.handlebars->9->31" ], - "en": "Click ok to send a verification mail to:" + "en": "Click ok to send a verification mail to:", + "xloc": [ + "default.handlebars->23->887", + "default-mobile.handlebars->9->31" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p0->p0message->2->0", "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message->2->0" ], "en": "click to reconnect", - "cs": "klikni pro opětovné připojení" + "cs": "klikni pro opětovné připojení", + "xloc": [ + "default.handlebars->container->column_l->p0->p0message->2->0", + "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message->2->0" + ] }, { - "xloc": [ "default.handlebars->container->masthead->5" ], - "en": "Click to view current notifications" + "en": "Click to view current notifications", + "xloc": [ + "default.handlebars->container->masthead->5" + ] }, { - "xloc": [ "default.handlebars->17->1009", "default.handlebars->17->1004" ], - "en": "Client Initiated Remote Access" + "en": "Client Initiated Remote Access", + "xloc": [ + "default.handlebars->23->1005", + "default.handlebars->23->1010" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ], - "en": "Clipboard" + "en": "Clipboard", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" + ] }, { - "xloc": [ "default.handlebars->17->106", "default.handlebars->17->591", "default.handlebars->17->98", "default-mobile.handlebars->9->23" ], - "en": "Close" + "en": "Close", + "xloc": [ + "default.handlebars->23->98", + "default.handlebars->23->106", + "default.handlebars->23->591", + "default-mobile.handlebars->9->23" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->1" ], "en": "Columns", - "cs": "Buňky" + "cs": "Buňky", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarViewIcons", + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->1" + ] }, { - "xloc": [ "default.handlebars->17->1112", "default-mobile.handlebars->9->83" ], - "en": "Confim {0} of {1} entrie{2} to this location?" + "en": "Confim {0} of {1} entrie{2} to this location?", + "xloc": [ + "default.handlebars->23->1113", + "default-mobile.handlebars->9->83" + ] }, { - "xloc": [ "default.handlebars->17->537", "default.handlebars->17->1018", "default.handlebars->17->546", "default-mobile.handlebars->9->217", "default.handlebars->17->360", "default-mobile.handlebars->9->284" ], - "en": "Confirm" + "en": "Confirm", + "xloc": [ + "default.handlebars->23->360", + "default.handlebars->23->537", + "default.handlebars->23->546", + "default.handlebars->23->1019", + "default-mobile.handlebars->9->217", + "default-mobile.handlebars->9->284" + ] }, { - "xloc": [ "default-mobile.handlebars->9->254", "default.handlebars->17->629" ], - "en": "Confirm copy of 1 entrie to this location?" + "en": "Confirm copy of 1 entrie to this location?", + "xloc": [ + "default.handlebars->23->629", + "default-mobile.handlebars->9->254" + ] }, { - "xloc": [ "default-mobile.handlebars->9->253", "default.handlebars->17->628" ], - "en": "Confirm copy of {0} entries's to this location?" + "en": "Confirm copy of {0} entries's to this location?", + "xloc": [ + "default.handlebars->23->628", + "default-mobile.handlebars->9->253" + ] }, { - "xloc": [ "default.handlebars->17->359" ], "en": "Confirm delete selected devices(s)?", - "cs": "Potvrdit smázání vybraných zařízení?" + "cs": "Potvrdit smázání vybraných zařízení?", + "xloc": [ + "default.handlebars->23->359" + ] }, { - "xloc": [ "default.handlebars->17->631", "default-mobile.handlebars->9->256" ], - "en": "Confirm move of 1 entrie to this location?" + "en": "Confirm move of 1 entrie to this location?", + "xloc": [ + "default.handlebars->23->631", + "default-mobile.handlebars->9->256" + ] }, { - "xloc": [ "default.handlebars->17->630", "default-mobile.handlebars->9->255" ], - "en": "Confirm move of {0} entries's to this location?" + "en": "Confirm move of {0} entries's to this location?", + "xloc": [ + "default.handlebars->23->630", + "default-mobile.handlebars->9->255" + ] }, { - "xloc": [ "default.handlebars->17->1111" ], - "en": "Confirm overwrite?" + "en": "Confirm overwrite?", + "xloc": [ + "default.handlebars->23->1112" + ] }, { - "xloc": [ "default.handlebars->17->668", "default-mobile.handlebars->9->30" ], - "en": "Confirm removal of authenticator application 2-step login?" + "en": "Confirm removal of authenticator application 2-step login?", + "xloc": [ + "default.handlebars->23->668", + "default-mobile.handlebars->9->30" + ] }, { - "xloc": [ "default-mobile.handlebars->9->330", "default.handlebars->17->1082" ], - "en": "Confirm removal of user {0}?" + "en": "Confirm removal of user {0}?", + "xloc": [ + "default.handlebars->23->1083", + "default-mobile.handlebars->9->330" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "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->17->611", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", "default.handlebars->17->957", "default-mobile.handlebars->9->233" ], "en": "Connect", - "cs": "Připojit" + "cs": "Připojit", + "xloc": [ + "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", + "default.handlebars->23->611", + "default.handlebars->23->958", + "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-mobile.handlebars->9->233" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar", "default.handlebars->17->181" ], - "en": "Connect All" + "en": "Connect All", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar", + "default.handlebars->23->181" + ] }, { - "xloc": [ "default.handlebars->17->1012", "default.handlebars->17->1008" ], "en": "Connect to server", - "cs": "Připojit se na server" + "cs": "Připojit se na server", + "xloc": [ + "default.handlebars->23->1009", + "default.handlebars->23->1013" + ] }, { - "xloc": [ ], - "en": "Connect to your home or office devices from anywhere in the world using", - "cs": "Přihlašte se na různá svá nebo firemní zařízení odkudkoliv z celého světa" + "en": "Connect using Intel AMT hardware KVM", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1hspan", + "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2hspan" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2hspan", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1hspan" ], - "en": "Connect using Intel AMT hardware KVM" + "en": "Connected", + "xloc": [ + "default.handlebars->23->11", + "default-mobile.handlebars->9->4" + ] }, { - "xloc": [ "default.handlebars->17->11", "default-mobile.handlebars->9->4" ], - "en": "Connected" - }, - { - "xloc": [ "messenger.handlebars->13->7" ], "en": "Connected.", - "cs": "Připojeno." + "cs": "Připojeno.", + "xloc": [ + "messenger.handlebars->13->7" + ] }, { - "xloc": [ "default.handlebars->17->9", "default-mobile.handlebars->9->269", "default.handlebars->17->184", "default-mobile.handlebars->9->6", "default-mobile.handlebars->9->2", "default.handlebars->17->645", "default.handlebars->17->175", "default.handlebars->17->178" ], - "en": "Connecting..." + "en": "Connecting...", + "xloc": [ + "default.handlebars->23->9", + "default.handlebars->23->175", + "default.handlebars->23->178", + "default.handlebars->23->184", + "default.handlebars->23->645", + "default-mobile.handlebars->9->2", + "default-mobile.handlebars->9->6", + "default-mobile.handlebars->9->269" + ] }, { - "xloc": [ "messenger.handlebars->13->3" ], - "en": "Connection closed." + "en": "Connection closed.", + "xloc": [ + "messenger.handlebars->13->3" + ] }, { - "xloc": [ "default.handlebars->17->1257" ], - "en": "Connection Count" + "en": "Connection Count", + "xloc": [ + "default.handlebars->23->1257" + ] }, { - "xloc": [ "default.handlebars->17->1279" ], - "en": "Connection Relay" + "en": "Connection Relay", + "xloc": [ + "default.handlebars->23->1279" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p40->3->1->p40type->1" ], - "en": "Connections" + "en": "Connections", + "xloc": [ + "default.handlebars->container->column_l->p40->3->1->p40type->1" + ] }, { - "xloc": [ "default-mobile.handlebars->9->192", "default.handlebars->17->144", "default.handlebars->17->471", "default.handlebars->17->161" ], - "en": "Connectivity" + "en": "Connectivity", + "xloc": [ + "default.handlebars->23->144", + "default.handlebars->23->161", + "default.handlebars->23->471", + "default-mobile.handlebars->9->192" + ] }, { - "xloc": [ "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole", "default.handlebars->contextMenu->cxconsole", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole" ], "en": "Console", - "cs": "Konzole" + "cs": "Konzole", + "xloc": [ + "default.handlebars->contextMenu->cxconsole", + "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole", + "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole" + ] }, { - "xloc": [ "default.handlebars->17->389" ], "en": "Console - ", - "cs": "Konzole - " + "cs": "Konzole - ", + "xloc": [ + "default.handlebars->23->389" + ] }, { - "xloc": [ "default.handlebars->17->655" ], - "en": "console.txt" + "en": "console.txt", + "xloc": [ + "default.handlebars->23->655" + ] }, { - "xloc": [ "default.handlebars->17->1267" ], - "en": "Cookie encoder" + "en": "Cookie encoder", + "xloc": [ + "default.handlebars->23->1267" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3" ], "en": "Copy", - "cs": "Kopírovat" + "cs": "Kopírovat", + "xloc": [ + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3" + ] }, { - "xloc": [ "default.handlebars->17->1115", "default-mobile.handlebars->9->86" ], - "en": "copy" + "en": "copy", + "xloc": [ + "default.handlebars->23->1116", + "default-mobile.handlebars->9->86" + ] }, { - "xloc": [ "default.handlebars->17->56", "default.handlebars->17->54", "default.handlebars->17->65", "default.handlebars->17->69", "default.handlebars->17->67" ], - "en": "Copy address to clipboard" + "en": "Copy address to clipboard", + "xloc": [ + "default.handlebars->23->54", + "default.handlebars->23->56", + "default.handlebars->23->65", + "default.handlebars->23->67", + "default.handlebars->23->69" + ] }, { - "xloc": [ "default.handlebars->17->276" ], - "en": "Copy link to clipboard" + "en": "Copy link to clipboard", + "xloc": [ + "default.handlebars->23->276" + ] }, { - "xloc": [ "default.handlebars->17->71", "default.handlebars->17->63" ], "en": "Copy MAC address to clipboard", - "cs": "Kopírovat MAC adresu do schránky" + "cs": "Kopírovat MAC adresu do schránky", + "xloc": [ + "default.handlebars->23->63", + "default.handlebars->23->71" + ] }, { - "xloc": [ "default.handlebars->17->301" ], "en": "Copy MacOS agent URL to clipboard", - "cs": "Kopírovat odkaz pro MacOS agenta do schránky" + "cs": "Kopírovat odkaz pro MacOS agenta do schránky", + "xloc": [ + "default.handlebars->23->301" + ] }, { - "xloc": [ "default.handlebars->17->61" ], "en": "Copy name to clipboard", - "cs": "Zkopírovat jméno do schránky" + "cs": "Zkopírovat jméno do schránky", + "xloc": [ + "default.handlebars->23->61" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->5->linuxtab" ], "en": "Copy to clipboard", - "cs": "Zkopírovat do schránky" + "cs": "Zkopírovat do schránky", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->linuxtab", + "agentinvite.handlebars->container->column_l->5->linuxtab" + ] }, { - "xloc": [ "default.handlebars->17->101" ], - "en": "Copy valid codes to clipboard" + "en": "Copy valid codes to clipboard", + "xloc": [ + "default.handlebars->23->101" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->27->1", "terms.handlebars->container->column_l->27->1" ], - "en": "Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved." + "en": "Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved.", + "xloc": [ + "terms.handlebars->container->column_l->27->1", + "terms-mobile.handlebars->container->page_content->column_l->27->1" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->11->1", "terms.handlebars->container->column_l->11->1" ], - "en": "Copyright (c) 2009, CodePlex Foundation. All rights reserved." + "en": "Copyright (c) 2009, CodePlex Foundation. All rights reserved.", + "xloc": [ + "terms.handlebars->container->column_l->11->1", + "terms-mobile.handlebars->container->page_content->column_l->11->1" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->69->1", "terms-mobile.handlebars->container->page_content->column_l->69->1" ], - "en": "Copyright (c) 2010 Wojciech 'RRH' Ryrych" + "en": "Copyright (c) 2010 Wojciech 'RRH' Ryrych", + "xloc": [ + "terms.handlebars->container->column_l->69->1", + "terms-mobile.handlebars->container->page_content->column_l->69->1" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->63->1", "terms-mobile.handlebars->container->page_content->column_l->63->1" ], - "en": "Copyright (C) 2011 Joel Martin This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/." + "en": "Copyright (C) 2011 Joel Martin This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.", + "xloc": [ + "terms.handlebars->container->column_l->63->1", + "terms-mobile.handlebars->container->page_content->column_l->63->1" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->47->1", "terms.handlebars->container->column_l->47->1" ], - "en": "Copyright 2013 jQuery Foundation and other contributors" + "en": "Copyright 2013 jQuery Foundation and other contributors", + "xloc": [ + "terms.handlebars->container->column_l->47->1", + "terms-mobile.handlebars->container->page_content->column_l->47->1" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->53->1", "terms.handlebars->container->column_l->53->1" ], - "en": "Copyright 2013 jQuery Foundation and other contributors," + "en": "Copyright 2013 jQuery Foundation and other contributors,", + "xloc": [ + "terms.handlebars->container->column_l->53->1", + "terms-mobile.handlebars->container->page_content->column_l->53->1" + ] }, { - "xloc": [ "default.handlebars->17->1266" ], - "en": "Core Server" + "en": "Core Server", + "xloc": [ + "default.handlebars->23->1266" + ] }, { - "xloc": [ "default.handlebars->17->719" ], - "en": "Corsican" + "en": "Corsican", + "xloc": [ + "default.handlebars->23->719" + ] }, { - "xloc": [ "default.handlebars->17->1253" ], - "en": "CPU load in the last 15 minutes" + "en": "CPU load in the last 15 minutes", + "xloc": [ + "default.handlebars->23->1253" + ] }, { - "xloc": [ "default.handlebars->17->1252" ], - "en": "CPU load in the last 5 minutes" + "en": "CPU load in the last 5 minutes", + "xloc": [ + "default.handlebars->23->1252" + ] }, { - "xloc": [ "default.handlebars->17->1251" ], "en": "CPU load in the last minute", - "cs": "CPU zatížení v poslední minutě" + "cs": "CPU zatížení v poslední minutě", + "xloc": [ + "default.handlebars->23->1251" + ] }, { - "xloc": [ "default.handlebars->17->608", "default.handlebars->17->599" ], - "en": "CR+LF" + "en": "CR+LF", + "xloc": [ + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons", + "default.handlebars->23->599", + "default.handlebars->23->608" + ] }, { - "xloc": [ "default.handlebars->17->909" ], "en": "Create a new device group using the options below.", - "cs": "Vytvořit novou skupinu zařízení podle nastavení níže." + "cs": "Vytvořit novou skupinu zařízení podle nastavení níže.", + "xloc": [ + "default.handlebars->23->910" + ] }, { - "xloc": [ "default.handlebars->17->168" ], "en": "Create a new group of devices.", - "cs": "Vytvořit novou skupinu zařízení." + "cs": "Vytvořit novou skupinu zařízení.", + "xloc": [ + "default.handlebars->23->168" + ] }, { - "xloc": [ "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", "default.handlebars->17->1180" ], - "en": "Create Account" + "en": "Create Account", + "xloc": [ + "default.handlebars->23->1180", + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1" + ] }, { - "xloc": [ "default-mobile.handlebars->9->58" ], "en": "Create Device Group", - "cs": "Vytvořit skupinu zařízení" + "cs": "Vytvořit skupinu zařízení", + "xloc": [ + "default-mobile.handlebars->9->58" + ] }, { - "xloc": [ "default.handlebars->17->1152" ], - "en": "Create many accounts at once by importing a JSON file with the following format:" + "en": "Create many accounts at once by importing a JSON file with the following format:", + "xloc": [ + "default.handlebars->23->1152" + ] }, { - "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->newAccountDiv->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->newAccountDiv->1" ], "en": "Create one", - "cs": "Vytvořit" + "cs": "Vytvořit", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->newAccountDiv->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->newAccountDiv->1" + ] }, { - "xloc": [ "default.handlebars->17->1209" ], - "en": "Creation" + "en": "Creation", + "xloc": [ + "default.handlebars->23->1209" + ] }, { - "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->newAccountPass->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->newAccountPass->nuToken" ], - "en": "Creation Token:" + "en": "Creation Token:", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->newAccountPass->nuToken", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->newAccountPass->1" + ] }, { - "xloc": [ "default.handlebars->17->720" ], - "en": "Cree" + "en": "Cree", + "xloc": [ + "default.handlebars->23->720" + ] }, { - "xloc": [ "default.handlebars->17->721" ], - "en": "Croatian" + "en": "Croatian", + "xloc": [ + "default.handlebars->23->721" + ] }, { - "xloc": [ "default.handlebars->17->1123", "default.handlebars->17->1161" ], - "en": "CSV Format" + "en": "CSV Format", + "xloc": [ + "default.handlebars->23->1123", + "default.handlebars->23->1161" + ] }, { - "xloc": [ ], - "en": "Ctl-C" + "en": "Ctl-C", + "xloc": [ + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3" + ] }, { - "xloc": [ ], - "en": "Ctl-X" + "en": "Ctl-X", + "xloc": [ + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3" + ] }, { - "xloc": [ "default.handlebars->17->15" ], - "en": "Ctrl" + "en": "Ctrl", + "xloc": [ + "default.handlebars->23->15" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->1", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->1" ], - "en": "Ctrl+Alt+Del" + "en": "Ctrl+Alt+Del", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->1", + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->19", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->21" ], - "en": "Ctrl-W" + "en": "Ctrl-W", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->19", + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->21" + ] }, { - "xloc": [ "default.handlebars->17->74" ], - "en": "Current Version" + "en": "Current Version", + "xloc": [ + "default.handlebars->23->74" + ] }, { - "xloc": [ ], "en": "Cut", - "cs": "Vyjmout" + "cs": "Vyjmout", + "xloc": [ + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3" + ] }, { - "xloc": [ "default.handlebars->17->722" ], - "en": "Czech" + "en": "Czech", + "xloc": [ + "default.handlebars->23->722" + ] }, { - "xloc": [ "default.handlebars->17->723" ], - "en": "Danish" + "en": "Danish", + "xloc": [ + "default.handlebars->23->723" + ] }, { - "xloc": [ "default.handlebars->17->568" ], - "en": "DataChannel" + "en": "DataChannel", + "xloc": [ + "default.handlebars->23->568" + ] }, { - "xloc": [ "default.handlebars->17->879" ], "en": "Dates & Time", - "cs": "Datum & čas" + "cs": "Datum & čas", + "xloc": [ + "default.handlebars->23->879" + ] }, { - "xloc": [ "default.handlebars->17->521" ], "en": "Day", - "cs": "Den" + "cs": "Den", + "xloc": [ + "default.handlebars->23->521" + ] }, { - "xloc": [ "default.handlebars->17->996" ], - "en": "Deactivate Client Control Mode (CCM)" + "en": "Deactivate Client Control Mode (CCM)", + "xloc": [ + "default.handlebars->23->997" + ] }, { - "xloc": [ "default-mobile.handlebars->9->107", "default.handlebars->17->320" ], - "en": "Deep Sleep" + "en": "Deep Sleep", + "xloc": [ + "default.handlebars->23->320", + "default-mobile.handlebars->9->107" + ] }, { - "xloc": [ "default-mobile.handlebars->9->246", "default.handlebars->17->621", "default.handlebars->17->1106", "player.htm->p11->dialog->idx_dlgButtonBar->5", "default.handlebars->container->dialog->idx_dlgButtonBar->5", "default-mobile.handlebars->9->78" ], "en": "Delete", - "cs": "Smazat" + "cs": "Smazat", + "xloc": [ + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default.handlebars->container->dialog->idx_dlgButtonBar->5", + "default.handlebars->23->621", + "default.handlebars->23->1107", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", + "default-mobile.handlebars->9->78", + "default-mobile.handlebars->9->246", + "player.htm->p11->dialog->idx_dlgButtonBar->5" + ] }, { - "xloc": [ "default.handlebars->17->894", "default-mobile.handlebars->9->40" ], "en": "Delete Account", - "cs": "Smazat účet" + "cs": "Smazat účet", + "xloc": [ + "default.handlebars->23->895", + "default-mobile.handlebars->9->40" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->7->0", "default.handlebars->container->column_l->p2->p2AccountActions->3->17" ], "en": "Delete account", - "cs": "Smazat účet" + "cs": "Smazat účet", + "xloc": [ + "default.handlebars->container->column_l->p2->p2AccountActions->3->17", + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->7->0" + ] }, { - "xloc": [ "default-mobile.handlebars->9->196", "default.handlebars->17->482" ], "en": "Delete Device", - "cs": "Smazat zařízení" + "cs": "Smazat zařízení", + "xloc": [ + "default.handlebars->23->482", + "default-mobile.handlebars->9->196" + ] }, { - "xloc": [ "default.handlebars->17->356" ], - "en": "Delete devices" + "en": "Delete devices", + "xloc": [ + "default.handlebars->23->356" + ] }, { - "xloc": [ "default.handlebars->17->989", "default.handlebars->17->1019", "default-mobile.handlebars->9->285", "default-mobile.handlebars->9->282" ], - "en": "Delete Group" + "en": "Delete Group", + "cs": "Smazat skupinu", + "xloc": [ + "default.handlebars->23->990", + "default.handlebars->23->1020", + "default-mobile.handlebars->9->282", + "default-mobile.handlebars->9->285" + ] }, { - "xloc": [ "default.handlebars->17->547", "default-mobile.handlebars->9->215" ], - "en": "Delete Node" + "en": "Delete Node", + "cs": "Smazat nod", + "xloc": [ + "default.handlebars->23->547", + "default-mobile.handlebars->9->215" + ] }, { - "xloc": [ "default.handlebars->17->361" ], "en": "Delete Nodes", - "cs": "Smazat nody" + "cs": "Smazat nody", + "xloc": [ + "default.handlebars->23->361" + ] }, { - "xloc": [ "default-mobile.handlebars->9->248", "default.handlebars->17->1108", "default.handlebars->17->623", "default-mobile.handlebars->9->80" ], "en": "Delete selected item?", - "cs": "Smazat vybraný prvek?" + "cs": "Smazat vybraný prvek?", + "xloc": [ + "default.handlebars->23->623", + "default.handlebars->23->1109", + "default-mobile.handlebars->9->80", + "default-mobile.handlebars->9->248" + ] }, { - "xloc": [ "default.handlebars->17->1242" ], "en": "Delete User {0}", - "cs": "Smazat uživatele {0}" + "cs": "Smazat uživatele {0}", + "xloc": [ + "default.handlebars->23->1242" + ] }, { - "xloc": [ "default.handlebars->17->1107", "default-mobile.handlebars->9->247", "default-mobile.handlebars->9->79", "default.handlebars->17->622" ], "en": "Delete {0} selected items?", - "cs": "Smazat {0} vybrané prvky?" + "cs": "Smazat {0} vybrané prvky?", + "xloc": [ + "default.handlebars->23->622", + "default.handlebars->23->1108", + "default-mobile.handlebars->9->79", + "default-mobile.handlebars->9->247" + ] }, { - "xloc": [ "default-mobile.handlebars->9->216" ], - "en": "Delete {0}?" + "en": "Delete {0}?", + "cs": "Smazat {0}?", + "xloc": [ + "default-mobile.handlebars->9->216" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->11", "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->11", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->11", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->11" ], - "en": "Descend by date" + "en": "Descend by date", + "xloc": [ + "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->11", + "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->11", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->11", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->11" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->7", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->7", "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->7", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->7" ], - "en": "Descend by name" + "en": "Descend by name", + "xloc": [ + "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->7", + "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->7", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->7", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->7" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->9", "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->9", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->9", "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->9" ], - "en": "Descend by size" + "en": "Descend by size", + "xloc": [ + "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->9", + "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->9", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->9", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->9" + ] }, { - "xloc": [ "default-mobile.handlebars->9->139", "default.handlebars->17->1021", "default.handlebars->17->398", "default.handlebars->17->938", "default.handlebars->17->399", "default.handlebars->17->914", "default-mobile.handlebars->9->274", "default-mobile.handlebars->9->57", "default.handlebars->17->59", "default.handlebars->17->564", "default-mobile.handlebars->9->221", "default-mobile.handlebars->9->138", "default.handlebars->container->column_l->p42->p42tbl->1->0->3", "default-mobile.handlebars->9->287" ], "en": "Description", - "cs": "Popis" + "cs": "Popis", + "xloc": [ + "default.handlebars->container->column_l->p42->p42tbl->1->0->3", + "default.handlebars->23->59", + "default.handlebars->23->398", + "default.handlebars->23->399", + "default.handlebars->23->564", + "default.handlebars->23->915", + "default.handlebars->23->939", + "default.handlebars->23->1022", + "default-mobile.handlebars->9->57", + "default-mobile.handlebars->9->138", + "default-mobile.handlebars->9->139", + "default-mobile.handlebars->9->221", + "default-mobile.handlebars->9->274", + "default-mobile.handlebars->9->287" + ] }, { - "xloc": [ "default.handlebars->17->596" ], - "en": "DeskControl" + "en": "DeskControl", + "xloc": [ + "default.handlebars->23->596" + ] }, { - "xloc": [ "default.handlebars->contextMenu->cxdesktop", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->17->1023", "default.handlebars->17->366" ], "en": "Desktop", - "cs": "Plocha" + "cs": "Plocha", + "xloc": [ + "default.handlebars->contextMenu->cxdesktop", + "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", + "default.handlebars->23->366", + "default.handlebars->23->1024" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->p11title->p11deviceNameHeader->5" ], - "en": "Desktop -" + "en": "Desktop -", + "xloc": [ + "default.handlebars->container->column_l->p11->p11title->p11deviceNameHeader->5" + ] }, { - "xloc": [ "default.handlebars->17->948" ], - "en": "Desktop Notify" + "en": "Desktop Notify", + "xloc": [ + "default.handlebars->23->949" + ] }, { - "xloc": [ "default.handlebars->17->947" ], - "en": "Desktop Prompt" + "en": "Desktop Prompt", + "xloc": [ + "default.handlebars->23->948" + ] }, { - "xloc": [ "default.handlebars->17->945" ], - "en": "Desktop Prompt+Toolbar" + "en": "Desktop Prompt+Toolbar", + "xloc": [ + "default.handlebars->23->946" + ] }, { - "xloc": [ "default.handlebars->17->946" ], - "en": "Desktop Toolbar" + "en": "Desktop Toolbar", + "xloc": [ + "default.handlebars->23->947" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarViewIcons", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->5" ], "en": "Desktops", - "cs": "Desktopy" + "cs": "Desktopy", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarViewIcons", + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->5" + ] }, { - "xloc": [ "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo" ], "en": "Details", - "cs": "Detaily" + "cs": "Detaily", + "xloc": [ + "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p17->p17title->3" ], "en": "Details -", - "cs": "Detaily -" + "cs": "Detaily -", + "xloc": [ + "default.handlebars->container->column_l->p17->p17title->3" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ], "en": "Device", - "cs": "Zařízení" + "cs": "Zařízení", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" + ] }, { - "xloc": [ "default-mobile.handlebars->9->208", "default.handlebars->17->520" ], "en": "Device Action", - "cs": "Akce zařízení" + "cs": "Akce zařízení", + "xloc": [ + "default.handlebars->23->520", + "default-mobile.handlebars->9->208" + ] }, { - "xloc": [ "default.handlebars->17->882" ], - "en": "Device connections." + "en": "Device connections.", + "xloc": [ + "default.handlebars->23->883" + ] }, { - "xloc": [ "default.handlebars->17->883" ], - "en": "Device disconnections." + "en": "Device disconnections.", + "xloc": [ + "default.handlebars->23->884" + ] }, { - "xloc": [ "default.handlebars->17->509" ], - "en": "Device group notes can be viewed and changed by other device group administrators." + "en": "Device group notes can be viewed and changed by other device group administrators.", + "xloc": [ + "default.handlebars->23->509" + ] }, { - "xloc": [ "default.handlebars->17->1080", "default-mobile.handlebars->9->328" ], - "en": "Device Group User" + "en": "Device Group User", + "cs": "Uživatelé této skupiny zařízení", + "xloc": [ + "default.handlebars->23->1081", + "default-mobile.handlebars->9->328" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", "default.handlebars->17->1218", "default.handlebars->container->column_l->p2->9" ], - "en": "Device Groups" + "en": "Device Groups", + "cs": "Skupiny zařízení", + "xloc": [ + "default.handlebars->container->column_l->p2->9", + "default.handlebars->23->1218", + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3" + ] }, { - "xloc": [ "default.handlebars->17->325" ], "en": "Device is detected but power state could not be obtained.", - "cs": "Zařízení je detekováno, ale nelze zjistit stav." + "cs": "Zařízení je detekováno, ale nelze zjistit stav.", + "xloc": [ + "default.handlebars->23->325" + ] }, { - "xloc": [ "default.handlebars->17->331", "default-mobile.handlebars->9->115" ], - "en": "Device is hibernating (S4)" + "en": "Device is hibernating (S4)", + "xloc": [ + "default.handlebars->23->331", + "default-mobile.handlebars->9->115" + ] }, { - "xloc": [ "default.handlebars->17->330", "default-mobile.handlebars->9->114" ], "en": "Device is in deep sleep state (S3)", - "cs": "Zařízení je v hlubokém spánku (S3)" + "cs": "Zařízení je v hlubokém spánku (S3)", + "xloc": [ + "default.handlebars->23->330", + "default-mobile.handlebars->9->114" + ] }, { - "xloc": [ "default.handlebars->17->319" ], "en": "Device is in deep sleep state (S3).", - "cs": "Zařízení je v hlubokém spánku (S3)." + "cs": "Zařízení je v hlubokém spánku (S3).", + "xloc": [ + "default.handlebars->23->319" + ] }, { - "xloc": [ "default.handlebars->17->321" ], - "en": "Device is in hibernating state (S4)." + "en": "Device is in hibernating state (S4).", + "xloc": [ + "default.handlebars->23->321" + ] }, { - "xloc": [ "default.handlebars->17->323" ], "en": "Device is in powered off state (S5).", - "cs": "Zařízení je vypnuto (S5)." + "cs": "Zařízení je vypnuto (S5).", + "xloc": [ + "default.handlebars->23->323" + ] }, { - "xloc": [ "default.handlebars->17->328", "default-mobile.handlebars->9->112" ], "en": "Device is in sleep state (S1)", - "cs": "Zařízení je ve stavu spánku (S1)" + "cs": "Zařízení je ve stavu spánku (S1)", + "xloc": [ + "default.handlebars->23->328", + "default-mobile.handlebars->9->112" + ] }, { - "xloc": [ "default.handlebars->17->315" ], - "en": "Device is in sleep state (S1)." + "en": "Device is in sleep state (S1).", + "xloc": [ + "default.handlebars->23->315" + ] }, { - "xloc": [ "default-mobile.handlebars->9->113", "default.handlebars->17->329" ], - "en": "Device is in sleep state (S2)" + "en": "Device is in sleep state (S2)", + "xloc": [ + "default.handlebars->23->329", + "default-mobile.handlebars->9->113" + ] }, { - "xloc": [ "default.handlebars->17->317" ], - "en": "Device is in sleep state (S2)." + "en": "Device is in sleep state (S2).", + "xloc": [ + "default.handlebars->23->317" + ] }, { - "xloc": [ "default.handlebars->17->332", "default-mobile.handlebars->9->116" ], - "en": "Device is in soft-off state (S5)" + "en": "Device is in soft-off state (S5)", + "xloc": [ + "default.handlebars->23->332", + "default-mobile.handlebars->9->116" + ] }, { - "xloc": [ "default.handlebars->17->327", "default-mobile.handlebars->9->111" ], "en": "Device is powered", - "cs": "Zařízení je zapnuto" + "cs": "Zařízení je zapnuto", + "xloc": [ + "default.handlebars->23->327", + "default-mobile.handlebars->9->111" + ] }, { - "xloc": [ "default.handlebars->17->313" ], - "en": "Device is powered on." + "en": "Device is powered on.", + "xloc": [ + "default.handlebars->23->313" + ] }, { - "xloc": [ "default.handlebars->17->333", "default-mobile.handlebars->9->117" ], - "en": "Device is present, but power state cannot be determined" + "en": "Device is present, but power state cannot be determined", + "xloc": [ + "default.handlebars->23->333", + "default-mobile.handlebars->9->117" + ] }, { - "xloc": [ "default.handlebars->17->548" ], - "en": "Device Location" + "en": "Device Location", + "xloc": [ + "default.handlebars->23->548" + ] }, { - "xloc": [ "default.handlebars->17->379" ], "en": "Device name", - "cs": "Název zařízení" + "cs": "Název zařízení", + "xloc": [ + "default.handlebars->23->379" + ] }, { - "xloc": [ "player.htm->3->9", "default.handlebars->17->202", "default.handlebars->17->562", "default-mobile.handlebars->9->219" ], - "en": "Device Name" + "en": "Device Name", + "xloc": [ + "default.handlebars->23->202", + "default.handlebars->23->562", + "default-mobile.handlebars->9->219", + "player.htm->3->9" + ] }, { - "xloc": [ "default.handlebars->17->511" ], - "en": "Device Notification" + "en": "Device Notification", + "xloc": [ + "default.handlebars->23->511" + ] }, { - "xloc": [ "default-mobile.handlebars->9->201" ], - "en": "Device Toast" + "en": "Device Toast", + "xloc": [ + "default-mobile.handlebars->9->201" + ] }, { - "xloc": [ "default.handlebars->17->358" ], - "en": "DeviceCheckbox" + "en": "DeviceCheckbox", + "xloc": [ + "default.handlebars->23->358" + ] }, { - "xloc": [ "default.handlebars->17->456" ], - "en": "Disabled" + "en": "Disabled", + "xloc": [ + "default.handlebars->23->456" + ] }, { - "xloc": [ "default.handlebars->17->612", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->17->958", "default-mobile.handlebars->9->234", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span" ], - "en": "Disconnect" + "en": "Disconnect", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", + "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", + "default.handlebars->23->612", + "default.handlebars->23->959", + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", + "default-mobile.handlebars->9->234" + ] }, { - "xloc": [ ], - "en": "Disconnect All" + "en": "Disconnect All", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar" + ] }, { - "xloc": [ "default.handlebars->17->183", "default-mobile.handlebars->9->1", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3->p13Status", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus", "default.handlebars->17->158", "default.handlebars->17->177", "default.handlebars->17->174", "default.handlebars->17->8", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus" ], "en": "Disconnected", "cs": "Odpojeno", - "fr": "Débranché" + "fr": "Débranché", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus", + "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus", + "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3->p13Status", + "default.handlebars->23->8", + "default.handlebars->23->158", + "default.handlebars->23->174", + "default.handlebars->23->177", + "default.handlebars->23->183", + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status", + "default-mobile.handlebars->9->1" + ] }, { - "xloc": [ ], - "en": "Display a notification on the remote computer" + "en": "Display a notification on the remote computer", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" + ] }, { - "xloc": [ "default.handlebars->17->582" ], - "en": "Display name" + "en": "Display name", + "xloc": [ + "default.handlebars->23->582" + ] }, { - "xloc": [ "default.handlebars->17->60" ], - "en": "DNS suffix" + "en": "DNS suffix", + "xloc": [ + "default.handlebars->23->60" + ] }, { - "xloc": [ "default.handlebars->17->1002" ], "en": "Do nothing", - "cs": "Nic" + "cs": "Nic", + "xloc": [ + "default.handlebars->23->1003" + ] }, { - "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->newAccountDiv", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->newAccountDiv" ], "en": "Don't have an account?", - "cs": "Nemáte účet?" + "cs": "Nemáte účet?", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->newAccountDiv", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->newAccountDiv" + ] }, { - "xloc": [ "default.handlebars->17->1006", "default.handlebars->17->1011" ], - "en": "Don\\'t configure" + "en": "Don\\'t configure", + "xloc": [ + "default.handlebars->23->1007", + "default.handlebars->23->1012" + ] }, { - "xloc": [ "default.handlebars->17->1007" ], - "en": "Don\\'t connect to server" + "en": "Don\\'t connect to server", + "xloc": [ + "default.handlebars->23->1008" + ] }, { - "xloc": [ "download.handlebars->container->page_content->column_l->1" ], "en": "Download", "cs": "Stažení", - "fr": "Télécharger" + "fr": "Télécharger", + "xloc": [ + "download.handlebars->container->page_content->column_l->1" + ] }, { - "xloc": [ ], - "en": "Download console text" + "en": "Download console text", + "xloc": [ + "default.handlebars->container->column_l->p15->consoleTable->1->0->1->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p40->3->1" ], - "en": "Download data points (.csv)" + "en": "Download data points (.csv)", + "xloc": [ + "default.handlebars->container->column_l->p40->3->1" + ] }, { - "xloc": [ "default.handlebars->17->82" ], - "en": "Download error log" + "en": "Download error log", + "xloc": [ + "default.handlebars->23->82" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p16->3->1->0->5->3", "default.handlebars->container->column_l->p3->3->1->0->3->3", "default.handlebars->container->column_l->p31->5->1->0->5->3" ], - "en": "Download Events" + "en": "Download Events", + "xloc": [ + "default.handlebars->container->column_l->p3->3->1->0->3->3", + "default.handlebars->container->column_l->p16->3->1->0->5->3", + "default.handlebars->container->column_l->p31->5->1->0->5->3" + ] }, { - "xloc": [ "default-mobile.handlebars->9->267", "default.handlebars->17->641" ], "en": "Download File", - "cs": "Stáhnout soubor" + "cs": "Stáhnout soubor", + "xloc": [ + "default.handlebars->23->641", + "default-mobile.handlebars->9->267" + ] }, { - "xloc": [ "default.handlebars->17->172" ], - "en": "Download MeshCentral Router, a TCP port mapping tool." + "en": "Download MeshCentral Router, a TCP port mapping tool.", + "xloc": [ + "default.handlebars->23->172" + ] }, { - "xloc": [ "default.handlebars->17->559" ], - "en": "Download MeshCmd" + "en": "Download MeshCmd", + "xloc": [ + "default.handlebars->23->559" + ] }, { - "xloc": [ "default.handlebars->17->170" ], - "en": "Download MeshCmd, a command line tool that performs many functions." + "en": "Download MeshCmd, a command line tool that performs many functions.", + "xloc": [ + "default.handlebars->23->170" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p42->3->3" ], - "en": "Download Plugin" + "en": "Download Plugin", + "xloc": [ + "default.handlebars->container->column_l->p42->3->3" + ] }, { - "xloc": [ "default.handlebars->17->522" ], - "en": "Download power events" + "en": "Download power events", + "xloc": [ + "default.handlebars->23->522" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p6->p2ServerActions->3->p2ServerActionsBackup->0" ], - "en": "Download server backup" + "en": "Download server backup", + "xloc": [ + "default.handlebars->container->column_l->p6->p2ServerActions->3->p2ServerActionsBackup->0" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->5->macostab->3->macosurl" ], "en": "Download the installer here", - "cs": "Stáhnout instalaci zde" + "cs": "Stáhnout instalaci zde", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->macostab->3->macosurl" + ] }, { - "xloc": [ "default.handlebars->17->1122" ], - "en": "Download the list of events with one of the file formats below." + "en": "Download the list of events with one of the file formats below.", + "xloc": [ + "default.handlebars->23->1122" + ] }, { - "xloc": [ "default.handlebars->17->1160" ], - "en": "Download the list of users with one of the file formats below." + "en": "Download the list of users with one of the file formats below.", + "xloc": [ + "default.handlebars->23->1160" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->5->wintab64->3->win64url", "agentinvite.handlebars->container->column_l->5->wintab32->3->win32url" ], - "en": "Download the software here" + "en": "Download the software here", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->wintab64->3->win64url", + "agentinvite.handlebars->container->column_l->5->wintab32->3->win32url" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p41->3->1" ], - "en": "Download trace (.csv)" + "en": "Download trace (.csv)", + "xloc": [ + "default.handlebars->container->column_l->p41->3->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p4->3->1->0->3->1->3" ], - "en": "Download user information" + "en": "Download user information", + "xloc": [ + "default.handlebars->container->column_l->p4->3->1->0->3->1->3" + ] }, { - "xloc": [ "player.htm->3->18" ], - "en": "Drag & drop a .mcrec file or click \\\"Open File...\\\"" + "en": "Drag & drop a .mcrec file or click \\\"Open File...\\\"", + "xloc": [ + "player.htm->3->18" + ] }, { - "xloc": [ "player.htm->3->2" ], - "en": "Duration" + "en": "Duration", + "xloc": [ + "player.htm->3->2" + ] }, { - "xloc": [ "default.handlebars->17->1016" ], - "en": "During activation, the agent will have access to admin password infomation." + "en": "During activation, the agent will have access to admin password infomation.", + "xloc": [ + "default.handlebars->23->1017" + ] }, { - "xloc": [ "default.handlebars->17->725" ], - "en": "Dutch (Belgian)" + "en": "Dutch (Belgian)", + "xloc": [ + "default.handlebars->23->725" + ] }, { - "xloc": [ "default.handlebars->17->724" ], - "en": "Dutch (Standard)" + "en": "Dutch (Standard)", + "xloc": [ + "default.handlebars->23->724" + ] }, { - "xloc": [ ], - "en": "Edit" + "en": "Edit", + "xloc": [ + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3" + ] }, { - "xloc": [ "default.handlebars->17->567", "default-mobile.handlebars->9->224" ], - "en": "Edit Device" + "en": "Edit Device", + "xloc": [ + "default.handlebars->23->567", + "default-mobile.handlebars->9->224" + ] }, { - "xloc": [ "default-mobile.handlebars->9->290", "default.handlebars->17->1040", "default.handlebars->17->1022", "default.handlebars->17->1059", "default-mobile.handlebars->9->308", "default-mobile.handlebars->9->288" ], "en": "Edit Device Group", - "cs": "Editovat skupinu zařízení" + "cs": "Editovat skupinu zařízení", + "xloc": [ + "default.handlebars->23->1023", + "default.handlebars->23->1041", + "default.handlebars->23->1060", + "default-mobile.handlebars->9->288", + "default-mobile.handlebars->9->290", + "default-mobile.handlebars->9->308" + ] }, { - "xloc": [ "default.handlebars->17->1034" ], - "en": "Edit Device Group Features" + "en": "Edit Device Group Features", + "xloc": [ + "default.handlebars->23->1035" + ] }, { - "xloc": [ "default.handlebars->17->1033" ], - "en": "Edit Device Group User Consent" + "en": "Edit Device Group User Consent", + "xloc": [ + "default.handlebars->23->1034" + ] }, { - "xloc": [ "default.handlebars->17->1052", "default-mobile.handlebars->9->302" ], "en": "Edit Device Notes", - "cs": "Upravit popis zařízení" + "cs": "Upravit popis zařízení", + "xloc": [ + "default.handlebars->23->1053", + "default-mobile.handlebars->9->302" + ] }, { - "xloc": [ "default.handlebars->17->447", "default.handlebars->17->444", "default-mobile.handlebars->9->214", "default.handlebars->17->529" ], - "en": "Edit Intel® AMT credentials" + "en": "Edit Intel® AMT credentials", + "xloc": [ + "default.handlebars->23->444", + "default.handlebars->23->447", + "default.handlebars->23->529", + "default-mobile.handlebars->9->214" + ] }, { - "xloc": [ "default.handlebars->17->1066", "default-mobile.handlebars->9->315" ], "en": "Edit Notes", - "fr": "Modifier les notes" + "fr": "Modifier les notes", + "xloc": [ + "default.handlebars->23->1067", + "default-mobile.handlebars->9->315" + ] }, { - "xloc": [ ], - "en": "Edit remote desktop settings" + "en": "Edit remote desktop settings", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" + ] }, { - "xloc": [ "default.handlebars->17->1057" ], - "en": "Edit User Device Group Permissions" + "en": "Edit User Device Group Permissions", + "xloc": [ + "default.handlebars->23->1058" + ] }, { - "xloc": [ "default.handlebars->17->1206", "default.handlebars->17->1205", "default.handlebars->17->1172", "default-mobile.handlebars->9->34", "default.handlebars->17->247", "default.handlebars->17->1232" ], - "en": "Email" + "en": "Email", + "xloc": [ + "default.handlebars->23->247", + "default.handlebars->23->1172", + "default.handlebars->23->1205", + "default.handlebars->23->1206", + "default.handlebars->23->1232", + "default-mobile.handlebars->9->34" + ] }, { - "xloc": [ "default.handlebars->17->890", "default-mobile.handlebars->9->35" ], "en": "Email Address Change", - "cs": "Změna emailové adresy" + "cs": "Změna emailové adresy", + "xloc": [ + "default.handlebars->23->891", + "default-mobile.handlebars->9->35" + ] }, { - "xloc": [ "default.handlebars->17->1202" ], "en": "Email is verified", - "cs": "Email ověřen" + "cs": "Email ověřen", + "xloc": [ + "default.handlebars->23->1202" + ] }, { - "xloc": [ "default.handlebars->17->1177" ], "en": "Email is verified.", - "cs": "Email je ověřen." + "cs": "Email je ověřen.", + "xloc": [ + "default.handlebars->23->1177" + ] }, { - "xloc": [ "default.handlebars->17->1203" ], "en": "Email not verified", - "cs": "Email není ověřen" + "cs": "Email není ověřen", + "xloc": [ + "default.handlebars->23->1203" + ] }, { - "xloc": [ "default.handlebars->17->888", "default-mobile.handlebars->9->33" ], - "en": "Email Verification" + "en": "Email Verification", + "xloc": [ + "default.handlebars->23->889", + "default-mobile.handlebars->9->33" + ] }, { - "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->7->1->0->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->7->1->0->1", "login.handlebars->5->17", "login-mobile.handlebars->5->17", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->2->nuEmail", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->2->1" ], - "en": "Email:" + "en": "Email:", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->2->nuEmail", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->7->1->0->1", + "login.handlebars->5->17", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->2->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->7->1->0->1", + "login-mobile.handlebars->5->17" + ] }, { - "xloc": [ "messenger.handlebars->xtop->1" ], "en": "Enable browser notification", - "cs": "Zapnout notifikace v prohlížeči" + "cs": "Zapnout notifikace v prohlížeči", + "xloc": [ + "messenger.handlebars->xtop->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p2->p2AccountActions->3->accountEnableNotificationsSpan->0" ], "en": "Enable web notifications", - "cs": "Zapnout notifikace prohlížeče" + "cs": "Zapnout notifikace prohlížeče", + "xloc": [ + "default.handlebars->container->column_l->p2->p2AccountActions->3->accountEnableNotificationsSpan->0" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->3" ], - "en": "Encoding" + "en": "Encoding", + "xloc": [ + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->3" + ] }, { - "xloc": [ "default.handlebars->17->726" ], - "en": "English" + "en": "English", + "xloc": [ + "default.handlebars->23->726" + ] }, { - "xloc": [ "default.handlebars->17->727" ], - "en": "English (Australia)" + "en": "English (Australia)", + "xloc": [ + "default.handlebars->23->727" + ] }, { - "xloc": [ "default.handlebars->17->728" ], - "en": "English (Belize)" + "en": "English (Belize)", + "xloc": [ + "default.handlebars->23->728" + ] }, { - "xloc": [ "default.handlebars->17->729" ], - "en": "English (Canada)" + "en": "English (Canada)", + "xloc": [ + "default.handlebars->23->729" + ] }, { - "xloc": [ "default.handlebars->17->730" ], - "en": "English (Ireland)" + "en": "English (Ireland)", + "xloc": [ + "default.handlebars->23->730" + ] }, { - "xloc": [ "default.handlebars->17->731" ], - "en": "English (Jamaica)" + "en": "English (Jamaica)", + "xloc": [ + "default.handlebars->23->731" + ] }, { - "xloc": [ "default.handlebars->17->732" ], - "en": "English (New Zealand)" + "en": "English (New Zealand)", + "xloc": [ + "default.handlebars->23->732" + ] }, { - "xloc": [ "default.handlebars->17->733" ], - "en": "English (Philippines)" + "en": "English (Philippines)", + "xloc": [ + "default.handlebars->23->733" + ] }, { - "xloc": [ "default.handlebars->17->734" ], - "en": "English (South Africa)" + "en": "English (South Africa)", + "xloc": [ + "default.handlebars->23->734" + ] }, { - "xloc": [ "default.handlebars->17->735" ], - "en": "English (Trinidad & Tobago)" + "en": "English (Trinidad & Tobago)", + "xloc": [ + "default.handlebars->23->735" + ] }, { - "xloc": [ "default.handlebars->17->736" ], "en": "English (United Kingdom)", - "fr": "Anglais (Royaume Uni)" + "fr": "Anglais (Royaume Uni)", + "xloc": [ + "default.handlebars->23->736" + ] }, { - "xloc": [ "default.handlebars->17->737" ], "en": "English (United States)", - "fr": "Anglais (États Unis)" + "fr": "Anglais (États Unis)", + "xloc": [ + "default.handlebars->23->737" + ] }, { - "xloc": [ "default.handlebars->17->738" ], "en": "English (Zimbabwe)", - "fr": "Anglais (Zimbabwe)" + "fr": "Anglais (Zimbabwe)", + "xloc": [ + "default.handlebars->23->738" + ] }, { - "xloc": [ "default.handlebars->17->917", "default.handlebars->17->916" ], - "en": "Enter" + "en": "Enter", + "xloc": [ + "default.handlebars->23->917", + "default.handlebars->23->918" + ] }, { - "xloc": [ "default.handlebars->17->1181" ], - "en": "Enter a comma seperate list of administrative realms names." + "en": "Enter a comma seperate list of administrative realms names.", + "xloc": [ + "default.handlebars->23->1181" + ] }, { - "xloc": [ "default.handlebars->17->217" ], - "en": "Enter a range of IP addresses to scan for Intel AMT devices." + "en": "Enter a range of IP addresses to scan for Intel AMT devices.", + "xloc": [ + "default.handlebars->23->217" + ] }, { - "xloc": [ "default.handlebars->17->577" ], - "en": "Enter text and click OK to remotely type it using a US english keyboard. Make sure to place the remote cursor at the correct position before proceeding." + "en": "Enter text and click OK to remotely type it using a US english keyboard. Make sure to place the remote cursor at the correct position before proceeding.", + "xloc": [ + "default.handlebars->23->577" + ] }, { - "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1" ], - "en": "Enter the account creation token" + "en": "Enter the account creation token", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1" + ] }, { - "xloc": [ "default.handlebars->17->85" ], - "en": "Enter the token here for 2-step login:" + "en": "Enter the token here for 2-step login:", + "xloc": [ + "default.handlebars->23->85" + ] }, { - "xloc": [ "default.handlebars->17->111" ], - "en": "Error, Unable to add key." + "en": "Error, Unable to add key.", + "xloc": [ + "default.handlebars->23->111" + ] }, { - "xloc": [ "default.handlebars->17->117" ], "en": "ERROR: ", - "fr": "ERREUR:" + "fr": "ERREUR:", + "xloc": [ + "default.handlebars->23->117" + ] }, { - "xloc": [ "messenger.handlebars->13->8" ], - "en": "Error: No connection key specified." + "en": "Error: No connection key specified.", + "xloc": [ + "messenger.handlebars->13->8" + ] }, { - "xloc": [ "default.handlebars->17->113" ], "en": "ERROR: Unable to add key.", - "fr": "ERREUR: Impossible d'ajouter la clé." + "fr": "ERREUR: Impossible d'ajouter la clé.", + "xloc": [ + "default.handlebars->23->113" + ] }, { - "xloc": [ ], - "en": "ESC" + "en": "ESC", + "xloc": [ + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3" + ] }, { - "xloc": [ "default.handlebars->17->739" ], - "en": "Esperanto" + "en": "Esperanto", + "xloc": [ + "default.handlebars->23->739" + ] }, { - "xloc": [ "default.handlebars->17->740" ], - "en": "Estonian" + "en": "Estonian", + "xloc": [ + "default.handlebars->23->740" + ] }, { - "xloc": [ "default.handlebars->17->647" ], - "en": "Event Details" + "en": "Event Details", + "xloc": [ + "default.handlebars->23->647" + ] }, { - "xloc": [ "default.handlebars->17->1127" ], - "en": "Event List Export" + "en": "Event List Export", + "xloc": [ + "default.handlebars->23->1127" + ] }, { - "xloc": [ "default.handlebars->container->topbar->1->1->UserSubMenuSpan->UserSubMenu->1->0->UserEvents", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevEvents", "default.handlebars->contextMenu->cxevents" ], "en": "Events", "cs": "Události", - "fr": "Événements" + "fr": "Événements", + "xloc": [ + "default.handlebars->contextMenu->cxevents", + "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevEvents", + "default.handlebars->container->topbar->1->1->UserSubMenuSpan->UserSubMenu->1->0->UserEvents" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p31->3", "default.handlebars->container->column_l->p16->p16title->3" ], "en": "Events -", - "fr": "Événements -" + "fr": "Événements -", + "xloc": [ + "default.handlebars->container->column_l->p16->p16title->3", + "default.handlebars->container->column_l->p31->3" + ] }, { - "xloc": [ "default.handlebars->17->1129", "default.handlebars->17->1124" ], - "en": "eventslist.csv" + "en": "eventslist.csv", + "xloc": [ + "default.handlebars->23->1124", + "default.handlebars->23->1129" + ] }, { - "xloc": [ "default.handlebars->17->1126", "default.handlebars->17->1130" ], - "en": "eventslist.json" + "en": "eventslist.json", + "xloc": [ + "default.handlebars->23->1126", + "default.handlebars->23->1130" + ] }, { - "xloc": [ "default.handlebars->17->248" ], - "en": "example@email.com" + "en": "example@email.com", + "xloc": [ + "default.handlebars->23->248" + ] }, { - "xloc": [ "login-mobile.handlebars->5->4", "login.handlebars->5->4" ], - "en": "Existing account with this email address." + "en": "Existing account with this email address.", + "xloc": [ + "login.handlebars->5->4", + "login-mobile.handlebars->5->4" + ] }, { - "xloc": [ ], - "en": "Extended Ascii" + "en": "Extended Ascii", + "xloc": [ + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" + ] }, { - "xloc": [ "default.handlebars->17->603" ], - "en": "Extended ASCII" + "en": "Extended ASCII", + "xloc": [ + "default.handlebars->23->603" + ] }, { - "xloc": [ "default.handlebars->17->741" ], - "en": "Faeroese" + "en": "Faeroese", + "xloc": [ + "default.handlebars->23->741" + ] }, { - "xloc": [ "default.handlebars->17->49" ], "en": "Failed", "cs": "Selhalo", - "fr": "Échoué" + "fr": "Échoué", + "xloc": [ + "default.handlebars->23->49" + ] }, { - "xloc": [ "default.handlebars->17->742" ], "en": "Farsi (Persian)", - "fr": "Farsi (Persan)" + "fr": "Farsi (Persan)", + "xloc": [ + "default.handlebars->23->742" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->1", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->1" ], "en": "Fast", "cs": "Rychle", - "fr": "Vite" + "fr": "Vite", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->1", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->1" + ] }, { - "xloc": [ "default.handlebars->17->944" ], "en": "Features", - "cs": "Funkce" + "cs": "Funkce", + "xloc": [ + "default.handlebars->23->945" + ] }, { - "xloc": [ "default.handlebars->17->743" ], - "en": "Fijian" + "en": "Fijian", + "xloc": [ + "default.handlebars->23->743" + ] }, { - "xloc": [ "default-mobile.handlebars->9->251", "default.handlebars->17->626" ], "en": "File Editor", - "fr": "Éditeur de fichier" + "fr": "Éditeur de fichier", + "xloc": [ + "default.handlebars->23->626", + "default-mobile.handlebars->9->251" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog3->d3upload->1" ], "en": "File Selection", - "fr": "Sélection de fichier" + "fr": "Sélection de fichier", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog3->d3upload->1" + ] }, { - "xloc": [ "default.handlebars->17->1030", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" ], "en": "Files", "cs": "Soubory", - "fr": "Dossiers" + "fr": "Dossiers", + "xloc": [ + "default.handlebars->contextMenu->cxfiles", + "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", + "default.handlebars->23->1031" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p13->p13title->3" ], "en": "Files -", "cs": "Soubory -", - "fr": "Dossiers -" + "fr": "Dossiers -", + "xloc": [ + "default.handlebars->container->column_l->p13->p13title->3" + ] }, { - "xloc": [ "default.handlebars->17->952" ], - "en": "Files Notify" + "en": "Files Notify", + "xloc": [ + "default.handlebars->23->953" + ] }, { - "xloc": [ "default.handlebars->17->951" ], - "en": "Files Prompt" + "en": "Files Prompt", + "xloc": [ + "default.handlebars->23->952" + ] }, { - "xloc": [ "default.handlebars->17->585" ], - "en": "FileSystemDriver" + "en": "FileSystemDriver", + "xloc": [ + "default.handlebars->23->585" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3" ], "en": "Filter", "cs": "Filtr", - "fr": "Filtre" + "fr": "Filtre", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", + "default.handlebars->container->column_l->p4->3->1->0->3->3" + ] }, { - "xloc": [ "default.handlebars->17->744" ], "en": "Finnish", - "fr": "Finlandais" + "fr": "Finlandais", + "xloc": [ + "default.handlebars->23->744" + ] }, { - "xloc": [ ], "en": "Fixed width interface", - "fr": "Interface à largeur fixe" + "fr": "Interface à largeur fixe", + "xloc": [ + "agentinvite.handlebars->container->topbar->uiMenuButton->uiMenu", + "default.handlebars->container->topbar->1->1->uiMenuButton->uiMenu", + "error404.handlebars->container->topbar->uiMenuButton->uiMenu", + "login.handlebars->container->topbar->uiMenuButton->uiMenu", + "terms.handlebars->container->topbar->uiMenuButton->uiMenu" + ] }, { - "xloc": [ ], - "en": "Focus All" + "en": "Focus All", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1" ], "en": "Folder", "cs": "Adresář", - "fr": "Dossier" + "fr": "Dossier", + "xloc": [ + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1" + ] }, { - "xloc": [ "default.handlebars->17->1239", "default.handlebars->17->1176" ], - "en": "Force password reset on next login." + "en": "Force password reset on next login.", + "xloc": [ + "default.handlebars->23->1176", + "default.handlebars->23->1239" + ] }, { - "xloc": [ "login-mobile.handlebars->5->18", "login.handlebars->5->18" ], "en": "Forgot password?", "cs": "Zapomenuté heslo?", - "fr": "Mot de passe oublié?" + "fr": "Mot de passe oublié?", + "xloc": [ + "login.handlebars->5->18", + "login-mobile.handlebars->5->18" + ] }, { - "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->resetAccountDiv->resetAccountSpan" ], - "en": "Forgot user/password?" + "en": "Forgot user/password?", + "cs": "Zapomenuté jméno/heslo?", + "xloc": [ + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->resetAccountDiv->resetAccountSpan" + ] }, { - "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->resetAccountDiv->resetAccountSpan" ], - "en": "Forgot username/password?" + "en": "Forgot username/password?", + "cs": "Zapomenuté jméno/heslo?", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->resetAccountDiv->resetAccountSpan" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->1" ], "en": "Frame rate", - "cs": "Obnovování" + "cs": "Obnovování", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->1" + ] }, { - "xloc": [ "default.handlebars->17->1248", "default.handlebars->17->1250" ], "en": "Free", - "fr": "Libre" + "fr": "Libre", + "xloc": [ + "default.handlebars->23->1248", + "default.handlebars->23->1250" + ] }, { - "xloc": [ "default.handlebars->17->1255" ], "en": "free", - "fr": "libre" + "fr": "libre", + "xloc": [ + "default.handlebars->23->1255" + ] }, { - "xloc": [ "default.handlebars->17->430", "default-mobile.handlebars->9->170" ], - "en": "FreeBSD x86-64" + "en": "FreeBSD x86-64", + "xloc": [ + "default.handlebars->23->430", + "default-mobile.handlebars->9->170" + ] }, { - "xloc": [ "default.handlebars->17->746" ], "en": "French (Belgium)", - "fr": "Français (Belgique)" + "fr": "Français (Belgique)", + "xloc": [ + "default.handlebars->23->746" + ] }, { - "xloc": [ "default.handlebars->17->747" ], "en": "French (Canada)", - "fr": "Français (Canada)" + "fr": "Français (Canada)", + "xloc": [ + "default.handlebars->23->747" + ] }, { - "xloc": [ "default.handlebars->17->748" ], "en": "French (France)", - "fr": "Français (France)" + "fr": "Français (France)", + "xloc": [ + "default.handlebars->23->748" + ] }, { - "xloc": [ "default.handlebars->17->749" ], "en": "French (Luxembourg)", - "fr": "Français (Luxembourg)" + "fr": "Français (Luxembourg)", + "xloc": [ + "default.handlebars->23->749" + ] }, { - "xloc": [ "default.handlebars->17->750" ], "en": "French (Monaco)", - "fr": "Français (Monaco)" + "fr": "Français (Monaco)", + "xloc": [ + "default.handlebars->23->750" + ] }, { - "xloc": [ "default.handlebars->17->745" ], "en": "French (Standard)", - "fr": "Français (standard)" + "fr": "Français (standard)", + "xloc": [ + "default.handlebars->23->745" + ] }, { - "xloc": [ "default.handlebars->17->751" ], "en": "French (Switzerland)", - "fr": "Français (Suisse)" + "fr": "Français (Suisse)", + "xloc": [ + "default.handlebars->23->751" + ] }, { - "xloc": [ "default.handlebars->17->752" ], "en": "Frisian", - "fr": "Frison" + "fr": "Frison", + "xloc": [ + "default.handlebars->23->752" + ] }, { - "xloc": [ "default.handlebars->17->753" ], "en": "Friulian", - "fr": "Frioulan" + "fr": "Frioulan", + "xloc": [ + "default.handlebars->23->753" + ] }, { - "xloc": [ "default.handlebars->17->1186", "default.handlebars->17->1039", "default.handlebars->17->985", "default-mobile.handlebars->9->307", "default-mobile.handlebars->9->61", "default.handlebars->17->923", "default-mobile.handlebars->9->280", "default-mobile.handlebars->9->289" ], "en": "Full Administrator", - "fr": "Administrateur Complet" + "cs": "Hlavní administrátor", + "fr": "Administrateur Complet", + "xloc": [ + "default.handlebars->23->924", + "default.handlebars->23->986", + "default.handlebars->23->1040", + "default.handlebars->23->1186", + "default-mobile.handlebars->9->61", + "default-mobile.handlebars->9->280", + "default-mobile.handlebars->9->289", + "default-mobile.handlebars->9->307" + ] }, { - "xloc": [ "default.handlebars->17->1198" ], "en": "Full administrator", "cs": "Hlavní administrator", - "fr": "Administrateur complet" + "fr": "Administrateur complet", + "xloc": [ + "default.handlebars->23->1198" + ] }, { - "xloc": [ "default.handlebars->17->1058" ], "en": "Full Administrator (all rights)", "cs": "Hlavní administrator (všechna práva)", - "fr": "Administrateur Complet (tous droits)" + "fr": "Administrateur Complet (tous droits)", + "xloc": [ + "default.handlebars->23->1059" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->p11title->p11deviceNameHeader->devListToolbarViewIcons", "default.handlebars->container->column_l->p14->p14title->devListToolbarViewIcons" ], "en": "Full Screen. Hold shift to browser full screen.", - "fr": "Plein écran. Maintenez la touche Maj enfoncée dans le navigateur en plein écran." + "fr": "Plein écran. Maintenez la touche Maj enfoncée dans le navigateur en plein écran.", + "xloc": [ + "default.handlebars->container->column_l->p11->p11title->p11deviceNameHeader->devListToolbarViewIcons", + "default.handlebars->container->column_l->p14->p14title->devListToolbarViewIcons" + ] }, { - "xloc": [ "default.handlebars->17->790" ], "en": "FYRO Macedonian", - "fr": "ARY Macédonien" + "fr": "ARY Macédonien", + "xloc": [ + "default.handlebars->23->790" + ] }, { - "xloc": [ "default.handlebars->17->755" ], "en": "Gaelic (Irish)", - "fr": "Gaélique (irlandais)" + "fr": "Gaélique (irlandais)", + "xloc": [ + "default.handlebars->23->755" + ] }, { - "xloc": [ "default.handlebars->17->754" ], "en": "Gaelic (Scots)", - "fr": "Gaélique (écossais)" + "fr": "Gaélique (écossais)", + "xloc": [ + "default.handlebars->23->754" + ] }, { - "xloc": [ "default.handlebars->17->756" ], "en": "Galacian", - "fr": "Galicien" + "fr": "Galicien", + "xloc": [ + "default.handlebars->23->756" + ] }, { - "xloc": [ "default.handlebars->17->70" ], "en": "Gateway MAC", "cs": "MAC brány", - "fr": "Passerelle MAC" + "fr": "Passerelle MAC", + "xloc": [ + "default.handlebars->23->70" + ] }, { - "xloc": [ "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDev", "default.handlebars->container->topbar->1->1->MeshSubMenuSpan->MeshSubMenu->1->0->MeshGeneral", "default.handlebars->container->topbar->1->1->UserSubMenuSpan->UserSubMenu->1->0->UserGeneral", "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerGeneral" ], "en": "General", "cs": "Obecné", - "fr": "Général" + "fr": "Général", + "xloc": [ + "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDev", + "default.handlebars->container->topbar->1->1->MeshSubMenuSpan->MeshSubMenu->1->0->MeshGeneral", + "default.handlebars->container->topbar->1->1->UserSubMenuSpan->UserSubMenu->1->0->UserGeneral", + "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerGeneral" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p20->5", "default.handlebars->container->column_l->p10->1->1->0->1->p10title->3", "default.handlebars->container->column_l->p30->1->1->0->1->p30title->3" ], "en": "General -", "cs": "Obecné -", - "fr": "Général -" + "fr": "Général -", + "xloc": [ + "default.handlebars->container->column_l->p10->1->1->0->1->p10title->3", + "default.handlebars->container->column_l->p20->5", + "default.handlebars->container->column_l->p30->1->1->0->1->p30title->3" + ] }, { - "xloc": [ "default.handlebars->17->365" ], "en": "General information", "cs": "Obecné informace", - "fr": "Informations générales" + "fr": "Informations générales", + "xloc": [ + "default.handlebars->23->365" + ] }, { - "xloc": [ "default.handlebars->17->99" ], "en": "Generate New Tokens", "cs": "Generovat nové tokeny", - "fr": "Générer de nouveaux jetons" + "fr": "Générer de nouveaux jetons", + "xloc": [ + "default.handlebars->23->99" + ] }, { - "xloc": [ "default.handlebars->17->757" ], "en": "Georgian", - "fr": "Géorgien" + "fr": "Géorgien", + "xloc": [ + "default.handlebars->23->757" + ] }, { - "xloc": [ "default.handlebars->17->759" ], - "en": "German (Austria)" + "en": "German (Austria)", + "xloc": [ + "default.handlebars->23->759" + ] }, { - "xloc": [ "default.handlebars->17->760" ], - "en": "German (Germany)" + "en": "German (Germany)", + "xloc": [ + "default.handlebars->23->760" + ] }, { - "xloc": [ "default.handlebars->17->761" ], - "en": "German (Liechtenstein)" + "en": "German (Liechtenstein)", + "xloc": [ + "default.handlebars->23->761" + ] }, { - "xloc": [ "default.handlebars->17->762" ], - "en": "German (Luxembourg)" + "en": "German (Luxembourg)", + "xloc": [ + "default.handlebars->23->762" + ] }, { - "xloc": [ "default.handlebars->17->758" ], - "en": "German (Standard)" + "en": "German (Standard)", + "xloc": [ + "default.handlebars->23->758" + ] }, { - "xloc": [ "default.handlebars->17->763" ], - "en": "German (Switzerland)" + "en": "German (Switzerland)", + "xloc": [ + "default.handlebars->23->763" + ] }, { - "xloc": [ "default.handlebars->17->495" ], - "en": "Get MQTT login credentials for this device." + "en": "Get MQTT login credentials for this device.", + "xloc": [ + "default.handlebars->23->495" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3noMeshFound->p3createMeshLink2->1->0", "default.handlebars->container->column_l->p2->p2noMeshFound->p2createMeshLink2->1->0" ], "en": "Get started here!", - "fr": "Commencez ici!" + "fr": "Commencez ici!", + "xloc": [ + "default.handlebars->container->column_l->p2->p2noMeshFound->p2createMeshLink2->1->0", + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3noMeshFound->p3createMeshLink2->1->0" + ] }, { - "xloc": [ "error404-mobile.handlebars->container->page_content->column_l->5->0->0", "error404.handlebars->container->column_l->5->0->0" ], "en": "Go to main site", - "fr": "Aller sur le site principal" + "fr": "Aller sur le site principal", + "xloc": [ + "error404.handlebars->container->column_l->5->0->0", + "error404-mobile.handlebars->container->page_content->column_l->5->0->0" + ] }, { - "xloc": [ "default.handlebars->17->919" ], "en": "Good", - "fr": "Bien" + "fr": "Bien", + "xloc": [ + "default.handlebars->23->920" + ] }, { - "xloc": [ "login-mobile.handlebars->5->21", "login.handlebars->5->21", "login-mobile.handlebars->5->25", "login.handlebars->5->25" ], "en": "Good Password", "cs": "Dobré heslo", - "fr": "Bon mot de passe" + "fr": "Bon mot de passe", + "xloc": [ + "login.handlebars->5->21", + "login.handlebars->5->25", + "login-mobile.handlebars->5->21", + "login-mobile.handlebars->5->25" + ] }, { - "xloc": [ "default.handlebars->17->764" ], "en": "Greek", - "fr": "Grec" + "fr": "Grec", + "xloc": [ + "default.handlebars->23->764" + ] }, { - "xloc": [ "default.handlebars->17->391", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1", "default-mobile.handlebars->9->131" ], "en": "Group", "cs": "Skupina", - "fr": "Groupe" + "fr": "Groupe", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1", + "default.handlebars->23->391", + "default-mobile.handlebars->9->131" + ] }, { - "xloc": [ "default.handlebars->17->357" ], "en": "Group Action", "cs": "Akce skupiny", - "fr": "Action de groupe" + "fr": "Action de groupe", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", + "default.handlebars->23->357" + ] }, { - "xloc": [ "default.handlebars->17->1038" ], "en": "Group permissions for user {0}.", - "fr": "Autorisations de groupe pour l'utilisateur {0}." + "fr": "Autorisations de groupe pour l'utilisateur {0}.", + "xloc": [ + "default.handlebars->23->1039" + ] }, { - "xloc": [ "default-mobile.handlebars->9->223" ], "en": "Group1, Group2, Group3", "cs": "Skupina1, Skupina2, Skupina3", - "fr": "Groupe1, Groupe2, Groupe3" + "fr": "Groupe1, Groupe2, Groupe3", + "xloc": [ + "default-mobile.handlebars->9->223" + ] }, { - "xloc": [ "default.handlebars->17->765" ], "en": "Gujurati", - "fr": "Gujarati" + "fr": "Gujarati", + "xloc": [ + "default.handlebars->23->765" + ] }, { - "xloc": [ "default.handlebars->17->766" ], "en": "Haitian", - "fr": "Haïtien" + "fr": "Haïtien", + "xloc": [ + "default.handlebars->23->766" + ] }, { - "xloc": [ ], "en": "Hang up", - "fr": "Raccrocher" + "fr": "Raccrocher", + "xloc": [ + "messenger.handlebars->xtop->1" + ] }, { - "xloc": [ "default.handlebars->17->663" ], "en": "Hard disconnect agent", - "fr": "Déconnexion forcée de l'agent" + "fr": "Déconnexion forcée de l'agent", + "xloc": [ + "default.handlebars->23->663" + ] }, { - "xloc": [ "default.handlebars->17->767" ], - "en": "Hebrew" + "en": "Hebrew", + "xloc": [ + "default.handlebars->23->767" + ] }, { - "xloc": [ "default-mobile.handlebars->9->108", "default.handlebars->17->5", "default.handlebars->17->322", "default-mobile.handlebars->9->101" ], "en": "Hibernating", - "fr": "Hibernation" + "fr": "Hibernation", + "xloc": [ + "default.handlebars->23->5", + "default.handlebars->23->322", + "default-mobile.handlebars->9->101", + "default-mobile.handlebars->9->108" + ] }, { - "xloc": [ "default.handlebars->17->768" ], - "en": "Hindi" + "en": "Hindi", + "xloc": [ + "default.handlebars->23->768" + ] }, { - "xloc": [ "login.handlebars->5->1", "login-mobile.handlebars->5->1" ], "en": "Hold on, reset mail sent.", - "fr": "Attends, le courrier est envoyé." + "fr": "Attends, le courrier est envoyé.", + "xloc": [ + "login.handlebars->5->1", + "login-mobile.handlebars->5->1" + ] }, { - "xloc": [ "default-mobile.handlebars->9->260", "default.handlebars->17->635" ], - "en": "Holding 1 entrie for copy" + "en": "Holding 1 entrie for copy", + "xloc": [ + "default.handlebars->23->635", + "default-mobile.handlebars->9->260" + ] }, { - "xloc": [ "default-mobile.handlebars->9->264", "default.handlebars->17->639" ], - "en": "Holding 1 entrie for move" + "en": "Holding 1 entrie for move", + "xloc": [ + "default.handlebars->23->639", + "default-mobile.handlebars->9->264" + ] }, { - "xloc": [ "default.handlebars->17->633", "default-mobile.handlebars->9->258" ], - "en": "Holding {0} entries for copy" + "en": "Holding {0} entries for copy", + "xloc": [ + "default.handlebars->23->633", + "default-mobile.handlebars->9->258" + ] }, { - "xloc": [ "default.handlebars->17->637", "default-mobile.handlebars->9->262" ], - "en": "Holding {0} entries for move" + "en": "Holding {0} entries for move", + "xloc": [ + "default.handlebars->23->637", + "default-mobile.handlebars->9->262" + ] }, { - "xloc": [ "default.handlebars->17->1114", "default-mobile.handlebars->9->85" ], - "en": "Holding {0} entrie{1} for {2}" + "en": "Holding {0} entrie{1} for {2}", + "xloc": [ + "default.handlebars->23->1115", + "default-mobile.handlebars->9->85" + ] }, { - "xloc": [ "default.handlebars->17->203", "default.handlebars->17->396", "default.handlebars->17->394", "default-mobile.handlebars->9->220", "default.handlebars->17->393", "default-mobile.handlebars->9->134", "default-mobile.handlebars->9->136", "default-mobile.handlebars->9->133", "default.handlebars->17->563" ], - "en": "Hostname" + "en": "Hostname", + "xloc": [ + "default.handlebars->23->203", + "default.handlebars->23->393", + "default.handlebars->23->394", + "default.handlebars->23->396", + "default.handlebars->23->563", + "default-mobile.handlebars->9->133", + "default-mobile.handlebars->9->134", + "default-mobile.handlebars->9->136", + "default-mobile.handlebars->9->220" + ] }, { - "xloc": [ "default.handlebars->17->942" ], - "en": "Hostname Sync" + "en": "Hostname Sync", + "xloc": [ + "default.handlebars->23->943" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->75->1->3", "terms-mobile.handlebars->container->page_content->column_l->75->1->3" ], - "en": "http://creativecommons.org/licenses/by/2.0/uk/legalcode" + "en": "http://creativecommons.org/licenses/by/2.0/uk/legalcode", + "xloc": [ + "terms.handlebars->container->column_l->75->1->3", + "terms-mobile.handlebars->container->page_content->column_l->75->1->3" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->47->1->1", "terms-mobile.handlebars->container->page_content->column_l->47->1->1" ], - "en": "http://jquery.com/" + "en": "http://jquery.com/", + "xloc": [ + "terms.handlebars->container->column_l->47->1->1", + "terms-mobile.handlebars->container->page_content->column_l->47->1->1" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->53->1->1", "terms-mobile.handlebars->container->page_content->column_l->53->1->1" ], - "en": "http://jqueryui.com/" + "en": "http://jqueryui.com/", + "xloc": [ + "terms.handlebars->container->column_l->53->1->1", + "terms-mobile.handlebars->container->page_content->column_l->53->1->1" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->25->1->0", "terms-mobile.handlebars->container->page_content->column_l->25->1->0" ], - "en": "http://www.openssl.org/source/license.html" + "en": "http://www.openssl.org/source/license.html", + "xloc": [ + "terms.handlebars->container->column_l->25->1->0", + "terms-mobile.handlebars->container->page_content->column_l->25->1->0" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->75->1->1", "terms-mobile.handlebars->container->page_content->column_l->75->1->1", "terms-mobile.handlebars->container->page_content->column_l->75->1->5", "terms.handlebars->container->column_l->75->1->5" ], - "en": "http://www.webtoolkit.info/javascript-base64.html" + "en": "http://www.webtoolkit.info/javascript-base64.html", + "xloc": [ + "terms.handlebars->container->column_l->75->1->1", + "terms.handlebars->container->column_l->75->1->5", + "terms-mobile.handlebars->container->page_content->column_l->75->1->1", + "terms-mobile.handlebars->container->page_content->column_l->75->1->5" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->61->1->0", "terms.handlebars->container->column_l->61->1->0" ], - "en": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt" + "en": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt", + "xloc": [ + "terms.handlebars->container->column_l->61->1->0", + "terms-mobile.handlebars->container->page_content->column_l->61->1->0" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->67->1->0", "terms-mobile.handlebars->container->page_content->column_l->67->1->0" ], - "en": "https://github.com/ryrych/rcarousel/blob/master/widget/license" + "en": "https://github.com/ryrych/rcarousel/blob/master/widget/license", + "xloc": [ + "terms.handlebars->container->column_l->67->1->0", + "terms-mobile.handlebars->container->page_content->column_l->67->1->0" + ] }, { - "xloc": [ "default.handlebars->17->769" ], - "en": "Hungarian" + "en": "Hungarian", + "xloc": [ + "default.handlebars->23->769" + ] }, { - "xloc": [ ], "en": "HW Connect", - "fr": "Connexion AMT" + "fr": "Connexion AMT", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1hspan", + "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2hspan", + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3" + ] }, { - "xloc": [ "default.handlebars->17->770" ], "en": "Icelandic", - "fr": "Islandais" + "fr": "Islandais", + "xloc": [ + "default.handlebars->23->770" + ] }, { - "xloc": [ "default.handlebars->17->561", "default-mobile.handlebars->9->218" ], "en": "Icon Selection", - "fr": "Sélection de l'icôn" + "fr": "Sélection de l'icôn", + "xloc": [ + "default.handlebars->23->561", + "default-mobile.handlebars->9->218" + ] }, { - "xloc": [ "default.handlebars->17->1166" ], - "en": "id, name, email, creation, lastlogin, groups, authfactors" + "en": "id, name, email, creation, lastlogin, groups, authfactors", + "xloc": [ + "default.handlebars->23->1166" + ] }, { - "xloc": [ "default.handlebars->17->38" ], "en": "Identifier", - "fr": "Identifiant" + "fr": "Identifiant", + "xloc": [ + "default.handlebars->23->38" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->1" ], "en": "Image Encoding", - "cs": "Kódovaní obrazu" + "cs": "Kódovaní obrazu", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->1" + ] }, { - "xloc": [ "default.handlebars->17->771" ], - "en": "Indonesian" + "en": "Indonesian", + "xloc": [ + "default.handlebars->23->771" + ] }, { - "xloc": [ "default.handlebars->contextMenu->cxinfo->0" ], "en": "Information", - "fr": "Information" + "fr": "Information", + "xloc": [ + "default.handlebars->contextMenu->cxinfo->0" + ] }, { - "xloc": [ ], "en": "Information about current core running on this agent", - "fr": "Informations sur le noyau en cours d'exécution sur cet agent" + "fr": "Informations sur le noyau en cours d'exécution sur cet agent", + "xloc": [ + "default.handlebars->container->column_l->p15->consoleTable->1->0->1->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->9->DeskControlSpan", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3->11->DeskControlSpan" ], "en": "Input", - "cs": "Vstup" + "cs": "Vstup", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->9->DeskControlSpan", + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3->11->DeskControlSpan" + ] }, { - "xloc": [ "default.handlebars->17->980" ], "en": "Install", "cs": "Instalace", - "fr": "Installer" + "fr": "Installer", + "xloc": [ + "default.handlebars->23->981" + ] }, { - "xloc": [ "default.handlebars->17->84" ], - "en": "Install Google Authenticator or a compatible application and scan the barcode, use this link or enter the secret. Then, enter the current 6 digit token below to activate 2-Step login." + "en": "Install Google Authenticator or a compatible application and scan the barcode, use this link or enter the secret. Then, enter the current 6 digit token below to activate 2-Step login.", + "xloc": [ + "default.handlebars->23->84" + ] }, { - "xloc": [ "default-mobile.handlebars->9->14" ], - "en": "Install Google Authenticator or a compatible application, use this link or enter the secret below. Then, enter the current 6 digit token to activate 2-Step login." + "en": "Install Google Authenticator or a compatible application, use this link or enter the secret below. Then, enter the current 6 digit token to activate 2-Step login.", + "xloc": [ + "default-mobile.handlebars->9->14" + ] }, { - "xloc": [ "default.handlebars->17->972" ], "en": "Install CIRA", - "fr": "Installer CIRA" + "fr": "Installer CIRA", + "xloc": [ + "default.handlebars->23->973" + ] }, { - "xloc": [ "default.handlebars->17->974" ], - "en": "Install local" + "en": "Install local", + "xloc": [ + "default.handlebars->23->975" + ] }, { - "xloc": [ "default.handlebars->17->284", "default.handlebars->17->262" ], "en": "Installation Type", - "cs": "Typ instalace" + "cs": "Typ instalace", + "xloc": [ + "default.handlebars->23->262", + "default.handlebars->23->284" + ] }, { - "xloc": [ "default.handlebars->17->605", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ], - "en": "Intel (F10 = ESC+[OM)" + "en": "Intel (F10 = ESC+[OM)", + "xloc": [ + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons", + "default.handlebars->23->605" + ] }, { - "xloc": [ "default.handlebars->17->1278", "default.handlebars->17->1262" ], - "en": "Intel AMT" + "en": "Intel AMT", + "xloc": [ + "default.handlebars->23->1262", + "default.handlebars->23->1278" + ] }, { - "xloc": [ "default.handlebars->17->120" ], - "en": "Intel AMT CIRA connected" + "en": "Intel AMT CIRA connected", + "xloc": [ + "default.handlebars->23->120" + ] }, { - "xloc": [ "default.handlebars->17->124" ], - "en": "Intel AMT CIRA disconnected" + "en": "Intel AMT CIRA disconnected", + "xloc": [ + "default.handlebars->23->124" + ] }, { - "xloc": [ "default.handlebars->17->119" ], "en": "Intel AMT detected", - "fr": "Intel AMT détecté" + "fr": "Intel AMT détecté", + "xloc": [ + "default.handlebars->23->119" + ] }, { - "xloc": [ "default.handlebars->17->440" ], - "en": "Intel AMT is activated in Admin Control Mode" + "en": "Intel AMT is activated in Admin Control Mode", + "xloc": [ + "default.handlebars->23->440" + ] }, { - "xloc": [ "default.handlebars->17->438" ], - "en": "Intel AMT is activated in Client Control Mode" + "en": "Intel AMT is activated in Client Control Mode", + "xloc": [ + "default.handlebars->23->438" + ] }, { - "xloc": [ "default.handlebars->17->442" ], - "en": "Intel AMT is setup with TLS network security" + "en": "Intel AMT is setup with TLS network security", + "xloc": [ + "default.handlebars->23->442" + ] }, { - "xloc": [ "default.handlebars->17->123" ], "en": "Intel AMT not detected", - "fr": "Intel AMT non détecté" + "fr": "Intel AMT non détecté", + "xloc": [ + "default.handlebars->23->123" + ] }, { - "xloc": [ "default.handlebars->17->215" ], - "en": "Intel AMT will need to be set with a Trusted FQDN in MEBx or have a wired LAN on the network:" + "en": "Intel AMT will need to be set with a Trusted FQDN in MEBx or have a wired LAN on the network:", + "xloc": [ + "default.handlebars->23->215" + ] }, { - "xloc": [ "default.handlebars->17->604" ], - "en": "Intel ASCII" + "en": "Intel ASCII", + "xloc": [ + "default.handlebars->23->604" + ] }, { - "xloc": [ "default.handlebars->17->449" ], - "en": "Intel® Active Management Technology" + "en": "Intel® Active Management Technology", + "xloc": [ + "default.handlebars->23->449" + ] }, { - "xloc": [ "default-mobile.handlebars->9->184", "default.handlebars->17->450", "default.handlebars->17->959", "default.handlebars->17->967", "default.handlebars->17->368", "default-mobile.handlebars->9->120", "default-mobile.handlebars->9->189", "default.handlebars->17->466" ], - "en": "Intel® AMT" + "en": "Intel® AMT", + "xloc": [ + "default.handlebars->23->368", + "default.handlebars->23->450", + "default.handlebars->23->466", + "default.handlebars->23->960", + "default.handlebars->23->968", + "default-mobile.handlebars->9->120", + "default-mobile.handlebars->9->184", + "default-mobile.handlebars->9->189" + ] }, { - "xloc": [ "default.handlebars->17->216", "default.handlebars->17->213" ], - "en": "Intel® AMT activation" + "en": "Intel® AMT activation", + "xloc": [ + "default.handlebars->23->213", + "default.handlebars->23->216" + ] }, { - "xloc": [ "default.handlebars->17->464", "default-mobile.handlebars->9->188" ], - "en": "Intel® AMT CIRA" + "en": "Intel® AMT CIRA", + "xloc": [ + "default.handlebars->23->464", + "default-mobile.handlebars->9->188" + ] }, { - "xloc": [ "default.handlebars->17->336", "default.handlebars->17->150", "default.handlebars->17->463" ], - "en": "Intel® AMT CIRA is connected and ready for use." + "en": "Intel® AMT CIRA is connected and ready for use.", + "xloc": [ + "default.handlebars->23->150", + "default.handlebars->23->336", + "default.handlebars->23->463" + ] }, { - "xloc": [ "default-mobile.handlebars->9->5", "default.handlebars->17->12" ], - "en": "Intel® AMT Connected" + "en": "Intel® AMT Connected", + "xloc": [ + "default.handlebars->23->12", + "default-mobile.handlebars->9->5" + ] }, { - "xloc": [ "default.handlebars->17->500", "default-mobile.handlebars->9->198", "default.handlebars->17->499" ], - "en": "Intel® AMT connected" + "en": "Intel® AMT connected", + "xloc": [ + "default.handlebars->23->499", + "default.handlebars->23->500", + "default-mobile.handlebars->9->198" + ] }, { - "xloc": [ "default.handlebars->17->884" ], - "en": "Intel® AMT desktop and serial events." + "en": "Intel® AMT desktop and serial events.", + "xloc": [ + "default.handlebars->23->885" + ] }, { - "xloc": [ "default-mobile.handlebars->9->199", "default.handlebars->17->502", "default.handlebars->17->501" ], - "en": "Intel® AMT detected" + "en": "Intel® AMT detected", + "xloc": [ + "default.handlebars->23->501", + "default.handlebars->23->502", + "default-mobile.handlebars->9->199" + ] }, { - "xloc": [ "default.handlebars->17->465" ], - "en": "Intel® AMT is routable and ready for use." + "en": "Intel® AMT is routable and ready for use.", + "xloc": [ + "default.handlebars->23->465" + ] }, { - "xloc": [ "default.handlebars->17->338", "default.handlebars->17->152" ], - "en": "Intel® AMT is routable." + "en": "Intel® AMT is routable.", + "xloc": [ + "default.handlebars->23->152", + "default.handlebars->23->338" + ] }, { - "xloc": [ "default-mobile.handlebars->9->56" ], - "en": "Intel® AMT only" + "en": "Intel® AMT only", + "xloc": [ + "default-mobile.handlebars->9->56" + ] }, { - "xloc": [ "default.handlebars->17->935", "default.handlebars->17->913", "default-mobile.handlebars->9->271" ], - "en": "Intel® AMT only, no agent" + "en": "Intel® AMT only, no agent", + "xloc": [ + "default.handlebars->23->914", + "default.handlebars->23->936", + "default-mobile.handlebars->9->271" + ] }, { - "xloc": [ "default.handlebars->17->998" ], - "en": "Intel® AMT Policy" + "en": "Intel® AMT Policy", + "xloc": [ + "default.handlebars->23->999" + ] }, { - "xloc": [ "player.htm->3->14" ], - "en": "Intel® AMT Redirection" + "en": "Intel® AMT Redirection", + "xloc": [ + "player.htm->3->14" + ] }, { - "xloc": [ "default.handlebars->17->454" ], - "en": "Intel® AMT Tag" + "en": "Intel® AMT Tag", + "xloc": [ + "default.handlebars->23->454" + ] }, { - "xloc": [ "player.htm->3->13" ], - "en": "Intel® AMT WSMAN" + "en": "Intel® AMT WSMAN", + "xloc": [ + "player.htm->3->13" + ] }, { - "xloc": [ "default.handlebars->17->448", "default-mobile.handlebars->9->183" ], - "en": "Intel® ME" + "en": "Intel® ME", + "xloc": [ + "default.handlebars->23->448", + "default-mobile.handlebars->9->183" + ] }, { - "xloc": [ "default.handlebars->17->452", "default-mobile.handlebars->9->185" ], - "en": "Intel® SM" + "en": "Intel® SM", + "xloc": [ + "default.handlebars->23->452", + "default-mobile.handlebars->9->185" + ] }, { - "xloc": [ "default.handlebars->17->451" ], - "en": "Intel® Standard Manageability" + "en": "Intel® Standard Manageability", + "xloc": [ + "default.handlebars->23->451" + ] }, { - "xloc": [ "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevAmt" ], - "en": "Intel® AMT" + "en": "Intel® AMT", + "xloc": [ + "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevAmt" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p14->p14title->5" ], - "en": "Intel® AMT -" + "en": "Intel® AMT -", + "xloc": [ + "default.handlebars->container->column_l->p14->p14title->5" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->1", "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->1" ], - "en": "Intel® AMT Hardware KVM" + "en": "Intel® AMT Hardware KVM", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->1", + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p12->p12warning->3", "default.handlebars->container->column_l->p11->p11warning->3" ], - "en": "Intel® AMT Redirection port or KVM feature is disabled" + "en": "Intel® AMT Redirection port or KVM feature is disabled", + "xloc": [ + "default.handlebars->container->column_l->p11->p11warning->3", + "default.handlebars->container->column_l->p12->p12warning->3" + ] }, { - "xloc": [ "default.handlebars->17->586" ], - "en": "Interactive" + "en": "Interactive", + "xloc": [ + "default.handlebars->23->586" + ] }, { - "xloc": [ "default.handlebars->17->287", "default.handlebars->17->265" ], - "en": "Interactive only" + "en": "Interactive only", + "xloc": [ + "default.handlebars->23->265", + "default.handlebars->23->287" + ] }, { - "xloc": [ "default.handlebars->17->484" ], "en": "Interfaces", - "fr": "Interfaces" + "fr": "Interfaces", + "xloc": [ + "default.handlebars->23->484" + ] }, { - "xloc": [ "default.handlebars->17->772" ], "en": "Inuktitut", - "fr": "Inuktitut" + "fr": "Inuktitut", + "xloc": [ + "default.handlebars->23->772" + ] }, { - "xloc": [ "login-mobile.handlebars->5->5", "login.handlebars->5->5" ], - "en": "Invalid account creation token." + "en": "Invalid account creation token.", + "xloc": [ + "login.handlebars->5->5", + "login-mobile.handlebars->5->5" + ] }, { - "xloc": [ "login-mobile.handlebars->5->8", "login.handlebars->5->8" ], - "en": "Invalid email." + "en": "Invalid email.", + "xloc": [ + "login.handlebars->5->8", + "login-mobile.handlebars->5->8" + ] }, { - "xloc": [ "default.handlebars->17->1159", "default.handlebars->17->1157" ], - "en": "Invalid JSON file format." + "en": "Invalid JSON file format.", + "xloc": [ + "default.handlebars->23->1157", + "default.handlebars->23->1159" + ] }, { - "xloc": [ "default.handlebars->17->1155" ], - "en": "Invalid JSON file: {0}." + "en": "Invalid JSON file: {0}.", + "xloc": [ + "default.handlebars->23->1155" + ] }, { - "xloc": [ "login-mobile.handlebars->5->10", "login.handlebars->5->10" ], - "en": "Invalid token, try again." + "en": "Invalid token, try again.", + "xloc": [ + "login.handlebars->5->10", + "login-mobile.handlebars->5->10" + ] }, { - "xloc": [ "default.handlebars->17->136" ], "en": "Invitation Link ({0})", - "cs": "Link pro pozvání ({0})" + "cs": "Link pro pozvání ({0})", + "xloc": [ + "default.handlebars->23->136" + ] }, { - "xloc": [ "default.handlebars->17->244" ], "en": "Invitation Type", - "fr": "Type d'invitation" + "fr": "Type d'invitation", + "xloc": [ + "default.handlebars->23->244" + ] }, { - "xloc": [ "default.handlebars->17->200", "default.handlebars->17->982", "default.handlebars->17->277" ], "en": "Invite", "cs": "Pozvat", - "fr": "Inviter" + "fr": "Inviter", + "xloc": [ + "default.handlebars->23->200", + "default.handlebars->23->277", + "default.handlebars->23->983" + ] }, { - "xloc": [ "default.handlebars->17->268" ], "en": "Invite someone to install the mesh agent by sharing an invitation link. This link points the user to installation instructions for the \\\"{0}\\\" device group. The link is public and no account for this server is needed.", "cs": "Pozvěte někoho k instalaci agenta pomocí sdíleného odkazu. Tento link obsahuje instrukce pro instalaci do skupiny \\\"{0}\\\". Link je veřejný a protistrana nepotřebuje žádný účet na tomto serveru.", - "fr": "Invitez quelqu'un à installer l'agent de maillage en partageant un lien d'invitation. Ce lien renvoie l'utilisateur aux instructions d'installation du groupe de périphériques \\\"{0}\\\". Le lien est public et aucun compte n'est requis pour ce serveur." + "fr": "Invitez quelqu'un à installer l'agent de maillage en partageant un lien d'invitation. Ce lien renvoie l'utilisateur aux instructions d'installation du groupe de périphériques \\\"{0}\\\". Le lien est public et aucun compte n'est requis pour ce serveur.", + "xloc": [ + "default.handlebars->23->268" + ] }, { - "xloc": [ "default.handlebars->17->199", "default.handlebars->17->981" ], "en": "Invite someone to install the mesh agent on this mesh.", "cs": "Pozvat kohokoliv k instalaci agenta pro vzdálené ovládání.", - "fr": "Invitez quelqu'un à installer l'agent de maillage sur ce maillage." + "fr": "Invitez quelqu'un à installer l'agent de maillage sur ce maillage.", + "xloc": [ + "default.handlebars->23->199", + "default.handlebars->23->982" + ] }, { - "xloc": [ "default.handlebars->17->245" ], "en": "Invite someone to install the mesh agent. An email with be sent with the link to the mesh agent installation for the \\\"{0}\\\" device group.", "cs": "Pozvěte někoho k instalaci agenta. Emailem bude zaslán link s adresou agenta pro skupinu \\\"{0}\\\".", - "fr": "Invitez quelqu'un à installer l'agent de maillage. Un email doit être envoyé avec le lien vers l’installation de l’agent de maillage pour le groupe de périphériques \\\"{0}\\\"." + "fr": "Invitez quelqu'un à installer l'agent de maillage. Un email doit être envoyé avec le lien vers l’installation de l’agent de maillage pour le groupe de périphériques \\\"{0}\\\".", + "xloc": [ + "default.handlebars->23->245" + ] }, { - "xloc": [ "login-mobile.handlebars->5->16", "login.handlebars->5->16" ], - "en": "IP address blocked, try again later." + "en": "IP address blocked, try again later.", + "xloc": [ + "login.handlebars->5->16", + "login-mobile.handlebars->5->16" + ] }, { - "xloc": [ "default.handlebars->17->218" ], - "en": "IP Range" + "en": "IP Range", + "xloc": [ + "default.handlebars->23->218" + ] }, { - "xloc": [ "default.handlebars->17->64" ], - "en": "IPv4 address" + "en": "IPv4 address", + "xloc": [ + "default.handlebars->23->64" + ] }, { - "xloc": [ "default.handlebars->17->68" ], - "en": "IPv4 gateway" + "en": "IPv4 gateway", + "xloc": [ + "default.handlebars->23->68" + ] }, { - "xloc": [ "default.handlebars->17->66" ], - "en": "IPv4 mask" + "en": "IPv4 mask", + "xloc": [ + "default.handlebars->23->66" + ] }, { - "xloc": [ "default.handlebars->17->773" ], "en": "Irish", - "fr": "Irlandais" + "fr": "Irlandais", + "xloc": [ + "default.handlebars->23->773" + ] }, { - "xloc": [ "default.handlebars->17->774" ], "en": "Italian (Standard)", - "fr": "Italien (standard)" + "fr": "Italien (standard)", + "xloc": [ + "default.handlebars->23->774" + ] }, { - "xloc": [ "default.handlebars->17->775" ], "en": "Italian (Switzerland)", - "fr": "Italien (Suisse)" + "fr": "Italien (Suisse)", + "xloc": [ + "default.handlebars->23->775" + ] }, { - "xloc": [ "default.handlebars->17->776" ], "en": "Japanese", - "fr": "Japonais" + "fr": "Japonais", + "xloc": [ + "default.handlebars->23->776" + ] }, { - "xloc": [ "default.handlebars->17->1163", "default.handlebars->17->1125" ], "en": "JSON Format", - "fr": "Format JSON" + "fr": "Format JSON", + "xloc": [ + "default.handlebars->23->1125", + "default.handlebars->23->1163" + ] }, { - "xloc": [ "default.handlebars->17->777" ], - "en": "Kannada" + "en": "Kannada", + "xloc": [ + "default.handlebars->23->777" + ] }, { - "xloc": [ "default.handlebars->17->778" ], - "en": "Kashmiri" + "en": "Kashmiri", + "xloc": [ + "default.handlebars->23->778" + ] }, { - "xloc": [ "default.handlebars->17->779" ], - "en": "Kazakh" + "en": "Kazakh", + "xloc": [ + "default.handlebars->23->779" + ] }, { - "xloc": [ "default.handlebars->17->587" ], - "en": "KernelDriver" + "en": "KernelDriver", + "xloc": [ + "default.handlebars->23->587" + ] }, { - "xloc": [ "default.handlebars->17->670", "default.handlebars->17->673" ], "en": "Key Name", - "fr": "Nom de la clé" + "fr": "Nom de la clé", + "xloc": [ + "default.handlebars->23->670", + "default.handlebars->23->673" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3" ], "en": "Keyboard", "cs": "Klávesnice", - "fr": "Clavier" + "fr": "Clavier", + "xloc": [ + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3" + ] }, { - "xloc": [ "default.handlebars->17->780" ], - "en": "Khmer" + "en": "Khmer", + "xloc": [ + "default.handlebars->23->780" + ] }, { - "xloc": [ "default.handlebars->17->781" ], - "en": "Kirghiz" + "en": "Kirghiz", + "xloc": [ + "default.handlebars->23->781" + ] }, { - "xloc": [ "default.handlebars->17->782" ], - "en": "Klingon" + "en": "Klingon", + "xloc": [ + "default.handlebars->23->782" + ] }, { - "xloc": [ "default.handlebars->17->783" ], "en": "Korean", - "fr": "Coréen" + "fr": "Coréen", + "xloc": [ + "default.handlebars->23->783" + ] }, { - "xloc": [ "default.handlebars->17->784" ], "en": "Korean (North Korea)", - "fr": "Coréen (Corée du Nord)" + "fr": "Coréen (Corée du Nord)", + "xloc": [ + "default.handlebars->23->784" + ] }, { - "xloc": [ "default.handlebars->17->785" ], "en": "Korean (South Korea)", - "fr": "Coréen (Corée du Sud)" + "fr": "Coréen (Corée du Sud)", + "xloc": [ + "default.handlebars->23->785" + ] }, { - "xloc": [ "default.handlebars->17->878" ], "en": "Language", "cs": "Jazyk", - "fr": "Langages" + "fr": "Langages", + "xloc": [ + "default.handlebars->23->878" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize->sizeselect->5" ], "en": "Large", "cs": "Velký", - "fr": "Grand" + "fr": "Grand", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize->sizeselect->5" + ] }, { - "xloc": [ "default.handlebars->17->576" ], "en": "Large Focus", - "fr": "Grande mise au point" + "fr": "Grande mise au point", + "xloc": [ + "default.handlebars->23->576" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p41->3->1->p41limitdropdown->1" ], "en": "Last 100", "cs": "Posledních 100", - "fr": "100 dernières" + "fr": "100 dernières", + "xloc": [ + "default.handlebars->container->column_l->p41->3->1->p41limitdropdown->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p41->3->1->p41limitdropdown->7", "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->9", "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->9", "default.handlebars->container->column_l->p31->5->1->0->5->p31limitdropdown->9" ], "en": "Last 1000", "cs": "Posledních 1000", - "fr": "1000 derniers" + "fr": "1000 derniers", + "xloc": [ + "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->9", + "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->9", + "default.handlebars->container->column_l->p31->5->1->0->5->p31limitdropdown->9", + "default.handlebars->container->column_l->p41->3->1->p41limitdropdown->7" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->3", "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->3", "default.handlebars->container->column_l->p31->5->1->0->5->p31limitdropdown->3" ], "en": "Last 120", "cs": "Posledních 120", - "fr": "120 dernières" + "fr": "120 dernières", + "xloc": [ + "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->3", + "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->3", + "default.handlebars->container->column_l->p31->5->1->0->5->p31limitdropdown->3" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->5", "default.handlebars->container->column_l->p41->3->1->p41limitdropdown->3", "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->5", "default.handlebars->container->column_l->p31->5->1->0->5->p31limitdropdown->5" ], "en": "Last 250", "cs": "Posledních 250", - "fr": "250 dernières" + "fr": "250 dernières", + "xloc": [ + "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->5", + "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->5", + "default.handlebars->container->column_l->p31->5->1->0->5->p31limitdropdown->5", + "default.handlebars->container->column_l->p41->3->1->p41limitdropdown->3" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p40->3->1->p40time->1" ], "en": "Last 3 hours", - "fr": "3 dernières heures" + "fr": "3 dernières heures", + "xloc": [ + "default.handlebars->container->column_l->p40->3->1->p40time->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p40->3->1->p40time->9" ], "en": "Last 30 days", - "fr": "30 derniers jours" + "fr": "30 derniers jours", + "xloc": [ + "default.handlebars->container->column_l->p40->3->1->p40time->9" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p41->3->1->p41limitdropdown->5", "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->7", "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->7", "default.handlebars->container->column_l->p31->5->1->0->5->p31limitdropdown->7" ], "en": "Last 500", "cs": "Posledních 500", - "fr": "500 dernières" + "fr": "500 dernières", + "xloc": [ + "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->7", + "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->7", + "default.handlebars->container->column_l->p31->5->1->0->5->p31limitdropdown->7", + "default.handlebars->container->column_l->p41->3->1->p41limitdropdown->5" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->1", "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->1", "default.handlebars->container->column_l->p31->5->1->0->5->p31limitdropdown->1" ], "en": "Last 60", "cs": "Posledních 60", - "fr": "60 dernières" + "fr": "60 dernières", + "xloc": [ + "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->1", + "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->1", + "default.handlebars->container->column_l->p31->5->1->0->5->p31limitdropdown->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p40->3->1->p40time->3" ], "en": "Last 8 hours", "cs": "Posledních 8 hodin", - "fr": "8 dernières heures" + "fr": "8 dernières heures", + "xloc": [ + "default.handlebars->container->column_l->p40->3->1->p40time->3" + ] }, { - "xloc": [ "default.handlebars->17->1132" ], "en": "Last Access", - "fr": "Dernier accès" + "fr": "Dernier accès", + "xloc": [ + "default.handlebars->23->1132" + ] }, { - "xloc": [ "default.handlebars->17->55", "default.handlebars->17->53", "default.handlebars->17->52" ], "en": "Last agent address", "cs": "Poslední adresa agenta", - "fr": "Dernière adresse de l'agent" + "fr": "Dernière adresse de l'agent", + "xloc": [ + "default.handlebars->23->52", + "default.handlebars->23->53", + "default.handlebars->23->55" + ] }, { - "xloc": [ "default.handlebars->17->51" ], "en": "Last agent connection", - "fr": "Dernière connexion de l'agent" + "fr": "Dernière connexion de l'agent", + "xloc": [ + "default.handlebars->23->51" + ] }, { - "xloc": [ "default.handlebars->17->1214" ], "en": "Last changed: {0}", "cs": "Poslední změna: {0}", - "fr": "Dernière modification: {0}" + "fr": "Dernière modification: {0}", + "xloc": [ + "default.handlebars->23->1214" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p40->3->1->p40time->5" ], "en": "Last day", "cs": "Poslední den", - "fr": "Dernier jour" + "fr": "Dernier jour", + "xloc": [ + "default.handlebars->container->column_l->p40->3->1->p40time->5" + ] }, { - "xloc": [ "default.handlebars->17->57" ], "en": "Last interfaces update", "cs": "Poslední změna rozhraní", - "fr": "Dernière mise à jour des interfaces" + "fr": "Dernière mise à jour des interfaces", + "xloc": [ + "default.handlebars->23->57" + ] }, { - "xloc": [ "default.handlebars->17->1210" ], "en": "Last Login", - "fr": "Dernière connexion" + "fr": "Dernière connexion", + "xloc": [ + "default.handlebars->23->1210" + ] }, { - "xloc": [ "default.handlebars->17->1142" ], - "en": "Last login: {0}" + "en": "Last login: {0}", + "xloc": [ + "default.handlebars->23->1142" + ] }, { - "xloc": [ "default.handlebars->17->505", "default.handlebars->17->47" ], "en": "Last seen:", "cs": "Naposledy spatřen:", - "fr": "Dernière connexion:" + "fr": "Dernière connexion:", + "xloc": [ + "default.handlebars->23->47", + "default.handlebars->23->505" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p40->3->1->p40time->7" ], "en": "Last week", "cs": "Poslední týden", - "fr": "Dernière semaine" + "fr": "Dernière semaine", + "xloc": [ + "default.handlebars->container->column_l->p40->3->1->p40time->7" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p42->p42tbl->1->0->6" ], "en": "Latest", - "fr": "Dernier" + "fr": "Dernier", + "xloc": [ + "default.handlebars->container->column_l->p42->p42tbl->1->0->6" + ] }, { - "xloc": [ "default.handlebars->17->75" ], "en": "Latest Version", - "fr": "Dernière version" + "fr": "Dernière version", + "xloc": [ + "default.handlebars->23->75" + ] }, { - "xloc": [ "default.handlebars->17->786" ], "en": "Latin", - "fr": "Latin" + "fr": "Latin", + "xloc": [ + "default.handlebars->23->786" + ] }, { - "xloc": [ "default.handlebars->17->787" ], - "en": "Latvian" + "en": "Latvian", + "xloc": [ + "default.handlebars->23->787" + ] }, { - "xloc": [ ], - "en": "Left bar interface" + "en": "Left bar interface", + "xloc": [ + "agentinvite.handlebars->container->topbar->uiMenuButton->uiMenu", + "default.handlebars->container->topbar->1->1->uiMenuButton->uiMenu", + "error404.handlebars->container->topbar->uiMenuButton->uiMenu", + "login.handlebars->container->topbar->uiMenuButton->uiMenu", + "terms.handlebars->container->topbar->uiMenuButton->uiMenu" + ] }, { - "xloc": [ "default.handlebars->17->1291" ], "en": "Less", - "fr": "Moins" + "fr": "Moins", + "xloc": [ + "default.handlebars->23->1292" + ] }, { - "xloc": [ "default.handlebars->17->609", "default.handlebars->17->600" ], - "en": "LF" + "en": "LF", + "xloc": [ + "default.handlebars->23->600", + "default.handlebars->23->609" + ] }, { - "xloc": [ ], - "en": "licensed under the" + "en": "licensed under the", + "xloc": [ + "terms.handlebars->container->column_l->75->1", + "terms-mobile.handlebars->container->page_content->column_l->75->1" + ] }, { - "xloc": [ "messenger.handlebars->13->5", "messenger.handlebars->13->4" ], "en": "Limit of 10 file uploads at the same time.", - "cs": "Max. 10 souběžně nahrávaných souborů." + "cs": "Max. 10 souběžně nahrávaných souborů.", + "xloc": [ + "messenger.handlebars->13->4", + "messenger.handlebars->13->5" + ] }, { - "xloc": [ "default.handlebars->17->1071", "default-mobile.handlebars->9->320" ], - "en": "Limited Input" + "en": "Limited Input", + "xloc": [ + "default.handlebars->23->1072", + "default-mobile.handlebars->9->320" + ] }, { - "xloc": [ "default-mobile.handlebars->9->295", "default.handlebars->17->1045" ], - "en": "Limited Input Only" + "en": "Limited Input Only", + "xloc": [ + "default.handlebars->23->1046", + "default-mobile.handlebars->9->295" + ] }, { - "xloc": [ "default-mobile.handlebars->9->65", "default.handlebars->17->1086", "default.handlebars->container->column_l->p42->p42tbl->1->0->4" ], "en": "Link", - "fr": "Lien" + "fr": "Lien", + "xloc": [ + "default.handlebars->container->column_l->p42->p42tbl->1->0->4", + "default.handlebars->23->1087", + "default-mobile.handlebars->9->65" + ] }, { - "xloc": [ "default.handlebars->17->255", "default.handlebars->17->269" ], "en": "Link Expiration", "cs": "Platnost linku", - "fr": "Expiration du lien" + "fr": "Expiration du lien", + "xloc": [ + "default.handlebars->23->255", + "default.handlebars->23->269" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->5->1->tlinuxtab", "agentinvite.handlebars->container->column_l->5->linuxtab->1" ], - "en": "Linux" + "en": "Linux", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->1->tlinuxtab", + "agentinvite.handlebars->container->column_l->5->linuxtab->1" + ] }, { - "xloc": [ "default.handlebars->17->280" ], - "en": "Linux / BSD" + "en": "Linux / BSD", + "xloc": [ + "default.handlebars->23->280" + ] }, { - "xloc": [ "default.handlebars->17->283" ], - "en": "Linux / BSD (UnInstall)" + "en": "Linux / BSD (UnInstall)", + "xloc": [ + "default.handlebars->23->283" + ] }, { - "xloc": [ "default-mobile.handlebars->9->145", "default.handlebars->17->405" ], - "en": "Linux 32bit" + "en": "Linux 32bit", + "xloc": [ + "default.handlebars->23->405", + "default-mobile.handlebars->9->145" + ] }, { - "xloc": [ "default.handlebars->17->406", "default-mobile.handlebars->9->146" ], - "en": "Linux 64bit" + "en": "Linux 64bit", + "xloc": [ + "default.handlebars->23->406", + "default-mobile.handlebars->9->146" + ] }, { - "xloc": [ "default-mobile.handlebars->9->150", "default.handlebars->17->410" ], - "en": "Linux ARM" + "en": "Linux ARM", + "xloc": [ + "default.handlebars->23->410", + "default-mobile.handlebars->9->150" + ] }, { - "xloc": [ "default.handlebars->17->558" ], - "en": "Linux ARM, Raspberry Pi (32bit)" + "en": "Linux ARM, Raspberry Pi (32bit)", + "xloc": [ + "default.handlebars->23->558" + ] }, { - "xloc": [ "default.handlebars->17->419", "default-mobile.handlebars->9->159" ], - "en": "Linux NoKVM x86-32bit" + "en": "Linux NoKVM x86-32bit", + "xloc": [ + "default.handlebars->23->419", + "default-mobile.handlebars->9->159" + ] }, { - "xloc": [ "default.handlebars->17->420", "default-mobile.handlebars->9->160" ], - "en": "Linux NoKVM x86-64bit" + "en": "Linux NoKVM x86-64bit", + "xloc": [ + "default.handlebars->23->420", + "default-mobile.handlebars->9->160" + ] }, { - "xloc": [ "default.handlebars->17->254" ], - "en": "Linux only" + "en": "Linux only", + "xloc": [ + "default.handlebars->23->254" + ] }, { - "xloc": [ "default.handlebars->17->415", "default-mobile.handlebars->9->155" ], - "en": "Linux Poky x86-32bit" + "en": "Linux Poky x86-32bit", + "xloc": [ + "default.handlebars->23->415", + "default-mobile.handlebars->9->155" + ] }, { - "xloc": [ "default-mobile.handlebars->9->158", "default.handlebars->17->418" ], - "en": "Linux Poky x86-64bit" + "en": "Linux Poky x86-64bit", + "xloc": [ + "default.handlebars->23->418", + "default-mobile.handlebars->9->158" + ] }, { - "xloc": [ "default.handlebars->17->555" ], - "en": "Linux x86 (32bit)" + "en": "Linux x86 (32bit)", + "xloc": [ + "default.handlebars->23->555" + ] }, { - "xloc": [ "default.handlebars->17->556" ], - "en": "Linux x86 (64bit)" + "en": "Linux x86 (64bit)", + "xloc": [ + "default.handlebars->23->556" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->3" ], "en": "List", - "fr": "Liste" + "fr": "Liste", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarViewIcons", + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->3" + ] }, { - "xloc": [ "default.handlebars->17->788" ], "en": "Lithuanian", - "fr": "Lituanien" + "fr": "Lituanien", + "xloc": [ + "default.handlebars->23->788" + ] }, { - "xloc": [ "default.handlebars->17->930", "default.handlebars->17->932", "default.handlebars->17->550", "default.handlebars->17->666", "default-mobile.handlebars->9->28" ], "en": "Loading...", - "fr": "Chargement..." + "cs": "Nahrávání...", + "fr": "Chargement...", + "xloc": [ + "default.handlebars->23->550", + "default.handlebars->23->666", + "default.handlebars->23->931", + "default.handlebars->23->933", + "default-mobile.handlebars->9->28" + ] }, { - "xloc": [ "messenger.handlebars->localVideo->1" ], "en": "Local", - "cs": "Lokální" + "cs": "Lokální", + "xloc": [ + "messenger.handlebars->localVideo->1" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog3->d3upload->d3uploadMode->1" ], - "en": "Local file upload" + "en": "Local file upload", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog3->d3upload->d3uploadMode->1" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->5->d7otherset->5" ], - "en": "Local Keyboard Map" + "en": "Local Keyboard Map", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->5->d7otherset->5" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p2->p2AccountActions->3->5", "default.handlebars->17->880" ], - "en": "Localization Settings" + "en": "Localization Settings", + "cs": "Nastavení lokalizace", + "xloc": [ + "default.handlebars->container->column_l->p2->p2AccountActions->3->5", + "default.handlebars->23->881" + ] }, { - "xloc": [ "default.handlebars->17->486" ], - "en": "Location" + "en": "Location", + "xloc": [ + "default.handlebars->23->486" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->xdevicesmap->xmapSearchResultsDlg->xmapSearchResultsBck->3" ], - "en": "Location Results" + "en": "Location Results", + "xloc": [ + "default.handlebars->container->column_l->p1->xdevicesmap->xmapSearchResultsDlg->xmapSearchResultsBck->3" + ] }, { - "xloc": [ "default.handlebars->17->1191" ], "en": "Lock Account", "cs": "Uzamknout účet", - "fr": "Verrouiller le compte" + "fr": "Verrouiller le compte", + "xloc": [ + "default.handlebars->23->1191" + ] }, { - "xloc": [ "default.handlebars->17->1143" ], "en": "Locked", "cs": "Zamknuto", - "fr": "Verrouiller" + "fr": "Verrouiller", + "xloc": [ + "default.handlebars->23->1143" + ] }, { - "xloc": [ "default.handlebars->17->1195" ], "en": "Locked account", - "fr": "Compte verrouillé" + "fr": "Compte verrouillé", + "xloc": [ + "default.handlebars->23->1195" + ] }, { - "xloc": [ "default.handlebars->17->477" ], "en": "Log Event", - "cs": "Log udalostí" + "cs": "Log udalostí", + "xloc": [ + "default.handlebars->23->477" + ] }, { - "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->4->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->4->3", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->5->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->5->1" ], "en": "Log In", - "cs": "Přihlásit" + "cs": "Přihlásit", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->5->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->4->3", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->5->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->4->3" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p40->3->3->3" ], - "en": "Log-X" + "en": "Log-X", + "xloc": [ + "default.handlebars->container->column_l->p40->3->3->3" + ] }, { - "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resettokenpanel->1->5->1->2->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->1" ], - "en": "Login" + "en": "Login", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resettokenpanel->1->5->1->2->1->1" + ] }, { - "xloc": [ "login.handlebars->5->14", "login-mobile.handlebars->5->14" ], - "en": "Login failed, check username and password." + "en": "Login failed, check username and password.", + "xloc": [ + "login.handlebars->5->14", + "login-mobile.handlebars->5->14" + ] }, { - "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resettokenpanel->1->5->1->0->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->0->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->0->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->0->1" ], - "en": "Login token:" + "en": "Login token:", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->0->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->0->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->0->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resettokenpanel->1->5->1->0->1" + ] }, { - "xloc": [ "default-mobile.handlebars->topMenu->logoutMenuOption->0->0", "default.handlebars->17->14", "terms.handlebars->3->2" ], "en": "Logout", "cs": "Odhlásit", - "fr": "Déconnexion" + "fr": "Déconnexion", + "xloc": [ + "default.handlebars->23->14", + "default-mobile.handlebars->topMenu->logoutMenuOption->0->0", + "terms.handlebars->3->2" + ] }, { - "xloc": [ "default.handlebars->17->789" ], "en": "Luxembourgish", - "fr": "Luxembourgeois" + "fr": "Luxembourgeois", + "xloc": [ + "default.handlebars->23->789" + ] }, { - "xloc": [ "default.handlebars->17->62" ], "en": "MAC address", "cs": "MAC adresa", - "fr": "Adresse MAC" + "fr": "Adresse MAC", + "xloc": [ + "default.handlebars->23->62" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->5->1->tmacostab" ], - "en": "MacOS" + "en": "MacOS", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->1->tmacostab" + ] }, { - "xloc": [ "default.handlebars->17->557" ], - "en": "MacOS (64bit)" + "en": "MacOS (64bit)", + "xloc": [ + "default.handlebars->23->557" + ] }, { - "xloc": [ "default-mobile.handlebars->9->151", "default.handlebars->17->411" ], - "en": "MacOS 32bit" + "en": "MacOS 32bit", + "xloc": [ + "default.handlebars->23->411", + "default-mobile.handlebars->9->151" + ] }, { - "xloc": [ "default.handlebars->17->416", "default-mobile.handlebars->9->156" ], - "en": "MacOS 64bit" + "en": "MacOS 64bit", + "xloc": [ + "default.handlebars->23->416", + "default-mobile.handlebars->9->156" + ] }, { - "xloc": [ "default.handlebars->17->1269" ], - "en": "Main Server Messages" + "en": "Main Server Messages", + "xloc": [ + "default.handlebars->23->1269" + ] }, { - "xloc": [ "default.handlebars->17->791" ], - "en": "Malay" + "en": "Malay", + "xloc": [ + "default.handlebars->23->791" + ] }, { - "xloc": [ "default.handlebars->17->792" ], - "en": "Malayalam" + "en": "Malayalam", + "xloc": [ + "default.handlebars->23->792" + ] }, { - "xloc": [ "default.handlebars->17->793" ], - "en": "Maltese" + "en": "Maltese", + "xloc": [ + "default.handlebars->23->793" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->3->manageAuthApp->0", "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageAuthApp->1->0" ], - "en": "Manage authenticator app" + "en": "Manage authenticator app", + "cs": "Spravovat autentizační aplikace", + "xloc": [ + "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageAuthApp->1->0", + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->3->manageAuthApp->0" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageOtp->1->0", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->3->manageOtp->0" ], - "en": "Manage backup codes" + "en": "Manage backup codes", + "xloc": [ + "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageOtp->1->0", + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->3->manageOtp->0" + ] }, { - "xloc": [ "default.handlebars->17->102", "default-mobile.handlebars->9->26" ], - "en": "Manage Backup Codes" + "en": "Manage Backup Codes", + "xloc": [ + "default.handlebars->23->102", + "default-mobile.handlebars->9->26" + ] }, { - "xloc": [ "default-mobile.handlebars->9->292", "default.handlebars->17->1061", "default.handlebars->17->1042", "default-mobile.handlebars->9->310" ], "en": "Manage Device Group Computers", - "cs": "Správa skupin zařízení" + "cs": "Správa skupin zařízení", + "xloc": [ + "default.handlebars->23->1043", + "default.handlebars->23->1062", + "default-mobile.handlebars->9->292", + "default-mobile.handlebars->9->310" + ] }, { - "xloc": [ "default-mobile.handlebars->9->291", "default.handlebars->17->1041", "default.handlebars->17->1060", "default-mobile.handlebars->9->309" ], - "en": "Manage Device Group Users" + "en": "Manage Device Group Users", + "cs": "Spravovat uživatele pro skupinu zařízení", + "xloc": [ + "default.handlebars->23->1042", + "default.handlebars->23->1061", + "default-mobile.handlebars->9->291", + "default-mobile.handlebars->9->309" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageHardwareOtp->1->0" ], - "en": "Manage security keys" + "en": "Manage security keys", + "cs": "Spravovat bezpečnostní klíče", + "xloc": [ + "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageHardwareOtp->1->0" + ] }, { - "xloc": [ "default.handlebars->17->109" ], - "en": "Manage Security Keys" + "en": "Manage Security Keys", + "cs": "Spravovat bezpečnostní klíče", + "xloc": [ + "default.handlebars->23->109" + ] }, { - "xloc": [ "default.handlebars->17->1190" ], "en": "Manage Users", - "fr": "Gérer les utilisateurs" + "cs": "Správa uživatelů", + "fr": "Gérer les utilisateurs", + "xloc": [ + "default.handlebars->23->1190" + ] }, { - "xloc": [ "default.handlebars->17->912" ], "en": "Manage using a software agent", - "fr": "Gérer à l'aide d'un agent logiciel" + "fr": "Gérer à l'aide d'un agent logiciel", + "xloc": [ + "default.handlebars->23->913" + ] }, { - "xloc": [ "default.handlebars->17->936", "default-mobile.handlebars->9->272" ], "en": "Managed using a software agent", - "fr": "Géré à l'aide d'un agent logiciel" + "fr": "Géré à l'aide d'un agent logiciel", + "xloc": [ + "default.handlebars->23->937", + "default-mobile.handlebars->9->272" + ] }, { - "xloc": [ "default.handlebars->17->1148" ], - "en": "Manager" + "en": "Manager", + "xloc": [ + "default.handlebars->23->1148" + ] }, { - "xloc": [ "default.handlebars->17->224" ], "en": "Manual Certificate", - "fr": "Certificat manuel" + "fr": "Certificat manuel", + "xloc": [ + "default.handlebars->23->224" + ] }, { - "xloc": [ "default.handlebars->17->223" ], "en": "Manual Username/Password", - "fr": "Nom d'utilisateur / mot de passe manuel" + "fr": "Nom d'utilisateur / mot de passe manuel", + "xloc": [ + "default.handlebars->23->223" + ] }, { - "xloc": [ "default.handlebars->17->794" ], - "en": "Maori" + "en": "Maori", + "xloc": [ + "default.handlebars->23->794" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->viewselectmapoption" ], "en": "Map", "cs": "Mapa", - "fr": "Carte" + "fr": "Carte", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarViewIcons", + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->viewselectmapoption" + ] }, { - "xloc": [ "default.handlebars->17->795" ], "en": "Marathi", - "fr": "Marathi" + "fr": "Marathi", + "xloc": [ + "default.handlebars->23->795" + ] }, { - "xloc": [ "login-mobile.handlebars->5->29", "login.handlebars->5->29" ], "en": "Maximum length of {0}", - "fr": "Longueur maximale de {0}" + "fr": "Longueur maximale de {0}", + "xloc": [ + "login.handlebars->5->29", + "login-mobile.handlebars->5->29" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize->sizeselect->3", "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->3", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->3" ], "en": "Medium", "cs": "Středně", - "fr": "Moyen" + "fr": "Moyen", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize->sizeselect->3", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->3", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->3" + ] }, { - "xloc": [ "default.handlebars->17->1263" ], "en": "Megabytes", "cs": "Megabytů", - "fr": "Mégaoctets" + "fr": "Mégaoctets", + "xloc": [ + "default.handlebars->23->1263" + ] }, { - "xloc": [ "default.handlebars->17->1254", "default.handlebars->container->column_l->p40->3->1->p40type->3", "default.handlebars->17->39" ], "en": "Memory", "cs": "Paměť", - "fr": "Mémoire" + "fr": "Mémoire", + "xloc": [ + "default.handlebars->container->column_l->p40->3->1->p40type->3", + "default.handlebars->23->39", + "default.handlebars->23->1254" + ] }, { - "xloc": [ "default.handlebars->17->289", "default.handlebars->17->300", "default-mobile.handlebars->9->197", "default.handlebars->17->303", "default.handlebars->17->306", "default.handlebars->17->431", "default.handlebars->17->292", "default.handlebars->17->462" ], - "en": "Mesh Agent" + "en": "Mesh Agent", + "xloc": [ + "default.handlebars->23->289", + "default.handlebars->23->292", + "default.handlebars->23->300", + "default.handlebars->23->303", + "default.handlebars->23->306", + "default.handlebars->23->431", + "default.handlebars->23->462", + "default-mobile.handlebars->9->197" + ] }, { - "xloc": [ "default-mobile.handlebars->9->299", "default.handlebars->17->1049" ], "en": "Mesh Agent Console", - "cs": "Konzole agenta" + "cs": "Konzole agenta", + "xloc": [ + "default.handlebars->23->1050", + "default-mobile.handlebars->9->299" + ] }, { - "xloc": [ "default.handlebars->17->334", "default.handlebars->17->461", "default.handlebars->17->148" ], "en": "Mesh agent is connected and ready for use.", - "cs": "Agent je připojen a připraven." + "cs": "Agent je připojen a připraven.", + "xloc": [ + "default.handlebars->23->148", + "default.handlebars->23->334", + "default.handlebars->23->461" + ] }, { - "xloc": [ "default.handlebars->17->154", "default.handlebars->17->340", "default.handlebars->17->467" ], - "en": "Mesh agent is reachable using another agent as relay." + "en": "Mesh agent is reachable using another agent as relay.", + "xloc": [ + "default.handlebars->23->154", + "default.handlebars->23->340", + "default.handlebars->23->467" + ] }, { - "xloc": [ "default.handlebars->17->468" ], - "en": "Mesh Relay" + "en": "Mesh Relay", + "xloc": [ + "default.handlebars->23->468" + ] }, { - "xloc": [ "default.handlebars->17->1271" ], - "en": "MeshAgent traffic" + "en": "MeshAgent traffic", + "xloc": [ + "default.handlebars->23->1271" + ] }, { - "xloc": [ "default.handlebars->17->1272" ], - "en": "MeshAgent update" + "en": "MeshAgent update", + "xloc": [ + "default.handlebars->23->1272" + ] }, { - "xloc": [ "login.handlebars->container->column_l->welcomeText->1" ], - "en": "MeshCentral", - "cs": "MeshCentral" + "en": "MeshCentral Desktop", + "xloc": [ + "player.htm->3->12" + ] }, { - "xloc": [ "player.htm->3->12" ], - "en": "MeshCentral Desktop" + "en": "MeshCentral Errors", + "xloc": [ + "default.handlebars->23->932" + ] }, { - "xloc": [ "default.handlebars->17->931" ], - "en": "MeshCentral Errors" + "en": "MeshCentral Router", + "xloc": [ + "default.handlebars->23->552" + ] }, { - "xloc": [ "default.handlebars->17->552" ], - "en": "MeshCentral Router" + "en": "MeshCentral Router is a Windows tool for TCP port mapping. You can, for example, RDP into a remote device thru this server.", + "xloc": [ + "default.handlebars->23->551" + ] }, { - "xloc": [ "default.handlebars->17->551" ], - "en": "MeshCentral Router is a Windows tool for TCP port mapping. You can, for example, RDP into a remote device thru this server." + "en": "MeshCentral Server Errors", + "xloc": [ + "default.handlebars->23->79", + "default.handlebars->23->81" + ] }, { - "xloc": [ "default.handlebars->17->81", "default.handlebars->17->79" ], - "en": "MeshCentral Server Errors" + "en": "MeshCentral Server Peering", + "xloc": [ + "default.handlebars->23->1270" + ] }, { - "xloc": [ "default.handlebars->17->1270" ], - "en": "MeshCentral Server Peering" + "en": "MeshCentral Terminal", + "xloc": [ + "player.htm->3->11" + ] }, { - "xloc": [ "player.htm->3->11" ], - "en": "MeshCentral Terminal" + "en": "MeshCentral Version", + "xloc": [ + "default.handlebars->23->76", + "default.handlebars->23->77", + "default.handlebars->23->930" + ] }, { - "xloc": [ "default.handlebars->17->76", "default.handlebars->17->929", "default.handlebars->17->77" ], - "en": "MeshCentral Version" + "en": "MeshCmd", + "xloc": [ + "default.handlebars->23->171" + ] }, { - "xloc": [ "default.handlebars->17->171" ], - "en": "MeshCmd" + "en": "MeshCommander Script", + "xloc": [ + "default.handlebars->23->222" + ] }, { - "xloc": [ "default.handlebars->17->222" ], - "en": "MeshCommander Script" + "en": "MeshMessenger", + "xloc": [ + "messenger.handlebars->xtop->3->0->xtitle", + "messenger.handlebars->13->1", + "messenger.handlebars->13->2" + ] }, { - "xloc": [ "messenger.handlebars->xtop->3->0->xtitle", "messenger.handlebars->13->2", "messenger.handlebars->13->1" ], - "en": "MeshMessenger" + "en": "MeshServerRootCert.cer", + "xloc": [ + "default.handlebars->23->233" + ] }, { - "xloc": [ "default.handlebars->17->233" ], - "en": "MeshServerRootCert.cer" + "en": "Message", + "xloc": [ + "default.handlebars->23->266", + "default.handlebars->23->531" + ] }, { - "xloc": [ "default.handlebars->17->531", "default.handlebars->17->266" ], - "en": "Message" + "en": "Message Dispatcher", + "xloc": [ + "default.handlebars->23->1268" + ] }, { - "xloc": [ "default.handlebars->17->1268" ], - "en": "Message Dispatcher" + "en": "Microsoft™ Windows 32bit", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->wintab32->1" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->5->wintab32->1" ], - "en": "Microsoft™ Windows 32bit" + "en": "Microsoft™ Windows 64bit", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->wintab64->1" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->5->wintab64->1" ], - "en": "Microsoft™ Windows 64bit" + "en": "Minimum length of {0}", + "xloc": [ + "login.handlebars->5->28", + "login-mobile.handlebars->5->28" + ] }, { - "xloc": [ "login-mobile.handlebars->5->28", "login.handlebars->5->28" ], - "en": "Minimum length of {0}" + "en": "MIPS", + "xloc": [ + "default.handlebars->23->407", + "default-mobile.handlebars->9->147" + ] }, { - "xloc": [ "default.handlebars->17->407", "default-mobile.handlebars->9->147" ], - "en": "MIPS" + "en": "Modify node location", + "xloc": [ + "default.handlebars->23->362" + ] }, { - "xloc": [ "default.handlebars->17->362" ], - "en": "Modify node location" + "en": "Moldavian", + "xloc": [ + "default.handlebars->23->796" + ] }, { - "xloc": [ "default.handlebars->17->796" ], - "en": "Moldavian" - }, - { - "xloc": [ "default.handlebars->17->1290" ], "en": "More", "cs": "Více", - "fr": "Plus" + "fr": "Plus", + "xloc": [ + "default.handlebars->23->1291" + ] }, { - "xloc": [ "default.handlebars->17->33" ], "en": "Motherboard", - "fr": "Carte mère" + "fr": "Carte mère", + "xloc": [ + "default.handlebars->23->33" + ] }, { - "xloc": [ "default.handlebars->17->1116", "default-mobile.handlebars->9->87" ], - "en": "move" + "en": "move", + "xloc": [ + "default.handlebars->23->1117", + "default-mobile.handlebars->9->87" + ] }, { - "xloc": [ "default.handlebars->17->479" ], - "en": "Move this device to a different device group" + "en": "Move this device to a different device group", + "xloc": [ + "default.handlebars->23->479" + ] }, { - "xloc": [ "default.handlebars->17->355" ], "en": "Move to device group", "cs": "Přesunout do skupiny zařízení", - "fr": "Déplacer vers un groupe d'appareils" + "fr": "Déplacer vers un groupe d'appareils", + "xloc": [ + "default.handlebars->23->355" + ] }, { - "xloc": [ "default.handlebars->17->237", "default.handlebars->17->242" ], "en": "MPS Server", - "fr": "Serveur MPS" + "fr": "Serveur MPS", + "xloc": [ + "default.handlebars->23->237", + "default.handlebars->23->242" + ] }, { - "xloc": [ "default-mobile.handlebars->9->191", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3", "default.handlebars->17->157", "default.handlebars->17->654", "default.handlebars->17->653", "default.handlebars->17->343", "default.handlebars->17->470", "default-mobile.handlebars->9->122" ], - "en": "MQTT" + "en": "MQTT", + "xloc": [ + "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3", + "default.handlebars->23->157", + "default.handlebars->23->343", + "default.handlebars->23->470", + "default.handlebars->23->653", + "default.handlebars->23->654", + "default-mobile.handlebars->9->122", + "default-mobile.handlebars->9->191" + ] }, { - "xloc": [ "default.handlebars->17->504", "default-mobile.handlebars->9->200" ], - "en": "MQTT channel connected" + "en": "MQTT channel connected", + "xloc": [ + "default.handlebars->23->504", + "default-mobile.handlebars->9->200" + ] }, { - "xloc": [ "default.handlebars->17->503", "default.handlebars->17->121" ], "en": "MQTT connected", - "cs": "MQTT připojeno" + "cs": "MQTT připojeno", + "xloc": [ + "default.handlebars->23->121", + "default.handlebars->23->503" + ] }, { - "xloc": [ "default.handlebars->17->156", "default.handlebars->17->342", "default.handlebars->17->469" ], - "en": "MQTT connection to the device is active." + "en": "MQTT connection to the device is active.", + "xloc": [ + "default.handlebars->23->156", + "default.handlebars->23->342", + "default.handlebars->23->469" + ] }, { - "xloc": [ "default.handlebars->17->138" ], - "en": "MQTT Credentials" + "en": "MQTT Credentials", + "xloc": [ + "default.handlebars->23->138" + ] }, { - "xloc": [ "default.handlebars->17->125" ], - "en": "MQTT disconnected" + "en": "MQTT disconnected", + "xloc": [ + "default.handlebars->23->125" + ] }, { - "xloc": [ "default.handlebars->17->496" ], - "en": "MQTT Login" + "en": "MQTT Login", + "xloc": [ + "default.handlebars->23->496" + ] }, { - "xloc": [ "default.handlebars->contextMenu->cxmdesktop" ], "en": "Multi-Desktop", - "fr": "Multi-bureau" + "fr": "Multi-bureau", + "xloc": [ + "default.handlebars->contextMenu->cxmdesktop" + ] }, { - "xloc": [ "default-mobile.handlebars->topMenu->3", "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyAccount", "default.handlebars->container->column_l->p2->1" ], "en": "My Account", "cs": "Můj účet", - "fr": "Mon Compte" + "fr": "Mon Compte", + "xloc": [ + "default.handlebars->container->page_leftbar", + "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyAccount", + "default.handlebars->container->column_l->p2->1", + "default-mobile.handlebars->topMenu->3" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->2->0", "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyDevices" ], "en": "My Devices", "cs": "Moje zařízení", - "fr": "Mes Appareils" + "fr": "Mes Appareils", + "xloc": [ + "default.handlebars->container->page_leftbar", + "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyDevices", + "default.handlebars->container->column_l->p1->2->0" + ] }, { - "xloc": [ "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyEvents", "default.handlebars->container->column_l->p3->1" ], "en": "My Events", "cs": "Moje události", - "fr": "Mes Événements" + "fr": "Mes Événements", + "xloc": [ + "default.handlebars->container->page_leftbar", + "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyEvents", + "default.handlebars->container->column_l->p3->1" + ] }, { - "xloc": [ "default-mobile.handlebars->topMenu->1", "default-mobile.handlebars->container->page_content->column_l->p5->1->1->0->5->1->1", "default.handlebars->container->column_l->p5->1", "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyFiles" ], "en": "My Files", "cs": "Moje soubory", - "fr": "Mes Dossiers" + "fr": "Mes Dossiers", + "xloc": [ + "default.handlebars->container->page_leftbar", + "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyFiles", + "default.handlebars->container->column_l->p5->1", + "default-mobile.handlebars->container->page_content->column_l->p5->1->1->0->5->1->1", + "default-mobile.handlebars->topMenu->1" + ] }, { - "xloc": [ "default.handlebars->container->page_leftbar", "default.handlebars->container->column_l->p6->3", "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyServer" ], "en": "My Server", "cs": "Můj server", - "fr": "Mon Serveur" + "fr": "Mon Serveur", + "xloc": [ + "default.handlebars->container->page_leftbar", + "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyServer", + "default.handlebars->container->column_l->p6->3" + ] }, { - "xloc": [ "default.handlebars->17->648" ], "en": "My Server Console", - "fr": "Console de mon serveur" + "fr": "Console de mon serveur", + "xloc": [ + "default.handlebars->23->648" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p42->1" ], "en": "My Server Plugins", - "fr": "Mes plugins serveur" + "fr": "Mes plugins serveur", + "xloc": [ + "default.handlebars->container->column_l->p42->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p43->3" ], "en": "My Server Plugins -", - "fr": "Mes plugins serveur -" + "fr": "Mes plugins serveur -", + "xloc": [ + "default.handlebars->container->column_l->p43->3" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p40->1" ], "en": "My Server Stats", "cs": "Statistika serveru", - "fr": "Statistiques de mon serveur" + "fr": "Statistiques de mon serveur", + "xloc": [ + "default.handlebars->container->column_l->p40->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p41->1" ], "en": "My Server Tracing", - "fr": "Suivi de mon serveur" + "fr": "Suivi de mon serveur", + "xloc": [ + "default.handlebars->container->column_l->p41->1" + ] }, { - "xloc": [ "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyUsers", "default.handlebars->container->column_l->p4->1" ], "en": "My Users", "cs": "Uživatelé", - "fr": "Mes Utilisateurs" + "fr": "Mes Utilisateurs", + "xloc": [ + "default.handlebars->container->page_leftbar", + "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyUsers", + "default.handlebars->container->column_l->p4->1" + ] }, { - "xloc": [ "default.handlebars->17->674", "default.handlebars->17->671" ], "en": "MyKey", - "fr": "MaClé" + "fr": "MaClé", + "xloc": [ + "default.handlebars->23->671", + "default.handlebars->23->674" + ] }, { - "xloc": [ "default.handlebars->17->581", "default.handlebars->17->1020", "default.handlebars->17->937", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default.handlebars->17->910", "default-mobile.handlebars->9->273", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default.handlebars->17->35", "default.handlebars->17->44", "default.handlebars->17->58", "default-mobile.handlebars->9->132", "default-mobile.handlebars->9->53", "default.handlebars->container->column_l->p42->p42tbl->1->0->2", "default-mobile.handlebars->9->286", "default.handlebars->17->1131", "default.handlebars->17->1171" ], "en": "Name", "cs": "Jméno", - "fr": "Nom" + "fr": "Nom", + "xloc": [ + "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", + "default.handlebars->23->35", + "default.handlebars->23->44", + "default.handlebars->23->58", + "default.handlebars->23->581", + "default.handlebars->23->911", + "default.handlebars->23->938", + "default.handlebars->23->1021", + "default.handlebars->23->1131", + "default.handlebars->23->1171", + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", + "default-mobile.handlebars->9->53", + "default-mobile.handlebars->9->132", + "default-mobile.handlebars->9->273", + "default-mobile.handlebars->9->286" + ] }, { - "xloc": [ "default.handlebars->17->246" ], "en": "Name (optional)", "cs": "Jméno (volitelné)", - "fr": "Nom: (optionnel)" + "fr": "Nom: (optionnel)", + "xloc": [ + "default.handlebars->23->246" + ] }, { - "xloc": [ "default.handlebars->17->1183" ], "en": "Name1, Name2, Name3", - "fr": "Nom1, Nom2, Nom3" + "fr": "Nom1, Nom2, Nom3", + "xloc": [ + "default.handlebars->23->1183" + ] }, { - "xloc": [ "default.handlebars->17->797" ], "en": "Navajo", - "fr": "Navajo" + "fr": "Navajo", + "xloc": [ + "default.handlebars->23->797" + ] }, { - "xloc": [ "default.handlebars->17->798" ], "en": "Ndonga", - "fr": "Ndonga" + "fr": "Ndonga", + "xloc": [ + "default.handlebars->23->798" + ] }, { - "xloc": [ "default.handlebars->17->799" ], "en": "Nepali", - "fr": "Népalais" + "fr": "Népalais", + "xloc": [ + "default.handlebars->23->799" + ] }, { - "xloc": [ "default.handlebars->17->549" ], "en": "Network Interfaces", - "fr": "Interfaces réseau" + "cs": "Síťové rozhraní", + "fr": "Interfaces réseau", + "xloc": [ + "default.handlebars->23->549" + ] }, { - "xloc": [ "default.handlebars->17->560" ], "en": "Network Router", - "fr": "Routeur réseau" + "fr": "Routeur réseau", + "xloc": [ + "default.handlebars->23->560" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3createMeshLink1->1", "default.handlebars->container->column_l->p2->p2createMeshLink1->1" ], "en": "New", - "fr": "Nouveau" + "cs": "Vytvořit", + "fr": "Nouveau", + "xloc": [ + "default.handlebars->container->column_l->p2->p2createMeshLink1->1", + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3createMeshLink1->1" + ] }, { - "xloc": [ ], "en": "New Account...", "cs": "Nový účet...", - "fr": "Nouveau Compte..." + "fr": "Nouveau Compte...", + "xloc": [ + "default.handlebars->container->column_l->p4->3->1->0->3->3" + ] }, { - "xloc": [ "default.handlebars->17->903", "default.handlebars->17->915", "default-mobile.handlebars->9->47", "default.handlebars->17->541" ], "en": "New Device Group", "cs": "Nová skupina zařízení", - "fr": "Nouveau Group" + "fr": "Nouveau Group", + "xloc": [ + "default.handlebars->23->541", + "default.handlebars->23->904", + "default.handlebars->23->916", + "default-mobile.handlebars->9->47" + ] }, { - "xloc": [ "default.handlebars->17->1104", "default-mobile.handlebars->9->244", "default.handlebars->17->619", "default-mobile.handlebars->9->76" ], "en": "New Folder", "cs": "Nový adresář", - "fr": "Nouveau Dossier" + "fr": "Nouveau Dossier", + "xloc": [ + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default.handlebars->23->619", + "default.handlebars->23->1105", + "default-mobile.handlebars->9->76", + "default-mobile.handlebars->9->244" + ] }, { - "xloc": [ "default.handlebars->17->898", "default.handlebars->17->899", "default-mobile.handlebars->9->42", "default-mobile.handlebars->9->43" ], "en": "New password:", "cs": "Nové heslo:", - "fr": "Nouveau mot de passe:" + "fr": "Nouveau mot de passe:", + "xloc": [ + "default.handlebars->23->899", + "default.handlebars->23->900", + "default-mobile.handlebars->9->42", + "default-mobile.handlebars->9->43" + ] }, { - "xloc": [ "default-mobile.handlebars->9->24" ], "en": "New Tokens", - "fr": "Nouveaux Jetons" + "fr": "Nouveaux Jetons", + "xloc": [ + "default-mobile.handlebars->9->24" + ] }, { - "xloc": [ "default-mobile.handlebars->9->22", "default.handlebars->17->97" ], - "en": "No Active Tokens" + "en": "No Active Tokens", + "xloc": [ + "default.handlebars->23->97", + "default-mobile.handlebars->9->22" + ] }, { - "xloc": [ "default.handlebars->17->446", "default.handlebars->17->445", "default-mobile.handlebars->9->181", "default-mobile.handlebars->9->182" ], "en": "No Credentials", - "cs": "Žádné přihlašovací údaje" + "cs": "Žádné přihlašovací údaje", + "xloc": [ + "default.handlebars->23->445", + "default.handlebars->23->446", + "default-mobile.handlebars->9->181", + "default-mobile.handlebars->9->182" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p2->p2noMeshFound", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3noMeshFound", "default.handlebars->container->column_l->p1->NoMeshesPanel->1->1->0->3->getStarted2" ], "en": "No device groups.", - "fr": "Aucun groupe d'appareils." + "fr": "Aucun groupe d'appareils.", + "xloc": [ + "default.handlebars->container->column_l->p1->NoMeshesPanel->1->1->0->3->getStarted2", + "default.handlebars->container->column_l->p2->p2noMeshFound", + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3noMeshFound" + ] }, { - "xloc": [ "default-mobile.handlebars->9->95" ], "en": "No devices", "cs": "Žádné zařízení", - "fr": "Aucun appareil" + "fr": "Aucun appareil", + "xloc": [ + "default-mobile.handlebars->9->95" + ] }, { - "xloc": [ "default.handlebars->17->162" ], - "en": "No devices are included in any groups, click on a device\\'s \\\"Groups\\\" to add to a group." + "en": "No devices are included in any groups, click on a device\\'s \\\"Groups\\\" to add to a group.", + "xloc": [ + "default.handlebars->23->162" + ] }, { - "xloc": [ "default.handlebars->17->380" ], "en": "No devices found.", "cs": "Žádné zařízení nalezeno.", - "fr": "Aucun périphérique trouvé." + "fr": "Aucun périphérique trouvé.", + "xloc": [ + "default.handlebars->23->380" + ] }, { - "xloc": [ "default-mobile.handlebars->9->94", "default.handlebars->17->166" ], "en": "No devices in this group", "cs": "Žádné zařízení v této skupině", - "fr": "Aucun appareil dans ce groupe" + "fr": "Aucun appareil dans ce groupe", + "xloc": [ + "default.handlebars->23->166", + "default-mobile.handlebars->9->94" + ] }, { - "xloc": [ "default.handlebars->17->163" ], "en": "No devices matching this search.", - "fr": "Aucun appareil ne correspond à cette recherche." + "fr": "Aucun appareil ne correspond à cette recherche.", + "xloc": [ + "default.handlebars->23->163" + ] }, { - "xloc": [ "default.handlebars->17->1243", "default.handlebars->17->646", "default.handlebars->17->1121" ], "en": "No Events Found", - "fr": "Aucun événement trouvé" + "fr": "Aucun événement trouvé", + "xloc": [ + "default.handlebars->23->646", + "default.handlebars->23->1121", + "default.handlebars->23->1243" + ] }, { - "xloc": [ "default.handlebars->17->1047", "default-mobile.handlebars->9->297" ], "en": "No File Access", - "fr": "Pas d'accès au fichier" + "fr": "Pas d'accès au fichier", + "xloc": [ + "default.handlebars->23->1048", + "default-mobile.handlebars->9->297" + ] }, { - "xloc": [ "default.handlebars->17->1069", "default-mobile.handlebars->9->318" ], "en": "No Files", - "fr": "Aucun fichier" + "fr": "Aucun fichier", + "xloc": [ + "default.handlebars->23->1070", + "default-mobile.handlebars->9->318" + ] }, { - "xloc": [ "default.handlebars->17->29" ], - "en": "No information for this device." + "en": "No information for this device.", + "xloc": [ + "default.handlebars->23->29" + ] }, { - "xloc": [ "default.handlebars->17->1048", "default.handlebars->17->1070", "default-mobile.handlebars->9->298", "default-mobile.handlebars->9->319" ], - "en": "No Intel® AMT" + "en": "No Intel® AMT", + "xloc": [ + "default.handlebars->23->1049", + "default.handlebars->23->1071", + "default-mobile.handlebars->9->298", + "default-mobile.handlebars->9->319" + ] }, { - "xloc": [ "default-mobile.handlebars->9->93" ], - "en": "No Intel® AMT devices in this group" + "en": "No Intel® AMT devices in this group", + "xloc": [ + "default-mobile.handlebars->9->93" + ] }, { - "xloc": [ "default.handlebars->17->164" ], - "en": "No Intel® AMT devices in this mesh" + "en": "No Intel® AMT devices in this mesh", + "xloc": [ + "default.handlebars->23->164" + ] }, { - "xloc": [ "default.handlebars->17->105" ], "en": "No Keys Configured", - "cs": "Žádný klíč není zkonfigurován" + "cs": "Žádný klíč není zkonfigurován", + "xloc": [ + "default.handlebars->23->105" + ] }, { - "xloc": [ "default.handlebars->17->382" ], - "en": "No location found." + "en": "No location found.", + "xloc": [ + "default.handlebars->23->382" + ] }, { - "xloc": [ "default.handlebars->17->50" ], - "en": "No network interface information available for this device." + "en": "No network interface information available for this device.", + "xloc": [ + "default.handlebars->23->50" + ] }, { - "xloc": [ "default.handlebars->17->1192" ], - "en": "No New Device Groups" + "en": "No New Device Groups", + "xloc": [ + "default.handlebars->23->1192" + ] }, { - "xloc": [ "default.handlebars->17->544" ], - "en": "No other device group of same type exists." + "en": "No other device group of same type exists.", + "xloc": [ + "default.handlebars->23->544" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p42->pluginNoneNotice->0" ], - "en": "No plugins on server." + "en": "No plugins on server.", + "xloc": [ + "default.handlebars->container->column_l->p42->pluginNoneNotice->0" + ] }, { - "xloc": [ "default.handlebars->17->992", "default.handlebars->17->995", "default.handlebars->17->962" ], - "en": "No Policy" + "en": "No Policy", + "xloc": [ + "default.handlebars->23->963", + "default.handlebars->23->993", + "default.handlebars->23->996" + ] }, { - "xloc": [ "default.handlebars->17->924", "default.handlebars->17->986", "default.handlebars->17->1075", "default-mobile.handlebars->9->324", "default-mobile.handlebars->9->62", "default-mobile.handlebars->9->281" ], - "en": "No Rights" + "en": "No Rights", + "xloc": [ + "default.handlebars->23->925", + "default.handlebars->23->987", + "default.handlebars->23->1076", + "default-mobile.handlebars->9->62", + "default-mobile.handlebars->9->281", + "default-mobile.handlebars->9->324" + ] }, { - "xloc": [ "default.handlebars->17->1196" ], - "en": "No server rights" + "en": "No server rights", + "xloc": [ + "default.handlebars->23->1196" + ] }, { - "xloc": [ "default.handlebars->17->1068", "default-mobile.handlebars->9->317" ], "en": "No Terminal", - "cs": "Žádný terminál" + "cs": "Žádný terminál", + "xloc": [ + "default.handlebars->23->1069", + "default-mobile.handlebars->9->317" + ] }, { - "xloc": [ "default-mobile.handlebars->9->296", "default.handlebars->17->1046" ], - "en": "No Terminal Access" + "en": "No Terminal Access", + "xloc": [ + "default.handlebars->23->1047", + "default-mobile.handlebars->9->296" + ] }, { - "xloc": [ "default.handlebars->17->209", "default.handlebars->17->527", "default-mobile.handlebars->9->212" ], "en": "No TLS security", "cs": "Žádné TLS", - "fr": "Pas de sécurité TLS" + "fr": "Pas de sécurité TLS", + "xloc": [ + "default.handlebars->23->209", + "default.handlebars->23->527", + "default-mobile.handlebars->9->212" + ] }, { - "xloc": [ "default.handlebars->17->1193" ], "en": "No Tools (MeshCmd/Router)", - "cs": "Žádné nástroje (MeshCmd/Router)" + "cs": "Žádné nástroje (MeshCmd/Router)", + "xloc": [ + "default.handlebars->23->1193" + ] }, { - "xloc": [ "default.handlebars->17->1138" ], "en": "No users found.", - "cs": "Žádný uživatele nalezen." + "cs": "Žádný uživatele nalezen.", + "xloc": [ + "default.handlebars->23->1138" + ] }, { - "xloc": [ "player.htm->3->10" ], - "en": "NodeID" + "en": "NodeID", + "xloc": [ + "player.htm->3->10" + ] }, { - "xloc": [ "default.handlebars->17->423", "default-mobile.handlebars->9->163" ], - "en": "NodeJS" + "en": "NodeJS", + "xloc": [ + "default.handlebars->23->423", + "default-mobile.handlebars->9->163" + ] }, { - "xloc": [ "default.handlebars->17->1092", "default.handlebars->17->1215", "default.handlebars->17->1219", "default-mobile.handlebars->9->193", "default.handlebars->17->397", "default.handlebars->container->column_l->p41->3->3->p41traceStatus", "default.handlebars->17->395", "default.handlebars->17->939", "default-mobile.handlebars->9->275", "default-mobile.handlebars->9->72", "default.handlebars->17->130", "default-mobile.handlebars->9->242", "default.handlebars->17->387", "default.handlebars->17->955", "default.handlebars->17->147", "default.handlebars->17->146", "default.handlebars->17->472", "default.handlebars->17->943", "default.handlebars->17->960", "default-mobile.handlebars->9->90", "default-mobile.handlebars->9->135", "default-mobile.handlebars->9->137", "default-mobile.handlebars->9->130", "default-mobile.handlebars->9->92", "default.handlebars->17->27" ], "en": "None", "cs": "Nic", - "fr": "Aucun" + "fr": "Aucun", + "xloc": [ + "default.handlebars->container->column_l->p41->3->3->p41traceStatus", + "default.handlebars->23->27", + "default.handlebars->23->130", + "default.handlebars->23->146", + "default.handlebars->23->147", + "default.handlebars->23->387", + "default.handlebars->23->395", + "default.handlebars->23->397", + "default.handlebars->23->472", + "default.handlebars->23->940", + "default.handlebars->23->944", + "default.handlebars->23->956", + "default.handlebars->23->961", + "default.handlebars->23->1093", + "default.handlebars->23->1215", + "default.handlebars->23->1219", + "default-mobile.handlebars->9->72", + "default-mobile.handlebars->9->90", + "default-mobile.handlebars->9->92", + "default-mobile.handlebars->9->130", + "default-mobile.handlebars->9->135", + "default-mobile.handlebars->9->137", + "default-mobile.handlebars->9->193", + "default-mobile.handlebars->9->242", + "default-mobile.handlebars->9->275" + ] }, { - "xloc": [ "default.handlebars->termShellContextMenu->cxtermnorm->0" ], - "en": "Normal Connect", - "fr": "Connexion normale" - }, - { - "xloc": [ "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->5" ], "en": "Normal Speed", "cs": "Normalní rychlost", - "fr": "Vitesse normale" + "fr": "Vitesse normale", + "xloc": [ + "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->5" + ] }, { - "xloc": [ "default.handlebars->17->800" ], "en": "Norwegian", - "fr": "Norvégien" + "fr": "Norvégien", + "xloc": [ + "default.handlebars->23->800" + ] }, { - "xloc": [ "default.handlebars->17->801" ], "en": "Norwegian (Bokmal)", - "fr": "Norvégien (Bokmal)" + "fr": "Norvégien (Bokmal)", + "xloc": [ + "default.handlebars->23->801" + ] }, { - "xloc": [ "default.handlebars->17->802" ], "en": "Norwegian (Nynorsk)", - "fr": "Norvégien (Nynorsk)" + "fr": "Norvégien (Nynorsk)", + "xloc": [ + "default.handlebars->23->802" + ] }, { - "xloc": [ "default.handlebars->17->433", "default-mobile.handlebars->9->173" ], - "en": "Not Activated (In)" + "en": "Not Activated (In)", + "xloc": [ + "default.handlebars->23->433", + "default-mobile.handlebars->9->173" + ] }, { - "xloc": [ "default.handlebars->17->432", "default-mobile.handlebars->9->172" ], - "en": "Not Activated (Pre)" + "en": "Not Activated (Pre)", + "xloc": [ + "default.handlebars->23->432", + "default-mobile.handlebars->9->172" + ] }, { - "xloc": [ "default.handlebars->17->1201" ], - "en": "Not set" + "en": "Not set", + "cs": "Nenastaveno", + "xloc": [ + "default.handlebars->23->1201" + ] }, { - "xloc": [ "default.handlebars->17->1226", "default.handlebars->17->508", "default.handlebars->17->475", "default.handlebars->17->968" ], "en": "Notes", "cs": "Poznámky", - "fr": "Remarques" + "fr": "Remarques", + "xloc": [ + "default.handlebars->23->475", + "default.handlebars->23->508", + "default.handlebars->23->969", + "default.handlebars->23->1226" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p42->pluginRestartNotice->3->1->0" ], - "en": "Notice:" + "en": "Notice:", + "xloc": [ + "default.handlebars->container->column_l->p42->pluginRestartNotice->3->1->0" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p2->p2AccountActions->3->8", "default.handlebars->17->1083", "default.handlebars->17->885" ], - "en": "Notification Settings" + "en": "Notification Settings", + "cs": "Nastavení notifikací", + "xloc": [ + "default.handlebars->container->column_l->p2->p2AccountActions->3->8", + "default.handlebars->23->886", + "default.handlebars->23->1084" + ] }, { - "xloc": [ "default.handlebars->17->881" ], - "en": "Notification sound." + "en": "Notification sound.", + "xloc": [ + "default.handlebars->23->882" + ] }, { - "xloc": [ "default.handlebars->17->961" ], - "en": "Notifications" + "en": "Notifications", + "cs": "Notifikace", + "xloc": [ + "default.handlebars->23->962" + ] }, { - "xloc": [ "default.handlebars->17->1228" ], - "en": "Notify" + "en": "Notify", + "xloc": [ + "default.handlebars->23->1228" + ] }, { - "xloc": [ "default.handlebars->17->1031", "default.handlebars->17->1028", "default.handlebars->17->1024" ], "en": "Notify user", - "fr": "Notifier l'utilisateur" + "fr": "Notifier l'utilisateur", + "xloc": [ + "default.handlebars->23->1025", + "default.handlebars->23->1029", + "default.handlebars->23->1032" + ] }, { - "xloc": [ "default.handlebars->17->1150" ], - "en": "Notify {0}" + "en": "Notify {0}", + "xloc": [ + "default.handlebars->23->1150" + ] }, { - "xloc": [ "default.handlebars->17->803" ], - "en": "Occitan" + "en": "Occitan", + "xloc": [ + "default.handlebars->23->803" + ] }, { - "xloc": [ "default.handlebars->17->1246" ], "en": "Occured at {0}", - "fr": "Survenu à {0}" + "fr": "Survenu à {0}", + "xloc": [ + "default.handlebars->23->1246" + ] }, { - "xloc": [ "default.handlebars->17->1135" ], "en": "Offline Users", - "fr": "Utilisateurs hors ligne" + "fr": "Utilisateurs hors ligne", + "xloc": [ + "default.handlebars->23->1135" + ] }, { - "xloc": [ "player.htm->p11->dialog->idx_dlgButtonBar", "default.handlebars->container->dialog->idx_dlgButtonBar", "default-mobile.handlebars->9->39", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "default.handlebars->17->927", "default-mobile.handlebars->dialog->idx_dlgButtonBar", "default.handlebars->17->458", "login.handlebars->dialog->idx_dlgButtonBar" ], - "en": "OK" + "en": "OK", + "xloc": [ + "default.handlebars->container->dialog->idx_dlgButtonBar", + "default.handlebars->23->458", + "default.handlebars->23->928", + "default-mobile.handlebars->dialog->idx_dlgButtonBar", + "default-mobile.handlebars->9->39", + "login.handlebars->dialog->idx_dlgButtonBar", + "login-mobile.handlebars->dialog->idx_dlgButtonBar", + "player.htm->p11->dialog->idx_dlgButtonBar" + ] }, { - "xloc": [ "default.handlebars->17->897", "default-mobile.handlebars->9->41" ], "en": "Old password:", "cs": "Staré heslo:", - "fr": "Ancien mot de passe:" + "fr": "Ancien mot de passe:", + "xloc": [ + "default.handlebars->23->898", + "default-mobile.handlebars->9->41" + ] }, { - "xloc": [ "default.handlebars->17->96", "default-mobile.handlebars->9->21" ], - "en": "One time tokens can be used as secondary authentication. Generate a set, print them and keep them in a safe place." + "en": "One time tokens can be used as secondary authentication. Generate a set, print them and keep them in a safe place.", + "xloc": [ + "default.handlebars->23->96", + "default-mobile.handlebars->9->21" + ] }, { - "xloc": [ "default.handlebars->17->1134" ], "en": "Online Users", "cs": "Online uživatelů", - "fr": "Utilisateurs en ligne" + "fr": "Utilisateurs en ligne", + "xloc": [ + "default.handlebars->23->1134" + ] }, { - "xloc": [ "default.handlebars->17->627", "default-mobile.handlebars->9->252" ], "en": "Only files less than 200k can be edited.", - "cs": "Jen soubory menší než 200k mohou být editovány." + "cs": "Jen soubory menší než 200k mohou být editovány.", + "xloc": [ + "default.handlebars->23->627", + "default-mobile.handlebars->9->252" + ] }, { - "xloc": [ "default.handlebars->17->375" ], - "en": "open" + "en": "open", + "cs": "otevřít", + "xloc": [ + "default.handlebars->23->375" + ] }, { - "xloc": [ ], - "en": "Open a web address on the remote computer" + "en": "Open a web address on the remote computer", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" + ] }, { - "xloc": [ ], "en": "Open chat window to this computer", - "fr": "Ouvrir la fenêtre de discussion sur cet ordinateur" + "fr": "Ouvrir la fenêtre de discussion sur cet ordinateur", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" + ] }, { - "xloc": [ "player.htm->p11->deskarea0->deskarea1->3", "player.htm->3->19" ], "en": "Open File...", - "cs": "Otevřít soubor..." + "cs": "Otevřít soubor...", + "xloc": [ + "player.htm->p11->deskarea0->deskarea1->3", + "player.htm->3->19" + ] }, { - "xloc": [ "default.handlebars->17->510" ], - "en": "Open Page on Device" + "en": "Open Page on Device", + "xloc": [ + "default.handlebars->23->510" + ] }, { - "xloc": [ "default.handlebars->17->278", "default.handlebars->17->455", "default.handlebars->17->43", "default.handlebars->17->249" ], "en": "Operating System", "cs": "Operační systém", - "fr": "Système opérateur" + "fr": "Système opérateur", + "xloc": [ + "default.handlebars->23->43", + "default.handlebars->23->249", + "default.handlebars->23->278", + "default.handlebars->23->455" + ] }, { - "xloc": [ "default.handlebars->17->519", "default.handlebars->17->350", "default-mobile.handlebars->9->207" ], "en": "Operation", "cs": "Operace", - "fr": "Opération" + "fr": "Opération", + "xloc": [ + "default.handlebars->23->350", + "default.handlebars->23->519", + "default-mobile.handlebars->9->207" + ] }, { - "xloc": [ "default.handlebars->17->241" ], "en": "Organization", - "fr": "Organisation" + "cs": "Organizace", + "fr": "Organisation", + "xloc": [ + "default.handlebars->23->241" + ] }, { - "xloc": [ "default.handlebars->17->804" ], - "en": "Oriya" + "en": "Oriya", + "xloc": [ + "default.handlebars->23->804" + ] }, { - "xloc": [ "default.handlebars->17->805" ], - "en": "Oromo" + "en": "Oromo", + "xloc": [ + "default.handlebars->23->805" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->7->1" ], "en": "OS Name", "cs": "Jméno operačního systému", - "fr": "Nom du système" + "fr": "Nom du système", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->7->1" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->5->3" ], "en": "Other", - "fr": "Autre" + "cs": "Ostatní", + "fr": "Autre", + "xloc": [ + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->5->3" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->5->1" ], "en": "Other Settings", - "fr": "Autres réglages" + "fr": "Autres réglages", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->5->1" + ] }, { - "xloc": [ "default.handlebars->17->457" ], "en": "Out of date", - "fr": "Périmé" + "fr": "Périmé", + "xloc": [ + "default.handlebars->23->457" + ] }, { - "xloc": [ "default.handlebars->17->588" ], - "en": "OwnProcess" + "en": "OwnProcess", + "xloc": [ + "default.handlebars->23->588" + ] }, { - "xloc": [ "default.handlebars->17->1120" ], - "en": "p5filetable" - }, - { - "xloc": [ "default.handlebars->17->42" ], "en": "Part Number", - "fr": "Numéro d'article" + "fr": "Numéro d'article", + "xloc": [ + "default.handlebars->23->42" + ] }, { - "xloc": [ "default.handlebars->17->1149" ], "en": "Partial", - "fr": "Partiel" + "fr": "Partiel", + "xloc": [ + "default.handlebars->23->1149" + ] }, { - "xloc": [ "default-mobile.handlebars->9->279", "default.handlebars->17->984", "default-mobile.handlebars->9->60", "default.handlebars->17->922" ], - "en": "Partial Rights" + "en": "Partial Rights", + "xloc": [ + "default.handlebars->23->923", + "default.handlebars->23->985", + "default-mobile.handlebars->9->60", + "default-mobile.handlebars->9->279" + ] }, { - "xloc": [ "default.handlebars->17->1199" ], - "en": "Partial rights" + "en": "Partial rights", + "xloc": [ + "default.handlebars->23->1199" + ] }, { - "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->createPanelHint->1" ], "en": "Pass Hint:", - "cs": "Nápověda k heslu:" + "cs": "Nápověda k heslu:", + "xloc": [ + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->createPanelHint->1" + ] }, { - "xloc": [ "default.handlebars->17->1236", "default.handlebars->17->1235", "default.handlebars->17->207", "default.handlebars->17->1173", "default.handlebars->17->1174", "default.handlebars->17->236", "default.handlebars->17->525", "default.handlebars->17->1213", "default.handlebars->17->1211", "default-mobile.handlebars->9->210" ], "en": "Password", "cs": "Heslo", - "fr": "Mot de passe" + "fr": "Mot de passe", + "xloc": [ + "default.handlebars->23->207", + "default.handlebars->23->236", + "default.handlebars->23->525", + "default.handlebars->23->1173", + "default.handlebars->23->1174", + "default.handlebars->23->1211", + "default.handlebars->23->1213", + "default.handlebars->23->1235", + "default.handlebars->23->1236", + "default-mobile.handlebars->9->210" + ] }, { - "xloc": [ "login.handlebars->5->15", "login-mobile.handlebars->5->15" ], "en": "Password change requested.", - "fr": "Changement de mot de passe demandé." + "fr": "Changement de mot de passe demandé.", + "xloc": [ + "login.handlebars->5->15", + "login-mobile.handlebars->5->15" + ] }, { - "xloc": [ "default.handlebars->17->1237" ], - "en": "Password hint" + "en": "Password hint", + "xloc": [ + "default.handlebars->23->1237" + ] }, { - "xloc": [ "login-mobile.handlebars->5->19", "login.handlebars->5->19" ], - "en": "Password Hint" + "en": "Password Hint", + "xloc": [ + "login.handlebars->5->19", + "login-mobile.handlebars->5->19" + ] }, { - "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->createPanelHint->nuHint", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->resetpasswordpanelHint->rnuHint", "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->resetpasswordpanelHint->rnuHint" ], - "en": "Password Hint:" + "en": "Password Hint:", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->createPanelHint->nuHint", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->resetpasswordpanelHint->rnuHint", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->resetpasswordpanelHint->rnuHint" + ] }, { - "xloc": [ "default.handlebars->17->900", "default-mobile.handlebars->9->44" ], - "en": "Password hint:" + "en": "Password hint:", + "xloc": [ + "default.handlebars->23->901", + "default-mobile.handlebars->9->44" + ] }, { - "xloc": [ "default.handlebars->17->1001" ], - "en": "Password mismatch" + "en": "Password mismatch", + "xloc": [ + "default.handlebars->23->1002" + ] }, { - "xloc": [ "login.handlebars->5->34", "login-mobile.handlebars->5->27", "login-mobile.handlebars->5->23", "login.handlebars->5->23", "login.handlebars->5->27" ], - "en": "Password Policy" + "en": "Password Policy", + "xloc": [ + "login.handlebars->5->23", + "login.handlebars->5->27", + "login.handlebars->5->34", + "login-mobile.handlebars->5->23", + "login-mobile.handlebars->5->27" + ] }, { - "xloc": [ "login.handlebars->5->7", "login-mobile.handlebars->5->7" ], "en": "Password rejected, use a different one.", - "fr": "Mot de passe rejeté, utilisez-en un autre." + "fr": "Mot de passe rejeté, utilisez-en un autre.", + "xloc": [ + "login.handlebars->5->7", + "login-mobile.handlebars->5->7" + ] }, { - "xloc": [ "default.handlebars->17->1000", "default.handlebars->17->999" ], "en": "Password*", "cs": "Heslo*", - "fr": "Mot de passe*" + "fr": "Mot de passe*", + "xloc": [ + "default.handlebars->23->1000", + "default.handlebars->23->1001" + ] }, { - "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->2->rnuPass2", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->4->nuPass1", "default.handlebars->17->892", "default.handlebars->17->893", "default-mobile.handlebars->9->36", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->2->rnuPass2", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->6->nuPass2", "default-mobile.handlebars->9->37", "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->0->rnuPass1", "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->loginpanel->1->7->1->2->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->0->rnuPass1", "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->2->1" ], "en": "Password:", "cs": "Heslo:", - "fr": "Mot de passe:" + "fr": "Mot de passe:", + "xloc": [ + "default.handlebars->23->893", + "default.handlebars->23->894", + "default-mobile.handlebars->9->36", + "default-mobile.handlebars->9->37", + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->2->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->4->nuPass1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->6->nuPass2", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->0->rnuPass1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->2->rnuPass2", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1", + "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->resetpasswordpanel->1->7->1->0->rnuPass1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->2->rnuPass2" + ] }, { - "xloc": [ "default.handlebars->17->610", "default-mobile.handlebars->9->84", "default.handlebars->17->632", "default-mobile.handlebars->9->257", "default.handlebars->17->1113" ], "en": "Paste", "cs": "Vložit", - "fr": "Coller" + "fr": "Coller", + "xloc": [ + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", + "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->23->610", + "default.handlebars->23->632", + "default.handlebars->23->1114", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", + "default-mobile.handlebars->9->84", + "default-mobile.handlebars->9->257" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3" ], "en": "Paste text into the terminal", - "fr": "Coller du texte dans le terminal" + "fr": "Coller du texte dans le terminal", + "xloc": [ + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3" + ] }, { - "xloc": [ ], "en": "Pause", - "fr": "Pause" + "fr": "Pause", + "xloc": [ + "player.htm->p11->deskarea0->deskarea4->3" + ] }, { - "xloc": [ "default.handlebars->17->656" ], "en": "Perform Agent Action", "cs": "Akce agenta", - "fr": "Effectuer une action sur l'agent" + "fr": "Effectuer une action sur l'agent", + "xloc": [ + "default.handlebars->23->656" + ] }, { - "xloc": [ "default.handlebars->17->214" ], - "en": "Perform Intel AMT admin control mode (ACM) activation to group \\\"{0}\\\" by downloading the MeshCMD tool and running it like this:" + "en": "Perform Intel AMT admin control mode (ACM) activation to group \\\"{0}\\\" by downloading the MeshCMD tool and running it like this:", + "xloc": [ + "default.handlebars->23->214" + ] }, { - "xloc": [ "default.handlebars->17->195", "default.handlebars->17->977" ], - "en": "Perform Intel AMT admin control mode (ACM) activation." + "en": "Perform Intel AMT admin control mode (ACM) activation.", + "xloc": [ + "default.handlebars->23->195", + "default.handlebars->23->978" + ] }, { - "xloc": [ "default.handlebars->17->212" ], - "en": "Perform Intel AMT client control mode (CCM) activation to group \\\"{0}\\\" by downloading the MeshCMD tool and running it like this:" + "en": "Perform Intel AMT client control mode (CCM) activation to group \\\"{0}\\\" by downloading the MeshCMD tool and running it like this:", + "xloc": [ + "default.handlebars->23->212" + ] }, { - "xloc": [ "default.handlebars->17->975", "default.handlebars->17->193" ], - "en": "Perform Intel AMT client control mode (CCM) activation." + "en": "Perform Intel AMT client control mode (CCM) activation.", + "xloc": [ + "default.handlebars->23->193", + "default.handlebars->23->976" + ] }, { - "xloc": [ "default.handlebars->17->474" ], "en": "Perform power actions on the device", "cs": "Akce napájení", - "fr": "Effectuer des actions d'alimentation sur le périphérique" + "fr": "Effectuer des actions d'alimentation sur le périphérique", + "xloc": [ + "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", + "default.handlebars->23->474" + ] }, { - "xloc": [ "default.handlebars->17->1133", "default.handlebars->17->1078", "default-mobile.handlebars->9->326" ], "en": "Permissions", "cs": "Práva", - "fr": "Permissions" + "fr": "Permissions", + "xloc": [ + "default.handlebars->23->1079", + "default.handlebars->23->1133", + "default-mobile.handlebars->9->326" + ] }, { - "xloc": [ "default.handlebars->17->806" ], - "en": "Persian/Iran" + "en": "Persian/Iran", + "xloc": [ + "default.handlebars->23->806" + ] }, { - "xloc": [ "default.handlebars->17->584", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ], - "en": "PID" + "en": "PID", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1", + "default.handlebars->23->584", + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0" + ] }, { - "xloc": [ "default.handlebars->17->374" ], - "en": "Place node here" + "en": "Place node here", + "xloc": [ + "default.handlebars->23->374" + ] }, { - "xloc": [ "player.htm->p11->deskarea0->deskarea4->3" ], "en": "Play", - "fr": "Jouer" + "fr": "Jouer", + "xloc": [ + "player.htm->p11->deskarea0->deskarea4->3" + ] }, { - "xloc": [ "default.handlebars->17->18" ], "en": "Please add two-factor backup codes. If the current factor is lost, there is not way to recover this account.", - "fr": "Veuillez ajouter un autre facteur. Si le facteur actuel est perdu, il n'y a pas moyen de récupérer ce compte." + "fr": "Veuillez ajouter un autre facteur. Si le facteur actuel est perdu, il n'y a pas moyen de récupérer ce compte.", + "xloc": [ + "default.handlebars->23->18" + ] }, { - "xloc": [ "default.handlebars->17->140" ], - "en": "Please be aware that downgrading is not recommended. Please only do so in the event that a recent upgrade has broken something." + "en": "Please be aware that downgrading is not recommended. Please only do so in the event that a recent upgrade has broken something.", + "xloc": [ + "default.handlebars->23->140" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->3", "terms-mobile.handlebars->container->page_content->column_l->3" ], - "en": "Please contact the site administrator for terms of use." + "en": "Please contact the site administrator for terms of use.", + "xloc": [ + "terms.handlebars->container->column_l->3", + "terms-mobile.handlebars->container->page_content->column_l->3" + ] }, { - "xloc": [ "default.handlebars->17->887", "default-mobile.handlebars->9->32" ], - "en": "Please wait a few minute to receive the verification." + "en": "Please wait a few minute to receive the verification.", + "xloc": [ + "default.handlebars->23->888", + "default-mobile.handlebars->9->32" + ] }, { - "xloc": [ "default.handlebars->17->1287", "default.handlebars->17->139" ], - "en": "Plugin Action" + "en": "Plugin Action", + "xloc": [ + "default.handlebars->23->139", + "default.handlebars->23->1288" + ] }, { - "xloc": [ "default.handlebars->17->141" ], - "en": "Plugin Error" + "en": "Plugin Error", + "xloc": [ + "default.handlebars->23->141" + ] }, { - "xloc": [ "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerPlugins", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevPlugins" ], "en": "Plugins", - "cs": "Pluginy" + "cs": "Pluginy", + "xloc": [ + "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevPlugins", + "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerPlugins" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p19->1" ], "en": "Plugins -", - "cs": "Pluginy -" + "cs": "Pluginy -", + "xloc": [ + "default.handlebars->container->column_l->p19->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p42->pluginRestartNotice->3->1" ], - "en": "Plugins have been altered, this may require agent core update." + "en": "Plugins have been altered, this may require agent core update.", + "xloc": [ + "default.handlebars->container->column_l->p42->pluginRestartNotice->3->1" + ] }, { - "xloc": [ "default.handlebars->17->413", "default-mobile.handlebars->9->153" ], - "en": "PogoPlug ARM" + "en": "PogoPlug ARM", + "xloc": [ + "default.handlebars->23->413", + "default-mobile.handlebars->9->153" + ] }, { - "xloc": [ "default-mobile.handlebars->9->59", "default.handlebars->17->921" ], "en": "Policy", - "fr": "Politique" + "fr": "Politique", + "xloc": [ + "default.handlebars->23->922", + "default-mobile.handlebars->9->59" + ] }, { - "xloc": [ "default.handlebars->17->807" ], - "en": "Polish" + "en": "Polish", + "xloc": [ + "default.handlebars->23->807" + ] }, { - "xloc": [ "default.handlebars->17->808" ], - "en": "Portuguese" + "en": "Portuguese", + "xloc": [ + "default.handlebars->23->808" + ] }, { - "xloc": [ "default.handlebars->17->809" ], - "en": "Portuguese (Brazil)" + "en": "Portuguese (Brazil)", + "xloc": [ + "default.handlebars->23->809" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->3" ], "en": "Power", - "cs": "Napájení" + "cs": "Napájení", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->3" + ] }, { - "xloc": [ ], "en": "Power Actions...", - "cs": "Akce napájení" + "cs": "Akce napájení", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3" + ] }, { - "xloc": [ "default-mobile.handlebars->9->102", "default.handlebars->17->516", "default.handlebars->17->6", "default-mobile.handlebars->9->206" ], "en": "Power off", "cs": "Vypnout", - "fr": "Éteindre" + "fr": "Éteindre", + "xloc": [ + "default.handlebars->23->6", + "default.handlebars->23->516", + "default-mobile.handlebars->9->102", + "default-mobile.handlebars->9->206" + ] }, { - "xloc": [ "default.handlebars->17->354" ], "en": "Power off devices", "cs": "Vypnout zařízení", - "fr": "Éteindre les appareils" + "fr": "Éteindre les appareils", + "xloc": [ + "default.handlebars->23->354" + ] }, { - "xloc": [ "default.handlebars->17->314", "default-mobile.handlebars->9->97", "default.handlebars->17->1", "default-mobile.handlebars->9->104" ], "en": "Powered", "cs": "Zapnuto", - "fr": "Alimenté" + "fr": "Alimenté", + "xloc": [ + "default.handlebars->23->1", + "default.handlebars->23->314", + "default-mobile.handlebars->9->97", + "default-mobile.handlebars->9->104" + ] }, { - "xloc": [ "default.handlebars->termShellContextMenu->cxtermps" ], - "en": "PowerShell Connect", - "cs": "PowerShell připojen" - }, - { - "xloc": [ "default.handlebars->17->7", "default.handlebars->17->326", "default-mobile.handlebars->9->103", "default-mobile.handlebars->9->110" ], "en": "Present", - "fr": "Présent" + "fr": "Présent", + "xloc": [ + "default.handlebars->23->7", + "default.handlebars->23->326", + "default-mobile.handlebars->9->103", + "default-mobile.handlebars->9->110" + ] }, { - "xloc": [ "player.htm->3->16", "player.htm->3->17" ], "en": "Press [space] to play/pause.", - "fr": "Appuyez sur [espace] pour jouer/mettre en pause." + "fr": "Appuyez sur [espace] pour jouer/mettre en pause.", + "xloc": [ + "player.htm->3->16", + "player.htm->3->17" + ] }, { - "xloc": [ "default.handlebars->17->114" ], "en": "Press the key button now.", - "fr": "Appuyez sur le bouton de la clé maintenant." + "fr": "Appuyez sur le bouton de la clé maintenant.", + "xloc": [ + "default.handlebars->23->114" + ] }, { - "xloc": [ "default.handlebars->17->597", "default-mobile.handlebars->9->231" ], - "en": "Process Control" + "en": "Process Control", + "xloc": [ + "default.handlebars->23->597", + "default-mobile.handlebars->9->231" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->deskToolsTopTabProcess", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->DeskToolsBar" ], "en": "Processes", "cs": "Procesy", - "fr": "Processus" + "fr": "Processus", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->deskToolsTopTabProcess", + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->DeskToolsBar" + ] }, { - "xloc": [ "default.handlebars->17->1032", "default.handlebars->17->1025", "default.handlebars->17->1029" ], "en": "Prompt for user consent", - "fr": "Demander le consentement de l'utilisateur" + "fr": "Demander le consentement de l'utilisateur", + "xloc": [ + "default.handlebars->23->1026", + "default.handlebars->23->1030", + "default.handlebars->23->1033" + ] }, { - "xloc": [ "player.htm->3->15" ], "en": "Protocol", "cs": "Protokol", - "fr": "Protocole" + "fr": "Protocole", + "xloc": [ + "player.htm->3->15" + ] }, { - "xloc": [ "default.handlebars->17->1099", "default-mobile.handlebars->9->71" ], "en": "Public Link", "cs": "Veřejný odkaz", - "fr": "Lien public" + "fr": "Lien public", + "xloc": [ + "default.handlebars->23->1100", + "default-mobile.handlebars->9->71" + ] }, { - "xloc": [ "default.handlebars->17->810" ], - "en": "Punjabi" + "en": "Punjabi", + "xloc": [ + "default.handlebars->23->810" + ] }, { - "xloc": [ "default.handlebars->17->811" ], - "en": "Punjabi (India)" + "en": "Punjabi (India)", + "xloc": [ + "default.handlebars->23->811" + ] }, { - "xloc": [ "default.handlebars->17->812" ], - "en": "Punjabi (Pakistan)" + "en": "Punjabi (Pakistan)", + "xloc": [ + "default.handlebars->23->812" + ] }, { - "xloc": [ "default.handlebars->17->492" ], - "en": "Putty" + "en": "Putty", + "xloc": [ + "default.handlebars->23->492" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->3->3", "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->3->1" ], "en": "Quality", "cs": "Kvalita", - "fr": "Qualité" + "fr": "Qualité", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->3->1", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->3->3" + ] }, { - "xloc": [ "default.handlebars->17->813" ], - "en": "Quechua" + "en": "Quechua", + "xloc": [ + "default.handlebars->23->813" + ] }, { - "xloc": [ "default.handlebars->17->1175" ], "en": "Randomize the password.", - "fr": "Mot de passe aléatoire." + "fr": "Mot de passe aléatoire.", + "xloc": [ + "default.handlebars->23->1175" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->3" ], - "en": "Rate" + "en": "Rate", + "xloc": [ + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->3" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->7", "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->7" ], "en": "RAW16, Very Slow", - "fr": "RAW16, très lent" + "fr": "RAW16, très lent", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->7", + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->7" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->5", "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->5" ], "en": "RAW8, Slow", - "fr": "RAW8, lent" + "fr": "RAW8, lent", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->5", + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->5" + ] }, { - "xloc": [ "default.handlebars->17->490" ], - "en": "RDP" + "en": "RDP", + "xloc": [ + "default.handlebars->23->490" + ] }, { - "xloc": [ "default.handlebars->17->1003" ], - "en": "Reactivate Intel® AMT" + "en": "Reactivate Intel® AMT", + "xloc": [ + "default.handlebars->23->1004" + ] }, { - "xloc": [ "default.handlebars->17->1182" ], - "en": "Realms" + "en": "Realms", + "xloc": [ + "default.handlebars->23->1182" + ] }, { - "xloc": [ "default.handlebars->17->1105", "default-mobile.handlebars->9->245", "default.handlebars->17->620", "default-mobile.handlebars->9->77" ], "en": "Recursive delete", - "fr": "Suppression récursive" + "fr": "Suppression récursive", + "xloc": [ + "default.handlebars->23->620", + "default.handlebars->23->1106", + "default-mobile.handlebars->9->77", + "default-mobile.handlebars->9->245" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->13->1", "terms.handlebars->container->column_l->13->1", "terms.handlebars->container->column_l->29->1", "terms-mobile.handlebars->container->page_content->column_l->29->1" ], - "en": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:" + "en": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:", + "xloc": [ + "terms.handlebars->container->column_l->13->1", + "terms.handlebars->container->column_l->29->1", + "terms-mobile.handlebars->container->page_content->column_l->13->1", + "terms-mobile.handlebars->container->page_content->column_l->29->1" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->DeskToolsRefreshButton", "default.handlebars->17->371", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->DeskToolsRefreshButton", "default.handlebars->container->column_l->p40->3->3" ], "en": "Refresh", "cs": "Obnovit", - "fr": "Rafraîchir" + "fr": "Rafraîchir", + "xloc": [ + "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", + "default.handlebars->23->371", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", + "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" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p42->pluginRestartNotice->1" ], - "en": "Refresh Agent Cores" + "en": "Refresh Agent Cores", + "xloc": [ + "default.handlebars->container->column_l->p42->pluginRestartNotice->1" + ] }, { - "xloc": [ "default.handlebars->17->155", "default.handlebars->17->341", "default-mobile.handlebars->9->121" ], - "en": "Relay" + "en": "Relay", + "xloc": [ + "default.handlebars->23->155", + "default.handlebars->23->341", + "default-mobile.handlebars->9->121" + ] }, { - "xloc": [ "default.handlebars->17->1261" ], - "en": "Relay Sessions" + "en": "Relay Sessions", + "xloc": [ + "default.handlebars->23->1261" + ] }, { - "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->2->1->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->2->1->1" ], "en": "Remember this device for 30 days.", - "fr": "Rappelez cet appareil pour 30 jours." + "fr": "Rappelez cet appareil pour 30 jours.", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->2->1->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->2->1->1" + ] }, { - "xloc": [ "messenger.handlebars->remoteVideo->1" ], "en": "Remote", - "cs": "Vzdálený" + "cs": "Vzdálený", + "xloc": [ + "messenger.handlebars->remoteVideo->1" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->1" ], "en": "Remote Agent Installation", "cs": "Instalace agenta pro vzdálený přístup", - "fr": "Installation de l'agent" + "fr": "Installation de l'agent", + "xloc": [ + "agentinvite.handlebars->container->column_l->1" + ] }, { - "xloc": [ "default.handlebars->17->580" ], "en": "Remote Clipboard", - "fr": "Presse-papier à distance" + "fr": "Presse-papier à distance", + "xloc": [ + "default.handlebars->23->580" + ] }, { - "xloc": [ "default.handlebars->17->579" ], "en": "Remote clipboard is valid for 60 seconds.", "cs": "Vzdálená schránka je platná 60 sekund.", - "fr": "Le presse-papier à distance est valide pendant 60 secondes." + "fr": "Le presse-papier à distance est valide pendant 60 secondes.", + "xloc": [ + "default.handlebars->23->579" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->p11warning2->3", "default.handlebars->container->column_l->p12->p12warning2->3" ], "en": "Remote computer is not powered on, click here to issue a power command.", "cs": "Vzdálený počítač není zapnutý, klikněte zde pro zapnutí.", - "fr": "L'ordinateur distant n'est pas sous tension, cliquez ici pour émettre une commande d'alimentation." + "fr": "L'ordinateur distant n'est pas sous tension, cliquez ici pour émettre une commande d'alimentation.", + "xloc": [ + "default.handlebars->container->column_l->p11->p11warning2->3", + "default.handlebars->container->column_l->p12->p12warning2->3" + ] }, { - "xloc": [ "default-mobile.handlebars->9->293", "default.handlebars->17->1043", "default.handlebars->17->1062", "default-mobile.handlebars->9->311" ], "en": "Remote Control", - "fr": "Télécommande" + "fr": "Télécommande", + "xloc": [ + "default.handlebars->23->1044", + "default.handlebars->23->1063", + "default-mobile.handlebars->9->293", + "default-mobile.handlebars->9->311" + ] }, { - "xloc": [ "default-mobile.handlebars->9->226", "default.handlebars->17->186", "default.handlebars->17->572" ], "en": "Remote Desktop Settings", - "fr": "Paramètres du bureau à distance" + "fr": "Paramètres du bureau à distance", + "xloc": [ + "default.handlebars->23->186", + "default.handlebars->23->572", + "default-mobile.handlebars->9->226" + ] }, { - "xloc": [ "default.handlebars->17->578" ], "en": "Remote Keyboard Entry", - "fr": "Entrée au clavier à distance" + "fr": "Entrée au clavier à distance", + "xloc": [ + "default.handlebars->23->578" + ] }, { - "xloc": [ "default.handlebars->17->1081", "default-mobile.handlebars->9->329" ], - "en": "Remote Mesh User" + "en": "Remote Mesh User", + "xloc": [ + "default.handlebars->23->1082", + "default-mobile.handlebars->9->329" + ] }, { - "xloc": [ "default.handlebars->17->1067", "default.handlebars->17->1044", "default-mobile.handlebars->9->294", "default-mobile.handlebars->9->316" ], - "en": "Remote View Only" + "en": "Remote View Only", + "xloc": [ + "default.handlebars->23->1045", + "default.handlebars->23->1068", + "default-mobile.handlebars->9->294", + "default-mobile.handlebars->9->316" + ] }, { - "xloc": [ "default.handlebars->17->104" ], "en": "Remove", "cs": "Odstranit", - "fr": "Retirer" + "fr": "Retirer", + "xloc": [ + "default.handlebars->23->104" + ] }, { - "xloc": [ "default.handlebars->17->1240" ], - "en": "Remove all 2nd factor authentication." + "en": "Remove all 2nd factor authentication.", + "xloc": [ + "default.handlebars->23->1240" + ] }, { - "xloc": [ "default.handlebars->17->363" ], - "en": "Remove node location" + "en": "Remove node location", + "xloc": [ + "default.handlebars->23->363" + ] }, { - "xloc": [ "default.handlebars->17->481" ], "en": "Remove this device", - "fr": "Retirer ce périphérique" + "fr": "Retirer ce périphérique", + "xloc": [ + "default.handlebars->23->481" + ] }, { - "xloc": [ "default.handlebars->17->987" ], "en": "Remove user rights to this device group", - "fr": "Supprimer les droits d'utilisateur sur ce groupe de périphériques" + "fr": "Supprimer les droits d'utilisateur sur ce groupe de périphériques", + "xloc": [ + "default.handlebars->23->988" + ] }, { - "xloc": [ "default-mobile.handlebars->9->249", "default.handlebars->17->1109", "default.handlebars->17->624", "default-mobile.handlebars->9->81" ], "en": "Rename", "cs": "Přejmenovat", - "fr": "Renommer" + "fr": "Renommer", + "xloc": [ + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default.handlebars->23->624", + "default.handlebars->23->1110", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", + "default-mobile.handlebars->9->81", + "default-mobile.handlebars->9->249" + ] }, { - "xloc": [ "default.handlebars->17->901" ], "en": "Requirements: ", "cs": "Požadavky: ", - "fr": "Exigences:" + "fr": "Exigences:", + "xloc": [ + "default.handlebars->23->902" + ] }, { - "xloc": [ "default.handlebars->17->1179", "default.handlebars->17->1238", "default-mobile.handlebars->9->45" ], "en": "Requirements: {0}.", - "fr": "Exigences: {0}." + "fr": "Exigences: {0}.", + "xloc": [ + "default.handlebars->23->1179", + "default.handlebars->23->1238", + "default-mobile.handlebars->9->45" + ] }, { - "xloc": [ "default.handlebars->17->489" ], "en": "Requires Microsoft ClickOnce support in your browser", - "fr": "Requiert Microsoft ClickOnce dans votre navigateur" + "fr": "Requiert Microsoft ClickOnce dans votre navigateur", + "xloc": [ + "default.handlebars->23->489" + ] }, { - "xloc": [ "default.handlebars->17->493", "default.handlebars->17->491" ], "en": "Requires Microsoft ClickOnce support in your browser.", - "fr": "Requiert Microsoft ClickOnce dans votre navigateur." + "fr": "Requiert Microsoft ClickOnce dans votre navigateur.", + "xloc": [ + "default.handlebars->23->491", + "default.handlebars->23->493" + ] }, { - "xloc": [ "default.handlebars->17->515", "default-mobile.handlebars->9->205" ], "en": "Reset", - "fr": "Réinitialiser" + "fr": "Réinitialiser", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", + "default.handlebars->23->515", + "default-mobile.handlebars->9->205" + ] }, { - "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->resetAccountDiv->3", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->resetAccountDiv->3" ], "en": "Reset account", "cs": "Reset účtu", - "fr": "Réinitialiser le compte" + "fr": "Réinitialiser le compte", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->resetAccountDiv->3", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->resetAccountDiv->3" + ] }, { - "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->7->1->2->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->7->1->2->1->1" ], "en": "Reset Account", "cs": "Reset účtu", - "fr": "Réinitialiser le Compte" + "fr": "Réinitialiser le Compte", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->7->1->2->1->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->7->1->2->1->1" + ] }, { - "xloc": [ "default.handlebars->17->353" ], "en": "Reset devices", "cs": "Reset zařízení", - "fr": "Réinitialiser les appareils" + "fr": "Réinitialiser les appareils", + "xloc": [ + "default.handlebars->23->353" + ] }, { - "xloc": [ ], "en": "Reset map view", - "fr": "Réinitialiser l'affichage de la carte" + "fr": "Réinitialiser l'affichage de la carte", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" + ] }, { - "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->6->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->6->1->1" ], "en": "Reset Password", "cs": "Reset hesla", - "fr": "Réinitialiser le mot de passe" + "fr": "Réinitialiser le mot de passe", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->6->1->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->6->1->1" + ] }, { - "xloc": [ "default.handlebars->17->594" ], "en": "Restart", - "fr": "Redémarrer" + "fr": "Redémarrer", + "xloc": [ + "default.handlebars->23->594", + "player.htm->p11->deskarea0->deskarea4->3" + ] }, { - "xloc": [ "default.handlebars->17->928" ], "en": "Restore Server", - "fr": "Restaurer le serveur" + "fr": "Restaurer le serveur", + "xloc": [ + "default.handlebars->23->929" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p6->p2ServerActions->3->p2ServerActionsRestore->0" ], "en": "Restore server with backup", - "fr": "Restaurer le serveur avec sauvegarde" + "fr": "Restaurer le serveur avec sauvegarde", + "xloc": [ + "default.handlebars->container->column_l->p6->p2ServerActions->3->p2ServerActionsRestore->0" + ] }, { - "xloc": [ "default.handlebars->17->925" ], - "en": "Restore the server using a backup, this will delete the existing server data. Only do this if you know what you are doing." + "en": "Restore the server using a backup, this will delete the existing server data. Only do this if you know what you are doing.", + "xloc": [ + "default.handlebars->23->926" + ] }, { - "xloc": [ "default.handlebars->17->1200" ], "en": "Restrictions", "cs": "Omezení", - "fr": "Restrictions" + "fr": "Restrictions", + "xloc": [ + "default.handlebars->23->1200" + ] }, { - "xloc": [ "default.handlebars->17->814" ], - "en": "Rhaeto-Romanic" + "en": "Rhaeto-Romanic", + "xloc": [ + "default.handlebars->23->814" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->3", "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->3" ], "en": "RLE16, Recommended", - "fr": "RLE16, recommandé" + "fr": "RLE16, recommandé", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->3", + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->3" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->1", "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->1" ], "en": "RLE8, Fastest", - "fr": "RLE8, le plus rapide" + "fr": "RLE8, le plus rapide", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->1", + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->1" + ] }, { - "xloc": [ "default.handlebars->17->815" ], "en": "Romanian", - "fr": "Roumain" + "fr": "Roumain", + "xloc": [ + "default.handlebars->23->815" + ] }, { - "xloc": [ "default.handlebars->17->816" ], "en": "Romanian (Moldavia)", - "fr": "Roumain (Moldavie)" + "fr": "Roumain (Moldavie)", + "xloc": [ + "default.handlebars->23->816" + ] }, { - "xloc": [ "default.handlebars->17->614", "default.handlebars->17->1084", "default-mobile.handlebars->9->239", "default-mobile.handlebars->9->63" ], "en": "Root", - "fr": "Racine" + "fr": "Racine", + "xloc": [ + "default.handlebars->23->614", + "default.handlebars->23->1085", + "default-mobile.handlebars->9->63", + "default-mobile.handlebars->9->239" + ] }, { - "xloc": [ "default.handlebars->17->232", "default.handlebars->17->239" ], "en": "Root Certificate", - "fr": "Certificat Racine" + "fr": "Certificat Racine", + "xloc": [ + "default.handlebars->23->232", + "default.handlebars->23->239" + ] }, { - "xloc": [ "default.handlebars->17->234", "default.handlebars->17->240" ], "en": "Root Certificate File", - "fr": "Fichier de Certificate Racine" + "fr": "Fichier de Certificate Racine", + "xloc": [ + "default.handlebars->23->234", + "default.handlebars->23->240" + ] }, { - "xloc": [ "default.handlebars->termShellContextMenuLinux->cxtermnorm->0" ], - "en": "Root Shell" + "en": "Root Shell", + "xloc": [ + "default.handlebars->termShellContextMenuLinux->cxtermnorm->0" + ] }, { - "xloc": [ ], "en": "Rotate Left", - "fr": "Tourne à gauche" + "fr": "Tourne à gauche", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" + ] }, { - "xloc": [ ], "en": "Rotate Right", - "fr": "Tourner à droite" + "fr": "Tourner à droite", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" + ] }, { - "xloc": [ "default.handlebars->17->488", "default.handlebars->17->173" ], - "en": "Router" + "en": "Router", + "xloc": [ + "default.handlebars->23->173", + "default.handlebars->23->488" + ] }, { - "xloc": [ "default.handlebars->17->817" ], "en": "Russian", - "fr": "Russe" + "fr": "Russe", + "xloc": [ + "default.handlebars->23->817" + ] }, { - "xloc": [ "default.handlebars->17->818" ], "en": "Russian (Moldavia)", - "fr": "Russe (Moldavie)" + "fr": "Russe (Moldavie)", + "xloc": [ + "default.handlebars->23->818" + ] }, { - "xloc": [ "default.handlebars->17->204" ], "en": "Same as device name", - "fr": "Identique au nom de l'appareil" + "fr": "Identique au nom de l'appareil", + "xloc": [ + "default.handlebars->23->204" + ] }, { - "xloc": [ "default.handlebars->17->819" ], - "en": "Sami (Lappish)" + "en": "Sami (Lappish)", + "xloc": [ + "default.handlebars->23->819" + ] }, { - "xloc": [ "default.handlebars->17->127" ], - "en": "Sample IP range values
192.168.0.100
192.168.1.0/24
192.167.0.1-192.168.0.100" + "en": "Sample IP range values
192.168.0.100
192.168.1.0/24
192.167.0.1-192.168.0.100", + "xloc": [ + "default.handlebars->23->127" + ] }, { - "xloc": [ "default.handlebars->17->820" ], - "en": "Sango" + "en": "Sango", + "xloc": [ + "default.handlebars->23->820" + ] }, { - "xloc": [ "default.handlebars->17->821" ], - "en": "Sanskrit" + "en": "Sanskrit", + "xloc": [ + "default.handlebars->23->821" + ] }, { - "xloc": [ "default.handlebars->17->822" ], - "en": "Sardinian" + "en": "Sardinian", + "xloc": [ + "default.handlebars->23->822" + ] }, { - "xloc": [ ], "en": "Save a screenshot of the remote desktop", "cs": "Uložit screenshot vzdáleného počítače", - "fr": "Enregistrer une capture d'écran du bureau distant" + "fr": "Enregistrer une capture d'écran du bureau distant", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" + ] }, { - "xloc": [ "default.handlebars->17->364" ], "en": "Save node location", - "fr": "Enregistrer l'emplacement" + "fr": "Enregistrer l'emplacement", + "xloc": [ + "default.handlebars->23->364" + ] }, { - "xloc": [ ], "en": "Save...", - "fr": "Sauver..." + "fr": "Sauver...", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->3", "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->1" ], "en": "Scaling", "cs": "Škálování", - "fr": "Mise à l'échelle" + "fr": "Mise à l'échelle", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->1", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->3" + ] }, { - "xloc": [ "default.handlebars->17->219" ], "en": "Scan", "cs": "Skenovat", - "fr": "Analyse" + "fr": "Analyse", + "xloc": [ + "default.handlebars->23->219" + ] }, { - "xloc": [ "default.handlebars->17->220" ], "en": "Scan for Intel® AMT devices", - "fr": "Rechercher des périphériques Intel® AMT" + "fr": "Rechercher des périphériques Intel® AMT", + "xloc": [ + "default.handlebars->23->220" + ] }, { - "xloc": [ "default.handlebars->17->192" ], "en": "Scan Network", - "fr": "Scan réseau" + "fr": "Scan réseau", + "xloc": [ + "default.handlebars->23->192" + ] }, { - "xloc": [ "default.handlebars->17->221" ], "en": "Scanning...", - "fr": "Balayage..." + "fr": "Balayage...", + "xloc": [ + "default.handlebars->23->221" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", "default.handlebars->17->378" ], "en": "Search", - "fr": "Chercher" + "fr": "Chercher", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", + "default.handlebars->23->378" + ] }, { - "xloc": [ ], "en": "Search for location", - "fr": "Recherche de lieu" + "fr": "Recherche de lieu", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" + ] }, { - "xloc": [ ], "en": "Search Location", - "fr": "Recherche de lieu" + "fr": "Recherche de lieu", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" + ] }, { - "xloc": [ "default.handlebars->17->208", "default.handlebars->17->1224", "default.handlebars->17->526", "default-mobile.handlebars->9->211" ], "en": "Security", "cs": "Bezpečnost", - "fr": "Sécurité" + "fr": "Sécurité", + "xloc": [ + "default.handlebars->23->208", + "default.handlebars->23->526", + "default.handlebars->23->1224", + "default-mobile.handlebars->9->211" + ] }, { - "xloc": [ "default.handlebars->17->1222" ], "en": "Security Key", - "fr": "Clef de sécurité" + "fr": "Clef de sécurité", + "xloc": [ + "default.handlebars->23->1222" + ] }, { - "xloc": [ "default.handlebars->17->540" ], - "en": "Select a new group for selected devices" + "en": "Select a new group for selected devices", + "xloc": [ + "default.handlebars->23->540" + ] }, { - "xloc": [ "default.handlebars->17->539" ], "en": "Select a new group for this device", - "cs": "Vyber novou skupinu pro toto zařízení" + "cs": "Vyber novou skupinu pro toto zařízení", + "xloc": [ + "default.handlebars->23->539" + ] }, { - "xloc": [ "default.handlebars->17->381" ], - "en": "Select a node to place" + "en": "Select a node to place", + "xloc": [ + "default.handlebars->23->381" + ] }, { - "xloc": [ "default.handlebars->17->616", "default.handlebars->17->618", "default.handlebars->meshContextMenu->cxselectall", "default.handlebars->17->346", "default.handlebars->17->1101" ], "en": "Select All", "cs": "Vybrat vše", - "fr": "Tout Sélectionner" + "fr": "Tout Sélectionner", + "xloc": [ + "default.handlebars->meshContextMenu->cxselectall", + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default.handlebars->23->346", + "default.handlebars->23->616", + "default.handlebars->23->618", + "default.handlebars->23->1102" + ] }, { - "xloc": [ "default.handlebars->17->349" ], - "en": "Select an operation to perform on all selected devices. Actions will be performed only with proper rights." + "en": "Select an operation to perform on all selected devices. Actions will be performed only with proper rights.", + "xloc": [ + "default.handlebars->23->349" + ] }, { - "xloc": [ "default.handlebars->17->512", "default-mobile.handlebars->9->202" ], "en": "Select an operation to perform on this device.", - "cs": "Vyber operaci na tomto zařízení." + "cs": "Vyber operaci na tomto zařízení.", + "xloc": [ + "default.handlebars->23->512", + "default-mobile.handlebars->9->202" + ] }, { - "xloc": [ "default.handlebars->17->1100", "default.handlebars->17->617", "default.handlebars->17->345", "default.handlebars->meshContextMenu->cxselectnone" ], "en": "Select None", "cs": "Vybrat nic", - "fr": "Rien sélectionner" + "fr": "Rien sélectionner", + "xloc": [ + "default.handlebars->meshContextMenu->cxselectnone", + "default.handlebars->23->345", + "default.handlebars->23->617", + "default.handlebars->23->1101" + ] }, { - "xloc": [ ], "en": "SelectAll", "cs": "Vybrat vše", - "fr": "ToutSélectionner" + "fr": "ToutSélectionner", + "xloc": [ + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1" + ] }, { - "xloc": [ "default.handlebars->17->1072", "default-mobile.handlebars->9->321" ], - "en": "Self Events Only" + "en": "Self Events Only", + "xloc": [ + "default.handlebars->23->1073", + "default-mobile.handlebars->9->321" + ] }, { - "xloc": [ ], "en": "Send", "cs": "Odeslat", - "fr": "Envoyer" + "fr": "Envoyer", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3", + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1", + "messenger.handlebars->xbottom" + ] }, { - "xloc": [ "default.handlebars->17->1151" ], "en": "Send a text notification to this user.", - "fr": "Envoyez une notification à cet utilisateur." + "fr": "Envoyez une notification à cet utilisateur.", + "xloc": [ + "default.handlebars->23->1151" + ] }, { - "xloc": [ "default.handlebars->17->250" ], "en": "Send installation link", "cs": "Odeslat odkaz na instalaci", - "fr": "Envoyer le lien d'installation" + "fr": "Envoyer le lien d'installation", + "xloc": [ + "default.handlebars->23->250" + ] }, { - "xloc": [ "default.handlebars->17->1178" ], "en": "Send invitation email.", "cs": "Zaslat pozvánku emailem.", - "fr": "Envoyer un email d'invitation." + "fr": "Envoyer un email d'invitation.", + "xloc": [ + "default.handlebars->23->1178" + ] }, { - "xloc": [ "default.handlebars->17->532" ], "en": "Send MQTT message", - "fr": "Envoyer un message MQTT" + "fr": "Envoyer un message MQTT", + "xloc": [ + "default.handlebars->23->532" + ] }, { - "xloc": [ "default.handlebars->17->347", "default.handlebars->17->517" ], "en": "Send MQTT Message", - "fr": "Envoyer un Message MQTT" + "fr": "Envoyer un Message MQTT", + "xloc": [ + "default.handlebars->23->347", + "default.handlebars->23->517" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1" ], - "en": "Send the selected special key" + "en": "Send the selected special key", + "xloc": [ + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1" + ] }, { - "xloc": [ "default.handlebars->17->1229" ], "en": "Send user notification", - "fr": "Envoyer une notification utilisateur" + "fr": "Envoyer une notification utilisateur", + "xloc": [ + "default.handlebars->23->1229" + ] }, { - "xloc": [ "default.handlebars->17->825" ], - "en": "Serbian" + "en": "Serbian", + "xloc": [ + "default.handlebars->23->825" + ] }, { - "xloc": [ "default.handlebars->17->36" ], - "en": "Serial" + "en": "Serial", + "xloc": [ + "default.handlebars->23->36" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p6->p2ServerActions->1->0" ], - "en": "Server actions" + "en": "Server actions", + "xloc": [ + "default.handlebars->container->column_l->p6->p2ServerActions->1->0" + ] }, { - "xloc": [ "default.handlebars->17->1187" ], - "en": "Server Backup" + "en": "Server Backup", + "xloc": [ + "default.handlebars->23->1187" + ] }, { - "xloc": [ "default.handlebars->17->1273" ], - "en": "Server Certificate" + "en": "Server Certificate", + "xloc": [ + "default.handlebars->23->1273" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p0->p0message->p0span", "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message->p0span" ], - "en": "Server disconnected" + "en": "Server disconnected", + "xloc": [ + "default.handlebars->container->column_l->p0->p0message->p0span", + "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message->p0span" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog3->d3upload->d3uploadMode->3" ], - "en": "Server file selection" + "en": "Server file selection", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog3->d3upload->d3uploadMode->3" + ] }, { - "xloc": [ "default-mobile.handlebars->9->300", "default.handlebars->17->1185", "default.handlebars->17->1050", "default.handlebars->17->1064", "default-mobile.handlebars->9->313" ], - "en": "Server Files" + "en": "Server Files", + "xloc": [ + "default.handlebars->23->1051", + "default.handlebars->23->1065", + "default.handlebars->23->1185", + "default-mobile.handlebars->9->300", + "default-mobile.handlebars->9->313" + ] }, { - "xloc": [ "default.handlebars->17->80" ], - "en": "Server has no error log." + "en": "Server has no error log.", + "xloc": [ + "default.handlebars->23->80" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1" ], - "en": "Server is recording this session" + "en": "Server is recording this session", + "xloc": [ + "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" + ] }, { - "xloc": [ "default.handlebars->17->1144", "default.handlebars->17->1194" ], - "en": "Server Permissions" + "en": "Server Permissions", + "xloc": [ + "default.handlebars->23->1144", + "default.handlebars->23->1194" + ] }, { - "xloc": [ "default.handlebars->17->1208" ], - "en": "Server Quota" + "en": "Server Quota", + "xloc": [ + "default.handlebars->23->1208" + ] }, { - "xloc": [ "default.handlebars->17->1188" ], - "en": "Server Restore" + "en": "Server Restore", + "xloc": [ + "default.handlebars->23->1188" + ] }, { - "xloc": [ "default.handlebars->17->1207" ], "en": "Server Rights", - "fr": "Droits du serveur" + "fr": "Droits du serveur", + "xloc": [ + "default.handlebars->23->1207" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p6->8" ], "en": "Server Statistics", "cs": "Statistiky serveru", - "fr": "Statistiques du serveur" + "fr": "Statistiques du serveur", + "xloc": [ + "default.handlebars->container->column_l->p6->8" + ] }, { - "xloc": [ "default.handlebars->17->1282" ], "en": "Server Tracing", - "fr": "Suivi du serveur" + "fr": "Suivi du serveur", + "xloc": [ + "default.handlebars->23->1282" + ] }, { - "xloc": [ "default.handlebars->17->1189" ], "en": "Server Updates", - "fr": "Mises à jour du serveur" + "fr": "Mises à jour du serveur", + "xloc": [ + "default.handlebars->23->1189" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p6->serverWarningsDiv->2" ], "en": "Server Warnings", - "fr": "Avertissements du serveur" + "fr": "Avertissements du serveur", + "xloc": [ + "default.handlebars->container->column_l->p6->serverWarningsDiv->2" + ] }, { - "xloc": [ "default.handlebars->17->933" ], - "en": "servererrors.txt" + "en": "servererrors.txt", + "xloc": [ + "default.handlebars->23->934" + ] }, { - "xloc": [ "default.handlebars->17->1265" ], - "en": "ServerStats.csv" + "en": "ServerStats.csv", + "xloc": [ + "default.handlebars->23->1265" + ] }, { - "xloc": [ "default.handlebars->17->1284" ], - "en": "servertrace.csv" + "en": "servertrace.csv", + "xloc": [ + "default.handlebars->23->1284" + ] }, { - "xloc": [ "default.handlebars->17->595" ], - "en": "Service Details" + "en": "Service Details", + "xloc": [ + "default.handlebars->23->595" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->deskToolsTopTabService" ], "en": "Services", - "cs": "Služby" + "cs": "Služby", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->deskToolsTopTabService" + ] }, { - "xloc": [ ], "en": "Session time", - "fr": "Temps de session" + "fr": "Temps de session", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1", + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1" + ] }, { - "xloc": [ "player.htm->3->6" ], "en": "SessionID", - "fr": "ID de session" + "fr": "ID de session", + "xloc": [ + "player.htm->3->6" + ] }, { - "xloc": [ ], "en": "Settings", "cs": "Nastavení", - "fr": "Paramètres" + "fr": "Paramètres", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar", + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3" + ] }, { - "xloc": [ "default.handlebars->17->295" ], "en": "Settings File", - "fr": "Fichier de Paramètres" + "fr": "Fichier de Paramètres", + "xloc": [ + "default.handlebars->23->295" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" ], "en": "Settings...", "cs": "Nastavení...", - "fr": "Paramètres..." + "fr": "Paramètres...", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" + ] }, { - "xloc": [ "default.handlebars->17->227" ], - "en": "Setup CIRA" + "en": "Setup CIRA", + "xloc": [ + "default.handlebars->23->227" + ] }, { - "xloc": [ "default.handlebars->17->225" ], "en": "Setup Method", - "cs": "Setup" + "cs": "Setup", + "xloc": [ + "default.handlebars->23->225" + ] }, { - "xloc": [ "default.handlebars->17->10", "default.handlebars->17->185", "default-mobile.handlebars->9->3", "default.handlebars->17->176", "default.handlebars->17->179" ], "en": "Setup...", - "fr": "Traitement..." + "fr": "Traitement...", + "xloc": [ + "default.handlebars->23->10", + "default.handlebars->23->176", + "default.handlebars->23->179", + "default.handlebars->23->185", + "default-mobile.handlebars->9->3" + ] }, { - "xloc": [ ], "en": "Share a file", - "fr": "Partager un fichier" + "fr": "Partager un fichier", + "xloc": [ + "messenger.handlebars->xtop->1" + ] }, { - "xloc": [ "default.handlebars->17->589" ], - "en": "SharedProcess" + "en": "SharedProcess", + "xloc": [ + "default.handlebars->23->589" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->15", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->13" ], - "en": "Shift+Win+M" + "en": "Shift+Win+M", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->13", + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->15" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p31->5->1->0->5", "default.handlebars->container->column_l->p3->3->1->0->3", "default.handlebars->container->column_l->p16->3->1->0->5" ], "en": "Show", "cs": "Zobrazit", - "fr": "Afficher" + "fr": "Afficher", + "xloc": [ + "default.handlebars->container->column_l->p3->3->1->0->3", + "default.handlebars->container->column_l->p16->3->1->0->5", + "default.handlebars->container->column_l->p31->5->1->0->5", + "default.handlebars->container->column_l->p41->3->1" + ] }, { - "xloc": [ "default.handlebars->17->1026" ], "en": "Show connection toolbar", - "fr": "Afficher la barre d'outils de connexion" + "fr": "Afficher la barre d'outils de connexion", + "xloc": [ + "default.handlebars->23->1027" + ] }, { - "xloc": [ "default.handlebars->17->485" ], - "en": "Show device locations information" + "en": "Show device locations information", + "xloc": [ + "default.handlebars->23->485" + ] }, { - "xloc": [ "default.handlebars->17->483" ], - "en": "Show device network interface information" + "en": "Show device network interface information", + "xloc": [ + "default.handlebars->23->483" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->7" ], - "en": "Show devices operating system name" + "en": "Show devices operating system name", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->7" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->5->d7otherset->1", "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->5->1->1" ], - "en": "Show Focus Tool" + "en": "Show Focus Tool", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->5->d7otherset->1", + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->5->1->1" + ] }, { - "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->4->1->showPassHintLink->0", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->4->1->showPassHintLink->0" ], "en": "Show Hint", - "fr": "Dévoiler indice" + "fr": "Dévoiler indice", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->4->1->showPassHintLink->0", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->4->1->showPassHintLink->0" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->5->d7otherset->3", "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->5->1->4" ], - "en": "Show Local Mouse Cursor" + "en": "Show Local Mouse Cursor", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->5->d7otherset->3", + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->5->1->4" + ] }, { - "xloc": [ "default.handlebars->17->1053", "default-mobile.handlebars->9->303" ], - "en": "Show Only Own Events" + "en": "Show Only Own Events", + "xloc": [ + "default.handlebars->23->1054", + "default-mobile.handlebars->9->303" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p6->p2ServerActions->3->p2ServerActionsErrors->0" ], "en": "Show server error log", "cs": "Zobrazit chyby serveru", - "fr": "Afficher le journal des erreurs du serveur" + "fr": "Afficher le journal des erreurs du serveur", + "xloc": [ + "default.handlebars->container->column_l->p6->p2ServerActions->3->p2ServerActionsErrors->0" + ] }, { - "xloc": [ "default.handlebars->17->965", "default.handlebars->17->990" ], - "en": "Simple Admin Control Mode (ACM)" + "en": "Simple Admin Control Mode (ACM)", + "xloc": [ + "default.handlebars->23->966", + "default.handlebars->23->991" + ] }, { - "xloc": [ "default.handlebars->17->993", "default.handlebars->17->997", "default.handlebars->17->963" ], - "en": "Simple Client Control Mode (CCM)" + "en": "Simple Client Control Mode (CCM)", + "xloc": [ + "default.handlebars->23->964", + "default.handlebars->23->994", + "default.handlebars->23->998" + ] }, { - "xloc": [ "default.handlebars->17->823" ], "en": "Sindhi", - "fr": "Sindhi" + "fr": "Sindhi", + "xloc": [ + "default.handlebars->23->823" + ] }, { - "xloc": [ "default.handlebars->17->824" ], "en": "Singhalese", - "fr": "Cingalais" + "fr": "Cingalais", + "xloc": [ + "default.handlebars->23->824" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ], "en": "Size", "cs": "Velikost", - "fr": "Taille" + "fr": "Taille", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" + ] }, { - "xloc": [ "default.handlebars->17->514", "default-mobile.handlebars->9->99", "default.handlebars->17->2", "default.handlebars->17->3", "default.handlebars->17->4", "default-mobile.handlebars->9->100", "default-mobile.handlebars->9->204", "default-mobile.handlebars->9->98" ], "en": "Sleep", "cs": "Spánek", - "fr": "Endormir" + "fr": "Endormir", + "xloc": [ + "default.handlebars->23->2", + "default.handlebars->23->3", + "default.handlebars->23->4", + "default.handlebars->23->514", + "default-mobile.handlebars->9->98", + "default-mobile.handlebars->9->99", + "default-mobile.handlebars->9->100", + "default-mobile.handlebars->9->204" + ] }, { - "xloc": [ "default.handlebars->17->352" ], - "en": "Sleep devices" + "en": "Sleep devices", + "xloc": [ + "default.handlebars->23->352" + ] }, { - "xloc": [ "default.handlebars->17->316", "default.handlebars->17->318", "default-mobile.handlebars->9->105", "default-mobile.handlebars->9->106" ], "en": "Sleeping", - "fr": "Dormir" + "fr": "Dormir", + "xloc": [ + "default.handlebars->23->316", + "default.handlebars->23->318", + "default-mobile.handlebars->9->105", + "default-mobile.handlebars->9->106" + ] }, { - "xloc": [ "default.handlebars->17->826" ], "en": "Slovak", - "fr": "Slovaque" + "fr": "Slovaque", + "xloc": [ + "default.handlebars->23->826" + ] }, { - "xloc": [ "default.handlebars->17->827" ], "en": "Slovenian", - "fr": "Slovène" + "fr": "Slovène", + "xloc": [ + "default.handlebars->23->827" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->5", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->5" ], "en": "Slow", "cs": "Pomalu", - "fr": "Lent" + "fr": "Lent", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->5", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->5" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize->sizeselect->1" ], "en": "Small", "cs": "Malé", - "fr": "Petit" + "fr": "Petit", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize->sizeselect->1" + ] }, { - "xloc": [ "default.handlebars->17->575" ], - "en": "Small Focus" + "en": "Small Focus", + "xloc": [ + "default.handlebars->23->575" + ] }, { - "xloc": [ "default.handlebars->17->662" ], - "en": "Soft disconnect agent" + "en": "Soft disconnect agent", + "xloc": [ + "default.handlebars->23->662" + ] }, { - "xloc": [ "default.handlebars->17->324", "default-mobile.handlebars->9->109" ], - "en": "Soft-Off" + "en": "Soft-Off", + "xloc": [ + "default.handlebars->23->324", + "default-mobile.handlebars->9->109" + ] }, { - "xloc": [ "default-mobile.handlebars->9->55" ], "en": "Software Agent Group", - "fr": "Groupe d'agents logiciels" + "fr": "Groupe d'agents logiciels", + "xloc": [ + "default-mobile.handlebars->9->55" + ] }, { - "xloc": [ "default.handlebars->17->828" ], - "en": "Somani" + "en": "Somani", + "xloc": [ + "default.handlebars->23->828" + ] }, { - "xloc": [ "default.handlebars->17->829" ], - "en": "Sorbian" + "en": "Sorbian", + "xloc": [ + "default.handlebars->23->829" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort" ], "en": "Sort", "cs": "Třídit", - "fr": "Trier" + "fr": "Trier", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->5", "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->5", "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->5", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->5" ], "en": "Sort by date", - "fr": "Trier par date" + "fr": "Trier par date", + "xloc": [ + "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->5", + "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->5", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->5", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->5" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->1", "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->1", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->1", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader", "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->1" ], "en": "Sort by name", "cs": "Třídit podle jména", - "fr": "Trier par nom" + "fr": "Trier par nom", + "xloc": [ + "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->1", + "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader", + "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader", + "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->1", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->1", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->1" + ] }, { - "xloc": [ ], "en": "Sort by process id", - "fr": "Trier par identifiant de processus" + "fr": "Trier par identifiant de processus", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->3", "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->3" ], "en": "Sort by size", "cs": "Třídit podle velikosti", - "fr": "Trier par taille" + "fr": "Trier par taille", + "xloc": [ + "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->3", + "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->3", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->3", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->3" + ] }, { - "xloc": [ ], "en": "Sort by state", "cs": "Třídit podle stavu", - "fr": "Trier par état" + "fr": "Trier par état", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader" + ] }, { - "xloc": [ "default.handlebars->17->830" ], "en": "Spanish", - "fr": "Espagnol" + "fr": "Espagnol", + "xloc": [ + "default.handlebars->23->830" + ] }, { - "xloc": [ "default.handlebars->17->831" ], - "en": "Spanish (Argentina)" + "en": "Spanish (Argentina)", + "xloc": [ + "default.handlebars->23->831" + ] }, { - "xloc": [ "default.handlebars->17->832" ], - "en": "Spanish (Bolivia)" + "en": "Spanish (Bolivia)", + "xloc": [ + "default.handlebars->23->832" + ] }, { - "xloc": [ "default.handlebars->17->833" ], - "en": "Spanish (Chile)" + "en": "Spanish (Chile)", + "xloc": [ + "default.handlebars->23->833" + ] }, { - "xloc": [ "default.handlebars->17->834" ], - "en": "Spanish (Colombia)" + "en": "Spanish (Colombia)", + "xloc": [ + "default.handlebars->23->834" + ] }, { - "xloc": [ "default.handlebars->17->835" ], - "en": "Spanish (Costa Rica)" + "en": "Spanish (Costa Rica)", + "xloc": [ + "default.handlebars->23->835" + ] }, { - "xloc": [ "default.handlebars->17->836" ], - "en": "Spanish (Dominican Republic)" + "en": "Spanish (Dominican Republic)", + "xloc": [ + "default.handlebars->23->836" + ] }, { - "xloc": [ "default.handlebars->17->837" ], - "en": "Spanish (Ecuador)" + "en": "Spanish (Ecuador)", + "xloc": [ + "default.handlebars->23->837" + ] }, { - "xloc": [ "default.handlebars->17->838" ], - "en": "Spanish (El Salvador)" + "en": "Spanish (El Salvador)", + "xloc": [ + "default.handlebars->23->838" + ] }, { - "xloc": [ "default.handlebars->17->839" ], - "en": "Spanish (Guatemala)" + "en": "Spanish (Guatemala)", + "xloc": [ + "default.handlebars->23->839" + ] }, { - "xloc": [ "default.handlebars->17->840" ], - "en": "Spanish (Honduras)" + "en": "Spanish (Honduras)", + "xloc": [ + "default.handlebars->23->840" + ] }, { - "xloc": [ "default.handlebars->17->841" ], - "en": "Spanish (Mexico)" + "en": "Spanish (Mexico)", + "xloc": [ + "default.handlebars->23->841" + ] }, { - "xloc": [ "default.handlebars->17->842" ], - "en": "Spanish (Nicaragua)" + "en": "Spanish (Nicaragua)", + "xloc": [ + "default.handlebars->23->842" + ] }, { - "xloc": [ "default.handlebars->17->843" ], - "en": "Spanish (Panama)" + "en": "Spanish (Panama)", + "xloc": [ + "default.handlebars->23->843" + ] }, { - "xloc": [ "default.handlebars->17->844" ], - "en": "Spanish (Paraguay)" + "en": "Spanish (Paraguay)", + "xloc": [ + "default.handlebars->23->844" + ] }, { - "xloc": [ "default.handlebars->17->845" ], - "en": "Spanish (Peru)" + "en": "Spanish (Peru)", + "xloc": [ + "default.handlebars->23->845" + ] }, { - "xloc": [ "default.handlebars->17->846" ], - "en": "Spanish (Puerto Rico)" + "en": "Spanish (Puerto Rico)", + "xloc": [ + "default.handlebars->23->846" + ] }, { - "xloc": [ "default.handlebars->17->847" ], - "en": "Spanish (Spain)" + "en": "Spanish (Spain)", + "xloc": [ + "default.handlebars->23->847" + ] }, { - "xloc": [ "default.handlebars->17->848" ], - "en": "Spanish (Uruguay)" + "en": "Spanish (Uruguay)", + "xloc": [ + "default.handlebars->23->848" + ] }, { - "xloc": [ "default.handlebars->17->849" ], - "en": "Spanish (Venezuela)" + "en": "Spanish (Venezuela)", + "xloc": [ + "default.handlebars->23->849" + ] }, { - "xloc": [ "default-mobile.handlebars->9->227" ], - "en": "Special Keys" + "en": "Special Keys", + "xloc": [ + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", + "default-mobile.handlebars->9->227" + ] }, { - "xloc": [ "default.handlebars->17->592" ], "en": "Start", - "fr": "Lancé" + "fr": "Lancé", + "xloc": [ + "default.handlebars->23->592" + ] }, { - "xloc": [ "default.handlebars->17->583", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ], "en": "State", - "cs": "Stav" + "cs": "Stav", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1", + "default.handlebars->23->583" + ] }, { - "xloc": [ "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerStats" ], "en": "Stats", - "cs": "Statistiky" + "cs": "Statistiky", + "xloc": [ + "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerStats" + ] }, { - "xloc": [ "default.handlebars->17->1233", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ], "en": "Status", - "fr": "Statut" + "fr": "Statut", + "xloc": [ + "default.handlebars->container->column_l->p42->p42tbl->1->0->7", + "default.handlebars->23->1233" + ] }, { - "xloc": [ "default.handlebars->17->593" ], "en": "Stop", - "fr": "Arrêtez" + "fr": "Arrêtez", + "xloc": [ + "default.handlebars->23->593" + ] }, { - "xloc": [ "default.handlebars->17->598", "default-mobile.handlebars->9->232" ], - "en": "Stop process #{0} \\\"{1}\\\"?" + "en": "Stop process #{0} \\\"{1}\\\"?", + "xloc": [ + "default.handlebars->23->598", + "default-mobile.handlebars->9->232" + ] }, { - "xloc": [ "default-mobile.handlebars->9->66" ], "en": "Storage exceed", "cs": "Uložiště plné", - "fr": "Stockage dépassent" + "fr": "Stockage dépassent", + "xloc": [ + "default-mobile.handlebars->9->66" + ] }, { - "xloc": [ "default.handlebars->17->1087" ], "en": "Storage limit exceed", - "cs": "Překročen limit pro ukládání" + "cs": "Překročen limit pro ukládání", + "xloc": [ + "default.handlebars->23->1088" + ] }, { - "xloc": [ "default.handlebars->17->918" ], - "en": "Strong" + "en": "Strong", + "xloc": [ + "default.handlebars->23->919" + ] }, { - "xloc": [ "login-mobile.handlebars->5->24", "login.handlebars->5->24", "login-mobile.handlebars->5->20", "login.handlebars->5->20" ], "en": "Strong Password", "cs": "Silné heslo", - "fr": "Mot de passe fort" + "fr": "Mot de passe fort", + "xloc": [ + "login.handlebars->5->20", + "login.handlebars->5->24", + "login-mobile.handlebars->5->20", + "login-mobile.handlebars->5->24" + ] }, { - "xloc": [ "default.handlebars->17->48" ], "en": "Success", "cs": "Úspěch", - "fr": "Succès" + "fr": "Succès", + "xloc": [ + "default.handlebars->23->48" + ] }, { - "xloc": [ "default.handlebars->17->850" ], - "en": "Sutu" + "en": "Sutu", + "xloc": [ + "default.handlebars->23->850" + ] }, { - "xloc": [ "default.handlebars->17->851" ], - "en": "Swahili" + "en": "Swahili", + "xloc": [ + "default.handlebars->23->851" + ] }, { - "xloc": [ "default.handlebars->17->852" ], - "en": "Swedish" + "en": "Swedish", + "xloc": [ + "default.handlebars->23->852" + ] }, { - "xloc": [ "default.handlebars->17->853" ], - "en": "Swedish (Finland)" + "en": "Swedish (Finland)", + "xloc": [ + "default.handlebars->23->853" + ] }, { - "xloc": [ "default.handlebars->17->854" ], - "en": "Swedish (Sweden)" + "en": "Swedish (Sweden)", + "xloc": [ + "default.handlebars->23->854" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->3" ], - "en": "Tab" + "en": "Tab", + "xloc": [ + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->3" + ] }, { - "xloc": [ "default.handlebars->17->566" ], - "en": "Tag1, Tag2, Tag3" + "en": "Tag1, Tag2, Tag3", + "cs": "Značka1, Značka2, Značka", + "xloc": [ + "default.handlebars->23->566" + ] }, { - "xloc": [ "default-mobile.handlebars->9->194", "default-mobile.handlebars->9->195", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7", "default.handlebars->17->565", "default-mobile.handlebars->9->222" ], "en": "Tags", - "cs": "Tagy" + "cs": "Tagy", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7", + "default.handlebars->23->565", + "default-mobile.handlebars->9->194", + "default-mobile.handlebars->9->195", + "default-mobile.handlebars->9->222" + ] }, { - "xloc": [ "default.handlebars->17->855" ], - "en": "Tamil" + "en": "Tamil", + "xloc": [ + "default.handlebars->23->855" + ] }, { - "xloc": [ "default.handlebars->17->856" ], - "en": "Tatar" + "en": "Tatar", + "xloc": [ + "default.handlebars->23->856" + ] }, { - "xloc": [ "default.handlebars->17->857" ], - "en": "Teluga" + "en": "Teluga", + "xloc": [ + "default.handlebars->23->857" + ] }, { - "xloc": [ "default.handlebars->contextMenu->cxterminal", "default.handlebars->17->1027", "default.handlebars->17->367", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal" ], "en": "Terminal", "cs": "Terminál", - "fr": "Terminal" + "fr": "Terminal", + "xloc": [ + "default.handlebars->contextMenu->cxterminal", + "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", + "default.handlebars->23->367", + "default.handlebars->23->1028" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p12->p12title->3" ], "en": "Terminal -", - "fr": "Terminal -" + "fr": "Terminal -", + "xloc": [ + "default.handlebars->container->column_l->p12->p12title->3" + ] }, { - "xloc": [ "default.handlebars->17->950" ], - "en": "Terminal Notify" + "en": "Terminal Notify", + "xloc": [ + "default.handlebars->23->951" + ] }, { - "xloc": [ "default.handlebars->17->949" ], - "en": "Terminal Prompt" + "en": "Terminal Prompt", + "xloc": [ + "default.handlebars->23->950" + ] }, { - "xloc": [ "message.handlebars->container->page_content->footer->1->1->0->3->1", "default.handlebars->container->footer->3->3", "login.handlebars->container->footer->3->1", "login-mobile.handlebars->container->footer->1->1->0->3->1", "download.handlebars->container->page_content->footer->1->1->0->3->1" ], - "en": "Terms & Privacy" + "en": "Terms & Privacy", + "xloc": [ + "default.handlebars->container->footer->3->3", + "download.handlebars->container->page_content->footer->1->1->0->3->1", + "login.handlebars->container->footer->3->1", + "login-mobile.handlebars->container->footer->1->1->0->3->1", + "message.handlebars->container->page_content->footer->1->1->0->3->1" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->1", "terms-mobile.handlebars->container->page_content->column_l->1" ], "en": "Terms of use", - "fr": "Conditions d'utilisation" + "fr": "Conditions d'utilisation", + "xloc": [ + "terms.handlebars->container->column_l->1", + "terms-mobile.handlebars->container->page_content->column_l->1" + ] }, { - "xloc": [ "default.handlebars->17->858" ], - "en": "Thai" + "en": "Thai", + "xloc": [ + "default.handlebars->23->858" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->7", "terms-mobile.handlebars->container->page_content->column_l->7" ], - "en": "The following are the required disclosures of open source components and software incorporated into this software." + "en": "The following are the required disclosures of open source components and software incorporated into this software.", + "xloc": [ + "terms.handlebars->container->column_l->7", + "terms-mobile.handlebars->container->page_content->column_l->7" + ] }, { - "xloc": [ "default.handlebars->17->392" ], "en": "The name of the device group this computer belong to", - "fr": "Le nom du groupe de périphériques auquel cet ordinateur appartient" + "fr": "Le nom du groupe de périphériques auquel cet ordinateur appartient", + "xloc": [ + "default.handlebars->23->392" + ] }, { - "xloc": [ "default.handlebars->17->390" ], - "en": "The name of the device group this computer belong to." + "en": "The name of the device group this computer belong to.", + "xloc": [ + "default.handlebars->23->390" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->49->1", "terms-mobile.handlebars->container->page_content->column_l->57->1", "terms-mobile.handlebars->container->page_content->column_l->49->1", "terms.handlebars->container->column_l->71->1", "terms-mobile.handlebars->container->page_content->column_l->71->1", "terms.handlebars->container->column_l->57->1" ], - "en": "THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + "en": "THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "xloc": [ + "terms.handlebars->container->column_l->49->1", + "terms.handlebars->container->column_l->57->1", + "terms.handlebars->container->column_l->71->1", + "terms-mobile.handlebars->container->page_content->column_l->49->1", + "terms-mobile.handlebars->container->page_content->column_l->57->1", + "terms-mobile.handlebars->container->page_content->column_l->71->1" + ] }, { - "xloc": [ "default.handlebars->17->1245" ], "en": "There are currently no notifications", - "fr": "Il n'y a actuellement aucune notification" + "fr": "Il n'y a actuellement aucune notification", + "xloc": [ + "default.handlebars->23->1245" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p5->p5filetable->p5PublicShare->0" ], "en": "These files are shared publicly, click \"link\" to get public url.", - "fr": "Ces fichiers sont partagés publiquement, cliquez sur \"lien\" pour obtenir une URL publique." + "fr": "Ces fichiers sont partagés publiquement, cliquez sur \"lien\" pour obtenir une URL publique.", + "xloc": [ + "default.handlebars->container->column_l->p5->p5filetable->p5PublicShare->0" + ] }, { - "xloc": [ "default.handlebars->17->137" ], - "en": "These settings can be used to connect MQTT for this device." + "en": "These settings can be used to connect MQTT for this device.", + "xloc": [ + "default.handlebars->23->137" + ] }, { - "xloc": [ "default.handlebars->17->904", "default-mobile.handlebars->9->48" ], - "en": "This account does not have the rights to create a new device group." + "en": "This account does not have the rights to create a new device group.", + "xloc": [ + "default.handlebars->23->905", + "default-mobile.handlebars->9->48" + ] }, { - "xloc": [ "default.handlebars->17->1015" ], - "en": "This is not a secure policy as agents will be performing activation." + "en": "This is not a secure policy as agents will be performing activation.", + "xloc": [ + "default.handlebars->23->1016" + ] }, { - "xloc": [ "error404-mobile.handlebars->container->page_content->column_l->3", "error404.handlebars->container->column_l->3" ], "en": "This page does not exist", - "cs": "Tato stránka neexistuje" + "cs": "Tato stránka neexistuje", + "xloc": [ + "error404.handlebars->container->column_l->3", + "error404-mobile.handlebars->container->page_content->column_l->3" + ] }, { - "xloc": [ "default.handlebars->17->1014" ], - "en": "This policy will not impact devices with Intel® AMT in ACM mode." + "en": "This policy will not impact devices with Intel® AMT in ACM mode.", + "xloc": [ + "default.handlebars->23->1015" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->55->1", "terms.handlebars->container->column_l->55->1" ], - "en": "This software consists of voluntary contributions made by many individuals (AUTHORS.txt, http://jqueryui.com/about ). For exact contribution history,see the revision history and logs, available at http://jquery-ui.googlecode.com/svn/" + "en": "This software consists of voluntary contributions made by many individuals (AUTHORS.txt, http://jqueryui.com/about ). For exact contribution history,see the revision history and logs, available at http://jquery-ui.googlecode.com/svn/", + "xloc": [ + "terms.handlebars->container->column_l->55->1", + "terms-mobile.handlebars->container->page_content->column_l->55->1" + ] }, { - "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->21->1", "terms.handlebars->container->column_l->21->1" ], - "en": "THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + "en": "THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "xloc": [ + "terms.handlebars->container->column_l->21->1", + "terms-mobile.handlebars->container->page_content->column_l->21->1" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->43->1", "terms-mobile.handlebars->container->page_content->column_l->43->1" ], - "en": "THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + "en": "THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "xloc": [ + "terms.handlebars->container->column_l->43->1", + "terms-mobile.handlebars->container->page_content->column_l->43->1" + ] }, { - "xloc": [ "terms.handlebars->container->column_l->75->1", "terms-mobile.handlebars->container->page_content->column_l->75->1" ], - "en": "This software uses code from" + "en": "This software uses code from", + "xloc": [ + "terms.handlebars->container->column_l->75->1", + "terms-mobile.handlebars->container->page_content->column_l->75->1" + ] }, { - "xloc": [ "default.handlebars->17->507" ], - "en": "This will add an entry to this device\\'s event log." + "en": "This will add an entry to this device\\'s event log.", + "xloc": [ + "default.handlebars->23->507" + ] }, { - "xloc": [ "default.handlebars->17->535" ], - "en": "This will not remove the devices from the server, but the devices will not longer be able to connect to the server. All remote access to the devices will be lost. The devices must be connected for this command to work." + "en": "This will not remove the devices from the server, but the devices will not longer be able to connect to the server. All remote access to the devices will be lost. The devices must be connected for this command to work.", + "xloc": [ + "default.handlebars->23->535" + ] }, { - "xloc": [ "default.handlebars->17->536" ], - "en": "This will not remove this device from the server, but the device will not longer be able to connect to the server. All remote access to the device will be lost. The device must be connect for this command to work." + "en": "This will not remove this device from the server, but the device will not longer be able to connect to the server. All remote access to the device will be lost. The device must be connect for this command to work.", + "xloc": [ + "default.handlebars->23->536" + ] }, { - "xloc": [ "default.handlebars->17->859" ], - "en": "Tigre" + "en": "Tigre", + "xloc": [ + "default.handlebars->23->859" + ] }, { - "xloc": [ "player.htm->3->1" ], "en": "Time", - "fr": "Temps" + "fr": "Temps", + "xloc": [ + "player.htm->3->1" + ] }, { - "xloc": [ "default.handlebars->17->1264" ], - "en": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss" + "en": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", + "xloc": [ + "default.handlebars->23->1264" + ] }, { - "xloc": [ "default.handlebars->17->1283" ], - "en": "time, source, message" + "en": "time, source, message", + "xloc": [ + "default.handlebars->23->1283" + ] }, { - "xloc": [ "default.handlebars->17->1128" ], - "en": "time, type, action, user, message" + "en": "time, type, action, user, message", + "xloc": [ + "default.handlebars->23->1128" + ] }, { - "xloc": [ "default.handlebars->17->443", "default-mobile.handlebars->9->180" ], "en": "TLS", - "fr": "TLS" + "fr": "TLS", + "xloc": [ + "default.handlebars->23->443", + "default-mobile.handlebars->9->180" + ] }, { - "xloc": [ "default.handlebars->17->210", "default.handlebars->17->528", "default-mobile.handlebars->9->213" ], "en": "TLS security required", "cs": "TLS vyžadováno", - "fr": "Sécurité TLS requise" + "fr": "Sécurité TLS requise", + "xloc": [ + "default.handlebars->23->210", + "default.handlebars->23->528", + "default-mobile.handlebars->9->213" + ] }, { - "xloc": [ "default.handlebars->17->297" ], "en": "To add a computer to {0} run the following command. Root credentials will be needed.", - "cs": "Pro přidání do {0} spusťte následující příkaz. Je třeba spouštět pod rootem." + "cs": "Pro přidání do {0} spusťte následující příkaz. Je třeba spouštět pod rootem.", + "xloc": [ + "default.handlebars->23->297" + ] }, { - "xloc": [ "default.handlebars->17->288" ], "en": "To add a new computer to device group \\\"{0}\\\", download the mesh agent and install it the computer to manage. This agent has server and device group information embedded within it.", - "cs": "Pro přidání nového zařízení do skupiny \\\"{0}\\\", si stáhněte agenta a nainstalujte na zařízení, které chcete spravovat. Tento agent již obsahuje veškeré informace pro připojení na server." + "cs": "Pro přidání nového zařízení do skupiny \\\"{0}\\\", si stáhněte agenta a nainstalujte na zařízení, které chcete spravovat. Tento agent již obsahuje veškeré informace pro připojení na server.", + "xloc": [ + "default.handlebars->23->288" + ] }, { - "xloc": [ "default.handlebars->17->299" ], "en": "To add a new computer to device group \\\"{0}\\\", download the mesh agent and install it the computer to manage. This agent installer has server and device group information embedded within it.", - "cs": "Pro přidání do skupiny \\\"{0}\\\", si musíte stáhnout agenta a nainstalovat ho na počítači, který chcete spravovat. Tento agent má všechny potřebné informace pro připojení již v sobě." + "cs": "Pro přidání do skupiny \\\"{0}\\\", si musíte stáhnout agenta a nainstalovat ho na počítači, který chcete spravovat. Tento agent má všechny potřebné informace pro připojení již v sobě.", + "xloc": [ + "default.handlebars->23->299" + ] }, { - "xloc": [ "default.handlebars->17->226" ], - "en": "To add a new Intel® AMT device to device group \\\"{0}\\\" with CIRA, download the following script files and use MeshCommander to run the script to configure computers." + "en": "To add a new Intel® AMT device to device group \\\"{0}\\\" with CIRA, download the following script files and use MeshCommander to run the script to configure computers.", + "xloc": [ + "default.handlebars->23->226" + ] }, { - "xloc": [ "default.handlebars->17->229" ], - "en": "To add a new Intel® AMT device to device group \\\"{0}\\\" with CIRA, load the following certificate as trusted root within Intel AMT" + "en": "To add a new Intel® AMT device to device group \\\"{0}\\\" with CIRA, load the following certificate as trusted root within Intel AMT", + "xloc": [ + "default.handlebars->23->229" + ] }, { - "xloc": [ "default.handlebars->17->238" ], - "en": "To add a new Intel® AMT device to device group \\\"{0}\\\" with CIRA, load the following certificate as trusted root within Intel AMT, authenticate using a client certificate with the following common name and connect to the following server." + "en": "To add a new Intel® AMT device to device group \\\"{0}\\\" with CIRA, load the following certificate as trusted root within Intel AMT, authenticate using a client certificate with the following common name and connect to the following server.", + "xloc": [ + "default.handlebars->23->238" + ] }, { - "xloc": [ "default.handlebars->17->891" ], - "en": "To delete this account, type in the account password in both boxes below and hit ok." + "en": "To delete this account, type in the account password in both boxes below and hit ok.", + "xloc": [ + "default.handlebars->23->892" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->NoMeshesPanel->1->1->0->3->getStarted1" ], - "en": "To get started," + "en": "To get started,", + "xloc": [ + "default.handlebars->container->column_l->p1->NoMeshesPanel->1->1->0->3->getStarted1" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->5->linuxtab->3" ], "en": "To install, cut and paste the following command in a root terminal.", - "cs": "Pro instalaci spusťte následující příkaz s právy uživatele root." + "cs": "Pro instalaci spusťte následující příkaz s právy uživatele root.", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->linuxtab->3" + ] }, { - "xloc": [ "default.handlebars->17->302" ], "en": "To remove a mesh agent, download the file below, run it and click \\\"uninstall\\\".", - "cs": "Pro odstranění agenta si stáhněte soubor níže, spusťte tento soubor a zvolte \\\"uninstall\\\"." + "cs": "Pro odstranění agenta si stáhněte soubor níže, spusťte tento soubor a zvolte \\\"uninstall\\\".", + "xloc": [ + "default.handlebars->23->302" + ] }, { - "xloc": [ "default.handlebars->17->309" ], - "en": "To remove a mesh agent, run the following command. Root credentials will be needed." + "en": "To remove a mesh agent, run the following command. Root credentials will be needed.", + "xloc": [ + "default.handlebars->23->309" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->5->linuxtab->9" ], "en": "To uninstall, cut and paste the following command as root.", - "cs": "Pro odinstalování spustťe tento příkaz pod s uživatelskými právy root." + "cs": "Pro odinstalování spustťe tento příkaz pod s uživatelskými právy root.", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->linuxtab->9" + ] }, { - "xloc": [ ], - "en": "Toggle F1 to F10 keys emulation type" + "en": "Toggle F1 to F10 keys emulation type", + "xloc": [ + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" + ] }, { - "xloc": [ ], - "en": "Toggle focus mode, when active only the region around the mouse is updated" + "en": "Toggle focus mode, when active only the region around the mouse is updated", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->9" ], "en": "Toggle mouse and keyboard input", - "fr": "Basculer la souris et le clavier" + "fr": "Basculer la souris et le clavier", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->9" + ] }, { - "xloc": [ ], "en": "Toggle night mode", - "fr": "Basculer mode nuit" + "fr": "Basculer mode nuit", + "xloc": [ + "agentinvite.handlebars->container->topbar->uiMenuButton->uiMenu", + "default.handlebars->container->topbar->1->1->uiMenuButton->uiMenu", + "error404.handlebars->container->topbar->uiMenuButton->uiMenu", + "login.handlebars->container->topbar->uiMenuButton->uiMenu", + "terms.handlebars->container->topbar->uiMenuButton->uiMenu" + ] }, { - "xloc": [ ], - "en": "Toggle remote desktop background" + "en": "Toggle remote desktop background", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" + ] }, { - "xloc": [ ], "en": "Toggle terminal emulation type", - "fr": "Basculer le type d'émulation de terminal" + "fr": "Basculer le type d'émulation de terminal", + "xloc": [ + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" ], "en": "Toggle tools view", - "cs": "Přepnout zobrazení nástrojů" + "cs": "Přepnout zobrazení nástrojů", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" + ] }, { - "xloc": [ "player.htm->p11->deskarea0->deskarea1->1" ], - "en": "Toggle View Mode" + "en": "Toggle View Mode", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", + "player.htm->p11->deskarea0->deskarea1->1" + ] }, { - "xloc": [ ], - "en": "Toggle what the return key will send" + "en": "Toggle what the return key will send", + "xloc": [ + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" + ] }, { - "xloc": [ ], "en": "Tools", "cs": "Nástroje", - "fr": "Outils" + "fr": "Outils", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" + ] }, { - "xloc": [ "login.handlebars->container->topbar->uiMenuButton->uiMenu", "default.handlebars->container->topbar->1->1->uiMenuButton->uiMenu", "agentinvite.handlebars->container->topbar->uiMenuButton->uiMenu", "error404.handlebars->container->topbar->uiMenuButton->uiMenu", "terms.handlebars->container->topbar->uiMenuButton->uiMenu" ], - "en": "Top bar interface" + "en": "Top bar interface", + "xloc": [ + "agentinvite.handlebars->container->topbar->uiMenuButton->uiMenu", + "default.handlebars->container->topbar->1->1->uiMenuButton->uiMenu", + "error404.handlebars->container->topbar->uiMenuButton->uiMenu", + "login.handlebars->container->topbar->uiMenuButton->uiMenu", + "terms.handlebars->container->topbar->uiMenuButton->uiMenu" + ] }, { - "xloc": [ "default.handlebars->17->530" ], - "en": "Topic" + "en": "Topic", + "xloc": [ + "default.handlebars->23->530" + ] }, { - "xloc": [ "default.handlebars->17->1256" ], "en": "total", "cs": "celkově", - "fr": "total" + "fr": "total", + "xloc": [ + "default.handlebars->23->1256" + ] }, { - "xloc": [ "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerTrace" ], "en": "Trace", - "fr": "Trace" + "fr": "Trace", + "xloc": [ + "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerTrace" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p41->3->3" ], - "en": "Tracing" + "en": "Tracing", + "xloc": [ + "default.handlebars->container->column_l->p41->3->3" + ] }, { - "xloc": [ "default.handlebars->17->487" ], - "en": "Traffic router used to connect to a device thru this server" + "en": "Traffic router used to connect to a device thru this server", + "xloc": [ + "default.handlebars->23->487" + ] }, { - "xloc": [ "default.handlebars->17->95" ], "en": "Try again.", - "cs": "Zkusit znovu." + "cs": "Zkusit znovu.", + "xloc": [ + "default.handlebars->23->95" + ] }, { - "xloc": [ "default.handlebars->17->860" ], - "en": "Tsonga" + "en": "Tsonga", + "xloc": [ + "default.handlebars->23->860" + ] }, { - "xloc": [ "default.handlebars->17->861" ], - "en": "Tswana" + "en": "Tswana", + "xloc": [ + "default.handlebars->23->861" + ] }, { - "xloc": [ "default.handlebars->17->862" ], - "en": "Turkish" + "en": "Turkish", + "xloc": [ + "default.handlebars->23->862" + ] }, { - "xloc": [ "default.handlebars->17->863" ], - "en": "Turkmen" + "en": "Turkmen", + "xloc": [ + "default.handlebars->23->863" + ] }, { - "xloc": [ "default.handlebars->17->19" ], - "en": "Two factor authentication" + "en": "Two factor authentication", + "xloc": [ + "default.handlebars->23->19" + ] }, { - "xloc": [ "default-mobile.handlebars->9->54", "default.handlebars->17->590", "default.handlebars->17->991", "default.handlebars->17->911", "default.handlebars->17->994", "default-mobile.handlebars->9->276", "default.handlebars->17->940" ], "en": "Type", - "cs": "Typ" + "cs": "Typ", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3", + "default.handlebars->23->590", + "default.handlebars->23->912", + "default.handlebars->23->941", + "default.handlebars->23->992", + "default.handlebars->23->995", + "default-mobile.handlebars->9->54", + "default-mobile.handlebars->9->276" + ] }, { - "xloc": [ "default.handlebars->17->672" ], - "en": "Type in a key name, select the OTP box and press the button on the YubiKey™." + "en": "Type in a key name, select the OTP box and press the button on the YubiKey™.", + "xloc": [ + "default.handlebars->23->672" + ] }, { - "xloc": [ "default.handlebars->17->669" ], - "en": "Type in the name of the key to add." + "en": "Type in the name of the key to add.", + "xloc": [ + "default.handlebars->23->669" + ] }, { - "xloc": [ "default.handlebars->17->864" ], - "en": "Ukrainian" + "en": "Ukrainian", + "xloc": [ + "default.handlebars->23->864" + ] }, { - "xloc": [ "default.handlebars->17->906", "default.handlebars->17->384" ], - "en": "Unable to access a device until a email address is verified. This is required for password recovery. Go to the \\\"My Account\\\" tab to change and verify an email address." + "en": "Unable to access a device until a email address is verified. This is required for password recovery. Go to the \\\"My Account\\\" tab to change and verify an email address.", + "xloc": [ + "default.handlebars->23->384", + "default.handlebars->23->907" + ] }, { - "xloc": [ "default-mobile.handlebars->9->50", "default-mobile.handlebars->9->127" ], - "en": "Unable to access a device until a email address is verified. This is required for password recovery. Go to the \\\"My Account\\\" to change and verify an email address." + "en": "Unable to access a device until a email address is verified. This is required for password recovery. Go to the \\\"My Account\\\" to change and verify an email address.", + "xloc": [ + "default-mobile.handlebars->9->50", + "default-mobile.handlebars->9->127" + ] }, { - "xloc": [ "default-mobile.handlebars->9->129", "default-mobile.handlebars->9->52" ], - "en": "Unable to access a device until two-factor authentication is enabled. This is required for extra security. Go to the \\\"My Account\\\" and look at the \\\"Account Security\\\" section." + "en": "Unable to access a device until two-factor authentication is enabled. This is required for extra security. Go to the \\\"My Account\\\" and look at the \\\"Account Security\\\" section.", + "xloc": [ + "default-mobile.handlebars->9->52", + "default-mobile.handlebars->9->129" + ] }, { - "xloc": [ "default.handlebars->17->386", "default.handlebars->17->908" ], - "en": "Unable to access a device until two-factor authentication is enabled. This is required for extra security. Go to the \\\"My Account\\\" tab and look at the \\\"Account Security\\\" section." + "en": "Unable to access a device until two-factor authentication is enabled. This is required for extra security. Go to the \\\"My Account\\\" tab and look at the \\\"Account Security\\\" section.", + "xloc": [ + "default.handlebars->23->386", + "default.handlebars->23->909" + ] }, { - "xloc": [ "default-mobile.handlebars->9->8", "default.handlebars->17->17" ], - "en": "Unable to connect web socket" + "en": "Unable to connect web socket", + "xloc": [ + "default.handlebars->23->17", + "default-mobile.handlebars->9->8" + ] }, { - "xloc": [ "login-mobile.handlebars->5->2", "login.handlebars->5->2" ], - "en": "Unable to create account." + "en": "Unable to create account.", + "xloc": [ + "login.handlebars->5->2", + "login-mobile.handlebars->5->2" + ] }, { - "xloc": [ "default.handlebars->17->16", "default-mobile.handlebars->9->7" ], - "en": "Unable to perform authentication" + "en": "Unable to perform authentication", + "xloc": [ + "default.handlebars->23->16", + "default-mobile.handlebars->9->7" + ] }, { - "xloc": [ "default.handlebars->17->126" ], "en": "Unable to scan this address range.", - "cs": "Nelze skenovat tento rozsah." + "cs": "Nelze skenovat tento rozsah.", + "xloc": [ + "default.handlebars->23->126" + ] }, { - "xloc": [ "login-mobile.handlebars->5->11", "login.handlebars->5->11" ], - "en": "Unable to sent email." + "en": "Unable to sent email.", + "xloc": [ + "login.handlebars->5->11", + "login-mobile.handlebars->5->11" + ] }, { - "xloc": [ "default.handlebars->17->1074", "default-mobile.handlebars->9->323" ], - "en": "Uninstall" + "en": "Uninstall", + "xloc": [ + "default.handlebars->23->1075", + "default-mobile.handlebars->9->323" + ] }, { - "xloc": [ "default-mobile.handlebars->9->305", "default.handlebars->17->1055", "default.handlebars->17->518", "default.handlebars->17->348" ], - "en": "Uninstall Agent" + "en": "Uninstall Agent", + "xloc": [ + "default.handlebars->23->348", + "default.handlebars->23->518", + "default.handlebars->23->1056", + "default-mobile.handlebars->9->305" + ] }, { - "xloc": [ "default.handlebars->17->538" ], - "en": "Uninstall agent" + "en": "Uninstall agent", + "xloc": [ + "default.handlebars->23->538" + ] }, { - "xloc": [ "default.handlebars->17->400", "default-mobile.handlebars->9->169", "default-mobile.handlebars->9->140", "default.handlebars->17->429", "default-mobile.handlebars->9->168", "default.handlebars->17->73", "default.handlebars->17->344", "default.handlebars->17->72", "default-mobile.handlebars->9->123", "default.handlebars->17->428" ], "en": "Unknown", - "fr": "Inconnue" + "fr": "Inconnue", + "xloc": [ + "default.handlebars->23->72", + "default.handlebars->23->73", + "default.handlebars->23->344", + "default.handlebars->23->400", + "default.handlebars->23->428", + "default.handlebars->23->429", + "default-mobile.handlebars->9->123", + "default-mobile.handlebars->9->140", + "default-mobile.handlebars->9->168", + "default-mobile.handlebars->9->169" + ] }, { - "xloc": [ "default.handlebars->17->934", "default-mobile.handlebars->9->270" ], "en": "Unknown #{0}", - "fr": " #{0} Inconnue" + "fr": " #{0} Inconnue", + "xloc": [ + "default.handlebars->23->935", + "default-mobile.handlebars->9->270" + ] }, { - "xloc": [ "default.handlebars->17->435", "default-mobile.handlebars->9->175" ], "en": "Unknown State", - "fr": "Etat inconnu" + "fr": "Etat inconnu", + "xloc": [ + "default.handlebars->23->435", + "default-mobile.handlebars->9->175" + ] }, { - "xloc": [ "default.handlebars->17->437", "default-mobile.handlebars->9->177" ], "en": "Unknown Version & State", - "fr": "Version et état inconnus" + "fr": "Version et état inconnus", + "xloc": [ + "default.handlebars->23->437", + "default-mobile.handlebars->9->177" + ] }, { - "xloc": [ "default.handlebars->17->135", "default.handlebars->17->275", "default.handlebars->17->261" ], "en": "Unlimited", "cs": "Bez limitu", - "fr": "Illimité" + "fr": "Illimité", + "xloc": [ + "default.handlebars->23->135", + "default.handlebars->23->261", + "default.handlebars->23->275" + ] }, { - "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog3->d3servermode->d3serveraction" ], "en": "Up", "cs": "Nahoru", - "fr": "Up" + "fr": "Up", + "xloc": [ + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default.handlebars->container->dialog->dialogBody->dialog3->d3servermode->d3serveraction", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1" + ] }, { - "xloc": [ "default.handlebars->17->1286" ], - "en": "Up to date" + "en": "Up to date", + "xloc": [ + "default.handlebars->23->1287" + ] }, { - "xloc": [ ], "en": "Upload", "cs": "Nahrát", - "fr": "Télécharger" + "fr": "Télécharger", + "xloc": [ + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3" + ] }, { - "xloc": [ "default.handlebars->17->661" ], - "en": "Upload a core file" + "en": "Upload a core file", + "xloc": [ + "default.handlebars->23->661" + ] }, { - "xloc": [ "default.handlebars->17->658" ], - "en": "Upload default server core" + "en": "Upload default server core", + "xloc": [ + "default.handlebars->23->658" + ] }, { - "xloc": [ "default.handlebars->17->1118", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1", "default.handlebars->17->625", "default-mobile.handlebars->9->250", "default-mobile.handlebars->9->268", "default.handlebars->17->644", "default.handlebars->17->642", "default-mobile.handlebars->9->82", "default.handlebars->17->1110" ], "en": "Upload File", - "cs": "Nahrát soubor" + "cs": "Nahrát soubor", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1", + "default.handlebars->23->625", + "default.handlebars->23->642", + "default.handlebars->23->644", + "default.handlebars->23->1111", + "default.handlebars->23->1119", + "default-mobile.handlebars->9->82", + "default-mobile.handlebars->9->250", + "default-mobile.handlebars->9->268" + ] }, { - "xloc": [ "default.handlebars->17->664" ], - "en": "Upload Mesh Agent Core" + "en": "Upload Mesh Agent Core", + "xloc": [ + "default.handlebars->23->664" + ] }, { - "xloc": [ "default.handlebars->17->660" ], - "en": "Upload recovery core" + "en": "Upload recovery core", + "xloc": [ + "default.handlebars->23->660" + ] }, { - "xloc": [ "default.handlebars->17->1119", "default.handlebars->17->643" ], - "en": "Upload will overwrite {0} file{1}. Continue?" + "en": "Upload will overwrite {0} file{1}. Continue?", + "xloc": [ + "default.handlebars->23->643", + "default.handlebars->23->1120" + ] }, { - "xloc": [ "default.handlebars->17->865" ], - "en": "Upper Sorbian" + "en": "Upper Sorbian", + "xloc": [ + "default.handlebars->23->865" + ] }, { - "xloc": [ "default.handlebars->17->866" ], - "en": "Urdu" + "en": "Urdu", + "xloc": [ + "default.handlebars->23->866" + ] }, { - "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3" ], "en": "Use Security Key", - "fr": "Utiliser clé de sécurité" + "fr": "Utiliser clé de sécurité", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3" + ] }, { - "xloc": [ "default-mobile.handlebars->9->96" ], "en": "Use the desktop version of this website to add devices.", - "fr": "Utilisez la version complète de ce site pour ajouter des appareils." + "fr": "Utilisez la version complète de ce site pour ajouter des appareils.", + "xloc": [ + "default-mobile.handlebars->9->96" + ] }, { - "xloc": [ "default.handlebars->17->1247", "default.handlebars->17->1249" ], "en": "Used", - "cs": "Použito" + "cs": "Použito", + "xloc": [ + "default.handlebars->23->1247", + "default.handlebars->23->1249" + ] }, { - "xloc": [ "default.handlebars->17->1145", "default.handlebars->17->159", "default.handlebars->17->988", "default.handlebars->17->142", "default-mobile.handlebars->9->325" ], "en": "User", - "fr": "Utilisateur" + "fr": "Utilisateur", + "xloc": [ + "default.handlebars->23->142", + "default.handlebars->23->159", + "default.handlebars->23->989", + "default.handlebars->23->1145", + "default-mobile.handlebars->9->325" + ] }, { - "xloc": [ "default.handlebars->17->1146" ], "en": "User + Files", - "cs": "Uživatel + Soubory" + "cs": "Uživatel + Soubory", + "xloc": [ + "default.handlebars->23->1146" + ] }, { - "xloc": [ "default.handlebars->17->1154", "default.handlebars->17->1158", "default.handlebars->17->1156", "default.handlebars->17->1153" ], - "en": "User Account Import" + "en": "User Account Import", + "xloc": [ + "default.handlebars->23->1153", + "default.handlebars->23->1154", + "default.handlebars->23->1156", + "default.handlebars->23->1158" + ] }, { - "xloc": [ "default-mobile.handlebars->9->278", "default.handlebars->17->983" ], - "en": "User Authorizations" + "en": "User Authorizations", + "xloc": [ + "default.handlebars->23->984", + "default-mobile.handlebars->9->278" + ] }, { - "xloc": [ "default.handlebars->17->875", "default.handlebars->17->877" ], - "en": "User browser value" + "en": "User browser value", + "xloc": [ + "default.handlebars->23->875", + "default.handlebars->23->877" + ] }, { - "xloc": [ "default.handlebars->17->956" ], "en": "User Consent", - "fr": "Consentement de l'utilisateur" + "fr": "Consentement de l'utilisateur", + "xloc": [ + "default.handlebars->23->957" + ] }, { - "xloc": [ "default.handlebars->17->1204", "default.handlebars->17->1077" ], - "en": "User Identifier" + "en": "User Identifier", + "xloc": [ + "default.handlebars->23->1078", + "default.handlebars->23->1204" + ] }, { - "xloc": [ "login.handlebars->container->topbar", "default.handlebars->container->topbar->1->1", "terms.handlebars->container->topbar", "agentinvite.handlebars->container->topbar", "error404.handlebars->container->topbar" ], - "en": "User interface selection" + "en": "User interface selection", + "xloc": [ + "agentinvite.handlebars->container->topbar", + "default.handlebars->container->topbar->1->1", + "error404.handlebars->container->topbar", + "login.handlebars->container->topbar", + "terms.handlebars->container->topbar" + ] }, { - "xloc": [ "default.handlebars->17->1165" ], - "en": "User List Export" + "en": "User List Export", + "xloc": [ + "default.handlebars->23->1165" + ] }, { - "xloc": [ "default.handlebars->17->1076" ], "en": "User Name", "cs": "Uživatel", - "fr": "Nom" + "fr": "Nom", + "xloc": [ + "default.handlebars->23->1077" + ] }, { - "xloc": [ "default.handlebars->17->1037" ], "en": "User Names", - "fr": "Noms" + "fr": "Noms", + "xloc": [ + "default.handlebars->23->1038" + ] }, { - "xloc": [ "default.handlebars->17->1260" ], - "en": "User Sessions" + "en": "User Sessions", + "xloc": [ + "default.handlebars->23->1260" + ] }, { - "xloc": [ "default.handlebars->termShellContextMenuLinux->cxtermps" ], "en": "User Shell", - "fr": "Shell utilisateur" + "fr": "Shell utilisateur", + "xloc": [ + "default.handlebars->termShellContextMenu->cxtermunorm", + "default.handlebars->termShellContextMenuLinux->cxtermps" + ] }, { - "xloc": [ "player.htm->3->5" ], "en": "UserID", - "fr": "Identifiant d'utilisateur" + "fr": "Identifiant d'utilisateur", + "xloc": [ + "player.htm->3->5" + ] }, { - "xloc": [ "default.handlebars->17->1162", "default.handlebars->17->1167" ], - "en": "userlist.csv" + "en": "userlist.csv", + "xloc": [ + "default.handlebars->23->1162", + "default.handlebars->23->1167" + ] }, { - "xloc": [ "default.handlebars->17->1164", "default.handlebars->17->1168" ], - "en": "userlist.json" + "en": "userlist.json", + "xloc": [ + "default.handlebars->23->1164", + "default.handlebars->23->1168" + ] }, { - "xloc": [ "default.handlebars->17->205", "player.htm->3->4", "default.handlebars->17->235", "default.handlebars->17->524", "default-mobile.handlebars->9->209" ], "en": "Username", "cs": "Uživatel", - "fr": "Nom d'utilisateur" + "fr": "Nom d'utilisateur", + "xloc": [ + "default.handlebars->23->205", + "default.handlebars->23->235", + "default.handlebars->23->524", + "default-mobile.handlebars->9->209", + "player.htm->3->4" + ] }, { - "xloc": [ "login-mobile.handlebars->5->6", "login.handlebars->5->6" ], "en": "Username already exists.", - "fr": "Ce nom d'utilisateur existe déjà." + "fr": "Ce nom d'utilisateur existe déjà.", + "xloc": [ + "login.handlebars->5->6", + "login-mobile.handlebars->5->6" + ] }, { - "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->nuUserRow->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->0->loginusername", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->0->loginusername", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->nuUserRow->nuUser" ], "en": "Username:", "cs": "Uživatel:", - "fr": "Nom d'utilisateur:" + "fr": "Nom d'utilisateur:", + "xloc": [ + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->0->loginusername", + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->nuUserRow->nuUser", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->0->loginusername", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->nuUserRow->1" + ] }, { - "xloc": [ "default.handlebars->17->1259" ], "en": "Users", - "fr": "Utilisateurs" + "cs": "Uživatelé", + "fr": "Utilisateurs", + "xloc": [ + "default.handlebars->23->1259" + ] }, { - "xloc": [ "default.handlebars->17->602" ], "en": "UTF8 Terminal", - "fr": "Terminal UTF8" + "fr": "Terminal UTF8", + "xloc": [ + "default.handlebars->23->602" + ] }, { - "xloc": [ "default.handlebars->17->867" ], - "en": "Venda" + "en": "Venda", + "xloc": [ + "default.handlebars->23->867" + ] }, { - "xloc": [ "default.handlebars->17->31", "default.handlebars->17->34" ], "en": "Vendor", - "fr": "Vendeur" + "cs": "Výrobce", + "fr": "Vendeur", + "xloc": [ + "default.handlebars->23->31", + "default.handlebars->23->34" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p2->p2AccountActions->3->verifyEmailId->0", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->1->verifyEmailId->0" ], "en": "Verify email", - "fr": "Vérifier le courriel" + "cs": "Ověřit email", + "fr": "Vérifier le courriel", + "xloc": [ + "default.handlebars->container->column_l->p2->p2AccountActions->3->verifyEmailId->0", + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->1->verifyEmailId->0" + ] }, { - "xloc": [ "default.handlebars->container->footer->3->verifyEmailId2" ], "en": "Verify Email", - "cs": "Ověřit Email", - "fr": "Vérifier le Courriel" + "cs": "Ověřit email", + "fr": "Vérifier le Courriel", + "xloc": [ + "default.handlebars->container->footer->3->verifyEmailId2" + ] }, { - "xloc": [ "default.handlebars->17->32", "default.handlebars->17->45", "default.handlebars->container->column_l->p42->p42tbl->1->0->5", "default.handlebars->17->37" ], "en": "Version", - "fr": "Version" + "cs": "Verze", + "fr": "Version", + "xloc": [ + "default.handlebars->container->column_l->p42->p42tbl->1->0->5", + "default.handlebars->23->32", + "default.handlebars->23->37", + "default.handlebars->23->45" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->7", "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->7" ], "en": "Very slow", "cs": "Velmi pomalu", - "fr": "Très lent" + "fr": "Très lent", + "xloc": [ + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->7", + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->7" + ] }, { - "xloc": [ "default.handlebars->17->868" ], "en": "Vietnamese", - "fr": "Vietnamien" + "fr": "Vietnamien", + "xloc": [ + "default.handlebars->23->868" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView" ], "en": "View", - "fr": "Vue" + "fr": "Vue", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView" + ] }, { - "xloc": [ "default.handlebars->17->476" ], - "en": "View notes about this device" + "en": "View notes about this device", + "xloc": [ + "default.handlebars->23->476" + ] }, { - "xloc": [ "default.handlebars->17->969" ], - "en": "View notes about this device group" + "en": "View notes about this device group", + "xloc": [ + "default.handlebars->23->970" + ] }, { - "xloc": [ "default.handlebars->17->1227" ], - "en": "View notes about this user" + "en": "View notes about this user", + "xloc": [ + "default.handlebars->23->1227" + ] }, { - "xloc": [ "default.handlebars->17->869" ], - "en": "Volapuk" + "en": "Volapuk", + "xloc": [ + "default.handlebars->23->869" + ] }, { - "xloc": [ "default.handlebars->17->607" ], - "en": "VT100+ (F10 = ESC+[OY)" + "en": "VT100+ (F10 = ESC+[OY)", + "xloc": [ + "default.handlebars->23->607" + ] }, { - "xloc": [ "messenger.handlebars->13->6" ], "en": "Waiting for other user...", - "cs": "Čekání na ostatní uživatele..." + "cs": "Čekání na ostatní uživatele...", + "xloc": [ + "messenger.handlebars->13->6" + ] }, { - "xloc": [ "default.handlebars->17->1051", "default.handlebars->17->1065", "default-mobile.handlebars->9->301", "default-mobile.handlebars->9->314" ], - "en": "Wake Devices" + "en": "Wake Devices", + "xloc": [ + "default.handlebars->23->1052", + "default.handlebars->23->1066", + "default-mobile.handlebars->9->301", + "default-mobile.handlebars->9->314" + ] }, { - "xloc": [ "default.handlebars->17->513", "default-mobile.handlebars->9->203" ], "en": "Wake-up", - "cs": "Probudit" + "cs": "Probudit", + "xloc": [ + "default.handlebars->23->513", + "default-mobile.handlebars->9->203" + ] }, { - "xloc": [ "default.handlebars->17->351" ], "en": "Wake-up devices", - "cs": "Probudit zařízení" + "cs": "Probudit zařízení", + "xloc": [ + "default.handlebars->23->351" + ] }, { - "xloc": [ "default.handlebars->17->870" ], - "en": "Walloon" + "en": "Walloon", + "xloc": [ + "default.handlebars->23->870" + ] }, { - "xloc": [ "default.handlebars->17->28" ], "en": "WARNING: ", - "fr": "ATTENTION:" + "cs": "UPOZORNĚNÍ: ", + "fr": "ATTENTION:", + "xloc": [ + "default.handlebars->23->28" + ] }, { - "xloc": [ "default.handlebars->17->920" ], "en": "Weak", "cs": "Slabé", - "fr": "Faible" + "fr": "Faible", + "xloc": [ + "default.handlebars->23->921" + ] }, { - "xloc": [ "login-mobile.handlebars->5->26", "login-mobile.handlebars->5->22", "login.handlebars->5->22", "login.handlebars->5->26" ], "en": "Weak Password", "cs": "Slabé heslo", - "fr": "Mot de passe faible" + "fr": "Mot de passe faible", + "xloc": [ + "login.handlebars->5->22", + "login.handlebars->5->26", + "login-mobile.handlebars->5->22", + "login-mobile.handlebars->5->26" + ] }, { - "xloc": [ "default.handlebars->17->1275", "default.handlebars->17->1274" ], "en": "Web Server", - "fr": "Serveur Web" + "fr": "Serveur Web", + "xloc": [ + "default.handlebars->23->1274", + "default.handlebars->23->1275" + ] }, { - "xloc": [ "default.handlebars->17->1276" ], "en": "Web Server Requests", - "fr": "Demandes de serveur Web" + "fr": "Demandes de serveur Web", + "xloc": [ + "default.handlebars->23->1276" + ] }, { - "xloc": [ "default.handlebars->17->1277" ], "en": "Web Socket Relay", - "fr": "Relais Web Socket" + "fr": "Relais Web Socket", + "xloc": [ + "default.handlebars->23->1277" + ] }, { - "xloc": [ "login.handlebars->container->column_l->1" ], "en": "Welcome", "cs": "Vítejte", - "fr": "Bienvenue" + "fr": "Bienvenue", + "xloc": [ + "login.handlebars->container->column_l->1" + ] }, { - "xloc": [ "terms.handlebars->3->1", "default.handlebars->17->13" ], "en": "Welcome {0}.", - "fr": "Bienvenue {0}." + "fr": "Bienvenue {0}.", + "cs": "Vítejte {0}.", + "xloc": [ + "default.handlebars->23->13", + "terms.handlebars->3->1" + ] }, { - "xloc": [ "default.handlebars->17->871" ], "en": "Welsh", - "fr": "Gallois" + "fr": "Gallois", + "xloc": [ + "default.handlebars->23->871" + ] }, { - "xloc": [ "default.handlebars->17->1212" ], "en": "Will be changed on next login.", - "fr": "Sera changé lors de la prochaine connexion." + "cs": "Bude změněno při příštím přihlášení.", + "fr": "Sera changé lors de la prochaine connexion.", + "xloc": [ + "default.handlebars->23->1212" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->3", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->5" ], - "en": "Win" + "en": "Win", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->3", + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->5" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->5", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->7" ], - "en": "Win+Down" + "en": "Win+Down", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->5", + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->7" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->11", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->9" ], - "en": "Win+L" + "en": "Win+L", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->9", + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->11" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->23" ], - "en": "Win+Left" + "en": "Win+Left", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->23" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->13", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->11" ], - "en": "Win+M" + "en": "Win+M", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->11", + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->13" + ] }, { - "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->17", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->15" ], - "en": "Win+R" + "en": "Win+R", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->15", + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->17" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->25" ], - "en": "Win+Right" + "en": "Win+Right", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->25" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->7", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->9" ], - "en": "Win+Up" + "en": "Win+Up", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->7", + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->9" + ] }, { - "xloc": [ "default.handlebars->17->279" ], - "en": "Windows" + "en": "Windows", + "xloc": [ + "default.handlebars->23->279" + ] }, { - "xloc": [ "default.handlebars->17->305", "default.handlebars->17->291" ], - "en": "Windows (.exe)" + "en": "Windows (.exe)", + "xloc": [ + "default.handlebars->23->291", + "default.handlebars->23->305" + ] }, { - "xloc": [ "default.handlebars->17->553" ], - "en": "Windows (32bit)" + "en": "Windows (32bit)", + "xloc": [ + "default.handlebars->23->553" + ] }, { - "xloc": [ "default.handlebars->17->554" ], - "en": "Windows (64bit)" + "en": "Windows (64bit)", + "xloc": [ + "default.handlebars->23->554" + ] }, { - "xloc": [ "default.handlebars->17->282" ], - "en": "Windows (UnInstall)" + "en": "Windows (UnInstall)", + "xloc": [ + "default.handlebars->23->282" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->5->1->twintab32" ], - "en": "Windows 32bit" + "en": "Windows 32bit", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->1->twintab32" + ] }, { - "xloc": [ "default.handlebars->17->401", "default-mobile.handlebars->9->141" ], - "en": "Windows 32bit console" + "en": "Windows 32bit console", + "xloc": [ + "default.handlebars->23->401", + "default-mobile.handlebars->9->141" + ] }, { - "xloc": [ "default.handlebars->17->403", "default-mobile.handlebars->9->143" ], - "en": "Windows 32bit service" + "en": "Windows 32bit service", + "xloc": [ + "default.handlebars->23->403", + "default-mobile.handlebars->9->143" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->5->1->twintab64" ], - "en": "Windows 64bit" + "en": "Windows 64bit", + "xloc": [ + "agentinvite.handlebars->container->column_l->5->1->twintab64" + ] }, { - "xloc": [ "default-mobile.handlebars->9->142", "default.handlebars->17->402" ], - "en": "Windows 64bit console" + "en": "Windows 64bit console", + "xloc": [ + "default.handlebars->23->402", + "default-mobile.handlebars->9->142" + ] }, { - "xloc": [ "default.handlebars->17->404", "default-mobile.handlebars->9->144" ], - "en": "Windows 64bit service" + "en": "Windows 64bit service", + "xloc": [ + "default.handlebars->23->404", + "default-mobile.handlebars->9->144" + ] }, { - "xloc": [ "default.handlebars->17->421", "default-mobile.handlebars->9->161" ], - "en": "Windows MinCore console" + "en": "Windows MinCore console", + "xloc": [ + "default.handlebars->23->421", + "default-mobile.handlebars->9->161" + ] }, { - "xloc": [ "default-mobile.handlebars->9->162", "default.handlebars->17->422" ], - "en": "Windows MinCore service" + "en": "Windows MinCore service", + "xloc": [ + "default.handlebars->23->422", + "default-mobile.handlebars->9->162" + ] }, { - "xloc": [ "default.handlebars->17->252" ], - "en": "Windows only" + "en": "Windows only", + "xloc": [ + "default.handlebars->23->252" + ] }, { - "xloc": [ "default.handlebars->17->308", "default.handlebars->17->294" ], - "en": "Windows x64 (.exe)" + "en": "Windows x64 (.exe)", + "xloc": [ + "default.handlebars->23->294", + "default.handlebars->23->308" + ] }, { - "xloc": [ "default.handlebars->17->494" ], - "en": "WinSCP" + "en": "WinSCP", + "xloc": [ + "default.handlebars->23->494" + ] }, { - "xloc": [ "default.handlebars->17->478" ], "en": "Write an event for this device", - "fr": "Écrire un événement pour ce périphérique" + "fr": "Écrire un événement pour ce périphérique", + "xloc": [ + "default.handlebars->23->478" + ] }, { - "xloc": [ "login.handlebars->dialog->dialogHeader->id_dialogclose->0", "login-mobile.handlebars->dialog->1->id_dialogclose->0", "default.handlebars->container->column_l->p1->xdevicesmap->xmapSearchResultsDlg->xmapSearchResultsBck->xmapSearchClose->0", "default-mobile.handlebars->dialog->1->id_dialogclose->0" ], - "en": "X" + "en": "X", + "xloc": [ + "default.handlebars->container->column_l->p1->xdevicesmap->xmapSearchResultsDlg->xmapSearchResultsBck->xmapSearchClose->0", + "default-mobile.handlebars->dialog->1->id_dialogclose->0", + "login.handlebars->dialog->dialogHeader->id_dialogclose->0", + "login-mobile.handlebars->dialog->1->id_dialogclose->0" + ] }, { - "xloc": [ "default.handlebars->17->408", "default-mobile.handlebars->9->148" ], - "en": "XENx86" + "en": "XENx86", + "xloc": [ + "default.handlebars->23->408", + "default-mobile.handlebars->9->148" + ] }, { - "xloc": [ "default.handlebars->17->872" ], - "en": "Xhosa" + "en": "Xhosa", + "xloc": [ + "default.handlebars->23->872" + ] }, { - "xloc": [ "default.handlebars->17->873" ], - "en": "Yiddish" + "en": "Yiddish", + "xloc": [ + "default.handlebars->23->873" + ] }, { - "xloc": [ "default.handlebars->17->93" ], "en": "You can reactivate this feature at any time.", - "fr": "Vous pouvez réactiver cette fonctionnalité à tout moment." + "fr": "Vous pouvez réactiver cette fonctionnalité à tout moment.", + "xloc": [ + "default.handlebars->23->93" + ] }, { - "xloc": [ "agentinvite.handlebars->container->column_l->3" ], "en": "You have been invited to install a software that will allow a remote operator to fully access your computer remotely including the desktop and files.\n Only follow the instructions below if this invitation was expected and you know who will be accessing your computer.\n Selecting your operation system and follow the instructions below.", - "cs": "Byla vám doručena pozvánka k instalaci softwaru, který umožňuje vzdálenou správu zařízení.\n Postupujte podle níže uvedených pokynů, pokud jste si vědom toho, že tato pozvánka je legitimní a chcete tento přístup umožnit.\n Vyberte si operační systém a postupujte dle pokynů níže." + "cs": "Byla vám doručena pozvánka k instalaci softwaru, který umožňuje vzdálenou správu zařízení.\n Postupujte podle níže uvedených pokynů, pokud jste si vědom toho, že tato pozvánka je legitimní a chcete tento přístup umožnit.\n Vyberte si operační systém a postupujte dle pokynů níže.", + "xloc": [ + "agentinvite.handlebars->container->column_l->3" + ] }, { - "xloc": [ "default.handlebars->17->88" ], "en": "You will now need a valid token to login again.", - "fr": "Vous aurez maintenant besoin d'un jeton valide pour vous connecter à nouveau." + "fr": "Vous aurez maintenant besoin d'un jeton valide pour vous connecter à nouveau.", + "xloc": [ + "default.handlebars->23->88" + ] }, { - "xloc": [ "default.handlebars->17->675" ], - "en": "YubiKey™ OTP" + "en": "YubiKey™ OTP", + "xloc": [ + "default.handlebars->23->675" + ] }, { - "xloc": [ "default.handlebars->17->372" ], - "en": "Zoom to fit extent" + "en": "Zoom to fit extent", + "xloc": [ + "default.handlebars->23->372" + ] }, { - "xloc": [ "default.handlebars->17->376", "default.handlebars->17->369" ], - "en": "Zoom-in to extent" + "en": "Zoom-in to extent", + "xloc": [ + "default.handlebars->23->369", + "default.handlebars->23->376" + ] }, { - "xloc": [ "default.handlebars->17->370", "default.handlebars->17->377" ], - "en": "Zoom-out to extent" + "en": "Zoom-out to extent", + "xloc": [ + "default.handlebars->23->370", + "default.handlebars->23->377" + ] }, { - "xloc": [ "default.handlebars->17->874" ], - "en": "Zulu" + "en": "Zulu", + "xloc": [ + "default.handlebars->23->874" + ] }, { - "xloc": [ "default.handlebars->17->1231" ], "en": "{0} active sessions", - "fr": "{0} sessions actives" + "fr": "{0} sessions actives", + "xloc": [ + "default.handlebars->23->1231" + ] }, { - "xloc": [ "default.handlebars->17->1093" ], - "en": "{0} b" + "en": "{0} b", + "xloc": [ + "default.handlebars->23->1094" + ] }, { - "xloc": [ "default.handlebars->17->1103", "default-mobile.handlebars->9->75" ], "en": "{0} bytes", "cs": "{0} bytů", - "fr": "{0} octets" + "fr": "{0} octets", + "xloc": [ + "default.handlebars->23->1104", + "default-mobile.handlebars->9->75" + ] }, { - "xloc": [ "default.handlebars->17->1088" ], "en": "{0} bytes remaining", - "fr": "{0} octets restants" + "fr": "{0} octets restants", + "xloc": [ + "default.handlebars->23->1089" + ] }, { - "xloc": [ "default.handlebars->17->1096" ], - "en": "{0} Gb" + "en": "{0} Gb", + "xloc": [ + "default.handlebars->23->1097" + ] }, { - "xloc": [ "default.handlebars->17->1091" ], "en": "{0} gigabytes remaining", - "cs": "{0} gigabytů zbývá" + "cs": "{0} gigabytů zbývá", + "xloc": [ + "default.handlebars->23->1092" + ] }, { - "xloc": [ "default.handlebars->17->1217" ], - "en": "{0} groups" + "en": "{0} groups", + "xloc": [ + "default.handlebars->23->1217" + ] }, { - "xloc": [ "default.handlebars->17->131" ], "en": "{0} hour{1}", - "cs": "{0} hodina{1}" + "cs": "{0} hodina{1}", + "xloc": [ + "default.handlebars->23->131" + ] }, { - "xloc": [ "default.handlebars->17->1094" ], - "en": "{0} Kb" + "en": "{0} Kb", + "xloc": [ + "default.handlebars->23->1095" + ] }, { - "xloc": [ "default.handlebars->17->1089" ], "en": "{0} kilobytes remaining", - "cs": "{0} kilobytů zbývá" + "cs": "{0} kilobytů zbývá", + "xloc": [ + "default.handlebars->23->1090" + ] }, { - "xloc": [ "login-mobile.handlebars->5->31", "login.handlebars->5->31" ], - "en": "{0} lower case" + "en": "{0} lower case", + "xloc": [ + "login.handlebars->5->31", + "login-mobile.handlebars->5->31" + ] }, { - "xloc": [ "default.handlebars->17->1095" ], - "en": "{0} Mb" + "en": "{0} Mb", + "xloc": [ + "default.handlebars->23->1096" + ] }, { - "xloc": [ "default.handlebars->17->41" ], - "en": "{0} Mb, {1} Mhz" + "en": "{0} Mb, {1} Mhz", + "xloc": [ + "default.handlebars->23->41" + ] }, { - "xloc": [ "default.handlebars->17->1090" ], "en": "{0} megabytes remaining", - "cs": "{0} megabytů zbývá" + "cs": "{0} megabytů zbývá", + "xloc": [ + "default.handlebars->23->1091" + ] }, { - "xloc": [ "default.handlebars->17->26" ], - "en": "{0} minute{1} until disconnect" + "en": "{0} minute{1} until disconnect", + "xloc": [ + "default.handlebars->23->26" + ] }, { - "xloc": [ "default.handlebars->17->1137" ], - "en": "{0} more users not shown, use search box to look for users..." + "en": "{0} more users not shown, use search box to look for users...", + "xloc": [ + "default.handlebars->23->1137" + ] }, { - "xloc": [ "default.handlebars->17->312" ], "en": "{0} nodes", "cs": "{0} zařízení", - "fr": "{0} appareil" + "fr": "{0} appareil", + "xloc": [ + "default.handlebars->23->312" + ] }, { - "xloc": [ "login.handlebars->5->33", "login-mobile.handlebars->5->33" ], - "en": "{0} non-alphanumeric" + "en": "{0} non-alphanumeric", + "xloc": [ + "login.handlebars->5->33", + "login-mobile.handlebars->5->33" + ] }, { - "xloc": [ "login.handlebars->5->32", "login-mobile.handlebars->5->32" ], - "en": "{0} numeric" + "en": "{0} numeric", + "xloc": [ + "login.handlebars->5->32", + "login-mobile.handlebars->5->32" + ] }, { - "xloc": [ "player.htm->3->3" ], - "en": "{0} second{1}" + "en": "{0} second{1}", + "xloc": [ + "player.htm->3->3" + ] }, { - "xloc": [ "default.handlebars->17->25" ], "en": "{0} second{1} until disconnect", - "cs": "{0} sekund{1} do odpojení" + "cs": "{0} sekund{1} do odpojení", + "xloc": [ + "default.handlebars->23->25" + ] }, { - "xloc": [ "default.handlebars->17->1141" ], - "en": "{0} sessions" + "en": "{0} sessions", + "xloc": [ + "default.handlebars->23->1141" + ] }, { - "xloc": [ "default.handlebars->17->296" ], - "en": "{0} settings (.msh)" + "en": "{0} settings (.msh)", + "xloc": [ + "default.handlebars->23->296" + ] }, { - "xloc": [ "player.htm->3->8" ], - "en": "{0} to {1}" + "en": "{0} to {1}", + "xloc": [ + "player.htm->3->8" + ] }, { - "xloc": [ "login-mobile.handlebars->5->30", "login.handlebars->5->30" ], - "en": "{0} upper case" + "en": "{0} upper case", + "xloc": [ + "login.handlebars->5->30", + "login-mobile.handlebars->5->30" + ] }, { - "xloc": [ "default.handlebars->17->180" ], - "en": "{0} users" + "en": "{0} users", + "xloc": [ + "default.handlebars->23->180" + ] }, { - "xloc": [ "default-mobile.handlebars->9->67" ], - "en": "{0}b left" + "en": "{0}b left", + "xloc": [ + "default-mobile.handlebars->9->67" + ] }, { - "xloc": [ "default-mobile.handlebars->9->70" ], - "en": "{0}g left" + "en": "{0}g left", + "xloc": [ + "default-mobile.handlebars->9->70" + ] }, { - "xloc": [ "default.handlebars->17->1098" ], - "en": "{0}k in 1 file. {1}k maximum" + "en": "{0}k in 1 file. {1}k maximum", + "xloc": [ + "default.handlebars->23->1099" + ] }, { - "xloc": [ "default.handlebars->17->1097" ], - "en": "{0}k in {1} files. {2}k maximum" + "en": "{0}k in {1} files. {2}k maximum", + "xloc": [ + "default.handlebars->23->1098" + ] }, { - "xloc": [ "default-mobile.handlebars->9->68" ], "en": "{0}k left", - "cs": "{0}k zbývá" + "cs": "{0}k zbývá", + "xloc": [ + "default-mobile.handlebars->9->68" + ] }, { - "xloc": [ "default-mobile.handlebars->9->69" ], - "en": "{0}m left" + "en": "{0}m left", + "xloc": [ + "default-mobile.handlebars->9->69" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1->5" ], - "en": "↺" + "en": "↺", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1->5" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1->7" ], - "en": "↻" + "en": "↻", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1->7" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1->3", "player.htm->p11->deskarea0->deskarea1->1->1" ], - "en": "⇲" + "en": "⇲", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1->3", + "player.htm->p11->deskarea0->deskarea1->1->1" + ] }, { - "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p20->1->1->0->1->3", "default-mobile.handlebars->container->page_content->column_l->p3->1->1->0->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->1->1->0->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->1->1->0->1->3" ], - "en": "◀" + "en": "◀", + "xloc": [ + "default-mobile.handlebars->container->page_content->column_l->p3->1->1->0->1->3", + "default-mobile.handlebars->container->page_content->column_l->p5->1->1->0->1->3", + "default-mobile.handlebars->container->page_content->column_l->p10->1->1->0->1->3", + "default-mobile.handlebars->container->page_content->column_l->p20->1->1->0->1->3" + ] }, { - "xloc": [ "terms.handlebars->container->topbar->uiMenuButton", "login.handlebars->container->topbar->uiMenuButton", "agentinvite.handlebars->container->topbar->uiMenuButton", "default.handlebars->container->topbar->1->1->uiMenuButton", "error404.handlebars->container->topbar->uiMenuButton" ], - "en": "♦" + "en": "♦", + "xloc": [ + "agentinvite.handlebars->container->topbar->uiMenuButton", + "default.handlebars->container->topbar->1->1->uiMenuButton", + "error404.handlebars->container->topbar->uiMenuButton", + "login.handlebars->container->topbar->uiMenuButton", + "terms.handlebars->container->topbar->uiMenuButton" + ] }, { - "xloc": [ "player.htm->p11->deskarea0->deskarea3x->bigok->0", "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageOtp->0->authCodesSetupCheck->0", "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageAuthApp->0->authAppSetupCheck->0", "default.handlebars->container->column_l->p13->p13filetable->p13bigok->0", "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageHardwareOtp->0->authKeySetupCheck->0", "default.handlebars->container->column_l->p5->p5filetable->bigok->0" ], - "en": "✓" + "en": "✓", + "xloc": [ + "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageAuthApp->0->authAppSetupCheck->0", + "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageHardwareOtp->0->authKeySetupCheck->0", + "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageOtp->0->authCodesSetupCheck->0", + "default.handlebars->container->column_l->p5->p5filetable->bigok->0", + "default.handlebars->container->column_l->p13->p13filetable->p13bigok->0", + "player.htm->p11->deskarea0->deskarea3x->bigok->0" + ] }, { - "xloc": [ "player.htm->p11->dialog->dialogHeader->id_dialogclose", "default.handlebars->container->dialog->dialogHeader->id_dialogclose", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->idx_deskFullBtn2" ], - "en": "✖" + "en": "✖", + "xloc": [ + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->idx_deskFullBtn2", + "default.handlebars->container->dialog->dialogHeader->id_dialogclose", + "player.htm->p11->dialog->dialogHeader->id_dialogclose" + ] }, { - "xloc": [ "default.handlebars->container->column_l->p5->p5filetable->bigfail->0", "player.htm->p11->deskarea0->deskarea3x->bigfail->0", "default.handlebars->container->column_l->p13->p13filetable->p13bigfail->0" ], - "en": "✗" + "en": "✗", + "xloc": [ + "default.handlebars->container->column_l->p5->p5filetable->bigfail->0", + "default.handlebars->container->column_l->p13->p13filetable->p13bigfail->0", + "player.htm->p11->deskarea0->deskarea3x->bigfail->0" + ] + }, + { + "en": "Admin Shell", + "xloc": [ + "default.handlebars->termShellContextMenu->cxtermnorm->0" + ] + }, + { + "en": "Admin PowerShell", + "xloc": [ + "default.handlebars->termShellContextMenu->cxtermps" + ] + }, + { + "en": "User PowerShell", + "xloc": [ + "default.handlebars->termShellContextMenu->cxtermups" + ] + }, + { + "en": "Help translate MeshCentral", + "xloc": [ + "default.handlebars->23->880" + ] + }, + { + "en": "2nd factor authentication enabled", + "xloc": [ + "default.handlebars->23->1225" + ] + }, + { + "en": "\\\\'", + "xloc": [ + "default.handlebars->23->1285" + ] + }, + { + "en": "Connect to your home or office devices from anywhere in the world using MeshCentral, the real time, open source remote monitoring and management web site. You will need to download and install a management agent on your computers. Once installed, computers will show up in the \"My Devices\" section of this web site and you will be able to monitor them and take control of them.", + "cs": "Přihlašte se na různá svá nebo firemní zařízení odkudkoliv z celého světa pomocí technologie MeshCentral. Jednoduchá správa přes web. Jediné co potřebujete je agent na daném zařízení. Po instalaci uvidíte zařízení v sekci \"Moje zařízení\" a můžete toto zařízení ovládat.", + "fr": "Connectez-vous à vos ordinateurs à la maison ou au bureau depuis n'importe où dans le monde avec MeshCentral, le site web open source de surveillance et de gestion d’ordinateur à distance en temps réel. Vous devrez télécharger et installer un agent de gestion sur vos ordinateurs. Une fois installés, les ordinateurs apparaîtront dans la section \"Mes appareils\" de ce site et vous pourrez les surveiller et en prendre le contrôle.", + "xloc": [ + "login.handlebars->container->column_l->welcomeText" + ] + }, + { + "en": "6.Rcarousel - MIT LIcense", + "xloc": [ + "terms.handlebars->container->column_l->65->1->0", + "terms-mobile.handlebars->container->page_content->column_l->65->1->0" + ] } ] } \ No newline at end of file diff --git a/views/default-min.handlebars b/views/default-min.handlebars index a3ed927c..5e2b7cc2 100644 --- a/views/default-min.handlebars +++ b/views/default-min.handlebars @@ -8702,4 +8702,5 @@ function printDateTime(d) { return d.toLocaleString(args.locale); } function addDetailItem(title, value, state) { return '
' + value + '' + title + '
'; } function format(format) { var args = Array.prototype.slice.call(arguments, 1); return format.replace(/{(\d+)}/g, function (match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); }; + function addTextLink(subtext, text, link) { var i = text.toLowerCase().indexOf(subtext.toLowerCase()); if (i == -1) { return text; } return text.substring(0, i) + '' + subtext + '' + text.substring(i + subtext.length); } function nobreak(x) { return x.split(' ').join(' '); } \ No newline at end of file diff --git a/views/default.handlebars b/views/default.handlebars index a3d1feaa..350015a1 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -9713,6 +9713,7 @@ function printDateTime(d) { return d.toLocaleString(args.locale); } function addDetailItem(title, value, state) { return '
' + value + '' + title + '
'; } function format(format) { var args = Array.prototype.slice.call(arguments, 1); return format.replace(/{(\d+)}/g, function (match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); }; + function addTextLink(subtext, text, link) { var i = text.toLowerCase().indexOf(subtext.toLowerCase()); if (i == -1) { return text; } return text.substring(0, i) + '' + subtext + '' + text.substring(i + subtext.length); } function nobreak(x) { return x.split(' ').join(' '); } diff --git a/views/login-min.handlebars b/views/login-min.handlebars index 047bb5f2..6e8b2701 100644 --- a/views/login-min.handlebars +++ b/views/login-min.handlebars @@ -1 +1 @@ -{{{title}}} - Login
{{{title}}}
{{{title2}}}

Welcome


\ No newline at end of file +{{{title}}} - Login
{{{title}}}
{{{title2}}}

Welcome


\ No newline at end of file diff --git a/views/login.handlebars b/views/login.handlebars index 9ededb02..d1caf90a 100644 --- a/views/login.handlebars +++ b/views/login.handlebars @@ -31,7 +31,7 @@

Welcome

- +
@@ -321,6 +321,7 @@ // Display the welcome text if (welcomeText) { QH('welcomeText', welcomeText); } + QH('welcomeText', addTextLink('MeshCentral', Q('welcomeText').innerHTML, 'http://www.meshcommander.com/meshcentral2')); QV('welcomeText', true); window.onresize = center; @@ -721,6 +722,7 @@ function putstore(name, val) { try { if (typeof (localStorage) === 'undefined') return; localStorage.setItem(name, val); } catch (e) { } } function getstore(name, val) { try { if (typeof (localStorage) === 'undefined') return val; var v = localStorage.getItem(name); if ((v == null) || (v == null)) return val; return v; } catch (e) { return val; } } function format(format) { var args = Array.prototype.slice.call(arguments, 1); return format.replace(/{(\d+)}/g, function (match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); }; + function addTextLink(subtext, text, link) { var i = text.toLowerCase().indexOf(subtext.toLowerCase()); if (i == -1) { return text; } return text.substring(0, i) + '' + subtext + '' + text.substring(i + subtext.length); } diff --git a/views/translations/default-min_cs.handlebars b/views/translations/default-min_cs.handlebars index 90668db6..3605917a 100644 --- a/views/translations/default-min_cs.handlebars +++ b/views/translations/default-min_cs.handlebars @@ -1,4 +1,4 @@ -{{{StartGeoLocation}}}{{{EndGeoLocation}}}{{{title}}}
{{{title}}}
{{{title2}}}

 

{{{StartGeoLocation}}}{{{EndGeoLocation}}}{{{title}}}
{{{title}}}
{{{title2}}}

 

\ No newline at end of file diff --git a/views/translations/default-min_fr.handlebars b/views/translations/default-min_fr.handlebars index 1654bb9e..da4dd253 100644 --- a/views/translations/default-min_fr.handlebars +++ b/views/translations/default-min_fr.handlebars @@ -7646,7 +7646,7 @@ if (user.otpsecret > 0) { factors.push("Authentication App"); } if (user.otphkeys > 0) { factors.push("Clef de sécurité"); } if (user.otpkeys > 0) { factors.push("Backup Codes"); } - x += addDeviceAttribute("Sécurité", ' ' + factors.join(', ')); + x += addDeviceAttribute("Sécurité", ' ' + factors.join(', ')); } x += '

'; @@ -8702,4 +8702,5 @@ function printDateTime(d) { return d.toLocaleString(args.locale); } function addDetailItem(title, value, state) { return '
' + value + '' + title + '
'; } function format(format) { var args = Array.prototype.slice.call(arguments, 1); return format.replace(/{(\d+)}/g, function (match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); }; + function addTextLink(subtext, text, link) { var i = text.toLowerCase().indexOf(subtext.toLowerCase()); if (i == -1) { return text; } return text.substring(0, i) + '' + subtext + '' + text.substring(i + subtext.length); } function nobreak(x) { return x.split(' ').join(' '); } \ No newline at end of file diff --git a/views/translations/default-mobile-min_cs.handlebars b/views/translations/default-mobile-min_cs.handlebars index f7a7a579..06faf037 100644 --- a/views/translations/default-mobile-min_cs.handlebars +++ b/views/translations/default-mobile-min_cs.handlebars @@ -1 +1 @@ -{{{title}}}
{{{title}}}
{{{title2}}}
\ No newline at end of file +{{{title}}}
{{{title}}}
{{{title2}}}
\ No newline at end of file diff --git a/views/translations/default-mobile_cs.handlebars b/views/translations/default-mobile_cs.handlebars index 9b2e777a..2dbf32f1 100644 --- a/views/translations/default-mobile_cs.handlebars +++ b/views/translations/default-mobile_cs.handlebars @@ -233,22 +233,22 @@
- Device Groups - ( New ) + Skupiny zařízení + ( Vytvořit )

@@ -569,7 +569,7 @@

-
Other
+
Ostatní
@@ -692,12 +692,12 @@ QV('p3createMeshLink2', false); if (typeof userinfo.passchange == 'number') { - if (userinfo.passchange == -1) { QH('p2nextPasswordUpdateTime', " - Reset on next login."); } + if (userinfo.passchange == -1) { QH('p2nextPasswordUpdateTime', " - Reset při příštím přihlášení."); } else if ((passRequirements != null) && (typeof passRequirements.reset == 'number')) { var seconds = (userinfo.passchange) + (passRequirements.reset * 86400) - Math.floor(Date.now() / 1000); - if (seconds < 0) { QH('p2nextPasswordUpdateTime', " - Reset on next login."); } - else if (seconds < 3600) { QH('p2nextPasswordUpdateTime', format(" - Reset in {0} minute{1}.", Math.floor(seconds / 60), addLetterS(Math.floor(seconds / 60)))); } - else if (seconds < 86400) { QH('p2nextPasswordUpdateTime', format(" - Reset in {0} hour{1}.", Math.floor(seconds / 3600), addLetterS(Math.floor(seconds / 3600)))); } + if (seconds < 0) { QH('p2nextPasswordUpdateTime', " - Reset při příštím přihlášení."); } + else if (seconds < 3600) { QH('p2nextPasswordUpdateTime', format(" - Reset v {0} minut{1}.", Math.floor(seconds / 60), addLetterS(Math.floor(seconds / 60)))); } + else if (seconds < 86400) { QH('p2nextPasswordUpdateTime', format(" - Reset v {0} hodin{1}.", Math.floor(seconds / 3600), addLetterS(Math.floor(seconds / 3600)))); } else { QH('p2nextPasswordUpdateTime', format(" - Reset v {0} den{1}."), Math.floor(seconds / 86400), addLetterS(Math.floor(seconds / 86400))); } } } @@ -799,12 +799,12 @@ } case 'otpauth-setup': { if (xxdialogMode) return; - setDialogMode(2, "Authenticator App", 1, null, message.success ? "2-step login activation successful. You will now need a valid token to login again." : "2-step login activation failed. Clear the secret from the application and try again. You only have a few minutes to enter the proper code."); + setDialogMode(2, "Authenticator App", 1, null, message.success ? "2-faktorová autentizace zapnuta. Je třeba platný token k přihlášení." : "2-faktorové přihlášení selhalo. Je třeba smazat tajemství z aplikace a zkusit znovu. Na toto máte již jen pár minut."); break; } case 'otpauth-clear': { if (xxdialogMode) return; - setDialogMode(2, "Authenticator App", 1, null, message.success ? "2-step login activation removed. You can reactivate this feature at any time." : "2-step login activation removal failed. Try again."); + setDialogMode(2, "Authenticator App", 1, null, message.success ? "2-faktorové přihlášení odstraněno. Lze znovu kdykoliv zapnout." : "Odstranění 2-faktorového přihlášení selhalo. Zkuste znovu."); break; } case 'otpauth-getpasswords': { @@ -1147,7 +1147,7 @@ function account_addOtp() { if (xxdialogMode || (userinfo.otpsecret == 1) || ((features & 4096) == 0)) return; - setDialogMode(2, "Authenticator App", 2, function () { meshserver.send({ action: 'otpauth-setup', secret: Q('d2optsecret').attributes.secret.value, token: Q('d2otpauthinput').value }); }, '
' + "Loading..." + '
', 'otpauth-request'); + setDialogMode(2, "Authenticator App", 2, function () { meshserver.send({ action: 'otpauth-setup', secret: Q('d2optsecret').attributes.secret.value, token: Q('d2otpauthinput').value }); }, '
' + "Nahrávání..." + '
', 'otpauth-request'); meshserver.send({ action: 'otpauth-request' }); } @@ -1246,10 +1246,10 @@ if ((userinfo.siteadmin != 0xFFFFFFFF) && ((userinfo.siteadmin & 64) != 0)) { setDialogMode(2, "Nová skupina zařízení", 1, null, "This account does not have the rights to create a new device group."); return; } // Remind the user to verify the email address - if ((userinfo.emailVerified !== true) && (serverinfo.emailcheck == true) && (userinfo.siteadmin != 0xFFFFFFFF)) { setDialogMode(2, "Account Security", 1, null, "Unable to access a device until a email address is verified. This is required for password recovery. Go to the \"My Account\" to change and verify an email address."); return; } + if ((userinfo.emailVerified !== true) && (serverinfo.emailcheck == true) && (userinfo.siteadmin != 0xFFFFFFFF)) { setDialogMode(2, "Nastavení bezpečnosti", 1, null, "Unable to access a device until a email address is verified. This is required for password recovery. Go to the \"My Account\" to change and verify an email address."); return; } // Remind the user to add two factor authentication - if ((features & 0x00040000) && !((userinfo.otpsecret == 1) || (userinfo.otphkeys > 0) || (userinfo.otpkeys > 0))) { setDialogMode(2, "Account Security", 1, null, "Unable to access a device until two-factor authentication is enabled. This is required for extra security. Go to the \"My Account\" and look at the \"Account Security\" section."); return; } + if ((features & 0x00040000) && !((userinfo.otpsecret == 1) || (userinfo.otphkeys > 0) || (userinfo.otpkeys > 0))) { setDialogMode(2, "Nastavení bezpečnosti", 1, null, "Unable to access a device until two-factor authentication is enabled. This is required for extra security. Go to the \"My Account\" and look at the \"Account Security\" section."); return; } // We are allowed, let's prompt to information var x = addHtmlValue("Jméno", ''); @@ -1327,7 +1327,7 @@ // Mesh rights var meshrights = meshes[i].links[userinfo._id].rights; var rights = "Partial Rights"; - if (meshrights == 0xFFFFFFFF) rights = "Full Administrator"; else if (meshrights == 0) rights = "No Rights"; + if (meshrights == 0xFFFFFFFF) rights = "Hlavní administrátor"; else if (meshrights == 0) rights = "No Rights"; // Print the mesh information r += '
'; @@ -1663,7 +1663,7 @@ if (nodes[i].meshid != current) { deviceHeaderSet(); var extra = ''; - if (meshes[nodes[i].meshid].mtype == 1) { extra = '' + ", Intel® AMT only" + ''; } + if (meshes[nodes[i].meshid].mtype == 1) { extra = '' + ", Intel® AMT pouze" + ''; } if (current != null) { if (c == 2) { r += '
'; } if (r != '') { r += ''; } } r += '
'; //r += getMeshActions(mesh2, meshrights); @@ -1788,7 +1788,7 @@ function deviceHeaderSet() { if (deviceHeaderId == 0) { deviceHeaderId = 1; return; } - deviceHeaders['DevxHeader' + deviceHeaderId] = ', ' + deviceHeaderTotal + ((deviceHeaderTotal == 1) ? " zařízení" : " nodes"); + deviceHeaders['DevxHeader' + deviceHeaderId] = ', ' + deviceHeaderTotal + ((deviceHeaderTotal == 1) ? " nód" : " nódy"); var title = ''; for (var x in deviceHeaderCount) { if (title.length > 0) title += ', '; title += deviceHeaderCount[x] + ' ' + PowerStateStr2(x); } deviceHeadersTitles['DevxHeader' + deviceHeaderId] = title; @@ -1826,10 +1826,10 @@ function gotoDevice(nodeid, panel, refresh) { // Remind the user to verify the email address - if ((userinfo.emailVerified !== true) && (serverinfo.emailcheck == true) && (userinfo.siteadmin != 0xFFFFFFFF)) { setDialogMode(2, "Account Security", 1, null, "Unable to access a device until a email address is verified. This is required for password recovery. Go to the \"My Account\" to change and verify an email address."); return; } + if ((userinfo.emailVerified !== true) && (serverinfo.emailcheck == true) && (userinfo.siteadmin != 0xFFFFFFFF)) { setDialogMode(2, "Nastavení bezpečnosti", 1, null, "Unable to access a device until a email address is verified. This is required for password recovery. Go to the \"My Account\" to change and verify an email address."); return; } // Remind the user to add two factor authentication - if ((features & 0x00040000) && !((userinfo.otpsecret == 1) || (userinfo.otphkeys > 0) || (userinfo.otpkeys > 0))) { setDialogMode(2, "Account Security", 1, null, "Unable to access a device until two-factor authentication is enabled. This is required for extra security. Go to the \"My Account\" and look at the \"Account Security\" section."); return; } + if ((features & 0x00040000) && !((userinfo.otpsecret == 1) || (userinfo.otphkeys > 0) || (userinfo.otpkeys > 0))) { setDialogMode(2, "Nastavení bezpečnosti", 1, null, "Unable to access a device until two-factor authentication is enabled. This is required for extra security. Go to the \"My Account\" and look at the \"Account Security\" section."); return; } var node = getNodeFromId(nodeid); if (node == null) { goBack(); return; } @@ -1887,10 +1887,10 @@ // Attribute: Intel AMT if (node.intelamt != null) { var str = ''; - var provisioningStates = { 0: nobreak("Not Activated (Pre)"), 1: nobreak("Not Activated (In)"), 2: nobreak("Activated") }; + var provisioningStates = { 0: nobreak("Not Activated (Pre)"), 1: nobreak("Not Activated (In)"), 2: nobreak("Aktivováno") }; if (node.intelamt.ver != null && node.intelamt.state == null) { str += '' + nobreak("Unknown State") + ', v' + node.intelamt.ver; } else - if ((node.intelamt.ver == null) && (node.intelamt.state == 2)) { str += '' + "Activated" + ''; } + if ((node.intelamt.ver == null) && (node.intelamt.state == 2)) { str += '' + "Aktivováno" + ''; } else if ((node.intelamt.ver == null) || (node.intelamt.state == null)) { str += '' + "Unknown Version & State" + ''; } else { str += provisioningStates[node.intelamt.state]; @@ -2150,7 +2150,7 @@ function p10showDeleteNodeDialog(nodeid) { if (xxdialogMode) return; - setDialogMode(2, "Delete Node", 3, p10showDeleteNodeDialogEx, format("Delete {0}?", EscapeHtml(currentNode.name)) + '

' + "Confirm", nodeid); + setDialogMode(2, "Smazat nod", 3, p10showDeleteNodeDialogEx, format("Smazat {0}?", EscapeHtml(currentNode.name)) + '

' + "Confirm", nodeid); p10validateDeleteNodeDialog(); } @@ -2592,7 +2592,7 @@ function deskSetDisplay(e) { setSessionActivity(); var display = 0, txt = Q('termdisplays').value; - if (txt == "All Displays") display = 65535; else display = parseInt(txt.substring(8)); + if (txt == "Všechny displeje") display = 65535; else display = parseInt(txt.substring(8)); desktop.m.SetDisplay(display); } @@ -3108,7 +3108,7 @@ x += '

'; var currentMeshLinks = currentMesh.links[userinfo._id]; - if (currentMeshLinks && ((currentMeshLinks.rights & 2) != 0)) { x += '
' + " Add User" + '
'; } + if (currentMeshLinks && ((currentMeshLinks.rights & 2) != 0)) { x += '
' + " Přidat uživatele" + '
'; } /* if ((meshrights & 4) != 0) { @@ -3147,7 +3147,7 @@ // Display all users for this mesh for (var i in sortedusers) { var trash = '', rights = "Partial Rights", r = sortedusers[i].rights; - if (r == 0xFFFFFFFF) rights = "Full Administrator"; else if (r == 0) rights = "No Rights"; + if (r == 0xFFFFFFFF) rights = "Hlavní administrátor"; else if (r == 0) rights = "No Rights"; if ((i != userinfo._id) && (meshrights == 0xFFFFFFFF || (((meshrights & 2) != 0)))) { trash = ''; } x += ''; x += '
' + trash + '
' + rights + '
 ' + EscapeHtml(decodeURIComponent(sortedusers[i].name)) + '
'; @@ -3158,7 +3158,7 @@ x += ''; // If we are full administrator on this mesh, allow deletion of the mesh - if (meshrights == 0xFFFFFFFF) { x += '
' + "Delete Group" + '
'; } + if (meshrights == 0xFFFFFFFF) { x += '
' + "Smazat skupinu" + '
'; } QH('p20info', x); } @@ -3167,7 +3167,7 @@ if (xxdialogMode) return false; var x = format("Are you sure you want to delete group {0}? Deleting the device group will also delete all information about devices within this group.", EscapeHtml(currentMesh.name)) + '

'; x += ''; - setDialogMode(2, "Delete Group", 3, p20showDeleteMeshDialogEx, x); + setDialogMode(2, "Smazat skupinu", 3, p20showDeleteMeshDialogEx, x); p20validateDeleteMeshDialog(); return false; } @@ -3203,9 +3203,9 @@ if (xxdialogMode) return; var x = addHtmlValue('User', ''); x += '
'; - x += '
'; + x += '
'; x += '
'; - x += '
'; + x += '
'; x += '
'; x += '
'; x += '
'; @@ -3221,7 +3221,7 @@ x += '
'; x += '
'; x += '
'; - setDialogMode(2, "Add User to Mesh", 3, p20showAddMeshUserDialogEx, x); + setDialogMode(2, "Přidat uživatele do skupiny", 3, p20showAddMeshUserDialogEx, x); p20validateAddMeshUserDialog(); Q('dp20username').focus(); } @@ -3277,12 +3277,12 @@ if (xxdialogMode) return; userid = decodeURIComponent(userid); var r = [], cmeshrights = currentMesh.links[userinfo._id].rights, meshrights = currentMesh.links[userid].rights; - if (meshrights == 0xFFFFFFFF) r.push("Full Administrator"); else { + if (meshrights == 0xFFFFFFFF) r.push("Hlavní administrátor"); else { if ((meshrights & 1) != 0) r.push("Editovat skupinu zařízení"); - if ((meshrights & 2) != 0) r.push("Manage Device Group Users"); + if ((meshrights & 2) != 0) r.push("Spravovat uživatele pro skupinu zařízení"); if ((meshrights & 4) != 0) r.push("Správa skupin zařízení"); if ((meshrights & 8) != 0) r.push("Remote Control"); - if ((meshrights & 16) != 0) r.push("Agent Console"); + if ((meshrights & 16) != 0) r.push("Konzole agenta"); if ((meshrights & 32) != 0) r.push("Server Files"); if ((meshrights & 64) != 0) r.push("Wake Devices"); if ((meshrights & 128) != 0) r.push("Edit Notes"); @@ -3299,7 +3299,7 @@ var buttons = 1, x = addHtmlValue("User", EscapeHtml(decodeURIComponent(userid.split('/')[2]))); x += addHtmlValue("Práva", r.join(", ")); if (((userinfo._id) != userid) && (cmeshrights == 0xFFFFFFFF || (((cmeshrights & 2) != 0) && (meshrights != 0xFFFFFFFF)))) buttons += 4; - setDialogMode(2, "Device Group User", buttons, p20viewuserEx, x, userid); + setDialogMode(2, "Uživatelé této skupiny zařízení", buttons, p20viewuserEx, x, userid); } function p20viewuserEx(button, userid) { if (button != 2) return; setDialogMode(2, "Remote Mesh User", 3, p20viewuserEx2, format("Confirm removal of user {0}?", userid.split('/')[2]), userid); } diff --git a/views/translations/default_cs.handlebars b/views/translations/default_cs.handlebars index 5f10e2fa..c1c19851 100644 --- a/views/translations/default_cs.handlebars +++ b/views/translations/default_cs.handlebars @@ -272,26 +272,26 @@ - Device Groups - ( New ) + Skupiny zařízení + ( Vytvořit )

@@ -697,7 +697,7 @@
- +
@@ -884,7 +884,7 @@
- +
JménoPopisLinkVersionLatestStatusAction
JménoPopisLinkVerzeLatestStatusAkce
@@ -903,7 +903,7 @@ @@ -1087,7 +1087,7 @@ // Setup logout control var logoutControl = ''; - if (logoutControls.name != null) { logoutControl = format("Welcome {0}.", logoutControls.name); } + if (logoutControls.name != null) { logoutControl = format("Vítejte {0}.", logoutControls.name); } if (logoutControls.logoutUrl != null) { logoutControl += format(' ' + "Odhlásit" + ''); } QH('logoutControlSpan', logoutControl); @@ -1456,12 +1456,12 @@ QV('getStarted2', !newGroupsAllowed); if (typeof userinfo.passchange == 'number') { - if (userinfo.passchange == -1) { QH('p2nextPasswordUpdateTime', " - Reset on next login."); } + if (userinfo.passchange == -1) { QH('p2nextPasswordUpdateTime', " - Reset při příštím přihlášení."); } else if ((passRequirements != null) && (typeof passRequirements.reset == 'number')) { var seconds = (userinfo.passchange) + (passRequirements.reset * 86400) - Math.floor(Date.now() / 1000); - if (seconds < 0) { QH('p2nextPasswordUpdateTime', " - Reset on next login."); } - else if (seconds < 3600) { QH('p2nextPasswordUpdateTime', format(" - Reset in {0} minute{1}.", Math.floor(seconds / 60), addLetterS(Math.floor(seconds / 60)))); } - else if (seconds < 86400) { QH('p2nextPasswordUpdateTime', format(" - Reset in {0} hour{1}.", Math.floor(seconds / 3600), addLetterS(Math.floor(seconds / 3600)))); } + if (seconds < 0) { QH('p2nextPasswordUpdateTime', " - Reset při příštím přihlášení."); } + else if (seconds < 3600) { QH('p2nextPasswordUpdateTime', format(" - Reset v {0} minut{1}.", Math.floor(seconds / 60), addLetterS(Math.floor(seconds / 60)))); } + else if (seconds < 86400) { QH('p2nextPasswordUpdateTime', format(" - Reset v {0} hodin{1}.", Math.floor(seconds / 3600), addLetterS(Math.floor(seconds / 3600)))); } else { QH('p2nextPasswordUpdateTime', format(" - Reset v {0} den{1}."), Math.floor(seconds / 86400), addLetterS(Math.floor(seconds / 86400))); } } } @@ -1508,7 +1508,7 @@ case 'serverwarnings': { if ((message.warnings != null) && (message.warnings.length > 0)) { var x = ''; - for (var i in message.warnings) { x += '
' + "WARNING: " + message.warnings[i] + '
'; } + for (var i in message.warnings) { x += '
' + "UPOZORNĚNÍ: " + message.warnings[i] + '
'; } QH('serverWarnings', x); QV('serverWarningsDiv', true); } @@ -1604,16 +1604,16 @@ var ident = message.hardware.identifiers; // BIOS x += '
' + "BIOS" + '
'; - if (ident.bios_vendor) { x += addDetailItem("Vendor", ident.bios_vendor, s); } - if (ident.bios_version) { x += addDetailItem("Version", ident.bios_version, s); } + if (ident.bios_vendor) { x += addDetailItem("Výrobce", ident.bios_vendor, s); } + if (ident.bios_version) { x += addDetailItem("Verze", ident.bios_version, s); } x += '
'; // Motherboard x += '
' + "Motherboard" + '
'; - if (ident.board_vendor) { x += addDetailItem("Vendor", ident.board_vendor, s); } + if (ident.board_vendor) { x += addDetailItem("Výrobce", ident.board_vendor, s); } if (ident.board_name) { x += addDetailItem("Jméno", ident.board_name, s); } if (ident.board_serial && (ident.board_serial != '')) { x += addDetailItem("Serial", ident.board_serial, s); } - if (ident.board_version) { x += addDetailItem("Version", ident.board_version, s); } + if (ident.board_version) { x += addDetailItem("Verze", ident.board_version, s); } if (ident.product_uuid) { x += addDetailItem("Identifier", ident.product_uuid, s); } x += '
'; } @@ -1645,7 +1645,7 @@ var m = message.hardware.windows.osinfo; x += '
' + "Operační systém" + '
'; if (m.Caption) { x += addDetailItem("Jméno", m.Caption, s); } - if (m.Version) { x += addDetailItem("Version", m.Version, s); } + if (m.Version) { x += addDetailItem("Verze", m.Version, s); } if (m.OSArchitecture) { x += addDetailItem("Architektura", m.OSArchitecture, s); } x += '
'; } @@ -1835,12 +1835,12 @@ } case 'otpauth-setup': { if (xxdialogMode) return; - setDialogMode(2, "Authenticator App", 1, null, message.success ? ('' + "Authenticator app activation successful." + ' ' + "You will now need a valid token to login again.") : ('' + "2-step login activation failed." + ' ' + "Clear the secret from the application and try again. You only have a few minutes to enter the proper code.")); + setDialogMode(2, "Authenticator App", 1, null, message.success ? ('' + "Authenticator app activation successful." + ' ' + "You will now need a valid token to login again.") : ('' + "aktivace 2-faktorového přihlašování selhalo." + ' ' + "Clear the secret from the application and try again. You only have a few minutes to enter the proper code.")); break; } case 'otpauth-clear': { if (xxdialogMode) return; - setDialogMode(2, "Authenticator App", 1, null, message.success ? ('' + "Authenticator application removed." + ' ' + "You can reactivate this feature at any time.") : ('' + "2-step login activation removal failed." + ' ' + "Zkusit znovu.")); + setDialogMode(2, "Authenticator App", 1, null, message.success ? ('' + "Authenticator application removed." + ' ' + "You can reactivate this feature at any time.") : ('' + "odstranění 2-faktorového přihlašování selhalo." + ' ' + "Zkusit znovu.")); break; } case 'otpauth-getpasswords': { @@ -1879,7 +1879,7 @@ if (xxdialogMode && (xxdialogTag != 'otpauth-hardware-manage')) return; var start = '
'; var end = '
'; - var x = "Hardware keys are used as secondary login authentication."; + var x = "Hardwarové klíče jsou použity jako druhá možnost autentizace."; x += '
'; if (message.keys && message.keys.length > 0) { for (var i in message.keys) { @@ -1891,10 +1891,10 @@ } x += '
'; x += '
'; - if ((features & 0x00020000) != 0) { x += ''; } - if ((features & 0x00004000) != 0) { x += ''; } + if ((features & 0x00020000) != 0) { x += ''; } + if ((features & 0x00004000) != 0) { x += ''; } x += '

'; - setDialogMode(2, "Manage Security Keys", 8, null, x, 'otpauth-hardware-manage'); + setDialogMode(2, "Spravovat bezpečnostní klíče", 8, null, x, 'otpauth-hardware-manage'); if (u2fSupported() == false) { QE('d2addkey1', false); } break; } @@ -1902,7 +1902,7 @@ if (message.result) { meshserver.send({ action: 'otp-hkey-get' }); // Success, ask for the full list of keys. } else { - setDialogMode(2, "Add Security Key", 1, null, '
' + "Error, Unable to add key." + '

'); + setDialogMode(2, "Přidat bezpečnostní klíč", 1, null, '
' + "Error, Unable to add key." + '

'); } break; } @@ -1911,14 +1911,14 @@ if (message.result == true) { meshserver.send({ action: 'otp-hkey-get' }); // Success, ask for the full list of keys. } else { - setDialogMode(2, "Add Security Key", 1, null, '
' + "ERROR: Unable to add key." + '

', 'otpauth-hardware-manage'); + setDialogMode(2, "Přidat bezpečnostní klíč", 1, null, '
' + "ERROR: Unable to add key." + '

', 'otpauth-hardware-manage'); } break; } case 'webauthn-startregister': { if (xxdialogMode && (xxdialogTag != 'otpauth-hardware-manage')) return; var x = "Press the key button now." + '

'; - setDialogMode(2, "Add Security Key", 2, null, x); + setDialogMode(2, "Přidat bezpečnostní klíč", 2, null, x); var publicKey = message.request; message.request.challenge = Uint8Array.from(atob(message.request.challenge), function (c) { return c.charCodeAt(0) }) @@ -1931,7 +1931,7 @@ setDialogMode(0); }, function(error) { // Error - setDialogMode(2, "Add Security Key", 1, null, "ERROR: " + error); + setDialogMode(2, "Přidat bezpečnostní klíč", 1, null, "ERROR: " + error); }); break; } @@ -2244,7 +2244,7 @@ if (((node.conn & 16) == 0) && ((message.event.conn & 16) != 0)) { addNotification({ text: "MQTT připojeno", title: node.name, icon: node.icon, nodeid: node._id }); } } if (n & 4) { - if (((node.conn & 1) != 0) && ((message.event.conn & 1) == 0)) { addNotification({ text: "Agent disconnected", title: node.name, icon: node.icon, nodeid: node._id }); } + if (((node.conn & 1) != 0) && ((message.event.conn & 1) == 0)) { addNotification({ text: "Agent odpojen", title: node.name, icon: node.icon, nodeid: node._id }); } if (((node.conn & 2) != 0) && ((message.event.conn & 2) == 0)) { addNotification({ text: "Intel AMT not detected", title: node.name, icon: node.icon, nodeid: node._id }); } if (((node.conn & 4) != 0) && ((message.event.conn & 4) == 0)) { addNotification({ text: "Intel AMT CIRA disconnected", title: node.name, icon: node.icon, nodeid: node._id }); } if (((node.conn & 16) != 0) && ((message.event.conn & 16) == 0)) { addNotification({ text: "MQTT disconnected", title: node.name, icon: node.icon, nodeid: node._id }); } @@ -2293,7 +2293,7 @@ var r = message.event.results[i], shortname = r.hostname; if (shortname.length > 20) { shortname = shortname.substring(0, 20) + '...'; } var str = '' + EscapeHtml(shortname) + ' - v' + r.ver; - if (r.state == 2) { if (r.tls == 1) { str += " with TLS."; } else { str += " bez TLS."; } } else { str += ' not activated.'; } + if (r.state == 2) { if (r.tls == 1) { str += " s TLS."; } else { str += " bez TLS."; } } else { str += ' not activated.'; } x += '
' + str + '
'; } // If no results where found, display a nice message @@ -2666,7 +2666,7 @@ deviceHeaderSet(); var extra = ''; if (view == 2) { r += ''; } - if (meshes[node.meshid].mtype == 1) { extra = '' + ", Intel® AMT only" + ''; } + if (meshes[node.meshid].mtype == 1) { extra = '' + ", Intel® AMT pouze" + ''; } if ((view == 1) && (current != null)) { if (c == 2) { r += '
'; } if (r != '') { r += ''; } } if (view == 2) { r += '
'; } r += '
'; @@ -3018,12 +3018,12 @@ if ((meshrights & 4) == 0) return ''; var r = ''; if ((features & 1024) == 0) { // If CIRA is allowed - r += ' ' + "Přidat CIRA" + ''; + r += ' ' + "Přidat CIRA" + ''; } if (mesh.mtype == 1) { if ((features & 1) == 0) { // If not WAN-Only - r += ' ' + "Add Local" + ''; - r += ' ' + "Scan Network" + ''; + r += ' ' + "Přidat lokálně" + ''; + r += ' ' + "Scan Network" + ''; } if (mesh.amt && (mesh.amt.type == 2)) { // CCM activation r += ' ' + "Aktivace" + ''; @@ -3032,7 +3032,7 @@ } } if (mesh.mtype == 2) { - r += ' ' + "Přidat agenta" + ''; + r += ' ' + "Přidat agenta" + ''; if ((features & 2) == 0) { r += ' ' + "Pozvat" + ''; } } return r; @@ -3041,13 +3041,13 @@ function addDeviceToMesh(meshid) { if (xxdialogMode) return false; var mesh = meshes[meshid]; - var x = format("Add a new Intel® AMT device to device group \"{0}\".", EscapeHtml(mesh.name)) + '

'; + var x = format("Přidat nové Intel® AMT zařízení do skupiny \"{0}\".", EscapeHtml(mesh.name)) + '

'; x += addHtmlValue("Device Name", ''); x += addHtmlValue("Hostname", ''); x += addHtmlValue("Uživatel", ''); x += addHtmlValue("Heslo", ''); x += addHtmlValue("Bezpečnost", ''); - setDialogMode(2, "Add Intel® AMT device", 3, addDeviceToMeshEx, x, meshid); + setDialogMode(2, "Přidat Intel® AMT zařízení", 3, addDeviceToMeshEx, x, meshid); validateDeviceToMesh(); Q('dp1devicename').focus(); return false; @@ -3163,7 +3163,7 @@ // Setup CIRA with user/pass authentication (Somewhat difficult) x += '